diff --git a/.github/workflows/build-data-files.yml b/.github/workflows/build-data-files.yml new file mode 100644 index 00000000..2ac4516a --- /dev/null +++ b/.github/workflows/build-data-files.yml @@ -0,0 +1,230 @@ +name: Build data files + +on: [workflow_dispatch] + +jobs: + package_ball: + runs-on: windows-latest + + steps: + - uses: actions/checkout@v2 + with: + submodules: 'recursive' + - name: Set up Python 3.9 + uses: actions/setup-python@v2 + with: + python-version: 3.9 + - name: Delete files + run: | + del data/*.json + del data/*.pickle + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + - name: Generate data + run: | + python scripts/package_ball.py + - uses: actions/upload-artifact@v2 + with: + name: package_ball + path: | + data/ball_sprites.pickle + + package_pokemon: + runs-on: windows-latest + + steps: + - uses: actions/checkout@v2 + with: + submodules: 'recursive' + - name: Set up Python 3.9 + uses: actions/setup-python@v2 + with: + python-version: 3.9 + - name: Delete files + run: | + del data/*.json + del data/*.pickle + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + - name: Generate data + run: | + python scripts/package_pokemon.py + - uses: actions/upload-artifact@v2 + with: + name: package_pokemon + path: | + data/rental_pokemon.json + data/boss_pokemon.json + + score_pokemon: + runs-on: windows-latest + needs: package_pokemon + + steps: + - uses: actions/checkout@v2 + with: + submodules: 'recursive' + - name: Set up Python 3.9 + uses: actions/setup-python@v2 + with: + python-version: 3.9 + - name: Delete files + run: | + del data/*.json + del data/*.pickle + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + - uses: actions/download-artifact@v2 + with: + name: package_pokemon + path: data/ + - name: Generate data + run: | + python scripts/score_pokemon.py + - uses: actions/upload-artifact@v2 + with: + name: score_pokemon + path: | + data/boss_matchup_LUT.json + data/rental_matchup_LUT.json + data/rental_pokemon_scores.json + + package_pokemon_sprites: + runs-on: windows-latest + needs: package_pokemon + + steps: + - uses: actions/checkout@v2 + with: + submodules: 'recursive' + - name: Set up Python 3.9 + uses: actions/setup-python@v2 + with: + python-version: 3.9 + - name: Delete files + run: | + del data/*.json + del data/*.pickle + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + - uses: actions/download-artifact@v2 + with: + name: package_pokemon + path: data/ + - name: Generate data + run: | + python scripts/package_pokemon_sprites.py + - uses: actions/upload-artifact@v2 + with: + name: package_pokemon_sprites + path: | + data/pokemon_sprites.pickle + + get_good_color_discord: + runs-on: windows-latest + needs: package_pokemon + + steps: + - uses: actions/checkout@v2 + with: + submodules: 'recursive' + - name: Set up Python 3.9 + uses: actions/setup-python@v2 + with: + python-version: 3.9 + - name: Delete files + run: | + del data/*.json + del data/*.pickle + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + - uses: actions/download-artifact@v2 + with: + name: package_pokemon + path: data/ + - name: Generate data + run: | + python scripts/get_good_color_discord.py + - uses: actions/upload-artifact@v2 + with: + name: get_good_color_discord + path: | + data/boss_colors.json + + build_path_tree: + runs-on: windows-latest + needs: package_pokemon + + steps: + - uses: actions/checkout@v2 + with: + submodules: 'recursive' + - name: Set up Python 3.9 + uses: actions/setup-python@v2 + with: + python-version: 3.9 + - name: Delete files + run: | + del data/*.json + del data/*.pickle + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + - uses: actions/download-artifact@v2 + with: + name: package_pokemon + path: data/ + - name: Generate data + run: | + python scripts/build_path_tree.py + - uses: actions/upload-artifact@v2 + with: + name: build_path_tree + path: | + data/path_tree.json + + merge_data: + runs-on: windows-latest + needs: score_pokemon + + steps: + - uses: actions/download-artifact@v2 + with: + name: package_ball + path: data/ + - uses: actions/download-artifact@v2 + with: + name: package_pokemon + path: data/ + - uses: actions/download-artifact@v2 + with: + name: score_pokemon + path: data/ + - uses: actions/download-artifact@v2 + with: + name: package_pokemon_sprites + path: data/ + - uses: actions/download-artifact@v2 + with: + name: get_good_color_discord + path: data/ + - uses: actions/download-artifact@v2 + with: + name: build_path_tree + path: data/ + - uses: actions/upload-artifact@v2 + with: + name: all_data + path: | + data/* \ No newline at end of file diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml new file mode 100644 index 00000000..ca308dc4 --- /dev/null +++ b/.github/workflows/dotnet-core.yml @@ -0,0 +1,39 @@ +name: .NET Core + +on: [push, pull_request, workflow_dispatch] + +defaults: + run: + working-directory: AutoMaxLairUI - Code + +jobs: + build: + + runs-on: windows-latest + + steps: + - uses: actions/checkout@v2 + - name: Setup .NET Core + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 3.1 + - name: Install dependencies + run: dotnet restore "AutoMaxLairUI - Code.sln" + - name: Build + run: | + dotnet build "AutoMaxLairUI - Code.sln" --configuration Debug --no-restore + dotnet build "AutoMaxLairUI - Code.sln" --configuration Release --no-restore + - name: Publish + run: dotnet publish "AutoMaxLairUI - Code.sln" --configuration Release --no-restore -p:DebugType=None -p:DebugSymbols=false + - uses: actions/upload-artifact@v2 + with: + name: Auto Max Lair UI + path: AutoMaxLairUI - Code/bin/Release/netcoreapp3.1/win-x64/publish/AutoMaxLair.exe + - name: Upload binaries to release + uses: svenstaro/upload-release-action@v2 + if: startsWith(github.ref, 'refs/tags/v') + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + file: AutoMaxLairUI - Code/bin/Release/netcoreapp3.1/win-x64/publish/AutoMaxLair.exe + asset_name: Auto Max Lair UI + tag: ${{ github.ref }} diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 57378c77..e4ac7b30 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -1,21 +1,16 @@ -# This workflow will install Python dependencies, run tests and lint with a variety of Python versions -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions - name: Python package -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] +on: [push, pull_request, workflow_dispatch] jobs: build: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: matrix: - python-version: [3.6, 3.7, 3.8] + python-version: [3.6, 3.7, 3.8, 3.9] + os: [ubuntu-latest, macOS-latest, windows-latest] steps: - uses: actions/checkout@v2 @@ -27,7 +22,7 @@ jobs: run: | python -m pip install --upgrade pip python -m pip install flake8 - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + pip install -r requirements.txt - name: Lint with flake8 run: | flake8 --ignore=E125,E402,E501,W503 diff --git a/.gitignore b/.gitignore index a3fca208..79d81f88 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,10 @@ logs/* itemsList.txt data/type_icons scripts/*.png +AutoMaxLairUI - Code/bin/* +AutoMaxLairUI - Code/obj/* +AutoMaxLairUI - Code/AutoMaxLair.csproj.user +AutoMaxLairUI - Code/.vs +AutoMaxLairUI - Code/Properties/launchSettings.json +AutoMaxLairUI - Code/Properties/PublishProfiles +AutoMaxLair.exe diff --git a/.gitmodules b/.gitmodules index 11612cab..591548d3 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,9 @@ [submodule "RemoteControl/lufa"] path = RemoteControl/lufa url = https://github.com/abcminiuser/lufa +[submodule "data/pokesprite"] + path = data/pokesprite + url = https://github.com/msikma/pokesprite.git +[submodule "Packages"] + path = Packages + url = https://github.com/PokemonAutomation/Packages.git diff --git a/AutoMaxLairUI - Code/App.config b/AutoMaxLairUI - Code/App.config new file mode 100644 index 00000000..efc7bb43 --- /dev/null +++ b/AutoMaxLairUI - Code/App.config @@ -0,0 +1,31 @@ + + + + +
+ + +
+ + + + + + + + + + + True + + + + + + + True + + + + + diff --git a/AutoMaxLairUI - Code/AutoMaxLair.Designer.cs b/AutoMaxLairUI - Code/AutoMaxLair.Designer.cs new file mode 100644 index 00000000..214aaa07 --- /dev/null +++ b/AutoMaxLairUI - Code/AutoMaxLair.Designer.cs @@ -0,0 +1,1330 @@ + +namespace AutoDA +{ + partial class MainWindow + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow)); + this.panelSideMenu = new System.Windows.Forms.Panel(); + this.panelAdvancedSettingsSubmenu = new System.Windows.Forms.Panel(); + this.labelMaxDynite = new System.Windows.Forms.Label(); + this.boxMaxDynite = new System.Windows.Forms.TextBox(); + this.boxBossIndex = new System.Windows.Forms.ComboBox(); + this.boxConsecutiveResets = new System.Windows.Forms.TextBox(); + this.boxDyniteOre = new System.Windows.Forms.TextBox(); + this.boxVideoDelay = new System.Windows.Forms.TextBox(); + this.boxVideoScale = new System.Windows.Forms.TextBox(); + this.checkBoxDebugLogs = new System.Windows.Forms.CheckBox(); + this.labelConsecutiveResets = new System.Windows.Forms.Label(); + this.labelDyniteOre = new System.Windows.Forms.Label(); + this.labelBossIndex = new System.Windows.Forms.Label(); + this.labelVideoDelay = new System.Windows.Forms.Label(); + this.labelVideoScale = new System.Windows.Forms.Label(); + this.btnAdvancedSettings = new System.Windows.Forms.Button(); + this.panelSettingSubmenu = new System.Windows.Forms.Panel(); + this.btnTesseract = new System.Windows.Forms.Button(); + this.boxGameLanguage = new System.Windows.Forms.ComboBox(); + this.labelGameLanguage = new System.Windows.Forms.Label(); + this.boxTesseract = new System.Windows.Forms.TextBox(); + this.labelTessaract = new System.Windows.Forms.Label(); + this.boxVideoCapture = new System.Windows.Forms.ComboBox(); + this.boxComPort = new System.Windows.Forms.TextBox(); + this.boxMode = new System.Windows.Forms.ComboBox(); + this.labelVideoIndex = new System.Windows.Forms.Label(); + this.labelComPort = new System.Windows.Forms.Label(); + this.labelMode = new System.Windows.Forms.Label(); + this.labelLegendBall = new System.Windows.Forms.Label(); + this.labelBaseBall = new System.Windows.Forms.Label(); + this.labelPokémon = new System.Windows.Forms.Label(); + this.boxLegendBall = new System.Windows.Forms.ComboBox(); + this.boxBaseBall = new System.Windows.Forms.ComboBox(); + this.boxPokemon = new System.Windows.Forms.ComboBox(); + this.btnSetting = new System.Windows.Forms.Button(); + this.panelLogo = new System.Windows.Forms.Panel(); + this.pictureBox1 = new System.Windows.Forms.PictureBox(); + this.labelLogo = new System.Windows.Forms.Label(); + this.btnSave = new System.Windows.Forms.Button(); + this.boxVideoOutput = new System.Windows.Forms.PictureBox(); + this.panelLogs = new System.Windows.Forms.Panel(); + this.labelShinies = new System.Windows.Forms.Label(); + this.labelShiniesFound = new System.Windows.Forms.Label(); + this.labelWinPercentage = new System.Windows.Forms.Label(); + this.labelHuntingPoke = new System.Windows.Forms.Label(); + this.labelRun = new System.Windows.Forms.Label(); + this.panelRightSide = new System.Windows.Forms.Panel(); + this.btnSettings = new System.Windows.Forms.Button(); + this.panelDiscordSubmenu = new System.Windows.Forms.Panel(); + this.boxPingSettings = new System.Windows.Forms.ComboBox(); + this.boxPingName = new System.Windows.Forms.TextBox(); + this.boxUserID = new System.Windows.Forms.TextBox(); + this.boxWebhookToken = new System.Windows.Forms.TextBox(); + this.boxWebhookID = new System.Windows.Forms.TextBox(); + this.labelMessages = new System.Windows.Forms.Label(); + this.labelUser = new System.Windows.Forms.Label(); + this.labelID = new System.Windows.Forms.Label(); + this.labelWebToken = new System.Windows.Forms.Label(); + this.labelWebID = new System.Windows.Forms.Label(); + this.button1 = new System.Windows.Forms.Button(); + this.button4 = new System.Windows.Forms.Button(); + this.btnDiscord = new System.Windows.Forms.Button(); + this.panelStatSubmenu = new System.Windows.Forms.Panel(); + this.boxCheckSpeed = new System.Windows.Forms.CheckBox(); + this.boxCheckAttack = new System.Windows.Forms.CheckBox(); + this.boxSpeedNeg = new System.Windows.Forms.TextBox(); + this.boxSpeedNeut = new System.Windows.Forms.TextBox(); + this.labelSpeedNeg = new System.Windows.Forms.Label(); + this.labelSpeedNeut = new System.Windows.Forms.Label(); + this.labelSpeedPos = new System.Windows.Forms.Label(); + this.labelSpeed = new System.Windows.Forms.Label(); + this.labelAttackNeg = new System.Windows.Forms.Label(); + this.labelAttackNeut = new System.Windows.Forms.Label(); + this.boxSpeedPos = new System.Windows.Forms.TextBox(); + this.boxAttackNeg = new System.Windows.Forms.TextBox(); + this.boxAttackNeut = new System.Windows.Forms.TextBox(); + this.boxAttackPos = new System.Windows.Forms.TextBox(); + this.labelAttackPos = new System.Windows.Forms.Label(); + this.labelAtk = new System.Windows.Forms.Label(); + this.btnStats = new System.Windows.Forms.Button(); + this.panelRightTop = new System.Windows.Forms.Panel(); + this.toolTip = new System.Windows.Forms.ToolTip(this.components); + this.labelPathWins = new System.Windows.Forms.Label(); + this.boxPathWins = new System.Windows.Forms.TextBox(); + this.labelNonLegend = new System.Windows.Forms.Label(); + this.boxNonLegend = new System.Windows.Forms.ComboBox(); + this.boxPABotBaseHex = new System.Windows.Forms.CheckBox(); + this.panelSideMenu.SuspendLayout(); + this.panelAdvancedSettingsSubmenu.SuspendLayout(); + this.panelSettingSubmenu.SuspendLayout(); + this.panelLogo.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.boxVideoOutput)).BeginInit(); + this.panelLogs.SuspendLayout(); + this.panelRightSide.SuspendLayout(); + this.panelDiscordSubmenu.SuspendLayout(); + this.panelStatSubmenu.SuspendLayout(); + this.SuspendLayout(); + // + // panelSideMenu + // + this.panelSideMenu.AutoScroll = true; + this.panelSideMenu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(8)))), ((int)(((byte)(20))))); + this.panelSideMenu.Controls.Add(this.panelAdvancedSettingsSubmenu); + this.panelSideMenu.Controls.Add(this.btnAdvancedSettings); + this.panelSideMenu.Controls.Add(this.panelSettingSubmenu); + this.panelSideMenu.Controls.Add(this.btnSetting); + this.panelSideMenu.Controls.Add(this.panelLogo); + this.panelSideMenu.Dock = System.Windows.Forms.DockStyle.Left; + this.panelSideMenu.Location = new System.Drawing.Point(0, 0); + this.panelSideMenu.Name = "panelSideMenu"; + this.panelSideMenu.Size = new System.Drawing.Size(292, 745); + this.panelSideMenu.TabIndex = 0; + // + // panelAdvancedSettingsSubmenu + // + this.panelAdvancedSettingsSubmenu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.panelAdvancedSettingsSubmenu.Controls.Add(this.boxPABotBaseHex); + this.panelAdvancedSettingsSubmenu.Controls.Add(this.boxNonLegend); + this.panelAdvancedSettingsSubmenu.Controls.Add(this.labelNonLegend); + this.panelAdvancedSettingsSubmenu.Controls.Add(this.labelMaxDynite); + this.panelAdvancedSettingsSubmenu.Controls.Add(this.boxMaxDynite); + this.panelAdvancedSettingsSubmenu.Controls.Add(this.boxBossIndex); + this.panelAdvancedSettingsSubmenu.Controls.Add(this.boxConsecutiveResets); + this.panelAdvancedSettingsSubmenu.Controls.Add(this.boxDyniteOre); + this.panelAdvancedSettingsSubmenu.Controls.Add(this.boxVideoDelay); + this.panelAdvancedSettingsSubmenu.Controls.Add(this.boxVideoScale); + this.panelAdvancedSettingsSubmenu.Controls.Add(this.checkBoxDebugLogs); + this.panelAdvancedSettingsSubmenu.Controls.Add(this.labelConsecutiveResets); + this.panelAdvancedSettingsSubmenu.Controls.Add(this.labelDyniteOre); + this.panelAdvancedSettingsSubmenu.Controls.Add(this.labelBossIndex); + this.panelAdvancedSettingsSubmenu.Controls.Add(this.labelVideoDelay); + this.panelAdvancedSettingsSubmenu.Controls.Add(this.labelVideoScale); + this.panelAdvancedSettingsSubmenu.Dock = System.Windows.Forms.DockStyle.Top; + this.panelAdvancedSettingsSubmenu.Location = new System.Drawing.Point(0, 464); + this.panelAdvancedSettingsSubmenu.Name = "panelAdvancedSettingsSubmenu"; + this.panelAdvancedSettingsSubmenu.Size = new System.Drawing.Size(292, 279); + this.panelAdvancedSettingsSubmenu.TabIndex = 8; + // + // labelMaxDynite + // + this.labelMaxDynite.AutoSize = true; + this.labelMaxDynite.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelMaxDynite.Location = new System.Drawing.Point(13, 197); + this.labelMaxDynite.Name = "labelMaxDynite"; + this.labelMaxDynite.Size = new System.Drawing.Size(141, 19); + this.labelMaxDynite.TabIndex = 22; + this.labelMaxDynite.Text = "Maximum Dynite Ore"; + // + // boxMaxDynite + // + this.boxMaxDynite.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxMaxDynite.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.boxMaxDynite.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxMaxDynite.Location = new System.Drawing.Point(175, 195); + this.boxMaxDynite.Name = "boxMaxDynite"; + this.boxMaxDynite.Size = new System.Drawing.Size(30, 25); + this.boxMaxDynite.TabIndex = 21; + this.boxMaxDynite.Text = "0"; + this.boxMaxDynite.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // boxBossIndex + // + this.boxBossIndex.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxBossIndex.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.boxBossIndex.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxBossIndex.FormattingEnabled = true; + this.boxBossIndex.Items.AddRange(new object[] { + "Top", + "Middle", + "Bottom"}); + this.boxBossIndex.Location = new System.Drawing.Point(142, 74); + this.boxBossIndex.Name = "boxBossIndex"; + this.boxBossIndex.Size = new System.Drawing.Size(95, 25); + this.boxBossIndex.TabIndex = 20; + this.boxBossIndex.Text = "Top"; + // + // boxConsecutiveResets + // + this.boxConsecutiveResets.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxConsecutiveResets.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.boxConsecutiveResets.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxConsecutiveResets.Location = new System.Drawing.Point(175, 137); + this.boxConsecutiveResets.Name = "boxConsecutiveResets"; + this.boxConsecutiveResets.Size = new System.Drawing.Size(30, 25); + this.boxConsecutiveResets.TabIndex = 17; + this.boxConsecutiveResets.Text = "0"; + this.boxConsecutiveResets.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // boxDyniteOre + // + this.boxDyniteOre.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxDyniteOre.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.boxDyniteOre.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxDyniteOre.Location = new System.Drawing.Point(175, 107); + this.boxDyniteOre.Name = "boxDyniteOre"; + this.boxDyniteOre.Size = new System.Drawing.Size(30, 25); + this.boxDyniteOre.TabIndex = 19; + this.boxDyniteOre.Text = "0"; + this.boxDyniteOre.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // boxVideoDelay + // + this.boxVideoDelay.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxVideoDelay.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.boxVideoDelay.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxVideoDelay.Location = new System.Drawing.Point(175, 43); + this.boxVideoDelay.Name = "boxVideoDelay"; + this.boxVideoDelay.Size = new System.Drawing.Size(30, 25); + this.boxVideoDelay.TabIndex = 18; + this.boxVideoDelay.Text = "0.0"; + this.boxVideoDelay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // boxVideoScale + // + this.boxVideoScale.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxVideoScale.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.boxVideoScale.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxVideoScale.Location = new System.Drawing.Point(175, 13); + this.boxVideoScale.Name = "boxVideoScale"; + this.boxVideoScale.Size = new System.Drawing.Size(30, 25); + this.boxVideoScale.TabIndex = 17; + this.boxVideoScale.Text = "0.5"; + this.boxVideoScale.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // checkBoxDebugLogs + // + this.checkBoxDebugLogs.AutoSize = true; + this.checkBoxDebugLogs.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.checkBoxDebugLogs.Location = new System.Drawing.Point(12, 223); + this.checkBoxDebugLogs.Name = "checkBoxDebugLogs"; + this.checkBoxDebugLogs.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.checkBoxDebugLogs.Size = new System.Drawing.Size(146, 23); + this.checkBoxDebugLogs.TabIndex = 14; + this.checkBoxDebugLogs.Text = "Enable Debug Logs"; + this.checkBoxDebugLogs.UseVisualStyleBackColor = true; + // + // labelConsecutiveResets + // + this.labelConsecutiveResets.AutoSize = true; + this.labelConsecutiveResets.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelConsecutiveResets.Location = new System.Drawing.Point(13, 139); + this.labelConsecutiveResets.Name = "labelConsecutiveResets"; + this.labelConsecutiveResets.Size = new System.Drawing.Size(126, 19); + this.labelConsecutiveResets.TabIndex = 13; + this.labelConsecutiveResets.Text = "Consecutive Resets"; + // + // labelDyniteOre + // + this.labelDyniteOre.AutoSize = true; + this.labelDyniteOre.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelDyniteOre.Location = new System.Drawing.Point(13, 109); + this.labelDyniteOre.Name = "labelDyniteOre"; + this.labelDyniteOre.Size = new System.Drawing.Size(76, 19); + this.labelDyniteOre.TabIndex = 12; + this.labelDyniteOre.Text = "Dynite Ore"; + // + // labelBossIndex + // + this.labelBossIndex.AutoSize = true; + this.labelBossIndex.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelBossIndex.Location = new System.Drawing.Point(13, 77); + this.labelBossIndex.Name = "labelBossIndex"; + this.labelBossIndex.Size = new System.Drawing.Size(74, 19); + this.labelBossIndex.TabIndex = 11; + this.labelBossIndex.Text = "Boss Index"; + // + // labelVideoDelay + // + this.labelVideoDelay.AutoSize = true; + this.labelVideoDelay.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelVideoDelay.Location = new System.Drawing.Point(12, 45); + this.labelVideoDelay.Name = "labelVideoDelay"; + this.labelVideoDelay.Size = new System.Drawing.Size(82, 19); + this.labelVideoDelay.TabIndex = 10; + this.labelVideoDelay.Text = "Video Delay"; + // + // labelVideoScale + // + this.labelVideoScale.AutoSize = true; + this.labelVideoScale.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelVideoScale.Location = new System.Drawing.Point(12, 15); + this.labelVideoScale.Name = "labelVideoScale"; + this.labelVideoScale.Size = new System.Drawing.Size(78, 19); + this.labelVideoScale.TabIndex = 9; + this.labelVideoScale.Text = "Video Scale"; + // + // btnAdvancedSettings + // + this.btnAdvancedSettings.Dock = System.Windows.Forms.DockStyle.Top; + this.btnAdvancedSettings.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnAdvancedSettings.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.btnAdvancedSettings.Location = new System.Drawing.Point(0, 419); + this.btnAdvancedSettings.Name = "btnAdvancedSettings"; + this.btnAdvancedSettings.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0); + this.btnAdvancedSettings.Size = new System.Drawing.Size(292, 45); + this.btnAdvancedSettings.TabIndex = 5; + this.btnAdvancedSettings.Text = "Advanced Settings"; + this.btnAdvancedSettings.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnAdvancedSettings.UseVisualStyleBackColor = true; + // + // panelSettingSubmenu + // + this.panelSettingSubmenu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.panelSettingSubmenu.Controls.Add(this.boxPathWins); + this.panelSettingSubmenu.Controls.Add(this.labelPathWins); + this.panelSettingSubmenu.Controls.Add(this.btnTesseract); + this.panelSettingSubmenu.Controls.Add(this.boxGameLanguage); + this.panelSettingSubmenu.Controls.Add(this.labelGameLanguage); + this.panelSettingSubmenu.Controls.Add(this.boxTesseract); + this.panelSettingSubmenu.Controls.Add(this.labelTessaract); + this.panelSettingSubmenu.Controls.Add(this.boxVideoCapture); + this.panelSettingSubmenu.Controls.Add(this.boxComPort); + this.panelSettingSubmenu.Controls.Add(this.boxMode); + this.panelSettingSubmenu.Controls.Add(this.labelVideoIndex); + this.panelSettingSubmenu.Controls.Add(this.labelComPort); + this.panelSettingSubmenu.Controls.Add(this.labelMode); + this.panelSettingSubmenu.Controls.Add(this.labelLegendBall); + this.panelSettingSubmenu.Controls.Add(this.labelBaseBall); + this.panelSettingSubmenu.Controls.Add(this.labelPokémon); + this.panelSettingSubmenu.Controls.Add(this.boxLegendBall); + this.panelSettingSubmenu.Controls.Add(this.boxBaseBall); + this.panelSettingSubmenu.Controls.Add(this.boxPokemon); + this.panelSettingSubmenu.Dock = System.Windows.Forms.DockStyle.Top; + this.panelSettingSubmenu.Location = new System.Drawing.Point(0, 125); + this.panelSettingSubmenu.Name = "panelSettingSubmenu"; + this.panelSettingSubmenu.Size = new System.Drawing.Size(292, 294); + this.panelSettingSubmenu.TabIndex = 1; + // + // btnTesseract + // + this.btnTesseract.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(8)))), ((int)(((byte)(20))))); + this.btnTesseract.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnTesseract.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.btnTesseract.Location = new System.Drawing.Point(239, 216); + this.btnTesseract.Name = "btnTesseract"; + this.btnTesseract.Size = new System.Drawing.Size(28, 26); + this.btnTesseract.TabIndex = 25; + this.btnTesseract.Text = "v"; + this.btnTesseract.UseVisualStyleBackColor = false; + this.btnTesseract.Click += new System.EventHandler(this.btnTesseract_Click); + // + // boxGameLanguage + // + this.boxGameLanguage.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxGameLanguage.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.boxGameLanguage.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxGameLanguage.FormattingEnabled = true; + this.boxGameLanguage.Items.AddRange(new object[] { + "English", + "Spanish", + "French", + "Korean", + "German"}); + this.boxGameLanguage.Location = new System.Drawing.Point(112, 250); + this.boxGameLanguage.Name = "boxGameLanguage"; + this.boxGameLanguage.Size = new System.Drawing.Size(121, 25); + this.boxGameLanguage.TabIndex = 24; + this.boxGameLanguage.Text = "English"; + this.boxGameLanguage.SelectedIndexChanged += new System.EventHandler(this.boxGameLanguage_SelectedIndexChanged); + // + // labelGameLanguage + // + this.labelGameLanguage.AutoSize = true; + this.labelGameLanguage.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelGameLanguage.Location = new System.Drawing.Point(12, 253); + this.labelGameLanguage.Name = "labelGameLanguage"; + this.labelGameLanguage.Size = new System.Drawing.Size(69, 19); + this.labelGameLanguage.TabIndex = 23; + this.labelGameLanguage.Text = "Language"; + this.labelGameLanguage.Click += new System.EventHandler(this.labelGameLanguage_Click); + // + // boxTesseract + // + this.boxTesseract.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxTesseract.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.boxTesseract.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxTesseract.Location = new System.Drawing.Point(112, 219); + this.boxTesseract.Name = "boxTesseract"; + this.boxTesseract.Size = new System.Drawing.Size(121, 25); + this.boxTesseract.TabIndex = 22; + this.boxTesseract.Text = "C:\\\\Program Files\\\\Tesseract-OCR\\\\tesseract.exe"; + this.boxTesseract.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + this.boxTesseract.TextChanged += new System.EventHandler(this.boxTesseract_TextChanged); + // + // labelTessaract + // + this.labelTessaract.AutoSize = true; + this.labelTessaract.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelTessaract.Location = new System.Drawing.Point(12, 219); + this.labelTessaract.Name = "labelTessaract"; + this.labelTessaract.Size = new System.Drawing.Size(96, 19); + this.labelTessaract.TabIndex = 21; + this.labelTessaract.Text = "Tesseract Path"; + this.labelTessaract.Click += new System.EventHandler(this.labelTessaract_Click); + // + // boxVideoCapture + // + this.boxVideoCapture.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxVideoCapture.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.boxVideoCapture.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxVideoCapture.FormattingEnabled = true; + this.boxVideoCapture.Location = new System.Drawing.Point(112, 184); + this.boxVideoCapture.Name = "boxVideoCapture"; + this.boxVideoCapture.Size = new System.Drawing.Size(121, 25); + this.boxVideoCapture.TabIndex = 19; + // + // boxComPort + // + this.boxComPort.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxComPort.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.boxComPort.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxComPort.Location = new System.Drawing.Point(12, 185); + this.boxComPort.Name = "boxComPort"; + this.boxComPort.Size = new System.Drawing.Size(62, 25); + this.boxComPort.TabIndex = 15; + this.boxComPort.Text = "COM4"; + this.boxComPort.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + this.boxComPort.TextChanged += new System.EventHandler(this.boxComPort_TextChanged); + // + // boxMode + // + this.boxMode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxMode.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.boxMode.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxMode.FormattingEnabled = true; + this.boxMode.Items.AddRange(new object[] { + "Default", + "Ball Saver", + "Strong Boss", + "Keep Path", + "Find Path"}); + this.boxMode.Location = new System.Drawing.Point(112, 102); + this.boxMode.Name = "boxMode"; + this.boxMode.Size = new System.Drawing.Size(113, 25); + this.boxMode.TabIndex = 14; + this.boxMode.Text = "Default"; + // + // labelVideoIndex + // + this.labelVideoIndex.AutoSize = true; + this.labelVideoIndex.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelVideoIndex.Location = new System.Drawing.Point(123, 163); + this.labelVideoIndex.Name = "labelVideoIndex"; + this.labelVideoIndex.Size = new System.Drawing.Size(97, 19); + this.labelVideoIndex.TabIndex = 13; + this.labelVideoIndex.Text = "Video Capture"; + // + // labelComPort + // + this.labelComPort.AutoSize = true; + this.labelComPort.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelComPort.Location = new System.Drawing.Point(12, 163); + this.labelComPort.Name = "labelComPort"; + this.labelComPort.Size = new System.Drawing.Size(67, 19); + this.labelComPort.TabIndex = 12; + this.labelComPort.Text = "Com Port"; + // + // labelMode + // + this.labelMode.AutoSize = true; + this.labelMode.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelMode.Location = new System.Drawing.Point(12, 105); + this.labelMode.Name = "labelMode"; + this.labelMode.Size = new System.Drawing.Size(45, 19); + this.labelMode.TabIndex = 11; + this.labelMode.Text = "Mode"; + // + // labelLegendBall + // + this.labelLegendBall.AutoSize = true; + this.labelLegendBall.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelLegendBall.Location = new System.Drawing.Point(12, 74); + this.labelLegendBall.Name = "labelLegendBall"; + this.labelLegendBall.Size = new System.Drawing.Size(79, 19); + this.labelLegendBall.TabIndex = 10; + this.labelLegendBall.Text = "Legend Ball"; + // + // labelBaseBall + // + this.labelBaseBall.AutoSize = true; + this.labelBaseBall.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelBaseBall.Location = new System.Drawing.Point(12, 43); + this.labelBaseBall.Name = "labelBaseBall"; + this.labelBaseBall.Size = new System.Drawing.Size(62, 19); + this.labelBaseBall.TabIndex = 9; + this.labelBaseBall.Text = "Base Ball"; + // + // labelPokémon + // + this.labelPokémon.AutoSize = true; + this.labelPokémon.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelPokémon.Location = new System.Drawing.Point(12, 12); + this.labelPokémon.Name = "labelPokémon"; + this.labelPokémon.Size = new System.Drawing.Size(66, 19); + this.labelPokémon.TabIndex = 8; + this.labelPokémon.Text = "Pokémon"; + // + // boxLegendBall + // + this.boxLegendBall.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxLegendBall.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.boxLegendBall.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxLegendBall.FormattingEnabled = true; + this.boxLegendBall.Location = new System.Drawing.Point(112, 71); + this.boxLegendBall.Name = "boxLegendBall"; + this.boxLegendBall.Size = new System.Drawing.Size(113, 25); + this.boxLegendBall.TabIndex = 7; + this.boxLegendBall.Text = "Premier"; + // + // boxBaseBall + // + this.boxBaseBall.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxBaseBall.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.boxBaseBall.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxBaseBall.FormattingEnabled = true; + this.boxBaseBall.Location = new System.Drawing.Point(112, 40); + this.boxBaseBall.Name = "boxBaseBall"; + this.boxBaseBall.Size = new System.Drawing.Size(113, 25); + this.boxBaseBall.TabIndex = 6; + this.boxBaseBall.Text = "Premier"; + // + // boxPokemon + // + this.boxPokemon.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxPokemon.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.boxPokemon.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxPokemon.FormattingEnabled = true; + this.boxPokemon.Location = new System.Drawing.Point(112, 9); + this.boxPokemon.Name = "boxPokemon"; + this.boxPokemon.Size = new System.Drawing.Size(113, 25); + this.boxPokemon.TabIndex = 5; + this.boxPokemon.Text = "Articuno"; + // + // btnSetting + // + this.btnSetting.Dock = System.Windows.Forms.DockStyle.Top; + this.btnSetting.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnSetting.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.btnSetting.Location = new System.Drawing.Point(0, 80); + this.btnSetting.Name = "btnSetting"; + this.btnSetting.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0); + this.btnSetting.Size = new System.Drawing.Size(292, 45); + this.btnSetting.TabIndex = 0; + this.btnSetting.Text = "DA-Settings"; + this.btnSetting.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.btnSetting.UseVisualStyleBackColor = true; + // + // panelLogo + // + this.panelLogo.Controls.Add(this.pictureBox1); + this.panelLogo.Controls.Add(this.labelLogo); + this.panelLogo.Dock = System.Windows.Forms.DockStyle.Top; + this.panelLogo.Location = new System.Drawing.Point(0, 0); + this.panelLogo.Name = "panelLogo"; + this.panelLogo.Size = new System.Drawing.Size(292, 80); + this.panelLogo.TabIndex = 0; + // + // pictureBox1 + // + this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image"))); + this.pictureBox1.Location = new System.Drawing.Point(-8, 0); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(102, 85); + this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; + this.pictureBox1.TabIndex = 1; + this.pictureBox1.TabStop = false; + // + // labelLogo + // + this.labelLogo.AutoSize = true; + this.labelLogo.Font = new System.Drawing.Font("Viner Hand ITC", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point); + this.labelLogo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelLogo.Location = new System.Drawing.Point(86, 41); + this.labelLogo.Name = "labelLogo"; + this.labelLogo.Size = new System.Drawing.Size(206, 44); + this.labelLogo.TabIndex = 0; + this.labelLogo.Text = "AutoMaxLair"; + // + // btnSave + // + this.btnSave.BackgroundImage = global::AutoMaxLair.Properties.Resources.Save1; + this.btnSave.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.btnSave.FlatAppearance.BorderSize = 0; + this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnSave.Location = new System.Drawing.Point(238, 638); + this.btnSave.Name = "btnSave"; + this.btnSave.Size = new System.Drawing.Size(30, 30); + this.btnSave.TabIndex = 21; + this.toolTip.SetToolTip(this.btnSave, "Saves the changes made in the UI to the Config.toml.\r\nAfter this you are ready to" + + " run the automaxlair program."); + this.btnSave.UseVisualStyleBackColor = true; + this.btnSave.Click += new System.EventHandler(this.btnSave_Click); + // + // boxVideoOutput + // + this.boxVideoOutput.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxVideoOutput.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.boxVideoOutput.Location = new System.Drawing.Point(1045, 31); + this.boxVideoOutput.Name = "boxVideoOutput"; + this.boxVideoOutput.Size = new System.Drawing.Size(267, 176); + this.boxVideoOutput.TabIndex = 20; + this.boxVideoOutput.TabStop = false; + this.boxVideoOutput.Visible = false; + // + // panelLogs + // + this.panelLogs.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(8)))), ((int)(((byte)(20))))); + this.panelLogs.Controls.Add(this.labelShinies); + this.panelLogs.Controls.Add(this.labelShiniesFound); + this.panelLogs.Controls.Add(this.labelWinPercentage); + this.panelLogs.Controls.Add(this.labelHuntingPoke); + this.panelLogs.Controls.Add(this.labelRun); + this.panelLogs.Location = new System.Drawing.Point(290, 638); + this.panelLogs.Name = "panelLogs"; + this.panelLogs.Size = new System.Drawing.Size(1266, 148); + this.panelLogs.TabIndex = 21; + this.panelLogs.Visible = false; + // + // labelShinies + // + this.labelShinies.Font = new System.Drawing.Font("Segoe UI", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); + this.labelShinies.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelShinies.Location = new System.Drawing.Point(944, 58); + this.labelShinies.Name = "labelShinies"; + this.labelShinies.Size = new System.Drawing.Size(326, 81); + this.labelShinies.TabIndex = 14; + this.labelShinies.Text = "Shiny:"; + this.labelShinies.Visible = false; + // + // labelShiniesFound + // + this.labelShiniesFound.Font = new System.Drawing.Font("Segoe UI", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); + this.labelShiniesFound.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelShiniesFound.Location = new System.Drawing.Point(944, 16); + this.labelShiniesFound.Name = "labelShiniesFound"; + this.labelShiniesFound.Size = new System.Drawing.Size(326, 42); + this.labelShiniesFound.TabIndex = 13; + this.labelShiniesFound.Text = "Shinies Found:"; + this.labelShiniesFound.Visible = false; + // + // labelWinPercentage + // + this.labelWinPercentage.Font = new System.Drawing.Font("Segoe UI", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); + this.labelWinPercentage.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelWinPercentage.Location = new System.Drawing.Point(621, 51); + this.labelWinPercentage.Name = "labelWinPercentage"; + this.labelWinPercentage.Size = new System.Drawing.Size(317, 42); + this.labelWinPercentage.TabIndex = 12; + this.labelWinPercentage.Text = "Win Percentage:"; + this.labelWinPercentage.Visible = false; + // + // labelHuntingPoke + // + this.labelHuntingPoke.Font = new System.Drawing.Font("Segoe UI", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); + this.labelHuntingPoke.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelHuntingPoke.Location = new System.Drawing.Point(218, 56); + this.labelHuntingPoke.Name = "labelHuntingPoke"; + this.labelHuntingPoke.Size = new System.Drawing.Size(397, 42); + this.labelHuntingPoke.TabIndex = 11; + this.labelHuntingPoke.Text = "Hunting for:"; + this.labelHuntingPoke.Visible = false; + // + // labelRun + // + this.labelRun.Font = new System.Drawing.Font("Segoe UI", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); + this.labelRun.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelRun.Location = new System.Drawing.Point(28, 56); + this.labelRun.Name = "labelRun"; + this.labelRun.Size = new System.Drawing.Size(184, 42); + this.labelRun.TabIndex = 10; + this.labelRun.Text = "Run #:"; + this.labelRun.Visible = false; + // + // panelRightSide + // + this.panelRightSide.AutoScroll = true; + this.panelRightSide.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(8)))), ((int)(((byte)(20))))); + this.panelRightSide.Controls.Add(this.btnSettings); + this.panelRightSide.Controls.Add(this.panelDiscordSubmenu); + this.panelRightSide.Controls.Add(this.btnSave); + this.panelRightSide.Controls.Add(this.btnDiscord); + this.panelRightSide.Controls.Add(this.panelStatSubmenu); + this.panelRightSide.Controls.Add(this.btnStats); + this.panelRightSide.Controls.Add(this.panelRightTop); + this.panelRightSide.Dock = System.Windows.Forms.DockStyle.Left; + this.panelRightSide.Location = new System.Drawing.Point(292, 0); + this.panelRightSide.Name = "panelRightSide"; + this.panelRightSide.Size = new System.Drawing.Size(292, 745); + this.panelRightSide.TabIndex = 22; + // + // btnSettings + // + this.btnSettings.BackgroundImage = global::AutoMaxLair.Properties.Resources.Settings1; + this.btnSettings.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom; + this.btnSettings.FlatAppearance.BorderSize = 0; + this.btnSettings.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnSettings.Location = new System.Drawing.Point(18, 630); + this.btnSettings.Name = "btnSettings"; + this.btnSettings.Size = new System.Drawing.Size(42, 46); + this.btnSettings.TabIndex = 26; + this.toolTip.SetToolTip(this.btnSettings, "Settings for the AutoMaxLair-UI."); + this.btnSettings.UseVisualStyleBackColor = true; + this.btnSettings.Click += new System.EventHandler(this.btnSettings_Click); + // + // panelDiscordSubmenu + // + this.panelDiscordSubmenu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.panelDiscordSubmenu.Controls.Add(this.boxPingSettings); + this.panelDiscordSubmenu.Controls.Add(this.boxPingName); + this.panelDiscordSubmenu.Controls.Add(this.boxUserID); + this.panelDiscordSubmenu.Controls.Add(this.boxWebhookToken); + this.panelDiscordSubmenu.Controls.Add(this.boxWebhookID); + this.panelDiscordSubmenu.Controls.Add(this.labelMessages); + this.panelDiscordSubmenu.Controls.Add(this.labelUser); + this.panelDiscordSubmenu.Controls.Add(this.labelID); + this.panelDiscordSubmenu.Controls.Add(this.labelWebToken); + this.panelDiscordSubmenu.Controls.Add(this.labelWebID); + this.panelDiscordSubmenu.Controls.Add(this.button1); + this.panelDiscordSubmenu.Controls.Add(this.button4); + this.panelDiscordSubmenu.Dock = System.Windows.Forms.DockStyle.Top; + this.panelDiscordSubmenu.Location = new System.Drawing.Point(0, 370); + this.panelDiscordSubmenu.Name = "panelDiscordSubmenu"; + this.panelDiscordSubmenu.Size = new System.Drawing.Size(292, 183); + this.panelDiscordSubmenu.TabIndex = 25; + // + // boxPingSettings + // + this.boxPingSettings.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxPingSettings.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.boxPingSettings.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxPingSettings.FormattingEnabled = true; + this.boxPingSettings.Items.AddRange(new object[] { + "all", + "all_ping_legendary", + "only_shiny", + "only_shiny_ping_legendary", + "none"}); + this.boxPingSettings.Location = new System.Drawing.Point(128, 136); + this.boxPingSettings.Name = "boxPingSettings"; + this.boxPingSettings.Size = new System.Drawing.Size(151, 25); + this.boxPingSettings.TabIndex = 21; + this.boxPingSettings.Text = "none"; + // + // boxPingName + // + this.boxPingName.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxPingName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.boxPingName.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxPingName.Location = new System.Drawing.Point(128, 107); + this.boxPingName.Name = "boxPingName"; + this.boxPingName.Size = new System.Drawing.Size(151, 25); + this.boxPingName.TabIndex = 20; + this.boxPingName.Text = "ShinyHunter"; + this.boxPingName.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // boxUserID + // + this.boxUserID.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxUserID.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.boxUserID.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxUserID.Location = new System.Drawing.Point(128, 75); + this.boxUserID.Name = "boxUserID"; + this.boxUserID.Size = new System.Drawing.Size(151, 25); + this.boxUserID.TabIndex = 19; + this.boxUserID.Text = "123456789987654321"; + this.boxUserID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // boxWebhookToken + // + this.boxWebhookToken.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxWebhookToken.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.boxWebhookToken.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxWebhookToken.Location = new System.Drawing.Point(128, 43); + this.boxWebhookToken.Name = "boxWebhookToken"; + this.boxWebhookToken.Size = new System.Drawing.Size(151, 25); + this.boxWebhookToken.TabIndex = 18; + this.boxWebhookToken.Text = "123456789987654321"; + this.boxWebhookToken.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // boxWebhookID + // + this.boxWebhookID.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxWebhookID.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.boxWebhookID.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxWebhookID.Location = new System.Drawing.Point(128, 13); + this.boxWebhookID.Name = "boxWebhookID"; + this.boxWebhookID.Size = new System.Drawing.Size(151, 25); + this.boxWebhookID.TabIndex = 17; + this.boxWebhookID.Text = "123456789987654321"; + this.boxWebhookID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // labelMessages + // + this.labelMessages.AutoSize = true; + this.labelMessages.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelMessages.Location = new System.Drawing.Point(13, 139); + this.labelMessages.Name = "labelMessages"; + this.labelMessages.Size = new System.Drawing.Size(69, 19); + this.labelMessages.TabIndex = 13; + this.labelMessages.Text = "Messages"; + // + // labelUser + // + this.labelUser.AutoSize = true; + this.labelUser.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelUser.Location = new System.Drawing.Point(13, 109); + this.labelUser.Name = "labelUser"; + this.labelUser.Size = new System.Drawing.Size(71, 19); + this.labelUser.TabIndex = 12; + this.labelUser.Text = "Username"; + // + // labelID + // + this.labelID.AutoSize = true; + this.labelID.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelID.Location = new System.Drawing.Point(13, 77); + this.labelID.Name = "labelID"; + this.labelID.Size = new System.Drawing.Size(55, 19); + this.labelID.TabIndex = 11; + this.labelID.Text = "User ID"; + // + // labelWebToken + // + this.labelWebToken.AutoSize = true; + this.labelWebToken.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelWebToken.Location = new System.Drawing.Point(12, 45); + this.labelWebToken.Name = "labelWebToken"; + this.labelWebToken.Size = new System.Drawing.Size(107, 19); + this.labelWebToken.TabIndex = 10; + this.labelWebToken.Text = "Webhook Token"; + // + // labelWebID + // + this.labelWebID.AutoSize = true; + this.labelWebID.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelWebID.Location = new System.Drawing.Point(12, 15); + this.labelWebID.Name = "labelWebID"; + this.labelWebID.Size = new System.Drawing.Size(85, 19); + this.labelWebID.TabIndex = 9; + this.labelWebID.Text = "Webhook ID"; + // + // button1 + // + this.button1.AutoSize = true; + this.button1.FlatAppearance.BorderSize = 0; + this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Popup; + this.button1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.button1.Location = new System.Drawing.Point(164, 204); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(69, 29); + this.button1.TabIndex = 4; + this.button1.Text = "Stopp"; + this.button1.UseVisualStyleBackColor = true; + // + // button4 + // + this.button4.AutoSize = true; + this.button4.FlatAppearance.BorderSize = 0; + this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Popup; + this.button4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.button4.Location = new System.Drawing.Point(164, 204); + this.button4.Name = "button4"; + this.button4.Size = new System.Drawing.Size(69, 29); + this.button4.TabIndex = 3; + this.button4.Text = "Start"; + this.button4.UseVisualStyleBackColor = true; + // + // btnDiscord + // + this.btnDiscord.Dock = System.Windows.Forms.DockStyle.Top; + this.btnDiscord.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnDiscord.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.btnDiscord.Location = new System.Drawing.Point(0, 325); + this.btnDiscord.Name = "btnDiscord"; + this.btnDiscord.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0); + this.btnDiscord.Size = new System.Drawing.Size(292, 45); + this.btnDiscord.TabIndex = 24; + this.btnDiscord.Text = "Discord Integration Settings"; + this.btnDiscord.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.toolTip.SetToolTip(this.btnDiscord, "A feature to get results from your runs to your discord.\r\nFor help in creating a " + + "webhook search \"hackaday create webhook\"\r\nand select the first result."); + this.btnDiscord.UseVisualStyleBackColor = true; + // + // panelStatSubmenu + // + this.panelStatSubmenu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.panelStatSubmenu.Controls.Add(this.boxCheckSpeed); + this.panelStatSubmenu.Controls.Add(this.boxCheckAttack); + this.panelStatSubmenu.Controls.Add(this.boxSpeedNeg); + this.panelStatSubmenu.Controls.Add(this.boxSpeedNeut); + this.panelStatSubmenu.Controls.Add(this.labelSpeedNeg); + this.panelStatSubmenu.Controls.Add(this.labelSpeedNeut); + this.panelStatSubmenu.Controls.Add(this.labelSpeedPos); + this.panelStatSubmenu.Controls.Add(this.labelSpeed); + this.panelStatSubmenu.Controls.Add(this.labelAttackNeg); + this.panelStatSubmenu.Controls.Add(this.labelAttackNeut); + this.panelStatSubmenu.Controls.Add(this.boxSpeedPos); + this.panelStatSubmenu.Controls.Add(this.boxAttackNeg); + this.panelStatSubmenu.Controls.Add(this.boxAttackNeut); + this.panelStatSubmenu.Controls.Add(this.boxAttackPos); + this.panelStatSubmenu.Controls.Add(this.labelAttackPos); + this.panelStatSubmenu.Controls.Add(this.labelAtk); + this.panelStatSubmenu.Dock = System.Windows.Forms.DockStyle.Top; + this.panelStatSubmenu.Location = new System.Drawing.Point(0, 125); + this.panelStatSubmenu.Name = "panelStatSubmenu"; + this.panelStatSubmenu.Size = new System.Drawing.Size(292, 200); + this.panelStatSubmenu.TabIndex = 23; + // + // boxCheckSpeed + // + this.boxCheckSpeed.AutoSize = true; + this.boxCheckSpeed.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxCheckSpeed.Location = new System.Drawing.Point(14, 166); + this.boxCheckSpeed.Name = "boxCheckSpeed"; + this.boxCheckSpeed.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.boxCheckSpeed.Size = new System.Drawing.Size(134, 23); + this.boxCheckSpeed.TabIndex = 28; + this.boxCheckSpeed.Text = "Check Speed Stat"; + this.boxCheckSpeed.UseVisualStyleBackColor = true; + // + // boxCheckAttack + // + this.boxCheckAttack.AutoSize = true; + this.boxCheckAttack.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxCheckAttack.Location = new System.Drawing.Point(12, 137); + this.boxCheckAttack.Name = "boxCheckAttack"; + this.boxCheckAttack.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.boxCheckAttack.Size = new System.Drawing.Size(136, 23); + this.boxCheckAttack.TabIndex = 27; + this.boxCheckAttack.Text = "Check Attack Stat"; + this.boxCheckAttack.UseVisualStyleBackColor = true; + // + // boxSpeedNeg + // + this.boxSpeedNeg.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxSpeedNeg.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.boxSpeedNeg.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxSpeedNeg.Location = new System.Drawing.Point(218, 94); + this.boxSpeedNeg.Name = "boxSpeedNeg"; + this.boxSpeedNeg.Size = new System.Drawing.Size(62, 25); + this.boxSpeedNeg.TabIndex = 26; + this.boxSpeedNeg.Text = "81"; + this.boxSpeedNeg.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // boxSpeedNeut + // + this.boxSpeedNeut.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxSpeedNeut.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.boxSpeedNeut.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxSpeedNeut.Location = new System.Drawing.Point(218, 63); + this.boxSpeedNeut.Name = "boxSpeedNeut"; + this.boxSpeedNeut.Size = new System.Drawing.Size(61, 25); + this.boxSpeedNeut.TabIndex = 25; + this.boxSpeedNeut.Text = "90"; + this.boxSpeedNeut.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // labelSpeedNeg + // + this.labelSpeedNeg.AutoSize = true; + this.labelSpeedNeg.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelSpeedNeg.Location = new System.Drawing.Point(145, 96); + this.labelSpeedNeg.Name = "labelSpeedNeg"; + this.labelSpeedNeg.Size = new System.Drawing.Size(63, 19); + this.labelSpeedNeg.TabIndex = 24; + this.labelSpeedNeg.Text = "Negative"; + // + // labelSpeedNeut + // + this.labelSpeedNeut.AutoSize = true; + this.labelSpeedNeut.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelSpeedNeut.Location = new System.Drawing.Point(145, 65); + this.labelSpeedNeut.Name = "labelSpeedNeut"; + this.labelSpeedNeut.Size = new System.Drawing.Size(54, 19); + this.labelSpeedNeut.TabIndex = 23; + this.labelSpeedNeut.Text = "Neutral"; + // + // labelSpeedPos + // + this.labelSpeedPos.AutoSize = true; + this.labelSpeedPos.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelSpeedPos.Location = new System.Drawing.Point(145, 34); + this.labelSpeedPos.Name = "labelSpeedPos"; + this.labelSpeedPos.Size = new System.Drawing.Size(55, 19); + this.labelSpeedPos.TabIndex = 22; + this.labelSpeedPos.Text = "Positive"; + // + // labelSpeed + // + this.labelSpeed.AutoSize = true; + this.labelSpeed.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point); + this.labelSpeed.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelSpeed.Location = new System.Drawing.Point(140, 6); + this.labelSpeed.Name = "labelSpeed"; + this.labelSpeed.Size = new System.Drawing.Size(79, 17); + this.labelSpeed.TabIndex = 22; + this.labelSpeed.Text = "Speed Stats"; + // + // labelAttackNeg + // + this.labelAttackNeg.AutoSize = true; + this.labelAttackNeg.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelAttackNeg.Location = new System.Drawing.Point(12, 96); + this.labelAttackNeg.Name = "labelAttackNeg"; + this.labelAttackNeg.Size = new System.Drawing.Size(63, 19); + this.labelAttackNeg.TabIndex = 21; + this.labelAttackNeg.Text = "Negative"; + // + // labelAttackNeut + // + this.labelAttackNeut.AutoSize = true; + this.labelAttackNeut.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelAttackNeut.Location = new System.Drawing.Point(13, 65); + this.labelAttackNeut.Name = "labelAttackNeut"; + this.labelAttackNeut.Size = new System.Drawing.Size(54, 19); + this.labelAttackNeut.TabIndex = 20; + this.labelAttackNeut.Text = "Neutral"; + // + // boxSpeedPos + // + this.boxSpeedPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxSpeedPos.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.boxSpeedPos.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxSpeedPos.Location = new System.Drawing.Point(218, 32); + this.boxSpeedPos.Name = "boxSpeedPos"; + this.boxSpeedPos.Size = new System.Drawing.Size(61, 25); + this.boxSpeedPos.TabIndex = 17; + this.boxSpeedPos.Text = "99"; + this.boxSpeedPos.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // boxAttackNeg + // + this.boxAttackNeg.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxAttackNeg.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.boxAttackNeg.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxAttackNeg.Location = new System.Drawing.Point(81, 94); + this.boxAttackNeg.Name = "boxAttackNeg"; + this.boxAttackNeg.Size = new System.Drawing.Size(58, 25); + this.boxAttackNeg.TabIndex = 19; + this.boxAttackNeg.Text = "131"; + this.boxAttackNeg.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // boxAttackNeut + // + this.boxAttackNeut.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxAttackNeut.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.boxAttackNeut.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxAttackNeut.Location = new System.Drawing.Point(81, 63); + this.boxAttackNeut.Name = "boxAttackNeut"; + this.boxAttackNeut.Size = new System.Drawing.Size(58, 25); + this.boxAttackNeut.TabIndex = 18; + this.boxAttackNeut.Text = "146"; + this.boxAttackNeut.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // boxAttackPos + // + this.boxAttackPos.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxAttackPos.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.boxAttackPos.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxAttackPos.Location = new System.Drawing.Point(81, 32); + this.boxAttackPos.Name = "boxAttackPos"; + this.boxAttackPos.Size = new System.Drawing.Size(58, 25); + this.boxAttackPos.TabIndex = 17; + this.boxAttackPos.Text = "160"; + this.boxAttackPos.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // labelAttackPos + // + this.labelAttackPos.AutoSize = true; + this.labelAttackPos.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelAttackPos.Location = new System.Drawing.Point(10, 34); + this.labelAttackPos.Name = "labelAttackPos"; + this.labelAttackPos.Size = new System.Drawing.Size(55, 19); + this.labelAttackPos.TabIndex = 10; + this.labelAttackPos.Text = "Positive"; + // + // labelAtk + // + this.labelAtk.AutoSize = true; + this.labelAtk.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point); + this.labelAtk.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelAtk.Location = new System.Drawing.Point(10, 6); + this.labelAtk.Name = "labelAtk"; + this.labelAtk.Size = new System.Drawing.Size(81, 17); + this.labelAtk.TabIndex = 9; + this.labelAtk.Text = "Attack Stats"; + // + // btnStats + // + this.btnStats.Dock = System.Windows.Forms.DockStyle.Top; + this.btnStats.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.btnStats.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.btnStats.Location = new System.Drawing.Point(0, 80); + this.btnStats.Name = "btnStats"; + this.btnStats.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0); + this.btnStats.Size = new System.Drawing.Size(292, 45); + this.btnStats.TabIndex = 22; + this.btnStats.Text = "Pokémon Stat Finding Settings"; + this.btnStats.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.toolTip.SetToolTip(this.btnStats, "Use a stat calculator for the legendary pokémon at level 70\r\nbased on your IVs if" + + " you want to use this feature."); + this.btnStats.UseVisualStyleBackColor = true; + // + // panelRightTop + // + this.panelRightTop.Dock = System.Windows.Forms.DockStyle.Top; + this.panelRightTop.Location = new System.Drawing.Point(0, 0); + this.panelRightTop.Name = "panelRightTop"; + this.panelRightTop.Size = new System.Drawing.Size(292, 80); + this.panelRightTop.TabIndex = 0; + // + // toolTip + // + this.toolTip.Popup += new System.Windows.Forms.PopupEventHandler(this.toolTip_Popup); + // + // labelPathWins + // + this.labelPathWins.AutoSize = true; + this.labelPathWins.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelPathWins.Location = new System.Drawing.Point(13, 137); + this.labelPathWins.Name = "labelPathWins"; + this.labelPathWins.Size = new System.Drawing.Size(101, 19); + this.labelPathWins.TabIndex = 26; + this.labelPathWins.Text = "Find Path Wins"; + // + // boxPathWins + // + this.boxPathWins.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxPathWins.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.boxPathWins.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxPathWins.Location = new System.Drawing.Point(128, 135); + this.boxPathWins.Name = "boxPathWins"; + this.boxPathWins.Size = new System.Drawing.Size(30, 25); + this.boxPathWins.TabIndex = 27; + this.boxPathWins.Text = "99"; + this.boxPathWins.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // labelNonLegend + // + this.labelNonLegend.AutoSize = true; + this.labelNonLegend.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.labelNonLegend.Location = new System.Drawing.Point(12, 168); + this.labelNonLegend.Name = "labelNonLegend"; + this.labelNonLegend.Size = new System.Drawing.Size(84, 19); + this.labelNonLegend.TabIndex = 23; + this.labelNonLegend.Text = "Non Legend"; + // + // boxNonLegend + // + this.boxNonLegend.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.boxNonLegend.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.boxNonLegend.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxNonLegend.FormattingEnabled = true; + this.boxNonLegend.Location = new System.Drawing.Point(142, 165); + this.boxNonLegend.Name = "boxNonLegend"; + this.boxNonLegend.Size = new System.Drawing.Size(113, 25); + this.boxNonLegend.TabIndex = 24; + this.boxNonLegend.Text = "Articuno"; + // + // boxPABotBaseHex + // + this.boxPABotBaseHex.AutoSize = true; + this.boxPABotBaseHex.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.boxPABotBaseHex.Location = new System.Drawing.Point(12, 252); + this.boxPABotBaseHex.Name = "boxPABotBaseHex"; + this.boxPABotBaseHex.RightToLeft = System.Windows.Forms.RightToLeft.Yes; + this.boxPABotBaseHex.Size = new System.Drawing.Size(146, 23); + this.boxPABotBaseHex.TabIndex = 26; + this.boxPABotBaseHex.Text = "PABotBase Hex"; + this.boxPABotBaseHex.UseVisualStyleBackColor = true; + this.boxPABotBaseHex.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged); + // + // MainWindow + // + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(104)))), ((int)(((byte)(104))))); + this.ClientSize = new System.Drawing.Size(584, 745); + this.Controls.Add(this.panelRightSide); + this.Controls.Add(this.panelLogs); + this.Controls.Add(this.boxVideoOutput); + this.Controls.Add(this.panelSideMenu); + this.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.Name = "MainWindow"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "Automation: Dynamax Adventure"; + this.Load += new System.EventHandler(this.AutoDA_Load); + this.panelSideMenu.ResumeLayout(false); + this.panelAdvancedSettingsSubmenu.ResumeLayout(false); + this.panelAdvancedSettingsSubmenu.PerformLayout(); + this.panelSettingSubmenu.ResumeLayout(false); + this.panelSettingSubmenu.PerformLayout(); + this.panelLogo.ResumeLayout(false); + this.panelLogo.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.boxVideoOutput)).EndInit(); + this.panelLogs.ResumeLayout(false); + this.panelRightSide.ResumeLayout(false); + this.panelDiscordSubmenu.ResumeLayout(false); + this.panelDiscordSubmenu.PerformLayout(); + this.panelStatSubmenu.ResumeLayout(false); + this.panelStatSubmenu.PerformLayout(); + this.ResumeLayout(false); + + } + + #endregion + public System.Windows.Forms.Panel panelSideMenu; + public System.Windows.Forms.Panel panelSettingSubmenu; + public System.Windows.Forms.Button btnSetting; + public System.Windows.Forms.Panel panelLogo; + public System.Windows.Forms.PictureBox pictureBox1; + public System.Windows.Forms.Label labelLogo; + public System.Windows.Forms.Panel panelAdvancedSettingsSubmenu; + public System.Windows.Forms.Button btnAdvancedSettings; + public System.Windows.Forms.ComboBox boxPokemon; + public System.Windows.Forms.Label labelPokémon; + public System.Windows.Forms.ComboBox boxLegendBall; + public System.Windows.Forms.ComboBox boxBaseBall; + public System.Windows.Forms.TextBox boxComPort; + public System.Windows.Forms.ComboBox boxMode; + public System.Windows.Forms.Label labelVideoIndex; + public System.Windows.Forms.Label labelComPort; + public System.Windows.Forms.Label labelMode; + public System.Windows.Forms.Label labelLegendBall; + public System.Windows.Forms.Label labelBaseBall; + public System.Windows.Forms.Label labelConsecutiveResets; + public System.Windows.Forms.Label labelDyniteOre; + public System.Windows.Forms.Label labelBossIndex; + public System.Windows.Forms.Label labelVideoDelay; + public System.Windows.Forms.Label labelVideoScale; + public System.Windows.Forms.CheckBox checkBoxDebugLogs; + public System.Windows.Forms.TextBox boxConsecutiveResets; + public System.Windows.Forms.TextBox boxDyniteOre; + public System.Windows.Forms.TextBox boxVideoDelay; + public System.Windows.Forms.TextBox boxVideoScale; + public System.Windows.Forms.ComboBox boxBossIndex; + public System.Windows.Forms.Button btnSave; + public System.Windows.Forms.ComboBox boxVideoCapture; + public System.Windows.Forms.PictureBox boxVideoOutput; + public System.Windows.Forms.Panel panelLogs; + public System.Windows.Forms.Label labelTessaract; + public System.Windows.Forms.ComboBox boxGameLanguage; + public System.Windows.Forms.Label labelGameLanguage; + public System.Windows.Forms.Label labelShinies; + public System.Windows.Forms.Label labelShiniesFound; + public System.Windows.Forms.Label labelWinPercentage; + public System.Windows.Forms.Label labelHuntingPoke; + public System.Windows.Forms.Label labelRun; + public System.Windows.Forms.Panel panelRightSide; + public System.Windows.Forms.Panel panelDiscordSubmenu; + public System.Windows.Forms.ComboBox boxPingSettings; + public System.Windows.Forms.TextBox boxPingName; + public System.Windows.Forms.TextBox boxUserID; + public System.Windows.Forms.TextBox boxWebhookToken; + public System.Windows.Forms.TextBox boxWebhookID; + public System.Windows.Forms.Label labelMessages; + public System.Windows.Forms.Label labelUser; + public System.Windows.Forms.Label labelID; + public System.Windows.Forms.Label labelWebToken; + public System.Windows.Forms.Label labelWebID; + public System.Windows.Forms.Button button1; + public System.Windows.Forms.Button button4; + public System.Windows.Forms.Button btnDiscord; + public System.Windows.Forms.Panel panelStatSubmenu; + public System.Windows.Forms.CheckBox boxCheckSpeed; + public System.Windows.Forms.CheckBox boxCheckAttack; + public System.Windows.Forms.TextBox boxSpeedNeg; + public System.Windows.Forms.TextBox boxSpeedNeut; + public System.Windows.Forms.Label labelSpeedNeg; + public System.Windows.Forms.Label labelSpeedNeut; + public System.Windows.Forms.Label labelSpeedPos; + public System.Windows.Forms.Label labelSpeed; + public System.Windows.Forms.Label labelAttackNeg; + public System.Windows.Forms.Label labelAttackNeut; + public System.Windows.Forms.TextBox boxSpeedPos; + public System.Windows.Forms.TextBox boxAttackNeg; + public System.Windows.Forms.TextBox boxAttackNeut; + public System.Windows.Forms.TextBox boxAttackPos; + public System.Windows.Forms.Label labelAttackPos; + public System.Windows.Forms.Label labelAtk; + public System.Windows.Forms.Button btnStats; + public System.Windows.Forms.Panel panelRightTop; + public System.Windows.Forms.ToolTip toolTip; + public System.Windows.Forms.Button btnTesseract; + public System.Windows.Forms.TextBox boxTesseract; + public System.Windows.Forms.Button btnSettings; + public System.Windows.Forms.Label labelMaxDynite; + public System.Windows.Forms.TextBox boxMaxDynite; + public System.Windows.Forms.Label labelPathWins; + public System.Windows.Forms.TextBox boxPathWins; + public System.Windows.Forms.ComboBox boxNonLegend; + public System.Windows.Forms.Label labelNonLegend; + public System.Windows.Forms.CheckBox boxPABotBaseHex; + } +} diff --git a/AutoMaxLairUI - Code/AutoMaxLair.cs b/AutoMaxLairUI - Code/AutoMaxLair.cs new file mode 100644 index 00000000..4b0baa09 --- /dev/null +++ b/AutoMaxLairUI - Code/AutoMaxLair.cs @@ -0,0 +1,664 @@ +using System; +using System.Collections.Generic; +using System.Drawing; +using System.Linq; +using System.Windows.Forms; +using System.IO; +using VisioForge.Shared.DirectShowLib; +using Tommy; +using AutoMaxLair; +using Newtonsoft.Json.Linq; + +namespace AutoDA +{ + public partial class MainWindow : Form + { + public MainWindow() + { + InitializeComponent(); + getConfig(); + } + + private void AutoDA_Load(object sender, EventArgs e) + { + Initialize_Add(); + bool darktheme; + darktheme = AutoMaxLair.Properties.Settings.Default.DarkTheme; + + if (darktheme == true) + { + ApplyTheme(zcolor(11, 8, 20), zcolor(11, 8, 20), zcolor(11, 8, 20), zcolor(36, 33, 40), zcolor(36, 33, 40), zcolor(36, 33, 40), zcolor(250, 63, 82)); + btnSave.BackgroundImage = AutoMaxLair.Properties.Resources.Save1; + btnSettings.BackgroundImage = AutoMaxLair.Properties.Resources.Settings1; + } + else + { + ApplyTheme(Color.White, Color.LightGray, Color.LightGray, Color.White, Color.LightGray, Color.White, Color.Black); + btnSave.BackgroundImage = AutoMaxLair.Properties.Resources.Save2; + btnSettings.BackgroundImage = AutoMaxLair.Properties.Resources.Settings2; + } + } + + // Method to get the preset for the UI from the Config.toml + private void getConfig() + { + // Read from Config.toml file + string path = Directory.GetCurrentDirectory(); + string configData = ""; + + // Check if Config.toml exist, if not use Config.sample.toml + if (File.Exists(path + @"\Config.toml")) + { + configData = path + @"\Config.toml"; + } + else + { + configData = path + @"\Config.sample.toml"; + } + + List legendaryList = new List(); + using (StreamReader reader = File.OpenText(@"data/boss_pokemon.json")) + { + string json = reader.ReadToEnd(); + foreach (var item in JObject.Parse(json).Properties()) + { + legendaryList.Add(Utils.ConvertBossIdToBossName(item.Name)); + } + } + + List nonLegendList = new List(); + using (StreamReader reader = File.OpenText(@"data/rental_pokemon.json")) + { + string json2 = reader.ReadToEnd(); + foreach (var item in JObject.Parse(json2).Properties()) + { + nonLegendList.Add(item.Name); + } + } + + string[] ballList = { + Utils.ConvertBallIdToBallName("beast-ball"), + Utils.ConvertBallIdToBallName("dive-ball"), + Utils.ConvertBallIdToBallName("dream-ball"), + Utils.ConvertBallIdToBallName("dusk-ball"), + Utils.ConvertBallIdToBallName("fast-ball"), + Utils.ConvertBallIdToBallName("friend-ball"), + Utils.ConvertBallIdToBallName("great-ball"), + Utils.ConvertBallIdToBallName("heal-ball"), + Utils.ConvertBallIdToBallName("heavy-ball"), + Utils.ConvertBallIdToBallName("level-ball"), + Utils.ConvertBallIdToBallName("love-ball"), + Utils.ConvertBallIdToBallName("lure-ball"), + Utils.ConvertBallIdToBallName("luxury-ball"), + Utils.ConvertBallIdToBallName("master-ball"), + Utils.ConvertBallIdToBallName("moon-ball"), + Utils.ConvertBallIdToBallName("nest-ball"), + Utils.ConvertBallIdToBallName("net-ball"), + Utils.ConvertBallIdToBallName("poke-ball"), + Utils.ConvertBallIdToBallName("premier-ball"), + Utils.ConvertBallIdToBallName("quick-ball"), + Utils.ConvertBallIdToBallName("repeat-ball"), + Utils.ConvertBallIdToBallName("safari-ball"), + Utils.ConvertBallIdToBallName("sport-ball"), + Utils.ConvertBallIdToBallName("timer-ball"), + Utils.ConvertBallIdToBallName("ultra-ball") + }; + + using (StreamReader reader = new StreamReader(File.OpenRead(configData))) + { + + TomlTable t = TOML.Parse(reader); + + // Create Lists for each stat +,=,- + List arr = new List(); + List arr1 = new List(); + List arr2 = new List(); + List arr3 = new List(); + List arr4 = new List(); + List arr5 = new List(); + + // Loops to get all nodes from TomlNode into the list + foreach (TomlNode node in t["stats"]["ATTACK_STATS"]["positive"]) + { + arr.Add(node); + } + foreach (TomlNode node in t["stats"]["ATTACK_STATS"]["neutral"]) + { + arr1.Add(node); + } + foreach (TomlNode node in t["stats"]["ATTACK_STATS"]["negative"]) + { + arr2.Add(node); + } + + foreach (TomlNode node in t["stats"]["SPEED_STATS"]["positive"]) + { + arr3.Add(node); + } + + foreach (TomlNode node in t["stats"]["SPEED_STATS"]["neutral"]) + { + arr4.Add(node); + } + + foreach (TomlNode node in t["stats"]["SPEED_STATS"]["negative"]) + { + arr5.Add(node); + } + + // Join all strings in list and display in box + boxAttackPos.Text = String.Join(",", arr); + boxAttackNeut.Text = String.Join(",", arr1); + boxAttackNeg.Text = String.Join(",", arr2); + boxSpeedPos.Text = String.Join(",", arr3); + boxSpeedNeut.Text = String.Join(",", arr4); + boxSpeedNeg.Text = String.Join(",", arr5); + + boxPokemon.Items.AddRange(legendaryList.ToArray()); + SetConfigValue(boxPokemon, Utils.ConvertBossIdToBossName(t["BOSS"]), t["BOSS"].Comment); + + boxBaseBall.Items.AddRange(ballList); + SetConfigValue(boxBaseBall, Utils.ConvertBallIdToBallName(t["BASE_BALL"]), t["BASE_BALL"].Comment); + + boxLegendBall.Items.AddRange(ballList); + SetConfigValue(boxLegendBall, Utils.ConvertBallIdToBallName(t["LEGENDARY_BALL"]), t["LEGENDARY_BALL"].Comment); + + SetConfigValue(boxMode, t["MODE"], t["MODE"].Comment); + SetConfigValue(boxPathWins, t["FIND_PATH_WINS"], t["FIND_PATH_WINS"].Comment); + SetConfigValue(boxComPort, t["COM_PORT"], t["COM_PORT"].Comment); + + // Get every Video Capture device and put it into the combobox (with right order) + List devices = new List(DsDevice.GetDevicesOfCat(FilterCategory.VideoInputDevice)); + foreach (var device in devices) + { + boxVideoCapture.Items.Add(device.Name); + } + int videoIndex = t["VIDEO_INDEX"]; + if (videoIndex < devices.Count) + { + boxVideoCapture.Text = devices[videoIndex].Name; + } + + SetConfigValue(boxTesseract, t["TESSERACT_PATH"], t["TESSERACT_PATH"].Comment); + SetConfigValue(boxVideoScale, t["advanced"]["VIDEO_SCALE"], t["advanced"]["VIDEO_SCALE"].Comment); + SetConfigValue(boxVideoDelay, t["advanced"]["VIDEO_EXTRA_DELAY"], t["advanced"]["VIDEO_EXTRA_DELAY"].Comment); + + boxPABotBaseHex.Checked = t["advanced"]["PABOTBASE_HEX"]; + this.toolTip.SetToolTip(this.boxPABotBaseHex, t["advanced"]["PABOTBASE_HEX"].Comment); + + string bossIndexAsText = ""; + if (t["advanced"]["BOSS_INDEX"] == 0) + { + bossIndexAsText = "Top"; + } + else if (t["advanced"]["BOSS_INDEX"] == 1) + { + bossIndexAsText = "Middle"; + } + else if (t["advanced"]["BOSS_INDEX"] == 2) + { + bossIndexAsText = "Bottom"; + } + SetConfigValue(boxBossIndex, bossIndexAsText, t["advanced"]["BOSS_INDEX"].Comment); + SetConfigValue(boxDyniteOre, t["advanced"]["DYNITE_ORE"], t["advanced"]["DYNITE_ORE"].Comment); + SetConfigValue(boxConsecutiveResets, t["advanced"]["CONSECUTIVE_RESETS"], t["advanced"]["CONSECUTIVE_RESETS"].Comment); + + boxNonLegend.Items.Add("default"); + boxNonLegend.Items.AddRange(nonLegendList.ToArray()); + SetConfigValue(boxNonLegend, t["advanced"]["NON_LEGEND"], t["advanced"]["NON_LEGEND"].Comment); + + SetConfigValue(boxMaxDynite, t["advanced"]["MAXIMUM_ORE_COST"], t["advanced"]["MAXIMUM_ORE_COST"].Comment); + SetConfigValue(boxNonLegend, t["NON_LEGEND"], t["NON_LEGEND"].Comment); + + checkBoxDebugLogs.Checked = t["advanced"]["ENABLE_DEBUG_LOGS"]; + this.toolTip.SetToolTip(this.checkBoxDebugLogs, t["advanced"]["ENABLE_DEBUG_LOGS"].Comment); + + boxCheckAttack.Checked = t["stats"]["CHECK_ATTACK_STAT"]; + this.toolTip.SetToolTip(this.boxCheckAttack, t["CHECK_ATTACK_STAT"].Comment); + + boxCheckSpeed.Checked = t["stats"]["CHECK_SPEED_STAT"]; + this.toolTip.SetToolTip(this.boxCheckSpeed, t["CHECK_SPEED_STAT"].Comment); + + SetConfigValue(boxWebhookID, t["discord"]["WEBHOOK_ID"], t["discord"]["WEBHOOK_ID"].Comment); + SetConfigValue(boxWebhookToken, t["discord"]["WEBHOOK_TOKEN"], t["discord"]["WEBHOOK_TOKEN"].Comment); + SetConfigValue(boxUserID, t["discord"]["USER_ID"], t["discord"]["USER_ID"].Comment); + SetConfigValue(boxPingName, t["discord"]["USER_SHORT_NAME"], t["discord"]["USER_SHORT_NAME"].Comment); + SetConfigValue(boxPingSettings, t["discord"]["UPDATE_LEVELS"], t["discord"]["UPDATE_LEVELS"].Comment); + SetConfigValue(boxGameLanguage, t["language"]["LANGUAGE"], t["language"]["LANGUAGE"].Comment); + } + } + + private void validate() + { + + string[] atkPos = boxAttackPos.Text.Split(',').ToArray(); + string[] atkNeut = boxAttackNeut.Text.Split(',').ToArray(); + string[] atkNeg = boxAttackNeg.Text.Split(',').ToArray(); + string[] speedPos = boxSpeedPos.Text.Split(',').ToArray(); + string[] speedNeut = boxSpeedNeut.Text.Split(',').ToArray(); + string[] speedNeg = boxSpeedNeg.Text.Split(',').ToArray(); + + + bool bossValue = int.TryParse(boxBossIndex.Text, out int i); + bool dynite = int.TryParse(boxDyniteOre.Text, out int q); + bool resets = int.TryParse(boxConsecutiveResets.Text, out int w); + bool maxdynite = int.TryParse(boxMaxDynite.Text, out int h); + bool webhookID = float.TryParse(boxWebhookID.Text, out float j); + bool userID = float.TryParse(boxUserID.Text, out float g); + + bool videoScale = float.TryParse(boxVideoScale.Text, out float a); + bool videoDelay = float.TryParse(boxVideoDelay.Text, out float b); + + bool aPosInts = atkPos.All(x => int.TryParse(x.ToString(), out int t)); + bool aNeutInts = atkNeut.All(x => int.TryParse(x.ToString(), out int u)); + bool aNegInts = atkNeg.All(x => int.TryParse(x.ToString(), out int o)); + bool sPosInts = speedPos.All(x => int.TryParse(x.ToString(), out int p)); + bool sNeutInts = speedNeut.All(x => int.TryParse(x.ToString(), out int l)); + bool sNegInts = speedNeg.All(x => int.TryParse(x.ToString(), out int k)); + + // Video Scale Validation + if (videoScale == false) + MessageBox.Show("Your Video Scale must be a number (e.g. 0.5).", "Error: Video Scale", MessageBoxButtons.OK, MessageBoxIcon.Error); + + // Video Delay Validation + else if (videoDelay == false) + MessageBox.Show("Your Video Delay must be a number (e.g. 0.5).", "Error: Video Extra Delay", MessageBoxButtons.OK, MessageBoxIcon.Error); + + // Dynite Ore Validation + else if (dynite == false && boxMode.Text == "Keep Path" || dynite == true && q < 0 && boxMode.Text == "Keep Path" || dynite == true && q > 999 && boxMode.Text == "Keep Path") + MessageBox.Show("Your Dynite Ore needs to be a number between 0 and 999!", "Error: Dynite Ore", MessageBoxButtons.OK, MessageBoxIcon.Error); + else if (dynite == false || dynite == true && q > 999) + MessageBox.Show("Your Dynite Ore needs to be a number less than 999!", "Error: Dynite Ore", MessageBoxButtons.OK, MessageBoxIcon.Error); + else if (maxdynite == false | maxdynite == true && h > 10 | maxdynite == true && h < 0) + MessageBox.Show("Your maximum Dynite Ore needs to be a number between 0 and 10!", "Error: Dynite Ore", MessageBoxButtons.OK, MessageBoxIcon.Error); + + // Consecutive Resets Validation + else if (resets == false || resets == true && w < 0) + MessageBox.Show("Your Consecutive Resets needs to be a number which is 0 or greater than 0!", "Error: Consecutive Resets", MessageBoxButtons.OK, MessageBoxIcon.Error); + + // Attack Stats Validation + else if (aPosInts == false || aNeutInts == false || aNegInts == false) + MessageBox.Show("Your Attack Stats need to be a number and be split with a comma (e.g. 120, 121).", "Error: Attack Stats", MessageBoxButtons.OK, MessageBoxIcon.Error); + + // Speed Stats Validation + else if (sPosInts == false || sNeutInts == false || sNegInts == false) + MessageBox.Show("Your Speed Stats need to be a number and be split with a comma (e.g. 120, 121).", "Error: Speed Stats", MessageBoxButtons.OK, MessageBoxIcon.Error); + + else + setConfig(); + } + + // Method to change the Config.toml + private void setConfig() + { + + // Read the sample to get the language settings + the paths + + string samplePath = Directory.GetCurrentDirectory() + @"\Config.sample.toml"; + + using (StreamReader reader = new StreamReader(File.OpenRead(samplePath))) + { + TomlTable tt = TOML.Parse(reader); + + // Change the table in the toml file + string path = Directory.GetCurrentDirectory(); + string configData = path + @"\Config.toml"; + + int boss = 0; + if (boxBossIndex.Text == "Top") + { + boss = 0; + } + if (boxBossIndex.Text == "Middle") + { + boss = 1; + } + if (boxBossIndex.Text == "Bottom") + { + boss = 2; + } + + TomlTable t = new TomlTable(); + + t = tt; + + // Get all values in a string-array + string[] atkPos = boxAttackPos.Text.Split(',').ToArray(); + string[] atkNeut = boxAttackNeut.Text.Split(',').ToArray(); + string[] atkNeg = boxAttackNeg.Text.Split(',').ToArray(); + string[] speedPos = boxSpeedPos.Text.Split(',').ToArray(); + string[] speedNeut = boxSpeedNeut.Text.Split(',').ToArray(); + string[] speedNeg = boxSpeedNeg.Text.Split(',').ToArray(); + + // General Settings + t["BOSS"].AsString.Value = Utils.ConvertBossNameToBossId(boxPokemon.Text); + t["BASE_BALL"].AsString.Value = Utils.ConvertBallNameToBallId(boxBaseBall.Text); + t["LEGENDARY_BALL"].AsString.Value = Utils.ConvertBallNameToBallId(boxLegendBall.Text); + t["MODE"].AsString.Value = boxMode.Text.ToUpper(); + t["FIND_PATH_WINS"].AsInteger.Value =int.Parse(boxPathWins.Text); + t["COM_PORT"].AsString.Value = boxComPort.Text; + t["VIDEO_INDEX"].AsInteger.Value = boxVideoCapture.SelectedIndex; + t["TESSERACT_PATH"].AsString.Value = boxTesseract.Text; + + // Advanced Settings + t["advanced"]["VIDEO_SCALE"].AsFloat.Value = float.Parse(boxVideoScale.Text); + t["advanced"]["VIDEO_EXTRA_DELAY"].AsFloat.Value = float.Parse(boxVideoDelay.Text); + t["advanced"]["PABOTBASE_HEX"].AsBoolean.Value = boxPABotBaseHex.Checked; + t["advanced"]["BOSS_INDEX"].AsInteger.Value = boss; + t["advanced"]["DYNITE_ORE"].AsInteger.Value = int.Parse(boxDyniteOre.Text); + t["advanced"]["CONSECUTIVE_RESETS"].AsInteger.Value = int.Parse(boxConsecutiveResets.Text); + t["advanced"]["NON_LEGEND"].AsString.Value = boxNonLegend.Text; + t["advanced"]["MAXIMUM_ORE_COST"].AsInteger.Value = int.Parse(boxMaxDynite.Text); + t["advanced"]["ENABLE_DEBUG_LOGS"].AsBoolean.Value = checkBoxDebugLogs.Checked; + + // Stat Settings + t["stats"]["CHECK_ATTACK_STAT"].AsBoolean.Value = boxCheckAttack.Checked; + t["stats"]["CHECK_SPEED_STAT"].AsBoolean.Value = boxCheckSpeed.Checked; + + // Create TomlNodes for each stat +,=,- + TomlNode node = new TomlNode[] { }; + TomlNode node1 = new TomlNode[] { }; + TomlNode node2 = new TomlNode[] { }; + TomlNode node3 = new TomlNode[] { }; + TomlNode node4 = new TomlNode[] { }; + TomlNode node5 = new TomlNode[] { }; + + // Get all values from the array into int and add it to the node + for (int i = 0; i < atkPos.Length; i++) + { + + node.Add(int.Parse(atkPos[i])); + + } + for (int i = 0; i < atkNeut.Length; i++) + { + + node1.Add(int.Parse(atkNeut[i])); + + } + for (int i = 0; i < atkNeg.Length; i++) + { + + node2.Add(int.Parse(atkNeg[i])); + + } + for (int i = 0; i < speedPos.Length; i++) + { + + node3.Add(int.Parse(speedPos[i])); + + } + for (int i = 0; i < speedNeut.Length; i++) + { + + node4.Add(int.Parse(speedNeut[i])); + + } + for (int i = 0; i < speedNeg.Length; i++) + { + + node5.Add(int.Parse(speedNeg[i])); + + } + + // Stats + t["stats"]["ATTACK_STATS"]["positive"] = node; + t["stats"]["ATTACK_STATS"]["neutral"] = node1; + t["stats"]["ATTACK_STATS"]["negative"] = node2; + t["stats"]["SPEED_STATS"]["positive"] = node3; + t["stats"]["SPEED_STATS"]["neutral"] = node4; + t["stats"]["SPEED_STATS"]["negative"] = node5; + + // Discord Settings + t["discord"]["WEBHOOK_ID"].AsString.Value = boxWebhookID.Text; + t["discord"]["WEBHOOK_TOKEN"].AsString.Value = boxWebhookToken.Text; + t["discord"]["USER_ID"].AsString.Value = boxUserID.Text; + t["discord"]["USER_SHORT_NAME"].AsString.Value = boxPingName.Text; + t["discord"]["UPDATE_LEVELS"].AsString.Value = boxPingSettings.Text; + + // Game Language Settings + t["language"]["LANGUAGE"].AsString.Value = boxGameLanguage.Text; + + using (StreamWriter writer = new StreamWriter(File.Open(configData, FileMode.Create))) + { + t.WriteTo(writer); + writer.Flush(); + } + + } + + } + + // Method to minimize panels (Drop Down Menu) - not needed rn + private void showSubMenu(Panel subMenu) + { + if (subMenu.Visible == false) + { + subMenu.Visible = true; + } + else + subMenu.Visible = false; + } + + // Does the setConfig() Method when you press the "Save-Button" + private void btnSave_Click(object sender, EventArgs e) + { + validate(); + } + + private void toolTip_Popup(object sender, PopupEventArgs e) + { + + } + private void btnTesseract_Click(object sender, EventArgs e) + { + FolderBrowserDialog fbd = new FolderBrowserDialog(); + fbd.SelectedPath = boxTesseract.Text; + if (fbd.ShowDialog() == System.Windows.Forms.DialogResult.OK) + boxTesseract.Text = fbd.SelectedPath; + } + + private void labelTessaract_Click(object sender, EventArgs e) + { + + } + + private void boxTesseract_TextChanged(object sender, EventArgs e) + { + + } + + private void labelGameLanguage_Click(object sender, EventArgs e) + { + + } + + private void boxGameLanguage_SelectedIndexChanged(object sender, EventArgs e) + { + + } + + private void btnSettings_Click(object sender, EventArgs e) + { + Settings form = new Settings(); + form.Show(this); + } + + Color zcolor(int r, int g, int b) + { + return Color.FromArgb(r, g, b); + } + + List panels, panels2; + List buttons; + List labels; + List comboboxes; + List textboxes; + List checkboxes; + + void Initialize_Add() + { + panels = new List(); + panels2 = new List(); + buttons = new List(); + labels = new List(); + comboboxes = new List(); + textboxes = new List(); + checkboxes = new List(); + + + panels.Add(panelLogo); + panels.Add(panelSideMenu); + panels.Add(panelRightSide); + panels.Add(panelRightTop); + + panels2.Add(panelAdvancedSettingsSubmenu); + panels2.Add(panelDiscordSubmenu); + panels2.Add(panelSettingSubmenu); + panels2.Add(panelStatSubmenu); + + buttons.Add(btnAdvancedSettings); + buttons.Add(btnDiscord); + buttons.Add(btnSave); + buttons.Add(btnSetting); + buttons.Add(btnStats); + buttons.Add(btnTesseract); + buttons.Add(btnSettings); + + labels.Add(labelAttackNeg); + labels.Add(labelAttackNeut); + labels.Add(labelAttackPos); + labels.Add(labelSpeedNeg); + labels.Add(labelSpeedNeut); + labels.Add(labelSpeedPos); + labels.Add(labelBaseBall); + labels.Add(labelBossIndex); + labels.Add(labelComPort); + labels.Add(labelConsecutiveResets); + labels.Add(labelDyniteOre); + labels.Add(labelGameLanguage); + labels.Add(labelHuntingPoke); + labels.Add(labelLegendBall); + panels.Add(labelLogo); + labels.Add(labelMode); + labels.Add(labelPokémon); + labels.Add(labelRun); + labels.Add(labelShinies); + labels.Add(labelShiniesFound); + labels.Add(labelTessaract); + labels.Add(labelVideoDelay); + labels.Add(labelVideoIndex); + labels.Add(labelVideoScale); + labels.Add(labelWinPercentage); + labels.Add(labelWebID); + labels.Add(labelWebToken); + labels.Add(labelUser); + labels.Add(labelID); + labels.Add(labelMessages); + labels.Add(labelAtk); + labels.Add(labelSpeed); + labels.Add(labelMaxDynite); + labels.Add(labelPathWins); + labels.Add(labelNonLegend); + + comboboxes.Add(boxBossIndex); + comboboxes.Add(boxPokemon); + comboboxes.Add(boxBaseBall); + comboboxes.Add(boxLegendBall); + comboboxes.Add(boxMode); + comboboxes.Add(boxVideoCapture); + comboboxes.Add(boxGameLanguage); + comboboxes.Add(boxPingSettings); + comboboxes.Add(boxNonLegend); + + textboxes.Add(boxComPort); + textboxes.Add(boxTesseract); + textboxes.Add(boxVideoScale); + textboxes.Add(boxVideoDelay); + textboxes.Add(boxDyniteOre); + textboxes.Add(boxConsecutiveResets); + textboxes.Add(boxAttackNeg); + textboxes.Add(boxAttackNeut); + textboxes.Add(boxAttackPos); + textboxes.Add(boxSpeedNeg); + textboxes.Add(boxSpeedNeut); + textboxes.Add(boxSpeedPos); + textboxes.Add(boxWebhookID); + textboxes.Add(boxWebhookToken); + textboxes.Add(boxUserID); + textboxes.Add(boxPingName); + textboxes.Add(boxMaxDynite); + textboxes.Add(boxPathWins); + + checkboxes.Add(checkBoxDebugLogs); + checkboxes.Add(boxCheckAttack); + checkboxes.Add(boxCheckSpeed); + } + + public void ApplyTheme(Color back, Color pan, Color btn, Color lab, Color cbox, Color tbox, Color textC) + { + this.BackColor = lab; + this.ForeColor = textC; + + foreach (Control item in panels) + { + item.BackColor = pan; + item.ForeColor = textC; + } + + foreach (Control item in panels2) + { + item.BackColor = tbox; + item.ForeColor = textC; + } + + foreach (Control item in buttons) + { + item.BackColor = btn; + item.ForeColor = textC; + } + + foreach (Control item in labels) + { + item.BackColor = lab; + item.ForeColor = textC; + } + + foreach (Control item in comboboxes) + { + item.BackColor = cbox; + item.ForeColor = textC; + } + + foreach (Control item in textboxes) + { + item.BackColor = tbox; + item.ForeColor = textC; + } + + foreach (Control item in checkboxes) + { + item.BackColor = lab; + item.ForeColor = textC; + } + } + + private void boxComPort_TextChanged(object sender, EventArgs e) + { + + } + + private void checkBox1_CheckedChanged(object sender, EventArgs e) + { + + } + + public void SetConfigValue(Control control, string content, string tooltip) + { + control.Text = content; + this.toolTip.SetToolTip(control, tooltip); + } + } + + +} diff --git a/AutoMaxLairUI - Code/AutoMaxLair.csproj b/AutoMaxLairUI - Code/AutoMaxLair.csproj new file mode 100644 index 00000000..e6041a8f --- /dev/null +++ b/AutoMaxLairUI - Code/AutoMaxLair.csproj @@ -0,0 +1,62 @@ + + + + WinExe + netcoreapp3.1 + true + true + true + true + win-x64 + + + + + + + + + + + + + + + + + + + + + + + + + + + True + True + Resources.resx + + + True + True + Settings.settings + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + + \ No newline at end of file diff --git a/AutoMaxLairUI - Code/AutoMaxLair.resx b/AutoMaxLairUI - Code/AutoMaxLair.resx new file mode 100644 index 00000000..5122eb6b --- /dev/null +++ b/AutoMaxLairUI - Code/AutoMaxLair.resx @@ -0,0 +1,410 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + iVBORw0KGgoAAAANSUhEUgAAAHAAAABwCAYAAADG4PRLAAAABGdBTUEAALGPC/xhBQAAPpZJREFUeF7t + nQdYFGf39tfeezeWxK7RRMXeu2JvNBURERXsBcQCqPQiKhZAlKIiIGJBith77z1qYklM1Gh6b/d3zpmZ + ZRcWNa/GvO//87muc23fnXl+c582ZXVvx9vxdrwdb8fb8Xa8HW/H2/F2vB1vx/9nw0xXQL33dvxPDjNd + tO4DXWO6l1954u34nxp5W+b5kyB+rmuui6LbDgSzGD2dR3n17fivH40daqFQ2wJ/5m2Z9y+yn/KY6U7r + mukCCWYXXSNdZdXFvgX63zqSnnjDfbc9Wk5piFI9iiF/63wEMs9f+Vrl/YXg3SU7QupcQrd2dNuGFFqP + rKKupq4wfTwfGcN9C/jfGmk/LEHq90HY9rUvIm7MwbRES7Sc1BCV+pdF4fYFGSTbn3la5PmD7CcC+YTs + HsE8L3DNdIl0P5xsLt0fQbfd6LaJ7kPdu7r6uhL0Exrkt+OfGOk/hiD9xyXYSRDZFKDBSHjoheXnZsB5 + 4zCYL2yLBqNrouqgCijVrfhfhQgsKfVPA7jsghnw73la5vmNbr8lkI/IrqqQN9J9T7q10TXVtaTb2uSe + i9PP51WW4u34jwfDY4gMTgEYLI93/bQUmT8vw+5flmPPL6F0fzl2PA3E+k88EXbJFUuOT4XrVls4rhuE + fovbo+OspmgytjZqDKuMCuZlULRT4b8Kts0vkDlRUhXM9iMBZBVfIqg7yOZRzG1LQMvS4rxV6t8dyeQ6 + GZ4GUFNhxk8EkQAyuN0EcM+vK7D315XY9xvbKuxn+301DqjGz+37dRXSv1uKpC98EHl9LpaenoaZSdaw + XNod7Wc2QZ0R1VB5YFkU6Vjoz/yt8v2hgaXbHwnkLbIQXQvC2UhXUF28t+NFY0bqcGwliDu+CxDb/q0/ + Ur4PzKZEQ4grCFQ2kAbGz/N7NNXyd+yk7+PfSPhyEdbdc0PgGSe4pttgUHAHNHKoiTK9i0Ngmun+IIjP + yLaIq33rYl88mji/i9CbU7H56WJsfuaFTU88EPfYHUl0f/u3fooiyc1mEEgjRRoA1Yyf49fY9WYIuCBs + /cYXcfSdMZ/PxdpPXRB+fwZWfTIVy247I+TWRCy5ORHeZ+1hF9tLYBZqX4Bj6J8E8SmZv66xrpK6qG+H + qfHBpHfRbdGHWPfpHIEX+/k8LLvljKAbjlh+exLC781E9EM3gZr4dBG2fOUtULZ94ydqNVQuP5f0lRfi + v/SUzzCowBvj4HfNXmzJR+MRemcSPT8NEfS9UfSbGx+5I+HJYmx56oPNVNL4H3WGmXMDkItl9/o7xcpz + pMa+dPu25WdqdFn4AerZvwPryC6iktgv5snkel+yw8Lzo8QWXRiFxZds4X1lNHyv2gkM/+tjCY4Dgm6O + I3NEMBnf8nP8Or/X67L6mStj4H9tLEJIbSvuTEHY3RmIvO+CmIdzsemxJ6mfNoqv/LDjm0Ds/DYY254F + wmXrKFQZWF5cq7hVM10QgaygLvabGnlkw+EEi8siLo844Wqm60TL1Jtu+9Bzg8n6yf2mus50vzm9q9Yb + 62g1n14XjZ1qopZtZYzf3JfcnCtN7mxxbZ7nRsLjzAi4k3mcHSGPF10cJWBe1rwvj4YPAfS7Qiq8MhZ+ + lx3gf9kRAZfHI+iyE1bcnI7oB/NFfdu/DkDqd5QVf0/u+sflWP+xJ7rPbcmdIilRaGqO0US1oMV+/RPD + jYlmuqoSe5vpbOm3VpDtJSCcLX9Bt1/TLdfB7BX+pKX4i0om0C3U27/U53+j2x/I7tH3LKXbUuov/DNj + 4raB6B3QAnXtqqKaRXnYxvTAyjtTsfQjZyw+PxoLTo3A/JM2mHfcWrET1vScDQEdKUDdT9PrJ2ww95g1 + XA9ZYfZ+C8zcOxzTM4dhasYwTEkbikk7h8B5xxBM3DoY45MGwiFhAOzj+sNuQz+MXt+XrB+ck4dTcjMF + 8Z97Y+c3FHN/oBLmp1CkfbsULsmjUKlfWXBJQhNym6yDuvj/+aiiKypKMdNZEJhYumVQrHQ9IA0ObTxU + 7+ansqgQinYshhJdS6FU9zIo27M8Sncvi9I9yqJYp+Io3L4ICrQpQF4jrwJWCQFH6Hfqq7/6+sfEbYMw + NZ0mOXUAWsysi0qDS1NMbIpFZ+zgdd4OCwgew3E7YkWALBVAe4Zj2i4GNFQPyGk7wUkehHGbByiANvXH + mI0qoNi+tGGYY1S0OUZGmWPEuj4YsbYPbCL7kOvuDes1itms6YPx8UMRdHoqEj/3QcpXwVR7kkt9EoSQ + E9NRf2QN5G2Vl5vvN8iaqG6KYyNnq2zPV2YdXSH6XAMCNZtu99FEf5mnRd5f85hJI+JPAvBn2d4VUXdk + Y7Sd3gPDAu0xe6s/fA+sxapzyYi5uQuJ9w9j+6PTSH92Abu+voxd31xBJt2mfnkOyZ8dx8Zbu7H8ZBwc + I2ehzdSutNHl5+U9rKumK6Iuxesd47cMBEOcsXs4Fl4YCaeUvujs2ZisCYZHdMT0PUMw57ACbxbB4/cx + uCxoA01Cs43pqwDTYAkwBZRVRG9YhvXCoKVd0Nu3HTrNa47mUxuhvv27qD68EqoMLo8K/crgnSEVpPtT + dWAFVO5fDuV6l6ItPL9s3TQpXxKIj+j2LN0eoNutdBtKbsuV7vcTV2imq0FWlMCVpNtB9Hp8/jYFHuZv + U/DHQh2K/lZpYE18MLED+vrbYvr2IPge34hV19Ow/v4h8gTHkfToFLY+OYPtBCeFgKV9dREZBCvzm6vY + /e017PnuOvaS7fv+hklLoc++Z1mfNrp83Fe2Uaf89Q6eeEdyawzRlUBpsWvucUuMS+6DfktaoU9gC9hE + d8WUjCGivMmpBG/HYExQFTc23gQ4VWmsMquIXhi6ohvM/duj9awmqGtbAxUHkNvpUoTKhkK0lebjlUS+ + 1uotGbkfMRVWrqa8j7s9+f6i2z9YTfTcb3TL8eoh2TW+zdc6/3dFO5f8sbZdM3T3GQn7BC/M2BOO+Uc3 + YPHpRARc2Ibl19IQTgpa98l+gngY8aSopC8Y4lnyBOexkyCmf32JAF7JAvi9AnA/2w83DYwgki3OXInC + 7Ypw/D6ldpte77Al98bKGZc4gOLUYIlpGkTOPjmBcT1kQSvcm2C2xoBl7eC4pb8AdyT1OtDn7OP6STxj + eAKO1GYR1kOAtZzRGNVIVSW6FSNYBVVQ+UFKoMdFUM68EqoPq4Umji3ReW4/DAywxbCQsSjcoSjy0/s0 + UHlb5kfhTiVRpm8N1BzZAg0cu6L5jCHosngCegVMRwf3MWg6bQDeG9USVYY2QInu5VGoQzFyjQxWgUy/ + +1fxbmVQcVBNmM2iDSt2PiamhWLG/rXkZWLheTIefueTsfTKToR9lImoTw5gw4MjSHx4AsmPFSUKxK8Y + 4lUCeE2vwJwAFYg7aAOoZVmP4+LPtB4W6rS/viGxh1wbTzxDYGUxNC4bGOLiS6MkWeE4OHPfcIxNNEcv + v5YYsqKj3nWOIYCsPuu1vdA3oD0+dK6H8v1Ko0jHwsjftoAAK9yxKKoMqoEm4+izwWPgsjOQYt0GrLmV + hk1fHMaWZ6eplDiLbV+fhdvOYBRsV1iUWKx7BXQJdMPQDRGwSoiG7dY4jEvbAqfd2zF1fxpmHMrArMOZ + cDm6B67H9sKVbl2OZGJKZjJ5kChYRPqi3byRqG3XBiV7VpLv1VTNG1HZflXRck5/WG/0hPOu1ZhOMGcf + isZcUqbnqQT4X9iK0OvpWPvxfsR9ehRbKP4pINmdXsEeUqJehTkA3hQVWi9xZIAcCzNfe5uQY5FmHJtY + PewSp1EGyQmL21EryToZqttRgkgZJrtQi/Au6L+kPew29sXwVV3RYkZDcYtFOxelSSpECioiwNpM74bR + a6bB/0QMou/upprvJJK/OiO2VeysHtz2r8+JBR6PRRFSIKu10dShGLIxEsM3rYMlAbROjMGILRtgtz1e + QDrvScG0A+lGEOcc3wc3thP7MZft5AG5P23vdtglrEZDUm+BdkX06taZ5UHRLiVR37ENrKLnYereNQKS + bQYlMDMPRlF4iYH7yU0IuLgNYeRmWZnsXlmRrEa9EglYdoCrziSyG+U24VP6vQbq1L+eYbG6FyxW9yQI + WcYwWZHsHjnOsbtk98qJC8NzThlMLrc/+gS0QZ3R1cg9FpXkominoqg7qjEGBdrCfd9KRH68CwlfnkDS + s1OiMJPgssHb8fV5JHx+FBXMK5NS8qDOBHP0j16NIRvWZEHcHCsQRyVvFJCO6cmYRCCnH8zA7CO7syAS + NEOIbPPIZuzdAbMZg8nNVlAAkiILtFXcexEqB1q7DYRzxsosiAJynRjDZIXOORpLmXoiQq7uFJisyN3s + UlU1MjjNMp5dQoNRH3BJ8hslVw7q1L+ewQAF3MqeGMa2QjW6LzDDe0kiIlmkxLae6OxuhuoWlVC8a3Gy + EqhhWRfmvtZYeGQNou7vQcLTE0gk2/zspB7elq9yAswJTwGY8s159FgwWCa37MD66BG+FL0jQzEgJkzU + aBEfpUBMWo+RBJHdqt2OBDiSIhnkDALJapxDIPVKNADINufobgwNX0TLX1YAdpjdG82c20tcLti+MFrM + NseU3eG5Qpx1SAE5+3A0uewYeJ9LwvoHh5H69UVkfkfxkUAyTM0sg8ZywsVdpR007byT+/UMTX0avKEr + emBoqAlb3h1dPFrinWEVUbxbCZQ1r4A2s3pg6g4frLqzE+sfH0bck6PY9OVxFeBJPcAkBpgbRAOAmgLZ + 5qUtkSI6X9vC6LTcTyD2WrMcfdetxKDYcAyLW6tX40hWI0G03bYJYwgku1YBeWiXAjIXiPNOHUBd+/YC + cIC3DbY8OQX33SvwwYQ2eM+mESakhCjudF9uEAmgCpHN41Q8wu/sQdLTU0j5+gIyvqWSg2Du/v4aAg+u + Q4HWBTgO3iErr07/q49ui1qj++LW6OXTDuZ+7dE/qDMGL+umBzdkeQ96rgsajq2FUj1LoXz/SuiyaDAW + HA1H+GeUqT06gJjHh7DhyRFsFIDHEJ8N4maBaACSLJlgKhBNqzHu04MSB1mFDWfZovOKQHRbvQQ9I5bB + fO0KcauDya0OU92qjQHI0QSSFckgJ+/diZkUH9mtGrpTBuh2fC+qDmsopciwQDuZ8PRvL1GicgKrrlKs + u5MJr7ObMYtgMUQjgCYgulCc9DwdjzV39yLxS4r1z87Ixpj6zUXE3d2PCn0qczLzA6nQTJ3+Vx8FyfcX + bFdQkg82Tvc5GalhURnvj69DZUATVKGCunTvsmg/vx/cjoVh+f00hD3cjTWf78W6Lw4g+tFBxJICNYhx + BJGVyCBNWfbXNJerAFdgM+Qubv0EYJFuFdEqaDHahfigU2gAuoeFoI8KcSCp0TA+2rBbJZDsVhkkK5Jd + 65R9qRIfDdU4OWMzlRrFkbdFXkxY5ypqYdv13RUCeRk7aeITHp/Ayo8y4EEJjMBTIeoBahBVgOxOF55N + wNr7+7FZhcgbaPLT00ocbJHnD1onJ3X6X300tjdDbeuGqGVVHxX7VkHJbqUlGeGeHoMtQGUA369uUQe9 + fa0ogfFGwPXNWPXZLoQ/3IPIL/bpIbISxR4dksfrvtgvkPl9bBGf75HH/BkFenblqrFTBbn62nYpJTiZ + qe8yViC2DvZCu6W+osie5FbZpTJEUSO5VY6PVpSpCkg1Pmogx2dsxXTKWNmtcmwcsT6Eas2CKESlxeLM + VeTq2N0ppsHMIJg7yR3GPTyK4CspmHMkVoFnCiDBY3M9FovF5zYj6tMDtC6n9BAH+o5kBXI2uo6m/vU0 + 5LkYTf/qArY9OoX4u+QObxGYS9uwMHMFxke5UjIxCC0mdUQ9yi65LKhGRXdDBzNMSfPDSoK4mtwoq5Ft + Fd1f8WkGln+ajuUP0sRC6T4/x6/xeyII4FoCa6haTbF6t0umqdBsUgdFhT2qwMzfEy0NILIau64KRi9y + q/2iVmHw+ggMJYjDCSKrUQ9SUyRlrPYpiXDevUPKjl4B06hWLSGN6XXXUiVWmTIBSYrc/uwcIj/ZJ26S + oQk8MsNkxpWy0zkE0O34evheTsb6zw/LujDEGck+nOn+RQDPSF/2dYz9Pyq1yt4fKFsikwWmLVBxI5eQ + +u1Fik9nsOnhYUTcTMWiQxFwyViCkJvJAmfpg1S9hdzfKcb3l5EJRBUggw5/WYAGbjTw5HqpK/O0KoB6 + ruPRnCEGLhKI7Zf5iRIZIrvV3pTkZC85GGKOjJVAOqQmoeGE7uRhCuE9i7rY/vi0rPue5xiDTPvmkvRJ + A2gj51KCwRm6TwFI8NxObMD803FYeisVm54ck/XhdSnQpiDvUXlMBX1lFcGrjRcBTCNL+YYUSokFZ488 + yTzpDGH1w0wjcIamQGSAaTkUyK6VAXLmahpglgI30/PsAfK1yo+SAxui8SI3fOizAM39PJS4qLpTTnC0 + TJWTHC45hqolhwaR1aiA3ACr+EiU7FVFujHDAuxeAO+6gV2Tudn65VmsJG/lQWqcc2y9uE1WHt93O7Ge + kiQF4KJLiYj4dK+EBxZAUaozKev9TddM94GK4NXGXhUeL5gGj/1+xneXBR4rkOsy9uE8oTzJ61WADISV + ljtARYUKwF3PdaFZyYyxC+VsdeG+1SjWuTjyU0lRc5IlGi+eiyZe8/CB93xxq22XeKMju9PVwZSlUs2o + QmS3yvHRFMguAS6kvsIo3qUklp2MywZQgWVYxxkav7ab1LiTQk/Mg0Pwv7wVC87EUVmyUW8Mz/3cJgEY + dGcH5QW0wT48iNI9y0nZQgCHqQhebbDKNKUxrDQyvuUMbCcpbwfB4/Se1ceTyxPNiUrk5/vELeamQDYN + IrtaiZcCUEl8jACq9WO8ADR0o0rJkfD4OFpP7aL0VLtXRkOPmQJRjECyItmtdiCX2mVlkFL4qxD7EkQt + W9VAsmutPLyJdF4+HNcKqc/OC8DsEAUYeybtVjMVIr8v/ZvL2Pz4FFbeyYDXpSR4nI+Hx7l4eNLtwosJ + 8LqShIDb22Qj3vD4CGoMr60AbK7zVhG82mA3tp6+mFXF2aBWBhim93zLj/l5zhw19TEYU+AMTXOlhm5U + Kz84W436bB+CLyTAYrkj2s3sgVERU7Hq+o4cKvQ5slb2hOclV1rZrnsWQNVYkU193SU2shrZpXJy0ycy + VDJVVqOAJNfaOWiuqJljq0fasue4TxPwDE2FyC6VE5x1lHUG3twu0LyuJsH7WhJ8byQj6JMdMhecidez + baK078x0qTT9r56JBt9NwZJ7xhOuTXpWBqlkm2xapsmva595kfH3cTKz8rMsiKEfp8BpiydaTO2MMuaV + UaB9EYGTr3UBNLRriqh7e4ySGQba02MIp+HI364Y6s2dlAOiBpLjY1uqGVmNXGowRFEjgTRfG4qyA+qK + +swmttOrzxQ8zQQimwmAGkROcKRgf3wUyz9JQ8CtbfAnC7yzneY3RT8PZlM7KQCb607T9L86QP5yQ4D/ + hBluEKF0OynFB+87tkSJ7uVQvEdFlBr0PqqO7YPqEwajuHktFKTiup+vDTY+OmKkxDCqCyv2q0ITkAcl + BzTA+wvdTEJkk/gYsFDcqqEam8wegXxtCkq9G3g46oXwslsOmPrX2AVflXDEISDs090IubsTS0gghnPR + Zk4vTYF3aPpfvSeqADT+kX/CGKL/zST09LVE6V4VBVx5qzaoM9uRQMzRT3z9uZOp5ntH9go4xfOxqFmF + PYOcuHGeqCcPKbH6xCFG0EwZg+RslWvG9kHuKNSpNGWeBTHQewTVdpf+JsCcrxsDVJJAhsjLynmCVmpp + 89BhgdJdIgV+8VpqQd5C3gRAr6ub0HxaJxTtUhqlBjZC7Vljc1XQu5OtSYXFUH1YbYTfTlWTGkWJcVQY + N3ZoIYlA/vbFUX/eFJPfYWgSHwlkmUENpRxpaPshNt3dL4rJCdAYThYgBdKLTCByvahC5HyBQ44GsbuP + hQaQ9w2++iGHSgz8ZyH63khE/XHNKb4VRIn+9dDQfZbJidaMFck1H+89d4hx0auQJ4QthLI8Tmh4Ikr0 + q0vvdzX5PYZWxb4XKa8Qqg6sgWWnuGxQ4P09gGxZoHIzfQuOsnheds66OQvnjNx8ySgN4Pev5bSBfxpg + 8N0daDGzK8WdAijRtw4aLphhcoKzG9d7nCl+MKE1NnxxWFFhNlcqfVKKhxVHdsL7VOCb+h6296bZIl/b + olRLloQ7ZZ27vr0irk6b8FcByN8jRtAM73NmyiqUPSuU2bM7ZYgWkc4awJ91TXTVVAz/+eAJ/ifdqF2C + m7SrivasjkYes01OsCnjWFigYymU7FEWode26ksaDWL842PoMq+/cuBty3wUD4ea/J7aM+1RsFMZyW4H + etvo99G9DMCclvU+I4AqMENjBUoX6+vzsrxcO3P55LjFQ6sD/9B9QOX8q45gqlH+KYB+HyXh3RHkCtsX + IxWMMjnBuRm7xWK9a6AAuVHPg2Hq3oqs2pQVGXVvN2pZN5AJydu6kMRO/edJkTWchqFAh5JSnjQa0wxb + vjhBCcZlmWCe9BfFwJyW9T5DgFnQeH+isk9RGiNUVvD+QM6gub7mFqLbgRV8hJwC0UzXU8Xwnw8uMjUX + +rrLiVmHllOpUFoSktozxhgBehkra9GCXG8hTNvhKx2b7PsaGWbQ2TiUN68kbilf2yKiuDqzHFBmaFP6 + LNeW+WRX2dqbqTKhPLH/GUTj9ygAFSVrAPl7NXDcP2Z4vKOaXT4vO3efvE5HGwK0UzH85+OfBMjJSwNH + M1JRIRTr8y7quk54bqzKbpVsOXYWhFW4s74Bzq5Ia4JrQOfvCUWhDspRZnkpUWLV8d4LgWfTEBE3UqQZ + zxPKiUV2iM93p9mfy1KfADRwnxpAbkOy65QdAKQ+9hbcRot9dBhhdzNQgmpQNQ4eIgSvdtrcPwmQzeNc + NGrY1JO6LW+bwig1oCHenWKDBgum5wqTn2/k6YKak61QuGMxDFg2RhIArYvDu6W4LaXtHOa2nFOSp3T6 + eetml8kbTQ2LOvA8FC5q5djJh29wUsHqYJWwq+NYpYE0DdHYjOAZANTcpwIwS33SyyVPwQC5Zbnx8VHY + Rk7T4uDvuqY6cxXFfzYYYFYmahrCq5o31YAdPQagEMFgVXB2WahLOSkpypGbrGDTjtTWBRVHdECZYc1Q + 3Pw9er2CxM7iVC44p/vK93AtpXV1tH2N0t1Rze3QSgxd6YgJWzzhsmcpQm/zXgDlKAGePI6jGkhNjdy4 + N+VSs4Pkx/z6zgfHsWH/JoQsdYe78yi42gyAi3V/eEyyxbKVi7DhaBK2PTwu32+4B4cz0bgnx8TW3E5H + KUrOVBWepmy0jIrj74/Aj7crAAWiaQCvw3gDWXBmHQaGjkV9B4JEboTrPK7NWDF5KUtkd8nZokCm+6V7 + V5D3B32y3eR35mZL7yugGTIrV9uNxW6Ym/HsdhkkK4QnWouNrCIBKRCzQDK4pAtpWDjNHnZ1asKiRDEM + L1bEpFmVKQWnds2xbK0vkh4ckvgnOwIIIO/YTXhCCdjjE7ALnw4+7J8g8okvUwjFf9YX5WarKRUuMbDs + E/SqFnhnKxacXgunVG8MDZuArl5D0WXxEPTwtcTgVY6iuHmn1sD/1haTn/+7pqmWVcqNeXa9HE95UnmC + eXeZsVvNArnz3lG4TxxJYEqaBJabWZYsjqnmnRB1crOojuM1A+Sj1TY/oaTm/iE5jU095P42FRQ1VSR/ + b0jHnFXIsdAAokkzMTn/a6apk2GyMlmVPLkMUh8fVbcas28jbN99xySg7GZJqrQqVQIWxYsaPT+mQS2s + 2hsl+z4ZJAPc8uVpbP3yDMIub0f1obWUI9X41Lj/pLntezNZdjgqKjRMaAzNGKSpiflfM0WVqdKn1ECy + IjlmsSJXJ6+EVdlSRjCy24jyZTGva2fEL/LEwbiN2BURgVCHsXB4r6bR++zqv4vVp+IlHsupBqRAPiRj + +9NzcNsWhPx8wK9yeZU2KpaXH7zT0f/WVtlvZexKc7P/O2rUTDtqgPd3cvN55YFoWJUvYwQhu42tUR17 + otbh159+guH447ffcOXgQUxu0tjo/Y4dzRDxSbokU4lPTiL5yWk55zD5i1NoPbmz5kq3/e09FIsvJ4JV + yK40SHWlL4bIZmIy6PmgG0kIuBAH/7PrEXBxE4I/SsaSv5mE/FvGqgz5aCtGN6ljNPnZzaZsaexfH6si + Mz3uXb6MCfWMv8d11mjpiW58dBSJjyiJenJWzm4KPrpejs2h5O17ioWdVDQvNzwvJsDn+haBKCqUrFSB + aGhZ8dHQdiLoZhI8N/tiolVP2LxXFZZlSmA4Z2kUCyxKFYdVlfKwb/chZrmPg8/+sP96mC7eTkaTbsr8 + LYfjz99/V1HlPg7Fb8JIcrPa5zh7DUwNRcTDvdj4kOLuo1NIeXoBKU/OoeOs3ooK+SpVf+ccQj5yyuvq + Zvjc2AJ/ioV6V6oq0ZQxTFaWi/9kWBMgw5V7njHcCYO6wGvvKtkATE3gv2lBVxNh/U5Fk8uumTWVCZf2 + 7VMRPX/8/uuvWNCju9Hnx3xYHys/TsXqe5mI++yYqDD12UUEHopRziHky5l8qGul4nnxmH9mIxaRG+VY + 6EdQOKExhpjdUrAobTlG1K5mtGB/xyzLl8ZsHycsubPN5ET+WzY/cr7J5TU0++rv4LtnT1VELx57o6Mk + QzX8Dq+NPlhxPwOrb2ci8fOTSH16ETufnEeLiR0MM9KXu07c3JMbsPBSQpYKKaERiORKgz7eISD1RhPu + GjBVcZEGC5TduAZyeLcm5nbphEX9+8KlbRvYVa2cI8V2tjUXJZuazDdt7BEcurU0Wj5TNrF+Xfz2888q + nhePT29cx6iKxl5qwsBOWPEgHQHXt2Htx/uwg+BlfHUFC1JC+BQ0VuEtuSryyww+itjjQryRCvUQ1ZjI + 8AIJ3kx3B6MFMWWjK1fCulkzZcE5Q+Os7JcffsCdc2exdMxojChnnN052fRG8O2tJif1TVowxXLLcqWN + ls2UTahXFz/T+rzsePrpp7LxGn7HiJpVEEJzHXhrO/wuJGPzw5ME8DKS7h9Blf7VeB8nH7ltrSJ6/uBD + wjkOsgoXqyr0o0wsO0S3lS5GC2HKRlWqgMzINfgjlwDPMDPCw2D3ThWjz82cZ/+vx0SfQ2uMlik3s61c + EZ999JG6Ri8enI1y1mr4HZZlSsL/yFpZZ4+zmxD20W5xo7u/uYqBi220ZCae8Ly4sHc5Eg2Og4Yq5IzU + UImL94XR1vn8opbdY8SUSbnC08Zff/6J1JUrpAjWPsvJzWJyH6Ym9k2Ze4yn0frkZpxJxnm4q2vz4pEc + GJAjdFiULAbv3Svkd/nQ+0WnE7Hl89PI/PoqAg+sQ8G2hZQzeV/m4n6zDkdh7qkNWSq8oqiQjygWkNc2 + Y5x5O6MFMGXsOtltvszgGBJkY220Yvbtm/6rSc1sr4lG62No2QE41noPdy9fUtcm9/Hs4Wdwfr+h0WfZ + BOC+1fK7PM9zj/PlVvYi49llbL57RM7kpWSGm9xdVEy5j5kH18nZNAvOxokKJaEhFXpTbcggFyQHSU2X + fSGy2+w2rfDbL7+oi/7iceP4MXG5+u+g3/DcEpBjYt+UzXSzM1ofNqtSJTG/e1fEzHFFgJWluE9+noFy + gvbg2jV1bXKOrx89wqJ+5jngy+epPvY7FSO/yyGKT4ZZeCoB2x+fw25SYZvJXdiNcjLjpmLKffDpwq7H + YjD/9EZRoedFcqVXEgUiZ6YTqEDPvgCmzH/4MHGPLzt++v47zG7b2ug7Jlr0+NdioYu3s9GycCYd7TJb + n3H+9ddfuHflCma2aqG8Tq6U1ZXgtRgPrl/DT999J8na088+kzxgcpP3TcKTz1KyFHQtUX6XyzJ3ioN8 + 5m/0xwexi7JR+1XTtDiYToieHwf56gscB9mNigrPZ7lSz1OxsKpczuRCZDd2ibySLzs4VgbSVm24kjbV + KiLo+uYck/smzCPe22h9HOvUwndPc9Z7rCwuJbT3MUj2JE4N6mPyB40xplrVHHVfduP1XEL5Bf8ud7MW + XkiQ8wr9ziVTPXgBgfv4ihYF+Uzem1TUl1ZRmR7T90XKGaZuJ9dLMuN+TnGlnNDM3RZscgFMmUevni9M + YAwHZ6SB1lbGWynd91Fjw5s2vzOxRvXtjJZm+POPP9SlNR47loY8d6fui8yuRUMsocxe++3FlzfLKdlu + R9Yj/sFxxF7PlOuQ5mud/xuqB+upqEyPaQSQL1oz53gs5pEb5RMVFVeagBnBM0wugCnjxu03jx+rq/ji + wVv3nA7tc3zPgmgPo4l9U8aue2wXM/1yjK9bO9eC/dL+fbLvz3C52axLl4Rj7fdIofVylA6GNsl+gDT+ + td/2vrYFc09sgMuhaCy/kobkT0/gnYE1+cDlP6ge7K6iMj2m7Y0EJzIcB9mNcizUXKnzVBuTC2DKeIW4 + Q/9ScZBc7YltWzG6SqUc3+PqP9loYt+kee9ZCQt1OawIxqV9e9UFNh5cBhkqkGGtdpooNR9vmJ/dvIn1 + c91yNC2G0WcGVawEp40hcLhyAP3PHkOn4yfR6tAJNN9zBK0yD8CcftPvzkV86NxdDishgPYqKtODr0TE + iQzHQXaj8wwgjrPubbQAbNwWcm7UAE4N64vvN3SB7HYeXL/+wlj46JNP4Napg8kgP3vheJOT+yZsyd0d + GN28gX5Zpps1w5P799WlVsaXnz6Q9TRc5hDbUdK41g9a/yf37snn+fXBZcuiTdcBqLxwLYoknPuj4q7b + aLj/EzQ7eA/19n2Cchm3UTj1FvKk3IRux03k23kTpTbuQt6hLaAzy7OUMOV+vMzUPQSQEhnNjc4liJoS + HYZ00y8kT/a8Lp1x++wZaZGx3b96BaEO9votjbfKBT264faZMxQPf1PXJmvwLhhuqXGHPrdA7+o3yeTk + vikTFZZW3COvM2+sm328cSolBTtDl8O1fVujZef3xC9amMPzfPngAaY1ayqKqz5nKfJsu07Q7iLmwbf4 + 9Off8cMff+HnP//Cj3T76Jc/sPnhd2h75D7ypXwkEMVidiPPgCYphCl3gFMIIF9GSnOjbidiRYkMcdyo + fvoFZXd3n9Lo7IMTF+5MWKkxgVdoPGVwa2dMx/nMXQT5KqXfl3E2PQ2R06dhXK139d9pyhZEuZuc2Ddp + c020Da2orOB1NOk12rTGw1u3BCJ7n++fPUMsuVDrsmXQ2GYSwbiBMqSynY9+wPMCzOFnP6HG7o+zALIt + 9r2rs7DIvZSYsjuCAEaKG51NbpRVKBCpuHdyHaNfyFmtW+Walf38/fdwadfGaKV4RbldNrZmdTlGhN3t + i9Jrtn8rCzU0Tmh4d9fLNDDYeL24tPCjWjhohA2mNW8KmzKlMKh8eZRclSYg3tvzMe7+9Pws/fGvf6Dl + 4fvGAKMzf6y0/iJf3N30YICcyPCFTbmtxipkiHMI4rSwrP1jHLPYt+c2tgYHmdw6/45ZU835b9WB2RsI + /HhemNtL7aHIzQZUqYpiMYcERMm0W9j15Ed1tkyPQ09/QvXsCozK/KlKREpRFVfOMTmTASpxkN2oy1G+ + 1pcCcXYGZVtlleMhOT3+nWq33Mbl/fule2G4AqJCio8jK5R7Kbi8t/7f6sSwBX28Lcfv+x6OhGNvY+/y + MsYN+kkzbNF47ykBwQlKG4pxZ7/5Bb+SDtiVsvH9J6Q8joFtSH1GMZBt3vwvq7WplvtfFkzODAcnMnI9 + TNWNMkC58tDRaIzuqraOCM5HJ08KLFPj4t495EqyAHLM8Bs+VI7Q+ujUSaxwHGeydjI0z81+RpP3poyP + NPC9qbW2ch6zw8fxeGWGyr5LPsbH1LKzu7WqUAZjOzfHvFVz9K2y2R/tQemMqwIjL8GpRgobcOozjLnw + BYaefgizQ/dQadcdNQs1hpcnMgW6zuX4qvu5K3DSLhWgxEElGzVU4dQVc/QL6dG7Z65xcKP7AqMV4mbv + t0+eqK8qeyB8hgw2eo+h2TaurW8vvUljxQ2PdEa7eX3geUFpMD/PeOez/5n18NoVioXJgVi8cyl8DkUg + 4OLGXHdML7iTiXbHTqNk+jVS2A19uWDK8pAVTbmMxvFbkLdzOd6tdEOn/Nup6eGcEQaJgwxQdaOiQhWi + y74I2HZW6h7uNCT5+eJPyrZ+VVPg73//E7euXqPsspYeBqs1ZdkyFV3WOLVjR64dCo8EH5MrzyeJTtzp + hb97fsTLmkOyu5zuVaxzCbw/oZWo0dT7XtkepML/bho8Ps4QVU68th92lw/C5uJhDDm1H/0P7sLQPdsw + ZnccJmVGwXrtXORvlZ/3SFx+rgKd08MgblS9UruWzLiQ+1RcaQymb/SBRZUK6Ff9XXQwt0CbJRvQNOUi + 3ku7jqrJF1A+PAPV3ZajbZd+UrQy6PTVq3IkPexOTXVfnO36SRFtasUt1k5C6V7l4XJY2QH6Om1iihdK + 9ijDx6HItbLNZv47Mdj7apI0s2fuX4fpe9Zi2u5IDAubxa00Pvnl4nMP9nVKW41JuxQVihs1UKHL0VhM + PhqH7vsyUGbLKRQm+b+TeUf89mDy3543nyL83jeYfe0J3qU0Oc/2G6g2NxSDK1Qgd9tLjgfRIPKulmhX + F4FrCM+uZSME3cz9JBbLdZNRpFMxVLOsLUmGqff8XeM4N3qTK0r0KM1bOTeNUda8EnyuxZt8/z9pvMHw + XnnXIzECcMbetQKx/9JJcpYWATxBmHKvAyekroJT+mpRIWejWiyceigWHffsRoGU6yhLRajt+S+Q/Pn3 + uPH9r/iSsqZfyIVq+uJs6s4Pv6HLsQfISz68od1MWFLCwjt5E729sHNFqNEOUUN4gZc2mVwxzdzPrkPJ + 7opK6tg1gcf5aJPve1lzPxeFDu79UaxLCfClJrnfWGFgNSy6vMHk+/9p4wPGeH8gX2905oEozNinQOzo + PoIBsgIzCVPuhxg67liBiQRRHwupJpxEX/J+hlK/VCXFxX32Hb6hWPc7ETN2ilmDn7/w7S9oQeosuPEE + BlRVjhvl8sFUCeE0os9L13zOaT6oMKCq/JlImT4V5HQ0pzRvuXiQqfdnN1au24kw9A0ZjcqD+cIJBeUM + 3lI9y6HFrG4IuP3vHdrIpzTwtUVdDsVgFgGcuT8KU3atQaMJXflsYwaYSJhyb6U5bFuO8SkraUJIhWpG + OjRzM6W8SrZkc/ZzqVNyA6eN3+gN6Y9/kH5fnuSr6PF+0xzQ2EY1fA+eib5Gu1NextjVzD8diSbObeTC + CXzqNZ8k2mBcc4yOc8WYxLmYezJcFOt2nOL6Ln9xk72DRsgJpeX7V1WSla6lUK5vFTSb0VneZ+q33qTJ + vkCKf6zA2QejMZPEM3bzctS0aa4d5OtFmHIHOGbLUozbHooJO1dCEprda9A6PVNJaQng+EuP8C2p73nK + Y3inv/5ZClWuZQptOIG+NdWstEQxWL9TAY4DOmFBnBcCnxPvXta4Zhu31QOdFw7CuyMbCBj+5xWOlexu + i3crRS6yJIp2Li7XXGPQFQdUkyxzWISTQDb1vW/aAm5vh/uZTcoVf1WAE7avwojoQNrIaiKPGQFsphur + ojI9RicuwdjkZQpE1ZW2S0+HTi0qeZfHGYLDnXOqGsSN/soNW3rw8OffpQHrQckMK0/pItxA5wQKyhu8 + MJ/qpEUH18D3UoIcnsj+/p84lXvxlY1yVq/N+pmwipqKPktGoYefFfovt4f95vmiNK1Q/28xPhbGi7JP + PqBJAzg5PQJj4pdSBrqINrryDJCPTHv+v5WOiAuC3eYQjN26HBwP2ZVaZcShSMoVAVhg50focPQBgu98 + hXiKhZx1ulDW2ffkZ6iz9xOUSLslHQZ+b5GdVzHoyG7MP58oe/S1QxT15x9+rJxb8W+k6v9NxuvPB0/z + VX05/jHAaXsi4bAlFCNjg2AeTCVE6wJ8TMx3uqa6uioq08Myxg+j4oMJ4lKByPFwYno4+qYmSUeAwbAx + JFYYm2HLhzsLVdLPYuDBdMw6FZ91XM35TfBUj63xJYiiQAbIKqQVeN0q/G8yZf1y30jZdbL6OPtkgFw+ + jN+2kmJ5CKyjAtF2jo1yBQv+I2X+99HnjcGRXrDZECAQxyRRPNzG8XAVZaarMSZtLbqmbkO9nYdQNfUU + qqSeQY3UE2hCGWr3PekYuX8zphyhDOqo0nbjXVC8Q5j36vMefT62hq8hzUe58TmIrML/ywADb29F/2Vj + 5MqMNW0aYPBqRwIVZ/QeDiN8MC/XfgtOx0nmOTFltSQurD7rdQGobvmBdh0ZPqzw+Wcp9Q/zxPBoX4zY + GAjbhCUC0XH7ClGiAlKByT1T3vnLWarWteGCX/7F67DWelMvvc8wGeTprEMV2aXycabsTrVT1QxX7P+C + Tc7wl38+44sNUQYpxp2eIWHjab2TZMP1J9fJpy/whs1/GDIpLRzjt66E7cYQjIgJgmWkL5U4RTSAHiqm + 3If5igUYFLEIlrF+sGGIpET7LZTUkBIF5A4CyW6VYE6iBId3P3G9aNgAl84Nt9+kexOjNwF6go9240P3 + 48i9boBD8mK0XzAA7zu1gU3MDOlxsho5NvLWyb1P76vxCHxNXZfXbT7XEyRhmpIZSDEshrzKVr277B0o + xbfUmhUHVuMkRHGFBKOGdT1ylctEfXxaO/9BCNd7TqQ++8RlGLU+GCMJYIf5tgKe4PFVnDqrmHIfPZfN + Q79VHhi6zjsLIimRITpQTHQgkJyhcoIjpQZBZDVy50Yr/KfvZ5CKGrmPqjf1MbflJqQEobFTexTqqPwz + Jy9kYUr7nVJ96TUfKs6Hoe6YD1F16Hso168K6oz5AA5J7gKWJ4cniQvyf1O5/PstXfhosQJKI6BXOVSz + qE1Fd0v0W2aH90Y2lHXrEzxS2nJcsnAJo8YzKWks106TEMNxj7POcckrJPbZblhCG3QASvWopKnvme5D + 3TsqptxHtyVz0Dt0PgaSCodH+QjEEXGBGJ0YAntypwySywyGKfGRi/701QpIFaa4Vn0zXPtjKP6bNuVx + v6UTpfDm66UxwLr2zQUSPy7Xt7KsWH6+UlPr/FLPcXsrL73GnZI5xyNo4rKuY2NqYt+UeV6IlWXK1ya/ + uEb+X2C+z8vKy87w+K8MWJ3aZxacjUJDxxbiVhkig++8aDjNUaS4T1af3aalGE0utMXMQYr6GCD/97zZ + S1wIr0uQC3osnYu+q9zBCc0wFeJIKi8YIpcYnKFybNRUKZkqxUUuOTSYmiIZJquSd0/xbU//MZwSy8KX + 6VMZwyNnkrtdhybOcjqxxIyaIxqizVxzDFszGeO3e2PsFk9pLvOk8H39ufsGWazhxL4pW3RpvbTyGBy7 + 0dmHVkhDoXegjSQurEhWqNaak2SNNjq/m0kYsnqC7FXRNtKmU7tgUjqFKMo+xyQsw/AIT5qLIlnu00w3 + UUX0/NHJfzY0FQ4IX4ghaxWIVrH+GLkpSNwpGxf8dgR0DJcbBHK8uFRKcAwSHQ0md3QmZYSjd9A4WWCG + V77/O3Dc5k9ZqpLY9AkaTa6nDewSFsD9/AapGcUo0XE/vxFVhrwrl5CcvCtIf56iZgzy38hi+aJ9vGGx + iqbuDhL3LnUtGcfyRZc2SCbKyyYXgpDn+ezm7bLcnhc3orsvX4GRlNs6n3gipxTycDSnlQbVIuWpMZPd + p5mutoro+aOt93R0CcxSISc0AnGdCpGUyCBHbQqWUsM2XgFpn7RMn+SwIiVrZSOgbINWzZRYwQtUqlcF + Ah0kNaJWGy68yJmpcj+7zT8di9K9K0rf0jzEDtbRM8gtLaHMLU5pDqglialJfp0mIEhFAopAzD+9TnH3 + 5OInZQSoXkE5BZ1fF1PBaY/5Nd7gFIjb5cRZy3XTZd0YYhWO+X2rZsFTbBuhebnLbrX0nIIOfrPQNdhV + VNhvtScGrVmMIexOVYg2GwKlzFCMYMYpIFmN47Yq2apmrEyb2MW0oiVkYQp1KErPBcg5F1p3Rm8ESzMG + x/Uiv2f+6fWoOqwW8tIKclzhFeXYWcu2CSlymXQweCcoT1T2Sf9bpgIyVAsD0RTDewo47eeuCZ/s2t3H + UpaHXeDkXcHy7yx6iARJPq+Cy27yupjy/WM2zxeIHO8M4p7iPv/OZUaazXdCW6/p6BQwGz1C3NCHyooB + YQtJiYuVmEgQLWP8YU0grdcHiNmQjSCoDNIukVxqMiU4BJKTnDGbg1FpMLkDWhgO3EPDpwk8/iMohsYd + CK4HjUCSCUB6DyuU60bbTfPRYFwrio+NUHV4HSUJohWtNepDTNsTAdcjsfJd2sQxAAYhQEy4V0M1mQLF + kPwIEqf5rHCfa1tkI+HfYE/R1ctCwPFEl+heFm7HIsW1KwBVUOqGYNL4Nw2NPuOwxUPJUjV4Zjpunx2k + 25e/im8Ttwkw85iE9j4zwAkNlxXmK90lHrI7HUxqFIjRforF+MGKgLLZrFcgjmGIW5ZLbGw6Vf/XMmjg + 2FZSZq2I58ngItYUQFGfwIuXGMmf44YA15bTKcPt6TdGABYmF2YX708peLj8eyZ3NHiy5WpTfFo4GYPw + u6koR271lgWIzwgSQPz7l2kDou9RNiAyWgaPc5uk1TXnWDTen9hWMmZeJ3ahQ8MmybrwdzJADV7WBqTc + zwGRTX0vG4McHT9XuVw0Q+S/InhR8zr7eN/VER/MnYBWCxVX2i14jkDsSxD7kztlNQ4mNQ5b6wOLKF/V + FJhW0QQxlurGOHKnBLHv0qnk7pS4V6RjcXIzoQKFgTE4zRSYZCo8njyeOJ40PieDEx0+X47/EZMhTads + toO78o8nnKnZbvCXxq/j1pVy/Aj3E3my+YoPmvFjvZ3ZJF6AW1f8v37z+f/9yOS//k6ybZDTu/hcdTlP + 79h6+XdO3kfXO3AslQnkyslq2DTE2KTFem/CG4J0lgiEETzD2PkC4+vxcIxXOjh5+Ci0BYTl5S7yw6OR + yzgwxA/nTUQbr2mQrJQg9lIh9ltFEFdnQRy+zldMIJJpEK0ocy3Xr7qiPlJKd59R4gqz4PFWr7gkvTE8 + 1XXyewXeCeUfMOXA4sPRmEEFL2e11SwbynfnJzc2ml031U528Uup2A+Fc2oYQV4rx5XwxBsadzzY3SoW + ozf5y1TNDrFFK/+FS8YbDW8YrPI6dmayPnXHtMDUPeHSKuQeL6uW14EhstLlwkgMUg8wJ0SBnM34ef7c + wFAHztjZhX5LNkTF8+LRcLYD2Bhk0/kKxI7+ihIF4gqCuNJD1DgkwgvDVYgWZAzQMopiY3QAmk/rLzGP + J7l8/+o0CWtkK2VoElPEbRmqMEl1nYniNlkNDI4VwPDYeCIZHtefpXpVVBVYFCPWU2bMrSeyURuWkCqW + S0OYW1PcHOYdo5rN0luUYvT680wOaciIgNPOMEzcsQqNxneU3y3duzKVSqHSrOA2IS+zkoApXkQDyTFV + FGkAMQc4gWxg9FwAlR+tXXvyHLIK75E1UBE9fzSYNRYNZivGEJstcNJD7BrkKhD7hC4QkP1JjUPWeBNE + UiGZxToCSDZoJWdUZWRFOUsbsNxZVGUITwAaQGRlsvrYxXK8E3BqI1yM7nPflWtQ6/X+FOyVi4QX61qW + 1E6qjw6UDYdt5AaKwwlLMX77SoHIBwZxq8rI+Dk+YOgFxvvlGB6753HkpnsHTJTYy2Ye4gznXXzUQjim + H1ir9HjJczBMNt4YecPkOMuxUQFkANEQWnaj1xdf3kRJWwPNlaY+94BebdQngPVn2auWBbH14qno4DtT + asSeS+eh9/L5MCeQDHHoGlIhAyRjgB9ONpcV5Al+Z3h9clvRevcidiMLooAkgLzV8kor8U4BxsZ7NfiW + 23G2CcGwiPbF0LXeKNJZ+bOr0n2qihdgiJbr2MiN031WJcficcmhmJq5Rg7N05t6qJ5J49cMjDcA7o6w + a7ZPXI4RsX6iev5tzq7H7ViO8akrMCFtJSZlhmHmIeUyLez+uc7VdqMpsZ8vpqsq0iRAFa7+NkUaBHyl + fprPX3TNdJMJ0fMvhl5/pj3qGRg/bujiQO7UCS0psWnnMx2dGWLIXPQikH2WM8SFGBZJSQ0BHETFf9HO + SsOWC1yrqLmSlHDMY1haZmgIkeHxSnK809TG4FzUv/RmeFySDFvnLZkwJ1KFO5aU36g4qK76235iwyOV + DUmLxZwVO1BZw3GRYUylWMbxzKSR2jSbLrYWk8l9svK4vWW3KUQazbXtWspvs3exiPaAA0Ect4OSqJ0a + yHBM2x9JrjVaNkjtT5DlegOURHGCxjAlVnLWqoepuVnNOCbuQJ/gUXxQr3K1pia6Wioq00MBOAZ1Z2QZ + P25AcfGDeUqJwWrsTMlN92A3Adl72XwMIIg8eS1nD5MgzytY34HKBloBvfoImgZQIDI8cpu8YprL1MDx + ngsGxwcWcxvOIsZXShneU9J35QJlHxn9RuWh9ZVYTL/NNoy8ARvHY+sYpT7lJoN0iratgBPvy6RkZMqu + CFHm1MzI3KESRN5DwDtXZQ/BxiWym6dvyAxShBLfzVz6Y+y2ZRi7fbkCMiULpPOu1dLU570vGkgjmKLM + BAodFDNpA+cmgdSQ2YB6XYlDTat6rELuiQYRptyzUlZdFjw71JmuGD9ml9p4jqO4VFZjJ7/Z6Bo4R0D2 + CpmH/is8UNa8mqwYp/d28d451WdQe3FcZFejB8dlggqOzxLm5vdkmmjuu/KOZt5XyY2Fnkvd5M9C+Hfe + sfwAg8IoI47wwVC9KXFZA8jtP61TxE0G7hBN2MH7NFfDOS0sB1BDiKxae1IfJ0cjYylRig2CDbloLcaX + 6FEOdskhOSAag6SsmBTJ3kVA5oBJcZP/6ZpgLrxIcVNNguSy1+Ru+cr6E+PdeQ8Nnxvx8Lkq1ABq4LIb + v8YulWtFVmMH31nyH+zdCGRbj/HiVnjFGk3oJAurqU8Pj4yf4zKBkxU5YYbA8Q5gDRzXebL106RyP3Vw + 5GL0Wj4PPQgcW7eg2fKnIPw71ayaCsCh4d4YYmAMkQFy228kt/s2BWM0JUB2iTTZlMVKy48UqfVvJ6Rw + I341KZSAEtTJpHqGygDZfTK8EdEMj5IlsvcndpffZyUOWeMGewLINnb7MoHokKKpkYxjZPoqTKJkh9XI + MVIPkutOA1UySEmAWJmcBBHMJbdSEPHxLrxnVZ9VyK50MaEyHQvZhRoCrD1tdA7j59mtKgmOM9p7z0Rn + UmNVi6ayUly828X7GmWemvJ4odwpsPMK8B56dpdG4ATeGkyhjJNLhhGbAqUn2z2EwIXMEYCd/KaB/9mF + f6u6TXMMDvPCkDACR7d8Xx6He4kb1RSo9GuNIXJsdOCWXzaYWUAVqHbxIZLdWq1Tba0/zINm6bsxzWf2 + 1QPMAZEBkhIl0SGIihrXKiApbHDDQGkeEEQTilxEigy9nY6oBwcwLtaNGwjaGUqlVGQGQ6f7f64t2Cb+ + dAjZAAAAAElFTkSuQmCC + + + + + AAABAAEAICAAAAEAIACoEAAAFgAAACgAAAAgAAAAQAAAAAEAIAAAAAAAABAAAMMOAADDDgAAAAAAAAAA + AABgcSX/X3Ak/2N1Kf9xhDr/QmQm/2uVUP+s1oX/qNCA/6DEdv+cvnH/jape/3mQRf8iTRT/hJhR/4ac + Vf+Mplz/kq5k/5WzaP+Ytmv/lrJo/4ugWv8nUhn/iqpd/5KyZP+WuGn/oMR1/6TJe/+ozn//rdaG/1WB + RfsAMgAbAAAAAGFzJ/9neS7/dYo//36US/97lE7/I1EY/6LKe/+s1oX/qdKB/6LHef+ewXP/iaRZ/x9L + E/+HnVb/jKNb/5i2a/+cu3D/nLtw/5y8cP+Zt2z/gp1X/zNfI/+WuGr/oMR1/6fPf/+s1oX/sd2L/7Lf + jf+ayXr/BjkFmAAAAAAAAAAAZ3ku/3aMQf9/lkz/hZ1U/4ifV/9IbjD/WodE/6rUg/+r1IP/qNCA/6PJ + ev+cvXD/KFUc/5GrYv+gwnX/o8h6/6PHef+ixnn/osV4/6DDdv9tk0//TXg4/6XOfv+v24n/st+N/7Lf + jP+y343/ptOD/xpMFOIAMgAKAAAAAAAAAAByhzz/gJdN/4egVv+KpFr/j6pg/46sYf84Yyf/hq9l/6nS + gf+p0oH/ncZ4/ztqLP9QfT3/q9WE/7LfjP+y4I3/suCN/7LfjP+w3Yv/r9uJ/6fSgv9JeTn/daNb/7He + i/+y34z/sd6M/6LPf/8sXiP/ADMA3QAxAA4AAAAAAAAAAHuSR/+Iolf/j6pg/5KvZP+Wtmn/mbpt/4uv + ZP87aCv/Q3Ey/0RzNP9RgD7/ZJNO/7Hdi/+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7Phjv+z4Y7/s+GO/36u + ZP9Jejr/UIFA/4OyZ/98q2L/Klsg/4GhWv8zXCL+ADMARQAAAAAAAAAAhZ5T/5GtYv+ds1r/prhV/6G+ + af+gxHX/osd4/6DJev98qmH/qtiG/5/Nfv+w3ov/s+GO/7Phjv+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7Ph + jv+z4Y7/q9qI/5bFd/+ZyHr/LV4j/0h5Of+n0oL/mrhu/3SPTP8GNwSJAAAAAAAAAACPq2D/qrRK/9+/ + Lv/v3pP/59Jr/8zBPv+dt2z/ncSD/7Lgjf+z4Y7/s+GO/7Phjv+z4Y7/rNqJ/5HAc/+Es2j/lcR2/6rY + h/+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7LfjP+my3z/kKtj/xpHEbcAAAAAAAAAAJW0 + aP+nu1n/4s5j//z56f////7/79+X/0tCRf8oLGf/TWFr/6nVi/+z4Y7/msl7/1OEQv9snFX/ksF0/5LB + dP91pFz/P3Ax/2ubVf+y4I3/s+GO/7Phjv+z4Y7/s+GO/7Phjv+z4Y7/s+GO/63Whf+dvXL/K1cd3wAA + AAAAAAAAmbpt/57Bc/+Pp2T/kYVl/+vcm/9sX0X/i4uu/9/f6f8LDVX/S15q/7Phjv+FtGn/p9aF/7Ph + jv+z4Y7/s+GO/7Phjv+r2Yj/Q3Q2/4m4bf+z4Y7/s+GO/7Ddjf+w3Y3/s+GO/7Phjf+52nj/utJp/6q8 + W/9AZyTvACoAAwAAAACbvG//oMR1/z9NYv/S0uD//////1lajP8qK2v/QUN7/wkLVP8LDVX/jbGB/7Ph + jv+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7Phjv+s2oj/sd+M/5nAhf86SWX/GiBa/x0kW/9HWWj/u64u/+vX + e//x4qD/48dI/7GbA/dVXxUDAAAAAJy+cf+iyHn/ICdb/7Ozyv/Fxtf/ICJk/46Psf+io7//Q0V9/wkL + VP9vjHf/s+GO/7Phjv+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7Phjv+QtYL/Gx9f/0xNg/8MDlb/f4Cm/5qb + uP+Ndyf/8OW3//r14P/nzl7/s5wA8pZ4DwEAAAAAnsJ0/6bNff8rNl7/Cw1V/woMVP+Jiq3///////// + ///S0+D/ERNa/3CMd/+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7Phjv+z4Y7/suCO/zxLZf+pqsP//f3+/zk7 + dv83OXT/UFGG/w0OUv9NUlb/vdFn/7bEX/8+ZSjGAAAAAAAAAAChxnf/qdKB/1Jmav8JC1T/CQtU/6Sl + wP///////////+Dg6f8MDlb/nMSG/7Phjv+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7Phjv+r14v/FRpY/3Z3 + oP+LjK//PT54/66vx/+Ehar/Fxle/x8nXP+s1of/tdSW/xBBDpUAAAAAAAAAAKXMfP+t2Ib/oMmF/yAo + W/8JC1T/QEJ7/+nq8P/m5+7/RUd+/0haaf+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7Phjv+z4Y7/s+GO/67b + jP8dJFv/CQtU/w0PV//u7vP///////39/v9VV4n/HiVb/7DWjP+bvYf/ATMBXQAAAAAAAAAAqdKB/7Dc + iv+x34z/lryD/ztKZf8SFlf/FRdc/xcbW/9TaW3/suCO/7Phjv+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7Ph + jv+z4Y7/s+GO/0ZXaf8JC1T/DhBY/+rq8f///////////01Pg/9KW2z/xOSl/0VwPO4AMAAMAAAAAAAA + AACu2Yf/st+M/7Lgjf+y4I3/sN2N/6HLiP+awoX/qdSK/7Phjv+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7Ph + jv+z4Y7/s+GO/7Phjv+14pD/pcmS/xwhXf8JC1T/bm+a/9jY5P+fn7z/IShe/7ndn/+kxo3/AzUChwAA + AAAAAAAAAAAAALHei/+z4I3/s+GO/7Phjv+z4Y7/s+GO/7Phjv+q2If/c6Jb/1mHQ/9di0b/hLJo/7Ph + jv+z4Y7/s+GO/6zaif+345P/vuec/8ntq//R8bX/q8Sl/0ZQcv8aH13/ExZZ/zY/av+lw5n/wuWk/y1c + JuYAMAALAAAAAAAAAAAAAAAAst+M/7Phjv+z4Y7/s+GO/7Phjv+z4Y7/ptSE/zNbG/9kdCT/cX0p/257 + KP9Kbyz/vuec/7zknP9EcTX/KVQZ/4y0d//P8LP/0/K4/9Xzuv/V87v/1PK6/8fjs//F4rH/z++y/8js + qf+BrGz/ADIAbAAAAAAAAAAAAAAAAAAAAACy4I3/s+GO/7Phjv+z4Y7/s+GO/7Phjv+p14b/Qmgl/3J+ + Kf95giz/d4Ar/1F7Pf/I7Kn/YY1S/1VqH/90fyr/QWIh/7TVnP/V87r/1vO7/9bzu//W87v/1fO6/9Ty + uf/T8rf/yOyp/1iHR/4AMQAuAAAAAAAAAAAAAAAAAAAAALLgjf+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7Ph + jv+fzX7/Vno0/1xvIv9UayH/jbZ3/6jOj/8yVBL/eYIs/3qDLf96hjP/QWkw/87ttP/V87v/1vO7/9bz + u//W87v/1fO7/83vsf+345T/TX49/AAyACAAAAAAAAAAAAAAAAAAAAAAxeql/8Xrpf/F66b/weig/7fj + k/+z4Y7/s+GO/7fjkv+44pb/ibNy/4uzdf/J7av/MF0k/3R/Kv9+hzL/i5RA/5WeS/9nfjb/fKNs/9Xz + u//W87v/1vS8/9bzu//F56b/rNSF/7Dbiv9Idzz0ADIAEQAAAAAAAAAAAAAAAAAAAADU8br/x+et/6nN + kv+Ot3j/sNyO/7XikP+14pD/uOSV/77nnf/E6qT/yOyp/4y1eP9MZR3/hI04/5CZRf+ao1D/oapY/6Wv + Xv9IcTn/0vC4/9Xzu//R8Lb/tteS/6HEd/+jx3n/u+CY/zpoMd8AKQACAAAAAAAAAAAAAAAAAAAAAChm + LP8kZCv/J2ct/1aJSP+m0Yj/wemh/8TqpP/E6qT/xuum/8jsqv/J7az/P2ow/4eQPf+Vnkv/n6hW/6av + Xv+xumr/vcZ3/09yNv/A4aj/ttiZ/6XHff+ewHL/n8J0/7TXj//L7K7/EkMPsAAAAAAAAAAAAAAAAAAA + AAAAAAAARpZV/0ibWf9NqmT/SKJd/zd9P/9Qg0f/f6ls/7fcnP/L7q3/zO+v/7rdoP8/YSD/m6RR/6Wu + XP+wuWj/usN0/73HeP+Vp1//FkUP/z5rMP+VuGv/oMJ1/6vMg/++3Zz/1fK6/6TGkP8AMwBvAAAAAAAA + AAAAAAAAAAAAAAAAAABMp2L/VsR4/0+4bv9Kq2P/Tapk/0ifXP81gEL/J2ov/zhwNv9MfUP/RnY9/xRD + Df86XyL/TG0u/VV0NfVEaCvlHEkS2CZVHPlwl1L/qcqD/73cm//L6a3/0/C4/9fzvf/Y9L7/YYpV9wAy + ABMAAAAAAAAAAAAAAAAAAAAAAAAAAD6ZVf9JpmP/Wsl8/1jFef9Xw3f/Vb1z/1O4b/9StG3/Uq9q/1Wv + bP9rxoj/ZLh//w9HE9wAMgAnADEAEwAzAAcAMQALBDYDPhlJFIInViG8Q3A56VV/SvtgiVT/X4hT/0l1 + QPUGOAV2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUa1s/3jln/935J3/fuql/4Ltqf+B7Kn/eeag/2/f + lv9w3pb/ac2K/0GMVPwFOQaUADMACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAACADEADgAy + ABYAMQAWADAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACM87T/i/Kz/3zcn/9nvYP/W6x0/kyY + YP48hE31J2ky2BJNF7MEOQaDADEAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEOQVv0WUh29AjUCfgAz + AFcAMgA4ADIAHQAtAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADEAIAAu + AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAABAAAAAQAA + AAEAAAADAAAAAwAAAAMAAAADAAAABwAAAAcAAAAPAAAADwAAAA8AAAAPAAAADwAAAB8AAAAfAAAAHwAA + AD8AB/B/AB///wH///8///////////////8= + + + \ No newline at end of file diff --git a/AutoMaxLairUI - Code/AutoMaxLairUI - Code.sln b/AutoMaxLairUI - Code/AutoMaxLairUI - Code.sln new file mode 100644 index 00000000..9b1279f7 --- /dev/null +++ b/AutoMaxLairUI - Code/AutoMaxLairUI - Code.sln @@ -0,0 +1,34 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.6.30114.105 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoMaxLair", "AutoMaxLair.csproj", "{C9C1DB0E-FC1D-44C9-A4C3-B2E4C611EEA5}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {C9C1DB0E-FC1D-44C9-A4C3-B2E4C611EEA5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C9C1DB0E-FC1D-44C9-A4C3-B2E4C611EEA5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C9C1DB0E-FC1D-44C9-A4C3-B2E4C611EEA5}.Debug|x64.ActiveCfg = Debug|Any CPU + {C9C1DB0E-FC1D-44C9-A4C3-B2E4C611EEA5}.Debug|x64.Build.0 = Debug|Any CPU + {C9C1DB0E-FC1D-44C9-A4C3-B2E4C611EEA5}.Debug|x86.ActiveCfg = Debug|Any CPU + {C9C1DB0E-FC1D-44C9-A4C3-B2E4C611EEA5}.Debug|x86.Build.0 = Debug|Any CPU + {C9C1DB0E-FC1D-44C9-A4C3-B2E4C611EEA5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C9C1DB0E-FC1D-44C9-A4C3-B2E4C611EEA5}.Release|Any CPU.Build.0 = Release|Any CPU + {C9C1DB0E-FC1D-44C9-A4C3-B2E4C611EEA5}.Release|x64.ActiveCfg = Release|Any CPU + {C9C1DB0E-FC1D-44C9-A4C3-B2E4C611EEA5}.Release|x64.Build.0 = Release|Any CPU + {C9C1DB0E-FC1D-44C9-A4C3-B2E4C611EEA5}.Release|x86.ActiveCfg = Release|Any CPU + {C9C1DB0E-FC1D-44C9-A4C3-B2E4C611EEA5}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/AutoMaxLairUI - Code/Program.cs b/AutoMaxLairUI - Code/Program.cs new file mode 100644 index 00000000..96466e8b --- /dev/null +++ b/AutoMaxLairUI - Code/Program.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace AutoDA +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.SetHighDpiMode(HighDpiMode.SystemAware); + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new MainWindow()); + } + } +} diff --git a/AutoMaxLairUI - Code/Properties/Resources.Designer.cs b/AutoMaxLairUI - Code/Properties/Resources.Designer.cs new file mode 100644 index 00000000..4db3246f --- /dev/null +++ b/AutoMaxLairUI - Code/Properties/Resources.Designer.cs @@ -0,0 +1,103 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace AutoMaxLair.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AutoMaxLair.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Save1 { + get { + object obj = ResourceManager.GetObject("Save1", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Save2 { + get { + object obj = ResourceManager.GetObject("Save2", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Settings1 { + get { + object obj = ResourceManager.GetObject("Settings1", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Settings2 { + get { + object obj = ResourceManager.GetObject("Settings2", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + } +} diff --git a/AutoMaxLairUI - Code/Properties/Resources.resx b/AutoMaxLairUI - Code/Properties/Resources.resx new file mode 100644 index 00000000..6342856f --- /dev/null +++ b/AutoMaxLairUI - Code/Properties/Resources.resx @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + ..\Resources\Save1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\Save2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\Settings.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\Settings2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + \ No newline at end of file diff --git a/AutoMaxLairUI - Code/Properties/Settings.Designer.cs b/AutoMaxLairUI - Code/Properties/Settings.Designer.cs new file mode 100644 index 00000000..a304da66 --- /dev/null +++ b/AutoMaxLairUI - Code/Properties/Settings.Designer.cs @@ -0,0 +1,38 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace AutoMaxLair.Properties { + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.8.1.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default { + get { + return defaultInstance; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool DarkTheme { + get { + return ((bool)(this["DarkTheme"])); + } + set { + this["DarkTheme"] = value; + } + } + } +} diff --git a/AutoMaxLairUI - Code/Properties/Settings.settings b/AutoMaxLairUI - Code/Properties/Settings.settings new file mode 100644 index 00000000..8d97cce7 --- /dev/null +++ b/AutoMaxLairUI - Code/Properties/Settings.settings @@ -0,0 +1,9 @@ + + + + + + True + + + \ No newline at end of file diff --git a/AutoMaxLairUI - Code/README.txt b/AutoMaxLairUI - Code/README.txt new file mode 100644 index 00000000..811c1b96 --- /dev/null +++ b/AutoMaxLairUI - Code/README.txt @@ -0,0 +1,5 @@ +For the executable go to: + +|> Actions + +and download the latest Auto Max Lair UI zip via the dotnet core pipeline. diff --git a/AutoMaxLairUI - Code/Resources/Save1.png b/AutoMaxLairUI - Code/Resources/Save1.png new file mode 100644 index 00000000..418d7e92 Binary files /dev/null and b/AutoMaxLairUI - Code/Resources/Save1.png differ diff --git a/AutoMaxLairUI - Code/Resources/Save2.png b/AutoMaxLairUI - Code/Resources/Save2.png new file mode 100644 index 00000000..d15c4126 Binary files /dev/null and b/AutoMaxLairUI - Code/Resources/Save2.png differ diff --git a/AutoMaxLairUI - Code/Resources/Settings.png b/AutoMaxLairUI - Code/Resources/Settings.png new file mode 100644 index 00000000..6dac85c3 Binary files /dev/null and b/AutoMaxLairUI - Code/Resources/Settings.png differ diff --git a/AutoMaxLairUI - Code/Resources/Settings2.png b/AutoMaxLairUI - Code/Resources/Settings2.png new file mode 100644 index 00000000..8829febc Binary files /dev/null and b/AutoMaxLairUI - Code/Resources/Settings2.png differ diff --git a/AutoMaxLairUI - Code/Settings.Designer.cs b/AutoMaxLairUI - Code/Settings.Designer.cs new file mode 100644 index 00000000..ab878769 --- /dev/null +++ b/AutoMaxLairUI - Code/Settings.Designer.cs @@ -0,0 +1,118 @@ + +namespace AutoMaxLair +{ + partial class Settings + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Settings)); + this.panel1 = new System.Windows.Forms.Panel(); + this.groupTheme = new System.Windows.Forms.GroupBox(); + this.radioDark = new System.Windows.Forms.RadioButton(); + this.radioLight = new System.Windows.Forms.RadioButton(); + this.panel1.SuspendLayout(); + this.groupTheme.SuspendLayout(); + this.SuspendLayout(); + // + // panel1 + // + this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(36)))), ((int)(((byte)(33)))), ((int)(((byte)(40))))); + this.panel1.Controls.Add(this.groupTheme); + this.panel1.Dock = System.Windows.Forms.DockStyle.Top; + this.panel1.Location = new System.Drawing.Point(0, 0); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(234, 135); + this.panel1.TabIndex = 0; + // + // groupTheme + // + this.groupTheme.Controls.Add(this.radioDark); + this.groupTheme.Controls.Add(this.radioLight); + this.groupTheme.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.groupTheme.Location = new System.Drawing.Point(12, 12); + this.groupTheme.Name = "groupTheme"; + this.groupTheme.Size = new System.Drawing.Size(200, 100); + this.groupTheme.TabIndex = 1; + this.groupTheme.TabStop = false; + this.groupTheme.Text = "Theme"; + // + // radioDark + // + this.radioDark.AutoSize = true; + this.radioDark.Checked = true; + this.radioDark.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.radioDark.Location = new System.Drawing.Point(12, 34); + this.radioDark.Name = "radioDark"; + this.radioDark.Size = new System.Drawing.Size(87, 19); + this.radioDark.TabIndex = 0; + this.radioDark.TabStop = true; + this.radioDark.Text = "Dark Theme"; + this.radioDark.UseVisualStyleBackColor = true; + this.radioDark.CheckedChanged += new System.EventHandler(this.radioDark_CheckedChanged); + // + // radioLight + // + this.radioLight.AutoSize = true; + this.radioLight.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.radioLight.Location = new System.Drawing.Point(12, 59); + this.radioLight.Name = "radioLight"; + this.radioLight.Size = new System.Drawing.Size(90, 19); + this.radioLight.TabIndex = 0; + this.radioLight.TabStop = true; + this.radioLight.Text = "Light Theme"; + this.radioLight.UseVisualStyleBackColor = true; + this.radioLight.CheckedChanged += new System.EventHandler(this.radioLight_CheckedChanged); + // + // Settings + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(11)))), ((int)(((byte)(8)))), ((int)(((byte)(20))))); + this.ClientSize = new System.Drawing.Size(234, 133); + this.Controls.Add(this.panel1); + this.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(63)))), ((int)(((byte)(82))))); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.Name = "Settings"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; + this.Text = "Settings"; + this.Load += new System.EventHandler(this.Settings_Load); + this.panel1.ResumeLayout(false); + this.groupTheme.ResumeLayout(false); + this.groupTheme.PerformLayout(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.Panel panel1; + private System.Windows.Forms.GroupBox groupTheme; + private System.Windows.Forms.RadioButton radioDark; + private System.Windows.Forms.RadioButton radioLight; + } +} \ No newline at end of file diff --git a/AutoMaxLairUI - Code/Settings.cs b/AutoMaxLairUI - Code/Settings.cs new file mode 100644 index 00000000..2c5f5a07 --- /dev/null +++ b/AutoMaxLairUI - Code/Settings.cs @@ -0,0 +1,233 @@ +using AutoDA; +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Text; +using System.Windows.Forms; + +namespace AutoMaxLair +{ + public partial class Settings : Form + { + List panels, panels2; + List buttons; + List labels; + List comboboxes; + List textboxes; + List checkboxes; + + + + public Settings() + { + InitializeComponent(); + + + } + + + + + void Initialize_Add() + { + panels = new List(); + panels2 = new List(); + buttons = new List(); + labels = new List(); + comboboxes = new List(); + textboxes = new List(); + checkboxes = new List(); + + MainWindow main = (MainWindow)this.Owner; + + panels.Add(main.panelLogo); + panels.Add(main.panelSideMenu); + panels.Add(main.panelRightSide); + panels.Add(main.panelRightTop); + + panels2.Add(main.panelAdvancedSettingsSubmenu); + panels2.Add(main.panelDiscordSubmenu); + panels2.Add(main.panelSettingSubmenu); + panels2.Add(main.panelStatSubmenu); + panels2.Add(panel1); + + buttons.Add(main.btnAdvancedSettings); + buttons.Add(main.btnDiscord); + buttons.Add(main.btnSave); + buttons.Add(main.btnSetting); + buttons.Add(main.btnStats); + buttons.Add(main.btnTesseract); + buttons.Add(main.btnSettings); + + labels.Add(main.labelAttackNeg); + labels.Add(main.labelAttackNeut); + labels.Add(main.labelAttackPos); + labels.Add(main.labelSpeedNeg); + labels.Add(main.labelSpeedNeut); + labels.Add(main.labelSpeedPos); + labels.Add(main.labelBaseBall); + labels.Add(main.labelBossIndex); + labels.Add(main.labelComPort); + labels.Add(main.labelConsecutiveResets); + labels.Add(main.labelDyniteOre); + labels.Add(main.labelMaxDynite); + labels.Add(main.labelGameLanguage); + labels.Add(main.labelHuntingPoke); + labels.Add(main.labelLegendBall); + panels.Add(main.labelLogo); + labels.Add(main.labelMode); + labels.Add(main.labelPokémon); + labels.Add(main.labelRun); + labels.Add(main.labelShinies); + labels.Add(main.labelShiniesFound); + labels.Add(main.labelTessaract); + labels.Add(main.labelVideoDelay); + labels.Add(main.labelVideoIndex); + labels.Add(main.labelVideoScale); + labels.Add(main.labelWinPercentage); + labels.Add(main.labelWebID); + labels.Add(main.labelWebToken); + labels.Add(main.labelUser); + labels.Add(main.labelID); + labels.Add(main.labelMessages); + labels.Add(main.labelAtk); + labels.Add(main.labelSpeed); + labels.Add(main.labelMaxDynite); + labels.Add(main.labelPathWins); + labels.Add(main.labelNonLegend); + + comboboxes.Add(main.boxBossIndex); + comboboxes.Add(main.boxPokemon); + comboboxes.Add(main.boxBaseBall); + comboboxes.Add(main.boxLegendBall); + comboboxes.Add(main.boxMode); + comboboxes.Add(main.boxVideoCapture); + comboboxes.Add(main.boxGameLanguage); + comboboxes.Add(main.boxPingSettings); + comboboxes.Add(main.boxNonLegend); + + textboxes.Add(main.boxComPort); + textboxes.Add(main.boxTesseract); + textboxes.Add(main.boxVideoScale); + textboxes.Add(main.boxVideoDelay); + textboxes.Add(main.boxDyniteOre); + textboxes.Add(main.boxMaxDynite); + textboxes.Add(main.boxConsecutiveResets); + textboxes.Add(main.boxAttackNeg); + textboxes.Add(main.boxAttackNeut); + textboxes.Add(main.boxAttackPos); + textboxes.Add(main.boxSpeedNeg); + textboxes.Add(main.boxSpeedNeut); + textboxes.Add(main.boxSpeedPos); + textboxes.Add(main.boxWebhookID); + textboxes.Add(main.boxWebhookToken); + textboxes.Add(main.boxUserID); + textboxes.Add(main.boxPingName); + textboxes.Add(main.boxMaxDynite); + textboxes.Add(main.boxPathWins); + + checkboxes.Add(main.checkBoxDebugLogs); + checkboxes.Add(main.boxCheckAttack); + checkboxes.Add(main.boxCheckSpeed); + } + + public void ApplyTheme(Color back, Color pan, Color btn, Color lab, Color cbox, Color tbox, Color textC) + { + this.BackColor = lab; + this.ForeColor = textC; + + foreach (Control item in panels) + { + item.BackColor = pan; + item.ForeColor = textC; + } + + foreach (Control item in panels2) + { + item.BackColor = tbox; + item.ForeColor = textC; + } + + foreach (Control item in buttons) + { + item.BackColor = btn; + item.ForeColor = textC; + } + + foreach (Control item in labels) + { + item.BackColor = lab; + item.ForeColor = textC; + } + + foreach (Control item in comboboxes) + { + item.BackColor = cbox; + item.ForeColor = textC; + } + + foreach (Control item in textboxes) + { + item.BackColor = tbox; + item.ForeColor = textC; + } + + foreach (Control item in checkboxes) + { + item.BackColor = lab; + item.ForeColor = textC; + } + } + + public void ChangeColor() + { + if (radioDark.Checked == true) + { + MainWindow main = (MainWindow)this.Owner; + ApplyTheme(zcolor(11, 8, 20), zcolor(11, 8, 20), zcolor(11, 8, 20), zcolor(36, 33, 40), zcolor(36, 33, 40), zcolor(36, 33, 40), zcolor(250, 63, 82)); + main.btnSave.BackgroundImage = AutoMaxLair.Properties.Resources.Save1; + main.btnSettings.BackgroundImage = AutoMaxLair.Properties.Resources.Settings1; + Properties.Settings.Default.DarkTheme = true; + Properties.Settings.Default.Save(); + } + else if (radioLight.Checked == true) + { + MainWindow main = (MainWindow)this.Owner; + ApplyTheme(Color.White, Color.LightGray, Color.LightGray, Color.White, Color.LightGray, Color.White, Color.Black); + main.btnSave.BackgroundImage = AutoMaxLair.Properties.Resources.Save2; + main.btnSettings.BackgroundImage = AutoMaxLair.Properties.Resources.Settings2; + Properties.Settings.Default.DarkTheme = false; + Properties.Settings.Default.Save(); + } + } + + Color zcolor(int r, int g, int b) + { + return Color.FromArgb(r, g, b); + } + + private void radioDark_CheckedChanged(object sender, EventArgs e) + { + ChangeColor(); + } + + private void radioLight_CheckedChanged(object sender, EventArgs e) + { + ChangeColor(); + } + + private void Settings_Load(object sender, EventArgs e) + { + Initialize_Add(); + + if (Properties.Settings.Default.DarkTheme == true) + radioDark.Checked = true; + else if (Properties.Settings.Default.DarkTheme == false) + radioLight.Checked = true; + + } + } + +} diff --git a/AutoMaxLairUI - Code/Settings.resx b/AutoMaxLairUI - Code/Settings.resx new file mode 100644 index 00000000..1c0fbb53 --- /dev/null +++ b/AutoMaxLairUI - Code/Settings.resx @@ -0,0 +1,137 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAICAAAAEAIACoEAAAFgAAACgAAAAgAAAAQAAAAAEAIAAAAAAAABAAAMMOAADDDgAAAAAAAAAA + AABgcSX/X3Ak/2N1Kf9xhDr/QmQm/2uVUP+s1oX/qNCA/6DEdv+cvnH/jape/3mQRf8iTRT/hJhR/4ac + Vf+Mplz/kq5k/5WzaP+Ytmv/lrJo/4ugWv8nUhn/iqpd/5KyZP+WuGn/oMR1/6TJe/+ozn//rdaG/1WB + RfsAMgAbAAAAAGFzJ/9neS7/dYo//36US/97lE7/I1EY/6LKe/+s1oX/qdKB/6LHef+ewXP/iaRZ/x9L + E/+HnVb/jKNb/5i2a/+cu3D/nLtw/5y8cP+Zt2z/gp1X/zNfI/+WuGr/oMR1/6fPf/+s1oX/sd2L/7Lf + jf+ayXr/BjkFmAAAAAAAAAAAZ3ku/3aMQf9/lkz/hZ1U/4ifV/9IbjD/WodE/6rUg/+r1IP/qNCA/6PJ + ev+cvXD/KFUc/5GrYv+gwnX/o8h6/6PHef+ixnn/osV4/6DDdv9tk0//TXg4/6XOfv+v24n/st+N/7Lf + jP+y343/ptOD/xpMFOIAMgAKAAAAAAAAAAByhzz/gJdN/4egVv+KpFr/j6pg/46sYf84Yyf/hq9l/6nS + gf+p0oH/ncZ4/ztqLP9QfT3/q9WE/7LfjP+y4I3/suCN/7LfjP+w3Yv/r9uJ/6fSgv9JeTn/daNb/7He + i/+y34z/sd6M/6LPf/8sXiP/ADMA3QAxAA4AAAAAAAAAAHuSR/+Iolf/j6pg/5KvZP+Wtmn/mbpt/4uv + ZP87aCv/Q3Ey/0RzNP9RgD7/ZJNO/7Hdi/+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7Phjv+z4Y7/s+GO/36u + ZP9Jejr/UIFA/4OyZ/98q2L/Klsg/4GhWv8zXCL+ADMARQAAAAAAAAAAhZ5T/5GtYv+ds1r/prhV/6G+ + af+gxHX/osd4/6DJev98qmH/qtiG/5/Nfv+w3ov/s+GO/7Phjv+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7Ph + jv+z4Y7/q9qI/5bFd/+ZyHr/LV4j/0h5Of+n0oL/mrhu/3SPTP8GNwSJAAAAAAAAAACPq2D/qrRK/9+/ + Lv/v3pP/59Jr/8zBPv+dt2z/ncSD/7Lgjf+z4Y7/s+GO/7Phjv+z4Y7/rNqJ/5HAc/+Es2j/lcR2/6rY + h/+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7LfjP+my3z/kKtj/xpHEbcAAAAAAAAAAJW0 + aP+nu1n/4s5j//z56f////7/79+X/0tCRf8oLGf/TWFr/6nVi/+z4Y7/msl7/1OEQv9snFX/ksF0/5LB + dP91pFz/P3Ax/2ubVf+y4I3/s+GO/7Phjv+z4Y7/s+GO/7Phjv+z4Y7/s+GO/63Whf+dvXL/K1cd3wAA + AAAAAAAAmbpt/57Bc/+Pp2T/kYVl/+vcm/9sX0X/i4uu/9/f6f8LDVX/S15q/7Phjv+FtGn/p9aF/7Ph + jv+z4Y7/s+GO/7Phjv+r2Yj/Q3Q2/4m4bf+z4Y7/s+GO/7Ddjf+w3Y3/s+GO/7Phjf+52nj/utJp/6q8 + W/9AZyTvACoAAwAAAACbvG//oMR1/z9NYv/S0uD//////1lajP8qK2v/QUN7/wkLVP8LDVX/jbGB/7Ph + jv+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7Phjv+s2oj/sd+M/5nAhf86SWX/GiBa/x0kW/9HWWj/u64u/+vX + e//x4qD/48dI/7GbA/dVXxUDAAAAAJy+cf+iyHn/ICdb/7Ozyv/Fxtf/ICJk/46Psf+io7//Q0V9/wkL + VP9vjHf/s+GO/7Phjv+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7Phjv+QtYL/Gx9f/0xNg/8MDlb/f4Cm/5qb + uP+Ndyf/8OW3//r14P/nzl7/s5wA8pZ4DwEAAAAAnsJ0/6bNff8rNl7/Cw1V/woMVP+Jiq3///////// + ///S0+D/ERNa/3CMd/+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7Phjv+z4Y7/suCO/zxLZf+pqsP//f3+/zk7 + dv83OXT/UFGG/w0OUv9NUlb/vdFn/7bEX/8+ZSjGAAAAAAAAAAChxnf/qdKB/1Jmav8JC1T/CQtU/6Sl + wP///////////+Dg6f8MDlb/nMSG/7Phjv+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7Phjv+r14v/FRpY/3Z3 + oP+LjK//PT54/66vx/+Ehar/Fxle/x8nXP+s1of/tdSW/xBBDpUAAAAAAAAAAKXMfP+t2Ib/oMmF/yAo + W/8JC1T/QEJ7/+nq8P/m5+7/RUd+/0haaf+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7Phjv+z4Y7/s+GO/67b + jP8dJFv/CQtU/w0PV//u7vP///////39/v9VV4n/HiVb/7DWjP+bvYf/ATMBXQAAAAAAAAAAqdKB/7Dc + iv+x34z/lryD/ztKZf8SFlf/FRdc/xcbW/9TaW3/suCO/7Phjv+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7Ph + jv+z4Y7/s+GO/0ZXaf8JC1T/DhBY/+rq8f///////////01Pg/9KW2z/xOSl/0VwPO4AMAAMAAAAAAAA + AACu2Yf/st+M/7Lgjf+y4I3/sN2N/6HLiP+awoX/qdSK/7Phjv+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7Ph + jv+z4Y7/s+GO/7Phjv+14pD/pcmS/xwhXf8JC1T/bm+a/9jY5P+fn7z/IShe/7ndn/+kxo3/AzUChwAA + AAAAAAAAAAAAALHei/+z4I3/s+GO/7Phjv+z4Y7/s+GO/7Phjv+q2If/c6Jb/1mHQ/9di0b/hLJo/7Ph + jv+z4Y7/s+GO/6zaif+345P/vuec/8ntq//R8bX/q8Sl/0ZQcv8aH13/ExZZ/zY/av+lw5n/wuWk/y1c + JuYAMAALAAAAAAAAAAAAAAAAst+M/7Phjv+z4Y7/s+GO/7Phjv+z4Y7/ptSE/zNbG/9kdCT/cX0p/257 + KP9Kbyz/vuec/7zknP9EcTX/KVQZ/4y0d//P8LP/0/K4/9Xzuv/V87v/1PK6/8fjs//F4rH/z++y/8js + qf+BrGz/ADIAbAAAAAAAAAAAAAAAAAAAAACy4I3/s+GO/7Phjv+z4Y7/s+GO/7Phjv+p14b/Qmgl/3J+ + Kf95giz/d4Ar/1F7Pf/I7Kn/YY1S/1VqH/90fyr/QWIh/7TVnP/V87r/1vO7/9bzu//W87v/1fO6/9Ty + uf/T8rf/yOyp/1iHR/4AMQAuAAAAAAAAAAAAAAAAAAAAALLgjf+z4Y7/s+GO/7Phjv+z4Y7/s+GO/7Ph + jv+fzX7/Vno0/1xvIv9UayH/jbZ3/6jOj/8yVBL/eYIs/3qDLf96hjP/QWkw/87ttP/V87v/1vO7/9bz + u//W87v/1fO7/83vsf+345T/TX49/AAyACAAAAAAAAAAAAAAAAAAAAAAxeql/8Xrpf/F66b/weig/7fj + k/+z4Y7/s+GO/7fjkv+44pb/ibNy/4uzdf/J7av/MF0k/3R/Kv9+hzL/i5RA/5WeS/9nfjb/fKNs/9Xz + u//W87v/1vS8/9bzu//F56b/rNSF/7Dbiv9Idzz0ADIAEQAAAAAAAAAAAAAAAAAAAADU8br/x+et/6nN + kv+Ot3j/sNyO/7XikP+14pD/uOSV/77nnf/E6qT/yOyp/4y1eP9MZR3/hI04/5CZRf+ao1D/oapY/6Wv + Xv9IcTn/0vC4/9Xzu//R8Lb/tteS/6HEd/+jx3n/u+CY/zpoMd8AKQACAAAAAAAAAAAAAAAAAAAAAChm + LP8kZCv/J2ct/1aJSP+m0Yj/wemh/8TqpP/E6qT/xuum/8jsqv/J7az/P2ow/4eQPf+Vnkv/n6hW/6av + Xv+xumr/vcZ3/09yNv/A4aj/ttiZ/6XHff+ewHL/n8J0/7TXj//L7K7/EkMPsAAAAAAAAAAAAAAAAAAA + AAAAAAAARpZV/0ibWf9NqmT/SKJd/zd9P/9Qg0f/f6ls/7fcnP/L7q3/zO+v/7rdoP8/YSD/m6RR/6Wu + XP+wuWj/usN0/73HeP+Vp1//FkUP/z5rMP+VuGv/oMJ1/6vMg/++3Zz/1fK6/6TGkP8AMwBvAAAAAAAA + AAAAAAAAAAAAAAAAAABMp2L/VsR4/0+4bv9Kq2P/Tapk/0ifXP81gEL/J2ov/zhwNv9MfUP/RnY9/xRD + Df86XyL/TG0u/VV0NfVEaCvlHEkS2CZVHPlwl1L/qcqD/73cm//L6a3/0/C4/9fzvf/Y9L7/YYpV9wAy + ABMAAAAAAAAAAAAAAAAAAAAAAAAAAD6ZVf9JpmP/Wsl8/1jFef9Xw3f/Vb1z/1O4b/9StG3/Uq9q/1Wv + bP9rxoj/ZLh//w9HE9wAMgAnADEAEwAzAAcAMQALBDYDPhlJFIInViG8Q3A56VV/SvtgiVT/X4hT/0l1 + QPUGOAV2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUa1s/3jln/935J3/fuql/4Ltqf+B7Kn/eeag/2/f + lv9w3pb/ac2K/0GMVPwFOQaUADMACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALAACADEADgAy + ABYAMQAWADAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACM87T/i/Kz/3zcn/9nvYP/W6x0/kyY + YP48hE31J2ky2BJNF7MEOQaDADEAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEOQVv0WUh29AjUCfgAz + AFcAMgA4ADIAHQAtAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADEAIAAu + AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAABAAAAAQAA + AAEAAAADAAAAAwAAAAMAAAADAAAABwAAAAcAAAAPAAAADwAAAA8AAAAPAAAADwAAAB8AAAAfAAAAHwAA + AD8AB/B/AB///wH///8///////////////8= + + + \ No newline at end of file diff --git a/AutoMaxLairUI - Code/Utils.cs b/AutoMaxLairUI - Code/Utils.cs new file mode 100644 index 00000000..2567d0b3 --- /dev/null +++ b/AutoMaxLairUI - Code/Utils.cs @@ -0,0 +1,52 @@ +namespace AutoMaxLair +{ + class Utils + { + static public string UppercaseFirstLetter(string s) + { + // Check for empty string. + if (string.IsNullOrEmpty(s)) + { + return string.Empty; + } + // Return char and concat substring. + return char.ToUpper(s[0]) + s.Substring(1); + } + + static public string ConvertBossNameToBossId(string bossName) + { + return bossName switch + { + "Tornadus" => "tornadus-incarnate", + "Landorus" => "landorus-incarnate", + "Thundurus" => "thundurus-incarnate", + "Giratina" => "giratina-altered", + "Zygarde" => "zygarde-50", + _ => bossName.ToLower(), + }; + } + + static public string ConvertBossIdToBossName(string bossId) + { + return bossId switch + { + "tornadus-incarnate" => "Tornadus", + "landorus-incarnate" => "Landorus", + "thundurus-incarnate" => "Thundurus", + "giratina-altered" => "Giratina", + "zygarde-50" => "Zygarde", + _ => UppercaseFirstLetter(bossId), + }; + } + + static public string ConvertBallNameToBallId(string ballName) + { + return ballName.ToLower() + "-ball"; + } + + static public string ConvertBallIdToBallName(string ballId) + { + return UppercaseFirstLetter(ballId).Replace("-ball", ""); + } + } +} diff --git a/Config.sample.toml b/Config.sample.toml index 115e148a..24bbdfcb 100644 --- a/Config.sample.toml +++ b/Config.sample.toml @@ -20,26 +20,18 @@ # Bosses with multiple formes need to have the forme specified. # This includes the following: # "giratina-altered", "thundurus-incarnate", "tornadus-incarnate", "landorus-incarnate", "zygarde-50" -BOSS = "dialga" +BOSS = "suicune" + # === BASE_BALL === # This is the Pokéball that should be used for all Pokémon except for the boss. -# This can be a string for the ball name, or it can be DEFAULT to always choose -# the first ball in the catch menu. Enter the name as seen in your bag. No need -# to include "Ball" in the name. -BASE_BALL = "DEFAULT" -# === BASE_BALLS === -# This is the current quantity of the ball that you selected in BASE_BALL -BASE_BALLS = 600 +# This is the id of the ball to use (in English) +BASE_BALL = "poke-ball" + # === LEGENDARY_BALL === # This is the Pokéball that should be used for just the legendary boss Pokémon. -# This can be a string for the ball name, or it can be DEFAULT to always choose -# the first ball in the catch menu. Enter the name as seen in your bag. No need -# to include "Ball" in the name. -LEGENDARY_BALL = "Premier" -# === LEGENDARY_BALLS === -# This is the current quantity of the ball that you selected in LEGENDARY_BALL. -# The program will end if this ever hits zero. -LEGENDARY_BALLS = 500 +# This is the id of the ball to use (in English) +LEGENDARY_BALL = "premier-ball" + # === MODE === # This is the mode that the program should use. # These are the options: @@ -56,7 +48,15 @@ LEGENDARY_BALLS = 500 # "KEEP PATH" - Will force the game to always reset on a pre-saved path. # Similar to "BALL SAVER" and "STRONG BOSS" but will always use the same path if it fails. # This will deplete your Ore quickly. -MODE = "STRONG BOSS" +# "FIND PATH" - Will run like BALL SAVER mode but will stop when it consecutively wins the +# number of times inputted into "FIND PATH WINS". +# It can be used alongside KEEP PATH to find a winning path. Don't forget to update the +# CONSECUTIVE_RESETS section below, before starting KEEP PATH. +# It's up to the user to check if the path found was good or not. +MODE = "DEFAULT" + +# +FIND_PATH_WINS = 1 # === COM_PORT === # The COM Port is how your system internally connects to your Serial connection. @@ -64,10 +64,12 @@ MODE = "STRONG BOSS" # View your available devices for the exact string. # On Mac and Linux, it will be a path that begins with `/dev/`. See the documenation for more information. COM_PORT = "COM4" + # === VIDEO_INDEX === # The video index is which index OpenCV uses in your input devices to read from your capture card. # For most users this number will be either 0 or 1 depending on the number of cameras you have plugged in. VIDEO_INDEX = 1 + # === TESSERACT_PATH === # This is the path to the Tesseract executable. This is NOT where the pytesseract # package is installed but where tesseract is installed. @@ -75,6 +77,7 @@ VIDEO_INDEX = 1 # On Mac and Linux, it will likely be in a place like /usr/bin (run `which tesseract` in your terminal to get the path) TESSERACT_PATH = "C:\\Program Files\\Tesseract-OCR\\tesseract.exe" + # ========== # === ADVANCED SETTINGS [advanced] @@ -83,27 +86,50 @@ TESSERACT_PATH = "C:\\Program Files\\Tesseract-OCR\\tesseract.exe" # Set to less than 1 if you want the image smaller than the default size (1920x1080). # Please make sure there's always a decimal at the end of this value even if setting to 1 (e.g. 1.0). VIDEO_SCALE = 0.5 + # === VIDEO_EXTRA_DELAY === # Input a time (in seconds) if your capture card has any significant delay. # Most configurations can leave this value at 0 but people using # OBS virtual camera may have to increase this value to 1 or 2 (seconds). # Please make sure there's always a decimal at the end of this value. VIDEO_EXTRA_DELAY = 0.0 + +# === PABOTBASE_HEX == +# Denote whether your microcontroller is using the PABotBase hex. +# If false, RemoteControl_xxxx.hex is assumed +PABOTBASE_HEX = true + # === BOSS_INDEX === # The position of the boss you're hunting on the menu. # 0 is the top, 1 is the middle, and 2 is the bottom. BOSS_INDEX = 0 + # === DYNITE_ORE === -# The current amount of Dynite Ore in your bag. Not necessary if using DEFAULT mode +# The current amount of Dynite Ore you're willing to lose by resetting. +# If this value is negative, the bot will first collect ore before spending any. +# Not necessary if using DEFAULT mode. DYNITE_ORE = 0 -# === CONSECUTIVE_RESETS == + +# === CONSECUTIVE_RESETS === # If you had to stop the script and have not reset your reset counter by clearing # an adventure, set this number to how many you previously had. CONSECUTIVE_RESETS = 0 + +# === NON_LEGEND == +# This setting will reset any completed run in which the pokemon listed was caught in. It will +# continue to reset and use ore in this manner until it either finds a shiny of some type or +# does not have enough ore to afford another reset. +NON_LEGEND = "default" + +# === MAXIMUM_ORE_COST === +# The maximum ore cost you're willing to pay in order to reset once. +MAXIMUM_ORE_COST = 10 + # === ENABLE_DEBUG_LOGS === # This enables the debug logs in your Python console. This can be very useful when # you're running into problems and need to report to the developers what's happening. -ENABLE_DEBUG_LOGS = false +ENABLE_DEBUG_LOGS = true + # ========== # === POKEMON STAT FINDING SETTINGS @@ -113,6 +139,7 @@ ENABLE_DEBUG_LOGS = false # === CHECK_ATTACK_STAT === # Enables checking the Attack stat CHECK_ATTACK_STAT = false + # === CHECK_SPEED_STAT === # Enables checking the Speed stat CHECK_SPEED_STAT = false @@ -137,6 +164,7 @@ positive = [99, 100] neutral = [90, 91] negative = [81, 82] + # ========== # === DISCORD SETTINGS # Fill out these values to enable Discord notifications to webhooks @@ -147,20 +175,27 @@ negative = [81, 82] # === WEBHOOK_ID and WEBHOOK_TOKEN === # Follow the steps here: https://hackaday.com/2018/02/15/creating-a-discord-webhook-in-python/ WEBHOOK_ID = "PLACE_ID_WITHIN_QUOTES" + +# WEBHOOK_TOKEN = "PLACE_TOKEN_WITHIN_QUOTES" + # === USER_ID === # This is your Discord User ID for mentioning you. # More info: https://support.discord.com/hc/en-us/articles/206346498-Where-can-I-find-my-User-Server-Message-ID- USER_ID = "PLACE_ID_WITHIN_QUOTES" + # === USER_SHORT_NAME === # To personalize your messages, please include a name for the webhooks to use. # Could be your actual name. USER_SHORT_NAME = "YOUR_SHORT_NAME_WITHIN_QUOTES" + # === UPDATE_LEVELS === # There are multiple types of levels that can be sent via the Discord Webhook to inform # your progress, -# "all" - provides all possible updates to your webhook, includes stats after a completed run -# "only_shiny" - will only push updates if shinies are found +# "all" - gives all notifications, pings you on *ALL* shinies found +# "all_ping_legendary" - gives all notifications, pings you only when legendary is found +# "only_shiny" - only notifies you when you find a shiny, pings on *ALL* shinies found +# "only_shiny_ping_legendary" - only notifies you when you find a shiny, pings only on legendary # "none" - ignores all discord messages UPDATE_LEVELS = "none" @@ -169,7 +204,7 @@ UPDATE_LEVELS = "none" [language] # === LANGUAGE === # Set the language of your game here. -# Currently we support English, Spanish, French, Korean, and German +# Currently we support English, Spanish, French, Korean, German and Japanese LANGUAGE = "English" # ========== @@ -177,14 +212,40 @@ LANGUAGE = "English" # These paths are if you are not using the pre-calculated values included with the program # and should not be modfied unless you know what you are doing. [pokemon_data_paths] +# File containing the pickled data about bosses. Boss_Pokemon = "data/boss_pokemon.json" + +# File containing the pickled data about rental. Rental_Pokemon = "data/rental_pokemon.json" + +# File containing the pickled data about matchup vs bosses. Boss_Matchup_LUT = "data/boss_matchup_LUT.json" + +# File containing the pickled data about matchup vs rental. Rental_Matchup_LUT = "data/rental_matchup_LUT.json" + +# File containing the pickled data about the score of every rental pokemon. Rental_Pokemon_Scores = "data/rental_pokemon_scores.json" + +# File containing the pickled data about the score of every type versus every boss. path_tree_path = "data/path_tree.json" + +# File containing the pickled data about the type icons. type_icon_path = "data/type_icons.pickle" +# File containing the pickled data about the pokemon sprites. +pokemon_sprite_path = "data/pokemon_sprites.pickle" + +# File containing the pickled ball sprites +ball_sprite_path = "data/ball_sprites.pickle" + +# File containing the pickled data about other icons (cheer, fight). +misc_icon_dir = "data/misc_icons/" + +# +boss_colors = "data/boss_colors.json" + + # ========== # === OTHER LANGUAGE SETTINGS # What follows are how to set the various phrases that allow @@ -193,96 +254,300 @@ type_icon_path = "data/type_icons.pickle" # modifies your colors, or other weird things. Feel free to reach out to # a developer if you're having issues. [English] +# Code used to select the right trained data for tesseract. TESSERACT_LANG_NAME = "eng" + +# Code used by auto max lair to read the names in the right language. DATA_LANG_NAME = "en" -BACKPACKER = "backpacker" + +# Sentence used to detect that the bot met the scientist. SCIENTIST = "swapping" + +# Sentence used to detect that the bot have to choose a path in the den. PATH = "path" + +# Sentence used to detect that we lost a live (storm is raging). FAINT = "The storm" + +# Sentence used to detect the scientist asking us to join a DA. START_PHRASE = "Would you like to embark" + +# Sentence used to detect that the weather is now normal. WEATHER_CLEAR = "sunlight faded|rain stopped|sandstorm subsided|hail stopped" + +# Sentence used to detect that the weather is now sunny. WEATHER_SUNLIGHT = "sunlight turned" + +# Sentence used to detect that the weather is now rainy. WEATHER_RAIN = "started to rain" + +# Sentence used to detect that the sandstorm is raging. WEATHER_SANDSTORM = "sandstorm kicked" + +# Sentence used to detect that the hailstorm is raging. WEATHER_HAIL = "started to hail" + +# Sentence used to detect that the terrain is now normal. TERRAIN_CLEAR = "electricity disappeared|grass disappeared|mist disappeared|weirdness disappeared" + +# Sentence used to detect that the terrain is now electrified. TERRAIN_ELECTRIC = "electric current ran" + +# Sentence used to detect that the terrain is now grassy. TERRAIN_GRASSY = "Grass grew" + +# Sentence used to detect that the terrain is now misty. TERRAIN_MISTY = "Mist swirled" + +# Sentence used to detect that the terrain is now psychic. TERRAIN_PSYCHIC = "got weird" +# [Spanish] +# Code used to select the right trained data for tesseract. TESSERACT_LANG_NAME = "spa" + +# Code used by auto max lair to read the names in the right language. DATA_LANG_NAME = "es" -BACKPACKER = "mis objetos" + +# Sentence used to detect that the bot met the scientist. SCIENTIST = "préstamo" + +# Sentence used to detect that the bot have to choose a path in the den. PATH = "quieres seguir" -FAINT = "La tormenta" + +# Sentence used to detect that we lost a live (storm is raging). +FAINT = "tormenta reinante|Aguantar" + +# Sentence used to detect the scientist asking us to join a DA. START_PHRASE = "emprender" -WEATHER_CLEAR = "PLACEHOLDER" -WEATHER_SUNLIGHT = "PLACEHOLDER" -WEATHER_RAIN = "PLACEHOLDER" -WEATHER_SANDSTORM = "PLACEHOLDER" -WEATHER_HAIL = "PLACEHOLDER" -TERRAIN_CLEAR = "PLACEHOLDER" -TERRAIN_ELECTRIC = "PLACEHOLDER" -TERRAIN_GRASSY = "PLACEHOLDER" -TERRAIN_MISTY = "PLACEHOLDER" -TERRAIN_PSYCHIC = "PLACEHOLDER" +# Sentence used to detect that the weather is now normal. +WEATHER_CLEAR = "sol vuelve|dejado de|amainado" + +# Sentence used to detect that the weather is now sunny. +WEATHER_SUNLIGHT = "sol pega" + +# Sentence used to detect that the weather is now rainy. +WEATHER_RAIN = "a llover" + +# Sentence used to detect that the sandstorm is raging. +WEATHER_SANDSTORM = "desatado" + +# Sentence used to detect that the hailstorm is raging. +WEATHER_HAIL = "a granizar" + +# Sentence used to detect that the terrain is now normal. +TERRAIN_CLEAR = "ha desaparecido|niebla se" + +# Sentence used to detect that the terrain is now electrified. +TERRAIN_ELECTRIC = "campo de corriente" + +# Sentence used to detect that the terrain is now grassy. +TERRAIN_GRASSY = "de hierba" + +# Sentence used to detect that the terrain is now misty. +TERRAIN_MISTY = "niebla ha envuelto" + +# Sentence used to detect that the terrain is now psychic. +TERRAIN_PSYCHIC = "muy extraño" + +# [French] +# Code used to select the right trained data for tesseract. TESSERACT_LANG_NAME = "fra" + +# Code used by auto max lair to read the names in the right language. DATA_LANG_NAME = "fr" -BACKPACKER = "Randonneuse" + +# Sentence used to detect that the bot met the scientist. SCIENTIST = "intéresse" + +# Sentence used to detect that the bot have to choose a path in the den. PATH = "Quel chemin" + +# Sentence used to detect that we lost a live (storm is raging). FAINT = "au-dessus|intenable" + +# Sentence used to detect the scientist asking us to join a DA. START_PHRASE = "vous lancer" + +# Sentence used to detect that the weather is now normal. WEATHER_CLEAR = "affaiblissent|est arrêtée|sable se calme" + +# Sentence used to detect that the weather is now sunny. WEATHER_SUNLIGHT = "soleil brillent" + +# Sentence used to detect that the weather is now rainy. WEATHER_RAIN = "pleuvoir" -WEATHER_SANDSTORM = "tempête de sable se prépare" -WEATHER_HAIL = "gr.ler" -TERRAIN_CLEAR = "est dissipée|gazon disparaît|brume qui recouvrait|redevient normal" + +# Sentence used to detect that the sandstorm is raging. +WEATHER_SANDSTORM = "de sable se pr" + +# Sentence used to detect that the hailstorm is raging. +WEATHER_HAIL = "gr.{1,2}ler" + +# Sentence used to detect that the terrain is now normal. +TERRAIN_CLEAR = "parcourant le terrain|gazon disparaît|brume qui recouvrait|redevient normal" + +# Sentence used to detect that the terrain is now electrified. TERRAIN_ELECTRIC = "électricité parcourt" + +# Sentence used to detect that the terrain is now grassy. TERRAIN_GRASSY = "beau gazon" + +# Sentence used to detect that the terrain is now misty. TERRAIN_MISTY = "couvre de brume" + +# Sentence used to detect that the terrain is now psychic. TERRAIN_PSYCHIC = "réagir de" +# [Korean] +# Code used to select the right trained data for tesseract. TESSERACT_LANG_NAME = "kor" + +# Code used by auto max lair to read the names in the right language. DATA_LANG_NAME = "ko" -BACKPACKER = "백팩커" + +# Sentence used to detect that the bot met the scientist. SCIENTIST = "교환하|교핟하 " + +# Sentence used to detect that the bot have to choose a path in the den. PATH = "길로" + +# Sentence used to detect that we lost a live (storm is raging). FAINT = "폭풍이|폭풍을|폭품이|폭품을" + +# Sentence used to detect the scientist asking us to join a DA. START_PHRASE = "시작하시겠습니까" + +# Sentence used to detect that the weather is now normal. WEATHER_CLEAR = "PLACEHOLDER" + +# Sentence used to detect that the weather is now sunny. WEATHER_SUNLIGHT = "PLACEHOLDER" + +# Sentence used to detect that the weather is now rainy. WEATHER_RAIN = "PLACEHOLDER" + +# Sentence used to detect that the sandstorm is raging. WEATHER_SANDSTORM = "PLACEHOLDER" + +# Sentence used to detect that the hailstorm is raging. WEATHER_HAIL = "PLACEHOLDER" + +# Sentence used to detect that the terrain is now normal. TERRAIN_CLEAR = "PLACEHOLDER" + +# Sentence used to detect that the terrain is now electrified. TERRAIN_ELECTRIC = "PLACEHOLDER" + +# Sentence used to detect that the terrain is now grassy. TERRAIN_GRASSY = "PLACEHOLDER" + +# Sentence used to detect that the terrain is now misty. TERRAIN_MISTY = "PLACEHOLDER" + +# Sentence used to detect that the terrain is now psychic. TERRAIN_PSYCHIC = "PLACEHOLDER" +# [German] +# Code used to select the right trained data for tesseract. TESSERACT_LANG_NAME = "deu" + +# Code used by auto max lair to read the names in the right language. DATA_LANG_NAME = "de" -BACKPACKER = "Backpackerin" + +# Sentence used to detect that the bot met the scientist. SCIENTIST = "austauschen" + +# Sentence used to detect that the bot have to choose a path in the den. PATH = "Weg" -FAINT = "Eure Gruppe wurde vom Sturm" + +# Sentence used to detect that we lost a live (storm is raging). +FAINT = "Der Sturm" + +# Sentence used to detect the scientist asking us to join a DA. START_PHRASE = "Möchtest du zu einem" + +# Sentence used to detect that the weather is now normal. WEATHER_CLEAR = "Sonnenlicht verliert|auf zu regnen|Sandsturm legt sich|auf zu hageln" + +# Sentence used to detect that the weather is now sunny. WEATHER_SUNLIGHT = "Sonnenlicht wird" + +# Sentence used to detect that the weather is now rainy. WEATHER_RAIN = "an zu regnen" + +# Sentence used to detect that the sandstorm is raging. WEATHER_SANDSTORM = "Sandsturm kommt auf" + +# Sentence used to detect that the hailstorm is raging. WEATHER_HAIL = "an zu hageln" + +# Sentence used to detect that the terrain is now normal. TERRAIN_CLEAR = "feld ist wieder" + +# Sentence used to detect that the terrain is now electrified. TERRAIN_ELECTRIC = "Elektrische Energie" + +# Sentence used to detect that the terrain is now grassy. TERRAIN_GRASSY = "Dichtes Gras" + +# Sentence used to detect that the terrain is now misty. TERRAIN_MISTY = "Nebel aus" + +# Sentence used to detect that the terrain is now psychic. TERRAIN_PSYCHIC = "seltsam an" + +# +[Japanese] +# Code used to select the right trained data for tesseract. +TESSERACT_LANG_NAME = "jpn" + +# Code used by auto max lair to read the names in the right language. +DATA_LANG_NAME = "ja-Hrkt" + +# Sentence used to detect that the bot met the scientist. +SCIENTIST = "レンタル" + +# Sentence used to detect that the bot have to choose a path in the den. +PATH = "みちに" + +# Sentence used to detect that we lost a live (storm is raging). +FAINT = "じょうくうの あらしが" + +# Sentence used to detect the scientist asking us to join a DA. +START_PHRASE = "ダイマックスアドベンチャーに" + +# Sentence used to detect that the weather is now normal. +WEATHER_CLEAR = "sunlight faded|rain stopped|sandstorm subsided|hail stopped" + +# Sentence used to detect that the weather is now sunny. +WEATHER_SUNLIGHT = "ひざしが" + +# Sentence used to detect that the weather is now rainy. +WEATHER_RAIN = "あめが" + +# Sentence used to detect that the sandstorm is raging. +WEATHER_SANDSTORM = "ふきはじめた" + +# Sentence used to detect that the hailstorm is raging. +WEATHER_HAIL = "ふりはじめた" + +# Sentence used to detect that the terrain is now normal. +TERRAIN_CLEAR = "electricity disappeared|grass disappeared|mist disappeared|weirdness disappeared" + +# Sentence used to detect that the terrain is now electrified. +TERRAIN_ELECTRIC = "あしもとに" + +# Sentence used to detect that the terrain is now grassy. +TERRAIN_GRASSY = "おいしげった" + +# Sentence used to detect that the terrain is now misty. +TERRAIN_MISTY = "たちこめた" + +# Sentence used to detect that the terrain is now psychic. +TERRAIN_PSYCHIC = "ふしぎなかんじ" diff --git a/Packages b/Packages new file mode 160000 index 00000000..1fa0882f --- /dev/null +++ b/Packages @@ -0,0 +1 @@ +Subproject commit 1fa0882fd464a7a9f9668908650311c0b1995f75 diff --git a/README.md b/README.md index fe3df113..00205a2d 100644 --- a/README.md +++ b/README.md @@ -1,149 +1,14 @@ # AutoMaxLair -AutoMaxLair is designed for shiny hunting legendary Pokemon in Dynamax Adventures found in Pokemon Sword and Shield: The Crown Tundra. The program runs on a computer connected to the Switch through a microcontroller (outgoing controls to the Switch) and an HDMI capture card (incoming video from the Switch). -## Required Hardware -* Programmable microcontroller. Supported chips are atmega32u4 (Teensy 2.0), atmega16u2 (Arduino Uno second chip), and at90usb1286 (Teensy 2.0++). -* USB to serial conversion device. See RemoteControl documentation for details or refer to the section on serial communication in the [Pokemon Automation SwSh Scripts](https://github.com/Mysticial/Pokemon-Automation-SwSh-Arduino-Scripts) user manual. -* HDMI capture card. You can also use a cheap USB device instead. -* A computer that you can run continuously for many hours. -## Required Software -* Teensy Loader (or similar, depending on your microcontroller) for programming the microcontroller. -* Tesseract OCR. Compiled executables can be downloaded from the [UB Mannheim Github](https://github.com/UB-Mannheim/tesseract/wiki). -* Python 3.6-3.8 -* Some python packages (the full list is in requirements.txt) -## Setup -1. Install Python, ensuring you check the box to add Python to your PATH environment variable (possibly specific to Windows). -1. Install the required Python modules. If you are using Windows, you can run install-requirements.bat which will install the modules for you. -1. Program the microcontroller with the appropriate version of RemoteControl_XXX.hex and plug it into the Switch. -1. Plug the USB cable attached to the Teensy’s serial port into the computer. -1. Ensure the screen size is set to 100% under the Switch’s TV settings. Not doing so will result in misaligned text detection rectangles. -1. Fill your inventory with Poke Balls so the bot can run uninterrupted. -1. Make sure the setting for automatically sending Pokemon to your box is turned on. -1. Go to the Max Lair and stop in front of the scientist, then disconnect any wireless controllers and plug the Switch into the dock. -1. Rename Config.sample.toml to Config.toml, then open it with a text editor and modify the values to suit your setup. -1. Plug the HDMI of your switch into the capture card, but do not view the input from any other application (or else the bot will not be able to access the video). Many capture cards will work out of the box; however, certain capture cards can’t be read by OpenCV for some reason. In this case, the virtual camera function of Open Broadcasting Software can be used. -1. Run auto_max_lair.py, either directly or in your IDE of choice (which is better for debugging). -1. Check the placement of the coloured rectangles as show in Figure 1, Figure 2, Figure 3, Figure 4, Figure 5, and Figure 6. - * If the rectangle positions are off, first double check that the Switch’s TV settings are correct—the screen size should be 100%. - * If that doesn’t fix the issue, you can tweak the rectangle coordinates in da_controller.py by adjusting the values in the __init__ method. - * The changes will come into effect when the bot is restarted. -## Operation -The bot will run until it finds a shiny legendary or until it runs out of resources. Depending on the boss, it should take a day or two on average if you have the shiny charm (15 minutes per run, variable success rate but usually above 50%, 1/100 shiny chance for the legendary). It will also keep any other shiny Pokemon it finds but will continue running after (when using the default mode). Figure 6 shows an example screenshot of the summary screen of a shiny Legendary Pokemon. +AutoMaxLair is a bot for shiny hunting legendary Pokemon in Dynamax Adventures found in Pokemon Sword and Shield: The Crown Tundra. The program runs on a computer connected to the Switch through a microcontroller (outgoing controls to the Switch) and an HDMI capture card (incoming video from the Switch). -If you want to quit the program prematurely, press the Q key while the focus is on the Output window. The program will quit before the next scheduled action. +We have migrated our setup and operation instructions to a wiki. [Please refer there for detailed setup and troubleshooting instructions](https://github.com/PokemonAutomation/AutoMaxLair/wiki). -![Figure 1](/doc/Figure 1 - Initial Pokemon Selection.png) - -Figure 1: Screen capture of the initial Pokemon selection screen. The green rectangles should contain the full name of each Pokemon and the yellow rectangles should contain their abilities. - -![Figure 2](/doc/Figure 2 - Opponent Detection.png) - -Figure 2: Screen capture of the in-battle opponent information screen. The green rectangle should contain the name of the Pokemon and the cyan rectangles should contain its types. - -![Figure 3](/doc/Figure 3 - Ball Selection.png) - -Figure 3: Screen capture of the ball selection screen. The red rectangle should contain the full name of the ball. - -![Figure 4](/doc/Figure 4 - Post-Battle Pokemon Selection.png) - -Figure 4: Screen capture of the mid-run Pokemon selection screen. The green rectangle should contain the full name of the new Pokemon and the yellow rectangle should contain its ability. - -![Figure 5](/doc/Figure 5 - Non-Shiny Pokemon.png) - -Figure 5: Screen capture of the Pokemon summary screen at the end of the run. The green rectangle will contain a red shiny sparkle symbol if the Pokemon is shiny. If it is not shiny, the rectangle will overlap slightly with the black symbol. - -![Figure 6](/doc/Figure 6 - Shiny Pokemon.png) - -Figure 6: Screen capture saved at the end of a successful run. The bot detects the red shiny star on the left side of the screen. The program will quit if it detects the star while checking the legendary’s summary; if the legendary is not shiny but another Pokemon is, the program will take that shiny Pokemon and start another run. - -In addition to the standard mode which always finishes the Dynamax Adventure without resetting the game, three additional modes can be implemented by updating the appropriate field in Config.ini. These modes are summarized in Table 1. - -Table 1: Summary of the benefits and drawbacks of using the different operation modes. -Mode|Benefits|Drawbacks -----|--------|--------- -Default|Accumulates Dynite Ore.|Lower win rate, especially against difficult bosses. Wastes balls used to catch the legendary. -Strong Boss|Higher win rate. Wastes fewer balls used to catch the legendary.|Can consume Dynite Ore* -Ball Saver|Higher win rate. Wastes no balls used to catch the legendary.|Can rapidly consume Dynite Ore. Ignores non-legendary shiny Pokemon. -Keep Path|Highest win rate if you find a good seed beforehand. Wastes no balls used to catch the legendary.|Rapidly consumes Dynite Ore. Ignores non-legendary shiny Pokemon. -Find Path|Useful for finding a path to use "Keep Path" mode on.|Utility mode that is not needed for general use. - -*The strong boss and ball saver modes can be made Dynite Ore-neutral (i.e., neither produces nor consumes) by setting the amount of starting Dynite Ore to zero in Config.ini. Difficult bosses may also cause the bot to lose, causing ore to accumulate but at a reduced rate. +## Acknowledgements -## TODO -### Major Features -* Improved move selection - * Stat changes, status, weather, field effects, terrain and current teammates are not currently considered in damage calculations. -* Improved selection of Pokemon - * HP and status of the current Pokemon is not currently measured. This information could better inform decisions on whether to take a new Pokemon. - * When considering a potential new Pokemon, only the player’s current Pokemon is compared. The rest of the team could be considered to see whether another member would benefit more from the Pokemon. -* (Not sure if this idea is a good one) online capability - * Connecting with other players online might be beneficial for having more intelligent teammates but may be inconsiderate if the bot makes poor choices. -### Minor Updates and Bug Fixes -* PP use is currently overestimated because the bot deducts PP when the move is selected as opposed to when it is used. -* Boss move usage is not fully reflected by their movesets. - * Bosses use their 5th move only when at low HP with boss-dependent frequency and timing. -* Items are not chosen intelligently -* Balls count could be read instead of being inputed in the config file. -* Improved goal selection (shiny and perfect attack, shiny, etc) +Thanks to [PokéSprite](https://github.com/msikma/pokesprite) for hosting the sprites of the Pokémon and balls and [PokéAPI](https://pokeapi.co/) for hosting data on Pokémon, abilities, and moves. We also thank [LUFA](http://www.lufa-lib.org/) for their AVR framework with which the microcontroller code would not work without. Finally, we thank [brianuuu](https://github.com/brianuuu) for the [AutoController](https://github.com/brianuuu/AutoController_swsh) program family on which our legacy microcontroller code is based. ## Contributors -AutoMaxLair was initially written by [ercdndrs](https://github.com/ercdndrs). It has been supported by code contributions from [pifopi](https://github.com/pifopi) and [denvoros](https://github.com/denvoros), as well as advice and testing by multiple users in the [Pokemon Automation Discord](https://discord.gg/PokemonAutomation) and extra code contributions from users Miguel90 and fawress. The microcontroller code is based on the [AutoController](https://github.com/brianuuu/AutoController_swsh) program family published by [brianuuu](https://github.com/brianuuu). -## Changelog -### v0.2-beta -* Initial stable public release. -* Greatly improved Pokemon and move selection from development versions. -### v0.3 -* Implemented optional ball selection for both rental Pokemon and boss Pokemon. -* Fixed a bug where Wide Guard users would Dynamax and use Max Guard instead. - * Wide Guard is now weighted fairly well. -* Refactoring. -### v0.4 -* Added alternate modes that reset the game to preserve rare balls and/or good seeds. - * This mode was added with help of user fawress on the Pokemon Automation Discord. - * The “ball saver” mode force quits and restarts the game if the legendary is caught but is not shiny. - * The “strong boss” mode force quits and restarts the game if the legendary is caught and none of the Pokemon are shiny - * Both modes can “lock on” to a good path, since the path is conserved if the game is reset before the end of the run. - * Be mindful that repeated resets will incur a Dynite Ore cost, in contrast to the regular mode that accumulates Dynite Ore. - * The “strong boss” mode is recommended for difficult bosses where even a good seed can sometimes lose. - * This mode will increase the win rate against any boss, but repeated wins will quickly deplete all your Dynite Ore. -* Fixed move scoring issues, including incorrect calculations that undervalued Max Steelspike derived from Steel Roller and overvalued Triple Axel. -* Fixed an issue where Max Moves were overvalued by a factor of 100. -* Added a counter for shiny Pokemon caught. -* Adjusted detection rectangles to properly detect text when the Switch screen size is 100% (rectangles were previously optimized for a non-standard size of 96%). -* Mitigated an issue where the bot would occasionally get stuck after dropping a button press in the battle routine. -* Fixed an issue that caused Pokemon caught along the run to be scored incorrectly when determining whether to swap rental Pokemon or not. -### v0.5 -* Redesigned the way that the different sequences are processed to make the program run more smoothly and consistently. - * The visual display and button presses are now handled by different threads, which reduces FPS drops when text is being read and allows the button sequences to be handled in a linear fashion (instead of relying on a timer and substages to dictate the next step). -* Updated the “ball saver” and “strong boss” modes to gracefully handle running out of Dynite Ore. -* “Ball saver” mode quits when there is insufficient ore to continue resetting. -* “Strong boss” mode finishes the run without resetting if there is insufficient ore for another reset. -* Miscellaneous bug fixes and improvements -### v0.6 -* Added support for multiple languages within the Pokemon data files. - * All information about Pokemon is now fetched from PokeAPI. - * Supported and verified languages include English, French, Spanish, Korean, and German. - * Italian and Mandarin may also work but have not been tested. -* Changed how a loss (losing all 4 lives) is detected, increasing consistency. -* Detect move names, improving the accuracy of Pokemon identification. -* Updated Ball Saver mode to skip catching the boss if it can't afford to reset the game, allowing it to be run indefinitely. -* Added "Keep Path" and "Find Path" modes, which are useful against very strong bosses (e.g., Zygarde). -* Add the ability to take a pokemon from the scientist if your current pokemon is worse than average. -* Add the ability to hunt for specific stats legendary. -* Add a way to send discord message with a picture showing your latest catch. -### v0.7 -* Paths through the den are now read, scored, and selected. -* Refactored code to improve readability and facilitate extension to tasks other than Dynamax Adventures in the future. -* Added support for variable hold time for button presses. The computer now sends two bytes per command, with the second byte specifying the hold time. -* Added dependencies for the microcontroller code so it can be altered and recompiled without any external tools (besides WinAVR). -* Precalculated data files are now stored in human-readable JSON format. -* Tweaked how Pokemon are scored. -* Stats checking now takes nature into account. -* Changed how certain events are detected, improving efficiency and reducing reliance on Tesseract. -* Improved path selection -* Improved config file -* Improved stats checking -* More improvements on the way! - -## Acknowledgements +AutoMaxLair was initially written by [ercdndrs](https://github.com/ercdndrs). It has been supported by code contributions from [pifopi](https://github.com/pifopi) and [denvoros](https://github.com/denvoros), as well as advice and testing by multiple users in the [Pokemon Automation Discord](https://discord.gg/PokemonAutomation) and extra code contributions from users Miguel90 and fawress. -Thanks to [pokemondb.net](https://pokemondb.net/) for hosting the sprites of the bosses. +## Supporting us +We do not take donations of any kind for this project. The only support we request is by sharing our work with your friends if you have enjoyed using it. Further, in the spirit of transparency, we would prefer that you disclose the use of our tool (or at least an indication of automation) when sharing photos of Pokemon caught using it. If such a disclosure is not permissible, we ask that you avoid any explicit or implicit claims that such Pokemon were caught manually. diff --git a/auto_max_lair.py b/auto_max_lair.py index 51114542..58fd624f 100644 --- a/auto_max_lair.py +++ b/auto_max_lair.py @@ -17,19 +17,21 @@ import automaxlair from automaxlair import matchup_scoring -VERSION = 'v0.7' +VERSION = 'v1.0' # load configuration from the config file try: config = toml.load("Config.toml") except FileNotFoundError: raise FileNotFoundError( - "The Config.toml file was not found! Be sure to copy Config.sample.toml as Config.toml and edit it!") -except: + "The Config.toml file was not found! Be sure to copy " + "Config.sample.toml as Config.toml and edit it!") +except Exception: raise SyntaxError( - "Something went wrong parsing Config.toml\n" + - "Please make sure you entered the information right " + - "and did not modify \" or . symbols or have uppercase true or false in the settings.") + "Something went wrong parsing Config.toml\n" + "Please make sure you entered the information right " + "and did not modify \" or . symbols or have uppercase true or false " + "in the settings.") COM_PORT = config['COM_PORT'] VIDEO_INDEX = config['VIDEO_INDEX'] @@ -38,6 +40,8 @@ BOSS_INDEX = config['advanced']['BOSS_INDEX'] pytesseract.pytesseract.tesseract_cmd = config['TESSERACT_PATH'] ENABLE_DEBUG_LOGS = config['advanced']['ENABLE_DEBUG_LOGS'] +NON_LEGEND = config['advanced']['NON_LEGEND'].lower().replace(' ', '-') +FIND_PATH_WINS = config['FIND_PATH_WINS'] # Set the log name LOG_NAME = f"{BOSS}_{datetime.now().strftime('%Y-%m-%d %H-%M-%S')}" @@ -46,9 +50,11 @@ def initialize(ctrlr) -> str: """Placeholder. Immediately enter the join stage.""" # send a discord message that we're ready to rumble - ctrlr.send_discord_message(False, f"Starting a new full run for {ctrlr.boss}!", + ctrlr.send_discord_message( + f"Starting a new full run for {ctrlr.boss}!", embed_fields=ctrlr.get_stats_for_discord(), level="update" ) + ctrlr.log(f'Initializing AutoMaxLair {VERSION}.') # assume we're starting from the select controller menu, connect, then # press home twice to return to the game @@ -108,16 +114,19 @@ def join(ctrlr) -> str: run.pokemon = pokemon_list[selection_index] ctrlr.push_button(b'a', 22 + VIDEO_EXTRA_DELAY) + # Read teammates. + ctrlr.identify_team_pokemon() + # Read the path. ctrlr.read_path_information(1) - ctrlr.push_button(b'8', 2 + VIDEO_EXTRA_DELAY, 0.65) + ctrlr.push_button(b'8', 2 + VIDEO_EXTRA_DELAY, 7) ctrlr.read_path_information(2) ctrlr.log(f'Path type identified as: {run.path_type}') - ctrlr.push_button(b'8', 2 + VIDEO_EXTRA_DELAY, 0.65) + ctrlr.push_button(b'8', 2 + VIDEO_EXTRA_DELAY, 8) ctrlr.read_path_information(3) - ctrlr.log(str(run), 'DEBUG') + for line in run.get_output_strings(): + ctrlr.log(line) all_paths_str = run.get_paths(truncate=True, name_only=True) - print(all_paths_str) # Choose the best path out of the options. # TODO: Improve path selection algorithm. @@ -132,6 +141,7 @@ def join(ctrlr) -> str: ctrlr.log( f'Target path at index {best_path_index} selected with score ' f'{score_list[best_path_index]:.3f}: {target_path_str}.') + ctrlr.log('Finished joining.', 'DEBUG') return 'path' @@ -175,7 +185,10 @@ def battle(ctrlr) -> str: """Choose moves during a battle and detect whether the battle has ended.""" run = ctrlr.current_run ctrlr.log(f'Battle {run.num_caught+1} starting.') - ctrlr.push_button(None, 12) + # Wait for the black screen at the start of the battle to go away. + ctrlr.push_button(None, 13) + while ctrlr.check_black_screen(): + ctrlr.push_button(None, 1) # Loop continuously until an event that ends the battle is detected. # The battle ends either in victory (signalled by the catch screen) # or in defeat (signalled by the screen going completely black). @@ -193,7 +206,7 @@ def battle(ctrlr) -> str: elif battle_state == 'FAINT': run.lives -= 1 ctrlr.log(f'Pokemon fainted. {run.lives} lives remaining.') - ctrlr.push_button(None, 4) + ctrlr.push_button(None, 3.5) elif battle_state == 'LOSS': ctrlr.log('You lose and the battle is finished.') run.lives -= 1 @@ -211,15 +224,6 @@ def battle(ctrlr) -> str: run.dmax_timer = 0 ctrlr.push_buttons((b'a', 1.5), (b'b', 1 + VIDEO_EXTRA_DELAY)) elif battle_state == 'FIGHT': - # If we got the pokemon from the scientist, we don't know what - # our current pokemon is, so check it first. - if run.pokemon is None: - ctrlr.push_buttons((b'y', 1), (b'a', 1 + VIDEO_EXTRA_DELAY)) - run.pokemon = ctrlr.read_selectable_pokemon('battle')[0] - ctrlr.push_buttons((b'b', 1), (b'b', 1.5), (b'b', 2)) - ctrlr.log( - f'Received {run.pokemon.name_id} from the scientist.') - # Before the bot makes a decision, it needs to know what the boss # is. if run.opponent is None: @@ -238,12 +242,15 @@ def battle(ctrlr) -> str: if run.opponent.name_id == 'ditto': if run.current_node.name != 'normal': - ctrlr.log(f'We were expecting a {run.current_node.name} type' - ' pokemon and we got ditto.', 'WARNING') + ctrlr.log( + f'We were expecting a {run.current_node.name} ' + 'type pokemon and we got ditto.', 'WARNING') else: if run.current_node.name not in run.opponent.type_ids: - ctrlr.log(f'We were expecting a {run.current_node.name} type ' - f'pokemon and we got {run.opponent.name_id}.', 'WARNING') + ctrlr.log( + f'We were expecting a {run.current_node.name} ' + 'type pokemon and we got ' + f'{run.opponent.name_id}.', 'WARNING') # If our Pokemon is Ditto, transform it into the boss (or vice # versa). @@ -281,18 +288,18 @@ def battle(ctrlr) -> str: run.dmax_timer == -1 and ctrlr.check_dynamax_available() ) # Choose the best move to use against the boss - # TODO: use the actual teammates instead of the average of all - # rental Pokemon. best_move_index, __, best_move_score = ( matchup_scoring.select_best_move( - run.pokemon, run.opponent, teammates=run.rental_pokemon) + run.pokemon, run.opponent, run.field, + teammates=run.team_pokemon) ) if run.dynamax_available: default_score = best_move_score run.pokemon.dynamax = True # Temporary best_max_move_index, __, best_dmax_move_score = ( matchup_scoring.select_best_move( - run.pokemon, run.opponent, run.rental_pokemon) + run.pokemon, run.opponent, run.field, + teammates=run.team_pokemon) ) if best_dmax_move_score > default_score: best_move_index = best_max_move_index @@ -348,7 +355,7 @@ def catch(ctrlr) -> str: and not ctrlr.check_sufficient_ore(1) ): ctrlr.log('Finishing the run without wasting a ball on the boss.') - ctrlr.push_buttons((b'v', 2), (b'a', 30)) + ctrlr.push_buttons((b'v', 2), (b'a', 10)) ctrlr.log('Congratulations!') return 'select_pokemon' @@ -357,9 +364,7 @@ def catch(ctrlr) -> str: # Start by navigating to the ball selection screen ctrlr.push_button(b'a', 2) # then navigate to the ball specified in the config file - while (ctrlr.get_target_ball().lower() != 'default' - and ctrlr.get_target_ball() not in ctrlr.check_ball() - ): + while (ctrlr.get_target_ball() not in ctrlr.check_ball()): ctrlr.push_button(b'<', 2 + VIDEO_EXTRA_DELAY) ctrlr.push_button(b'a', 30) ctrlr.record_ball_use() @@ -372,45 +377,90 @@ def catch(ctrlr) -> str: # # In this stage the list contains only 1 item. pokemon = ctrlr.read_selectable_pokemon('catch')[0] + run.caught_pokemon.append(pokemon.name_id) + + # Update the list of potential minibosses that we might encounter later + # in the den. + run.prune_potential_minibosses() + ctrlr.log( + 'The following Pokemon have been encountered and will not appear ' + f'again: {run.all_encountered_pokemon}', 'DEBUG' + ) + ctrlr.log( + 'The following Pokemon may still appear along the target path: ' + f'{[x for x in run.potential_boss_pokemon]}', 'DEBUG' + ) # Consider the amount of remaining minibosses when scoring each rental # Pokemon, at the start of the run, there are 3 - num_caught minibosses # and 1 final boss. We weigh the boss more heavily because it is more # difficult than the other bosses. rental_weight = 3 - run.num_caught boss_weight = 2 - # Calculate scores for the new and existing Pokemon. - # TODO: actually read the current Pokemon's health so the bot can - # decide to switch if it's low. - score = matchup_scoring.get_weighted_score( - run.rental_scores[pokemon.name_id], rental_weight, - run.boss_matchups[pokemon.name_id][ctrlr.boss], boss_weight + + # Calculate scores for every potential team resulting from the decision + # to take or leave the new Pokemon. + team = run.team_pokemon + # Re-measure team HP. + for i, HP in enumerate(ctrlr.measure_team_HP()): + if i == 0: + run.pokemon.HP = HP + else: + team[i - 1].HP = HP + team_scores = [] + potential_teams = ( + (pokemon, team[0], team[1], team[2]), + (run.pokemon, team[0], team[1], team[2]), + (run.pokemon, pokemon, team[1], team[2]), + (run.pokemon, team[0], pokemon, team[2]), + (run.pokemon, team[0], team[1], pokemon) ) - existing_score = matchup_scoring.get_weighted_score( - run.rental_scores[run.pokemon.name_id], rental_weight, - matchup_scoring.evaluate_matchup( - run.pokemon, run.boss_pokemon[ctrlr.boss], run.rental_pokemon - ), boss_weight - ) * run.HP - ctrlr.log(f'Score for {pokemon.name_id}: {score:.2f}', 'DEBUG') + ctrlr.log(f'HP of current team: {[x.HP for x in team]}.', 'DEBUG') + for potential_team in potential_teams: + score = matchup_scoring.get_weighted_score( + matchup_scoring.evaluate_average_matchup( + potential_team[0], run.potential_boss_pokemon.values(), + potential_team[1:], run.lives + ), rental_weight, + matchup_scoring.evaluate_matchup( + potential_team[0], run.boss_pokemon[run.boss], + potential_team[1:], run.lives + ), boss_weight + ) + ctrlr.log( + 'Score for potential team: ' + f'{[x.name_id for x in potential_team]}: {score:.2f}', 'DEBUG') + team_scores.append(score) + # Choosing not to take the Pokemon may result in a teammate choosing + # it, or none may choose it. The mechanics of your teammates choosing + # is currently not known. Qualitatively, it seems like they choose yes + # or no randomly with about 50% chance. Using this assumption, the + # chance that none of them take the Pokemon is (1/2)^3 or 12.5%. + choose_score = team_scores[0] + leave_score = 0.125 * team_scores[1] + 0.875 * sum(team_scores[2:]) / 3 ctrlr.log( - f'Score for {run.pokemon.name_id}: {existing_score:.2f}', 'DEBUG' - ) - - run.caught_pokemon.append(pokemon.name_id) + f'Score for taking {pokemon.name_id}: {choose_score:.2f}', 'DEBUG') + ctrlr.log( + f'Score for declining {pokemon.name_id}: {leave_score:.2f}', + 'DEBUG') # Compare the scores for the two options and choose the best one. - if score > existing_score: + if choose_score > leave_score: # Choose to swap your existing Pokemon for the new Pokemon. run.pokemon = pokemon + ctrlr.log(f'Decided to swap for {run.pokemon.name_id}.') # Note: a long delay is required here so the bot doesn't think a # battle started. - ctrlr.push_button(b'a', 7) - ctrlr.log(f'Decided to swap for {run.pokemon.name_id}.') + ctrlr.push_button(b'a', 6) + else: + ctrlr.log(f'Decided to keep going with {run.pokemon.name_id}.') # Note: a long delay is required here so the bot doesn't think a # battle started. - ctrlr.push_button(b'b', 7) - ctrlr.log(f'Decided to keep going with {run.pokemon.name_id}.') + ctrlr.push_button(b'b', 6) + + # Re-read teammates in case something changed. + ctrlr.identify_team_pokemon() + run.prune_potential_minibosses() # Move on to the detect stage. return 'detect' @@ -426,7 +476,7 @@ def catch(ctrlr) -> str: def backpacker(ctrlr) -> str: """Choose an item from the backpacker.""" - ctrlr.push_button(None, 5 + VIDEO_EXTRA_DELAY) + ctrlr.push_button(None, 1 + VIDEO_EXTRA_DELAY) ctrlr.log("Reading the backpacker's items.") @@ -456,50 +506,57 @@ def scientist(ctrlr) -> str: ctrlr.log('Scientist encountered.', 'DEBUG') - if run.pokemon is not None: - # Consider the amount of remaining minibosses when scoring each rental - # Pokemon, at the start of the run, there are 3 - num_caught minibosses - # and 1 final boss. We weigh the boss more heavily because it is more - # difficult than the other bosses. - rental_weight = 3 - run.num_caught - boss_weight = 2 + # Consider the amount of remaining minibosses when scoring each rental + # Pokemon, at the start of the run, there are 3 - num_caught minibosses + # and 1 final boss. We weigh the boss more heavily because it is more + # difficult than the other bosses. + rental_weight = 3 - run.num_caught + boss_weight = 2 - # Calculate scores for an average and existing Pokemon. - pokemon_scores = [] - for name_id in run.rental_pokemon: - score = matchup_scoring.get_weighted_score( - run.rental_scores[name_id], rental_weight, - run.boss_matchups[name_id][ctrlr.boss], boss_weight - ) - pokemon_scores.append(score) - average_score = sum(pokemon_scores) / len(pokemon_scores) - - # TODO: actually read the current Pokemon's health so the bot can - # decide to switch if it's low. - existing_score = matchup_scoring.get_weighted_score( - run.rental_scores[run.pokemon.name_id], rental_weight, - matchup_scoring.evaluate_matchup( - run.pokemon, run.boss_pokemon[ctrlr.boss], run.rental_pokemon - ), boss_weight - ) * run.HP - ctrlr.log(f'Score for average pokemon: {average_score:.2f}', 'DEBUG') - ctrlr.log( - f'Score for {run.pokemon.name_id}: {existing_score:.2f}', 'DEBUG') + # Calculate scores for an average and existing Pokemon. + pokemon_scores = [] + for name_id in run.rental_pokemon: + score = matchup_scoring.get_weighted_score( + run.rental_scores[name_id], rental_weight, + run.boss_matchups[name_id][ctrlr.boss], boss_weight + ) + pokemon_scores.append(score) + average_score = sum(pokemon_scores) / len(pokemon_scores) + + # TODO: actually read the current Pokemon's health so the bot can + # decide to switch if it's low. + existing_score = matchup_scoring.get_weighted_score( + run.rental_scores[run.pokemon.name_id], rental_weight, + matchup_scoring.evaluate_matchup( + run.pokemon, run.boss_pokemon[ctrlr.boss], + run.team_pokemon, run.lives + ), boss_weight + ) + ctrlr.log(f'Score for average pokemon: {average_score:.2f}', 'DEBUG') + ctrlr.log( + f'Score for {run.pokemon.name_id}: {existing_score:.2f}', 'DEBUG') - # If current pokemon is None, it means we just already talked to scientist - # Also it means we took the pokemon from scientist. - # So let's try to pick it up again - if run.pokemon is None or average_score > existing_score: + if average_score > existing_score: # Note: a long delay is required here so the bot doesn't think a # battle started. - ctrlr.push_buttons((None, 3), (b'a', 7 + VIDEO_EXTRA_DELAY)) + ctrlr.push_buttons((None, 3), (b'a', 2 + VIDEO_EXTRA_DELAY)) run.pokemon = None ctrlr.log('Took a Pokemon from the scientist.') else: # Note: a long delay is required here so the bot doesn't think a # battle started. - ctrlr.push_buttons((None, 3), (b'b', 7 + VIDEO_EXTRA_DELAY)) + ctrlr.push_buttons((None, 3), (b'b', 2 + VIDEO_EXTRA_DELAY)) ctrlr.log(f'Decided to keep going with {run.pokemon.name_id}') + + # Read teammates. + ctrlr.identify_team_pokemon() + # If we took a Pokemon from the scientist, try to identify it. + # Note: as of Python 3.6, dicts remember insertion order so using an + # OrderedDict is unnecessary. + if average_score > existing_score: + ctrlr.log(f'Identified {run.pokemon.name_id} as our new Pokemon.') + ctrlr.push_button(None, 5) + return 'detect' @@ -517,31 +574,36 @@ def select_pokemon(ctrlr) -> str: ctrlr.log('No Pokemon caught.') ctrlr.push_buttons((None, 10), (b'b', 1)) ctrlr.runs += 1 - ctrlr.reset_run() - ctrlr.record_ore_reward() - ctrlr.log('Preparing for another run.') - ctrlr.send_discord_message( - False, "No Pokémon were caught in the last run.", embed_fields=ctrlr.get_stats_for_discord(), level="update" ) + ctrlr.record_ore_reward() + ctrlr.reset_run() + ctrlr.log('Preparing for another run.') + # No Pokemon to review, so go back to the beginning. # Note that the "keep path" mode is meant to be used on a good path, so # although the path would be lost that situation should never arise. return 'join' # "find path" mode quits if the run is successful. - elif run.num_caught == 4 and ctrlr.mode == 'find path': + elif run.num_caught == 4 and ( + ctrlr.mode == 'find path' + and ctrlr.consecutive_resets == FIND_PATH_WINS - 1 + ): ctrlr.display_results(screenshot=True) ctrlr.send_discord_message( - False, - f"Found a winning path for {ctrlr.boss} with {run.lives} remaining.", - path_to_picture=f'logs/{ctrlr.log_name}_cap_{ctrlr.num_saved_images}.png', + f"This path won {FIND_PATH_WINS} times against {ctrlr.boss} with " + f"{run.lives} lives remaining.", + path_to_picture=f'logs/{ctrlr.log_name}_cap_' + f'{ctrlr.num_saved_images}.png', embed_fields=ctrlr.get_stats_for_discord(), - level="update" + level="critical" ) - ctrlr.log(f'This path won with {run.lives} lives remaining.') + ctrlr.log( + f'This path won {FIND_PATH_WINS} times with {run.lives} ' + 'lives remaining.') return None # Return None to signal the program to end. # Otherwise, navigate to the summary screen of the last Pokemon caught (the @@ -564,10 +626,11 @@ def select_pokemon(ctrlr) -> str: ctrlr.log('******************************') ctrlr.display_results(screenshot=True) ctrlr.send_discord_message( - True, f"Matching stats found for {ctrlr.boss}!", - path_to_picture=f'logs/{ctrlr.log_name}_cap_{ctrlr.num_saved_images}.png', + f"Matching stats found for {ctrlr.boss}!", + path_to_picture=f'logs/{ctrlr.log_name}_cap_' + f'{ctrlr.num_saved_images}.png', embed_fields=ctrlr.get_stats_for_discord(), - level="shiny" + level="legendary" ) return None # End whenever a matching stats legendary is found @@ -580,9 +643,15 @@ def select_pokemon(ctrlr) -> str: # caught. if ( (ctrlr.mode == 'keep path' and (run.num_caught < 4 or i > 0)) - or (ctrlr.mode == 'ball saver' and run.num_caught == 4 and i > 0) + or ( + (ctrlr.mode == 'ball saver' or ctrlr.mode == 'find path') + and run.num_caught == 4 and i > 0 + ) ): - if ctrlr.mode == 'ball saver' or ctrlr.check_sufficient_ore(2): + if ( + (ctrlr.mode == 'ball saver' or ctrlr.mode == 'find path') + or ctrlr.check_sufficient_ore(2) + ): reset_game = True break else: @@ -595,7 +664,8 @@ def select_pokemon(ctrlr) -> str: f'Shiny {run.caught_pokemon[run.num_caught - 1 - i]} will be ' 'kept.' ) - ctrlr.log("Adding information to the number of found shinies", "DEBUG") + ctrlr.log( + "Adding information to the number of found shinies", "DEBUG") ctrlr.caught_shinies.append( run.caught_pokemon[run.num_caught - 1 - i] ) @@ -604,17 +674,21 @@ def select_pokemon(ctrlr) -> str: ctrlr.display_results(screenshot=True) ctrlr.push_buttons((b'p', 1), (b'b', 3), (b'p', 1)) if run.num_caught == 4 and i == 0: + # NOTE: this is when we found a legendary! ctrlr.send_discord_message( - True, f'Found a shiny {run.caught_pokemon[3]}!', - path_to_picture=f'logs/{ctrlr.log_name}_cap_{ctrlr.num_saved_images}.png', + f'Found a shiny {run.caught_pokemon[3]}!', + path_to_picture=f'logs/{ctrlr.log_name}_cap_' + f'{ctrlr.num_saved_images}.png', embed_fields=ctrlr.get_stats_for_discord(), - level="shiny" + level="legendary" ) return None # End whenever a shiny legendary is found. else: ctrlr.send_discord_message( - False, f'Found a shiny {run.caught_pokemon[run.num_caught - 1 - i]}!', - path_to_picture=f'logs/{ctrlr.log_name}_cap_{ctrlr.num_saved_images}.png', + f'Found a shiny ' + f'{run.caught_pokemon[run.num_caught - 1 - i]}!', + path_to_picture=f'logs/{ctrlr.log_name}_cap_' + f'{ctrlr.num_saved_images}.png', embed_fields=ctrlr.get_stats_for_discord(), level="shiny" ) @@ -624,11 +698,19 @@ def select_pokemon(ctrlr) -> str: ctrlr.push_button(b'^', 3 + VIDEO_EXTRA_DELAY) if ( - not take_pokemon and ( - ctrlr.mode == 'strong boss' and run.num_caught == 4) + not take_pokemon and ctrlr.mode == 'strong boss' + and run.num_caught == 4 and ctrlr.check_sufficient_ore(1) + ): + reset_game = True + + if ( + not take_pokemon and NON_LEGEND in run.caught_pokemon and ctrlr.check_sufficient_ore(1) ): reset_game = True + ctrlr.log('----------------------------------') + ctrlr.log(f'--Found {NON_LEGEND} on this path.--') + ctrlr.log('----------------------------------') # After checking all the Pokemon, wrap up the run (including taking a # Pokemon or resetting the game, where appropriate). @@ -661,13 +743,17 @@ def select_pokemon(ctrlr) -> str: # Update statistics and reset stored information about the complete run. ctrlr.wins += 1 if run.lives != 0 else 0 ctrlr.runs += 1 + # calculate the win percent + ctrlr.win_percent = ctrlr.wins / ctrlr.runs + # then update the time per run + ctrlr.time_per_run = (datetime.now() - ctrlr.start_date) / ctrlr.runs ctrlr.reset_run() # Start another run if there are sufficient Poke balls to do so. if ctrlr.check_sufficient_balls(): ctrlr.log('Preparing for another run.') ctrlr.send_discord_message( - False, f'Preparing for another run.', + 'Preparing for another run.', embed_fields=ctrlr.get_stats_for_discord(), level="update" ) @@ -675,7 +761,7 @@ def select_pokemon(ctrlr) -> str: else: ctrlr.log('Out of balls. Quitting.') ctrlr.send_discord_message( - True, f'You ran out of legendary balls! The program has exited!', + 'You ran out of legendary balls! The program has exited!', embed_fields=ctrlr.get_stats_for_discord(), level="critical" ) @@ -737,7 +823,7 @@ def exception_handler(exception_type, exception_value, exception_traceback): encoding="UTF-8" ) fileHandler.setFormatter(formatter) - fileHandler.setLevel(logging.DEBUG if ENABLE_DEBUG_LOGS else logging.INFO) + fileHandler.setLevel(logging.DEBUG) # Add the handlers to the logger so that it will both print messages to # the console as well as save them to a log file. diff --git a/automaxlair/PABotBase_controller.py b/automaxlair/PABotBase_controller.py new file mode 100644 index 00000000..c8a59a27 --- /dev/null +++ b/automaxlair/PABotBase_controller.py @@ -0,0 +1,430 @@ +"""Interface for bridging the command format intended for RemoteControl.hex +with the command format required by PABotBase. + +PABotBase code can be found on GitHub: +https://github.com/PokemonAutomation/SwSh-Arduino +""" + +import binascii +import logging +import logging.handlers +import time +import os +from collections import deque +from os.path import dirname, abspath + +import serial +from crccheck import crc + +FORCE_DEBUG_MODE = False + +# Constants used by PABotBase. +PROTOCOL_VERSION = (2021030200, 2021032200) # Must match all but last 2 digits +PABB_MSG_ERROR_WARNING = b'\x07' +PABB_MSG_ACK_REQUEST = b'\x11' +PABB_MSG_SEQNUM_RESET = b'\x40' +PABB_MSG_REQUEST_PROTOCOL_VERSION = b'\x41' +PABB_MSG_REQUEST_COMMAND_FINISHED = b'\x45' +PABB_MSG_REQUEST_STOP = b'\x46' +PABB_MSG_CONTROLLER_STATE = b'\x9f' +PABB_MSG_COMMAND_PBF_PRESS_BUTTON = b'\x91' +PABB_MSG_COMMAND_PBF_MOVE_JOYSTICK_L = b'\x93' +PABB_MSG_COMMAND_PBF_MOVE_JOYSTICK_R = b'\x94' + +GLOBAL_RELEASE_TICKS = 10 # ticks at 125 ticks/s +AWAIT_TIMEOUT = 10 # seconds + +# Overrides for the parameters used by the regular serial port. +BAUD_RATE = 115200 + +LOG_NAME = 'PABotBaseController' + + +# Functions to convert series of parameters into commands. +def _get_button_command( + seqnum: int, + button: int, + hold_ticks: int, + release_ticks: int +): + """Get a bytestring corresponding to the desired button press.""" + return ( + PABB_MSG_COMMAND_PBF_PRESS_BUTTON + + seqnum.to_bytes(4, byteorder='little') + + button.to_bytes(2, byteorder='little') + + hold_ticks.to_bytes(2, byteorder='little') + + release_ticks.to_bytes(2, byteorder='little') + ) + + +def _get_joystick_command( + stick_type: bytes, + seqnum: int, + x: int, + y: int, + hold_ticks: int, + release_ticks: int +): + """Get a bytestring corresponding to the desired joystick movement.""" + return ( + stick_type + + seqnum.to_bytes(4, byteorder='little') + + x.to_bytes(1, byteorder='little') + + y.to_bytes(1, byteorder='little') + + hold_ticks.to_bytes(2, byteorder='little') + + release_ticks.to_bytes(2, byteorder='little') + ) + + +# Map for translating commands used by AutoMaxLair into PABotBase commands. +# +# Note that each value should be called with the seqnum as the first parameter +# and the hold ticks as the second parameter. +# Example: command: bytes = button_map['a'](seqnum: int, hold_ticks: int) +button_map = { + b'y': lambda x, y: _get_button_command(x, 1, y, GLOBAL_RELEASE_TICKS), + b'b': lambda x, y: _get_button_command(x, 2, y, GLOBAL_RELEASE_TICKS), + b'a': lambda x, y: _get_button_command(x, 4, y, GLOBAL_RELEASE_TICKS), + b'x': lambda x, y: _get_button_command(x, 8, y, GLOBAL_RELEASE_TICKS), + b'l': lambda x, y: _get_button_command(x, 16, y, GLOBAL_RELEASE_TICKS), + b'r': lambda x, y: _get_button_command(x, 32, y, GLOBAL_RELEASE_TICKS), + b'L': lambda x, y: _get_button_command(x, 64, y, GLOBAL_RELEASE_TICKS), + b'R': lambda x, y: _get_button_command(x, 128, y, GLOBAL_RELEASE_TICKS), + b'-': lambda x, y: _get_button_command(x, 256, y, GLOBAL_RELEASE_TICKS), + b'+': lambda x, y: _get_button_command(x, 512, y, GLOBAL_RELEASE_TICKS), + b'C': lambda x, y: _get_button_command(x, 1024, y, GLOBAL_RELEASE_TICKS), + b'c': lambda x, y: _get_button_command(x, 2048, y, GLOBAL_RELEASE_TICKS), + b'h': lambda x, y: _get_button_command(x, 4096, y, GLOBAL_RELEASE_TICKS), + b'p': lambda x, y: _get_button_command(x, 8192, y, GLOBAL_RELEASE_TICKS), + b'^': lambda x, y: _get_joystick_command( + PABB_MSG_COMMAND_PBF_MOVE_JOYSTICK_L, x, 0x80, 0x00, y, + GLOBAL_RELEASE_TICKS), # LY stick min + b'<': lambda x, y: _get_joystick_command( + PABB_MSG_COMMAND_PBF_MOVE_JOYSTICK_L, x, 0x00, 0x80, y, + GLOBAL_RELEASE_TICKS), # LX stick min + b'v': lambda x, y: _get_joystick_command( + PABB_MSG_COMMAND_PBF_MOVE_JOYSTICK_L, x, 0x80, 0xFF, y, + GLOBAL_RELEASE_TICKS), # LY stick max + b'>': lambda x, y: _get_joystick_command( + PABB_MSG_COMMAND_PBF_MOVE_JOYSTICK_L, x, 0xFF, 0x80, y, + GLOBAL_RELEASE_TICKS), # LX stick max + b'8': lambda x, y: _get_joystick_command( + PABB_MSG_COMMAND_PBF_MOVE_JOYSTICK_R, x, 0x80, 0x00, y, + GLOBAL_RELEASE_TICKS), # RY stick min + b'4': lambda x, y: _get_joystick_command( + PABB_MSG_COMMAND_PBF_MOVE_JOYSTICK_R, x, 0x00, 0x80, y, + GLOBAL_RELEASE_TICKS), # RX stick min + b'2': lambda x, y: _get_joystick_command( + PABB_MSG_COMMAND_PBF_MOVE_JOYSTICK_R, x, 0x80, 0xFF, y, + GLOBAL_RELEASE_TICKS), # RY stick max + b'6': lambda x, y: _get_joystick_command( + PABB_MSG_COMMAND_PBF_MOVE_JOYSTICK_R, x, 0xFF, 0x80, y, + GLOBAL_RELEASE_TICKS) # RX stick max +} + + +class PABotBaseController: + """Wrapper for a serial port that translates messages to the format used + by PABotBase. + """ + + def __init__(self, port, __, timeout=0.05, debug_mode=False): + """Connect to the microcontroller and initialize it.""" + # Initialize attributes. + self.timeout = timeout + self.debug_mode = debug_mode or FORCE_DEBUG_MODE + self.last_command = None + self.message_history = deque(maxlen=10) + # Initialize some dummy attributes that are needed because this object + # pretends to be a serial.Serial object. + self.port = port + self.in_waiting = 0 + self.is_open = True + + # Configure the logger. + self.logger = logging.getLogger(LOG_NAME) + self.logger.setLevel( + logging.DEBUG if self.debug_mode else logging.INFO) + formatter = logging.Formatter( + '%(asctime)s | %(levelname)s: %(message)s') + + # make the console formatter easier to read with fewer bits of info + console_formatter = logging.Formatter( + "%(asctime)s | %(levelname)s: %(message)s", "%H:%M:%S") + + # Configure the console, which will print logged information. + console = logging.StreamHandler() + console.setLevel(logging.DEBUG if self.debug_mode else logging.INFO) + console.setFormatter(console_formatter) + + # Configure the file handler, which will save logged information. + fileHandler = logging.handlers.TimedRotatingFileHandler( + filename=os.path.join( + dirname(dirname(abspath(__file__))), 'logs', + LOG_NAME + '.log' + ), when='midnight', encoding='UTF-8' + ) + fileHandler.setFormatter(formatter) + fileHandler.setLevel(logging.DEBUG) + + # Add the handlers to the logger so that it will both print messages to + # the console as well as save them to a log file. + self.logger.addHandler(console) + self.logger.addHandler(fileHandler) + + # Open a serial port + self.last_sent_message = b'' + self.com = serial.Serial(port, 115200, timeout=self.timeout) + # Go through a reset sequence which initializes PABotBase. + self._reset() + + def __del__(self): + """Close the com port on deletion.""" + if self.com.is_open: + self.com.close() + + def _reset(self) -> None: + """Reset the seqnum for both client and server.""" + # Flush serial buffers and reset the command/request count. + self.com.flushInput() + self.com.flushOutput() + self.seqnum = 0 + + # Command PABotBase to stop its current operation. + echo = self._write( + PABB_MSG_REQUEST_STOP + self.seqnum.to_bytes(4, 'little') + ) + # Reset the device seqnum. + echo = self._write( + PABB_MSG_SEQNUM_RESET + self.seqnum.to_bytes(4, 'little')) + assert echo[1] == 0x11, ( + 'PABotBase failed to respond to the reset command' + ) + self.seqnum += 1 + # Get the protocol version and throw an error if it's incompatible. + echo = self._write( + PABB_MSG_REQUEST_PROTOCOL_VERSION + + self.seqnum.to_bytes(4, 'little')) + used_protocol_version = int.from_bytes( + echo[6:10], byteorder='little') + used_protocol_version_major = (used_protocol_version // 100) * 100 + assert used_protocol_version_major in PROTOCOL_VERSION, ( + f'Protocol version in {PROTOCOL_VERSION} is required but the' + f' microcontroller is using version {used_protocol_version_major}' + ) + + def _write(self, message) -> bytes: + """Handler for the PABotBase message send routine which involves + checking that the message was echoed back successfully. + """ + + # Add the length byte and CRC to the input message. + length_byte = bytes([(5 + len(message)) ^ 0xFF]) + full_message = self._add_checksum(length_byte + message) + # Send the message and get the response. + self.com.write(full_message) + self.message_history.append( + 'TX: ' + str(binascii.hexlify(full_message))) + self.last_sent_message = message + self.log(f'Sent message: {binascii.hexlify(full_message)}', 'DEBUG') + # Await the acknowledgement of the sent message and return it. + ack = self._read() + return ack + + def _read(self) -> bytes: + """Method for reading a single message that was sent from PABotBase.""" + # Wait until a message is received, then parse the message. + + # First, read the length of the message. + start_time = time.time() + while self.com.in_waiting == 0: + if time.time() - start_time > AWAIT_TIMEOUT: + self.log( + 'In _read method: Timed out after awating a message for ' + f'{AWAIT_TIMEOUT} seconds. The last sent message was ' + f'{binascii.hexlify(self.last_sent_message)}.', 'ERROR' + ) + return b'' + time.sleep(0.01) + length_byte = self.com.read() + response_length = length_byte[0] ^ 0xFF + start_time = time.time() + full_message = None + + # Then, read bytes to fill the message length. + full_message = length_byte + self.com.read(response_length - 1) + self.message_history.append( + 'RX: ' + str(binascii.hexlify(full_message))) + if len(full_message) < response_length: + # Log a warning of a timeout occurring. + self.log( + 'In _read method: ' + 'A timeout occurred waiting for the microcontroller to ' + 'send a complete message. The incomplete message was: ' + f'{binascii.hexlify(full_message)}.', 'WARNING' + ) + + # Finally, assmble and return the complete message. + self.log( + 'In _read method: ' + f'Received message: {binascii.hexlify(full_message)}', 'DEBUG') + # Check for errors and attempt to deal with them + code = full_message[1] + if code == 0x01: + # Invalid message, possibly due to corruption of the previous + # message. Try resending it. + self.log( + 'In _read method: An error occurred trying to send message: ' + f'{binascii.hexlify(self.last_sent_message)}. Attempting to ' + 'resend it.', 'WARNING' + ) + return self._write(self.last_sent_message) + elif ( + code == PABB_MSG_ERROR_WARNING[0] + and full_message[2:4] == b'\x01\x00' + ): + # Random error that can be ignored, therefore re-call this method. + self.log( + 'In _read method: Ignored PABB_MSG_ERROR_WARNING.', 'DEBUG') + return self._read() + else: + return full_message + + def _read_command_finished(self) -> bool: + """Confirm that PABotBase finished processing a command, and send an + acknowledgement for receiving the notification. + """ + + # First, read the expected PABB_MSG_REQUEST_COMMAND_FINISHED message. + full_message = self._read() + if len(full_message) == 0: + # Error encountered. + self.log( + 'In _read_command_finished method: _read method failed to ' + 'receive a message of any kind.', 'ERROR' + ) + return False + + # Prepare an acknowledgement of the received message to return to the + # microcontroller. + ack = None + code = full_message[1] + if code == PABB_MSG_REQUEST_COMMAND_FINISHED[0]: + # Expected response indicating that a previous command succeeded. + # Prepare the acknowledgement. + ack = self._add_checksum( + b'\xf5' + PABB_MSG_ACK_REQUEST + full_message[2:6] + ) + elif code == 0x10: + # An error was likely caught in the _read method, causing the + # button command to be resent. Try to read the next message which + # will likely be the one we are looking for. + return self._read_command_finished() + else: + # Unknown error code. + self.log( + 'In _read_command_finished method: ' + f'Message code {bytes([full_message[1]])} did not' + ' match any known response.', 'ERROR') + + # Send the acknowledgement. + if ack is not None: + self.log( + 'In _read_command_finished method: ' + f'Sent ack: {binascii.hexlify(ack)}', 'DEBUG') + self.com.write(ack) + return True + else: + return False + + def _add_checksum(self, message: bytes) -> bytes: + """Compute the CRC32 checksum and add it to the end of the message.""" + + # Compute the CRC using the crccheck module. + val = crc.Crc32c.calchex(message, byteorder='little') + # Transform it to the Intel format used by PABotBase. + inverted_int = int(val, 16) ^ 0xFFFFFFFF + + return message + inverted_int.to_bytes(4, byteorder='big') + + def close(self): + """Close the com port.""" + self.com.close() + + def log( + self, + text: str, + level: str = 'INFO' + ) -> None: + """Print a string to the console and log file with a timestamp.""" + self.logger.log(getattr(logging, level), text) + + def write(self, message: bytes): + """External facing method that the SwitchController will call in the + same way as serial.Serial.write. + + Takes two bytes, one for the button and one for hold duration, and + sends the corresponsing PABotBase command. + """ + + # Save the command so it can be "echoed" when the read method is + # called. + self.last_command = message + + # Extract the command and hold duration from the input. + character = message[0].to_bytes(1, 'little') + hold_ticks = message[1] * 10 + + self.log( + 'In write method: ' + f'Translating command with character {character} and duration ' + f'{hold_ticks}', 'DEBUG') + + # Increment the seqnum so PABotBase knows this command is new. + self.seqnum += 1 + # Get the translated command using the preconstructed map. + # Note that button_map[character] is an anonymous function of either + # _get_button_command or _get_joystick_command with some parameters + # filled in already. + translated_command = button_map[character](self.seqnum, hold_ticks) + # Finally, send the translated command to the microcontroller. + ack = self._write(translated_command) + code = ack[1] + if code != 0x10: + self.log( + f'Received message with code {binascii.hexlify(code)} instead ' + 'of expected 0x10.', 'WARNING' + ) + + def read(self, length=2): + """Wrapper for serial.Serial.read. Always returns two bytes since that + is the format used by SwitchController. + """ + + assert length == 2, ( + 'PABotBaseController.read method always returns 2 bytes.') + + # Handle an incoming PABB_MSG_REQUEST_COMMAND_FINISHED message and + # "echo" the previous command successfully if everything went as + # expected. + if self._read_command_finished(): + return self.last_command + else: + self.log( + 'Unrecoverable state encountered. Recent message history: ' + f'{self.message_history}', 'ERROR' + ) + return b'er' # Throws an error + + +if __name__ == '__main__': + # Test sequence for running this script in isolation. + com = PABotBaseController('COM4', 9600, 0.05, True) + com.write(b'a' + bytes([8])) + com.log(com.read(2), 'INFO') + time.sleep(1) + com.write(b'b' + bytes([8])) + com.log(com.read(2), 'INFO') + time.sleep(1) + com.write(b'a' + bytes([8])) + com.log(com.read(2), 'INFO') diff --git a/automaxlair/ball.py b/automaxlair/ball.py new file mode 100644 index 00000000..00fe8278 --- /dev/null +++ b/automaxlair/ball.py @@ -0,0 +1,16 @@ +from typing import Dict + + +class Ball(): + """Represents a ball. Contains one id and names in multiple languages.""" + + def __init__( + self, + name_id: str, + names: Dict[str, str] + ) -> None: + self.name_id = name_id + self.names = names + + def __str__(self) -> str: + return self.name_id diff --git a/automaxlair/da_controller.py b/automaxlair/da_controller.py index 62beac62..52b07bb5 100644 --- a/automaxlair/da_controller.py +++ b/automaxlair/da_controller.py @@ -3,20 +3,20 @@ den. """ -# MaxLairInstance # Eric Donders -# Contributions from Miguel Tavera and Discord users denvoros and pifopi -# Last updated 2021-01-08 +# Contributions from denvoros, pifopi, and Miguel Tavera # Created 2020-11-20 import re +import os import pickle +import jsonpickle -from datetime import datetime from typing import List, Tuple, TypeVar, Callable, Dict, Optional import cv2 import enchant +from discord import Color from .pokemon_classes import Pokemon from .max_lair_instance import MaxLairInstance @@ -48,11 +48,10 @@ def __init__( self.boss = config['BOSS'].lower().replace(' ', '-') self.base_ball = config['BASE_BALL'] - self.base_balls = int(config['BASE_BALLS']) self.legendary_ball = config['LEGENDARY_BALL'] - self.legendary_balls = config['LEGENDARY_BALLS'] self.mode = config['MODE'].lower() self.dynite_ore = int(config['advanced']['DYNITE_ORE']) + self.maximum_ore_cost = int(config['advanced']['MAXIMUM_ORE_COST']) self.data_paths = ( config['pokemon_data_paths']['Boss_Pokemon'], config['pokemon_data_paths']['Rental_Pokemon'], @@ -64,32 +63,16 @@ def __init__( self.check_attack_stat = config['stats']['CHECK_ATTACK_STAT'] self.expected_attack_stats = config['stats']['ATTACK_STATS'] - # only need to run this assertion if we're checking the attack stat - if self.check_attack_stat: - assert 'positive' in self.expected_attack_stats.keys(), "No positive value found in expected attack stats" - assert 'negative' in self.expected_attack_stats.keys(), "No negative value found in expected attack stats" - assert 'neutral' in self.expected_attack_stats.keys(), "No neutral value found in expected attack stats" - assert type(self.expected_attack_stats['positive']) is list, "You must provide multiple values for positive attack stats" - assert type(self.expected_attack_stats['negative']) is list, "You must provide multiple values for negative attack stats" - assert type(self.expected_attack_stats['neutral']) is list, "You must provide multiple values for neutral attack stats" - - self.check_speed_stat = config['stats']['CHECK_SPEED_STAT'] - self.expected_speed_stats = config['stats']['SPEED_STATS'] - # only need to run this assertion if we're checking the speed stat - if self.check_speed_stat: - assert 'positive' in self.expected_speed_stats.keys(), "No positive value found in expected speed stats" - assert 'negative' in self.expected_speed_stats.keys(), "No negative value found in expected speed stats" - assert 'neutral' in self.expected_speed_stats.keys(), "No neutral value found in expected speed stats" - assert type(self.expected_speed_stats['positive']) is list, "You must provide multiple values for positive speed stats" - assert type(self.expected_speed_stats['negative']) is list, "You must provide multiple values for negative speed stats" - assert type(self.expected_speed_stats['neutral']) is list, "You must provide multiple values for neutral speed stats" # Initialize starting values. self.num_saved_images = 0 self.runs = 0 self.wins = 0 + self.win_percent = 0.0 + self.time_per_run = 0.0 self.shinies_found = 0 self.caught_shinies: List[str] = [] + self.ball_numbers: Dict[str, int] = {} self.consecutive_resets = int(config['advanced']['CONSECUTIVE_RESETS']) self.reset_run() # Some values are initialized in here. @@ -105,13 +88,20 @@ def __init__( self.sel_rect_5 = ((0.195, 0.11), (0.39, 0.165)) self.type_rect_1 = ((0.24, 0.175), (0.31, 0.21)) self.type_rect_2 = ((0.35, 0.175), (0.425, 0.21)) - self.menu_rect_1 = ((0.84, 0.685), (0.91, 0.695)) - self.menu_rect_2 = ((0.92, 0.69), (0.98, 0.75)) - self.menu_rect_3 = ((0.82, 0.85), (0.98, 0.88)) - self.menu_rect_4 = ((0.82, 0.93), (0.98, 0.96)) + self.catch_dialogue_rect_1 = ((0.82, 0.845), (0.95, 0.855)) + self.catch_dialogue_rect_2 = ((0.82, 0.925), (0.95, 0.935)) + self.battle_symbol_rect = ((0.9, 0.65), (0.99, 0.79)) self.battle_text_rect = ((0.05, 0.805), (0.95, 0.95)) self.dmax_symbol_rect = ((0.58, 0.805), (0.61, 0.84)) # In-den rectangles. + self.team_poke_rect_1 = ((0.012, 0.375), (0.05, 0.44)) + self.team_poke_rect_2 = ((0.012, 0.545), (0.05, 0.6)) + self.team_poke_rect_3 = ((0.012, 0.702), (0.05, 0.77)) + self.team_poke_rect_4 = ((0.012, 0.865), (0.05, 0.93)) + self.team_HP_rect_1 = ((0.073, 0.433), (0.127, 0.439)) + self.team_HP_rect_2 = ((0.073, 0.594), (0.118, 0.6)) + self.team_HP_rect_3 = ((0.073, 0.761), (0.118, 0.767)) + self.team_HP_rect_4 = ((0.073, 0.924), (0.118, 0.928)) self.den_text_rect = ((0.27, 0.80), (0.72, 0.92)) self.paths_2_1_rect = ((0.2, 0), (0.4, 1)) self.paths_2_2_rect = ((0.6, 0), (0.8, 1)) @@ -129,10 +119,16 @@ def __init__( self.moves_rect_2 = ((0.71, 0.41), (0.91, 0.64)) self.moves_rect_3 = ((0.71, 0.67), (0.91, 0.90)) self.moves_rect_4 = ((0.71, 0.46), (0.91, 0.69)) + # Team Pokemon HP rectangles (post battle). + self.team_HP_rect_5 = ((0.225, 0.34), (0.34, 0.348)) + self.team_HP_rect_6 = ((0.225, 0.427), (0.34, 0.435)) + self.team_HP_rect_7 = ((0.225, 0.518), (0.34, 0.525)) + self.team_HP_rect_8 = ((0.225, 0.606), (0.34, 0.614)) # Poke ball rectangles. - self.ball_rect = ((0.69, 0.63), (0.88, 0.68)) self.ball_num_rect = ((0.915, 0.63), (0.95, 0.68)) + self.ball_sprite_rect = ((0.66, 0.63), (0.675, 0.68)) # Backpacker item rectangles. + self.backpacker_blue_rect = ((0.75, 0.2), (0.95, 0.6)) self.item_rect_1 = ((0.549, 0.11), (0.745, 0.16)) self.item_rect_2 = ((0.549, 0.19), (0.745, 0.24)) self.item_rect_3 = ((0.549, 0.27), (0.745, 0.32)) @@ -149,20 +145,94 @@ def __init__( self.config['pokemon_data_paths']['type_icon_path'], 'rb' ) as image_file: self.type_icons = pickle.load(image_file) + with open( + self.config['pokemon_data_paths']['pokemon_sprite_path'], 'rb' + ) as image_file: + self.pokemon_sprites = pickle.load(image_file) + with open( + self.config['pokemon_data_paths']['ball_sprite_path'], 'rb' + ) as image_file: + self.ball_sprites = pickle.load(image_file) + self.misc_icons = {} + directory = self.config['pokemon_data_paths']['misc_icon_dir'] + for filename in os.listdir(directory): + if '.png' in filename: + self.misc_icons[filename.split('.png')[0]] = cv2.imread( + os.path.join(directory, filename) + ) # Validate starting values. - if self.mode not in ( + assert self.boss in self.current_run.boss_pokemon, ( + f'Invalid value for BOSS supplied in Config.toml: {config["BOSS"]}' + ) + invalid_balls = {self.base_ball, self.legendary_ball} - { + 'beast-ball', 'dive-ball', 'dream-ball', 'dusk-ball', 'fast-ball', + 'friend-ball', 'great-ball', 'heal-ball', 'heavy-ball', + 'level-ball', 'love-ball', 'lure-ball', 'luxury-ball', + 'master-ball', 'moon-ball', 'nest-ball', 'net-ball', 'poke-ball', + 'premier-ball', 'quick-ball', 'repeat-ball', 'safari-ball', + 'sport-ball', 'timer-ball', 'ultra-ball'} + assert len(invalid_balls) == 0, ( + f'Invalid ball type(s) supplied in Config.toml: {invalid_balls}') + assert self.mode in ( 'default', 'strong boss', 'ball saver', 'keep path', 'find path' - ): - self.log( - f'Supplied mode {self.mode} not understood; ' - 'using default mode.', 'WARNING' - ) - if self.boss not in self.current_run.boss_pokemon: - raise KeyError( - f'Incorrect value: {config["BOSS"]} for BOSS ' - 'supplied in Config.ini' - ) + ), f"Invalid value for MODE in Config.toml: {config['MODE']}" + assert self.discord_level in ( + 'all', 'all_ping_legendary', 'only_shiny', + 'only_shiny_ping_legendary', 'none'), ( + f'Invalid discord level: {self.discord_level}') + # Do not assert for negative dynite ore. + # Negative ore will force the bot to not spend any ore until it reaches + # that target. + assert self.dynite_ore <= 999, 'Too much dynite ore.' + assert self.consecutive_resets >= 0, ( + 'Consecutive resets cannot be negative.') + assert self.maximum_ore_cost >= 0, ( + 'Maximum ore cost cannot be negative.') + assert self.maximum_ore_cost <= 10, ( + 'Maximum ore cost cannot be greater than 10.') + # Only need to run this assertion if we're checking the attack stat. + if self.check_attack_stat: + assert 'positive' in self.expected_attack_stats.keys(), ( + "No positive value found in expected attack stats") + assert 'negative' in self.expected_attack_stats.keys(), ( + "No negative value found in expected attack stats") + assert 'neutral' in self.expected_attack_stats.keys(), ( + "No neutral value found in expected attack stats") + assert type(self.expected_attack_stats['positive']) is list, ( + "You must provide multiple values for positive attack stats") + assert type(self.expected_attack_stats['negative']) is list, ( + "You must provide multiple values for negative attack stats") + assert type(self.expected_attack_stats['neutral']) is list, ( + "You must provide multiple values for neutral attack stats") + + self.check_speed_stat = config['stats']['CHECK_SPEED_STAT'] + self.expected_speed_stats = config['stats']['SPEED_STATS'] + # Only need to run this assertion if we're checking the speed stat. + if self.check_speed_stat: + assert 'positive' in self.expected_speed_stats.keys(), ( + "No positive value found in expected speed stats") + assert 'negative' in self.expected_speed_stats.keys(), ( + "No negative value found in expected speed stats") + assert 'neutral' in self.expected_speed_stats.keys(), ( + "No neutral value found in expected speed stats") + assert type(self.expected_speed_stats['positive']) is list, ( + "You must provide multiple values for positive speed stats") + assert type(self.expected_speed_stats['negative']) is list, ( + "You must provide multiple values for negative speed stats") + assert type(self.expected_speed_stats['neutral']) is list, ( + "You must provide multiple values for neutral speed stats") + + # choose a good color for the boss + try: + # let's update the embed color with one from our list + with open( + self.config['pokemon_data_paths']['boss_colors'], 'r' + ) as f: + boss_colors = jsonpickle.decode(f.read()) + self.discord_embed_color = Color.from_rgb(*boss_colors[self.boss]) + except Exception: + self.discord_embed_color = Color.random() def reset_run(self) -> None: """Reset in preparation for a new Dynamax Adventure.""" @@ -186,7 +256,9 @@ def get_frame( if not self.enable_debug_logs or rectangle_set is None: pass elif rectangle_set == 'detect': - self.outline_region(img, self.den_text_rect, (255, 255, 0)) + self.outline_regions(img, ( + self.den_text_rect, self.backpacker_blue_rect + ), (255, 255, 0)) elif rectangle_set == 'select_pokemon': self.outline_regions( img, ( @@ -203,24 +275,40 @@ def get_frame( self.outline_regions( img, (self.moves_rect_1, self.moves_rect_2, self.moves_rect_3), (255, 255, 0)) + self.outline_regions(img, ( + self.team_HP_rect_1, self.team_HP_rect_2, + self.team_HP_rect_3, self.team_HP_rect_4, + self.team_poke_rect_1, self.team_poke_rect_2, + self.team_poke_rect_3, self.team_poke_rect_4 + ), (0, 0, 255)) elif rectangle_set == 'catch': self.outline_region(img, self.sel_rect_4, (0, 255, 0)) self.outline_region(img, self.abil_rect_4, (0, 255, 255)) self.outline_region(img, self.moves_rect_4, (255, 255, 0)) self.outline_regions( - img, (self.ball_rect, self.ball_num_rect), (0, 0, 255)) + img, (self.ball_sprite_rect, self.ball_num_rect), (0, 0, 255)) + self.outline_regions( + img, ( + self.team_HP_rect_5, self.team_HP_rect_6, + self.team_HP_rect_7, self.team_HP_rect_8 + ), (0, 255, 0) + ) elif rectangle_set == 'battle': self.outline_region(img, self.sel_rect_5, (0, 255, 0)) self.outline_regions( img, ( - self.type_rect_1, self.type_rect_2, self.menu_rect_1, - self.menu_rect_2, self.menu_rect_3, self.menu_rect_4, - self.dmax_symbol_rect, self.battle_text_rect + self.type_rect_1, self.type_rect_2, + self.catch_dialogue_rect_1, self.catch_dialogue_rect_2, + self.dmax_symbol_rect, self.battle_text_rect, + self.battle_symbol_rect ), (255, 255, 0)) elif rectangle_set == 'backpacker': self.outline_regions( - img, (self.item_rect_1, self.item_rect_2, self.item_rect_3, - self.item_rect_4, self.item_rect_5), (0, 255, 0)) + img, ( + self.backpacker_blue_rect, self.item_rect_1, + self.item_rect_2, self.item_rect_3, self.item_rect_4, + self.item_rect_5 + ), (0, 255, 0)) # Return annotated image. return img @@ -237,6 +325,8 @@ def read_path_information( # Get a subset of images relevant to the stage index images = [] + assert stage_index in (1, 2, 3), ( + 'Parameter "stage_index" must be 1, 2, or 3') if stage_index == 1: images.append(self.get_image_slice(img, self.paths_2_1_rect)) images.append(self.get_image_slice(img, self.paths_2_2_rect)) @@ -245,8 +335,6 @@ def read_path_information( images.append(self.get_image_slice(img, self.paths_4_2_rect)) images.append(self.get_image_slice(img, self.paths_4_3_rect)) images.append(self.get_image_slice(img, self.paths_4_4_rect)) - else: - raise ValueError('Parameter "stage_index" must be 1, 2, or 3') type_data = [] for img in images: @@ -266,7 +354,7 @@ def identify_path_pokemon( # Check every type image for a match within the image # TODO: try to look at the shadow of the Pokemon for more hints - best_match_value = 0 + best_match_value = -1 for type_id in ( 'normal', 'fire', 'water', 'electric', 'grass', 'ice', 'fighting', 'poison', 'ground', 'flying', 'psychic', 'bug', 'rock', 'ghost', @@ -281,6 +369,102 @@ def identify_path_pokemon( return match_result + def identify_team_pokemon(self) -> None: + """Read the Pokemon held by all team members from the sprites that are + shown in the den. + """ + + # First, grab the image so we can read it. + img = self.get_frame() + + # Then, collect a list of the 4 Pokemon (with yours first). + self.current_run.team_pokemon = [] + HP_values = self.measure_team_HP() + for i, rectangle in enumerate(( + self.team_poke_rect_1, self.team_poke_rect_2, + self.team_poke_rect_3, self.team_poke_rect_4 + )): + # Initialize default values + # Note that an initial match_value of -1 guarantees at least one + # match, even if it's poor quality. + match_value = -1 + match_name_id = '' + match_value_2nd = -1 + match_name_id_2nd = '' + # Match the sprite on the screen against all the stored rental + # Pokemon sprites. + read_image = self.get_image_slice(img, rectangle) + for name_id, sprite in self.pokemon_sprites: + # Check match value against stored Pokemon sprites + value, __ = self.match_template(sprite, read_image) + if value > match_value: + match_value_2nd = match_value + match_name_id_2nd = match_name_id + match_value = value + match_name_id = name_id + + # Record the match for the team member + pokemon = self.current_run.rental_pokemon[match_name_id] + pokemon.HP = HP_values[i] + + # Mark the Pokemon as "encountered" so we know it won't appear + # later in the den. + self.current_run.all_encountered_pokemon.add(pokemon.name_id) + + # Update the storage with the read Pokemon. + if i == 0: + if self.current_run.pokemon not in (None, pokemon): + self.log( + "The bot's Pokemon detected from the sprite, " + f"{pokemon.name_id}, did not match with the previously" + f" known value of {self.current_run.pokemon.name_id}.", + 'WARNING' + ) + self.current_run.pokemon = pokemon + else: + self.current_run.team_pokemon.append(pokemon) + self.log( + f'Identified team member {i+1} as {match_name_id} with match ' + f'score of {match_value:.3f} and HP of ' + f'{round(pokemon.HP * 100)}%.', 'DEBUG') + if match_value < 0.75: + self.log( + f'Could not find a great match for team member {i+1}. The ' + f'next best match was {match_name_id_2nd} with match value' + f' of {match_value_2nd:.3f}.', 'WARNING' + ) + + def measure_team_HP(self, img: Image = None) -> List[float]: + """Read HP bars on the screen and return a list of the 4 fractional HP + values (from 0 to 1). + """ + + # Fetch an image if it hasn't been passed in. + if img is None: + img = self.get_frame() + # Choose areas to measure the HP bars that are appropriate for the + # current stage. + if self.stage == 'catch': + HP_rects = ( + self.team_HP_rect_5, self.team_HP_rect_6, self.team_HP_rect_7, + self.team_HP_rect_8 + ) + else: + if self.stage not in ('join', 'detect', 'scientist', 'path'): + self.log( + 'HP read at potentially inappropriate stage of ' + f'"{self.stage}"".', 'WARNING') + HP_rects = ( + self.team_HP_rect_1, self.team_HP_rect_2, self.team_HP_rect_3, + self.team_HP_rect_4 + ) + # Read the HP bar values + return [ + self.get_rect_HSV_value( + self.get_image_slice(img, rect), (0, 50, 0), (180, 255, 255) + ) / 255 for rect in HP_rects + ] + def identify_pokemon( self, name: str, @@ -329,6 +513,10 @@ def identify_pokemon( best_match = pokemon matched_text = string_to_match + # Mark the Pokemon as "encountered" so we know it won't appear later in + # the den. + self.current_run.all_encountered_pokemon.add(best_match.name_id) + # Raise a warning if the OCRed text didn't closely match any stored # value. if match_value > len(text) / 3: @@ -446,15 +634,22 @@ def read_in_den_state(self) -> Optional[str]: img = self.get_frame() # First, check if a battle started. - if self.check_black_screen(img): + if self.check_black_screen(img) or self.match_template( + self.get_image_slice(img, self.battle_symbol_rect), + self.misc_icons['fight'] + )[0] >= 0.85: return 'battle' + # Then, check for the backpacker screen. + if self.check_rect_HSV_match( + self.backpacker_blue_rect, (80, 230, 230), (120, 255, 255), 240, + img + ): + return 'backpacker' # Otherwise, check for other text. if self.check_rect_HSV_match( self.den_text_rect, (0, 0, 0,), (180, 55, 255), 220, img ): text = self.read_text(img, self.den_text_rect, invert=True) - if re.search(self.phrases['BACKPACKER'], text): - return 'backpacker' if re.search(self.phrases['SCIENTIST'], text): return 'scientist' if re.search(self.phrases['PATH'], text): @@ -476,27 +671,34 @@ def read_in_battle_state(self) -> Optional[str]: if self.check_black_screen(img): return 'LOSS' # Then, check for the presence of the Fight or Cheer menu. - if self.check_rect_HSV_match( - self.menu_rect_1, (0, 0, 0), (180, 10, 10), 240, img_hsv, already_HSV=True - ): - if self.check_rect_HSV_match( - self.menu_rect_2, (170, 120, 0), (180, 255, 255), 20, img_hsv, already_HSV=True - ): - return 'FIGHT' - elif self.check_rect_HSV_match( - self.menu_rect_2, (95, 220, 120), (105, 255, 255), 20, img_hsv, already_HSV=True - ): - return 'CHEER' + fight_menu_image = self.get_image_slice(img, self.battle_symbol_rect) + fight_match = self.match_template( + fight_menu_image, self.misc_icons['fight'])[0] + if fight_match >= 0.85: + self.log( + 'Detected "Fight" symbol with match value of ' + f'{fight_match:.3f}.', 'DEBUG') + return 'FIGHT' + cheer_match = self.match_template( + fight_menu_image, self.misc_icons['cheer'])[0] + if cheer_match >= 0.85: + self.log( + 'Detected "Cheer" symbol with match value of ' + f'{cheer_match:.3f}.', 'DEBUG') + return 'CHEER' # Then, check for the presence of the Catch menu. if self.check_rect_HSV_match( - self.menu_rect_3, (0, 0, 0), (180, 5, 10), 180, img_hsv, already_HSV=True + self.catch_dialogue_rect_1, (0, 0, 0), (180, 10, 10), 200, img_hsv, + already_HSV=True ) and self.check_rect_HSV_match( - self.menu_rect_4, (0, 0, 250), (180, 5, 255), 20, img_hsv, already_HSV=True + self.catch_dialogue_rect_2, (0, 0, 250), (180, 10, 255), 200, + img_hsv, already_HSV=True ): return 'CATCH' # Finally, check for other text. if self.check_rect_HSV_match( - self.battle_text_rect, (0, 0, 0,), (180, 60, 255), 240, img_hsv, already_HSV=True + self.battle_text_rect, (0, 0, 0,), (180, 60, 255), 240, img_hsv, + already_HSV=True ): text = self.read_text(img, self.battle_text_rect, invert=True) if re.search(self.phrases['FAINT'], text): @@ -553,26 +755,30 @@ def check_stats(self) -> bool: self.get_frame(), self.attack_stat_rect, threshold=False, segmentation_mode='--psm 8' ) - for nature_type, expected_attacks in self.expected_attack_stats.items(): - nature_plus_expected = False if nature_type != 'positive' else True - nature_minus_expected = False if nature_type != 'negative' else True - + for nature_type, expected_attacks in ( + self.expected_attack_stats.items() + ): + nature_plus_expected = nature_type == 'positive' + nature_minus_expected = nature_type == 'negative' + # then iterate through the stats for expected_attack in expected_attacks: expected_attack = str(expected_attack) - + if expected_attack in read_attack: - if ( - (nature_minus_expected and self.check_rect_HSV_match( + if (self.check_rect_HSV_match( self.attack_label_rect, (80, 30, 0), - (110, 255, 255), 10)) or ( - nature_plus_expected and self.check_rect_HSV_match( - self.attack_label_rect, (150, 30, 0), - (180, 255, 255), 10) - ) - or ( - not nature_minus_expected - and not nature_plus_expected) + (110, 255, 255), 10)): + if nature_minus_expected: + is_attack_matching = True + elif (self.check_rect_HSV_match( + self.attack_label_rect, (150, 30, 0), + (180, 255, 255), 10)): + if nature_plus_expected: + is_attack_matching = True + elif ( + not nature_minus_expected + and not nature_plus_expected ): is_attack_matching = True @@ -591,23 +797,29 @@ def check_stats(self) -> bool: self.get_frame(), self.speed_stat_rect, threshold=False, segmentation_mode='--psm 8' ) - for nature_type, expected_speeds in self.expected_speed_stats.items(): - nature_plus_expected = False if nature_type != 'positive' else True - nature_minus_expected = False if nature_type != 'negative' else True - + for nature_type, expected_speeds in ( + self.expected_speed_stats.items() + ): + nature_plus_expected = nature_type == 'positive' + nature_minus_expected = nature_type == 'negative' + + # then iterate through the stats for expected_speed in expected_speeds: expected_speed = str(expected_speed) if expected_speed in read_speed: - if ( - (nature_minus_expected and self.check_rect_HSV_match( + if (self.check_rect_HSV_match( self.speed_label_rect, (80, 30, 0), - (110, 255, 255), 10)) - or (nature_plus_expected and self.check_rect_HSV_match( - self.speed_label_rect, (150, 30, 0), - (180, 255, 255), 10)) - or ( + (110, 255, 255), 10)): + if nature_minus_expected: + is_speed_matching = True + elif (self.check_rect_HSV_match( + self.speed_label_rect, (150, 30, 0), + (180, 255, 255), 10)): + if nature_plus_expected: + is_speed_matching = True + elif ( not nature_minus_expected - and not nature_plus_expected) + and not nature_plus_expected ): is_speed_matching = True @@ -627,15 +839,27 @@ def check_dynamax_available(self) -> bool: def check_black_screen(self, img: Image = None) -> bool: """Detect the black screen that is characteristic of losing the run.""" - if not self.check_rect_HSV_match( - ((0, 0), (1, 1)), (0, 0, 0), (180, 255, 10), 250, img - ): - return False - # Pause and check a second time as a rudimentary debounce filter. - self.push_button(None, 0.2) - return self.check_rect_HSV_match( - ((0, 0), (1, 1)), (0, 0, 0), (180, 255, 10), 250) + # Check for: + # 1) A low average brightness of the screen, and + # 2) High uniformity across the entire screen. + # + # Check twice to make sure the frame isn't a one-off—sometimes there is + # a momentary black screen after the Dynamax animation. + for __ in range(2): + if img is None: + img = cv2.cvtColor(self.get_frame(), cv2.COLOR_BGR2HSV) + if not self.check_rect_HSV_match( + ((0, 0), (1, 1)), (0, 0, 0), (180, 255, 50), 250, img, True + ) or cv2.meanStdDev(cv2.split(img)[2])[1] > 10: + return False + # Delay and get the next frame 500 ms later. + self.push_button(None, 0.5) + # Important! Force a new frame to be fetched the next loop. + img = None + + # If nothing triggered an early exit, the screen must be black. + return True def get_target_ball(self) -> str: """Return the name of the Poke Ball needed.""" @@ -644,33 +868,92 @@ def get_target_ball(self) -> str: else self.legendary_ball) def check_ball(self) -> str: - """Detect the currently selected Poke Ball during the catch phase of the - game. + """Detect the currently selected Poke Ball during the catch phase of + the game. """ - return self.read_text( - self.get_frame(), self.ball_rect, threshold=False, invert=True, - segmentation_mode='--psm 7').strip() + # Get an image that we will read the ball type and number from. + img = self.get_frame() + + # Match the ball on screen to stored sprites. + ball_image = self.get_image_slice(img, self.ball_sprite_rect) + best_match_value = -1 # Guarantees at least one match. + for ball_id, sprite in self.ball_sprites.items(): + match_value = self.match_template(sprite, ball_image)[0] + if match_value > best_match_value: + best_match_value = match_value + best_match = ball_id + + # Read the ball number. + # How it works: a regex is used to exclude non-number characters from + # the ball number read by OCR. + ball_num = int('0' + ''.join(re.findall(r'\d+', self.read_text( + img, self.ball_num_rect, invert=True, segmentation_mode='--psm 7' + ).replace('A', '4').replace('l', '1').replace(']', '1')))) + self.log( + f'Detected number of remaining {best_match} as {ball_num}.', + 'DEBUG') + # If the ball numbers are not known, record them. + # Alternatively, raise a warning if the read number is inconsistent + # with the previous known value. + stored_ball_num = self.ball_numbers.get(best_match, None) + if stored_ball_num is None: + # Store the ball number. + self.ball_numbers[best_match] = ball_num + self.log( + f'Stored the number of {best_match} as {ball_num}.', 'DEBUG') + elif ball_num != stored_ball_num: + self.log( + f'Detected base ball number {ball_num} did not match with ' + f'stored value of {stored_ball_num}.', 'WARNING') + + # Return the detected ball_id. + return best_match def record_ball_use(self) -> None: """Decrement the number of balls in the inventory and increment the number of pokemon caught. """ - if self.base_ball == self.legendary_ball: - self.base_balls -= 1 - self.legendary_balls -= 1 - elif self.current_run.num_caught < 3: - self.base_balls -= 1 - else: - self.legendary_balls -= 1 + # Subtract one from the stored number of balls. + ball_to_use = ( + self.base_ball if self.current_run.num_caught < 3 + else self.legendary_ball + ) + try: + self.ball_numbers[ball_to_use] -= 1 + except KeyError: + self.log( + f'{ball_to_use} number not initialized before use.', 'ERROR') + + # Record the Pokemon being caught. self.current_run.num_caught += 1 def check_sufficient_balls(self) -> bool: """Calculate whether sufficient balls remain for another run.""" + + # the following is logic to make sure we don't crash if we lose before + # seeing ball counts, it just assumes that we're on the right number + # ONLY if there isn't something saved, it does *Not* set it in the dict + if self.base_ball not in self.ball_numbers.keys(): + self.log( + "Did not save base balls in ball numbers! " + "Assuming at least four left!", "WARN") + # the 4 is to make sure we extract out the right number + base_balls = self.ball_numbers.get(self.base_ball, 4) + if self.legendary_ball not in self.ball_numbers.keys(): + self.log( + "Did not save legendary ball in ball numbers! " + "Assuming at least one left!", "WARN") + legendary_balls = self.ball_numbers.get(self.legendary_ball, 1) return not ( - (self.base_ball == self.legendary_ball and self.base_balls < 4) - or (self.base_balls < 3) or (self.legendary_balls < 1)) + ( + self.base_ball == self.legendary_ball + and base_balls < 4 + ) + or (base_balls < 3) + or (legendary_balls < 1) + ) def record_ore_reward(self) -> None: """Award Dynite Ore depending on how the run went.""" @@ -690,12 +973,18 @@ def check_sufficient_ore(self, additionnal_reset_count: int) -> bool: without saving. """ - # If the ore cost of resetting is zero, resett regardless of the ore + # If the ore cost of resetting is zero, reset regardless of the ore # count. if self.calculate_ore_cost( self.consecutive_resets + additionnal_reset_count ) == 0: return True + # If the ore cost of resetting is above a threshold, reset + # regardless of the ore count. + elif self.calculate_ore_cost( + self.consecutive_resets + 1 + ) > self.maximum_ore_cost: + return False # Otherwise, calculate whether the ore amount would still be positive # after resetting. ore_after_resets = self.dynite_ore @@ -706,13 +995,23 @@ def check_sufficient_ore(self, additionnal_reset_count: int) -> bool: def record_game_reset(self) -> None: """Update ball and Dynite Ore stocks resulting from a game reset.""" - if self.base_ball != self.legendary_ball: - self.base_balls += min(3, self.current_run.num_caught) - self.legendary_balls += ( - 1 if self.current_run.num_caught == 4 else 0) - else: - self.base_balls += self.current_run.num_caught - self.legendary_balls += self.current_run.num_caught + # "Refund" balls that were used during the unsaved run. + num_caught = self.current_run.num_caught + try: + self.ball_numbers[self.base_ball] += min(3, num_caught) + except KeyError: + self.log( + f'{self.base_ball} number not initialized before use.', + 'ERROR') + if num_caught == 4: + try: + self.ball_numbers[self.legendary_ball] += 1 + except KeyError: + self.log( + f'{self.legendary_ball} number not initialized before ' + 'use.', 'ERROR') + + # Record an additional reset and the associated ore cost. self.consecutive_resets += 1 ore_cost = self.calculate_ore_cost(self.consecutive_resets) self.dynite_ore -= ore_cost @@ -726,62 +1025,57 @@ def display_results(self, log: bool = False, screenshot: bool = False): the run sequence. """ - # Calculate some statistics for display - win_percent = ( - 'N/A' if self.runs == 0 else ( - str(round(100 * self.wins / self.runs)) + '%' - ) - ) - time_per_run = ( - 'N/A' if self.runs == 0 else str((datetime.now() - self.start_date) - / self.runs)[2:7] - ) - # Construct the dictionary that will be displayed by the base method. for key, value in { 'Run #': self.runs + 1, - 'Hunting for': self.boss, - 'Mode': self.mode, - 'Stage': self.stage, - 'Base balls': self.base_balls, - 'Legendary balls': self.legendary_balls, + 'Hunting for': self.boss.replace('-', ' ').title(), + 'Mode': self.mode.title(), + 'Stage': str(self.stage).title(), + 'Base balls': self.ball_numbers.get(self.base_ball, '-'), + 'Legendary balls': self.ball_numbers.get(self.legendary_ball, '-'), 'Dynite Ore': self.dynite_ore, 'Pokemon caught': self.current_run.num_caught, 'Lives': self.current_run.lives, - 'Pokemon': self.current_run.pokemon, - 'Opponent': self.current_run.opponent, - 'Win percentage': win_percent, - 'Time per run': time_per_run, + 'Pokemon': str(self.current_run.pokemon).replace('-', ' ').title(), + 'Opponent': str( + self.current_run.opponent).replace('-', ' ').title(), + 'Win percentage': f"{self.win_percent:.1%}", + 'Time per run': str(self.time_per_run)[2:7], + 'Consecutive resets': self.consecutive_resets, 'Shinies found': self.shinies_found }.items(): self.info[key] = value for i in range(len(self.caught_shinies)): - self.info[f'Shiny #{i+1}'] = self.caught_shinies[i] + self.info[f'Shiny #{i+1}'] = self.caught_shinies[i].replace( + '-', ' ').title() # Call the base display method. super().display_results( image=self.get_frame( rectangle_set=self.stage, resize=True), log=log, screenshot=screenshot) - + def get_stats_for_discord(self) -> dict: - """This method takes information from the run and returns a nice dictionary - for embedding to Discord - - increment_one is only for a win with a shiny, so that we can get the nice - status screen with the screenshot. + """This method takes information from the run and returns a nice + dictionary for embedding to Discord + + increment_one is only for a win with a shiny, so that we can get the + nice status screen with the screenshot. """ the_dict = { - "Boss": self.boss, + "Boss": self.boss.replace('-', ' ').title(), "Wins/Runs": f"{self.wins}/{self.runs}", - "Base Balls": self.base_balls, - "Legendary Balls": self.legendary_balls, + "Win Rate": f"{self.win_percent:.1%}", + "Avg. Time": str(self.time_per_run)[2:7], + "Base Balls": self.ball_numbers.get(self.base_ball, '-'), + "Legendary Balls": self.ball_numbers.get(self.legendary_ball, '-'), "Dynite Ore": self.dynite_ore, + "Consecutive Resets": self.consecutive_resets } if self.shinies_found > 0: the_dict["Shinies Found"] = self.shinies_found - + return the_dict diff --git a/automaxlair/field.py b/automaxlair/field.py new file mode 100644 index 00000000..a88ff0dd --- /dev/null +++ b/automaxlair/field.py @@ -0,0 +1,64 @@ +class Field(object): + def __init__(self) -> None: + self.weather = "clear" + self.terrain = "clear" + + def is_weather_clear(self) -> bool: + return self.weather == "clear" + + def is_weather_sunlight(self) -> bool: + return self.weather == "sunlight" + + def is_weather_rain(self) -> bool: + return self.weather == "rain" + + def is_weather_sandstorm(self) -> bool: + return self.weather == "sandstorm" + + def is_weather_hail(self) -> bool: + return self.weather == "hail" + + def set_weather_clear(self) -> bool: + self.weather = "clear" + + def set_weather_sunlight(self) -> bool: + self.weather = "sunlight" + + def set_weather_rain(self) -> bool: + self.weather = "rain" + + def set_weather_sandstorm(self) -> bool: + self.weather = "sandstorm" + + def set_weather_hail(self) -> bool: + self.weather = "hail" + + def is_terrain_clear(self) -> bool: + return self.terrain == "clear" + + def is_terrain_electric(self) -> bool: + return self.terrain == "electric" + + def is_terrain_grassy(self) -> bool: + return self.terrain == "grassy" + + def is_terrain_misty(self) -> bool: + return self.terrain == "misty" + + def is_terrain_psychic(self) -> bool: + return self.terrain == "psychic" + + def set_terrain_clear(self) -> bool: + self.terrain = "clear" + + def set_terrain_electric(self) -> bool: + self.terrain = "electric" + + def set_terrain_grassy(self) -> bool: + self.terrain = "grassy" + + def set_terrain_misty(self) -> bool: + self.terrain = "misty" + + def set_terrain_psychic(self) -> bool: + self.terrain = "psychic" diff --git a/automaxlair/matchup_scoring.py b/automaxlair/matchup_scoring.py index c25e2038..21e3022c 100644 --- a/automaxlair/matchup_scoring.py +++ b/automaxlair/matchup_scoring.py @@ -5,8 +5,9 @@ # 2020-11-27 import copy -from typing import Dict, List, Tuple -from automaxlair.pokemon_classes import Pokemon +from typing import List, Tuple, Iterable +from automaxlair.pokemon_classes import Pokemon, Move +from automaxlair.field import Field def type_damage_multiplier_single(type1: str, type2: str) -> float: @@ -46,6 +47,108 @@ def type_damage_multiplier(move_type: str, defender_types: List[str]) -> float: return factor +def weather_damage_multiplier( + attacker: Pokemon, move: Move, defender: Pokemon, field: Field +) -> float: + modifier = 1 + if field.is_weather_sunlight(): + if move.name_id == 'solar-beam': + modifier *= 2 + elif move.name_id == 'thunder' or move.name_id == 'hurricane': + modifier *= (0.5 / 0.7) + elif move.name_id == 'weather-ball': + move.type_id = 'fire' + modifier *= 2 + + if move.type_id == 'fire': + modifier *= 1.5 + elif move.type_id == 'water': + modifier *= 0.5 + elif field.is_weather_rain(): + if move.name_id == 'solar-beam': + modifier *= 0.5 + elif move.name_id == 'thunder' or move.name_id == 'hurricane': + modifier *= (1.0 / 0.7) + elif move.name_id == 'weather-ball': + move.type_id = 'water' + modifier *= 2 + + if move.type_id == 'water': + modifier *= 1.5 + elif move.type_id == 'fire': + modifier *= 0.5 + + elif field.is_weather_hail(): + if move.name_id == 'solar-beam': + modifier *= 0.5 + elif move.name_id == 'blizzard': + modifier *= (1.0 / 0.7) + elif move.name_id == 'weather-ball': + move.type_id = 'ice' + modifier *= 2 + elif field.is_weather_sandstorm(): + if move.name_id == 'solar-beam': + modifier *= 0.5 + elif move.name_id == 'weather-ball': + move.type_id = 'rock' + modifier *= 2 + else: + if move.name_id == 'weather-ball': + move.type_id = 'normal' + + return modifier + + +def terrain_damage_multiplier( + attacker: Pokemon, move: Move, defender: Pokemon, field: Field +) -> float: + modifier = 1.0 + + if 'flying' not in attacker.type_ids or ( + 'levitate' != attacker.ability_name_id + ): + if field.is_terrain_electric(): + if move.name_id == 'terrain-pulse': + move.type_id = 'electric' + modifier *= 1.5 + + if move.type_id == 'electric': + modifier *= 1.3 + elif field.is_terrain_grassy(): + if move.name_id == 'terrain-pulse': + move.type_id = 'grass' + modifier *= 1.5 + + if move.type_id == 'grass': + modifier *= 1.3 + elif field.is_terrain_psychic(): + if move.name_id == 'terrain-pulse': + move.type_id = 'psychic' + modifier *= 1.5 + elif move.name_id == 'expanding-force': + modifier *= 1.5 + + if move.type_id == 'psychic': + modifier *= 1.3 + + elif field.is_terrain_misty(): + if move.name_id == 'terrain-pulse': + move.type_id = 'fairy' + modifier *= 1.5 + + if move.type_id == 'dragon': + modifier *= 0.5 + + if 'flying' not in defender.type_ids or ( + 'levitate' != defender.ability_name_id + ): + if field.is_terrain_electric(): + if move.name_id == 'rising-voltage': + modifier *= 2 + + return modifier + + def ability_damage_multiplier( attacker: Pokemon, move_index: int, defender: Pokemon ) -> float: @@ -113,7 +216,7 @@ def ability_damage_multiplier( def calculate_damage( - attacker: Pokemon, move_index: int, defender: Pokemon, + attacker: Pokemon, move_index: int, defender: Pokemon, field: Field, multiple_targets: bool = False ) -> float: """Return the damage (default %) of a move used by the attacker against the @@ -129,22 +232,26 @@ def calculate_damage( modifier *= move.accuracy if multiple_targets and move.is_spread: modifier *= 0.75 - # Ignore weather for now # Ignore crits + # It needs to be before STAB + modifier *= weather_damage_multiplier(attacker, move, defender, field) + + modifier *= terrain_damage_multiplier(attacker, move, defender, field) + # It needs to be before STAB if move.type_id == 'normal': if attacker.ability_name_id == 'refrigerate': move.type_id = 'ice' modifier *= 1.2 elif attacker.ability_name_id == 'aerilate': - move.type_id = 'fly' + move.type_id = 'flying' modifier *= 1.2 elif attacker.ability_name_id == 'galvanize': - move.type_id = 'fly' + move.type_id = 'electric' modifier *= 1.2 - elif attacker.ability_name_id == 'aerilate': - move.type_id = 'fly' + elif attacker.ability_name_id == 'pixilate': + move.type_id = 'fairy' modifier *= 1.2 else: if attacker.ability_name_id == 'normalize': @@ -173,6 +280,7 @@ def calculate_damage( or defender.ability_name_id == 'dark-aura' ): modifier *= 1.33 + # Apply attacker and defender stats if move.category == 'physical': if move.name_id == 'body-press': @@ -186,6 +294,8 @@ def calculate_damage( numerator = attacker.stats[3] if move.name_id not in ('psystrike', 'psyshock'): denominator = defender.stats[4] + if field.is_weather_sandstorm() and 'rock' in defender.type_ids: + denominator *= 1.5 else: denominator = defender.stats[2] @@ -195,27 +305,28 @@ def calculate_damage( def calculate_average_damage( - attackers: Dict[str, Pokemon], defenders: Dict[str, Pokemon], - multiple_targets: bool = False + attackers: Iterable[Pokemon], defenders: Iterable[Pokemon], + field: Field, multiple_targets: bool = False ) -> float: """Return the average damage output of a range of attackers against a single defender. """ + attackers = list(attackers) + defenders = list(defenders) + if len(attackers) == 0 or len(defenders) == 0: return 0 else: total_damage = 0.0 count = 0 - for key in attackers: - attacker = attackers[key] - for key2 in defenders: - defender = defenders[key2] + for attacker in attackers: + for defender in defenders: subtotal_damage = 0.0 subcount = 0 for i in range(len(attacker.moves)): subtotal_damage += calculate_damage( - attacker, i, defender, multiple_targets) + attacker, i, defender, field, multiple_targets) subcount += 1 total_damage += subtotal_damage / subcount count += 1 @@ -225,21 +336,31 @@ def calculate_average_damage( def calculate_move_score( attacker: Pokemon, move_index: int, defender: Pokemon, - teammates: Dict[str, Pokemon], team_contribution: float = None + teammates: Iterable[Pokemon], field: Field ) -> float: """Return a numerical score of an attacker's move against a defender.""" + + teammates = list(teammates) + # Calculate contribution of the move itself (assume Dynamaxed boss) - dealt_damage = calculate_damage(attacker, move_index, defender, False) / 2 + dealt_damage = calculate_damage( + attacker, move_index, defender, field, False) / 2 # Estimate contributions by teammates (assume Dynamaxed boss). # Don't count the attacker or defender as teammates. - popped_attacker = teammates.pop(attacker.name_id, None) - popped_defender = teammates.pop(defender.name_id, None) + try: + teammates.remove(attacker) + except ValueError: + pass + try: + teammates.remove(defender) + except ValueError: + pass # The average damage of teammates is likely undercounted as some status # moves are helpful and the AI chooses better than random moves. fudge_factor = 1.5 dealt_damage += 3 * calculate_average_damage( - teammates, {defender.name_id: defender}) / 2 * fudge_factor + teammates, [defender], field) / 2 * fudge_factor # Estimate contributions from status moves. # TODO: implement status moves besides Wide Guard. @@ -260,10 +381,10 @@ def calculate_move_score( or attacker.dynamax ): received_regular_damage += calculate_damage( - defender, i, attacker, multiple_targets=True + defender, i, attacker, field, multiple_targets=True ) / num_moves received_regular_damage += 3 * calculate_average_damage( - {defender.name_id: defender}, teammates, + [defender], teammates, field, multiple_targets=True ) / num_moves else: @@ -271,12 +392,11 @@ def calculate_move_score( pass else: received_regular_damage += ( - 0.25 * calculate_damage(defender, i, attacker) + 0.25 * calculate_damage(defender, i, attacker, field) / (2 if attacker.dynamax else 1) ) / num_moves received_regular_damage += ( - 0.75 * calculate_average_damage({defender.name_id: defender}, - teammates) + 0.75 * calculate_average_damage([defender], teammates, field) ) / num_moves # Calculate damage from Max Moves. # Note that bosses never seem to use Max Guard. It is assumed that the move @@ -286,12 +406,11 @@ def calculate_move_score( num_max_moves = min(4, len(defender.max_moves)) for i in range(num_max_moves): received_max_move_damage += ( - 0.25 * calculate_damage(defender, i, attacker) + 0.25 * calculate_damage(defender, i, attacker, field) / (2 if attacker.dynamax else 1) ) / num_max_moves received_max_move_damage += ( - 0.75 * calculate_average_damage({defender.name_id: defender}, - teammates) + 0.75 * calculate_average_damage([defender], teammates, field) ) / num_max_moves # Return the defender to its original dynamax state. defender.dynamax = original_dynamax_state @@ -303,12 +422,6 @@ def calculate_move_score( + received_max_move_damage * max_move_probability ) - # Re-add Pokemon temporaily removed from the dictionaries. - if popped_attacker is not None: - teammates[popped_attacker.name_id] = popped_attacker - if popped_defender is not None: - teammates[popped_defender.name_id] = popped_defender - # Return the score try: return dealt_damage / received_damage @@ -319,31 +432,59 @@ def calculate_move_score( def evaluate_matchup( - attacker: Pokemon, boss: Pokemon, teammates: Dict[str, Pokemon] = {} + attacker: Pokemon, boss: Pokemon, teammates: Iterable[Pokemon] = [], + num_lives: int = 1 ) -> float: """Return a matchup score between an attacker and defender, with the attacker using optimal moves and the defender using average moves. """ + + # Transform Ditto (Dynamax Adventure Ditto has Imposter). if attacker.name_id == 'ditto': attacker = transform_ditto(attacker, boss) elif boss.name_id == 'ditto': boss = transform_ditto(boss, attacker) + + # Calculate scores for base and Dynamaxed versions of the attacker. base_version = copy.copy(attacker) base_version.dynamax = False dmax_version = copy.copy(attacker) dmax_version.dynamax = True - - base_version_score = select_best_move(base_version, boss, teammates)[2] - dmax_version_score = select_best_move(dmax_version, boss, teammates)[2] + base_version_score = select_best_move( + base_version, boss, Field(), teammates)[2] + dmax_version_score = select_best_move( + dmax_version, boss, Field(), teammates)[2] score = max( base_version_score, (base_version_score + dmax_version_score) / 2) - return score + # Adjust the score depending on the Pokemon's HP. If there are multiple + # lives left, fainting is less important. + assert 1 <= num_lives <= 4, 'num_lives should be between 1 and 4.' + HP_correction = ((5 - num_lives) * attacker.HP + num_lives - 1) / 4 + + return score * HP_correction + + +def evaluate_average_matchup( + attacker: Pokemon, bosses: Iterable[Pokemon], + teammates: Iterable[Pokemon] = [], num_lives: int = 1 +) -> float: + """Return an average matchup score between an attacker and multiple + defenders. Wrapper for the evaluate_matchup function which scores a single + matchup. + """ + + total_score = 0 + for boss in bosses: + total_score += evaluate_matchup(attacker, boss, teammates, num_lives) + + return 1 if len(bosses) == 0 else total_score / len(bosses) -def select_best_move(attacker: Pokemon, defender: Pokemon, - teammates: Dict[str, Pokemon] = {} - ) -> Tuple[int, str, float]: +def select_best_move( + attacker: Pokemon, defender: Pokemon, field: Field, + teammates: Iterable[Pokemon] = [] +) -> Tuple[int, str, float]: """Return the index of the move that the attacker should use against the defender. """ @@ -354,7 +495,7 @@ def select_best_move(attacker: Pokemon, defender: Pokemon, for i in range(len(attacker.moves)): if attacker.PP[i] > 0: score = calculate_move_score( - attacker, i, defender, teammates=teammates) + attacker, i, defender, teammates, field) if score > best_score: best_index = i best_move_name_id = attacker.moves[i].name_id @@ -363,7 +504,8 @@ def select_best_move(attacker: Pokemon, defender: Pokemon, def print_matchup_summary( - attacker: Pokemon, defender: Pokemon, teammates: Dict[str, Pokemon] = {} + attacker: Pokemon, defender: Pokemon, field: Field, + teammates: Iterable[Pokemon] = [] ) -> None: output = ( f'Matchup between {attacker.name_id} and {defender.name_id}: ' @@ -376,7 +518,7 @@ def print_matchup_summary( f'Score for {move.name_id} (Effective BP {move.power}, accuracy ' f'{move.accuracy}, type multiplier ' f'{type_damage_multiplier(move.type_id, defender.type_ids)}): ' - f'{calculate_move_score(attacker, i, defender, teammates)}' + f'{calculate_move_score(attacker, i, defender, teammates, field)}' ) print(output) diff --git a/automaxlair/max_lair_instance.py b/automaxlair/max_lair_instance.py index 6d73971e..42960d56 100644 --- a/automaxlair/max_lair_instance.py +++ b/automaxlair/max_lair_instance.py @@ -11,6 +11,7 @@ from typing import List, Tuple import jsonpickle +from automaxlair.field import Field class BossNode(object): @@ -60,9 +61,11 @@ class MaxLairInstance: def __init__(self, boss: str, data_paths: List[str]) -> None: self.boss = boss self.pokemon = None + self.team_pokemon = {} self.HP = 1 # 1 = 100% self.num_caught = 0 self.caught_pokemon = [] + self.all_encountered_pokemon = set() self.lives = 4 self.paths = [ [BossNode(('START', (0, (0, 0))), 0, 0)], @@ -89,44 +92,49 @@ def __init__(self, boss: str, data_paths: List[str]) -> None: with open(data_paths[5], 'r', encoding='utf8') as file: self.path_tree = jsonpickle.decode(file.read()) + self.potential_boss_pokemon = self.rental_pokemon.copy() + def __str__(self) -> str: """Print information about the current instance.""" - fork_symbols = [ - (' \\ /'), - (' \\ | / ' if self.path_type == '3x2' else ' \\ |') - + ('\\ | /' if self.path_type == '2x3' else '| /') - ] + + return ( + f'Path with boss {self.boss} and nodes: ' + f'{[[node.name for node in x] for x in self.paths]}' + ) + + def get_output_strings(self) -> List[str]: + """Return a list of strings that visually represent the path when + printed sequentially. + """ + + section_1 = [ + f' ┌{self.paths[1][0].name:─<8}', 'START─┤ ', + f' └{self.paths[1][1].name:─<8}', ' '] if self.path_type == '2x3': - fork_symbols.append( - '\\_____|_____/\\_____|\n' + - '/ / / |' - ) + section_2 = ['┬──', '└┮═', '─┼─', ' └─'] elif self.path_type == '3x2': - fork_symbols.append( - '|_____/ \\____|____/\n' + - '| \\ | \\' - ) - elif self.path_type == '2x2': - fork_symbols.append( - '| / \\_____|_____/\n' + - '| / / | \\' - ) - fork_symbols.append(' / / \\ \\') - output = [ - f'\n {self.boss}', - fork_symbols[-1], - f'{self.paths[3][0].name} {self.paths[3][1].name} ' - f'{self.paths[3][2].name} {self.paths[3][3].name}', - fork_symbols[-2], - f'{self.paths[2][0].name} {self.paths[2][1].name} ' - f'{self.paths[2][2].name} {self.paths[2][3].name}', - fork_symbols[-3], - f' {self.paths[1][0].name} {self.paths[1][1].name}', - fork_symbols[-4], - ' START' - ] - - return'\n'.join(output) + section_2 = ['┬──', '└┬─', '┬┶═', '└──'] + else: + section_2 = ['┬──', '└──', '┬──', '└──'] + section_3 = [ + f'{self.paths[2][0].name:─<8}', f'{self.paths[2][1].name:─<8}', + f'{self.paths[2][2].name:─<8}', f'{self.paths[2][3].name:─<8}'] + if self.path_type == '2x3': + section_4 = ['┐┌─', '┴┼─', '┐╞═', '┴┴─'] + elif self.path_type == '3x2': + section_4 = ['┬┬─', '┘╞═', '┬┼─', '┘└─'] + else: + section_4 = ['─┬─', '┐╞═', '┼┼─', '┘└─'] + section_5 = [ + f'{self.paths[3][0].name:─<8}┐', + f'{self.paths[3][1].name:─<8}┼─{self.paths[4][0].name}', + f'{self.paths[3][2].name:─<8}┤', f'{self.paths[3][3].name:─<8}┘'] + all_sections = (section_1, section_2, section_3, section_4, section_5) + output = [] + for i in range(4): + output.append(''.join([x[i] for x in all_sections])) + + return output def reset_stage(self) -> None: """Reset after a battle.""" @@ -140,6 +148,25 @@ def reset_stage(self) -> None: self.pokemon = self.rental_pokemon['ditto'] self.pokemon.dynamax = False + def prune_potential_minibosses(self) -> None: + """Update the dict of rental Pokemon that may appear as future bosses. + """ + + # Start with a fresh copy of all rental Pokemon. + self.potential_boss_pokemon = self.rental_pokemon.copy() + # Then, remove all Pokemon that have previously been encountered + for name_id in self.all_encountered_pokemon: + self.potential_boss_pokemon.pop(name_id, None) + # Finally, remove any Pokemon that doesn't fit the types of the + # remaining chosen path. + types_left = set([ + node.name for node in + self.target_path[self.current_node_index + 1:] + ]) + for name_id, pokemon in self.rental_pokemon.items(): + if types_left.isdisjoint(pokemon.type_ids): + self.potential_boss_pokemon.pop(name_id, None) + def get_paths( self, truncate: bool = False, @@ -158,7 +185,7 @@ def get_paths( paths = new_paths if name_only: - # Return a list of strings inatead of object references. + # Return a list of strings instead of object references. new_paths = [] for path in paths: new_paths.append(list(map(str, path))) @@ -218,95 +245,48 @@ def update_paths( # Rebuild the path network after reassigning all of the nodes. if index == 3 and self.path_type is not None: - self.paths[0][0].downstream_nodes = [self.paths[1][0], self.paths[1][1]] + self.paths[0][0].downstream_nodes = [ + self.paths[1][0], self.paths[1][1]] if self.path_type == '2x3': - self.paths[1][0].downstream_nodes = [self.paths[2][0], self.paths[2][1]] - self.paths[1][1].downstream_nodes = [self.paths[2][1], self.paths[2][2], self.paths[2][3]] - self.paths[2][0].downstream_nodes = [self.paths[3][0], self.paths[3][1], self.paths[3][2]] - self.paths[2][1].downstream_nodes = [self.paths[3][0], self.paths[3][1], self.paths[3][2]] - self.paths[2][2].downstream_nodes = [self.paths[3][2], self.paths[3][3]] - self.paths[2][3].downstream_nodes = [self.paths[3][2], self.paths[3][3]] + self.paths[1][0].downstream_nodes = [ + self.paths[2][0], self.paths[2][1]] + self.paths[1][1].downstream_nodes = [ + self.paths[2][1], self.paths[2][2], self.paths[2][3]] + self.paths[2][0].downstream_nodes = [ + self.paths[3][0], self.paths[3][1], self.paths[3][2]] + self.paths[2][1].downstream_nodes = [ + self.paths[3][0], self.paths[3][1], self.paths[3][2]] + self.paths[2][2].downstream_nodes = [ + self.paths[3][2], self.paths[3][3]] + self.paths[2][3].downstream_nodes = [ + self.paths[3][2], self.paths[3][3]] elif self.path_type == '3x2': - self.paths[1][0].downstream_nodes = [self.paths[2][0], self.paths[2][1], self.paths[2][2]] - self.paths[1][1].downstream_nodes = [self.paths[2][2], self.paths[2][3]] - self.paths[2][0].downstream_nodes = [self.paths[3][0], self.paths[3][1]] - self.paths[2][1].downstream_nodes = [self.paths[3][0], self.paths[3][1]] - self.paths[2][2].downstream_nodes = [self.paths[3][0], self.paths[3][1]] - self.paths[2][3].downstream_nodes = [self.paths[3][1], self.paths[3][2], self.paths[3][3]] + self.paths[1][0].downstream_nodes = [ + self.paths[2][0], self.paths[2][1], self.paths[2][2]] + self.paths[1][1].downstream_nodes = [ + self.paths[2][2], self.paths[2][3]] + self.paths[2][0].downstream_nodes = [ + self.paths[3][0], self.paths[3][1]] + self.paths[2][1].downstream_nodes = [ + self.paths[3][0], self.paths[3][1]] + self.paths[2][2].downstream_nodes = [ + self.paths[3][0], self.paths[3][1]] + self.paths[2][3].downstream_nodes = [ + self.paths[3][1], self.paths[3][2], self.paths[3][3]] elif self.path_type == '2x2': - self.paths[1][0].downstream_nodes = [self.paths[2][0], self.paths[2][1]] - self.paths[1][1].downstream_nodes = [self.paths[2][2], self.paths[2][3]] - self.paths[2][0].downstream_nodes = [self.paths[3][0], self.paths[3][1]] - self.paths[2][1].downstream_nodes = [self.paths[3][1], self.paths[3][2], self.paths[3][3]] - self.paths[2][2].downstream_nodes = [self.paths[3][1], self.paths[3][2], self.paths[3][3]] - self.paths[2][3].downstream_nodes = [self.paths[3][1], self.paths[3][2], self.paths[3][3]] + self.paths[1][0].downstream_nodes = [ + self.paths[2][0], self.paths[2][1]] + self.paths[1][1].downstream_nodes = [ + self.paths[2][2], self.paths[2][3]] + self.paths[2][0].downstream_nodes = [ + self.paths[3][0], self.paths[3][1]] + self.paths[2][1].downstream_nodes = [ + self.paths[3][1], self.paths[3][2], self.paths[3][3]] + self.paths[2][2].downstream_nodes = [ + self.paths[3][1], self.paths[3][2], self.paths[3][3]] + self.paths[2][3].downstream_nodes = [ + self.paths[3][1], self.paths[3][2], self.paths[3][3]] self.paths[3][0].downstream_nodes = [self.paths[4][0]] self.paths[3][1].downstream_nodes = [self.paths[4][0]] self.paths[3][2].downstream_nodes = [self.paths[4][0]] self.paths[3][3].downstream_nodes = [self.paths[4][0]] - - -class Field(object): - def __init__(self) -> None: - self.weather = "clear" - self.terrain = "clear" - - def is_weather_clear(self) -> bool: - return self.weather == "clear" - - def is_weather_sunlight(self) -> bool: - return self.weather == "sunlight" - - def is_weather_rain(self) -> bool: - return self.weather == "rain" - - def is_weather_sandstorm(self) -> bool: - return self.weather == "sandstorm" - - def is_weather_hail(self) -> bool: - return self.weather == "hail" - - def set_weather_clear(self) -> bool: - self.weather = "clear" - - def set_weather_sunlight(self) -> bool: - self.weather = "sunlight" - - def set_weather_rain(self) -> bool: - self.weather = "rain" - - def set_weather_sandstorm(self) -> bool: - self.weather = "sandstorm" - - def set_weather_hail(self) -> bool: - self.weather = "hail" - - def is_terrain_clear(self) -> bool: - return self.terrain == "clear" - - def is_terrain_electric(self) -> bool: - return self.terrain == "electric" - - def is_terrain_grassy(self) -> bool: - return self.terrain == "grassy" - - def is_terrain_misty(self) -> bool: - return self.terrain == "misty" - - def is_terrain_psychic(self) -> bool: - return self.terrain == "psychic" - - def set_terrain_clear(self) -> bool: - self.terrain = "clear" - - def set_terrain_electric(self) -> bool: - self.terrain = "electric" - - def set_terrain_grassy(self) -> bool: - self.terrain = "grassy" - - def set_terrain_misty(self) -> bool: - self.terrain = "misty" - - def set_terrain_psychic(self) -> bool: - self.terrain = "psychic" diff --git a/automaxlair/switch_controller.py b/automaxlair/switch_controller.py index 16d7c969..3eb91491 100644 --- a/automaxlair/switch_controller.py +++ b/automaxlair/switch_controller.py @@ -12,6 +12,7 @@ # 2021-02-13 import logging +import os import sys import time from datetime import datetime @@ -22,6 +23,7 @@ import serial import threading import discord +from .PABotBase_controller import PABotBaseController Image = TypeVar('cv2 image') Rectangle = Tuple[Tuple[float, float], Tuple[float, float]] @@ -61,20 +63,34 @@ def __init__(self, config, log_name: str, actions): # objects used. # Connect to the Teensy over a serial port. - self.com = serial.Serial( + use_PABotBase_hex = config['advanced']['PABOTBASE_HEX'] + # if not use_PABotBase_hex: + # self.log( + # 'RemoteControl.hex is deprecated; support will be phased out' + # ' in the future in favour of the PABotBase hex file.', + # 'WARNING' + # ) + com_controller = ( + PABotBaseController if use_PABotBase_hex else serial.Serial) + self.com = com_controller( config['COM_PORT'], 9600, timeout=0.05) - self.logger.info(f'Attempting to connect to {self.com.port}.') + self.log(f'Attempting to connect to {self.com.port}.') timeout_fails = 0 while not self.com.is_open: try: self.com.open() - except serial.SerialException: + except serial.serialutil.SerialException as e: if timeout_fails > 10: - # if the serial device won't open after 10 times, we might as well raise and exception and abort - raise Exception("Could not connect to the serial device. Check your device.") + # if the serial device won't open after 10 times, we might + # as well raise and exception and abort + self.log( + 'Could not connect to the serial device ' + f'"{config["COM_PORT"]}".' + 'Check your device and port number.', 'ERROR') + raise e timeout_fails += 1 pass - self.logger.info('Connected to the serial device successfully.') + self.log('Connected to the serial device successfully.') # Open the video capture. vid_index = config['VIDEO_INDEX'] @@ -226,12 +242,27 @@ def read_text( text = pytesseract.image_to_string( img, lang=self.tesseract_language, config=segmentation_mode ).replace('\n', '').strip() - self.log(f'Read text from screen: {text}', 'DEBUG') + if text: + self.log(f'Read text from screen: {text}', 'DEBUG') self.lock.acquire() # Finally, return the OCRed text. return text + def get_rect_HSV_value( + self, + img: Image, + lower_threshold: Tuple[int, int, int], + upper_threshold: Tuple[int, int, int], + is_HSV: bool = False + ) -> float: + """Threshold an image and return the average value afterwards.""" + if not is_HSV: + img = cv2.cvtColor(img, cv2.COLOR_BGR2HSV) + img_thresholded = cv2.inRange(img, lower_threshold, upper_threshold) + + return img_thresholded.mean() + def check_rect_HSV_match( self, rect: Rectangle, @@ -254,8 +285,8 @@ def check_rect_HSV_match( h, w = img.shape[:2] cropped_area = img[round(rect[0][1] * h):round(rect[1][1] * h), round(rect[0][0] * w):round(rect[1][0] * w)] - measured_value = cv2.inRange( - cropped_area, lower_threshold, upper_threshold).mean() + measured_value = self.get_rect_HSV_value( + cropped_area, lower_threshold, upper_threshold, True) # Return True if the mean value is above the supplied threshold return measured_value > mean_value_threshold @@ -279,7 +310,7 @@ def push_button( self, char: Optional[str], delay: float, # Seconds - hold_time: float = 0.08 # Seconds + hold_ticks: int = 1 # Ticks @ 12.5 tick/s ) -> None: """Send a message to the microcontroller telling it to press buttons on the Switch. @@ -302,11 +333,11 @@ def push_button( # Send the command to the microcontroller using the serial port. if char is not None: - self.com.write(char) - hold_ticks = bytes([round(hold_time * 12.5)]) - self.com.write(hold_ticks) - char_echo = self.com.read() - hold_echo = self.com.read() + hold_ticks = bytes([round(hold_ticks)]) + self.com.write(char + hold_ticks) + response = self.com.read(2) + char_echo = response[:1] + hold_echo = response[1:] # Check whether the microcontroller successfully echoed back the # command, and raise a warning if it did not. if char_echo != char: @@ -372,20 +403,31 @@ def display_results( if log or screenshot: # Save a screenshot - self.log(f"Saving a screenshot to logs/{self.log_name}_cap_{self.num_saved_images}.png", "DEBUG") - self.num_saved_images += 1 - cv2.imwrite( - f'logs/{self.log_name}_cap_{self.num_saved_images}.png', frame) + self.save_screenshot(frame) else: # if it's not a screenshot, we'll display the frame # Display cv2.imshow(self.window_name, frame) + def save_screenshot( + self, + img: Image, + title: str = 'cap' + ) -> None: + """Save a screenshot in the logs folder.""" + self.num_saved_images += 1 + filename = os.path.join( + 'logs', f'{self.log_name}_{title}_{self.num_saved_images}.png') + self.log( + f'Saving a screenshot to {filename}', 'DEBUG') + cv2.imwrite(filename, img) + def send_discord_message( - self, ping_yourself: bool, text: str, path_to_picture: str = None, - embed_fields: dict = None, level: str = "update") -> None: + self, text: str, path_to_picture: str = None, + embed_fields: dict = None, level: str = "update" + ) -> None: """Send a notification via Discord. - + Parameters ---------- ping_yourself : bool @@ -402,11 +444,34 @@ def send_discord_message( where the keys are the titles to give and the items are the text for that field. level : str, optional - What type of update this is. Currently accepts "update", "shiny", and - "critical", which helps the program determine if it should send based - on settings provided by the user. + What type of update this is. Currently accepts "update", "shiny", + "legendary", and "critical", which helps the program determine if + it should send based on settings provided by the user. """ + # the first check is if there's no discord info + if ( + self.webhook_id == 'PLACE_ID_WITHIN_QUOTES' + or self.webhook_token == 'PLACE_TOKEN_WITHIN_QUOTES' + or "" in (self.webhook_id, self.webhook_token) + ): + self.log( + 'You need to setup the discord section to be able to use the ' + 'ping feature.', 'DEBUG') + return + + # now we check if we can ping or not + # NOTE: available discord levels from the program: + # "all" - gives all notifications, pings you on *ALL* shinies found + # "all_ping_legendary" - gives all notifications, pings you only when + # a legendary is found + # "only_shiny" - only notifies you when you find a shiny, pings on + # *ALL* shinies found + # "only_shiny_ping_legendary" - only notifies you when you find a + # shiny, pings only on legendary + # "none" - ignores all discord messages + + # first check if the discord level is none if self.discord_level == 'none': # if they don't want discord information, just return and pass by return @@ -415,14 +480,18 @@ def send_discord_message( # return return - # Do nothing if user did not setup the Discord information. - if self.webhook_id == '' or self.webhook_token == '' or ( - self.user_id == '' and ping_yourself - ): - self.log( - 'You need to setup the discord section to be able to use the ' - 'ping feature.', 'DEBUG') - return + send_ping = False + + # determine if we can ping right from level and potential settings + if level == "update": + pass + elif level == "shiny": + if self.discord_level in ("all", "only_shiny"): + send_ping = True + elif level == "legendary": + send_ping = True + elif level == "critical": + send_ping = True # construct the webhook object webhook = discord.Webhook.partial( @@ -432,12 +501,14 @@ def send_discord_message( # then build up our embed object embed = discord.Embed( - title="AutoMaxLair Update", + title="AutoMaxLair Update", colour=self.discord_embed_color, timestamp=datetime.utcnow() - ) + ) - embed.set_thumbnail(url=f"https://img.pokemondb.net/sprites/home/shiny/{self.boss}.png") + embed.set_thumbnail( + url=f"https://img.pokemondb.net/sprites/home/shiny/{self.boss}.png" + ) embed.set_footer(text="AutoMaxLair") # if we have fields that we want to add, we can! @@ -446,7 +517,8 @@ def send_discord_message( embed.add_field(name=name, value=item, inline=True) # construct the proper string - send_str = f"<@{self.user_id}>" if ping_yourself else f'{self.user_nickname}' + send_str = ( + f"<@{self.user_id}>" if send_ping else f'{self.user_nickname}') send_str += f': {text}' # add the image to the embed if it was included @@ -456,7 +528,6 @@ def send_discord_message( embed.set_image(url="attachment://image.png") else: my_file = None - # Open the image to be sent. try: webhook.send(send_str, embed=embed, file=my_file) @@ -496,7 +567,7 @@ def init_video_capture(self) -> None: 'Failed to open the video connection. Check the config file ' 'and ensure no other application is using the video input.' ) - raise RuntimeError("Failed to initialize video capture.") + raise AssertionError("Failed to initialize video capture.") self.cap.set(3, self.base_resolution[0]) self.cap.set(4, self.base_resolution[1]) diff --git a/changelog.md b/changelog.md new file mode 100644 index 00000000..0269bfe4 --- /dev/null +++ b/changelog.md @@ -0,0 +1,68 @@ +# Changelog +## v0.2-beta +* Initial stable public release. +* Greatly improved Pokemon and move selection from development versions. +## v0.3 +* Implemented optional ball selection for both rental Pokemon and boss Pokemon. +* Fixed a bug where Wide Guard users would Dynamax and use Max Guard instead. + * Wide Guard is now weighted fairly well. +* Refactoring. +## v0.4 +* Added alternate modes that reset the game to preserve rare balls and/or good seeds. + * This mode was added with help of user fawress on the Pokemon Automation Discord. + * The “ball saver” mode force quits and restarts the game if the legendary is caught but is not shiny. + * The “strong boss” mode force quits and restarts the game if the legendary is caught and none of the Pokemon are shiny + * Both modes can “lock on” to a good path, since the path is conserved if the game is reset before the end of the run. + * Be mindful that repeated resets will incur a Dynite Ore cost, in contrast to the regular mode that accumulates Dynite Ore. + * The “strong boss” mode is recommended for difficult bosses where even a good seed can sometimes lose. + * This mode will increase the win rate against any boss, but repeated wins will quickly deplete all your Dynite Ore. +* Fixed move scoring issues, including incorrect calculations that undervalued Max Steelspike derived from Steel Roller and overvalued Triple Axel. +* Fixed an issue where Max Moves were overvalued by a factor of 100. +* Added a counter for shiny Pokemon caught. +* Adjusted detection rectangles to properly detect text when the Switch screen size is 100% (rectangles were previously optimized for a non-standard size of 96%). +* Mitigated an issue where the bot would occasionally get stuck after dropping a button press in the battle routine. +* Fixed an issue that caused Pokemon caught along the run to be scored incorrectly when determining whether to swap rental Pokemon or not. +## v0.5 +* Redesigned the way that the different sequences are processed to make the program run more smoothly and consistently. + * The visual display and button presses are now handled by different threads, which reduces FPS drops when text is being read and allows the button sequences to be handled in a linear fashion (instead of relying on a timer and substages to dictate the next step). +* Updated the “ball saver” and “strong boss” modes to gracefully handle running out of Dynite Ore. +* “Ball saver” mode quits when there is insufficient ore to continue resetting. +* “Strong boss” mode finishes the run without resetting if there is insufficient ore for another reset. +* Miscellaneous bug fixes and improvements +## v0.6 +* Added support for multiple languages within the Pokemon data files. + * All information about Pokemon is now fetched from PokeAPI. + * Supported and verified languages include English, French, Spanish, Korean, and German. + * Italian and Mandarin may also work but have not been tested. +* Changed how a loss (losing all 4 lives) is detected, increasing consistency. +* Detect move names, improving the accuracy of Pokemon identification. +* Updated Ball Saver mode to skip catching the boss if it can't afford to reset the game, allowing it to be run indefinitely. +* Added "Keep Path" and "Find Path" modes, which are useful against very strong bosses (e.g., Zygarde). +* Add the ability to take a pokemon from the scientist if your current pokemon is worse than average. +* Add the ability to hunt for specific stats legendary. +* Add a way to send discord message with a picture showing your latest catch. +## v0.7 +* Paths through the den are now read, scored, and selected. +* Refactored code to improve readability and facilitate extension to tasks other than Dynamax Adventures in the future. +* Added support for variable hold time for button presses. The computer now sends two bytes per command, with the second byte specifying the hold time. +* Added dependencies for the microcontroller code so it can be altered and recompiled without any external tools (besides WinAVR). +* Precalculated data files are now stored in human-readable JSON format. +* Tweaked how Pokemon are scored. +* Stats checking now takes nature into account. +* Changed how certain events are detected, improving efficiency and reducing reliance on Tesseract. +* Improved path selection. +* Improved config file. +* Improved stats checking. +* More improvements on the way! +## v0.8 +* Weather and terrain are now taken into consideration. +* The teammates are now detected. +* Improve the config file validation by asserting at the startup. +* Add a UI to be able to easily edit the config file. +* Detect ball type using sprites instead of text +* Automatically detect ball numbers instead of relying on users to input them in the config file +* Add compatibility for the PABotBase hex file in addition to the custom RemoteControl hex +* Detect weather and terrain +## v1.0 +* Link PABotBase hex files +* Use the PABotBase hex by default diff --git a/data/ball_sprites.pickle b/data/ball_sprites.pickle new file mode 100644 index 00000000..b0abadbb Binary files /dev/null and b/data/ball_sprites.pickle differ diff --git a/data/boss_colors.json b/data/boss_colors.json new file mode 100644 index 00000000..23f59f99 --- /dev/null +++ b/data/boss_colors.json @@ -0,0 +1,237 @@ +{ + "articuno": [ + 156, + 186, + 216 + ], + "zapdos": [ + 255, + 214, + 0 + ], + "moltres": [ + 230, + 126, + 145 + ], + "mewtwo": [ + 121, + 193, + 99 + ], + "raikou": [ + 203, + 132, + 46 + ], + "entei": [ + 159, + 110, + 73 + ], + "suicune": [ + 53, + 93, + 237 + ], + "lugia": [ + 203, + 106, + 147 + ], + "ho-oh": [ + 235, + 177, + 46 + ], + "latias": [ + 227, + 163, + 0 + ], + "latios": [ + 59, + 160, + 137 + ], + "kyogre": [ + 235, + 96, + 244 + ], + "groudon": [ + 237, + 244, + 59 + ], + "rayquaza": [ + 100, + 109, + 100 + ], + "uxie": [ + 255, + 247, + 166 + ], + "mesprit": [ + 245, + 108, + 128 + ], + "azelf": [ + 105, + 148, + 237 + ], + "dialga": [ + 177, + 255, + 177 + ], + "palkia": [ + 244, + 216, + 227 + ], + "heatran": [ + 157, + 38, + 0 + ], + "giratina-altered": [ + 219, + 195, + 159 + ], + "cresselia": [ + 182, + 255, + 255 + ], + "tornadus-incarnate": [ + 121, + 159, + 83 + ], + "thundurus-incarnate": [ + 159, + 174, + 216 + ], + "reshiram": [ + 199, + 210, + 220 + ], + "zekrom": [ + 28, + 34, + 28 + ], + "landorus-incarnate": [ + 101, + 61, + 42 + ], + "kyurem": [ + 68, + 91, + 102 + ], + "xerneas": [ + 34, + 177, + 227 + ], + "yveltal": [ + 170, + 27, + 61 + ], + "zygarde-50": [ + 41, + 186, + 149 + ], + "tapu-koko": [ + 244, + 160, + 107 + ], + "tapu-lele": [ + 255, + 172, + 176 + ], + "tapu-bulu": [ + 232, + 222, + 112 + ], + "tapu-fini": [ + 125, + 153, + 182 + ], + "solgaleo": [ + 227, + 53, + 61 + ], + "lunala": [ + 187, + 12, + 51 + ], + "nihilego": [ + 170, + 147, + 125 + ], + "buzzwole": [ + 72, + 209, + 80 + ], + "pheromosa": [ + 214, + 211, + 209 + ], + "xurkitree": [ + 129, + 173, + 200 + ], + "celesteela": [ + 235, + 243, + 241 + ], + "kartana": [ + 237, + 237, + 237 + ], + "guzzlord": [ + 229, + 229, + 223 + ], + "necrozma": [ + 0, + 71, + 159 + ], + "stakataka": [ + 125, + 117, + 28 + ], + "blacephalon": [ + 0, + 22, + 136 + ] +} \ No newline at end of file diff --git a/data/boss_matchup_LUT.json b/data/boss_matchup_LUT.json index 93072969..44b213a6 100644 --- a/data/boss_matchup_LUT.json +++ b/data/boss_matchup_LUT.json @@ -1,11076 +1,11076 @@ { "ivysaur": { - "articuno": 0.6059495651942333, - "zapdos": 0.60403834083151, - "moltres": 0.4444538452231741, - "mewtwo": 0.634108476640754, - "raikou": 1.6337094611622698, - "entei": 1.0373746300684055, - "suicune": 1.7224288217467043, - "lugia": 0.7483356617429932, - "ho-oh": 0.5324585206395056, - "latias": 0.8501976287041396, - "latios": 1.0240779307726835, - "kyogre": 0.5912561655728722, - "groudon": 0.4600746623902403, - "rayquaza": 0.383703137634021, - "uxie": 1.1584092246202236, - "mesprit": 1.1611488953823985, - "azelf": 1.1451528039041834, - "dialga": 0.4328079102868044, - "palkia": 0.5283316851043137, - "heatran": 0.29082778467941045, - "giratina-altered": 0.548762779242896, - "cresselia": 0.5990509757429534, - "tornadus-incarnate": 0.601094724579396, - "thundurus-incarnate": 0.8620138787424252, - "reshiram": 0.4653253741569594, - "zekrom": 0.6218962636247644, - "landorus-incarnate": 0.5082618503797443, - "kyurem": 0.490357480648826, - "xerneas": 0.5067225634129027, - "yveltal": 0.4634222645126108, - "zygarde-50": 0.40456297062909397, - "tapu-koko": 1.421925667982539, - "tapu-lele": 1.4566496877176929, - "tapu-bulu": 1.8127730963811384, - "tapu-fini": 0.9689578089749142, - "solgaleo": 0.5234327790826887, - "lunala": 0.571027121340678, - "nihilego": 0.8426541705671857, - "buzzwole": 1.1650217274388845, - "pheromosa": 1.3366687417628276, - "xurkitree": 0.8259199945674248, - "celesteela": 0.524428371599605, - "kartana": 1.1929348042615435, - "guzzlord": 0.6668180290007379, - "necrozma": 1.0845104589108705, - "stakataka": 0.6199511268619955, - "blacephalon": 1.010483491787173 + "articuno": 0.6035012706197154, + "zapdos": 0.6029010297412024, + "moltres": 0.44276368691344126, + "mewtwo": 0.6319416114622803, + "raikou": 1.6348464618669603, + "entei": 1.034411120361256, + "suicune": 1.725234374017247, + "lugia": 0.7461793330390187, + "ho-oh": 0.5298318856490235, + "latias": 0.8473878344640734, + "latios": 1.0209659578242882, + "kyogre": 0.5928167012547396, + "groudon": 0.4607533113966517, + "rayquaza": 0.38239083008140023, + "uxie": 1.1560220461873392, + "mesprit": 1.159708382759616, + "azelf": 1.1436531234587988, + "dialga": 0.4312670694144133, + "palkia": 0.528730592527249, + "heatran": 0.2894570860600044, + "giratina-altered": 0.5478184974062946, + "cresselia": 0.5973623897838537, + "tornadus-incarnate": 0.5990711841919213, + "thundurus-incarnate": 0.8623153398967311, + "reshiram": 0.46365798376795886, + "zekrom": 0.6218426788049048, + "landorus-incarnate": 0.5082206071691873, + "kyurem": 0.48894717153866274, + "xerneas": 0.508571325301523, + "yveltal": 0.46250443010164366, + "zygarde-50": 0.40436804343150357, + "tapu-koko": 1.4236210404177876, + "tapu-lele": 1.4540413133336214, + "tapu-bulu": 1.8194772869286888, + "tapu-fini": 0.9737559604207016, + "solgaleo": 0.5212192068033101, + "lunala": 0.5707695191574274, + "nihilego": 0.8407364755455826, + "buzzwole": 1.16501660466866, + "pheromosa": 1.3354910610415964, + "xurkitree": 0.82772813236097, + "celesteela": 0.5226506971602969, + "kartana": 1.1924694204726265, + "guzzlord": 0.6656643878751094, + "necrozma": 1.0823473687729532, + "stakataka": 0.6191485192897512, + "blacephalon": 1.0061583729650412 }, "charmeleon": { - "articuno": 0.9894315145859414, - "zapdos": 0.6253864709348742, - "moltres": 0.5448225215264608, - "mewtwo": 0.7577916052620355, - "raikou": 1.454270810627866, - "entei": 1.0969217757352339, - "suicune": 1.0137614456550963, - "lugia": 0.7701679914964108, - "ho-oh": 0.6003854801582297, - "latias": 0.8480164897583118, - "latios": 1.214143944303459, - "kyogre": 0.2852102815901341, - "groudon": 0.28322658216052277, - "rayquaza": 0.45702008884892587, - "uxie": 1.1945439033132195, - "mesprit": 1.1602110359648043, - "azelf": 1.1340894388731004, - "dialga": 0.5915405036776256, - "palkia": 0.42873070146880476, - "heatran": 0.39272088166115426, - "giratina-altered": 0.6869077715456144, - "cresselia": 0.6776873273370223, - "tornadus-incarnate": 0.7783652120825495, - "thundurus-incarnate": 0.7997547706721362, - "reshiram": 0.6190841052358866, - "zekrom": 0.6780247253997594, - "landorus-incarnate": 0.3921279847533674, - "kyurem": 0.6387773703453705, - "xerneas": 0.4029056931481967, - "yveltal": 0.489176899005863, - "zygarde-50": 0.3472637161719523, - "tapu-koko": 1.089749264539162, - "tapu-lele": 1.3598521429348558, - "tapu-bulu": 1.3035156828041206, - "tapu-fini": 0.44279612689260184, - "solgaleo": 0.9691206997026762, - "lunala": 0.545840767463331, - "nihilego": 0.7379723989949094, - "buzzwole": 1.6809820343081214, - "pheromosa": 1.7866231926875793, - "xurkitree": 0.7121292271930586, - "celesteela": 0.8522378246572215, - "kartana": 3.8782180904471133, - "guzzlord": 0.7363674048569209, - "necrozma": 1.0661872446545984, - "stakataka": 0.5439915055314269, - "blacephalon": 1.2302645984964509 + "articuno": 0.9909463281595219, + "zapdos": 0.6248645746975106, + "moltres": 0.5447283586040168, + "mewtwo": 0.7569998643738629, + "raikou": 1.4515782728033209, + "entei": 1.0959424024395754, + "suicune": 1.0089732988540538, + "lugia": 0.7683685218669475, + "ho-oh": 0.5994376558367762, + "latias": 0.8458260675319, + "latios": 1.2119860788778567, + "kyogre": 0.28395134535848954, + "groudon": 0.28255389173123524, + "rayquaza": 0.45631135825512004, + "uxie": 1.1929134777074477, + "mesprit": 1.1589259057829846, + "azelf": 1.1328878873053665, + "dialga": 0.5915145528887965, + "palkia": 0.42703660889408257, + "heatran": 0.39086622245185976, + "giratina-altered": 0.6857710602749296, + "cresselia": 0.6771214369483023, + "tornadus-incarnate": 0.7782639089843137, + "thundurus-incarnate": 0.7988435251771628, + "reshiram": 0.6189455107715528, + "zekrom": 0.6770394847697906, + "landorus-incarnate": 0.3909018139602519, + "kyurem": 0.6391818334957509, + "xerneas": 0.4031155029894478, + "yveltal": 0.4886040065350319, + "zygarde-50": 0.34620004917644503, + "tapu-koko": 1.0879336847022982, + "tapu-lele": 1.3571629352425199, + "tapu-bulu": 1.305445201557177, + "tapu-fini": 0.44059168129930903, + "solgaleo": 0.9709212442279904, + "lunala": 0.5451955966129964, + "nihilego": 0.7343319022126511, + "buzzwole": 1.6848957598529073, + "pheromosa": 1.7884401621344308, + "xurkitree": 0.7116214569276242, + "celesteela": 0.8527083031741645, + "kartana": 3.897305933195911, + "guzzlord": 0.7346186750384456, + "necrozma": 1.0639826425814747, + "stakataka": 0.5431071371507753, + "blacephalon": 1.2290423992274118 }, "wartortle": { - "articuno": 0.7916066793341903, - "zapdos": 0.6107283571192503, - "moltres": 0.7769532013830707, - "mewtwo": 0.762740044327133, - "raikou": 1.3293874757961786, - "entei": 1.599711159342669, - "suicune": 1.164204154519544, - "lugia": 0.892572879191083, - "ho-oh": 0.8318350776126127, - "latias": 1.0012831263288815, - "latios": 1.2054497809243234, - "kyogre": 0.38386314473681094, - "groudon": 0.4664444265810531, - "rayquaza": 0.6069170228663519, - "uxie": 1.2067742087248268, - "mesprit": 1.1536000013184027, - "azelf": 1.0963488625126574, - "dialga": 0.6183357279029678, - "palkia": 0.45728792446866934, - "heatran": 0.6672992462849747, - "giratina-altered": 0.7029679229464272, - "cresselia": 0.6715382014225806, - "tornadus-incarnate": 0.8436414148178324, - "thundurus-incarnate": 0.7761449536179916, - "reshiram": 0.5572246754793505, - "zekrom": 0.6157463543708561, - "landorus-incarnate": 0.7365573540177373, - "kyurem": 0.5845229841571106, - "xerneas": 0.3528705625653599, - "yveltal": 0.5388394312658734, - "zygarde-50": 0.5933931348301107, - "tapu-koko": 0.9660131083347929, - "tapu-lele": 1.3387323704104983, - "tapu-bulu": 0.925766610482471, - "tapu-fini": 0.5778912794903995, - "solgaleo": 0.7264370461225843, - "lunala": 0.5399652037737707, - "nihilego": 0.9632726902641024, - "buzzwole": 1.1812812098933325, - "pheromosa": 1.3560429384650248, - "xurkitree": 0.6099095167112302, - "celesteela": 0.7408906217339132, - "kartana": 1.438862541052574, - "guzzlord": 0.7632389046207364, - "necrozma": 1.1018119273700133, - "stakataka": 0.856349024696653, - "blacephalon": 1.7348483367451601 + "articuno": 0.7924850859780774, + "zapdos": 0.6104409052383903, + "moltres": 0.7796766387033247, + "mewtwo": 0.7628220033062023, + "raikou": 1.326046103514074, + "entei": 1.6045446361151066, + "suicune": 1.1638925844753014, + "lugia": 0.8928049336415553, + "ho-oh": 0.8337962391784501, + "latias": 1.0007159051747023, + "latios": 1.2044132686165296, + "kyogre": 0.3833091469168711, + "groudon": 0.4680804889316351, + "rayquaza": 0.6073379559996126, + "uxie": 1.2063943660245222, + "mesprit": 1.1531331077153286, + "azelf": 1.095988599010968, + "dialga": 0.6194877056471376, + "palkia": 0.4570418790988203, + "heatran": 0.6702716308187888, + "giratina-altered": 0.702805698593747, + "cresselia": 0.6715116393646657, + "tornadus-incarnate": 0.8448886163272522, + "thundurus-incarnate": 0.7751035498767329, + "reshiram": 0.5580544649884168, + "zekrom": 0.614601355709621, + "landorus-incarnate": 0.7392017931180372, + "kyurem": 0.5849384474678789, + "xerneas": 0.3528055501886057, + "yveltal": 0.5394112487028456, + "zygarde-50": 0.5946889138777661, + "tapu-koko": 0.9648265299237478, + "tapu-lele": 1.3376910035242164, + "tapu-bulu": 0.9238874721401149, + "tapu-fini": 0.5778222184753501, + "solgaleo": 0.7277968111468492, + "lunala": 0.5394850363729263, + "nihilego": 0.962907351905409, + "buzzwole": 1.1823491154876913, + "pheromosa": 1.3557541933517205, + "xurkitree": 0.6084808451231154, + "celesteela": 0.7427452923206697, + "kartana": 1.437387573996844, + "guzzlord": 0.7635775659101742, + "necrozma": 1.1011877751137291, + "stakataka": 0.8601145936931213, + "blacephalon": 1.7386739052700078 }, "butterfree": { - "articuno": 0.5621963326041197, - "zapdos": 0.44700381910017845, - "moltres": 0.3943341528202131, - "mewtwo": 0.9240660186501441, - "raikou": 1.371537170333839, - "entei": 0.9138385943157923, - "suicune": 1.4206113364282118, - "lugia": 0.7810710436018959, - "ho-oh": 0.45175514043028364, - "latias": 1.1997469937766083, - "latios": 1.5721172139386368, - "kyogre": 0.439432760172047, - "groudon": 0.4871542497571687, - "rayquaza": 0.3380091264132479, - "uxie": 1.729981005519079, - "mesprit": 1.6557405580197888, - "azelf": 1.5558201628837578, - "dialga": 0.4513565750768683, - "palkia": 0.46061403269299384, - "heatran": 0.2916725109013185, - "giratina-altered": 0.49680093747924153, - "cresselia": 0.8658727489160098, - "tornadus-incarnate": 0.5497822323885899, - "thundurus-incarnate": 0.6385966643851988, - "reshiram": 0.4380392412776283, - "zekrom": 0.5449322910584539, - "landorus-incarnate": 0.4492987417911648, - "kyurem": 0.5336939116136803, - "xerneas": 0.3832618481398543, - "yveltal": 0.49902252227590194, - "zygarde-50": 0.4925964830638139, - "tapu-koko": 0.9415696506369049, - "tapu-lele": 1.3674374012749562, - "tapu-bulu": 1.4343682155299577, - "tapu-fini": 0.7250381716417281, - "solgaleo": 0.677103104311349, - "lunala": 0.5778194120649454, - "nihilego": 0.7367461263892003, - "buzzwole": 1.119669334888008, - "pheromosa": 1.264576053903515, - "xurkitree": 0.668549176896397, - "celesteela": 0.53874377268847, - "kartana": 1.8451883531036422, - "guzzlord": 0.9578563720221263, - "necrozma": 1.3707297576565036, - "stakataka": 0.3835052671988354, - "blacephalon": 0.9639842791957359 + "articuno": 0.559598590437806, + "zapdos": 0.4447309047177582, + "moltres": 0.3924100672911923, + "mewtwo": 0.9236681559869259, + "raikou": 1.3662416321635642, + "entei": 0.909982641348958, + "suicune": 1.4201172163953917, + "lugia": 0.7785851173051775, + "ho-oh": 0.4486226490087736, + "latias": 1.1993425558879136, + "latios": 1.5725888400501775, + "kyogre": 0.43901156483677284, + "groudon": 0.48885507641651293, + "rayquaza": 0.33647701650446893, + "uxie": 1.7312288326941738, + "mesprit": 1.6567613155856735, + "azelf": 1.5562623513874136, + "dialga": 0.4493743604046093, + "palkia": 0.4594743459372733, + "heatran": 0.29025504715721173, + "giratina-altered": 0.4948697647165243, + "cresselia": 0.865712303641013, + "tornadus-incarnate": 0.5475869508818516, + "thundurus-incarnate": 0.6363489556017873, + "reshiram": 0.4365274595706756, + "zekrom": 0.5424555400399063, + "landorus-incarnate": 0.4489838105199689, + "kyurem": 0.5323188271432966, + "xerneas": 0.3834240978388515, + "yveltal": 0.4979873919953355, + "zygarde-50": 0.49332586789323496, + "tapu-koko": 0.9385968054295738, + "tapu-lele": 1.366280538461588, + "tapu-bulu": 1.439498448701134, + "tapu-fini": 0.7256044315041543, + "solgaleo": 0.6753404951614954, + "lunala": 0.577282019859553, + "nihilego": 0.7319147380868134, + "buzzwole": 1.1205834687115137, + "pheromosa": 1.2639164466127577, + "xurkitree": 0.667136765559703, + "celesteela": 0.5361102442262293, + "kartana": 1.8486967488605737, + "guzzlord": 0.9575690327941824, + "necrozma": 1.3680757567253101, + "stakataka": 0.3815972757093824, + "blacephalon": 0.9593435200738314 }, "raichu": { - "articuno": 0.9568858900851684, - "zapdos": 0.843016812323458, - "moltres": 0.7456046534100833, - "mewtwo": 0.7381728137371386, - "raikou": 1.6279577163779573, - "entei": 1.1711320351212138, - "suicune": 1.6612152837293392, - "lugia": 1.0982070730441893, - "ho-oh": 0.7901136361864765, - "latias": 0.7771654496006473, - "latios": 0.9801938298083538, - "kyogre": 0.5321735329930565, - "groudon": 0.24308568584565585, - "rayquaza": 0.42747633010487673, - "uxie": 1.245940703410613, - "mesprit": 1.1911101076306205, - "azelf": 1.1206556934922998, - "dialga": 0.6765356122166222, - "palkia": 0.47339255582267253, - "heatran": 0.5075013986717847, - "giratina-altered": 0.5336465933827181, - "cresselia": 0.662602787372413, - "tornadus-incarnate": 1.0322868765878181, - "thundurus-incarnate": 1.0633901431253967, - "reshiram": 0.48564454415696257, - "zekrom": 0.5615685100006513, - "landorus-incarnate": 0.31928060141360637, - "kyurem": 0.6071148451341674, - "xerneas": 0.36936874997426383, - "yveltal": 0.6661774225229349, - "zygarde-50": 0.27262549917578516, - "tapu-koko": 1.2210816159519027, - "tapu-lele": 1.3324881344740414, - "tapu-bulu": 0.7647646547996266, - "tapu-fini": 0.8391791932176575, - "solgaleo": 0.714438841905868, - "lunala": 0.5559503963908146, - "nihilego": 0.8335236052772657, - "buzzwole": 1.1546953694492912, - "pheromosa": 1.350391089270052, - "xurkitree": 0.8250096531557999, - "celesteela": 0.8702803524289776, - "kartana": 1.7974742204589749, - "guzzlord": 0.7073404910873318, - "necrozma": 1.2053289171336128, - "stakataka": 0.9111486646233881, - "blacephalon": 1.305393477208604 + "articuno": 0.9570378525365111, + "zapdos": 0.8455472143173739, + "moltres": 0.7459178226339916, + "mewtwo": 0.7366175196946851, + "raikou": 1.6311856030073502, + "entei": 1.1693164898853976, + "suicune": 1.6600737981290608, + "lugia": 1.098028541941495, + "ho-oh": 0.7890880185013252, + "latias": 0.7746822428782751, + "latios": 0.9771651262669138, + "kyogre": 0.5324378160545908, + "groudon": 0.24192121400023792, + "rayquaza": 0.426820165771798, + "uxie": 1.243731227217647, + "mesprit": 1.1888863829150251, + "azelf": 1.1183109865457517, + "dialga": 0.6767288319330402, + "palkia": 0.47253101457192914, + "heatran": 0.5078544398754035, + "giratina-altered": 0.5318144475597091, + "cresselia": 0.6611754302653489, + "tornadus-incarnate": 1.0333090300998393, + "thundurus-incarnate": 1.0662747750170378, + "reshiram": 0.4848380398545109, + "zekrom": 0.5605153753268333, + "landorus-incarnate": 0.3174356612478042, + "kyurem": 0.6065734032341581, + "xerneas": 0.3688567498497329, + "yveltal": 0.6661327047258342, + "zygarde-50": 0.2712377959998913, + "tapu-koko": 1.2235004992477503, + "tapu-lele": 1.3288704931088737, + "tapu-bulu": 0.7621459833117363, + "tapu-fini": 0.8391164192020901, + "solgaleo": 0.7141924615119264, + "lunala": 0.554669241176813, + "nihilego": 0.8314798677271986, + "buzzwole": 1.1523484191975657, + "pheromosa": 1.3471035873307389, + "xurkitree": 0.8273507863330993, + "celesteela": 0.8704773393092904, + "kartana": 1.7970877346816772, + "guzzlord": 0.7053800060729689, + "necrozma": 1.204057148791589, + "stakataka": 0.9121452824241383, + "blacephalon": 1.302423688987529 }, "raichu-alola": { - "articuno": 1.044838576820068, - "zapdos": 0.7680975369916303, - "moltres": 0.8259529886003276, - "mewtwo": 0.8301006575827039, - "raikou": 1.6728168249547375, - "entei": 1.162524114971572, - "suicune": 1.8447020291444058, - "lugia": 1.2367897371432401, - "ho-oh": 0.8565080332079857, - "latias": 0.8495315710094027, - "latios": 1.1017882145508244, - "kyogre": 0.5685128514207636, - "groudon": 0.2900448630911038, - "rayquaza": 0.4229747446692634, - "uxie": 1.3538599494266292, - "mesprit": 1.3193623923888942, - "azelf": 1.2271484406177942, - "dialga": 0.5228696458194309, - "palkia": 0.5019378036199149, - "heatran": 0.4921049707778416, - "giratina-altered": 0.6258569933091552, - "cresselia": 0.744842985126345, - "tornadus-incarnate": 1.1404684795071365, - "thundurus-incarnate": 0.9731369260361983, - "reshiram": 0.5968206751852729, - "zekrom": 0.6756578101934527, - "landorus-incarnate": 0.4232346099025286, - "kyurem": 0.5935036717026974, - "xerneas": 0.3957160038647486, - "yveltal": 0.6352100572443253, - "zygarde-50": 0.3181862401988862, - "tapu-koko": 1.3283699394529023, - "tapu-lele": 1.4953780191337365, - "tapu-bulu": 0.9187844844414109, - "tapu-fini": 0.929649753186254, - "solgaleo": 0.7908910109552225, - "lunala": 0.5520900604036224, - "nihilego": 1.0075675987439818, - "buzzwole": 1.5861290020576246, - "pheromosa": 1.771703669744218, - "xurkitree": 0.788479941595116, - "celesteela": 0.9420633597814303, - "kartana": 1.344107702644516, - "guzzlord": 0.5090688992776409, - "necrozma": 1.321021806204929, - "stakataka": 0.5890857183289162, - "blacephalon": 1.320995231157064 + "articuno": 1.0465755777228392, + "zapdos": 0.7700752038179992, + "moltres": 0.827894408529158, + "mewtwo": 0.8309031955117235, + "raikou": 1.6729268771278836, + "entei": 1.1612922917227346, + "suicune": 1.8466674886839214, + "lugia": 1.2391957403245608, + "ho-oh": 0.8568007675687896, + "latias": 0.8489115158650038, + "latios": 1.1014761512468738, + "kyogre": 0.5691929475283974, + "groudon": 0.2891423710061889, + "rayquaza": 0.4229113560377489, + "uxie": 1.3539916866080448, + "mesprit": 1.320024100214181, + "azelf": 1.2272203621718138, + "dialga": 0.522591186217532, + "palkia": 0.5017561825996809, + "heatran": 0.4919367865314267, + "giratina-altered": 0.6237551642906215, + "cresselia": 0.7454710342192375, + "tornadus-incarnate": 1.1438048338053497, + "thundurus-incarnate": 0.9750329878636468, + "reshiram": 0.5970876136519996, + "zekrom": 0.675323111806575, + "landorus-incarnate": 0.42178957122007277, + "kyurem": 0.5929596602768803, + "xerneas": 0.3960554949357811, + "yveltal": 0.634047050138818, + "zygarde-50": 0.3169840953588492, + "tapu-koko": 1.330426807446751, + "tapu-lele": 1.495665179720713, + "tapu-bulu": 0.9169820113109056, + "tapu-fini": 0.9314644725799298, + "solgaleo": 0.7913040451484488, + "lunala": 0.5503649469963359, + "nihilego": 1.0066175993707511, + "buzzwole": 1.5841198694995895, + "pheromosa": 1.7688701559421012, + "xurkitree": 0.788802134591455, + "celesteela": 0.9427908955503539, + "kartana": 1.342654753745232, + "guzzlord": 0.5061017229409065, + "necrozma": 1.3226784933621643, + "stakataka": 0.5882086152995862, + "blacephalon": 1.3193855073764547 }, "sandslash": { - "articuno": 1.0593399146199507, - "zapdos": 0.9497616283586359, - "moltres": 0.8961155895177324, - "mewtwo": 0.7704549312636784, - "raikou": 2.7269657708518587, - "entei": 1.699235753301466, - "suicune": 1.3080375192077631, - "lugia": 1.0002240930204045, - "ho-oh": 1.3819168176238477, - "latias": 1.042789889453504, - "latios": 1.483760224215825, - "kyogre": 0.3817359808914228, - "groudon": 0.3585970143332651, - "rayquaza": 0.5219513139025844, - "uxie": 1.4125765493332398, - "mesprit": 1.349865056859806, - "azelf": 1.2993299141510404, - "dialga": 0.879659376285866, - "palkia": 0.4658153496318298, - "heatran": 1.0378117121739676, - "giratina-altered": 0.7266420338234693, - "cresselia": 0.765696399883999, - "tornadus-incarnate": 0.8542073121928668, - "thundurus-incarnate": 1.2668059348736451, - "reshiram": 0.8082836462177283, - "zekrom": 0.9843151620743845, - "landorus-incarnate": 0.5136358592897077, - "kyurem": 0.5643303183861226, - "xerneas": 0.37871834602775556, - "yveltal": 0.6132924968329243, - "zygarde-50": 0.4403919497293963, - "tapu-koko": 1.8937181491695492, - "tapu-lele": 1.6595750800321432, - "tapu-bulu": 0.861062556741393, - "tapu-fini": 0.5633281068333855, - "solgaleo": 1.0020397990564207, - "lunala": 0.590766235452595, - "nihilego": 2.600645923388086, - "buzzwole": 0.993688689325218, - "pheromosa": 1.339146122956513, - "xurkitree": 1.2492699541510608, - "celesteela": 0.727268848091466, - "kartana": 1.157272425129408, - "guzzlord": 0.9172173773721355, - "necrozma": 1.4098700115655702, - "stakataka": 1.0590509744739431, - "blacephalon": 2.251361568609184 + "articuno": 1.0573244221981735, + "zapdos": 0.9529143698284898, + "moltres": 0.8970503948054447, + "mewtwo": 0.7706777624692416, + "raikou": 2.7395591563976107, + "entei": 1.7036225741930489, + "suicune": 1.306792643638956, + "lugia": 0.9998583539045243, + "ho-oh": 1.3855912874154241, + "latias": 1.0423072056351386, + "latios": 1.484159431267504, + "kyogre": 0.3816679912425295, + "groudon": 0.3588957691655223, + "rayquaza": 0.5221602617116811, + "uxie": 1.4117234704088122, + "mesprit": 1.3489010844628089, + "azelf": 1.299078573732488, + "dialga": 0.8810759042437828, + "palkia": 0.46602498665159064, + "heatran": 1.0402797097689591, + "giratina-altered": 0.7271551218408261, + "cresselia": 0.7656428056436457, + "tornadus-incarnate": 0.8536192727650466, + "thundurus-incarnate": 1.2708418278173426, + "reshiram": 0.8096735730403943, + "zekrom": 0.9887044039461961, + "landorus-incarnate": 0.5137858678505355, + "kyurem": 0.5634686784211177, + "xerneas": 0.37872498019665507, + "yveltal": 0.6137602643318557, + "zygarde-50": 0.4407809634772395, + "tapu-koko": 1.9020827709222372, + "tapu-lele": 1.66227008381841, + "tapu-bulu": 0.8607910785504843, + "tapu-fini": 0.5621340391918753, + "solgaleo": 1.0040761907694329, + "lunala": 0.590302445325095, + "nihilego": 2.6101966565416017, + "buzzwole": 0.9932523142583659, + "pheromosa": 1.3393116630775521, + "xurkitree": 1.255129025100305, + "celesteela": 0.7270600331731538, + "kartana": 1.1541783918121058, + "guzzlord": 0.9196373395064052, + "necrozma": 1.4127850064811578, + "stakataka": 1.061377974013961, + "blacephalon": 2.2560205888009173 }, "sandslash-alola": { - "articuno": 1.4419322590736847, - "zapdos": 0.9217166279067437, - "moltres": 0.568728961303548, - "mewtwo": 0.8502777454862428, - "raikou": 1.728353400304624, - "entei": 1.1628377306685358, - "suicune": 1.3301624496092168, - "lugia": 1.2163355095177928, - "ho-oh": 1.1291775404907, - "latias": 1.3921022339285973, - "latios": 1.5888262635674386, - "kyogre": 0.42365090558237306, - "groudon": 0.3411168775347637, - "rayquaza": 0.8970488744138886, - "uxie": 1.3430498122873376, - "mesprit": 1.3130180703899141, - "azelf": 1.263334273939309, - "dialga": 0.6715320641158191, - "palkia": 0.5267896017222825, - "heatran": 0.32141489076332375, - "giratina-altered": 0.9327493403940232, - "cresselia": 0.7677207963310614, - "tornadus-incarnate": 0.8998341490561337, - "thundurus-incarnate": 1.2729772677231894, - "reshiram": 0.5429528121731713, - "zekrom": 0.8738780670992343, - "landorus-incarnate": 0.8787299031282445, - "kyurem": 0.7444316181335711, - "xerneas": 0.41362623060967174, - "yveltal": 0.7085627893445825, - "zygarde-50": 0.682387696619156, - "tapu-koko": 1.141227557483309, - "tapu-lele": 1.7148017354713088, - "tapu-bulu": 1.206499918500088, - "tapu-fini": 0.6132860203516111, - "solgaleo": 0.6067360809244968, - "lunala": 0.6055781215506459, - "nihilego": 1.2569331019877203, - "buzzwole": 0.9303161583901873, - "pheromosa": 1.4031630212750117, - "xurkitree": 0.7484557095244839, - "celesteela": 0.7313968188141253, - "kartana": 1.307627353334418, - "guzzlord": 1.0143291030623163, - "necrozma": 1.1973689223386965, - "stakataka": 0.77827820647896, - "blacephalon": 1.4210965732862233 + "articuno": 1.4476646255918708, + "zapdos": 0.9239825715963867, + "moltres": 0.5667429104151565, + "mewtwo": 0.8515305546596298, + "raikou": 1.7299741192091753, + "entei": 1.15902870321411, + "suicune": 1.330620161369342, + "lugia": 1.2188393281471996, + "ho-oh": 1.1278473674669076, + "latias": 1.3948332731992712, + "latios": 1.5885200748411394, + "kyogre": 0.4235387089950834, + "groudon": 0.3402943838123933, + "rayquaza": 0.9006118629055873, + "uxie": 1.3435679835527128, + "mesprit": 1.314136274162726, + "azelf": 1.2646852724364512, + "dialga": 0.6726777893356789, + "palkia": 0.5274123162697442, + "heatran": 0.320426559119375, + "giratina-altered": 0.9339193879559385, + "cresselia": 0.7689898523749328, + "tornadus-incarnate": 0.9001643630374325, + "thundurus-incarnate": 1.2755557915470948, + "reshiram": 0.5408279209111768, + "zekrom": 0.8759817395985978, + "landorus-incarnate": 0.8782206430116433, + "kyurem": 0.7465553944656317, + "xerneas": 0.41423680223699155, + "yveltal": 0.7104333564409473, + "zygarde-50": 0.6831423493720138, + "tapu-koko": 1.1416308899129404, + "tapu-lele": 1.7178693811911714, + "tapu-bulu": 1.207622696855731, + "tapu-fini": 0.6128690231936926, + "solgaleo": 0.6062185074416506, + "lunala": 0.6050822077327922, + "nihilego": 1.2600194817094312, + "buzzwole": 0.9281030520867952, + "pheromosa": 1.4016472013717869, + "xurkitree": 0.7485610399342343, + "celesteela": 0.731979643488133, + "kartana": 1.308132405594117, + "guzzlord": 1.0169900557741225, + "necrozma": 1.19765119547306, + "stakataka": 0.7795095745147752, + "blacephalon": 1.4138772106492872 }, "nidoqueen": { - "articuno": 0.6450187299976499, - "zapdos": 0.6935820847290858, - "moltres": 0.5364316152974271, - "mewtwo": 0.7318144820023709, - "raikou": 2.124110543344633, - "entei": 1.566948863190488, - "suicune": 1.1849194612995861, - "lugia": 0.9033784970955837, - "ho-oh": 0.622354101967447, - "latias": 0.9032120251711813, - "latios": 1.238270685865458, - "kyogre": 0.3635614958972013, - "groudon": 0.32411910780609043, - "rayquaza": 0.4080686402024898, - "uxie": 1.3063182965834486, - "mesprit": 1.298667787124098, - "azelf": 1.2816074783900588, - "dialga": 0.832905695387029, - "palkia": 0.44377535065427065, - "heatran": 0.9118391998830222, - "giratina-altered": 0.7690101214969802, - "cresselia": 0.6879282327774157, - "tornadus-incarnate": 0.6993207893464131, - "thundurus-incarnate": 0.9623104369141016, - "reshiram": 0.6790315511767301, - "zekrom": 0.9077604100069409, - "landorus-incarnate": 0.44284921583812226, - "kyurem": 0.527893037041571, - "xerneas": 0.46976169856130795, - "yveltal": 0.4879769419220157, - "zygarde-50": 0.365036579922721, - "tapu-koko": 1.6953730064359769, - "tapu-lele": 1.4692023265053864, - "tapu-bulu": 1.604019261928554, - "tapu-fini": 0.6712434698714995, - "solgaleo": 0.882497995168662, - "lunala": 0.8350344568456818, - "nihilego": 1.4312586962343432, - "buzzwole": 1.2197176966484378, - "pheromosa": 1.3741972975048427, - "xurkitree": 1.085510977242972, - "celesteela": 0.6306127216130213, - "kartana": 1.6255847286170293, - "guzzlord": 0.7191278613396989, - "necrozma": 1.2755394270413234, - "stakataka": 1.28226580621893, - "blacephalon": 1.649780776316908 + "articuno": 0.6431501585617361, + "zapdos": 0.694518721058579, + "moltres": 0.5362541562243457, + "mewtwo": 0.7305663197900454, + "raikou": 2.130660498955678, + "entei": 1.5695877503759106, + "suicune": 1.1827033130668303, + "lugia": 0.9025847344713065, + "ho-oh": 0.6216284362106561, + "latias": 0.9011412302301877, + "latios": 1.236612968636225, + "kyogre": 0.3631009436713137, + "groudon": 0.3238771449894445, + "rayquaza": 0.4077939112137374, + "uxie": 1.3040497031380485, + "mesprit": 1.297338406404712, + "azelf": 1.280447799227177, + "dialga": 0.8341681754004904, + "palkia": 0.4434470454057976, + "heatran": 0.913983018975276, + "giratina-altered": 0.77018102135256, + "cresselia": 0.686617348676223, + "tornadus-incarnate": 0.6986204084659888, + "thundurus-incarnate": 0.9643243256631093, + "reshiram": 0.6796771259640526, + "zekrom": 0.9110697476148873, + "landorus-incarnate": 0.4419719903794389, + "kyurem": 0.5271533454492869, + "xerneas": 0.4711478846434445, + "yveltal": 0.4875072197335246, + "zygarde-50": 0.3645306253719668, + "tapu-koko": 1.703094413849147, + "tapu-lele": 1.4686168216248028, + "tapu-bulu": 1.6087043825301086, + "tapu-fini": 0.671184442429396, + "solgaleo": 0.8832268655945814, + "lunala": 0.8364340035286021, + "nihilego": 1.4345622670265143, + "buzzwole": 1.22251168758029, + "pheromosa": 1.3754548755897074, + "xurkitree": 1.0897965852531095, + "celesteela": 0.6295406831721841, + "kartana": 1.627187313320666, + "guzzlord": 0.7187833856755035, + "necrozma": 1.2756216855896496, + "stakataka": 1.2855920971941637, + "blacephalon": 1.6516054938788844 }, "nidoking": { - "articuno": 0.8304303326352735, - "zapdos": 0.9335553141977823, - "moltres": 0.6716980781431723, - "mewtwo": 0.7025116220557837, - "raikou": 2.873216981053795, - "entei": 1.764854693370503, - "suicune": 1.411252228927709, - "lugia": 1.0079460480096731, - "ho-oh": 0.9132859396844847, - "latias": 1.0668237096618411, - "latios": 1.4608070106748983, - "kyogre": 0.48434966080420516, - "groudon": 0.33318432822166955, - "rayquaza": 0.7355814549556058, - "uxie": 1.0931072685157188, - "mesprit": 1.091813225383396, - "azelf": 1.0812574531895254, - "dialga": 0.9234032038976699, - "palkia": 0.5103421718658098, - "heatran": 1.1623784442166025, - "giratina-altered": 0.8309051099693057, - "cresselia": 0.5890705925452302, - "tornadus-incarnate": 0.919250106500521, - "thundurus-incarnate": 1.3279384141914443, - "reshiram": 0.8684968441897702, - "zekrom": 1.006888597506501, - "landorus-incarnate": 0.7675717770555704, - "kyurem": 0.569879130353367, - "xerneas": 0.45447757020984614, - "yveltal": 0.6273279585483972, - "zygarde-50": 0.5453741180335392, - "tapu-koko": 1.9528508552249648, - "tapu-lele": 1.588186192594283, - "tapu-bulu": 1.1334015635017245, - "tapu-fini": 0.7152193786639875, - "solgaleo": 0.9644255974430667, - "lunala": 0.6533935757581124, - "nihilego": 2.9593441492917227, - "buzzwole": 1.2122327177564847, - "pheromosa": 1.7545036980591961, - "xurkitree": 1.3122441621232976, - "celesteela": 0.8454171241089862, - "kartana": 1.679054110348204, - "guzzlord": 0.8600534077024058, - "necrozma": 1.200360393538491, - "stakataka": 1.07240689159362, - "blacephalon": 2.3349741418699503 + "articuno": 0.8299754002819806, + "zapdos": 0.9365953938900552, + "moltres": 0.6721761575681537, + "mewtwo": 0.7013288187731288, + "raikou": 2.886658490447301, + "entei": 1.7679743678238042, + "suicune": 1.4095581957846055, + "lugia": 1.0085803491566945, + "ho-oh": 0.9141831576960932, + "latias": 1.0646599345134018, + "latios": 1.4591597327136654, + "kyogre": 0.48472400267237625, + "groudon": 0.33302083588829723, + "rayquaza": 0.7366164802169595, + "uxie": 1.090604512205195, + "mesprit": 1.0901731197297213, + "azelf": 1.0797906501428796, + "dialga": 0.9257998065966911, + "palkia": 0.5103568661236126, + "heatran": 1.165279190088464, + "giratina-altered": 0.8327171554256391, + "cresselia": 0.5877188476672143, + "tornadus-incarnate": 0.9206811976109321, + "thundurus-incarnate": 1.3336544201251486, + "reshiram": 0.8697737022663217, + "zekrom": 1.0111131705619205, + "landorus-incarnate": 0.7677170187692656, + "kyurem": 0.5693095847663894, + "xerneas": 0.456025028644693, + "yveltal": 0.6284054368547476, + "zygarde-50": 0.5453199073218656, + "tapu-koko": 1.9613164758147619, + "tapu-lele": 1.5884254025708433, + "tapu-bulu": 1.1359533913052038, + "tapu-fini": 0.7153405479927653, + "solgaleo": 0.9660768814649363, + "lunala": 0.6545660252650272, + "nihilego": 2.9752856168775312, + "buzzwole": 1.2142665908913841, + "pheromosa": 1.7591752874212383, + "xurkitree": 1.3187420646023604, + "celesteela": 0.8471263126204012, + "kartana": 1.6805787165001291, + "guzzlord": 0.8606887618771984, + "necrozma": 1.200203563912774, + "stakataka": 1.0748178432224416, + "blacephalon": 2.339888946527531 }, "clefairy": { - "articuno": 0.7417550789421645, - "zapdos": 0.5312554818775019, - "moltres": 0.4235351850110648, - "mewtwo": 0.6219764873895566, - "raikou": 1.2627641856190497, - "entei": 0.9093482933258226, - "suicune": 1.201875571958094, - "lugia": 0.7523910168466266, - "ho-oh": 0.5103468933033163, - "latias": 0.7393265211376961, - "latios": 0.9856815334252977, - "kyogre": 0.38202719506881255, - "groudon": 0.32324115608523957, - "rayquaza": 0.35335177016452335, - "uxie": 1.0425888268756123, - "mesprit": 0.9952268754310059, - "azelf": 0.9358265266791422, - "dialga": 0.4642922783605197, - "palkia": 0.4037966033218674, - "heatran": 0.3050919109779673, - "giratina-altered": 0.516477208296682, - "cresselia": 0.5600591047613608, - "tornadus-incarnate": 0.6369981225682422, - "thundurus-incarnate": 0.636009873874811, - "reshiram": 0.4216127182279103, - "zekrom": 0.48396507909431646, - "landorus-incarnate": 0.4105304575238582, - "kyurem": 0.4793974290588673, - "xerneas": 0.3067693272563873, - "yveltal": 0.472278960240605, - "zygarde-50": 0.32259149707013235, - "tapu-koko": 0.9169159803470395, - "tapu-lele": 1.1421907933050104, - "tapu-bulu": 0.9576856830344818, - "tapu-fini": 0.6007999614306225, - "solgaleo": 0.5897867614313541, - "lunala": 0.4724520311326624, - "nihilego": 0.6382398522672628, - "buzzwole": 1.3036802196035464, - "pheromosa": 1.4545246077255012, - "xurkitree": 0.6178473046753344, - "celesteela": 0.6487456976230275, - "kartana": 2.306170241772482, - "guzzlord": 0.5981010775610468, - "necrozma": 0.9643632240153366, - "stakataka": 0.49610108063213537, - "blacephalon": 1.0092611364417508 + "articuno": 0.7401488927114629, + "zapdos": 0.5295759075819806, + "moltres": 0.42207159963405544, + "mewtwo": 0.6199715786277802, + "raikou": 1.2581986020391165, + "entei": 0.9061679850345128, + "suicune": 1.1983923217505719, + "lugia": 0.7506208916626844, + "ho-oh": 0.5082300548968565, + "latias": 0.7369558530356608, + "latios": 0.9833207318381278, + "kyogre": 0.3809781332032785, + "groudon": 0.3227327621442327, + "rayquaza": 0.3523930781031527, + "uxie": 1.0395218554910812, + "mesprit": 0.9921743151607987, + "azelf": 0.9327851566853, + "dialga": 0.4622520460378967, + "palkia": 0.4026313816858613, + "heatran": 0.3032882217667526, + "giratina-altered": 0.5151497432175145, + "cresselia": 0.5582481710318186, + "tornadus-incarnate": 0.6352617077833719, + "thundurus-incarnate": 0.6335968865831401, + "reshiram": 0.4203730710679183, + "zekrom": 0.4822686160170182, + "landorus-incarnate": 0.4094892300772194, + "kyurem": 0.47790770240746094, + "xerneas": 0.3059795683728891, + "yveltal": 0.471685249668955, + "zygarde-50": 0.32172957429239857, + "tapu-koko": 0.9143190032871586, + "tapu-lele": 1.1381394942089993, + "tapu-bulu": 0.9558748350233065, + "tapu-fini": 0.5995690761962851, + "solgaleo": 0.5866813889816959, + "lunala": 0.47100530756118664, + "nihilego": 0.6348120782529637, + "buzzwole": 1.3037780844891729, + "pheromosa": 1.4535454114764859, + "xurkitree": 0.6161652337683837, + "celesteela": 0.6459411909394613, + "kartana": 2.30496171551912, + "guzzlord": 0.596622091670411, + "necrozma": 0.9614547858657889, + "stakataka": 0.49389011259113896, + "blacephalon": 1.0054508900023078 }, "clefable": { - "articuno": 1.168546812270698, - "zapdos": 0.7984916746924842, - "moltres": 0.9473481638095185, - "mewtwo": 0.8251407311608874, - "raikou": 1.6748578775032812, - "entei": 1.4722865805314873, - "suicune": 1.4387432957072597, - "lugia": 1.0384183457782719, - "ho-oh": 0.9964565198010588, - "latias": 1.340175216798222, - "latios": 1.7651625962506836, - "kyogre": 0.4582969023582323, - "groudon": 0.40124829784696336, - "rayquaza": 0.6717094774907337, - "uxie": 1.3870484848334266, - "mesprit": 1.3279956711635408, - "azelf": 1.2629209827651824, - "dialga": 0.6667014160303932, - "palkia": 0.741259356088072, - "heatran": 0.4428154514978184, - "giratina-altered": 1.0653494550538625, - "cresselia": 0.738075157936251, - "tornadus-incarnate": 0.9215691327978751, - "thundurus-incarnate": 0.9797242499108214, - "reshiram": 0.6862159675382031, - "zekrom": 0.9982426128581108, - "landorus-incarnate": 0.5693637983470884, - "kyurem": 0.83106754396548, - "xerneas": 0.4610001291830276, - "yveltal": 0.81579722313213, - "zygarde-50": 0.6247460416545205, - "tapu-koko": 1.2748693906018376, - "tapu-lele": 1.4947496257718684, - "tapu-bulu": 1.0778068469873276, - "tapu-fini": 0.7135726594670607, - "solgaleo": 0.5728329772553249, - "lunala": 0.6122739251913332, - "nihilego": 0.771012591091158, - "buzzwole": 2.018476449740363, - "pheromosa": 2.1238302774480307, - "xurkitree": 0.833560294871568, - "celesteela": 0.6606875374548409, - "kartana": 1.4109057663926419, - "guzzlord": 1.6959328710475918, - "necrozma": 1.2860027995014773, - "stakataka": 0.5672361832323249, - "blacephalon": 1.5766151252365335 + "articuno": 1.1700059434914132, + "zapdos": 0.7991295676771544, + "moltres": 0.9486884437831078, + "mewtwo": 0.8249132599450395, + "raikou": 1.673892668736133, + "entei": 1.4728973043365325, + "suicune": 1.438392533064992, + "lugia": 1.0394410528017246, + "ho-oh": 0.9970718368428626, + "latias": 1.3420147975544041, + "latios": 1.7687846707947785, + "kyogre": 0.45807544158486735, + "groudon": 0.4013206025890313, + "rayquaza": 0.6735424295585197, + "uxie": 1.3868648515587805, + "mesprit": 1.3277218308285188, + "azelf": 1.26255334755877, + "dialga": 0.6662510483558342, + "palkia": 0.7425096309546879, + "heatran": 0.44219785217842894, + "giratina-altered": 1.0678993846334266, + "cresselia": 0.7378927813829067, + "tornadus-incarnate": 0.9223201747252945, + "thundurus-incarnate": 0.9797745442915615, + "reshiram": 0.687293458880577, + "zekrom": 1.0000425889849884, + "landorus-incarnate": 0.5695488573327825, + "kyurem": 0.8323111476238001, + "xerneas": 0.46133886351313247, + "yveltal": 0.8182888845106042, + "zygarde-50": 0.6257084332942473, + "tapu-koko": 1.275177169380699, + "tapu-lele": 1.4938718644739084, + "tapu-bulu": 1.0782694331307658, + "tapu-fini": 0.7137629781532258, + "solgaleo": 0.5708763658420408, + "lunala": 0.612068643279866, + "nihilego": 0.7685697860857559, + "buzzwole": 2.0249091556393464, + "pheromosa": 2.128811751074532, + "xurkitree": 0.8337024064634861, + "celesteela": 0.6592403192972633, + "kartana": 1.410140794639811, + "guzzlord": 1.7018564673364565, + "necrozma": 1.285908954754182, + "stakataka": 0.565942965171118, + "blacephalon": 1.5765284419078132 }, "jigglypuff": { - "articuno": 0.5730293326556322, - "zapdos": 0.46669471692404596, - "moltres": 0.37378518318520293, - "mewtwo": 0.5489591140311633, - "raikou": 1.1190276458143784, - "entei": 0.8264370272340043, - "suicune": 0.9497507299446427, - "lugia": 0.6826153353906269, - "ho-oh": 0.46356232727604585, - "latias": 0.8231336299585585, - "latios": 1.1065872967825061, - "kyogre": 0.29573564304842004, - "groudon": 0.2447268793451351, - "rayquaza": 0.42336103937631536, - "uxie": 0.9719220831384677, - "mesprit": 0.8728709750882373, - "azelf": 0.8141048712820713, - "dialga": 0.4034409706690256, - "palkia": 0.4291173697694194, - "heatran": 0.2678220925353333, - "giratina-altered": 0.748625173501994, - "cresselia": 0.5020788434569733, - "tornadus-incarnate": 0.5568377536917238, - "thundurus-incarnate": 0.5284513305722341, - "reshiram": 0.4443399716868025, - "zekrom": 0.5820823805009985, - "landorus-incarnate": 0.3577864231681662, - "kyurem": 0.5023820402134769, - "xerneas": 0.28511155540752525, - "yveltal": 0.507847974363586, - "zygarde-50": 0.3433708549644162, - "tapu-koko": 0.801597666994021, - "tapu-lele": 1.0235709779429407, - "tapu-bulu": 0.7074731269789216, - "tapu-fini": 0.4668135694119212, - "solgaleo": 0.3767040717062532, - "lunala": 0.47705998085098744, - "nihilego": 0.5170584380409847, - "buzzwole": 1.1045470405695963, - "pheromosa": 1.2668706351385175, - "xurkitree": 0.5438011602076624, - "celesteela": 0.4074322999622761, - "kartana": 0.9839905620389724, - "guzzlord": 0.8971736655136915, - "necrozma": 0.8594729779987711, - "stakataka": 0.39632535372570327, - "blacephalon": 0.986672712368199 + "articuno": 0.5701260634549352, + "zapdos": 0.46423350175605244, + "moltres": 0.37179726629566673, + "mewtwo": 0.5458517752084888, + "raikou": 1.1121963801010106, + "entei": 0.8218583854769055, + "suicune": 0.9442572915077316, + "lugia": 0.6797014347224621, + "ho-oh": 0.4607811977502362, + "latias": 0.8202080023720559, + "latios": 1.1030841835500218, + "kyogre": 0.29416667404662045, + "groudon": 0.24350415540475684, + "rayquaza": 0.42222161609412945, + "uxie": 0.9678839131284107, + "mesprit": 0.8679802316190279, + "azelf": 0.8094436928025375, + "dialga": 0.40067643114164436, + "palkia": 0.42763636012817163, + "heatran": 0.26604378541363893, + "giratina-altered": 0.7496325418749368, + "cresselia": 0.49923869098555207, + "tornadus-incarnate": 0.5541597414693, + "thundurus-incarnate": 0.5252789846523741, + "reshiram": 0.4426750896559015, + "zekrom": 0.5798853559074904, + "landorus-incarnate": 0.355984479752815, + "kyurem": 0.5007265234644777, + "xerneas": 0.2837699047161845, + "yveltal": 0.5068494084358988, + "zygarde-50": 0.34227928403878427, + "tapu-koko": 0.797311765881497, + "tapu-lele": 1.0174728442840133, + "tapu-bulu": 0.7036840044159722, + "tapu-fini": 0.46451527513414126, + "solgaleo": 0.37310526789859855, + "lunala": 0.47622691322684707, + "nihilego": 0.5130127894219904, + "buzzwole": 1.1013956502143885, + "pheromosa": 1.2625720066648767, + "xurkitree": 0.5409757293045926, + "celesteela": 0.4039201633791142, + "kartana": 0.9778286304523759, + "guzzlord": 0.89597777270893, + "necrozma": 0.8547408629365576, + "stakataka": 0.3931687500507136, + "blacephalon": 0.9820754973561485 }, "wigglytuff": { - "articuno": 0.7739009131980259, - "zapdos": 0.6776833866199101, - "moltres": 0.5505019761340806, - "mewtwo": 0.7708416178717576, - "raikou": 1.5695910231253638, - "entei": 1.2010972249035878, - "suicune": 1.3519135665615263, - "lugia": 0.9051834621657879, - "ho-oh": 0.639529875219243, - "latias": 1.2433618721382662, - "latios": 1.6286785338129885, - "kyogre": 0.4230133033120801, - "groudon": 0.3716288151962719, - "rayquaza": 0.6327371658200509, - "uxie": 1.3368596521830105, - "mesprit": 1.234037161115066, - "azelf": 1.1717802185122976, - "dialga": 0.6158841510573505, - "palkia": 0.6811289615515279, - "heatran": 0.3761706619196046, - "giratina-altered": 1.0866749204615243, - "cresselia": 0.6942400094423826, - "tornadus-incarnate": 0.7865737579591437, - "thundurus-incarnate": 0.8114727120566796, - "reshiram": 0.5938310179390082, - "zekrom": 0.9308815502340917, - "landorus-incarnate": 0.5315780553257126, - "kyurem": 0.778775099581399, - "xerneas": 0.4258347922786431, - "yveltal": 0.7621833021020411, - "zygarde-50": 0.5778413440707764, - "tapu-koko": 1.1836058461896608, - "tapu-lele": 1.4112220345472752, - "tapu-bulu": 1.0026123478879145, - "tapu-fini": 0.6623646361077682, - "solgaleo": 0.5402556606237303, - "lunala": 0.6185290644769097, - "nihilego": 0.8134189369365993, - "buzzwole": 1.811414852496168, - "pheromosa": 1.9435069988069498, - "xurkitree": 0.7766096176205088, - "celesteela": 0.5820159135065034, - "kartana": 1.3360609747358159, - "guzzlord": 1.5688093035134663, - "necrozma": 1.2058881775574144, - "stakataka": 0.5406841139935049, - "blacephalon": 1.2957329895851077 + "articuno": 0.7737320892790825, + "zapdos": 0.6780532213925778, + "moltres": 0.5504950617164353, + "mewtwo": 0.7704920309397502, + "raikou": 1.5689770141656, + "entei": 1.201313583080068, + "suicune": 1.3519935574474335, + "lugia": 0.9053788598508885, + "ho-oh": 0.6389584277417903, + "latias": 1.244808392650342, + "latios": 1.631243024355328, + "kyogre": 0.42285098193698534, + "groudon": 0.37190209012630215, + "rayquaza": 0.6344003753352196, + "uxie": 1.337498491494403, + "mesprit": 1.233460497598469, + "azelf": 1.1712177899840261, + "dialga": 0.6153008405745797, + "palkia": 0.6823795053319532, + "heatran": 0.37542226225137687, + "giratina-altered": 1.0913741569845676, + "cresselia": 0.693967923723539, + "tornadus-incarnate": 0.7868860834063971, + "thundurus-incarnate": 0.8111174865042619, + "reshiram": 0.5945707934395028, + "zekrom": 0.9328532898984563, + "landorus-incarnate": 0.531890810633572, + "kyurem": 0.780086752195613, + "xerneas": 0.4262123079275151, + "yveltal": 0.7639238823850618, + "zygarde-50": 0.579061157939212, + "tapu-koko": 1.1843961024681486, + "tapu-lele": 1.4101544955623788, + "tapu-bulu": 1.0031964551843484, + "tapu-fini": 0.6626854998886262, + "solgaleo": 0.5382144918119127, + "lunala": 0.6191213532534261, + "nihilego": 0.8109714033119476, + "buzzwole": 1.8179343951978377, + "pheromosa": 1.9485758125474342, + "xurkitree": 0.7769611750112441, + "celesteela": 0.5803478623473184, + "kartana": 1.3356245919761323, + "guzzlord": 1.5738518909492978, + "necrozma": 1.2056116340508665, + "stakataka": 0.5393041361938563, + "blacephalon": 1.2948774906733813 }, "gloom": { - "articuno": 0.582514564774385, - "zapdos": 0.5921423611480265, - "moltres": 0.42586080797812637, - "mewtwo": 0.5710382601304159, - "raikou": 1.4892695660972222, - "entei": 1.0156492484522122, - "suicune": 1.1975758927665368, - "lugia": 0.7212700537024676, - "ho-oh": 0.5287740845648621, - "latias": 1.0024933177366686, - "latios": 1.2155144783384895, - "kyogre": 0.43009387546250255, - "groudon": 0.31605346723660266, - "rayquaza": 0.4677013760318649, - "uxie": 1.0339482848206796, - "mesprit": 1.0373393592870526, - "azelf": 1.027933484730871, - "dialga": 0.5467558793384805, - "palkia": 0.5939179040079385, - "heatran": 0.2775092841118054, - "giratina-altered": 0.7651983230227457, - "cresselia": 0.544006306430746, - "tornadus-incarnate": 0.574114980285799, - "thundurus-incarnate": 0.8276388223815918, - "reshiram": 0.4465550291061542, - "zekrom": 0.7735329258179149, - "landorus-incarnate": 0.47150183188102607, - "kyurem": 0.5753033286657485, - "xerneas": 0.48051073986323256, - "yveltal": 0.55883055032019, - "zygarde-50": 0.47133691424592616, - "tapu-koko": 1.3624733308138586, - "tapu-lele": 1.4048394779601887, - "tapu-bulu": 1.7119716232056394, - "tapu-fini": 0.8242124506251625, - "solgaleo": 0.5003882472910257, - "lunala": 0.5209453767663057, - "nihilego": 0.7374884743128292, - "buzzwole": 1.4780888607661575, - "pheromosa": 1.6129796277346895, - "xurkitree": 0.7449199677926801, - "celesteela": 0.5627158637677446, - "kartana": 1.2772548795124319, - "guzzlord": 1.133511933116576, - "necrozma": 0.9819247180316095, - "stakataka": 0.48959181098340077, - "blacephalon": 0.9558757127301376 + "articuno": 0.5798470034506471, + "zapdos": 0.590968272851867, + "moltres": 0.4240700283519838, + "mewtwo": 0.568310819233206, + "raikou": 1.488387471766809, + "entei": 1.0120165967382118, + "suicune": 1.1961095089171458, + "lugia": 0.7187997178212471, + "ho-oh": 0.5261898234109273, + "latias": 0.9998708197401014, + "latios": 1.2126299526255244, + "kyogre": 0.43004896148277033, + "groudon": 0.3156079415930783, + "rayquaza": 0.4668021250252623, + "uxie": 1.030137678605303, + "mesprit": 1.0343694214615722, + "azelf": 1.0250261729906658, + "dialga": 0.5455416294247452, + "palkia": 0.5942313715990309, + "heatran": 0.2760411309812877, + "giratina-altered": 0.7647937047722999, + "cresselia": 0.541781815116716, + "tornadus-incarnate": 0.5718478730449359, + "thundurus-incarnate": 0.8275017311184727, + "reshiram": 0.44492753213217084, + "zekrom": 0.7742298141067521, + "landorus-incarnate": 0.4709222977338291, + "kyurem": 0.5739178735412471, + "xerneas": 0.48172314848524367, + "yveltal": 0.5581338857964347, + "zygarde-50": 0.47110667522290656, + "tapu-koko": 1.3624542881232133, + "tapu-lele": 1.4006515246819995, + "tapu-bulu": 1.7177962309645336, + "tapu-fini": 0.8259685142292642, + "solgaleo": 0.4979860726040183, + "lunala": 0.5199659929071053, + "nihilego": 0.7346782147836703, + "buzzwole": 1.4795147158143676, + "pheromosa": 1.6128830466697703, + "xurkitree": 0.7454514891642681, + "celesteela": 0.5609570786438567, + "kartana": 1.2769861444326192, + "guzzlord": 1.1341253544402567, + "necrozma": 0.9785815718622746, + "stakataka": 0.4879349431231863, + "blacephalon": 0.9509231179438626 }, "vileplume": { - "articuno": 0.6113816705062249, - "zapdos": 0.5996957463617207, - "moltres": 0.39635471910144615, - "mewtwo": 0.8293669538372821, - "raikou": 1.794934033853083, - "entei": 1.039642491420131, - "suicune": 2.0131339252197535, - "lugia": 0.7992541631547043, - "ho-oh": 0.5016424905792036, - "latias": 1.1420014150552362, - "latios": 1.3938283583589954, - "kyogre": 0.6720696562642159, - "groudon": 0.5583758014433833, - "rayquaza": 0.3590996508630232, - "uxie": 1.4890945687914967, - "mesprit": 1.485233477888472, - "azelf": 1.4687508018515265, - "dialga": 0.5052960127829071, - "palkia": 0.5847403165696545, - "heatran": 0.32325739412667376, - "giratina-altered": 0.6025845234818875, - "cresselia": 0.7783524406387918, - "tornadus-incarnate": 0.6029957912379968, - "thundurus-incarnate": 0.8322517424474758, - "reshiram": 0.43062221061135814, - "zekrom": 0.6725987348618541, - "landorus-incarnate": 0.5901851656215423, - "kyurem": 0.5295625867551759, - "xerneas": 0.46168044319256607, - "yveltal": 0.5015509762893513, - "zygarde-50": 0.47283824497455107, - "tapu-koko": 1.3361780178432956, - "tapu-lele": 1.4153957689217365, - "tapu-bulu": 1.0469953365235891, - "tapu-fini": 1.08117510875658, - "solgaleo": 0.6613346321870424, - "lunala": 0.6288822716707498, - "nihilego": 0.9221756571815831, - "buzzwole": 1.1362825802570584, - "pheromosa": 1.3124340425878622, - "xurkitree": 0.906437834489225, - "celesteela": 0.5793085691633735, - "kartana": 1.722948480654883, - "guzzlord": 0.9376775778694726, - "necrozma": 1.4135125469112695, - "stakataka": 0.7229341902689548, - "blacephalon": 1.1213348355450679 + "articuno": 0.6089277609061097, + "zapdos": 0.5986659531982945, + "moltres": 0.3946159871880841, + "mewtwo": 0.8279294925063301, + "raikou": 1.7965578399931872, + "entei": 1.0369324149715813, + "suicune": 2.0161279658989892, + "lugia": 0.7974367405569802, + "ho-oh": 0.49931127008713083, + "latias": 1.1405600976194776, + "latios": 1.3923354228165759, + "kyogre": 0.6736208946450579, + "groudon": 0.5594040559193623, + "rayquaza": 0.35799645015408854, + "uxie": 1.4879374784252049, + "mesprit": 1.4851823485584266, + "azelf": 1.4688169131231357, + "dialga": 0.5045377441466729, + "palkia": 0.5853394343675757, + "heatran": 0.3221376625348378, + "giratina-altered": 0.601966207454987, + "cresselia": 0.7775095703966708, + "tornadus-incarnate": 0.6008534090235829, + "thundurus-incarnate": 0.8320137209470946, + "reshiram": 0.42901745124754503, + "zekrom": 0.6729895951956743, + "landorus-incarnate": 0.5904035683405984, + "kyurem": 0.528328549857563, + "xerneas": 0.46253504384778626, + "yveltal": 0.5009153855959327, + "zygarde-50": 0.47308814018591716, + "tapu-koko": 1.3362572218621682, + "tapu-lele": 1.4125600910158593, + "tapu-bulu": 1.048691905349635, + "tapu-fini": 1.0843763785977374, + "solgaleo": 0.6604017488159841, + "lunala": 0.6290158687700358, + "nihilego": 0.9206718812795576, + "buzzwole": 1.1360911458183853, + "pheromosa": 1.3111417929101155, + "xurkitree": 0.908284480463462, + "celesteela": 0.5781509332953252, + "kartana": 1.7270036150098345, + "guzzlord": 0.9380575145378174, + "necrozma": 1.4128872516803113, + "stakataka": 0.7229622811133125, + "blacephalon": 1.1172589307268255 }, "dugtrio": { - "articuno": 0.9797027933935352, - "zapdos": 0.8484045752100857, - "moltres": 0.8229522127139781, - "mewtwo": 0.6538078264311737, - "raikou": 2.661247893874375, - "entei": 1.5304126177836281, - "suicune": 1.1117820958580107, - "lugia": 0.9507245657371522, - "ho-oh": 1.18013261874174, - "latias": 0.7387453109812211, - "latios": 1.0570471344727497, - "kyogre": 0.36439522119000545, - "groudon": 0.2934976856123146, - "rayquaza": 0.44864792755510563, - "uxie": 1.0697730743292668, - "mesprit": 1.0216129534294525, - "azelf": 0.9556315908431947, - "dialga": 0.8030441109021603, - "palkia": 0.4224747228214776, - "heatran": 1.0058514186273526, - "giratina-altered": 0.663242937380451, - "cresselia": 0.5499222143060538, - "tornadus-incarnate": 0.8012751762765238, - "thundurus-incarnate": 1.219111165945088, - "reshiram": 0.8125002841055002, - "zekrom": 0.9106781868242808, - "landorus-incarnate": 0.4148941805345078, - "kyurem": 0.5271129451016615, - "xerneas": 0.36113086735151, - "yveltal": 0.5422971953455078, - "zygarde-50": 0.35529225632115113, - "tapu-koko": 1.802156569713314, - "tapu-lele": 1.5134179766155467, - "tapu-bulu": 0.6506997994184134, - "tapu-fini": 0.5476028896330616, - "solgaleo": 0.862061770572446, - "lunala": 0.5861195230663523, - "nihilego": 2.586551630027417, - "buzzwole": 0.8093635186919321, - "pheromosa": 1.1697768768294803, - "xurkitree": 1.1745940877833307, - "celesteela": 0.5954227371057417, - "kartana": 0.9867571842126236, - "guzzlord": 0.6760516380449356, - "necrozma": 1.1962157996038516, - "stakataka": 0.9166223114713823, - "blacephalon": 2.11499873120636 + "articuno": 0.9761127424090705, + "zapdos": 0.8479994611863122, + "moltres": 0.8220666477977027, + "mewtwo": 0.6517636133756975, + "raikou": 2.66819446568652, + "entei": 1.5293266479657261, + "suicune": 1.1060754507732373, + "lugia": 0.9481760606013682, + "ho-oh": 1.1787488454359862, + "latias": 0.7352157433893964, + "latios": 1.052713910349648, + "kyogre": 0.3634429224744826, + "groudon": 0.2925943538473129, + "rayquaza": 0.4469924984075919, + "uxie": 1.0653998398645417, + "mesprit": 1.0173133930748346, + "azelf": 0.9514122981587593, + "dialga": 0.8022907041957331, + "palkia": 0.4208826728471438, + "heatran": 1.0070335708771019, + "giratina-altered": 0.6619821909051722, + "cresselia": 0.5472950872373509, + "tornadus-incarnate": 0.7991543684162018, + "thundurus-incarnate": 1.220883041999293, + "reshiram": 0.8130075430685277, + "zekrom": 0.9122462669944622, + "landorus-incarnate": 0.41328747606135807, + "kyurem": 0.5253081909624084, + "xerneas": 0.36031166027271955, + "yveltal": 0.5405974015531966, + "zygarde-50": 0.3542720593714639, + "tapu-koko": 1.8055194952862168, + "tapu-lele": 1.510233850430855, + "tapu-bulu": 0.6462056244430949, + "tapu-fini": 0.545552953782571, + "solgaleo": 0.860373206839435, + "lunala": 0.5849622926524292, + "nihilego": 2.5944559976360058, + "buzzwole": 0.8052833288481253, + "pheromosa": 1.165162130421071, + "xurkitree": 1.176672008610049, + "celesteela": 0.5932265395104619, + "kartana": 0.97829754280215, + "guzzlord": 0.6738653717714082, + "necrozma": 1.1947032513602647, + "stakataka": 0.9160077334192374, + "blacephalon": 2.115958329577301 }, "dugtrio-alola": { - "articuno": 1.062028191766251, - "zapdos": 0.7116854351097877, - "moltres": 0.38639104482608344, - "mewtwo": 0.8351754738030535, - "raikou": 2.880535547396281, - "entei": 1.4593027457515542, - "suicune": 1.215169633997033, - "lugia": 1.0308094365069946, - "ho-oh": 0.5683894272513872, - "latias": 0.9924767824884304, - "latios": 1.4050377733606358, - "kyogre": 0.36927401989588865, - "groudon": 0.23272124835702496, - "rayquaza": 0.4616692158476544, - "uxie": 1.4703515663576576, - "mesprit": 1.445616276642322, - "azelf": 1.375561498282174, - "dialga": 0.9363910641623718, - "palkia": 0.4472652024688858, - "heatran": 0.8335094389804993, - "giratina-altered": 0.763903097716494, - "cresselia": 0.7966040954597925, - "tornadus-incarnate": 0.7537997930900797, - "thundurus-incarnate": 1.0293204602158108, - "reshiram": 0.7647872791517483, - "zekrom": 1.0059446929413527, - "landorus-incarnate": 0.4021616136684398, - "kyurem": 0.7715615215375551, - "xerneas": 0.5682608644298673, - "yveltal": 0.528296706658475, - "zygarde-50": 0.2929668578137815, - "tapu-koko": 1.9446610490444984, - "tapu-lele": 2.410709050978083, - "tapu-bulu": 1.1286668034779046, - "tapu-fini": 0.5583446152787113, - "solgaleo": 0.9844908524579985, - "lunala": 0.9259161641264251, - "nihilego": 2.9746259026579036, - "buzzwole": 0.8867263278787011, - "pheromosa": 1.3865207176880228, - "xurkitree": 1.2412390397379744, - "celesteela": 0.5553879291705854, - "kartana": 1.1485980848164632, - "guzzlord": 0.7109980595110679, - "necrozma": 1.4043497039534494, - "stakataka": 1.0279849013556845, - "blacephalon": 1.9642111159268214 + "articuno": 1.0617686506182544, + "zapdos": 0.7125760075063579, + "moltres": 0.3846095293767272, + "mewtwo": 0.8364496714545364, + "raikou": 2.8932542688978744, + "entei": 1.4558135481494132, + "suicune": 1.2110011683282211, + "lugia": 1.0314329439435448, + "ho-oh": 0.5656322058482336, + "latias": 0.9921104772262808, + "latios": 1.4047368714632458, + "kyogre": 0.3686586646304254, + "groudon": 0.23171275348189205, + "rayquaza": 0.46151781879840875, + "uxie": 1.4707192824177016, + "mesprit": 1.4468179138606412, + "azelf": 1.376622449092502, + "dialga": 0.9387767616795731, + "palkia": 0.44640856392734446, + "heatran": 0.8334081677621947, + "giratina-altered": 0.7650311694786731, + "cresselia": 0.79715843289809, + "tornadus-incarnate": 0.7529059616000717, + "thundurus-incarnate": 1.031910525280972, + "reshiram": 0.763783989159096, + "zekrom": 1.009701480031376, + "landorus-incarnate": 0.40034003095301357, + "kyurem": 0.7718193340668899, + "xerneas": 0.5695095255413256, + "yveltal": 0.5275046806390236, + "zygarde-50": 0.292108042921692, + "tapu-koko": 1.9528243908722531, + "tapu-lele": 2.417865564722573, + "tapu-bulu": 1.1264641822877797, + "tapu-fini": 0.5569345378307765, + "solgaleo": 0.9862224184290829, + "lunala": 0.9271747041259599, + "nihilego": 2.9940813714704975, + "buzzwole": 0.8833281350649037, + "pheromosa": 1.3830711589231117, + "xurkitree": 1.2456327533203, + "celesteela": 0.554395339140602, + "kartana": 1.1445238929011157, + "guzzlord": 0.7098371500617136, + "necrozma": 1.4082830606398478, + "stakataka": 1.0301028289570846, + "blacephalon": 1.9622766110512542 }, "persian": { - "articuno": 0.7273430454654535, - "zapdos": 0.6041286613951409, - "moltres": 0.5092107027913018, - "mewtwo": 0.684713085540337, - "raikou": 1.490959132154842, - "entei": 1.076193120916804, - "suicune": 1.1981401331300257, - "lugia": 0.8117326310544822, - "ho-oh": 0.6826745158233747, - "latias": 1.0286568279456627, - "latios": 1.240707641589263, - "kyogre": 0.41250896886965205, - "groudon": 0.30441145325496516, - "rayquaza": 0.441795331191041, - "uxie": 1.1909756773499032, - "mesprit": 1.0904451352176838, - "azelf": 1.0311057987916041, - "dialga": 0.48287319395784667, - "palkia": 0.5238383660453749, - "heatran": 0.35845225328885, - "giratina-altered": 0.7642644895071249, - "cresselia": 0.6309005129475789, - "tornadus-incarnate": 0.7166741028603224, - "thundurus-incarnate": 0.7882914332551927, - "reshiram": 0.5268335548521299, - "zekrom": 0.6194694744718171, - "landorus-incarnate": 0.44756067701985536, - "kyurem": 0.5974340258653137, - "xerneas": 0.3418443917495902, - "yveltal": 0.5301044065924672, - "zygarde-50": 0.394070298665792, - "tapu-koko": 1.0029580580420818, - "tapu-lele": 1.3933491451548383, - "tapu-bulu": 0.8022439049359131, - "tapu-fini": 0.6023497756303208, - "solgaleo": 0.5276775412670002, - "lunala": 0.544595229622856, - "nihilego": 0.809309861167506, - "buzzwole": 0.9603517787014876, - "pheromosa": 1.365013307726396, - "xurkitree": 0.6713072916898231, - "celesteela": 0.5575593012378651, - "kartana": 1.1525837542480324, - "guzzlord": 0.9841779447694251, - "necrozma": 1.044324385544424, - "stakataka": 0.43760610672260675, - "blacephalon": 1.141884222460744 + "articuno": 0.7267120353462407, + "zapdos": 0.60388199898229, + "moltres": 0.5087920202777075, + "mewtwo": 0.6839040592244461, + "raikou": 1.4894579646595305, + "entei": 1.0748830447697675, + "suicune": 1.196850430591999, + "lugia": 0.8110385632951636, + "ho-oh": 0.6821518374745695, + "latias": 1.0284912135818116, + "latios": 1.2396364845726104, + "kyogre": 0.4122738339286328, + "groudon": 0.3038633830726932, + "rayquaza": 0.441595407295059, + "uxie": 1.1908413118539773, + "mesprit": 1.0891265238397585, + "azelf": 1.0298572859645847, + "dialga": 0.48197351962973317, + "palkia": 0.5238563044742814, + "heatran": 0.3576595499056487, + "giratina-altered": 0.7646369107124432, + "cresselia": 0.6302802185461938, + "tornadus-incarnate": 0.7163976015155527, + "thundurus-incarnate": 0.7878101950282683, + "reshiram": 0.5266467244698412, + "zekrom": 0.619096125470211, + "landorus-incarnate": 0.4469917942019136, + "kyurem": 0.5976900915407877, + "xerneas": 0.3417650640204588, + "yveltal": 0.5300439379401398, + "zygarde-50": 0.3939410905917652, + "tapu-koko": 1.0022994750842966, + "tapu-lele": 1.3923427292618942, + "tapu-bulu": 0.8006273726130888, + "tapu-fini": 0.6021508784167899, + "solgaleo": 0.526209643549433, + "lunala": 0.5443203361895642, + "nihilego": 0.8072515562275392, + "buzzwole": 0.9577807582083544, + "pheromosa": 1.3626922912871164, + "xurkitree": 0.6707642194542109, + "celesteela": 0.5564125916602339, + "kartana": 1.1490711108076415, + "guzzlord": 0.9844592460592771, + "necrozma": 1.0431178390553466, + "stakataka": 0.4358737524505717, + "blacephalon": 1.1388561749249573 }, "persian-alola": { - "articuno": 0.6910058456978736, - "zapdos": 0.5827737947814525, - "moltres": 0.5044435797030575, - "mewtwo": 0.9264345623004877, - "raikou": 1.4023872353934244, - "entei": 1.1119488343391395, - "suicune": 1.2416236871777535, - "lugia": 1.011302086015895, - "ho-oh": 0.664247874232833, - "latias": 1.1405694671975293, - "latios": 1.3967941055052542, - "kyogre": 0.3876227176064972, - "groudon": 0.3104974180004181, - "rayquaza": 0.39606663971596046, - "uxie": 1.6033360326697377, - "mesprit": 1.3830346815301116, - "azelf": 1.2061592800524754, - "dialga": 0.5371158129954483, - "palkia": 0.4358015718402588, - "heatran": 0.4152327155754617, - "giratina-altered": 0.7931143724159628, - "cresselia": 0.8157820485923682, - "tornadus-incarnate": 0.6848254336546538, - "thundurus-incarnate": 0.7503404146370308, - "reshiram": 0.5174259597070152, - "zekrom": 0.5649381960403641, - "landorus-incarnate": 0.44938023454013365, - "kyurem": 0.5185135586278851, - "xerneas": 0.24170057690893448, - "yveltal": 0.4539535867701599, - "zygarde-50": 0.3662743817208477, - "tapu-koko": 0.8691138528332732, - "tapu-lele": 1.4148320375944348, - "tapu-bulu": 0.681348195239416, - "tapu-fini": 0.4822192946762633, - "solgaleo": 0.8540755813911758, - "lunala": 0.8567324857945309, - "nihilego": 0.9078988381332213, - "buzzwole": 0.7576399826996387, - "pheromosa": 1.0049085449970336, - "xurkitree": 0.6708375237484309, - "celesteela": 0.6474709103928722, - "kartana": 1.425007024679529, - "guzzlord": 0.6059608288242899, - "necrozma": 1.4758208538640565, - "stakataka": 0.5757649128331876, - "blacephalon": 1.7089575132784223 + "articuno": 0.6896252083498267, + "zapdos": 0.5818003476333197, + "moltres": 0.5036558082343852, + "mewtwo": 0.9291167681758541, + "raikou": 1.3991358389063007, + "entei": 1.1103174811770258, + "suicune": 1.2400892441811306, + "lugia": 1.0120354663814415, + "ho-oh": 0.6635432768261819, + "latias": 1.1425349676451504, + "latios": 1.397909322771823, + "kyogre": 0.3868820804892377, + "groudon": 0.30968517296482767, + "rayquaza": 0.3952574932534958, + "uxie": 1.607831458148317, + "mesprit": 1.3834059404593042, + "azelf": 1.206194130254945, + "dialga": 0.5361453905762732, + "palkia": 0.4349395893916964, + "heatran": 0.4147572930905479, + "giratina-altered": 0.7938174002090257, + "cresselia": 0.8173584547907196, + "tornadus-incarnate": 0.6837228577885758, + "thundurus-incarnate": 0.7488896252096694, + "reshiram": 0.5169167791666271, + "zekrom": 0.5636331703619079, + "landorus-incarnate": 0.4483325399641743, + "kyurem": 0.5176119740399843, + "xerneas": 0.24036122291089257, + "yveltal": 0.4532583121678286, + "zygarde-50": 0.36557534433160094, + "tapu-koko": 0.8664975309560474, + "tapu-lele": 1.4149269627296706, + "tapu-bulu": 0.6780810496567367, + "tapu-fini": 0.4804103619459571, + "solgaleo": 0.8546945437077069, + "lunala": 0.8580030392328668, + "nihilego": 0.9059112426356839, + "buzzwole": 0.7525083359436298, + "pheromosa": 0.9988816209940033, + "xurkitree": 0.6696263969260744, + "celesteela": 0.6464802363229891, + "kartana": 1.4219846901764255, + "guzzlord": 0.6044050823674141, + "necrozma": 1.4792393652940758, + "stakataka": 0.5745189783941513, + "blacephalon": 1.7105903601235637 }, "golduck": { - "articuno": 0.8312898842767971, - "zapdos": 0.6095608207667444, - "moltres": 0.8384026192144176, - "mewtwo": 0.8080523584453054, - "raikou": 1.4352442234070304, - "entei": 1.7315063165391904, - "suicune": 1.2953682569418934, - "lugia": 0.8808584083689128, - "ho-oh": 0.9046665529310958, - "latias": 0.9845815331180248, - "latios": 1.1742919432332544, - "kyogre": 0.4657383592226856, - "groudon": 0.5107166907984425, - "rayquaza": 0.40672194257473404, - "uxie": 1.2907325409938295, - "mesprit": 1.234460020206546, - "azelf": 1.1746693401302895, - "dialga": 0.534330751847525, - "palkia": 0.5132562452239184, - "heatran": 0.7254804097391334, - "giratina-altered": 0.5678906220157276, - "cresselia": 0.7113799810178417, - "tornadus-incarnate": 0.8288417967947739, - "thundurus-incarnate": 0.7809050272218467, - "reshiram": 0.59002033749141, - "zekrom": 0.5290632119089302, - "landorus-incarnate": 0.7100745828431336, - "kyurem": 0.5690155972998977, - "xerneas": 0.3784522627585617, - "yveltal": 0.5314112738165528, - "zygarde-50": 0.43406671749463943, - "tapu-koko": 1.0541725461033038, - "tapu-lele": 1.4371360938059894, - "tapu-bulu": 0.8019009834947861, - "tapu-fini": 0.6706799468039302, - "solgaleo": 0.7718134955797049, - "lunala": 0.5739042769337978, - "nihilego": 1.1860471455467443, - "buzzwole": 1.2665930172137272, - "pheromosa": 1.4400771638498284, - "xurkitree": 0.664847122342882, - "celesteela": 0.7931693763983896, - "kartana": 1.2313976424706246, - "guzzlord": 0.6894449280900523, - "necrozma": 1.1784051674474925, - "stakataka": 0.89912359800682, - "blacephalon": 1.8674437687296717 + "articuno": 0.8322049431502191, + "zapdos": 0.6089447723309049, + "moltres": 0.8409623032693843, + "mewtwo": 0.8081873312016024, + "raikou": 1.432164457653661, + "entei": 1.735899298222354, + "suicune": 1.295310578867151, + "lugia": 0.8809348372901113, + "ho-oh": 0.907348094452764, + "latias": 0.983982855749425, + "latios": 1.1731681531492977, + "kyogre": 0.4655299416078213, + "groudon": 0.5115909128289962, + "rayquaza": 0.4062913716371528, + "uxie": 1.2904689840152117, + "mesprit": 1.2340966396584498, + "azelf": 1.174363220773622, + "dialga": 0.5341487167050477, + "palkia": 0.5130535826825899, + "heatran": 0.7278109741815084, + "giratina-altered": 0.5667900966584848, + "cresselia": 0.7114872100303649, + "tornadus-incarnate": 0.8296244437086043, + "thundurus-incarnate": 0.779579285989671, + "reshiram": 0.590825896309875, + "zekrom": 0.5274713203868475, + "landorus-incarnate": 0.711320575587267, + "kyurem": 0.5689044277333858, + "xerneas": 0.3784197246765999, + "yveltal": 0.5314758804840739, + "zygarde-50": 0.434096499370508, + "tapu-koko": 1.052783235358952, + "tapu-lele": 1.4372657069762833, + "tapu-bulu": 0.799627848705643, + "tapu-fini": 0.6711281253630486, + "solgaleo": 0.7726244854599489, + "lunala": 0.5732370875291382, + "nihilego": 1.1866110689753877, + "buzzwole": 1.2663473588506502, + "pheromosa": 1.4398426290796857, + "xurkitree": 0.6632092859365908, + "celesteela": 0.7942066008086767, + "kartana": 1.2266154431980434, + "guzzlord": 0.6886616632453162, + "necrozma": 1.1777024388853106, + "stakataka": 0.9003301307057973, + "blacephalon": 1.8714450388119834 }, "poliwrath": { - "articuno": 0.9039459345748322, - "zapdos": 0.6522507838994394, - "moltres": 0.8805656024384687, - "mewtwo": 0.8051734352979643, - "raikou": 1.7012950709899985, - "entei": 1.8358747046529027, - "suicune": 1.4539435873104138, - "lugia": 0.9454584356859306, - "ho-oh": 1.1947534689726658, - "latias": 1.066200691538447, - "latios": 1.1620029576930393, - "kyogre": 0.6199010234378448, - "groudon": 0.4741445001911653, - "rayquaza": 0.41995924542810414, - "uxie": 1.2873387348873147, - "mesprit": 1.239273121841011, - "azelf": 1.1498432451182516, - "dialga": 0.8252525289006782, - "palkia": 0.6429046003154786, - "heatran": 0.8044927348621937, - "giratina-altered": 0.6122112685140559, - "cresselia": 0.7125595058664088, - "tornadus-incarnate": 0.8570773899652716, - "thundurus-incarnate": 0.8975300140677536, - "reshiram": 0.6478812551436317, - "zekrom": 0.5876424417070996, - "landorus-incarnate": 0.7672371628923722, - "kyurem": 0.7759570106336617, - "xerneas": 0.36395643181901327, - "yveltal": 0.5894302333534989, - "zygarde-50": 0.44378732501079976, - "tapu-koko": 1.0869961565593043, - "tapu-lele": 1.5281165726979946, - "tapu-bulu": 0.8659488545931058, - "tapu-fini": 0.7779672051494418, - "solgaleo": 0.7505771765448656, - "lunala": 0.6295619932399315, - "nihilego": 1.6723155337469906, - "buzzwole": 1.110284534906112, - "pheromosa": 1.5986445329516774, - "xurkitree": 0.7411733512933263, - "celesteela": 0.8650324044326954, - "kartana": 1.281476803247676, - "guzzlord": 1.0026600839375548, - "necrozma": 1.164406205490071, - "stakataka": 0.9541100961550031, - "blacephalon": 2.3933680915752245 + "articuno": 0.9056873818679017, + "zapdos": 0.6516830070605784, + "moltres": 0.8830134272074193, + "mewtwo": 0.8043101874336878, + "raikou": 1.7015129806551057, + "entei": 1.8427329272167319, + "suicune": 1.4581353214502042, + "lugia": 0.945164626002311, + "ho-oh": 1.1989982841231746, + "latias": 1.066117185530333, + "latios": 1.1609378621150386, + "kyogre": 0.6225241257925117, + "groudon": 0.47521058919434955, + "rayquaza": 0.4197194751484385, + "uxie": 1.2860583629891433, + "mesprit": 1.2380263631632638, + "azelf": 1.1487499848824572, + "dialga": 0.8278115330550788, + "palkia": 0.6454167726490437, + "heatran": 0.8088023714741803, + "giratina-altered": 0.6114782658086173, + "cresselia": 0.7116797191148017, + "tornadus-incarnate": 0.8573060770635132, + "thundurus-incarnate": 0.8971465737556428, + "reshiram": 0.6495403525402786, + "zekrom": 0.587185248334883, + "landorus-incarnate": 0.769128183358083, + "kyurem": 0.7779339821556361, + "xerneas": 0.36354418644106923, + "yveltal": 0.5905147076144727, + "zygarde-50": 0.44439569712418475, + "tapu-koko": 1.0859254403029297, + "tapu-lele": 1.5259670879138874, + "tapu-bulu": 0.8649475059976425, + "tapu-fini": 0.7807196585429739, + "solgaleo": 0.751726743061123, + "lunala": 0.6287566680429433, + "nihilego": 1.6776565114692685, + "buzzwole": 1.1109845010711807, + "pheromosa": 1.6015801781268912, + "xurkitree": 0.7408113447768119, + "celesteela": 0.8677739473277024, + "kartana": 1.2786783485082376, + "guzzlord": 1.0052814676982085, + "necrozma": 1.1631465836329586, + "stakataka": 0.9578666900844787, + "blacephalon": 2.3983907466416916 }, "kadabra": { - "articuno": 0.7972509868370563, - "zapdos": 0.6516235793579599, - "moltres": 0.5790326228594336, - "mewtwo": 0.71655808275216, - "raikou": 1.5336029449556978, - "entei": 1.0391709911101914, - "suicune": 1.276645729605149, - "lugia": 0.8119806716666869, - "ho-oh": 0.6586994115440574, - "latias": 1.0649944843270331, - "latios": 1.4122554229394386, - "kyogre": 0.4312294901559256, - "groudon": 0.3011772974066392, - "rayquaza": 0.4182097611280231, - "uxie": 1.1646718306402257, - "mesprit": 1.1399568467620265, - "azelf": 1.0335929191245545, - "dialga": 0.5053804829950057, - "palkia": 0.5281078900782143, - "heatran": 0.35659423287327574, - "giratina-altered": 0.6553930510628043, - "cresselia": 0.644199966570314, - "tornadus-incarnate": 0.8106082777452898, - "thundurus-incarnate": 0.8959511230860735, - "reshiram": 0.6076271482318486, - "zekrom": 0.6420779478812528, - "landorus-incarnate": 0.4424002943471147, - "kyurem": 0.6429504009327616, - "xerneas": 0.3862416747774966, - "yveltal": 0.470121238779568, - "zygarde-50": 0.397396868407052, - "tapu-koko": 1.1205646735230466, - "tapu-lele": 1.273692456260743, - "tapu-bulu": 0.8013749138478601, - "tapu-fini": 0.6852796159038617, - "solgaleo": 0.4855020102746127, - "lunala": 0.4701700602392411, - "nihilego": 1.1955350786156431, - "buzzwole": 1.346456195092942, - "pheromosa": 1.6572339347746061, - "xurkitree": 0.678627908709364, - "celesteela": 0.5170234099306218, - "kartana": 1.1946881605489725, - "guzzlord": 0.8466327709014201, - "necrozma": 1.1207105826343455, - "stakataka": 0.38025312695671354, - "blacephalon": 1.2854092344244867 + "articuno": 0.7965565588853111, + "zapdos": 0.6503654769563552, + "moltres": 0.5781840873084357, + "mewtwo": 0.7161267531136863, + "raikou": 1.529432410686188, + "entei": 1.034198103732915, + "suicune": 1.2737033950243764, + "lugia": 0.8110743151905861, + "ho-oh": 0.6567723273130334, + "latias": 1.0646566103152977, + "latios": 1.4124708379436142, + "kyogre": 0.43069992272554386, + "groudon": 0.300522821316248, + "rayquaza": 0.41696940520432335, + "uxie": 1.1629850878683734, + "mesprit": 1.138886812960632, + "azelf": 1.031701405578514, + "dialga": 0.5035857362137286, + "palkia": 0.5270928846037614, + "heatran": 0.3549792710049122, + "giratina-altered": 0.6521047628794965, + "cresselia": 0.6436712791505443, + "tornadus-incarnate": 0.8103923536788037, + "thundurus-incarnate": 0.8954672195585249, + "reshiram": 0.6076203976423646, + "zekrom": 0.6398069286209016, + "landorus-incarnate": 0.44143867427101147, + "kyurem": 0.6422902497978672, + "xerneas": 0.3860465824594137, + "yveltal": 0.4675945652861173, + "zygarde-50": 0.3967026501356012, + "tapu-koko": 1.1183710230717578, + "tapu-lele": 1.2717175492950965, + "tapu-bulu": 0.79759737147996, + "tapu-fini": 0.6850820849130788, + "solgaleo": 0.482905534323937, + "lunala": 0.4676547763093725, + "nihilego": 1.1944037795404798, + "buzzwole": 1.3388595981683846, + "pheromosa": 1.6502712169190832, + "xurkitree": 0.6772052565427711, + "celesteela": 0.5150347498599268, + "kartana": 1.1882892478333322, + "guzzlord": 0.842085386914635, + "necrozma": 1.1199203842381322, + "stakataka": 0.37773039759213234, + "blacephalon": 1.2807473249938712 }, "machoke": { - "articuno": 1.0904597883440432, - "zapdos": 0.6819730642305036, - "moltres": 0.7918168141146475, - "mewtwo": 0.7059713905585813, - "raikou": 1.5257602216833037, - "entei": 1.3087401961183467, - "suicune": 1.1713084825841678, - "lugia": 0.8749439271934136, - "ho-oh": 1.1436961528848868, - "latias": 0.9804707699423846, - "latios": 1.2160762821234847, - "kyogre": 0.4180644555435993, - "groudon": 0.3100200993689375, - "rayquaza": 0.46102593225431837, - "uxie": 1.161177124112757, - "mesprit": 1.1164452783665324, - "azelf": 1.0194648148945145, - "dialga": 0.7127135089761325, - "palkia": 0.47759815706449493, - "heatran": 0.5611492308797807, - "giratina-altered": 0.7130850072899799, - "cresselia": 0.6396484587957869, - "tornadus-incarnate": 0.7651160966493687, - "thundurus-incarnate": 0.9376936590278278, - "reshiram": 0.601629702292204, - "zekrom": 0.5802732838727889, - "landorus-incarnate": 0.4642705285383122, - "kyurem": 0.6528322396816724, - "xerneas": 0.27364783522852787, - "yveltal": 0.5731314117158328, - "zygarde-50": 0.375133436574127, - "tapu-koko": 0.9308815469988061, - "tapu-lele": 1.1422432734052697, - "tapu-bulu": 0.850038776879309, - "tapu-fini": 0.5494213484028507, - "solgaleo": 0.6708979654451863, - "lunala": 0.7791745769411946, - "nihilego": 0.9906728487534098, - "buzzwole": 0.9599260516064837, - "pheromosa": 1.299397574750781, - "xurkitree": 0.6970727730099581, - "celesteela": 0.6973027147798202, - "kartana": 1.2591588588436542, - "guzzlord": 0.9156999168692308, - "necrozma": 1.0974783261033698, - "stakataka": 0.8561828989674701, - "blacephalon": 1.5987553948987046 + "articuno": 1.0900402776139742, + "zapdos": 0.6807539276369392, + "moltres": 0.791732850212968, + "mewtwo": 0.7032334187172201, + "raikou": 1.5242014429008717, + "entei": 1.3090567048634316, + "suicune": 1.1688768240251584, + "lugia": 0.872842130880153, + "ho-oh": 1.1446705971815179, + "latias": 0.9778351961552596, + "latios": 1.2129134453545003, + "kyogre": 0.41774119136444376, + "groudon": 0.30956649559523974, + "rayquaza": 0.4601735792271024, + "uxie": 1.1570748625629501, + "mesprit": 1.1124339823398934, + "azelf": 1.0160065805471574, + "dialga": 0.7128941096045769, + "palkia": 0.47739877071749204, + "heatran": 0.5616458912011837, + "giratina-altered": 0.7126347724763942, + "cresselia": 0.6370967061211652, + "tornadus-incarnate": 0.7631990241614309, + "thundurus-incarnate": 0.9369405117596068, + "reshiram": 0.6012514641081441, + "zekrom": 0.5796471773513221, + "landorus-incarnate": 0.4638203684155998, + "kyurem": 0.6528046796007719, + "xerneas": 0.2724077393087537, + "yveltal": 0.5728966057756366, + "zygarde-50": 0.37461311777828427, + "tapu-koko": 0.9282092493471412, + "tapu-lele": 1.1366988080823974, + "tapu-bulu": 0.8487527913849064, + "tapu-fini": 0.547906750758719, + "solgaleo": 0.6699016479966684, + "lunala": 0.7781072093369679, + "nihilego": 0.9906815455846871, + "buzzwole": 0.9585267029904532, + "pheromosa": 1.2982947448038298, + "xurkitree": 0.6963960639257689, + "celesteela": 0.6973372332878089, + "kartana": 1.2569148168359612, + "guzzlord": 0.9161952710162151, + "necrozma": 1.0941140614708664, + "stakataka": 0.856895839027412, + "blacephalon": 1.598292668225072 }, "tentacruel": { - "articuno": 0.8690209545549787, - "zapdos": 0.652990441051385, - "moltres": 0.8771701032370857, - "mewtwo": 0.7776356768313519, - "raikou": 1.5155247791495574, - "entei": 1.7550467562877625, - "suicune": 1.2550329816529942, - "lugia": 0.8995657684272621, - "ho-oh": 0.8904159157494866, - "latias": 0.949858074337301, - "latios": 1.1360855329148434, - "kyogre": 0.4836848335807023, - "groudon": 0.4344386765974984, - "rayquaza": 0.40489223672636293, - "uxie": 1.2926463500564522, - "mesprit": 1.2798462998351137, - "azelf": 1.2431631087630408, - "dialga": 0.5416478878451716, - "palkia": 0.5178725338059004, - "heatran": 0.7598235312478889, - "giratina-altered": 0.5790994417799904, - "cresselia": 0.6813288386560804, - "tornadus-incarnate": 0.8767759934541028, - "thundurus-incarnate": 0.8946155009758581, - "reshiram": 0.6066207375821662, - "zekrom": 0.5058030059760914, - "landorus-incarnate": 0.6156084144130718, - "kyurem": 0.5927062376872854, - "xerneas": 0.48973588571996407, - "yveltal": 0.549924168844311, - "zygarde-50": 0.35497319843067454, - "tapu-koko": 1.2211985001787644, - "tapu-lele": 1.7175144402497695, - "tapu-bulu": 1.4535172012852575, - "tapu-fini": 0.8897765624981558, - "solgaleo": 0.7247085097736747, - "lunala": 0.6163060382552574, - "nihilego": 1.1538984859527357, - "buzzwole": 1.3773793936856622, - "pheromosa": 1.5365705758933443, - "xurkitree": 0.7316024233054931, - "celesteela": 0.7113395483531617, - "kartana": 1.3578973910491847, - "guzzlord": 0.647868043747091, - "necrozma": 1.1365148168176424, - "stakataka": 0.8940913291892938, - "blacephalon": 1.843958262747789 + "articuno": 0.8709233391125157, + "zapdos": 0.6531073232669273, + "moltres": 0.8807838896447846, + "mewtwo": 0.776732034204634, + "raikou": 1.5136592815918828, + "entei": 1.7606232496752976, + "suicune": 1.254959118692659, + "lugia": 0.9003309062127023, + "ho-oh": 0.8929979812505391, + "latias": 0.9484958083920061, + "latios": 1.1346392206724243, + "kyogre": 0.48393143737235733, + "groudon": 0.4346657428622745, + "rayquaza": 0.4046358026780793, + "uxie": 1.292514193783699, + "mesprit": 1.2805481585480667, + "azelf": 1.2435146722394879, + "dialga": 0.5413836907079819, + "palkia": 0.5178279852504152, + "heatran": 0.7626197822310787, + "giratina-altered": 0.5786282712988265, + "cresselia": 0.680651700391339, + "tornadus-incarnate": 0.8787646488365685, + "thundurus-incarnate": 0.8950262675648284, + "reshiram": 0.607959459663865, + "zekrom": 0.5041525160811251, + "landorus-incarnate": 0.6157575596176423, + "kyurem": 0.5932811516947954, + "xerneas": 0.49157026543643734, + "yveltal": 0.5504257576818076, + "zygarde-50": 0.3543040300675092, + "tapu-koko": 1.222417877145494, + "tapu-lele": 1.7178212350248625, + "tapu-bulu": 1.4563497217367627, + "tapu-fini": 0.8927099852672276, + "solgaleo": 0.7245062050883764, + "lunala": 0.6169301406418086, + "nihilego": 1.1555733881363146, + "buzzwole": 1.3804850924920928, + "pheromosa": 1.5392159074803167, + "xurkitree": 0.7313439775592561, + "celesteela": 0.7115344246570701, + "kartana": 1.3565327415536934, + "guzzlord": 0.6466510728403383, + "necrozma": 1.1353581018009118, + "stakataka": 0.8957875209937524, + "blacephalon": 1.8483099010715458 }, "slowbro": { - "articuno": 0.9754968118847043, - "zapdos": 0.6744188454187754, - "moltres": 0.6831078102982264, - "mewtwo": 0.8104541562833419, - "raikou": 1.6187240088461314, - "entei": 1.3885264728733997, - "suicune": 1.5750158755948278, - "lugia": 0.867719915790314, - "ho-oh": 0.814711924532348, - "latias": 0.9397921181956921, - "latios": 1.1553179065139858, - "kyogre": 0.5150808004883103, - "groudon": 0.4329448223231219, - "rayquaza": 0.4735813195755998, - "uxie": 1.2533356195186198, - "mesprit": 1.218338725775041, - "azelf": 1.1607978483916706, - "dialga": 0.6353979418813178, - "palkia": 0.5966475371240965, - "heatran": 0.46393372855992543, - "giratina-altered": 0.7060335929736801, - "cresselia": 0.7135605785480601, - "tornadus-incarnate": 0.8977221281044878, - "thundurus-incarnate": 0.8630063422269829, - "reshiram": 0.6508816690376414, - "zekrom": 0.6986031565795023, - "landorus-incarnate": 0.6075028554836974, - "kyurem": 0.6446442836609501, - "xerneas": 0.41144507534412256, - "yveltal": 0.47262123780091336, - "zygarde-50": 0.48937731311967003, - "tapu-koko": 1.161675757570646, - "tapu-lele": 1.4655107861939154, - "tapu-bulu": 1.169969128817554, - "tapu-fini": 0.7743901699896019, - "solgaleo": 0.998471776184964, - "lunala": 0.5194345137630023, - "nihilego": 1.3720948328248408, - "buzzwole": 1.92320528287684, - "pheromosa": 2.012420937541858, - "xurkitree": 0.7178836747223476, - "celesteela": 1.0264788565433158, - "kartana": 3.3309646888640465, - "guzzlord": 0.61475985211657, - "necrozma": 1.1844425389562327, - "stakataka": 0.6384841825069392, - "blacephalon": 1.6026378475407754 + "articuno": 0.9784745127334458, + "zapdos": 0.6750596374556825, + "moltres": 0.6849827747584017, + "mewtwo": 0.8118787525023661, + "raikou": 1.6185392336448663, + "entei": 1.3913897699493294, + "suicune": 1.5792143249777264, + "lugia": 0.8681706956278131, + "ho-oh": 0.8170154959883831, + "latias": 0.9403331569682576, + "latios": 1.1559060292360512, + "kyogre": 0.5158044074178998, + "groudon": 0.4341721575375838, + "rayquaza": 0.47415174394039344, + "uxie": 1.2535511702325106, + "mesprit": 1.2189800485875515, + "azelf": 1.1616215202297853, + "dialga": 0.6367225580154925, + "palkia": 0.5979333625893666, + "heatran": 0.46357697277780063, + "giratina-altered": 0.706363858979376, + "cresselia": 0.7146970505424362, + "tornadus-incarnate": 0.8998520276826326, + "thundurus-incarnate": 0.8629508491756013, + "reshiram": 0.6523783576381005, + "zekrom": 0.6989316237008114, + "landorus-incarnate": 0.6091801322117494, + "kyurem": 0.6455884977883057, + "xerneas": 0.41213478756477717, + "yveltal": 0.4715480325379219, + "zygarde-50": 0.4902118706005209, + "tapu-koko": 1.162487092717975, + "tapu-lele": 1.4677195646600039, + "tapu-bulu": 1.1718124266866825, + "tapu-fini": 0.7763880074867445, + "solgaleo": 1.0014937756431486, + "lunala": 0.5183505857918298, + "nihilego": 1.3749364452451998, + "buzzwole": 1.930081070474892, + "pheromosa": 2.0186415238569406, + "xurkitree": 0.7174176939894417, + "celesteela": 1.0299012588728425, + "kartana": 3.3377568516429683, + "guzzlord": 0.613138064265367, + "necrozma": 1.1853119216612127, + "stakataka": 0.6391471127758672, + "blacephalon": 1.6064554964160416 }, "magneton": { - "articuno": 1.1952681464137864, - "zapdos": 0.794601035401666, - "moltres": 0.6656627954612279, - "mewtwo": 0.9116183948264827, - "raikou": 1.5308847946270165, - "entei": 1.2266085317884412, - "suicune": 2.009391607647397, - "lugia": 1.2817893128389897, - "ho-oh": 0.8440199854746626, - "latias": 1.0313200434041416, - "latios": 1.29623898406978, - "kyogre": 0.5541636928500568, - "groudon": 0.2678270706681191, - "rayquaza": 0.5235936544702524, - "uxie": 1.4840694798906513, - "mesprit": 1.456486040797183, - "azelf": 1.3992872799226923, - "dialga": 0.6171189265263936, - "palkia": 0.528756042266598, - "heatran": 0.4071394656706149, - "giratina-altered": 0.7865476720187194, - "cresselia": 0.8175287914858265, - "tornadus-incarnate": 1.0807618476996341, - "thundurus-incarnate": 1.0666191360142534, - "reshiram": 0.45548921649562574, - "zekrom": 0.6460511967657565, - "landorus-incarnate": 0.41721757616811245, - "kyurem": 0.924876072121172, - "xerneas": 0.6373368954981123, - "yveltal": 0.7704284688929919, - "zygarde-50": 0.30635847814969186, - "tapu-koko": 1.4557930089984057, - "tapu-lele": 2.2444448413803384, - "tapu-bulu": 1.5738007322161645, - "tapu-fini": 0.9191054632222407, - "solgaleo": 0.8396451996389237, - "lunala": 0.6331719930520787, - "nihilego": 1.3500876122466658, - "buzzwole": 1.3953654720702815, - "pheromosa": 1.595489354794533, - "xurkitree": 0.7242710010338432, - "celesteela": 0.9367196224705973, - "kartana": 1.5634935531177474, - "guzzlord": 0.7972669743701883, - "necrozma": 1.431031544447763, - "stakataka": 0.7971959755140001, - "blacephalon": 1.2939345008221022 + "articuno": 1.1991164990064558, + "zapdos": 0.7960156148588873, + "moltres": 0.6645888623074181, + "mewtwo": 0.912943153707352, + "raikou": 1.530438332218107, + "entei": 1.2240190673673015, + "suicune": 2.0111616985045293, + "lugia": 1.2847344217919208, + "ho-oh": 0.8428351489553907, + "latias": 1.0311596681799982, + "latios": 1.2951776525174012, + "kyogre": 0.5541724779116768, + "groudon": 0.2664689847502859, + "rayquaza": 0.524610652330481, + "uxie": 1.4851055747513167, + "mesprit": 1.458261796112208, + "azelf": 1.4011986265152019, + "dialga": 0.6180086002224322, + "palkia": 0.5286922008700443, + "heatran": 0.40623556604740735, + "giratina-altered": 0.7868345490967165, + "cresselia": 0.8188193507739395, + "tornadus-incarnate": 1.0825487911922491, + "thundurus-incarnate": 1.0679593508387046, + "reshiram": 0.45378113334854975, + "zekrom": 0.6461846265382077, + "landorus-incarnate": 0.41502830656631, + "kyurem": 0.9261185490869014, + "xerneas": 0.6391491757737848, + "yveltal": 0.7718889342419286, + "zygarde-50": 0.3048895333792879, + "tapu-koko": 1.4584161403528184, + "tapu-lele": 2.2498167939599334, + "tapu-bulu": 1.57648375338331, + "tapu-fini": 0.919994086256165, + "solgaleo": 0.8410096217360918, + "lunala": 0.6328411145047905, + "nihilego": 1.3532156737093874, + "buzzwole": 1.3965135314217783, + "pheromosa": 1.595348483667097, + "xurkitree": 0.7241439507138763, + "celesteela": 0.9374716183991567, + "kartana": 1.5656672038685917, + "guzzlord": 0.7960353969194258, + "necrozma": 1.4333824841112275, + "stakataka": 0.7992720170230113, + "blacephalon": 1.2898080960955631 }, "haunter": { - "articuno": 0.7165571923316304, - "zapdos": 0.6239925362990851, - "moltres": 0.5404776445561609, - "mewtwo": 0.8409652709917532, - "raikou": 1.6375193969169408, - "entei": 1.1629219168349403, - "suicune": 1.490210313021043, - "lugia": 0.9972802600694469, - "ho-oh": 0.5936726300217207, - "latias": 1.0265781628378026, - "latios": 1.3622053882787504, - "kyogre": 0.453545628148351, - "groudon": 0.5693183284758998, - "rayquaza": 0.3948450613433515, - "uxie": 1.4723374938103158, - "mesprit": 1.6803627760016406, - "azelf": 1.62097360666403, - "dialga": 0.6176263075146321, - "palkia": 0.4684125901785125, - "heatran": 0.42936060282904986, - "giratina-altered": 0.787955360632242, - "cresselia": 0.7738826642805343, - "tornadus-incarnate": 0.7256559882350948, - "thundurus-incarnate": 0.895376035059196, - "reshiram": 0.5108389919286151, - "zekrom": 0.6307171423951105, - "landorus-incarnate": 0.6379624794926233, - "kyurem": 0.5825586301710084, - "xerneas": 0.41422125334472093, - "yveltal": 0.33809890082219984, - "zygarde-50": 0.437190328782334, - "tapu-koko": 1.1240102492304833, - "tapu-lele": 1.5112176671208708, - "tapu-bulu": 1.1070029666198367, - "tapu-fini": 0.7561332060520329, - "solgaleo": 0.8505321134304635, - "lunala": 1.0593071395241556, - "nihilego": 0.9333793100487052, - "buzzwole": 1.7006553889671432, - "pheromosa": 1.7406122706515499, - "xurkitree": 0.6716834754311328, - "celesteela": 0.8360472470639415, - "kartana": 1.8213533154794028, - "guzzlord": 0.5127544871801494, - "necrozma": 1.3277534230501813, - "stakataka": 0.570498913692002, - "blacephalon": 1.527610743346154 + "articuno": 0.7143774733396284, + "zapdos": 0.6222216431468228, + "moltres": 0.5390463586616925, + "mewtwo": 0.8364740921519372, + "raikou": 1.6354661777339856, + "entei": 1.1593765593845962, + "suicune": 1.4874006019810069, + "lugia": 0.9940924827885234, + "ho-oh": 0.5910685012251065, + "latias": 1.0214926109027433, + "latios": 1.3567052895947556, + "kyogre": 0.45309975482304454, + "groudon": 0.5717524057818801, + "rayquaza": 0.3934814515457211, + "uxie": 1.4653723405792616, + "mesprit": 1.6781347381670408, + "azelf": 1.6187422560094924, + "dialga": 0.6161207189193127, + "palkia": 0.4674393157304077, + "heatran": 0.4279210323148065, + "giratina-altered": 0.7845053653557368, + "cresselia": 0.7701095541510871, + "tornadus-incarnate": 0.7238170915242998, + "thundurus-incarnate": 0.8940911713197783, + "reshiram": 0.5089430963140742, + "zekrom": 0.6289126117204809, + "landorus-incarnate": 0.6396569938432393, + "kyurem": 0.5806991052078472, + "xerneas": 0.4144280406404579, + "yveltal": 0.335963155846526, + "zygarde-50": 0.43707941049286025, + "tapu-koko": 1.1223216040212969, + "tapu-lele": 1.5037659225660298, + "tapu-bulu": 1.1075997674248743, + "tapu-fini": 0.7558291578260468, + "solgaleo": 0.8475241241642772, + "lunala": 1.0561991283581633, + "nihilego": 0.9313016525600721, + "buzzwole": 1.705081482665686, + "pheromosa": 1.740501511699025, + "xurkitree": 0.6700928831318752, + "celesteela": 0.8345483700586567, + "kartana": 1.8217607601351582, + "guzzlord": 0.5100895706647224, + "necrozma": 1.3218896005974026, + "stakataka": 0.5695516412376561, + "blacephalon": 1.5220082792661276 }, "kingler": { - "articuno": 0.9398746407883516, - "zapdos": 0.6524710744649014, - "moltres": 1.1709192943288158, - "mewtwo": 0.8754884453342857, - "raikou": 1.8019335867874915, - "entei": 2.0472225010314307, - "suicune": 1.435258937901579, - "lugia": 0.9613285202774742, - "ho-oh": 1.3698997487110811, - "latias": 0.9738000193490199, - "latios": 1.0976965933553193, - "kyogre": 0.5953288716911836, - "groudon": 0.8234882650742381, - "rayquaza": 0.6025931577889669, - "uxie": 1.3211177540642094, - "mesprit": 1.262222937791342, - "azelf": 1.4762953468231623, - "dialga": 0.8787908917811127, - "palkia": 0.5675950824121457, - "heatran": 0.9781377797598523, - "giratina-altered": 0.6363097816217487, - "cresselia": 0.8028633965996386, - "tornadus-incarnate": 1.3877769749053843, - "thundurus-incarnate": 0.9601954934550726, - "reshiram": 0.7339014018281731, - "zekrom": 0.7424530632223076, - "landorus-incarnate": 1.016810520932496, - "kyurem": 0.8289696977418531, - "xerneas": 0.40206688006977875, - "yveltal": 0.58424753032736, - "zygarde-50": 0.8319276273658944, - "tapu-koko": 1.15214781934095, - "tapu-lele": 1.8222761919355492, - "tapu-bulu": 0.8407175774729951, - "tapu-fini": 0.6985276787502792, - "solgaleo": 0.9357046712526924, - "lunala": 0.6266486779816653, - "nihilego": 1.896392040623167, - "buzzwole": 1.1375255065217242, - "pheromosa": 1.622250105280554, - "xurkitree": 0.8354289641477278, - "celesteela": 0.952803410423231, - "kartana": 1.296111460624929, - "guzzlord": 1.022973281789244, - "necrozma": 1.2040348725404912, - "stakataka": 1.0143423437437218, - "blacephalon": 2.8044032350582224 + "articuno": 0.9407540516634765, + "zapdos": 0.650866338355699, + "moltres": 1.1752303050092912, + "mewtwo": 0.8751039964677599, + "raikou": 1.7990700077433401, + "entei": 2.054750402041149, + "suicune": 1.4364332551272208, + "lugia": 0.9593578718921079, + "ho-oh": 1.373884093406942, + "latias": 0.9718756003249827, + "latios": 1.0950018891936555, + "kyogre": 0.5956755771028074, + "groudon": 0.8265893208563455, + "rayquaza": 0.6014082276725389, + "uxie": 1.3181082522013297, + "mesprit": 1.2591833821403107, + "azelf": 1.4736505126158665, + "dialga": 0.8814356746401909, + "palkia": 0.5681283656451388, + "heatran": 0.9836563824847053, + "giratina-altered": 0.6353163877587873, + "cresselia": 0.8022019339034676, + "tornadus-incarnate": 1.387226963883607, + "thundurus-incarnate": 0.956364140982226, + "reshiram": 0.7351936032180485, + "zekrom": 0.7422097690308289, + "landorus-incarnate": 1.019890869851763, + "kyurem": 0.8305771026693335, + "xerneas": 0.40165790296972814, + "yveltal": 0.5843759298977413, + "zygarde-50": 0.8330995514542703, + "tapu-koko": 1.1499478191716133, + "tapu-lele": 1.8217922429409827, + "tapu-bulu": 0.8391543478892507, + "tapu-fini": 0.69849900465077, + "solgaleo": 0.9388901870358409, + "lunala": 0.6251718830950141, + "nihilego": 1.8994539082873987, + "buzzwole": 1.1371390380729052, + "pheromosa": 1.6219525760217328, + "xurkitree": 0.8335827736512089, + "celesteela": 0.9553442427124099, + "kartana": 1.2934811115487879, + "guzzlord": 1.0252173468653392, + "necrozma": 1.2017848093302383, + "stakataka": 1.0191118295819335, + "blacephalon": 2.8127295547789277 }, "exeggutor": { - "articuno": 0.7156641074920773, - "zapdos": 0.7119994526937528, - "moltres": 0.5016725602213409, - "mewtwo": 0.8319022322298428, - "raikou": 2.110432238886482, - "entei": 1.284059954526371, - "suicune": 2.277848332359854, - "lugia": 0.8109836093586962, - "ho-oh": 0.747922245682588, - "latias": 0.9512371498084481, - "latios": 1.171203555144283, - "kyogre": 0.7024527276035143, - "groudon": 0.642505905297584, - "rayquaza": 0.4287711027619916, - "uxie": 1.46926949848373, - "mesprit": 1.4292481128732728, - "azelf": 1.3565488754137807, - "dialga": 0.7124539983576557, - "palkia": 0.6131311700488058, - "heatran": 0.7064383926656608, - "giratina-altered": 0.6565681933648628, - "cresselia": 0.7797304610513967, - "tornadus-incarnate": 0.7058387000604316, - "thundurus-incarnate": 0.9171070114745815, - "reshiram": 0.6552907248732529, - "zekrom": 0.7697252171975613, - "landorus-incarnate": 0.6638475272778497, - "kyurem": 0.5370411010267184, - "xerneas": 0.4389606624044358, - "yveltal": 0.43157036880831356, - "zygarde-50": 0.5443787578046071, - "tapu-koko": 1.4321208680267632, - "tapu-lele": 1.677830165481888, - "tapu-bulu": 0.9344895626261366, - "tapu-fini": 1.1158379412572894, - "solgaleo": 0.8201273597925802, - "lunala": 0.6004051548780258, - "nihilego": 1.596494547743839, - "buzzwole": 1.0425392798218829, - "pheromosa": 1.6989364471918027, - "xurkitree": 0.9426755988985345, - "celesteela": 0.6729882780309366, - "kartana": 1.278733407873123, - "guzzlord": 0.6676426879544994, - "necrozma": 1.4458128460153103, - "stakataka": 0.7733695112755699, - "blacephalon": 1.6742651734480667 + "articuno": 0.7137769972266488, + "zapdos": 0.7121420923858521, + "moltres": 0.5005743530200751, + "mewtwo": 0.8329935235444424, + "raikou": 2.117505252947799, + "entei": 1.2840468605093338, + "suicune": 2.2859959887005257, + "lugia": 0.8100548679238062, + "ho-oh": 0.7470762505259876, + "latias": 0.9516086032846097, + "latios": 1.171597438323413, + "kyogre": 0.7049533394520078, + "groudon": 0.6446508495142819, + "rayquaza": 0.42819433247514505, + "uxie": 1.4696034867353105, + "mesprit": 1.4301037495375901, + "azelf": 1.3574850205747946, + "dialga": 0.7133009667209732, + "palkia": 0.6148063654265076, + "heatran": 0.7067930043165039, + "giratina-altered": 0.6560847598582672, + "cresselia": 0.7804766177888938, + "tornadus-incarnate": 0.7043751348053354, + "thundurus-incarnate": 0.9176111435172165, + "reshiram": 0.655514153089132, + "zekrom": 0.7719596204024062, + "landorus-incarnate": 0.6655671614025528, + "kyurem": 0.5362033403224794, + "xerneas": 0.43986635010761277, + "yveltal": 0.4301867354527463, + "zygarde-50": 0.5459212172848459, + "tapu-koko": 1.4360582048529533, + "tapu-lele": 1.6818086857243282, + "tapu-bulu": 0.934684555578948, + "tapu-fini": 1.1199226439834244, + "solgaleo": 0.8210940039267258, + "lunala": 0.5992877070541348, + "nihilego": 1.598955043434855, + "buzzwole": 1.0396022899949426, + "pheromosa": 1.6949559193025237, + "xurkitree": 0.9460845107917466, + "celesteela": 0.6728056547750065, + "kartana": 1.2798637640391919, + "guzzlord": 0.6669071162185377, + "necrozma": 1.4490196319338642, + "stakataka": 0.77453857733372, + "blacephalon": 1.6740153404515499 }, "marowak": { - "articuno": 0.7510033275869141, - "zapdos": 0.6962816661552873, - "moltres": 0.5032088653686052, - "mewtwo": 0.7511575659119044, - "raikou": 2.3837570147293117, - "entei": 1.4976783322488223, - "suicune": 1.207527574287842, - "lugia": 0.9667765421403155, - "ho-oh": 0.6935455054734246, - "latias": 1.0109393055964175, - "latios": 1.4046960471444652, - "kyogre": 0.3739768125187207, - "groudon": 0.33217629346978095, - "rayquaza": 0.39829978949480505, - "uxie": 1.368295449708623, - "mesprit": 1.308272591010339, - "azelf": 1.252127527221456, - "dialga": 0.7683060991033632, - "palkia": 0.44326975858010165, - "heatran": 0.8946056209658535, - "giratina-altered": 0.7682340673786507, - "cresselia": 0.731749900344308, - "tornadus-incarnate": 0.6713971466462505, - "thundurus-incarnate": 0.9441459346568412, - "reshiram": 0.7278845030942829, - "zekrom": 0.8615349141020858, - "landorus-incarnate": 0.4859812463718397, - "kyurem": 0.559196587180291, - "xerneas": 0.4096399402235298, - "yveltal": 0.4724600194595858, - "zygarde-50": 0.40326983635762925, - "tapu-koko": 1.6475137833872875, - "tapu-lele": 1.7568011907356524, - "tapu-bulu": 0.9734775732443377, - "tapu-fini": 0.5469051753493069, - "solgaleo": 0.8683529928593064, - "lunala": 0.8777267212513213, - "nihilego": 2.196300379195251, - "buzzwole": 0.9514231891082165, - "pheromosa": 1.2899019327740238, - "xurkitree": 1.0877586005555202, - "celesteela": 0.6833941241900143, - "kartana": 1.08916182015222, - "guzzlord": 0.7406739145467147, - "necrozma": 1.330102962054394, - "stakataka": 0.9084041700304069, - "blacephalon": 1.958625016454182 + "articuno": 0.74889568421451, + "zapdos": 0.6968614791395258, + "moltres": 0.5023972407022783, + "mewtwo": 0.7509818182583958, + "raikou": 2.39243857664845, + "entei": 1.4995267004175088, + "suicune": 1.2049714919464622, + "lugia": 0.9660837666440893, + "ho-oh": 0.6931552214296606, + "latias": 1.009845885280471, + "latios": 1.4041895124027968, + "kyogre": 0.3735160507232398, + "groudon": 0.33220369615670353, + "rayquaza": 0.3978128015427661, + "uxie": 1.366973241671703, + "mesprit": 1.3068854412415787, + "azelf": 1.2511310113927387, + "dialga": 0.7696029466209962, + "palkia": 0.4428252205278098, + "heatran": 0.8970209513048507, + "giratina-altered": 0.7695763183738582, + "cresselia": 0.7311889459996495, + "tornadus-incarnate": 0.6702132909725655, + "thundurus-incarnate": 0.9452127658315214, + "reshiram": 0.7286631129025598, + "zekrom": 0.8643362197639357, + "landorus-incarnate": 0.48572092352620144, + "kyurem": 0.5582743990655481, + "xerneas": 0.40974145949914986, + "yveltal": 0.47177701207984624, + "zygarde-50": 0.4033491210530706, + "tapu-koko": 1.6533222297787344, + "tapu-lele": 1.7593417012390442, + "tapu-bulu": 0.9721549071342224, + "tapu-fini": 0.5456278592510769, + "solgaleo": 0.8700963433768022, + "lunala": 0.8788413292276565, + "nihilego": 2.2067474349466973, + "buzzwole": 0.9499532958564305, + "pheromosa": 1.2886574656643544, + "xurkitree": 1.0915155102587368, + "celesteela": 0.682846495835054, + "kartana": 1.085268416875252, + "guzzlord": 0.7407562608615892, + "necrozma": 1.3319449088168585, + "stakataka": 0.9103320103437387, + "blacephalon": 1.9635955308658326 }, "marowak-alola": { - "articuno": 1.2099871722694353, - "zapdos": 0.7281663587464009, - "moltres": 0.6202032316509265, - "mewtwo": 1.0332418579908689, - "raikou": 1.9345665316276477, - "entei": 1.272048586016295, - "suicune": 1.2958699105202425, - "lugia": 1.1055970832466147, - "ho-oh": 0.7908151666504647, - "latias": 1.2257053873609638, - "latios": 1.7686546135921426, - "kyogre": 0.38597089524460626, - "groudon": 0.32479939920326667, - "rayquaza": 0.43738042214008793, - "uxie": 1.6800274016673287, - "mesprit": 1.7864161599916153, - "azelf": 1.6952155439121221, - "dialga": 0.657398096290736, - "palkia": 0.454990342810708, - "heatran": 0.5242159858118499, - "giratina-altered": 0.8250956759187424, - "cresselia": 0.9576105441438894, - "tornadus-incarnate": 0.8912900884032923, - "thundurus-incarnate": 1.0005804171866954, - "reshiram": 0.6080161541376191, - "zekrom": 0.6614578032999939, - "landorus-incarnate": 0.49399972690590205, - "kyurem": 0.7026354823579279, - "xerneas": 0.46740652780758063, - "yveltal": 0.5017618138176584, - "zygarde-50": 0.3598746169472534, - "tapu-koko": 1.217961120435983, - "tapu-lele": 2.1920333676629378, - "tapu-bulu": 1.476732194632015, - "tapu-fini": 0.579573889677528, - "solgaleo": 1.0600782554517387, - "lunala": 1.1400907262412359, - "nihilego": 1.21496972896242, - "buzzwole": 1.4905030429999608, - "pheromosa": 2.268729291564499, - "xurkitree": 0.7843608581055193, - "celesteela": 1.0878067932172633, - "kartana": 2.1628022491373584, - "guzzlord": 0.6395767435254597, - "necrozma": 1.421455505749187, - "stakataka": 0.5419335758502224, - "blacephalon": 2.1265147290626927 + "articuno": 1.2143880462884107, + "zapdos": 0.7290640091867058, + "moltres": 0.6210248205844692, + "mewtwo": 1.0351946959836797, + "raikou": 1.9387848298709514, + "entei": 1.27340339301893, + "suicune": 1.293814500252346, + "lugia": 1.1063136637980593, + "ho-oh": 0.7918999695002389, + "latias": 1.2262310661414544, + "latios": 1.771942540207871, + "kyogre": 0.38540315597948127, + "groudon": 0.3248049010932376, + "rayquaza": 0.43755574816818743, + "uxie": 1.6815142113122057, + "mesprit": 1.7922902259227784, + "azelf": 1.7005963525144232, + "dialga": 0.658649759368156, + "palkia": 0.4541620375507329, + "heatran": 0.5233046917442709, + "giratina-altered": 0.8246364639416386, + "cresselia": 0.9598676214152735, + "tornadus-incarnate": 0.8928873569191771, + "thundurus-incarnate": 1.0020934849623868, + "reshiram": 0.6083360986783583, + "zekrom": 0.6618424616856484, + "landorus-incarnate": 0.49408643248866724, + "kyurem": 0.7040687444449902, + "xerneas": 0.46913165567794624, + "yveltal": 0.5012695606619417, + "zygarde-50": 0.3593851479923349, + "tapu-koko": 1.2198402165609448, + "tapu-lele": 2.1995418175806707, + "tapu-bulu": 1.4840809151361185, + "tapu-fini": 0.5786855546811842, + "solgaleo": 1.0646842900812845, + "lunala": 1.1408418754420973, + "nihilego": 1.2155384260159674, + "buzzwole": 1.4962931181025505, + "pheromosa": 2.2785562972070386, + "xurkitree": 0.7847870367820581, + "celesteela": 1.0907826388347108, + "kartana": 2.170377159541733, + "guzzlord": 0.6386599302978218, + "necrozma": 1.4221949406281027, + "stakataka": 0.5420829192608804, + "blacephalon": 2.1311975592972576 }, "hitmonlee": { - "articuno": 1.0122766871488338, - "zapdos": 0.597876898696382, - "moltres": 0.9780024412502089, - "mewtwo": 0.6988296602112583, - "raikou": 1.8482451827869637, - "entei": 1.3019813563759128, - "suicune": 1.3638662318928358, - "lugia": 0.836369501438266, - "ho-oh": 0.6368373431374494, - "latias": 0.8524913142423569, - "latios": 1.030789602718588, - "kyogre": 0.6728112400936469, - "groudon": 0.7398777900905511, - "rayquaza": 0.47915900813285633, - "uxie": 1.196265211650739, - "mesprit": 1.1647094418374189, - "azelf": 1.373212209639905, - "dialga": 0.9178810157982985, - "palkia": 0.5816824413871977, - "heatran": 0.8199260732160124, - "giratina-altered": 0.5328821366577027, - "cresselia": 0.59710912996876, - "tornadus-incarnate": 1.3631251985429669, - "thundurus-incarnate": 1.313412219994152, - "reshiram": 0.6591897308071486, - "zekrom": 0.6215336459249634, - "landorus-incarnate": 0.98527103300868, - "kyurem": 0.9335462926855103, - "xerneas": 0.3507365940851066, - "yveltal": 0.5961836380386734, - "zygarde-50": 0.8073639779538174, - "tapu-koko": 1.04597974522828, - "tapu-lele": 1.2096469339909826, - "tapu-bulu": 1.0686814346083122, - "tapu-fini": 0.6284708999445054, - "solgaleo": 0.740575974738299, - "lunala": 0.6038884932430932, - "nihilego": 1.6286193060399599, - "buzzwole": 1.1215176120902897, - "pheromosa": 1.7795506195714548, - "xurkitree": 1.0684555665064863, - "celesteela": 0.9275327630529429, - "kartana": 1.6691765540280268, - "guzzlord": 1.1111791892994884, - "necrozma": 1.0196105245005629, - "stakataka": 1.1046732206126786, - "blacephalon": 1.125043636813312 + "articuno": 1.0144590004668268, + "zapdos": 0.5966065631655557, + "moltres": 0.9768183753060798, + "mewtwo": 0.6966087326206927, + "raikou": 1.8507295398320536, + "entei": 1.3028214924929091, + "suicune": 1.363477090001151, + "lugia": 0.8348249469282701, + "ho-oh": 0.6362513028914207, + "latias": 0.8503652464801829, + "latios": 1.0284132653913205, + "kyogre": 0.675029130280901, + "groudon": 0.7397983255154117, + "rayquaza": 0.47790552221507454, + "uxie": 1.1943467303663078, + "mesprit": 1.1628643105594585, + "azelf": 1.370686211103702, + "dialga": 0.920972649546229, + "palkia": 0.5820687776951787, + "heatran": 0.8222695250792155, + "giratina-altered": 0.5310456326856012, + "cresselia": 0.594888329707505, + "tornadus-incarnate": 1.3624313740557812, + "thundurus-incarnate": 1.3148881557196748, + "reshiram": 0.6602881200023172, + "zekrom": 0.6208973716944063, + "landorus-incarnate": 0.9843894300089369, + "kyurem": 0.9369587220161117, + "xerneas": 0.35014564162071193, + "yveltal": 0.5971311143925704, + "zygarde-50": 0.8072144842106964, + "tapu-koko": 1.0440951324097982, + "tapu-lele": 1.204028754390852, + "tapu-bulu": 1.0678063471940713, + "tapu-fini": 0.6282166270624973, + "solgaleo": 0.7400389243732151, + "lunala": 0.6023752454902813, + "nihilego": 1.6355250698362092, + "buzzwole": 1.1204935628210382, + "pheromosa": 1.7812262970109707, + "xurkitree": 1.0717792712533771, + "celesteela": 0.9299420921748064, + "kartana": 1.6703018125054352, + "guzzlord": 1.113620044972977, + "necrozma": 1.0170496171598677, + "stakataka": 1.1078468819488219, + "blacephalon": 1.1210615021655668 }, "hitmonchan": { - "articuno": 0.9652612415202642, - "zapdos": 0.792320967554523, - "moltres": 0.689153216535914, - "mewtwo": 0.6777348323238734, - "raikou": 1.6016666238075032, - "entei": 1.1637857290101439, - "suicune": 1.563426194173423, - "lugia": 1.0516226983706354, - "ho-oh": 0.9368716764645739, - "latias": 1.211585988800774, - "latios": 1.4863277871021645, - "kyogre": 0.6027416258500657, - "groudon": 0.38168201418708264, - "rayquaza": 0.7488376375035979, - "uxie": 1.1404057696615841, - "mesprit": 1.0987359895368811, - "azelf": 1.007586649674044, - "dialga": 0.6852692026814686, - "palkia": 0.5039747661775723, - "heatran": 0.5637038098039808, - "giratina-altered": 0.8562983375051543, - "cresselia": 0.6019212678223431, - "tornadus-incarnate": 0.9378734276893348, - "thundurus-incarnate": 1.150412232816638, - "reshiram": 0.555234514102681, - "zekrom": 0.7357233783025205, - "landorus-incarnate": 0.8851498978029722, - "kyurem": 0.6652577933876521, - "xerneas": 0.3217688266788214, - "yveltal": 0.6658418051837426, - "zygarde-50": 0.6520620914730555, - "tapu-koko": 1.0324219302990583, - "tapu-lele": 1.2655967208293917, - "tapu-bulu": 1.1150199048203004, - "tapu-fini": 0.8333747412354291, - "solgaleo": 0.7681551931535587, - "lunala": 0.5608451684876883, - "nihilego": 1.0651122171984533, - "buzzwole": 1.166473324418728, - "pheromosa": 1.7910927530180782, - "xurkitree": 0.7411163637765183, - "celesteela": 0.9378402692213184, - "kartana": 1.6624627846066247, - "guzzlord": 0.9297615913343434, - "necrozma": 1.032730276173471, - "stakataka": 0.8106789378980118, - "blacephalon": 1.3966652335322327 + "articuno": 0.9677376988489299, + "zapdos": 0.7926696834229454, + "moltres": 0.6897684071758471, + "mewtwo": 0.6765162850112405, + "raikou": 1.603386693819883, + "entei": 1.1643166236972795, + "suicune": 1.563786943482925, + "lugia": 1.0530313313872184, + "ho-oh": 0.9383821613524066, + "latias": 1.2107936864154474, + "latios": 1.4855739825076402, + "kyogre": 0.603882068539912, + "groudon": 0.38179382447569077, + "rayquaza": 0.7493324426788118, + "uxie": 1.1394758854345288, + "mesprit": 1.0978458381164073, + "azelf": 1.006644730619945, + "dialga": 0.6866972137300219, + "palkia": 0.5045063048398352, + "heatran": 0.5638785980914615, + "giratina-altered": 0.8570432004919875, + "cresselia": 0.6007633414656841, + "tornadus-incarnate": 0.9395688119712681, + "thundurus-incarnate": 1.1532088892195194, + "reshiram": 0.5554928134740391, + "zekrom": 0.7357605104568788, + "landorus-incarnate": 0.8869483405438656, + "kyurem": 0.6663250769684963, + "xerneas": 0.32155482637260624, + "yveltal": 0.6679978441645977, + "zygarde-50": 0.6529330164367244, + "tapu-koko": 1.0317765205624623, + "tapu-lele": 1.2632997039103886, + "tapu-bulu": 1.1167886988011806, + "tapu-fini": 0.834093143028892, + "solgaleo": 0.7681925155599416, + "lunala": 0.560903198816136, + "nihilego": 1.06779382486064, + "buzzwole": 1.1672618716998229, + "pheromosa": 1.7954433724975816, + "xurkitree": 0.7420768588378133, + "celesteela": 0.9416972963257868, + "kartana": 1.66331096052014, + "guzzlord": 0.9316226359252151, + "necrozma": 1.031615623025414, + "stakataka": 0.8116960256749131, + "blacephalon": 1.3962088803848156 }, "lickitung": { - "articuno": 0.7863993084644094, - "zapdos": 0.6934969053645859, - "moltres": 0.5957120500742099, - "mewtwo": 0.6891871178358749, - "raikou": 1.4121592910982876, - "entei": 1.2619933676296817, - "suicune": 1.3866669909583345, - "lugia": 0.8866578419419272, - "ho-oh": 0.6859723714817076, - "latias": 0.9565299073171261, - "latios": 1.1724813014449778, - "kyogre": 0.4326024710155491, - "groudon": 0.3789144579386646, - "rayquaza": 0.5976692457936115, - "uxie": 1.186734053831474, - "mesprit": 1.0963749807575882, - "azelf": 1.0417951358609814, - "dialga": 0.5221938644550644, - "palkia": 0.44874357658535974, - "heatran": 0.48854325588550124, - "giratina-altered": 0.7625694795100459, - "cresselia": 0.6210681165498233, - "tornadus-incarnate": 0.7997669967078753, - "thundurus-incarnate": 0.8931462667325758, - "reshiram": 0.5036853236993379, - "zekrom": 0.6780449104705926, - "landorus-incarnate": 0.7207175567856253, - "kyurem": 0.53939078457401, - "xerneas": 0.3401397053209535, - "yveltal": 0.5407040657420716, - "zygarde-50": 0.5895023505258428, - "tapu-koko": 1.0365317129930758, - "tapu-lele": 1.2789148979588325, - "tapu-bulu": 0.9790234689904422, - "tapu-fini": 0.6749778530910449, - "solgaleo": 0.6108118674883212, - "lunala": 0.5351907440132968, - "nihilego": 0.8752851888193112, - "buzzwole": 1.0254103842911408, - "pheromosa": 1.2372074002486533, - "xurkitree": 0.6765373378550195, - "celesteela": 0.7864314176661487, - "kartana": 1.353935911283759, - "guzzlord": 0.7671305093612456, - "necrozma": 1.0728032283155393, - "stakataka": 0.6642282487352256, - "blacephalon": 1.4429533218568376 + "articuno": 0.7863722944814839, + "zapdos": 0.6940966197532566, + "moltres": 0.5965948208824301, + "mewtwo": 0.6888927681324082, + "raikou": 1.4107325274286016, + "entei": 1.2626900513473442, + "suicune": 1.3864115663569505, + "lugia": 0.8872074952263067, + "ho-oh": 0.6863346981885857, + "latias": 0.9558448622008516, + "latios": 1.1710875830811296, + "kyogre": 0.43231886292075616, + "groudon": 0.3791090887388613, + "rayquaza": 0.5982974847004785, + "uxie": 1.1871676818800985, + "mesprit": 1.0958036123218398, + "azelf": 1.0413039946330767, + "dialga": 0.5218504328114046, + "palkia": 0.44840309521393973, + "heatran": 0.4887284819745368, + "giratina-altered": 0.7637299779934141, + "cresselia": 0.6208453390844462, + "tornadus-incarnate": 0.8006782711228325, + "thundurus-incarnate": 0.8935168920985637, + "reshiram": 0.5034778511725211, + "zekrom": 0.6779970107179258, + "landorus-incarnate": 0.7216542312897595, + "kyurem": 0.5391816348376633, + "xerneas": 0.3401653542825388, + "yveltal": 0.5413039838135218, + "zygarde-50": 0.5902383303889343, + "tapu-koko": 1.0364666595497742, + "tapu-lele": 1.2780092400487573, + "tapu-bulu": 0.9785093820214432, + "tapu-fini": 0.6750311579405737, + "solgaleo": 0.6104703360458927, + "lunala": 0.5356386512418483, + "nihilego": 0.873955088905688, + "buzzwole": 1.0249447292703755, + "pheromosa": 1.235678019685427, + "xurkitree": 0.6762369684512812, + "celesteela": 0.7872104228960393, + "kartana": 1.3538856849469023, + "guzzlord": 0.7669431276374415, + "necrozma": 1.0725854461383029, + "stakataka": 0.6643145007383987, + "blacephalon": 1.4433559183651705 }, "weezing": { - "articuno": 0.8187974831824218, - "zapdos": 0.6424737958944786, - "moltres": 0.5435037424807928, - "mewtwo": 0.7687343025046546, - "raikou": 1.4959837488599637, - "entei": 1.2178604923933936, - "suicune": 1.2411653643670362, - "lugia": 0.8732256635245739, - "ho-oh": 0.6369584970753047, - "latias": 0.9556119224507224, - "latios": 1.231523451633437, - "kyogre": 0.3925761493148011, - "groudon": 0.31292850650828324, - "rayquaza": 0.43155800205745676, - "uxie": 1.2423917328106526, - "mesprit": 1.2472199658243825, - "azelf": 1.2528524928319835, - "dialga": 0.5635978700578895, - "palkia": 0.47664259922499286, - "heatran": 0.4199498493244254, - "giratina-altered": 0.7738738347927989, - "cresselia": 0.7134243182185498, - "tornadus-incarnate": 0.7247392343949671, - "thundurus-incarnate": 0.836436153686527, - "reshiram": 0.5058044622322505, - "zekrom": 0.6608465387649466, - "landorus-incarnate": 0.45925597895190357, - "kyurem": 0.5422732980251662, - "xerneas": 0.5146844895240824, - "yveltal": 0.5051692274373425, - "zygarde-50": 0.35405309921114625, - "tapu-koko": 1.4705146812708252, - "tapu-lele": 1.5536649006601055, - "tapu-bulu": 1.969462456348749, - "tapu-fini": 0.8021493633358613, - "solgaleo": 0.821208652891902, - "lunala": 0.8353282925139089, - "nihilego": 0.8679220731134953, - "buzzwole": 1.6052320478340563, - "pheromosa": 1.6830377476272012, - "xurkitree": 0.7242885846946227, - "celesteela": 0.8456025962063939, - "kartana": 3.2201664280276177, - "guzzlord": 0.7401639976659125, - "necrozma": 1.2204382803916183, - "stakataka": 0.6163883985380767, - "blacephalon": 1.4918113647479325 + "articuno": 0.819214827672816, + "zapdos": 0.6435359867096788, + "moltres": 0.5439666546774845, + "mewtwo": 0.7678158127906836, + "raikou": 1.4967301641237505, + "entei": 1.2196884140595359, + "suicune": 1.2408604692515066, + "lugia": 0.8729276243287682, + "ho-oh": 0.6369008071035505, + "latias": 0.9542923021399273, + "latios": 1.2304525258997476, + "kyogre": 0.3924154419302191, + "groudon": 0.31296265603437534, + "rayquaza": 0.4319415247119546, + "uxie": 1.2407211903778426, + "mesprit": 1.2466096826614326, + "azelf": 1.2527797285033082, + "dialga": 0.5634204684368374, + "palkia": 0.47691974462497055, + "heatran": 0.41877181891883314, + "giratina-altered": 0.7746560316777296, + "cresselia": 0.7131134902251426, + "tornadus-incarnate": 0.725195038534546, + "thundurus-incarnate": 0.8371790316231336, + "reshiram": 0.5054668949815915, + "zekrom": 0.6620951440903768, + "landorus-incarnate": 0.45921341778770763, + "kyurem": 0.5423524241719957, + "xerneas": 0.5168439801516913, + "yveltal": 0.5056713356193023, + "zygarde-50": 0.35362128730147535, + "tapu-koko": 1.4748758015159527, + "tapu-lele": 1.5533614803621651, + "tapu-bulu": 1.9836651039483462, + "tapu-fini": 0.8038445654922675, + "solgaleo": 0.8220939792976121, + "lunala": 0.8361680665842269, + "nihilego": 0.8663264959689672, + "buzzwole": 1.6128303264005721, + "pheromosa": 1.6877423189623153, + "xurkitree": 0.7251600626837005, + "celesteela": 0.8459350145643854, + "kartana": 3.2344529387726575, + "guzzlord": 0.7405624357796312, + "necrozma": 1.2197738449807045, + "stakataka": 0.6164559555788458, + "blacephalon": 1.491776481954413 }, "weezing-galar": { - "articuno": 0.8249377936748006, - "zapdos": 0.68132652432486, - "moltres": 0.4983841653025982, - "mewtwo": 0.7033668287494242, - "raikou": 1.5774210155983837, - "entei": 1.1330642169070648, - "suicune": 1.3144500971766044, - "lugia": 0.8349569686974738, - "ho-oh": 0.5971009151848814, - "latias": 1.1782814405286381, - "latios": 1.5902898739108144, - "kyogre": 0.41102103367180665, - "groudon": 0.3550263155018511, - "rayquaza": 0.658837480797815, - "uxie": 1.1331576504335983, - "mesprit": 1.1378850239290053, - "azelf": 1.1435125693634274, - "dialga": 0.619735369572781, - "palkia": 0.6790967149287253, - "heatran": 0.3460625904574546, - "giratina-altered": 0.9911197351785297, - "cresselia": 0.6523863741312367, - "tornadus-incarnate": 0.764124107978788, - "thundurus-incarnate": 0.8458769930220053, - "reshiram": 0.5641441127474092, - "zekrom": 0.9847608952615345, - "landorus-incarnate": 0.5186613192151179, - "kyurem": 0.7411676003737275, - "xerneas": 0.46662471531523925, - "yveltal": 0.764527912183016, - "zygarde-50": 0.5438131912800108, - "tapu-koko": 1.2656069604631364, - "tapu-lele": 1.3819080326380337, - "tapu-bulu": 1.6458164129260209, - "tapu-fini": 0.7008176859810895, - "solgaleo": 0.775375169558453, - "lunala": 0.5693055484598128, - "nihilego": 0.7769286255723424, - "buzzwole": 2.035829931951537, - "pheromosa": 2.056818334913989, - "xurkitree": 0.7759459681901135, - "celesteela": 0.8089148819008236, - "kartana": 3.2739200206775205, - "guzzlord": 1.6166503748680408, - "necrozma": 1.1119071381880814, - "stakataka": 0.6228998799577885, - "blacephalon": 1.1562997596872095 + "articuno": 0.8249015307946166, + "zapdos": 0.6818373176192851, + "moltres": 0.49797882005813066, + "mewtwo": 0.7015664686475319, + "raikou": 1.57702188553999, + "entei": 1.1331610027086727, + "suicune": 1.313037668923572, + "lugia": 0.8341621366448528, + "ho-oh": 0.5962483679893145, + "latias": 1.1774711757434702, + "latios": 1.590797279946923, + "kyogre": 0.41057412152402006, + "groudon": 0.3550600256549906, + "rayquaza": 0.660893924031857, + "uxie": 1.1300897084772017, + "mesprit": 1.1357525388782745, + "azelf": 1.141837685636856, + "dialga": 0.6193555630892502, + "palkia": 0.6800977019938075, + "heatran": 0.34447890181694474, + "giratina-altered": 0.993136133884543, + "cresselia": 0.6512232843127305, + "tornadus-incarnate": 0.7639932407987475, + "thundurus-incarnate": 0.8455537856894166, + "reshiram": 0.5638369344485741, + "zekrom": 0.9875119985100567, + "landorus-incarnate": 0.5186438404350078, + "kyurem": 0.741452655925626, + "xerneas": 0.4681126840998193, + "yveltal": 0.7666895104562039, + "zygarde-50": 0.5441617396455795, + "tapu-koko": 1.2675883769664726, + "tapu-lele": 1.3794643830964963, + "tapu-bulu": 1.6547091077424045, + "tapu-fini": 0.7012953421585348, + "solgaleo": 0.7744277113546313, + "lunala": 0.568921949775633, + "nihilego": 0.7744472692627964, + "buzzwole": 2.047995453024941, + "pheromosa": 2.0654604169042896, + "xurkitree": 0.7762973923015691, + "celesteela": 0.8077497814259641, + "kartana": 3.288660335199938, + "guzzlord": 1.6226145383003598, + "necrozma": 1.1097384578748084, + "stakataka": 0.6225100600245116, + "blacephalon": 1.1542305990538826 }, "rhydon": { - "articuno": 1.3243397607601763, - "zapdos": 1.147433649602839, - "moltres": 1.2377248339852347, - "mewtwo": 0.7599541273339987, - "raikou": 3.2846684522317062, - "entei": 2.0817268829869287, - "suicune": 1.3169904949559152, - "lugia": 1.1401172118438079, - "ho-oh": 1.7931434307763223, - "latias": 0.748160747467564, - "latios": 1.2401410321348905, - "kyogre": 0.3067860979916758, - "groudon": 0.3678552570952197, - "rayquaza": 0.6248168577726543, - "uxie": 1.2896251555360214, - "mesprit": 1.2660578299601402, - "azelf": 1.1897655468213086, - "dialga": 0.954808725767051, - "palkia": 0.4113837158932043, - "heatran": 1.3837805136880765, - "giratina-altered": 0.8144768099560414, - "cresselia": 0.6756489112830666, - "tornadus-incarnate": 1.0956186887423447, - "thundurus-incarnate": 1.5533791141028286, - "reshiram": 0.9814258950632229, - "zekrom": 1.144384662376321, - "landorus-incarnate": 0.5234433209644708, - "kyurem": 0.680382609343849, - "xerneas": 0.4519357259423967, - "yveltal": 0.739601917795766, - "zygarde-50": 0.4435780113535882, - "tapu-koko": 2.230452396739295, - "tapu-lele": 2.0626891191371293, - "tapu-bulu": 1.0490111972805307, - "tapu-fini": 0.47707370850883113, - "solgaleo": 1.122332941166541, - "lunala": 0.6753066511677918, - "nihilego": 3.298782070466376, - "buzzwole": 1.0440652034680116, - "pheromosa": 1.5074360837753464, - "xurkitree": 1.4116220940282402, - "celesteela": 0.7481225536427922, - "kartana": 1.1549077669517798, - "guzzlord": 0.91600945275361, - "necrozma": 1.388321848940894, - "stakataka": 1.2418080433461751, - "blacephalon": 2.7980754836600026 + "articuno": 1.323313294302782, + "zapdos": 1.151946307541719, + "moltres": 1.241495307782557, + "mewtwo": 0.7597242607110104, + "raikou": 3.3016325627533853, + "entei": 2.0906954806052154, + "suicune": 1.3118722783177725, + "lugia": 1.1394153305179677, + "ho-oh": 1.799806460887631, + "latias": 0.7460868732371879, + "latios": 1.2381271422707523, + "kyogre": 0.30582995290872184, + "groudon": 0.36782776570989134, + "rayquaza": 0.6257656155329179, + "uxie": 1.2878019370569982, + "mesprit": 1.2648634159019876, + "azelf": 1.1889182426898843, + "dialga": 0.9554383011382346, + "palkia": 0.410648548639612, + "heatran": 1.388858172738675, + "giratina-altered": 0.8162749817367343, + "cresselia": 0.674923639800281, + "tornadus-incarnate": 1.0967995400401467, + "thundurus-incarnate": 1.559067579306162, + "reshiram": 0.984401942563934, + "zekrom": 1.1497082719159755, + "landorus-incarnate": 0.5228597563628554, + "kyurem": 0.6800445218221614, + "xerneas": 0.452314448528101, + "yveltal": 0.7406568164972032, + "zygarde-50": 0.44354599463516486, + "tapu-koko": 2.2429107658671583, + "tapu-lele": 2.067855655511344, + "tapu-bulu": 1.0477168099903857, + "tapu-fini": 0.47481017100366674, + "solgaleo": 1.123932755626973, + "lunala": 0.6754444468755272, + "nihilego": 3.316536185457422, + "buzzwole": 1.0436985315817717, + "pheromosa": 1.5081003653559122, + "xurkitree": 1.4170082348774997, + "celesteela": 0.7465992829651953, + "kartana": 1.1493581235390158, + "guzzlord": 0.9180692480313688, + "necrozma": 1.3903623730832022, + "stakataka": 1.245536940735478, + "blacephalon": 2.8106529010799077 }, "chansey": { - "articuno": 0.7432706860373657, - "zapdos": 0.5418752202220145, - "moltres": 0.5192870268071155, - "mewtwo": 0.6673486138231857, - "raikou": 1.2890541889228893, - "entei": 0.9100637017583851, - "suicune": 1.0185601537378386, - "lugia": 0.8218327497723759, - "ho-oh": 0.521150595384487, - "latias": 0.835988429005569, - "latios": 1.008172943312636, - "kyogre": 0.40623383848369404, - "groudon": 0.2376835470237606, - "rayquaza": 0.3306142761631711, - "uxie": 1.2235560160036605, - "mesprit": 1.1534466433022033, - "azelf": 1.037642804387081, - "dialga": 0.4091868352577691, - "palkia": 0.4103614405418837, - "heatran": 0.3702282458534832, - "giratina-altered": 0.45907888448090817, - "cresselia": 0.5759193889389183, - "tornadus-incarnate": 0.7378790700032534, - "thundurus-incarnate": 0.82970313542451, - "reshiram": 0.520524701301924, - "zekrom": 0.4280145964414215, - "landorus-incarnate": 0.34894107760048343, - "kyurem": 0.5641704943613168, - "xerneas": 0.34028088615867746, - "yveltal": 0.42388582625246757, - "zygarde-50": 0.2790929951383069, - "tapu-koko": 0.9445034500414414, - "tapu-lele": 1.1084110741533317, - "tapu-bulu": 0.6148216005182465, - "tapu-fini": 0.6158510784455747, - "solgaleo": 0.4375409118474013, - "lunala": 0.47578503684780105, - "nihilego": 0.7993076766301135, - "buzzwole": 0.710938192811642, - "pheromosa": 1.0058467064565408, - "xurkitree": 0.6326714948000842, - "celesteela": 0.4508227825202583, - "kartana": 1.0050281240304182, - "guzzlord": 0.493780924575806, - "necrozma": 0.9922988986911858, - "stakataka": 0.3588554999148774, - "blacephalon": 1.032259140804706 + "articuno": 0.7430479559304317, + "zapdos": 0.5399812351378986, + "moltres": 0.5184557710795341, + "mewtwo": 0.6655170324305448, + "raikou": 1.284115407158004, + "entei": 0.9056864323279512, + "suicune": 1.0145865541361145, + "lugia": 0.821625583745542, + "ho-oh": 0.5186606965417477, + "latias": 0.8340135826231394, + "latios": 1.0057322573107386, + "kyogre": 0.40556063277057286, + "groudon": 0.23621888859642093, + "rayquaza": 0.3290352049688062, + "uxie": 1.2236619185370874, + "mesprit": 1.1530514165616186, + "azelf": 1.0353200711958908, + "dialga": 0.4071758905117661, + "palkia": 0.40851918147901856, + "heatran": 0.36895045628486345, + "giratina-altered": 0.45764515289281915, + "cresselia": 0.5741172992712043, + "tornadus-incarnate": 0.7377692559595177, + "thundurus-incarnate": 0.8294834977448515, + "reshiram": 0.5205011862667845, + "zekrom": 0.42515618965236013, + "landorus-incarnate": 0.34724382257331227, + "kyurem": 0.5641735695927403, + "xerneas": 0.33990725536528044, + "yveltal": 0.4222641772902005, + "zygarde-50": 0.27779899114405726, + "tapu-koko": 0.9414152742556282, + "tapu-lele": 1.1041007887346783, + "tapu-bulu": 0.6102953229775625, + "tapu-fini": 0.6158428397101963, + "solgaleo": 0.4345545800776426, + "lunala": 0.4754941024527284, + "nihilego": 0.7978466521395586, + "buzzwole": 0.7053306630756577, + "pheromosa": 0.9989786354141625, + "xurkitree": 0.6312189148971885, + "celesteela": 0.4486257895104061, + "kartana": 0.9985776412609186, + "guzzlord": 0.4904727572923959, + "necrozma": 0.9900406458847058, + "stakataka": 0.35623874833874797, + "blacephalon": 1.0298029226856587 }, "tangela": { - "articuno": 0.46543039178292794, - "zapdos": 0.5517144157648346, - "moltres": 0.32713594848399896, - "mewtwo": 0.562205094144401, - "raikou": 1.5805473969660961, - "entei": 0.8964834382927208, - "suicune": 1.6297506456273245, - "lugia": 0.6415586548367791, - "ho-oh": 0.5770587568572949, - "latias": 0.8180215413591283, - "latios": 0.9654473369913389, - "kyogre": 0.5883579626324047, - "groudon": 0.39295462573942946, - "rayquaza": 0.35236170177634485, - "uxie": 1.0396318820550494, - "mesprit": 0.9903534161795884, - "azelf": 0.9567316369696326, - "dialga": 0.41792825650329873, - "palkia": 0.49841859820947143, - "heatran": 0.24145076140247185, - "giratina-altered": 0.512222247403172, - "cresselia": 0.5691258862774239, - "tornadus-incarnate": 0.44183012079904577, - "thundurus-incarnate": 0.6045339688393923, - "reshiram": 0.37711310581795754, - "zekrom": 0.574546115991585, - "landorus-incarnate": 0.5345077106550387, - "kyurem": 0.366158932203429, - "xerneas": 0.3189645546892094, - "yveltal": 0.3873450102879502, - "zygarde-50": 0.4279668341803001, - "tapu-koko": 1.0589630908253544, - "tapu-lele": 1.4121001775966082, - "tapu-bulu": 0.8399340901005556, - "tapu-fini": 0.8098313608602776, - "solgaleo": 0.5530397703676808, - "lunala": 0.49075371199918205, - "nihilego": 0.712310921734812, - "buzzwole": 0.8658730417855403, - "pheromosa": 1.1024504156340322, - "xurkitree": 0.7349604893153124, - "celesteela": 0.5810888735071309, - "kartana": 0.9964888387372297, - "guzzlord": 0.6657201874021348, - "necrozma": 1.03776136576505, - "stakataka": 0.5491832996695987, - "blacephalon": 0.9801045400533788 + "articuno": 0.4620321439197857, + "zapdos": 0.5507316422688893, + "moltres": 0.3250573528167026, + "mewtwo": 0.5604850649644857, + "raikou": 1.580680166083254, + "entei": 0.8930762538940809, + "suicune": 1.63218431066433, + "lugia": 0.6381748736346989, + "ho-oh": 0.5752204512144128, + "latias": 0.8157839966646183, + "latios": 0.9621744307298353, + "kyogre": 0.5896546737954409, + "groudon": 0.39345270248617265, + "rayquaza": 0.3510830456621168, + "uxie": 1.0363606489681105, + "mesprit": 0.98706955610389, + "azelf": 0.9543168234562822, + "dialga": 0.4165301510827274, + "palkia": 0.498638082935859, + "heatran": 0.240139669954749, + "giratina-altered": 0.5107310021234728, + "cresselia": 0.5678368762699902, + "tornadus-incarnate": 0.43888285116386627, + "thundurus-incarnate": 0.6026153176811966, + "reshiram": 0.3745796380901485, + "zekrom": 0.5745732469965193, + "landorus-incarnate": 0.534952219858307, + "kyurem": 0.36380120829229134, + "xerneas": 0.3183520919229135, + "yveltal": 0.38588883556537246, + "zygarde-50": 0.4281403802137672, + "tapu-koko": 1.0584690740682632, + "tapu-lele": 1.410647852386387, + "tapu-bulu": 0.8394371916268804, + "tapu-fini": 0.8109379411493987, + "solgaleo": 0.5519360493086947, + "lunala": 0.48893518730602714, + "nihilego": 0.7091816757052614, + "buzzwole": 0.8630854819717984, + "pheromosa": 1.0979291921845045, + "xurkitree": 0.7352161786875323, + "celesteela": 0.5796984769892626, + "kartana": 0.9943076423581771, + "guzzlord": 0.6653281221953635, + "necrozma": 1.0356033263914253, + "stakataka": 0.5486800590013742, + "blacephalon": 0.9743013944063686 }, "kangaskhan": { - "articuno": 0.8759574149080428, - "zapdos": 0.7483495753311489, - "moltres": 0.6206535151547854, - "mewtwo": 0.8789909190115213, - "raikou": 1.9866131546423709, - "entei": 1.393208364801155, - "suicune": 1.4608114523794735, - "lugia": 1.0401354717387465, - "ho-oh": 0.8373273415740234, - "latias": 1.3681044872122015, - "latios": 1.6516455364738456, - "kyogre": 0.5218527787309638, - "groudon": 0.35621839365210706, - "rayquaza": 0.5742345442343586, - "uxie": 1.517384547999849, - "mesprit": 1.410554978552831, - "azelf": 1.345626801850814, - "dialga": 0.694060390554142, - "palkia": 0.7042900146768215, - "heatran": 0.760536941181643, - "giratina-altered": 0.9792713775957844, - "cresselia": 0.8107984556122447, - "tornadus-incarnate": 0.8803119036141065, - "thundurus-incarnate": 0.9920058181912147, - "reshiram": 0.7815835628420625, - "zekrom": 0.8103086931488086, - "landorus-incarnate": 0.5560879947742837, - "kyurem": 0.7679927219617884, - "xerneas": 0.41908956133250164, - "yveltal": 0.5768197569589074, - "zygarde-50": 0.5197659296623686, - "tapu-koko": 1.3293995100787896, - "tapu-lele": 1.7226819744908979, - "tapu-bulu": 0.9813159811481633, - "tapu-fini": 0.7425027403818583, - "solgaleo": 0.8084385265834416, - "lunala": 1.0101583872106583, - "nihilego": 1.6952237921500128, - "buzzwole": 1.0013545557464072, - "pheromosa": 1.4977640154843375, - "xurkitree": 0.8856233932118149, - "celesteela": 0.6955510796704938, - "kartana": 1.1504692607773759, - "guzzlord": 0.9714914033902317, - "necrozma": 1.3269200767182427, - "stakataka": 0.7513469231890255, - "blacephalon": 1.903922630330941 + "articuno": 0.8771853868611593, + "zapdos": 0.7498393023298292, + "moltres": 0.6216839292865808, + "mewtwo": 0.8809680020403903, + "raikou": 1.9916307224856626, + "entei": 1.396362249364234, + "suicune": 1.4634428928770384, + "lugia": 1.0423675348037114, + "ho-oh": 0.8393070913316631, + "latias": 1.372674169681644, + "latios": 1.6562729278819406, + "kyogre": 0.5231293162000747, + "groudon": 0.35646139213077493, + "rayquaza": 0.5755754383287603, + "uxie": 1.5212868456862725, + "mesprit": 1.4130745927720962, + "azelf": 1.3481153868955897, + "dialga": 0.695481801744325, + "palkia": 0.7065517744633175, + "heatran": 0.7622602533262498, + "giratina-altered": 0.983721224348838, + "cresselia": 0.8125330879655268, + "tornadus-incarnate": 0.8819568767103836, + "thundurus-incarnate": 0.9937633040863934, + "reshiram": 0.7845298434258864, + "zekrom": 0.8126494979514075, + "landorus-incarnate": 0.5566945623995756, + "kyurem": 0.7703284706300724, + "xerneas": 0.4193053339713524, + "yveltal": 0.5775730943370063, + "zygarde-50": 0.5210165845606782, + "tapu-koko": 1.3305197912475006, + "tapu-lele": 1.7245708455244588, + "tapu-bulu": 0.9805840572351785, + "tapu-fini": 0.7429801839565989, + "solgaleo": 0.8098407428416554, + "lunala": 1.0144014819534566, + "nihilego": 1.6994722038439471, + "buzzwole": 1.000098114089998, + "pheromosa": 1.4982711307448504, + "xurkitree": 0.8877017914975329, + "celesteela": 0.6960727144648791, + "kartana": 1.149176689354947, + "guzzlord": 0.9737254986598525, + "necrozma": 1.3297555307841298, + "stakataka": 0.7516392108655319, + "blacephalon": 1.9103192041126213 }, "seadra": { - "articuno": 0.7800602930144145, - "zapdos": 0.5313938059228829, - "moltres": 0.8224437858044753, - "mewtwo": 0.767370485604915, - "raikou": 1.284788783288563, - "entei": 1.7940581916793328, - "suicune": 1.2459421880910488, - "lugia": 0.7993960330955034, - "ho-oh": 0.8886075022418066, - "latias": 1.0249784214617135, - "latios": 1.228450275789816, - "kyogre": 0.37663419685167376, - "groudon": 0.5341703356335535, - "rayquaza": 0.49217488868952186, - "uxie": 1.1514417771039944, - "mesprit": 1.0981216658840884, - "azelf": 1.0558812797923842, - "dialga": 0.5712201294573862, - "palkia": 0.5832682006356684, - "heatran": 0.7127057702173739, - "giratina-altered": 0.7569372666949357, - "cresselia": 0.6840153051560051, - "tornadus-incarnate": 0.7617552385266917, - "thundurus-incarnate": 0.6345035780679508, - "reshiram": 0.617437781497737, - "zekrom": 0.7164808994011409, - "landorus-incarnate": 0.7431638366829649, - "kyurem": 0.6288027083921005, - "xerneas": 0.34398878014886414, - "yveltal": 0.5019144363121038, - "zygarde-50": 0.49848669324938844, - "tapu-koko": 0.9111875232043833, - "tapu-lele": 1.3747745208809268, - "tapu-bulu": 0.8014315280024107, - "tapu-fini": 0.5676595592966575, - "solgaleo": 0.7982127346150101, - "lunala": 0.5179468804392291, - "nihilego": 0.9309463935743649, - "buzzwole": 1.321276219734954, - "pheromosa": 1.4116979428642915, - "xurkitree": 0.5677985824387034, - "celesteela": 0.8192587687070796, - "kartana": 1.234391268671051, - "guzzlord": 0.8722598961834183, - "necrozma": 1.0906342859391946, - "stakataka": 0.9557753937898499, - "blacephalon": 1.8983466137328313 + "articuno": 0.7795225826665035, + "zapdos": 0.5299190556238292, + "moltres": 0.8239885663187023, + "mewtwo": 0.7664044642624717, + "raikou": 1.2791511178195352, + "entei": 1.7979033065999492, + "suicune": 1.245187191329709, + "lugia": 0.7975001438634438, + "ho-oh": 0.889693647361, + "latias": 1.0233301684774223, + "latios": 1.2258465496028266, + "kyogre": 0.37565545931006317, + "groudon": 0.5352099908082496, + "rayquaza": 0.491868342990308, + "uxie": 1.148541898180579, + "mesprit": 1.095188590371518, + "azelf": 1.053758356160103, + "dialga": 0.5711768737140077, + "palkia": 0.5833878686776146, + "heatran": 0.7140229681144545, + "giratina-altered": 0.7562199645387535, + "cresselia": 0.6831126970769366, + "tornadus-incarnate": 0.7609685986583037, + "thundurus-incarnate": 0.6316267821637258, + "reshiram": 0.6175656386577879, + "zekrom": 0.7156357479129041, + "landorus-incarnate": 0.744134246446494, + "kyurem": 0.6283575276766221, + "xerneas": 0.34301565138258305, + "yveltal": 0.5014433705042435, + "zygarde-50": 0.4989477988601696, + "tapu-koko": 0.9075527015654659, + "tapu-lele": 1.3712749377491638, + "tapu-bulu": 0.7989201603456075, + "tapu-fini": 0.5665633190860622, + "solgaleo": 0.7990501091463307, + "lunala": 0.5161508738430023, + "nihilego": 0.9282248232614302, + "buzzwole": 1.3227899657346338, + "pheromosa": 1.4105020305864355, + "xurkitree": 0.565071658888687, + "celesteela": 0.8198971299649238, + "kartana": 1.2307487954467693, + "guzzlord": 0.8726047297619379, + "necrozma": 1.087988881757099, + "stakataka": 0.9572245834551941, + "blacephalon": 1.9001571373020947 }, "seaking": { - "articuno": 0.9021837415212157, - "zapdos": 0.6345625703952964, - "moltres": 0.8541323643190258, - "mewtwo": 0.8259582776864636, - "raikou": 1.7601270026637605, - "entei": 1.6907065675079034, - "suicune": 1.2842370153832534, - "lugia": 0.9478903348116194, - "ho-oh": 1.148528739694954, - "latias": 0.9826406891529358, - "latios": 1.170759135709885, - "kyogre": 0.4657385228719265, - "groudon": 0.4328600837723049, - "rayquaza": 0.4017000562973548, - "uxie": 1.3283796902234966, - "mesprit": 1.270878080117645, - "azelf": 1.2050213914461865, - "dialga": 0.7086724306337095, - "palkia": 0.5095393611044035, - "heatran": 0.8841510390786369, - "giratina-altered": 0.6107732912843926, - "cresselia": 0.7426190710764484, - "tornadus-incarnate": 0.8862223970774573, - "thundurus-incarnate": 0.8390793096139562, - "reshiram": 0.7118692006215892, - "zekrom": 0.6304918964050328, - "landorus-incarnate": 0.6876984742874993, - "kyurem": 0.5704395381320757, - "xerneas": 0.4073189056364702, - "yveltal": 0.5459141539657255, - "zygarde-50": 0.405876346185827, - "tapu-koko": 1.1578933229438397, - "tapu-lele": 1.6950978643427859, - "tapu-bulu": 1.1622760302434934, - "tapu-fini": 0.7883706623583255, - "solgaleo": 0.8174190976458608, - "lunala": 0.618885177731588, - "nihilego": 1.792774804998294, - "buzzwole": 1.251425334933684, - "pheromosa": 1.998225826080506, - "xurkitree": 0.749881613023873, - "celesteela": 0.7978120037622599, - "kartana": 1.008952239379087, - "guzzlord": 0.6716188882576892, - "necrozma": 1.1634506822624098, - "stakataka": 0.7599361688636894, - "blacephalon": 2.296234628362467 + "articuno": 0.9033537966654941, + "zapdos": 0.6336561949805106, + "moltres": 0.8562607818167766, + "mewtwo": 0.8265625533341716, + "raikou": 1.7586287742750608, + "entei": 1.6955891649862895, + "suicune": 1.285299822025686, + "lugia": 0.9480909288350987, + "ho-oh": 1.1517654151802657, + "latias": 0.9822801939727297, + "latios": 1.1699140137938429, + "kyogre": 0.46616855952341774, + "groudon": 0.433152502017634, + "rayquaza": 0.4012050454689976, + "uxie": 1.3280426583295282, + "mesprit": 1.2704555374288806, + "azelf": 1.2045310485016079, + "dialga": 0.7092602783849682, + "palkia": 0.5099026125042976, + "heatran": 0.8880053827324679, + "giratina-altered": 0.6106310841823628, + "cresselia": 0.7425960029775636, + "tornadus-incarnate": 0.8871524565444788, + "thundurus-incarnate": 0.8375470123481366, + "reshiram": 0.7140682022012594, + "zekrom": 0.6290962754100295, + "landorus-incarnate": 0.6880843849931026, + "kyurem": 0.5709021090108055, + "xerneas": 0.407905282051466, + "yveltal": 0.5458331225003978, + "zygarde-50": 0.4057713000908755, + "tapu-koko": 1.1584223056324512, + "tapu-lele": 1.6984509965597712, + "tapu-bulu": 1.1614316075573172, + "tapu-fini": 0.7905903740364357, + "solgaleo": 0.818585059430456, + "lunala": 0.6190913428889501, + "nihilego": 1.7980812986260784, + "buzzwole": 1.250649119100888, + "pheromosa": 1.9996930013233554, + "xurkitree": 0.7488848577373106, + "celesteela": 0.7979881745795356, + "kartana": 1.0034596336538704, + "guzzlord": 0.6712037260485139, + "necrozma": 1.1632838997920882, + "stakataka": 0.7607582948454108, + "blacephalon": 2.3048023162364335 }, "starmie": { - "articuno": 1.271032458389733, - "zapdos": 0.7058738465305234, - "moltres": 1.0565880586132548, - "mewtwo": 0.783344611758817, - "raikou": 1.4299908165917596, - "entei": 1.4673591394164656, - "suicune": 1.3671377206644513, - "lugia": 1.031286496045315, - "ho-oh": 1.096423572477193, - "latias": 1.1568834705327333, - "latios": 1.435949131543013, - "kyogre": 0.479279671795527, - "groudon": 0.40823812142937144, - "rayquaza": 0.6091363530861333, - "uxie": 1.1981952703055967, - "mesprit": 1.1672223880026171, - "azelf": 1.1018270774679826, - "dialga": 0.5984286530818992, - "palkia": 0.6242625757234854, - "heatran": 0.48222436521211665, - "giratina-altered": 0.7466452219529776, - "cresselia": 0.6884909525794161, - "tornadus-incarnate": 0.9565659123080483, - "thundurus-incarnate": 0.8970466614177858, - "reshiram": 0.6944640119331462, - "zekrom": 0.711863853248742, - "landorus-incarnate": 0.7806860788208516, - "kyurem": 0.6909605412135457, - "xerneas": 0.3763104534379447, - "yveltal": 0.5466928506195254, - "zygarde-50": 0.624105277038279, - "tapu-koko": 0.948057229409728, - "tapu-lele": 1.3972254253345455, - "tapu-bulu": 0.9488322175842014, - "tapu-fini": 0.6926943825600519, - "solgaleo": 0.6211875190863615, - "lunala": 0.4933461376887403, - "nihilego": 1.2855725188666955, - "buzzwole": 1.4294474190635307, - "pheromosa": 1.6148417672407405, - "xurkitree": 0.5953108224322209, - "celesteela": 0.7204295965251384, - "kartana": 1.2908557814385853, - "guzzlord": 1.11057533518854, - "necrozma": 1.132195097635086, - "stakataka": 0.4918169841687401, - "blacephalon": 1.617800543192553 + "articuno": 1.2749265102186427, + "zapdos": 0.7064160539035795, + "moltres": 1.0603461016104925, + "mewtwo": 0.7847010248771371, + "raikou": 1.4272167214608835, + "entei": 1.468972417614335, + "suicune": 1.36947315238123, + "lugia": 1.0330292717233878, + "ho-oh": 1.1000345970127678, + "latias": 1.1594129989106086, + "latios": 1.4390586276219608, + "kyogre": 0.479449942436927, + "groudon": 0.40890484312634046, + "rayquaza": 0.6106675885566153, + "uxie": 1.1982490057782516, + "mesprit": 1.1677572313104418, + "azelf": 1.1023640969869195, + "dialga": 0.5991826804941116, + "palkia": 0.6256731539605906, + "heatran": 0.48241319284212203, + "giratina-altered": 0.747058214152264, + "cresselia": 0.6895020478565204, + "tornadus-incarnate": 0.9591331631961133, + "thundurus-incarnate": 0.8970119931700009, + "reshiram": 0.696454659181619, + "zekrom": 0.7118371864741647, + "landorus-incarnate": 0.7826183370630289, + "kyurem": 0.6923283705775088, + "xerneas": 0.3765896428505541, + "yveltal": 0.5467707868634264, + "zygarde-50": 0.6255448311516384, + "tapu-koko": 0.9474573463011129, + "tapu-lele": 1.3987501902032644, + "tapu-bulu": 0.9479146934242025, + "tapu-fini": 0.6940112377026416, + "solgaleo": 0.6214699363206497, + "lunala": 0.49209178097245093, + "nihilego": 1.2856631646896348, + "buzzwole": 1.430346774415553, + "pheromosa": 1.6152112361323065, + "xurkitree": 0.5940086898369723, + "celesteela": 0.721520193919369, + "kartana": 1.2875037037217658, + "guzzlord": 1.110920193640916, + "necrozma": 1.1328883973321378, + "stakataka": 0.49118495813627416, + "blacephalon": 1.620230666724499 }, "mr-mime": { - "articuno": 0.8243569620809025, - "zapdos": 0.7085555152104479, - "moltres": 0.6246500808285641, - "mewtwo": 0.7102810530587486, - "raikou": 1.6248625372981111, - "entei": 1.2725978705351757, - "suicune": 1.406132896920382, - "lugia": 0.8312171818739323, - "ho-oh": 0.6830261879616502, - "latias": 0.8942037426039819, - "latios": 1.1984405601687418, - "kyogre": 0.45011259359690936, - "groudon": 0.37350351240563473, - "rayquaza": 0.47604294777011363, - "uxie": 1.1567574118279613, - "mesprit": 1.1258669682832712, - "azelf": 1.0476714002345873, - "dialga": 0.5075595660891155, - "palkia": 0.5472471492200708, - "heatran": 0.39784861465765875, - "giratina-altered": 0.7047916102949281, - "cresselia": 0.6345785360643377, - "tornadus-incarnate": 0.8473381756670266, - "thundurus-incarnate": 0.8842969131869138, - "reshiram": 0.6461452253065252, - "zekrom": 0.6970711104599708, - "landorus-incarnate": 0.5269350401860293, - "kyurem": 0.6181476358037827, - "xerneas": 0.4111711142947743, - "yveltal": 0.371349213332155, - "zygarde-50": 0.4245104215269655, - "tapu-koko": 1.2440138292733316, - "tapu-lele": 1.2873010052166256, - "tapu-bulu": 1.0105838887206708, - "tapu-fini": 0.714262534383721, - "solgaleo": 0.46255519001024936, - "lunala": 0.4817743550692598, - "nihilego": 0.9610750996589614, - "buzzwole": 1.9216558438133555, - "pheromosa": 2.0550792391378403, - "xurkitree": 0.802266873515015, - "celesteela": 0.5612738139882373, - "kartana": 1.36081355695897, - "guzzlord": 0.5038626947683318, - "necrozma": 1.1004159629133983, - "stakataka": 0.5015944019767944, - "blacephalon": 1.3639511243254914 + "articuno": 0.8235746850423832, + "zapdos": 0.7075954748177806, + "moltres": 0.6241937195040466, + "mewtwo": 0.7094885632283707, + "raikou": 1.6214638039637146, + "entei": 1.2702864509359948, + "suicune": 1.4040405414654638, + "lugia": 0.8304445363552102, + "ho-oh": 0.6816855385036826, + "latias": 0.8934792474587022, + "latios": 1.1985952394586579, + "kyogre": 0.4494718748280323, + "groudon": 0.37312520421509726, + "rayquaza": 0.47560321162877384, + "uxie": 1.154566921398067, + "mesprit": 1.1241472863566333, + "azelf": 1.0455472014633524, + "dialga": 0.5057784223978564, + "palkia": 0.5468073351288594, + "heatran": 0.39654624062976346, + "giratina-altered": 0.7031699942933656, + "cresselia": 0.6337954800605716, + "tornadus-incarnate": 0.8468825493216119, + "thundurus-incarnate": 0.8830231161003819, + "reshiram": 0.6465199968496398, + "zekrom": 0.6960765616647454, + "landorus-incarnate": 0.5262246697772776, + "kyurem": 0.6171969647094082, + "xerneas": 0.41087158648349487, + "yveltal": 0.36991959879930547, + "zygarde-50": 0.4240025980106387, + "tapu-koko": 1.2424308560400497, + "tapu-lele": 1.285003674978419, + "tapu-bulu": 1.0087830653946557, + "tapu-fini": 0.7139052229579633, + "solgaleo": 0.45951085878600395, + "lunala": 0.47975525805207936, + "nihilego": 0.9588546305761392, + "buzzwole": 1.9229686683170382, + "pheromosa": 2.0556806856900605, + "xurkitree": 0.8012943759135258, + "celesteela": 0.5586501320945072, + "kartana": 1.357227402764418, + "guzzlord": 0.501507990700885, + "necrozma": 1.0991213485014102, + "stakataka": 0.4990784863694049, + "blacephalon": 1.3610680466158669 }, "mr-mime-galar": { - "articuno": 0.8442617216054331, - "zapdos": 0.7985958003748617, - "moltres": 0.4999463122687503, - "mewtwo": 0.7900328821428877, - "raikou": 1.561305329705124, - "entei": 1.0843678535455423, - "suicune": 1.3693116108773318, - "lugia": 1.017747531262065, - "ho-oh": 0.5781923082998209, - "latias": 1.1155575303978245, - "latios": 1.4329296936443816, - "kyogre": 0.4235772949465457, - "groudon": 0.41142594544903416, - "rayquaza": 0.692595129686739, - "uxie": 1.2150121462378816, - "mesprit": 1.1831600975796026, - "azelf": 1.1048185973175402, - "dialga": 0.5103527134485635, - "palkia": 0.487797928429089, - "heatran": 0.31900879764921974, - "giratina-altered": 0.7247102195844497, - "cresselia": 0.693603834139629, - "tornadus-incarnate": 0.884219635013596, - "thundurus-incarnate": 1.0383971136687113, - "reshiram": 0.5350238962841798, - "zekrom": 0.7583580436029463, - "landorus-incarnate": 0.8256144495325126, - "kyurem": 0.6112262502032196, - "xerneas": 0.3881602796834775, - "yveltal": 0.5414806882801361, - "zygarde-50": 0.697222506608052, - "tapu-koko": 1.183813712766347, - "tapu-lele": 1.3832202687384059, - "tapu-bulu": 1.0739105010954866, - "tapu-fini": 0.6710179697272179, - "solgaleo": 0.4910501102451939, - "lunala": 0.4986518180111744, - "nihilego": 0.9733909154345637, - "buzzwole": 1.5362896532060728, - "pheromosa": 1.7247992202082454, - "xurkitree": 0.7306761668957805, - "celesteela": 0.6118449559965161, - "kartana": 1.5201854633474179, - "guzzlord": 0.7445974188516404, - "necrozma": 1.1208532255800918, - "stakataka": 0.4283594075261635, - "blacephalon": 1.2160753358694718 + "articuno": 0.8445965145243093, + "zapdos": 0.7986329177002351, + "moltres": 0.49872891863322155, + "mewtwo": 0.7901062167284794, + "raikou": 1.5587588285979208, + "entei": 1.079926049826822, + "suicune": 1.367576584527432, + "lugia": 1.0169967720118365, + "ho-oh": 0.5757378486904133, + "latias": 1.1153550559801952, + "latios": 1.4327701172320695, + "kyogre": 0.4228900315829801, + "groudon": 0.4112987616775027, + "rayquaza": 0.6924849930699623, + "uxie": 1.2132327397097367, + "mesprit": 1.1819108416781374, + "azelf": 1.1033680858689765, + "dialga": 0.5084439474127436, + "palkia": 0.48693892325932886, + "heatran": 0.317421066624212, + "giratina-altered": 0.722909420165905, + "cresselia": 0.693435423831743, + "tornadus-incarnate": 0.8841077166085284, + "thundurus-incarnate": 1.0384901255961532, + "reshiram": 0.5338936813096341, + "zekrom": 0.7577660413554974, + "landorus-incarnate": 0.8258758139490245, + "kyurem": 0.610867365799451, + "xerneas": 0.3879714638809258, + "yveltal": 0.5396016455553891, + "zygarde-50": 0.6977494687098833, + "tapu-koko": 1.1830001320278445, + "tapu-lele": 1.3819864243394326, + "tapu-bulu": 1.072308099447139, + "tapu-fini": 0.6704683486464432, + "solgaleo": 0.48825614738401313, + "lunala": 0.496624466464736, + "nihilego": 0.9708503214180297, + "buzzwole": 1.532942119099371, + "pheromosa": 1.720248425623523, + "xurkitree": 0.7297707970017739, + "celesteela": 0.6093714144464121, + "kartana": 1.5184659311401876, + "guzzlord": 0.7416977506677006, + "necrozma": 1.1193789328955712, + "stakataka": 0.42614216793019966, + "blacephalon": 1.2115220232381694 }, "scyther": { - "articuno": 0.694496054672029, - "zapdos": 0.515685829719709, - "moltres": 0.4842416311174825, - "mewtwo": 0.82524059777888, - "raikou": 1.4229936646148822, - "entei": 1.132379819991255, - "suicune": 1.3635151169878645, - "lugia": 0.9062717810913224, - "ho-oh": 0.6697756529834917, - "latias": 1.2326056400746976, - "latios": 1.5857855928343132, - "kyogre": 0.4668817060754116, - "groudon": 0.39172782032477615, - "rayquaza": 0.4303290990087758, - "uxie": 1.5107743782214123, - "mesprit": 1.4447719581269078, - "azelf": 1.373578722173402, - "dialga": 0.48831817620493845, - "palkia": 0.500491508502101, - "heatran": 0.3639410153740522, - "giratina-altered": 0.7091753685270432, - "cresselia": 0.7999462954799217, - "tornadus-incarnate": 0.6832417830755078, - "thundurus-incarnate": 0.7089388722205181, - "reshiram": 0.5515028953242356, - "zekrom": 0.5378315935727352, - "landorus-incarnate": 0.5380831307456886, - "kyurem": 0.5334799191849537, - "xerneas": 0.394421451328842, - "yveltal": 0.5172552916017148, - "zygarde-50": 0.47127099558583596, - "tapu-koko": 0.8236988532392111, - "tapu-lele": 1.6010753716563246, - "tapu-bulu": 1.3802977765517976, - "tapu-fini": 0.6876202818897184, - "solgaleo": 0.7572868823879759, - "lunala": 0.926682718526064, - "nihilego": 0.9024423712213149, - "buzzwole": 1.8188103335321928, - "pheromosa": 2.945646800249239, - "xurkitree": 0.6272944711857631, - "celesteela": 0.6985679596530754, - "kartana": 1.2601131499279414, - "guzzlord": 0.8990197598731645, - "necrozma": 1.1813981195165189, - "stakataka": 0.4040772322005516, - "blacephalon": 1.6142347208685575 + "articuno": 0.6926129876371683, + "zapdos": 0.5141722897934639, + "moltres": 0.4830516657610736, + "mewtwo": 0.8257911897505466, + "raikou": 1.419879268820533, + "entei": 1.130518996831869, + "suicune": 1.3638884007890977, + "lugia": 0.9051955717203604, + "ho-oh": 0.6682079135117097, + "latias": 1.23494544399138, + "latios": 1.5895736371747864, + "kyogre": 0.4669869456013894, + "groudon": 0.3926624544253633, + "rayquaza": 0.42977748305265573, + "uxie": 1.5128310923078445, + "mesprit": 1.446601576056075, + "azelf": 1.3753969139315705, + "dialga": 0.48730696375534666, + "palkia": 0.5001963202022581, + "heatran": 0.36319315842301525, + "giratina-altered": 0.7085785333487917, + "cresselia": 0.8009707040090455, + "tornadus-incarnate": 0.681751898832302, + "thundurus-incarnate": 0.7072781888412398, + "reshiram": 0.5508041186474549, + "zekrom": 0.5365146825905512, + "landorus-incarnate": 0.5387670084037601, + "kyurem": 0.532575925211132, + "xerneas": 0.39453023834198786, + "yveltal": 0.5169398055759541, + "zygarde-50": 0.47224199830749203, + "tapu-koko": 0.8208070625962667, + "tapu-lele": 1.6025389181409357, + "tapu-bulu": 1.3849454949464357, + "tapu-fini": 0.6876769964132015, + "solgaleo": 0.7572923358630703, + "lunala": 0.9279733395983936, + "nihilego": 0.8987705132457076, + "buzzwole": 1.823890367785334, + "pheromosa": 2.9550349823423696, + "xurkitree": 0.6260379567918624, + "celesteela": 0.6977756569896639, + "kartana": 1.2612196277323424, + "guzzlord": 0.8999779373779617, + "necrozma": 1.1799666660428625, + "stakataka": 0.40236892383668105, + "blacephalon": 1.612811499728746 }, "jynx": { - "articuno": 0.9186037496861639, - "zapdos": 1.0190565071238749, - "moltres": 0.4455688478889856, - "mewtwo": 0.9280911540844983, - "raikou": 1.6496021949470268, - "entei": 0.7796870955526869, - "suicune": 1.606965984796064, - "lugia": 1.356678204192001, - "ho-oh": 0.4348993870956402, - "latias": 1.7255228300031218, - "latios": 1.8087347667556046, - "kyogre": 0.613103912971753, - "groudon": 0.4683122218866078, - "rayquaza": 0.9021809649910094, - "uxie": 1.4720335746791662, - "mesprit": 1.4332272012832763, - "azelf": 1.3175552420679715, - "dialga": 0.6017183515922889, - "palkia": 0.7087679644896194, - "heatran": 0.23782411644681417, - "giratina-altered": 0.9157052561063039, - "cresselia": 0.8086237881481275, - "tornadus-incarnate": 1.0570013466943462, - "thundurus-incarnate": 1.4009443084494113, - "reshiram": 0.5995180211437794, - "zekrom": 0.8948204532319808, - "landorus-incarnate": 1.0361851698684688, - "kyurem": 0.6822965816288378, - "xerneas": 0.42794032740944515, - "yveltal": 0.6713269918191156, - "zygarde-50": 0.881966974106236, - "tapu-koko": 1.2750172872301726, - "tapu-lele": 1.54268906038675, - "tapu-bulu": 1.242479019439279, - "tapu-fini": 0.8628800760870843, - "solgaleo": 0.48401640239775934, - "lunala": 0.6015340272747288, - "nihilego": 0.8493182108252237, - "buzzwole": 1.0772145260110086, - "pheromosa": 1.3264710165081017, - "xurkitree": 0.7724681733126197, - "celesteela": 0.6714459379153986, - "kartana": 1.8256592712772326, - "guzzlord": 0.8416462037312227, - "necrozma": 1.3312116255914734, - "stakataka": 0.38892023326713865, - "blacephalon": 0.923200222769931 + "articuno": 0.9199988710715801, + "zapdos": 1.0195922133073796, + "moltres": 0.4437474829710145, + "mewtwo": 0.9296094508969329, + "raikou": 1.6472848828296658, + "entei": 0.7730417666662706, + "suicune": 1.6160942036902357, + "lugia": 1.3596106549363478, + "ho-oh": 0.43061574678976827, + "latias": 1.732278985846858, + "latios": 1.8126524727486237, + "kyogre": 0.6157675936365776, + "groudon": 0.46795859204526674, + "rayquaza": 0.9023776642711081, + "uxie": 1.4732076819506688, + "mesprit": 1.4349092416687057, + "azelf": 1.3179240082174768, + "dialga": 0.5997922006449432, + "palkia": 0.7116323522099575, + "heatran": 0.23614145951587354, + "giratina-altered": 0.9134709973434472, + "cresselia": 0.8096237930466109, + "tornadus-incarnate": 1.0575062388307357, + "thundurus-incarnate": 1.4035455436437876, + "reshiram": 0.5991861105465031, + "zekrom": 0.8939059776565097, + "landorus-incarnate": 1.0365047488247587, + "kyurem": 0.6832086597488602, + "xerneas": 0.42827475135212223, + "yveltal": 0.6702580816237309, + "zygarde-50": 0.8830086061384164, + "tapu-koko": 1.2746135921461221, + "tapu-lele": 1.5427582711136996, + "tapu-bulu": 1.2396899373165398, + "tapu-fini": 0.8684828030511376, + "solgaleo": 0.4808069628056043, + "lunala": 0.6001537905227511, + "nihilego": 0.8465969189005713, + "buzzwole": 1.07294570781439, + "pheromosa": 1.3214225219616482, + "xurkitree": 0.771981739757359, + "celesteela": 0.6687533743346689, + "kartana": 1.8228266111015383, + "guzzlord": 0.8398259838857156, + "necrozma": 1.3319779954489952, + "stakataka": 0.3863342139444674, + "blacephalon": 0.9164994711255352 }, "electabuzz": { - "articuno": 0.9915925268669021, - "zapdos": 0.7394761614422379, - "moltres": 0.7767740324129963, - "mewtwo": 0.7618379952819923, - "raikou": 1.4359506378678764, - "entei": 1.2073355409345248, - "suicune": 1.7260660562081311, - "lugia": 1.1376661292265975, - "ho-oh": 0.8161270155174514, - "latias": 0.8237152999339796, - "latios": 1.0378958562452723, - "kyogre": 0.5414502913852044, - "groudon": 0.2504384994870567, - "rayquaza": 0.43952967994125713, - "uxie": 1.287808838079851, - "mesprit": 1.2318148241337585, - "azelf": 1.160116876930314, - "dialga": 0.5159215770668157, - "palkia": 0.49001325848882576, - "heatran": 0.4860115643371289, - "giratina-altered": 0.547847359462059, - "cresselia": 0.682173582550913, - "tornadus-incarnate": 1.0718693555601662, - "thundurus-incarnate": 0.9347554842693193, - "reshiram": 0.49594201035683644, - "zekrom": 0.5712000101320822, - "landorus-incarnate": 0.3692324732252949, - "kyurem": 0.5185079752655712, - "xerneas": 0.3819469435038286, - "yveltal": 0.6920891567999372, - "zygarde-50": 0.2811810626093912, - "tapu-koko": 1.0972464146418186, - "tapu-lele": 1.3701979234910644, - "tapu-bulu": 0.813006754677027, - "tapu-fini": 0.8746667327088372, - "solgaleo": 0.7352054414288847, - "lunala": 0.5730196835823498, - "nihilego": 0.8578870543099728, - "buzzwole": 1.1917884682222926, - "pheromosa": 1.3901371463835326, - "xurkitree": 0.7008227287353475, - "celesteela": 0.9110861933437124, - "kartana": 1.313347774589959, - "guzzlord": 0.5978421259525764, - "necrozma": 1.202971598543416, - "stakataka": 0.6232093789148544, - "blacephalon": 1.3440768807433614 + "articuno": 0.993133822015771, + "zapdos": 0.7408473726695075, + "moltres": 0.7785758914982228, + "mewtwo": 0.7613642211699094, + "raikou": 1.434599444641107, + "entei": 1.2067200413147372, + "suicune": 1.7275991195564244, + "lugia": 1.139739779395149, + "ho-oh": 0.816417154635126, + "latias": 0.822023415442284, + "latios": 1.0358951048918623, + "kyogre": 0.5420891426697608, + "groudon": 0.2492340365624775, + "rayquaza": 0.4394883619284302, + "uxie": 1.2875300169051598, + "mesprit": 1.2314362623750772, + "azelf": 1.1594623458836233, + "dialga": 0.5154777980636023, + "palkia": 0.4896188187850581, + "heatran": 0.48622704099573444, + "giratina-altered": 0.5464306750458596, + "cresselia": 0.6817289221723433, + "tornadus-incarnate": 1.0748740599119013, + "thundurus-incarnate": 0.9358003653039677, + "reshiram": 0.4954194757335342, + "zekrom": 0.5702641723496922, + "landorus-incarnate": 0.36742715018289535, + "kyurem": 0.5177825168342142, + "xerneas": 0.38199951302509505, + "yveltal": 0.6931433534387973, + "zygarde-50": 0.2797500558065533, + "tapu-koko": 1.0976483226190272, + "tapu-lele": 1.3686608103504991, + "tapu-bulu": 0.8111666138771328, + "tapu-fini": 0.8763113696825344, + "solgaleo": 0.7354637294423279, + "lunala": 0.5723880602940186, + "nihilego": 0.8562000112035264, + "buzzwole": 1.1912539411001575, + "pheromosa": 1.3887003759680958, + "xurkitree": 0.7006855685064313, + "celesteela": 0.9125405428346101, + "kartana": 1.3115459586938383, + "guzzlord": 0.5958777607575115, + "necrozma": 1.202871042489276, + "stakataka": 0.6228333583417218, + "blacephalon": 1.342581153548849 }, "magmar": { - "articuno": 1.161834015842814, - "zapdos": 0.7223960450024701, - "moltres": 0.5631910909921842, - "mewtwo": 0.8609847949238718, - "raikou": 1.654804480873824, - "entei": 1.1146512615891013, - "suicune": 1.0507871753482312, - "lugia": 0.8934591126277338, - "ho-oh": 0.6176247991774773, - "latias": 0.7632039901738148, - "latios": 1.0544243309900634, - "kyogre": 0.3182652603067997, - "groudon": 0.31979956563338763, - "rayquaza": 0.38156655619921676, - "uxie": 1.391679523024695, - "mesprit": 1.3507963202173525, - "azelf": 1.3085594745552118, - "dialga": 0.6872915872497938, - "palkia": 0.373829520081597, - "heatran": 0.4041862667529348, - "giratina-altered": 0.5619280639324911, - "cresselia": 0.7627480600866547, - "tornadus-incarnate": 0.8967070333606221, - "thundurus-incarnate": 0.9506911415148284, - "reshiram": 0.5222703496045804, - "zekrom": 0.5467034858831162, - "landorus-incarnate": 0.44077372845040186, - "kyurem": 0.6663101795629893, - "xerneas": 0.4580658146673302, - "yveltal": 0.5595467691959918, - "zygarde-50": 0.28642416497847295, - "tapu-koko": 1.2678969833964064, - "tapu-lele": 1.5205326711311509, - "tapu-bulu": 1.5146362753406182, - "tapu-fini": 0.5696092374282867, - "solgaleo": 1.144305681036289, - "lunala": 0.6258939770534282, - "nihilego": 0.78146733756422, - "buzzwole": 1.9966744374285073, - "pheromosa": 2.1107307713324563, - "xurkitree": 0.8252880641867766, - "celesteela": 1.0175632440265572, - "kartana": 4.954248664516918, - "guzzlord": 0.6090552987751564, - "necrozma": 1.2330087829882839, - "stakataka": 0.6128875649847745, - "blacephalon": 1.2479411194441492 + "articuno": 1.1660291776827716, + "zapdos": 0.72320667313163, + "moltres": 0.5639656903081278, + "mewtwo": 0.8618165817503243, + "raikou": 1.6549497300105922, + "entei": 1.1151633771823382, + "suicune": 1.0477195866201172, + "lugia": 0.8935189854265848, + "ho-oh": 0.6174614785895962, + "latias": 0.7618635077976537, + "latios": 1.0534204832940373, + "kyogre": 0.31745116668233647, + "groudon": 0.319446803089509, + "rayquaza": 0.38117599162189286, + "uxie": 1.3930914815305533, + "mesprit": 1.3524907572556328, + "azelf": 1.309964692277861, + "dialga": 0.6879514364771115, + "palkia": 0.3724529163741822, + "heatran": 0.40180010665939886, + "giratina-altered": 0.5607548385590015, + "cresselia": 0.7635563103024112, + "tornadus-incarnate": 0.8985430592680728, + "thundurus-incarnate": 0.9518904135978793, + "reshiram": 0.522394991546061, + "zekrom": 0.5460546289080481, + "landorus-incarnate": 0.43998441615684925, + "kyurem": 0.6676262578810235, + "xerneas": 0.45983629921340263, + "yveltal": 0.5599514265695721, + "zygarde-50": 0.28554530189987815, + "tapu-koko": 1.270326295907172, + "tapu-lele": 1.5222343720768126, + "tapu-bulu": 1.5220469358041462, + "tapu-fini": 0.5690574385294027, + "solgaleo": 1.1479250001392305, + "lunala": 0.6260632336843605, + "nihilego": 0.7786138301788709, + "buzzwole": 2.0045433138521025, + "pheromosa": 2.116651153059528, + "xurkitree": 0.8264887828406801, + "celesteela": 1.0195567203641276, + "kartana": 4.985397437908086, + "guzzlord": 0.6077189791202936, + "necrozma": 1.2332869722243456, + "stakataka": 0.6124453603041404, + "blacephalon": 1.2471480970539832 }, "tauros": { - "articuno": 0.8225200891893468, - "zapdos": 0.7007052221207164, - "moltres": 0.5754242818192812, - "mewtwo": 0.8220517061286332, - "raikou": 2.054904225885314, - "entei": 1.4555388661743143, - "suicune": 1.4063640800082342, - "lugia": 0.9685849231571217, - "ho-oh": 0.7990829534979573, - "latias": 1.113118899868006, - "latios": 1.3474294193963159, - "kyogre": 0.4820027576626523, - "groudon": 0.3466954151160647, - "rayquaza": 0.4559460470871094, - "uxie": 1.415733348818876, - "mesprit": 1.303706510988592, - "azelf": 1.2467895977444607, - "dialga": 0.7720570496700504, - "palkia": 0.5436273122988676, - "heatran": 0.8541954204790474, - "giratina-altered": 0.8235106050331988, - "cresselia": 0.7655475524237896, - "tornadus-incarnate": 0.8103851505074751, - "thundurus-incarnate": 0.902192008800939, - "reshiram": 0.7058272848018814, - "zekrom": 0.7667967693096553, - "landorus-incarnate": 0.5348996217362876, - "kyurem": 0.7031523070630091, - "xerneas": 0.38778084543559804, - "yveltal": 0.5500721627505925, - "zygarde-50": 0.42920460063124855, - "tapu-koko": 1.3648548911601313, - "tapu-lele": 1.629527487455714, - "tapu-bulu": 0.9521386022863982, - "tapu-fini": 0.6824211611149334, - "solgaleo": 0.8422198950877386, - "lunala": 0.9467310164721734, - "nihilego": 1.9151681852242057, - "buzzwole": 0.9776950366932863, - "pheromosa": 1.4279971916788865, - "xurkitree": 0.907762969197996, - "celesteela": 0.7326421193535344, - "kartana": 1.3247518049022258, - "guzzlord": 0.914277929882409, - "necrozma": 1.2526128412984705, - "stakataka": 0.8892574450951434, - "blacephalon": 1.9715955126909868 + "articuno": 0.8227321825506173, + "zapdos": 0.7010284793519627, + "moltres": 0.5754550499374333, + "mewtwo": 0.8230022552488976, + "raikou": 2.060207620375086, + "entei": 1.4592972379421196, + "suicune": 1.4085614336135324, + "lugia": 0.9685379210917706, + "ho-oh": 0.7999026480283633, + "latias": 1.1138326423225826, + "latios": 1.3473633338720803, + "kyogre": 0.48298070787523745, + "groudon": 0.3469532665581322, + "rayquaza": 0.4559482913201599, + "uxie": 1.4169177225842495, + "mesprit": 1.303510024152069, + "azelf": 1.246938731731412, + "dialga": 0.7747233210354225, + "palkia": 0.5448449700281959, + "heatran": 0.8577349063864974, + "giratina-altered": 0.8254430406892129, + "cresselia": 0.7659659435178521, + "tornadus-incarnate": 0.8104032193347322, + "thundurus-incarnate": 0.9020056310091138, + "reshiram": 0.7076475950617025, + "zekrom": 0.768749138793287, + "landorus-incarnate": 0.5348032227301863, + "kyurem": 0.7049366938017554, + "xerneas": 0.3880527703895618, + "yveltal": 0.5503749467268442, + "zygarde-50": 0.42985536096289056, + "tapu-koko": 1.3670660298969413, + "tapu-lele": 1.6314866839562328, + "tapu-bulu": 0.9519010082092211, + "tapu-fini": 0.6829438707469393, + "solgaleo": 0.8446182530203548, + "lunala": 0.9496070676601323, + "nihilego": 1.9203980035325983, + "buzzwole": 0.975936004758227, + "pheromosa": 1.4270604403881832, + "xurkitree": 0.909835718457536, + "celesteela": 0.7333916610985178, + "kartana": 1.3250919295509869, + "guzzlord": 0.9165937263343016, + "necrozma": 1.2538778314180774, + "stakataka": 0.8923232550426279, + "blacephalon": 1.9761129227104226 }, "ditto": { - "articuno": 0.897274013823613, - "zapdos": 0.8680379753760371, - "moltres": 0.6480918744705346, - "mewtwo": 0.9013645937533468, - "raikou": 1.6688825060437043, - "entei": 1.2668581588625667, - "suicune": 1.3834916466697516, - "lugia": 1.0222621138246377, - "ho-oh": 1.0811961779432842, - "latias": 1.4065812594677123, - "latios": 2.0501873168744638, - "kyogre": 0.6993926290324242, - "groudon": 0.4606077966583463, - "rayquaza": 0.6551688520381871, - "uxie": 1.5454498659173392, - "mesprit": 1.2788439173320554, - "azelf": 1.1932657749846713, - "dialga": 0.7939979842800569, - "palkia": 1.0197321338949512, - "heatran": 0.6919007615887922, - "giratina-altered": 1.028081006306498, - "cresselia": 0.6975802837311088, - "tornadus-incarnate": 0.9114367268320132, - "thundurus-incarnate": 1.0557328834976258, - "reshiram": 1.136148268814977, - "zekrom": 1.2544524348215575, - "landorus-incarnate": 0.6202455568899127, - "kyurem": 0.7238993767856903, - "xerneas": 0.5714928329520389, - "yveltal": 0.6983651876229974, - "zygarde-50": 0.634667753394173, - "tapu-koko": 1.1413503383626353, - "tapu-lele": 1.7967033828726233, - "tapu-bulu": 1.121995640092054, - "tapu-fini": 0.8323745501237134, - "solgaleo": 0.8453662640287471, - "lunala": 1.4211293913658323, - "nihilego": 0.9808633402403201, - "buzzwole": 1.1102207369996848, - "pheromosa": 1.4308258116406765, - "xurkitree": 0.8321382092288241, - "celesteela": 0.7757186279904977, - "kartana": 1.453170134020955, - "guzzlord": 1.0574298004269485, - "necrozma": 1.3211128740612619, - "stakataka": 0.6229403579674901, - "blacephalon": 2.571475427409688 + "articuno": 0.8928449068614122, + "zapdos": 0.8640529106957501, + "moltres": 0.6450217076687119, + "mewtwo": 0.8964981533756068, + "raikou": 1.6587674499361769, + "entei": 1.2603083380152427, + "suicune": 1.375336926908436, + "lugia": 1.0168818755852906, + "ho-oh": 1.0769404481507898, + "latias": 1.399338883268333, + "latios": 2.0383818091156805, + "kyogre": 0.6960114410220866, + "groudon": 0.4580421766378303, + "rayquaza": 0.6522632267871262, + "uxie": 1.5393808055707803, + "mesprit": 1.2710739674995208, + "azelf": 1.1865189167444228, + "dialga": 0.7897792061584256, + "palkia": 1.0153046332456483, + "heatran": 0.6878123273668648, + "giratina-altered": 1.027038045889965, + "cresselia": 0.6934571280819866, + "tornadus-incarnate": 0.9075713029300667, + "thundurus-incarnate": 1.0504429409817848, + "reshiram": 1.1317070306155375, + "zekrom": 1.2487783923556919, + "landorus-incarnate": 0.6164424209092205, + "kyurem": 0.721328887725319, + "xerneas": 0.5690894833940112, + "yveltal": 0.6949716384086498, + "zygarde-50": 0.6321408183866837, + "tapu-koko": 1.1348481819606153, + "tapu-lele": 1.7871211433450935, + "tapu-bulu": 1.1145834177207101, + "tapu-fini": 0.8281913107870706, + "solgaleo": 0.8407256997247473, + "lunala": 1.421238747581989, + "nihilego": 0.9747124724182633, + "buzzwole": 1.1006378567721211, + "pheromosa": 1.4207429785641028, + "xurkitree": 0.8276506041077274, + "celesteela": 0.7713024922036766, + "kartana": 1.444909903586474, + "guzzlord": 1.0528124394129181, + "necrozma": 1.3139143112495746, + "stakataka": 0.6190294169722859, + "blacephalon": 2.5653409307394246 }, "vaporeon": { - "articuno": 0.8757734145668017, - "zapdos": 0.6723373490786899, - "moltres": 0.886756520418498, - "mewtwo": 0.8518112779842706, - "raikou": 1.5568199849837896, - "entei": 1.7992780241655135, - "suicune": 1.3949093680931508, - "lugia": 0.9561427928185735, - "ho-oh": 0.9249130532902237, - "latias": 0.988942173769299, - "latios": 1.11944863948507, - "kyogre": 0.5059114504210399, - "groudon": 0.531516019148027, - "rayquaza": 0.4037069150081857, - "uxie": 1.399721153564, - "mesprit": 1.3404018123811532, - "azelf": 1.2711954349411159, - "dialga": 0.5546228649644258, - "palkia": 0.5450628066408028, - "heatran": 0.7699614564821117, - "giratina-altered": 0.5947445649418426, - "cresselia": 0.7466230184422793, - "tornadus-incarnate": 0.885618616377883, - "thundurus-incarnate": 0.8910148718365245, - "reshiram": 0.6256745448413279, - "zekrom": 0.5393207877447956, - "landorus-incarnate": 0.7381287679265063, - "kyurem": 0.5818911319333102, - "xerneas": 0.4081454688164575, - "yveltal": 0.5634121727472584, - "zygarde-50": 0.4489927215382289, - "tapu-koko": 1.1704999902343038, - "tapu-lele": 1.485543873920856, - "tapu-bulu": 0.8177322370772111, - "tapu-fini": 0.7365912825627596, - "solgaleo": 0.7923149836592068, - "lunala": 0.6168048756978812, - "nihilego": 1.1145047502445555, - "buzzwole": 1.3011163677118092, - "pheromosa": 1.5033866196846781, - "xurkitree": 0.7404412320944117, - "celesteela": 0.8180274849693966, - "kartana": 1.2754570946992017, - "guzzlord": 0.6740327222584059, - "necrozma": 1.2594967200246145, - "stakataka": 0.9305934254838952, - "blacephalon": 1.9470425315415032 + "articuno": 0.8767194754818608, + "zapdos": 0.6718696408767199, + "moltres": 0.8891121488441883, + "mewtwo": 0.8520918368608157, + "raikou": 1.553700545582144, + "entei": 1.8028030296007378, + "suicune": 1.3975670825902609, + "lugia": 0.9568456683536972, + "ho-oh": 0.9265517854789013, + "latias": 0.9890219602197448, + "latios": 1.1186008696349778, + "kyogre": 0.5065755905696401, + "groudon": 0.5322846061404694, + "rayquaza": 0.40337057279274413, + "uxie": 1.400276803053969, + "mesprit": 1.3408424033002686, + "azelf": 1.2713007608143985, + "dialga": 0.5545366782882974, + "palkia": 0.5457082858319433, + "heatran": 0.7719967228243219, + "giratina-altered": 0.5939453134574038, + "cresselia": 0.7467679286971407, + "tornadus-incarnate": 0.8866007944295284, + "thundurus-incarnate": 0.8902228216230244, + "reshiram": 0.6265182059792478, + "zekrom": 0.5377306902467649, + "landorus-incarnate": 0.7391034712751319, + "kyurem": 0.5820512302498868, + "xerneas": 0.4082288746180118, + "yveltal": 0.5635065750563681, + "zygarde-50": 0.44906806525003135, + "tapu-koko": 1.1696185336803446, + "tapu-lele": 1.4850391204762206, + "tapu-bulu": 0.8154324497025707, + "tapu-fini": 0.7387367547741504, + "solgaleo": 0.7928780634834975, + "lunala": 0.6165842683471429, + "nihilego": 1.114437611296764, + "buzzwole": 1.3013081497950272, + "pheromosa": 1.5029745215106662, + "xurkitree": 0.7391613127020689, + "celesteela": 0.8187872317948868, + "kartana": 1.2713935708019308, + "guzzlord": 0.6731033725643056, + "necrozma": 1.2594341183469777, + "stakataka": 0.9316328368220755, + "blacephalon": 1.949950218360967 }, "jolteon": { - "articuno": 1.1312663222505872, - "zapdos": 0.9350569424893185, - "moltres": 0.90692292731741, - "mewtwo": 0.928251625148755, - "raikou": 1.7620220727026759, - "entei": 1.3419493356562344, - "suicune": 1.997916386395401, - "lugia": 1.3033290004507045, - "ho-oh": 0.9239121722209216, - "latias": 1.111841735237642, - "latios": 1.4088121813903298, - "kyogre": 0.6375464438774603, - "groudon": 0.27815895727366224, - "rayquaza": 0.486093358813904, - "uxie": 1.5780039507951733, - "mesprit": 1.511735908015805, - "azelf": 1.4263566316559284, - "dialga": 0.6047709459814222, - "palkia": 0.5446273872579581, - "heatran": 0.5478328477712187, - "giratina-altered": 0.8327851074793127, - "cresselia": 0.828802334570069, - "tornadus-incarnate": 1.2432887833675292, - "thundurus-incarnate": 1.1971992575185977, - "reshiram": 0.5439518425863781, - "zekrom": 0.6277691571201843, - "landorus-incarnate": 0.40764219046022787, - "kyurem": 0.5684099501865202, - "xerneas": 0.4262739657421475, - "yveltal": 0.8025578874418192, - "zygarde-50": 0.3109797778747121, - "tapu-koko": 1.395977255997852, - "tapu-lele": 1.642824187010762, - "tapu-bulu": 0.8900300906977414, - "tapu-fini": 1.0195622456471174, - "solgaleo": 0.9148733769466311, - "lunala": 0.967580898830543, - "nihilego": 0.921609126685647, - "buzzwole": 1.339037272028735, - "pheromosa": 1.5371779601075013, - "xurkitree": 0.8909252137872278, - "celesteela": 1.075279360652671, - "kartana": 1.5723679381377553, - "guzzlord": 0.6266833051230449, - "necrozma": 1.5102267273303256, - "stakataka": 0.6966250809440448, - "blacephalon": 1.6313227548258866 + "articuno": 1.1334658769935957, + "zapdos": 0.9396001290052385, + "moltres": 0.9092952897519668, + "mewtwo": 0.9292796391613363, + "raikou": 1.7678158247481623, + "entei": 1.3424860054646588, + "suicune": 2.0002742624348433, + "lugia": 1.306976181344297, + "ho-oh": 0.9245340207202785, + "latias": 1.1119523839014742, + "latios": 1.4091744779471265, + "kyogre": 0.6389396970190646, + "groudon": 0.27727945825874667, + "rayquaza": 0.48648438524565774, + "uxie": 1.5804580139801203, + "mesprit": 1.5139838942054418, + "azelf": 1.4280807912104994, + "dialga": 0.6051595720135008, + "palkia": 0.5446772141614232, + "heatran": 0.5485808292323782, + "giratina-altered": 0.8327762716419602, + "cresselia": 0.8296749327050204, + "tornadus-incarnate": 1.247150221420674, + "thundurus-incarnate": 1.2028301277579048, + "reshiram": 0.5441166110519501, + "zekrom": 0.6276502859970918, + "landorus-incarnate": 0.40630190019167933, + "kyurem": 0.5683650210990392, + "xerneas": 0.4267471461246449, + "yveltal": 0.8037236953688494, + "zygarde-50": 0.30989275223458773, + "tapu-koko": 1.4016635522519927, + "tapu-lele": 1.6436880659400177, + "tapu-bulu": 0.8891391109125095, + "tapu-fini": 1.0218132840751402, + "solgaleo": 0.9167625241311557, + "lunala": 0.9692508277893628, + "nihilego": 0.920514909564909, + "buzzwole": 1.3396633943870855, + "pheromosa": 1.5370163336056768, + "xurkitree": 0.894552960277035, + "celesteela": 1.0771279750049048, + "kartana": 1.5727713271539185, + "guzzlord": 0.625058390910977, + "necrozma": 1.513438200047371, + "stakataka": 0.6967970238931529, + "blacephalon": 1.6323490412262032 }, "flareon": { - "articuno": 1.0736641226557455, - "zapdos": 0.6934804620443356, - "moltres": 0.7348693087384643, - "mewtwo": 0.9314276397506063, - "raikou": 1.673846254817517, - "entei": 1.3168727253458292, - "suicune": 1.1880117236434515, - "lugia": 0.9826986342468382, - "ho-oh": 0.8675140683922113, - "latias": 1.0011996644904466, - "latios": 1.3630503081237255, - "kyogre": 0.40266475050983463, - "groudon": 0.3054662469154936, - "rayquaza": 0.42618792280556483, - "uxie": 1.5312626803092562, - "mesprit": 1.483795424098091, - "azelf": 1.4274048161892017, - "dialga": 0.637067817103711, - "palkia": 0.45290264336092667, - "heatran": 0.5841604572270471, - "giratina-altered": 0.775186227726688, - "cresselia": 0.8221064310099959, - "tornadus-incarnate": 0.9299485101678446, - "thundurus-incarnate": 0.944128295504742, - "reshiram": 0.6142910956643008, - "zekrom": 0.5911516863101942, - "landorus-incarnate": 0.4134745610836471, - "kyurem": 0.640576359692794, - "xerneas": 0.4346651896877647, - "yveltal": 0.535909024669345, - "zygarde-50": 0.30815415433216037, - "tapu-koko": 1.1951946609296855, - "tapu-lele": 1.6457769345403672, - "tapu-bulu": 1.353918841032776, - "tapu-fini": 0.6179465688773997, - "solgaleo": 1.0277005778438895, - "lunala": 0.9317282428311859, - "nihilego": 0.8824899500392551, - "buzzwole": 1.7564373072169883, - "pheromosa": 1.9047037021878805, - "xurkitree": 0.787364456453253, - "celesteela": 0.9038573785035905, - "kartana": 4.152848097334808, - "guzzlord": 0.6571476513421128, - "necrozma": 1.3502947186344518, - "stakataka": 0.5678610277750658, - "blacephalon": 1.7478707282002457 + "articuno": 1.0756988147426463, + "zapdos": 0.6931713901992936, + "moltres": 0.7372116288656616, + "mewtwo": 0.9318893816909615, + "raikou": 1.6719086366641194, + "entei": 1.3188893923548544, + "suicune": 1.1838394362200497, + "lugia": 0.9827015925549443, + "ho-oh": 0.8701953100641546, + "latias": 1.0001091832009237, + "latios": 1.3625635429218605, + "kyogre": 0.40161131713806775, + "groudon": 0.30471988296369235, + "rayquaza": 0.42544065990909985, + "uxie": 1.532412075678188, + "mesprit": 1.4852145886614685, + "azelf": 1.4282683331859216, + "dialga": 0.6371773106741483, + "palkia": 0.4512232916226573, + "heatran": 0.5844932216087338, + "giratina-altered": 0.7747090085100388, + "cresselia": 0.8225483574453096, + "tornadus-incarnate": 0.9313413132390007, + "thundurus-incarnate": 0.9441393595922252, + "reshiram": 0.6144288966114513, + "zekrom": 0.5898082221906935, + "landorus-incarnate": 0.41214606570336776, + "kyurem": 0.6410594822987394, + "xerneas": 0.43541860134230015, + "yveltal": 0.5352961720760376, + "zygarde-50": 0.30701625956097245, + "tapu-koko": 1.1948058504410048, + "tapu-lele": 1.6461215275840138, + "tapu-bulu": 1.355749764439412, + "tapu-fini": 0.6167805068182923, + "solgaleo": 1.0301747835393058, + "lunala": 0.9335922626667719, + "nihilego": 0.8799674507103588, + "buzzwole": 1.7589934262909175, + "pheromosa": 1.9060092818527035, + "xurkitree": 0.7873971986877956, + "celesteela": 0.9040688517446143, + "kartana": 4.168757381338039, + "guzzlord": 0.6548160201908984, + "necrozma": 1.350137392999703, + "stakataka": 0.566993252289205, + "blacephalon": 1.752101438639282 }, "porygon": { - "articuno": 0.8345537534566863, - "zapdos": 0.7502922873458286, - "moltres": 0.6434779867822833, - "mewtwo": 0.8678968146344654, - "raikou": 1.5923857500478542, - "entei": 1.2644008277618481, - "suicune": 1.4892369409398958, - "lugia": 0.9953397387704574, - "ho-oh": 0.7512951151547709, - "latias": 1.084177072307418, - "latios": 1.3346826463008208, - "kyogre": 0.4553775106867012, - "groudon": 0.4045287475057697, - "rayquaza": 0.6778828070256816, - "uxie": 1.4231983958289671, - "mesprit": 1.3787464823118598, - "azelf": 1.383053940450747, - "dialga": 0.5654153222517242, - "palkia": 0.52180875139896, - "heatran": 0.4299019159440508, - "giratina-altered": 0.8833107721038208, - "cresselia": 0.7396356404408311, - "tornadus-incarnate": 0.8597952890282079, - "thundurus-incarnate": 0.9615399560606506, - "reshiram": 0.5917610970948154, - "zekrom": 0.7298375066615992, - "landorus-incarnate": 0.8109533809680753, - "kyurem": 0.6198312338600998, - "xerneas": 0.3808013557284886, - "yveltal": 0.5809913938655977, - "zygarde-50": 0.6613609833317423, - "tapu-koko": 1.1735587700779297, - "tapu-lele": 1.4494321538757382, - "tapu-bulu": 1.0431605295786908, - "tapu-fini": 0.7293202593843855, - "solgaleo": 0.8149345141348935, - "lunala": 1.0876386492819796, - "nihilego": 0.8836801109842658, - "buzzwole": 1.161080595098659, - "pheromosa": 1.3678482860387282, - "xurkitree": 0.7580801241739826, - "celesteela": 0.8560330594512803, - "kartana": 1.4481809932967764, - "guzzlord": 0.8171413367392888, - "necrozma": 1.3305166068860699, - "stakataka": 0.5705535602837317, - "blacephalon": 1.985522192021682 + "articuno": 0.8353533790584905, + "zapdos": 0.7517360282260808, + "moltres": 0.6447713960665125, + "mewtwo": 0.8692651987407921, + "raikou": 1.5921210855303487, + "entei": 1.2652911054565745, + "suicune": 1.4903252793969022, + "lugia": 0.9980762508369565, + "ho-oh": 0.7525343745035196, + "latias": 1.0856814465823748, + "latios": 1.3360171504687943, + "kyogre": 0.45577731924264253, + "groudon": 0.40477171263712985, + "rayquaza": 0.6794754219614743, + "uxie": 1.4260825892334523, + "mesprit": 1.3808080279466366, + "azelf": 1.3854232787460248, + "dialga": 0.5658678501718959, + "palkia": 0.522341937760368, + "heatran": 0.43004953146710223, + "giratina-altered": 0.8867996094696805, + "cresselia": 0.7404500164404463, + "tornadus-incarnate": 0.8621974088921398, + "thundurus-incarnate": 0.963352787683084, + "reshiram": 0.5922940108239609, + "zekrom": 0.7307342068280165, + "landorus-incarnate": 0.8122309518925739, + "kyurem": 0.6205541576386149, + "xerneas": 0.3810886770187973, + "yveltal": 0.5822840464396823, + "zygarde-50": 0.6625518634733745, + "tapu-koko": 1.1738879877368207, + "tapu-lele": 1.4499130379574596, + "tapu-bulu": 1.043120649384007, + "tapu-fini": 0.7299063707987166, + "solgaleo": 0.8161310927262476, + "lunala": 1.0926216723493214, + "nihilego": 0.8825395015234383, + "buzzwole": 1.1604132127461741, + "pheromosa": 1.3666265821214645, + "xurkitree": 0.7583678038602555, + "celesteela": 0.857769102855651, + "kartana": 1.449293534932132, + "guzzlord": 0.8173675281948161, + "necrozma": 1.3327048266421913, + "stakataka": 0.5702767925029786, + "blacephalon": 1.990121416944012 }, "dragonair": { - "articuno": 0.6645608025350256, - "zapdos": 0.737645173201118, - "moltres": 0.653565271675056, - "mewtwo": 0.6396191179269224, - "raikou": 1.6513997575607182, - "entei": 1.1669875541231673, - "suicune": 1.444384087116676, - "lugia": 0.851450383749943, - "ho-oh": 0.7547762791136157, - "latias": 1.2469766184406292, - "latios": 1.4375474274379716, - "kyogre": 0.49189634438605095, - "groudon": 0.3820876840339541, - "rayquaza": 0.5647775720735021, - "uxie": 1.1797211683095954, - "mesprit": 1.0926468218420209, - "azelf": 0.9767831551530339, - "dialga": 0.5163913037172644, - "palkia": 0.6553089974308067, - "heatran": 0.4371386933745389, - "giratina-altered": 0.7706921695399436, - "cresselia": 0.6014488456360378, - "tornadus-incarnate": 0.7800320537095716, - "thundurus-incarnate": 0.9462555879108563, - "reshiram": 0.7114393131162877, - "zekrom": 0.7279319872436799, - "landorus-incarnate": 0.7289212634935569, - "kyurem": 0.607904622508236, - "xerneas": 0.2695361499485639, - "yveltal": 0.5181706333056704, - "zygarde-50": 0.5719595582517424, - "tapu-koko": 1.0482863080785616, - "tapu-lele": 1.1317336455511546, - "tapu-bulu": 1.0565338932653814, - "tapu-fini": 0.7030474485893747, - "solgaleo": 0.5995825591812403, - "lunala": 0.5317723672863552, - "nihilego": 0.9870676971562924, - "buzzwole": 1.021096355687515, - "pheromosa": 1.3201098278572843, - "xurkitree": 0.7680685030141965, - "celesteela": 0.7773303623517323, - "kartana": 1.4428280381509717, - "guzzlord": 0.8341296652710071, - "necrozma": 1.0956981438644782, - "stakataka": 0.5342150405263418, - "blacephalon": 1.480287871963606 + "articuno": 0.6631348337604475, + "zapdos": 0.7390452096814947, + "moltres": 0.6550639409266382, + "mewtwo": 0.6388317061520912, + "raikou": 1.6525616349708123, + "entei": 1.1677202935834732, + "suicune": 1.4459905852498784, + "lugia": 0.8516758124992476, + "ho-oh": 0.7563336839890145, + "latias": 1.2480787538155154, + "latios": 1.4379986452596247, + "kyogre": 0.49282312673651396, + "groudon": 0.38207690114923615, + "rayquaza": 0.5652391743553496, + "uxie": 1.1791671963939208, + "mesprit": 1.0912820705258162, + "azelf": 0.9755579407110431, + "dialga": 0.5159067005848991, + "palkia": 0.6563605442687344, + "heatran": 0.4371142066958855, + "giratina-altered": 0.7714296060332408, + "cresselia": 0.6006032805209287, + "tornadus-incarnate": 0.7810307002800139, + "thundurus-incarnate": 0.9480913670770058, + "reshiram": 0.7126906464147625, + "zekrom": 0.7289404464699663, + "landorus-incarnate": 0.7296169651750455, + "kyurem": 0.6072214532607623, + "xerneas": 0.2682798552043303, + "yveltal": 0.5183800095848825, + "zygarde-50": 0.5725806377058353, + "tapu-koko": 1.0467431190329284, + "tapu-lele": 1.1273037022332566, + "tapu-bulu": 1.0559393648002335, + "tapu-fini": 0.7021955318063571, + "solgaleo": 0.5986902205195792, + "lunala": 0.5310733651129029, + "nihilego": 0.9865934743871143, + "buzzwole": 1.0202657493525524, + "pheromosa": 1.3194081704701637, + "xurkitree": 0.7691726361878686, + "celesteela": 0.7775142153378134, + "kartana": 1.4436520964466029, + "guzzlord": 0.8343635646315268, + "necrozma": 1.0954961192047614, + "stakataka": 0.5331504832054825, + "blacephalon": 1.482301025195138 }, "noctowl": { - "articuno": 0.6910931479844222, - "zapdos": 0.5618833237371381, - "moltres": 0.5418070715103074, - "mewtwo": 0.6685282721773084, - "raikou": 1.320703443085501, - "entei": 1.099778165936691, - "suicune": 1.2057291782446187, - "lugia": 0.8301045590372099, - "ho-oh": 0.660060146955353, - "latias": 0.9388836921152875, - "latios": 1.1638715155106578, - "kyogre": 0.4330040186742284, - "groudon": 0.3974844692051547, - "rayquaza": 0.39323450483535277, - "uxie": 1.2444212172063431, - "mesprit": 1.1588973313351, - "azelf": 1.0885612210905915, - "dialga": 0.46077544749601296, - "palkia": 0.46649627051315745, - "heatran": 0.38413843292594607, - "giratina-altered": 0.6354575622011795, - "cresselia": 0.619824379002876, - "tornadus-incarnate": 0.7323389973864327, - "thundurus-incarnate": 0.7519426831234931, - "reshiram": 0.5456417311607908, - "zekrom": 0.5065880125397448, - "landorus-incarnate": 0.5195779370434105, - "kyurem": 0.5267240623432939, - "xerneas": 0.3601097776165625, - "yveltal": 0.4796486049243963, - "zygarde-50": 0.43785788535000847, - "tapu-koko": 0.9695545258372766, - "tapu-lele": 1.3845145094848603, - "tapu-bulu": 1.0585903422165877, - "tapu-fini": 0.6328116595182474, - "solgaleo": 0.5386938764539413, - "lunala": 0.5883987420885683, - "nihilego": 0.8479358469129028, - "buzzwole": 1.3469182312176549, - "pheromosa": 2.1489543684005374, - "xurkitree": 0.6378370160942226, - "celesteela": 0.6164211993980031, - "kartana": 1.2673205606690119, - "guzzlord": 0.6616034585537661, - "necrozma": 1.0437862800914677, - "stakataka": 0.40493112562699307, - "blacephalon": 1.4156716475743254 + "articuno": 0.6894494576460564, + "zapdos": 0.560364462423035, + "moltres": 0.5414292399802182, + "mewtwo": 0.6672460919212458, + "raikou": 1.3153721011039141, + "entei": 1.0979426043086542, + "suicune": 1.2037944094725141, + "lugia": 0.8292427525682953, + "ho-oh": 0.6589249037175295, + "latias": 0.9377697820933, + "latios": 1.1625803467766496, + "kyogre": 0.43240157241929034, + "groudon": 0.3978789124723884, + "rayquaza": 0.39250838667716836, + "uxie": 1.2442137618143563, + "mesprit": 1.1578573420925418, + "azelf": 1.0871249773930056, + "dialga": 0.45945866520702944, + "palkia": 0.4656100468020266, + "heatran": 0.38337883562075836, + "giratina-altered": 0.635074025611996, + "cresselia": 0.6188023387865211, + "tornadus-incarnate": 0.7317719413761294, + "thundurus-incarnate": 0.7499700484071119, + "reshiram": 0.5454793689813935, + "zekrom": 0.504072946714855, + "landorus-incarnate": 0.519758635906793, + "kyurem": 0.5258196810191612, + "xerneas": 0.3599889329508417, + "yveltal": 0.47893071927169806, + "zygarde-50": 0.43806696880391655, + "tapu-koko": 0.9668232750326871, + "tapu-lele": 1.3825162203980241, + "tapu-bulu": 1.0587444509233432, + "tapu-fini": 0.6326101173782558, + "solgaleo": 0.5369390493095665, + "lunala": 0.5886391899760803, + "nihilego": 0.8455608467613243, + "buzzwole": 1.3473501165589037, + "pheromosa": 2.1508340474209255, + "xurkitree": 0.6360356783469658, + "celesteela": 0.6151647540340227, + "kartana": 1.2663812033072652, + "guzzlord": 0.6603204370946446, + "necrozma": 1.0416064577303874, + "stakataka": 0.40295592474717745, + "blacephalon": 1.4149547054546923 }, "lanturn": { - "articuno": 1.0714334487252177, - "zapdos": 0.9020283057947394, - "moltres": 0.8684966149722837, - "mewtwo": 0.8287529812098434, - "raikou": 1.968912187898351, - "entei": 1.746062430335006, - "suicune": 1.8657938645881922, - "lugia": 1.16342260259985, - "ho-oh": 0.9027930787216301, - "latias": 0.8759274166830425, - "latios": 1.0564621690898197, - "kyogre": 0.6316107405858022, - "groudon": 0.445308245735654, - "rayquaza": 0.4559226165369846, - "uxie": 1.3457124349182177, - "mesprit": 1.2876501292458107, - "azelf": 1.2226510559284522, - "dialga": 0.55237873433493, - "palkia": 0.5445387562875569, - "heatran": 0.7454348984378636, - "giratina-altered": 0.5801612296422619, - "cresselia": 0.7277153508703699, - "tornadus-incarnate": 1.136704918827049, - "thundurus-incarnate": 1.1630184313049514, - "reshiram": 0.6054175656416821, - "zekrom": 0.5541107890729141, - "landorus-incarnate": 0.6321714917055066, - "kyurem": 0.5477431458359439, - "xerneas": 0.3929694850895091, - "yveltal": 0.7135254796028996, - "zygarde-50": 0.3713139074646943, - "tapu-koko": 1.584732846393897, - "tapu-lele": 1.4488930623276357, - "tapu-bulu": 0.7761774205046428, - "tapu-fini": 0.9529610620119366, - "solgaleo": 0.7973081622937163, - "lunala": 0.5949618849286915, - "nihilego": 1.068806854285945, - "buzzwole": 1.2755124813828478, - "pheromosa": 1.4673736443649399, - "xurkitree": 0.992196793730342, - "celesteela": 0.9930372406406006, - "kartana": 1.26017682513111, - "guzzlord": 0.629298401050062, - "necrozma": 1.3023904342995207, - "stakataka": 0.9066768948423511, - "blacephalon": 1.8881773079080264 + "articuno": 1.074856566323216, + "zapdos": 0.9075298186260725, + "moltres": 0.8733355201950038, + "mewtwo": 0.8298678475884849, + "raikou": 1.9786334972322241, + "entei": 1.7524764174986949, + "suicune": 1.8696639241904944, + "lugia": 1.1664131015972792, + "ho-oh": 0.9063037591201792, + "latias": 0.8752660913942085, + "latios": 1.0554278778628285, + "kyogre": 0.6335693304023896, + "groudon": 0.44551436026741814, + "rayquaza": 0.4561579977610706, + "uxie": 1.3474308365302947, + "mesprit": 1.2891828101418934, + "azelf": 1.2239417639435455, + "dialga": 0.5529669639745135, + "palkia": 0.5446559023187836, + "heatran": 0.7491132183507787, + "giratina-altered": 0.5799445995256316, + "cresselia": 0.7286110658106882, + "tornadus-incarnate": 1.141042175698758, + "thundurus-incarnate": 1.1699899316926126, + "reshiram": 0.6064586499574598, + "zekrom": 0.5533410041385727, + "landorus-incarnate": 0.6323015727993353, + "kyurem": 0.5478181668497225, + "xerneas": 0.39343331726301034, + "yveltal": 0.7152490052742697, + "zygarde-50": 0.37062393996290666, + "tapu-koko": 1.593727611542977, + "tapu-lele": 1.4497596662704835, + "tapu-bulu": 0.7740987406772927, + "tapu-fini": 0.9556123645137087, + "solgaleo": 0.7998978891846455, + "lunala": 0.5955893104637029, + "nihilego": 1.0696135216086997, + "buzzwole": 1.2776652731057547, + "pheromosa": 1.4685674596887008, + "xurkitree": 0.9972783140497647, + "celesteela": 0.9962913450358754, + "kartana": 1.2575258452120626, + "guzzlord": 0.6281655952903766, + "necrozma": 1.3051812367648261, + "stakataka": 0.9099937733595431, + "blacephalon": 1.8947837422657083 }, "togetic": { - "articuno": 0.7396410607187685, - "zapdos": 0.5378562184136549, - "moltres": 0.46246769458288295, - "mewtwo": 0.6386507229946349, - "raikou": 1.3122045667040951, - "entei": 0.990178994922488, - "suicune": 1.1646459446521127, - "lugia": 0.8020227492626162, - "ho-oh": 0.5636155414036707, - "latias": 1.122889176927187, - "latios": 1.473018200774909, - "kyogre": 0.4006924647469343, - "groudon": 0.39836906645710346, - "rayquaza": 0.49581672625800766, - "uxie": 1.1553919493176656, - "mesprit": 1.1054646539358377, - "azelf": 1.0481486217162845, - "dialga": 0.5172068361684172, - "palkia": 0.5622265152886056, - "heatran": 0.3357150009527526, - "giratina-altered": 0.7399771094081397, - "cresselia": 0.5942961018925418, - "tornadus-incarnate": 0.6830428717743979, - "thundurus-incarnate": 0.6585142926113253, - "reshiram": 0.5349398538284171, - "zekrom": 0.6146543070343609, - "landorus-incarnate": 0.5266327790230296, - "kyurem": 0.5635602287341276, - "xerneas": 0.36217214519391444, - "yveltal": 0.606238317548596, - "zygarde-50": 0.49173509902895607, - "tapu-koko": 0.9243824712732838, - "tapu-lele": 1.3339754933299828, - "tapu-bulu": 1.1828811414399318, - "tapu-fini": 0.5904290516758723, - "solgaleo": 0.7136877771615905, - "lunala": 0.5224506387726596, - "nihilego": 0.7199471002491369, - "buzzwole": 1.567232152722425, - "pheromosa": 1.6785222165368636, - "xurkitree": 0.6155719268486106, - "celesteela": 0.8492277692646899, - "kartana": 2.9890307657745887, - "guzzlord": 1.1387893375756515, - "necrozma": 1.0063149458124394, - "stakataka": 0.5201378122107662, - "blacephalon": 1.1275712964547604 + "articuno": 0.7378892810958957, + "zapdos": 0.5365197767570492, + "moltres": 0.4615438742882122, + "mewtwo": 0.6372754009112999, + "raikou": 1.3073892242431495, + "entei": 0.9881671924783788, + "suicune": 1.1622676460703318, + "lugia": 0.8011567402291289, + "ho-oh": 0.562149725383488, + "latias": 1.123011244241979, + "latios": 1.474397577366637, + "kyogre": 0.39979544818165147, + "groudon": 0.39911961824677056, + "rayquaza": 0.4960438088452924, + "uxie": 1.1538054595248273, + "mesprit": 1.1038506029767428, + "azelf": 1.046505883498224, + "dialga": 0.5160131825862694, + "palkia": 0.561922146517112, + "heatran": 0.3341122909778097, + "giratina-altered": 0.7399592521295912, + "cresselia": 0.5932370186053955, + "tornadus-incarnate": 0.6821131262291804, + "thundurus-incarnate": 0.656261640677761, + "reshiram": 0.5345923662452889, + "zekrom": 0.6130504580650448, + "landorus-incarnate": 0.5271783204903581, + "kyurem": 0.5623623353843559, + "xerneas": 0.3620251388323573, + "yveltal": 0.6070135291475578, + "zygarde-50": 0.49259338155628973, + "tapu-koko": 0.9218845354561372, + "tapu-lele": 1.3320487284999585, + "tapu-bulu": 1.1848871789089999, + "tapu-fini": 0.5896394319050393, + "solgaleo": 0.7116405894752462, + "lunala": 0.5217082714253252, + "nihilego": 0.7164849734942088, + "buzzwole": 1.5717649524482562, + "pheromosa": 1.6824173624789205, + "xurkitree": 0.6137810590319724, + "celesteela": 0.8476366097029614, + "kartana": 2.998279443281767, + "guzzlord": 1.1415778914017216, + "necrozma": 1.0038162813408489, + "stakataka": 0.5182826587006736, + "blacephalon": 1.1251605164472276 }, "xatu": { - "articuno": 0.6692581467885002, - "zapdos": 0.606944748207012, - "moltres": 0.5926123147083939, - "mewtwo": 0.7219006039596005, - "raikou": 1.4224990772762016, - "entei": 1.2262801287011125, - "suicune": 1.4180043756855396, - "lugia": 0.8581828259228061, - "ho-oh": 0.6741412751663484, - "latias": 0.9516110654094203, - "latios": 1.263467855429345, - "kyogre": 0.4109038438192387, - "groudon": 0.4755363901517068, - "rayquaza": 0.4326660709464427, - "uxie": 1.287219496761069, - "mesprit": 1.2555234756389675, - "azelf": 1.1821014129095435, - "dialga": 0.4982500361999447, - "palkia": 0.4958104712248448, - "heatran": 0.38927517113574417, - "giratina-altered": 0.6216904492580908, - "cresselia": 0.6862701081252849, - "tornadus-incarnate": 0.7580358250145485, - "thundurus-incarnate": 0.7690131225999397, - "reshiram": 0.5845027770547799, - "zekrom": 0.6126450355239759, - "landorus-incarnate": 0.6241896586927489, - "kyurem": 0.518415499295864, - "xerneas": 0.39422144556970395, - "yveltal": 0.46116806553788836, - "zygarde-50": 0.5162714175393264, - "tapu-koko": 1.0492883675502265, - "tapu-lele": 1.4987501763309916, - "tapu-bulu": 1.4297603411544526, - "tapu-fini": 0.6696950808016187, - "solgaleo": 0.6103539180897026, - "lunala": 0.5225969796463634, - "nihilego": 0.9846393410846315, - "buzzwole": 2.902048014709518, - "pheromosa": 2.8068579527858626, - "xurkitree": 0.6529415565443968, - "celesteela": 0.6885294141074658, - "kartana": 1.839867393545658, - "guzzlord": 0.6858693513648396, - "necrozma": 1.1635783503565913, - "stakataka": 0.4709109306058588, - "blacephalon": 1.360008648112299 + "articuno": 0.6670882681959251, + "zapdos": 0.605479491924077, + "moltres": 0.592569779238989, + "mewtwo": 0.7213205881746404, + "raikou": 1.4168880046888035, + "entei": 1.2250761602199614, + "suicune": 1.417696536006948, + "lugia": 0.8568605742369544, + "ho-oh": 0.6734433777104368, + "latias": 0.950859474840402, + "latios": 1.2632897813987416, + "kyogre": 0.4101536243071545, + "groudon": 0.47720640458117247, + "rayquaza": 0.4321912662821283, + "uxie": 1.285642115597677, + "mesprit": 1.2545150908731664, + "azelf": 1.1811572078491688, + "dialga": 0.4971714558985628, + "palkia": 0.49523963354179235, + "heatran": 0.3884820711940727, + "giratina-altered": 0.6200909491839003, + "cresselia": 0.6859728342434015, + "tornadus-incarnate": 0.7573732383440259, + "thundurus-incarnate": 0.7664928273938119, + "reshiram": 0.5844160706991228, + "zekrom": 0.6107048153598185, + "landorus-incarnate": 0.6257231167589035, + "kyurem": 0.5166700552662036, + "xerneas": 0.39420491363083243, + "yveltal": 0.45942516472179495, + "zygarde-50": 0.517287148524135, + "tapu-koko": 1.0466098428234387, + "tapu-lele": 1.49851232023372, + "tapu-bulu": 1.4331984573168155, + "tapu-fini": 0.6694608173418957, + "solgaleo": 0.6092538914100583, + "lunala": 0.5205121452121453, + "nihilego": 0.9816561995847224, + "buzzwole": 2.9130451604702516, + "pheromosa": 2.8128102122279426, + "xurkitree": 0.6507189850494153, + "celesteela": 0.687730877701779, + "kartana": 1.8436321625716139, + "guzzlord": 0.6837174667225883, + "necrozma": 1.1618639076779467, + "stakataka": 0.4693035541771113, + "blacephalon": 1.3585760650240766 }, "bellossom": { - "articuno": 0.6424977552619758, - "zapdos": 0.6302272386668522, - "moltres": 0.41430719383678904, - "mewtwo": 0.7482570415180616, - "raikou": 1.7170276191276046, - "entei": 1.0192989188382144, - "suicune": 1.9427515949520686, - "lugia": 0.8073959881861013, - "ho-oh": 0.5311893469560652, - "latias": 1.1255722032491635, - "latios": 1.3669094299058582, - "kyogre": 0.6286171311193998, - "groudon": 0.5530878921959577, - "rayquaza": 0.4992229801004248, - "uxie": 1.345601867303282, - "mesprit": 1.2881736804047297, - "azelf": 1.2278965945262994, - "dialga": 0.5811880193123689, - "palkia": 0.622812589525154, - "heatran": 0.3246077690785032, - "giratina-altered": 0.8093561061503358, - "cresselia": 0.6948477044766381, - "tornadus-incarnate": 0.6381075661998659, - "thundurus-incarnate": 0.8142623996180887, - "reshiram": 0.4949294363577582, - "zekrom": 0.809698006044266, - "landorus-incarnate": 0.597084948494609, - "kyurem": 0.6285955503664934, - "xerneas": 0.40496869981802497, - "yveltal": 0.5992670617552425, - "zygarde-50": 0.553017374552416, - "tapu-koko": 1.2672576795657224, - "tapu-lele": 1.4704863256027052, - "tapu-bulu": 0.9265155108779084, - "tapu-fini": 0.9815574716282472, - "solgaleo": 0.6128241935580212, - "lunala": 0.5957180142256806, - "nihilego": 0.8046939618986361, - "buzzwole": 1.389477161212647, - "pheromosa": 1.5924090181388886, - "xurkitree": 0.8571231924801621, - "celesteela": 0.6283045052801322, - "kartana": 1.2814043664962147, - "guzzlord": 1.2150192916534852, - "necrozma": 1.2719002463889064, - "stakataka": 0.6874488878160235, - "blacephalon": 1.1315643202120291 + "articuno": 0.6402989045496765, + "zapdos": 0.6295148447727706, + "moltres": 0.41270433158059056, + "mewtwo": 0.7476725695477413, + "raikou": 1.7180869261341398, + "entei": 1.01662189843594, + "suicune": 1.9466922547835879, + "lugia": 0.8060628343413755, + "ho-oh": 0.5291935634653293, + "latias": 1.1257178288199796, + "latios": 1.3667615661125798, + "kyogre": 0.6298905236050396, + "groudon": 0.5543364618649232, + "rayquaza": 0.49868181734772177, + "uxie": 1.3454078727355792, + "mesprit": 1.287885014474452, + "azelf": 1.2276165231382585, + "dialga": 0.5808290583883458, + "palkia": 0.6237941776180937, + "heatran": 0.32351413773566073, + "giratina-altered": 0.8098622435772727, + "cresselia": 0.6945510673691766, + "tornadus-incarnate": 0.6362332865033493, + "thundurus-incarnate": 0.8138342685961699, + "reshiram": 0.493698966910713, + "zekrom": 0.8108189189179446, + "landorus-incarnate": 0.5978915933893623, + "kyurem": 0.6277090323087607, + "xerneas": 0.40528048975569986, + "yveltal": 0.5990425743551391, + "zygarde-50": 0.5542575802524555, + "tapu-koko": 1.2676729562017193, + "tapu-lele": 1.4698789669324381, + "tapu-bulu": 0.9261522202457673, + "tapu-fini": 0.9840640275301406, + "solgaleo": 0.6119447222317147, + "lunala": 0.5955023059072192, + "nihilego": 0.8022477803534307, + "buzzwole": 1.3883147145931591, + "pheromosa": 1.5905202197783936, + "xurkitree": 0.8584224899411861, + "celesteela": 0.6276024737163137, + "kartana": 1.2814984815820591, + "guzzlord": 1.2169698973378578, + "necrozma": 1.2722219559781158, + "stakataka": 0.6873842490463721, + "blacephalon": 1.128252633997805 }, "azumarill": { - "articuno": 0.8007155300907576, - "zapdos": 0.5666047595342014, - "moltres": 0.7000490619482651, - "mewtwo": 0.739302006113016, - "raikou": 1.4117484252420982, - "entei": 1.4364953195089183, - "suicune": 1.2940348897780116, - "lugia": 0.8682592060100922, - "ho-oh": 0.9216271817247302, - "latias": 1.274239505342698, - "latios": 1.580718204597423, - "kyogre": 0.46497736261748335, - "groudon": 0.3837723168916502, - "rayquaza": 0.5372547983665114, - "uxie": 1.1844621046023536, - "mesprit": 1.1318908277656798, - "azelf": 1.0776581303474089, - "dialga": 0.5651325793624636, - "palkia": 0.6627023860604635, - "heatran": 0.6065511776507998, - "giratina-altered": 0.8245757428725933, - "cresselia": 0.6617002178349045, - "tornadus-incarnate": 0.7774596423860684, - "thundurus-incarnate": 0.6993449320351941, - "reshiram": 0.5829139626810496, - "zekrom": 0.6855898742767403, - "landorus-incarnate": 0.5909834436661343, - "kyurem": 0.6895036977232235, - "xerneas": 0.4008631951502992, - "yveltal": 0.6513907388417072, - "zygarde-50": 0.4659728955585203, - "tapu-koko": 0.9375900008242808, - "tapu-lele": 1.4299821755388216, - "tapu-bulu": 1.240022393950163, - "tapu-fini": 0.6668073175056319, - "solgaleo": 0.6378983608232276, - "lunala": 0.5477998472222723, - "nihilego": 1.111543340179424, - "buzzwole": 1.2402876076058005, - "pheromosa": 1.8128343336474062, - "xurkitree": 0.6596226567143946, - "celesteela": 0.6881109787505568, - "kartana": 1.5287579954120352, - "guzzlord": 1.2406273182303338, - "necrozma": 1.0542940637546838, - "stakataka": 0.6210717915369699, - "blacephalon": 1.8289173788525792 + "articuno": 0.8016431160618784, + "zapdos": 0.5660138323608199, + "moltres": 0.7016660546560458, + "mewtwo": 0.7393972183911258, + "raikou": 1.4091425406007234, + "entei": 1.439591292092965, + "suicune": 1.2942535907964028, + "lugia": 0.8689729836889382, + "ho-oh": 0.9242081162140539, + "latias": 1.2764431931854292, + "latios": 1.5837493033432102, + "kyogre": 0.4649775228050659, + "groudon": 0.384267171363313, + "rayquaza": 0.5381858720021994, + "uxie": 1.184215951711606, + "mesprit": 1.1315486761397202, + "azelf": 1.0773606433367302, + "dialga": 0.5652411014284431, + "palkia": 0.6639488448996256, + "heatran": 0.6080396284770007, + "giratina-altered": 0.8259639791901003, + "cresselia": 0.661851676412865, + "tornadus-incarnate": 0.7781987426615511, + "thundurus-incarnate": 0.697880592978121, + "reshiram": 0.5842316201842023, + "zekrom": 0.6848928530129587, + "landorus-incarnate": 0.5919777809617903, + "kyurem": 0.6901739898183464, + "xerneas": 0.4016092008742483, + "yveltal": 0.6529926260744532, + "zygarde-50": 0.46656970402172915, + "tapu-koko": 0.9361722474736744, + "tapu-lele": 1.4306894096681617, + "tapu-bulu": 1.2492551740196216, + "tapu-fini": 0.6673911002022087, + "solgaleo": 0.6376262156958274, + "lunala": 0.5477758867392245, + "nihilego": 1.1113770880761673, + "buzzwole": 1.2424079565152082, + "pheromosa": 1.8178125952523714, + "xurkitree": 0.6592008089787669, + "celesteela": 0.6882199927791834, + "kartana": 1.5431432940236829, + "guzzlord": 1.2442291994873167, + "necrozma": 1.053551664964015, + "stakataka": 0.6210218752873151, + "blacephalon": 1.8339470028126377 }, "sudowoodo": { - "articuno": 1.665828886879274, - "zapdos": 1.0168764656085336, - "moltres": 1.3205419022773028, - "mewtwo": 0.7888769149295277, - "raikou": 2.0580630584394224, - "entei": 1.8327523660269756, - "suicune": 1.3503813632451098, - "lugia": 1.2362446181035058, - "ho-oh": 1.869031875568914, - "latias": 0.9527755568284626, - "latios": 1.2863890162770568, - "kyogre": 0.39334022715725536, - "groudon": 0.29716856935001174, - "rayquaza": 0.6482061507842238, - "uxie": 1.3420039316112704, - "mesprit": 1.3176065590260069, - "azelf": 1.2384764528274919, - "dialga": 0.6833761949206264, - "palkia": 0.47994250815862527, - "heatran": 0.8821310435354031, - "giratina-altered": 0.7255309961878651, - "cresselia": 0.7361289745725088, - "tornadus-incarnate": 1.2243837049904924, - "thundurus-incarnate": 1.3402192987985413, - "reshiram": 0.8748086350627653, - "zekrom": 0.770881777322441, - "landorus-incarnate": 0.5061814537796543, - "kyurem": 0.8103295870029107, - "xerneas": 0.38925086138655324, - "yveltal": 0.7696808644867184, - "zygarde-50": 0.3526142249266719, - "tapu-koko": 1.344497138626314, - "tapu-lele": 1.6913345310409016, - "tapu-bulu": 0.9388618334498047, - "tapu-fini": 0.5871676570725745, - "solgaleo": 0.7847178774737076, - "lunala": 0.6299212829565519, - "nihilego": 1.9786456872212184, - "buzzwole": 1.0210351296779359, - "pheromosa": 1.5243064828153783, - "xurkitree": 0.862424643944645, - "celesteela": 0.7361478459907735, - "kartana": 1.214078672801247, - "guzzlord": 0.8690772850787797, - "necrozma": 1.2069461264184285, - "stakataka": 0.855867983921414, - "blacephalon": 2.4293012299366197 + "articuno": 1.669006953690015, + "zapdos": 1.0184483122883834, + "moltres": 1.3252011024881538, + "mewtwo": 0.7885805142042797, + "raikou": 2.0624227711103886, + "entei": 1.8398631723722079, + "suicune": 1.3489378799264773, + "lugia": 1.2361025826154355, + "ho-oh": 1.8759519187961429, + "latias": 0.9511287377708179, + "latios": 1.2841856250034063, + "kyogre": 0.39292993346131266, + "groudon": 0.296712088176614, + "rayquaza": 0.6491128477039643, + "uxie": 1.3401414766232806, + "mesprit": 1.3163956906309218, + "azelf": 1.2375168090549047, + "dialga": 0.6838725206111556, + "palkia": 0.4798670904451119, + "heatran": 0.8856470456395715, + "giratina-altered": 0.7256269437106548, + "cresselia": 0.7354777585833001, + "tornadus-incarnate": 1.226712366893371, + "thundurus-incarnate": 1.3410812558715535, + "reshiram": 0.8775491416640633, + "zekrom": 0.7725875706413408, + "landorus-incarnate": 0.5051629685886727, + "kyurem": 0.8116836528812019, + "xerneas": 0.3891241074565979, + "yveltal": 0.7709241860723431, + "zygarde-50": 0.3521338756976349, + "tapu-koko": 1.346570720484307, + "tapu-lele": 1.6919089632125344, + "tapu-bulu": 0.9374303289196804, + "tapu-fini": 0.5857653017965775, + "solgaleo": 0.7847617356846867, + "lunala": 0.6293338974731062, + "nihilego": 1.9847221767500116, + "buzzwole": 1.0194406317564164, + "pheromosa": 1.523364369025972, + "xurkitree": 0.8630291621458493, + "celesteela": 0.7349692000787457, + "kartana": 1.2112861030696789, + "guzzlord": 0.8708261885885618, + "necrozma": 1.2062972219703254, + "stakataka": 0.8579993375606852, + "blacephalon": 2.4377095770560664 }, "politoed": { - "articuno": 0.8852748518166059, - "zapdos": 0.6397779806856686, - "moltres": 0.8157080230101775, - "mewtwo": 0.8136008591054462, - "raikou": 1.7064948837384604, - "entei": 1.6143084406158903, - "suicune": 1.3281680539562546, - "lugia": 0.937951590455288, - "ho-oh": 1.0856157606100985, - "latias": 0.9175977322315334, - "latios": 1.0990521494661585, - "kyogre": 0.44271600776134246, - "groudon": 0.42319675565108206, - "rayquaza": 0.3946792621327587, - "uxie": 1.3230709510271002, - "mesprit": 1.2663505378868711, - "azelf": 1.2021187531561492, - "dialga": 0.7990794165929235, - "palkia": 0.5073322652717447, - "heatran": 0.9318594016984278, - "giratina-altered": 0.6404189758471653, - "cresselia": 0.7296580626455619, - "tornadus-incarnate": 0.8717980691795824, - "thundurus-incarnate": 0.8552239464681145, - "reshiram": 0.6973777893424218, - "zekrom": 0.7152143325646878, - "landorus-incarnate": 0.666048555597293, - "kyurem": 0.5937887523001151, - "xerneas": 0.3887792288155778, - "yveltal": 0.5408085776783567, - "zygarde-50": 0.4058192268799033, - "tapu-koko": 1.3041156716722497, - "tapu-lele": 1.5911613159497642, - "tapu-bulu": 0.8010551962093226, - "tapu-fini": 0.6762847615659775, - "solgaleo": 0.9089076395968569, - "lunala": 0.6128023751329961, - "nihilego": 1.4827532335796563, - "buzzwole": 1.076498015983594, - "pheromosa": 1.4396434939715865, - "xurkitree": 0.8151136077735972, - "celesteela": 0.7779881908605979, - "kartana": 1.4167944729700552, - "guzzlord": 0.6989983661920731, - "necrozma": 1.1592603534263322, - "stakataka": 1.1345719536677636, - "blacephalon": 2.1658160244255757 + "articuno": 0.8861362182252542, + "zapdos": 0.6390269922831533, + "moltres": 0.817622976711293, + "mewtwo": 0.8142975371636809, + "raikou": 1.7055670172650619, + "entei": 1.619593633219114, + "suicune": 1.3292627057243147, + "lugia": 0.9380682213819125, + "ho-oh": 1.0882492175153367, + "latias": 0.916812200788159, + "latios": 1.09782080121101, + "kyogre": 0.4428197598320982, + "groudon": 0.4238555954901748, + "rayquaza": 0.3941560875921043, + "uxie": 1.3228132176322407, + "mesprit": 1.2660207410532656, + "azelf": 1.2016415986669664, + "dialga": 0.8007206924300301, + "palkia": 0.5075161066742641, + "heatran": 0.9365208841068501, + "giratina-altered": 0.6401067414156185, + "cresselia": 0.7295761141329873, + "tornadus-incarnate": 0.8724976636066006, + "thundurus-incarnate": 0.8539488353054738, + "reshiram": 0.6994027630392203, + "zekrom": 0.7144080155284422, + "landorus-incarnate": 0.6666397458266169, + "kyurem": 0.5943106562430476, + "xerneas": 0.3890676391211006, + "yveltal": 0.5406790149861691, + "zygarde-50": 0.40602774408559017, + "tapu-koko": 1.3048346411749292, + "tapu-lele": 1.5921397185919448, + "tapu-bulu": 0.7989515318049046, + "tapu-fini": 0.6773845058817243, + "solgaleo": 0.9111090649760704, + "lunala": 0.6128748966060253, + "nihilego": 1.486401848722243, + "buzzwole": 1.076086123039598, + "pheromosa": 1.4394759738863423, + "xurkitree": 0.8146983887054177, + "celesteela": 0.7785091871900288, + "kartana": 1.4134121330306282, + "guzzlord": 0.6986206958518701, + "necrozma": 1.1595899162697625, + "stakataka": 1.1377760767427718, + "blacephalon": 2.1727017442282257 }, "quagsire": { - "articuno": 0.7311548534962445, - "zapdos": 0.7339243925656438, - "moltres": 0.7646347086759813, - "mewtwo": 0.728657563580881, - "raikou": 1.6735596759387765, - "entei": 1.599539102444374, - "suicune": 1.1444323351082364, - "lugia": 0.8332028628756604, - "ho-oh": 0.8399573899329138, - "latias": 0.7868122569093161, - "latios": 0.9943736547271096, - "kyogre": 0.3692275905521687, - "groudon": 0.4779586530731462, - "rayquaza": 0.36851165995271007, - "uxie": 1.2062927200912243, - "mesprit": 1.1523412222442242, - "azelf": 1.1011083452133081, - "dialga": 0.6590818272553438, - "palkia": 0.4262240669897418, - "heatran": 0.6571942332293095, - "giratina-altered": 0.5591690180093016, - "cresselia": 0.6595313523779374, - "tornadus-incarnate": 0.7600332815691457, - "thundurus-incarnate": 0.9823702067889653, - "reshiram": 0.5534483245812353, - "zekrom": 0.6080078834761502, - "landorus-incarnate": 0.6785436486993099, - "kyurem": 0.569144486300885, - "xerneas": 0.3448152908347135, - "yveltal": 0.5036741625972327, - "zygarde-50": 0.4216275633491581, - "tapu-koko": 1.29039867688611, - "tapu-lele": 1.3617300168734037, - "tapu-bulu": 0.6803553801387806, - "tapu-fini": 0.5325874858156583, - "solgaleo": 0.7354185729461724, - "lunala": 0.5390135079778927, - "nihilego": 1.0604077122344746, - "buzzwole": 1.2113360049718258, - "pheromosa": 1.3749141145429937, - "xurkitree": 0.8009960709946065, - "celesteela": 0.7635317922842837, - "kartana": 1.3571367057759387, - "guzzlord": 0.7564498661323039, - "necrozma": 1.205228524399713, - "stakataka": 0.9253851242386054, - "blacephalon": 1.729154607404926 + "articuno": 0.7300928290872847, + "zapdos": 0.7347590639318349, + "moltres": 0.7658264523717226, + "mewtwo": 0.7275457427807008, + "raikou": 1.6754572987436525, + "entei": 1.6022210336013134, + "suicune": 1.1425149082147974, + "lugia": 0.8318254959075437, + "ho-oh": 0.8409392671406339, + "latias": 0.784711574968028, + "latios": 0.9917832023735266, + "kyogre": 0.3686691467353509, + "groudon": 0.4785838026766286, + "rayquaza": 0.36776333578682197, + "uxie": 1.2041468310526309, + "mesprit": 1.1501692209160135, + "azelf": 1.0992521551331054, + "dialga": 0.6598972781838053, + "palkia": 0.4255215018193128, + "heatran": 0.6590732307595712, + "giratina-altered": 0.5580616702322581, + "cresselia": 0.6586053287081437, + "tornadus-incarnate": 0.7592807455612698, + "thundurus-incarnate": 0.9837307589405666, + "reshiram": 0.5534334696616819, + "zekrom": 0.6085367196567277, + "landorus-incarnate": 0.6791281397764464, + "kyurem": 0.5684817507932551, + "xerneas": 0.34406192206320596, + "yveltal": 0.5032688301645449, + "zygarde-50": 0.4214829387224225, + "tapu-koko": 1.292224328719672, + "tapu-lele": 1.3594136641239012, + "tapu-bulu": 0.6765804342511113, + "tapu-fini": 0.5314305982053829, + "solgaleo": 0.736101220705127, + "lunala": 0.5377981961925171, + "nihilego": 1.0606310647481387, + "buzzwole": 1.211081938673488, + "pheromosa": 1.373283371941949, + "xurkitree": 0.8012879813323832, + "celesteela": 0.7643919935979895, + "kartana": 1.3503304359653816, + "guzzlord": 0.7561523186789625, + "necrozma": 1.2047147306178474, + "stakataka": 0.9287782458179845, + "blacephalon": 1.730540601764075 }, "slowking": { - "articuno": 0.8970983973587114, - "zapdos": 0.7142030587469133, - "moltres": 0.8001681314784617, - "mewtwo": 0.83868874807567, - "raikou": 1.6115875085993547, - "entei": 1.532144635646032, - "suicune": 1.4860510866863141, - "lugia": 1.048049522452336, - "ho-oh": 1.0723625952631655, - "latias": 1.239274708615968, - "latios": 1.5108018199737132, - "kyogre": 0.48435038647723977, - "groudon": 0.42364619946919213, - "rayquaza": 0.6339660565222636, - "uxie": 1.33296583530906, - "mesprit": 1.2915910005941424, - "azelf": 1.2198131916335098, - "dialga": 0.5707426759969643, - "palkia": 0.5650771116423514, - "heatran": 0.6955118231787996, - "giratina-altered": 0.7239597575871599, - "cresselia": 0.7516233450310423, - "tornadus-incarnate": 0.9576176532098797, - "thundurus-incarnate": 0.9601969518301281, - "reshiram": 0.6489593265977753, - "zekrom": 0.6613264155362075, - "landorus-incarnate": 0.7616240990019889, - "kyurem": 0.6395947870001517, - "xerneas": 0.4139015682349636, - "yveltal": 0.5447489380278143, - "zygarde-50": 0.5823268378575914, - "tapu-koko": 1.1705757482372081, - "tapu-lele": 1.6516360505458136, - "tapu-bulu": 0.9737108147377316, - "tapu-fini": 0.7432461616618337, - "solgaleo": 0.7363876689658106, - "lunala": 0.5815728235385699, - "nihilego": 1.4256213511848306, - "buzzwole": 1.6953691949137533, - "pheromosa": 1.8549582408468823, - "xurkitree": 0.7274667758789544, - "celesteela": 0.7702232815954884, - "kartana": 1.2741458553871357, - "guzzlord": 0.7502498627479515, - "necrozma": 1.203385645663233, - "stakataka": 0.6352445884902804, - "blacephalon": 2.0673715721921933 + "articuno": 0.8986154833444826, + "zapdos": 0.7145786013696551, + "moltres": 0.8024117709480233, + "mewtwo": 0.8400056096429301, + "raikou": 1.6097107986820982, + "entei": 1.5338945565025068, + "suicune": 1.4871973612381515, + "lugia": 1.0499446790738718, + "ho-oh": 1.0757259369787124, + "latias": 1.2415531508764732, + "latios": 1.51344704272877, + "kyogre": 0.48440751510399627, + "groudon": 0.4244366711969271, + "rayquaza": 0.6347729446029271, + "uxie": 1.3337154652716792, + "mesprit": 1.292668126926643, + "azelf": 1.220567282797477, + "dialga": 0.5710386794259792, + "palkia": 0.5653790945860931, + "heatran": 0.6969086144983786, + "giratina-altered": 0.7237455593329978, + "cresselia": 0.7527701029381914, + "tornadus-incarnate": 0.9598574783689481, + "thundurus-incarnate": 0.9604655894614768, + "reshiram": 0.6503921768670627, + "zekrom": 0.6603246728166637, + "landorus-incarnate": 0.7638949858679652, + "kyurem": 0.6398211159350189, + "xerneas": 0.4141616726423109, + "yveltal": 0.5443164783995567, + "zygarde-50": 0.5833739874659213, + "tapu-koko": 1.169964551543071, + "tapu-lele": 1.654136121461289, + "tapu-bulu": 0.9720864574478018, + "tapu-fini": 0.7441450775496552, + "solgaleo": 0.7371378892916267, + "lunala": 0.5810128227811744, + "nihilego": 1.4281602194973109, + "buzzwole": 1.6942082203876336, + "pheromosa": 1.85423620055162, + "xurkitree": 0.7263129139679991, + "celesteela": 0.7713892144004372, + "kartana": 1.2699095182550524, + "guzzlord": 0.748977086972621, + "necrozma": 1.2041920458151654, + "stakataka": 0.6350743156344374, + "blacephalon": 2.0717966580672713 }, "dunsparce": { - "articuno": 0.6860436849342759, - "zapdos": 0.7102779325120061, - "moltres": 0.503081360484972, - "mewtwo": 0.789740644822466, - "raikou": 1.4161766873109536, - "entei": 1.072406897721455, - "suicune": 1.1669092953028637, - "lugia": 0.9009171544547162, - "ho-oh": 0.6266672592619971, - "latias": 1.0348676900956386, - "latios": 1.2543830510350902, - "kyogre": 0.3964920674521416, - "groudon": 0.39013613346662135, - "rayquaza": 0.6216181422939402, - "uxie": 1.3645446595838213, - "mesprit": 1.2594004649208919, - "azelf": 1.1990580680459249, - "dialga": 0.5306710025746174, - "palkia": 0.44345226591600945, - "heatran": 0.40695451216903356, - "giratina-altered": 0.7846355910546619, - "cresselia": 0.7205342995742045, - "tornadus-incarnate": 0.8142923958451073, - "thundurus-incarnate": 0.9090280630136361, - "reshiram": 0.4883320762310982, - "zekrom": 0.6983631907127212, - "landorus-incarnate": 0.7522951401691922, - "kyurem": 0.5240077292844703, - "xerneas": 0.32989148712888033, - "yveltal": 0.5532834743284476, - "zygarde-50": 0.6156298298431926, - "tapu-koko": 1.006290163668543, - "tapu-lele": 1.4547020015267833, - "tapu-bulu": 1.005727336229021, - "tapu-fini": 0.5658513283488759, - "solgaleo": 0.7560729872924987, - "lunala": 0.8179511304667635, - "nihilego": 0.8066199008745902, - "buzzwole": 1.0980132133910527, - "pheromosa": 1.7169122161954506, - "xurkitree": 0.6577878985514014, - "celesteela": 0.6499279902292475, - "kartana": 1.3841269722942502, - "guzzlord": 0.7875777148347076, - "necrozma": 1.2393969880919868, - "stakataka": 0.5591484230001187, - "blacephalon": 1.473990977907575 + "articuno": 0.6854754818791046, + "zapdos": 0.7106116231084684, + "moltres": 0.5029313585491507, + "mewtwo": 0.7903631382002472, + "raikou": 1.4150866026847435, + "entei": 1.0717330399420415, + "suicune": 1.1661213439174394, + "lugia": 0.9017239477360903, + "ho-oh": 0.6263817954182258, + "latias": 1.0362735529927638, + "latios": 1.2554037320345812, + "kyogre": 0.39624304377856223, + "groudon": 0.3902860897852667, + "rayquaza": 0.6224711958783868, + "uxie": 1.3667138833027088, + "mesprit": 1.2602282421197812, + "azelf": 1.1999611027712218, + "dialga": 0.5305867504889803, + "palkia": 0.44345309893434004, + "heatran": 0.40651913069730017, + "giratina-altered": 0.7874614506735731, + "cresselia": 0.7212455996277775, + "tornadus-incarnate": 0.8147086454226001, + "thundurus-incarnate": 0.909007454513924, + "reshiram": 0.4881820281249101, + "zekrom": 0.6987268818855844, + "landorus-incarnate": 0.7533144429766665, + "kyurem": 0.5240952507353882, + "xerneas": 0.329806577084499, + "yveltal": 0.5535169720561133, + "zygarde-50": 0.6167863340159392, + "tapu-koko": 1.0057971671011279, + "tapu-lele": 1.4553451141438987, + "tapu-bulu": 1.0063934224198667, + "tapu-fini": 0.5654543910306873, + "solgaleo": 0.7562932821906364, + "lunala": 0.8207638927121719, + "nihilego": 0.8051787766703242, + "buzzwole": 1.0977639831793273, + "pheromosa": 1.7173805271078626, + "xurkitree": 0.6574679669885777, + "celesteela": 0.6498106102122332, + "kartana": 1.3846170551272419, + "guzzlord": 0.7881831873249951, + "necrozma": 1.2404775474308067, + "stakataka": 0.5584658871623234, + "blacephalon": 1.475226818137535 }, "qwilfish": { - "articuno": 0.9439987434832902, - "zapdos": 0.5873594487803402, - "moltres": 0.8396589767638004, - "mewtwo": 0.7237550302712622, - "raikou": 1.4976421171966572, - "entei": 1.7331881607456106, - "suicune": 1.2518672161181805, - "lugia": 0.8353234414669106, - "ho-oh": 1.109576358592144, - "latias": 0.939522633306611, - "latios": 1.1231166286493615, - "kyogre": 0.4644656446505836, - "groudon": 0.38905532647901087, - "rayquaza": 0.4213037826521213, - "uxie": 1.1020996523304563, - "mesprit": 1.1130373865527285, - "azelf": 1.122675017513982, - "dialga": 0.5156813485818069, - "palkia": 0.5279196373980852, - "heatran": 0.7478328009662771, - "giratina-altered": 0.5961448681076691, - "cresselia": 0.6726423633596792, - "tornadus-incarnate": 0.8409310654832867, - "thundurus-incarnate": 0.7734449563766599, - "reshiram": 0.5896293557386614, - "zekrom": 0.558133691678383, - "landorus-incarnate": 0.634580516384093, - "kyurem": 0.6477514719045345, - "xerneas": 0.5157374515615875, - "yveltal": 0.5309465385450699, - "zygarde-50": 0.3527894223834811, - "tapu-koko": 1.15331832088067, - "tapu-lele": 1.7805025677827793, - "tapu-bulu": 1.7070701677805473, - "tapu-fini": 0.922220613680235, - "solgaleo": 0.7194985879740831, - "lunala": 0.5946884791665649, - "nihilego": 1.6261001052528261, - "buzzwole": 1.119664946040138, - "pheromosa": 1.527786702419803, - "xurkitree": 0.6298921007765479, - "celesteela": 0.74848050701713, - "kartana": 1.0858764755359216, - "guzzlord": 0.7145319837644826, - "necrozma": 1.01298139334913, - "stakataka": 0.7096224402862373, - "blacephalon": 2.2702806088003316 + "articuno": 0.9445068732093039, + "zapdos": 0.5861676941770873, + "moltres": 0.8414664661097836, + "mewtwo": 0.721070405718631, + "raikou": 1.4931285507939258, + "entei": 1.7365657473313165, + "suicune": 1.2500430458610352, + "lugia": 0.8335342371459125, + "ho-oh": 1.1117166406478713, + "latias": 0.9365347635475769, + "latios": 1.1196433711675196, + "kyogre": 0.4640050147665091, + "groudon": 0.3886927319693064, + "rayquaza": 0.4207524012778039, + "uxie": 1.0977500172363512, + "mesprit": 1.1096426377915156, + "azelf": 1.1196665689556036, + "dialga": 0.5147575004601206, + "palkia": 0.52774537078215, + "heatran": 0.749125989816787, + "giratina-altered": 0.595054095199653, + "cresselia": 0.6707351700150153, + "tornadus-incarnate": 0.840936497505538, + "thundurus-incarnate": 0.7711332213453788, + "reshiram": 0.5895094140855082, + "zekrom": 0.5565583071671982, + "landorus-incarnate": 0.6341529629104432, + "kyurem": 0.647248673679856, + "xerneas": 0.5169727233076111, + "yveltal": 0.5306961877168718, + "zygarde-50": 0.35181198689576587, + "tapu-koko": 1.151614584492232, + "tapu-lele": 1.7776411022690273, + "tapu-bulu": 1.711426730095681, + "tapu-fini": 0.9241265626943074, + "solgaleo": 0.7187605249251615, + "lunala": 0.5937255690123708, + "nihilego": 1.6272928689647328, + "buzzwole": 1.1203579912161536, + "pheromosa": 1.5291229612027415, + "xurkitree": 0.6276626210183627, + "celesteela": 0.7480017828311831, + "kartana": 1.0826328643556036, + "guzzlord": 0.713570289847632, + "necrozma": 1.0088836946010675, + "stakataka": 0.7094738477615289, + "blacephalon": 2.273722244577034 }, "sneasel": { - "articuno": 0.9003605265591759, - "zapdos": 0.8590977788414143, - "moltres": 0.48422094115871017, - "mewtwo": 1.1969910167795585, - "raikou": 1.7015046094778192, - "entei": 1.1010572163567587, - "suicune": 1.382388341774027, - "lugia": 1.2832856541418947, - "ho-oh": 0.6808393333526175, - "latias": 1.5513948526182957, - "latios": 1.7473792808514839, - "kyogre": 0.46859654034354714, - "groudon": 0.34013652151918233, - "rayquaza": 0.8127207755594045, - "uxie": 1.9521025859682015, - "mesprit": 1.6923112677085697, - "azelf": 1.4767912560664191, - "dialga": 0.5279080213560423, - "palkia": 0.513823444473089, - "heatran": 0.3887420624997501, - "giratina-altered": 0.9647639420646283, - "cresselia": 1.0533147362608766, - "tornadus-incarnate": 0.9741274487562652, - "thundurus-incarnate": 1.1508223599248768, - "reshiram": 0.5729153391606778, - "zekrom": 0.7339743356892804, - "landorus-incarnate": 0.7972065423826817, - "kyurem": 0.6375141321647365, - "xerneas": 0.3069403423247655, - "yveltal": 0.7056192835596518, - "zygarde-50": 0.6594578460088886, - "tapu-koko": 1.064246801389956, - "tapu-lele": 1.7047095138208337, - "tapu-bulu": 0.9007130094361121, - "tapu-fini": 0.5421363158915611, - "solgaleo": 0.8211749891255294, - "lunala": 1.215505004994697, - "nihilego": 1.094650809678804, - "buzzwole": 0.6369245411961315, - "pheromosa": 1.0997296513159696, - "xurkitree": 0.7815601120612992, - "celesteela": 0.6687887799964621, - "kartana": 1.168664156401783, - "guzzlord": 0.9418429222409221, - "necrozma": 1.6216623847653588, - "stakataka": 0.4578827071027364, - "blacephalon": 2.0766970678552004 + "articuno": 0.9025988656029866, + "zapdos": 0.8609511505945718, + "moltres": 0.48377319091376086, + "mewtwo": 1.2050172555565521, + "raikou": 1.7027634872622177, + "entei": 1.0989469218332615, + "suicune": 1.3831863508028257, + "lugia": 1.2889302731529482, + "ho-oh": 0.679945578426915, + "latias": 1.5612177991688188, + "latios": 1.754180298633349, + "kyogre": 0.4689149066312253, + "groudon": 0.33946892589921623, + "rayquaza": 0.8145992994200013, + "uxie": 1.9636846970353474, + "mesprit": 1.6982106398873695, + "azelf": 1.4814003707928374, + "dialga": 0.5272023941669237, + "palkia": 0.5140340850141785, + "heatran": 0.388101645859575, + "giratina-altered": 0.9691655045843867, + "cresselia": 1.0590771217360149, + "tornadus-incarnate": 0.9761396237601784, + "thundurus-incarnate": 1.1535573781100092, + "reshiram": 0.5730303642536783, + "zekrom": 0.734443208633706, + "landorus-incarnate": 0.7974606107636681, + "kyurem": 0.6389817436280059, + "xerneas": 0.30610531522118267, + "yveltal": 0.7071011832595799, + "zygarde-50": 0.66081835722181, + "tapu-koko": 1.0636189930844098, + "tapu-lele": 1.7099504574627393, + "tapu-bulu": 0.8976386932046299, + "tapu-fini": 0.5412178228174159, + "solgaleo": 0.8208449835178042, + "lunala": 1.2214937538493746, + "nihilego": 1.0948977458042504, + "buzzwole": 0.6317309798071029, + "pheromosa": 1.09321794442412, + "xurkitree": 0.7824500771951304, + "celesteela": 0.66796181608645, + "kartana": 1.1662944945761566, + "guzzlord": 0.94245130760217, + "necrozma": 1.6285374941540653, + "stakataka": 0.4561546391233956, + "blacephalon": 2.080765992786893 }, "piloswine": { - "articuno": 1.2525978786319474, - "zapdos": 0.9378146470034192, - "moltres": 0.8294459970709828, - "mewtwo": 0.7509592841131412, - "raikou": 1.8655735566922127, - "entei": 1.325595596847461, - "suicune": 1.1997851222538634, - "lugia": 1.0166548086426017, - "ho-oh": 1.2009148250293424, - "latias": 1.0810748592374595, - "latios": 1.4439838560665699, - "kyogre": 0.3749558042861464, - "groudon": 0.45089337670784174, - "rayquaza": 0.7439835359612219, - "uxie": 1.1815979659656701, - "mesprit": 1.1287618604257874, - "azelf": 1.0787083115693434, - "dialga": 0.667294194428909, - "palkia": 0.4534354681944208, - "heatran": 0.5818485277770858, - "giratina-altered": 0.8270881794303735, - "cresselia": 0.6717737080573258, - "tornadus-incarnate": 0.9512120067505487, - "thundurus-incarnate": 1.2693653456687848, - "reshiram": 0.5867741544357293, - "zekrom": 0.8789306738592544, - "landorus-incarnate": 0.9117182965888438, - "kyurem": 0.7297281901537158, - "xerneas": 0.34910581009906627, - "yveltal": 0.6271319522649974, - "zygarde-50": 0.7475679637359747, - "tapu-koko": 1.2694288060853178, - "tapu-lele": 1.453131082103046, - "tapu-bulu": 1.0843355647633706, - "tapu-fini": 0.5062600147177622, - "solgaleo": 0.6065102691089732, - "lunala": 0.5433095868605974, - "nihilego": 1.1440390433864325, - "buzzwole": 1.1227751420903211, - "pheromosa": 1.3124494093263521, - "xurkitree": 0.8624610348166175, - "celesteela": 0.7198503259591555, - "kartana": 1.4398888318369516, - "guzzlord": 0.9770561685157844, - "necrozma": 1.1555725183912915, - "stakataka": 0.8356165778463241, - "blacephalon": 1.6938546059016932 + "articuno": 1.256559748588514, + "zapdos": 0.9425077962856219, + "moltres": 0.8310254123459395, + "mewtwo": 0.7512268701171125, + "raikou": 1.8723196719728454, + "entei": 1.3271464982770156, + "suicune": 1.1978311253441927, + "lugia": 1.0178612529187219, + "ho-oh": 1.2039726695324549, + "latias": 1.0818054678175026, + "latios": 1.4450896604827674, + "kyogre": 0.37464086949912756, + "groudon": 0.4515988904406944, + "rayquaza": 0.7467413528409266, + "uxie": 1.1812561133503232, + "mesprit": 1.1283224664637743, + "azelf": 1.078546647715898, + "dialga": 0.6679262293783406, + "palkia": 0.4534449591191068, + "heatran": 0.5825151235084894, + "giratina-altered": 0.8284784920941535, + "cresselia": 0.6720629556671893, + "tornadus-incarnate": 0.9536612743142305, + "thundurus-incarnate": 1.2761404431563217, + "reshiram": 0.5867041543982663, + "zekrom": 0.8830068758442127, + "landorus-incarnate": 0.914595948253833, + "kyurem": 0.7318749648533942, + "xerneas": 0.3491286779345998, + "yveltal": 0.6290349650491476, + "zygarde-50": 0.7502296091829372, + "tapu-koko": 1.2732150858613613, + "tapu-lele": 1.4533725477238089, + "tapu-bulu": 1.0841988811464214, + "tapu-fini": 0.504915233594239, + "solgaleo": 0.6056396182265305, + "lunala": 0.5427724918583846, + "nihilego": 1.1461027476727699, + "buzzwole": 1.1218399193527433, + "pheromosa": 1.3118139039896932, + "xurkitree": 0.8654942006592494, + "celesteela": 0.720086540167276, + "kartana": 1.4380765572722698, + "guzzlord": 0.9804450460599963, + "necrozma": 1.1561119660396992, + "stakataka": 0.8364018195343136, + "blacephalon": 1.6942623672842503 }, "octillery": { - "articuno": 0.9576441474031754, - "zapdos": 0.6420985055946637, - "moltres": 0.9240326198979822, - "mewtwo": 0.9024235491712784, - "raikou": 1.4984705272840992, - "entei": 1.91217087012893, - "suicune": 1.2816383420460158, - "lugia": 0.9233228023789877, - "ho-oh": 0.9612884700100368, - "latias": 1.2340373364818413, - "latios": 1.4685971511403517, - "kyogre": 0.45871429828646604, - "groudon": 0.562389878715814, - "rayquaza": 0.41545330641175615, - "uxie": 1.4396676432837823, - "mesprit": 1.3773124531150738, - "azelf": 1.310747214234964, - "dialga": 0.5573436218234191, - "palkia": 0.506965171488739, - "heatran": 0.8048764187669271, - "giratina-altered": 0.6354213544755771, - "cresselia": 0.8169917740390706, - "tornadus-incarnate": 0.8759229629920271, - "thundurus-incarnate": 0.8181142976990248, - "reshiram": 0.6246159615366434, - "zekrom": 0.5247636001558842, - "landorus-incarnate": 0.779939284734382, - "kyurem": 0.72351111083872, - "xerneas": 0.44849850840280014, - "yveltal": 0.5611014769837618, - "zygarde-50": 0.4591660534128538, - "tapu-koko": 1.1124542768509924, - "tapu-lele": 1.646563043165414, - "tapu-bulu": 1.122626678167609, - "tapu-fini": 0.6835778760091133, - "solgaleo": 0.8269052874134362, - "lunala": 0.6017032833464689, - "nihilego": 1.0868013949924575, - "buzzwole": 1.359115379941468, - "pheromosa": 1.5235343663258027, - "xurkitree": 0.6970980051708047, - "celesteela": 0.8517312763770155, - "kartana": 1.2917370707196671, - "guzzlord": 0.842100446006978, - "necrozma": 1.2740048283596694, - "stakataka": 0.9942594843005577, - "blacephalon": 2.0473564184242825 + "articuno": 0.9596050618800652, + "zapdos": 0.6413546907848671, + "moltres": 0.9265107154549153, + "mewtwo": 0.9038345353178877, + "raikou": 1.4952573796404791, + "entei": 1.9166615350569143, + "suicune": 1.282344781290988, + "lugia": 0.9239197672327515, + "ho-oh": 0.963095233126943, + "latias": 1.2351130836312643, + "latios": 1.469392166823218, + "kyogre": 0.45860014019686196, + "groudon": 0.5635983654350987, + "rayquaza": 0.41529069218867753, + "uxie": 1.441348252546867, + "mesprit": 1.3788034791683472, + "azelf": 1.3122659876360423, + "dialga": 0.557354969795917, + "palkia": 0.5070572864056374, + "heatran": 0.8068950293386563, + "giratina-altered": 0.6353296110019491, + "cresselia": 0.8182068858913004, + "tornadus-incarnate": 0.8770331770922226, + "thundurus-incarnate": 0.8165106706018024, + "reshiram": 0.625351504598257, + "zekrom": 0.523533234660323, + "landorus-incarnate": 0.7812647091790959, + "kyurem": 0.7247293487649655, + "xerneas": 0.4491820384655045, + "yveltal": 0.5616036927362958, + "zygarde-50": 0.459543686668237, + "tapu-koko": 1.112165490629452, + "tapu-lele": 1.649144507239115, + "tapu-bulu": 1.1230895158539258, + "tapu-fini": 0.6848274415339838, + "solgaleo": 0.8281740469710135, + "lunala": 0.6017870301685102, + "nihilego": 1.0869119704061858, + "buzzwole": 1.3605877062529717, + "pheromosa": 1.5239667701526092, + "xurkitree": 0.6955427735280788, + "celesteela": 0.8526872854994312, + "kartana": 1.2878422565700087, + "guzzlord": 0.8426426818676127, + "necrozma": 1.275071685293376, + "stakataka": 0.9961624327286696, + "blacephalon": 2.0513145980751246 }, "mantine": { - "articuno": 0.9482192042934735, - "zapdos": 0.6216883955935274, - "moltres": 1.2346931245714814, - "mewtwo": 0.86786367814579, - "raikou": 1.2683777248879835, - "entei": 1.5624047644485755, - "suicune": 1.549950091539801, - "lugia": 0.9171321699885013, - "ho-oh": 0.8340265023131108, - "latias": 1.1365407619251895, - "latios": 1.2424059693705982, - "kyogre": 0.6752550992262477, - "groudon": 0.9009699489074691, - "rayquaza": 0.6313459341212806, - "uxie": 1.4459403229991494, - "mesprit": 1.4011189434549944, - "azelf": 1.7616979996606843, - "dialga": 0.5261024250153489, - "palkia": 0.6120669232754881, - "heatran": 0.7523405471682336, - "giratina-altered": 0.6798771625738281, - "cresselia": 0.7564998492276869, - "tornadus-incarnate": 1.6598358266247821, - "thundurus-incarnate": 1.16531749231593, - "reshiram": 0.6082230005538347, - "zekrom": 0.42036318825451835, - "landorus-incarnate": 1.1542375360508494, - "kyurem": 0.9681909763286624, - "xerneas": 0.43370501655736615, - "yveltal": 0.5764211634126322, - "zygarde-50": 0.9774609904983727, - "tapu-koko": 1.049124398083058, - "tapu-lele": 1.4276895163260592, - "tapu-bulu": 1.303142881294126, - "tapu-fini": 0.8635115613595647, - "solgaleo": 0.7139439258511228, - "lunala": 0.6589322916046638, - "nihilego": 1.6207374134937909, - "buzzwole": 2.7373676371669498, - "pheromosa": 2.787624046855661, - "xurkitree": 0.9401097636137111, - "celesteela": 0.8251231774508915, - "kartana": 1.68152340893714, - "guzzlord": 0.8030227473583045, - "necrozma": 1.1495642818724154, - "stakataka": 0.8468058421905581, - "blacephalon": 1.7131863799225975 + "articuno": 0.9487117684995876, + "zapdos": 0.6198298320808356, + "moltres": 1.2390205251602335, + "mewtwo": 0.8681496381438887, + "raikou": 1.2619545662910059, + "entei": 1.5658174385686534, + "suicune": 1.5538615752423253, + "lugia": 0.9180282489974738, + "ho-oh": 0.8358205029897862, + "latias": 1.136825300946679, + "latios": 1.242395065017496, + "kyogre": 0.6752097419144742, + "groudon": 0.905278541358659, + "rayquaza": 0.630594630151993, + "uxie": 1.447163151481862, + "mesprit": 1.402218131538304, + "azelf": 1.7619393329431399, + "dialga": 0.5258555493226864, + "palkia": 0.6126099732964096, + "heatran": 0.7547264704222961, + "giratina-altered": 0.6795974080405915, + "cresselia": 0.7567125921216624, + "tornadus-incarnate": 1.6617999580912588, + "thundurus-incarnate": 1.1612905794444806, + "reshiram": 0.6094364622072026, + "zekrom": 0.417399211455425, + "landorus-incarnate": 1.1584141545570896, + "kyurem": 0.9679530783272904, + "xerneas": 0.43415853445881336, + "yveltal": 0.5765941453577785, + "zygarde-50": 0.979478062558918, + "tapu-koko": 1.0459690348655757, + "tapu-lele": 1.4276989189967428, + "tapu-bulu": 1.3042546623432794, + "tapu-fini": 0.8663543823465394, + "solgaleo": 0.7143532130834191, + "lunala": 0.6593599492768281, + "nihilego": 1.6198146712686274, + "buzzwole": 2.7478882454984683, + "pheromosa": 2.796429069006633, + "xurkitree": 0.9362991911710703, + "celesteela": 0.826160204057788, + "kartana": 1.6819032147832216, + "guzzlord": 0.8022325048060097, + "necrozma": 1.1488087113214915, + "stakataka": 0.8465785757209535, + "blacephalon": 1.7174526435393622 }, "skarmory": { - "articuno": 0.9668287766273628, - "zapdos": 0.5122612308518262, - "moltres": 0.44170829648606713, - "mewtwo": 0.8566202606176434, - "raikou": 1.3795145101438182, - "entei": 1.1007410887372242, - "suicune": 1.3719371654781587, - "lugia": 0.9610801657162213, - "ho-oh": 0.7077164472974333, - "latias": 1.1629555395223397, - "latios": 1.5013646885020433, - "kyogre": 0.42403746189870606, - "groudon": 0.36990462004116464, - "rayquaza": 0.4640520266288132, - "uxie": 1.4761917641276958, - "mesprit": 1.4440124821623153, - "azelf": 1.3910769566522967, - "dialga": 0.542860452910155, - "palkia": 0.5061126119241721, - "heatran": 0.33092733845028177, - "giratina-altered": 0.7198827968102083, - "cresselia": 0.811404387654526, - "tornadus-incarnate": 0.7366138096579222, - "thundurus-incarnate": 0.6908327454512038, - "reshiram": 0.5124022122515649, - "zekrom": 0.5759703667173527, - "landorus-incarnate": 0.5917395982796232, - "kyurem": 0.7054232466962496, - "xerneas": 0.5155770559151759, - "yveltal": 0.5315875392842149, - "zygarde-50": 0.47029791601177884, - "tapu-koko": 0.9474252167847681, - "tapu-lele": 2.171113391542261, - "tapu-bulu": 1.3030760727523285, - "tapu-fini": 0.6472662440844599, - "solgaleo": 0.7610083921324016, - "lunala": 0.8253851279295183, - "nihilego": 1.5856745276128328, - "buzzwole": 1.619640207402331, - "pheromosa": 2.593517707839232, - "xurkitree": 0.5774289275214186, - "celesteela": 0.7332993021461219, - "kartana": 1.275343789579241, - "guzzlord": 0.9009005572170138, - "necrozma": 1.2663914738297732, - "stakataka": 0.576545662988557, - "blacephalon": 1.4459114198777478 + "articuno": 0.9673789787340432, + "zapdos": 0.5112871612842729, + "moltres": 0.440416773739888, + "mewtwo": 0.8586993604677955, + "raikou": 1.3767678250216138, + "entei": 1.0991741542848366, + "suicune": 1.372820094540932, + "lugia": 0.9627676234339351, + "ho-oh": 0.7072714858890903, + "latias": 1.1663710529398474, + "latios": 1.5059283160523242, + "kyogre": 0.42370614261208533, + "groudon": 0.37051623581725734, + "rayquaza": 0.4648576877552685, + "uxie": 1.479423930978443, + "mesprit": 1.4478552997909122, + "azelf": 1.395117373307331, + "dialga": 0.5433425103861714, + "palkia": 0.5065475605588075, + "heatran": 0.33005740291112057, + "giratina-altered": 0.7210437579341835, + "cresselia": 0.8139174770121409, + "tornadus-incarnate": 0.7365697493320631, + "thundurus-incarnate": 0.6888257903443175, + "reshiram": 0.511287717407233, + "zekrom": 0.5756247429777799, + "landorus-incarnate": 0.5931650100256947, + "kyurem": 0.7057413984357972, + "xerneas": 0.5167915568096166, + "yveltal": 0.5321728522244897, + "zygarde-50": 0.47152316963218077, + "tapu-koko": 0.9453608987111326, + "tapu-lele": 2.17868862489818, + "tapu-bulu": 1.3079892871246492, + "tapu-fini": 0.6471537186503371, + "solgaleo": 0.7624398363674074, + "lunala": 0.8266725648705997, + "nihilego": 1.590018482740794, + "buzzwole": 1.6234397842358361, + "pheromosa": 2.601088864748643, + "xurkitree": 0.5756530384849461, + "celesteela": 0.7344585028775616, + "kartana": 1.2768195067807284, + "guzzlord": 0.9032893073191349, + "necrozma": 1.268105799473989, + "stakataka": 0.5767105657692722, + "blacephalon": 1.443980428381911 }, "hitmontop": { - "articuno": 0.7721803346094636, - "zapdos": 0.7181509513423121, - "moltres": 0.509611618194435, - "mewtwo": 0.67286252422782, - "raikou": 1.9847935531157672, - "entei": 1.4145200206466966, - "suicune": 1.2527729264961789, - "lugia": 0.9430524058685938, - "ho-oh": 0.668575994657062, - "latias": 1.0881194945462225, - "latios": 1.3364004495150017, - "kyogre": 0.4646118761763839, - "groudon": 0.3599006257284643, - "rayquaza": 0.6538280773041252, - "uxie": 1.066684973162692, - "mesprit": 1.0273645521792028, - "azelf": 0.9464110876353289, - "dialga": 0.7707789166840393, - "palkia": 0.5162024080889143, - "heatran": 0.8289355161014849, - "giratina-altered": 0.769478429761987, - "cresselia": 0.5706377667876417, - "tornadus-incarnate": 0.8391658255982823, - "thundurus-incarnate": 1.021756360732215, - "reshiram": 0.6781231926976551, - "zekrom": 0.7342002272418136, - "landorus-incarnate": 0.7843958909556569, - "kyurem": 0.7273682106005476, - "xerneas": 0.31623640456347374, - "yveltal": 0.6020376345600609, - "zygarde-50": 0.5848567758697566, - "tapu-koko": 1.272755929828937, - "tapu-lele": 1.270624449998997, - "tapu-bulu": 1.0353866252067085, - "tapu-fini": 0.6101157977874762, - "solgaleo": 0.7468648145867987, - "lunala": 0.5502515012416, - "nihilego": 1.8882087210005603, - "buzzwole": 0.9685195266148139, - "pheromosa": 1.3372269620483146, - "xurkitree": 0.9002974988804382, - "celesteela": 0.7346867444543315, - "kartana": 1.330794392830251, - "guzzlord": 0.9649559298705807, - "necrozma": 1.0314134485476005, - "stakataka": 0.9143145867302955, - "blacephalon": 1.7680091672740215 + "articuno": 0.7715606183240471, + "zapdos": 0.7174904596072549, + "moltres": 0.5088977723211087, + "mewtwo": 0.6710506575426067, + "raikou": 1.9877880116485236, + "entei": 1.4162093242974163, + "suicune": 1.2517743025676296, + "lugia": 0.9417032205117155, + "ho-oh": 0.6681225798429067, + "latias": 1.0867330087895697, + "latios": 1.3348708792849164, + "kyogre": 0.46491174395526, + "groudon": 0.3601891737405004, + "rayquaza": 0.6541055470759208, + "uxie": 1.0634491938165502, + "mesprit": 1.0242497839057483, + "azelf": 0.9435249934838471, + "dialga": 0.7730847513209912, + "palkia": 0.5168215638348973, + "heatran": 0.8318097628633656, + "giratina-altered": 0.7701899311395579, + "cresselia": 0.5684644592823609, + "tornadus-incarnate": 0.8383788466948715, + "thundurus-incarnate": 1.0223148459499625, + "reshiram": 0.6791982790004285, + "zekrom": 0.7354144364113528, + "landorus-incarnate": 0.7859211669932773, + "kyurem": 0.7284490999358616, + "xerneas": 0.3156239516583675, + "yveltal": 0.6026268373201088, + "zygarde-50": 0.5861580091145641, + "tapu-koko": 1.272613911398543, + "tapu-lele": 1.2668570750163455, + "tapu-bulu": 1.0358075416508683, + "tapu-fini": 0.6095907348329628, + "solgaleo": 0.7466585465877659, + "lunala": 0.5494758690322612, + "nihilego": 1.8946100731673448, + "buzzwole": 0.9676710397888668, + "pheromosa": 1.3375694882386657, + "xurkitree": 0.9017819732074744, + "celesteela": 0.7351712004972992, + "kartana": 1.3301100139806636, + "guzzlord": 0.9676838938713136, + "necrozma": 1.029364666392567, + "stakataka": 0.9170869126902361, + "blacephalon": 1.768067491612662 }, "miltank": { - "articuno": 0.829027586445855, - "zapdos": 0.7173679635257217, - "moltres": 0.5890028299571133, - "mewtwo": 0.7920665786048724, - "raikou": 1.7677696132969731, - "entei": 1.2758316094997175, - "suicune": 1.422333935640852, - "lugia": 0.9253681656944988, - "ho-oh": 0.8152252798425053, - "latias": 1.1501950289901477, - "latios": 1.3927620369830405, - "kyogre": 0.48912922394220903, - "groudon": 0.3555665616729413, - "rayquaza": 0.4999790275817845, - "uxie": 1.3538462252738541, - "mesprit": 1.252106595328931, - "azelf": 1.2018828024806574, - "dialga": 0.5416977316628517, - "palkia": 0.5955733206570006, - "heatran": 0.40998801766118464, - "giratina-altered": 0.8411649260256422, - "cresselia": 0.7322596952027545, - "tornadus-incarnate": 0.8288584689835263, - "thundurus-incarnate": 0.9268306217043898, - "reshiram": 0.6055464453703393, - "zekrom": 0.7242494883850972, - "landorus-incarnate": 0.5520261871233654, - "kyurem": 0.6527642855052861, - "xerneas": 0.3964470277770523, - "yveltal": 0.5970679223343964, - "zygarde-50": 0.46809310336859533, - "tapu-koko": 1.1854802272658063, - "tapu-lele": 1.6655166254616542, - "tapu-bulu": 0.9809277952576121, - "tapu-fini": 0.6974486670307697, - "solgaleo": 0.6166649737040539, - "lunala": 0.5748340778523804, - "nihilego": 0.9177016893465074, - "buzzwole": 1.0628274360815368, - "pheromosa": 1.5703496803216734, - "xurkitree": 0.7903725481530811, - "celesteela": 0.6630215712789342, - "kartana": 1.1143357901103534, - "guzzlord": 1.1754567211658973, - "necrozma": 1.2066571092953722, - "stakataka": 0.49597551581973365, - "blacephalon": 1.2183288819872047 + "articuno": 0.8287301125301643, + "zapdos": 0.7176891810492106, + "moltres": 0.5888160281790353, + "mewtwo": 0.7917690014104046, + "raikou": 1.7678874217364806, + "entei": 1.2757662172260602, + "suicune": 1.4223527782697676, + "lugia": 0.9250461819859329, + "ho-oh": 0.8157382521187706, + "latias": 1.151018804298113, + "latios": 1.392879843021702, + "kyogre": 0.48917682639427273, + "groudon": 0.35540824098356627, + "rayquaza": 0.500419269935019, + "uxie": 1.3540073999114979, + "mesprit": 1.2511106829404468, + "azelf": 1.2012413758029963, + "dialga": 0.5414229118679197, + "palkia": 0.5963067821021429, + "heatran": 0.40948495428324283, + "giratina-altered": 0.8426317473061125, + "cresselia": 0.7322115540083347, + "tornadus-incarnate": 0.8288289357396413, + "thundurus-incarnate": 0.9265571899985519, + "reshiram": 0.6055457613868933, + "zekrom": 0.725071186308009, + "landorus-incarnate": 0.5519761009955989, + "kyurem": 0.6532372072978114, + "xerneas": 0.39653574344355447, + "yveltal": 0.5976412350117852, + "zygarde-50": 0.4684746108034677, + "tapu-koko": 1.1855717919579383, + "tapu-lele": 1.6662183236486479, + "tapu-bulu": 0.9807881097603807, + "tapu-fini": 0.6974633221466957, + "solgaleo": 0.6161023698849344, + "lunala": 0.5749270175759147, + "nihilego": 0.916293474975405, + "buzzwole": 1.0619089044093624, + "pheromosa": 1.5705634999876326, + "xurkitree": 0.7902370903036693, + "celesteela": 0.6626260751392006, + "kartana": 1.1121960084715519, + "guzzlord": 1.1781170711303608, + "necrozma": 1.2061036552106823, + "stakataka": 0.4950227484439048, + "blacephalon": 1.2164977640009806 }, "grovyle": { - "articuno": 0.5138943117880932, - "zapdos": 0.4954848616795359, - "moltres": 0.3249286245901356, - "mewtwo": 0.6332451374007088, - "raikou": 1.5366351504733475, - "entei": 0.847755925507444, - "suicune": 1.7209967920935847, - "lugia": 0.6779685277578449, - "ho-oh": 0.4302300077344655, - "latias": 0.7864545658538104, - "latios": 0.9348740720417377, - "kyogre": 0.5666453357754586, - "groudon": 0.4726057753566525, - "rayquaza": 0.2867659203432685, - "uxie": 1.1955844663142967, - "mesprit": 1.1418257611654168, - "azelf": 1.069078667014719, - "dialga": 0.5072074464039573, - "palkia": 0.4936566621992228, - "heatran": 0.3384867551824948, - "giratina-altered": 0.5091017872075487, - "cresselia": 0.6026184561952215, - "tornadus-incarnate": 0.49211023639714135, - "thundurus-incarnate": 0.6551884171499002, - "reshiram": 0.4014822620249656, - "zekrom": 0.514866807902918, - "landorus-incarnate": 0.5198703155255053, - "kyurem": 0.4574043611565274, - "xerneas": 0.36013188858832923, - "yveltal": 0.38577496305060255, - "zygarde-50": 0.4321783457792292, - "tapu-koko": 1.0887649120871936, - "tapu-lele": 1.2776747066493495, - "tapu-bulu": 0.7334722806358602, - "tapu-fini": 0.902669877764513, - "solgaleo": 0.5142551377320741, - "lunala": 0.5358117079318567, - "nihilego": 0.6709705562558896, - "buzzwole": 0.7831823019146145, - "pheromosa": 1.0181521836085663, - "xurkitree": 0.7749062982134794, - "celesteela": 0.5680625109499067, - "kartana": 1.1130631530629733, - "guzzlord": 0.6273701848073931, - "necrozma": 1.1285051650604994, - "stakataka": 0.5723990254435866, - "blacephalon": 0.9599587403391139 + "articuno": 0.510674399033393, + "zapdos": 0.49286687878848523, + "moltres": 0.32266247147090765, + "mewtwo": 0.6308295545995128, + "raikou": 1.5342036138014183, + "entei": 0.8426307199640561, + "suicune": 1.720367048117767, + "lugia": 0.6747034963893112, + "ho-oh": 0.4269638318309682, + "latias": 0.7835268017370626, + "latios": 0.9310665711296144, + "kyogre": 0.5668618267866132, + "groudon": 0.47243580550105707, + "rayquaza": 0.28476095825666625, + "uxie": 1.1922949384667467, + "mesprit": 1.138537662227968, + "azelf": 1.0657396495224056, + "dialga": 0.5056090281140112, + "palkia": 0.4927742094774481, + "heatran": 0.3371578999852309, + "giratina-altered": 0.5067724791503292, + "cresselia": 0.6004770053382107, + "tornadus-incarnate": 0.4890879042137079, + "thundurus-incarnate": 0.6531987204019756, + "reshiram": 0.3993235447889703, + "zekrom": 0.5133555698095111, + "landorus-incarnate": 0.5192054895617004, + "kyurem": 0.4553581817338743, + "xerneas": 0.3594077245986811, + "yveltal": 0.38397952569723187, + "zygarde-50": 0.43176929171140277, + "tapu-koko": 1.0851293155508077, + "tapu-lele": 1.2729979318974864, + "tapu-bulu": 0.7303816126464933, + "tapu-fini": 0.9032729542597202, + "solgaleo": 0.511893250674997, + "lunala": 0.5340618604079274, + "nihilego": 0.6677576618315263, + "buzzwole": 0.7774262834984983, + "pheromosa": 1.0113682168408689, + "xurkitree": 0.774639933594113, + "celesteela": 0.5661905911049145, + "kartana": 1.1106353533359274, + "guzzlord": 0.6252816041077962, + "necrozma": 1.125543851077431, + "stakataka": 0.5710760047778677, + "blacephalon": 0.9537973030747012 }, "sceptile": { - "articuno": 0.6207020676232944, - "zapdos": 0.6007202702355401, - "moltres": 0.41757289190972335, - "mewtwo": 0.8098395877296067, - "raikou": 1.864005472720578, - "entei": 1.0380665639402367, - "suicune": 2.24488597194105, - "lugia": 0.8082506317637121, - "ho-oh": 0.5743208097559872, - "latias": 1.208428667492472, - "latios": 1.4368217773249852, - "kyogre": 0.7206201437401571, - "groudon": 0.6399064892618408, - "rayquaza": 0.43092051908986206, - "uxie": 1.484099861036758, - "mesprit": 1.4213304609319848, - "azelf": 1.3476549555546358, - "dialga": 0.4964920555786978, - "palkia": 0.6119558083333205, - "heatran": 0.32085398718198355, - "giratina-altered": 0.7007834248284572, - "cresselia": 0.7679544069191236, - "tornadus-incarnate": 0.6108787083711393, - "thundurus-incarnate": 0.7912349967933039, - "reshiram": 0.5729239052517867, - "zekrom": 0.6621232765312868, - "landorus-incarnate": 0.6490994666122017, - "kyurem": 0.5527801716074807, - "xerneas": 0.44690556945371096, - "yveltal": 0.46680544714439354, - "zygarde-50": 0.5373262485906092, - "tapu-koko": 1.3875229124976411, - "tapu-lele": 1.5687168537017466, - "tapu-bulu": 0.8808504471796359, - "tapu-fini": 1.1572908259225008, - "solgaleo": 0.6281867853173748, - "lunala": 0.6487564216507024, - "nihilego": 0.8266657865524485, - "buzzwole": 0.995145294095378, - "pheromosa": 1.228737539475968, - "xurkitree": 0.9478678344802063, - "celesteela": 0.6033720723276401, - "kartana": 1.2565666336099683, - "guzzlord": 0.810820065712131, - "necrozma": 1.3879531447350968, - "stakataka": 0.7382593399022839, - "blacephalon": 1.1921182719180905 + "articuno": 0.618927427699394, + "zapdos": 0.6002424819382115, + "moltres": 0.41609107937706336, + "mewtwo": 0.8111285870565685, + "raikou": 1.8690269954908967, + "entei": 1.0361040393660628, + "suicune": 2.2548650630337854, + "lugia": 0.8078774043398427, + "ho-oh": 0.5722240118490841, + "latias": 1.2106850979733927, + "latios": 1.4390596844295105, + "kyogre": 0.7240934562053538, + "groudon": 0.6427461698175712, + "rayquaza": 0.43002939676878493, + "uxie": 1.4878169650976192, + "mesprit": 1.4247926597033662, + "azelf": 1.3507922665178413, + "dialga": 0.49606113005623065, + "palkia": 0.6139672902877638, + "heatran": 0.31995559939718865, + "giratina-altered": 0.7013572553195088, + "cresselia": 0.7694717138606029, + "tornadus-incarnate": 0.6095575739664834, + "thundurus-incarnate": 0.7917147894673033, + "reshiram": 0.5720902270378232, + "zekrom": 0.6631874740680473, + "landorus-incarnate": 0.650941398055392, + "kyurem": 0.552297061223534, + "xerneas": 0.4476459088023617, + "yveltal": 0.4665666232983795, + "zygarde-50": 0.5392410500655711, + "tapu-koko": 1.388960368888335, + "tapu-lele": 1.5700110194574548, + "tapu-bulu": 0.8804406513746086, + "tapu-fini": 1.1627153865887188, + "solgaleo": 0.6279190159667682, + "lunala": 0.6498512245304945, + "nihilego": 0.8256372601777351, + "buzzwole": 0.9925122577064611, + "pheromosa": 1.2260905270458977, + "xurkitree": 0.9513574142294453, + "celesteela": 0.6027642704297422, + "kartana": 1.2569985002778141, + "guzzlord": 0.8117707006312977, + "necrozma": 1.3916018568638657, + "stakataka": 0.7389762146059387, + "blacephalon": 1.1900087610738082 }, "combusken": { - "articuno": 0.9558571923893449, - "zapdos": 0.5852657604101392, - "moltres": 0.5001136562404002, - "mewtwo": 0.684378701297429, - "raikou": 1.4751095679935045, - "entei": 1.2167155651678798, - "suicune": 1.0289764348602126, - "lugia": 0.7210066278839533, - "ho-oh": 0.5816889946185599, - "latias": 0.6295051350515981, - "latios": 0.8777004305494138, - "kyogre": 0.31322910904670487, - "groudon": 0.29306945676981594, - "rayquaza": 0.34590989340688677, - "uxie": 1.0698083753041998, - "mesprit": 1.0621874470873003, - "azelf": 1.0238895166428996, - "dialga": 0.7938834771913326, - "palkia": 0.37946412377356253, - "heatran": 0.6480949088856098, - "giratina-altered": 0.5299653523556148, - "cresselia": 0.6041417229664303, - "tornadus-incarnate": 0.6981966814808469, - "thundurus-incarnate": 0.8008950424139558, - "reshiram": 0.5171304742470836, - "zekrom": 0.5871873002440011, - "landorus-incarnate": 0.4224629415190856, - "kyurem": 0.7001169790376878, - "xerneas": 0.362327569319986, - "yveltal": 0.5117114169355346, - "zygarde-50": 0.3053137605351779, - "tapu-koko": 1.0482690855817904, - "tapu-lele": 1.1603894959843193, - "tapu-bulu": 1.3641640977565557, - "tapu-fini": 0.43015350033918553, - "solgaleo": 0.9296816130898444, - "lunala": 0.5368918409736695, - "nihilego": 0.9250189910845911, - "buzzwole": 1.801729327371382, - "pheromosa": 1.8949913227300765, - "xurkitree": 0.7371652182881108, - "celesteela": 0.9077397295131917, - "kartana": 3.882660128232705, - "guzzlord": 0.8800009270892386, - "necrozma": 1.0145897418729193, - "stakataka": 1.190863737817105, - "blacephalon": 1.1256202321604063 + "articuno": 0.9562829843878109, + "zapdos": 0.5834901907043691, + "moltres": 0.4994532244396428, + "mewtwo": 0.6811465864223925, + "raikou": 1.4737100783046562, + "entei": 1.2178029493173281, + "suicune": 1.0245975866959227, + "lugia": 0.7174574193307229, + "ho-oh": 0.5807806927985087, + "latias": 0.6260885035151046, + "latios": 0.8734933728540877, + "kyogre": 0.312270352033432, + "groudon": 0.29256218839661974, + "rayquaza": 0.344554277022763, + "uxie": 1.0652263743260686, + "mesprit": 1.058242207940848, + "azelf": 1.0202031447600306, + "dialga": 0.7963701259372995, + "palkia": 0.3783329099753892, + "heatran": 0.6495282324864975, + "giratina-altered": 0.528027463558676, + "cresselia": 0.6014054182386821, + "tornadus-incarnate": 0.6961350393613612, + "thundurus-incarnate": 0.7995561643871867, + "reshiram": 0.516811120421195, + "zekrom": 0.5865107351922507, + "landorus-incarnate": 0.4211730783179042, + "kyurem": 0.7016273205822985, + "xerneas": 0.36194375966750214, + "yveltal": 0.5115171282621934, + "zygarde-50": 0.3044318239898868, + "tapu-koko": 1.0457034862101828, + "tapu-lele": 1.1540950740454254, + "tapu-bulu": 1.366442958248228, + "tapu-fini": 0.4281777713903595, + "solgaleo": 0.9305413506975121, + "lunala": 0.5351790791820691, + "nihilego": 0.9233807664892302, + "buzzwole": 1.8056153577183869, + "pheromosa": 1.8974046785938623, + "xurkitree": 0.7372593484787351, + "celesteela": 0.9091740181271609, + "kartana": 3.900232738514196, + "guzzlord": 0.8806789051612136, + "necrozma": 1.0103509061192988, + "stakataka": 1.1951505011197732, + "blacephalon": 1.122223798340284 }, "blaziken": { - "articuno": 1.2524474281170894, - "zapdos": 0.7135601111059995, - "moltres": 0.5721954015448315, - "mewtwo": 0.803753602895528, - "raikou": 2.02557438042657, - "entei": 1.4298039501337119, - "suicune": 1.30581064099729, - "lugia": 0.8972654611386424, - "ho-oh": 0.7290508775105341, - "latias": 0.8169727673217906, - "latios": 1.1060968567147023, - "kyogre": 0.4521878535836121, - "groudon": 0.35346111817156867, - "rayquaza": 0.40475051029974274, - "uxie": 1.2750349870278548, - "mesprit": 1.2601303810645779, - "azelf": 1.2170879626873985, - "dialga": 1.0026799561764694, - "palkia": 0.5167555895264725, - "heatran": 0.925293162331021, - "giratina-altered": 0.5989682851605698, - "cresselia": 0.7274356247652114, - "tornadus-incarnate": 0.8598792959370762, - "thundurus-incarnate": 0.9983209283793262, - "reshiram": 0.6695919607706651, - "zekrom": 0.6902266364115748, - "landorus-incarnate": 0.5007958239622681, - "kyurem": 0.9588822985089958, - "xerneas": 0.4282110295255169, - "yveltal": 0.6427484274475507, - "zygarde-50": 0.3768022487411755, - "tapu-koko": 1.2239061020150999, - "tapu-lele": 1.5806425442136869, - "tapu-bulu": 1.5752713432063532, - "tapu-fini": 0.5400682067821121, - "solgaleo": 1.1064941019815377, - "lunala": 0.6556396684293253, - "nihilego": 1.2679277750555602, - "buzzwole": 2.114815479363613, - "pheromosa": 2.2675115451274763, - "xurkitree": 0.9253739240962783, - "celesteela": 1.1353452008325884, - "kartana": 4.804119956094101, - "guzzlord": 1.1885720339649648, - "necrozma": 1.1769740808630709, - "stakataka": 1.165388443447546, - "blacephalon": 1.3616435250187573 + "articuno": 1.2572290758001314, + "zapdos": 0.7137300664323012, + "moltres": 0.5726103757499481, + "mewtwo": 0.8026290775722402, + "raikou": 2.029974901409795, + "entei": 1.433239870719433, + "suicune": 1.3035536077839787, + "lugia": 0.8957933357811775, + "ho-oh": 0.7298103586750664, + "latias": 0.8149358777828537, + "latios": 1.104048795413916, + "kyogre": 0.45197230401661603, + "groudon": 0.35359289996608034, + "rayquaza": 0.40420253551664387, + "uxie": 1.2736242898553263, + "mesprit": 1.2594042852637866, + "azelf": 1.2165285564389112, + "dialga": 1.0072474080917013, + "palkia": 0.5162951141593796, + "heatran": 0.9268445001794228, + "giratina-altered": 0.5981947338873661, + "cresselia": 0.7266117024895786, + "tornadus-incarnate": 0.8600891869778053, + "thundurus-incarnate": 0.999749452974056, + "reshiram": 0.6703932913829955, + "zekrom": 0.6907652584912198, + "landorus-incarnate": 0.5006845254475814, + "kyurem": 0.9625516490709659, + "xerneas": 0.42898563194664546, + "yveltal": 0.6442725364673995, + "zygarde-50": 0.37640160763875957, + "tapu-koko": 1.2245965094661515, + "tapu-lele": 1.5779220298449403, + "tapu-bulu": 1.5823491764163766, + "tapu-fini": 0.5390311232835556, + "solgaleo": 1.1110840669839654, + "lunala": 0.655517612534594, + "nihilego": 1.2693850171081655, + "buzzwole": 2.123102441416387, + "pheromosa": 2.27747592562175, + "xurkitree": 0.9279585668145971, + "celesteela": 1.1410687343177148, + "kartana": 4.830283563191897, + "guzzlord": 1.1912014011030738, + "necrozma": 1.1756634546838578, + "stakataka": 1.1701949094708206, + "blacephalon": 1.3609143531782997 }, "marshtomp": { - "articuno": 0.7962353731439129, - "zapdos": 0.8621551334463615, - "moltres": 0.8111131000954057, - "mewtwo": 0.7523197849967097, - "raikou": 2.309493637777026, - "entei": 1.6250039821098776, - "suicune": 1.2579234478300694, - "lugia": 0.9915849928624381, - "ho-oh": 1.110222521515206, - "latias": 1.1147020993543721, - "latios": 1.3989201576777415, - "kyogre": 0.44379291551153777, - "groudon": 0.4342908280488489, - "rayquaza": 0.6565119035740611, - "uxie": 1.2545338683633414, - "mesprit": 1.1990725955022912, - "azelf": 1.139262345053793, - "dialga": 0.7693333895999462, - "palkia": 0.49657810577573047, - "heatran": 0.9593991338980139, - "giratina-altered": 0.757452943964319, - "cresselia": 0.6953363673452102, - "tornadus-incarnate": 0.9037687108368562, - "thundurus-incarnate": 1.1978195830815774, - "reshiram": 0.7496565383169678, - "zekrom": 0.8411406458773042, - "landorus-incarnate": 0.7719865102591845, - "kyurem": 0.5479885471961283, - "xerneas": 0.3561686413797658, - "yveltal": 0.5729001722285455, - "zygarde-50": 0.5742148030159502, - "tapu-koko": 1.585081430016484, - "tapu-lele": 1.5587465762737487, - "tapu-bulu": 0.7836636700652169, - "tapu-fini": 0.628085839915781, - "solgaleo": 0.873761456768166, - "lunala": 0.5861394836887761, - "nihilego": 2.1086778080730197, - "buzzwole": 1.1211892611624767, - "pheromosa": 1.4092207286561975, - "xurkitree": 0.9974801095108654, - "celesteela": 0.7815644136316415, - "kartana": 0.930743981186033, - "guzzlord": 0.8034618354806531, - "necrozma": 1.2122537471602057, - "stakataka": 0.8926084423792884, - "blacephalon": 2.188580899312238 + "articuno": 0.7959048954920379, + "zapdos": 0.8647822135221248, + "moltres": 0.8136728849971269, + "mewtwo": 0.7523362393666204, + "raikou": 2.3177446464306746, + "entei": 1.630280366093696, + "suicune": 1.2562845969202459, + "lugia": 0.9921656557978211, + "ho-oh": 1.113885998160853, + "latias": 1.1140808991483233, + "latios": 1.3981615087514836, + "kyogre": 0.4437171756020852, + "groudon": 0.43537981651065283, + "rayquaza": 0.6567857289428627, + "uxie": 1.2537668635460544, + "mesprit": 1.198221458622453, + "azelf": 1.13854050225348, + "dialga": 0.7705264952338974, + "palkia": 0.4961768948337567, + "heatran": 0.9636834345318459, + "giratina-altered": 0.7580073345956744, + "cresselia": 0.6950597148968354, + "tornadus-incarnate": 0.9048464546475594, + "thundurus-incarnate": 1.2024882520931635, + "reshiram": 0.7514024425247148, + "zekrom": 0.8435593616820485, + "landorus-incarnate": 0.7745254109602745, + "kyurem": 0.5474200421880825, + "xerneas": 0.3559322235384458, + "yveltal": 0.5731941817519395, + "zygarde-50": 0.5751477119325672, + "tapu-koko": 1.5905253985502408, + "tapu-lele": 1.5596465848450323, + "tapu-bulu": 0.7793204829875235, + "tapu-fini": 0.6275975716524432, + "solgaleo": 0.8755272292088657, + "lunala": 0.5861956123919014, + "nihilego": 2.1172570874047323, + "buzzwole": 1.1204452035634869, + "pheromosa": 1.40892099734166, + "xurkitree": 0.9992508128134132, + "celesteela": 0.7830957581426732, + "kartana": 0.9224027729607691, + "guzzlord": 0.8033158278394343, + "necrozma": 1.2135192588812118, + "stakataka": 0.8951263986291942, + "blacephalon": 2.1969592293770948 }, "swampert": { - "articuno": 0.8087162365699131, - "zapdos": 0.8880385193802545, - "moltres": 0.8695699962921519, - "mewtwo": 0.8181226947500907, - "raikou": 2.3769546665714825, - "entei": 1.8377490250703816, - "suicune": 1.4407175117698152, - "lugia": 1.0153573735148163, - "ho-oh": 0.9266009164749232, - "latias": 1.086136896231701, - "latios": 1.3743947078609535, - "kyogre": 0.4640132928310099, - "groudon": 0.5395333878692938, - "rayquaza": 0.7180475883515862, - "uxie": 1.3512514542881906, - "mesprit": 1.293341014853265, - "azelf": 1.234549529175506, - "dialga": 0.9921523084580244, - "palkia": 0.5421003958410975, - "heatran": 1.1860383590937906, - "giratina-altered": 0.8223499864134847, - "cresselia": 0.7246317039731325, - "tornadus-incarnate": 0.9422649700401637, - "thundurus-incarnate": 1.201018011807486, - "reshiram": 0.81479560566183, - "zekrom": 1.029060063909971, - "landorus-incarnate": 0.9009401035219529, - "kyurem": 0.6252428785593082, - "xerneas": 0.3916263952566296, - "yveltal": 0.6212436681061446, - "zygarde-50": 0.7172253979279112, - "tapu-koko": 1.9291929609797647, - "tapu-lele": 1.4958108765304954, - "tapu-bulu": 0.9674848710906023, - "tapu-fini": 0.7040116520199159, - "solgaleo": 1.1061701654896798, - "lunala": 0.6042731189315673, - "nihilego": 1.5594746754214963, - "buzzwole": 1.3222940939205796, - "pheromosa": 1.4996089777979922, - "xurkitree": 1.1677694989092902, - "celesteela": 0.8346158258264395, - "kartana": 1.490081894720693, - "guzzlord": 0.8785866050281914, - "necrozma": 1.3304850256696812, - "stakataka": 1.5361885038409948, - "blacephalon": 1.974048448895525 + "articuno": 0.8085275846816116, + "zapdos": 0.8905818016949363, + "moltres": 0.8719439614854798, + "mewtwo": 0.819138351918028, + "raikou": 2.386476517325927, + "entei": 1.8454536114708429, + "suicune": 1.441377424450315, + "lugia": 1.0161762332846411, + "ho-oh": 0.9285652881136941, + "latias": 1.0859539502139026, + "latios": 1.3743350846433724, + "kyogre": 0.46425505174148884, + "groudon": 0.5415405640973809, + "rayquaza": 0.7191696115817277, + "uxie": 1.3511207175175048, + "mesprit": 1.2931357159553394, + "azelf": 1.2344092644911493, + "dialga": 0.995827250556132, + "palkia": 0.5424905680301395, + "heatran": 1.1925238839540597, + "giratina-altered": 0.8242742921440694, + "cresselia": 0.7246272949656294, + "tornadus-incarnate": 0.9435289762546576, + "thundurus-incarnate": 1.2050079619914449, + "reshiram": 0.8175076116132658, + "zekrom": 1.0338754315031005, + "landorus-incarnate": 0.9040110591258718, + "kyurem": 0.6256287843593407, + "xerneas": 0.39191654864715664, + "yveltal": 0.6218427893555467, + "zygarde-50": 0.7195003882172626, + "tapu-koko": 1.9382453785071165, + "tapu-lele": 1.4971819997498739, + "tapu-bulu": 0.9647602353590565, + "tapu-fini": 0.7044912957556724, + "solgaleo": 1.1102055202502021, + "lunala": 0.6048619231398564, + "nihilego": 1.5649503897426449, + "buzzwole": 1.3245089759267032, + "pheromosa": 1.5006779372762626, + "xurkitree": 1.1715839871518512, + "celesteela": 0.8361742756981547, + "kartana": 1.4852133440817121, + "guzzlord": 0.8798545543034508, + "necrozma": 1.3334634382905872, + "stakataka": 1.5439296377976328, + "blacephalon": 1.9816804933141823 }, "linoone": { - "articuno": 0.7347724743253747, - "zapdos": 0.6141693999718005, - "moltres": 0.5156653536282062, - "mewtwo": 0.7565802811051656, - "raikou": 1.5144170205088798, - "entei": 1.096525391411863, - "suicune": 1.2205961858204704, - "lugia": 0.8912608644610898, - "ho-oh": 0.694636559238297, - "latias": 1.0144243086311924, - "latios": 1.2244049178502567, - "kyogre": 0.4184290041110251, - "groudon": 0.2978071208793992, - "rayquaza": 0.4008863319482231, - "uxie": 1.314636191442378, - "mesprit": 1.2057476480938627, - "azelf": 1.1437449739969088, - "dialga": 0.48119468846929947, - "palkia": 0.4687672875661962, - "heatran": 0.38525916463507065, - "giratina-altered": 0.7455815294020431, - "cresselia": 0.700859034075598, - "tornadus-incarnate": 0.7246883475487277, - "thundurus-incarnate": 0.7985353324236995, - "reshiram": 0.5318409302694609, - "zekrom": 0.5675106690267522, - "landorus-incarnate": 0.4600872776164585, - "kyurem": 0.5418607694940051, - "xerneas": 0.34581724679250775, - "yveltal": 0.4790678314910015, - "zygarde-50": 0.3660662859782591, - "tapu-koko": 1.0197315385342904, - "tapu-lele": 1.5602598530760934, - "tapu-bulu": 0.8211955885689632, - "tapu-fini": 0.6090384399028097, - "solgaleo": 0.6771915704287098, - "lunala": 0.8476359032057051, - "nihilego": 0.8672756169458733, - "buzzwole": 0.8555561368223072, - "pheromosa": 1.245596049356828, - "xurkitree": 0.6816664162595394, - "celesteela": 0.6064429442029431, - "kartana": 1.0507650238631725, - "guzzlord": 0.7020396894457039, - "necrozma": 1.1515057134281939, - "stakataka": 0.4736754455681649, - "blacephalon": 1.5925699696797762 + "articuno": 0.7336816657583572, + "zapdos": 0.6134753189560256, + "moltres": 0.5149342461786803, + "mewtwo": 0.7564050953888133, + "raikou": 1.5126325325544858, + "entei": 1.0948620492104788, + "suicune": 1.2189312779817083, + "lugia": 0.8908015838646846, + "ho-oh": 0.6939628133405451, + "latias": 1.0147735831405023, + "latios": 1.2239401237322007, + "kyogre": 0.4180997711731418, + "groudon": 0.29715040843880913, + "rayquaza": 0.40021003424142787, + "uxie": 1.3156061113424649, + "mesprit": 1.2053473825791508, + "azelf": 1.143432534588626, + "dialga": 0.4802210064122263, + "palkia": 0.4683653804213699, + "heatran": 0.3845568282608027, + "giratina-altered": 0.746282053022398, + "cresselia": 0.7009036431007631, + "tornadus-incarnate": 0.7238571282162312, + "thundurus-incarnate": 0.7973916052110857, + "reshiram": 0.5312480129621655, + "zekrom": 0.5666791564536168, + "landorus-incarnate": 0.4592086468025116, + "kyurem": 0.5415155582862274, + "xerneas": 0.3453799452051922, + "yveltal": 0.47840058210660463, + "zygarde-50": 0.3655942833985415, + "tapu-koko": 1.0182451641546146, + "tapu-lele": 1.560074740607809, + "tapu-bulu": 0.8194005767248487, + "tapu-fini": 0.6083435416971907, + "solgaleo": 0.6764742396922832, + "lunala": 0.8496463720174441, + "nihilego": 0.8655940696090592, + "buzzwole": 0.8522245951209142, + "pheromosa": 1.2420905471182715, + "xurkitree": 0.6808527487833229, + "celesteela": 0.6053285822025644, + "kartana": 1.0474322745628588, + "guzzlord": 0.7013576550168699, + "necrozma": 1.1511503303136172, + "stakataka": 0.47215468033102104, + "blacephalon": 1.591999802230855 }, "linoone-galar": { - "articuno": 0.7531070519520682, - "zapdos": 0.6323856804462917, - "moltres": 0.5289613279835126, - "mewtwo": 1.0030994888523148, - "raikou": 1.5597856609579899, - "entei": 1.1519846182263502, - "suicune": 1.3236448407128067, - "lugia": 1.1464399935259177, - "ho-oh": 0.7405959785720992, - "latias": 1.32216480888777, - "latios": 1.4918576532062002, - "kyogre": 0.4312849879104029, - "groudon": 0.2934681135849604, - "rayquaza": 0.42156996616715514, - "uxie": 1.777458948819624, - "mesprit": 1.5034116373123552, - "azelf": 1.3206468880323805, - "dialga": 0.5498973906144144, - "palkia": 0.48271987589798615, - "heatran": 0.44472695111893434, - "giratina-altered": 0.9190377072274005, - "cresselia": 0.9072821580952806, - "tornadus-incarnate": 0.7452537082772227, - "thundurus-incarnate": 0.8227021719445616, - "reshiram": 0.5670754873892971, - "zekrom": 0.5819987427772259, - "landorus-incarnate": 0.45709370337602717, - "kyurem": 0.5552978167451743, - "xerneas": 0.2540284663922412, - "yveltal": 0.4780278043360653, - "zygarde-50": 0.3746058214018635, - "tapu-koko": 0.8941901736609801, - "tapu-lele": 1.5793750420991157, - "tapu-bulu": 0.652952230430712, - "tapu-fini": 0.508762360260861, - "solgaleo": 0.8761693806337709, - "lunala": 1.0739046440012288, - "nihilego": 1.0082860607112865, - "buzzwole": 0.6584462389571585, - "pheromosa": 0.981287329243727, - "xurkitree": 0.7142294351705758, - "celesteela": 0.6977568332747024, - "kartana": 1.2769718707763067, - "guzzlord": 0.6349247089653148, - "necrozma": 1.529964513486592, - "stakataka": 0.5442612078768547, - "blacephalon": 2.060046718863796 + "articuno": 0.7518080382046601, + "zapdos": 0.6315284615898143, + "moltres": 0.5282361830288733, + "mewtwo": 1.006123434167139, + "raikou": 1.5568147430995336, + "entei": 1.150614495069453, + "suicune": 1.3224389960022198, + "lugia": 1.1475555281842336, + "ho-oh": 0.7401772216314959, + "latias": 1.3247730743400092, + "latios": 1.4912399295469414, + "kyogre": 0.43060187136779793, + "groudon": 0.2923630857626198, + "rayquaza": 0.42086109011498385, + "uxie": 1.7837547445148856, + "mesprit": 1.5041282444729622, + "azelf": 1.3210286313203603, + "dialga": 0.5491037980492965, + "palkia": 0.4819597361459742, + "heatran": 0.44436764631695724, + "giratina-altered": 0.921452270730881, + "cresselia": 0.9091929717387341, + "tornadus-incarnate": 0.7442128841236398, + "thundurus-incarnate": 0.8212842054176223, + "reshiram": 0.5666443479902739, + "zekrom": 0.5808864078404925, + "landorus-incarnate": 0.45562200143624404, + "kyurem": 0.5546570455868967, + "xerneas": 0.2526629616012151, + "yveltal": 0.4773966133646166, + "zygarde-50": 0.37398252260009723, + "tapu-koko": 0.8916264607016446, + "tapu-lele": 1.5801312961731728, + "tapu-bulu": 0.6492950721678912, + "tapu-fini": 0.5069253427520657, + "solgaleo": 0.8771866614943469, + "lunala": 1.0772433923073672, + "nihilego": 1.0066042526688521, + "buzzwole": 0.653071646136101, + "pheromosa": 0.9741615641481793, + "xurkitree": 0.713102865472425, + "celesteela": 0.6969944400625014, + "kartana": 1.2738387337369494, + "guzzlord": 0.633491851903214, + "necrozma": 1.533670531424824, + "stakataka": 0.5432093146821052, + "blacephalon": 2.064075355330641 }, "pelipper": { - "articuno": 0.8230686936526532, - "zapdos": 0.5286919035099458, - "moltres": 1.2006284521169848, - "mewtwo": 0.7741311613515615, - "raikou": 0.9849111161401211, - "entei": 1.1197219336219653, - "suicune": 1.2216528777775788, - "lugia": 0.7298219017119318, - "ho-oh": 0.6487767480195351, - "latias": 0.9790300491554191, - "latios": 1.0697331641053447, - "kyogre": 0.5473374398465649, - "groudon": 0.8995221417440504, - "rayquaza": 0.6144382576366549, - "uxie": 1.1703625725451245, - "mesprit": 1.1407357572310874, - "azelf": 1.5827486589705655, - "dialga": 0.455392245340631, - "palkia": 0.5063201962790727, - "heatran": 0.7346600406876671, - "giratina-altered": 0.5404635394255151, - "cresselia": 0.6630292204461408, - "tornadus-incarnate": 1.4650601861001031, - "thundurus-incarnate": 0.8675639904748167, - "reshiram": 0.5047501539887905, - "zekrom": 0.4535532481710908, - "landorus-incarnate": 1.1427760660826998, - "kyurem": 0.8361478892081686, - "xerneas": 0.37574378681104087, - "yveltal": 0.5297928461130019, - "zygarde-50": 0.9264855607773322, - "tapu-koko": 0.8666695491156535, - "tapu-lele": 1.2943509267843565, - "tapu-bulu": 0.9984377982965669, - "tapu-fini": 0.6846915144646758, - "solgaleo": 0.5799486976662325, - "lunala": 0.558808553569111, - "nihilego": 1.3858796561694975, - "buzzwole": 1.338310390533056, - "pheromosa": 1.9426084431347228, - "xurkitree": 0.7226907872658949, - "celesteela": 0.7603764805741341, - "kartana": 1.3908201919506806, - "guzzlord": 0.789966511718029, - "necrozma": 0.8823211389895711, - "stakataka": 0.8738092578186082, - "blacephalon": 1.308457326933933 + "articuno": 0.8211882453546261, + "zapdos": 0.5250220687791682, + "moltres": 1.2004326766340159, + "mewtwo": 0.7721978061909279, + "raikou": 0.9771476762257965, + "entei": 1.1195882256006642, + "suicune": 1.2209209311375409, + "lugia": 0.7280199070083029, + "ho-oh": 0.64861741882135, + "latias": 0.9771283284646196, + "latios": 1.0679865617299253, + "kyogre": 0.5456132933233918, + "groudon": 0.9006790983573345, + "rayquaza": 0.6132443264663922, + "uxie": 1.1674052261209815, + "mesprit": 1.1374912842347313, + "azelf": 1.5785945573445073, + "dialga": 0.45439570196355084, + "palkia": 0.5055959376127344, + "heatran": 0.7338610554972262, + "giratina-altered": 0.5388403505130416, + "cresselia": 0.6615671612290943, + "tornadus-incarnate": 1.4625541284801697, + "thundurus-incarnate": 0.8603247142089356, + "reshiram": 0.5044706949786715, + "zekrom": 0.4507318511393631, + "landorus-incarnate": 1.1434272166488053, + "kyurem": 0.833920625715525, + "xerneas": 0.37495873515219696, + "yveltal": 0.5288181096183256, + "zygarde-50": 0.9267381622768537, + "tapu-koko": 0.8601474632388476, + "tapu-lele": 1.2923232436415897, + "tapu-bulu": 0.998894704792167, + "tapu-fini": 0.6842378833119981, + "solgaleo": 0.5793636149367732, + "lunala": 0.5566587097505665, + "nihilego": 1.378984969613112, + "buzzwole": 1.3409190518607201, + "pheromosa": 1.9463096029732172, + "xurkitree": 0.7165303832965275, + "celesteela": 0.7595366646274323, + "kartana": 1.3875284163708097, + "guzzlord": 0.7890502053966375, + "necrozma": 0.8785281918666987, + "stakataka": 0.8706597576961267, + "blacephalon": 1.3073185210272888 }, "ninjask": { - "articuno": 0.49261110345197084, - "zapdos": 0.39415783464410914, - "moltres": 0.3075791727508409, - "mewtwo": 0.7690048964609639, - "raikou": 1.2928617292367701, - "entei": 0.858997621466437, - "suicune": 1.188932332622099, - "lugia": 0.6937799184201684, - "ho-oh": 0.4082283545669825, - "latias": 1.1913905566699985, - "latios": 1.5666736235326788, - "kyogre": 0.39122218990135715, - "groudon": 0.364000026000463, - "rayquaza": 0.3149400536022289, - "uxie": 1.4625332941312006, - "mesprit": 1.3956506901760013, - "azelf": 1.314671204461566, - "dialga": 0.4130248382458146, - "palkia": 0.4188932779093487, - "heatran": 0.33937321253570774, - "giratina-altered": 0.44229305204436137, - "cresselia": 0.7678538468226319, - "tornadus-incarnate": 0.46937005070508764, - "thundurus-incarnate": 0.54603121915012, - "reshiram": 0.3976846235935274, - "zekrom": 0.47927235994273887, - "landorus-incarnate": 0.3986118233025774, - "kyurem": 0.44756591295697035, - "xerneas": 0.29178590365503365, - "yveltal": 0.4431841265715566, - "zygarde-50": 0.4307508646762691, - "tapu-koko": 0.7015338037255001, - "tapu-lele": 1.3976573157114522, - "tapu-bulu": 0.9988650347166831, - "tapu-fini": 0.5000418287017272, - "solgaleo": 0.5882935618435209, - "lunala": 0.5314691645183017, - "nihilego": 0.7236323870528911, - "buzzwole": 0.9392663506052843, - "pheromosa": 1.1848728611357533, - "xurkitree": 0.561294296798984, - "celesteela": 0.5132678128410888, - "kartana": 1.173005589048133, - "guzzlord": 0.8686436628223586, - "necrozma": 1.0850674314977284, - "stakataka": 0.4152572073376588, - "blacephalon": 0.9435317025291425 + "articuno": 0.48902198600624647, + "zapdos": 0.39125634628520367, + "moltres": 0.30523764157826244, + "mewtwo": 0.7672121721154855, + "raikou": 1.2855730261875054, + "entei": 0.8537939067388971, + "suicune": 1.1851980635776207, + "lugia": 0.6897474617433401, + "ho-oh": 0.4047675707756941, + "latias": 1.1898270501899249, + "latios": 1.5655498453121561, + "kyogre": 0.3899483347020562, + "groudon": 0.36420327415122683, + "rayquaza": 0.3129571489457682, + "uxie": 1.4601250388507483, + "mesprit": 1.3931416342877536, + "azelf": 1.3123367551533658, + "dialga": 0.4107600197658102, + "palkia": 0.41703980230360477, + "heatran": 0.33779921206996544, + "giratina-altered": 0.43969500794137906, + "cresselia": 0.7663472859790378, + "tornadus-incarnate": 0.4661711555163609, + "thundurus-incarnate": 0.5425380244469508, + "reshiram": 0.3953952207455238, + "zekrom": 0.4764493624695119, + "landorus-incarnate": 0.3976210847190441, + "kyurem": 0.44526697676423843, + "xerneas": 0.29083708209515596, + "yveltal": 0.4413706707107243, + "zygarde-50": 0.43063820330396896, + "tapu-koko": 0.6968229563702739, + "tapu-lele": 1.3938388897021303, + "tapu-bulu": 0.999419192670888, + "tapu-fini": 0.49824641731927266, + "solgaleo": 0.5863173224827068, + "lunala": 0.5298582172550923, + "nihilego": 0.7176906791571358, + "buzzwole": 0.9376001569498262, + "pheromosa": 1.182294244404995, + "xurkitree": 0.5585842033757538, + "celesteela": 0.5102078008985205, + "kartana": 1.1722810716495957, + "guzzlord": 0.8677968808112406, + "necrozma": 1.0799931904872917, + "stakataka": 0.4129170436985874, + "blacephalon": 0.9373844126903332 }, "exploud": { - "articuno": 0.8096917272230095, - "zapdos": 0.7965754615583356, - "moltres": 0.6160102511337479, - "mewtwo": 0.8097401390484902, - "raikou": 1.6467727790145203, - "entei": 1.3118799549524114, - "suicune": 1.418318247285789, - "lugia": 1.0030388802059833, - "ho-oh": 0.6967464256651206, - "latias": 1.0755746732349696, - "latios": 1.3228930845471636, - "kyogre": 0.4460463350147603, - "groudon": 0.42975592146992697, - "rayquaza": 0.7186788231481827, - "uxie": 1.4015879295979539, - "mesprit": 1.3003265449732206, - "azelf": 1.2354628974529436, - "dialga": 0.6931380754406411, - "palkia": 0.5275302553195601, - "heatran": 0.5315858464935652, - "giratina-altered": 0.8769169307200424, - "cresselia": 0.7266121399602954, - "tornadus-incarnate": 0.9160181714510967, - "thundurus-incarnate": 1.0333064786682784, - "reshiram": 0.594863589208718, - "zekrom": 0.7690283621314016, - "landorus-incarnate": 0.8654474917594386, - "kyurem": 0.6700173660553153, - "xerneas": 0.4053093906358367, - "yveltal": 0.6154705376209004, - "zygarde-50": 0.7055233732101001, - "tapu-koko": 1.2504702224047848, - "tapu-lele": 1.4740850394778051, - "tapu-bulu": 1.1017439304079948, - "tapu-fini": 0.6987198928790362, - "solgaleo": 0.6424078298601252, - "lunala": 0.5772463214133652, - "nihilego": 0.8433536804363744, - "buzzwole": 1.2361531416537666, - "pheromosa": 1.447578649145346, - "xurkitree": 0.8036343524209277, - "celesteela": 0.7006567729963115, - "kartana": 1.8690804341278144, - "guzzlord": 0.8696892153256575, - "necrozma": 1.266728130672906, - "stakataka": 0.9915087650457849, - "blacephalon": 1.180904918260282 + "articuno": 0.8102264440256047, + "zapdos": 0.7979747169318612, + "moltres": 0.6167339206147867, + "mewtwo": 0.8101233837759549, + "raikou": 1.6476462735401185, + "entei": 1.3131665188025394, + "suicune": 1.4191516846877508, + "lugia": 1.0039931617333846, + "ho-oh": 0.6968279637027435, + "latias": 1.0763422050505378, + "latios": 1.3232828615175949, + "kyogre": 0.44611368197438017, + "groudon": 0.43046379587916395, + "rayquaza": 0.7201054315978587, + "uxie": 1.403495004363168, + "mesprit": 1.3009965035974975, + "azelf": 1.236056954924201, + "dialga": 0.6944593138662882, + "palkia": 0.5280270898909966, + "heatran": 0.5322175896438146, + "giratina-altered": 0.8782431232348703, + "cresselia": 0.726977832119343, + "tornadus-incarnate": 0.9175209181216435, + "thundurus-incarnate": 1.0348582930397574, + "reshiram": 0.5956619516407631, + "zekrom": 0.7703968284015079, + "landorus-incarnate": 0.8671730438702243, + "kyurem": 0.6715903306374712, + "xerneas": 0.405735465816226, + "yveltal": 0.6165771314251711, + "zygarde-50": 0.7073885215739333, + "tapu-koko": 1.2519489016858745, + "tapu-lele": 1.4739495377706668, + "tapu-bulu": 1.1025061912923628, + "tapu-fini": 0.6991513322981059, + "solgaleo": 0.6423543831130232, + "lunala": 0.5773391525862263, + "nihilego": 0.8421241223477693, + "buzzwole": 1.2363232085231393, + "pheromosa": 1.4468270968715553, + "xurkitree": 0.8046588010141739, + "celesteela": 0.7013419833311609, + "kartana": 1.8739545605655936, + "guzzlord": 0.871509908197836, + "necrozma": 1.2676457496107587, + "stakataka": 0.9932364218437797, + "blacephalon": 1.178791772078949 }, "lairon": { - "articuno": 1.6129912898270837, - "zapdos": 0.9049687651075539, - "moltres": 1.0118749201900992, - "mewtwo": 0.8290607225603714, - "raikou": 1.7192459869829095, - "entei": 1.6221297860637858, - "suicune": 1.303693115732595, - "lugia": 1.1930740494275849, - "ho-oh": 1.6713040862693096, - "latias": 0.8942182512219321, - "latios": 1.1575296434849915, - "kyogre": 0.32837144749257874, - "groudon": 0.2589696027056223, - "rayquaza": 0.6269722208221652, - "uxie": 1.359174023232734, - "mesprit": 1.3642932979428282, - "azelf": 1.2941341583418149, - "dialga": 0.5179634724436752, - "palkia": 0.42894265509038193, - "heatran": 0.4408860485328284, - "giratina-altered": 0.7168051807412466, - "cresselia": 0.7672907600787768, - "tornadus-incarnate": 1.097411253167723, - "thundurus-incarnate": 1.2338905266302505, - "reshiram": 0.7689440235667813, - "zekrom": 0.6918282116110532, - "landorus-incarnate": 0.41384030044729964, - "kyurem": 0.8208545939866936, - "xerneas": 0.5543759210530557, - "yveltal": 0.706745541695839, - "zygarde-50": 0.3165862015222679, - "tapu-koko": 1.1326056734393373, - "tapu-lele": 2.429380676513279, - "tapu-bulu": 1.2460465629670607, - "tapu-fini": 0.5243565450401313, - "solgaleo": 0.6267243500004984, - "lunala": 0.612407862667484, - "nihilego": 1.823028548381424, - "buzzwole": 0.9595852693648195, - "pheromosa": 1.4725771262899345, - "xurkitree": 0.7110946883368627, - "celesteela": 0.6600724812230838, - "kartana": 1.0984983647083553, - "guzzlord": 0.7967285184348603, - "necrozma": 1.2339501486927433, - "stakataka": 0.6222629770915198, - "blacephalon": 2.0769270894535365 + "articuno": 1.6183946044937358, + "zapdos": 0.9056483011826916, + "moltres": 1.0126310447352556, + "mewtwo": 0.8295688496428624, + "raikou": 1.7181224219807623, + "entei": 1.6233708703853584, + "suicune": 1.2999762865195446, + "lugia": 1.1942008573338887, + "ho-oh": 1.6762375847553934, + "latias": 0.8934229339755195, + "latios": 1.1546105849220938, + "kyogre": 0.32710441256999656, + "groudon": 0.2577845081640483, + "rayquaza": 0.6285624301870822, + "uxie": 1.358714674625978, + "mesprit": 1.3652498662358878, + "azelf": 1.2951865883026743, + "dialga": 0.5174453604591521, + "palkia": 0.4281275443767544, + "heatran": 0.4402413455935034, + "giratina-altered": 0.7171610492001712, + "cresselia": 0.7680620839892522, + "tornadus-incarnate": 1.099402879589799, + "thundurus-incarnate": 1.2337292085485656, + "reshiram": 0.7686526159466451, + "zekrom": 0.6922840187155617, + "landorus-incarnate": 0.411807316599587, + "kyurem": 0.8221536343634248, + "xerneas": 0.555341759081433, + "yveltal": 0.7077945944137203, + "zygarde-50": 0.3154296481758173, + "tapu-koko": 1.1323529206065297, + "tapu-lele": 2.435880843594497, + "tapu-bulu": 1.2467147056575099, + "tapu-fini": 0.5223390201457648, + "solgaleo": 0.626337888252076, + "lunala": 0.6115464692022576, + "nihilego": 1.82962127161719, + "buzzwole": 0.9574692724130356, + "pheromosa": 1.4709751131092146, + "xurkitree": 0.7095439911443719, + "celesteela": 0.659026809963952, + "kartana": 1.0957352659124513, + "guzzlord": 0.7967341223535589, + "necrozma": 1.2339971087861255, + "stakataka": 0.6224820747062008, + "blacephalon": 2.077398018168704 }, "manectric": { - "articuno": 0.9924193274735398, - "zapdos": 0.912973437464913, - "moltres": 0.7722434939350956, - "mewtwo": 0.7600540964941547, - "raikou": 1.8439629255563186, - "entei": 1.237971557133152, - "suicune": 1.7829983712974142, - "lugia": 1.1310990182937122, - "ho-oh": 0.8415549053123033, - "latias": 0.8019778203678052, - "latios": 1.0205827838028183, - "kyogre": 0.5449082140752666, - "groudon": 0.2925511659887854, - "rayquaza": 0.44762961375615806, - "uxie": 1.26540765987933, - "mesprit": 1.2097315079576045, - "azelf": 1.1488578667599842, - "dialga": 0.6262971012123377, - "palkia": 0.4871360899479178, - "heatran": 0.4788465084099004, - "giratina-altered": 0.5643635547536784, - "cresselia": 0.6882577501911142, - "tornadus-incarnate": 1.0673961545383452, - "thundurus-incarnate": 1.1145916667057785, - "reshiram": 0.4919182743894511, - "zekrom": 0.5906611184072699, - "landorus-incarnate": 0.4299166495442496, - "kyurem": 0.548907907502794, - "xerneas": 0.3788010373602359, - "yveltal": 0.7078106123190104, - "zygarde-50": 0.294112703086211, - "tapu-koko": 1.5220378784586004, - "tapu-lele": 1.397853796896325, - "tapu-bulu": 1.231420636746786, - "tapu-fini": 0.8643027298934437, - "solgaleo": 0.9833927697381939, - "lunala": 0.5645179747844324, - "nihilego": 1.110864564134621, - "buzzwole": 1.6344856777731513, - "pheromosa": 1.771596364211127, - "xurkitree": 0.9701728160772414, - "celesteela": 0.9904079670263961, - "kartana": 3.8406812994905497, - "guzzlord": 0.621194704500096, - "necrozma": 1.2647429043281782, - "stakataka": 0.6619951405876185, - "blacephalon": 1.3551134445860686 + "articuno": 0.9944323862099629, + "zapdos": 0.9186854962744386, + "moltres": 0.7734120139574934, + "mewtwo": 0.7598743657144311, + "raikou": 1.85214275659919, + "entei": 1.238104795690185, + "suicune": 1.7837792823101917, + "lugia": 1.132309174407509, + "ho-oh": 0.8419722391468454, + "latias": 0.8004704795730586, + "latios": 1.018751606065678, + "kyogre": 0.5457353758584464, + "groudon": 0.2919255605398332, + "rayquaza": 0.4477942250505035, + "uxie": 1.2650872078200204, + "mesprit": 1.209299799406276, + "azelf": 1.1485709193589593, + "dialga": 0.6268672227837911, + "palkia": 0.48688104256838005, + "heatran": 0.4779093528268221, + "giratina-altered": 0.5636096038659524, + "cresselia": 0.6881340873693743, + "tornadus-incarnate": 1.070141361478221, + "thundurus-incarnate": 1.1206027499423805, + "reshiram": 0.491412124508925, + "zekrom": 0.5907269689095083, + "landorus-incarnate": 0.4289711628070173, + "kyurem": 0.548651190576755, + "xerneas": 0.379098381271343, + "yveltal": 0.7086310792678387, + "zygarde-50": 0.2931284397494287, + "tapu-koko": 1.53067550573045, + "tapu-lele": 1.397205031837231, + "tapu-bulu": 1.2325527569530652, + "tapu-fini": 0.8650470775962239, + "solgaleo": 0.9857162165385107, + "lunala": 0.5638669994808141, + "nihilego": 1.1101091322611203, + "buzzwole": 1.6380072216610848, + "pheromosa": 1.7745374463251293, + "xurkitree": 0.9758679059439733, + "celesteela": 0.9932299826370419, + "kartana": 3.8507887723621987, + "guzzlord": 0.6196246173213804, + "necrozma": 1.2658868377348114, + "stakataka": 0.6623719634424071, + "blacephalon": 1.3542830287847702 }, "roselia": { - "articuno": 0.5856652847231644, - "zapdos": 0.5589553874718508, - "moltres": 0.41905702912782705, - "mewtwo": 0.6657253799780536, - "raikou": 1.7358978653392034, - "entei": 0.9619107615637178, - "suicune": 1.952930315165096, - "lugia": 0.7059364620497885, - "ho-oh": 0.47976921101223496, - "latias": 0.7818858603403807, - "latios": 0.9362374811822186, - "kyogre": 0.6765451289148338, - "groudon": 0.5061525287572457, - "rayquaza": 0.35142359400665546, - "uxie": 1.252235430133401, - "mesprit": 1.2606316943017877, - "azelf": 1.2341650783889575, - "dialga": 0.4411394662607942, - "palkia": 0.561686370369683, - "heatran": 0.2973626976764858, - "giratina-altered": 0.5810475035110121, - "cresselia": 0.6231239412147556, - "tornadus-incarnate": 0.5792859478255681, - "thundurus-incarnate": 0.8406850504205902, - "reshiram": 0.44908025705731014, - "zekrom": 0.5751979227447935, - "landorus-incarnate": 0.5231949928996625, - "kyurem": 0.4748178398438696, - "xerneas": 0.46887034008598955, - "yveltal": 0.42445019317216615, - "zygarde-50": 0.4134587739529173, - "tapu-koko": 1.2515511948653333, - "tapu-lele": 1.2958511809523787, - "tapu-bulu": 0.936245720811554, - "tapu-fini": 1.1225111615668701, - "solgaleo": 0.5133332948793802, - "lunala": 0.6264247383627981, - "nihilego": 0.9053796677749595, - "buzzwole": 1.4101951155628143, - "pheromosa": 1.579686137036587, - "xurkitree": 0.8950628079117399, - "celesteela": 0.5184882876260857, - "kartana": 1.2808061465522764, - "guzzlord": 0.5870647629843555, - "necrozma": 1.1330377174563857, - "stakataka": 0.6435345591299073, - "blacephalon": 1.0432698764466943 + "articuno": 0.5831660021874852, + "zapdos": 0.5571916770116785, + "moltres": 0.4172495978881182, + "mewtwo": 0.662569210249109, + "raikou": 1.7360173694798688, + "entei": 0.9580180401044958, + "suicune": 1.95399257434276, + "lugia": 0.7034204861114584, + "ho-oh": 0.47669152762475175, + "latias": 0.7782796715996307, + "latios": 0.9322655201945432, + "kyogre": 0.6778785973707862, + "groudon": 0.5064694998674809, + "rayquaza": 0.3497347967726848, + "uxie": 1.248765128992073, + "mesprit": 1.258232974695317, + "azelf": 1.2313732808999687, + "dialga": 0.4397040145473161, + "palkia": 0.561600696526664, + "heatran": 0.2961613352444885, + "giratina-altered": 0.5796560716468898, + "cresselia": 0.6204077511255677, + "tornadus-incarnate": 0.577246830900468, + "thundurus-incarnate": 0.8409903547239621, + "reshiram": 0.4473907154754857, + "zekrom": 0.5745167091468657, + "landorus-incarnate": 0.5229673448883445, + "kyurem": 0.4733666546321508, + "xerneas": 0.47004512032979295, + "yveltal": 0.4228618811309924, + "zygarde-50": 0.4131206978463873, + "tapu-koko": 1.2502131549759987, + "tapu-lele": 1.290595815288464, + "tapu-bulu": 0.9366085142900865, + "tapu-fini": 1.1264303287777928, + "solgaleo": 0.5107119303851748, + "lunala": 0.6258757228644972, + "nihilego": 0.9040220418960274, + "buzzwole": 1.4097794511528652, + "pheromosa": 1.5784173119931193, + "xurkitree": 0.8967535976669183, + "celesteela": 0.5168932330768232, + "kartana": 1.2817703870861854, + "guzzlord": 0.5846701129185593, + "necrozma": 1.1293600635141416, + "stakataka": 0.642138107629664, + "blacephalon": 1.0382906006516779 }, "sharpedo": { - "articuno": 0.8292646493610343, - "zapdos": 0.5237472100749947, - "moltres": 0.7022466659023696, - "mewtwo": 1.1621225675919016, - "raikou": 1.334826172328135, - "entei": 1.4528523366618755, - "suicune": 1.43870922484174, - "lugia": 1.2297685738163953, - "ho-oh": 0.9955377176445075, - "latias": 1.5159900507966932, - "latios": 1.7083382251870431, - "kyogre": 0.4687049047351187, - "groudon": 0.33997109681968113, - "rayquaza": 0.4577117001862533, - "uxie": 1.862326085702347, - "mesprit": 1.5538582635783122, - "azelf": 1.3204157024840595, - "dialga": 0.5806748907285344, - "palkia": 0.5754231962065761, - "heatran": 0.6200219774219413, - "giratina-altered": 0.9259294376835843, - "cresselia": 1.0075411155033858, - "tornadus-incarnate": 0.7943928353468089, - "thundurus-incarnate": 0.6658288260528915, - "reshiram": 0.6735855758069502, - "zekrom": 0.5400261978672752, - "landorus-incarnate": 0.5360342843065657, - "kyurem": 0.6246844716207368, - "xerneas": 0.25032151126788554, - "yveltal": 0.4982033396775557, - "zygarde-50": 0.38532162832032046, - "tapu-koko": 0.78443597363185, - "tapu-lele": 1.632495580717054, - "tapu-bulu": 0.582495089070878, - "tapu-fini": 0.5382336473801409, - "solgaleo": 1.0273182672415746, - "lunala": 1.1168041842124858, - "nihilego": 1.1999148550947685, - "buzzwole": 0.6931290405598198, - "pheromosa": 1.1052562927017662, - "xurkitree": 0.560410915075046, - "celesteela": 0.7288443490683181, - "kartana": 0.9471146583545222, - "guzzlord": 0.7980257474062789, - "necrozma": 1.5602869355550175, - "stakataka": 0.5876090798462296, - "blacephalon": 2.345302008693938 + "articuno": 0.8292410298232291, + "zapdos": 0.5220237275303246, + "moltres": 0.7029670774230576, + "mewtwo": 1.1668332373121995, + "raikou": 1.3283479232921211, + "entei": 1.4539498139164588, + "suicune": 1.4391700439930482, + "lugia": 1.2304173734882586, + "ho-oh": 0.9978798026656748, + "latias": 1.5206023247650007, + "latios": 1.7100458460646033, + "kyogre": 0.46799923312616604, + "groudon": 0.33923156608681476, + "rayquaza": 0.4569984363787802, + "uxie": 1.8675987763404482, + "mesprit": 1.5532798274767963, + "azelf": 1.3199241570585993, + "dialga": 0.5801377657877899, + "palkia": 0.5753510203245757, + "heatran": 0.6210523737693323, + "giratina-altered": 0.9268732190969422, + "cresselia": 1.0096861333994516, + "tornadus-incarnate": 0.7939636817160136, + "thundurus-incarnate": 0.6631418761975999, + "reshiram": 0.6748238671123208, + "zekrom": 0.5375423980520178, + "landorus-incarnate": 0.5351392907488791, + "kyurem": 0.6248366304499002, + "xerneas": 0.24861671997381923, + "yveltal": 0.49775892992953746, + "zygarde-50": 0.38487498512540663, + "tapu-koko": 0.7800670515140005, + "tapu-lele": 1.632706379027002, + "tapu-bulu": 0.5776689415474104, + "tapu-fini": 0.5363396829906313, + "solgaleo": 1.0295537259427383, + "lunala": 1.1168320476540383, + "nihilego": 1.199143887269261, + "buzzwole": 0.687710475037073, + "pheromosa": 1.0985918437770992, + "xurkitree": 0.5575025990566265, + "celesteela": 0.7287633920310066, + "kartana": 0.9392198916272474, + "guzzlord": 0.7970780016811162, + "necrozma": 1.5621667007109328, + "stakataka": 0.5866015651639719, + "blacephalon": 2.353805818415738 }, "wailmer": { - "articuno": 0.8387885839825518, - "zapdos": 0.5053123911125185, - "moltres": 0.7129668175517985, - "mewtwo": 0.7118713414611947, - "raikou": 1.2113248380475057, - "entei": 1.462221284375917, - "suicune": 1.1365317097867011, - "lugia": 0.774502083479, - "ho-oh": 0.773918812952383, - "latias": 0.8490467723430639, - "latios": 1.0066945975985404, - "kyogre": 0.3908248877194447, - "groudon": 0.4180459442596811, - "rayquaza": 0.35665293640979756, - "uxie": 1.1161211110027531, - "mesprit": 1.0639791478142118, - "azelf": 1.0063937629421165, - "dialga": 0.4765443110612048, - "palkia": 0.4371925911509983, - "heatran": 0.6077316531846332, - "giratina-altered": 0.5369344214523878, - "cresselia": 0.6279717698373124, - "tornadus-incarnate": 0.7271399398198336, - "thundurus-incarnate": 0.6376430922904417, - "reshiram": 0.5218439535618851, - "zekrom": 0.43909463606874216, - "landorus-incarnate": 0.5848745207178399, - "kyurem": 0.5668246417629468, - "xerneas": 0.3577205407627358, - "yveltal": 0.45967154470451954, - "zygarde-50": 0.3702972283000332, - "tapu-koko": 0.8662237712882439, - "tapu-lele": 1.4861134541184322, - "tapu-bulu": 0.8004296257454855, - "tapu-fini": 0.5884851549130604, - "solgaleo": 0.6774219641941648, - "lunala": 0.5018285671218634, - "nihilego": 1.0115658646956862, - "buzzwole": 1.1461740825326152, - "pheromosa": 1.7050087536616712, - "xurkitree": 0.5461063395640243, - "celesteela": 0.6838775175390452, - "kartana": 1.0614351281879413, - "guzzlord": 0.6016597674479452, - "necrozma": 1.0162032957799312, - "stakataka": 0.7401299510932038, - "blacephalon": 1.593790649823693 + "articuno": 0.837950822134932, + "zapdos": 0.5030788842643773, + "moltres": 0.7132539293556627, + "mewtwo": 0.7100267276893196, + "raikou": 1.2041672664753662, + "entei": 1.4619108759158919, + "suicune": 1.133858168577801, + "lugia": 0.7723881069713106, + "ho-oh": 0.7737653643007301, + "latias": 0.8463272802198731, + "latios": 1.003031219554243, + "kyogre": 0.3896095275745757, + "groudon": 0.41769095680644275, + "rayquaza": 0.35535442726459765, + "uxie": 1.1127432566577002, + "mesprit": 1.0605887357316768, + "azelf": 1.003237715575203, + "dialga": 0.47533948507185736, + "palkia": 0.43603257808665585, + "heatran": 0.6080957538110066, + "giratina-altered": 0.5351489372594969, + "cresselia": 0.6262735308297458, + "tornadus-incarnate": 0.7258503943009218, + "thundurus-incarnate": 0.6342806890639291, + "reshiram": 0.5211257327883911, + "zekrom": 0.43635214678190803, + "landorus-incarnate": 0.5842210115432649, + "kyurem": 0.5656856176691724, + "xerneas": 0.3567032328620019, + "yveltal": 0.4584319041412845, + "zygarde-50": 0.3693998590438927, + "tapu-koko": 0.8622319986488995, + "tapu-lele": 1.4820979318378433, + "tapu-bulu": 0.7964699796948125, + "tapu-fini": 0.5875481934273887, + "solgaleo": 0.6766098993231836, + "lunala": 0.5002209858172164, + "nihilego": 1.0088688545357538, + "buzzwole": 1.1440136942871255, + "pheromosa": 1.7020054655652737, + "xurkitree": 0.5428222413430095, + "celesteela": 0.6831210598149293, + "kartana": 1.0545344804815868, + "guzzlord": 0.5994803286450524, + "necrozma": 1.012687088363311, + "stakataka": 0.7394743928808262, + "blacephalon": 1.5934255300891405 }, "torkoal": { - "articuno": 1.0136519766461167, - "zapdos": 0.6748741887699293, - "moltres": 0.5292560744132, - "mewtwo": 0.796897331350745, - "raikou": 1.5669934874588303, - "entei": 1.1220102420215836, - "suicune": 1.0938447123693518, - "lugia": 0.8004412764463773, - "ho-oh": 0.6585829400703013, - "latias": 0.7606396569554899, - "latios": 1.065845846813556, - "kyogre": 0.31187827682314095, - "groudon": 0.36437095364353245, - "rayquaza": 0.3854109545763462, - "uxie": 1.2384261502142162, - "mesprit": 1.2013386078353414, - "azelf": 1.1921441580777852, - "dialga": 0.6458108505646605, - "palkia": 0.3747056954353022, - "heatran": 0.39461428522038255, - "giratina-altered": 0.552471248216456, - "cresselia": 0.7183409113048143, - "tornadus-incarnate": 0.8011770931396668, - "thundurus-incarnate": 0.8345267368891369, - "reshiram": 0.5032738251962791, - "zekrom": 0.5850250892758109, - "landorus-incarnate": 0.5072488719461412, - "kyurem": 0.5972440442013164, - "xerneas": 0.41395420558858476, - "yveltal": 0.5292069911116009, - "zygarde-50": 0.34425858924398794, - "tapu-koko": 1.1732195597888477, - "tapu-lele": 1.4566575153080628, - "tapu-bulu": 1.4299616876668297, - "tapu-fini": 0.4770243357376976, - "solgaleo": 1.0681079611314985, - "lunala": 0.5627635428983067, - "nihilego": 0.7673098752793438, - "buzzwole": 1.8691087891751912, - "pheromosa": 1.930851889520412, - "xurkitree": 0.7578082025855215, - "celesteela": 1.0419873666814712, - "kartana": 4.097540292538508, - "guzzlord": 0.6702593557132308, - "necrozma": 1.141154147290535, - "stakataka": 0.6662362568189646, - "blacephalon": 1.2460769098198603 + "articuno": 1.015431072533943, + "zapdos": 0.6751181454391593, + "moltres": 0.5293515936642068, + "mewtwo": 0.7968110289896413, + "raikou": 1.5662728323677935, + "entei": 1.1224018908764575, + "suicune": 1.0906041002632643, + "lugia": 0.7989100150844669, + "ho-oh": 0.6583804834210948, + "latias": 0.7586418383818097, + "latios": 1.0638754484250965, + "kyogre": 0.3107441096495209, + "groudon": 0.36438055354136256, + "rayquaza": 0.38502540652033546, + "uxie": 1.2370561770088984, + "mesprit": 1.200291746958086, + "azelf": 1.1917433323387834, + "dialga": 0.6463205011060777, + "palkia": 0.3734587876210773, + "heatran": 0.39298516503574743, + "giratina-altered": 0.551289356841457, + "cresselia": 0.7185520601882152, + "tornadus-incarnate": 0.8012343873064238, + "thundurus-incarnate": 0.8337969582767786, + "reshiram": 0.5026869105680645, + "zekrom": 0.5849491599866958, + "landorus-incarnate": 0.5069495553010032, + "kyurem": 0.5972523999766712, + "xerneas": 0.41459499285741225, + "yveltal": 0.5292528092601462, + "zygarde-50": 0.3435925599539448, + "tapu-koko": 1.1735429834128035, + "tapu-lele": 1.4566319887589945, + "tapu-bulu": 1.4352273729242149, + "tapu-fini": 0.47531059406063264, + "solgaleo": 1.0719556424234309, + "lunala": 0.5619705828899059, + "nihilego": 0.7640033407542285, + "buzzwole": 1.8763394095406147, + "pheromosa": 1.9356828316019725, + "xurkitree": 0.7576892674833011, + "celesteela": 1.04470191306257, + "kartana": 4.1223770431668445, + "guzzlord": 0.6697695610314769, + "necrozma": 1.139666707019406, + "stakataka": 0.6666936669417448, + "blacephalon": 1.2452006415714578 }, "flygon": { - "articuno": 0.6470438116036579, - "zapdos": 0.8321379211160602, - "moltres": 0.6624114086972566, - "mewtwo": 0.6770104099077068, - "raikou": 2.0142784226020054, - "entei": 1.4141538694828717, - "suicune": 1.4358997309720412, - "lugia": 0.9416563345069892, - "ho-oh": 0.8782836243173677, - "latias": 1.4591602340710503, - "latios": 1.7787388420171082, - "kyogre": 0.5202641486548973, - "groudon": 0.42475311403703675, - "rayquaza": 0.5979132489690231, - "uxie": 1.4279376533974586, - "mesprit": 1.3315774045180055, - "azelf": 1.2090720273717004, - "dialga": 0.6764236789405721, - "palkia": 0.7627101752797789, - "heatran": 0.7420352958254269, - "giratina-altered": 0.9744026795314484, - "cresselia": 0.664026604848269, - "tornadus-incarnate": 0.7920869648990623, - "thundurus-incarnate": 1.1551907230439264, - "reshiram": 0.8657951766398981, - "zekrom": 0.9283288684644035, - "landorus-incarnate": 0.6512074979746908, - "kyurem": 0.6355524430893298, - "xerneas": 0.3765785120915496, - "yveltal": 0.5532029890644534, - "zygarde-50": 0.6305225628221793, - "tapu-koko": 1.3919414843748523, - "tapu-lele": 1.7287210457831341, - "tapu-bulu": 1.0474144263533873, - "tapu-fini": 0.593564999582918, - "solgaleo": 0.7713668032536105, - "lunala": 0.6151117552415408, - "nihilego": 1.340974119717346, - "buzzwole": 1.0404957841948537, - "pheromosa": 1.519667625973318, - "xurkitree": 0.9680998675465396, - "celesteela": 0.7268374553175125, - "kartana": 1.4888700761113576, - "guzzlord": 1.0510891855884972, - "necrozma": 1.407817727436722, - "stakataka": 0.9635239477996392, - "blacephalon": 1.720541900511138 + "articuno": 0.6442594988842917, + "zapdos": 0.8337682605418907, + "moltres": 0.6630805008707095, + "mewtwo": 0.6766761622126352, + "raikou": 2.0203829776589166, + "entei": 1.4161141251332987, + "suicune": 1.4363158957324982, + "lugia": 0.9416248312135485, + "ho-oh": 0.8796083141832575, + "latias": 1.4606872045015464, + "latios": 1.780290005961842, + "kyogre": 0.5208481257387388, + "groudon": 0.4261230530744864, + "rayquaza": 0.5977953358707631, + "uxie": 1.4292502963256473, + "mesprit": 1.331921569989015, + "azelf": 1.2093640043764395, + "dialga": 0.6766311597654397, + "palkia": 0.7635461313868069, + "heatran": 0.7432201053829708, + "giratina-altered": 0.9754169392717744, + "cresselia": 0.6637693797560202, + "tornadus-incarnate": 0.7916301283175164, + "thundurus-incarnate": 1.1582971193310092, + "reshiram": 0.8673774252466355, + "zekrom": 0.9309337253683181, + "landorus-incarnate": 0.6530461168426022, + "kyurem": 0.6339920845167298, + "xerneas": 0.37569173737362516, + "yveltal": 0.5532008899400123, + "zygarde-50": 0.6321995572463117, + "tapu-koko": 1.3942492326762284, + "tapu-lele": 1.7276492132507824, + "tapu-bulu": 1.0473410240037917, + "tapu-fini": 0.5925175845136179, + "solgaleo": 0.7717093505326893, + "lunala": 0.6149819620106981, + "nihilego": 1.3451695131619013, + "buzzwole": 1.039812751988983, + "pheromosa": 1.5196987341885155, + "xurkitree": 0.9715450105836247, + "celesteela": 0.7269447248026641, + "kartana": 1.4890729572195025, + "guzzlord": 1.053006702296038, + "necrozma": 1.4108859270610132, + "stakataka": 0.9643827526771436, + "blacephalon": 1.7235604550749477 }, "altaria": { - "articuno": 0.6244451525423431, - "zapdos": 0.673126910606342, - "moltres": 0.6266303550266108, - "mewtwo": 0.6317121959703, - "raikou": 1.564847121586425, - "entei": 1.2743473299992205, - "suicune": 1.3934380781987974, - "lugia": 0.8349184154977933, - "ho-oh": 0.685943201469511, - "latias": 1.1846675858151028, - "latios": 1.4326856575734892, - "kyogre": 0.46813826004608344, - "groudon": 0.44444491877382086, - "rayquaza": 0.5361236137822252, - "uxie": 1.2883867848612276, - "mesprit": 1.206266653402642, - "azelf": 1.1017309894891596, - "dialga": 0.5852336643209654, - "palkia": 0.6503596096534421, - "heatran": 0.43699181893404304, - "giratina-altered": 0.8300940756825735, - "cresselia": 0.608173245566592, - "tornadus-incarnate": 0.7321354833282313, - "thundurus-incarnate": 0.8812494592007151, - "reshiram": 0.7186614363192608, - "zekrom": 0.811627256874071, - "landorus-incarnate": 0.5836093345660945, - "kyurem": 0.6003675171858094, - "xerneas": 0.32868043239637046, - "yveltal": 0.5593478918786816, - "zygarde-50": 0.6171799726834553, - "tapu-koko": 1.048899022701717, - "tapu-lele": 1.229061918153563, - "tapu-bulu": 1.173974074082568, - "tapu-fini": 0.6159316812191541, - "solgaleo": 0.7930532918463482, - "lunala": 0.5579312247916797, - "nihilego": 0.8675373361785781, - "buzzwole": 1.4729469536930133, - "pheromosa": 1.6088526102179737, - "xurkitree": 0.7702029697044954, - "celesteela": 0.8986901767943956, - "kartana": 2.960587376574783, - "guzzlord": 1.0529136372618768, - "necrozma": 1.1559125761820566, - "stakataka": 0.5333628857519176, - "blacephalon": 1.4133307776701582 + "articuno": 0.6220944802304542, + "zapdos": 0.6736155633541638, + "moltres": 0.6273505817124712, + "mewtwo": 0.6308653284880008, + "raikou": 1.5647049169386538, + "entei": 1.2751909077178762, + "suicune": 1.3946777748189085, + "lugia": 0.8344498771435931, + "ho-oh": 0.6859383856531263, + "latias": 1.1854393497860105, + "latios": 1.4334523017162484, + "kyogre": 0.4684190093600053, + "groudon": 0.4460683562207213, + "rayquaza": 0.5363696494155851, + "uxie": 1.2888325600112989, + "mesprit": 1.2059849067688244, + "azelf": 1.1013098913966757, + "dialga": 0.5852804671594349, + "palkia": 0.6510269967737601, + "heatran": 0.4362802099726657, + "giratina-altered": 0.830725290378508, + "cresselia": 0.6075221617495667, + "tornadus-incarnate": 0.7319685589063112, + "thundurus-incarnate": 0.8816944532883376, + "reshiram": 0.7196008231984896, + "zekrom": 0.8123172920913926, + "landorus-incarnate": 0.585078611451272, + "kyurem": 0.5991198353186515, + "xerneas": 0.32800622629937337, + "yveltal": 0.5596835027807827, + "zygarde-50": 0.6190097217603779, + "tapu-koko": 1.0482984653985539, + "tapu-lele": 1.226482736193356, + "tapu-bulu": 1.1765993944617708, + "tapu-fini": 0.615530589755362, + "solgaleo": 0.7935382873491771, + "lunala": 0.5576558129937714, + "nihilego": 0.865356460602591, + "buzzwole": 1.4791358012671472, + "pheromosa": 1.6131919921179159, + "xurkitree": 0.7709331051871816, + "celesteela": 0.8998379054894389, + "kartana": 2.9752755829874244, + "guzzlord": 1.0549066618620004, + "necrozma": 1.155745104773787, + "stakataka": 0.5327277079988427, + "blacephalon": 1.4141158013732231 }, "whiscash": { - "articuno": 0.7695826661924678, - "zapdos": 0.7554869106166987, - "moltres": 0.8128704013231084, - "mewtwo": 0.7660323694574906, - "raikou": 1.728394654293142, - "entei": 1.6818406847828373, - "suicune": 1.2175178403986355, - "lugia": 0.8757357756620561, - "ho-oh": 0.8761032096034227, - "latias": 0.8845394859769244, - "latios": 1.10896457713366, - "kyogre": 0.4319569224405882, - "groudon": 0.500202495243998, - "rayquaza": 0.39863357770131563, - "uxie": 1.2782416615782903, - "mesprit": 1.2224118757660922, - "azelf": 1.165180506743011, - "dialga": 0.5387634178651761, - "palkia": 0.4742165699259546, - "heatran": 0.702068873306803, - "giratina-altered": 0.6134336747127839, - "cresselia": 0.688718377060685, - "tornadus-incarnate": 0.8024546067666879, - "thundurus-incarnate": 1.0243430036038934, - "reshiram": 0.580863532391569, - "zekrom": 0.6196835635086662, - "landorus-incarnate": 0.709072275557952, - "kyurem": 0.5322141359005126, - "xerneas": 0.36350053734479676, - "yveltal": 0.5270213038477172, - "zygarde-50": 0.43282667074535086, - "tapu-koko": 1.331455676724493, - "tapu-lele": 1.4095156480455602, - "tapu-bulu": 0.93104420399272, - "tapu-fini": 0.6349060548477865, - "solgaleo": 0.7592637118315552, - "lunala": 0.5678947068141463, - "nihilego": 1.2949959428796725, - "buzzwole": 1.3028160046650092, - "pheromosa": 1.9214291578025748, - "xurkitree": 0.8229479428151103, - "celesteela": 0.7892249680179522, - "kartana": 1.0697381702071422, - "guzzlord": 0.6683662907908116, - "necrozma": 1.2527131742384663, - "stakataka": 0.9112967186673527, - "blacephalon": 1.8161562485502185 + "articuno": 0.7692849195359823, + "zapdos": 0.7568315367117467, + "moltres": 0.8148251086684375, + "mewtwo": 0.7654825245105404, + "raikou": 1.731349893681183, + "entei": 1.6852108511113175, + "suicune": 1.2163804244777274, + "lugia": 0.8753358670394742, + "ho-oh": 0.8780680304259245, + "latias": 0.8832849311735214, + "latios": 1.1074469027757696, + "kyogre": 0.4318963166505849, + "groudon": 0.5008846509050384, + "rayquaza": 0.39826596984715534, + "uxie": 1.2772741866479604, + "mesprit": 1.2213780763693474, + "azelf": 1.1642511565235594, + "dialga": 0.5386656197222044, + "palkia": 0.47385913844533245, + "heatran": 0.7037221972424751, + "giratina-altered": 0.6132669717010055, + "cresselia": 0.6883090917677884, + "tornadus-incarnate": 0.80276312855117, + "thundurus-incarnate": 1.0267514378111784, + "reshiram": 0.5814424006352432, + "zekrom": 0.6202579970876159, + "landorus-incarnate": 0.7101195978435502, + "kyurem": 0.5316243548199853, + "xerneas": 0.3631438938745112, + "yveltal": 0.5266051378460214, + "zygarde-50": 0.4328006304509674, + "tapu-koko": 1.3340554338967707, + "tapu-lele": 1.4086630151993784, + "tapu-bulu": 0.9269166495404434, + "tapu-fini": 0.6346277254726135, + "solgaleo": 0.7596774275188175, + "lunala": 0.5674204549384427, + "nihilego": 1.2977252766741318, + "buzzwole": 1.3039277932799598, + "pheromosa": 1.9238554578359535, + "xurkitree": 0.8233899236800502, + "celesteela": 0.7900595665182704, + "kartana": 1.0619406440960724, + "guzzlord": 0.6671906911203869, + "necrozma": 1.2530139531351878, + "stakataka": 0.9126961974462824, + "blacephalon": 1.8200853856579067 }, "crawdaunt": { - "articuno": 0.91354831708835, - "zapdos": 0.6216456866116594, - "moltres": 0.8195260174236869, - "mewtwo": 1.2963463079595274, - "raikou": 1.5890158249050033, - "entei": 1.7808570635544188, - "suicune": 1.6316844882007824, - "lugia": 1.3978227945377504, - "ho-oh": 0.928462483107029, - "latias": 1.7302053536468112, - "latios": 1.971985438642226, - "kyogre": 0.5353236666803651, - "groudon": 0.5070364288006797, - "rayquaza": 0.48604978663235965, - "uxie": 2.099381870432595, - "mesprit": 1.7910916584205534, - "azelf": 1.568387909013358, - "dialga": 0.6758785994096219, - "palkia": 0.6067891609564455, - "heatran": 0.7147308060525777, - "giratina-altered": 1.102160622476178, - "cresselia": 1.136472114222448, - "tornadus-incarnate": 0.8894212490666371, - "thundurus-incarnate": 0.7820293134177396, - "reshiram": 0.6816887240889837, - "zekrom": 0.6322061850381531, - "landorus-incarnate": 0.7025612346298931, - "kyurem": 0.6415902786902625, - "xerneas": 0.2899984835631718, - "yveltal": 0.5489562969816579, - "zygarde-50": 0.43804362076732084, - "tapu-koko": 0.9548663380978673, - "tapu-lele": 1.897763838950755, - "tapu-bulu": 0.7683431829324698, - "tapu-fini": 0.6249510946297845, - "solgaleo": 1.1804990704594847, - "lunala": 1.3288406501220416, - "nihilego": 1.139920258595073, - "buzzwole": 1.1039976161548855, - "pheromosa": 1.3004504080173682, - "xurkitree": 0.6629095648487722, - "celesteela": 0.8750730414087261, - "kartana": 1.205813353631585, - "guzzlord": 0.7460281002807988, - "necrozma": 1.7638146146100238, - "stakataka": 0.9394337620110298, - "blacephalon": 2.701585807763764 + "articuno": 0.9144951321011472, + "zapdos": 0.6208714803576842, + "moltres": 0.8217684483507113, + "mewtwo": 1.302557028981163, + "raikou": 1.5850807913993306, + "entei": 1.7861923634610826, + "suicune": 1.634962857540068, + "lugia": 1.400218831470538, + "ho-oh": 0.9319395480593127, + "latias": 1.7355976818371897, + "latios": 1.9746975399367466, + "kyogre": 0.5352468510684354, + "groudon": 0.5076280164126328, + "rayquaza": 0.4859695659809249, + "uxie": 2.107304742070254, + "mesprit": 1.7928540945217568, + "azelf": 1.5702929302138593, + "dialga": 0.6763633168272656, + "palkia": 0.6072611818523339, + "heatran": 0.7170760149942632, + "giratina-altered": 1.103782940623347, + "cresselia": 1.1400567212279344, + "tornadus-incarnate": 0.8900674046933477, + "thundurus-incarnate": 0.7800485073722635, + "reshiram": 0.6830657673679797, + "zekrom": 0.6310678891257642, + "landorus-incarnate": 0.7032358508135679, + "kyurem": 0.6419012149329779, + "xerneas": 0.28887073198642155, + "yveltal": 0.5494618743655496, + "zygarde-50": 0.4382832281151472, + "tapu-koko": 0.9525836435620089, + "tapu-lele": 1.9033084335016652, + "tapu-bulu": 0.7656540894880004, + "tapu-fini": 0.6243163812321403, + "solgaleo": 1.1851898579040607, + "lunala": 1.3300399118810757, + "nihilego": 1.1394507940876102, + "buzzwole": 1.1006332335821742, + "pheromosa": 1.29664058882681, + "xurkitree": 0.660868371627519, + "celesteela": 0.8768710226178358, + "kartana": 1.2013705544281321, + "guzzlord": 0.7461577042393261, + "necrozma": 1.7681155069448455, + "stakataka": 0.9410637748599404, + "blacephalon": 2.712060163162052 }, "claydol": { - "articuno": 0.8848645381118451, - "zapdos": 0.7708147694718441, - "moltres": 0.7755273552777411, - "mewtwo": 0.677307569152299, - "raikou": 1.7284215927436781, - "entei": 1.2281367087384765, - "suicune": 1.2759634207364616, - "lugia": 0.9046141736266761, - "ho-oh": 0.8648864689645306, - "latias": 0.8219372458734365, - "latios": 1.140572503069345, - "kyogre": 0.3794008925043565, - "groudon": 0.4407613908387259, - "rayquaza": 0.4351893910171738, - "uxie": 1.18292252675211, - "mesprit": 1.1482325908182636, - "azelf": 1.0853100985347588, - "dialga": 0.5214006819422436, - "palkia": 0.4591253979902032, - "heatran": 0.4079541173738951, - "giratina-altered": 0.6440351944780456, - "cresselia": 0.6279037853405405, - "tornadus-incarnate": 0.7833028164968877, - "thundurus-incarnate": 1.0519204501207333, - "reshiram": 0.5868576153043202, - "zekrom": 0.7131339558180434, - "landorus-incarnate": 0.6264891843724363, - "kyurem": 0.5510811852896922, - "xerneas": 0.3794014584461445, - "yveltal": 0.4884291394415611, - "zygarde-50": 0.489095637020359, - "tapu-koko": 1.3242960518419262, - "tapu-lele": 1.356056095573273, - "tapu-bulu": 0.8940405229771343, - "tapu-fini": 0.591533350284925, - "solgaleo": 0.5756455953460057, - "lunala": 0.47900778787487175, - "nihilego": 1.0833213759469853, - "buzzwole": 1.5890370542818089, - "pheromosa": 1.7441741650218106, - "xurkitree": 0.8211936298152812, - "celesteela": 0.7052000570286527, - "kartana": 1.2280875782679062, - "guzzlord": 0.6321611633343556, - "necrozma": 1.1819570513998698, - "stakataka": 0.5405094949824558, - "blacephalon": 1.3705497772884345 + "articuno": 0.8843809013159591, + "zapdos": 0.7728924917817472, + "moltres": 0.7771201790776929, + "mewtwo": 0.677148431229492, + "raikou": 1.731690537587828, + "entei": 1.2285645889159895, + "suicune": 1.2743709697172312, + "lugia": 0.9049034402043046, + "ho-oh": 0.8662305732746487, + "latias": 0.8211643626992637, + "latios": 1.1407176501868754, + "kyogre": 0.37890214506105047, + "groudon": 0.4420096812629355, + "rayquaza": 0.43530048217046524, + "uxie": 1.1824010559458724, + "mesprit": 1.1481028820830268, + "azelf": 1.0850898755551883, + "dialga": 0.5210795489205142, + "palkia": 0.4586282844480936, + "heatran": 0.40761009723666464, + "giratina-altered": 0.6431080041409842, + "cresselia": 0.6279409083690735, + "tornadus-incarnate": 0.7837446624584095, + "thundurus-incarnate": 1.0553922488134422, + "reshiram": 0.5875784529084169, + "zekrom": 0.7147707291322398, + "landorus-incarnate": 0.6284860741098496, + "kyurem": 0.5503064264202246, + "xerneas": 0.37945349794226924, + "yveltal": 0.48746628190266417, + "zygarde-50": 0.48999560917318, + "tapu-koko": 1.3274548633286747, + "tapu-lele": 1.3562655573914708, + "tapu-bulu": 0.8925206366542723, + "tapu-fini": 0.590759933241886, + "solgaleo": 0.5748807016360333, + "lunala": 0.4774665629735986, + "nihilego": 1.0840411839096031, + "buzzwole": 1.5899361929840092, + "pheromosa": 1.7436930124819967, + "xurkitree": 0.822553554448625, + "celesteela": 0.705659491923488, + "kartana": 1.2248242039205464, + "guzzlord": 0.6306486503933444, + "necrozma": 1.1834782086177482, + "stakataka": 0.5397289106472493, + "blacephalon": 1.37020514993913 }, "cradily": { - "articuno": 1.1534384989558855, - "zapdos": 0.8956134462443286, - "moltres": 1.0452977248737412, - "mewtwo": 0.7627253120333424, - "raikou": 1.7825811340407856, - "entei": 1.5873040928470679, - "suicune": 1.9086460702179364, - "lugia": 1.0684096403159624, - "ho-oh": 1.09377550256199, - "latias": 0.9347281494038862, - "latios": 1.1444691684761878, - "kyogre": 0.5889906925450601, - "groudon": 0.5269078477402112, - "rayquaza": 0.5522385463487841, - "uxie": 1.394588559226928, - "mesprit": 1.3582397844779468, - "azelf": 1.2826099881020903, - "dialga": 0.487715568463485, - "palkia": 0.5377813890812186, - "heatran": 0.4686243646136635, - "giratina-altered": 0.6670332530224552, - "cresselia": 0.7034722094062189, - "tornadus-incarnate": 0.948253743062861, - "thundurus-incarnate": 1.1781412727229876, - "reshiram": 0.7012614403296649, - "zekrom": 0.6760410659721603, - "landorus-incarnate": 0.5595941457113573, - "kyurem": 0.694412736048784, - "xerneas": 0.4240182759020933, - "yveltal": 0.6595003740348376, - "zygarde-50": 0.45917918008938824, - "tapu-koko": 1.3931394330334217, - "tapu-lele": 1.5361786923077236, - "tapu-bulu": 1.3464806716147733, - "tapu-fini": 0.9268182232260036, - "solgaleo": 0.5824309939606793, - "lunala": 0.6168874420763198, - "nihilego": 0.9199078709700641, - "buzzwole": 1.074065162639627, - "pheromosa": 1.3323146877135632, - "xurkitree": 0.8542727134962917, - "celesteela": 0.7079925484544303, - "kartana": 1.299418471091227, - "guzzlord": 0.7400518302466814, - "necrozma": 1.2803713718274223, - "stakataka": 0.6901696033213238, - "blacephalon": 1.691461509312777 + "articuno": 1.1539501701817412, + "zapdos": 0.8978903254601998, + "moltres": 1.0480939722383995, + "mewtwo": 0.7631370685239883, + "raikou": 1.7868185386536215, + "entei": 1.590621488889094, + "suicune": 1.9134133085376277, + "lugia": 1.0697731833525532, + "ho-oh": 1.095893726247918, + "latias": 0.9347666650932069, + "latios": 1.1441001076030082, + "kyogre": 0.5902849444886606, + "groudon": 0.527694574801564, + "rayquaza": 0.5529950310396099, + "uxie": 1.3965874742746864, + "mesprit": 1.3606350899320683, + "azelf": 1.2847627205709178, + "dialga": 0.48659062329812564, + "palkia": 0.5385256059310635, + "heatran": 0.4682390108260323, + "giratina-altered": 0.6673746835661283, + "cresselia": 0.7040682036728978, + "tornadus-incarnate": 0.9494703375441355, + "thundurus-incarnate": 1.1812886810128387, + "reshiram": 0.7022604508335198, + "zekrom": 0.6773129660184276, + "landorus-incarnate": 0.5600181144596073, + "kyurem": 0.6945130384076466, + "xerneas": 0.42508677228217484, + "yveltal": 0.6605159363094931, + "zygarde-50": 0.45948347786119326, + "tapu-koko": 1.3983632346298567, + "tapu-lele": 1.5385781917943047, + "tapu-bulu": 1.3488983167539186, + "tapu-fini": 0.9298423983577448, + "solgaleo": 0.5809447724604804, + "lunala": 0.6173380000624782, + "nihilego": 0.9191170362168823, + "buzzwole": 1.0727717083913866, + "pheromosa": 1.330430492616812, + "xurkitree": 0.8563847949596746, + "celesteela": 0.706795046193452, + "kartana": 1.298406846933585, + "guzzlord": 0.7404460658894848, + "necrozma": 1.2823260633616271, + "stakataka": 0.689998724543124, + "blacephalon": 1.6933908066633665 }, "armaldo": { - "articuno": 1.5730434396199868, - "zapdos": 0.954255865218184, - "moltres": 1.131581623859333, - "mewtwo": 1.2051458352820554, - "raikou": 2.3083467133973175, - "entei": 1.6667503575314204, - "suicune": 1.4747794150722553, - "lugia": 1.161827525220891, - "ho-oh": 1.630139467253158, - "latias": 1.5474631877182614, - "latios": 2.1214295299017523, - "kyogre": 0.46244877489503056, - "groudon": 0.38379890470473677, - "rayquaza": 0.6067758988365975, - "uxie": 2.078508410867104, - "mesprit": 2.03647312821077, - "azelf": 1.9213172023879619, - "dialga": 0.7275607145776007, - "palkia": 0.5367250781131042, - "heatran": 0.9358160210814012, - "giratina-altered": 0.683948705125611, - "cresselia": 1.1320340864101914, - "tornadus-incarnate": 1.0957827326771026, - "thundurus-incarnate": 1.308244662121833, - "reshiram": 0.8108394211135095, - "zekrom": 0.8288927523709969, - "landorus-incarnate": 0.5254693544310528, - "kyurem": 0.7949402868099174, - "xerneas": 0.39228137184253914, - "yveltal": 0.7235834866642848, - "zygarde-50": 0.4721270321011113, - "tapu-koko": 1.489513524958387, - "tapu-lele": 1.8616162951922113, - "tapu-bulu": 1.0880216211044416, - "tapu-fini": 0.6008767660944024, - "solgaleo": 0.8375366604035588, - "lunala": 0.7005316072614525, - "nihilego": 2.254630008098692, - "buzzwole": 1.0383134157435139, - "pheromosa": 1.5112080228678568, - "xurkitree": 0.9832699644423184, - "celesteela": 0.7410143185972394, - "kartana": 1.313764525196984, - "guzzlord": 1.2254162556928783, - "necrozma": 1.7382405109633314, - "stakataka": 0.8405904576888963, - "blacephalon": 2.1829581993085503 + "articuno": 1.5756782135541707, + "zapdos": 0.955344448984984, + "moltres": 1.133608130130638, + "mewtwo": 1.207500209024873, + "raikou": 2.3152411535325284, + "entei": 1.6714690287088478, + "suicune": 1.474561740160926, + "lugia": 1.1622525341552201, + "ho-oh": 1.633447144490294, + "latias": 1.5488375159429186, + "latios": 2.1247943349483815, + "kyogre": 0.4625391925301773, + "groudon": 0.38406131006441824, + "rayquaza": 0.6073718364593538, + "uxie": 2.0813229619538802, + "mesprit": 2.0400741480899103, + "azelf": 1.9247556020850882, + "dialga": 0.7272994799793825, + "palkia": 0.536846270074759, + "heatran": 0.9377831276095783, + "giratina-altered": 0.6844132549899429, + "cresselia": 1.1337750329487073, + "tornadus-incarnate": 1.0966870482166917, + "thundurus-incarnate": 1.309803568919691, + "reshiram": 0.8129590998197972, + "zekrom": 0.8309668440486767, + "landorus-incarnate": 0.5252623260308468, + "kyurem": 0.7964669009490621, + "xerneas": 0.39259452951159257, + "yveltal": 0.7246640661482977, + "zygarde-50": 0.47254771622318514, + "tapu-koko": 1.4922131057622896, + "tapu-lele": 1.8652716200738046, + "tapu-bulu": 1.089121537103762, + "tapu-fini": 0.6001665165052148, + "solgaleo": 0.8377737153249691, + "lunala": 0.7014585768544133, + "nihilego": 2.2594785720866755, + "buzzwole": 1.0374977208667402, + "pheromosa": 1.5116495140931216, + "xurkitree": 0.9853717849456005, + "celesteela": 0.7393554976359679, + "kartana": 1.313274882683766, + "guzzlord": 1.2286957811998342, + "necrozma": 1.7401520988377077, + "stakataka": 0.8407640642240923, + "blacephalon": 2.1893111634886675 }, "dusclops": { - "articuno": 0.7283489434721743, - "zapdos": 0.6200807014105651, - "moltres": 0.5368748558656308, - "mewtwo": 0.8713935047010397, - "raikou": 1.5829301138447467, - "entei": 1.1457772439974554, - "suicune": 1.2905498503941444, - "lugia": 0.9795447589445418, - "ho-oh": 0.6664295944001244, - "latias": 1.0963263991312782, - "latios": 1.4172139611870196, - "kyogre": 0.4197322913804225, - "groudon": 0.3492960051930274, - "rayquaza": 0.4000966664834425, - "uxie": 1.4943228513859792, - "mesprit": 1.535481008851519, - "azelf": 1.4217832094478204, - "dialga": 0.5830076062139298, - "palkia": 0.47309075411029466, - "heatran": 0.4350032051307771, - "giratina-altered": 0.736202220221496, - "cresselia": 0.7831700496282309, - "tornadus-incarnate": 0.7242235233340055, - "thundurus-incarnate": 0.8470415904006539, - "reshiram": 0.5208452935051229, - "zekrom": 0.6208011123959677, - "landorus-incarnate": 0.49967645341715644, - "kyurem": 0.5687868988080023, - "xerneas": 0.3520842751403084, - "yveltal": 0.41656336142100114, - "zygarde-50": 0.40100921222588826, - "tapu-koko": 1.0924844095106725, - "tapu-lele": 1.6799355782738934, - "tapu-bulu": 0.9564758626308096, - "tapu-fini": 0.6070594644011051, - "solgaleo": 0.8368464257989889, - "lunala": 0.8604835348188542, - "nihilego": 0.9748539927657547, - "buzzwole": 1.2643382311285125, - "pheromosa": 1.4303671799628237, - "xurkitree": 0.6802875263995736, - "celesteela": 0.6922930570703257, - "kartana": 1.5030982336097254, - "guzzlord": 0.7219428487028681, - "necrozma": 1.3656459908984768, - "stakataka": 0.5884929172286706, - "blacephalon": 1.571369667366695 + "articuno": 0.7276600706032085, + "zapdos": 0.6197946142500723, + "moltres": 0.5365375893484207, + "mewtwo": 0.8724200040494057, + "raikou": 1.5839136050493905, + "entei": 1.1451036252899565, + "suicune": 1.2906271063867487, + "lugia": 0.9803228465261311, + "ho-oh": 0.6659927637326295, + "latias": 1.0977681066592009, + "latios": 1.4199655703308869, + "kyogre": 0.41972096058286995, + "groudon": 0.3493859034174214, + "rayquaza": 0.3998068656387359, + "uxie": 1.4957490650742529, + "mesprit": 1.539487519941929, + "azelf": 1.425157549806785, + "dialga": 0.5830750898122927, + "palkia": 0.4731118534369956, + "heatran": 0.4346416842634685, + "giratina-altered": 0.7358545095741666, + "cresselia": 0.7842325775532373, + "tornadus-incarnate": 0.7237888712698752, + "thundurus-incarnate": 0.8470556618132985, + "reshiram": 0.5205775772437407, + "zekrom": 0.6208025161667969, + "landorus-incarnate": 0.49968741234084935, + "kyurem": 0.5683675320492485, + "xerneas": 0.35188633061574104, + "yveltal": 0.4153755128126103, + "zygarde-50": 0.4008910082792658, + "tapu-koko": 1.0922646273681944, + "tapu-lele": 1.6815171984183839, + "tapu-bulu": 0.9569525523637898, + "tapu-fini": 0.6067311784471954, + "solgaleo": 0.8378058030263293, + "lunala": 0.8612148795372985, + "nihilego": 0.9743453360484786, + "buzzwole": 1.2663121574214327, + "pheromosa": 1.431291621823444, + "xurkitree": 0.6797744849971935, + "celesteela": 0.6920625914383299, + "kartana": 1.5030740231278836, + "guzzlord": 0.7208595321576357, + "necrozma": 1.3672691988126493, + "stakataka": 0.5882170288282372, + "blacephalon": 1.5718504322316758 }, "absol": { - "articuno": 0.8409422259679757, - "zapdos": 0.7206905316375096, - "moltres": 0.5928274913085566, - "mewtwo": 1.2182158123965672, - "raikou": 1.7845073164040386, - "entei": 1.2995414733368615, - "suicune": 1.4996381687259879, - "lugia": 1.395112008931515, - "ho-oh": 0.8553891601363754, - "latias": 1.6304050587439676, - "latios": 1.9980901939911737, - "kyogre": 0.490279824075431, - "groudon": 0.37091156077039766, - "rayquaza": 0.6338012155923469, - "uxie": 2.1167649881133057, - "mesprit": 1.8200339471350802, - "azelf": 1.5887595506643497, - "dialga": 0.6290287956405161, - "palkia": 0.5492280081659676, - "heatran": 0.5080369327497661, - "giratina-altered": 1.082206842304502, - "cresselia": 1.1089838699646313, - "tornadus-incarnate": 0.8426089960476164, - "thundurus-incarnate": 0.9357345485192392, - "reshiram": 0.6504078151187489, - "zekrom": 0.6775739112303537, - "landorus-incarnate": 0.7321161537868639, - "kyurem": 0.6090748301236513, - "xerneas": 0.2887551108005489, - "yveltal": 0.5801013210393878, - "zygarde-50": 0.5967106544743959, - "tapu-koko": 1.0291279971981306, - "tapu-lele": 1.8323658407175936, - "tapu-bulu": 0.9492506210165979, - "tapu-fini": 0.589539010874284, - "solgaleo": 1.070768781340748, - "lunala": 1.349802389358132, - "nihilego": 1.156259095675386, - "buzzwole": 1.1229077421645917, - "pheromosa": 1.368179187597088, - "xurkitree": 0.8074029597698491, - "celesteela": 0.8167382312042695, - "kartana": 2.8187197546170695, - "guzzlord": 0.8106813605173824, - "necrozma": 1.8541180554988994, - "stakataka": 0.5715690486556733, - "blacephalon": 2.5379055061164797 + "articuno": 0.8414304336746692, + "zapdos": 0.7216852427857015, + "moltres": 0.5929663707174055, + "mewtwo": 1.2235215332754334, + "raikou": 1.7844728769570288, + "entei": 1.2996426369738667, + "suicune": 1.5001416835074872, + "lugia": 1.398420676883572, + "ho-oh": 0.8562625034644515, + "latias": 1.6357869637326452, + "latios": 2.0027411055636355, + "kyogre": 0.49016526892243284, + "groudon": 0.37095742250402763, + "rayquaza": 0.634506661554435, + "uxie": 2.1255670317283446, + "mesprit": 1.8228248184092073, + "azelf": 1.5910690764030477, + "dialga": 0.629213005951349, + "palkia": 0.5491453181557654, + "heatran": 0.5073606515464512, + "giratina-altered": 1.0843347811270028, + "cresselia": 1.1125985004699914, + "tornadus-incarnate": 0.8436107332182939, + "thundurus-incarnate": 0.9366602064217342, + "reshiram": 0.6508549512040781, + "zekrom": 0.6777544668518976, + "landorus-incarnate": 0.7329390385673751, + "kyurem": 0.6092489704469215, + "xerneas": 0.28791112168709065, + "yveltal": 0.5810691235220453, + "zygarde-50": 0.5974247647161803, + "tapu-koko": 1.0290372682642, + "tapu-lele": 1.8370285733033418, + "tapu-bulu": 0.9485852601771265, + "tapu-fini": 0.5884286890299781, + "solgaleo": 1.0732794395795233, + "lunala": 1.3516636323083469, + "nihilego": 1.1555041056441508, + "buzzwole": 1.1191773580031414, + "pheromosa": 1.3646058252693725, + "xurkitree": 0.8077706799049723, + "celesteela": 0.8179594101581804, + "kartana": 2.8226933814266935, + "guzzlord": 0.8110799700973127, + "necrozma": 1.8609411531328597, + "stakataka": 0.5709801748667398, + "blacephalon": 2.5418209824148685 }, "glalie": { - "articuno": 0.9176131071575042, - "zapdos": 0.8573104189310509, - "moltres": 0.47320747801833773, - "mewtwo": 0.8794254480405901, - "raikou": 1.6177468905719752, - "entei": 1.0131751970187592, - "suicune": 1.2121016322096172, - "lugia": 1.0823044970305922, - "ho-oh": 0.6609236596877278, - "latias": 1.2806200904057996, - "latios": 1.548590311801394, - "kyogre": 0.42013342046058044, - "groudon": 0.3795604634822374, - "rayquaza": 0.774510825387549, - "uxie": 1.4075551805261797, - "mesprit": 1.3463071267259399, - "azelf": 1.2820307230135977, - "dialga": 0.5184458521633647, - "palkia": 0.4941282389379137, - "heatran": 0.3585395501265264, - "giratina-altered": 0.8325491264506379, - "cresselia": 0.7947901836623023, - "tornadus-incarnate": 0.9598997343523081, - "thundurus-incarnate": 1.1311821126659134, - "reshiram": 0.5236742556073205, - "zekrom": 0.7668126930912692, - "landorus-incarnate": 0.8511872548380812, - "kyurem": 0.6463575218396207, - "xerneas": 0.40879766293844705, - "yveltal": 0.6541644931537979, - "zygarde-50": 0.6796115365966409, - "tapu-koko": 1.0908809495685212, - "tapu-lele": 1.68917278190453, - "tapu-bulu": 1.096507767403365, - "tapu-fini": 0.5886715951614557, - "solgaleo": 0.6855480364234754, - "lunala": 0.9004914034288134, - "nihilego": 1.1274912140731939, - "buzzwole": 0.9136340348407792, - "pheromosa": 1.3296992192537127, - "xurkitree": 0.7290966088795978, - "celesteela": 0.6704767175720763, - "kartana": 1.1571982387395208, - "guzzlord": 0.912468353070119, - "necrozma": 1.2225275595197118, - "stakataka": 0.46670804064755134, - "blacephalon": 1.5858274469731606 + "articuno": 0.9181628422181511, + "zapdos": 0.8577887752847797, + "moltres": 0.4719771085978307, + "mewtwo": 0.8795770866804313, + "raikou": 1.6163639997613917, + "entei": 1.0100849236097613, + "suicune": 1.2101435576510267, + "lugia": 1.082767574075437, + "ho-oh": 0.6593155600013785, + "latias": 1.2818919418151937, + "latios": 1.5491895775181168, + "kyogre": 0.4196127143899201, + "groudon": 0.3791505293869086, + "rayquaza": 0.7754394370155822, + "uxie": 1.4072693798554372, + "mesprit": 1.3458916441851436, + "azelf": 1.2816650140695818, + "dialga": 0.5170997164725186, + "palkia": 0.4935853191781381, + "heatran": 0.3573396668275052, + "giratina-altered": 0.8331740939493226, + "cresselia": 0.7949835018423563, + "tornadus-incarnate": 0.9599798866015168, + "thundurus-incarnate": 1.1314883450388677, + "reshiram": 0.5225299418086242, + "zekrom": 0.7667470431643358, + "landorus-incarnate": 0.8516757638393366, + "kyurem": 0.6463731268626762, + "xerneas": 0.40844608220698564, + "yveltal": 0.6541902351546587, + "zygarde-50": 0.6804138668797813, + "tapu-koko": 1.0895466826710027, + "tapu-lele": 1.688506216845381, + "tapu-bulu": 1.0954796353510818, + "tapu-fini": 0.5876719613632192, + "solgaleo": 0.6837935906708723, + "lunala": 0.9015332939193323, + "nihilego": 1.1256724308574222, + "buzzwole": 0.9106340143413192, + "pheromosa": 1.326575482139495, + "xurkitree": 0.728453832260522, + "celesteela": 0.6688264500524108, + "kartana": 1.154727177593867, + "guzzlord": 0.912159501486866, + "necrozma": 1.2213527377966824, + "stakataka": 0.4649206473168317, + "blacephalon": 1.5835783221995072 }, "sealeo": { - "articuno": 0.8703447355791231, - "zapdos": 0.7872464319801644, - "moltres": 0.7615091587285632, - "mewtwo": 0.8235645972388471, - "raikou": 1.4159465040465087, - "entei": 1.5702470260906405, - "suicune": 1.1843329501326934, - "lugia": 1.0706159580862074, - "ho-oh": 0.8831859623566557, - "latias": 1.2276523511898336, - "latios": 1.4372431362120275, - "kyogre": 0.3994644971885951, - "groudon": 0.49015515164756934, - "rayquaza": 0.8328644693978302, - "uxie": 1.2652074606185053, - "mesprit": 1.209496402075759, - "azelf": 1.150973742500518, - "dialga": 0.605895847608988, - "palkia": 0.5187470925997972, - "heatran": 0.6456953530519018, - "giratina-altered": 0.8778909996585915, - "cresselia": 0.712068018319203, - "tornadus-incarnate": 1.0710242826798326, - "thundurus-incarnate": 1.0006305605285737, - "reshiram": 0.5553025329499568, - "zekrom": 0.793650389337532, - "landorus-incarnate": 0.9701797866840685, - "kyurem": 0.6333789033908988, - "xerneas": 0.3706409782901941, - "yveltal": 0.679185587427904, - "zygarde-50": 0.8252542429622858, - "tapu-koko": 1.0271887169430716, - "tapu-lele": 1.4406351409850102, - "tapu-bulu": 1.13930081033296, - "tapu-fini": 0.5953525050693674, - "solgaleo": 0.6856530500363238, - "lunala": 0.563037575399988, - "nihilego": 1.151445977525291, - "buzzwole": 1.1596138829818479, - "pheromosa": 1.3653091354642992, - "xurkitree": 0.648147499977152, - "celesteela": 0.7385802074483412, - "kartana": 1.523843267119605, - "guzzlord": 0.9578612701100185, - "necrozma": 1.10817003658255, - "stakataka": 0.7406606442947645, - "blacephalon": 1.8205256431517396 + "articuno": 0.8720306180823136, + "zapdos": 0.787108637348249, + "moltres": 0.763676626097983, + "mewtwo": 0.8238651948475177, + "raikou": 1.4123085419887635, + "entei": 1.5731461389527635, + "suicune": 1.1834168581475586, + "lugia": 1.071004352444646, + "ho-oh": 0.8847750788737039, + "latias": 1.2279853314422025, + "latios": 1.4363228752562631, + "kyogre": 0.39881577512662214, + "groudon": 0.49115957636774016, + "rayquaza": 0.8341985501631592, + "uxie": 1.264793895173935, + "mesprit": 1.2089733210677989, + "azelf": 1.1505202035940818, + "dialga": 0.6054856083575251, + "palkia": 0.5183161373954239, + "heatran": 0.6470457135656753, + "giratina-altered": 0.8780988066924584, + "cresselia": 0.7121599196801813, + "tornadus-incarnate": 1.0731287417708604, + "thundurus-incarnate": 0.9996563913432572, + "reshiram": 0.5553540663851423, + "zekrom": 0.7925325605945465, + "landorus-incarnate": 0.9723736201059894, + "kyurem": 0.6338908314557112, + "xerneas": 0.37055258805975294, + "yveltal": 0.6798916452272619, + "zygarde-50": 0.8272004556994095, + "tapu-koko": 1.0258047299462019, + "tapu-lele": 1.4400526646737464, + "tapu-bulu": 1.1372728167463118, + "tapu-fini": 0.5952202714986696, + "solgaleo": 0.685440261814513, + "lunala": 0.5627340471415256, + "nihilego": 1.150008816212222, + "buzzwole": 1.158719128061656, + "pheromosa": 1.3636574765401814, + "xurkitree": 0.6464327665933134, + "celesteela": 0.7387971744332265, + "kartana": 1.5200927325518587, + "guzzlord": 0.9581160333284376, + "necrozma": 1.1066940664653695, + "stakataka": 0.7406384498060985, + "blacephalon": 1.824055651125641 }, "relicanth": { - "articuno": 2.052319812632631, - "zapdos": 1.0149411551745648, - "moltres": 1.5703267061545898, - "mewtwo": 0.9038757584133419, - "raikou": 1.8327662006397691, - "entei": 2.063122909797668, - "suicune": 1.5891615685672726, - "lugia": 1.406691655989137, - "ho-oh": 2.1585878617170864, - "latias": 1.1714145185690716, - "latios": 1.41786702239439, - "kyogre": 0.5281909985160609, - "groudon": 0.4396979048367406, - "rayquaza": 0.7209452244113372, - "uxie": 1.4618011501621095, - "mesprit": 1.4314913850095032, - "azelf": 1.3542502403437802, - "dialga": 0.5570350205588763, - "palkia": 0.6129127804390327, - "heatran": 0.801577097345362, - "giratina-altered": 0.7965967830660801, - "cresselia": 0.8213956759517131, - "tornadus-incarnate": 1.4219163703118878, - "thundurus-incarnate": 1.3398988113579011, - "reshiram": 0.9979228985866475, - "zekrom": 0.7198188589405544, - "landorus-incarnate": 0.6966596479621596, - "kyurem": 0.955603238065315, - "xerneas": 0.4211831315727985, - "yveltal": 0.8631182084472034, - "zygarde-50": 0.4159509031636557, - "tapu-koko": 1.1672585592057005, - "tapu-lele": 1.8596684437263638, - "tapu-bulu": 0.9497234320353558, - "tapu-fini": 0.7640155249424768, - "solgaleo": 0.772373342780752, - "lunala": 0.6844097640153084, - "nihilego": 1.675453027268858, - "buzzwole": 1.107026837288919, - "pheromosa": 1.6629477794466676, - "xurkitree": 0.7396419106624106, - "celesteela": 0.8725077203520384, - "kartana": 1.0131314200897832, - "guzzlord": 0.8963470608510891, - "necrozma": 1.275718438212284, - "stakataka": 0.759250785627896, - "blacephalon": 2.7863928898916512 + "articuno": 2.06248197202442, + "zapdos": 1.017139926434135, + "moltres": 1.5807611803557546, + "mewtwo": 0.9055333466597315, + "raikou": 1.8341335762101876, + "entei": 2.0749889506513117, + "suicune": 1.5915770019163695, + "lugia": 1.4105486545527288, + "ho-oh": 2.17274266836304, + "latias": 1.173663899532968, + "latios": 1.4196350996254248, + "kyogre": 0.5285923567252004, + "groudon": 0.44013153421065165, + "rayquaza": 0.7236307344913263, + "uxie": 1.4636102529594337, + "mesprit": 1.4338549170091626, + "azelf": 1.356677989693774, + "dialga": 0.5576196920568193, + "palkia": 0.6143886704417054, + "heatran": 0.8053972153892133, + "giratina-altered": 0.7987130551842029, + "cresselia": 0.8230581442064157, + "tornadus-incarnate": 1.4284511798438015, + "thundurus-incarnate": 1.3412596275818407, + "reshiram": 1.0027017216458134, + "zekrom": 0.7209777839829148, + "landorus-incarnate": 0.6978386842809587, + "kyurem": 0.9588305807824911, + "xerneas": 0.42132627445396287, + "yveltal": 0.8661916899497669, + "zygarde-50": 0.41623166676389844, + "tapu-koko": 1.1671572665748635, + "tapu-lele": 1.8629759679814735, + "tapu-bulu": 0.947622627952269, + "tapu-fini": 0.764278679361126, + "solgaleo": 0.7737416814165704, + "lunala": 0.6853471078148975, + "nihilego": 1.6815634030541222, + "buzzwole": 1.1075084439701532, + "pheromosa": 1.6658457891096208, + "xurkitree": 0.7386763155422243, + "celesteela": 0.8744591695403279, + "kartana": 1.0078150022132477, + "guzzlord": 0.8986514159626606, + "necrozma": 1.2766690452777874, + "stakataka": 0.7606300981907828, + "blacephalon": 2.8042650019106383 }, "metang": { - "articuno": 1.0998529510604353, - "zapdos": 0.6633188554051934, - "moltres": 0.5086538879253647, - "mewtwo": 0.8385241466432407, - "raikou": 1.6494785393333569, - "entei": 1.0506579943823309, - "suicune": 1.5243132829958905, - "lugia": 1.0454546540304697, - "ho-oh": 0.7896555889006409, - "latias": 1.0547273847034502, - "latios": 1.362018034333048, - "kyogre": 0.500157889181823, - "groudon": 0.27999923978713037, - "rayquaza": 0.4426636967590839, - "uxie": 1.3206878349556344, - "mesprit": 1.331310830534064, - "azelf": 1.270522301727492, - "dialga": 0.532653654383893, - "palkia": 0.5104964467169746, - "heatran": 0.34273184264403966, - "giratina-altered": 0.635683525348836, - "cresselia": 0.764606482857699, - "tornadus-incarnate": 0.8447111295225133, - "thundurus-incarnate": 0.9182084533315248, - "reshiram": 0.5285049678971802, - "zekrom": 0.6304636396366781, - "landorus-incarnate": 0.4634265741067415, - "kyurem": 0.7636403592737842, - "xerneas": 0.5367813172744544, - "yveltal": 0.5155993370324972, - "zygarde-50": 0.3472560558336437, - "tapu-koko": 1.1290354330069121, - "tapu-lele": 2.3198359976300544, - "tapu-bulu": 1.232250035522326, - "tapu-fini": 0.7269804270157345, - "solgaleo": 0.6507576427996886, - "lunala": 0.5574629588872868, - "nihilego": 1.6154160311449537, - "buzzwole": 1.1529561873321752, - "pheromosa": 1.7325982894701486, - "xurkitree": 0.6982185356653696, - "celesteela": 0.7868352490900247, - "kartana": 1.1469598780194121, - "guzzlord": 0.6850123433815152, - "necrozma": 1.2467340446475172, - "stakataka": 0.5563210186886147, - "blacephalon": 1.292918403383986 + "articuno": 1.1033025636988107, + "zapdos": 0.6637603724662392, + "moltres": 0.5078561929053356, + "mewtwo": 0.8401403064251085, + "raikou": 1.6491337195989657, + "entei": 1.048219059037195, + "suicune": 1.5260681220128145, + "lugia": 1.0476041754806666, + "ho-oh": 0.789591324135208, + "latias": 1.0558771988406277, + "latios": 1.3636774328783376, + "kyogre": 0.5004939064966831, + "groudon": 0.2792708513525368, + "rayquaza": 0.44322221297728903, + "uxie": 1.3209096941862342, + "mesprit": 1.3332176851528805, + "azelf": 1.2724101983493623, + "dialga": 0.5329276023013773, + "palkia": 0.5108429241262771, + "heatran": 0.34181189446163485, + "giratina-altered": 0.6350802364840192, + "cresselia": 0.7662322044970733, + "tornadus-incarnate": 0.8459126444822742, + "thundurus-incarnate": 0.918626241351334, + "reshiram": 0.5275149969686286, + "zekrom": 0.6303026274835406, + "landorus-incarnate": 0.4626397657869229, + "kyurem": 0.7642461570905476, + "xerneas": 0.5383812997915675, + "yveltal": 0.5150126726019076, + "zygarde-50": 0.34655459187147997, + "tapu-koko": 1.129544066720261, + "tapu-lele": 2.3285274783604826, + "tapu-bulu": 1.2344505544957356, + "tapu-fini": 0.7280183684491985, + "solgaleo": 0.6509153398373606, + "lunala": 0.5560414713299369, + "nihilego": 1.6231391210548107, + "buzzwole": 1.1527851873884827, + "pheromosa": 1.7335764780419283, + "xurkitree": 0.6974896165521085, + "celesteela": 0.7876846825572335, + "kartana": 1.1461328712456162, + "guzzlord": 0.6834056195091489, + "necrozma": 1.2484255096709944, + "stakataka": 0.556165051700612, + "blacephalon": 1.290368969807447 }, "luxray": { - "articuno": 0.9989310966009821, - "zapdos": 0.7537130738025806, - "moltres": 0.7865407898034289, - "mewtwo": 0.7783916717622359, - "raikou": 1.6968088177157084, - "entei": 1.2688717830632879, - "suicune": 1.8089335259470722, - "lugia": 1.1458772571474585, - "ho-oh": 0.8543660607571664, - "latias": 0.9790246768272566, - "latios": 1.2251277657454303, - "kyogre": 0.5505855673347111, - "groudon": 0.27919989485914243, - "rayquaza": 0.4571357825706651, - "uxie": 1.298976195138426, - "mesprit": 1.2424182352485, - "azelf": 1.1829194341610263, - "dialga": 0.5376874683927316, - "palkia": 0.5078706523895827, - "heatran": 0.4962226294955482, - "giratina-altered": 0.570901872616002, - "cresselia": 0.7007635080503941, - "tornadus-incarnate": 1.0798236679683118, - "thundurus-incarnate": 0.9419298193452129, - "reshiram": 0.5623362858706742, - "zekrom": 0.6287958510220463, - "landorus-incarnate": 0.4383012211852939, - "kyurem": 0.5605405603477297, - "xerneas": 0.3879039332690998, - "yveltal": 0.7172950479532727, - "zygarde-50": 0.330138464048395, - "tapu-koko": 1.1845378194566731, - "tapu-lele": 1.5016789690028078, - "tapu-bulu": 0.9021538074093087, - "tapu-fini": 0.8823987415644756, - "solgaleo": 0.7725800859353715, - "lunala": 0.5773986120876404, - "nihilego": 0.874629332079353, - "buzzwole": 1.2799015722326066, - "pheromosa": 1.4518574117255676, - "xurkitree": 0.7793389687097236, - "celesteela": 1.0042078193978956, - "kartana": 1.3739901072855907, - "guzzlord": 0.7013724133533199, - "necrozma": 1.2362274322513414, - "stakataka": 0.6735967635535569, - "blacephalon": 1.3928333753919273 + "articuno": 0.9998475427208612, + "zapdos": 0.7550486881514937, + "moltres": 0.7876954372188975, + "mewtwo": 0.7779212015727139, + "raikou": 1.6968229301340019, + "entei": 1.2687033764264855, + "suicune": 1.8101752634164292, + "lugia": 1.1471323802452016, + "ho-oh": 0.8551099230862511, + "latias": 0.9778878134849434, + "latios": 1.2237552544551535, + "kyogre": 0.5510767843005558, + "groudon": 0.2782305736521604, + "rayquaza": 0.4572036179498619, + "uxie": 1.2981649687841603, + "mesprit": 1.241525013537438, + "azelf": 1.182117181826427, + "dialga": 0.5373843828529403, + "palkia": 0.5077333795350097, + "heatran": 0.4962890399460915, + "giratina-altered": 0.5696588096679098, + "cresselia": 0.7004373264955732, + "tornadus-incarnate": 1.081933681534505, + "thundurus-incarnate": 0.9426550826874593, + "reshiram": 0.561932548831491, + "zekrom": 0.6284969845714571, + "landorus-incarnate": 0.43692048858010984, + "kyurem": 0.5598227841150905, + "xerneas": 0.38786687370368267, + "yveltal": 0.7182014830483026, + "zygarde-50": 0.3289540105193655, + "tapu-koko": 1.1853234677867295, + "tapu-lele": 1.501037973499002, + "tapu-bulu": 0.9011528819886355, + "tapu-fini": 0.8833267655988829, + "solgaleo": 0.7729680567651743, + "lunala": 0.5764289495488284, + "nihilego": 0.8731517077492217, + "buzzwole": 1.2795583653108513, + "pheromosa": 1.4511024333459863, + "xurkitree": 0.7795471610781235, + "celesteela": 1.005508221230132, + "kartana": 1.3724556856120167, + "guzzlord": 0.70013670965278, + "necrozma": 1.2359236205035884, + "stakataka": 0.6733782124254615, + "blacephalon": 1.3911169457810995 }, "vespiquen": { - "articuno": 0.6737938918588581, - "zapdos": 0.5092178028619829, - "moltres": 0.4711859161878521, - "mewtwo": 0.9592519111519245, - "raikou": 1.6087230277258127, - "entei": 1.0772094612457686, - "suicune": 1.3961494673442905, - "lugia": 0.8511974385771355, - "ho-oh": 0.63342859758642, - "latias": 1.4320838869788455, - "latios": 1.8231272631036262, - "kyogre": 0.4863618046938644, - "groudon": 0.3954267045590171, - "rayquaza": 0.4071139818074661, - "uxie": 1.7364198697060922, - "mesprit": 1.6629550747310695, - "azelf": 1.587746649226549, - "dialga": 0.5486983159849063, - "palkia": 0.5204504056036046, - "heatran": 0.4173287665478594, - "giratina-altered": 0.5960943835220558, - "cresselia": 0.9229617834260013, - "tornadus-incarnate": 0.6605699457553831, - "thundurus-incarnate": 0.6998899356964761, - "reshiram": 0.5195328865306741, - "zekrom": 0.6014981647287295, - "landorus-incarnate": 0.5097435197572178, - "kyurem": 0.5578286334599777, - "xerneas": 0.37021477593376273, - "yveltal": 0.5337871577149382, - "zygarde-50": 0.47642588902134986, - "tapu-koko": 0.860157457499792, - "tapu-lele": 1.635232844037675, - "tapu-bulu": 1.2229398912915346, - "tapu-fini": 0.6445221498087187, - "solgaleo": 0.7011029517452732, - "lunala": 0.6163435197664429, - "nihilego": 0.8773586010679801, - "buzzwole": 1.5837959574258718, - "pheromosa": 2.4635692268000566, - "xurkitree": 0.7121173809214905, - "celesteela": 0.6433580634999698, - "kartana": 1.275069970939844, - "guzzlord": 1.0308513549424747, - "necrozma": 1.370581279005528, - "stakataka": 0.5456213951696294, - "blacephalon": 1.332958335042001 + "articuno": 0.6722274169215178, + "zapdos": 0.5076874045886015, + "moltres": 0.4699493296704452, + "mewtwo": 0.959968559833794, + "raikou": 1.6064685919391628, + "entei": 1.0757813628476618, + "suicune": 1.3971725352158606, + "lugia": 0.8498663863526221, + "ho-oh": 0.6318642971213148, + "latias": 1.434636639451628, + "latios": 1.8271948099299564, + "kyogre": 0.48670361279123175, + "groudon": 0.39638891018626393, + "rayquaza": 0.40658857210798544, + "uxie": 1.7387510086918043, + "mesprit": 1.6650789549172138, + "azelf": 1.5898510214748711, + "dialga": 0.5483171271935958, + "palkia": 0.5204531273422861, + "heatran": 0.4169329902276403, + "giratina-altered": 0.5951773743123306, + "cresselia": 0.924138860343251, + "tornadus-incarnate": 0.6591169898227488, + "thundurus-incarnate": 0.6981322197632236, + "reshiram": 0.5190439637311732, + "zekrom": 0.6005242783401714, + "landorus-incarnate": 0.510175586167793, + "kyurem": 0.5575505490212969, + "xerneas": 0.37034839156609656, + "yveltal": 0.5338888767058583, + "zygarde-50": 0.4774740751826154, + "tapu-koko": 0.8575306729646757, + "tapu-lele": 1.6366188420296481, + "tapu-bulu": 1.2271638378602951, + "tapu-fini": 0.6446561694829096, + "solgaleo": 0.701132153303713, + "lunala": 0.6164342363883, + "nihilego": 0.8745058372797136, + "buzzwole": 1.5882367616509763, + "pheromosa": 2.4720917711980723, + "xurkitree": 0.7111997263917316, + "celesteela": 0.642746838663178, + "kartana": 1.2770305906422035, + "guzzlord": 1.0335198385661761, + "necrozma": 1.3694110487750404, + "stakataka": 0.544618775537161, + "blacephalon": 1.3305719473259572 }, "cherrim": { - "articuno": 0.5668085341717342, - "zapdos": 0.5552134342922102, - "moltres": 0.40598725467991637, - "mewtwo": 0.694825837504689, - "raikou": 1.6360878731589767, - "entei": 0.9586115999157918, - "suicune": 1.8340861846943093, - "lugia": 0.7278478968670048, - "ho-oh": 0.5209326924412769, - "latias": 0.8445514563559883, - "latios": 1.0134712042152838, - "kyogre": 0.5946063905454644, - "groudon": 0.5142724705901279, - "rayquaza": 0.35389623477617194, - "uxie": 1.2708829805765274, - "mesprit": 1.2151503981951537, - "azelf": 1.1520389436079914, - "dialga": 0.4446756273092442, - "palkia": 0.5293463208839169, - "heatran": 0.29907844096314695, - "giratina-altered": 0.5556830096068408, - "cresselia": 0.6530455800939413, - "tornadus-incarnate": 0.5531701584351636, - "thundurus-incarnate": 0.7158503443546049, - "reshiram": 0.43694530284998323, - "zekrom": 0.5689584160549914, - "landorus-incarnate": 0.5646610680264598, - "kyurem": 0.45193943048003715, - "xerneas": 0.3825023640866393, - "yveltal": 0.4263292150235002, - "zygarde-50": 0.46772353555761403, - "tapu-koko": 1.190175043866121, - "tapu-lele": 1.390070031426974, - "tapu-bulu": 0.8228982161854399, - "tapu-fini": 0.9324087840464285, - "solgaleo": 0.5758419615951582, - "lunala": 0.565878222452282, - "nihilego": 0.7418363781668711, - "buzzwole": 0.9191698172301265, - "pheromosa": 1.141180156511551, - "xurkitree": 0.817121227261355, - "celesteela": 0.5746370640043352, - "kartana": 1.1684502124470746, - "guzzlord": 0.6317479573941611, - "necrozma": 1.206416577820982, - "stakataka": 0.6394157858504521, - "blacephalon": 1.0612181323081988 + "articuno": 0.5639646775590301, + "zapdos": 0.5535932457792349, + "moltres": 0.40404373756012335, + "mewtwo": 0.6932356197671288, + "raikou": 1.6350189474038308, + "entei": 0.9548687652282081, + "suicune": 1.8352849576090042, + "lugia": 0.7255443423735113, + "ho-oh": 0.5183794220724105, + "latias": 0.8425977069438568, + "latios": 1.0108152728170365, + "kyogre": 0.5951181096623056, + "groudon": 0.5147096892760316, + "rayquaza": 0.3524456910049056, + "uxie": 1.268932336403991, + "mesprit": 1.2131497141487715, + "azelf": 1.1500837068520207, + "dialga": 0.4433371687502622, + "palkia": 0.5289944438231744, + "heatran": 0.2977520917140243, + "giratina-altered": 0.5540962935369969, + "cresselia": 0.6517890998544779, + "tornadus-incarnate": 0.5506107189168153, + "thundurus-incarnate": 0.7144719893271648, + "reshiram": 0.43511827501158684, + "zekrom": 0.568234596531525, + "landorus-incarnate": 0.5647050452177371, + "kyurem": 0.45009083406567263, + "xerneas": 0.3821683178731349, + "yveltal": 0.42500153339892655, + "zygarde-50": 0.4677744130861035, + "tapu-koko": 1.1886040305981467, + "tapu-lele": 1.3874848070752535, + "tapu-bulu": 0.8213019306950785, + "tapu-fini": 0.9336621475893029, + "solgaleo": 0.5742127534896465, + "lunala": 0.564652029723823, + "nihilego": 0.738672100673949, + "buzzwole": 0.9154231347806177, + "pheromosa": 1.136459625591198, + "xurkitree": 0.8173963290865771, + "celesteela": 0.5732889811334616, + "kartana": 1.167197499932671, + "guzzlord": 0.6302604179990101, + "necrozma": 1.2050131007713274, + "stakataka": 0.6383261272927172, + "blacephalon": 1.0562620248416072 }, "gastrodon": { - "articuno": 1.1322537234908228, - "zapdos": 0.8103155983196575, - "moltres": 0.8683278296585158, - "mewtwo": 0.8366399645854811, - "raikou": 1.9194840694421842, - "entei": 1.6669248457315589, - "suicune": 1.2505422204733905, - "lugia": 0.9781954053078616, - "ho-oh": 1.1786194364156555, - "latias": 1.133083556837201, - "latios": 1.4092608869344119, - "kyogre": 0.4533101066415063, - "groudon": 0.4367804255390755, - "rayquaza": 0.4637827085115438, - "uxie": 1.4080031787885905, - "mesprit": 1.347052679159432, - "azelf": 1.2802901982831094, - "dialga": 0.5312637058002767, - "palkia": 0.49220571379987077, - "heatran": 0.7420677236185482, - "giratina-altered": 0.5989460830541278, - "cresselia": 0.7673578970633528, - "tornadus-incarnate": 0.8918465804392759, - "thundurus-incarnate": 1.1334883369092494, - "reshiram": 0.6543650022105743, - "zekrom": 0.6313536133683847, - "landorus-incarnate": 0.7022984247556945, - "kyurem": 0.6243540757528288, - "xerneas": 0.3823372919659942, - "yveltal": 0.564752158218432, - "zygarde-50": 0.41580551082005135, - "tapu-koko": 1.3204440464900724, - "tapu-lele": 1.6271882714296222, - "tapu-bulu": 0.7044102671872756, - "tapu-fini": 0.6350527334631252, - "solgaleo": 0.7399546783838082, - "lunala": 0.6209678989699975, - "nihilego": 1.634885213290302, - "buzzwole": 1.0157156607641855, - "pheromosa": 1.4685055415215928, - "xurkitree": 0.8418404097742297, - "celesteela": 0.8063379799635007, - "kartana": 0.8906498297413094, - "guzzlord": 0.801497133895374, - "necrozma": 1.3138581467585002, - "stakataka": 0.7151737318380078, - "blacephalon": 2.242762937874172 + "articuno": 1.1348849314795253, + "zapdos": 0.8131425360239628, + "moltres": 0.8720430705577724, + "mewtwo": 0.8379103833165886, + "raikou": 1.9263141439650002, + "entei": 1.6718099520133098, + "suicune": 1.2510160181914713, + "lugia": 0.9803011508060993, + "ho-oh": 1.1844806973194353, + "latias": 1.1347827517387974, + "latios": 1.4113942814501863, + "kyogre": 0.4540699063764867, + "groudon": 0.43733972566199375, + "rayquaza": 0.46407720954243337, + "uxie": 1.4103793130040572, + "mesprit": 1.3492324652463181, + "azelf": 1.282281463715852, + "dialga": 0.5315086541571057, + "palkia": 0.4925219959914472, + "heatran": 0.7444482072652624, + "giratina-altered": 0.5987152904951074, + "cresselia": 0.7687317680015487, + "tornadus-incarnate": 0.8939133592410798, + "thundurus-incarnate": 1.1384760971071193, + "reshiram": 0.6563223074229376, + "zekrom": 0.6326870755318073, + "landorus-incarnate": 0.7036937023418817, + "kyurem": 0.6249710073460746, + "xerneas": 0.38237123295497405, + "yveltal": 0.5657719063354238, + "zygarde-50": 0.4159757065201659, + "tapu-koko": 1.3240633451078399, + "tapu-lele": 1.6299610744878148, + "tapu-bulu": 0.7012592430910665, + "tapu-fini": 0.6355611564916706, + "solgaleo": 0.7409896458739256, + "lunala": 0.6212486325245836, + "nihilego": 1.640385366832203, + "buzzwole": 1.0148584066857314, + "pheromosa": 1.4693257975914344, + "xurkitree": 0.8433415471957743, + "celesteela": 0.807922711755455, + "kartana": 0.8832913522253549, + "guzzlord": 0.8020763402547781, + "necrozma": 1.3167509368956196, + "stakataka": 0.7156454072390945, + "blacephalon": 2.2498692231785085 }, "drifblim": { - "articuno": 0.7816090190780935, - "zapdos": 0.5627107738106498, - "moltres": 0.6839370870488211, - "mewtwo": 0.6648323014927073, - "raikou": 1.4266493782891554, - "entei": 1.1471378868846343, - "suicune": 1.63063555710298, - "lugia": 0.9778011891840477, - "ho-oh": 0.7387622044421821, - "latias": 0.7866552348718638, - "latios": 1.0214691694561506, - "kyogre": 0.4853970327476614, - "groudon": 0.4187693527275297, - "rayquaza": 0.39900460885956174, - "uxie": 1.2333549839905564, - "mesprit": 1.2722420747356233, - "azelf": 1.1790132974505672, - "dialga": 0.4823456290233861, - "palkia": 0.4662860696050172, - "heatran": 0.4387832991799063, - "giratina-altered": 0.5655314429187766, - "cresselia": 0.6192727814945926, - "tornadus-incarnate": 0.8820367151489984, - "thundurus-incarnate": 0.7669508535804204, - "reshiram": 0.5274813064724888, - "zekrom": 0.5607938869051178, - "landorus-incarnate": 0.5525459398907597, - "kyurem": 0.5275097008697116, - "xerneas": 0.3603296497798886, - "yveltal": 0.5506049215301373, - "zygarde-50": 0.46012345160883095, - "tapu-koko": 0.988149814463042, - "tapu-lele": 1.3167846866734942, - "tapu-bulu": 1.018028354638635, - "tapu-fini": 0.7748967637504156, - "solgaleo": 0.65707654813208, - "lunala": 0.5329853850933338, - "nihilego": 0.975683978718197, - "buzzwole": 1.7280505224339402, - "pheromosa": 1.8228692616967068, - "xurkitree": 0.6136543618755194, - "celesteela": 0.9786226401928206, - "kartana": 1.3188652401940208, - "guzzlord": 0.5714184967089517, - "necrozma": 1.0499295081165747, - "stakataka": 0.5344927555890089, - "blacephalon": 1.221598613055265 + "articuno": 0.7802220490655812, + "zapdos": 0.5616827511551642, + "moltres": 0.6845276370508049, + "mewtwo": 0.6635195070427502, + "raikou": 1.4229237842876863, + "entei": 1.1465247028769134, + "suicune": 1.6322180243116966, + "lugia": 0.9772713382653514, + "ho-oh": 0.738395047014021, + "latias": 0.7847820944512203, + "latios": 1.019733648703808, + "kyogre": 0.4853155477331076, + "groudon": 0.41956542921386786, + "rayquaza": 0.39870585754113774, + "uxie": 1.2316442463612256, + "mesprit": 1.2725976502251588, + "azelf": 1.1790772271546088, + "dialga": 0.4815388910573911, + "palkia": 0.46588216552513173, + "heatran": 0.4382418759763307, + "giratina-altered": 0.563781693830039, + "cresselia": 0.6182507821640609, + "tornadus-incarnate": 0.882267395467571, + "thundurus-incarnate": 0.7656267150685822, + "reshiram": 0.5270021422437574, + "zekrom": 0.558927245163823, + "landorus-incarnate": 0.5530081837152083, + "kyurem": 0.5259799566298582, + "xerneas": 0.36030069693381606, + "yveltal": 0.5494421155186084, + "zygarde-50": 0.46037191795191745, + "tapu-koko": 0.9860843825015533, + "tapu-lele": 1.3146441334813215, + "tapu-bulu": 1.0193601317985408, + "tapu-fini": 0.7754740482603015, + "solgaleo": 0.6561225100452569, + "lunala": 0.5314279822739643, + "nihilego": 0.9740150241141141, + "buzzwole": 1.7355678704815674, + "pheromosa": 1.8271249306114687, + "xurkitree": 0.6117266892051088, + "celesteela": 0.979517183440284, + "kartana": 1.319816980145733, + "guzzlord": 0.5694163447792551, + "necrozma": 1.0475913224010494, + "stakataka": 0.5336990017955908, + "blacephalon": 1.2198473514188626 }, "lopunny": { - "articuno": 0.8272483418911201, - "zapdos": 0.6970864927057856, - "moltres": 0.5834897547024098, - "mewtwo": 0.780189734229523, - "raikou": 1.7159439917664114, - "entei": 1.2165723927316145, - "suicune": 1.3616477420014383, - "lugia": 0.9229091049037015, - "ho-oh": 0.778433400816712, - "latias": 1.047059705422944, - "latios": 1.265743592406659, - "kyogre": 0.485798567971414, - "groudon": 0.32949063920698285, - "rayquaza": 0.4458835150407845, - "uxie": 1.3484354585940155, - "mesprit": 1.2500482230408763, - "azelf": 1.1882990578100525, - "dialga": 0.5967022311519427, - "palkia": 0.5347244646163515, - "heatran": 0.4870497277363123, - "giratina-altered": 0.6175971312031583, - "cresselia": 0.7150918496498029, - "tornadus-incarnate": 0.8270986941162155, - "thundurus-incarnate": 0.9262705256164858, - "reshiram": 0.602832536688278, - "zekrom": 0.6271341417091536, - "landorus-incarnate": 0.513018309596264, - "kyurem": 0.6187337162505966, - "xerneas": 0.3927603187756749, - "yveltal": 0.5385621188147875, - "zygarde-50": 0.4056554437949075, - "tapu-koko": 1.1548721255440242, - "tapu-lele": 1.5990114140521094, - "tapu-bulu": 0.9459830039464536, - "tapu-fini": 0.6955131967443706, - "solgaleo": 0.5858761464647515, - "lunala": 0.5476912212966536, - "nihilego": 0.9189130332881082, - "buzzwole": 1.125224799413424, - "pheromosa": 1.8055503207303958, - "xurkitree": 0.7727621086854441, - "celesteela": 0.6294076500026813, - "kartana": 1.1825259596603428, - "guzzlord": 0.7589493905512876, - "necrozma": 1.1799930579827493, - "stakataka": 0.6647925703090003, - "blacephalon": 1.317369240433671 + "articuno": 0.8271977335747198, + "zapdos": 0.6968136308132091, + "moltres": 0.5833306062783739, + "mewtwo": 0.7795843427702235, + "raikou": 1.7153424130648864, + "entei": 1.216182615078674, + "suicune": 1.3611054943846477, + "lugia": 0.9223838274978748, + "ho-oh": 0.7784766080277638, + "latias": 1.0466790638932693, + "latios": 1.26458265498693, + "kyogre": 0.4859128124804386, + "groudon": 0.3290301340902672, + "rayquaza": 0.4455538567138796, + "uxie": 1.3485354169030686, + "mesprit": 1.2490747873525474, + "azelf": 1.1873258452388895, + "dialga": 0.5966425329662814, + "palkia": 0.5347449973351011, + "heatran": 0.48719350556862057, + "giratina-altered": 0.6172789199047655, + "cresselia": 0.7146669992614649, + "tornadus-incarnate": 0.8270407389983749, + "thundurus-incarnate": 0.9258200084696605, + "reshiram": 0.6030733036237763, + "zekrom": 0.6266000537389464, + "landorus-incarnate": 0.5124966036277455, + "kyurem": 0.6193511503038007, + "xerneas": 0.39268154838793906, + "yveltal": 0.5384934325455027, + "zygarde-50": 0.4054453542637282, + "tapu-koko": 1.1540919575458894, + "tapu-lele": 1.5983005946128872, + "tapu-bulu": 0.9447486220396684, + "tapu-fini": 0.6954818896353236, + "solgaleo": 0.5849764917195095, + "lunala": 0.5474789426371692, + "nihilego": 0.9181089928090362, + "buzzwole": 1.1228808758543876, + "pheromosa": 1.8042053378300968, + "xurkitree": 0.7725114591564387, + "celesteela": 0.6289201217482345, + "kartana": 1.1803374084678169, + "guzzlord": 0.7590206158058281, + "necrozma": 1.1790560144606284, + "stakataka": 0.6643462840690846, + "blacephalon": 1.3155356436889656 }, "skuntank": { - "articuno": 0.8253727758408519, - "zapdos": 0.7047357693168534, - "moltres": 0.5834882497676737, - "mewtwo": 1.1243620855418612, - "raikou": 1.7383109960495269, - "entei": 1.2666826229246368, - "suicune": 1.4566494795956668, - "lugia": 1.292925008317992, - "ho-oh": 0.8211401745398419, - "latias": 1.509305658357041, - "latios": 1.9177588012838327, - "kyogre": 0.48413138579396464, - "groudon": 0.29660480641973286, - "rayquaza": 0.46355419660894226, - "uxie": 1.9434834386255413, - "mesprit": 1.7568177995366105, - "azelf": 1.6505427222885556, - "dialga": 0.6140202390585703, - "palkia": 0.5400614162632265, - "heatran": 0.49789203624583706, - "giratina-altered": 1.0015903761811749, - "cresselia": 1.050909964802811, - "tornadus-incarnate": 0.8249519670122127, - "thundurus-incarnate": 0.9593642049612077, - "reshiram": 0.6237626928100402, - "zekrom": 0.6467527622515041, - "landorus-incarnate": 0.4710859858548573, - "kyurem": 0.6006047277988769, - "xerneas": 0.3793651898188975, - "yveltal": 0.5149837079542627, - "zygarde-50": 0.3531374162203852, - "tapu-koko": 1.159137748839179, - "tapu-lele": 1.8417031243527084, - "tapu-bulu": 1.3422899749592194, - "tapu-fini": 0.6489593971616942, - "solgaleo": 0.9966026509335584, - "lunala": 1.2561352487734525, - "nihilego": 1.2163833854417094, - "buzzwole": 1.2998725452661073, - "pheromosa": 1.4777574751178653, - "xurkitree": 0.7968353578994773, - "celesteela": 0.7210772887788752, - "kartana": 2.670154731327351, - "guzzlord": 0.665498425560154, - "necrozma": 1.7048027170010147, - "stakataka": 0.5744752921472582, - "blacephalon": 2.305400336561362 + "articuno": 0.8262275706623989, + "zapdos": 0.7057077573117942, + "moltres": 0.5839632305646032, + "mewtwo": 1.1301042219383741, + "raikou": 1.7396780567087826, + "entei": 1.2680727202051068, + "suicune": 1.4585930267168763, + "lugia": 1.2972049870011326, + "ho-oh": 0.8225905135613703, + "latias": 1.5155970500726115, + "latios": 1.9256543854544659, + "kyogre": 0.484466291553782, + "groudon": 0.2962688538334219, + "rayquaza": 0.4638639588315656, + "uxie": 1.9532737065979369, + "mesprit": 1.7631109929632274, + "azelf": 1.6565408473531145, + "dialga": 0.6145232270856176, + "palkia": 0.5404351187054602, + "heatran": 0.4978551141294464, + "giratina-altered": 1.005144112343272, + "cresselia": 1.056301901145449, + "tornadus-incarnate": 0.8258605498447219, + "thundurus-incarnate": 0.960614061979784, + "reshiram": 0.6245722496479926, + "zekrom": 0.6471010890606359, + "landorus-incarnate": 0.4707255434206645, + "kyurem": 0.6010614567148952, + "xerneas": 0.3796070760615572, + "yveltal": 0.5155586095169109, + "zygarde-50": 0.35257113633636006, + "tapu-koko": 1.1597920743164385, + "tapu-lele": 1.8499352583184105, + "tapu-bulu": 1.34601693186785, + "tapu-fini": 0.6490424380275537, + "solgaleo": 1.000398738523595, + "lunala": 1.262358055752737, + "nihilego": 1.2180796063674526, + "buzzwole": 1.3004815831039531, + "pheromosa": 1.4783161239181228, + "xurkitree": 0.7978789198095311, + "celesteela": 0.7219762701424792, + "kartana": 2.6792246494444045, + "guzzlord": 0.665058356164683, + "necrozma": 1.7125440365596878, + "stakataka": 0.5743735619583491, + "blacephalon": 2.3141918998911972 }, "bronzong": { - "articuno": 1.122818981981202, - "zapdos": 0.7452800401593432, - "moltres": 0.5372024082550969, - "mewtwo": 0.8522321517965289, - "raikou": 1.842359699688025, - "entei": 1.1793183203529558, - "suicune": 1.4865066121094068, - "lugia": 0.9823089695921496, - "ho-oh": 0.7717167217957053, - "latias": 1.0950867348391147, - "latios": 1.39356802381909, - "kyogre": 0.5113200418606862, - "groudon": 0.3998274360877966, - "rayquaza": 0.4778436571060576, - "uxie": 1.3710323855233093, - "mesprit": 1.3620164991537922, - "azelf": 1.3013552794421386, - "dialga": 0.5640950347114931, - "palkia": 0.5758508077955298, - "heatran": 0.3697226110190432, - "giratina-altered": 0.7101197958826371, - "cresselia": 0.7724447170591632, - "tornadus-incarnate": 0.8705328566581364, - "thundurus-incarnate": 1.037212644649379, - "reshiram": 0.6042166185521384, - "zekrom": 0.6828531301789573, - "landorus-incarnate": 0.6382569375943916, - "kyurem": 0.7928183899777586, - "xerneas": 0.5471924732678599, - "yveltal": 0.47763460039513794, - "zygarde-50": 0.4697710721261473, - "tapu-koko": 1.2516784088924264, - "tapu-lele": 2.2021010576100872, - "tapu-bulu": 1.2428332424868287, - "tapu-fini": 0.7423951240743554, - "solgaleo": 0.6305027633534098, - "lunala": 0.5919538118214915, - "nihilego": 1.775456619222254, - "buzzwole": 1.2615459826560587, - "pheromosa": 1.9642211139229582, - "xurkitree": 0.7895862810278247, - "celesteela": 0.7443139773405625, - "kartana": 1.1846639187739045, - "guzzlord": 0.6956639077626086, - "necrozma": 1.2701625046562932, - "stakataka": 0.5670386312184218, - "blacephalon": 1.4912280977049945 + "articuno": 1.1243481098398702, + "zapdos": 0.7455657996410094, + "moltres": 0.5361822231874906, + "mewtwo": 0.8528760432060487, + "raikou": 1.8423209465515984, + "entei": 1.1767433786917496, + "suicune": 1.4867173431148446, + "lugia": 0.9826984889343741, + "ho-oh": 0.7707859193499091, + "latias": 1.095453040517909, + "latios": 1.394204309980446, + "kyogre": 0.511232359588687, + "groudon": 0.40013935925622224, + "rayquaza": 0.4780128077312267, + "uxie": 1.3703845330707884, + "mesprit": 1.362609506934974, + "azelf": 1.3018271904197753, + "dialga": 0.5641397662032164, + "palkia": 0.5760245015556538, + "heatran": 0.3687081795390781, + "giratina-altered": 0.7093388458752383, + "cresselia": 0.7731281282864366, + "tornadus-incarnate": 0.8706602983728965, + "thundurus-incarnate": 1.037561828189634, + "reshiram": 0.6035669225307035, + "zekrom": 0.6827463649246042, + "landorus-incarnate": 0.6393951744357317, + "kyurem": 0.7929897808011076, + "xerneas": 0.5480405570026354, + "yveltal": 0.47626747428955474, + "zygarde-50": 0.4700969635222821, + "tapu-koko": 1.25183874824894, + "tapu-lele": 2.2057802717958546, + "tapu-bulu": 1.2436225358202393, + "tapu-fini": 0.7425218077773359, + "solgaleo": 0.6300248428338325, + "lunala": 0.5904540569721963, + "nihilego": 1.7809037392777936, + "buzzwole": 1.2612213198978695, + "pheromosa": 1.9648765291143788, + "xurkitree": 0.7890733346102878, + "celesteela": 0.7448407508133568, + "kartana": 1.1837456190454132, + "guzzlord": 0.6940045539731127, + "necrozma": 1.270659516764694, + "stakataka": 0.5664870745982413, + "blacephalon": 1.4886344457234895 }, "munchlax": { - "articuno": 0.9966422470169127, - "zapdos": 0.7176597351364223, - "moltres": 0.7082881150939202, - "mewtwo": 0.8376924292936349, - "raikou": 1.7658652372747363, - "entei": 1.2599441094476547, - "suicune": 1.4991782666015605, - "lugia": 1.0604258718313935, - "ho-oh": 0.9151610073423273, - "latias": 1.0962345174197101, - "latios": 1.3230590929749098, - "kyogre": 0.5706123419806264, - "groudon": 0.3262039026191461, - "rayquaza": 0.44824094784591895, - "uxie": 1.421323452260427, - "mesprit": 1.3279770501910986, - "azelf": 1.2495074603821992, - "dialga": 0.532518996116701, - "palkia": 0.5529968568617387, - "heatran": 0.4781111794669072, - "giratina-altered": 0.5790011875764618, - "cresselia": 0.7475976901072448, - "tornadus-incarnate": 0.9958303077778541, - "thundurus-incarnate": 0.9942511273326446, - "reshiram": 0.6366397845898744, - "zekrom": 0.6125151321380637, - "landorus-incarnate": 0.504108160204498, - "kyurem": 0.6691763701972717, - "xerneas": 0.4386676275993865, - "yveltal": 0.6020305978923419, - "zygarde-50": 0.39664651535406453, - "tapu-koko": 1.2668402293284835, - "tapu-lele": 1.7270884403496762, - "tapu-bulu": 1.223581630256446, - "tapu-fini": 0.8401538896738191, - "solgaleo": 0.7457627113817895, - "lunala": 0.5972648523713006, - "nihilego": 1.0102146006421866, - "buzzwole": 0.9515018034315765, - "pheromosa": 1.512562980838071, - "xurkitree": 0.8016409267019179, - "celesteela": 0.8311024079889471, - "kartana": 1.54910845502665, - "guzzlord": 0.7308161338282924, - "necrozma": 1.214339621728929, - "stakataka": 0.4880360999629729, - "blacephalon": 1.4873473576533174 + "articuno": 1.0010785048762614, + "zapdos": 0.7190389913138098, + "moltres": 0.7105959204222975, + "mewtwo": 0.8390878345982093, + "raikou": 1.7680987490174789, + "entei": 1.261698089365002, + "suicune": 1.5013684900118005, + "lugia": 1.0635735107569386, + "ho-oh": 0.9184631709893123, + "latias": 1.097655848891924, + "latios": 1.3242462548474225, + "kyogre": 0.5722067737876595, + "groudon": 0.32567071221233723, + "rayquaza": 0.44848220379035764, + "uxie": 1.4251183483079497, + "mesprit": 1.3306407950287682, + "azelf": 1.2514752329247867, + "dialga": 0.5321265293788918, + "palkia": 0.553513990791776, + "heatran": 0.47773134165421516, + "giratina-altered": 0.5792171385236273, + "cresselia": 0.7488565826113911, + "tornadus-incarnate": 0.999644507144041, + "thundurus-incarnate": 0.996934230995836, + "reshiram": 0.6378217943096767, + "zekrom": 0.6119465898189685, + "landorus-incarnate": 0.5037867913969952, + "kyurem": 0.6710947610500659, + "xerneas": 0.44009035948011244, + "yveltal": 0.6032757124050652, + "zygarde-50": 0.3962557236831912, + "tapu-koko": 1.269517974785462, + "tapu-lele": 1.7321035038788297, + "tapu-bulu": 1.2251330756012053, + "tapu-fini": 0.8434916636848391, + "solgaleo": 0.7455614623503259, + "lunala": 0.5985019785299136, + "nihilego": 1.0108913905131198, + "buzzwole": 0.9494704020391804, + "pheromosa": 1.5129758274580887, + "xurkitree": 0.8028118233340571, + "celesteela": 0.8325422167761825, + "kartana": 1.5475871892023458, + "guzzlord": 0.7303841550730736, + "necrozma": 1.2160103023033935, + "stakataka": 0.4867327039712176, + "blacephalon": 1.4899494550893844 }, "drapion": { - "articuno": 0.8926014280076742, - "zapdos": 0.7022033106848837, - "moltres": 0.5758073724950072, - "mewtwo": 1.1041584497263144, - "raikou": 1.7305249847475137, - "entei": 1.273071351243344, - "suicune": 1.4689970998682673, - "lugia": 1.2686316986927202, - "ho-oh": 0.827633384016089, - "latias": 1.476209544745724, - "latios": 1.879221877024203, - "kyogre": 0.47550412546116294, - "groudon": 0.31099209148711354, - "rayquaza": 0.46488229072865456, - "uxie": 1.9090214767718539, - "mesprit": 1.7209511288248425, - "azelf": 1.6249230833836683, - "dialga": 0.6161937649512131, - "palkia": 0.5376064233398831, - "heatran": 0.49123273472482026, - "giratina-altered": 0.9973855736132692, - "cresselia": 1.0324832350152573, - "tornadus-incarnate": 0.8097457341207672, - "thundurus-incarnate": 0.9413808160008501, - "reshiram": 0.6138797322907907, - "zekrom": 0.6626037162733781, - "landorus-incarnate": 0.4922020172885521, - "kyurem": 0.6476443972571271, - "xerneas": 0.4338188039310571, - "yveltal": 0.5171197252725853, - "zygarde-50": 0.3718440428764014, - "tapu-koko": 1.028540689820031, - "tapu-lele": 2.0612578953374214, - "tapu-bulu": 1.1223171418449047, - "tapu-fini": 0.6012689710007864, - "solgaleo": 1.0016446047435443, - "lunala": 1.2263726101419328, - "nihilego": 1.3420479434105999, - "buzzwole": 0.9719056005560465, - "pheromosa": 1.3342154358642113, - "xurkitree": 0.7878846416674732, - "celesteela": 0.7420368457564669, - "kartana": 1.2748840967736785, - "guzzlord": 0.8990882240374585, - "necrozma": 1.6764633030528828, - "stakataka": 0.5887107168296342, - "blacephalon": 2.270522786669848 + "articuno": 0.8928496776646073, + "zapdos": 0.7022086333830488, + "moltres": 0.5754594037522811, + "mewtwo": 1.1089319726774791, + "raikou": 1.730627063855953, + "entei": 1.273303054844193, + "suicune": 1.4702602203449229, + "lugia": 1.2710444025189616, + "ho-oh": 0.8284252623355373, + "latias": 1.4816701027237738, + "latios": 1.8860382342597803, + "kyogre": 0.4755430419294304, + "groudon": 0.3106399893930994, + "rayquaza": 0.4649724034595446, + "uxie": 1.917072159323618, + "mesprit": 1.7256162175569332, + "azelf": 1.6297460178670633, + "dialga": 0.6161567225083735, + "palkia": 0.5378284401841003, + "heatran": 0.4911534510273514, + "giratina-altered": 0.9997489676330683, + "cresselia": 1.0369871504826351, + "tornadus-incarnate": 0.8096882330779838, + "thundurus-incarnate": 0.9410204269378812, + "reshiram": 0.6139652870865738, + "zekrom": 0.6628282044329967, + "landorus-incarnate": 0.4917044902971303, + "kyurem": 0.6480851758582903, + "xerneas": 0.43394852747410434, + "yveltal": 0.5176212637245448, + "zygarde-50": 0.3713976960658416, + "tapu-koko": 1.0278231657729602, + "tapu-lele": 2.0707707373273907, + "tapu-bulu": 1.1242470978743337, + "tapu-fini": 0.6007673670233487, + "solgaleo": 1.0039870004156903, + "lunala": 1.229945807040639, + "nihilego": 1.3446383993032685, + "buzzwole": 0.970666759305467, + "pheromosa": 1.3335148461678785, + "xurkitree": 0.7880176118572824, + "celesteela": 0.7417223571991726, + "kartana": 1.275268427042816, + "guzzlord": 0.9001616760471345, + "necrozma": 1.6826080476742082, + "stakataka": 0.5884840059268228, + "blacephalon": 2.2749760042183276 }, "abomasnow": { - "articuno": 0.7854413920714195, - "zapdos": 0.8874949315750734, - "moltres": 0.3909865835323005, - "mewtwo": 0.7854293944569868, - "raikou": 1.8127882936371456, - "entei": 0.9167315078779636, - "suicune": 1.8792715042713986, - "lugia": 1.1118351510778, - "ho-oh": 0.5847313519259348, - "latias": 1.3992838166183612, - "latios": 1.6203764600396702, - "kyogre": 0.732481864804316, - "groudon": 0.4153962678467622, - "rayquaza": 0.7815400419039356, - "uxie": 1.3160802025245495, - "mesprit": 1.2591919036870842, - "azelf": 1.1973928686625301, - "dialga": 0.5376898296449314, - "palkia": 0.5625293268349076, - "heatran": 0.25400597192331803, - "giratina-altered": 0.8683377325246977, - "cresselia": 0.7196509188996637, - "tornadus-incarnate": 0.8459716120133831, - "thundurus-incarnate": 1.1778236226114325, - "reshiram": 0.48271853460035063, - "zekrom": 0.8233228719316014, - "landorus-incarnate": 0.9455588471374872, - "kyurem": 0.5840314290402202, - "xerneas": 0.39879265816793, - "yveltal": 0.6592216025654589, - "zygarde-50": 0.7747723463470197, - "tapu-koko": 1.185468226725776, - "tapu-lele": 1.6088434938569574, - "tapu-bulu": 1.1299883707384386, - "tapu-fini": 1.0056073178112361, - "solgaleo": 0.5174288890684313, - "lunala": 0.6116899874197708, - "nihilego": 0.9690724849462451, - "buzzwole": 0.940812567146404, - "pheromosa": 1.3027033957494432, - "xurkitree": 0.8365632217373677, - "celesteela": 0.720321456512443, - "kartana": 1.2185428353246923, - "guzzlord": 0.9478781814215377, - "necrozma": 1.158845349125642, - "stakataka": 0.5039674383061389, - "blacephalon": 1.0431363179294366 + "articuno": 0.7848842690655756, + "zapdos": 0.8880281074184118, + "moltres": 0.38911147637000076, + "mewtwo": 0.7856827651974843, + "raikou": 1.8157753768041296, + "entei": 0.9123329459024853, + "suicune": 1.8828535965507305, + "lugia": 1.1117853575091934, + "ho-oh": 0.5816725178713774, + "latias": 1.4012370587494565, + "latios": 1.6212043665820586, + "kyogre": 0.7344542310692499, + "groudon": 0.41588367635373075, + "rayquaza": 0.7820154124088672, + "uxie": 1.3166564100013955, + "mesprit": 1.259634206458982, + "azelf": 1.1977576334229285, + "dialga": 0.5364670451447425, + "palkia": 0.5631620226344602, + "heatran": 0.2526324472914656, + "giratina-altered": 0.8685887190925035, + "cresselia": 0.7200349213660917, + "tornadus-incarnate": 0.844667430823639, + "thundurus-incarnate": 1.1796269251075546, + "reshiram": 0.4807459412233934, + "zekrom": 0.8247165184728245, + "landorus-incarnate": 0.9479353893045135, + "kyurem": 0.5839133527966158, + "xerneas": 0.3992496595040417, + "yveltal": 0.6594090015075342, + "zygarde-50": 0.7774001850806437, + "tapu-koko": 1.1861937769399473, + "tapu-lele": 1.6101279948591525, + "tapu-bulu": 1.1303075241651248, + "tapu-fini": 1.008346068369724, + "solgaleo": 0.5154538461585247, + "lunala": 0.6116598552509758, + "nihilego": 0.9672805345716908, + "buzzwole": 0.9374707174936183, + "pheromosa": 1.2993928549090787, + "xurkitree": 0.8383418322027478, + "celesteela": 0.7189054839731084, + "kartana": 1.2181395751332458, + "guzzlord": 0.9486722017890148, + "necrozma": 1.1587182804644973, + "stakataka": 0.5023941363446767, + "blacephalon": 1.037716768784247 }, "froslass": { - "articuno": 0.8377679274074513, - "zapdos": 0.8557304205586259, - "moltres": 0.4768110473487812, - "mewtwo": 1.0082451313684617, - "raikou": 1.7310335123874925, - "entei": 1.1153159615869197, - "suicune": 1.3655812822207012, - "lugia": 1.0881472637453027, - "ho-oh": 0.6271059065280089, - "latias": 1.2412083343435696, - "latios": 1.6355900558214924, - "kyogre": 0.4110378527588483, - "groudon": 0.42782290454888316, - "rayquaza": 0.7790512775284621, - "uxie": 1.6540560316554802, - "mesprit": 1.7335094895109173, - "azelf": 1.5911137831094426, - "dialga": 0.5600293017702191, - "palkia": 0.49852121805679406, - "heatran": 0.3737706122838211, - "giratina-altered": 0.8087799205311035, - "cresselia": 0.8881622061025676, - "tornadus-incarnate": 0.9371057623232146, - "thundurus-incarnate": 1.1807158248498109, - "reshiram": 0.5157540129543062, - "zekrom": 0.8335695524553588, - "landorus-incarnate": 0.9226294270488995, - "kyurem": 0.6419167921924507, - "xerneas": 0.3761695372150877, - "yveltal": 0.5785283259649028, - "zygarde-50": 0.7479534779016366, - "tapu-koko": 1.163663168587298, - "tapu-lele": 1.7349206337221084, - "tapu-bulu": 1.2710761902442274, - "tapu-fini": 0.6333754379655172, - "solgaleo": 0.8394646114366583, - "lunala": 0.9963335443801926, - "nihilego": 1.0215933181882848, - "buzzwole": 1.397377519319484, - "pheromosa": 1.5632828424973875, - "xurkitree": 0.7190846687078999, - "celesteela": 0.6860537276110465, - "kartana": 1.6656824475375998, - "guzzlord": 0.8492854833584045, - "necrozma": 1.4463937917158218, - "stakataka": 0.5563696947972431, - "blacephalon": 1.5038102611897681 + "articuno": 0.8388153108738867, + "zapdos": 0.8577276801915904, + "moltres": 0.47605403501107846, + "mewtwo": 1.0093799886190031, + "raikou": 1.7334485867463094, + "entei": 1.112501915890602, + "suicune": 1.3651494298980893, + "lugia": 1.0901470856501705, + "ho-oh": 0.62571261189962, + "latias": 1.244040919036272, + "latios": 1.6405677528527147, + "kyogre": 0.4107679502230783, + "groudon": 0.42880797672541193, + "rayquaza": 0.7818912062977529, + "uxie": 1.6547320297133243, + "mesprit": 1.7377399194117782, + "azelf": 1.5946259551672008, + "dialga": 0.5595205294267336, + "palkia": 0.4986364849230108, + "heatran": 0.3724575619905365, + "giratina-altered": 0.8094230415280048, + "cresselia": 0.8890787208025466, + "tornadus-incarnate": 0.9386455772949688, + "thundurus-incarnate": 1.1842049957641136, + "reshiram": 0.5149820620857151, + "zekrom": 0.8355543279763114, + "landorus-incarnate": 0.9263550617238974, + "kyurem": 0.6425156608285788, + "xerneas": 0.3763414819438755, + "yveltal": 0.5783462489821496, + "zygarde-50": 0.7507831517165069, + "tapu-koko": 1.1648099019785687, + "tapu-lele": 1.7363149320184497, + "tapu-bulu": 1.2748323963702435, + "tapu-fini": 0.6329257284884835, + "solgaleo": 0.8377626609913511, + "lunala": 0.9958700516427813, + "nihilego": 1.0202527740618974, + "buzzwole": 1.4016352257795317, + "pheromosa": 1.5662055378352866, + "xurkitree": 0.719005085355606, + "celesteela": 0.6851037181367589, + "kartana": 1.66733250702897, + "guzzlord": 0.8494078555192958, + "necrozma": 1.4464030425567767, + "stakataka": 0.555160780041076, + "blacephalon": 1.5003398701198698 }, "rotom": { - "articuno": 0.9463584876505629, - "zapdos": 0.7264874879048807, - "moltres": 0.7400375618041354, - "mewtwo": 0.9562508635947244, - "raikou": 1.7709996614266745, - "entei": 1.2057067532315633, - "suicune": 1.7887192730717432, - "lugia": 1.0869151575508682, - "ho-oh": 0.8125183299952325, - "latias": 1.135390868264543, - "latios": 1.5183087526750096, - "kyogre": 0.5221294246884922, - "groudon": 0.45075385199408236, - "rayquaza": 0.4245804304355028, - "uxie": 1.655012327720361, - "mesprit": 1.7442455950926323, - "azelf": 1.5949629713291067, - "dialga": 0.658015720317116, - "palkia": 0.4872365487731195, - "heatran": 0.45594302125019015, - "giratina-altered": 0.8103359343069225, - "cresselia": 0.865691040618028, - "tornadus-incarnate": 1.0226038955326509, - "thundurus-incarnate": 0.9613533979972542, - "reshiram": 0.5418265659131396, - "zekrom": 0.6982013888620147, - "landorus-incarnate": 0.6255901998883009, - "kyurem": 0.591495742225973, - "xerneas": 0.3657904909514875, - "yveltal": 0.5922195174320357, - "zygarde-50": 0.45466536403533697, - "tapu-koko": 1.286765498111385, - "tapu-lele": 1.7348935128043483, - "tapu-bulu": 1.0198039632638363, - "tapu-fini": 0.8282696807345363, - "solgaleo": 0.9988273991181243, - "lunala": 1.0013541387721743, - "nihilego": 0.8718314303422068, - "buzzwole": 1.4062568282838477, - "pheromosa": 1.5397394608766262, - "xurkitree": 0.7603805950989857, - "celesteela": 1.1849500612464774, - "kartana": 1.7012499973768853, - "guzzlord": 0.5743002813276462, - "necrozma": 1.5430658395598553, - "stakataka": 0.6206971328505915, - "blacephalon": 1.636864807085013 + "articuno": 0.946295879938133, + "zapdos": 0.727362903407091, + "moltres": 0.7405314962952083, + "mewtwo": 0.9558562390846175, + "raikou": 1.77270481566039, + "entei": 1.2046208572351813, + "suicune": 1.789520979773826, + "lugia": 1.0878980265745877, + "ho-oh": 0.8121282921117317, + "latias": 1.1340375926823567, + "latios": 1.5177626025776922, + "kyogre": 0.5222736814856603, + "groudon": 0.4516570613955677, + "rayquaza": 0.4243845626764704, + "uxie": 1.6537324950701269, + "mesprit": 1.746635326672389, + "azelf": 1.5967439385857527, + "dialga": 0.6583032674995215, + "palkia": 0.4868352016156854, + "heatran": 0.45563554496846037, + "giratina-altered": 0.8084521329981542, + "cresselia": 0.8653607835350856, + "tornadus-incarnate": 1.0237662733412978, + "thundurus-incarnate": 0.9625017017833415, + "reshiram": 0.540910016551936, + "zekrom": 0.698175009490619, + "landorus-incarnate": 0.6266641429696314, + "kyurem": 0.5902759052789843, + "xerneas": 0.3654251701857005, + "yveltal": 0.5910295933728075, + "zygarde-50": 0.45444547419213493, + "tapu-koko": 1.2879810996264054, + "tapu-lele": 1.7336283717928502, + "tapu-bulu": 1.019469828071085, + "tapu-fini": 0.8282213900601272, + "solgaleo": 1.000363610854548, + "lunala": 0.9997495734364052, + "nihilego": 0.8701000685900833, + "buzzwole": 1.4098267578906503, + "pheromosa": 1.5407099084432683, + "xurkitree": 0.7598841855619878, + "celesteela": 1.1884684528172178, + "kartana": 1.7011071695683537, + "guzzlord": 0.5724002437033371, + "necrozma": 1.5431480192224698, + "stakataka": 0.6209770313098854, + "blacephalon": 1.6352617135660528 }, "stoutland": { - "articuno": 0.9197871610155979, - "zapdos": 0.7920395519903847, - "moltres": 0.6521765414104258, - "mewtwo": 0.8714132574629897, - "raikou": 1.9540432604373459, - "entei": 1.3724413146518344, - "suicune": 1.5404612826415875, - "lugia": 1.0300465612439842, - "ho-oh": 0.8890961709473132, - "latias": 1.1856679565904829, - "latios": 1.436793785328518, - "kyogre": 0.5523912399484466, - "groudon": 0.37084013016315454, - "rayquaza": 0.5025828696746532, - "uxie": 1.5012827396388546, - "mesprit": 1.3965454336913175, - "azelf": 1.3330616107625317, - "dialga": 0.544935534839674, - "palkia": 0.6091397938521945, - "heatran": 0.44209235965705307, - "giratina-altered": 0.5026539743562444, - "cresselia": 0.8027517842951153, - "tornadus-incarnate": 0.9284714655044001, - "thundurus-incarnate": 1.0498749074673634, - "reshiram": 0.6790802173641602, - "zekrom": 0.7131617689035705, - "landorus-incarnate": 0.5835998385970562, - "kyurem": 0.6762706275579838, - "xerneas": 0.44175811851220104, - "yveltal": 0.6075904244690851, - "zygarde-50": 0.45935402587317625, - "tapu-koko": 1.305463558579672, - "tapu-lele": 1.8288528269205884, - "tapu-bulu": 1.0278526211477395, - "tapu-fini": 0.7841226701187488, - "solgaleo": 0.6355713751517192, - "lunala": 0.4527530381600744, - "nihilego": 0.9917161290043957, - "buzzwole": 1.0348110030160218, - "pheromosa": 1.577036609061876, - "xurkitree": 0.871491388032599, - "celesteela": 0.6897424117785449, - "kartana": 1.1691233618538488, - "guzzlord": 0.8523837341675675, - "necrozma": 1.3162175556861508, - "stakataka": 0.48246956324378, - "blacephalon": 1.0342016253520172 + "articuno": 0.9206950181655545, + "zapdos": 0.7932588721492557, + "moltres": 0.6530298859676616, + "mewtwo": 0.8721337319656383, + "raikou": 1.9562502162146411, + "entei": 1.3740190361545905, + "suicune": 1.5419820293650273, + "lugia": 1.0311345358944886, + "ho-oh": 0.8906174789479393, + "latias": 1.1870613772266427, + "latios": 1.4377236166054173, + "kyogre": 0.5531273796800599, + "groudon": 0.37092731431773274, + "rayquaza": 0.5031003759622923, + "uxie": 1.503620065062636, + "mesprit": 1.3975865794850924, + "azelf": 1.33410655178289, + "dialga": 0.5447584722588235, + "palkia": 0.6099880205704609, + "heatran": 0.4420378467444783, + "giratina-altered": 0.5018735183896512, + "cresselia": 0.8036029733395473, + "tornadus-incarnate": 0.929777849906457, + "thundurus-incarnate": 1.0511958885908834, + "reshiram": 0.6801137911510595, + "zekrom": 0.7138539934132149, + "landorus-incarnate": 0.5840597180081287, + "kyurem": 0.6772365281749522, + "xerneas": 0.4423675295757235, + "yveltal": 0.6083284748345434, + "zygarde-50": 0.4597882091461543, + "tapu-koko": 1.307128631133422, + "tapu-lele": 1.8314135591412009, + "tapu-bulu": 1.0281695207543717, + "tapu-fini": 0.7852907287706214, + "solgaleo": 0.6351670531262286, + "lunala": 0.4520877686014517, + "nihilego": 0.9911651780525836, + "buzzwole": 1.0338712997825779, + "pheromosa": 1.577199107294006, + "xurkitree": 0.8724784584038456, + "celesteela": 0.6897154691834262, + "kartana": 1.1674754460644616, + "guzzlord": 0.8531996671360798, + "necrozma": 1.317285462461215, + "stakataka": 0.48134064898971185, + "blacephalon": 1.0314956506290622 }, "liepard": { - "articuno": 0.7063712134561069, - "zapdos": 0.5910951522750829, - "moltres": 0.49384798489447357, - "mewtwo": 0.9648934558466256, - "raikou": 1.4628257307507602, - "entei": 1.093905208923791, - "suicune": 1.2605639760002862, - "lugia": 1.0964849223176931, - "ho-oh": 0.7069710789313287, - "latias": 1.2517723312803455, - "latios": 1.536138984466442, - "kyogre": 0.39597717919079284, - "groudon": 0.28060615826644986, - "rayquaza": 0.4708888225742619, - "uxie": 1.679293343667247, - "mesprit": 1.4175236477224495, - "azelf": 1.2170412902505934, - "dialga": 0.5159831173730616, - "palkia": 0.5365927969331107, - "heatran": 0.41265791771516036, - "giratina-altered": 0.8301683468247122, - "cresselia": 0.8721854597415128, - "tornadus-incarnate": 0.6948622851437749, - "thundurus-incarnate": 0.7582621478412087, - "reshiram": 0.5392327176582274, - "zekrom": 0.64085331451802, - "landorus-incarnate": 0.4378005391354206, - "kyurem": 0.5958420721294333, - "xerneas": 0.2756751145959848, - "yveltal": 0.5948727056586263, - "zygarde-50": 0.4012345815077424, - "tapu-koko": 0.9254860420778039, - "tapu-lele": 1.5170522209514048, - "tapu-bulu": 0.711163602468612, - "tapu-fini": 0.5254295789384225, - "solgaleo": 0.8387559712824981, - "lunala": 0.9712546273803109, - "nihilego": 0.9418594613978706, - "buzzwole": 0.8045414232217171, - "pheromosa": 1.3303009727866026, - "xurkitree": 0.6689036819852253, - "celesteela": 0.6533537915846626, - "kartana": 1.0668189280076537, - "guzzlord": 1.132508794635931, - "necrozma": 1.48409700364089, - "stakataka": 0.49789547479422025, - "blacephalon": 1.9250289777326413 + "articuno": 0.704595424715561, + "zapdos": 0.589805432873006, + "moltres": 0.4925477268625142, + "mewtwo": 0.9671067976234339, + "raikou": 1.4588137610299778, + "entei": 1.0911568733513912, + "suicune": 1.2583853823404567, + "lugia": 1.0962362926327738, + "ho-oh": 0.7058541149165591, + "latias": 1.254151397242208, + "latios": 1.5372665950589806, + "kyogre": 0.3951128165826846, + "groudon": 0.2796073861194234, + "rayquaza": 0.4700736015858644, + "uxie": 1.6827938525750195, + "mesprit": 1.4162875268031414, + "azelf": 1.215869837827333, + "dialga": 0.5146984725078264, + "palkia": 0.5358370129838492, + "heatran": 0.4117254184571757, + "giratina-altered": 0.8308416922433798, + "cresselia": 0.8731517038102005, + "tornadus-incarnate": 0.6933761654469752, + "thundurus-incarnate": 0.7563663648075651, + "reshiram": 0.5384375035382953, + "zekrom": 0.6395099397618671, + "landorus-incarnate": 0.4364903540826062, + "kyurem": 0.5949573796733142, + "xerneas": 0.27415946582855627, + "yveltal": 0.5945109099539525, + "zygarde-50": 0.40054861276173714, + "tapu-koko": 0.9225560709382552, + "tapu-lele": 1.5173405089396241, + "tapu-bulu": 0.7075597264015973, + "tapu-fini": 0.5233456797383018, + "solgaleo": 0.8382276826806482, + "lunala": 0.9711397252958025, + "nihilego": 0.9393846190019812, + "buzzwole": 0.7989287455586296, + "pheromosa": 1.3232376967388064, + "xurkitree": 0.6672649586934232, + "celesteela": 0.6517487483047899, + "kartana": 1.0621389933420482, + "guzzlord": 1.1324330823254471, + "necrozma": 1.4862466899038023, + "stakataka": 0.49610846379655016, + "blacephalon": 1.9251845567138302 }, "musharna": { - "articuno": 0.889690647592173, - "zapdos": 0.7821722086332741, - "moltres": 0.6687258536644186, - "mewtwo": 0.8089130488625833, - "raikou": 1.8386314856814, - "entei": 1.3758705127808302, - "suicune": 1.7789557296202845, - "lugia": 0.8470094319712721, - "ho-oh": 0.8024799940167862, - "latias": 0.9380551367353285, - "latios": 1.1939201143028282, - "kyogre": 0.5466239644331177, - "groudon": 0.49928329222973516, - "rayquaza": 0.48485951837410624, - "uxie": 1.3227918332922042, - "mesprit": 1.282782675435922, - "azelf": 1.2179294245377579, - "dialga": 0.5722128947211645, - "palkia": 0.5880766248737199, - "heatran": 0.4445092790841324, - "giratina-altered": 0.7384162237138844, - "cresselia": 0.7224286111255794, - "tornadus-incarnate": 0.9114703026769337, - "thundurus-incarnate": 1.0335141056497803, - "reshiram": 0.6604196149457078, - "zekrom": 0.7506185789319066, - "landorus-incarnate": 0.6134259845321188, - "kyurem": 0.6590016090642199, - "xerneas": 0.4405185590514308, - "yveltal": 0.425370485345417, - "zygarde-50": 0.49464351124827555, - "tapu-koko": 1.3628412727241792, - "tapu-lele": 1.4919154989391745, - "tapu-bulu": 1.0983417187966402, - "tapu-fini": 0.8640692442903799, - "solgaleo": 0.6247433198761567, - "lunala": 0.5531949059131713, - "nihilego": 1.4652221296502959, - "buzzwole": 1.964749667812986, - "pheromosa": 2.095226052161708, - "xurkitree": 0.8525766729056886, - "celesteela": 0.6947696946992687, - "kartana": 1.4929856683795788, - "guzzlord": 0.609149585198069, - "necrozma": 1.2595916208448092, - "stakataka": 0.635604239933304, - "blacephalon": 1.593090401478801 + "articuno": 0.8911539100524755, + "zapdos": 0.7840106244439515, + "moltres": 0.6700445595551775, + "mewtwo": 0.8104084614936162, + "raikou": 1.8427131230696383, + "entei": 1.3779138610546533, + "suicune": 1.7850760400039514, + "lugia": 0.8475214423838396, + "ho-oh": 0.8040479304255563, + "latias": 0.9387985401926757, + "latios": 1.1952374973259445, + "kyogre": 0.5482668603287092, + "groudon": 0.5010682355815058, + "rayquaza": 0.48545524658856787, + "uxie": 1.3242235766916823, + "mesprit": 1.2845462359543838, + "azelf": 1.219535112961836, + "dialga": 0.5725241926424691, + "palkia": 0.5895496368832813, + "heatran": 0.4446008339009995, + "giratina-altered": 0.7391398819486739, + "cresselia": 0.7237868370546159, + "tornadus-incarnate": 0.91348673433876, + "thundurus-incarnate": 1.0357356171469754, + "reshiram": 0.6619041925744753, + "zekrom": 0.7519899487215613, + "landorus-incarnate": 0.6151611969583191, + "kyurem": 0.6597809281240283, + "xerneas": 0.44174767975679025, + "yveltal": 0.42415429959540385, + "zygarde-50": 0.4958213514774443, + "tapu-koko": 1.3667113743446158, + "tapu-lele": 1.4946022672031245, + "tapu-bulu": 1.0999729933242757, + "tapu-fini": 0.8672012108613623, + "solgaleo": 0.624658967697716, + "lunala": 0.5527535538570105, + "nihilego": 1.4697229172689121, + "buzzwole": 1.96896172426144, + "pheromosa": 2.1002881033450094, + "xurkitree": 0.8545487261774791, + "celesteela": 0.6952217990854657, + "kartana": 1.493956453888468, + "guzzlord": 0.6073837576756207, + "necrozma": 1.2618688415872379, + "stakataka": 0.635953142683107, + "blacephalon": 1.5962002578873928 }, "unfezant": { - "articuno": 0.662893062954097, - "zapdos": 0.4811794974929188, - "moltres": 0.5509510695234277, - "mewtwo": 0.6681674478205969, - "raikou": 1.2167484239039643, - "entei": 1.2073996392255597, - "suicune": 1.3410575549994892, - "lugia": 0.8416193394668015, - "ho-oh": 0.7502329490895335, - "latias": 0.9943655961898116, - "latios": 1.2540879503819873, - "kyogre": 0.43765921164949406, - "groudon": 0.39770451430378073, - "rayquaza": 0.441425904872923, - "uxie": 1.2782752374507163, - "mesprit": 1.1694995594809026, - "azelf": 1.119652318611967, - "dialga": 0.46833616197384187, - "palkia": 0.4998910991837027, - "heatran": 0.3813994740777783, - "giratina-altered": 0.7171250805781143, - "cresselia": 0.6546997549927972, - "tornadus-incarnate": 0.7363978671990773, - "thundurus-incarnate": 0.6077943610932168, - "reshiram": 0.5698218424729098, - "zekrom": 0.4952120470640461, - "landorus-incarnate": 0.5817075721574573, - "kyurem": 0.5090339503367002, - "xerneas": 0.3742912833841819, - "yveltal": 0.5217699158530371, - "zygarde-50": 0.4703605385674361, - "tapu-koko": 0.7935530284917829, - "tapu-lele": 1.5716166939881888, - "tapu-bulu": 1.3094075887301189, - "tapu-fini": 0.6514868813192065, - "solgaleo": 0.584594637647119, - "lunala": 0.6307352386462246, - "nihilego": 0.8349586711307219, - "buzzwole": 1.718842397840485, - "pheromosa": 2.813692121445971, - "xurkitree": 0.5295851716290387, - "celesteela": 0.6757246374451773, - "kartana": 1.2495740351064577, - "guzzlord": 0.7804683093512457, - "necrozma": 1.0449239098683702, - "stakataka": 0.42768567052506157, - "blacephalon": 1.5799127124251195 + "articuno": 0.6600380849233524, + "zapdos": 0.4791461624461746, + "moltres": 0.5501367849118322, + "mewtwo": 0.6663579231501562, + "raikou": 1.210480153939843, + "entei": 1.2059222417983526, + "suicune": 1.3388314561520587, + "lugia": 0.8394984578769159, + "ho-oh": 0.7494173884070414, + "latias": 0.9926496463451402, + "latios": 1.251870841039536, + "kyogre": 0.436630058797679, + "groudon": 0.398071425510766, + "rayquaza": 0.4407507178867117, + "uxie": 1.276622031327846, + "mesprit": 1.1666523856471578, + "azelf": 1.1172336959733462, + "dialga": 0.466873809116339, + "palkia": 0.49899835725217945, + "heatran": 0.38053008449801684, + "giratina-altered": 0.7174059455808705, + "cresselia": 0.6533449174666439, + "tornadus-incarnate": 0.7347980157895666, + "thundurus-incarnate": 0.6045218288421309, + "reshiram": 0.5688781621505984, + "zekrom": 0.4931275498600969, + "landorus-incarnate": 0.5820883069569587, + "kyurem": 0.5072288355796579, + "xerneas": 0.37373404806548327, + "yveltal": 0.5210120638053469, + "zygarde-50": 0.47058900197752074, + "tapu-koko": 0.7898152547635127, + "tapu-lele": 1.5695620101258316, + "tapu-bulu": 1.311655910457739, + "tapu-fini": 0.6503859469511124, + "solgaleo": 0.5832988644193564, + "lunala": 0.6312514265362981, + "nihilego": 0.8312519914336067, + "buzzwole": 1.7223293539718227, + "pheromosa": 2.8202708360994895, + "xurkitree": 0.5267660816795264, + "celesteela": 0.6745347546193334, + "kartana": 1.2488002950109052, + "guzzlord": 0.7799869823478436, + "necrozma": 1.0413572137118978, + "stakataka": 0.4259873734341165, + "blacephalon": 1.579549199236971 }, "boldore": { - "articuno": 1.5748641618428425, - "zapdos": 0.9703115449483268, - "moltres": 1.2912490860782517, - "mewtwo": 0.7377783503185147, - "raikou": 1.9795745725246718, - "entei": 1.8365852306098782, - "suicune": 1.291669527568543, - "lugia": 1.157944505904478, - "ho-oh": 1.8667625590080261, - "latias": 0.8553210345246023, - "latios": 1.1985659581691799, - "kyogre": 0.33505225579720926, - "groudon": 0.28836519129055393, - "rayquaza": 0.6378386677646786, - "uxie": 1.2502017562563739, - "mesprit": 1.2363973778619357, - "azelf": 1.153995639742348, - "dialga": 0.6322344945173745, - "palkia": 0.4303829847708447, - "heatran": 0.8573641785621713, - "giratina-altered": 0.6992077294028122, - "cresselia": 0.7017231571768014, - "tornadus-incarnate": 1.170565081182708, - "thundurus-incarnate": 1.2437627959590207, - "reshiram": 0.8379317319730512, - "zekrom": 0.7771595452079612, - "landorus-incarnate": 0.4973264186016083, - "kyurem": 0.7575731074263619, - "xerneas": 0.36110880201651374, - "yveltal": 0.7438669216167579, - "zygarde-50": 0.34156636312816957, - "tapu-koko": 1.2689237772083388, - "tapu-lele": 1.6407631816157653, - "tapu-bulu": 0.9371449445610822, - "tapu-fini": 0.5136534179163725, - "solgaleo": 0.7846747992999246, - "lunala": 0.5931258434642435, - "nihilego": 1.9191045565217097, - "buzzwole": 1.017543031979048, - "pheromosa": 1.498908437836314, - "xurkitree": 0.8105251069932683, - "celesteela": 0.7196199715699692, - "kartana": 1.1778302393495332, - "guzzlord": 0.8551016629253452, - "necrozma": 1.1459928147203662, - "stakataka": 0.8447177995523016, - "blacephalon": 2.420073220478684 + "articuno": 1.5755873390009525, + "zapdos": 0.9708441780967598, + "moltres": 1.294810112468364, + "mewtwo": 0.7365682184831024, + "raikou": 1.9816326075925752, + "entei": 1.842998430606076, + "suicune": 1.288406842723032, + "lugia": 1.155999772693081, + "ho-oh": 1.8724709214157071, + "latias": 0.8526246093282317, + "latios": 1.1945211826478772, + "kyogre": 0.3342040105731692, + "groudon": 0.28781476821164287, + "rayquaza": 0.6381852994359433, + "uxie": 1.2464084141096188, + "mesprit": 1.2333530755270887, + "azelf": 1.1515564652037578, + "dialga": 0.6318254819867164, + "palkia": 0.4298756118078211, + "heatran": 0.8601427295554078, + "giratina-altered": 0.6986863955400522, + "cresselia": 0.7002413565522807, + "tornadus-incarnate": 1.1715501115348395, + "thundurus-incarnate": 1.2427605556050758, + "reshiram": 0.8394330138111459, + "zekrom": 0.7787329633810973, + "landorus-incarnate": 0.49595003028210494, + "kyurem": 0.7576086513428446, + "xerneas": 0.3604896406320768, + "yveltal": 0.7444600692593649, + "zygarde-50": 0.3409018749774029, + "tapu-koko": 1.269547465965288, + "tapu-lele": 1.6395602414424992, + "tapu-bulu": 0.9354528838335721, + "tapu-fini": 0.5114623149508751, + "solgaleo": 0.7844275647030519, + "lunala": 0.5915859937682342, + "nihilego": 1.922513072778139, + "buzzwole": 1.0157206027628662, + "pheromosa": 1.4968755275311514, + "xurkitree": 0.810029204443919, + "celesteela": 0.7175384914579719, + "kartana": 1.1743949597348398, + "guzzlord": 0.8565775490684084, + "necrozma": 1.1438011897992657, + "stakataka": 0.8465585580979482, + "blacephalon": 2.4269563923003785 }, "swoobat": { - "articuno": 0.5994113633551779, - "zapdos": 0.5358843929161905, - "moltres": 0.5341337557360084, - "mewtwo": 0.6514545967097138, - "raikou": 1.2714994403798172, - "entei": 1.1024910108536692, - "suicune": 1.2901426034495944, - "lugia": 0.7862443513000714, - "ho-oh": 0.6197461548304339, - "latias": 0.8724164908032737, - "latios": 1.1697130381620773, - "kyogre": 0.36883677630482103, - "groudon": 0.4410841505900963, - "rayquaza": 0.39028227990598796, - "uxie": 1.1711505537492308, - "mesprit": 1.1441615134376912, - "azelf": 1.071990660568854, - "dialga": 0.4547212608158797, - "palkia": 0.4447365315978846, - "heatran": 0.3550726900643385, - "giratina-altered": 0.5501773752045176, - "cresselia": 0.6273787291705666, - "tornadus-incarnate": 0.6801347062019547, - "thundurus-incarnate": 0.674214339491581, - "reshiram": 0.5327873733811297, - "zekrom": 0.5439731667809291, - "landorus-incarnate": 0.573767660784232, - "kyurem": 0.46050960672409325, - "xerneas": 0.35598177647506646, - "yveltal": 0.4109707766641101, - "zygarde-50": 0.47502277477473387, - "tapu-koko": 0.9211429572826756, - "tapu-lele": 1.3893607736821854, - "tapu-bulu": 1.2804767177883671, - "tapu-fini": 0.6041674899048799, - "solgaleo": 0.5680808323580286, - "lunala": 0.4727871900858011, - "nihilego": 0.8806259714860312, - "buzzwole": 2.483311675441164, - "pheromosa": 2.411152068287201, - "xurkitree": 0.573729082571286, - "celesteela": 0.6420873586409495, - "kartana": 1.6648744154014636, - "guzzlord": 0.6157727613661053, - "necrozma": 1.055128303957828, - "stakataka": 0.424831910648671, - "blacephalon": 1.2329173092433448 + "articuno": 0.5967115180020979, + "zapdos": 0.5339410727889593, + "moltres": 0.5335057876856641, + "mewtwo": 0.6502619680539626, + "raikou": 1.2647567656908283, + "entei": 1.1000156318514276, + "suicune": 1.2883900820530774, + "lugia": 0.7841194220890331, + "ho-oh": 0.6184261421442449, + "latias": 0.8708448334104069, + "latios": 1.1684181407517507, + "kyogre": 0.3677410434228368, + "groudon": 0.4423453677910545, + "rayquaza": 0.3893698338571625, + "uxie": 1.168359792372947, + "mesprit": 1.1419819113583707, + "azelf": 1.0699860107012313, + "dialga": 0.4531793555214084, + "palkia": 0.44369078698154174, + "heatran": 0.35396283455977007, + "giratina-altered": 0.547937363975208, + "cresselia": 0.6264557171915424, + "tornadus-incarnate": 0.678759562967566, + "thundurus-incarnate": 0.6711645955875019, + "reshiram": 0.5321090563392671, + "zekrom": 0.5414981267756911, + "landorus-incarnate": 0.5747260972527956, + "kyurem": 0.45833097116557564, + "xerneas": 0.355566441664126, + "yveltal": 0.40893525108580664, + "zygarde-50": 0.47554699705098624, + "tapu-koko": 0.917649505001626, + "tapu-lele": 1.3878016817504997, + "tapu-bulu": 1.282365532047237, + "tapu-fini": 0.6032718306902745, + "solgaleo": 0.5664452005193672, + "lunala": 0.47017557281288397, + "nihilego": 0.876910464785057, + "buzzwole": 2.4903079746016195, + "pheromosa": 2.413473203557491, + "xurkitree": 0.571047583344477, + "celesteela": 0.6406218593394877, + "kartana": 1.6667202706378061, + "guzzlord": 0.6131527692575238, + "necrozma": 1.0523191177555222, + "stakataka": 0.42291583946425515, + "blacephalon": 1.2300809441519185 }, "audino": { - "articuno": 0.8146586799867794, - "zapdos": 0.6583230754273441, - "moltres": 0.5687855119282217, - "mewtwo": 0.7516650659893198, - "raikou": 1.536734398268048, - "entei": 1.2121185169443423, - "suicune": 1.3184487727149006, - "lugia": 0.8508944359168524, - "ho-oh": 0.6607884692542778, - "latias": 0.9286622355417589, - "latios": 1.1362971211163138, - "kyogre": 0.4216099307783572, - "groudon": 0.361800306473261, - "rayquaza": 0.43315531367275023, - "uxie": 1.2908841932353488, - "mesprit": 1.2000125274405435, - "azelf": 1.1440797912858294, - "dialga": 0.5403440084499458, - "palkia": 0.49559203455472917, - "heatran": 0.40086241019548763, - "giratina-altered": 0.6966504417948, - "cresselia": 0.6744923904350737, - "tornadus-incarnate": 0.7666935303925065, - "thundurus-incarnate": 0.8559240826143109, - "reshiram": 0.5482150474814438, - "zekrom": 0.6448020242421835, - "landorus-incarnate": 0.5178543549322006, - "kyurem": 0.58981089873154, - "xerneas": 0.37303599105017016, - "yveltal": 0.5189621834114153, - "zygarde-50": 0.42680463530315516, - "tapu-koko": 1.145295875242513, - "tapu-lele": 1.384042849282907, - "tapu-bulu": 1.0160327891321348, - "tapu-fini": 0.6436807659807315, - "solgaleo": 0.7711392178787899, - "lunala": 0.5465435477734819, - "nihilego": 0.8056492777773214, - "buzzwole": 1.2631187995820028, - "pheromosa": 1.466989056667484, - "xurkitree": 0.7433242286352469, - "celesteela": 0.8172606801703772, - "kartana": 2.5932172789307533, - "guzzlord": 0.8915492460342906, - "necrozma": 1.1696678130257885, - "stakataka": 0.573691305086909, - "blacephalon": 1.1548876515133024 + "articuno": 0.8149740775337176, + "zapdos": 0.6586276272637082, + "moltres": 0.5687490853156484, + "mewtwo": 0.7516085612441987, + "raikou": 1.5362442605627646, + "entei": 1.2119851896880602, + "suicune": 1.3180283682531448, + "lugia": 0.8507725065478182, + "ho-oh": 0.6603981506865968, + "latias": 0.928289985472589, + "latios": 1.135380517103591, + "kyogre": 0.42129331351491217, + "groudon": 0.3618679630863032, + "rayquaza": 0.43320763244426774, + "uxie": 1.291683320588386, + "mesprit": 1.199825544360145, + "azelf": 1.1439262218685449, + "dialga": 0.5404089080386857, + "palkia": 0.49554864163298645, + "heatran": 0.3999198642968974, + "giratina-altered": 0.6973791490780735, + "cresselia": 0.6744979681904211, + "tornadus-incarnate": 0.7668576870034418, + "thundurus-incarnate": 0.8559656667133705, + "reshiram": 0.5480498286276851, + "zekrom": 0.6450507586181515, + "landorus-incarnate": 0.5179164208378526, + "kyurem": 0.5903087567187666, + "xerneas": 0.37322437869819713, + "yveltal": 0.5192830563572167, + "zygarde-50": 0.4270117605754084, + "tapu-koko": 1.145920074895414, + "tapu-lele": 1.383613536552086, + "tapu-bulu": 1.0165515440108017, + "tapu-fini": 0.643619207306481, + "solgaleo": 0.7715915038705671, + "lunala": 0.5468111485436242, + "nihilego": 0.8038769439664191, + "buzzwole": 1.2645508753795185, + "pheromosa": 1.467438906531232, + "xurkitree": 0.7434634081621867, + "celesteela": 0.8180197874977808, + "kartana": 2.6000578199271107, + "guzzlord": 0.8923198067294049, + "necrozma": 1.1698140246007185, + "stakataka": 0.5733018905626577, + "blacephalon": 1.1533852263112099 }, "gurdurr": { - "articuno": 0.7790616030387383, - "zapdos": 0.5463272452965856, - "moltres": 0.47006750466896113, - "mewtwo": 0.6388374221147961, - "raikou": 2.0371114137740656, - "entei": 1.486713565466417, - "suicune": 1.339617972206968, - "lugia": 0.61367053757364, - "ho-oh": 0.6478934800424345, - "latias": 0.8030542432401817, - "latios": 1.0003780002881448, - "kyogre": 0.4753512269695162, - "groudon": 0.35975539623451464, - "rayquaza": 0.38111105800956524, - "uxie": 0.9435442559518454, - "mesprit": 0.9077275678210682, - "azelf": 0.8339286360173097, - "dialga": 0.895045600684246, - "palkia": 0.5522434572115609, - "heatran": 0.8458851902720346, - "giratina-altered": 0.6487302018315468, - "cresselia": 0.533091513576403, - "tornadus-incarnate": 0.5966485855058717, - "thundurus-incarnate": 0.7228392803448478, - "reshiram": 0.6671947089987689, - "zekrom": 0.7782993049548269, - "landorus-incarnate": 0.47723055312951923, - "kyurem": 0.7741766583602523, - "xerneas": 0.2858948867436274, - "yveltal": 0.5632000023904388, - "zygarde-50": 0.4396539518488704, - "tapu-koko": 1.3033136838748054, - "tapu-lele": 1.2597756581486517, - "tapu-bulu": 0.8700384253620352, - "tapu-fini": 0.5794503542368407, - "solgaleo": 0.8129082200369999, - "lunala": 0.5166897732103297, - "nihilego": 1.9389004971721726, - "buzzwole": 0.9798863192042769, - "pheromosa": 1.300432641842578, - "xurkitree": 0.9055318399355109, - "celesteela": 0.8406129211105026, - "kartana": 1.4584163402577204, - "guzzlord": 1.1540593426743055, - "necrozma": 1.0083973425896038, - "stakataka": 1.1157395982200793, - "blacephalon": 1.859305678935569 + "articuno": 0.7780472329710052, + "zapdos": 0.5450369354029618, + "moltres": 0.4690654523904798, + "mewtwo": 0.636565640568862, + "raikou": 2.0415916809578096, + "entei": 1.4908268291891067, + "suicune": 1.3399326751179135, + "lugia": 0.6103063712356878, + "ho-oh": 0.6473442561165288, + "latias": 0.800118841892365, + "latios": 0.9967739054749412, + "kyogre": 0.4760526578333927, + "groudon": 0.3602161681802452, + "rayquaza": 0.38022495614319063, + "uxie": 0.938921367553901, + "mesprit": 0.90322088659079, + "azelf": 0.8301474263642952, + "dialga": 0.8996589293170376, + "palkia": 0.5535087795285533, + "heatran": 0.8506659641893036, + "giratina-altered": 0.6477916250405151, + "cresselia": 0.5305244450295348, + "tornadus-incarnate": 0.5943103813609868, + "thundurus-incarnate": 0.7212947576200517, + "reshiram": 0.6680648927927811, + "zekrom": 0.7803451313415672, + "landorus-incarnate": 0.47694243633002986, + "kyurem": 0.7759163170406422, + "xerneas": 0.2849416691329131, + "yveltal": 0.5633412716026714, + "zygarde-50": 0.4402715079487985, + "tapu-koko": 1.3032093975248435, + "tapu-lele": 1.2545658303793763, + "tapu-bulu": 0.8699962223112085, + "tapu-fini": 0.5785664654575802, + "solgaleo": 0.8144871134108249, + "lunala": 0.5146530847871206, + "nihilego": 1.9454756072528823, + "buzzwole": 0.9795264339955139, + "pheromosa": 1.3008167428715038, + "xurkitree": 0.9072860632790993, + "celesteela": 0.8420262048213358, + "kartana": 1.460470127362403, + "guzzlord": 1.1594943226747674, + "necrozma": 1.0055651109652772, + "stakataka": 1.1229059943652322, + "blacephalon": 1.8582433890611076 }, "palpitoad": { - "articuno": 0.6925746214492909, - "zapdos": 0.7064032376444256, - "moltres": 0.7347079584616607, - "mewtwo": 0.6914617273750474, - "raikou": 2.05360508384521, - "entei": 1.5328628414315724, - "suicune": 1.2191009945647935, - "lugia": 0.7937929142427935, - "ho-oh": 0.8057350059704795, - "latias": 0.7880213991191654, - "latios": 0.9972593489765351, - "kyogre": 0.38579062711680334, - "groudon": 0.43237668712816457, - "rayquaza": 0.35471687091136095, - "uxie": 1.1389041490774383, - "mesprit": 1.086748420215243, - "azelf": 1.029176740784799, - "dialga": 0.8142099516191451, - "palkia": 0.45240209948606025, - "heatran": 0.9479965850931722, - "giratina-altered": 0.6249175427528391, - "cresselia": 0.6215173726088973, - "tornadus-incarnate": 0.7219955618383295, - "thundurus-incarnate": 0.9608522290713009, - "reshiram": 0.6847073677490352, - "zekrom": 0.8757245509131868, - "landorus-incarnate": 0.6204479453445231, - "kyurem": 0.5242445993864516, - "xerneas": 0.32059683473308814, - "yveltal": 0.4696293710491042, - "zygarde-50": 0.3833246884243131, - "tapu-koko": 1.6549099538577783, - "tapu-lele": 1.2817671340395538, - "tapu-bulu": 0.6574595850416951, - "tapu-fini": 0.5894177143140307, - "solgaleo": 0.921559370973339, - "lunala": 0.5166113150268609, - "nihilego": 1.31124208239315, - "buzzwole": 1.1516854019676128, - "pheromosa": 1.6696823259390912, - "xurkitree": 0.9820084235493888, - "celesteela": 0.709697639966512, - "kartana": 1.127015194078368, - "guzzlord": 0.6742822708543394, - "necrozma": 1.1595660082495902, - "stakataka": 1.2202270104793913, - "blacephalon": 1.665747287187334 + "articuno": 0.6908870377751751, + "zapdos": 0.7065803191613861, + "moltres": 0.7353942342954405, + "mewtwo": 0.6905006738982757, + "raikou": 2.0583843750345747, + "entei": 1.536246352670275, + "suicune": 1.2169584140021539, + "lugia": 0.7920662429242631, + "ho-oh": 0.8061673144141719, + "latias": 0.7854157361960074, + "latios": 0.9939944118156268, + "kyogre": 0.3853547609424134, + "groudon": 0.4326761302887421, + "rayquaza": 0.3535873448698317, + "uxie": 1.1360081074272483, + "mesprit": 1.0838457005622841, + "azelf": 1.0265057704170801, + "dialga": 0.8152266135120732, + "palkia": 0.4516780665544879, + "heatran": 0.9516051309791425, + "giratina-altered": 0.6240875329422684, + "cresselia": 0.6200050650033825, + "tornadus-incarnate": 0.7208594126866279, + "thundurus-incarnate": 0.9619261151961553, + "reshiram": 0.6855557506864458, + "zekrom": 0.8777339903121648, + "landorus-incarnate": 0.6202686874097205, + "kyurem": 0.5232731905079301, + "xerneas": 0.31987277958670735, + "yveltal": 0.46860731697040064, + "zygarde-50": 0.383061918299156, + "tapu-koko": 1.6596075120649085, + "tapu-lele": 1.2797490304783194, + "tapu-bulu": 0.652646418544514, + "tapu-fini": 0.5886150218811843, + "solgaleo": 0.9230062702066754, + "lunala": 0.5156017548067683, + "nihilego": 1.3133271639721125, + "buzzwole": 1.1509466804538822, + "pheromosa": 1.6680726067849765, + "xurkitree": 0.9827972753572676, + "celesteela": 0.7094153465044211, + "kartana": 1.117052146743783, + "guzzlord": 0.6730700110798951, + "necrozma": 1.1594759695233163, + "stakataka": 1.2236958066193604, + "blacephalon": 1.6686995918917173 }, "seismitoad": { - "articuno": 0.7058033515966227, - "zapdos": 0.6715783751228366, - "moltres": 0.5617471681302876, - "mewtwo": 0.6907893597407168, - "raikou": 1.5621865814501352, - "entei": 1.1463480451441206, - "suicune": 1.2058480707070451, - "lugia": 0.7952695551217324, - "ho-oh": 0.6501966702582341, - "latias": 0.852746042810332, - "latios": 1.0731030841996692, - "kyogre": 0.39651392075845165, - "groudon": 0.3188834918653798, - "rayquaza": 0.3953334412882451, - "uxie": 1.149027427066462, - "mesprit": 1.0985534456215247, - "azelf": 1.0469619234210499, - "dialga": 0.4769055998380308, - "palkia": 0.4540607179859375, - "heatran": 0.3960882453324217, - "giratina-altered": 0.5349300247409545, - "cresselia": 0.6203412769481433, - "tornadus-incarnate": 0.7238906473791886, - "thundurus-incarnate": 0.9150760628819119, - "reshiram": 0.5224472300336407, - "zekrom": 0.6353671373112073, - "landorus-incarnate": 0.46129905308655583, - "kyurem": 0.5294813508520305, - "xerneas": 0.3949966756809139, - "yveltal": 0.4725567980987046, - "zygarde-50": 0.3661605239230259, - "tapu-koko": 1.4550138702776865, - "tapu-lele": 1.512191611116402, - "tapu-bulu": 1.170824477337462, - "tapu-fini": 0.7130433557574049, - "solgaleo": 0.569423835690421, - "lunala": 0.4679735629046594, - "nihilego": 0.8250500970082717, - "buzzwole": 1.090915045997105, - "pheromosa": 1.282436704156729, - "xurkitree": 0.7342762382190702, - "celesteela": 0.5809376009433651, - "kartana": 0.9233023126743383, - "guzzlord": 0.672316039460151, - "necrozma": 1.1227801188485407, - "stakataka": 0.4875304307028997, - "blacephalon": 1.1567181959039579 + "articuno": 0.7048525363263038, + "zapdos": 0.672196417261078, + "moltres": 0.5619884685055573, + "mewtwo": 0.6899085129014879, + "raikou": 1.5633605977159772, + "entei": 1.1463886229415097, + "suicune": 1.2044398245720862, + "lugia": 0.7944185972643192, + "ho-oh": 0.6502031833804336, + "latias": 0.8514029801721752, + "latios": 1.0715137016754452, + "kyogre": 0.39615583070250254, + "groudon": 0.31852646534066253, + "rayquaza": 0.39487546041120825, + "uxie": 1.147532709822284, + "mesprit": 1.097023612195625, + "azelf": 1.0455322787630301, + "dialga": 0.4760875154063616, + "palkia": 0.45363064985907686, + "heatran": 0.3955729782165308, + "giratina-altered": 0.5337810295457206, + "cresselia": 0.6195977866184008, + "tornadus-incarnate": 0.7234331389207329, + "thundurus-incarnate": 0.9164121444646375, + "reshiram": 0.5224032719542292, + "zekrom": 0.6360569817779262, + "landorus-incarnate": 0.4607730739368646, + "kyurem": 0.5287959742008113, + "xerneas": 0.39469100425049475, + "yveltal": 0.4720701098265382, + "zygarde-50": 0.36561732004337166, + "tapu-koko": 1.4585692735091493, + "tapu-lele": 1.5116756196808068, + "tapu-bulu": 1.1678644972494703, + "tapu-fini": 0.7132388812816166, + "solgaleo": 0.5684840051505458, + "lunala": 0.4666950842802253, + "nihilego": 0.8237173678291626, + "buzzwole": 1.0903660666705726, + "pheromosa": 1.2808654660213143, + "xurkitree": 0.7340830173438151, + "celesteela": 0.5800666819027203, + "kartana": 0.9152896655364638, + "guzzlord": 0.6714882870609789, + "necrozma": 1.122470668101319, + "stakataka": 0.4864233265611959, + "blacephalon": 1.155043037410172 }, "scolipede": { - "articuno": 0.8267124052336468, - "zapdos": 0.5811233841629757, - "moltres": 0.4197978330909817, - "mewtwo": 1.014463686781942, - "raikou": 1.8377453493362532, - "entei": 1.0234220153824607, - "suicune": 1.387872718583408, - "lugia": 0.9026447906314972, - "ho-oh": 0.607597658771891, - "latias": 1.4661980389881109, - "latios": 1.8714914661647564, - "kyogre": 0.5030149870749654, - "groudon": 0.3493761308247969, - "rayquaza": 0.3970271483685178, - "uxie": 1.6662458314535247, - "mesprit": 1.6786972860499412, - "azelf": 1.6851418272168863, - "dialga": 0.5214616923908783, - "palkia": 0.5544501040631536, - "heatran": 0.35334345371438247, - "giratina-altered": 0.7720408457196606, - "cresselia": 0.9730926318808822, - "tornadus-incarnate": 0.6168440001492321, - "thundurus-incarnate": 0.8282180872382359, - "reshiram": 0.46386903812832914, - "zekrom": 0.6904946624046904, - "landorus-incarnate": 0.4755576300899702, - "kyurem": 0.654146350405671, - "xerneas": 0.46202307684441096, - "yveltal": 0.5483116692526191, - "zygarde-50": 0.44075283971496537, - "tapu-koko": 0.9924320027766265, - "tapu-lele": 1.7165860746657624, - "tapu-bulu": 1.2387293815486489, - "tapu-fini": 0.6194984880309271, - "solgaleo": 0.7498707949691109, - "lunala": 0.9741650469521801, - "nihilego": 1.2439663270423924, - "buzzwole": 1.0635608128375251, - "pheromosa": 1.405586078529721, - "xurkitree": 0.8260169001835782, - "celesteela": 0.6811628708765857, - "kartana": 1.3118728956594592, - "guzzlord": 1.1305638109977787, - "necrozma": 1.461010413563077, - "stakataka": 0.48339977298393283, - "blacephalon": 1.6102858090177186 + "articuno": 0.8248378168770489, + "zapdos": 0.579766234225746, + "moltres": 0.41794310958475756, + "mewtwo": 1.012815185025434, + "raikou": 1.8371012333157806, + "entei": 1.0203989312923163, + "suicune": 1.3858921903317012, + "lugia": 0.9004737035417938, + "ho-oh": 0.6052925970176566, + "latias": 1.4655862898769452, + "latios": 1.8717649218794992, + "kyogre": 0.5029221778051511, + "groudon": 0.34924186673888447, + "rayquaza": 0.3960408399013169, + "uxie": 1.6638513543253102, + "mesprit": 1.6777503398688731, + "azelf": 1.6846635720628624, + "dialga": 0.5205779988875101, + "palkia": 0.5541529089088725, + "heatran": 0.35225494136277397, + "giratina-altered": 0.7716283256495176, + "cresselia": 0.9723368927030909, + "tornadus-incarnate": 0.6144943486309251, + "thundurus-incarnate": 0.827237870930595, + "reshiram": 0.46210650850558976, + "zekrom": 0.6903447120060924, + "landorus-incarnate": 0.4751819023030064, + "kyurem": 0.6535419245868084, + "xerneas": 0.4623431752264457, + "yveltal": 0.5474743643761224, + "zygarde-50": 0.4406116764667777, + "tapu-koko": 0.98980873173069, + "tapu-lele": 1.7127345631035613, + "tapu-bulu": 1.2416138677093818, + "tapu-fini": 0.6187397955942324, + "solgaleo": 0.7494739156978134, + "lunala": 0.9754571147521767, + "nihilego": 1.2419196642831558, + "buzzwole": 1.0634695829972285, + "pheromosa": 1.4053305865166001, + "xurkitree": 0.8259415211838594, + "celesteela": 0.6800702446514645, + "kartana": 1.312772829637073, + "guzzlord": 1.1314872269560863, + "necrozma": 1.4582243817130855, + "stakataka": 0.4821075594274544, + "blacephalon": 1.606176713585719 }, "whimsicott": { - "articuno": 0.6268056120516998, - "zapdos": 0.6372725919699934, - "moltres": 0.41393157391887336, - "mewtwo": 0.6740392719980868, - "raikou": 1.6599076366379477, - "entei": 1.0244976073263874, - "suicune": 1.811162435993078, - "lugia": 0.8492344655196685, - "ho-oh": 0.5514002102605511, - "latias": 1.363391604442501, - "latios": 1.7025127822369055, - "kyogre": 0.5822627183984488, - "groudon": 0.5152341998078281, - "rayquaza": 0.5559229672205813, - "uxie": 1.232590980153413, - "mesprit": 1.1780980674696206, - "azelf": 1.122874220353886, - "dialga": 0.5326751054723944, - "palkia": 0.7077616696614577, - "heatran": 0.2939788376413757, - "giratina-altered": 0.8805922291457823, - "cresselia": 0.639343914176012, - "tornadus-incarnate": 0.6107603345334407, - "thundurus-incarnate": 0.6874633264037109, - "reshiram": 0.5226382988273536, - "zekrom": 0.8338405150635599, - "landorus-incarnate": 0.5719071957276822, - "kyurem": 0.6073505710135629, - "xerneas": 0.39196287300391974, - "yveltal": 0.6633225168192655, - "zygarde-50": 0.5391775704995729, - "tapu-koko": 1.1822816925985182, - "tapu-lele": 1.466453753026758, - "tapu-bulu": 1.1425363341972137, - "tapu-fini": 0.9097259868959082, - "solgaleo": 0.5276964613853226, - "lunala": 0.5542314668525888, - "nihilego": 0.5656540088937196, - "buzzwole": 2.0527891777431178, - "pheromosa": 2.1418755153489575, - "xurkitree": 0.8234845668775246, - "celesteela": 0.5820744117449093, - "kartana": 1.457687868605544, - "guzzlord": 1.4059278670894217, - "necrozma": 1.186386789076604, - "stakataka": 0.6507774223075778, - "blacephalon": 1.0984442535392935 + "articuno": 0.624282805818148, + "zapdos": 0.636419551263661, + "moltres": 0.4122406350965739, + "mewtwo": 0.6732917347504428, + "raikou": 1.6608173656130045, + "entei": 1.0219476724826921, + "suicune": 1.8146016091508392, + "lugia": 0.848142187016002, + "ho-oh": 0.5494326701288557, + "latias": 1.3655043057647949, + "latios": 1.7056323355919738, + "kyogre": 0.5835216815384237, + "groudon": 0.5164739457772003, + "rayquaza": 0.5561558144183072, + "uxie": 1.2319583272657875, + "mesprit": 1.1773652059515851, + "azelf": 1.1223494269383762, + "dialga": 0.5315853762396977, + "palkia": 0.7097036720255769, + "heatran": 0.29273796676882285, + "giratina-altered": 0.8821652149412207, + "cresselia": 0.63894752280563, + "tornadus-incarnate": 0.6086773402965764, + "thundurus-incarnate": 0.6860020271774371, + "reshiram": 0.5215368523665596, + "zekrom": 0.8357125632965379, + "landorus-incarnate": 0.5730062611499472, + "kyurem": 0.6060773819688781, + "xerneas": 0.39220303345931296, + "yveltal": 0.663925760517283, + "zygarde-50": 0.5408877307260374, + "tapu-koko": 1.1821711156859043, + "tapu-lele": 1.466041016267402, + "tapu-bulu": 1.144469747541587, + "tapu-fini": 0.9119201685283536, + "solgaleo": 0.5257458704800256, + "lunala": 0.553928413189495, + "nihilego": 0.5623001332711157, + "buzzwole": 2.0577321792363694, + "pheromosa": 2.1467276980291654, + "xurkitree": 0.8247712555503617, + "celesteela": 0.5801186794650294, + "kartana": 1.45862470404884, + "guzzlord": 1.4108289998660535, + "necrozma": 1.1863744283151796, + "stakataka": 0.6497220835886498, + "blacephalon": 1.0949902265291402 }, "lilligant": { - "articuno": 0.6029185873772679, - "zapdos": 0.6163210431805217, - "moltres": 0.385685682247209, - "mewtwo": 0.8499432628613428, - "raikou": 1.9007191933534746, - "entei": 1.0595111731234588, - "suicune": 2.3226001027362604, - "lugia": 0.8071932173644112, - "ho-oh": 0.5071289470581818, - "latias": 1.1723973983915061, - "latios": 1.4190090801165662, - "kyogre": 0.7335062561335716, - "groudon": 0.6651857211811993, - "rayquaza": 0.34833340932658763, - "uxie": 1.559148054279323, - "mesprit": 1.4926671197461543, - "azelf": 1.422402428201933, - "dialga": 0.4902752908670259, - "palkia": 0.6208986823223894, - "heatran": 0.3151647269391354, - "giratina-altered": 0.6212228844234052, - "cresselia": 0.8009518721851859, - "tornadus-incarnate": 0.5981152467780896, - "thundurus-incarnate": 0.7825422889652223, - "reshiram": 0.42288237852026134, - "zekrom": 0.6591165034031944, - "landorus-incarnate": 0.6736732391490187, - "kyurem": 0.5031352766094758, - "xerneas": 0.44911924437163186, - "yveltal": 0.4832882485608123, - "zygarde-50": 0.5567763348666686, - "tapu-koko": 1.4301606699442986, - "tapu-lele": 1.6052926298959045, - "tapu-bulu": 0.9461801039394696, - "tapu-fini": 1.1780045887328323, - "solgaleo": 0.6755655077971624, - "lunala": 0.6500437080283623, - "nihilego": 0.8111551569125859, - "buzzwole": 1.0428153675203855, - "pheromosa": 1.2546363598636838, - "xurkitree": 0.967417940258763, - "celesteela": 0.6172005208031619, - "kartana": 1.6436866189152317, - "guzzlord": 0.9248689902188224, - "necrozma": 1.4936764729773873, - "stakataka": 0.774948957589521, - "blacephalon": 1.1607192406017355 + "articuno": 0.6002314205342252, + "zapdos": 0.6152366113434736, + "moltres": 0.3838254702246945, + "mewtwo": 0.8502388832607353, + "raikou": 1.9028373939862138, + "entei": 1.0565728606020934, + "suicune": 2.3287346807049847, + "lugia": 0.8056404909564352, + "ho-oh": 0.504740682233916, + "latias": 1.1725809273310055, + "latios": 1.4188166739732742, + "kyogre": 0.7354733397350715, + "groudon": 0.6671481143208072, + "rayquaza": 0.34710543278519324, + "uxie": 1.5607511472437006, + "mesprit": 1.4940640610805687, + "azelf": 1.4238347960036524, + "dialga": 0.4894359640432866, + "palkia": 0.6216718726443287, + "heatran": 0.3139998762285585, + "giratina-altered": 0.6205976721742181, + "cresselia": 0.8015280280787171, + "tornadus-incarnate": 0.5958062560095592, + "thundurus-incarnate": 0.7817157625698483, + "reshiram": 0.4212178790949039, + "zekrom": 0.6595351109925531, + "landorus-incarnate": 0.6747089316140681, + "kyurem": 0.5017520718707719, + "xerneas": 0.4492897802167125, + "yveltal": 0.4825352807165552, + "zygarde-50": 0.5579287872440586, + "tapu-koko": 1.4305025044710467, + "tapu-lele": 1.6050242743970684, + "tapu-bulu": 0.9460190159614428, + "tapu-fini": 1.1813425365048258, + "solgaleo": 0.6751560289066086, + "lunala": 0.6499600054517396, + "nihilego": 0.8085164243334436, + "buzzwole": 1.0400337653229526, + "pheromosa": 1.2507789572742463, + "xurkitree": 0.9695652330735363, + "celesteela": 0.6161730076829116, + "kartana": 1.6460694897023078, + "guzzlord": 0.9253573502227359, + "necrozma": 1.4959796681372173, + "stakataka": 0.775217503121144, + "blacephalon": 1.1566616545154984 }, "basculin-red-striped": { - "articuno": 0.8641821608098382, - "zapdos": 0.6112464993715164, - "moltres": 0.8270991490609066, - "mewtwo": 0.7931408005745182, - "raikou": 1.469608786198989, - "entei": 1.6752650768758675, - "suicune": 1.250198613652584, - "lugia": 0.9356007677843636, - "ho-oh": 1.1284704260938958, - "latias": 1.1222977371774503, - "latios": 1.3286261274130111, - "kyogre": 0.43764813594581076, - "groudon": 0.42697095295324816, - "rayquaza": 0.6265204303186993, - "uxie": 1.2355055335871314, - "mesprit": 1.1799952761242334, - "azelf": 1.1234225926413202, - "dialga": 0.5209870384088895, - "palkia": 0.49179141663225334, - "heatran": 0.7338563906754558, - "giratina-altered": 0.7121020477757023, - "cresselia": 0.7167783382097932, - "tornadus-incarnate": 0.8792732792399942, - "thundurus-incarnate": 0.7805606259980093, - "reshiram": 0.6114742886910389, - "zekrom": 0.5926478563378766, - "landorus-incarnate": 0.7265269115502289, - "kyurem": 0.5367130520632187, - "xerneas": 0.366331350610182, - "yveltal": 0.5469846145417269, - "zygarde-50": 0.5510538860464834, - "tapu-koko": 0.9449612548171196, - "tapu-lele": 1.573830011744918, - "tapu-bulu": 0.8905148125789378, - "tapu-fini": 0.642531881752203, - "solgaleo": 0.7365386970175296, - "lunala": 0.5805152518309011, - "nihilego": 1.4423155982618625, - "buzzwole": 1.0598084773885712, - "pheromosa": 1.5721064282069317, - "xurkitree": 0.6140853442522596, - "celesteela": 0.7894335987363629, - "kartana": 0.966013988372289, - "guzzlord": 0.7811222551863282, - "necrozma": 1.10009670027024, - "stakataka": 0.6759709324706922, - "blacephalon": 2.265575941335962 + "articuno": 0.8653252218093307, + "zapdos": 0.6108569150984082, + "moltres": 0.8297009840535803, + "mewtwo": 0.7927736968911042, + "raikou": 1.4661040595385524, + "entei": 1.6792367632231255, + "suicune": 1.249726671069776, + "lugia": 0.9356539952263445, + "ho-oh": 1.1326513991528402, + "latias": 1.121865167778796, + "latios": 1.3274634498767344, + "kyogre": 0.43730207132025933, + "groudon": 0.427713693357734, + "rayquaza": 0.626735823203245, + "uxie": 1.2341579726825573, + "mesprit": 1.1785639081500041, + "azelf": 1.1223067725227713, + "dialga": 0.5208713054053036, + "palkia": 0.49166470080715285, + "heatran": 0.7361237913204006, + "giratina-altered": 0.7121284412899705, + "cresselia": 0.7164964355481593, + "tornadus-incarnate": 0.880678307530309, + "thundurus-incarnate": 0.7793657089787857, + "reshiram": 0.6124139992136153, + "zekrom": 0.5910865313065645, + "landorus-incarnate": 0.7286798070860291, + "kyurem": 0.5364912015228784, + "xerneas": 0.36621269966522974, + "yveltal": 0.5468918879565547, + "zygarde-50": 0.5516786281225078, + "tapu-koko": 0.9432046839953716, + "tapu-lele": 1.5737511926717422, + "tapu-bulu": 0.888317480424659, + "tapu-fini": 0.6427607812940375, + "solgaleo": 0.7370294010319856, + "lunala": 0.5799821331638784, + "nihilego": 1.445634521018327, + "buzzwole": 1.0589870662111518, + "pheromosa": 1.5729127597920214, + "xurkitree": 0.6121605212352542, + "celesteela": 0.7908099188773369, + "kartana": 0.9604088967986629, + "guzzlord": 0.7802237784452526, + "necrozma": 1.098332428504325, + "stakataka": 0.6761946345854014, + "blacephalon": 2.273134780075714 }, "basculin-blue-striped": { - "articuno": 0.8322698346183973, - "zapdos": 0.5643568612990881, - "moltres": 0.8079253525784282, - "mewtwo": 0.8712257195265231, - "raikou": 1.4056920084387416, - "entei": 1.6537674970426113, - "suicune": 1.244215362478717, - "lugia": 0.9833007805205534, - "ho-oh": 1.019539900830581, - "latias": 1.1878348657788333, - "latios": 1.4048318073093902, - "kyogre": 0.43527379817919354, - "groudon": 0.4781388948075208, - "rayquaza": 0.3884569890439025, - "uxie": 1.361147892462643, - "mesprit": 1.3001920598908758, - "azelf": 1.2377993659639956, - "dialga": 0.5396213182067441, - "palkia": 0.48930272850927947, - "heatran": 0.7082371374752404, - "giratina-altered": 0.7541901410071996, - "cresselia": 0.7912745267848125, - "tornadus-incarnate": 0.80945843748452, - "thundurus-incarnate": 0.7144763330228814, - "reshiram": 0.5884238892284713, - "zekrom": 0.5011885561540262, - "landorus-incarnate": 0.6703865666363024, - "kyurem": 0.5344184719896935, - "xerneas": 0.35787058620630435, - "yveltal": 0.5090485596054004, - "zygarde-50": 0.40699103764040345, - "tapu-koko": 0.937232570327406, - "tapu-lele": 1.4933777067363159, - "tapu-bulu": 0.7251684641884358, - "tapu-fini": 0.5856522604894057, - "solgaleo": 0.8124176521150106, - "lunala": 0.8984605678484044, - "nihilego": 1.2892190029780983, - "buzzwole": 1.203906948250478, - "pheromosa": 1.3912335001031066, - "xurkitree": 0.6013969818488153, - "celesteela": 0.7721540863855609, - "kartana": 1.1536331059632983, - "guzzlord": 0.6178162241343834, - "necrozma": 1.2057032630928624, - "stakataka": 0.848210402573665, - "blacephalon": 2.087246494067986 + "articuno": 0.8324951010695605, + "zapdos": 0.563064580203445, + "moltres": 0.8098911063079164, + "mewtwo": 0.8711280839607618, + "raikou": 1.400564286694652, + "entei": 1.6570686773957788, + "suicune": 1.243117739053487, + "lugia": 0.9829682988288062, + "ho-oh": 1.021818088492815, + "latias": 1.1870218675833852, + "latios": 1.4032133784658267, + "kyogre": 0.43457672212550874, + "groudon": 0.47869298354263723, + "rayquaza": 0.3876498243329465, + "uxie": 1.3601532782388561, + "mesprit": 1.2990715404439221, + "azelf": 1.2369909521427167, + "dialga": 0.5393372375931555, + "palkia": 0.4887059082448453, + "heatran": 0.710361673545799, + "giratina-altered": 0.7537102069248602, + "cresselia": 0.7911907869450632, + "tornadus-incarnate": 0.8093893784654798, + "thundurus-incarnate": 0.7121272927632266, + "reshiram": 0.5886581286720045, + "zekrom": 0.4991592842918302, + "landorus-incarnate": 0.6711328866040558, + "kyurem": 0.5337613319820785, + "xerneas": 0.357250051380952, + "yveltal": 0.5084710158765084, + "zygarde-50": 0.4067172662311441, + "tapu-koko": 0.9343317169148717, + "tapu-lele": 1.4919583235483072, + "tapu-bulu": 0.7220147636726152, + "tapu-fini": 0.5851019026147851, + "solgaleo": 0.8138225292132675, + "lunala": 0.8986710193701173, + "nihilego": 1.288798565550583, + "buzzwole": 1.2025382256981412, + "pheromosa": 1.3891226248867488, + "xurkitree": 0.5989559660660609, + "celesteela": 0.7731128239388603, + "kartana": 1.1479797329576495, + "guzzlord": 0.6162847117052694, + "necrozma": 1.2043176089507768, + "stakataka": 0.8491290327198681, + "blacephalon": 2.093483239271181 }, "krookodile": { - "articuno": 0.798671911480515, - "zapdos": 0.893809995006438, - "moltres": 0.644608152179273, - "mewtwo": 1.1711847272553486, - "raikou": 2.157989801066317, - "entei": 1.592709771935826, - "suicune": 1.4847613694492452, - "lugia": 1.4736207373227375, - "ho-oh": 0.9274927377674217, - "latias": 1.5895813784227786, - "latios": 2.136143717373975, - "kyogre": 0.4640048088679558, - "groudon": 0.37028398602795165, - "rayquaza": 0.5120630422262246, - "uxie": 2.220015577757711, - "mesprit": 1.9610469945697429, - "azelf": 1.7595741436365873, - "dialga": 0.8300330618598126, - "palkia": 0.539014081744295, - "heatran": 0.9085686412527008, - "giratina-altered": 1.180493652532904, - "cresselia": 1.1176022491368889, - "tornadus-incarnate": 0.8809590195413652, - "thundurus-incarnate": 1.2325951210421473, - "reshiram": 0.7083168472188626, - "zekrom": 0.9135552279949806, - "landorus-incarnate": 0.5955587775897253, - "kyurem": 0.6004147909722493, - "xerneas": 0.31210598021750424, - "yveltal": 0.5567881176093262, - "zygarde-50": 0.46003385877487535, - "tapu-koko": 1.711201207347614, - "tapu-lele": 1.9504454523181338, - "tapu-bulu": 0.7679779708269385, - "tapu-fini": 0.5337192340585526, - "solgaleo": 1.1462295980971855, - "lunala": 1.4569104921672738, - "nihilego": 1.39457841225931, - "buzzwole": 0.8892985607763433, - "pheromosa": 1.2340400163638758, - "xurkitree": 1.0917498988835401, - "celesteela": 0.8928981434562026, - "kartana": 1.4869712762320146, - "guzzlord": 0.766577158443267, - "necrozma": 2.0462639151456443, - "stakataka": 1.3229895499347482, - "blacephalon": 2.689845939727962 + "articuno": 0.7966203850216775, + "zapdos": 0.8954328915482361, + "moltres": 0.6444511785423539, + "mewtwo": 1.1747889833565084, + "raikou": 2.16571486995981, + "entei": 1.5959010704989902, + "suicune": 1.4837456220967686, + "lugia": 1.4760674102270603, + "ho-oh": 0.9285530159748383, + "latias": 1.5924097552564977, + "latios": 2.1402243950091293, + "kyogre": 0.4636514593775064, + "groudon": 0.3702755767176287, + "rayquaza": 0.5118826022178465, + "uxie": 2.227203172740885, + "mesprit": 1.9633984066189651, + "azelf": 1.7615528861063927, + "dialga": 0.8318668825817699, + "palkia": 0.5387037239333494, + "heatran": 0.9114730952963523, + "giratina-altered": 1.1842501167461412, + "cresselia": 1.1199970619598236, + "tornadus-incarnate": 0.8802985128401446, + "thundurus-incarnate": 1.2354649712126855, + "reshiram": 0.7097945479109373, + "zekrom": 0.9168617750390503, + "landorus-incarnate": 0.5952296053007793, + "kyurem": 0.5995885268459292, + "xerneas": 0.31116153361994525, + "yveltal": 0.5566629211960973, + "zygarde-50": 0.4602712785939705, + "tapu-koko": 1.7165641224012642, + "tapu-lele": 1.955110137540635, + "tapu-bulu": 0.7651926493007087, + "tapu-fini": 0.5320790832158575, + "solgaleo": 1.1503717964610036, + "lunala": 1.4607932266536263, + "nihilego": 1.399093877245345, + "buzzwole": 0.8858474824011313, + "pheromosa": 1.2300688188341014, + "xurkitree": 1.0958794165988555, + "celesteela": 0.8931783778387159, + "kartana": 1.4840710534778352, + "guzzlord": 0.7667770666985788, + "necrozma": 2.0558524904471467, + "stakataka": 1.327122041846736, + "blacephalon": 2.6993720808031267 }, "maractus": { - "articuno": 0.596862496522147, - "zapdos": 0.601129052395793, - "moltres": 0.4076532900307546, - "mewtwo": 0.7781302345476901, - "raikou": 1.8503255195448745, - "entei": 1.0310550372377492, - "suicune": 2.501552002412967, - "lugia": 0.9485808964468491, - "ho-oh": 0.5925473724349561, - "latias": 1.2958344765514345, - "latios": 1.3623624241151853, - "kyogre": 0.9425319188009431, - "groudon": 0.6391114515159488, - "rayquaza": 0.36717058040606565, - "uxie": 1.4299279021760103, - "mesprit": 1.3687214200488083, - "azelf": 1.3042303463039053, - "dialga": 0.5059414675641801, - "palkia": 0.7192218379292421, - "heatran": 0.34042982650361286, - "giratina-altered": 0.7251943900131987, - "cresselia": 0.7401188170324005, - "tornadus-incarnate": 0.5841990802232393, - "thundurus-incarnate": 0.7686694329348851, - "reshiram": 0.46147240066849604, - "zekrom": 0.6202744853738446, - "landorus-incarnate": 0.6543883380561888, - "kyurem": 0.4731515018934018, - "xerneas": 0.4351644553948036, - "yveltal": 0.4546038093896657, - "zygarde-50": 0.5412819874804078, - "tapu-koko": 1.3846257228001797, - "tapu-lele": 1.560894826860919, - "tapu-bulu": 0.8920767185157188, - "tapu-fini": 1.4010797732646092, - "solgaleo": 0.7114554323983052, - "lunala": 0.8565896472763385, - "nihilego": 0.8009866659788962, - "buzzwole": 1.0127608865878337, - "pheromosa": 1.2239620915686675, - "xurkitree": 0.9409522215537659, - "celesteela": 0.6762815121728694, - "kartana": 1.2483967031915224, - "guzzlord": 0.6837274924630655, - "necrozma": 1.3722259340748526, - "stakataka": 0.7494462510019326, - "blacephalon": 1.4986817180393002 + "articuno": 0.5945760431039504, + "zapdos": 0.600563289838941, + "moltres": 0.40602281297163445, + "mewtwo": 0.7786927361710696, + "raikou": 1.8539734578194556, + "entei": 1.028853842086285, + "suicune": 2.518674748483138, + "lugia": 0.947933613509405, + "ho-oh": 0.5904525435069017, + "latias": 1.2974280376731824, + "latios": 1.3621911372847277, + "kyogre": 0.9501041751552881, + "groudon": 0.6419037466091803, + "rayquaza": 0.36603520397875167, + "uxie": 1.431985016241844, + "mesprit": 1.370559832955886, + "azelf": 1.3060934317806825, + "dialga": 0.5053059784555137, + "palkia": 0.7225185658401327, + "heatran": 0.3395280747145383, + "giratina-altered": 0.7255813373931044, + "cresselia": 0.7409849428411084, + "tornadus-incarnate": 0.582374628332426, + "thundurus-incarnate": 0.7685682712396722, + "reshiram": 0.4599324737266753, + "zekrom": 0.620689393166312, + "landorus-incarnate": 0.656222417147305, + "kyurem": 0.47184690833623066, + "xerneas": 0.43574594979209047, + "yveltal": 0.45382306460534816, + "zygarde-50": 0.5427775815574158, + "tapu-koko": 1.386318028656064, + "tapu-lele": 1.5619865847204255, + "tapu-bulu": 0.8916038009135707, + "tapu-fini": 1.4128232319876741, + "solgaleo": 0.7115156146882722, + "lunala": 0.8581505273784622, + "nihilego": 0.7992774914016179, + "buzzwole": 1.0101585030350508, + "pheromosa": 1.2204778245432895, + "xurkitree": 0.9438139385266942, + "celesteela": 0.6759133292182575, + "kartana": 1.2486515350733782, + "guzzlord": 0.6831469757690736, + "necrozma": 1.374765499991937, + "stakataka": 0.7504876591338387, + "blacephalon": 1.4964730143366807 }, "crustle": { - "articuno": 1.4987312466140392, - "zapdos": 0.9256329775887772, - "moltres": 1.080451821866404, - "mewtwo": 1.1004407362775834, - "raikou": 1.908073474223962, - "entei": 1.637593382606656, - "suicune": 1.4013380707681709, - "lugia": 1.1132741056928204, - "ho-oh": 1.5804452586013662, - "latias": 1.3900839624866048, - "latios": 1.9268215996690765, - "kyogre": 0.4200747760114387, - "groudon": 0.3731030057292165, - "rayquaza": 0.5952190830820905, - "uxie": 1.885347331525447, - "mesprit": 1.84842442896242, - "azelf": 1.7428573403254166, - "dialga": 0.6359823628084442, - "palkia": 0.4964291868645143, - "heatran": 0.5448714957251464, - "giratina-altered": 0.6719636266265312, - "cresselia": 1.035985170644318, - "tornadus-incarnate": 1.0495826663263284, - "thundurus-incarnate": 1.2518949593796225, - "reshiram": 0.7791233514833567, - "zekrom": 0.7164746971199139, - "landorus-incarnate": 0.5306773142389117, - "kyurem": 0.7733610057426756, - "xerneas": 0.3809196134383456, - "yveltal": 0.7038935675687248, - "zygarde-50": 0.45853376738935325, - "tapu-koko": 1.1493099531536455, - "tapu-lele": 1.750574487570562, - "tapu-bulu": 1.0536644417166634, - "tapu-fini": 0.5750289481744096, - "solgaleo": 0.7237399825283131, - "lunala": 0.6530176969844719, - "nihilego": 1.14512942323332, - "buzzwole": 1.0487723534871314, - "pheromosa": 1.498803936912334, - "xurkitree": 0.8196185263692664, - "celesteela": 0.7476514272580184, - "kartana": 1.3355741609256109, - "guzzlord": 1.1500430093651395, - "necrozma": 1.5920780395389078, - "stakataka": 0.7669965795207715, - "blacephalon": 2.1271320791788066 + "articuno": 1.5013679150055501, + "zapdos": 0.9269617339898095, + "moltres": 1.082372284849215, + "mewtwo": 1.101855678584107, + "raikou": 1.9119846321014669, + "entei": 1.6410000674816603, + "suicune": 1.4009490272597682, + "lugia": 1.1131982109423577, + "ho-oh": 1.5841180150238134, + "latias": 1.3912491153559685, + "latios": 1.9298145980604575, + "kyogre": 0.4199736369798247, + "groudon": 0.3734144375523723, + "rayquaza": 0.5960121526895981, + "uxie": 1.887510207359676, + "mesprit": 1.851356840203779, + "azelf": 1.7458154008323687, + "dialga": 0.6358511664565798, + "palkia": 0.49649235443230355, + "heatran": 0.5456385863290981, + "giratina-altered": 0.6714721347019663, + "cresselia": 1.0376407099765734, + "tornadus-incarnate": 1.0504237077514949, + "thundurus-incarnate": 1.2533926205519945, + "reshiram": 0.7801513694233146, + "zekrom": 0.7179198506400657, + "landorus-incarnate": 0.5308263598115464, + "kyurem": 0.7750923278768584, + "xerneas": 0.3808736434451379, + "yveltal": 0.7053971032601909, + "zygarde-50": 0.45897907089023504, + "tapu-koko": 1.1495965497871703, + "tapu-lele": 1.7522246469844251, + "tapu-bulu": 1.0549517772059167, + "tapu-fini": 0.5737019671553634, + "solgaleo": 0.7236549120336102, + "lunala": 0.6528462375106627, + "nihilego": 1.145305503842314, + "buzzwole": 1.0482878177679018, + "pheromosa": 1.4993249342707538, + "xurkitree": 0.8205078795029837, + "celesteela": 0.746974470070014, + "kartana": 1.3362355314911896, + "guzzlord": 1.1542834167294898, + "necrozma": 1.592626928651649, + "stakataka": 0.7676483261769134, + "blacephalon": 2.12902577545708 }, "sigilyph": { - "articuno": 0.7765001668314604, - "zapdos": 0.6531880297954458, - "moltres": 0.6277671001322976, - "mewtwo": 0.7659589148301131, - "raikou": 1.5209937533614961, - "entei": 1.3005670712038881, - "suicune": 1.49179892430184, - "lugia": 0.9012916027601703, - "ho-oh": 0.706792122649256, - "latias": 0.999352435405034, - "latios": 1.315552565023735, - "kyogre": 0.43868817666918825, - "groudon": 0.4914504356488683, - "rayquaza": 0.45812852371862967, - "uxie": 1.356487036906557, - "mesprit": 1.3208738142078693, - "azelf": 1.2480134330522779, - "dialga": 0.5257498001936148, - "palkia": 0.5277919774847454, - "heatran": 0.41194488569590615, - "giratina-altered": 0.6667609488738083, - "cresselia": 0.7208492041916263, - "tornadus-incarnate": 0.8066747109473884, - "thundurus-incarnate": 0.8330507396572852, - "reshiram": 0.6142882697873326, - "zekrom": 0.6559164313493331, - "landorus-incarnate": 0.6503180102355548, - "kyurem": 0.6091536832214799, - "xerneas": 0.4595350391868278, - "yveltal": 0.4939684982208946, - "zygarde-50": 0.5375803109618531, - "tapu-koko": 1.132411285715658, - "tapu-lele": 1.7437106893794652, - "tapu-bulu": 1.503753387931921, - "tapu-fini": 0.708872819780286, - "solgaleo": 0.6359339784340945, - "lunala": 0.5542109141588731, - "nihilego": 1.0501568598941242, - "buzzwole": 3.109556221120602, - "pheromosa": 3.014360285573468, - "xurkitree": 0.7061440569000736, - "celesteela": 0.7147399052541961, - "kartana": 1.9266176580993304, - "guzzlord": 0.7303308167244387, - "necrozma": 1.2284685145767273, - "stakataka": 0.5378856998533634, - "blacephalon": 1.4362827384714696 + "articuno": 0.7757586555355138, + "zapdos": 0.652447648796511, + "moltres": 0.6284540638096991, + "mewtwo": 0.766452192944406, + "raikou": 1.5170564252794825, + "entei": 1.300980599605579, + "suicune": 1.493152656185023, + "lugia": 0.9012108606141592, + "ho-oh": 0.7068388951013473, + "latias": 0.999878078307733, + "latios": 1.3170772249937106, + "kyogre": 0.43837398619110857, + "groudon": 0.4938103521793491, + "rayquaza": 0.4583847735765346, + "uxie": 1.356900565136573, + "mesprit": 1.321802436685525, + "azelf": 1.2489163377165966, + "dialga": 0.525372922330987, + "palkia": 0.5278019807162486, + "heatran": 0.4115468936320899, + "giratina-altered": 0.6663235394538055, + "cresselia": 0.721555975855498, + "tornadus-incarnate": 0.8072538455180978, + "thundurus-incarnate": 0.8314160563408308, + "reshiram": 0.6148864374107468, + "zekrom": 0.6547526143836822, + "landorus-incarnate": 0.6527980755213243, + "kyurem": 0.6086009645552313, + "xerneas": 0.4605942063436883, + "yveltal": 0.49295208394662804, + "zygarde-50": 0.5393820748232145, + "tapu-koko": 1.1315797445880744, + "tapu-lele": 1.747073127826789, + "tapu-bulu": 1.510215947372569, + "tapu-fini": 0.7097443446733054, + "solgaleo": 0.6355659354826915, + "lunala": 0.5529451828079022, + "nihilego": 1.048839049659141, + "buzzwole": 3.1247465900226405, + "pheromosa": 3.0243215502986147, + "xurkitree": 0.7046796926990702, + "celesteela": 0.7148795016069881, + "kartana": 1.93276306602684, + "guzzlord": 0.7292396167031714, + "necrozma": 1.2286177305034096, + "stakataka": 0.5371711007689697, + "blacephalon": 1.4365316936403145 }, "cofagrigus": { - "articuno": 0.8108801632845538, - "zapdos": 0.7306037605378508, - "moltres": 0.6217742355770102, - "mewtwo": 1.0868695886605009, - "raikou": 1.7903274021608309, - "entei": 1.3614517362027638, - "suicune": 1.5071783269863899, - "lugia": 1.1928219647544915, - "ho-oh": 0.7212406176964563, - "latias": 1.2901877216379396, - "latios": 1.6996756794641001, - "kyogre": 0.4548748665583835, - "groudon": 0.42189993523122915, - "rayquaza": 0.4722734325262663, - "uxie": 1.8562894007244806, - "mesprit": 1.9136177307816413, - "azelf": 1.7770453097325607, - "dialga": 0.7059170526403957, - "palkia": 0.5479719108234354, - "heatran": 0.51582654653032, - "giratina-altered": 0.9557629353187079, - "cresselia": 0.9790379105985059, - "tornadus-incarnate": 0.8297062875121762, - "thundurus-incarnate": 0.9810366024014505, - "reshiram": 0.5957218098403634, - "zekrom": 0.7479857723567255, - "landorus-incarnate": 0.6022163983717814, - "kyurem": 0.647961744093612, - "xerneas": 0.40832213195813477, - "yveltal": 0.431083781663152, - "zygarde-50": 0.4835081832786635, - "tapu-koko": 1.2930485839522823, - "tapu-lele": 1.9758699823630401, - "tapu-bulu": 1.1329646197705112, - "tapu-fini": 0.6989830067861824, - "solgaleo": 1.1040288058645982, - "lunala": 1.1450337931818761, - "nihilego": 1.0319657419737973, - "buzzwole": 1.7561409411414497, - "pheromosa": 1.8831855568094358, - "xurkitree": 0.8010141998164229, - "celesteela": 0.8485247380316898, - "kartana": 1.8861862040877502, - "guzzlord": 0.6573666788986239, - "necrozma": 1.722423426165106, - "stakataka": 0.7211834487971562, - "blacephalon": 1.8963755988592665 + "articuno": 0.8106384095989811, + "zapdos": 0.7312242240717108, + "moltres": 0.6221835885278222, + "mewtwo": 1.0878767483467668, + "raikou": 1.7923643272149632, + "entei": 1.3627947180420568, + "suicune": 1.5085658205023023, + "lugia": 1.1935583356179145, + "ho-oh": 0.7214766627082805, + "latias": 1.290851789971435, + "latios": 1.701755683923242, + "kyogre": 0.4548782293690107, + "groudon": 0.42268233310954284, + "rayquaza": 0.472639806614624, + "uxie": 1.8570435484798296, + "mesprit": 1.9176362913965281, + "azelf": 1.7804096163435625, + "dialga": 0.7066787680350778, + "palkia": 0.5484127102656469, + "heatran": 0.5158901572892424, + "giratina-altered": 0.9563348351673794, + "cresselia": 0.9800168882650382, + "tornadus-incarnate": 0.8299163791310831, + "thundurus-incarnate": 0.981927182616305, + "reshiram": 0.5958589873377339, + "zekrom": 0.7491858989170359, + "landorus-incarnate": 0.6032974915951164, + "kyurem": 0.6478714402985253, + "xerneas": 0.4085048824542902, + "yveltal": 0.42982653077335975, + "zygarde-50": 0.48410327391947117, + "tapu-koko": 1.2945242198025926, + "tapu-lele": 1.9774459682601533, + "tapu-bulu": 1.1351726947417915, + "tapu-fini": 0.6991604062253324, + "solgaleo": 1.1059772806714003, + "lunala": 1.1452424608011236, + "nihilego": 1.032013613460367, + "buzzwole": 1.7640476075418974, + "pheromosa": 1.8886433054836318, + "xurkitree": 0.8011292318710537, + "celesteela": 0.8492210944908225, + "kartana": 1.8897008067572911, + "guzzlord": 0.6560638065012261, + "necrozma": 1.7242321837063455, + "stakataka": 0.7219927775394144, + "blacephalon": 1.8983238338302686 }, "garbodor": { - "articuno": 0.8245782524719023, - "zapdos": 0.6993513618873686, - "moltres": 0.5832353626220983, - "mewtwo": 0.7207337491943144, - "raikou": 1.7192973529349598, - "entei": 1.2260949890741866, - "suicune": 1.3126830904558484, - "lugia": 0.8752826425538653, - "ho-oh": 0.7631922677306042, - "latias": 0.9937094664090842, - "latios": 1.24357763300661, - "kyogre": 0.48492427154645, - "groudon": 0.2656786898074355, - "rayquaza": 0.4497558034925427, - "uxie": 1.193674957520325, - "mesprit": 1.191578816416285, - "azelf": 1.1795666664624063, - "dialga": 0.6436990632271488, - "palkia": 0.5366207588869543, - "heatran": 0.5222264420094018, - "giratina-altered": 0.5716966458823332, - "cresselia": 0.6695113808218418, - "tornadus-incarnate": 0.824778221270472, - "thundurus-incarnate": 0.9584055765020747, - "reshiram": 0.5832476095947929, - "zekrom": 0.6363355268216488, - "landorus-incarnate": 0.39908861434953835, - "kyurem": 0.6229247353752165, - "xerneas": 0.5714000704729081, - "yveltal": 0.5409218611251756, - "zygarde-50": 0.3101624670991717, - "tapu-koko": 1.5371056580435927, - "tapu-lele": 2.0127136646758403, - "tapu-bulu": 1.913684612356457, - "tapu-fini": 0.9471405266830838, - "solgaleo": 0.5773108749149078, - "lunala": 0.5180999779332454, - "nihilego": 1.0117926396502055, - "buzzwole": 1.2013812432809077, - "pheromosa": 1.5193392845138458, - "xurkitree": 0.7814857575860881, - "celesteela": 0.6009079926407136, - "kartana": 1.3118154643044935, - "guzzlord": 0.7811619420108801, - "necrozma": 1.0860915432502625, - "stakataka": 0.7239386035702013, - "blacephalon": 1.2351460659664366 + "articuno": 0.825257642833773, + "zapdos": 0.7000970241281117, + "moltres": 0.5837618289946925, + "mewtwo": 0.7192802796256812, + "raikou": 1.721020593201647, + "entei": 1.227506985976987, + "suicune": 1.3129093429665888, + "lugia": 0.8747978586126967, + "ho-oh": 0.7636539582472393, + "latias": 0.9926176399697759, + "latios": 1.242708787697552, + "kyogre": 0.48550418424527997, + "groudon": 0.26515509416041616, + "rayquaza": 0.4499797869948562, + "uxie": 1.1918325102918705, + "mesprit": 1.1906368540913066, + "azelf": 1.1787722168914088, + "dialga": 0.6433676357638808, + "palkia": 0.5373099416425118, + "heatran": 0.5221420552441036, + "giratina-altered": 0.5710208036588871, + "cresselia": 0.6685865922735499, + "tornadus-incarnate": 0.8255182867621994, + "thundurus-incarnate": 0.9594698562456485, + "reshiram": 0.5838015334081075, + "zekrom": 0.6369167815632288, + "landorus-incarnate": 0.3982314350775175, + "kyurem": 0.623799114824841, + "xerneas": 0.5740465503079761, + "yveltal": 0.5415282884519697, + "zygarde-50": 0.30943363231361165, + "tapu-koko": 1.5416676096349287, + "tapu-lele": 2.013898416273156, + "tapu-bulu": 1.9260848175704905, + "tapu-fini": 0.9503760179630205, + "solgaleo": 0.5756510901968575, + "lunala": 0.5174337547392565, + "nihilego": 1.011634265956611, + "buzzwole": 1.2035070043803757, + "pheromosa": 1.5218882005506835, + "xurkitree": 0.7825532043206067, + "celesteela": 0.5996017826713247, + "kartana": 1.3115564585011152, + "guzzlord": 0.7819861330190983, + "necrozma": 1.084419471168096, + "stakataka": 0.7237588606585397, + "blacephalon": 1.2334089035444953 }, "cinccino": { - "articuno": 0.74121938970304, - "zapdos": 0.7244655904579689, - "moltres": 0.5204974020656996, - "mewtwo": 0.7001284495111426, - "raikou": 1.53217724162488, - "entei": 1.1075913459901354, - "suicune": 1.2328161628381418, - "lugia": 0.9489354804104086, - "ho-oh": 0.7037746020047775, - "latias": 1.0815479663922059, - "latios": 1.3004058449182676, - "kyogre": 0.42319659636837437, - "groudon": 0.3357256150961489, - "rayquaza": 0.637836106418032, - "uxie": 1.2145774358282384, - "mesprit": 1.112111645132845, - "azelf": 1.0550936331287055, - "dialga": 0.5008292631552498, - "palkia": 0.47388975226548014, - "heatran": 0.36486560227829645, - "giratina-altered": 0.8060708177633297, - "cresselia": 0.6463243033989787, - "tornadus-incarnate": 0.8494015266446024, - "thundurus-incarnate": 0.9451319528875839, - "reshiram": 0.5380366114905291, - "zekrom": 0.6544770538593152, - "landorus-incarnate": 0.7216723915773318, - "kyurem": 0.5469445482939476, - "xerneas": 0.34944237888961505, - "yveltal": 0.5574783762018471, - "zygarde-50": 0.55732777378806, - "tapu-koko": 1.0300200646001283, - "tapu-lele": 1.4363034180289678, - "tapu-bulu": 0.9362540952248684, - "tapu-fini": 0.6159998991520503, - "solgaleo": 0.5400108158965999, - "lunala": 0.5599751607971186, - "nihilego": 0.9064269342011773, - "buzzwole": 0.9180626754620758, - "pheromosa": 1.256949675418368, - "xurkitree": 0.689049968053935, - "celesteela": 0.6343422723361929, - "kartana": 1.1240804680724452, - "guzzlord": 0.7818154639962549, - "necrozma": 1.0678776417905915, - "stakataka": 0.44658100690734004, - "blacephalon": 1.1665377696172856 + "articuno": 0.7405836993371251, + "zapdos": 0.7249855383922073, + "moltres": 0.5202641573210812, + "mewtwo": 0.6993272116474702, + "raikou": 1.530866885646724, + "entei": 1.1062070190894706, + "suicune": 1.2309407566520587, + "lugia": 0.9490375439302539, + "ho-oh": 0.7037078943058198, + "latias": 1.081797840340126, + "latios": 1.2997875831386296, + "kyogre": 0.42272559518864494, + "groudon": 0.33544986282890565, + "rayquaza": 0.6386090573734738, + "uxie": 1.2143517860695594, + "mesprit": 1.110697831321807, + "azelf": 1.0538349916184928, + "dialga": 0.5000793187809176, + "palkia": 0.4736364465172279, + "heatran": 0.36404982723151813, + "giratina-altered": 0.8072017641130476, + "cresselia": 0.6457257253479544, + "tornadus-incarnate": 0.8499341310621661, + "thundurus-incarnate": 0.9455231719801453, + "reshiram": 0.5378380527321951, + "zekrom": 0.6544190071909697, + "landorus-incarnate": 0.7224274154787786, + "kyurem": 0.5467893411669247, + "xerneas": 0.34926902773471624, + "yveltal": 0.5576217482769801, + "zygarde-50": 0.558039855062211, + "tapu-koko": 1.0293938062220036, + "tapu-lele": 1.4354957108685245, + "tapu-bulu": 0.9354779528889955, + "tapu-fini": 0.6154067640743792, + "solgaleo": 0.5386285155359614, + "lunala": 0.5599687569969531, + "nihilego": 0.9050416480089203, + "buzzwole": 0.915307915583506, + "pheromosa": 1.2542733013402205, + "xurkitree": 0.6885174572509369, + "celesteela": 0.6336786812051457, + "kartana": 1.1210200468774913, + "guzzlord": 0.781759803535552, + "necrozma": 1.0666389905949702, + "stakataka": 0.444957714634163, + "blacephalon": 1.1639486134432029 }, "vanillish": { - "articuno": 0.8158964335626503, - "zapdos": 0.8753332136162891, - "moltres": 0.46870868728365045, - "mewtwo": 0.7850832074184079, - "raikou": 1.5081900686265817, - "entei": 0.9659869903863321, - "suicune": 1.1456443088042163, - "lugia": 1.0551367604554085, - "ho-oh": 0.5583310524836099, - "latias": 1.1525425057164895, - "latios": 1.4173627841441179, - "kyogre": 0.36190043585801673, - "groudon": 0.4484050286397324, - "rayquaza": 0.837213860181417, - "uxie": 1.2430233144953768, - "mesprit": 1.1881326473201805, - "azelf": 1.1236388300298978, - "dialga": 0.5424996721770737, - "palkia": 0.4677490524861825, - "heatran": 0.28228521766603293, - "giratina-altered": 0.868455834755302, - "cresselia": 0.6896685647737741, - "tornadus-incarnate": 0.9465626908202049, - "thundurus-incarnate": 1.117923660776568, - "reshiram": 0.499594676334877, - "zekrom": 0.8481323196214938, - "landorus-incarnate": 0.943746195254022, - "kyurem": 0.6013027153656856, - "xerneas": 0.3707332948860538, - "yveltal": 0.6720163583706857, - "zygarde-50": 0.807732987309616, - "tapu-koko": 1.1364638131682416, - "tapu-lele": 1.3572673791546555, - "tapu-bulu": 1.1968864018732437, - "tapu-fini": 0.5627174128143717, - "solgaleo": 0.49677737460046567, - "lunala": 0.5553853637727619, - "nihilego": 0.8075764024155909, - "buzzwole": 1.1048631885299458, - "pheromosa": 1.318847944030224, - "xurkitree": 0.7327791909600064, - "celesteela": 0.6604124085274492, - "kartana": 1.6533378543588442, - "guzzlord": 0.9324849720278885, - "necrozma": 1.1087481467478284, - "stakataka": 0.4493073178414885, - "blacephalon": 1.0200245217683057 + "articuno": 0.8165049462677659, + "zapdos": 0.8768514070062183, + "moltres": 0.46776413593947497, + "mewtwo": 0.7848714320069843, + "raikou": 1.506549343560673, + "entei": 0.9625788863398359, + "suicune": 1.1434030693035626, + "lugia": 1.0557163104778584, + "ho-oh": 0.5561813440973908, + "latias": 1.1532613008696162, + "latios": 1.4174256676598829, + "kyogre": 0.3611291387615193, + "groudon": 0.44875974955282555, + "rayquaza": 0.8395969617683512, + "uxie": 1.242352549496071, + "mesprit": 1.1873664817613825, + "azelf": 1.1228801980953234, + "dialga": 0.5411624616132387, + "palkia": 0.46722601886742565, + "heatran": 0.28089384127394057, + "giratina-altered": 0.8688532789529713, + "cresselia": 0.6893527749314752, + "tornadus-incarnate": 0.9476877183926595, + "thundurus-incarnate": 1.1195791036318787, + "reshiram": 0.4985017048533432, + "zekrom": 0.84915212677136, + "landorus-incarnate": 0.946041219056911, + "kyurem": 0.601678227071573, + "xerneas": 0.3707346539863965, + "yveltal": 0.672931656401768, + "zygarde-50": 0.8105105923540481, + "tapu-koko": 1.1365666301333306, + "tapu-lele": 1.3557860376930841, + "tapu-bulu": 1.197408497803519, + "tapu-fini": 0.5619471232964008, + "solgaleo": 0.4943393628866075, + "lunala": 0.5545046622993387, + "nihilego": 0.8045141749323605, + "buzzwole": 1.1034737844891382, + "pheromosa": 1.316255179716098, + "xurkitree": 0.7325797551791229, + "celesteela": 0.6585958830046053, + "kartana": 1.6540119683875223, + "guzzlord": 0.9332476015561146, + "necrozma": 1.1073659754611813, + "stakataka": 0.44729868781240645, + "blacephalon": 1.0151587220191631 }, "emolga": { - "articuno": 0.7156749292217582, - "zapdos": 0.6150484558372791, - "moltres": 0.6561112533639435, - "mewtwo": 0.6008185629389224, - "raikou": 1.22335045014941, - "entei": 1.1027517008103245, - "suicune": 1.5203830295233018, - "lugia": 0.9443847028129086, - "ho-oh": 0.7136139632824205, - "latias": 0.8602428880998252, - "latios": 1.113923132742384, - "kyogre": 0.4483333852844551, - "groudon": 0.367368757745846, - "rayquaza": 0.4019323884576629, - "uxie": 1.1204755191617113, - "mesprit": 1.069092417612634, - "azelf": 1.0112797556454647, - "dialga": 0.4595208896407892, - "palkia": 0.42830940998500544, - "heatran": 0.4203819454873168, - "giratina-altered": 0.5534791045878189, - "cresselia": 0.577364816371257, - "tornadus-incarnate": 0.864064025629643, - "thundurus-incarnate": 0.7446775585000138, - "reshiram": 0.5015875269085966, - "zekrom": 0.469740656092541, - "landorus-incarnate": 0.5113290564221626, - "kyurem": 0.4358494727946768, - "xerneas": 0.3377496398496198, - "yveltal": 0.6042490065631458, - "zygarde-50": 0.4158019976155821, - "tapu-koko": 0.8875632250415564, - "tapu-lele": 1.334164351110485, - "tapu-bulu": 1.1145490410769885, - "tapu-fini": 0.7348996508068679, - "solgaleo": 0.6787194693754233, - "lunala": 0.5107478361706024, - "nihilego": 0.752989496641663, - "buzzwole": 1.4584953348930916, - "pheromosa": 2.2395319603894666, - "xurkitree": 0.575292094925757, - "celesteela": 1.033846235946486, - "kartana": 1.3228745811538063, - "guzzlord": 0.656519210395947, - "necrozma": 1.0036254228113997, - "stakataka": 0.5184540065852892, - "blacephalon": 1.2896856714627614 + "articuno": 0.713807141715677, + "zapdos": 0.6146451630614471, + "moltres": 0.6566561647766416, + "mewtwo": 0.5991960918744539, + "raikou": 1.2188601568530748, + "entei": 1.1012004569007532, + "suicune": 1.5199019484646261, + "lugia": 0.9440014686944496, + "ho-oh": 0.7130914037408072, + "latias": 0.8578179962755129, + "latios": 1.1112402183681385, + "kyogre": 0.4481430243163928, + "groudon": 0.3674198029872671, + "rayquaza": 0.40150268475349554, + "uxie": 1.1182566671818857, + "mesprit": 1.066825337348674, + "azelf": 1.0092160335378726, + "dialga": 0.45839785918319353, + "palkia": 0.42737525617703853, + "heatran": 0.42005445244122114, + "giratina-altered": 0.5518001376772281, + "cresselia": 0.5760567910010466, + "tornadus-incarnate": 0.864737893189658, + "thundurus-incarnate": 0.7430950343104443, + "reshiram": 0.5004219317489449, + "zekrom": 0.46783960425436877, + "landorus-incarnate": 0.511056284158139, + "kyurem": 0.43370909914399547, + "xerneas": 0.33738270306348417, + "yveltal": 0.6045660953925889, + "zygarde-50": 0.4153720078831641, + "tapu-koko": 0.8854713427486026, + "tapu-lele": 1.3315992723182652, + "tapu-bulu": 1.1152775943228477, + "tapu-fini": 0.735028502145233, + "solgaleo": 0.678479799040949, + "lunala": 0.5096426791851906, + "nihilego": 0.7494150660328516, + "buzzwole": 1.4615823692262788, + "pheromosa": 2.2429218908098845, + "xurkitree": 0.5736250367435751, + "celesteela": 1.0361805285368384, + "kartana": 1.3229816293760477, + "guzzlord": 0.6551473858077209, + "necrozma": 1.0008750035718044, + "stakataka": 0.517308749422311, + "blacephalon": 1.2879217314207714 }, "escavalier": { - "articuno": 0.8886577768015997, - "zapdos": 0.709784623907501, - "moltres": 0.5416328426121927, - "mewtwo": 1.089847537598998, - "raikou": 2.441997059660252, - "entei": 1.391711095546755, - "suicune": 1.4654986594096862, - "lugia": 0.9759258958639221, - "ho-oh": 0.8734126736007899, - "latias": 1.4558166265800714, - "latios": 1.8457406069692723, - "kyogre": 0.5066655306880514, - "groudon": 0.39997022945297206, - "rayquaza": 0.4008411701203541, - "uxie": 1.816378850376288, - "mesprit": 1.7670781951566066, - "azelf": 1.6939484638729994, - "dialga": 0.8898372149776199, - "palkia": 0.5673055645717224, - "heatran": 0.7254784907950689, - "giratina-altered": 0.7245775559941661, - "cresselia": 1.00334214452445, - "tornadus-incarnate": 0.7336898665190936, - "thundurus-incarnate": 1.0153081488700437, - "reshiram": 0.700245640734821, - "zekrom": 0.8767894989389702, - "landorus-incarnate": 0.6953070791585615, - "kyurem": 0.660727471814198, - "xerneas": 0.435411101022425, - "yveltal": 0.5596177979590279, - "zygarde-50": 0.4310992385743012, - "tapu-koko": 1.5818946725681455, - "tapu-lele": 1.7786588434523698, - "tapu-bulu": 1.0322074075856218, - "tapu-fini": 0.7180373835727647, - "solgaleo": 0.9558308647502344, - "lunala": 0.6484050653411718, - "nihilego": 2.642282082627556, - "buzzwole": 1.0677206528822507, - "pheromosa": 1.5363037671085178, - "xurkitree": 1.0578691480881353, - "celesteela": 0.8048656784590211, - "kartana": 1.3105333173041132, - "guzzlord": 1.0123547110882138, - "necrozma": 1.5803255010703658, - "stakataka": 0.9560102330553628, - "blacephalon": 1.823831478066174 + "articuno": 0.8892422080411186, + "zapdos": 0.7097070935197789, + "moltres": 0.5396901187342455, + "mewtwo": 1.0933391954268086, + "raikou": 2.4486799108349064, + "entei": 1.3899933051751001, + "suicune": 1.4672116667646766, + "lugia": 0.9766761053815879, + "ho-oh": 0.8705673575403199, + "latias": 1.4584698628932053, + "latios": 1.849332417033512, + "kyogre": 0.5072809345059046, + "groudon": 0.4001747753801548, + "rayquaza": 0.4005971185326981, + "uxie": 1.819943434609173, + "mesprit": 1.7711670309158727, + "azelf": 1.6978503791306587, + "dialga": 0.892420356662109, + "palkia": 0.5679582015580905, + "heatran": 0.7257910556216958, + "giratina-altered": 0.7253219041666876, + "cresselia": 1.0059103618543, + "tornadus-incarnate": 0.7325034213017949, + "thundurus-incarnate": 1.0158650586662163, + "reshiram": 0.699121999924903, + "zekrom": 0.8785248956951751, + "landorus-incarnate": 0.6959141777222637, + "kyurem": 0.661731026347913, + "xerneas": 0.43654186166862496, + "yveltal": 0.559786603694417, + "zygarde-50": 0.43160326957167217, + "tapu-koko": 1.5849632220536367, + "tapu-lele": 1.7845364135581319, + "tapu-bulu": 1.0337004739688855, + "tapu-fini": 0.7186717559750944, + "solgaleo": 0.9583388895298838, + "lunala": 0.6495627136532114, + "nihilego": 2.6564722672279215, + "buzzwole": 1.0675810378319224, + "pheromosa": 1.5376103671446786, + "xurkitree": 1.060420397103505, + "celesteela": 0.805456502776067, + "kartana": 1.3120980751514995, + "guzzlord": 1.014173686252725, + "necrozma": 1.5842784510465027, + "stakataka": 0.9588095873414422, + "blacephalon": 1.822305768584735 }, "amoonguss": { - "articuno": 0.6552113461407965, - "zapdos": 0.6350422216913245, - "moltres": 0.4822823326932095, - "mewtwo": 0.6964479785489697, - "raikou": 1.6971302245718232, - "entei": 1.1032013534270573, - "suicune": 1.8334231492905737, - "lugia": 0.7879943937706022, - "ho-oh": 0.5797121680383428, - "latias": 0.8956335711799013, - "latios": 1.0859223597094976, - "kyogre": 0.6191765271266181, - "groudon": 0.5063762153895878, - "rayquaza": 0.404637115553537, - "uxie": 1.243227673656511, - "mesprit": 1.2329958611682805, - "azelf": 1.2115892865660358, - "dialga": 0.46529809152434487, - "palkia": 0.5512554731399727, - "heatran": 0.3266929248965469, - "giratina-altered": 0.5821419920064455, - "cresselia": 0.6490434399235312, - "tornadus-incarnate": 0.6513922942910588, - "thundurus-incarnate": 0.8851847507414095, - "reshiram": 0.49213945181297203, - "zekrom": 0.6429866188767734, - "landorus-incarnate": 0.5538613110299262, - "kyurem": 0.5226470375553991, - "xerneas": 0.49869877495233994, - "yveltal": 0.4879137279806839, - "zygarde-50": 0.445181181912403, - "tapu-koko": 1.451333961162653, - "tapu-lele": 1.5333476791855474, - "tapu-bulu": 1.7654688174691264, - "tapu-fini": 0.9780902616498509, - "solgaleo": 0.5781657192158416, - "lunala": 0.5994959593542932, - "nihilego": 0.9031172891800974, - "buzzwole": 1.1986106383926884, - "pheromosa": 1.3767056837974123, - "xurkitree": 0.8493711762338343, - "celesteela": 0.569667182677106, - "kartana": 1.2333214469011928, - "guzzlord": 0.7056652197279987, - "necrozma": 1.1649275599575049, - "stakataka": 0.6744230566940714, - "blacephalon": 1.100884220547122 + "articuno": 0.6536159802663045, + "zapdos": 0.6349485114386841, + "moltres": 0.48135581265852323, + "mewtwo": 0.6951638794728289, + "raikou": 1.6995306786005244, + "entei": 1.1021235055332657, + "suicune": 1.8369047500391802, + "lugia": 0.7869638085092445, + "ho-oh": 0.57815338742408, + "latias": 0.8943206357345217, + "latios": 1.0845116033875468, + "kyogre": 0.6207549928984931, + "groudon": 0.5071248855201886, + "rayquaza": 0.4041217310822564, + "uxie": 1.2422451583305218, + "mesprit": 1.23283290039014, + "azelf": 1.2114493065467813, + "dialga": 0.46414042532742217, + "palkia": 0.55210810823796, + "heatran": 0.32549245775803326, + "giratina-altered": 0.5818044354268461, + "cresselia": 0.6482522070004847, + "tornadus-incarnate": 0.6502011837838851, + "thundurus-incarnate": 0.8863200337266433, + "reshiram": 0.4912942173288962, + "zekrom": 0.6438079020481755, + "landorus-incarnate": 0.5541366271811069, + "kyurem": 0.5219289314996441, + "xerneas": 0.5009130143308168, + "yveltal": 0.48771279586485994, + "zygarde-50": 0.4452579042349659, + "tapu-koko": 1.4555117415502519, + "tapu-lele": 1.5335642743723037, + "tapu-bulu": 1.775543652154254, + "tapu-fini": 0.9829818391051481, + "solgaleo": 0.5764627260690032, + "lunala": 0.5995280387459258, + "nihilego": 0.901670565909046, + "buzzwole": 1.2003266035304963, + "pheromosa": 1.3773071781646622, + "xurkitree": 0.8515397323675489, + "celesteela": 0.5683073603711682, + "kartana": 1.2331277002210272, + "guzzlord": 0.7056044227226459, + "necrozma": 1.164234296125207, + "stakataka": 0.6738986192239342, + "blacephalon": 1.0978436889413592 }, "jellicent": { - "articuno": 0.8249466288324048, - "zapdos": 0.6684732796158118, - "moltres": 0.6981980910812627, - "mewtwo": 0.7695676176369113, - "raikou": 1.5497333303338707, - "entei": 1.3822653368649032, - "suicune": 1.4905599309325375, - "lugia": 0.9570002214012463, - "ho-oh": 0.9091445094179889, - "latias": 1.209929104593788, - "latios": 1.4019972369060745, - "kyogre": 0.5282056684511583, - "groudon": 0.40181875062488737, - "rayquaza": 0.60142569488551, - "uxie": 1.27897093389132, - "mesprit": 1.2964980208558954, - "azelf": 1.212033828067752, - "dialga": 0.609357751720299, - "palkia": 0.703092804067519, - "heatran": 0.5956076220661143, - "giratina-altered": 0.7506716890473147, - "cresselia": 0.6816067567698267, - "tornadus-incarnate": 0.8846292260251639, - "thundurus-incarnate": 0.9160272069474815, - "reshiram": 0.5793510204227581, - "zekrom": 0.70821144241262, - "landorus-incarnate": 0.7478116148322209, - "kyurem": 0.7434887477902846, - "xerneas": 0.38672117926958827, - "yveltal": 0.5601176153951708, - "zygarde-50": 0.6022411428807039, - "tapu-koko": 1.0271969959409146, - "tapu-lele": 1.4374767664068266, - "tapu-bulu": 0.9928947340782308, - "tapu-fini": 0.75625902440331, - "solgaleo": 0.6531041605355752, - "lunala": 0.568407589395875, - "nihilego": 1.2801533908408538, - "buzzwole": 1.6231403061254328, - "pheromosa": 1.7547700000055984, - "xurkitree": 0.63840216248783, - "celesteela": 0.6942092885971816, - "kartana": 1.279526359305573, - "guzzlord": 1.076985768518783, - "necrozma": 1.1109310065735232, - "stakataka": 0.5837130112260323, - "blacephalon": 1.7254169507366903 + "articuno": 0.8257276062022226, + "zapdos": 0.668239670880693, + "moltres": 0.6992559659877016, + "mewtwo": 0.7696046910324571, + "raikou": 1.5479132004206, + "entei": 1.382950179294843, + "suicune": 1.4949885303810175, + "lugia": 0.958000295778566, + "ho-oh": 0.910372524076822, + "latias": 1.2119700154783792, + "latios": 1.4038043871830224, + "kyogre": 0.5293740914000196, + "groudon": 0.40247189371350933, + "rayquaza": 0.6024786291802396, + "uxie": 1.2788520181086362, + "mesprit": 1.2981050907182077, + "azelf": 1.2133054220823265, + "dialga": 0.6101075722141793, + "palkia": 0.7054601122476692, + "heatran": 0.5960013836966143, + "giratina-altered": 0.7505723190533996, + "cresselia": 0.6815560135182106, + "tornadus-incarnate": 0.8859573212740015, + "thundurus-incarnate": 0.9160251653799378, + "reshiram": 0.5800525123833524, + "zekrom": 0.7076461248911279, + "landorus-incarnate": 0.7494320865721389, + "kyurem": 0.7446406398967256, + "xerneas": 0.3868207823215829, + "yveltal": 0.559955519711457, + "zygarde-50": 0.6035005763350256, + "tapu-koko": 1.0263981938557158, + "tapu-lele": 1.4369361588550051, + "tapu-bulu": 0.9918665252794365, + "tapu-fini": 0.75861654429746, + "solgaleo": 0.6530025397408703, + "lunala": 0.5677115748322477, + "nihilego": 1.2809105311135793, + "buzzwole": 1.6282725489785508, + "pheromosa": 1.7580787676980854, + "xurkitree": 0.6369028290170016, + "celesteela": 0.694587397154242, + "kartana": 1.2755920562563592, + "guzzlord": 1.077504738156646, + "necrozma": 1.1104245028517694, + "stakataka": 0.5836215701609335, + "blacephalon": 1.7259716767734221 }, "galvantula": { - "articuno": 0.9805487710853671, - "zapdos": 0.7310046771655908, - "moltres": 0.6478505253040072, - "mewtwo": 1.0269033805584564, - "raikou": 1.6756877479024095, - "entei": 1.1532597754746263, - "suicune": 1.8265798942078284, - "lugia": 1.095874004064325, - "ho-oh": 0.7490502819378045, - "latias": 1.2118855631579195, - "latios": 1.5919087128913372, - "kyogre": 0.540048607063728, - "groudon": 0.3634689292135854, - "rayquaza": 0.44474264644768724, - "uxie": 1.7233997509356866, - "mesprit": 1.6481523544119159, - "azelf": 1.5661796900829486, - "dialga": 0.5182078426762657, - "palkia": 0.49283739000897975, - "heatran": 0.4002718321791773, - "giratina-altered": 0.5425469150126492, - "cresselia": 0.9313344395863398, - "tornadus-incarnate": 0.961410340155458, - "thundurus-incarnate": 0.9307626317381771, - "reshiram": 0.42881409863970443, - "zekrom": 0.7082668100670044, - "landorus-incarnate": 0.4230234246959188, - "kyurem": 0.5813204313287754, - "xerneas": 0.38591058572960457, - "yveltal": 0.7086109500841525, - "zygarde-50": 0.43056142301454603, - "tapu-koko": 1.0529936066812364, - "tapu-lele": 1.4322427392196122, - "tapu-bulu": 1.0810859486677045, - "tapu-fini": 0.8852075063298566, - "solgaleo": 0.7772489425591771, - "lunala": 0.5781627608793398, - "nihilego": 0.8180676444251086, - "buzzwole": 1.3372014117325568, - "pheromosa": 1.4735056087992184, - "xurkitree": 0.845438709524095, - "celesteela": 1.09895476360399, - "kartana": 1.901410343062563, - "guzzlord": 1.008534031708711, - "necrozma": 1.5797099204432967, - "stakataka": 0.6026602095466727, - "blacephalon": 1.2464916813473614 + "articuno": 0.9822451169677977, + "zapdos": 0.7323544701158653, + "moltres": 0.6481187286508778, + "mewtwo": 1.0282902180231148, + "raikou": 1.6761639616574202, + "entei": 1.1517991750160967, + "suicune": 1.8316643143443403, + "lugia": 1.09785939841522, + "ho-oh": 0.7481211136809065, + "latias": 1.211632381067807, + "latios": 1.5923515383987874, + "kyogre": 0.541442732653485, + "groudon": 0.36292851645641855, + "rayquaza": 0.4448089157752908, + "uxie": 1.7257004441828636, + "mesprit": 1.6501732131216602, + "azelf": 1.56826075097427, + "dialga": 0.5181573600593846, + "palkia": 0.4930125356016393, + "heatran": 0.4000880915392865, + "giratina-altered": 0.5417038238679335, + "cresselia": 0.9326265744783004, + "tornadus-incarnate": 0.9631602470783073, + "thundurus-incarnate": 0.9322851169847113, + "reshiram": 0.4273595246420988, + "zekrom": 0.7083295422371372, + "landorus-incarnate": 0.4217856376039498, + "kyurem": 0.5808455341433068, + "xerneas": 0.3862531576860269, + "yveltal": 0.7107449309894142, + "zygarde-50": 0.42983332059705565, + "tapu-koko": 1.0533260207195867, + "tapu-lele": 1.4325819915218045, + "tapu-bulu": 1.082561725101973, + "tapu-fini": 0.8875412218146923, + "solgaleo": 0.7792667669353576, + "lunala": 0.5783323011094846, + "nihilego": 0.8154061436848004, + "buzzwole": 1.3399721828539892, + "pheromosa": 1.4744820813592203, + "xurkitree": 0.8467287540192068, + "celesteela": 1.1031777295305623, + "kartana": 1.9076725440861342, + "guzzlord": 1.008867158922262, + "necrozma": 1.5812946162795454, + "stakataka": 0.603096234043517, + "blacephalon": 1.2437080728344623 }, "klang": { - "articuno": 1.1204516064727597, - "zapdos": 0.7307363313093258, - "moltres": 0.6994749761328036, - "mewtwo": 0.8064497385259206, - "raikou": 1.4237846095605637, - "entei": 1.2443677432279747, - "suicune": 1.4367757427536343, - "lugia": 0.971961688097974, - "ho-oh": 0.8424464456753518, - "latias": 0.9403341078446614, - "latios": 1.17253521881484, - "kyogre": 0.4265817259938137, - "groudon": 0.2993475418942342, - "rayquaza": 0.4935078227954026, - "uxie": 1.3225270962124445, - "mesprit": 1.2908397820915343, - "azelf": 1.2359922020189984, - "dialga": 0.543475848142693, - "palkia": 0.4493004941159631, - "heatran": 0.3492938773321295, - "giratina-altered": 0.6809836970365994, - "cresselia": 0.7204137963478857, - "tornadus-incarnate": 0.809527042510118, - "thundurus-incarnate": 0.9931220679515684, - "reshiram": 0.5589774482104793, - "zekrom": 0.594424856964417, - "landorus-incarnate": 0.45773192378929184, - "kyurem": 0.7692150760347647, - "xerneas": 0.5177666315769812, - "yveltal": 0.5688581905987831, - "zygarde-50": 0.3571096423937544, - "tapu-koko": 1.1524189783160266, - "tapu-lele": 1.8498075346820153, - "tapu-bulu": 1.2593173140368252, - "tapu-fini": 0.6744734176999823, - "solgaleo": 0.6439656243733269, - "lunala": 0.5715429271442007, - "nihilego": 1.1680395406674875, - "buzzwole": 1.1771413583300396, - "pheromosa": 1.396393504882177, - "xurkitree": 0.6606338122301363, - "celesteela": 0.7452396871500788, - "kartana": 1.3626253025042114, - "guzzlord": 0.7279942876283483, - "necrozma": 1.2326802706207118, - "stakataka": 0.6750026525636506, - "blacephalon": 1.3331543359464288 + "articuno": 1.1249681543688568, + "zapdos": 0.7316982098142714, + "moltres": 0.6997887629259906, + "mewtwo": 0.8077253270504448, + "raikou": 1.4222695008884276, + "entei": 1.2433951436440922, + "suicune": 1.4384814909786772, + "lugia": 0.9746149795560684, + "ho-oh": 0.842462310921388, + "latias": 0.9405036900411023, + "latios": 1.1721508840757198, + "kyogre": 0.4265758290790701, + "groudon": 0.2983948403289274, + "rayquaza": 0.49463190260113366, + "uxie": 1.3239472638330567, + "mesprit": 1.2927871892110303, + "azelf": 1.2379172305981734, + "dialga": 0.5439079233035541, + "palkia": 0.44936394894328735, + "heatran": 0.3487418364369045, + "giratina-altered": 0.681449479450471, + "cresselia": 0.721619790946915, + "tornadus-incarnate": 0.8112204703859613, + "thundurus-incarnate": 0.9941371473838494, + "reshiram": 0.5580973092770469, + "zekrom": 0.5941128563966037, + "landorus-incarnate": 0.4565793221255618, + "kyurem": 0.7708106059715125, + "xerneas": 0.5192635374620084, + "yveltal": 0.5702574315387612, + "zygarde-50": 0.35622041784498604, + "tapu-koko": 1.153065586658768, + "tapu-lele": 1.8540018343474873, + "tapu-bulu": 1.2612056521620636, + "tapu-fini": 0.6754999429884012, + "solgaleo": 0.6444497324929375, + "lunala": 0.5715481094556818, + "nihilego": 1.1703318434777632, + "buzzwole": 1.1780974032492746, + "pheromosa": 1.3963353958921934, + "xurkitree": 0.6599836394046652, + "celesteela": 0.7467254899058684, + "kartana": 1.3642794405511331, + "guzzlord": 0.7276902671451413, + "necrozma": 1.2345028838813261, + "stakataka": 0.6762065692844258, + "blacephalon": 1.3310875096089934 }, "klinklang": { - "articuno": 1.163663236918016, - "zapdos": 0.6648585104380249, - "moltres": 0.46007392349006215, - "mewtwo": 0.8508452926006671, - "raikou": 1.654966396081395, - "entei": 1.0992278510987816, - "suicune": 1.3479894846501685, - "lugia": 0.9829032285021309, - "ho-oh": 0.6993878523043391, - "latias": 1.0890466452271057, - "latios": 1.3413732474449658, - "kyogre": 0.4427886907648584, - "groudon": 0.2948289503492683, - "rayquaza": 0.4815209301396042, - "uxie": 1.3915168680342778, - "mesprit": 1.3596173347501748, - "azelf": 1.3066889454833523, - "dialga": 0.549614750653932, - "palkia": 0.5121708097629697, - "heatran": 0.325931043620616, - "giratina-altered": 0.7277624947772531, - "cresselia": 0.7771290476453828, - "tornadus-incarnate": 0.8117729860676104, - "thundurus-incarnate": 0.9188728955612505, - "reshiram": 0.5263409222228841, - "zekrom": 0.6345695211872384, - "landorus-incarnate": 0.4869677108801952, - "kyurem": 0.8305642990534474, - "xerneas": 0.5704899450760158, - "yveltal": 0.5583598986675896, - "zygarde-50": 0.37130752343629403, - "tapu-koko": 1.1842091926751, - "tapu-lele": 2.3948977215185216, - "tapu-bulu": 1.2889981057611402, - "tapu-fini": 0.6946199449410744, - "solgaleo": 0.6290255923595134, - "lunala": 0.6288995965779189, - "nihilego": 1.7763269264661523, - "buzzwole": 1.0155282918277178, - "pheromosa": 1.4959468885683338, - "xurkitree": 0.7229057142789655, - "celesteela": 0.6189212155094606, - "kartana": 1.1579522324910037, - "guzzlord": 0.7866818350195928, - "necrozma": 1.263204051562508, - "stakataka": 0.6059561632254129, - "blacephalon": 1.1784467106420395 + "articuno": 1.1668206066247715, + "zapdos": 0.6648882463791298, + "moltres": 0.45878605703398023, + "mewtwo": 0.8519903239012412, + "raikou": 1.6543564385068303, + "entei": 1.0969307207363026, + "suicune": 1.3475275051407136, + "lugia": 0.984142863010972, + "ho-oh": 0.6984443882246156, + "latias": 1.090370095525027, + "latios": 1.3421583556763077, + "kyogre": 0.442455784533331, + "groudon": 0.29412511891865123, + "rayquaza": 0.48222799348463574, + "uxie": 1.3925527851234878, + "mesprit": 1.361209104248537, + "azelf": 1.3083523503631764, + "dialga": 0.5498493371750772, + "palkia": 0.5122138421737275, + "heatran": 0.32488232118782145, + "giratina-altered": 0.7279219233243484, + "cresselia": 0.778402539006241, + "tornadus-incarnate": 0.8121135249998833, + "thundurus-incarnate": 0.9186814222957114, + "reshiram": 0.5251961823918886, + "zekrom": 0.6344965842906383, + "landorus-incarnate": 0.4862097935445744, + "kyurem": 0.8322556552507117, + "xerneas": 0.5722456863553518, + "yveltal": 0.5587674044761717, + "zygarde-50": 0.37080282965757055, + "tapu-koko": 1.1848815073086616, + "tapu-lele": 2.403174695575334, + "tapu-bulu": 1.2916142318049344, + "tapu-fini": 0.6948990745606626, + "solgaleo": 0.6288922639399608, + "lunala": 0.6284644279809792, + "nihilego": 1.7833628967641704, + "buzzwole": 1.0144772748729474, + "pheromosa": 1.4960177462648119, + "xurkitree": 0.7222350360949148, + "celesteela": 0.6186580681731286, + "kartana": 1.156959787712089, + "guzzlord": 0.7868792979715289, + "necrozma": 1.264412082162702, + "stakataka": 0.6060785526958334, + "blacephalon": 1.174501373002065 }, "beheeyem": { - "articuno": 1.3060764998409977, - "zapdos": 0.8748018739527996, - "moltres": 1.0765419426685008, - "mewtwo": 1.0381463452856703, - "raikou": 1.789040016496696, - "entei": 1.5343263927634818, - "suicune": 1.5748792564746752, - "lugia": 1.1599713101132556, - "ho-oh": 1.1228839677775486, - "latias": 1.2226355566741987, - "latios": 1.5882392802052432, - "kyogre": 0.4851029864896911, - "groudon": 0.4312073617011822, - "rayquaza": 0.535303739728653, - "uxie": 1.7010222523970033, - "mesprit": 1.6552796538324244, - "azelf": 1.5634814177198813, - "dialga": 0.6274790201870923, - "palkia": 0.5767698477511891, - "heatran": 0.4857118120181803, - "giratina-altered": 0.8452557813228351, - "cresselia": 0.9303233553486601, - "tornadus-incarnate": 1.0031293962892929, - "thundurus-incarnate": 1.1393139986217011, - "reshiram": 0.7303555152003312, - "zekrom": 0.7512198421765925, - "landorus-incarnate": 0.6101325296105242, - "kyurem": 0.7297424364714988, - "xerneas": 0.4460814463650249, - "yveltal": 0.5997067711367556, - "zygarde-50": 0.48872053563098616, - "tapu-koko": 1.38186968690523, - "tapu-lele": 1.499825380375805, - "tapu-bulu": 1.0949222809535881, - "tapu-fini": 0.7683255680575809, - "solgaleo": 0.9829475285806758, - "lunala": 0.9872727224175386, - "nihilego": 1.154988079932362, - "buzzwole": 2.0091306973127687, - "pheromosa": 2.1461418444301974, - "xurkitree": 0.8535835398564868, - "celesteela": 0.7629346471311513, - "kartana": 1.6865653483868763, - "guzzlord": 0.6605468587273517, - "necrozma": 1.637666282498479, - "stakataka": 0.6104977676861902, - "blacephalon": 1.7511613122166922 + "articuno": 1.3093072744828735, + "zapdos": 0.8771772254461139, + "moltres": 1.0799835696020947, + "mewtwo": 1.0413185340836462, + "raikou": 1.791227091884383, + "entei": 1.5370674039610563, + "suicune": 1.5780763106455167, + "lugia": 1.1631149222554944, + "ho-oh": 1.1255158226243547, + "latias": 1.225296017193835, + "latios": 1.5923834321939232, + "kyogre": 0.48570334525680925, + "groudon": 0.43217146594685396, + "rayquaza": 0.5362102984064101, + "uxie": 1.7046703880331173, + "mesprit": 1.6594345798577363, + "azelf": 1.5671969909225438, + "dialga": 0.6281681688011561, + "palkia": 0.5777008722785889, + "heatran": 0.48620465119108514, + "giratina-altered": 0.8457359113963936, + "cresselia": 0.9331002302308149, + "tornadus-incarnate": 1.0058257015829046, + "thundurus-incarnate": 1.1422505134879886, + "reshiram": 0.7324806770990011, + "zekrom": 0.7524974494208245, + "landorus-incarnate": 0.6115656750259391, + "kyurem": 0.7309382797180318, + "xerneas": 0.4468732734927592, + "yveltal": 0.5991179818415673, + "zygarde-50": 0.4895175315318996, + "tapu-koko": 1.3843955667165058, + "tapu-lele": 1.5024296008944342, + "tapu-bulu": 1.0958096807295044, + "tapu-fini": 0.7696801419809591, + "solgaleo": 0.9844480532501707, + "lunala": 0.9875120564753376, + "nihilego": 1.1553712615511142, + "buzzwole": 2.0112895021250377, + "pheromosa": 2.147010837884261, + "xurkitree": 0.8550411718131329, + "celesteela": 0.7640938481721911, + "kartana": 1.6898415479370437, + "guzzlord": 0.6590864087495132, + "necrozma": 1.6427029186557434, + "stakataka": 0.6103598345731986, + "blacephalon": 1.7545733950389903 }, "lampent": { - "articuno": 1.024818906268536, - "zapdos": 0.644694040818451, - "moltres": 0.6919338842389359, - "mewtwo": 0.7787778673608226, - "raikou": 1.6537072419413592, - "entei": 1.1815426826398427, - "suicune": 1.0173765339288252, - "lugia": 0.7825399988464856, - "ho-oh": 0.670710301426505, - "latias": 0.7479911586665173, - "latios": 1.1151307734605824, - "kyogre": 0.27288732004080235, - "groudon": 0.3140679199801821, - "rayquaza": 0.34653228871097697, - "uxie": 1.2618138552817761, - "mesprit": 1.3716234232213154, - "azelf": 1.295543090258404, - "dialga": 0.6382802120879205, - "palkia": 0.3177878556145539, - "heatran": 0.4518081579328796, - "giratina-altered": 0.4675899918398295, - "cresselia": 0.6974185772666155, - "tornadus-incarnate": 0.8729261883081559, - "thundurus-incarnate": 0.8801969697919327, - "reshiram": 0.4340298871492534, - "zekrom": 0.5421662344436569, - "landorus-incarnate": 0.4172932861844958, - "kyurem": 0.633965282990332, - "xerneas": 0.41409080359020445, - "yveltal": 0.435600188371716, - "zygarde-50": 0.2735281149936247, - "tapu-koko": 1.1508905676634837, - "tapu-lele": 1.3976215552075772, - "tapu-bulu": 1.4778313457842027, - "tapu-fini": 0.4425037336722718, - "solgaleo": 1.0559917539346664, - "lunala": 0.549693623764519, - "nihilego": 0.7553403401109059, - "buzzwole": 2.060347921133514, - "pheromosa": 2.0892664103994982, - "xurkitree": 0.7006625137001861, - "celesteela": 0.9120122397060659, - "kartana": 4.254324494627986, - "guzzlord": 0.5522212147865875, - "necrozma": 1.0943707885686682, - "stakataka": 0.5578627261054407, - "blacephalon": 1.263374512866452 + "articuno": 1.025987918550371, + "zapdos": 0.6437988881881056, + "moltres": 0.6945271120218122, + "mewtwo": 0.7779306567876567, + "raikou": 1.6531013102389869, + "entei": 1.1830010066832868, + "suicune": 1.012682199062426, + "lugia": 0.7803155539991872, + "ho-oh": 0.6715394408717356, + "latias": 0.7454622660650496, + "latios": 1.1130874235869643, + "kyogre": 0.27167763511920917, + "groudon": 0.3135452107910939, + "rayquaza": 0.3454928773964333, + "uxie": 1.2593852253401208, + "mesprit": 1.37284469743338, + "azelf": 1.2965255003540554, + "dialga": 0.6382094464875647, + "palkia": 0.316105498199059, + "heatran": 0.4502374214411816, + "giratina-altered": 0.46502059728709233, + "cresselia": 0.6968457149804922, + "tornadus-incarnate": 0.873179155127434, + "thundurus-incarnate": 0.8795399093773235, + "reshiram": 0.4329338003373764, + "zekrom": 0.5409440137824044, + "landorus-incarnate": 0.4160458994002936, + "kyurem": 0.6335813083347066, + "xerneas": 0.41440921855861057, + "yveltal": 0.43408039845968593, + "zygarde-50": 0.2723073977998913, + "tapu-koko": 1.1499057117899123, + "tapu-lele": 1.3955691794934775, + "tapu-bulu": 1.482811942359258, + "tapu-fini": 0.44034421943693014, + "solgaleo": 1.058607531979542, + "lunala": 0.5475490714377246, + "nihilego": 0.7517422485555958, + "buzzwole": 2.070441591672892, + "pheromosa": 2.094712217034669, + "xurkitree": 0.6995814661900621, + "celesteela": 0.9124686289455439, + "kartana": 4.276119217825341, + "guzzlord": 0.5498661334876819, + "necrozma": 1.0918700964357946, + "stakataka": 0.5572811171293949, + "blacephalon": 1.2635876501024195 }, "fraxure": { - "articuno": 0.7322058074569254, - "zapdos": 0.8519461743254138, - "moltres": 0.7099013664868346, - "mewtwo": 0.784963278702907, - "raikou": 2.0688621836896988, - "entei": 1.4544349607841087, - "suicune": 1.6163951607916551, - "lugia": 0.9542456171182563, - "ho-oh": 0.958128494804137, - "latias": 1.6931893424460647, - "latios": 1.930125427165292, - "kyogre": 0.6088650797052417, - "groudon": 0.3791485321042609, - "rayquaza": 0.6610074208981621, - "uxie": 1.4639134861667182, - "mesprit": 1.3495840047908558, - "azelf": 1.2037534899755644, - "dialga": 0.6525251665623691, - "palkia": 0.9166311934284508, - "heatran": 0.46637479543858507, - "giratina-altered": 1.083977344400402, - "cresselia": 0.759089046687828, - "tornadus-incarnate": 0.8737881064213867, - "thundurus-incarnate": 1.079368082980329, - "reshiram": 0.9562429130566378, - "zekrom": 1.0219686737004094, - "landorus-incarnate": 0.5952153759333756, - "kyurem": 0.7665135167725435, - "xerneas": 0.2811340218342305, - "yveltal": 0.5798583981986741, - "zygarde-50": 0.6153940879836273, - "tapu-koko": 1.1349343028541696, - "tapu-lele": 1.4150081281358253, - "tapu-bulu": 0.9567043097853332, - "tapu-fini": 0.6399405325804424, - "solgaleo": 0.6576077967593423, - "lunala": 0.6276873241474854, - "nihilego": 1.208856867380797, - "buzzwole": 1.093681864750729, - "pheromosa": 1.627647573034293, - "xurkitree": 0.9493051897189851, - "celesteela": 0.681767959367545, - "kartana": 1.1989304290671567, - "guzzlord": 1.1820963890817846, - "necrozma": 1.383195032639875, - "stakataka": 0.5078198618994904, - "blacephalon": 1.9197169623607109 + "articuno": 0.7305692250673035, + "zapdos": 0.8542116142701524, + "moltres": 0.7116306975926224, + "mewtwo": 0.7854504274546479, + "raikou": 2.0748494444012335, + "entei": 1.457778424955663, + "suicune": 1.6202229162945794, + "lugia": 0.9543219287216373, + "ho-oh": 0.9611080616326508, + "latias": 1.6974419916214667, + "latios": 1.933586586876524, + "kyogre": 0.6110292176924258, + "groudon": 0.3796618755538879, + "rayquaza": 0.6614247711625836, + "uxie": 1.4654580060206093, + "mesprit": 1.3498010752898808, + "azelf": 1.204399300018352, + "dialga": 0.6525786554601827, + "palkia": 0.9197773604508224, + "heatran": 0.4666942815873335, + "giratina-altered": 1.085395874979112, + "cresselia": 0.7595011440190753, + "tornadus-incarnate": 0.8744309097868117, + "thundurus-incarnate": 1.0816655160432034, + "reshiram": 0.9587077111833984, + "zekrom": 1.02520477022435, + "landorus-incarnate": 0.5960572390958279, + "kyurem": 0.7662985664727762, + "xerneas": 0.2796121680676571, + "yveltal": 0.5803396602314338, + "zygarde-50": 0.616513998449706, + "tapu-koko": 1.1337189389016664, + "tapu-lele": 1.4114390029724153, + "tapu-bulu": 0.9563252816703542, + "tapu-fini": 0.6385064790226016, + "solgaleo": 0.6576667703519661, + "lunala": 0.6269296933336226, + "nihilego": 1.2095254992523712, + "buzzwole": 1.0932229149387498, + "pheromosa": 1.628861573710609, + "xurkitree": 0.9524120877952187, + "celesteela": 0.6814985438825705, + "kartana": 1.1987705167637976, + "guzzlord": 1.1854439190805546, + "necrozma": 1.3853142323937493, + "stakataka": 0.506808118445585, + "blacephalon": 1.9239489848888591 }, "beartic": { - "articuno": 0.8162245057151054, - "zapdos": 0.8722324951175409, - "moltres": 0.5226347948216616, - "mewtwo": 0.7922657603380443, - "raikou": 1.5540163272154572, - "entei": 1.2074815307805942, - "suicune": 1.243757910582314, - "lugia": 1.0545061269946503, - "ho-oh": 0.624522385863949, - "latias": 1.1609055351843969, - "latios": 1.430820390474988, - "kyogre": 0.43435700518733145, - "groudon": 0.46509130239913465, - "rayquaza": 0.8097746352147266, - "uxie": 1.2690771935837049, - "mesprit": 1.2140484989702491, - "azelf": 1.1570212698531446, - "dialga": 0.6284359709762767, - "palkia": 0.48812381731988086, - "heatran": 0.4743129048726086, - "giratina-altered": 0.8679433167704463, - "cresselia": 0.6974722482324558, - "tornadus-incarnate": 0.953637527896874, - "thundurus-incarnate": 1.1220859871942226, - "reshiram": 0.517256567255379, - "zekrom": 0.8545335686653648, - "landorus-incarnate": 0.9530899681119602, - "kyurem": 0.6908004919272008, - "xerneas": 0.3781164117434503, - "yveltal": 0.6716088970760692, - "zygarde-50": 0.8069977685540457, - "tapu-koko": 1.1641788628266605, - "tapu-lele": 1.399489337326485, - "tapu-bulu": 1.2220031194952794, - "tapu-fini": 0.5561476687577386, - "solgaleo": 0.5757419705947895, - "lunala": 0.5646276684562299, - "nihilego": 0.9672060516278043, - "buzzwole": 1.1645633319375106, - "pheromosa": 1.3716065489717149, - "xurkitree": 0.752840495092453, - "celesteela": 0.7008680037404535, - "kartana": 1.6440953275091945, - "guzzlord": 0.9474112667424006, - "necrozma": 1.1439921224714245, - "stakataka": 0.7061680400608685, - "blacephalon": 1.3148831229481224 + "articuno": 0.8174489830054458, + "zapdos": 0.8741740436949303, + "moltres": 0.5223480361902166, + "mewtwo": 0.7926540001793102, + "raikou": 1.5546921795130433, + "entei": 1.2065593492365456, + "suicune": 1.2430347041155136, + "lugia": 1.0554409266805505, + "ho-oh": 0.6235922343808908, + "latias": 1.1620860241286508, + "latios": 1.4316371139304611, + "kyogre": 0.4341081117936744, + "groudon": 0.46610025774147684, + "rayquaza": 0.8123427253098647, + "uxie": 1.2692323425205654, + "mesprit": 1.2141021015728215, + "azelf": 1.1571272281437581, + "dialga": 0.6284990572641337, + "palkia": 0.4880963811602044, + "heatran": 0.47409086074742, + "giratina-altered": 0.8690252274133226, + "cresselia": 0.6977560591541707, + "tornadus-incarnate": 0.9550969595234348, + "thundurus-incarnate": 1.124115185234656, + "reshiram": 0.5169248957688346, + "zekrom": 0.8562886704023387, + "landorus-incarnate": 0.9561943778029072, + "kyurem": 0.6920504620595167, + "xerneas": 0.3783526260699116, + "yveltal": 0.6730957006529625, + "zygarde-50": 0.8101157961444108, + "tapu-koko": 1.1651095772379851, + "tapu-lele": 1.3991395908493098, + "tapu-bulu": 1.2234139677518658, + "tapu-fini": 0.5556609424009098, + "solgaleo": 0.5746366623730459, + "lunala": 0.5643619112586422, + "nihilego": 0.9661695924776225, + "buzzwole": 1.1644080304757434, + "pheromosa": 1.3707573312874302, + "xurkitree": 0.7534848901937079, + "celesteela": 0.7006135480569785, + "kartana": 1.6469122576216502, + "guzzlord": 0.9496280955695331, + "necrozma": 1.1435811794341373, + "stakataka": 0.7063646087944705, + "blacephalon": 1.3123857542068542 }, "cryogonal": { - "articuno": 0.9168675638409065, - "zapdos": 1.0251820816396036, - "moltres": 0.5984584250019171, - "mewtwo": 0.8818157659331542, - "raikou": 1.7032578588559544, - "entei": 1.0043059330577289, - "suicune": 1.5238359887263764, - "lugia": 1.2792021363602804, - "ho-oh": 0.605827946509078, - "latias": 1.366488448356117, - "latios": 1.6824018459447256, - "kyogre": 0.5121052919133734, - "groudon": 0.6362258462536647, - "rayquaza": 0.9614434207160643, - "uxie": 1.4765377930878762, - "mesprit": 1.4157705330029313, - "azelf": 1.3255083895235722, - "dialga": 0.6343686530960939, - "palkia": 0.5432040076414313, - "heatran": 0.3361194604857205, - "giratina-altered": 1.0118951394389457, - "cresselia": 0.7662422860161734, - "tornadus-incarnate": 1.1833246392535122, - "thundurus-incarnate": 1.404869018678749, - "reshiram": 0.6098840722395723, - "zekrom": 0.9196900097184357, - "landorus-incarnate": 1.2855821249577555, - "kyurem": 0.6978339103926299, - "xerneas": 0.43560511239002553, - "yveltal": 0.7786201722727009, - "zygarde-50": 1.0952296565872202, - "tapu-koko": 1.309858859133531, - "tapu-lele": 1.4899190325018967, - "tapu-bulu": 1.2935464027606878, - "tapu-fini": 0.809315784397014, - "solgaleo": 0.5238784542185, - "lunala": 0.6483575611124415, - "nihilego": 0.9408571532221978, - "buzzwole": 1.1752363384480813, - "pheromosa": 1.44267400162139, - "xurkitree": 0.8460536129557598, - "celesteela": 0.8188085274165784, - "kartana": 1.8256033141655847, - "guzzlord": 1.0379920826925475, - "necrozma": 1.2848654290467474, - "stakataka": 0.4892497612474397, - "blacephalon": 1.1625850533134667 + "articuno": 0.9188438430073631, + "zapdos": 1.0279856069531048, + "moltres": 0.5984372487851946, + "mewtwo": 0.8829226791668346, + "raikou": 1.7038321699942922, + "entei": 1.0013028381299316, + "suicune": 1.5237710000367393, + "lugia": 1.2830041446762288, + "ho-oh": 0.6037035233006305, + "latias": 1.3696393802264701, + "latios": 1.6859269523841536, + "kyogre": 0.5123526869469555, + "groudon": 0.6390937484902939, + "rayquaza": 0.9648902493165934, + "uxie": 1.4793636699911987, + "mesprit": 1.418436905925716, + "azelf": 1.327153362370734, + "dialga": 0.6337456765819257, + "palkia": 0.5432581965849326, + "heatran": 0.3348810392361732, + "giratina-altered": 1.0141872927285411, + "cresselia": 0.7669846531841701, + "tornadus-incarnate": 1.1873967567548611, + "thundurus-incarnate": 1.410104503427024, + "reshiram": 0.61020089731325, + "zekrom": 0.9207190047313256, + "landorus-incarnate": 1.2931356090778632, + "kyurem": 0.6993985574690865, + "xerneas": 0.43648492659412425, + "yveltal": 0.7804383871472422, + "zygarde-50": 1.102332603586437, + "tapu-koko": 1.3117146860661832, + "tapu-lele": 1.490221612899444, + "tapu-bulu": 1.2940403010523904, + "tapu-fini": 0.8106619748382087, + "solgaleo": 0.521507633997874, + "lunala": 0.6494431360863624, + "nihilego": 0.9401364076440808, + "buzzwole": 1.1735216745641288, + "pheromosa": 1.4406033863888426, + "xurkitree": 0.8473001524825785, + "celesteela": 0.8181278775715272, + "kartana": 1.827037976548501, + "guzzlord": 1.0395687801543576, + "necrozma": 1.2859918454314192, + "stakataka": 0.48750798645199345, + "blacephalon": 1.160307269598023 }, "accelgor": { - "articuno": 0.6412373178408556, - "zapdos": 0.5011531759927633, - "moltres": 0.3690402011358809, - "mewtwo": 1.042326762427086, - "raikou": 1.561771783428105, - "entei": 0.9194168896103243, - "suicune": 1.335845060003037, - "lugia": 0.829510633927617, - "ho-oh": 0.4519182240744518, - "latias": 1.2286198029283253, - "latios": 1.6031217840729375, - "kyogre": 0.4212533008233864, - "groudon": 0.3946850417896092, - "rayquaza": 0.34062227024097363, - "uxie": 1.7770356229888118, - "mesprit": 1.7000876544286352, - "azelf": 1.5990219744711935, - "dialga": 0.48179745686234565, - "palkia": 0.4857223223235466, - "heatran": 0.28601003597411434, - "giratina-altered": 0.5306476813199867, - "cresselia": 0.937341234732333, - "tornadus-incarnate": 0.564164838345202, - "thundurus-incarnate": 0.7247657522078328, - "reshiram": 0.4356098615112489, - "zekrom": 0.6348008073249081, - "landorus-incarnate": 0.43895173489777684, - "kyurem": 0.5966547865933703, - "xerneas": 0.3516625151306808, - "yveltal": 0.5060667995323268, - "zygarde-50": 0.47283935691645973, - "tapu-koko": 0.9808714215988725, - "tapu-lele": 1.3913075694225652, - "tapu-bulu": 1.1958486077256258, - "tapu-fini": 0.6020670551397429, - "solgaleo": 0.6946796182437607, - "lunala": 0.5842031047246117, - "nihilego": 0.741776684240967, - "buzzwole": 1.026673459921321, - "pheromosa": 1.2106302832264095, - "xurkitree": 0.7768763414528186, - "celesteela": 0.5348332284229618, - "kartana": 1.8329011534271993, - "guzzlord": 0.9788114393343328, - "necrozma": 1.5704402618271733, - "stakataka": 0.44782885116785975, - "blacephalon": 0.9302092617075396 + "articuno": 0.6393018684521272, + "zapdos": 0.49900796602148245, + "moltres": 0.36704241631328705, + "mewtwo": 1.042885965498113, + "raikou": 1.5591407239845823, + "entei": 0.9152665603146709, + "suicune": 1.3340859117648607, + "lugia": 0.8275129380553972, + "ho-oh": 0.4488761983315551, + "latias": 1.228859510948721, + "latios": 1.604215495424993, + "kyogre": 0.42073263840471287, + "groudon": 0.3949045850151717, + "rayquaza": 0.33904349806426287, + "uxie": 1.7787873117079123, + "mesprit": 1.701564371660921, + "azelf": 1.5999972917408396, + "dialga": 0.48021413554353765, + "palkia": 0.48480971154125796, + "heatran": 0.28460590653012907, + "giratina-altered": 0.5289526720829527, + "cresselia": 0.9378026810142048, + "tornadus-incarnate": 0.5618131432383755, + "thundurus-incarnate": 0.7233422067113109, + "reshiram": 0.4339754927386932, + "zekrom": 0.633680099744935, + "landorus-incarnate": 0.4383021706257879, + "kyurem": 0.5962168015937176, + "xerneas": 0.3513752556252431, + "yveltal": 0.505067808676069, + "zygarde-50": 0.4730682902228043, + "tapu-koko": 0.9780814885161646, + "tapu-lele": 1.3895417835935193, + "tapu-bulu": 1.1977498642647133, + "tapu-fini": 0.6014347862722649, + "solgaleo": 0.6932107506676606, + "lunala": 0.5835102784800659, + "nihilego": 0.7382129009110613, + "buzzwole": 1.0249501542199029, + "pheromosa": 1.2078693892855688, + "xurkitree": 0.7766320450144946, + "celesteela": 0.5326884419682252, + "kartana": 1.8356113126819096, + "guzzlord": 0.9788888881241509, + "necrozma": 1.5705102743899446, + "stakataka": 0.4459540628715368, + "blacephalon": 0.9251292366115952 }, "stunfisk": { - "articuno": 0.9567946509694378, - "zapdos": 0.81388886695155, - "moltres": 0.8335040915826638, - "mewtwo": 0.7717622741122805, - "raikou": 2.3444116065775598, - "entei": 1.7550481816849137, - "suicune": 1.7705878145835663, - "lugia": 1.1995700503863866, - "ho-oh": 0.8942398225188555, - "latias": 0.8095167139836199, - "latios": 1.0828232221591871, - "kyogre": 0.5225064571880659, - "groudon": 0.3838707490079757, - "rayquaza": 0.4746313395049643, - "uxie": 1.3792094831402582, - "mesprit": 1.320672916012968, - "azelf": 1.2588085722657603, - "dialga": 0.9745706980165361, - "palkia": 0.4945046755805506, - "heatran": 1.0934285074317707, - "giratina-altered": 0.7335017420755874, - "cresselia": 0.7106987730647768, - "tornadus-incarnate": 1.1031194335602241, - "thundurus-incarnate": 1.0801309686260474, - "reshiram": 0.7866353340477141, - "zekrom": 1.0091734600972901, - "landorus-incarnate": 0.5613109193108728, - "kyurem": 0.5892601732273696, - "xerneas": 0.4043329424885022, - "yveltal": 0.7510405933941896, - "zygarde-50": 0.39931119932713677, - "tapu-koko": 1.9244248853393904, - "tapu-lele": 1.4902397008741708, - "tapu-bulu": 0.8129352888988481, - "tapu-fini": 0.8459815409518132, - "solgaleo": 1.0765141109078935, - "lunala": 0.6078201180567508, - "nihilego": 1.5450539672722123, - "buzzwole": 1.32266110319182, - "pheromosa": 1.510704917368789, - "xurkitree": 1.1814624511042564, - "celesteela": 1.0651070000776601, - "kartana": 1.6820640209503672, - "guzzlord": 0.774072208923561, - "necrozma": 1.3225882226938686, - "stakataka": 1.4939049282194383, - "blacephalon": 1.887625611500464 + "articuno": 0.9568338889268273, + "zapdos": 0.8162505774888871, + "moltres": 0.8359693062495888, + "mewtwo": 0.772534958839001, + "raikou": 2.352834939583384, + "entei": 1.7611360616585352, + "suicune": 1.7720852285428794, + "lugia": 1.201856488220311, + "ho-oh": 0.8959304931460447, + "latias": 0.8079786553936741, + "latios": 1.0814944931684025, + "kyogre": 0.5229832138811228, + "groudon": 0.3838805708849287, + "rayquaza": 0.4748466569296995, + "uxie": 1.3797683353000771, + "mesprit": 1.321127269796166, + "azelf": 1.2591630747067728, + "dialga": 0.9779079374051083, + "palkia": 0.4944932296424704, + "heatran": 1.0987683283549747, + "giratina-altered": 0.7344338525418788, + "cresselia": 0.7107318156860256, + "tornadus-incarnate": 1.1056172370187598, + "thundurus-incarnate": 1.0830562216483246, + "reshiram": 0.7884993707584745, + "zekrom": 1.0126338348888728, + "landorus-incarnate": 0.560641529396136, + "kyurem": 0.5888213040588028, + "xerneas": 0.4050409391919023, + "yveltal": 0.7525864202790098, + "zygarde-50": 0.39885032390496544, + "tapu-koko": 1.9333706807068225, + "tapu-lele": 1.4919700804773055, + "tapu-bulu": 0.8115112247439071, + "tapu-fini": 0.8469131149110753, + "solgaleo": 1.080701705666134, + "lunala": 0.6086769503956873, + "nihilego": 1.5504248385418715, + "buzzwole": 1.3248872940914764, + "pheromosa": 1.5119993447392719, + "xurkitree": 1.1859282750728855, + "celesteela": 1.067871201160567, + "kartana": 1.6819598615699465, + "guzzlord": 0.7739824822811697, + "necrozma": 1.3258691138946017, + "stakataka": 1.501381197345417, + "blacephalon": 1.893622076330096 }, "stunfisk-galar": { - "articuno": 0.7912006915994332, - "zapdos": 0.7531470909010844, - "moltres": 0.49720467386163447, - "mewtwo": 0.987097808557561, - "raikou": 2.243780928590086, - "entei": 1.5551555634643217, - "suicune": 1.3215370274236091, - "lugia": 1.145511933750362, - "ho-oh": 0.7426844965171756, - "latias": 1.192116842342951, - "latios": 1.6112562827544035, - "kyogre": 0.4100263156555981, - "groudon": 0.3342348815111461, - "rayquaza": 0.4938302443430358, - "uxie": 1.6036817290940881, - "mesprit": 1.6419250099678036, - "azelf": 1.6633866701464688, - "dialga": 0.9204686602702195, - "palkia": 0.49588960638085855, - "heatran": 0.8400017631305565, - "giratina-altered": 0.892326028787314, - "cresselia": 0.8606432323651148, - "tornadus-incarnate": 0.7895703755077761, - "thundurus-incarnate": 1.09704387460534, - "reshiram": 0.6894053317592127, - "zekrom": 0.9645604316124716, - "landorus-incarnate": 0.48939909676225124, - "kyurem": 0.6273420110372815, - "xerneas": 0.4102525726174381, - "yveltal": 0.49896735304450884, - "zygarde-50": 0.3951619210185099, - "tapu-koko": 1.7846127069836175, - "tapu-lele": 1.6052987231412843, - "tapu-bulu": 0.8582551499363128, - "tapu-fini": 0.5943410793847798, - "solgaleo": 1.0403393128815, - "lunala": 1.1075798396937286, - "nihilego": 1.522761178001537, - "buzzwole": 1.0394361821157863, - "pheromosa": 1.2986443852396978, - "xurkitree": 1.1122849488546969, - "celesteela": 0.7206963214344545, - "kartana": 1.6824331591472959, - "guzzlord": 0.766780447764708, - "necrozma": 1.562199958290744, - "stakataka": 1.3875835136381127, - "blacephalon": 1.9250757875695022 + "articuno": 0.7910639218040493, + "zapdos": 0.7549102447566955, + "moltres": 0.49640461660773066, + "mewtwo": 0.9900957520535185, + "raikou": 2.2532605026543524, + "entei": 1.5572078402160265, + "suicune": 1.3212039073466872, + "lugia": 1.1477506328514337, + "ho-oh": 0.742501090828795, + "latias": 1.1934576582930667, + "latios": 1.6138284545848434, + "kyogre": 0.409966105350207, + "groudon": 0.3341347153914128, + "rayquaza": 0.49467385676064607, + "uxie": 1.6060926642799083, + "mesprit": 1.6458401178370026, + "azelf": 1.6679489549368578, + "dialga": 0.924393979485927, + "palkia": 0.4962913346822256, + "heatran": 0.8418511534814179, + "giratina-altered": 0.8949747212558505, + "cresselia": 0.862212485889192, + "tornadus-incarnate": 0.7898246867428722, + "thundurus-incarnate": 1.1004671156703905, + "reshiram": 0.6902715095740781, + "zekrom": 0.9693674529756202, + "landorus-incarnate": 0.4888685868375661, + "kyurem": 0.6280973338001109, + "xerneas": 0.41108077275585597, + "yveltal": 0.4990641810332212, + "zygarde-50": 0.39514998666435214, + "tapu-koko": 1.7924377091440893, + "tapu-lele": 1.6090539689190781, + "tapu-bulu": 0.8581352359124582, + "tapu-fini": 0.5936365474044323, + "solgaleo": 1.045166802679371, + "lunala": 1.1115132293393097, + "nihilego": 1.5287911296925507, + "buzzwole": 1.039372865813705, + "pheromosa": 1.2985257649359867, + "xurkitree": 1.1170185805214516, + "celesteela": 0.7211856656584933, + "kartana": 1.6854589151194015, + "guzzlord": 0.767204345168423, + "necrozma": 1.5682079395534596, + "stakataka": 1.3939244924745327, + "blacephalon": 1.9292120994362456 }, "mienshao": { - "articuno": 1.1824460460005175, - "zapdos": 0.7081409771749047, - "moltres": 1.0039882321313573, - "mewtwo": 0.6782236083348779, - "raikou": 1.6163869725267888, - "entei": 1.3669418426546218, - "suicune": 1.2278456760523286, - "lugia": 0.9185128720797651, - "ho-oh": 1.2459059265540882, - "latias": 0.9231423687032992, - "latios": 1.131343450301361, - "kyogre": 0.6511973186781771, - "groudon": 0.7639849955196777, - "rayquaza": 0.5340818788761321, - "uxie": 1.0906583346979573, - "mesprit": 1.0602342179863495, - "azelf": 1.2436162044799959, - "dialga": 0.7983967687268855, - "palkia": 0.5276782570399591, - "heatran": 0.6671860648066292, - "giratina-altered": 0.6046140735265424, - "cresselia": 0.592733418473496, - "tornadus-incarnate": 1.2049601851611778, - "thundurus-incarnate": 1.2037655278820316, - "reshiram": 0.6382278702433439, - "zekrom": 0.6138641214806702, - "landorus-incarnate": 0.9968778966320695, - "kyurem": 0.8133466575157674, - "xerneas": 0.32186987948763945, - "yveltal": 0.6021869939610796, - "zygarde-50": 0.8105799612337484, - "tapu-koko": 1.0675228640835663, - "tapu-lele": 1.2642364211170958, - "tapu-bulu": 0.9206368266607217, - "tapu-fini": 0.6317590676884237, - "solgaleo": 0.6192988199135027, - "lunala": 0.5396325449869996, - "nihilego": 1.538729859929362, - "buzzwole": 1.0260436369615524, - "pheromosa": 1.5264960567566606, - "xurkitree": 1.033275574342092, - "celesteela": 0.7183767009458412, - "kartana": 2.1311700001343867, - "guzzlord": 0.9366378410682403, - "necrozma": 1.0229376776049268, - "stakataka": 1.3018741260442699, - "blacephalon": 1.6913459297957152 + "articuno": 1.1824810014228004, + "zapdos": 0.7070528577012174, + "moltres": 1.0050343444546117, + "mewtwo": 0.6753642639182762, + "raikou": 1.615469874788333, + "entei": 1.3682115608521508, + "suicune": 1.2260401746587513, + "lugia": 0.9162099620793438, + "ho-oh": 1.2470307494964845, + "latias": 0.9202931641951559, + "latios": 1.1279458956451658, + "kyogre": 0.651188261698604, + "groudon": 0.7634144356424651, + "rayquaza": 0.5333624362229239, + "uxie": 1.0867201694555986, + "mesprit": 1.056372852722228, + "azelf": 1.2395241885868642, + "dialga": 0.7988996551552148, + "palkia": 0.527818384616676, + "heatran": 0.6689481583076867, + "giratina-altered": 0.6030110492244346, + "cresselia": 0.5900554698963757, + "tornadus-incarnate": 1.2034472678982007, + "thundurus-incarnate": 1.2045265098852052, + "reshiram": 0.6382621055648297, + "zekrom": 0.6135388130682771, + "landorus-incarnate": 0.9964002871858817, + "kyurem": 0.8151197767609839, + "xerneas": 0.3207298005374726, + "yveltal": 0.6024520305515051, + "zygarde-50": 0.809911034339164, + "tapu-koko": 1.0654737781142118, + "tapu-lele": 1.258362054811391, + "tapu-bulu": 0.9199129441084338, + "tapu-fini": 0.6307681343604461, + "solgaleo": 0.6178495539691156, + "lunala": 0.5372341332999186, + "nihilego": 1.5375850771636475, + "buzzwole": 1.025563148080388, + "pheromosa": 1.526543851399105, + "xurkitree": 1.0334807420648235, + "celesteela": 0.7186132128457157, + "kartana": 2.1317801147780795, + "guzzlord": 0.9379036771108227, + "necrozma": 1.0195029897802812, + "stakataka": 1.3043415242532441, + "blacephalon": 1.6882762463028538 }, "druddigon": { - "articuno": 0.91744712990563, - "zapdos": 0.7179762890602663, - "moltres": 0.6140409722653275, - "mewtwo": 0.8971454254857434, - "raikou": 2.1391332862008934, - "entei": 1.476309502208163, - "suicune": 1.3890624994933205, - "lugia": 1.1249202742871576, - "ho-oh": 0.7943589722209754, - "latias": 1.3501026222339543, - "latios": 1.5778219649055036, - "kyogre": 0.5220077717006876, - "groudon": 0.34028294976577966, - "rayquaza": 0.417337837482186, - "uxie": 1.6266237802401355, - "mesprit": 1.522076797101048, - "azelf": 1.3889291060046114, - "dialga": 0.6941031291827471, - "palkia": 0.5378128780332087, - "heatran": 0.9155237718259344, - "giratina-altered": 0.8477140451762162, - "cresselia": 0.8449112122242057, - "tornadus-incarnate": 0.7988227043620844, - "thundurus-incarnate": 0.9509469570541448, - "reshiram": 0.7068060688313433, - "zekrom": 0.739682790901465, - "landorus-incarnate": 0.5181464076894258, - "kyurem": 0.6808111326451993, - "xerneas": 0.4399521220860958, - "yveltal": 0.5185117510625089, - "zygarde-50": 0.3992695560372847, - "tapu-koko": 1.4428588464042198, - "tapu-lele": 2.008356146874606, - "tapu-bulu": 1.2316406545557061, - "tapu-fini": 0.7025628578384163, - "solgaleo": 0.8855108917289276, - "lunala": 1.0748568104222809, - "nihilego": 1.8862954933346636, - "buzzwole": 1.397978577012311, - "pheromosa": 2.269283784443818, - "xurkitree": 0.9733017784841644, - "celesteela": 0.7481568530570477, - "kartana": 1.2410435380610085, - "guzzlord": 0.7237410445206114, - "necrozma": 1.4791096620372413, - "stakataka": 0.8062393793900533, - "blacephalon": 2.11233514172745 + "articuno": 0.9171543691858818, + "zapdos": 0.7186869794876207, + "moltres": 0.615058251714344, + "mewtwo": 0.8981709872465437, + "raikou": 2.1436627134095247, + "entei": 1.479552982234559, + "suicune": 1.391373199862941, + "lugia": 1.1262545185881314, + "ho-oh": 0.7960680244252741, + "latias": 1.3519169711072616, + "latios": 1.5791055563404797, + "kyogre": 0.5234308385343023, + "groudon": 0.3405932867762723, + "rayquaza": 0.41714636388075244, + "uxie": 1.6287563111072592, + "mesprit": 1.523128261257583, + "azelf": 1.3898600539447563, + "dialga": 0.6944504434803221, + "palkia": 0.5385185906083328, + "heatran": 0.9181465655339185, + "giratina-altered": 0.8491117714382554, + "cresselia": 0.8455051677193928, + "tornadus-incarnate": 0.7997150450654674, + "thundurus-incarnate": 0.9518644032428353, + "reshiram": 0.7081738807839744, + "zekrom": 0.7402564144677193, + "landorus-incarnate": 0.5186338035968905, + "kyurem": 0.6809085000109156, + "xerneas": 0.4399033732979051, + "yveltal": 0.5185362735764404, + "zygarde-50": 0.39941876722202685, + "tapu-koko": 1.4457022690559604, + "tapu-lele": 2.012086137368387, + "tapu-bulu": 1.2351464239502064, + "tapu-fini": 0.7037478247117248, + "solgaleo": 0.8871265438071316, + "lunala": 1.077035660272723, + "nihilego": 1.891831007482037, + "buzzwole": 1.3993909324684424, + "pheromosa": 2.274656950834456, + "xurkitree": 0.975675780524776, + "celesteela": 0.7484740801239196, + "kartana": 1.2417501723956108, + "guzzlord": 0.7236939170754664, + "necrozma": 1.48196596598113, + "stakataka": 0.8067637078499611, + "blacephalon": 2.1209381303604657 }, "golurk": { - "articuno": 0.805541782309666, - "zapdos": 0.8526293224502732, - "moltres": 0.6270866442105234, - "mewtwo": 1.040294564653418, - "raikou": 2.3152957431104704, - "entei": 1.4182623408366934, - "suicune": 1.4549555732334485, - "lugia": 1.3378921240506016, - "ho-oh": 0.8602925772866414, - "latias": 1.4470657783214693, - "latios": 2.0271513694671506, - "kyogre": 0.4761125074457498, - "groudon": 0.3766059193830977, - "rayquaza": 0.47375733128830594, - "uxie": 1.942333026802949, - "mesprit": 2.0041389676713566, - "azelf": 1.8603956955754994, - "dialga": 0.8934871922914818, - "palkia": 0.5480456456516262, - "heatran": 0.7970472022388141, - "giratina-altered": 0.9935940372534301, - "cresselia": 1.0085117825210845, - "tornadus-incarnate": 0.8571981112594715, - "thundurus-incarnate": 1.2346178129222847, - "reshiram": 0.6701542301230916, - "zekrom": 0.8414731124797687, - "landorus-incarnate": 0.5858090386221866, - "kyurem": 0.7692947523920562, - "xerneas": 0.4161347567320607, - "yveltal": 0.4969550298233547, - "zygarde-50": 0.45589245464268113, - "tapu-koko": 1.5397568830623132, - "tapu-lele": 2.4585061868034668, - "tapu-bulu": 0.9921907945827164, - "tapu-fini": 0.6578068314121152, - "solgaleo": 1.0247872205385928, - "lunala": 1.3500024048673278, - "nihilego": 1.354333678629608, - "buzzwole": 1.191703958796869, - "pheromosa": 1.6950206075653935, - "xurkitree": 0.9563096270899896, - "celesteela": 0.8787217142705162, - "kartana": 1.4393786835090037, - "guzzlord": 0.9797991791175679, - "necrozma": 1.7684078524975444, - "stakataka": 1.129495241708352, - "blacephalon": 2.3310224809641134 + "articuno": 0.8047905411650318, + "zapdos": 0.8546971936581236, + "moltres": 0.6273672744372084, + "mewtwo": 1.0413532046651073, + "raikou": 2.3302046413706705, + "entei": 1.421819490099693, + "suicune": 1.4556279980059879, + "lugia": 1.3392425394187017, + "ho-oh": 0.8613130523665959, + "latias": 1.4482979887351464, + "latios": 2.0314835981234403, + "kyogre": 0.4767380902227523, + "groudon": 0.37736661548141787, + "rayquaza": 0.4738731846861865, + "uxie": 1.944089823639895, + "mesprit": 2.0093733964030127, + "azelf": 1.8648804651295885, + "dialga": 0.8975942966305308, + "palkia": 0.5487044211254868, + "heatran": 0.8005869479498569, + "giratina-altered": 0.9937209057535649, + "cresselia": 1.0095275411167253, + "tornadus-incarnate": 0.8573128284574794, + "thundurus-incarnate": 1.239619694620763, + "reshiram": 0.6720786631721979, + "zekrom": 0.8457145680292031, + "landorus-incarnate": 0.5864713573916898, + "kyurem": 0.7699125104720204, + "xerneas": 0.41646480513700457, + "yveltal": 0.49641777152741995, + "zygarde-50": 0.4566517552963101, + "tapu-koko": 1.546491162947264, + "tapu-lele": 2.462948064350325, + "tapu-bulu": 0.9916937698636246, + "tapu-fini": 0.6573606356828774, + "solgaleo": 1.0281035026656613, + "lunala": 1.3509548781956071, + "nihilego": 1.3605039762782338, + "buzzwole": 1.1939473899355808, + "pheromosa": 1.6984332395008452, + "xurkitree": 0.960249523220742, + "celesteela": 0.8805394402845452, + "kartana": 1.4384176424306085, + "guzzlord": 0.9810108125272105, + "necrozma": 1.772824298629679, + "stakataka": 1.1352356964085522, + "blacephalon": 2.3347483070617336 }, "bisharp": { - "articuno": 0.9505943478418077, - "zapdos": 0.7676731937168253, - "moltres": 0.5113797523651953, - "mewtwo": 1.292902011605329, - "raikou": 1.9159686823088542, - "entei": 1.2644381775464204, - "suicune": 1.589944251672556, - "lugia": 1.4847263391635708, - "ho-oh": 0.8266592969099977, - "latias": 1.6769181164068239, - "latios": 1.9187767277871899, - "kyogre": 0.5074096149489072, - "groudon": 0.2983126132638513, - "rayquaza": 0.5255796185146591, - "uxie": 2.1966299671877123, - "mesprit": 2.022628238930335, - "azelf": 1.864851735616714, - "dialga": 0.7224531011848241, - "palkia": 0.5904278168470058, - "heatran": 0.43857944078495803, - "giratina-altered": 1.1603998368238546, - "cresselia": 1.1793969085690028, - "tornadus-incarnate": 0.8584190797767111, - "thundurus-incarnate": 1.0633714745447747, - "reshiram": 0.6119769271137823, - "zekrom": 0.7257098568620559, - "landorus-incarnate": 0.4987993607141694, - "kyurem": 0.6888935642971871, - "xerneas": 0.4445184034603169, - "yveltal": 0.564566761330028, - "zygarde-50": 0.38843532592417257, - "tapu-koko": 1.3515064242119603, - "tapu-lele": 2.1534529132544655, - "tapu-bulu": 1.4385376266019139, - "tapu-fini": 0.7791626718497069, - "solgaleo": 1.133116220362854, - "lunala": 1.4563414333662599, - "nihilego": 1.6442106334012534, - "buzzwole": 0.9873242317582172, - "pheromosa": 1.6575977772365302, - "xurkitree": 0.8355259315663818, - "celesteela": 0.8196064214881701, - "kartana": 1.3092859537273722, - "guzzlord": 0.7504272492648203, - "necrozma": 1.900984817373967, - "stakataka": 0.6500250285148874, - "blacephalon": 2.307507472851881 + "articuno": 0.9528321862891194, + "zapdos": 0.7692137549409689, + "moltres": 0.5107690202794279, + "mewtwo": 1.2988540450152803, + "raikou": 1.918945974394605, + "entei": 1.26424422988817, + "suicune": 1.5931375056463821, + "lugia": 1.489718090644896, + "ho-oh": 0.8273927780692384, + "latias": 1.683143753692406, + "latios": 1.9213715871867925, + "kyogre": 0.5080014576178428, + "groudon": 0.29741683415966147, + "rayquaza": 0.5270146208035428, + "uxie": 2.206000530304072, + "mesprit": 2.0291357497179865, + "azelf": 1.870799722579068, + "dialga": 0.7235532298463625, + "palkia": 0.5916509152411176, + "heatran": 0.43791278543205947, + "giratina-altered": 1.1645758060635638, + "cresselia": 1.184369976563597, + "tornadus-incarnate": 0.8595939012123175, + "thundurus-incarnate": 1.065200415684082, + "reshiram": 0.6118331599340618, + "zekrom": 0.726965978372709, + "landorus-incarnate": 0.4976323538706193, + "kyurem": 0.6903246334800855, + "xerneas": 0.4450945539778348, + "yveltal": 0.5652964108527234, + "zygarde-50": 0.38805224383039505, + "tapu-koko": 1.3539759152835578, + "tapu-lele": 2.1644609391661076, + "tapu-bulu": 1.4408692253193522, + "tapu-fini": 0.7800276392089112, + "solgaleo": 1.1358630633839106, + "lunala": 1.460744633937054, + "nihilego": 1.65148135897885, + "buzzwole": 0.9844766919157095, + "pheromosa": 1.6558924246422164, + "xurkitree": 0.8363529585946538, + "celesteela": 0.8201504376313689, + "kartana": 1.308482806723001, + "guzzlord": 0.7506066275199627, + "necrozma": 1.9082122307752565, + "stakataka": 0.650399696964345, + "blacephalon": 2.308617121481507 }, "bouffalant": { - "articuno": 0.9846990798962583, - "zapdos": 0.7966572021482301, - "moltres": 0.6575839037903575, - "mewtwo": 0.9624031072495678, - "raikou": 1.95951992241497, - "entei": 1.3765747431496558, - "suicune": 1.5460929524679128, - "lugia": 1.13963693700826, - "ho-oh": 0.8900685062984613, - "latias": 1.323908631791844, - "latios": 1.6029875665653202, - "kyogre": 0.5582834919366685, - "groudon": 0.37552145450325836, - "rayquaza": 0.5046327573516723, - "uxie": 1.6588954656949118, - "mesprit": 1.5476328654999691, - "azelf": 1.479602667783674, - "dialga": 0.782733625703119, - "palkia": 0.6133681053351863, - "heatran": 0.6650707324892589, - "giratina-altered": 0.9411442207133662, - "cresselia": 0.8883061883818313, - "tornadus-incarnate": 0.9352405523158593, - "thundurus-incarnate": 1.0606226824423879, - "reshiram": 0.6802913020800554, - "zekrom": 0.7162988361716417, - "landorus-incarnate": 0.5892101745524482, - "kyurem": 0.7928763104078934, - "xerneas": 0.49005938030614266, - "yveltal": 0.6108529812147769, - "zygarde-50": 0.46432382053631693, - "tapu-koko": 1.3147452617849713, - "tapu-lele": 1.973129067342803, - "tapu-bulu": 1.2663578950123553, - "tapu-fini": 0.7890154505342886, - "solgaleo": 0.8695251459014066, - "lunala": 1.1418361726475186, - "nihilego": 1.355578526935827, - "buzzwole": 1.0480212555624013, - "pheromosa": 1.58681137333375, - "xurkitree": 0.9031388487146428, - "celesteela": 0.7977575683648042, - "kartana": 1.7352405547233618, - "guzzlord": 0.9721520322223893, - "necrozma": 1.447657114131479, - "stakataka": 0.909081762066032, - "blacephalon": 2.0662870336141785 + "articuno": 0.9881706138979243, + "zapdos": 0.7985885626491073, + "moltres": 0.6589521196921511, + "mewtwo": 0.9650127750564699, + "raikou": 1.9651931313139053, + "entei": 1.3801225515013416, + "suicune": 1.5499331603508866, + "lugia": 1.142711391759141, + "ho-oh": 0.8925475123129623, + "latias": 1.3282680461294096, + "latios": 1.607455566244089, + "kyogre": 0.5600398452313988, + "groudon": 0.37615071411584433, + "rayquaza": 0.505756402616342, + "uxie": 1.6645195073664758, + "mesprit": 1.5517567352250843, + "azelf": 1.483638754783, + "dialga": 0.7853116557273717, + "palkia": 0.6152321388092512, + "heatran": 0.6673578108223283, + "giratina-altered": 0.9440065674028755, + "cresselia": 0.8909790722322068, + "tornadus-incarnate": 0.9377864388826175, + "thundurus-incarnate": 1.0629743952610635, + "reshiram": 0.6824581177663392, + "zekrom": 0.7179504870597464, + "landorus-incarnate": 0.5903531179098294, + "kyurem": 0.7966185426176513, + "xerneas": 0.4918459339278659, + "yveltal": 0.6125745090645411, + "zygarde-50": 0.46548778424245574, + "tapu-koko": 1.3174132050478344, + "tapu-lele": 1.9796430782541068, + "tapu-bulu": 1.272883031543591, + "tapu-fini": 0.7908649025446434, + "solgaleo": 0.8717791244173634, + "lunala": 1.1464497143282868, + "nihilego": 1.3603845993878951, + "buzzwole": 1.0473034362550098, + "pheromosa": 1.588356485050873, + "xurkitree": 0.9064079526839085, + "celesteela": 0.8000556600159529, + "kartana": 1.7465654825760417, + "guzzlord": 0.9753622550071358, + "necrozma": 1.451421513709514, + "stakataka": 0.9114948898908137, + "blacephalon": 2.070536621683005 }, "heatmor": { - "articuno": 1.2495533829367933, - "zapdos": 0.7727144185228889, - "moltres": 0.7220652809254401, - "mewtwo": 0.9089925882284482, - "raikou": 1.7990829482409403, - "entei": 1.2945381881498732, - "suicune": 1.4460898124707264, - "lugia": 0.9229906688331588, - "ho-oh": 0.7501702264625717, - "latias": 0.7924457602617114, - "latios": 1.1014712534470363, - "kyogre": 0.39372326907833566, - "groudon": 0.4128410389153212, - "rayquaza": 0.40252169428552553, - "uxie": 1.4450243739449609, - "mesprit": 1.4035391833646793, - "azelf": 1.377178072352137, - "dialga": 0.746175692267064, - "palkia": 0.3950555326344103, - "heatran": 0.4819754311510138, - "giratina-altered": 0.5925622672388223, - "cresselia": 0.810836075709267, - "tornadus-incarnate": 1.006191977234824, - "thundurus-incarnate": 0.9877134436812576, - "reshiram": 0.47000970215629506, - "zekrom": 0.5936484143490925, - "landorus-incarnate": 0.5112705825967195, - "kyurem": 0.692407950857088, - "xerneas": 0.48225636405005734, - "yveltal": 0.5981186605785049, - "zygarde-50": 0.3400493629399085, - "tapu-koko": 1.3579443344932982, - "tapu-lele": 1.7028520120869, - "tapu-bulu": 1.6947660236095152, - "tapu-fini": 0.6690276658110514, - "solgaleo": 1.3103029875376409, - "lunala": 0.6501848109270094, - "nihilego": 0.8858600177483447, - "buzzwole": 2.2618047045723886, - "pheromosa": 2.322990088361584, - "xurkitree": 0.8744063198796659, - "celesteela": 1.1905480393960883, - "kartana": 5.62932790040283, - "guzzlord": 0.664697813609028, - "necrozma": 1.3030522600416907, - "stakataka": 0.7005861973049757, - "blacephalon": 1.50044909675421 + "articuno": 1.254364791904411, + "zapdos": 0.7736803887251853, + "moltres": 0.7252205415694669, + "mewtwo": 0.910099929888637, + "raikou": 1.800493290372077, + "entei": 1.2979126537521344, + "suicune": 1.4433876352421362, + "lugia": 0.9227441014343853, + "ho-oh": 0.7521103404013443, + "latias": 0.7908450747765652, + "latios": 1.1000950912427236, + "kyogre": 0.3929927357000549, + "groudon": 0.41312907137598587, + "rayquaza": 0.4020129030044053, + "uxie": 1.4462112069949313, + "mesprit": 1.4050174342418895, + "azelf": 1.3788228258334136, + "dialga": 0.7474020104564065, + "palkia": 0.3936989614012546, + "heatran": 0.4798548639013273, + "giratina-altered": 0.5919092350372743, + "cresselia": 0.8120660831138545, + "tornadus-incarnate": 1.0088189815929693, + "thundurus-incarnate": 0.9885597242550751, + "reshiram": 0.46945624567739064, + "zekrom": 0.5930983470646826, + "landorus-incarnate": 0.5109594053584127, + "kyurem": 0.6934691666086521, + "xerneas": 0.48385692129478125, + "yveltal": 0.5986437254346474, + "zygarde-50": 0.3393016107993634, + "tapu-koko": 1.3600069985573295, + "tapu-lele": 1.7051920917465258, + "tapu-bulu": 1.7018975923928028, + "tapu-fini": 0.6681219611776334, + "solgaleo": 1.3164854090662093, + "lunala": 0.6509121480276729, + "nihilego": 0.8834595675114897, + "buzzwole": 2.270178336296424, + "pheromosa": 2.3309801406277, + "xurkitree": 0.8757156802562919, + "celesteela": 1.1944624731671662, + "kartana": 5.661347244948325, + "guzzlord": 0.6635893823981992, + "necrozma": 1.3032994967967562, + "stakataka": 0.7011617969906027, + "blacephalon": 1.5050833946090907 }, "durant": { - "articuno": 1.0027112923381756, - "zapdos": 0.5817658158140977, - "moltres": 0.33147950049296543, - "mewtwo": 1.1661149523745737, - "raikou": 1.8084167484616291, - "entei": 0.8406633871746299, - "suicune": 1.5853424195020496, - "lugia": 0.997770771846276, - "ho-oh": 0.7331173634961021, - "latias": 1.506111990512784, - "latios": 1.9827876062161147, - "kyogre": 0.4822473072958768, - "groudon": 0.30697636999121114, - "rayquaza": 0.44447147183911107, - "uxie": 1.8827109469340966, - "mesprit": 1.8555849689964106, - "azelf": 1.7923688229224564, - "dialga": 0.5436480680946146, - "palkia": 0.5400894955426393, - "heatran": 0.21992006528066463, - "giratina-altered": 0.6464838877955813, - "cresselia": 1.095905331311867, - "tornadus-incarnate": 0.657308572391699, - "thundurus-incarnate": 0.8125427641067242, - "reshiram": 0.35333705494974865, - "zekrom": 0.7240573188900826, - "landorus-incarnate": 0.514524688677792, - "kyurem": 0.7266971855779878, - "xerneas": 0.5067428007567532, - "yveltal": 0.578380745401069, - "zygarde-50": 0.45243207391937645, - "tapu-koko": 1.0258671907563044, - "tapu-lele": 2.1748462089288605, - "tapu-bulu": 1.2798166714849049, - "tapu-fini": 0.7179088529958539, - "solgaleo": 0.7378917309868858, - "lunala": 0.6241829339309495, - "nihilego": 1.6044364653383782, - "buzzwole": 1.0479812803795427, - "pheromosa": 1.4463059941784209, - "xurkitree": 0.7658509522010055, - "celesteela": 0.9341945461183823, - "kartana": 1.31987915617697, - "guzzlord": 1.1596622537158103, - "necrozma": 1.6575508046638785, - "stakataka": 0.565269597845566, - "blacephalon": 0.9479106412545129 + "articuno": 1.0038190778515659, + "zapdos": 0.5810626556237041, + "moltres": 0.3292294453423832, + "mewtwo": 1.1687388262366816, + "raikou": 1.8073898911439703, + "entei": 0.835594460806991, + "suicune": 1.5864417181114616, + "lugia": 0.9979965866277614, + "ho-oh": 0.7302989557583643, + "latias": 1.508484855858975, + "latios": 1.9861034635219443, + "kyogre": 0.48216395180698446, + "groudon": 0.30635703758580773, + "rayquaza": 0.4446898769396528, + "uxie": 1.8847381331468567, + "mesprit": 1.8587127742647889, + "azelf": 1.7960718907871365, + "dialga": 0.5436335324878949, + "palkia": 0.5402152729039221, + "heatran": 0.2186082079822583, + "giratina-altered": 0.6461018469253001, + "cresselia": 1.0987862612853272, + "tornadus-incarnate": 0.6554349454935646, + "thundurus-incarnate": 0.8114547805686105, + "reshiram": 0.35035796896892196, + "zekrom": 0.7244498546457075, + "landorus-incarnate": 0.5141161973329698, + "kyurem": 0.7270969164807365, + "xerneas": 0.5076345584810371, + "yveltal": 0.5787746737352633, + "zygarde-50": 0.4525279048104184, + "tapu-koko": 1.0244666141093384, + "tapu-lele": 2.181504714925086, + "tapu-bulu": 1.2836753536934882, + "tapu-fini": 0.7176161561479952, + "solgaleo": 0.7380335286451101, + "lunala": 0.6236246586229509, + "nihilego": 1.6079146923790217, + "buzzwole": 1.0480129276240482, + "pheromosa": 1.447015283623501, + "xurkitree": 0.7647786096333324, + "celesteela": 0.9355152302942145, + "kartana": 1.3206952940294314, + "guzzlord": 1.1622708646875224, + "necrozma": 1.6592254333741998, + "stakataka": 0.5653543352828134, + "blacephalon": 0.9401834891076342 }, "diggersby": { - "articuno": 0.91902797424925, - "zapdos": 0.7750739528385395, - "moltres": 0.7410314594153247, - "mewtwo": 0.6504479664761058, - "raikou": 2.1698127827141755, - "entei": 1.3718639895090456, - "suicune": 1.1442856395342762, - "lugia": 0.899997244699386, - "ho-oh": 1.0439778228034122, - "latias": 0.7888889698639918, - "latios": 1.043539358075542, - "kyogre": 0.3689883502136859, - "groudon": 0.3082843369687427, - "rayquaza": 0.4411364655617034, - "uxie": 1.1326682854879038, - "mesprit": 1.046109014498176, - "azelf": 0.9942440057255619, - "dialga": 0.7010824148273633, - "palkia": 0.42800060412166513, - "heatran": 0.8011521979624754, - "giratina-altered": 0.6848111527653129, - "cresselia": 0.5755733880105492, - "tornadus-incarnate": 0.7754847218224672, - "thundurus-incarnate": 1.0732812578372806, - "reshiram": 0.6809163257433588, - "zekrom": 0.783993767106147, - "landorus-incarnate": 0.44840031692260685, - "kyurem": 0.5426967808479908, - "xerneas": 0.3457663890823139, - "yveltal": 0.5306789787856719, - "zygarde-50": 0.37712477315164616, - "tapu-koko": 1.4921340740323719, - "tapu-lele": 1.4298607430749888, - "tapu-bulu": 0.7281650213596964, - "tapu-fini": 0.5399432216905163, - "solgaleo": 0.7865893916267099, - "lunala": 0.5873218754644534, - "nihilego": 1.9384264581611332, - "buzzwole": 0.8469303706704647, - "pheromosa": 1.181903673214137, - "xurkitree": 0.983901061497253, - "celesteela": 0.6283036461790567, - "kartana": 1.0337294034923017, - "guzzlord": 0.6877252491943107, - "necrozma": 1.1303259406730506, - "stakataka": 0.813868094840581, - "blacephalon": 1.8547365554529716 + "articuno": 0.9174418472797068, + "zapdos": 0.7760688162427543, + "moltres": 0.741427454275926, + "mewtwo": 0.6496462679686759, + "raikou": 2.177613256165116, + "entei": 1.3739307104528011, + "suicune": 1.1417661012932676, + "lugia": 0.8990998477014505, + "ho-oh": 1.0452513582877438, + "latias": 0.7868927716230351, + "latios": 1.0410028242470697, + "kyogre": 0.3686128257637218, + "groudon": 0.3078083205739003, + "rayquaza": 0.4406646486513499, + "uxie": 1.131150116948144, + "mesprit": 1.04376972082765, + "azelf": 0.9920612481281429, + "dialga": 0.7018782140186606, + "palkia": 0.4274802561321769, + "heatran": 0.8035983763175283, + "giratina-altered": 0.686089152341702, + "cresselia": 0.5742656734056761, + "tornadus-incarnate": 0.7746626341734184, + "thundurus-incarnate": 1.0754307525438738, + "reshiram": 0.6823277553003478, + "zekrom": 0.7863327748030845, + "landorus-incarnate": 0.4475209007821857, + "kyurem": 0.5421112076227517, + "xerneas": 0.34562169235679296, + "yveltal": 0.5302165752747631, + "zygarde-50": 0.3768265859164318, + "tapu-koko": 1.4969661127380973, + "tapu-lele": 1.430063526467931, + "tapu-bulu": 0.7255505373078939, + "tapu-fini": 0.5389340394417755, + "solgaleo": 0.7870064053559734, + "lunala": 0.5881420063252647, + "nihilego": 1.946749736610604, + "buzzwole": 0.8441808930243311, + "pheromosa": 1.1792939043903203, + "xurkitree": 0.9869892075993192, + "celesteela": 0.6273610583090192, + "kartana": 1.0288360494489783, + "guzzlord": 0.6873657880950635, + "necrozma": 1.1306325662368917, + "stakataka": 0.8150059762287244, + "blacephalon": 1.859931095902453 }, "talonflame": { - "articuno": 0.9296584161746145, - "zapdos": 0.5784800778001703, - "moltres": 0.615073186526112, - "mewtwo": 0.7528525073988765, - "raikou": 1.3667528381207825, - "entei": 1.2619805359865217, - "suicune": 1.1984130507250406, - "lugia": 0.7672815297152987, - "ho-oh": 0.6374719975092658, - "latias": 0.8159224904336826, - "latios": 1.1665694372619044, - "kyogre": 0.3277183154907631, - "groudon": 0.45657976685870083, - "rayquaza": 0.4284220197038824, - "uxie": 1.253824043235241, - "mesprit": 1.2158943743089012, - "azelf": 1.190752964280034, - "dialga": 0.5806705239852122, - "palkia": 0.3988579848982262, - "heatran": 0.43115579785932845, - "giratina-altered": 0.6005623068542635, - "cresselia": 0.6896351934782056, - "tornadus-incarnate": 0.791256468973536, - "thundurus-incarnate": 0.7354008486199656, - "reshiram": 0.5683825301237022, - "zekrom": 0.4936323016069072, - "landorus-incarnate": 0.5406039072870712, - "kyurem": 0.5981396243241048, - "xerneas": 0.4432059157532011, - "yveltal": 0.5181891469034207, - "zygarde-50": 0.4830031890971078, - "tapu-koko": 0.9971381364530337, - "tapu-lele": 1.693253078508425, - "tapu-bulu": 1.4498869681491304, - "tapu-fini": 0.5519411403205678, - "solgaleo": 1.00077189061204, - "lunala": 0.5683458004358672, - "nihilego": 1.0479488563549322, - "buzzwole": 2.8023146087519932, - "pheromosa": 2.7383304048190102, - "xurkitree": 0.6471421031989453, - "celesteela": 1.0829225487123078, - "kartana": 4.044052118446147, - "guzzlord": 0.7439679040346874, - "necrozma": 1.01260181404855, - "stakataka": 0.5075378807653077, - "blacephalon": 1.3946059519952356 + "articuno": 0.9305678729068869, + "zapdos": 0.5772234183922289, + "moltres": 0.6155410700245078, + "mewtwo": 0.7525839069066576, + "raikou": 1.3619060575518607, + "entei": 1.2623708031049177, + "suicune": 1.194746492061338, + "lugia": 0.7656655572841411, + "ho-oh": 0.6366830017561431, + "latias": 0.8144157435930959, + "latios": 1.165726209160857, + "kyogre": 0.3265127663840859, + "groudon": 0.4582356232692708, + "rayquaza": 0.4280826684548761, + "uxie": 1.2533354379628485, + "mesprit": 1.2156950204778971, + "azelf": 1.1907362422243037, + "dialga": 0.5800961839755787, + "palkia": 0.39725306337818095, + "heatran": 0.43009907938739417, + "giratina-altered": 0.5994582387300728, + "cresselia": 0.6897086909061988, + "tornadus-incarnate": 0.7916316323824326, + "thundurus-incarnate": 0.7331674211441351, + "reshiram": 0.568308629185756, + "zekrom": 0.49178546876620804, + "landorus-incarnate": 0.5413282441440763, + "kyurem": 0.5982348123526726, + "xerneas": 0.44446670327954063, + "yveltal": 0.5181943599235974, + "zygarde-50": 0.48374755957323473, + "tapu-koko": 0.9951330883231682, + "tapu-lele": 1.6946097067961632, + "tapu-bulu": 1.4572617443253562, + "tapu-fini": 0.5506791510203508, + "solgaleo": 1.002762825273652, + "lunala": 0.5682670074341893, + "nihilego": 1.0431491160333781, + "buzzwole": 2.8177374802697726, + "pheromosa": 2.7495904606669286, + "xurkitree": 0.6453103655794465, + "celesteela": 1.0844617295615633, + "kartana": 4.066496179925876, + "guzzlord": 0.7438023242034577, + "necrozma": 1.0098450182568992, + "stakataka": 0.5063683308988747, + "blacephalon": 1.3949833477967366 }, "pangoro": { - "articuno": 0.9301313729754863, - "zapdos": 0.7622310483796217, - "moltres": 0.647661187289571, - "mewtwo": 1.3216550474856192, - "raikou": 2.0661928270044667, - "entei": 1.4903780481731916, - "suicune": 1.7015843508115922, - "lugia": 1.4972207547718077, - "ho-oh": 0.9459305929984443, - "latias": 1.804377289223827, - "latios": 2.204834715196574, - "kyogre": 0.5808449380508456, - "groudon": 0.38802828645798093, - "rayquaza": 0.5089769764723984, - "uxie": 2.284238856445265, - "mesprit": 1.920429821615323, - "azelf": 1.5816800201315635, - "dialga": 0.9636180679199136, - "palkia": 0.6499170188346237, - "heatran": 0.8119540375877697, - "giratina-altered": 1.2173485520843004, - "cresselia": 1.1451558485695545, - "tornadus-incarnate": 0.8661230881546422, - "thundurus-incarnate": 1.0574849382937714, - "reshiram": 0.7371705645346887, - "zekrom": 0.7545527406619348, - "landorus-incarnate": 0.6051120300269308, - "kyurem": 0.9040368393515674, - "xerneas": 0.28769202957363776, - "yveltal": 0.6243998090114531, - "zygarde-50": 0.48370162206339606, - "tapu-koko": 1.040417903583001, - "tapu-lele": 1.8179999384903718, - "tapu-bulu": 0.9998132888778369, - "tapu-fini": 0.5800722456033925, - "solgaleo": 1.178413236010747, - "lunala": 1.4316493606906295, - "nihilego": 1.3649136722661996, - "buzzwole": 0.9169096488627102, - "pheromosa": 1.3424876233626444, - "xurkitree": 0.9391858060753113, - "celesteela": 0.9520838483107219, - "kartana": 1.5278514353873431, - "guzzlord": 1.2512715062885686, - "necrozma": 2.0379590364819364, - "stakataka": 1.2059758023318912, - "blacephalon": 2.785013456869301 + "articuno": 0.9317772030865865, + "zapdos": 0.7622361388556174, + "moltres": 0.6479505603100546, + "mewtwo": 1.3277211823768176, + "raikou": 2.0703471019003397, + "entei": 1.4939687463102174, + "suicune": 1.7059176210778841, + "lugia": 1.4999429249300222, + "ho-oh": 0.9482980044354749, + "latias": 1.8115895170244984, + "latios": 2.2119819116668915, + "kyogre": 0.5821457172339406, + "groudon": 0.3884156718837659, + "rayquaza": 0.5091153208506396, + "uxie": 2.294477381159047, + "mesprit": 1.9228405996051139, + "azelf": 1.5833796489978194, + "dialga": 0.9672513189998322, + "palkia": 0.6515230980245188, + "heatran": 0.8150936745980157, + "giratina-altered": 1.2209382784044207, + "cresselia": 1.1480656538148026, + "tornadus-incarnate": 0.8659169775054475, + "thundurus-incarnate": 1.0584943903464472, + "reshiram": 0.7392324119489939, + "zekrom": 0.7558115542165129, + "landorus-incarnate": 0.6057493947616466, + "kyurem": 0.9071901029217981, + "xerneas": 0.28643567414944077, + "yveltal": 0.6258187559729337, + "zygarde-50": 0.48458377983540263, + "tapu-koko": 1.0399831471060221, + "tapu-lele": 1.821379341105417, + "tapu-bulu": 1.0000325637271517, + "tapu-fini": 0.579145663061299, + "solgaleo": 1.1827562660933166, + "lunala": 1.433418177573742, + "nihilego": 1.37039662887272, + "buzzwole": 0.915033510028344, + "pheromosa": 1.3420410731272816, + "xurkitree": 0.941118793699298, + "celesteela": 0.9549135173479255, + "kartana": 1.5291800367634845, + "guzzlord": 1.2558130865391444, + "necrozma": 2.0470791335987975, + "stakataka": 1.2107354609903496, + "blacephalon": 2.792693472384864 }, "doublade": { - "articuno": 1.2184470026442564, - "zapdos": 0.5800042519907249, - "moltres": 0.3753617921147516, - "mewtwo": 0.8716557033004303, - "raikou": 1.5953873074955665, - "entei": 1.0337641780638072, - "suicune": 1.3361195477100247, - "lugia": 0.9952179343108077, - "ho-oh": 0.6776291591642407, - "latias": 1.090923914907742, - "latios": 1.529834957820685, - "kyogre": 0.39074208602210847, - "groudon": 0.32327458412082116, - "rayquaza": 0.5023702272303152, - "uxie": 1.3836351412474608, - "mesprit": 1.5050868606032815, - "azelf": 1.3989349180732218, - "dialga": 0.7558752574196239, - "palkia": 0.47785586159176774, - "heatran": 0.40152725561359237, - "giratina-altered": 0.6842063029132165, - "cresselia": 0.8091455004574354, - "tornadus-incarnate": 0.7831683006868051, - "thundurus-incarnate": 0.7977113992544613, - "reshiram": 0.46626620151041903, - "zekrom": 0.6445847187584169, - "landorus-incarnate": 0.5630390011009025, - "kyurem": 0.8746455111194058, - "xerneas": 0.6044526100037183, - "yveltal": 0.496556280779772, - "zygarde-50": 0.4175704974879496, - "tapu-koko": 1.1896442967006156, - "tapu-lele": 2.652931928037333, - "tapu-bulu": 1.5498674118940468, - "tapu-fini": 0.679187818964831, - "solgaleo": 0.6775203360942443, - "lunala": 0.5907457533801114, - "nihilego": 1.9474767498945176, - "buzzwole": 1.5949390027707442, - "pheromosa": 2.482532840724887, - "xurkitree": 0.6419265828199195, - "celesteela": 0.7040661338098753, - "kartana": 1.4069256795459992, - "guzzlord": 0.8738051641183258, - "necrozma": 1.2953015258590783, - "stakataka": 0.8508394041563991, - "blacephalon": 1.143685789500147 + "articuno": 1.2211447387094037, + "zapdos": 0.5795466849937125, + "moltres": 0.3738383004209703, + "mewtwo": 0.8726160506892635, + "raikou": 1.5959172320793542, + "entei": 1.0319568886581583, + "suicune": 1.3367104975884911, + "lugia": 0.9954729269647611, + "ho-oh": 0.6774342171592792, + "latias": 1.0916955148311893, + "latios": 1.5328757711643193, + "kyogre": 0.39046015802446343, + "groudon": 0.3231313181858113, + "rayquaza": 0.503203147837681, + "uxie": 1.3822167334413655, + "mesprit": 1.508006574248916, + "azelf": 1.4013456165858726, + "dialga": 0.7580935165928306, + "palkia": 0.47832663334702225, + "heatran": 0.4008108535691022, + "giratina-altered": 0.6830331034588408, + "cresselia": 0.8103503104455345, + "tornadus-incarnate": 0.7827617167096907, + "thundurus-incarnate": 0.796740500039592, + "reshiram": 0.46480073792668186, + "zekrom": 0.6454715662244708, + "landorus-incarnate": 0.5634406057750452, + "kyurem": 0.8758709389243137, + "xerneas": 0.605857622812052, + "yveltal": 0.496268432763885, + "zygarde-50": 0.4176118309005763, + "tapu-koko": 1.1893950199726018, + "tapu-lele": 2.6607833343695404, + "tapu-bulu": 1.5568586506275817, + "tapu-fini": 0.6787141876937388, + "solgaleo": 0.6782374258678587, + "lunala": 0.5879949221902436, + "nihilego": 1.9552700642657141, + "buzzwole": 1.6011132313203378, + "pheromosa": 2.492958364641562, + "xurkitree": 0.6408555788679222, + "celesteela": 0.7049258971916942, + "kartana": 1.4094154041755904, + "guzzlord": 0.8755169582141353, + "necrozma": 1.2959436064127607, + "stakataka": 0.8536786818554221, + "blacephalon": 1.1386601014699167 }, "malamar": { - "articuno": 0.8225938010508954, - "zapdos": 0.6961234409055181, - "moltres": 0.6202819747424068, - "mewtwo": 1.0916039385007412, - "raikou": 1.71602240038486, - "entei": 1.230678577596261, - "suicune": 1.5246579663636581, - "lugia": 1.2550691184167024, - "ho-oh": 0.8087012245565621, - "latias": 1.4639041267721367, - "latios": 1.8556921789761107, - "kyogre": 0.47808942389266873, - "groudon": 0.3666082682098268, - "rayquaza": 0.4500069074613129, - "uxie": 1.8495831086829535, - "mesprit": 1.6622196401153753, - "azelf": 1.488569917693258, - "dialga": 0.6072890553520434, - "palkia": 0.5341583448258141, - "heatran": 0.48741336938286417, - "giratina-altered": 0.9357984592621504, - "cresselia": 0.9903005911327653, - "tornadus-incarnate": 0.8300470110908155, - "thundurus-incarnate": 0.9081291653329471, - "reshiram": 0.6122660781259105, - "zekrom": 0.6471438522901767, - "landorus-incarnate": 0.5339833066940086, - "kyurem": 0.5872257804227103, - "xerneas": 0.3163097715309299, - "yveltal": 0.5668005302505239, - "zygarde-50": 0.424472235470684, - "tapu-koko": 1.1340449828375931, - "tapu-lele": 1.7198634321225885, - "tapu-bulu": 0.8809531596025069, - "tapu-fini": 0.6775148876838477, - "solgaleo": 0.9729215170509471, - "lunala": 1.1298537920860683, - "nihilego": 1.0918001789313594, - "buzzwole": 1.323686586458558, - "pheromosa": 1.5491219687851194, - "xurkitree": 0.7693345730446319, - "celesteela": 0.8384802810723339, - "kartana": 1.302414543591019, - "guzzlord": 0.6544595979290415, - "necrozma": 1.6542770108509588, - "stakataka": 0.5801297627872466, - "blacephalon": 2.1853924693439186 + "articuno": 0.8231675067200648, + "zapdos": 0.6968357049133549, + "moltres": 0.6212477285877523, + "mewtwo": 1.0954776604539123, + "raikou": 1.7160107297795393, + "entei": 1.2318029485135005, + "suicune": 1.5278405710062883, + "lugia": 1.2579879398071392, + "ho-oh": 0.8102613461028505, + "latias": 1.4674839385862382, + "latios": 1.8601732759103773, + "kyogre": 0.4785115889339412, + "groudon": 0.36664623886150116, + "rayquaza": 0.4502579336843129, + "uxie": 1.8551157153132758, + "mesprit": 1.66458397730492, + "azelf": 1.4905530572954189, + "dialga": 0.6074222725939935, + "palkia": 0.5345459099698582, + "heatran": 0.48777528345854815, + "giratina-altered": 0.9373815366681915, + "cresselia": 0.9930729124844955, + "tornadus-incarnate": 0.8311473544291805, + "thundurus-incarnate": 0.908524293366693, + "reshiram": 0.6127822069889696, + "zekrom": 0.6472916806259752, + "landorus-incarnate": 0.5341183738345697, + "kyurem": 0.587057008064579, + "xerneas": 0.3155713405732987, + "yveltal": 0.5668184841902781, + "zygarde-50": 0.42446540561130613, + "tapu-koko": 1.1338666190815458, + "tapu-lele": 1.7231812104613478, + "tapu-bulu": 0.87937310058013, + "tapu-fini": 0.6774842889010696, + "solgaleo": 0.9750545558952796, + "lunala": 1.1311282406832959, + "nihilego": 1.092062187199416, + "buzzwole": 1.3197410743645317, + "pheromosa": 1.544274751072182, + "xurkitree": 0.7694585957108578, + "celesteela": 0.8399817580276032, + "kartana": 1.3023746985910511, + "guzzlord": 0.6533530681654198, + "necrozma": 1.6593597615216797, + "stakataka": 0.5801710310618147, + "blacephalon": 2.1906495172325853 }, "barbaracle": { - "articuno": 0.961204724364664, - "zapdos": 0.699271255668094, - "moltres": 0.9425084597445441, - "mewtwo": 0.8784606305136426, - "raikou": 1.772880301925464, - "entei": 1.891800729990326, - "suicune": 1.4284122744316643, - "lugia": 0.9997697141528411, - "ho-oh": 1.2453453171622701, - "latias": 1.0597692775015286, - "latios": 1.2810423737829044, - "kyogre": 0.4808674832164769, - "groudon": 0.4255361999602858, - "rayquaza": 0.5971810307037787, - "uxie": 1.4326883399176498, - "mesprit": 1.4020203259382673, - "azelf": 1.3232242910004848, - "dialga": 0.5406935194253784, - "palkia": 0.55124587765613, - "heatran": 0.8305961334493248, - "giratina-altered": 0.6928820063381324, - "cresselia": 0.794251111927424, - "tornadus-incarnate": 0.9913063252941576, - "thundurus-incarnate": 0.925070097316506, - "reshiram": 0.6900889087228317, - "zekrom": 0.6619106350178369, - "landorus-incarnate": 0.6831116031126938, - "kyurem": 0.650293837831168, - "xerneas": 0.4211231906603529, - "yveltal": 0.599727309301077, - "zygarde-50": 0.5146921237536173, - "tapu-koko": 1.1804914281223229, - "tapu-lele": 1.8440727653862465, - "tapu-bulu": 1.1736973882132444, - "tapu-fini": 0.7639018141874208, - "solgaleo": 0.7696239017537582, - "lunala": 0.6559043448454882, - "nihilego": 1.747745129588628, - "buzzwole": 1.0396105893319296, - "pheromosa": 1.5825297142266097, - "xurkitree": 0.7154358753973675, - "celesteela": 0.7865970939341413, - "kartana": 1.1291052321054518, - "guzzlord": 0.8044923938585269, - "necrozma": 1.240794805696733, - "stakataka": 0.7547658449898478, - "blacephalon": 2.5307652535377714 + "articuno": 0.9643731159365924, + "zapdos": 0.7007854179724201, + "moltres": 0.9473176272435733, + "mewtwo": 0.8802763022995603, + "raikou": 1.7743119846022517, + "entei": 1.9001373898528877, + "suicune": 1.4304769095317837, + "lugia": 1.0023719747264939, + "ho-oh": 1.2515668690528992, + "latias": 1.06177451780166, + "latios": 1.2827138525246087, + "kyogre": 0.48134623623752015, + "groudon": 0.4260214144750544, + "rayquaza": 0.5991930537380501, + "uxie": 1.4351507521834401, + "mesprit": 1.4050172265409893, + "azelf": 1.3261344089417335, + "dialga": 0.5408705136255056, + "palkia": 0.5522214188816991, + "heatran": 0.8333481492340894, + "giratina-altered": 0.6931916989321674, + "cresselia": 0.795981949306549, + "tornadus-incarnate": 0.9957750444727405, + "thundurus-incarnate": 0.9261606453990667, + "reshiram": 0.6926898045383423, + "zekrom": 0.6625159187757931, + "landorus-incarnate": 0.6845225905619735, + "kyurem": 0.6517114300441884, + "xerneas": 0.4220099711281563, + "yveltal": 0.6016187156913887, + "zygarde-50": 0.5153353624753855, + "tapu-koko": 1.182792698466659, + "tapu-lele": 1.8505089762084848, + "tapu-bulu": 1.1730982412243023, + "tapu-fini": 0.7656508036724214, + "solgaleo": 0.770265360451465, + "lunala": 0.6558543293509791, + "nihilego": 1.7520671283739526, + "buzzwole": 1.0397794979909025, + "pheromosa": 1.5849337816061821, + "xurkitree": 0.714629470463543, + "celesteela": 0.7871505648719765, + "kartana": 1.1224111253866633, + "guzzlord": 0.8061066680802224, + "necrozma": 1.2421506720546935, + "stakataka": 0.7554531769119416, + "blacephalon": 2.53922237803247 }, "heliolisk": { - "articuno": 1.0416979455419335, - "zapdos": 0.7634599540982168, - "moltres": 0.7071849213961787, - "mewtwo": 0.7875549098429175, - "raikou": 1.6618647777379314, - "entei": 1.1432968782027007, - "suicune": 2.3133859328886395, - "lugia": 1.241816271540145, - "ho-oh": 0.7374545787479965, - "latias": 1.1402570264322551, - "latios": 1.1398524359391622, - "kyogre": 0.9137245870574675, - "groudon": 0.27006764845257497, - "rayquaza": 0.4499173641633173, - "uxie": 1.386339306122714, - "mesprit": 1.283849050630399, - "azelf": 1.2042836553472016, - "dialga": 0.6181120096972326, - "palkia": 0.6862135120466003, - "heatran": 0.5440502321119499, - "giratina-altered": 0.6129071478677197, - "cresselia": 0.7023551009866156, - "tornadus-incarnate": 1.0651755269529202, - "thundurus-incarnate": 0.9760901166119668, - "reshiram": 0.5856541563910973, - "zekrom": 0.6686416287628771, - "landorus-incarnate": 0.40812755201130585, - "kyurem": 0.6100281968496045, - "xerneas": 0.39698446797741205, - "yveltal": 0.7226316744164538, - "zygarde-50": 0.3124271627559956, - "tapu-koko": 1.310770906647175, - "tapu-lele": 1.3982401240452171, - "tapu-bulu": 0.8745326767912873, - "tapu-fini": 1.310804672779335, - "solgaleo": 0.741175748318964, - "lunala": 0.6387905805144434, - "nihilego": 0.9972588640818152, - "buzzwole": 1.1055789497916517, - "pheromosa": 1.35032339981684, - "xurkitree": 0.8230516900753813, - "celesteela": 0.9355718947754432, - "kartana": 1.3270303253875342, - "guzzlord": 0.6685407477027973, - "necrozma": 1.2395085975010605, - "stakataka": 0.7906867738367869, - "blacephalon": 1.357969117482374 + "articuno": 1.0426629808464458, + "zapdos": 0.7645333245925026, + "moltres": 0.7068031907775025, + "mewtwo": 0.7869870024915111, + "raikou": 1.6614760230345196, + "entei": 1.1404906526489196, + "suicune": 2.3274719188812076, + "lugia": 1.244024616328514, + "ho-oh": 0.7349221455871602, + "latias": 1.1401048692799733, + "latios": 1.1373310681223716, + "kyogre": 0.9201196920580291, + "groudon": 0.26875472582098797, + "rayquaza": 0.4496549803013569, + "uxie": 1.3868971250347464, + "mesprit": 1.283238211263373, + "azelf": 1.2032285710566957, + "dialga": 0.6179015417185053, + "palkia": 0.6889385741010677, + "heatran": 0.5437307700069686, + "giratina-altered": 0.6126411930227753, + "cresselia": 0.7016008028266216, + "tornadus-incarnate": 1.066553873577653, + "thundurus-incarnate": 0.9770100469350969, + "reshiram": 0.585624629437681, + "zekrom": 0.6680918060486711, + "landorus-incarnate": 0.4061789699905938, + "kyurem": 0.610021991464665, + "xerneas": 0.3970447225735858, + "yveltal": 0.7229237775118531, + "zygarde-50": 0.3110852889586522, + "tapu-koko": 1.3122330723318827, + "tapu-lele": 1.3964108316368056, + "tapu-bulu": 0.8717903095126094, + "tapu-fini": 1.3212637399843712, + "solgaleo": 0.7409927332025728, + "lunala": 0.6394057222970084, + "nihilego": 0.9960428013586616, + "buzzwole": 1.1027128516269473, + "pheromosa": 1.3466262909786177, + "xurkitree": 0.8235121149020235, + "celesteela": 0.9356452782121811, + "kartana": 1.324726258638787, + "guzzlord": 0.6663767690674394, + "necrozma": 1.2392965226239445, + "stakataka": 0.7902807394059626, + "blacephalon": 1.3551815658813284 }, "tyrantrum": { - "articuno": 1.3479524502992697, - "zapdos": 1.0509476148315793, - "moltres": 1.322762370086393, - "mewtwo": 0.6936050402095557, - "raikou": 1.9313423986920553, - "entei": 1.8061654128668958, - "suicune": 1.4423501203942308, - "lugia": 1.157420804772547, - "ho-oh": 1.793710459246104, - "latias": 1.3360322418964503, - "latios": 1.5713852150280927, - "kyogre": 0.48324224307348884, - "groudon": 0.33298067539292286, - "rayquaza": 0.5793996231854783, - "uxie": 1.3015140358789656, - "mesprit": 1.2362776668138353, - "azelf": 1.0955433049995633, - "dialga": 0.710055295034266, - "palkia": 0.7172497939703266, - "heatran": 0.7422899992034687, - "giratina-altered": 0.9297474918982033, - "cresselia": 0.6592536390635333, - "tornadus-incarnate": 1.1325908027710518, - "thundurus-incarnate": 1.3865861465003015, - "reshiram": 0.807208234879801, - "zekrom": 0.9032329747953276, - "landorus-incarnate": 0.5033169643153934, - "kyurem": 0.70711562828141, - "xerneas": 0.32054605190311203, - "yveltal": 0.7280260035888712, - "zygarde-50": 0.49222400696302077, - "tapu-koko": 1.2827226724722998, - "tapu-lele": 1.5920841895447828, - "tapu-bulu": 0.9889944560678297, - "tapu-fini": 0.6439657710486552, - "solgaleo": 0.6731376677177985, - "lunala": 0.5887164851531318, - "nihilego": 1.203609413265248, - "buzzwole": 1.0190860014364358, - "pheromosa": 1.4927756327023451, - "xurkitree": 0.8510263220626855, - "celesteela": 0.7385737682149138, - "kartana": 1.4407904790398443, - "guzzlord": 1.0589410248740045, - "necrozma": 1.1976967249144888, - "stakataka": 0.9644525461963231, - "blacephalon": 2.3923882680686557 + "articuno": 1.3496969311955263, + "zapdos": 1.0565295817901503, + "moltres": 1.3309540070653971, + "mewtwo": 0.694244679455629, + "raikou": 1.9417813048826034, + "entei": 1.8166847507114945, + "suicune": 1.447106122151296, + "lugia": 1.1593831424723728, + "ho-oh": 1.8046044265609844, + "latias": 1.3384577494796221, + "latios": 1.5727513059057434, + "kyogre": 0.4851393692531859, + "groudon": 0.33328121048873993, + "rayquaza": 0.5812819424204101, + "uxie": 1.303443536664906, + "mesprit": 1.2377887592735015, + "azelf": 1.0969874559402042, + "dialga": 0.7112341238683885, + "palkia": 0.720059933528556, + "heatran": 0.7458104378921401, + "giratina-altered": 0.9310504848074493, + "cresselia": 0.659930628452263, + "tornadus-incarnate": 1.1370133439496108, + "thundurus-incarnate": 1.3930264351748276, + "reshiram": 0.8114615636707823, + "zekrom": 0.9074752444559506, + "landorus-incarnate": 0.503867697274767, + "kyurem": 0.7090884373513542, + "xerneas": 0.3198831648313265, + "yveltal": 0.7308891381934529, + "zygarde-50": 0.49273380214493223, + "tapu-koko": 1.286312407596555, + "tapu-lele": 1.592762372823366, + "tapu-bulu": 0.9900902353914407, + "tapu-fini": 0.6437404445235804, + "solgaleo": 0.6736988699906621, + "lunala": 0.5880241910110788, + "nihilego": 1.2080746578748802, + "buzzwole": 1.0195039541462696, + "pheromosa": 1.4958810472745356, + "xurkitree": 0.8548490118227273, + "celesteela": 0.7392374800235606, + "kartana": 1.4422667461958347, + "guzzlord": 1.0639682639815442, + "necrozma": 1.1997924328426075, + "stakataka": 0.9668500163458577, + "blacephalon": 2.4026531251475234 }, "aurorus": { - "articuno": 1.4997219201573682, - "zapdos": 0.9829275416342104, - "moltres": 1.1802611680696837, - "mewtwo": 0.8382678950100149, - "raikou": 1.8151687074052079, - "entei": 1.7172839195949456, - "suicune": 1.598114300970391, - "lugia": 1.208811362168202, - "ho-oh": 1.17664050369772, - "latias": 1.3471890660663117, - "latios": 1.6590532718768083, - "kyogre": 0.4688999616609321, - "groudon": 0.36846222625246866, - "rayquaza": 0.8851583496551435, - "uxie": 1.395218698730887, - "mesprit": 1.356691971398954, - "azelf": 1.2809295334648323, - "dialga": 0.5260235877469674, - "palkia": 0.5020145479784413, - "heatran": 0.4791438560107193, - "giratina-altered": 0.9277163537948159, - "cresselia": 0.7437429242622794, - "tornadus-incarnate": 1.1757764400240465, - "thundurus-incarnate": 1.3370382530617029, - "reshiram": 0.7611572016857742, - "zekrom": 0.8409863432492712, - "landorus-incarnate": 0.8475290851488256, - "kyurem": 0.8405485034173685, - "xerneas": 0.4011638090842589, - "yveltal": 0.7389337994145362, - "zygarde-50": 0.6561248055493158, - "tapu-koko": 1.2642409788277367, - "tapu-lele": 1.6320846820849644, - "tapu-bulu": 1.0533185693357727, - "tapu-fini": 0.7558170091869858, - "solgaleo": 0.5685011089582713, - "lunala": 0.6384032866961966, - "nihilego": 1.1832099119476913, - "buzzwole": 1.0912084922720136, - "pheromosa": 1.3852785720347693, - "xurkitree": 0.7942247192350209, - "celesteela": 0.7839983405163627, - "kartana": 1.257630837340796, - "guzzlord": 0.9804621153220147, - "necrozma": 1.2107293806646102, - "stakataka": 0.5740576367246225, - "blacephalon": 1.8225088118325072 + "articuno": 1.5068094342126352, + "zapdos": 0.9871385131542441, + "moltres": 1.1853324092578101, + "mewtwo": 0.8395904446240758, + "raikou": 1.8176668232026414, + "entei": 1.721116734402524, + "suicune": 1.5986710783137092, + "lugia": 1.213084777353226, + "ho-oh": 1.1802751396444293, + "latias": 1.3490935749937716, + "latios": 1.6602618207377242, + "kyogre": 0.469005357616587, + "groudon": 0.3676740921674474, + "rayquaza": 0.8891222973117676, + "uxie": 1.3975951745361617, + "mesprit": 1.3594170494586892, + "azelf": 1.2833469037589031, + "dialga": 0.5246032533101546, + "palkia": 0.502055294840108, + "heatran": 0.47882329695900394, + "giratina-altered": 0.9295503875877651, + "cresselia": 0.7448815349832147, + "tornadus-incarnate": 1.1818256409682786, + "thundurus-incarnate": 1.3423555557969078, + "reshiram": 0.7629504418918778, + "zekrom": 0.8423829876926081, + "landorus-incarnate": 0.8475198318262345, + "kyurem": 0.8429760545498551, + "xerneas": 0.40176299971249807, + "yveltal": 0.742047794878357, + "zygarde-50": 0.6564782350641908, + "tapu-koko": 1.2667199515703613, + "tapu-lele": 1.634246034545824, + "tapu-bulu": 1.051885993992776, + "tapu-fini": 0.7562045960105, + "solgaleo": 0.5660759681656492, + "lunala": 0.639415389430035, + "nihilego": 1.1840039351834646, + "buzzwole": 1.0895338787656135, + "pheromosa": 1.383846801287796, + "xurkitree": 0.7947481336970241, + "celesteela": 0.7826503514216336, + "kartana": 1.2548788328246105, + "guzzlord": 0.9816922549997815, + "necrozma": 1.2117523952151392, + "stakataka": 0.5725251553558799, + "blacephalon": 1.82610360086796 }, "hawlucha": { - "articuno": 0.6146639303465524, - "zapdos": 0.5068539280839268, - "moltres": 0.5000341530072885, - "mewtwo": 0.710752720824396, - "raikou": 1.3754577129593695, - "entei": 1.1431564319459933, - "suicune": 1.1808570755956913, - "lugia": 0.9183141177782259, - "ho-oh": 0.6693092315217415, - "latias": 1.0925873521667888, - "latios": 1.3792950132937154, - "kyogre": 0.4114523194577449, - "groudon": 0.37867713758138966, - "rayquaza": 0.39414198894360375, - "uxie": 1.2799633329399913, - "mesprit": 1.2320464659748316, - "azelf": 1.1293176517579253, - "dialga": 0.7065752021096762, - "palkia": 0.47636250335181113, - "heatran": 0.5677747349330704, - "giratina-altered": 0.7805630568498108, - "cresselia": 0.6756921566458808, - "tornadus-incarnate": 0.6225919280956212, - "thundurus-incarnate": 0.6856369412755594, - "reshiram": 0.5155940767690446, - "zekrom": 0.535388225275662, - "landorus-incarnate": 0.5582052959110144, - "kyurem": 0.5910800043703064, - "xerneas": 0.33565158422257213, - "yveltal": 0.4974675201726171, - "zygarde-50": 0.4386131940438097, - "tapu-koko": 0.9866034818991996, - "tapu-lele": 1.4118604117227898, - "tapu-bulu": 1.432607552276807, - "tapu-fini": 0.6728778300929106, - "solgaleo": 0.7435603249577768, - "lunala": 0.8977049575329765, - "nihilego": 0.9865717678640522, - "buzzwole": 1.0232467290571996, - "pheromosa": 1.335507030654354, - "xurkitree": 0.608261054131013, - "celesteela": 0.7742977383888927, - "kartana": 1.3393750830701374, - "guzzlord": 0.9453820824359342, - "necrozma": 1.1452843929658867, - "stakataka": 0.8311029764383708, - "blacephalon": 1.723199860939508 + "articuno": 0.612587700798964, + "zapdos": 0.5052464437028219, + "moltres": 0.4994074672017488, + "mewtwo": 0.7084131307987145, + "raikou": 1.3723007326452423, + "entei": 1.1435252644686087, + "suicune": 1.1794295487663007, + "lugia": 0.916210568194553, + "ho-oh": 0.6690471183421779, + "latias": 1.0908057998035896, + "latios": 1.3775818093572083, + "kyogre": 0.4112098808958864, + "groudon": 0.37940651286936183, + "rayquaza": 0.3934135866947728, + "uxie": 1.2767172459426297, + "mesprit": 1.2288485754434189, + "azelf": 1.1266103895728394, + "dialga": 0.7068202687717724, + "palkia": 0.47647410163040316, + "heatran": 0.5683006270522516, + "giratina-altered": 0.7803007205869498, + "cresselia": 0.6735674423680877, + "tornadus-incarnate": 0.6207750171056073, + "thundurus-incarnate": 0.6836650042219123, + "reshiram": 0.5153434238501675, + "zekrom": 0.534233031237312, + "landorus-incarnate": 0.5592430664027191, + "kyurem": 0.5900634039594848, + "xerneas": 0.3347625694521749, + "yveltal": 0.4972416637746412, + "zygarde-50": 0.43912752583395936, + "tapu-koko": 0.9838587488449293, + "tapu-lele": 1.4078077727837064, + "tapu-bulu": 1.437004638861386, + "tapu-fini": 0.6721920551389877, + "solgaleo": 0.7429323753742707, + "lunala": 0.897166321478381, + "nihilego": 0.9859790307906171, + "buzzwole": 1.0235837371791816, + "pheromosa": 1.3365008785542432, + "xurkitree": 0.6068412860948729, + "celesteela": 0.7747044535690701, + "kartana": 1.3395655373293454, + "guzzlord": 0.9471535170252121, + "necrozma": 1.1420026956564682, + "stakataka": 0.8317161163418572, + "blacephalon": 1.7224269601021192 }, "dedenne": { - "articuno": 0.9540759999009396, - "zapdos": 0.7314049403572978, - "moltres": 0.7461524016576684, - "mewtwo": 0.7412267092593875, - "raikou": 1.5851411386621526, - "entei": 1.2268545611843185, - "suicune": 1.6965298992392812, - "lugia": 1.1448631625553007, - "ho-oh": 0.8053998523153167, - "latias": 1.1777273557742376, - "latios": 1.59165092501858, - "kyogre": 0.515294343179175, - "groudon": 0.28833797376822323, - "rayquaza": 0.6224961602240697, - "uxie": 1.2418652863148187, - "mesprit": 1.186673388476889, - "azelf": 1.1217704607702124, - "dialga": 0.6337411784352044, - "palkia": 0.641617499395877, - "heatran": 0.464411361653939, - "giratina-altered": 0.9410584941530471, - "cresselia": 0.6691185178835418, - "tornadus-incarnate": 1.0327825132900306, - "thundurus-incarnate": 0.8218745029320339, - "reshiram": 0.5721515896102862, - "zekrom": 0.9388296455954234, - "landorus-incarnate": 0.42287534367121027, - "kyurem": 0.7168919782655374, - "xerneas": 0.4026170395966294, - "yveltal": 0.7628153853997002, - "zygarde-50": 0.42831733288152085, - "tapu-koko": 1.2438042221251495, - "tapu-lele": 1.354126131974711, - "tapu-bulu": 0.9720288634941056, - "tapu-fini": 0.8363603134367807, - "solgaleo": 0.6866662605513819, - "lunala": 0.5541589749189748, - "nihilego": 0.7163221880407464, - "buzzwole": 1.7974513386051643, - "pheromosa": 1.8957425166592443, - "xurkitree": 0.8032655130347734, - "celesteela": 0.8770094545032958, - "kartana": 1.3184892864191338, - "guzzlord": 1.434069901040377, - "necrozma": 1.1815678100876272, - "stakataka": 0.6357768455387434, - "blacephalon": 1.3183034443292811 + "articuno": 0.9541078271818209, + "zapdos": 0.7322800381217175, + "moltres": 0.746376265240542, + "mewtwo": 0.7401163736901771, + "raikou": 1.583574561312295, + "entei": 1.2253294019986503, + "suicune": 1.6956994945364743, + "lugia": 1.1460217440868938, + "ho-oh": 0.8045258627882864, + "latias": 1.177564566988503, + "latios": 1.5928059692348484, + "kyogre": 0.5151571405031707, + "groudon": 0.28730096882579753, + "rayquaza": 0.6239405379047267, + "uxie": 1.2401869370474796, + "mesprit": 1.18493288166708, + "azelf": 1.1200686446088628, + "dialga": 0.6335025944828627, + "palkia": 0.6419866822702438, + "heatran": 0.4638460892981622, + "giratina-altered": 0.9418610693536638, + "cresselia": 0.6681287043530152, + "tornadus-incarnate": 1.0340949033867268, + "thundurus-incarnate": 0.8212720026561902, + "reshiram": 0.5718544812099233, + "zekrom": 0.9402940601371379, + "landorus-incarnate": 0.4212566317333901, + "kyurem": 0.7164100779307565, + "xerneas": 0.40242822575312875, + "yveltal": 0.7653145772093711, + "zygarde-50": 0.42730147760536796, + "tapu-koko": 1.2442430995993718, + "tapu-lele": 1.351626477607004, + "tapu-bulu": 0.9709446279314633, + "tapu-fini": 0.836465348408207, + "solgaleo": 0.6853629466825322, + "lunala": 0.5532450985216075, + "nihilego": 0.7130643013648805, + "buzzwole": 1.8018839190480351, + "pheromosa": 1.898522332732372, + "xurkitree": 0.8032592723444132, + "celesteela": 0.8761717192433749, + "kartana": 1.31630735785627, + "guzzlord": 1.4361492838076546, + "necrozma": 1.1804059902986488, + "stakataka": 0.6347819428259127, + "blacephalon": 1.3158617281754879 }, "klefki": { - "articuno": 1.0403204368298922, - "zapdos": 0.6980736643052555, - "moltres": 0.413053750871224, - "mewtwo": 0.8314965241072143, - "raikou": 1.7318442766442432, - "entei": 0.9979355788118247, - "suicune": 1.3943562910530218, - "lugia": 0.9848372855528698, - "ho-oh": 0.5892985639583257, - "latias": 1.4444892794543158, - "latios": 1.878664116672923, - "kyogre": 0.4677927345665589, - "groudon": 0.308444952874125, - "rayquaza": 0.641154385916717, - "uxie": 1.3649506445049582, - "mesprit": 1.3331366256798158, - "azelf": 1.2768062107618172, - "dialga": 0.6347737694390927, - "palkia": 0.7293641032171683, - "heatran": 0.2990357422372473, - "giratina-altered": 0.9743064346123003, - "cresselia": 0.7579232472828376, - "tornadus-incarnate": 0.7938413385061351, - "thundurus-incarnate": 0.972094025958075, - "reshiram": 0.5681421873654866, - "zekrom": 0.8626168841870216, - "landorus-incarnate": 0.47190255509776835, - "kyurem": 0.8064299486358697, - "xerneas": 0.5444376273651379, - "yveltal": 0.7660925467546466, - "zygarde-50": 0.4367042721228904, - "tapu-koko": 1.1924598622090257, - "tapu-lele": 1.9296097197216722, - "tapu-bulu": 1.3805541748759147, - "tapu-fini": 0.679638547745634, - "solgaleo": 0.5995133923479045, - "lunala": 0.6161284050312533, - "nihilego": 1.224609971657574, - "buzzwole": 1.3351312927347119, - "pheromosa": 1.9782038998433944, - "xurkitree": 0.7672445440165785, - "celesteela": 0.5681009012806831, - "kartana": 1.4128592128758037, - "guzzlord": 1.506932193216937, - "necrozma": 1.2708478069271028, - "stakataka": 0.7076943737190997, - "blacephalon": 1.1494696637710722 + "articuno": 1.0425225535888885, + "zapdos": 0.6982004515064224, + "moltres": 0.4116345085466593, + "mewtwo": 0.8325111907682741, + "raikou": 1.7310796531737493, + "entei": 0.9951496500139395, + "suicune": 1.3939110974289846, + "lugia": 0.986314294137519, + "ho-oh": 0.5874631853654217, + "latias": 1.4480932919355536, + "latios": 1.884013566071579, + "kyogre": 0.46747735215370223, + "groudon": 0.3077947672709643, + "rayquaza": 0.6433349638780601, + "uxie": 1.3659529197313387, + "mesprit": 1.3346899402645234, + "azelf": 1.278326772416968, + "dialga": 0.6352508041301362, + "palkia": 0.7306248869187508, + "heatran": 0.29785452909330806, + "giratina-altered": 0.9767273453291867, + "cresselia": 0.7589914523703407, + "tornadus-incarnate": 0.7940803722475058, + "thundurus-incarnate": 0.9721376407231233, + "reshiram": 0.5672625333601986, + "zekrom": 0.8638186861974084, + "landorus-incarnate": 0.4711579734243835, + "kyurem": 0.8085648856412299, + "xerneas": 0.5460835699623363, + "yveltal": 0.7683502191868017, + "zygarde-50": 0.43649469490133247, + "tapu-koko": 1.1931604841875414, + "tapu-lele": 1.9342556816768597, + "tapu-bulu": 1.3838404384694725, + "tapu-fini": 0.6798394918494994, + "solgaleo": 0.5985656045970167, + "lunala": 0.6160758497854038, + "nihilego": 1.2273097026798, + "buzzwole": 1.3378117117234085, + "pheromosa": 1.982820082213638, + "xurkitree": 0.766802523225614, + "celesteela": 0.5670610483705874, + "kartana": 1.4133090574199363, + "guzzlord": 1.5115769910488481, + "necrozma": 1.272093533671729, + "stakataka": 0.7079467968031296, + "blacephalon": 1.1457950691615375 }, "trevenant": { - "articuno": 0.6484599438516381, - "zapdos": 0.6048464118982925, - "moltres": 0.3987180118969782, - "mewtwo": 0.775527385090806, - "raikou": 2.1202171057472743, - "entei": 1.0356855856577418, - "suicune": 2.1805541898884995, - "lugia": 0.7972796708474136, - "ho-oh": 0.5493814139507283, - "latias": 0.9573302831351396, - "latios": 1.1812087280870065, - "kyogre": 0.8379117697055996, - "groudon": 0.49799444080851296, - "rayquaza": 0.3379335614592354, - "uxie": 1.4391211918999125, - "mesprit": 1.484833621442701, - "azelf": 1.377172809265287, - "dialga": 0.6942801601042871, - "palkia": 0.6318814411478997, - "heatran": 0.4695473457396976, - "giratina-altered": 0.5587234525066347, - "cresselia": 0.7410116051032176, - "tornadus-incarnate": 0.6172049942002142, - "thundurus-incarnate": 0.8700075310050999, - "reshiram": 0.496186967825773, - "zekrom": 0.6206430999788781, - "landorus-incarnate": 0.6117758095119344, - "kyurem": 0.6252082767339903, - "xerneas": 0.4282349343638315, - "yveltal": 0.42624861586864815, - "zygarde-50": 0.4844601059848991, - "tapu-koko": 1.3013259661583687, - "tapu-lele": 1.748083304080453, - "tapu-bulu": 0.9188207580293106, - "tapu-fini": 1.1270847711965584, - "solgaleo": 0.6183176480334864, - "lunala": 0.6496737654946085, - "nihilego": 1.1674593558814248, - "buzzwole": 0.9966827052307543, - "pheromosa": 1.3625606334414408, - "xurkitree": 0.8707961086354166, - "celesteela": 0.7091158682166022, - "kartana": 1.3162644209159824, - "guzzlord": 0.784414706333241, - "necrozma": 1.2837253532973558, - "stakataka": 0.7421808407582113, - "blacephalon": 1.1992174557820523 + "articuno": 0.6463391087993401, + "zapdos": 0.6037468614665151, + "moltres": 0.39704448720859586, + "mewtwo": 0.7745598976248482, + "raikou": 2.1261141776174357, + "entei": 1.0331697846960353, + "suicune": 2.186699260339206, + "lugia": 0.7953743791220669, + "ho-oh": 0.5474608645853449, + "latias": 0.9563966590182329, + "latios": 1.180350588172868, + "kyogre": 0.840890812300755, + "groudon": 0.4990336290274209, + "rayquaza": 0.3368587885179517, + "uxie": 1.437960435638543, + "mesprit": 1.486162312464057, + "azelf": 1.3781234386311167, + "dialga": 0.6947129367978385, + "palkia": 0.632918221596011, + "heatran": 0.46892562743791194, + "giratina-altered": 0.5567999699330745, + "cresselia": 0.7404255924968028, + "tornadus-incarnate": 0.6150614814629519, + "thundurus-incarnate": 0.8703021666928009, + "reshiram": 0.4949902250913246, + "zekrom": 0.6209284796207108, + "landorus-incarnate": 0.6125970704362595, + "kyurem": 0.6241988745071168, + "xerneas": 0.42829296374037434, + "yveltal": 0.42491715636440935, + "zygarde-50": 0.4850195904859915, + "tapu-koko": 1.3013237048178627, + "tapu-lele": 1.747492243812421, + "tapu-bulu": 0.9188959280306619, + "tapu-fini": 1.1299131882850881, + "solgaleo": 0.617516522588046, + "lunala": 0.6480913585623278, + "nihilego": 1.1677611929420013, + "buzzwole": 0.9956963791601117, + "pheromosa": 1.3615310040803168, + "xurkitree": 0.8719004076860004, + "celesteela": 0.7088657243032785, + "kartana": 1.3162915691287744, + "guzzlord": 0.783843413438078, + "necrozma": 1.2831922052215048, + "stakataka": 0.7430434217130317, + "blacephalon": 1.1948125629189266 }, "gourgeist-average": { - "articuno": 0.6301163805628425, - "zapdos": 0.6279542277359006, - "moltres": 0.42505141626985965, - "mewtwo": 0.7685537099557593, - "raikou": 1.7268036900905002, - "entei": 1.0387913866389527, - "suicune": 1.33149314811913, - "lugia": 0.9696068614426605, - "ho-oh": 0.6544878388322817, - "latias": 1.2116674703309642, - "latios": 1.500124429570191, - "kyogre": 0.4752357607941283, - "groudon": 0.33764249691244874, - "rayquaza": 0.3901347607900182, - "uxie": 1.4406429431741903, - "mesprit": 1.503197675833971, - "azelf": 1.3772287454850214, - "dialga": 0.5512799173144074, - "palkia": 0.5145888179311189, - "heatran": 0.3533700758507054, - "giratina-altered": 0.7243141372391417, - "cresselia": 0.7512479497607301, - "tornadus-incarnate": 0.5868663966709167, - "thundurus-incarnate": 0.8581937958720682, - "reshiram": 0.47630509170276714, - "zekrom": 0.6341363203619237, - "landorus-incarnate": 0.5296915897147665, - "kyurem": 0.49107860325861896, - "xerneas": 0.3428975486432952, - "yveltal": 0.38563379923646407, - "zygarde-50": 0.42233451260997323, - "tapu-koko": 1.083307252613548, - "tapu-lele": 1.8169235078817576, - "tapu-bulu": 1.094485987623125, - "tapu-fini": 0.6495142011170617, - "solgaleo": 0.7845818253795944, - "lunala": 0.8975148375469316, - "nihilego": 0.9292851388437051, - "buzzwole": 1.3778695911842842, - "pheromosa": 1.5417089817010363, - "xurkitree": 0.7244630858794624, - "celesteela": 0.8207285523926349, - "kartana": 2.4780783406251503, - "guzzlord": 0.6003936693114411, - "necrozma": 1.3107030118183602, - "stakataka": 0.5592846210573141, - "blacephalon": 1.5635682921941367 + "articuno": 0.6274095901697416, + "zapdos": 0.6271663803543185, + "moltres": 0.42323718620732154, + "mewtwo": 0.7673560587788311, + "raikou": 1.7286765086793157, + "entei": 1.0357769899111402, + "suicune": 1.3313897812150224, + "lugia": 0.9677251680797674, + "ho-oh": 0.6528636670223353, + "latias": 1.2110119209719339, + "latios": 1.4997282342468274, + "kyogre": 0.47533360860075957, + "groudon": 0.3377074588304707, + "rayquaza": 0.38921653077199536, + "uxie": 1.4384738260921, + "mesprit": 1.5038887377958567, + "azelf": 1.3774925303323193, + "dialga": 0.5509581674276112, + "palkia": 0.5144319421626035, + "heatran": 0.35181581240440185, + "giratina-altered": 0.7228704164422978, + "cresselia": 0.7505236294115549, + "tornadus-incarnate": 0.5842646414246717, + "thundurus-incarnate": 0.8580609267929058, + "reshiram": 0.4743802891800513, + "zekrom": 0.634311562458159, + "landorus-incarnate": 0.5301783733165664, + "kyurem": 0.48903635985391336, + "xerneas": 0.34241712496649535, + "yveltal": 0.384020083640784, + "zygarde-50": 0.4222651587248726, + "tapu-koko": 1.082653063910407, + "tapu-lele": 1.816468130365122, + "tapu-bulu": 1.0962080438027046, + "tapu-fini": 0.6492077338712416, + "solgaleo": 0.7849919576145286, + "lunala": 0.8957594536871859, + "nihilego": 0.927067614460755, + "buzzwole": 1.3796770683136916, + "pheromosa": 1.542083027929132, + "xurkitree": 0.724309653911342, + "celesteela": 0.8212115828799406, + "kartana": 2.485391197857872, + "guzzlord": 0.5989500985130887, + "necrozma": 1.3099323667838965, + "stakataka": 0.5590014545288744, + "blacephalon": 1.5593096495943422 }, "charjabug": { - "articuno": 0.9627353376949437, - "zapdos": 0.6949745330933403, - "moltres": 0.5722337516519702, - "mewtwo": 0.7211408958367811, - "raikou": 1.821969540965617, - "entei": 1.156238771747406, - "suicune": 1.6587255699402246, - "lugia": 1.0556936096594554, - "ho-oh": 0.871338808014045, - "latias": 0.8102215095275216, - "latios": 1.042886158990266, - "kyogre": 0.584194883612614, - "groudon": 0.28616419967423934, - "rayquaza": 0.4231281571106952, - "uxie": 1.1921686351675818, - "mesprit": 1.138979295719605, - "azelf": 1.0866982815388653, - "dialga": 0.6159918720535009, - "palkia": 0.4819132379897431, - "heatran": 0.5553623605285316, - "giratina-altered": 0.55324364858726, - "cresselia": 0.6677492838452195, - "tornadus-incarnate": 0.9078715006441451, - "thundurus-incarnate": 0.8949147994355351, - "reshiram": 0.543845715785088, - "zekrom": 0.6809374932030253, - "landorus-incarnate": 0.3573841239143051, - "kyurem": 0.4926613187179919, - "xerneas": 0.3623788108033708, - "yveltal": 0.6480185686198525, - "zygarde-50": 0.35535453904295333, - "tapu-koko": 1.240015298157805, - "tapu-lele": 1.4992508859455338, - "tapu-bulu": 0.8476856073456858, - "tapu-fini": 0.8290197358657834, - "solgaleo": 0.7387897237857065, - "lunala": 0.5568395609267786, - "nihilego": 1.442843311701906, - "buzzwole": 1.0145671406773262, - "pheromosa": 1.3916294146450283, - "xurkitree": 0.8374896257908935, - "celesteela": 0.9847782926282791, - "kartana": 1.149936523563015, - "guzzlord": 0.6545534397894739, - "necrozma": 1.068113755697369, - "stakataka": 0.6478885823785012, - "blacephalon": 1.4523361700132025 + "articuno": 0.9618105052605677, + "zapdos": 0.6945235363429262, + "moltres": 0.570624981265865, + "mewtwo": 0.7197943082368194, + "raikou": 1.8213464528952859, + "entei": 1.1531816480108785, + "suicune": 1.6579334386350528, + "lugia": 1.054093611058481, + "ho-oh": 0.8694046039709992, + "latias": 0.8077041944540043, + "latios": 1.0400201683925567, + "kyogre": 0.584269999414582, + "groudon": 0.28537376358309513, + "rayquaza": 0.42226398202079474, + "uxie": 1.1891645170190357, + "mesprit": 1.1359540266485395, + "azelf": 1.0840054798331173, + "dialga": 0.6153838435681566, + "palkia": 0.48104629180313413, + "heatran": 0.5547651796871126, + "giratina-altered": 0.5517526720779625, + "cresselia": 0.6663965322294065, + "tornadus-incarnate": 0.9065929323320079, + "thundurus-incarnate": 0.8939489288550625, + "reshiram": 0.5419289364568626, + "zekrom": 0.6805638291030034, + "landorus-incarnate": 0.35601520088913485, + "kyurem": 0.49125671626859524, + "xerneas": 0.36188131416804414, + "yveltal": 0.6476291029216987, + "zygarde-50": 0.35439554283263364, + "tapu-koko": 1.2395436158164155, + "tapu-lele": 1.4972869508071058, + "tapu-bulu": 0.8468313514680775, + "tapu-fini": 0.8287581410912193, + "solgaleo": 0.738786276109632, + "lunala": 0.5557030689629414, + "nihilego": 1.4405218104704818, + "buzzwole": 1.0129303682320339, + "pheromosa": 1.3896729676138657, + "xurkitree": 0.8375766446856412, + "celesteela": 0.9854009382646506, + "kartana": 1.1486358578872062, + "guzzlord": 0.6531837234507101, + "necrozma": 1.065476816462652, + "stakataka": 0.6472743888448251, + "blacephalon": 1.4486677545695645 }, "vikavolt": { - "articuno": 0.9367198970643694, - "zapdos": 0.6924648312131456, - "moltres": 0.5671240342902383, - "mewtwo": 1.3221018732343435, - "raikou": 2.0013378634950723, - "entei": 1.297303013916882, - "suicune": 1.6648875912449732, - "lugia": 1.0375553414125491, - "ho-oh": 0.8388700310219417, - "latias": 1.5427193411746707, - "latios": 2.0183069177069597, - "kyogre": 0.5674114465030631, - "groudon": 0.536741055782622, - "rayquaza": 0.4273697606344145, - "uxie": 2.2155011642984315, - "mesprit": 2.1249807328522583, - "azelf": 2.0387003408400477, - "dialga": 0.7208308132111654, - "palkia": 0.5987929650181227, - "heatran": 0.6105359443790807, - "giratina-altered": 0.6327302489478808, - "cresselia": 1.1929349613386036, - "tornadus-incarnate": 0.8876080645931068, - "thundurus-incarnate": 0.895272429369217, - "reshiram": 0.5654444787316918, - "zekrom": 0.8719814321163937, - "landorus-incarnate": 0.5785133833210753, - "kyurem": 0.7005451759667436, - "xerneas": 0.37954110242093, - "yveltal": 0.6473284477274958, - "zygarde-50": 0.6158570786387096, - "tapu-koko": 1.4235989642454094, - "tapu-lele": 1.6970587798488745, - "tapu-bulu": 1.323267648588489, - "tapu-fini": 0.8023109583140102, - "solgaleo": 0.9455005635539186, - "lunala": 0.6794821120431462, - "nihilego": 1.0834861114927654, - "buzzwole": 1.2585636809601985, - "pheromosa": 1.408426125131978, - "xurkitree": 1.018862554002535, - "celesteela": 1.0293570440978215, - "kartana": 2.380715956020131, - "guzzlord": 1.3584002372643713, - "necrozma": 2.0527698310774114, - "stakataka": 0.9291028180879444, - "blacephalon": 1.3981506774178087 + "articuno": 0.9371699278199938, + "zapdos": 0.6934547297012175, + "moltres": 0.5662705260330894, + "mewtwo": 1.3247218192154802, + "raikou": 2.005530130316498, + "entei": 1.2965240193875167, + "suicune": 1.6680885809153683, + "lugia": 1.0383927254132752, + "ho-oh": 0.8379475690879505, + "latias": 1.5447656695494785, + "latios": 2.021822209533564, + "kyogre": 0.5685985237229889, + "groudon": 0.5383034500455464, + "rayquaza": 0.4273742327553892, + "uxie": 2.2189930695025613, + "mesprit": 2.1281571157023196, + "azelf": 2.0421291254957676, + "dialga": 0.7213101213257862, + "palkia": 0.5993818839856723, + "heatran": 0.6102335622270333, + "giratina-altered": 0.6324045077909498, + "cresselia": 1.1952261896377507, + "tornadus-incarnate": 0.8878466277438412, + "thundurus-incarnate": 0.896241212943087, + "reshiram": 0.564620811915721, + "zekrom": 0.8741078451471854, + "landorus-incarnate": 0.5792066711424373, + "kyurem": 0.7008540809950972, + "xerneas": 0.38009850836434245, + "yveltal": 0.6485115640191446, + "zygarde-50": 0.6173641559002983, + "tapu-koko": 1.4269036361189817, + "tapu-lele": 1.7003930773444766, + "tapu-bulu": 1.3283734809094883, + "tapu-fini": 0.8038571953414055, + "solgaleo": 0.947664289472949, + "lunala": 0.6797721778433028, + "nihilego": 1.0818437119736062, + "buzzwole": 1.2596792308424543, + "pheromosa": 1.4092259057519887, + "xurkitree": 1.0217974980117925, + "celesteela": 1.031365423036056, + "kartana": 2.3884774797824946, + "guzzlord": 1.362075254943618, + "necrozma": 2.05597548251412, + "stakataka": 0.9298335700646707, + "blacephalon": 1.3959186920055435 }, "ribombee": { - "articuno": 0.6769920757435908, - "zapdos": 0.556256189310217, - "moltres": 0.3679186517089648, - "mewtwo": 1.0273548251059754, - "raikou": 1.5619913465300739, - "entei": 0.9608548427869081, - "suicune": 1.347640333683391, - "lugia": 0.8486167040669124, - "ho-oh": 0.4688850880531211, - "latias": 1.2685185247947928, - "latios": 1.7398119467458062, - "kyogre": 0.41597966975474443, - "groudon": 0.3999331461549974, - "rayquaza": 0.528189296805964, - "uxie": 1.7333025840337857, - "mesprit": 1.6583358037780558, - "azelf": 1.5708807855161169, - "dialga": 0.5226046214731505, - "palkia": 0.5753319688306257, - "heatran": 0.27991077427258615, - "giratina-altered": 0.8275644278277844, - "cresselia": 0.9280425010089315, - "tornadus-incarnate": 0.5996884830888749, - "thundurus-incarnate": 0.7097792681208941, - "reshiram": 0.49054967560446955, - "zekrom": 0.8027919359665792, - "landorus-incarnate": 0.4925052021333517, - "kyurem": 0.6600838898455823, - "xerneas": 0.3802228588913404, - "yveltal": 0.6393665593664275, - "zygarde-50": 0.5587457456259112, - "tapu-koko": 0.9937146617186717, - "tapu-lele": 1.402713121694907, - "tapu-bulu": 1.1104144670534415, - "tapu-fini": 0.5935520058591782, - "solgaleo": 0.632623108480469, - "lunala": 0.5744282028366343, - "nihilego": 0.6425400165847983, - "buzzwole": 1.6748712699660926, - "pheromosa": 1.7662923850167684, - "xurkitree": 0.7890997401556744, - "celesteela": 0.5377524829094892, - "kartana": 1.8218242114442567, - "guzzlord": 1.3411129218649245, - "necrozma": 1.5509598617087252, - "stakataka": 0.47409869552044404, - "blacephalon": 0.9800862878496519 + "articuno": 0.6749224764388426, + "zapdos": 0.5542112452141994, + "moltres": 0.36584196699511173, + "mewtwo": 1.0271289525591543, + "raikou": 1.5591216938285997, + "entei": 0.9568309717082484, + "suicune": 1.3457671667354854, + "lugia": 0.8466718752686637, + "ho-oh": 0.4659351420775154, + "latias": 1.2698343035222608, + "latios": 1.7435364549923233, + "kyogre": 0.4153367067775716, + "groudon": 0.40026263567305487, + "rayquaza": 0.5275448400942877, + "uxie": 1.7331616745131666, + "mesprit": 1.6580050513216884, + "azelf": 1.5704939123145123, + "dialga": 0.5209455198644948, + "palkia": 0.5752185716981298, + "heatran": 0.2784213830613586, + "giratina-altered": 0.8274735155002602, + "cresselia": 0.9278585417142478, + "tornadus-incarnate": 0.5971412263241933, + "thundurus-incarnate": 0.7078435492287911, + "reshiram": 0.48906498770882056, + "zekrom": 0.8031641849188907, + "landorus-incarnate": 0.4922294730043981, + "kyurem": 0.6597391207206584, + "xerneas": 0.37982155521607397, + "yveltal": 0.6396405971559576, + "zygarde-50": 0.5600123955630213, + "tapu-koko": 0.9907167186881654, + "tapu-lele": 1.400193335754626, + "tapu-bulu": 1.111728387290263, + "tapu-fini": 0.5925636178537723, + "solgaleo": 0.6299231119786042, + "lunala": 0.5736181122661954, + "nihilego": 0.6384925397542175, + "buzzwole": 1.6783182307365516, + "pheromosa": 1.7680238334146867, + "xurkitree": 0.7886673756998852, + "celesteela": 0.5348793011345737, + "kartana": 1.8241668279625944, + "guzzlord": 1.3457733328231398, + "necrozma": 1.5496839989744164, + "stakataka": 0.47197463144640506, + "blacephalon": 0.974972800403391 }, "lycanroc-midday": { - "articuno": 1.825424077007791, - "zapdos": 1.0827965361862553, - "moltres": 1.438514140332651, - "mewtwo": 0.8183543356078269, - "raikou": 1.911909634529217, - "entei": 1.8973558176594243, - "suicune": 1.3465992629493395, - "lugia": 1.32924779777799, - "ho-oh": 2.008896752545893, - "latias": 0.9982922647806874, - "latios": 1.3380538453200184, - "kyogre": 0.419499754994157, - "groudon": 0.24939932323037067, - "rayquaza": 0.6734657860357287, - "uxie": 1.412488960048075, - "mesprit": 1.3864156592954513, - "azelf": 1.2973991391229656, - "dialga": 0.47745896209593797, - "palkia": 0.49656360315257486, - "heatran": 0.5578165499215851, - "giratina-altered": 0.7402260138285794, - "cresselia": 0.7584171948673906, - "tornadus-incarnate": 1.318679506523875, - "thundurus-incarnate": 1.4520383732762792, - "reshiram": 0.9450149019408411, - "zekrom": 0.6813522549228076, - "landorus-incarnate": 0.46990948039543057, - "kyurem": 0.8706615037980918, - "xerneas": 0.4054657327281561, - "yveltal": 0.8030445439578188, - "zygarde-50": 0.29351342284584475, - "tapu-koko": 1.261910771491936, - "tapu-lele": 1.7244533194085268, - "tapu-bulu": 0.8783494853437516, - "tapu-fini": 0.6251172518401117, - "solgaleo": 0.5457942871399541, - "lunala": 0.6638453300765277, - "nihilego": 1.2761384124184005, - "buzzwole": 0.9588968935529152, - "pheromosa": 1.514831958964653, - "xurkitree": 0.7984445205176056, - "celesteela": 0.6987854555081707, - "kartana": 0.9922278478957385, - "guzzlord": 0.7895247366954072, - "necrozma": 1.2403387665762664, - "stakataka": 0.4890292862869739, - "blacephalon": 2.548083623006855 + "articuno": 1.8314430261004377, + "zapdos": 1.085620222393679, + "moltres": 1.4457433600726404, + "mewtwo": 0.8178288101598423, + "raikou": 1.9125523487972884, + "entei": 1.902794992624632, + "suicune": 1.343567846669007, + "lugia": 1.3311713719548015, + "ho-oh": 2.0185185814736952, + "latias": 0.9972383163616038, + "latios": 1.3366854959033363, + "kyogre": 0.41881598919307195, + "groudon": 0.24840674983953884, + "rayquaza": 0.6749040707073581, + "uxie": 1.4119897896510083, + "mesprit": 1.3865492330122537, + "azelf": 1.297459606182431, + "dialga": 0.47587123944353776, + "palkia": 0.4958229021452477, + "heatran": 0.5579933081742017, + "giratina-altered": 0.7398626576906335, + "cresselia": 0.7580804389808841, + "tornadus-incarnate": 1.322968136034848, + "thundurus-incarnate": 1.4550583777067767, + "reshiram": 0.9476847926339673, + "zekrom": 0.68113781182142, + "landorus-incarnate": 0.4687580240676051, + "kyurem": 0.8718322758762432, + "xerneas": 0.40524401666809096, + "yveltal": 0.8045397030015253, + "zygarde-50": 0.29244522960324715, + "tapu-koko": 1.2626938156018004, + "tapu-lele": 1.7242740541278856, + "tapu-bulu": 0.8755805723068391, + "tapu-fini": 0.6237366220403172, + "solgaleo": 0.5435726708818843, + "lunala": 0.663403067319431, + "nihilego": 1.2770842130272806, + "buzzwole": 0.9563677308399756, + "pheromosa": 1.5126354981762125, + "xurkitree": 0.797686163316629, + "celesteela": 0.6970703430046437, + "kartana": 0.9865056498351624, + "guzzlord": 0.788816088012908, + "necrozma": 1.2394963340409317, + "stakataka": 0.4873130326479871, + "blacephalon": 2.5556516959404334 }, "lycanroc-midnight": { - "articuno": 1.8854984982428853, - "zapdos": 1.117827490187579, - "moltres": 1.4700752725806083, - "mewtwo": 0.9502683054641947, - "raikou": 1.9670609748274603, - "entei": 1.93808658920954, - "suicune": 1.405520234280084, - "lugia": 1.373233984846195, - "ho-oh": 2.0531854434933585, - "latias": 1.1943288363360782, - "latios": 1.5793292823838623, - "kyogre": 0.4497914981158202, - "groudon": 0.2822674286505592, - "rayquaza": 0.6917958534938633, - "uxie": 1.6397237874408104, - "mesprit": 1.604802373883528, - "azelf": 1.5093002106260605, - "dialga": 0.6426030652252505, - "palkia": 0.5257231325925071, - "heatran": 0.5984536613589893, - "giratina-altered": 0.872631001455891, - "cresselia": 0.8818773323129463, - "tornadus-incarnate": 1.352563642772083, - "thundurus-incarnate": 1.5073013255497871, - "reshiram": 0.9685788991798212, - "zekrom": 0.7031084940565171, - "landorus-incarnate": 0.498679506593085, - "kyurem": 0.8991845257288519, - "xerneas": 0.42184752268708503, - "yveltal": 0.8298506317184932, - "zygarde-50": 0.3348115943858384, - "tapu-koko": 1.304942275908453, - "tapu-lele": 1.7805199007765777, - "tapu-bulu": 0.9231343397512592, - "tapu-fini": 0.6626529011286344, - "solgaleo": 0.7956239384126982, - "lunala": 1.1141087346358458, - "nihilego": 1.3089688558223678, - "buzzwole": 1.0012608034095019, - "pheromosa": 1.5661130838842672, - "xurkitree": 0.8311517605589287, - "celesteela": 0.7396024162852242, - "kartana": 1.185317318316532, - "guzzlord": 0.8466528012230954, - "necrozma": 1.431699425461685, - "stakataka": 0.765148434616816, - "blacephalon": 2.6076805502836056 + "articuno": 1.891522925860981, + "zapdos": 1.1209427188164476, + "moltres": 1.4766269370779521, + "mewtwo": 0.9513650905369924, + "raikou": 1.9706788569178666, + "entei": 1.9444338870524318, + "suicune": 1.4045905909075698, + "lugia": 1.376426320977695, + "ho-oh": 2.062100779151902, + "latias": 1.1954553263616672, + "latios": 1.580924422366138, + "kyogre": 0.449795024043386, + "groudon": 0.2816303548110948, + "rayquaza": 0.6934224994699603, + "uxie": 1.6420718474260183, + "mesprit": 1.6077514580279695, + "azelf": 1.5119986144581117, + "dialga": 0.6427296597233185, + "palkia": 0.5257773585562782, + "heatran": 0.6001878596166379, + "giratina-altered": 0.8738828129134117, + "cresselia": 0.883119923464718, + "tornadus-incarnate": 1.35710060295481, + "thundurus-incarnate": 1.5108324553456045, + "reshiram": 0.9718312318781102, + "zekrom": 0.7037936914583106, + "landorus-incarnate": 0.49796627120206743, + "kyurem": 0.9014973632318111, + "xerneas": 0.4218114284186316, + "yveltal": 0.8316695806775117, + "zygarde-50": 0.33421087986775616, + "tapu-koko": 1.3061085190660648, + "tapu-lele": 1.7818898529238267, + "tapu-bulu": 0.92082495593574, + "tapu-fini": 0.661591938680231, + "solgaleo": 0.7951004564569164, + "lunala": 1.1165890854510472, + "nihilego": 1.3121755497196053, + "buzzwole": 0.9989169547908998, + "pheromosa": 1.5648046390078698, + "xurkitree": 0.8315920013324027, + "celesteela": 0.7392258407384329, + "kartana": 1.181433227360128, + "guzzlord": 0.8474100068945802, + "necrozma": 1.4332143556409664, + "stakataka": 0.7654442977640702, + "blacephalon": 2.6177738155353643 }, "mudsdale": { - "articuno": 0.7813862336435312, - "zapdos": 0.7826578254884664, - "moltres": 0.5851229086947114, - "mewtwo": 0.9370158943512644, - "raikou": 2.4564200225429236, - "entei": 1.5677233778908821, - "suicune": 1.3880646940670656, - "lugia": 1.1864896370562854, - "ho-oh": 0.7960224982171733, - "latias": 1.2891563068771812, - "latios": 1.7351226640300603, - "kyogre": 0.4602343008629295, - "groudon": 0.37009579971919104, - "rayquaza": 0.4533839232651462, - "uxie": 1.6850779660590862, - "mesprit": 1.6149827163786072, - "azelf": 1.5481369033800054, - "dialga": 0.9188095137586396, - "palkia": 0.529210857809095, - "heatran": 0.9606415729822829, - "giratina-altered": 0.9430279943621277, - "cresselia": 0.8999558488915693, - "tornadus-incarnate": 0.7978557462535043, - "thundurus-incarnate": 1.0759728787570049, - "reshiram": 0.7762385023961249, - "zekrom": 0.8794524147685299, - "landorus-incarnate": 0.5488514976904504, - "kyurem": 0.7275270474213814, - "xerneas": 0.38252538149673576, - "yveltal": 0.5544636474845592, - "zygarde-50": 0.4514255059042904, - "tapu-koko": 1.6309929970814898, - "tapu-lele": 1.634705874576491, - "tapu-bulu": 0.8190186887740163, - "tapu-fini": 0.6063787453166389, - "solgaleo": 0.9355669003461864, - "lunala": 1.1501288367389082, - "nihilego": 2.2020359770347593, - "buzzwole": 0.9604047379253493, - "pheromosa": 1.3066739910983145, - "xurkitree": 1.1100626335822577, - "celesteela": 0.8453192918436828, - "kartana": 1.358799914874243, - "guzzlord": 1.0399010760878917, - "necrozma": 1.580525311005354, - "stakataka": 1.0673135129952942, - "blacephalon": 2.1537461159776674 + "articuno": 0.7809642809354844, + "zapdos": 0.7845903382385395, + "moltres": 0.5854033207073077, + "mewtwo": 0.9379496109738696, + "raikou": 2.4682759444799873, + "entei": 1.5718569897844787, + "suicune": 1.3888190552098019, + "lugia": 1.187363927372434, + "ho-oh": 0.7971385423970857, + "latias": 1.2902301369392322, + "latios": 1.737710951909436, + "kyogre": 0.4609204563273672, + "groudon": 0.3706865827513993, + "rayquaza": 0.4535449066587709, + "uxie": 1.686697639791769, + "mesprit": 1.6164412416940288, + "azelf": 1.5497575101031664, + "dialga": 0.9231813946819327, + "palkia": 0.5300188577443561, + "heatran": 0.9652237870793214, + "giratina-altered": 0.944574003039234, + "cresselia": 0.900877989964287, + "tornadus-incarnate": 0.7979767635151939, + "thundurus-incarnate": 1.0791023894268836, + "reshiram": 0.7784938876502139, + "zekrom": 0.8831855511243285, + "landorus-incarnate": 0.5492934615673892, + "kyurem": 0.7286587217119714, + "xerneas": 0.3826469364399031, + "yveltal": 0.5551475788777401, + "zygarde-50": 0.45225454607102394, + "tapu-koko": 1.6361657536711145, + "tapu-lele": 1.6362130014836662, + "tapu-bulu": 0.817850451003098, + "tapu-fini": 0.6057017533829906, + "solgaleo": 0.9388569931432048, + "lunala": 1.1524410985126825, + "nihilego": 2.2120946778040134, + "buzzwole": 0.9595019414780244, + "pheromosa": 1.306628909214802, + "xurkitree": 1.1150419425870388, + "celesteela": 0.8475212952555446, + "kartana": 1.3583423400531853, + "guzzlord": 1.0432211191339285, + "necrozma": 1.5842038514965635, + "stakataka": 1.0726076675884477, + "blacephalon": 2.1588372568954752 }, "araquanid": { - "articuno": 0.8546152219388166, - "zapdos": 0.6039826891809292, - "moltres": 0.7375267267047385, - "mewtwo": 1.016787344218237, - "raikou": 1.5731217207685333, - "entei": 1.5321342946644354, - "suicune": 1.513445956234833, - "lugia": 0.9036053388202074, - "ho-oh": 0.9929126246720297, - "latias": 1.5140050483526653, - "latios": 1.7029924255578202, - "kyogre": 0.6068969751033345, - "groudon": 0.4485940369931959, - "rayquaza": 0.3699865993328687, - "uxie": 1.670726311447861, - "mesprit": 1.6001699771220474, - "azelf": 1.5186149354494174, - "dialga": 0.5040769520043836, - "palkia": 0.6113538285148084, - "heatran": 0.661085807471322, - "giratina-altered": 0.5587135413722053, - "cresselia": 0.9204885757830906, - "tornadus-incarnate": 0.7942348813833612, - "thundurus-incarnate": 0.8579641006150688, - "reshiram": 0.6012062317284945, - "zekrom": 0.5630336568430483, - "landorus-incarnate": 0.6730781801195802, - "kyurem": 0.6227305203539105, - "xerneas": 0.40495571214027004, - "yveltal": 0.5218513674914632, - "zygarde-50": 0.44071573179242907, - "tapu-koko": 1.046021522906916, - "tapu-lele": 1.617136301656294, - "tapu-bulu": 1.2105366382069565, - "tapu-fini": 0.8548782162202391, - "solgaleo": 0.7078453586854021, - "lunala": 0.6085707954985866, - "nihilego": 1.4349517673815995, - "buzzwole": 1.0227069059624623, - "pheromosa": 1.4488169462086973, - "xurkitree": 0.7021846509287543, - "celesteela": 0.7863745317662858, - "kartana": 1.166603470152991, - "guzzlord": 0.9376211928070949, - "necrozma": 1.4041491337250687, - "stakataka": 0.6093351720393314, - "blacephalon": 2.0454422928972917 + "articuno": 0.8555291767132578, + "zapdos": 0.6029991555631327, + "moltres": 0.7382336197026022, + "mewtwo": 1.0188068667960668, + "raikou": 1.5721406904473931, + "entei": 1.534012398269517, + "suicune": 1.5181513004431064, + "lugia": 0.9041730277719375, + "ho-oh": 0.9943774072550908, + "latias": 1.518135904672023, + "latios": 1.7063880623284793, + "kyogre": 0.6089398340773491, + "groudon": 0.4495490280737644, + "rayquaza": 0.3693401973986813, + "uxie": 1.6740044033771158, + "mesprit": 1.6032300205947334, + "azelf": 1.5212460739587108, + "dialga": 0.5036500918661003, + "palkia": 0.6127642519861901, + "heatran": 0.6621562876733993, + "giratina-altered": 0.5581291087208173, + "cresselia": 0.9223620579268572, + "tornadus-incarnate": 0.7941701272756609, + "thundurus-incarnate": 0.8575519061892309, + "reshiram": 0.6019702658607762, + "zekrom": 0.5617863359597253, + "landorus-incarnate": 0.6742243968161942, + "kyurem": 0.6234800651793733, + "xerneas": 0.40563803801070814, + "yveltal": 0.52204041045809, + "zygarde-50": 0.4412408345164319, + "tapu-koko": 1.045117339353387, + "tapu-lele": 1.6206989249638433, + "tapu-bulu": 1.2126022791563347, + "tapu-fini": 0.8589052726974273, + "solgaleo": 0.7084324838955945, + "lunala": 0.60910919074958, + "nihilego": 1.436073241271578, + "buzzwole": 1.021960031247834, + "pheromosa": 1.4495284490614149, + "xurkitree": 0.7018117169334109, + "celesteela": 0.786782405334215, + "kartana": 1.1643707200530755, + "guzzlord": 0.9385035730479077, + "necrozma": 1.4052439820421294, + "stakataka": 0.6087672269788365, + "blacephalon": 2.049035282092849 }, "lurantis": { - "articuno": 0.6003456068592687, - "zapdos": 0.5931893493197119, - "moltres": 0.4262074384395078, - "mewtwo": 0.8528424759561661, - "raikou": 1.752649898420009, - "entei": 1.0258119369779106, - "suicune": 2.0213602719122594, - "lugia": 0.8461035954603675, - "ho-oh": 0.5480043658470892, - "latias": 1.3298846328230458, - "latios": 1.5848774884195262, - "kyogre": 0.6493984453282782, - "groudon": 0.5772480478721493, - "rayquaza": 0.3696041555241897, - "uxie": 1.5489260265503213, - "mesprit": 1.4833994207062342, - "azelf": 1.4151114799941102, - "dialga": 0.48021407031485785, - "palkia": 0.5694734950275417, - "heatran": 0.3181440055411444, - "giratina-altered": 0.5908930426505571, - "cresselia": 0.8214372597646205, - "tornadus-incarnate": 0.5911274813025194, - "thundurus-incarnate": 0.7598449314259658, - "reshiram": 0.45183304081891296, - "zekrom": 0.6275902176253356, - "landorus-incarnate": 0.61340476137153, - "kyurem": 0.5130116766010606, - "xerneas": 0.41189094939601933, - "yveltal": 0.4910326094650074, - "zygarde-50": 0.5070485512365328, - "tapu-koko": 1.2977658711151943, - "tapu-lele": 1.528810468994181, - "tapu-bulu": 0.906850818618359, - "tapu-fini": 1.0222695209365769, - "solgaleo": 0.6466856606024078, - "lunala": 0.6035117622414709, - "nihilego": 0.7936227331356627, - "buzzwole": 1.0012315672572374, - "pheromosa": 1.2163002291682208, - "xurkitree": 0.8790977879032552, - "celesteela": 0.6035161403025353, - "kartana": 1.2231781667256447, - "guzzlord": 0.9158313850024036, - "necrozma": 1.4133897154242538, - "stakataka": 0.7056789870576614, - "blacephalon": 1.126544445054424 + "articuno": 0.5984442498269957, + "zapdos": 0.5929346531875619, + "moltres": 0.42491097189294447, + "mewtwo": 0.8537034456468047, + "raikou": 1.756163729936443, + "entei": 1.0243036060164994, + "suicune": 2.0276299081814066, + "lugia": 0.845565822018609, + "ho-oh": 0.5463637858777741, + "latias": 1.3317206617664943, + "latios": 1.5865664095266205, + "kyogre": 0.6515297102647934, + "groudon": 0.579104441108504, + "rayquaza": 0.36891528832994824, + "uxie": 1.551486962720095, + "mesprit": 1.4857493292508122, + "azelf": 1.4174507300467138, + "dialga": 0.47977090984012694, + "palkia": 0.5706757604102872, + "heatran": 0.3172674522870887, + "giratina-altered": 0.5902144755932222, + "cresselia": 0.8226187142480195, + "tornadus-incarnate": 0.5896462477978872, + "thundurus-incarnate": 0.7599763167180369, + "reshiram": 0.45084710078143275, + "zekrom": 0.6285424128745386, + "landorus-incarnate": 0.61474878343663, + "kyurem": 0.5122011796579251, + "xerneas": 0.4123903752421545, + "yveltal": 0.4908685500397618, + "zygarde-50": 0.5083420994975634, + "tapu-koko": 1.2992313381098555, + "tapu-lele": 1.5302464491999772, + "tapu-bulu": 0.9074974942355017, + "tapu-fini": 1.0256476908703185, + "solgaleo": 0.6465546592864679, + "lunala": 0.6034161147961159, + "nihilego": 0.7916131444856362, + "buzzwole": 0.9996937634886575, + "pheromosa": 1.2141356257240536, + "xurkitree": 0.8816181273444821, + "celesteela": 0.6030416809919503, + "kartana": 1.224153734366387, + "guzzlord": 0.9170686251382353, + "necrozma": 1.4162805101058256, + "stakataka": 0.7058048622577762, + "blacephalon": 1.1228890442345314 }, "shiinotic": { - "articuno": 0.6963274359600525, - "zapdos": 0.7007461546213996, - "moltres": 0.43425846028533616, - "mewtwo": 0.7459082946742727, - "raikou": 1.7234082446407406, - "entei": 1.0196912766062858, - "suicune": 1.472165370409305, - "lugia": 0.9242478582165596, - "ho-oh": 0.5385575786308394, - "latias": 1.3814449605617238, - "latios": 1.7494615498386374, - "kyogre": 0.4957203028403344, - "groudon": 0.4138709486233212, - "rayquaza": 0.638358008949885, - "uxie": 1.3566531453321518, - "mesprit": 1.2989420307604334, - "azelf": 1.2328977074222363, - "dialga": 0.6497777445518411, - "palkia": 0.778159681467484, - "heatran": 0.31107260953751636, - "giratina-altered": 1.0543665913856803, - "cresselia": 0.6942465319026083, - "tornadus-incarnate": 0.7042210878228763, - "thundurus-incarnate": 0.8002002475129899, - "reshiram": 0.5750995279511907, - "zekrom": 1.038122227820031, - "landorus-incarnate": 0.5997841917636995, - "kyurem": 0.7457845301085181, - "xerneas": 0.4564091432149494, - "yveltal": 0.7804512462832441, - "zygarde-50": 0.6786659094938066, - "tapu-koko": 1.2650844673340171, - "tapu-lele": 1.4611814582174352, - "tapu-bulu": 1.0884926251274036, - "tapu-fini": 0.7521788529401348, - "solgaleo": 0.5434094397209159, - "lunala": 0.6011352197700717, - "nihilego": 0.5781063796897765, - "buzzwole": 1.8995965227844733, - "pheromosa": 2.0458861799028116, - "xurkitree": 0.8838055318764046, - "celesteela": 0.6283463726036516, - "kartana": 1.4232318785658542, - "guzzlord": 1.7054111360952917, - "necrozma": 1.2764578759901302, - "stakataka": 0.5514797817869994, - "blacephalon": 1.1116669114055753 + "articuno": 0.6940871897438008, + "zapdos": 0.6999027512097882, + "moltres": 0.43271198672364997, + "mewtwo": 0.7449395586811146, + "raikou": 1.7236842857675143, + "entei": 1.0168630849091789, + "suicune": 1.472793470936267, + "lugia": 0.9235569757885054, + "ho-oh": 0.536385366303327, + "latias": 1.3835540555883605, + "latios": 1.752703020851941, + "kyogre": 0.49602478024440644, + "groudon": 0.41430195305357265, + "rayquaza": 0.638734578078392, + "uxie": 1.355981585580098, + "mesprit": 1.298189582925824, + "azelf": 1.232050985737435, + "dialga": 0.6490163588966407, + "palkia": 0.7800280867424785, + "heatran": 0.3098195630434564, + "giratina-altered": 1.0562090347626962, + "cresselia": 0.6935630352267056, + "tornadus-incarnate": 0.7023624807635107, + "thundurus-incarnate": 0.7992014913044468, + "reshiram": 0.574430045396694, + "zekrom": 1.0410092015257808, + "landorus-incarnate": 0.6004901475803975, + "kyurem": 0.7451259855681744, + "xerneas": 0.45671053637662684, + "yveltal": 0.7816810406570683, + "zygarde-50": 0.6806663404366478, + "tapu-koko": 1.264556420921052, + "tapu-lele": 1.4597080484129106, + "tapu-bulu": 1.0893168059236635, + "tapu-fini": 0.7530856406674384, + "solgaleo": 0.54107020447225, + "lunala": 0.6004507760733118, + "nihilego": 0.5745779078306161, + "buzzwole": 1.9028795256715076, + "pheromosa": 2.0484971544625297, + "xurkitree": 0.8850637203013377, + "celesteela": 0.6264477049695036, + "kartana": 1.4238138752335558, + "guzzlord": 1.7117841160053104, + "necrozma": 1.2761709526129277, + "stakataka": 0.5498592812055555, + "blacephalon": 1.1075035927237828 }, "salazzle": { - "articuno": 1.1450500186787314, - "zapdos": 0.7117802757773066, - "moltres": 0.5498001559862558, - "mewtwo": 0.7632419982002407, - "raikou": 1.6308418580122614, - "entei": 1.118027958643207, - "suicune": 0.9873772265374032, - "lugia": 0.8036650837874549, - "ho-oh": 0.6304758812020359, - "latias": 0.702948461877667, - "latios": 0.9881757978951677, - "kyogre": 0.3051775050151046, - "groudon": 0.2497319936365346, - "rayquaza": 0.3789577360816443, - "uxie": 1.1987573794882276, - "mesprit": 1.2176221748136733, - "azelf": 1.2351147239984857, - "dialga": 0.6876958085161007, - "palkia": 0.35785935478085584, - "heatran": 0.3363742012175388, - "giratina-altered": 0.5527477785141254, - "cresselia": 0.6883553138926988, - "tornadus-incarnate": 0.8702585605740323, - "thundurus-incarnate": 0.9480625500897591, - "reshiram": 0.4931636093639805, - "zekrom": 0.55626101672447, - "landorus-incarnate": 0.35893705975740253, - "kyurem": 0.6450985793290203, - "xerneas": 0.4854125231074025, - "yveltal": 0.5530625916320471, - "zygarde-50": 0.21314373363600822, - "tapu-koko": 1.2463227614018955, - "tapu-lele": 1.4663783162904558, - "tapu-bulu": 1.6785872555202421, - "tapu-fini": 0.5932922189897115, - "solgaleo": 1.10055075415637, - "lunala": 0.6114783903958616, - "nihilego": 0.8164096887737193, - "buzzwole": 2.244122782950634, - "pheromosa": 2.2256707993538583, - "xurkitree": 0.8109458494199133, - "celesteela": 0.8703588445401247, - "kartana": 5.28362499663255, - "guzzlord": 0.5876244774503873, - "necrozma": 1.0860260371863908, - "stakataka": 0.6367864559151815, - "blacephalon": 1.2027721007730268 + "articuno": 1.1467555918676806, + "zapdos": 0.7113274590256959, + "moltres": 0.5497613299308997, + "mewtwo": 0.7601834458169359, + "raikou": 1.6285223282833097, + "entei": 1.1172504463534634, + "suicune": 0.9823438777959472, + "lugia": 0.8012005420212062, + "ho-oh": 0.6295585461824693, + "latias": 0.6995895412824858, + "latios": 0.9843717917388977, + "kyogre": 0.30400887365963974, + "groudon": 0.24853693341553665, + "rayquaza": 0.3781116624846884, + "uxie": 1.1944569611940803, + "mesprit": 1.2145014986793639, + "azelf": 1.2320677225964218, + "dialga": 0.6870204497062202, + "palkia": 0.3562547789004322, + "heatran": 0.3343255089877615, + "giratina-altered": 0.5511195658080936, + "cresselia": 0.6860903680464097, + "tornadus-incarnate": 0.8702269177839522, + "thundurus-incarnate": 0.9474449957010642, + "reshiram": 0.492316764247084, + "zekrom": 0.5550728275486074, + "landorus-incarnate": 0.3569794038860945, + "kyurem": 0.6450489107205136, + "xerneas": 0.48719005095547463, + "yveltal": 0.5525435526951503, + "zygarde-50": 0.21171184710870633, + "tapu-koko": 1.246507778325855, + "tapu-lele": 1.46289405051689, + "tapu-bulu": 1.6873337515840339, + "tapu-fini": 0.5919580483785951, + "solgaleo": 1.1007165210710865, + "lunala": 0.6107485653740465, + "nihilego": 0.8129861669650089, + "buzzwole": 2.2520384448994277, + "pheromosa": 2.230523887046203, + "xurkitree": 0.8105595207034066, + "celesteela": 0.8693389928556279, + "kartana": 5.310194504554234, + "guzzlord": 0.5852196499665134, + "necrozma": 1.0814679360007393, + "stakataka": 0.63565392412706, + "blacephalon": 1.2006829734329458 }, "bewear": { - "articuno": 0.98378318279562, - "zapdos": 0.8588336478955991, - "moltres": 0.7160146828970969, - "mewtwo": 0.9003712184571357, - "raikou": 2.2205250913291685, - "entei": 1.5818307600647434, - "suicune": 1.6698953234405347, - "lugia": 1.0686236262353481, - "ho-oh": 1.006715004123424, - "latias": 1.275443926854126, - "latios": 1.5265084472961763, - "kyogre": 0.620115310569586, - "groudon": 0.4180337384950019, - "rayquaza": 0.5637925881185831, - "uxie": 1.525286087222537, - "mesprit": 1.4261503502439132, - "azelf": 1.324112178209356, - "dialga": 0.6021604776881879, - "palkia": 0.698060101824279, - "heatran": 0.478667273893581, - "giratina-altered": 0.8756123710221548, - "cresselia": 0.8209687795623133, - "tornadus-incarnate": 0.9576730568329115, - "thundurus-incarnate": 1.1766079785044288, - "reshiram": 0.7399213561878722, - "zekrom": 0.8175632837191318, - "landorus-incarnate": 0.6795160919617255, - "kyurem": 0.746593255678607, - "xerneas": 0.42653148937650726, - "yveltal": 0.6976840284577381, - "zygarde-50": 0.5233105126194146, - "tapu-koko": 1.429955144417984, - "tapu-lele": 1.8422770368574444, - "tapu-bulu": 1.1890653057034726, - "tapu-fini": 0.8493129796118082, - "solgaleo": 0.7707913841864904, - "lunala": 0.97291756435826, - "nihilego": 1.0904139198205884, - "buzzwole": 1.1891106706137289, - "pheromosa": 1.8459583721966561, - "xurkitree": 0.9939712842727426, - "celesteela": 0.7726862306880385, - "kartana": 1.1610227166840272, - "guzzlord": 1.020674870306719, - "necrozma": 1.3839108653958014, - "stakataka": 0.565275391139331, - "blacephalon": 1.815792030018132 + "articuno": 0.9848269133200376, + "zapdos": 0.8601525546722559, + "moltres": 0.7172415288792257, + "mewtwo": 0.9004476974498692, + "raikou": 2.225743477906954, + "entei": 1.5860251933418965, + "suicune": 1.672073985745338, + "lugia": 1.0695738888495456, + "ho-oh": 1.0096309488378932, + "latias": 1.2771735904355164, + "latios": 1.527850296815398, + "kyogre": 0.6216186632590801, + "groudon": 0.41859433539564433, + "rayquaza": 0.5646072132355144, + "uxie": 1.5266829072011472, + "mesprit": 1.4264284117556636, + "azelf": 1.3246228327473668, + "dialga": 0.6029066954551576, + "palkia": 0.7000855782094655, + "heatran": 0.4793064945411851, + "giratina-altered": 0.8773678951224972, + "cresselia": 0.8210792250165009, + "tornadus-incarnate": 0.958202453648157, + "thundurus-incarnate": 1.1791074467190132, + "reshiram": 0.7413028744975323, + "zekrom": 0.819483857982131, + "landorus-incarnate": 0.6809833867035114, + "kyurem": 0.7482501108061885, + "xerneas": 0.42634884105183946, + "yveltal": 0.6991313106024963, + "zygarde-50": 0.524400084921534, + "tapu-koko": 1.4317393973642139, + "tapu-lele": 1.842175422275179, + "tapu-bulu": 1.1910691202079897, + "tapu-fini": 0.8503380649255485, + "solgaleo": 0.7713808515765626, + "lunala": 0.9746490232309948, + "nihilego": 1.0919473131486446, + "buzzwole": 1.1897998176944418, + "pheromosa": 1.8497280984173807, + "xurkitree": 0.9961802063438996, + "celesteela": 0.7739601530087421, + "kartana": 1.159713724071287, + "guzzlord": 1.0235479649679382, + "necrozma": 1.384879971173135, + "stakataka": 0.5649513978266701, + "blacephalon": 1.816191713599118 }, "tsareena": { - "articuno": 0.6673530164644124, - "zapdos": 0.6166450740138696, - "moltres": 0.46578519596381207, - "mewtwo": 0.788168088330123, - "raikou": 1.987065457625944, - "entei": 1.069329025565057, - "suicune": 2.123269908612486, - "lugia": 0.835964872391479, - "ho-oh": 0.6623635749659209, - "latias": 1.006467504326552, - "latios": 1.2040195706869599, - "kyogre": 0.8323348418372336, - "groudon": 0.4986517088642627, - "rayquaza": 0.4035954705494126, - "uxie": 1.4197908036905205, - "mesprit": 1.3599285630062394, - "azelf": 1.2981967481917156, - "dialga": 0.4788701714600545, - "palkia": 0.6282201830853714, - "heatran": 0.33723870771462017, - "giratina-altered": 0.6362130744300952, - "cresselia": 0.751806688038976, - "tornadus-incarnate": 0.6531512920667504, - "thundurus-incarnate": 0.8049021108888477, - "reshiram": 0.5153406584869284, - "zekrom": 0.5967744203321362, - "landorus-incarnate": 0.6131229291220377, - "kyurem": 0.5113872256991019, - "xerneas": 0.4332082841510341, - "yveltal": 0.48570773799434375, - "zygarde-50": 0.48880366019719823, - "tapu-koko": 1.2998832825625408, - "tapu-lele": 1.7736317572526956, - "tapu-bulu": 1.0966911026252526, - "tapu-fini": 1.1365187901613254, - "solgaleo": 0.6153455809070263, - "lunala": 0.6615665652192573, - "nihilego": 1.0790598893975196, - "buzzwole": 1.325052064886112, - "pheromosa": 2.2251180600146587, - "xurkitree": 0.911200987033314, - "celesteela": 0.6284681082444143, - "kartana": 1.1752763501976586, - "guzzlord": 0.715525805543691, - "necrozma": 1.2994919629361512, - "stakataka": 0.5943355683071443, - "blacephalon": 1.3219844421915605 + "articuno": 0.6652262359763441, + "zapdos": 0.615699956182501, + "moltres": 0.4642670973848165, + "mewtwo": 0.7876363878905261, + "raikou": 1.9889478964061247, + "entei": 1.0669768834433029, + "suicune": 2.1279984296888523, + "lugia": 0.8347486452638804, + "ho-oh": 0.6608289613701432, + "latias": 1.0061669096139734, + "latios": 1.2032464067891286, + "kyogre": 0.8348888264532195, + "groudon": 0.4994602408513791, + "rayquaza": 0.4026767690122463, + "uxie": 1.4196888298233767, + "mesprit": 1.3597248892252294, + "azelf": 1.2980442845553481, + "dialga": 0.47799484785472846, + "palkia": 0.6290130709627322, + "heatran": 0.33623222404163994, + "giratina-altered": 0.6359014492931012, + "cresselia": 0.7516899440572231, + "tornadus-incarnate": 0.6513123593045227, + "thundurus-incarnate": 0.8041877319403163, + "reshiram": 0.514116991382052, + "zekrom": 0.5964884310797013, + "landorus-incarnate": 0.6139199803442896, + "kyurem": 0.5100761290300302, + "xerneas": 0.43348572381232653, + "yveltal": 0.485012255221515, + "zygarde-50": 0.4893338292600805, + "tapu-koko": 1.2997221382717892, + "tapu-lele": 1.774635379696746, + "tapu-bulu": 1.0970255236087474, + "tapu-fini": 1.1398638002999606, + "solgaleo": 0.6143955007230053, + "lunala": 0.6616191604352719, + "nihilego": 1.0776207024863385, + "buzzwole": 1.3230678378426985, + "pheromosa": 2.2248336811343496, + "xurkitree": 0.9123876579115926, + "celesteela": 0.6277499277315225, + "kartana": 1.1741879621496798, + "guzzlord": 0.7150443072877903, + "necrozma": 1.2996737208180043, + "stakataka": 0.5936119673328968, + "blacephalon": 1.3197633656345529 }, "comfey": { - "articuno": 0.7280385491928698, - "zapdos": 0.6188280843180223, - "moltres": 0.4713605194419611, - "mewtwo": 0.7214975688187288, - "raikou": 1.4670141108827228, - "entei": 1.0180761758183998, - "suicune": 1.5123332290751847, - "lugia": 0.8428079032872864, - "ho-oh": 0.5626615600349434, - "latias": 1.1006316052807357, - "latios": 1.4542915738423734, - "kyogre": 0.4745038990656645, - "groudon": 0.4220616484159667, - "rayquaza": 0.5445353364502638, - "uxie": 1.2074527612573527, - "mesprit": 1.1553650681990544, - "azelf": 1.0958194255027887, - "dialga": 0.5536863989243769, - "palkia": 0.5952987589368982, - "heatran": 0.3441709066778188, - "giratina-altered": 0.8449969949613769, - "cresselia": 0.646564381025383, - "tornadus-incarnate": 0.729455998673933, - "thundurus-incarnate": 0.7544227695404595, - "reshiram": 0.5477594334525846, - "zekrom": 0.7933552300541264, - "landorus-incarnate": 0.4915853630090915, - "kyurem": 0.672075192340104, - "xerneas": 0.38346825477892393, - "yveltal": 0.6599692908765157, - "zygarde-50": 0.4948173383539881, - "tapu-koko": 1.090104118136435, - "tapu-lele": 1.3187409987528718, - "tapu-bulu": 0.9284319903425282, - "tapu-fini": 0.7509855582961693, - "solgaleo": 0.5118470380087552, - "lunala": 0.5400360329265014, - "nihilego": 0.7391372032473684, - "buzzwole": 1.581880966210325, - "pheromosa": 1.7176777456594818, - "xurkitree": 0.7223035401017415, - "celesteela": 0.5458735891522231, - "kartana": 1.233013126363582, - "guzzlord": 1.269544212035405, - "necrozma": 1.1203823242667035, - "stakataka": 0.5820591366143282, - "blacephalon": 1.1258956296819702 + "articuno": 0.7269599238390639, + "zapdos": 0.6180491160903243, + "moltres": 0.47037442977722477, + "mewtwo": 0.7206704612396471, + "raikou": 1.4648295676296257, + "entei": 1.0162674176607298, + "suicune": 1.5121532128634019, + "lugia": 0.84212590862437, + "ho-oh": 0.5611829129429711, + "latias": 1.100666509814262, + "latios": 1.455381565254652, + "kyogre": 0.47434346173782316, + "groudon": 0.42237367307594714, + "rayquaza": 0.5449270209377826, + "uxie": 1.2062503754025444, + "mesprit": 1.1541145609472037, + "azelf": 1.0945215341561008, + "dialga": 0.5524746686213443, + "palkia": 0.5957023698793253, + "heatran": 0.34306503523023985, + "giratina-altered": 0.8458323220131392, + "cresselia": 0.6458471785733417, + "tornadus-incarnate": 0.7286287008405328, + "thundurus-incarnate": 0.7528925379500192, + "reshiram": 0.547464582651719, + "zekrom": 0.7936305557547529, + "landorus-incarnate": 0.4913345302495561, + "kyurem": 0.6718137198432736, + "xerneas": 0.38337801238955466, + "yveltal": 0.6608352987483503, + "zygarde-50": 0.4951888892378724, + "tapu-koko": 1.0893877091292183, + "tapu-lele": 1.3168234044558047, + "tapu-bulu": 0.9275831430640411, + "tapu-fini": 0.7513291828149128, + "solgaleo": 0.5095791769391494, + "lunala": 0.5393941949896217, + "nihilego": 0.736352557394149, + "buzzwole": 1.5846718387872951, + "pheromosa": 1.7192700815913884, + "xurkitree": 0.7217917221132614, + "celesteela": 0.5436458527197964, + "kartana": 1.2306592552288698, + "guzzlord": 1.272246241988864, + "necrozma": 1.119322219546635, + "stakataka": 0.5806771894920311, + "blacephalon": 1.1234445835742664 }, "oranguru": { - "articuno": 0.8476719711811314, - "zapdos": 0.7365411460837354, - "moltres": 0.6396037638693167, - "mewtwo": 0.7282576124551188, - "raikou": 1.7231911610593027, - "entei": 1.2885557439887467, - "suicune": 1.4744353467658038, - "lugia": 0.8211655122238736, - "ho-oh": 0.7506485926902842, - "latias": 0.9053535531130138, - "latios": 1.1367460122607564, - "kyogre": 0.485731851022618, - "groudon": 0.4013474297083644, - "rayquaza": 0.4557351943370094, - "uxie": 1.252986678564957, - "mesprit": 1.1531733299234104, - "azelf": 1.0888398798238208, - "dialga": 0.5457460190329761, - "palkia": 0.5499368253931312, - "heatran": 0.42738467002296765, - "giratina-altered": 0.7897271452524313, - "cresselia": 0.6497606086402883, - "tornadus-incarnate": 0.8623931698279788, - "thundurus-incarnate": 0.9736020132631347, - "reshiram": 0.6249557468681171, - "zekrom": 0.6993953488568538, - "landorus-incarnate": 0.5695648156648818, - "kyurem": 0.6559991326957906, - "xerneas": 0.4200824122659223, - "yveltal": 0.3512466305132357, - "zygarde-50": 0.4603494535572462, - "tapu-koko": 1.2908807603974575, - "tapu-lele": 1.3702054788329159, - "tapu-bulu": 1.0083205353908928, - "tapu-fini": 0.7258590130689233, - "solgaleo": 0.5698462508944186, - "lunala": 0.5585890331969869, - "nihilego": 1.3420943767751425, - "buzzwole": 1.7267012739252954, - "pheromosa": 1.9078917102662263, - "xurkitree": 0.8070685796160944, - "celesteela": 0.6572573020588655, - "kartana": 1.4142855863676362, - "guzzlord": 0.4926972996790882, - "necrozma": 1.127738459104321, - "stakataka": 0.5425414926817423, - "blacephalon": 1.6034155690389136 + "articuno": 0.8484916137766675, + "zapdos": 0.7374936057889736, + "moltres": 0.640469189683309, + "mewtwo": 0.7284696685648644, + "raikou": 1.7244741936561567, + "entei": 1.2888410988066505, + "suicune": 1.4760454228605124, + "lugia": 0.821013717378057, + "ho-oh": 0.7514928930939736, + "latias": 0.9052985432901257, + "latios": 1.136725203354969, + "kyogre": 0.4862360523305262, + "groudon": 0.4016426615394163, + "rayquaza": 0.45587648046444595, + "uxie": 1.2540831065718927, + "mesprit": 1.153005783290681, + "azelf": 1.0884617602389164, + "dialga": 0.5455253314367898, + "palkia": 0.550449949100846, + "heatran": 0.42710445840905165, + "giratina-altered": 0.7920895928349605, + "cresselia": 0.6499560754063941, + "tornadus-incarnate": 0.8636363450304997, + "thundurus-incarnate": 0.9749061548249094, + "reshiram": 0.626053397543478, + "zekrom": 0.699733033203997, + "landorus-incarnate": 0.5700903836009656, + "kyurem": 0.6569777834706432, + "xerneas": 0.4206747458048484, + "yveltal": 0.34958170043461156, + "zygarde-50": 0.46067627309757, + "tapu-koko": 1.292429740753394, + "tapu-lele": 1.3705115566223711, + "tapu-bulu": 1.0081826180006956, + "tapu-fini": 0.7269971552571672, + "solgaleo": 0.568886596523883, + "lunala": 0.5592069619812039, + "nihilego": 1.3451781268884013, + "buzzwole": 1.7273607651572713, + "pheromosa": 1.9095721279835067, + "xurkitree": 0.807698919184715, + "celesteela": 0.6570505043830379, + "kartana": 1.4135106899979772, + "guzzlord": 0.49022145458428695, + "necrozma": 1.12798133094963, + "stakataka": 0.5416384404422826, + "blacephalon": 1.607267195101426 }, "passimian": { - "articuno": 1.2212752830518252, - "zapdos": 0.7684658898988432, - "moltres": 0.8945699320357812, - "mewtwo": 0.6529520620844365, - "raikou": 1.754501018698523, - "entei": 1.437944220111251, - "suicune": 1.345205607973147, - "lugia": 0.9589138311576115, - "ho-oh": 1.3079447143558465, - "latias": 0.8909490194237564, - "latios": 1.1068448660598191, - "kyogre": 0.48299095743205633, - "groudon": 0.3564441857355295, - "rayquaza": 0.5115365191216517, - "uxie": 1.0590258655246223, - "mesprit": 1.01859449471787, - "azelf": 0.9397955967986443, - "dialga": 0.8678823186832564, - "palkia": 0.551795718075746, - "heatran": 0.6837181894937856, - "giratina-altered": 0.6403612438246773, - "cresselia": 0.5892160234291912, - "tornadus-incarnate": 0.84545980934957, - "thundurus-incarnate": 1.036483687969968, - "reshiram": 0.6593085042435349, - "zekrom": 0.6717713042139566, - "landorus-incarnate": 0.5075806082339502, - "kyurem": 0.7708856201479142, - "xerneas": 0.2975700976672446, - "yveltal": 0.6282152540565344, - "zygarde-50": 0.4353912792422818, - "tapu-koko": 1.0157088964278995, - "tapu-lele": 1.272764881367535, - "tapu-bulu": 1.1228914685076359, - "tapu-fini": 0.5900592357960784, - "solgaleo": 0.7021907533646508, - "lunala": 0.5239601980571882, - "nihilego": 1.1347312092974922, - "buzzwole": 1.499715693419232, - "pheromosa": 2.3744809824937945, - "xurkitree": 0.7937734819310234, - "celesteela": 0.8202147672913942, - "kartana": 1.4410720991663029, - "guzzlord": 1.1025080422761149, - "necrozma": 1.0204468471681598, - "stakataka": 1.0493599904221536, - "blacephalon": 1.7926962560997675 + "articuno": 1.222320664506573, + "zapdos": 0.7681909460942147, + "moltres": 0.8956158172707347, + "mewtwo": 0.6510280236738095, + "raikou": 1.755202191995462, + "entei": 1.4407385847803145, + "suicune": 1.3448667968438626, + "lugia": 0.9572071797072293, + "ho-oh": 1.3109352660446199, + "latias": 0.8893224033459912, + "latios": 1.10489166036223, + "kyogre": 0.48338976103159303, + "groudon": 0.3565416715420482, + "rayquaza": 0.5115251276964303, + "uxie": 1.0559022271648768, + "mesprit": 1.0155383469252797, + "azelf": 0.9372252619847086, + "dialga": 0.8695310020649512, + "palkia": 0.5525803028743281, + "heatran": 0.685278112214958, + "giratina-altered": 0.6401423000253097, + "cresselia": 0.5874820350205728, + "tornadus-incarnate": 0.8444227962532984, + "thundurus-incarnate": 1.0365119574781771, + "reshiram": 0.6598738348602873, + "zekrom": 0.6722162684832013, + "landorus-incarnate": 0.5078677128017287, + "kyurem": 0.7720723405697254, + "xerneas": 0.29675453079747754, + "yveltal": 0.6290823569511166, + "zygarde-50": 0.4355501587043332, + "tapu-koko": 1.014449619077558, + "tapu-lele": 1.2688590086879503, + "tapu-bulu": 1.1243293480617853, + "tapu-fini": 0.5894413353386319, + "solgaleo": 0.7019295793965643, + "lunala": 0.5226842918884833, + "nihilego": 1.1359574238499026, + "buzzwole": 1.5024505638512895, + "pheromosa": 2.380779297898771, + "xurkitree": 0.7939759337315702, + "celesteela": 0.8214183422798709, + "kartana": 1.441200698542354, + "guzzlord": 1.1056600323867305, + "necrozma": 1.0181430328720518, + "stakataka": 1.0520341408703064, + "blacephalon": 1.7932540590715838 }, "palossand": { - "articuno": 0.7108546279352674, - "zapdos": 0.8328398984939398, - "moltres": 0.6213025871560084, - "mewtwo": 1.0037093742705545, - "raikou": 2.5405731495482264, - "entei": 1.7745769545137482, - "suicune": 1.4121146987231044, - "lugia": 1.1935881431527766, - "ho-oh": 0.7323728926525794, - "latias": 1.1826187500337237, - "latios": 1.715811758902448, - "kyogre": 0.38501287492832814, - "groudon": 0.4240375444213126, - "rayquaza": 0.4747389733538625, - "uxie": 1.8696203860701703, - "mesprit": 1.9378788837065715, - "azelf": 1.7937273812487133, - "dialga": 0.9706216377900725, - "palkia": 0.48884545254435197, - "heatran": 1.0412560216808753, - "giratina-altered": 0.9764120687161241, - "cresselia": 0.9457222048443578, - "tornadus-incarnate": 0.7956527087630387, - "thundurus-incarnate": 1.1577643607183417, - "reshiram": 0.761005017975799, - "zekrom": 1.0591768464836244, - "landorus-incarnate": 0.6167883966615981, - "kyurem": 0.5874019169519533, - "xerneas": 0.4025313701897417, - "yveltal": 0.42867584207719195, - "zygarde-50": 0.4861011645097211, - "tapu-koko": 1.9632966350810743, - "tapu-lele": 1.9934598496085232, - "tapu-bulu": 1.072930937436595, - "tapu-fini": 0.6066865154237724, - "solgaleo": 1.1193496716815383, - "lunala": 1.1579982557414041, - "nihilego": 1.5569501573329445, - "buzzwole": 1.5424410322695912, - "pheromosa": 1.6868406219101515, - "xurkitree": 1.1769328605115454, - "celesteela": 0.8625329296050306, - "kartana": 1.7885693367263524, - "guzzlord": 0.7651015215368755, - "necrozma": 1.826146617187437, - "stakataka": 1.512717911398053, - "blacephalon": 1.911913701025847 + "articuno": 0.708747083889085, + "zapdos": 0.8346417226357522, + "moltres": 0.6213155323706612, + "mewtwo": 1.0046615340195835, + "raikou": 2.554057885173248, + "entei": 1.779151681831638, + "suicune": 1.4119070440263735, + "lugia": 1.1939397623618877, + "ho-oh": 0.7323945594469663, + "latias": 1.1821440258716973, + "latios": 1.717632709967134, + "kyogre": 0.3847363562930131, + "groudon": 0.42513198796232826, + "rayquaza": 0.4747719448730704, + "uxie": 1.8699649594305217, + "mesprit": 1.9417384599203618, + "azelf": 1.7969336082806109, + "dialga": 0.973831348804596, + "palkia": 0.4889589863842806, + "heatran": 1.0443051858437413, + "giratina-altered": 0.9771255544135775, + "cresselia": 0.946169965905107, + "tornadus-incarnate": 0.7949509805349859, + "thundurus-incarnate": 1.1614870541078466, + "reshiram": 0.7622718236216247, + "zekrom": 1.0645127467130129, + "landorus-incarnate": 0.6176442667666552, + "kyurem": 0.5865489228320082, + "xerneas": 0.4028231416639464, + "yveltal": 0.4275930454265592, + "zygarde-50": 0.48698241318733176, + "tapu-koko": 1.973167863108262, + "tapu-lele": 1.9964776584477084, + "tapu-bulu": 1.0734708780867728, + "tapu-fini": 0.6059516416274949, + "solgaleo": 1.123468891581841, + "lunala": 1.1581548774370851, + "nihilego": 1.561243369672797, + "buzzwole": 1.5481598906711638, + "pheromosa": 1.6903592447174378, + "xurkitree": 1.1815717057772517, + "celesteela": 0.8630384783926192, + "kartana": 1.790395739161609, + "guzzlord": 0.7651213496938553, + "necrozma": 1.8311308270385989, + "stakataka": 1.51923294341419, + "blacephalon": 1.9155067054997634 }, "pyukumuku": { - "articuno": 0.641421654509962, - "zapdos": 0.4382531376622544, - "moltres": 0.45236084535565513, - "mewtwo": 0.5948068585389703, - "raikou": 1.0851879846001145, - "entei": 0.9166315222943797, - "suicune": 1.0198451626944922, - "lugia": 0.6720994683167463, - "ho-oh": 0.5505859794234934, - "latias": 0.7574313951703626, - "latios": 0.9079882091768736, - "kyogre": 0.3531709709045626, - "groudon": 0.2700484624313773, - "rayquaza": 0.32258391328545644, - "uxie": 0.950982343891907, - "mesprit": 0.9068128519644352, - "azelf": 0.8603366839462886, - "dialga": 0.43504845150230786, - "palkia": 0.3910600421313477, - "heatran": 0.37051749483732105, - "giratina-altered": 0.47203790976324106, - "cresselia": 0.5252959392498842, - "tornadus-incarnate": 0.6044664785488918, - "thundurus-incarnate": 0.5717915245874057, - "reshiram": 0.42784415779176643, - "zekrom": 0.4322927996593866, - "landorus-incarnate": 0.38723852176540047, - "kyurem": 0.46463206335374707, - "xerneas": 0.27363847271151576, - "yveltal": 0.38625426091619874, - "zygarde-50": 0.31401901183220204, - "tapu-koko": 0.7431062249492075, - "tapu-lele": 1.0835578635420076, - "tapu-bulu": 0.677912160590201, - "tapu-fini": 0.5143636321776682, - "solgaleo": 0.5267429266099661, - "lunala": 0.4369260348323165, - "nihilego": 0.7478027784805905, - "buzzwole": 0.8370394262465752, - "pheromosa": 1.0498817679823564, - "xurkitree": 0.48777416921455086, - "celesteela": 0.5276921134233106, - "kartana": 0.9468237922375073, - "guzzlord": 0.5551240365222475, - "necrozma": 0.860293968233697, - "stakataka": 0.4785704584043, - "blacephalon": 1.0536228654848236 + "articuno": 0.640300629431729, + "zapdos": 0.43641714641420454, + "moltres": 0.4515956084248218, + "mewtwo": 0.5932191416919437, + "raikou": 1.0798455528343176, + "entei": 0.9147128753605472, + "suicune": 1.0176137818806472, + "lugia": 0.6703079328736271, + "ho-oh": 0.549643090786031, + "latias": 0.7553867209643095, + "latios": 0.9052489814627346, + "kyogre": 0.35222330669307456, + "groudon": 0.26934390463888574, + "rayquaza": 0.32160473692482033, + "uxie": 0.9480807200035528, + "mesprit": 0.9039443224931262, + "azelf": 0.8575696289081779, + "dialga": 0.4340810171509386, + "palkia": 0.3901849617490307, + "heatran": 0.36993774123906953, + "giratina-altered": 0.47062890919787925, + "cresselia": 0.5238753602468995, + "tornadus-incarnate": 0.6030598482325558, + "thundurus-incarnate": 0.569015013413836, + "reshiram": 0.4270043775257032, + "zekrom": 0.4303007557076929, + "landorus-incarnate": 0.3861609441099837, + "kyurem": 0.4636554132267301, + "xerneas": 0.2727863418692876, + "yveltal": 0.38512164028725665, + "zygarde-50": 0.313120057509198, + "tapu-koko": 0.7398686275309471, + "tapu-lele": 1.0803703242036056, + "tapu-bulu": 0.6752200401529572, + "tapu-fini": 0.5135128535104345, + "solgaleo": 0.5257222319041117, + "lunala": 0.4356386514474591, + "nihilego": 0.745443725527458, + "buzzwole": 0.834534127155414, + "pheromosa": 1.0466099239197546, + "xurkitree": 0.4852032061875561, + "celesteela": 0.5265679843706119, + "kartana": 0.9420190013835323, + "guzzlord": 0.5534275338269978, + "necrozma": 0.8574383947002661, + "stakataka": 0.47751295909191727, + "blacephalon": 1.0514801059333259 }, "togedemaru": { - "articuno": 1.2296654808185155, - "zapdos": 0.7062395125181404, - "moltres": 0.5204530988899283, - "mewtwo": 0.8668802907229235, - "raikou": 1.605509072751743, - "entei": 1.0279815225560116, - "suicune": 1.505655074700812, - "lugia": 1.1104175426516756, - "ho-oh": 0.7625534551974503, - "latias": 1.110219063703839, - "latios": 1.3684049364434054, - "kyogre": 0.5172899473807909, - "groudon": 0.1992464814081366, - "rayquaza": 0.4862986973315436, - "uxie": 1.427656783246416, - "mesprit": 1.3964580453387359, - "azelf": 1.33339405846467, - "dialga": 0.5613730374106338, - "palkia": 0.49189798239474714, - "heatran": 0.3495038745687966, - "giratina-altered": 0.7333951560411696, - "cresselia": 0.7918193560984595, - "tornadus-incarnate": 0.9237350782656419, - "thundurus-incarnate": 0.976245055047386, - "reshiram": 0.48387433836331206, - "zekrom": 0.5973683794089639, - "landorus-incarnate": 0.34231888796305726, - "kyurem": 0.8663248294863233, - "xerneas": 0.5962127590498618, - "yveltal": 0.6138923547461359, - "zygarde-50": 0.23805680467185136, - "tapu-koko": 1.372820484191173, - "tapu-lele": 2.4815610383010727, - "tapu-bulu": 1.3413139522819113, - "tapu-fini": 0.8118717462001002, - "solgaleo": 0.6710536193250578, - "lunala": 0.6453646440663106, - "nihilego": 1.8566253575648926, - "buzzwole": 0.9528816898676493, - "pheromosa": 1.4647376485040127, - "xurkitree": 0.7164435594809366, - "celesteela": 0.6231297498236688, - "kartana": 1.1796969651276492, - "guzzlord": 0.7096455705447282, - "necrozma": 1.3044144596802862, - "stakataka": 0.5884478063203347, - "blacephalon": 1.2421227490384452 + "articuno": 1.2341492311415054, + "zapdos": 0.7077471940522393, + "moltres": 0.5197829627688492, + "mewtwo": 0.8683090641315303, + "raikou": 1.606704876840968, + "entei": 1.0253806981257236, + "suicune": 1.5065654030857507, + "lugia": 1.1135323971828321, + "ho-oh": 0.7612683516549636, + "latias": 1.1114768788230727, + "latios": 1.3690640019587836, + "kyogre": 0.5177624916297283, + "groudon": 0.19792622015545747, + "rayquaza": 0.48719813405989026, + "uxie": 1.4294565640615788, + "mesprit": 1.398858493928981, + "azelf": 1.3356006599236503, + "dialga": 0.5615745662815153, + "palkia": 0.4920106257027447, + "heatran": 0.34850756379116, + "giratina-altered": 0.733475051796243, + "cresselia": 0.7933149312408929, + "tornadus-incarnate": 0.925735568631654, + "thundurus-incarnate": 0.9781983199377011, + "reshiram": 0.48284190471665844, + "zekrom": 0.5973807750759079, + "landorus-incarnate": 0.34021891299411555, + "kyurem": 0.8679597876591776, + "xerneas": 0.5984954057221803, + "yveltal": 0.6149193180406449, + "zygarde-50": 0.23663675115579502, + "tapu-koko": 1.3767469580425211, + "tapu-lele": 2.4912030451590876, + "tapu-bulu": 1.3445567820968929, + "tapu-fini": 0.8138426423574994, + "solgaleo": 0.6712300342589144, + "lunala": 0.6454055945004613, + "nihilego": 1.8635078525588678, + "buzzwole": 0.951142382855491, + "pheromosa": 1.4637628570170649, + "xurkitree": 0.7167724014300281, + "celesteela": 0.6226353409395531, + "kartana": 1.1782079620232313, + "guzzlord": 0.7080568540074366, + "necrozma": 1.3065376496805325, + "stakataka": 0.5884982860005596, + "blacephalon": 1.239029603985806 }, "mimikyu-disguised": { - "articuno": 0.8192501124513742, - "zapdos": 0.6829211681682694, - "moltres": 0.5764350068394466, - "mewtwo": 0.9947422573968255, - "raikou": 1.8224856260591789, - "entei": 1.246864039114845, - "suicune": 1.3927330298280893, - "lugia": 1.2326043577662205, - "ho-oh": 0.759400918971344, - "latias": 1.4233846889219235, - "latios": 1.880089704741786, - "kyogre": 0.4883954117793975, - "groudon": 0.3306632635105607, - "rayquaza": 0.4710418993565365, - "uxie": 1.7252893828498892, - "mesprit": 1.7800116096530383, - "azelf": 1.6503958636290887, - "dialga": 0.5932246215600503, - "palkia": 0.5561913265699161, - "heatran": 0.46991448884622067, - "giratina-altered": 0.8939496381630402, - "cresselia": 0.9201591592744883, - "tornadus-incarnate": 0.8172213543740812, - "thundurus-incarnate": 0.93002160469456, - "reshiram": 0.6232170768851105, - "zekrom": 0.6676159699992776, - "landorus-incarnate": 0.5084799345005372, - "kyurem": 0.6182300409254977, - "xerneas": 0.38740440161504075, - "yveltal": 0.4869572550988267, - "zygarde-50": 0.40142398544776525, - "tapu-koko": 1.1575908518745432, - "tapu-lele": 2.1088776852058775, - "tapu-bulu": 0.9846640995998067, - "tapu-fini": 0.6874013193947459, - "solgaleo": 0.7954488839571683, - "lunala": 1.150389758798611, - "nihilego": 1.0855907608600959, - "buzzwole": 1.1524208154091828, - "pheromosa": 1.6114472859123143, - "xurkitree": 0.758867022827107, - "celesteela": 0.6934937318157997, - "kartana": 1.1834473016645033, - "guzzlord": 0.6974688930574875, - "necrozma": 1.489345390358479, - "stakataka": 0.5373789667855471, - "blacephalon": 1.9838145073976574 + "articuno": 0.8189489954570699, + "zapdos": 0.6826600128158948, + "moltres": 0.5762392624501894, + "mewtwo": 0.9950358445032497, + "raikou": 1.823808838120517, + "entei": 1.2467709611116418, + "suicune": 1.3925631701349659, + "lugia": 1.234388867003498, + "ho-oh": 0.7592373249220548, + "latias": 1.4256582813821288, + "latios": 1.8848997116634787, + "kyogre": 0.48859224058283945, + "groudon": 0.3304737057514694, + "rayquaza": 0.47151713495952574, + "uxie": 1.7258305974413426, + "mesprit": 1.7835966164566903, + "azelf": 1.653347972983029, + "dialga": 0.5924471323131896, + "palkia": 0.5566935355941551, + "heatran": 0.46925783702721074, + "giratina-altered": 0.8933586906155854, + "cresselia": 0.9205704322290971, + "tornadus-incarnate": 0.8171682716875379, + "thundurus-incarnate": 0.9302152318768322, + "reshiram": 0.6237685072450739, + "zekrom": 0.6678113623385709, + "landorus-incarnate": 0.5083183006280508, + "kyurem": 0.6178540602552015, + "xerneas": 0.3873182742588585, + "yveltal": 0.4865807684062491, + "zygarde-50": 0.40130906309110903, + "tapu-koko": 1.1573961802236665, + "tapu-lele": 2.1103998208671055, + "tapu-bulu": 0.9846816652119215, + "tapu-fini": 0.687399956777347, + "solgaleo": 0.7934588862431398, + "lunala": 1.150280228176983, + "nihilego": 1.0849197532997754, + "buzzwole": 1.1540886998335191, + "pheromosa": 1.6144712114137563, + "xurkitree": 0.7584012634355894, + "celesteela": 0.6916986184607878, + "kartana": 1.1806518460356903, + "guzzlord": 0.6971233403554467, + "necrozma": 1.4897295278008955, + "stakataka": 0.5359462036842144, + "blacephalon": 1.9832726973759387 }, "greedent": { - "articuno": 0.924848756590553, - "zapdos": 0.7598407163711858, - "moltres": 0.6259793384162113, - "mewtwo": 0.8380318712442498, - "raikou": 1.8704698035781098, - "entei": 1.331188127563558, - "suicune": 1.4913610156577044, - "lugia": 0.9828238547176454, - "ho-oh": 0.853916388501869, - "latias": 1.1335178546345206, - "latios": 1.3732143119707494, - "kyogre": 0.5271064261155979, - "groudon": 0.36930818939582843, - "rayquaza": 0.48672349810030474, - "uxie": 1.4352789048863972, - "mesprit": 1.3352099619468967, - "azelf": 1.279789227754275, - "dialga": 0.5362946500418226, - "palkia": 0.5852006498019482, - "heatran": 0.4327962490430103, - "giratina-altered": 0.706374285889179, - "cresselia": 0.7714498198552733, - "tornadus-incarnate": 0.8851058145025585, - "thundurus-incarnate": 0.9987495819720988, - "reshiram": 0.644113545200171, - "zekrom": 0.6996781824280528, - "landorus-incarnate": 0.5747562934018016, - "kyurem": 0.6800598884020539, - "xerneas": 0.4453072858019958, - "yveltal": 0.5862529759799504, - "zygarde-50": 0.45577950248774873, - "tapu-koko": 1.2554370157756543, - "tapu-lele": 1.8589495292643639, - "tapu-bulu": 1.0647712060662031, - "tapu-fini": 0.7455262917820635, - "solgaleo": 0.6336884110630883, - "lunala": 0.5890126360330291, - "nihilego": 1.3459753236262155, - "buzzwole": 1.120350208208242, - "pheromosa": 1.702857646009698, - "xurkitree": 0.8379622615921802, - "celesteela": 0.6846834426032881, - "kartana": 1.1390695701879223, - "guzzlord": 0.8372899857831184, - "necrozma": 1.2693295180463786, - "stakataka": 0.5434602068505437, - "blacephalon": 1.5126639309527552 + "articuno": 0.9265172726467275, + "zapdos": 0.7610153556735804, + "moltres": 0.6266988286382869, + "mewtwo": 0.8385802140959226, + "raikou": 1.872796353951248, + "entei": 1.3328346664280262, + "suicune": 1.4928925594033093, + "lugia": 0.9835853303913398, + "ho-oh": 0.8556303819669138, + "latias": 1.1347013425600427, + "latios": 1.3739163990269707, + "kyogre": 0.527799293535993, + "groudon": 0.36954489804630797, + "rayquaza": 0.48742964982420967, + "uxie": 1.4369999230296093, + "mesprit": 1.3357653934779623, + "azelf": 1.28051565112478, + "dialga": 0.5362808663363299, + "palkia": 0.5860605256868547, + "heatran": 0.4327502258553756, + "giratina-altered": 0.7076778223187695, + "cresselia": 0.7721834312445659, + "tornadus-incarnate": 0.8864945050250914, + "thundurus-incarnate": 0.9998099167783459, + "reshiram": 0.6449714497737713, + "zekrom": 0.7004993375852417, + "landorus-incarnate": 0.5754599051320862, + "kyurem": 0.6814879469632067, + "xerneas": 0.4463040296007997, + "yveltal": 0.586622359124152, + "zygarde-50": 0.4563588316688565, + "tapu-koko": 1.2573976858199791, + "tapu-lele": 1.863029610422422, + "tapu-bulu": 1.0664458348869872, + "tapu-fini": 0.7467682797563102, + "solgaleo": 0.6334392473188142, + "lunala": 0.5895596842880582, + "nihilego": 1.3493638402359633, + "buzzwole": 1.1204299836446936, + "pheromosa": 1.7054096947820692, + "xurkitree": 0.8388209321975925, + "celesteela": 0.6849384252851469, + "kartana": 1.1375668700507826, + "guzzlord": 0.8378441606815377, + "necrozma": 1.2700589828895152, + "stakataka": 0.5429733299519302, + "blacephalon": 1.5136580040045726 }, "orbeetle": { - "articuno": 0.7808013485333902, - "zapdos": 0.6679760738362736, - "moltres": 0.5273160506795893, - "mewtwo": 0.9280914836739079, - "raikou": 1.6281372817701811, - "entei": 1.1758407565868692, - "suicune": 1.42629440144586, - "lugia": 0.805305296677667, - "ho-oh": 0.6338919751265621, - "latias": 1.1098497715011104, - "latios": 1.4430935386310793, - "kyogre": 0.4455554984736788, - "groudon": 0.41182027218834255, - "rayquaza": 0.42837921954705505, - "uxie": 1.5222699240170794, - "mesprit": 1.4760368170952067, - "azelf": 1.394717283651667, - "dialga": 0.5179176955234706, - "palkia": 0.5149967278180788, - "heatran": 0.3615293193761877, - "giratina-altered": 0.6481928225765459, - "cresselia": 0.8342506357699844, - "tornadus-incarnate": 0.7300329667347374, - "thundurus-incarnate": 0.9184649368045381, - "reshiram": 0.5544308625257023, - "zekrom": 0.6813501967864806, - "landorus-incarnate": 0.5746753248348652, - "kyurem": 0.6007627433665026, - "xerneas": 0.4027828177866502, - "yveltal": 0.4411210977578244, - "zygarde-50": 0.4887507359731249, - "tapu-koko": 1.188736338166747, - "tapu-lele": 1.4049611893714964, - "tapu-bulu": 1.047525906422703, - "tapu-fini": 0.6884221796958819, - "solgaleo": 0.6770149244358213, - "lunala": 0.5131376398722464, - "nihilego": 1.0282044476324006, - "buzzwole": 1.7220852203441757, - "pheromosa": 1.8563135784137654, - "xurkitree": 0.7780857338621913, - "celesteela": 0.6616882755399002, - "kartana": 1.5515141631062233, - "guzzlord": 0.805760841140441, - "necrozma": 1.4080648612802966, - "stakataka": 0.5015443653217779, - "blacephalon": 1.3002750853619345 + "articuno": 0.7804551852442176, + "zapdos": 0.6677296369050206, + "moltres": 0.5265564358131578, + "mewtwo": 0.9296176338572953, + "raikou": 1.6288758067039089, + "entei": 1.174513229326025, + "suicune": 1.4280489211944656, + "lugia": 0.804279179882828, + "ho-oh": 0.6326820965997222, + "latias": 1.1108415283543311, + "latios": 1.4451511523343306, + "kyogre": 0.4457313393227784, + "groudon": 0.41287077087756924, + "rayquaza": 0.4280188285447367, + "uxie": 1.5233881242749197, + "mesprit": 1.4775981453625415, + "azelf": 1.3960943209705456, + "dialga": 0.517606773762139, + "palkia": 0.5152418253415763, + "heatran": 0.36072344572074155, + "giratina-altered": 0.6475902811280956, + "cresselia": 0.8356097633350527, + "tornadus-incarnate": 0.7291573503240832, + "thundurus-incarnate": 0.9190395005815447, + "reshiram": 0.5541501374710944, + "zekrom": 0.6821008826700117, + "landorus-incarnate": 0.5757021550350834, + "kyurem": 0.600870947431342, + "xerneas": 0.40322772656209793, + "yveltal": 0.4395531081482137, + "zygarde-50": 0.48988316111099434, + "tapu-koko": 1.1889263179893548, + "tapu-lele": 1.405587948668774, + "tapu-bulu": 1.0493986793137358, + "tapu-fini": 0.6890173968267983, + "solgaleo": 0.6766742928350801, + "lunala": 0.5119399968736995, + "nihilego": 1.0274304228816127, + "buzzwole": 1.7256876631750084, + "pheromosa": 1.8582213213030443, + "xurkitree": 0.7788937607998243, + "celesteela": 0.6613472766818806, + "kartana": 1.5551944148094747, + "guzzlord": 0.8044365794127653, + "necrozma": 1.4094246972826112, + "stakataka": 0.5007308851223371, + "blacephalon": 1.298319415939535 }, "thievul": { - "articuno": 0.8589132328958253, - "zapdos": 0.6873167855544919, - "moltres": 0.6022217818322899, - "mewtwo": 1.213188034674998, - "raikou": 1.6397501591404624, - "entei": 1.2902086176256093, - "suicune": 1.3659689420366443, - "lugia": 1.2518767801138435, - "ho-oh": 0.8393023943206114, - "latias": 1.4228169818447691, - "latios": 1.7761932506975546, - "kyogre": 0.49430481873942156, - "groudon": 0.3577501485500951, - "rayquaza": 0.5090196701101868, - "uxie": 1.886572477069655, - "mesprit": 1.7811897464346151, - "azelf": 1.726878078626738, - "dialga": 0.6407607330588566, - "palkia": 0.5554655642094708, - "heatran": 0.4995840315025333, - "giratina-altered": 0.9919911015428228, - "cresselia": 0.9623325942152643, - "tornadus-incarnate": 0.8863081266330997, - "thundurus-incarnate": 0.9924919166387419, - "reshiram": 0.6566371983495436, - "zekrom": 0.6677520903696508, - "landorus-incarnate": 0.5275597658968577, - "kyurem": 0.6631786783994316, - "xerneas": 0.3091173549499914, - "yveltal": 0.5349619267910655, - "zygarde-50": 0.4062718729457143, - "tapu-koko": 1.0412540729863997, - "tapu-lele": 1.601125285280875, - "tapu-bulu": 0.9294111522612181, - "tapu-fini": 0.5487471878656618, - "solgaleo": 1.0907681487152772, - "lunala": 1.3299050752685888, - "nihilego": 1.0299065963269454, - "buzzwole": 1.0947638676053868, - "pheromosa": 1.3815954352062625, - "xurkitree": 0.7882200066293021, - "celesteela": 0.8216344093595684, - "kartana": 2.7348842587363773, - "guzzlord": 0.6512169267994796, - "necrozma": 1.8140488480763959, - "stakataka": 0.6198230595160092, - "blacephalon": 2.5974690346071805 + "articuno": 0.8598140640406986, + "zapdos": 0.6877476226806879, + "moltres": 0.6026032981521718, + "mewtwo": 1.2196698704849296, + "raikou": 1.6396150830792675, + "entei": 1.2908234608598925, + "suicune": 1.3661398714389992, + "lugia": 1.2561856589395002, + "ho-oh": 0.840114413547586, + "latias": 1.4282325660957027, + "latios": 1.7821202586292395, + "kyogre": 0.4945233400677155, + "groudon": 0.3576365678485305, + "rayquaza": 0.5092716242804375, + "uxie": 1.8955770514739267, + "mesprit": 1.787162354055348, + "azelf": 1.7320982656373, + "dialga": 0.6414490225511988, + "palkia": 0.5555293116593146, + "heatran": 0.4994779911556497, + "giratina-altered": 0.9952748395352425, + "cresselia": 0.9662015865163456, + "tornadus-incarnate": 0.8875828983835091, + "thundurus-incarnate": 0.9937633041291595, + "reshiram": 0.6576683263385006, + "zekrom": 0.667588930785626, + "landorus-incarnate": 0.5276254488411862, + "kyurem": 0.6640612799908873, + "xerneas": 0.308392273067234, + "yveltal": 0.5354355375367694, + "zygarde-50": 0.40611924286389733, + "tapu-koko": 1.0405862562954846, + "tapu-lele": 1.6036946443302968, + "tapu-bulu": 0.9273177777914944, + "tapu-fini": 0.5477983611607441, + "solgaleo": 1.0952498271662896, + "lunala": 1.3361026366624638, + "nihilego": 1.0293857748916522, + "buzzwole": 1.0903134545252702, + "pheromosa": 1.3776449097693702, + "xurkitree": 0.7887812045638839, + "celesteela": 0.8230145947392877, + "kartana": 2.739681908707516, + "guzzlord": 0.650214824212114, + "necrozma": 1.82296442470609, + "stakataka": 0.619705479756667, + "blacephalon": 2.6079357904635017 }, "eldegoss": { - "articuno": 0.6258027392631694, - "zapdos": 0.5894566615651137, - "moltres": 0.43507192363337, - "mewtwo": 0.7775142556610064, - "raikou": 1.765598336262256, - "entei": 1.0254751576683157, - "suicune": 2.0308689109041733, - "lugia": 0.7800716954004989, - "ho-oh": 0.5360696920735859, - "latias": 0.893042201461014, - "latios": 1.0771184636902014, - "kyogre": 0.6616272254842436, - "groudon": 0.5793437743276542, - "rayquaza": 0.3617008643226677, - "uxie": 1.4026413447287056, - "mesprit": 1.3442060548035593, - "azelf": 1.2772464171722728, - "dialga": 0.46912276508852313, - "palkia": 0.5750105397537744, - "heatran": 0.3310906837603156, - "giratina-altered": 0.5952732133097292, - "cresselia": 0.7173487834533767, - "tornadus-incarnate": 0.6183628691379129, - "thundurus-incarnate": 0.7840569369899597, - "reshiram": 0.4588923082003415, - "zekrom": 0.5954475868080134, - "landorus-incarnate": 0.6099409494064528, - "kyurem": 0.49720366253101955, - "xerneas": 0.422789423677235, - "yveltal": 0.4579511406435461, - "zygarde-50": 0.5050620983275479, - "tapu-koko": 1.3021665328706566, - "tapu-lele": 1.5004010845322608, - "tapu-bulu": 0.8624551475344602, - "tapu-fini": 1.041996054804977, - "solgaleo": 0.6140983748363869, - "lunala": 0.6196641859158243, - "nihilego": 0.8275834527441432, - "buzzwole": 0.9772303904893472, - "pheromosa": 1.2144723780322355, - "xurkitree": 0.8876055619933112, - "celesteela": 0.5983636572228115, - "kartana": 1.2255134482207073, - "guzzlord": 0.6632690434083375, - "necrozma": 1.3126175251161383, - "stakataka": 0.6962414668841448, - "blacephalon": 1.1494406898940484 + "articuno": 0.6236487750255068, + "zapdos": 0.588387770069867, + "moltres": 0.4335185410264193, + "mewtwo": 0.7769568451259632, + "raikou": 1.7666475511269943, + "entei": 1.0228024396539428, + "suicune": 2.0353952162670184, + "lugia": 0.7787114150419143, + "ho-oh": 0.5339074518090269, + "latias": 0.8919902012409888, + "latios": 1.0756128715962014, + "kyogre": 0.6631811647116949, + "groudon": 0.5807256615990082, + "rayquaza": 0.360559692364641, + "uxie": 1.402740090194716, + "mesprit": 1.3442196753659266, + "azelf": 1.277075010105408, + "dialga": 0.46816799041362744, + "palkia": 0.5753675802328422, + "heatran": 0.330045719379636, + "giratina-altered": 0.5943295404116543, + "cresselia": 0.7170308025750942, + "tornadus-incarnate": 0.6165197240311688, + "thundurus-incarnate": 0.7835574950028235, + "reshiram": 0.45762219588889747, + "zekrom": 0.5952157112894662, + "landorus-incarnate": 0.6106938087449894, + "kyurem": 0.495956869926729, + "xerneas": 0.423078949283774, + "yveltal": 0.4570881906326455, + "zygarde-50": 0.5057160526103093, + "tapu-koko": 1.3022823699625188, + "tapu-lele": 1.4996403025180243, + "tapu-bulu": 0.8614991458703858, + "tapu-fini": 1.0451305744842518, + "solgaleo": 0.6129927013138592, + "lunala": 0.6193443256597773, + "nihilego": 0.82537230720918, + "buzzwole": 0.9743986902458432, + "pheromosa": 1.2110418398870584, + "xurkitree": 0.8890123002457972, + "celesteela": 0.5974289995546936, + "kartana": 1.2250657784902694, + "guzzlord": 0.6622839480069844, + "necrozma": 1.3130118342478898, + "stakataka": 0.6959548399143248, + "blacephalon": 1.145885622819859 }, "dubwool": { - "articuno": 0.8368118091141699, - "zapdos": 0.7153379952098061, - "moltres": 0.5125285414273388, - "mewtwo": 0.7943412395429529, - "raikou": 1.7602724344784557, - "entei": 1.1752508279715252, - "suicune": 1.458917308724212, - "lugia": 0.9342648428759379, - "ho-oh": 0.743308439328938, - "latias": 1.0684086783288373, - "latios": 1.2930853267996567, - "kyogre": 0.5141668627380318, - "groudon": 0.3456518600137384, - "rayquaza": 0.46035503482774304, - "uxie": 1.3645843121292354, - "mesprit": 1.2648384753744213, - "azelf": 1.208611644329408, - "dialga": 0.6421275444520256, - "palkia": 0.5489043948664747, - "heatran": 0.4477043334979296, - "giratina-altered": 0.5706010947096738, - "cresselia": 0.7308012849282322, - "tornadus-incarnate": 0.7916173211859379, - "thundurus-incarnate": 0.9388517273645851, - "reshiram": 0.6110350739222538, - "zekrom": 0.656572373625211, - "landorus-incarnate": 0.5373495222741052, - "kyurem": 0.6488690671583475, - "xerneas": 0.399110299940896, - "yveltal": 0.552717581909552, - "zygarde-50": 0.4257903148057153, - "tapu-koko": 1.182918198837011, - "tapu-lele": 1.649605287291426, - "tapu-bulu": 0.9513707710369542, - "tapu-fini": 0.7338269562169031, - "solgaleo": 0.6117512196297767, - "lunala": 0.5658136796657696, - "nihilego": 0.9748261987573561, - "buzzwole": 0.9781109880400136, - "pheromosa": 1.4443068400372168, - "xurkitree": 0.7899400011344591, - "celesteela": 0.6731741482945142, - "kartana": 1.242324785038394, - "guzzlord": 0.8260332438555167, - "necrozma": 1.2048213489271942, - "stakataka": 0.728924360823453, - "blacephalon": 1.1071753493600345 + "articuno": 0.8369904310733265, + "zapdos": 0.7155516428150286, + "moltres": 0.51147751342201, + "mewtwo": 0.794276577057986, + "raikou": 1.7617254270899572, + "entei": 1.1739522941739182, + "suicune": 1.4607080410679376, + "lugia": 0.9338437559552074, + "ho-oh": 0.7423735836542125, + "latias": 1.068344255417089, + "latios": 1.292265864760345, + "kyogre": 0.5150615704727063, + "groudon": 0.34564273384852323, + "rayquaza": 0.46020107460857695, + "uxie": 1.365384470386431, + "mesprit": 1.2644914973617123, + "azelf": 1.2084142774314977, + "dialga": 0.6426456166830337, + "palkia": 0.5494856881305216, + "heatran": 0.44751272111030305, + "giratina-altered": 0.570182765357512, + "cresselia": 0.730931778583693, + "tornadus-incarnate": 0.7912022316066409, + "thundurus-incarnate": 0.9387570209877221, + "reshiram": 0.6113544411229227, + "zekrom": 0.6567385808039237, + "landorus-incarnate": 0.5373170559865678, + "kyurem": 0.6497968469942152, + "xerneas": 0.3992710226913917, + "yveltal": 0.5529631877627581, + "zygarde-50": 0.42599163493934983, + "tapu-koko": 1.18329899583529, + "tapu-lele": 1.6502425854322245, + "tapu-bulu": 0.9506472948621243, + "tapu-fini": 0.7347276268556207, + "solgaleo": 0.6113518776421685, + "lunala": 0.5658385768239338, + "nihilego": 0.9750487087355029, + "buzzwole": 0.9760157760826773, + "pheromosa": 1.4428275680127154, + "xurkitree": 0.7904673363380801, + "celesteela": 0.6732062801213556, + "kartana": 1.2410440656083932, + "guzzlord": 0.8270083547649765, + "necrozma": 1.2046445291227181, + "stakataka": 0.7295493160402043, + "blacephalon": 1.103326801347151 }, "drednaw": { - "articuno": 1.9383576800224072, - "zapdos": 0.9582951330409204, - "moltres": 1.4770549792392633, - "mewtwo": 0.9400518805454121, - "raikou": 1.7566879231222639, - "entei": 1.9580684132863122, - "suicune": 1.5101112128307261, - "lugia": 1.3477550495609483, - "ho-oh": 2.0211938413770305, - "latias": 1.2257789956497898, - "latios": 1.4843616715894257, - "kyogre": 0.5070548157238397, - "groudon": 0.43033812938249716, - "rayquaza": 0.6767942884202153, - "uxie": 1.5370914793338215, - "mesprit": 1.5044830505785205, - "azelf": 1.4157014755812338, - "dialga": 0.5361857016311026, - "palkia": 0.5831407166566718, - "heatran": 0.8625908191843221, - "giratina-altered": 0.754976555935278, - "cresselia": 0.8541733356580179, - "tornadus-incarnate": 1.3547147608346064, - "thundurus-incarnate": 1.2714802137941676, - "reshiram": 0.9537001474650193, - "zekrom": 0.6574674595820855, - "landorus-incarnate": 0.6958662684705883, - "kyurem": 0.9139660307342705, - "xerneas": 0.4427265445656461, - "yveltal": 0.8094660100897414, - "zygarde-50": 0.3921258927466099, - "tapu-koko": 1.1250353425025024, - "tapu-lele": 1.9578613301462384, - "tapu-bulu": 0.916462438525087, - "tapu-fini": 0.7369470889723209, - "solgaleo": 0.7819094602060953, - "lunala": 0.6669322110870276, - "nihilego": 1.8097267248027884, - "buzzwole": 1.027828424878105, - "pheromosa": 1.5708498097103276, - "xurkitree": 0.702556232509191, - "celesteela": 0.7967289213058109, - "kartana": 0.9502051873295576, - "guzzlord": 0.8962879041266583, - "necrozma": 1.3224165054811863, - "stakataka": 0.7683130324318317, - "blacephalon": 2.630362711212025 + "articuno": 1.9476604537059021, + "zapdos": 0.9595820092413345, + "moltres": 1.4855617118232436, + "mewtwo": 0.9424532574877746, + "raikou": 1.75710467048872, + "entei": 1.9675294606122464, + "suicune": 1.5117483109357617, + "lugia": 1.3514231730775643, + "ho-oh": 2.0324749287810144, + "latias": 1.2283092269281246, + "latios": 1.486435159695409, + "kyogre": 0.5073818863399607, + "groudon": 0.4304170153018456, + "rayquaza": 0.6785148481501452, + "uxie": 1.5405213593054867, + "mesprit": 1.5084856101077166, + "azelf": 1.419546938711532, + "dialga": 0.5363675452430885, + "palkia": 0.583809728397945, + "heatran": 0.8659757295751174, + "giratina-altered": 0.7560733699729688, + "cresselia": 0.8564909125484956, + "tornadus-incarnate": 1.3605765013042634, + "thundurus-incarnate": 1.2719133215013625, + "reshiram": 0.9571792214183888, + "zekrom": 0.6571657590528377, + "landorus-incarnate": 0.6963079534012719, + "kyurem": 0.9171249651801361, + "xerneas": 0.44333644730763805, + "yveltal": 0.8119997356560583, + "zygarde-50": 0.3919718868635762, + "tapu-koko": 1.1255755489772996, + "tapu-lele": 1.964289234960092, + "tapu-bulu": 0.9141789545531607, + "tapu-fini": 0.7377389335636052, + "solgaleo": 0.7830870029151621, + "lunala": 0.668135399642303, + "nihilego": 1.817169312533917, + "buzzwole": 1.0270614782145322, + "pheromosa": 1.5723279730463535, + "xurkitree": 0.701258956578154, + "celesteela": 0.7977460340256657, + "kartana": 0.9434497311270069, + "guzzlord": 0.8980215755583107, + "necrozma": 1.3243803061631283, + "stakataka": 0.7693955154392678, + "blacephalon": 2.6444182308530966 }, "boltund": { - "articuno": 0.9263434254170715, - "zapdos": 0.7313976241590278, - "moltres": 0.7214754441040976, - "mewtwo": 0.8757915268866181, - "raikou": 1.622903352684795, - "entei": 1.1845027622876378, - "suicune": 1.6673090421880117, - "lugia": 1.1132716982354447, - "ho-oh": 0.795395049075398, - "latias": 1.1973201321164468, - "latios": 1.5028670288870545, - "kyogre": 0.4986767156911104, - "groudon": 0.251449585480517, - "rayquaza": 0.43476217054130384, - "uxie": 1.4647132210095477, - "mesprit": 1.399609023346071, - "azelf": 1.329671472146261, - "dialga": 0.5609238433840831, - "palkia": 0.4824264674257924, - "heatran": 0.4619831890115037, - "giratina-altered": 0.8031987655981339, - "cresselia": 0.8184855490812163, - "tornadus-incarnate": 1.0001212713330458, - "thundurus-incarnate": 0.9002633581085091, - "reshiram": 0.5326467401975608, - "zekrom": 0.6015511662779698, - "landorus-incarnate": 0.39826248254382224, - "kyurem": 0.5258078822794184, - "xerneas": 0.3584621314339703, - "yveltal": 0.6622504137750438, - "zygarde-50": 0.2957974160725585, - "tapu-koko": 1.0251992495534987, - "tapu-lele": 1.4214430965359766, - "tapu-bulu": 0.7874460022779357, - "tapu-fini": 0.8084519551370413, - "solgaleo": 0.8449101409772269, - "lunala": 0.9904131680714199, - "nihilego": 0.9648778746802268, - "buzzwole": 1.1888463340486488, - "pheromosa": 1.3552013219635861, - "xurkitree": 0.7477275126474427, - "celesteela": 0.9027000329412874, - "kartana": 1.299181665356115, - "guzzlord": 0.5872216668598824, - "necrozma": 1.3502638353906133, - "stakataka": 0.6227841423760846, - "blacephalon": 1.8349493527095135 + "articuno": 0.9263874317256138, + "zapdos": 0.7323929863544, + "moltres": 0.7219165215452331, + "mewtwo": 0.8754588174985581, + "raikou": 1.6219878315625729, + "entei": 1.1832559927120365, + "suicune": 1.6666402012498862, + "lugia": 1.1146004780999181, + "ho-oh": 0.7953536752050507, + "latias": 1.1966931270428758, + "latios": 1.5020677178791544, + "kyogre": 0.49871294348067174, + "groudon": 0.25035762635351644, + "rayquaza": 0.4344925099563056, + "uxie": 1.4641470075980185, + "mesprit": 1.3988927789389916, + "azelf": 1.3290892589126506, + "dialga": 0.560665199281152, + "palkia": 0.4819227075996841, + "heatran": 0.46196914916946497, + "giratina-altered": 0.8030443232014194, + "cresselia": 0.8183281998014212, + "tornadus-incarnate": 1.0013923844557284, + "thundurus-incarnate": 0.9004147748446995, + "reshiram": 0.5318531576123993, + "zekrom": 0.6009408377915251, + "landorus-incarnate": 0.39665457342779387, + "kyurem": 0.5247302307716757, + "xerneas": 0.35788432828023653, + "yveltal": 0.6623060353333707, + "zygarde-50": 0.2944939464046481, + "tapu-koko": 1.0245143541709365, + "tapu-lele": 1.4196459641069952, + "tapu-bulu": 0.7852955329318071, + "tapu-fini": 0.8080598020055408, + "solgaleo": 0.8460703593339417, + "lunala": 0.99134656081172, + "nihilego": 0.9633163146203629, + "buzzwole": 1.1868541488424058, + "pheromosa": 1.3523635668192207, + "xurkitree": 0.7475445329996346, + "celesteela": 0.9034616746932208, + "kartana": 1.2966946629806473, + "guzzlord": 0.5851747347728786, + "necrozma": 1.3501988592954648, + "stakataka": 0.6222627766564777, + "blacephalon": 1.835909556531396 }, "carkol": { - "articuno": 1.3735408695994433, - "zapdos": 0.8127244059021623, - "moltres": 1.1627943794332698, - "mewtwo": 0.7830231752230709, - "raikou": 1.6338018578603148, - "entei": 1.5701170229653445, - "suicune": 1.0184988558187773, - "lugia": 0.9555481306519196, - "ho-oh": 1.4135657525748644, - "latias": 0.7077609003341414, - "latios": 1.121620365674154, - "kyogre": 0.2615645718647183, - "groudon": 0.2674940933568407, - "rayquaza": 0.5209228800565889, - "uxie": 1.2724871927504395, - "mesprit": 1.2652504116305592, - "azelf": 1.2240217084705993, - "dialga": 0.6049679017283279, - "palkia": 0.33296377171353664, - "heatran": 0.5630766576720141, - "giratina-altered": 0.6016659690601457, - "cresselia": 0.7012488349270323, - "tornadus-incarnate": 1.073065026273228, - "thundurus-incarnate": 1.0778374568759803, - "reshiram": 0.7223307443849152, - "zekrom": 0.5975457506962603, - "landorus-incarnate": 0.37605773117970187, - "kyurem": 0.7137541006240369, - "xerneas": 0.4047915069284842, - "yveltal": 0.619621703916994, - "zygarde-50": 0.2448842119854151, - "tapu-koko": 1.1753782301242426, - "tapu-lele": 1.4916966503868316, - "tapu-bulu": 1.25892611752399, - "tapu-fini": 0.41594030626296863, - "solgaleo": 0.9801986241910536, - "lunala": 0.5864473628166074, - "nihilego": 1.0246615878967078, - "buzzwole": 1.6485020629572982, - "pheromosa": 1.8395260290206523, - "xurkitree": 0.7390471002708845, - "celesteela": 0.8011432403586141, - "kartana": 3.754528478295546, - "guzzlord": 0.6675208999448171, - "necrozma": 1.1181473648267197, - "stakataka": 0.6177229136380387, - "blacephalon": 2.0271987795901962 + "articuno": 1.3787639756520913, + "zapdos": 0.8141237863256084, + "moltres": 1.1693446791951188, + "mewtwo": 0.7829252377522853, + "raikou": 1.6340499084993416, + "entei": 1.5750138016302793, + "suicune": 1.0126344350668255, + "lugia": 0.9547827186173156, + "ho-oh": 1.419057790917412, + "latias": 0.7054436940338153, + "latios": 1.119280853368894, + "kyogre": 0.26023360948651497, + "groudon": 0.2665113790750799, + "rayquaza": 0.5212810723798106, + "uxie": 1.2718992077729965, + "mesprit": 1.2656505677208876, + "azelf": 1.2245515501400188, + "dialga": 0.6048448023505122, + "palkia": 0.33128687124380474, + "heatran": 0.5627756501992531, + "giratina-altered": 0.6009061972750701, + "cresselia": 0.7013830434836832, + "tornadus-incarnate": 1.0764131501450844, + "thundurus-incarnate": 1.0788581888385536, + "reshiram": 0.7231880771344297, + "zekrom": 0.5972238992354476, + "landorus-incarnate": 0.3745396524872464, + "kyurem": 0.7148101191414349, + "xerneas": 0.4053995513765638, + "yveltal": 0.6203399565094045, + "zygarde-50": 0.24358988226686054, + "tapu-koko": 1.17630919278505, + "tapu-lele": 1.4917553169893871, + "tapu-bulu": 1.2607977564743291, + "tapu-fini": 0.4134687747394906, + "solgaleo": 0.9822574381555054, + "lunala": 0.5863442536059246, + "nihilego": 1.0226020931435138, + "buzzwole": 1.651659936056763, + "pheromosa": 1.842111571415936, + "xurkitree": 0.7388562471294547, + "celesteela": 0.8013751184384152, + "kartana": 3.769547185831065, + "guzzlord": 0.6661046371294295, + "necrozma": 1.116788380540242, + "stakataka": 0.6175608346326811, + "blacephalon": 2.0341741280751657 }, "coalossal": { - "articuno": 1.4434603101531844, - "zapdos": 0.9294243638348452, - "moltres": 1.2474369325852261, - "mewtwo": 0.8564553815255911, - "raikou": 1.7401738431691132, - "entei": 1.7767201871550864, - "suicune": 1.2148780081807844, - "lugia": 1.0640641086031406, - "ho-oh": 1.2157268663620409, - "latias": 0.7927389981583002, - "latios": 1.1890483225498745, - "kyogre": 0.3049040986710309, - "groudon": 0.351314267602155, - "rayquaza": 0.5980430374830081, - "uxie": 1.4071179244466916, - "mesprit": 1.385007168689202, - "azelf": 1.3393061900639682, - "dialga": 0.6706912435405974, - "palkia": 0.3988873148109663, - "heatran": 0.6339572684456207, - "giratina-altered": 0.6889653273316452, - "cresselia": 0.763184201417556, - "tornadus-incarnate": 1.1173097306381907, - "thundurus-incarnate": 1.2123300014256286, - "reshiram": 0.7711515301201441, - "zekrom": 0.6992530362279022, - "landorus-incarnate": 0.49547211007758835, - "kyurem": 0.8137057358815961, - "xerneas": 0.43958812100195854, - "yveltal": 0.7126805770181093, - "zygarde-50": 0.31366281672434276, - "tapu-koko": 1.3078551893064163, - "tapu-lele": 1.5490868960296629, - "tapu-bulu": 1.3959401798198956, - "tapu-fini": 0.5059465985124467, - "solgaleo": 1.0728272373699552, - "lunala": 0.6292158991522021, - "nihilego": 1.0099975221271325, - "buzzwole": 1.8410127170902837, - "pheromosa": 2.0166157304371617, - "xurkitree": 0.8261678941534372, - "celesteela": 0.9604288510684882, - "kartana": 4.205772513475595, - "guzzlord": 0.7620872401402903, - "necrozma": 1.2529727863395188, - "stakataka": 0.7560613537286232, - "blacephalon": 1.8928482270242617 + "articuno": 1.4495156725384404, + "zapdos": 0.9321719640867803, + "moltres": 1.253585774295637, + "mewtwo": 0.8577192711687582, + "raikou": 1.7427055923449108, + "entei": 1.7838214671911379, + "suicune": 1.2110193405497123, + "lugia": 1.064910854946859, + "ho-oh": 1.219939556818221, + "latias": 0.7912305369144609, + "latios": 1.1882392938264015, + "kyogre": 0.3037578389406788, + "groudon": 0.35109267513412423, + "rayquaza": 0.5991935669488301, + "uxie": 1.408826413614336, + "mesprit": 1.3875037264656622, + "azelf": 1.3418468249179512, + "dialga": 0.6714980650467292, + "palkia": 0.3975751322451868, + "heatran": 0.6348870601940078, + "giratina-altered": 0.6892073222797843, + "cresselia": 0.764469436334567, + "tornadus-incarnate": 1.1211372166852995, + "thundurus-incarnate": 1.2150731451207886, + "reshiram": 0.7729693541622247, + "zekrom": 0.7000295730133921, + "landorus-incarnate": 0.49502635936470996, + "kyurem": 0.8156502111824391, + "xerneas": 0.4407742859112877, + "yveltal": 0.714496666225922, + "zygarde-50": 0.3128294109893346, + "tapu-koko": 1.3109424796582227, + "tapu-lele": 1.5510205325083581, + "tapu-bulu": 1.3994073068470243, + "tapu-fini": 0.5040027039249095, + "solgaleo": 1.0761333798460366, + "lunala": 0.6299775013791669, + "nihilego": 1.0093927922834725, + "buzzwole": 1.8473251242066482, + "pheromosa": 2.021860555316706, + "xurkitree": 0.8273329738987394, + "celesteela": 0.9621064208497307, + "kartana": 4.2246385866560825, + "guzzlord": 0.7618659949618641, + "necrozma": 1.2538911790092746, + "stakataka": 0.7578742888407528, + "blacephalon": 1.8992692875838377 }, "sandaconda": { - "articuno": 0.6134997175131831, - "zapdos": 0.7030433051749869, - "moltres": 0.5020387744691595, - "mewtwo": 0.7850332452766184, - "raikou": 2.017971004299612, - "entei": 1.490508113569534, - "suicune": 1.189148152924845, - "lugia": 0.8158398371954898, - "ho-oh": 0.7023344145957444, - "latias": 1.079734031708158, - "latios": 1.5065342509073845, - "kyogre": 0.3558332310362047, - "groudon": 0.36137595551429325, - "rayquaza": 0.4931654432821675, - "uxie": 1.4254412761607451, - "mesprit": 1.3632699175232346, - "azelf": 1.3106183190476108, - "dialga": 0.7808630787301202, - "palkia": 0.5112831449096786, - "heatran": 0.8105546310232163, - "giratina-altered": 0.7740169633942077, - "cresselia": 0.7690937714312105, - "tornadus-incarnate": 0.6671100808184525, - "thundurus-incarnate": 0.9409362558111234, - "reshiram": 0.649987693175391, - "zekrom": 0.8732249528604337, - "landorus-incarnate": 0.49842228535043753, - "kyurem": 0.5540679583323536, - "xerneas": 0.34171294027658666, - "yveltal": 0.49526665952603977, - "zygarde-50": 0.4645100869885359, - "tapu-koko": 1.626018557439745, - "tapu-lele": 1.4582451083952215, - "tapu-bulu": 0.8626742051194312, - "tapu-fini": 0.5058092035931664, - "solgaleo": 0.8914945236093104, - "lunala": 0.5394075549877126, - "nihilego": 1.2870041023112453, - "buzzwole": 1.0206825202993715, - "pheromosa": 1.304683873573893, - "xurkitree": 1.0263703738041776, - "celesteela": 0.6045247948001906, - "kartana": 1.4599762985686577, - "guzzlord": 0.9170782509481703, - "necrozma": 1.397533991147119, - "stakataka": 1.2188676736130093, - "blacephalon": 1.5895412920389065 + "articuno": 0.6109463541350129, + "zapdos": 0.7039546313788977, + "moltres": 0.5012126909495561, + "mewtwo": 0.7847156382315907, + "raikou": 2.0244648554107543, + "entei": 1.4922613651480765, + "suicune": 1.1871183033168136, + "lugia": 0.8145328735715943, + "ho-oh": 0.7021182632155739, + "latias": 1.0796618284102613, + "latios": 1.507525440578851, + "kyogre": 0.3553142944840671, + "groudon": 0.36161494771810704, + "rayquaza": 0.49315252953611033, + "uxie": 1.4241782835170955, + "mesprit": 1.3619276706838515, + "azelf": 1.309855078892253, + "dialga": 0.7821268095771234, + "palkia": 0.511386700191842, + "heatran": 0.8119676026233869, + "giratina-altered": 0.7751340133397571, + "cresselia": 0.7687269688258104, + "tornadus-incarnate": 0.6656781882828235, + "thundurus-incarnate": 0.9421223306294728, + "reshiram": 0.6506522479678744, + "zekrom": 0.8769184232740068, + "landorus-incarnate": 0.4982002385520393, + "kyurem": 0.5530180247352912, + "xerneas": 0.3410709049010403, + "yveltal": 0.49490711663652487, + "zygarde-50": 0.4651186163236672, + "tapu-koko": 1.63027766598749, + "tapu-lele": 1.456989470689479, + "tapu-bulu": 0.8609999077592698, + "tapu-fini": 0.5037884462343617, + "solgaleo": 0.8928434160525913, + "lunala": 0.5389204623569225, + "nihilego": 1.2896067943016813, + "buzzwole": 1.0201148034191332, + "pheromosa": 1.303731447788429, + "xurkitree": 1.0299645363810375, + "celesteela": 0.6035780795837535, + "kartana": 1.4578118176432961, + "guzzlord": 0.919182580668739, + "necrozma": 1.3994008289599156, + "stakataka": 1.2221744764151812, + "blacephalon": 1.5905628504201106 }, "cramorant": { - "articuno": 0.8042406147843926, - "zapdos": 0.49958058279839324, - "moltres": 0.7580657158839254, - "mewtwo": 0.8550286975457803, - "raikou": 1.2469969144072601, - "entei": 1.4734127443700693, - "suicune": 1.2475610275008207, - "lugia": 1.0128574271523973, - "ho-oh": 0.9783786955772559, - "latias": 1.2154286383368218, - "latios": 1.4680066093540858, - "kyogre": 0.44160716363146624, - "groudon": 0.4817273891627789, - "rayquaza": 0.3872275966122527, - "uxie": 1.456253205898879, - "mesprit": 1.393931600161612, - "azelf": 1.3113007637011371, - "dialga": 0.524474026857496, - "palkia": 0.4868862771372978, - "heatran": 0.6632293126553864, - "giratina-altered": 0.7354569927241195, - "cresselia": 0.7831162105984449, - "tornadus-incarnate": 0.8238451291153546, - "thundurus-incarnate": 0.6649513022255029, - "reshiram": 0.6061017759494285, - "zekrom": 0.3918406445524938, - "landorus-incarnate": 0.6747325306631853, - "kyurem": 0.5436035894005384, - "xerneas": 0.37100349934308696, - "yveltal": 0.49993662245344417, - "zygarde-50": 0.44259530982032025, - "tapu-koko": 0.7985688913014861, - "tapu-lele": 1.4931020835934596, - "tapu-bulu": 0.7853977642939458, - "tapu-fini": 0.6084816489198476, - "solgaleo": 0.7809364484321284, - "lunala": 0.9400581550280118, - "nihilego": 1.3271695893615478, - "buzzwole": 1.0183358380062055, - "pheromosa": 1.4053927778003668, - "xurkitree": 0.5367794555830934, - "celesteela": 0.8015420887947189, - "kartana": 1.0884232566203877, - "guzzlord": 0.6023912035585643, - "necrozma": 1.1539165339675077, - "stakataka": 0.5371406693300547, - "blacephalon": 2.0366359359304633 + "articuno": 0.8036237555430195, + "zapdos": 0.4973152012120209, + "moltres": 0.7588730626555051, + "mewtwo": 0.8544473834448998, + "raikou": 1.238044534567594, + "entei": 1.4732650270959107, + "suicune": 1.246151194946317, + "lugia": 1.0126970860165887, + "ho-oh": 0.9791388497320539, + "latias": 1.2152280734041785, + "latios": 1.4677404518289794, + "kyogre": 0.4406144074606517, + "groudon": 0.48283859572210275, + "rayquaza": 0.38625754925667805, + "uxie": 1.4560159874145686, + "mesprit": 1.3935895483580127, + "azelf": 1.3104968654663347, + "dialga": 0.5235910797626047, + "palkia": 0.4860076671259726, + "heatran": 0.6641341934604144, + "giratina-altered": 0.7344934885198824, + "cresselia": 0.7826629218711596, + "tornadus-incarnate": 0.8237094055497494, + "thundurus-incarnate": 0.6615284019412547, + "reshiram": 0.6064114023015496, + "zekrom": 0.38829085776016514, + "landorus-incarnate": 0.6756889707684182, + "kyurem": 0.5427857531302432, + "xerneas": 0.37052825813580587, + "yveltal": 0.49897100330703414, + "zygarde-50": 0.4427236081700132, + "tapu-koko": 0.7941350133027754, + "tapu-lele": 1.4910734733696325, + "tapu-bulu": 0.7831972887813746, + "tapu-fini": 0.6081805642265001, + "solgaleo": 0.7809973536715472, + "lunala": 0.9412136670043423, + "nihilego": 1.3259294134075037, + "buzzwole": 1.0169634333699173, + "pheromosa": 1.4040063115393908, + "xurkitree": 0.5335466503489228, + "celesteela": 0.8017264634013094, + "kartana": 1.0845102021455517, + "guzzlord": 0.6005206418918874, + "necrozma": 1.1511520497087449, + "stakataka": 0.5356539783393877, + "blacephalon": 2.0400938343916355 }, "barraskewda": { - "articuno": 0.7991321051954361, - "zapdos": 0.5175579039039804, - "moltres": 0.7265939806634871, - "mewtwo": 0.8647279128439518, - "raikou": 1.3194318208005658, - "entei": 1.477561283781026, - "suicune": 1.246775848411052, - "lugia": 0.9724174713546032, - "ho-oh": 0.9851777208919257, - "latias": 1.2079816422280345, - "latios": 1.4235492463875623, - "kyogre": 0.43350471790835093, - "groudon": 0.3770016961642762, - "rayquaza": 0.4684263802736529, - "uxie": 1.3384481285582837, - "mesprit": 1.277776352470116, - "azelf": 1.214363436986656, - "dialga": 0.5416635376419952, - "palkia": 0.6041812122910517, - "heatran": 0.6359912706046823, - "giratina-altered": 0.7659015844965535, - "cresselia": 0.7867322075764253, - "tornadus-incarnate": 0.7650570761058554, - "thundurus-incarnate": 0.6539037231264389, - "reshiram": 0.6593170888980563, - "zekrom": 0.5945684696055729, - "landorus-incarnate": 0.592582646524002, - "kyurem": 0.6339835153911014, - "xerneas": 0.3282121227711102, - "yveltal": 0.4751537561434707, - "zygarde-50": 0.41864710973470365, - "tapu-koko": 0.83417490061405, - "tapu-lele": 1.413026176431484, - "tapu-bulu": 0.6712095315858029, - "tapu-fini": 0.5571875749578203, - "solgaleo": 0.8131288582783565, - "lunala": 0.895245417775367, - "nihilego": 1.2332690259969943, - "buzzwole": 0.9254085292747218, - "pheromosa": 1.305101158226678, - "xurkitree": 0.5472753757698379, - "celesteela": 0.7081605949096127, - "kartana": 0.9565975339411834, - "guzzlord": 0.7947496370777225, - "necrozma": 1.1874709702286657, - "stakataka": 0.6070903342129457, - "blacephalon": 1.96107407874434 + "articuno": 0.7991308144095361, + "zapdos": 0.5160659537414181, + "moltres": 0.7275116538962324, + "mewtwo": 0.864089488486072, + "raikou": 1.3139403298908479, + "entei": 1.4786004298955893, + "suicune": 1.245748912884732, + "lugia": 0.9715735797024709, + "ho-oh": 0.9868777384559175, + "latias": 1.2081852111680298, + "latios": 1.4230226623325097, + "kyogre": 0.4329265770677372, + "groudon": 0.3768116226595245, + "rayquaza": 0.46789727345296295, + "uxie": 1.3365521900995283, + "mesprit": 1.2757860583715206, + "azelf": 1.2127908113191372, + "dialga": 0.5413703334779578, + "palkia": 0.604376947411265, + "heatran": 0.6369089095366653, + "giratina-altered": 0.7659754530321208, + "cresselia": 0.7861845613461591, + "tornadus-incarnate": 0.7646873428460346, + "thundurus-incarnate": 0.6513888297012326, + "reshiram": 0.6599780029287441, + "zekrom": 0.5925732333133675, + "landorus-incarnate": 0.5924514151894056, + "kyurem": 0.6338441797677705, + "xerneas": 0.3270870281600951, + "yveltal": 0.47435193683147536, + "zygarde-50": 0.41841077647356006, + "tapu-koko": 0.83000521255797, + "tapu-lele": 1.4097333477402856, + "tapu-bulu": 0.6673302505173959, + "tapu-fini": 0.55604478709697, + "solgaleo": 0.8136771978433183, + "lunala": 0.8948698811290623, + "nihilego": 1.232531683213895, + "buzzwole": 0.9227537164880597, + "pheromosa": 1.3023304395962543, + "xurkitree": 0.5446318169759192, + "celesteela": 0.7083072303116127, + "kartana": 0.9500785029620709, + "guzzlord": 0.7937686086788447, + "necrozma": 1.1851456791523054, + "stakataka": 0.6063274847782846, + "blacephalon": 1.9656305262254683 }, "toxtricity-amped": { - "articuno": 1.0435954657200779, - "zapdos": 0.7842877841158005, - "moltres": 0.8291469574027979, - "mewtwo": 0.7300951465108969, - "raikou": 1.5907719957042916, - "entei": 1.3098126798775036, - "suicune": 1.819940299357567, - "lugia": 1.1389898089188637, - "ho-oh": 0.8660241079718084, - "latias": 0.8422999095578081, - "latios": 1.073064854582808, - "kyogre": 0.570886439142188, - "groudon": 0.2353654949020096, - "rayquaza": 0.47152547695076674, - "uxie": 1.20994125925217, - "mesprit": 1.212246455279815, - "azelf": 1.2031806937447533, - "dialga": 0.5479594584078606, - "palkia": 0.5190444086548605, - "heatran": 0.5106434386372515, - "giratina-altered": 0.5773087969394606, - "cresselia": 0.6670108338672959, - "tornadus-incarnate": 1.1393531373067571, - "thundurus-incarnate": 1.0163613108594127, - "reshiram": 0.5212117750651254, - "zekrom": 0.6637419428832858, - "landorus-incarnate": 0.35376969756790067, - "kyurem": 0.5586490451964883, - "xerneas": 0.44250291950534915, - "yveltal": 0.7569676651269934, - "zygarde-50": 0.25546714288889305, - "tapu-koko": 1.23942123861213, - "tapu-lele": 1.334794483219898, - "tapu-bulu": 1.037412288257855, - "tapu-fini": 0.9463942308000952, - "solgaleo": 0.7565015864114998, - "lunala": 0.6009032331758727, - "nihilego": 0.9531518778366334, - "buzzwole": 1.456834050040044, - "pheromosa": 1.568975502815674, - "xurkitree": 0.794794832028646, - "celesteela": 0.8855258734069835, - "kartana": 1.5004576964381653, - "guzzlord": 0.6667391007751211, - "necrozma": 1.1581830030929825, - "stakataka": 0.6958582384359849, - "blacephalon": 1.388073782441002 + "articuno": 1.044372417022006, + "zapdos": 0.7857451007547206, + "moltres": 0.8303896453378894, + "mewtwo": 0.7276887129530469, + "raikou": 1.590123519079866, + "entei": 1.3097240302068158, + "suicune": 1.8194620240860435, + "lugia": 1.1389483129180924, + "ho-oh": 0.8659063278855592, + "latias": 0.8392808997214596, + "latios": 1.0697559352221757, + "kyogre": 0.5711936036519898, + "groudon": 0.2341434400179082, + "rayquaza": 0.4715864670062432, + "uxie": 1.2066093976978394, + "mesprit": 1.2098898889522016, + "azelf": 1.20096866234827, + "dialga": 0.5476813209895744, + "palkia": 0.5187868646065403, + "heatran": 0.5106938255051395, + "giratina-altered": 0.5758560485876989, + "cresselia": 0.6651753740704796, + "tornadus-incarnate": 1.1415210278453412, + "thundurus-incarnate": 1.0175543080480889, + "reshiram": 0.5203584218250689, + "zekrom": 0.6635477364490883, + "landorus-incarnate": 0.35180539537935457, + "kyurem": 0.5578591537873755, + "xerneas": 0.4432836397431415, + "yveltal": 0.7579049767407358, + "zygarde-50": 0.2539584036899837, + "tapu-koko": 1.2405245153797066, + "tapu-lele": 1.3307226996561632, + "tapu-bulu": 1.0383949993884627, + "tapu-fini": 0.947677486332989, + "solgaleo": 0.7561073574576145, + "lunala": 0.5999790183122156, + "nihilego": 0.9518738194125429, + "buzzwole": 1.4601713516477939, + "pheromosa": 1.570297517665213, + "xurkitree": 0.7952930410990278, + "celesteela": 0.8854655656833843, + "kartana": 1.5023231031972035, + "guzzlord": 0.6647470595612892, + "necrozma": 1.1554519882876337, + "stakataka": 0.695647303601787, + "blacephalon": 1.3853023599844136 }, "centiskorch": { - "articuno": 1.088941544959138, - "zapdos": 0.679978583070393, - "moltres": 0.550627203685656, - "mewtwo": 0.8530218355187026, - "raikou": 1.7499412221580108, - "entei": 1.3903850363171235, - "suicune": 1.1958827057723864, - "lugia": 0.8424146864107644, - "ho-oh": 0.6943009684783572, - "latias": 0.9289830213367412, - "latios": 1.2613192956243362, - "kyogre": 0.40327921525211513, - "groudon": 0.3957318490608025, - "rayquaza": 0.4071344029653884, - "uxie": 1.388517158213123, - "mesprit": 1.3439723117184572, - "azelf": 1.302449609651838, - "dialga": 0.696338028647185, - "palkia": 0.4400907116918299, - "heatran": 0.7968419168293721, - "giratina-altered": 0.5725098453936077, - "cresselia": 0.7564412953798567, - "tornadus-incarnate": 0.8062643304120362, - "thundurus-incarnate": 0.9544057964258381, - "reshiram": 0.6383901539607759, - "zekrom": 0.7271853413509533, - "landorus-incarnate": 0.500033572642086, - "kyurem": 0.6598566590582088, - "xerneas": 0.44859545530001255, - "yveltal": 0.5466918553126862, - "zygarde-50": 0.38991156194023546, - "tapu-koko": 1.2894379347029106, - "tapu-lele": 1.5773768244790076, - "tapu-bulu": 1.5303827460637973, - "tapu-fini": 0.6325069944697672, - "solgaleo": 1.0960020284929577, - "lunala": 0.6208108970502588, - "nihilego": 1.1102917760945004, - "buzzwole": 1.997229930278335, - "pheromosa": 2.086692016192446, - "xurkitree": 0.8735040800868271, - "celesteela": 1.0872716995015823, - "kartana": 4.55948764291769, - "guzzlord": 0.7059325940608902, - "necrozma": 1.1645355605804677, - "stakataka": 0.824482474555041, - "blacephalon": 1.5277969934214355 + "articuno": 1.0911649594760426, + "zapdos": 0.6796514269033468, + "moltres": 0.5504628823720573, + "mewtwo": 0.8543576298228774, + "raikou": 1.752845221698975, + "entei": 1.392437567271944, + "suicune": 1.1944958788350704, + "lugia": 0.8413064712547277, + "ho-oh": 0.6935767817022445, + "latias": 0.9282528806999855, + "latios": 1.2615306400250703, + "kyogre": 0.4029249000774707, + "groudon": 0.3962984174105749, + "rayquaza": 0.40650985166778886, + "uxie": 1.3896174662828913, + "mesprit": 1.345308886313434, + "azelf": 1.3036465940342294, + "dialga": 0.6972522012963809, + "palkia": 0.4391871336672384, + "heatran": 0.7976340977687812, + "giratina-altered": 0.5716481873738063, + "cresselia": 0.7572105055708496, + "tornadus-incarnate": 0.8061808332269751, + "thundurus-incarnate": 0.9554243970215248, + "reshiram": 0.6394313243805416, + "zekrom": 0.7279425273728501, + "landorus-incarnate": 0.4996995135125696, + "kyurem": 0.6613391508922724, + "xerneas": 0.45051412206703, + "yveltal": 0.5467002572314932, + "zygarde-50": 0.38998848216376536, + "tapu-koko": 1.2923574820570087, + "tapu-lele": 1.580697641647892, + "tapu-bulu": 1.538956717853588, + "tapu-fini": 0.6328390048009112, + "solgaleo": 1.099485724658879, + "lunala": 0.6211503911568934, + "nihilego": 1.1077224865414204, + "buzzwole": 2.0048134607716404, + "pheromosa": 2.092859116049234, + "xurkitree": 0.8759190010003638, + "celesteela": 1.0882452830121734, + "kartana": 4.584638939313319, + "guzzlord": 0.7059746966489269, + "necrozma": 1.1642802621688921, + "stakataka": 0.82465701651754, + "blacephalon": 1.528436437203899 }, "grapploct": { - "articuno": 0.8085554818983198, - "zapdos": 0.5657312059763815, - "moltres": 0.6021463939795528, - "mewtwo": 0.632629928274032, - "raikou": 1.758514406463848, - "entei": 1.3584790781376284, - "suicune": 1.34404697869666, - "lugia": 0.7192001354775139, - "ho-oh": 0.6939424949761077, - "latias": 0.8346067010017766, - "latios": 1.0317273939688834, - "kyogre": 0.49291290161359447, - "groudon": 0.4011128987577719, - "rayquaza": 0.3800478599868067, - "uxie": 1.0379303486012683, - "mesprit": 0.9985744140501055, - "azelf": 0.9215079040586173, - "dialga": 0.8596386710718295, - "palkia": 0.5541951583989895, - "heatran": 0.6897572954252493, - "giratina-altered": 0.5285397471761362, - "cresselia": 0.5603619714026974, - "tornadus-incarnate": 0.6457131080491257, - "thundurus-incarnate": 0.7723438938246878, - "reshiram": 0.5928503762710942, - "zekrom": 0.6564174398008893, - "landorus-incarnate": 0.5832757992172939, - "kyurem": 0.7841385306402495, - "xerneas": 0.29069590727813704, - "yveltal": 0.563263265602312, - "zygarde-50": 0.4254648156523775, - "tapu-koko": 0.9846354858482556, - "tapu-lele": 1.0974020885969848, - "tapu-bulu": 0.8502509350727284, - "tapu-fini": 0.5592615412817683, - "solgaleo": 0.6851842419522371, - "lunala": 0.48918757627344456, - "nihilego": 1.1496997212331177, - "buzzwole": 1.1281227979784982, - "pheromosa": 1.3244087954114625, - "xurkitree": 0.8005865850005686, - "celesteela": 0.8054159431232463, - "kartana": 2.0207008507693476, - "guzzlord": 1.0795503680088987, - "necrozma": 0.9933359002289046, - "stakataka": 1.2000693725288611, - "blacephalon": 1.4136329249444877 + "articuno": 0.8082865267734363, + "zapdos": 0.5648756652874267, + "moltres": 0.60211102772578, + "mewtwo": 0.6306405917591988, + "raikou": 1.7596475169642882, + "entei": 1.361370164056174, + "suicune": 1.3436050771401133, + "lugia": 0.7169478350810887, + "ho-oh": 0.6939420751448218, + "latias": 0.8322777252025246, + "latios": 1.0289852551369747, + "kyogre": 0.49311325758807345, + "groudon": 0.4018304561543205, + "rayquaza": 0.3793232654392138, + "uxie": 1.0349857643584357, + "mesprit": 0.9957031794037079, + "azelf": 0.9189469487997366, + "dialga": 0.8626620038760099, + "palkia": 0.554636971554652, + "heatran": 0.6926850514389002, + "giratina-altered": 0.5272959167299178, + "cresselia": 0.5585104443794915, + "tornadus-incarnate": 0.6442754616454951, + "thundurus-incarnate": 0.7717897017861672, + "reshiram": 0.5931445908708131, + "zekrom": 0.6568702013850165, + "landorus-incarnate": 0.5838229587196495, + "kyurem": 0.7856953754478235, + "xerneas": 0.289873204876896, + "yveltal": 0.5637892178784233, + "zygarde-50": 0.42589163560333465, + "tapu-koko": 0.9834831898213999, + "tapu-lele": 1.0925617865938537, + "tapu-bulu": 0.8497781821385947, + "tapu-fini": 0.5583094441875636, + "solgaleo": 0.6855346153036628, + "lunala": 0.4876550006967101, + "nihilego": 1.151054464298093, + "buzzwole": 1.1289065793223285, + "pheromosa": 1.3248429791701013, + "xurkitree": 0.8013979633766024, + "celesteela": 0.8070730367202209, + "kartana": 2.0258219170559744, + "guzzlord": 1.0829738331968217, + "necrozma": 0.9910544422854641, + "stakataka": 1.206869051344807, + "blacephalon": 1.4116988445302359 }, "polteageist": { - "articuno": 0.8135354917931822, - "zapdos": 0.6854198943654012, - "moltres": 0.5968564207773577, - "mewtwo": 0.7805051165936552, - "raikou": 1.7635173872134, - "entei": 1.2152168807952282, - "suicune": 1.8272959377252687, - "lugia": 0.9344184653946576, - "ho-oh": 0.694772019304475, - "latias": 1.0466521603557202, - "latios": 1.337323889928573, - "kyogre": 0.5630987141454246, - "groudon": 0.48359828782786585, - "rayquaza": 0.4241691684213583, - "uxie": 1.3538354469835556, - "mesprit": 1.3885576127054222, - "azelf": 1.2909526955060562, - "dialga": 0.517161654633264, - "palkia": 0.5270201257786036, - "heatran": 0.3980202152642378, - "giratina-altered": 0.6292838860944883, - "cresselia": 0.7088549979042584, - "tornadus-incarnate": 0.8247027060877605, - "thundurus-incarnate": 0.9729363702211486, - "reshiram": 0.59338418005799, - "zekrom": 0.6422855931501759, - "landorus-incarnate": 0.5120138411425158, - "kyurem": 0.634409671662397, - "xerneas": 0.3949789059801171, - "yveltal": 0.3975317144727525, - "zygarde-50": 0.4097466777017373, - "tapu-koko": 1.2126243348227224, - "tapu-lele": 1.3884060274020067, - "tapu-bulu": 0.9982676683873041, - "tapu-fini": 0.8913375680183806, - "solgaleo": 0.6595538413659258, - "lunala": 0.800427182028084, - "nihilego": 1.329687177773523, - "buzzwole": 1.7195816114901952, - "pheromosa": 2.0227820028996275, - "xurkitree": 0.7399801374657362, - "celesteela": 0.5982243178641422, - "kartana": 1.253218522400919, - "guzzlord": 0.5509827394901604, - "necrozma": 1.2057176552333948, - "stakataka": 0.604585028837364, - "blacephalon": 1.4539993913687694 + "articuno": 0.8136700731713966, + "zapdos": 0.6853586016220989, + "moltres": 0.5968083011283585, + "mewtwo": 0.7805739131926974, + "raikou": 1.766210590711304, + "entei": 1.214318733247513, + "suicune": 1.830470300229461, + "lugia": 0.9346197029302548, + "ho-oh": 0.6943987972353953, + "latias": 1.0465064209654087, + "latios": 1.3379417343507285, + "kyogre": 0.5643258812525939, + "groudon": 0.48428990075988043, + "rayquaza": 0.42376866224432674, + "uxie": 1.3543808655667933, + "mesprit": 1.391328961321946, + "azelf": 1.293273582165738, + "dialga": 0.5166743195356726, + "palkia": 0.5273692419529503, + "heatran": 0.39738559727504674, + "giratina-altered": 0.6283767102156277, + "cresselia": 0.7089358662613781, + "tornadus-incarnate": 0.8251858134207011, + "thundurus-incarnate": 0.9741352814397579, + "reshiram": 0.5936198766559304, + "zekrom": 0.6417055474330908, + "landorus-incarnate": 0.5121920796820907, + "kyurem": 0.6344291515237552, + "xerneas": 0.39522761478922275, + "yveltal": 0.3959109474689225, + "zygarde-50": 0.4096796236080821, + "tapu-koko": 1.2134439359963032, + "tapu-lele": 1.3876116542242958, + "tapu-bulu": 0.9978651407064838, + "tapu-fini": 0.8929876609394967, + "solgaleo": 0.6585725443604434, + "lunala": 0.8005353371920128, + "nihilego": 1.3323975539695205, + "buzzwole": 1.7230447770466655, + "pheromosa": 2.0262619040863177, + "xurkitree": 0.7400372237930999, + "celesteela": 0.5974270755440444, + "kartana": 1.2502583968408034, + "guzzlord": 0.5485558079259849, + "necrozma": 1.2059550575467153, + "stakataka": 0.6040390613587235, + "blacephalon": 1.4541401527555786 }, "hatterene": { - "articuno": 0.8890185186384995, - "zapdos": 0.8082271305840636, - "moltres": 0.6925907520824282, - "mewtwo": 0.8297832682915184, - "raikou": 1.8345669208780135, - "entei": 1.4861380257139822, - "suicune": 1.6289000692044646, - "lugia": 0.9977854446793901, - "ho-oh": 0.7779328801094889, - "latias": 1.5474028485368336, - "latios": 2.0514849822591628, - "kyogre": 0.4965086621256618, - "groudon": 0.45142333627801867, - "rayquaza": 0.6394730751377447, - "uxie": 1.3461715255631008, - "mesprit": 1.3097210342875365, - "azelf": 1.2382283071844573, - "dialga": 0.601820571280777, - "palkia": 0.7685854333182109, - "heatran": 0.44038413414057986, - "giratina-altered": 0.9453966112445358, - "cresselia": 0.762570332721537, - "tornadus-incarnate": 0.9252331198377229, - "thundurus-incarnate": 0.9724630637981502, - "reshiram": 0.7046115538164237, - "zekrom": 0.89265922339122, - "landorus-incarnate": 0.6389111700268068, - "kyurem": 0.7743747971038191, - "xerneas": 0.45563018938088795, - "yveltal": 0.7517770572830631, - "zygarde-50": 0.5465148321665375, - "tapu-koko": 1.4230647132147412, - "tapu-lele": 1.7343327492653806, - "tapu-bulu": 1.195940263561436, - "tapu-fini": 0.7823403091658321, - "solgaleo": 0.5550553535562298, - "lunala": 0.5818059778860504, - "nihilego": 1.0679303288185849, - "buzzwole": 2.3693699117817077, - "pheromosa": 2.423603733508801, - "xurkitree": 0.9065202650585906, - "celesteela": 0.6652739617631663, - "kartana": 1.5615259351264963, - "guzzlord": 1.5565663457959278, - "necrozma": 1.2583543193524775, - "stakataka": 0.5964371489035596, - "blacephalon": 1.5705549657696156 + "articuno": 0.8894445368877345, + "zapdos": 0.8090830798655433, + "moltres": 0.6929662452938972, + "mewtwo": 0.8305399634415862, + "raikou": 1.8353335066409406, + "entei": 1.486638867221794, + "suicune": 1.6303654110982801, + "lugia": 0.9986783470128959, + "ho-oh": 0.7781961373012314, + "latias": 1.551571570573238, + "latios": 2.058871705267592, + "kyogre": 0.4967851075133336, + "groudon": 0.45202059123040195, + "rayquaza": 0.6412358881343501, + "uxie": 1.3459782956280786, + "mesprit": 1.3100154756398492, + "azelf": 1.2384687683642466, + "dialga": 0.6014288999818618, + "palkia": 0.7704494458562965, + "heatran": 0.43974091948575267, + "giratina-altered": 0.9464431394891204, + "cresselia": 0.7633144613915213, + "tornadus-incarnate": 0.9261507816491821, + "thundurus-incarnate": 0.9726277217517796, + "reshiram": 0.7061152664556016, + "zekrom": 0.8947475722333741, + "landorus-incarnate": 0.6397806308265723, + "kyurem": 0.7749389689539323, + "xerneas": 0.4562566294798678, + "yveltal": 0.7524537401754027, + "zygarde-50": 0.5477305224496309, + "tapu-koko": 1.4244281602521065, + "tapu-lele": 1.7363550423713559, + "tapu-bulu": 1.1972025149026595, + "tapu-fini": 0.7831352712172472, + "solgaleo": 0.5532522706357422, + "lunala": 0.5804642334760944, + "nihilego": 1.0666054467132675, + "buzzwole": 2.3767730706861583, + "pheromosa": 2.430976325365827, + "xurkitree": 0.9072032612027305, + "celesteela": 0.6638216136165274, + "kartana": 1.5610457449704866, + "guzzlord": 1.55996860706056, + "necrozma": 1.2592441152209428, + "stakataka": 0.5951866233795913, + "blacephalon": 1.570399811717499 }, "grimmsnarl": { - "articuno": 0.8073058521489077, - "zapdos": 0.7121763396000591, - "moltres": 0.6145026950300985, - "mewtwo": 1.1650473671955859, - "raikou": 1.6398827679788117, - "entei": 1.3494267194812681, - "suicune": 1.4744085653209817, - "lugia": 1.292939337329294, - "ho-oh": 0.7136204444483264, - "latias": 1.3954889439413387, - "latios": 1.8553736989440237, - "kyogre": 0.4442197610285029, - "groudon": 0.38994326770943283, - "rayquaza": 0.5055105681825484, - "uxie": 2.0103373992032245, - "mesprit": 1.7821030968752338, - "azelf": 1.5941725592188272, - "dialga": 0.650413542218734, - "palkia": 0.5434046827734565, - "heatran": 0.5046732729799714, - "giratina-altered": 1.096438400376531, - "cresselia": 1.0224147090218365, - "tornadus-incarnate": 0.8264028934982992, - "thundurus-incarnate": 0.8618662734354892, - "reshiram": 0.6384179061842417, - "zekrom": 0.7229228127656048, - "landorus-incarnate": 0.5560089177993766, - "kyurem": 0.6232458494498854, - "xerneas": 0.28966757910153207, - "yveltal": 0.5527707273771436, - "zygarde-50": 0.45565826673704074, - "tapu-koko": 1.012171346069394, - "tapu-lele": 1.55835341163391, - "tapu-bulu": 0.8485828980911501, - "tapu-fini": 0.5584487980318182, - "solgaleo": 1.0035454487571622, - "lunala": 1.1535179166801335, - "nihilego": 0.8125960653538973, - "buzzwole": 1.054287761214467, - "pheromosa": 1.2722076522782166, - "xurkitree": 0.822448348024892, - "celesteela": 0.7544352056060311, - "kartana": 1.8064315747545607, - "guzzlord": 0.8343365739554363, - "necrozma": 1.8516920078610573, - "stakataka": 0.6959726263594757, - "blacephalon": 1.9994756340693411 + "articuno": 0.806798322966509, + "zapdos": 0.7117956853100462, + "moltres": 0.6142689599618106, + "mewtwo": 1.1686979291343114, + "raikou": 1.6384129442384587, + "entei": 1.349660207537155, + "suicune": 1.4745541395765938, + "lugia": 1.2953580352834435, + "ho-oh": 0.7132780914200201, + "latias": 1.3995099157012638, + "latios": 1.8614907100452698, + "kyogre": 0.4438974602710949, + "groudon": 0.38981000493822027, + "rayquaza": 0.5058485356337119, + "uxie": 2.016433600420694, + "mesprit": 1.7840418575368873, + "azelf": 1.5955099831873039, + "dialga": 0.6501709795777476, + "palkia": 0.5435085769617072, + "heatran": 0.504813536638845, + "giratina-altered": 1.099364033058111, + "cresselia": 1.0247788377514782, + "tornadus-incarnate": 0.8259976549787844, + "thundurus-incarnate": 0.8606729497160454, + "reshiram": 0.6391828698656928, + "zekrom": 0.7230603159654898, + "landorus-incarnate": 0.555700268465753, + "kyurem": 0.6233795814276979, + "xerneas": 0.2885570426387062, + "yveltal": 0.5533454557448793, + "zygarde-50": 0.4557333879353417, + "tapu-koko": 1.0105081079315976, + "tapu-lele": 1.5588565770361327, + "tapu-bulu": 0.8469060451486323, + "tapu-fini": 0.5571676908065506, + "solgaleo": 1.003075235787295, + "lunala": 1.1555057974555878, + "nihilego": 0.8104696884906233, + "buzzwole": 1.0524109465205664, + "pheromosa": 1.270079266773538, + "xurkitree": 0.822281049272563, + "celesteela": 0.7530782391461117, + "kartana": 1.807005227474483, + "guzzlord": 0.8352520896357407, + "necrozma": 1.856855608995291, + "stakataka": 0.695670837398905, + "blacephalon": 2.002052479561723 }, "obstagoon": { - "articuno": 0.8426889600927749, - "zapdos": 0.7237294893595352, - "moltres": 0.6104530321284733, - "mewtwo": 1.129076856480419, - "raikou": 1.7827377010150478, - "entei": 1.2949964917196302, - "suicune": 1.5105132264222139, - "lugia": 1.3015907740317836, - "ho-oh": 0.8365123972684934, - "latias": 1.524534107883141, - "latios": 1.7526445132873878, - "kyogre": 0.4991807273368484, - "groudon": 0.34593468387352416, - "rayquaza": 0.4734232258752694, - "uxie": 1.9795404395142637, - "mesprit": 1.7311515768201506, - "azelf": 1.5630826606706605, - "dialga": 0.6316321161999731, - "palkia": 0.5565010628645153, - "heatran": 0.5111982561556744, - "giratina-altered": 1.0549684504390922, - "cresselia": 1.0254298904615993, - "tornadus-incarnate": 0.8446491492690278, - "thundurus-incarnate": 0.946853049067428, - "reshiram": 0.6319041191865457, - "zekrom": 0.6704164925585778, - "landorus-incarnate": 0.5358791315047173, - "kyurem": 0.6213272917921346, - "xerneas": 0.34299061649077117, - "yveltal": 0.5870092406848151, - "zygarde-50": 0.4364279254870582, - "tapu-koko": 1.1699986292932925, - "tapu-lele": 1.7753095556848342, - "tapu-bulu": 0.8826908892516159, - "tapu-fini": 0.6792096687924095, - "solgaleo": 1.0124598565427072, - "lunala": 1.267749159665372, - "nihilego": 1.148464733838388, - "buzzwole": 0.8913896063885749, - "pheromosa": 1.3241036212608297, - "xurkitree": 0.809088412174086, - "celesteela": 0.8290838668737532, - "kartana": 1.2189185298667233, - "guzzlord": 0.8128907442771698, - "necrozma": 1.706454126597579, - "stakataka": 0.5987011621919067, - "blacephalon": 2.356410107743193 + "articuno": 0.8437187461359079, + "zapdos": 0.7248513460586457, + "moltres": 0.6115923601366151, + "mewtwo": 1.133680617360572, + "raikou": 1.7841567130472398, + "entei": 1.2970406458540138, + "suicune": 1.5142416535944012, + "lugia": 1.3055134562960367, + "ho-oh": 0.8388289317687447, + "latias": 1.5295022811495373, + "latios": 1.7550645810717715, + "kyogre": 0.5000001145940922, + "groudon": 0.3455016675607713, + "rayquaza": 0.4740089130299001, + "uxie": 1.9884036835991494, + "mesprit": 1.7348644831129074, + "azelf": 1.5663622279285307, + "dialga": 0.632001050125728, + "palkia": 0.557275292697559, + "heatran": 0.5118520436758672, + "giratina-altered": 1.0580671148501575, + "cresselia": 1.0289620332078024, + "tornadus-incarnate": 0.8461565797861179, + "thundurus-incarnate": 0.9478020452040969, + "reshiram": 0.6328145583649829, + "zekrom": 0.6708722092958203, + "landorus-incarnate": 0.5354540271729071, + "kyurem": 0.6218388855433794, + "xerneas": 0.3424072335481547, + "yveltal": 0.5883390978530785, + "zygarde-50": 0.43656631341637037, + "tapu-koko": 1.1702935245280477, + "tapu-lele": 1.7807632250075902, + "tapu-bulu": 0.8812149134835177, + "tapu-fini": 0.6795491194627292, + "solgaleo": 1.015165594261461, + "lunala": 1.2719084966653345, + "nihilego": 1.148891136365989, + "buzzwole": 0.8881596022556756, + "pheromosa": 1.3206488085035968, + "xurkitree": 0.8097313908904641, + "celesteela": 0.830851935023046, + "kartana": 1.2178507993795513, + "guzzlord": 0.8135974961830996, + "necrozma": 1.7125776437570517, + "stakataka": 0.5987706972736125, + "blacephalon": 2.3627341445582433 }, "perrserker": { - "articuno": 1.0730095257726309, - "zapdos": 0.6475358924997854, - "moltres": 0.44639738753816904, - "mewtwo": 0.9875571586869794, - "raikou": 1.6201114609218767, - "entei": 1.072328888433665, - "suicune": 1.3661724753389681, - "lugia": 1.1438673222713402, - "ho-oh": 0.6937924217947942, - "latias": 1.2746227554230947, - "latios": 1.5768313105170833, - "kyogre": 0.42160060368418806, - "groudon": 0.27856881044955945, - "rayquaza": 0.4592331601607905, - "uxie": 1.6095719242947462, - "mesprit": 1.5780745574765023, - "azelf": 1.519190091961239, - "dialga": 0.6131518396998944, - "palkia": 0.49774637731345744, - "heatran": 0.35920792435479554, - "giratina-altered": 0.8678116269436973, - "cresselia": 0.9139890005360767, - "tornadus-incarnate": 0.7443608511607958, - "thundurus-incarnate": 0.890975240641299, - "reshiram": 0.5038865490810789, - "zekrom": 0.6347918190576984, - "landorus-incarnate": 0.4624075563592844, - "kyurem": 0.7619999114495823, - "xerneas": 0.5241422328586465, - "yveltal": 0.525263664380319, - "zygarde-50": 0.3540011045506841, - "tapu-koko": 1.0981269990033224, - "tapu-lele": 2.217447668293264, - "tapu-bulu": 1.2173939380696837, - "tapu-fini": 0.6382876292009654, - "solgaleo": 0.8852233360600357, - "lunala": 1.044892089154298, - "nihilego": 1.6520680947880177, - "buzzwole": 1.0085301840643586, - "pheromosa": 1.422541655117006, - "xurkitree": 0.7007539982490729, - "celesteela": 0.7202014846289833, - "kartana": 1.2203336102492992, - "guzzlord": 0.7528479607862638, - "necrozma": 1.4606930054190501, - "stakataka": 0.587260133171088, - "blacephalon": 1.7233566707729076 + "articuno": 1.0751930614846916, + "zapdos": 0.647506935770015, + "moltres": 0.44520899963664284, + "mewtwo": 0.9893956857236661, + "raikou": 1.6188059534956776, + "entei": 1.0699876189103241, + "suicune": 1.3664104978839648, + "lugia": 1.1460701660188202, + "ho-oh": 0.6930878697445342, + "latias": 1.276349103746714, + "latios": 1.5777792628629745, + "kyogre": 0.4212816583342464, + "groudon": 0.27769683915187715, + "rayquaza": 0.45979557790515857, + "uxie": 1.6112297018216561, + "mesprit": 1.5805059105444785, + "azelf": 1.5218620239901002, + "dialga": 0.6137652453840696, + "palkia": 0.49777017595891665, + "heatran": 0.35833960827419714, + "giratina-altered": 0.8690137354432641, + "cresselia": 0.9159619702265498, + "tornadus-incarnate": 0.7445193259324296, + "thundurus-incarnate": 0.8905208559538667, + "reshiram": 0.5023323860065252, + "zekrom": 0.6346531485252254, + "landorus-incarnate": 0.4612832558523298, + "kyurem": 0.7626231201697196, + "xerneas": 0.5250671656228545, + "yveltal": 0.5255101465035603, + "zygarde-50": 0.3532757566793912, + "tapu-koko": 1.097359861160272, + "tapu-lele": 2.2230789629867616, + "tapu-bulu": 1.218557555945789, + "tapu-fini": 0.6380477458519151, + "solgaleo": 0.8867047744021834, + "lunala": 1.0461720148720275, + "nihilego": 1.6577115944432523, + "buzzwole": 1.0074976337158825, + "pheromosa": 1.4215962545473022, + "xurkitree": 0.6997401054382851, + "celesteela": 0.7210166036027061, + "kartana": 1.2200754211031635, + "guzzlord": 0.7523884873916484, + "necrozma": 1.4627865363641823, + "stakataka": 0.5877191309681657, + "blacephalon": 1.7205481486520733 }, "alcremie": { - "articuno": 0.9424395939914092, - "zapdos": 0.7565945647106116, - "moltres": 0.5378668815913541, - "mewtwo": 0.8598458989051885, - "raikou": 1.7308362059723503, - "entei": 1.1313107320768654, - "suicune": 1.5281433053786093, - "lugia": 1.0025396795528831, - "ho-oh": 0.6109983690249602, - "latias": 1.4178686807605, - "latios": 1.860792019111277, - "kyogre": 0.49263159690822983, - "groudon": 0.4211637255037801, - "rayquaza": 0.7058344048300029, - "uxie": 1.4567200281193462, - "mesprit": 1.3963454429876034, - "azelf": 1.3217501306159152, - "dialga": 0.6978604866790384, - "palkia": 0.7895319584563385, - "heatran": 0.37621162767623484, - "giratina-altered": 1.1400757581882912, - "cresselia": 0.7649738572477922, - "tornadus-incarnate": 0.8908950982363992, - "thundurus-incarnate": 0.9484182847929428, - "reshiram": 0.6608387327609817, - "zekrom": 1.0437802338652657, - "landorus-incarnate": 0.5756550228800281, - "kyurem": 0.891487313662243, - "xerneas": 0.4878187655290592, - "yveltal": 0.8690880717887988, - "zygarde-50": 0.6431191798809375, - "tapu-koko": 1.3299760269637313, - "tapu-lele": 1.531853813969976, - "tapu-bulu": 1.2239191160976985, - "tapu-fini": 0.7764712718963831, - "solgaleo": 0.8022831110410567, - "lunala": 0.6410614566238596, - "nihilego": 0.7756140703879817, - "buzzwole": 2.1353868432537824, - "pheromosa": 2.248288457159827, - "xurkitree": 0.8710687593661568, - "celesteela": 0.8893803814056126, - "kartana": 3.448578982245299, - "guzzlord": 1.8122489699144668, - "necrozma": 1.335956001511287, - "stakataka": 0.6088927364271468, - "blacephalon": 1.2452678369858983 + "articuno": 0.9437198387840119, + "zapdos": 0.7572213503678362, + "moltres": 0.5375940879276258, + "mewtwo": 0.8605488429749061, + "raikou": 1.7314390585573214, + "entei": 1.1306940074743244, + "suicune": 1.5295984923316936, + "lugia": 1.0038520798877544, + "ho-oh": 0.6099899026268691, + "latias": 1.4203013407025393, + "latios": 1.8652102750533657, + "kyogre": 0.4930536000341558, + "groudon": 0.42204225274252627, + "rayquaza": 0.7073522472600555, + "uxie": 1.4584989393826073, + "mesprit": 1.397976843712037, + "azelf": 1.3229492341976399, + "dialga": 0.6980377440100658, + "palkia": 0.7911399642436875, + "heatran": 0.37470716039004587, + "giratina-altered": 1.1432037771555712, + "cresselia": 0.7655706099161101, + "tornadus-incarnate": 0.8919471082485559, + "thundurus-incarnate": 0.9488702973674734, + "reshiram": 0.6615543928616227, + "zekrom": 1.0455446345958341, + "landorus-incarnate": 0.576297979820209, + "kyurem": 0.8932256476359262, + "xerneas": 0.488764384636179, + "yveltal": 0.8719832852912219, + "zygarde-50": 0.6443966331263142, + "tapu-koko": 1.3318028229731698, + "tapu-lele": 1.532295745482442, + "tapu-bulu": 1.2258486804588093, + "tapu-fini": 0.7779419420143213, + "solgaleo": 0.800904380276255, + "lunala": 0.6417001358648988, + "nihilego": 0.7735745838840271, + "buzzwole": 2.144559977526047, + "pheromosa": 2.256126863543928, + "xurkitree": 0.8722771557608564, + "celesteela": 0.8887309474768834, + "kartana": 3.4566994141419984, + "guzzlord": 1.8185133750920688, + "necrozma": 1.3374090721690557, + "stakataka": 0.6082721057488611, + "blacephalon": 1.2442639543376695 }, "falinks": { - "articuno": 0.8240246798367085, - "zapdos": 0.513785131303729, - "moltres": 0.44557734573420416, - "mewtwo": 0.7956932109356916, - "raikou": 1.593839272748178, - "entei": 1.1965541211083743, - "suicune": 1.2256580911199855, - "lugia": 0.7399140094607324, - "ho-oh": 0.6085185225295763, - "latias": 1.1254249701567645, - "latios": 1.4015669805579427, - "kyogre": 0.4291672662098051, - "groudon": 0.33172245718023796, - "rayquaza": 0.39404625975209034, - "uxie": 1.2844028236401726, - "mesprit": 1.2371125140766503, - "azelf": 1.1358726338366258, - "dialga": 0.7749055355317108, - "palkia": 0.49985942788417637, - "heatran": 0.5978414934939341, - "giratina-altered": 0.6145311959384896, - "cresselia": 0.7299527160721067, - "tornadus-incarnate": 0.6188608595104894, - "thundurus-incarnate": 0.6790275859230323, - "reshiram": 0.5246287268149509, - "zekrom": 0.6266609683970121, - "landorus-incarnate": 0.49157539648622806, - "kyurem": 0.6798615373076112, - "xerneas": 0.3429885513714416, - "yveltal": 0.5132976038195175, - "zygarde-50": 0.40443493017129184, - "tapu-koko": 0.9597357110482585, - "tapu-lele": 1.5315655668186938, - "tapu-bulu": 1.0925434268564855, - "tapu-fini": 0.5510889607138849, - "solgaleo": 0.6485747112001057, - "lunala": 0.5103922579859268, - "nihilego": 1.2045390418973638, - "buzzwole": 1.0005743226753026, - "pheromosa": 1.342336470829842, - "xurkitree": 0.7211297559162893, - "celesteela": 0.754920067387544, - "kartana": 1.330555116192777, - "guzzlord": 1.0046393356173684, - "necrozma": 1.2465777255650425, - "stakataka": 0.9527593711265299, - "blacephalon": 1.117355345816099 + "articuno": 0.8229926731110302, + "zapdos": 0.5124574678753608, + "moltres": 0.44439949213269453, + "mewtwo": 0.7934364730116417, + "raikou": 1.5933975749927798, + "entei": 1.1964158822610051, + "suicune": 1.2239029727843465, + "lugia": 0.7372930647930054, + "ho-oh": 0.6076507907587396, + "latias": 1.1235761760194014, + "latios": 1.3993251696325553, + "kyogre": 0.4290477405518559, + "groudon": 0.33178858085422563, + "rayquaza": 0.393279933176038, + "uxie": 1.2806053677293336, + "mesprit": 1.2333835248168359, + "azelf": 1.1329446875715723, + "dialga": 0.7757796497807925, + "palkia": 0.5001156444081041, + "heatran": 0.5982974174122069, + "giratina-altered": 0.6137749197913731, + "cresselia": 0.7278614374023245, + "tornadus-incarnate": 0.6166909509191998, + "thundurus-incarnate": 0.6774398353913307, + "reshiram": 0.5237329601517351, + "zekrom": 0.6268244694952152, + "landorus-incarnate": 0.4914580322203144, + "kyurem": 0.6803355852405919, + "xerneas": 0.34186310938631626, + "yveltal": 0.5133223935705049, + "zygarde-50": 0.4045442357711632, + "tapu-koko": 0.957887985647663, + "tapu-lele": 1.5270205754644015, + "tapu-bulu": 1.0937422430505568, + "tapu-fini": 0.5497450592594817, + "solgaleo": 0.6482593890082919, + "lunala": 0.508801376557062, + "nihilego": 1.2058565867334081, + "buzzwole": 1.0000845934244595, + "pheromosa": 1.3424140834306988, + "xurkitree": 0.7207916679680246, + "celesteela": 0.7549511920564054, + "kartana": 1.3298008367982663, + "guzzlord": 1.007935819930085, + "necrozma": 1.2439830575115058, + "stakataka": 0.9548528926176248, + "blacephalon": 1.1139734653878635 }, "pincurchin": { - "articuno": 1.0052466885635376, - "zapdos": 0.7649390472237472, - "moltres": 0.7944592573883481, - "mewtwo": 0.7766326034637466, - "raikou": 1.5259258168812293, - "entei": 1.4626037843952644, - "suicune": 1.8485251536108103, - "lugia": 1.1573550880054941, - "ho-oh": 0.8692645819326561, - "latias": 0.80091040813459, - "latios": 1.0163151740567198, - "kyogre": 0.5487524583699978, - "groudon": 0.3770210466607847, - "rayquaza": 0.46204083084161596, - "uxie": 1.2886534140920185, - "mesprit": 1.2330591951384033, - "azelf": 1.1756949755338895, - "dialga": 0.5396940127161017, - "palkia": 0.5064821330138201, - "heatran": 0.5682504880605022, - "giratina-altered": 0.5680568890648892, - "cresselia": 0.7021258541715809, - "tornadus-incarnate": 1.0944692653532018, - "thundurus-incarnate": 0.939635618725057, - "reshiram": 0.512068892340504, - "zekrom": 0.5471044922864801, - "landorus-incarnate": 0.5471478154862344, - "kyurem": 0.495052221292958, - "xerneas": 0.3866717252248398, - "yveltal": 0.7312394252014425, - "zygarde-50": 0.3322168329013795, - "tapu-koko": 1.1779851923028626, - "tapu-lele": 1.4340441718456811, - "tapu-bulu": 0.8441253684958359, - "tapu-fini": 0.8893668487059299, - "solgaleo": 0.7876708777931527, - "lunala": 0.5738134189195417, - "nihilego": 0.9276864385137722, - "buzzwole": 1.3075773016753476, - "pheromosa": 1.4657115817864446, - "xurkitree": 0.7509256365063247, - "celesteela": 1.0320357219966636, - "kartana": 1.3935462910400167, - "guzzlord": 0.6290444172623194, - "necrozma": 1.2431897370827012, - "stakataka": 0.7867561525783484, - "blacephalon": 1.57716272311366 + "articuno": 1.0054655575463758, + "zapdos": 0.7660582572549954, + "moltres": 0.7957998240825914, + "mewtwo": 0.7757840557098452, + "raikou": 1.5247607444738813, + "entei": 1.4633681834821592, + "suicune": 1.8481870118278467, + "lugia": 1.1578039996651794, + "ho-oh": 0.8698511025751186, + "latias": 0.7986836809806762, + "latios": 1.013568091138932, + "kyogre": 0.5486113745318508, + "groudon": 0.3762804555956465, + "rayquaza": 0.46172810488427896, + "uxie": 1.2870364547701163, + "mesprit": 1.2313964771745647, + "azelf": 1.1742837735275944, + "dialga": 0.53925963499878, + "palkia": 0.5057146972545741, + "heatran": 0.5688971222662156, + "giratina-altered": 0.5669095522730585, + "cresselia": 0.7014080343652248, + "tornadus-incarnate": 1.0960134231924608, + "thundurus-incarnate": 0.9398065267901605, + "reshiram": 0.5112558558649547, + "zekrom": 0.5463453932426372, + "landorus-incarnate": 0.5459769107067376, + "kyurem": 0.4937931348009808, + "xerneas": 0.3864309671398356, + "yveltal": 0.7318684324060374, + "zygarde-50": 0.33099211028441466, + "tapu-koko": 1.178616811601474, + "tapu-lele": 1.4322497035835053, + "tapu-bulu": 0.8426855253305836, + "tapu-fini": 0.8893596358872897, + "solgaleo": 0.7883374831153642, + "lunala": 0.572959431987494, + "nihilego": 0.9260566640060022, + "buzzwole": 1.3076804248790048, + "pheromosa": 1.4643927461769, + "xurkitree": 0.7508473311483554, + "celesteela": 1.0333925093401712, + "kartana": 1.3924370346833004, + "guzzlord": 0.6273307553664436, + "necrozma": 1.2424099151839854, + "stakataka": 0.78774148225298, + "blacephalon": 1.5772473053048053 }, "frosmoth": { - "articuno": 0.802623191202828, - "zapdos": 0.5561369640353777, - "moltres": 0.3893841906726331, - "mewtwo": 1.0585822339678819, - "raikou": 1.5684425090303753, - "entei": 0.9859561234806504, - "suicune": 1.335722209903484, - "lugia": 0.8009763012810636, - "ho-oh": 0.4564477550446243, - "latias": 1.2078722951606728, - "latios": 1.5348858643643883, - "kyogre": 0.4300464273916154, - "groudon": 0.36443484725977493, - "rayquaza": 0.4102228614822704, - "uxie": 1.727279494860305, - "mesprit": 1.6534888280107158, - "azelf": 1.5603679949202474, - "dialga": 0.43740771487187424, - "palkia": 0.4746987404402687, - "heatran": 0.2620804681219659, - "giratina-altered": 0.6168486311037179, - "cresselia": 0.9282506298728447, - "tornadus-incarnate": 0.6367713872226703, - "thundurus-incarnate": 0.7957293494336481, - "reshiram": 0.4598718764984464, - "zekrom": 0.6361286778524609, - "landorus-incarnate": 0.47473598519659593, - "kyurem": 0.6281458627913286, - "xerneas": 0.38750236287689155, - "yveltal": 0.5103186358438477, - "zygarde-50": 0.4664833402543038, - "tapu-koko": 0.9929276029378773, - "tapu-lele": 1.39674575809628, - "tapu-bulu": 1.3016698139430833, - "tapu-fini": 0.6623612540334481, - "solgaleo": 0.6081911662143067, - "lunala": 0.5828486402727343, - "nihilego": 0.7457312077551622, - "buzzwole": 2.5237117096316113, - "pheromosa": 2.6570530320993253, - "xurkitree": 0.7749448854511332, - "celesteela": 0.5486013434226779, - "kartana": 1.751706196836838, - "guzzlord": 0.9560903377061856, - "necrozma": 1.4314745947453602, - "stakataka": 0.3872932230842294, - "blacephalon": 1.0957585773389669 + "articuno": 0.8025123799771051, + "zapdos": 0.5545316687836868, + "moltres": 0.38735515218463024, + "mewtwo": 1.0596540430784471, + "raikou": 1.566577542568126, + "entei": 0.9807254779211787, + "suicune": 1.3353213669124901, + "lugia": 0.7993264956432763, + "ho-oh": 0.45273577910500584, + "latias": 1.208276288827133, + "latios": 1.5356248405123956, + "kyogre": 0.42988610034958274, + "groudon": 0.36455678712226725, + "rayquaza": 0.4092154367682608, + "uxie": 1.7290608843336268, + "mesprit": 1.655066985044165, + "azelf": 1.5614848767255993, + "dialga": 0.4355841950733136, + "palkia": 0.47394110754458607, + "heatran": 0.2606507630358231, + "giratina-altered": 0.6152797316792729, + "cresselia": 0.9289945531612521, + "tornadus-incarnate": 0.634921764735059, + "thundurus-incarnate": 0.7950227451966788, + "reshiram": 0.45781835575307706, + "zekrom": 0.6353431891201756, + "landorus-incarnate": 0.474269172788112, + "kyurem": 0.6288414349573345, + "xerneas": 0.38760528486692825, + "yveltal": 0.5098695476429603, + "zygarde-50": 0.46713495434781166, + "tapu-koko": 0.9907708444217207, + "tapu-lele": 1.3957645037307425, + "tapu-bulu": 1.3036847751813343, + "tapu-fini": 0.6624045358249373, + "solgaleo": 0.6056464426169339, + "lunala": 0.5824410811883616, + "nihilego": 0.7414096817592055, + "buzzwole": 2.52695573705127, + "pheromosa": 2.659674592771968, + "xurkitree": 0.7749380312287795, + "celesteela": 0.5459126259693782, + "kartana": 1.7557942443425882, + "guzzlord": 0.9563036529659563, + "necrozma": 1.430092779596425, + "stakataka": 0.38506310325374365, + "blacephalon": 1.089291582676239 }, "indeedee-male": { - "articuno": 0.8945268338919555, - "zapdos": 0.7086230098687722, - "moltres": 0.6224858911262191, - "mewtwo": 0.9517993846137955, - "raikou": 1.626689437755675, - "entei": 1.2094583294035717, - "suicune": 1.413394009144195, - "lugia": 1.054157894958572, - "ho-oh": 0.6863488813572067, - "latias": 1.1241674599686666, - "latios": 1.436878210029598, - "kyogre": 0.44774952150803826, - "groudon": 0.36977320348514364, - "rayquaza": 0.42731399220828675, - "uxie": 1.672888983882166, - "mesprit": 1.5210054073218047, - "azelf": 1.4189647730503074, - "dialga": 0.5639291081640786, - "palkia": 0.5212483059039907, - "heatran": 0.4363777830863061, - "giratina-altered": 0.8836543548531315, - "cresselia": 0.8527953853711461, - "tornadus-incarnate": 0.8425609828685752, - "thundurus-incarnate": 0.9435659075417415, - "reshiram": 0.615034497491046, - "zekrom": 0.6541016356122, - "landorus-incarnate": 0.5265109829754041, - "kyurem": 0.6427537007410851, - "xerneas": 0.4096154995276958, - "yveltal": 0.4245525120412704, - "zygarde-50": 0.4217095937153863, - "tapu-koko": 1.2432367469906545, - "tapu-lele": 1.699528609352107, - "tapu-bulu": 1.0351064475589482, - "tapu-fini": 0.7109225470574689, - "solgaleo": 0.8585931066419425, - "lunala": 1.0099528436563454, - "nihilego": 1.0459782992417337, - "buzzwole": 1.5999869679502345, - "pheromosa": 1.8108160921978271, - "xurkitree": 0.7640729378935273, - "celesteela": 0.8672272481960326, - "kartana": 3.2040071117157307, - "guzzlord": 0.4980509514338014, - "necrozma": 1.4962904183991093, - "stakataka": 0.5261630642712806, - "blacephalon": 1.7225563080866073 + "articuno": 0.8953942836905973, + "zapdos": 0.7088824466131314, + "moltres": 0.6227554387431083, + "mewtwo": 0.9534651498990402, + "raikou": 1.6257440232695761, + "entei": 1.2077083303979501, + "suicune": 1.4129960528492318, + "lugia": 1.0552632633363117, + "ho-oh": 0.6856945933492168, + "latias": 1.1248261428763193, + "latios": 1.4378712015148045, + "kyogre": 0.44753086822761207, + "groudon": 0.36981749754989446, + "rayquaza": 0.4267321540718222, + "uxie": 1.6773305613815155, + "mesprit": 1.523024654107109, + "azelf": 1.4202475303580284, + "dialga": 0.5638542377351325, + "palkia": 0.5207437430828215, + "heatran": 0.43517904735741664, + "giratina-altered": 0.8863225732178004, + "cresselia": 0.8541823404321924, + "tornadus-incarnate": 0.8433463157107561, + "thundurus-incarnate": 0.9442818986363964, + "reshiram": 0.6153668507935894, + "zekrom": 0.6532815350467227, + "landorus-incarnate": 0.5265368410104648, + "kyurem": 0.6435273380512649, + "xerneas": 0.4099623869727299, + "yveltal": 0.42283991218025624, + "zygarde-50": 0.42150677246130186, + "tapu-koko": 1.2438827304459414, + "tapu-lele": 1.701204389566084, + "tapu-bulu": 1.034252852915553, + "tapu-fini": 0.7113255057604071, + "solgaleo": 0.8593642056549315, + "lunala": 1.013837014097629, + "nihilego": 1.0451419317017647, + "buzzwole": 1.5982625763286296, + "pheromosa": 1.8083609231969806, + "xurkitree": 0.7640624020779484, + "celesteela": 0.8677875600455902, + "kartana": 3.2090108770931174, + "guzzlord": 0.4952759095123016, + "necrozma": 1.498930381257733, + "stakataka": 0.5253031870233495, + "blacephalon": 1.72611996286527 }, "morpeko": { - "articuno": 1.1429466656338483, - "zapdos": 0.8311536397833028, - "moltres": 0.8029406659469994, - "mewtwo": 0.9765981771145519, - "raikou": 1.520356630243815, - "entei": 1.2717719476381075, - "suicune": 2.022405600160635, - "lugia": 1.397366532193731, - "ho-oh": 1.189554541254111, - "latias": 1.1407198072087728, - "latios": 1.4075708802064644, - "kyogre": 0.6862919632042803, - "groudon": 0.26806728461705137, - "rayquaza": 0.6535821730236209, - "uxie": 1.6963952798519952, - "mesprit": 1.4428954440198014, - "azelf": 1.2486039159998024, - "dialga": 0.584661234845596, - "palkia": 0.5345152995558528, - "heatran": 0.5024031653610738, - "giratina-altered": 0.8431969559919577, - "cresselia": 0.8562496391778093, - "tornadus-incarnate": 1.2152887354857587, - "thundurus-incarnate": 1.029727369651253, - "reshiram": 0.5242048669712628, - "zekrom": 0.6785813034356152, - "landorus-incarnate": 0.5865145287943152, - "kyurem": 0.5227259887596604, - "xerneas": 0.32120346408128675, - "yveltal": 0.8348860786345271, - "zygarde-50": 0.4277890606560395, - "tapu-koko": 1.074776970897207, - "tapu-lele": 1.800415153954775, - "tapu-bulu": 0.866960486404812, - "tapu-fini": 0.9345610992774854, - "solgaleo": 0.9814722074891067, - "lunala": 0.9014192620265838, - "nihilego": 1.1284454668127764, - "buzzwole": 0.9298709879133432, - "pheromosa": 1.3297077843809402, - "xurkitree": 0.7558313132701957, - "celesteela": 1.0303414362605607, - "kartana": 1.5290430005901667, - "guzzlord": 0.7840041334987418, - "necrozma": 1.600328351489727, - "stakataka": 0.612867208860266, - "blacephalon": 1.7279466720351806 + "articuno": 1.145426146048896, + "zapdos": 0.8344045328753336, + "moltres": 0.8052962429167696, + "mewtwo": 0.9811603194648646, + "raikou": 1.5209028360627295, + "entei": 1.2728191352318676, + "suicune": 2.0277239798219906, + "lugia": 1.403984984696522, + "ho-oh": 1.1928893560455744, + "latias": 1.1438140328940871, + "latios": 1.4099597354759874, + "kyogre": 0.6876856741480852, + "groudon": 0.2669940038936832, + "rayquaza": 0.655065868764797, + "uxie": 1.7040301400516946, + "mesprit": 1.4453868087326367, + "azelf": 1.250683681889471, + "dialga": 0.5851641900368271, + "palkia": 0.5348317931537073, + "heatran": 0.5032760228155799, + "giratina-altered": 0.8450480256078071, + "cresselia": 0.8592700475781336, + "tornadus-incarnate": 1.2202644857389378, + "thundurus-incarnate": 1.0324368388025527, + "reshiram": 0.5242677401457774, + "zekrom": 0.6787703716810423, + "landorus-incarnate": 0.5849103834065157, + "kyurem": 0.5223200291261562, + "xerneas": 0.3203805767779379, + "yveltal": 0.8384098969938066, + "zygarde-50": 0.4267016534872964, + "tapu-koko": 1.0757127093012389, + "tapu-lele": 1.8053679688150988, + "tapu-bulu": 0.8647948194777492, + "tapu-fini": 0.9351971550960794, + "solgaleo": 0.9854606114947618, + "lunala": 0.9029464659953825, + "nihilego": 1.1284130046773126, + "buzzwole": 0.9260576034732126, + "pheromosa": 1.3256495746814678, + "xurkitree": 0.7566686931512364, + "celesteela": 1.0338133319013876, + "kartana": 1.52800381181357, + "guzzlord": 0.7834094926874953, + "necrozma": 1.6074020588797782, + "stakataka": 0.6133756357443059, + "blacephalon": 1.7324186713191625 }, "copperajah": { - "articuno": 1.3292186254046559, - "zapdos": 0.6481153123810652, - "moltres": 0.4707987802621914, - "mewtwo": 0.9491463807250513, - "raikou": 1.6297716612036908, - "entei": 1.0847760429903546, - "suicune": 1.3169968696556003, - "lugia": 1.0924520462470466, - "ho-oh": 0.6487933427855994, - "latias": 1.2082854121400597, - "latios": 1.4960544134213394, - "kyogre": 0.44743197432990367, - "groudon": 0.33229847779695937, - "rayquaza": 0.5324250319730378, - "uxie": 1.5726276408587025, - "mesprit": 1.5311830693663833, - "azelf": 1.4687267347511954, - "dialga": 0.7351841054963398, - "palkia": 0.5075726429750338, - "heatran": 0.48448044038598564, - "giratina-altered": 0.824831869778573, - "cresselia": 0.8613132596246564, - "tornadus-incarnate": 0.9251071390761287, - "thundurus-incarnate": 0.8965725644631053, - "reshiram": 0.5293507034063119, - "zekrom": 0.6119964617883962, - "landorus-incarnate": 0.5388360236655675, - "kyurem": 0.9754030387545578, - "xerneas": 0.6716861769163902, - "yveltal": 0.6265891027560561, - "zygarde-50": 0.40941824747940747, - "tapu-koko": 1.3649717990866117, - "tapu-lele": 2.696549400537368, - "tapu-bulu": 1.5068062984690571, - "tapu-fini": 0.7935798342354776, - "solgaleo": 0.6794111470631076, - "lunala": 0.7029660590684749, - "nihilego": 1.886720304898647, - "buzzwole": 1.2537942800084876, - "pheromosa": 1.6553457716789688, - "xurkitree": 0.719886331853254, - "celesteela": 0.6702271304607397, - "kartana": 1.4230537930640237, - "guzzlord": 0.877014101766256, - "necrozma": 1.4207404787036368, - "stakataka": 0.8083994695586383, - "blacephalon": 1.2898796981361933 + "articuno": 1.3323561046653087, + "zapdos": 0.6478416164358927, + "moltres": 0.46952431340606937, + "mewtwo": 0.950160596735647, + "raikou": 1.6289327905268545, + "entei": 1.0825490525926411, + "suicune": 1.3164778250024587, + "lugia": 1.0933402401639194, + "ho-oh": 0.647148424550822, + "latias": 1.2090074587386233, + "latios": 1.4962708096234953, + "kyogre": 0.4470950403359465, + "groudon": 0.33158026742923374, + "rayquaza": 0.5329438432946063, + "uxie": 1.5737359779801139, + "mesprit": 1.5327844196212848, + "azelf": 1.470227722413915, + "dialga": 0.7366500825939248, + "palkia": 0.5075044039295628, + "heatran": 0.48400318058613023, + "giratina-altered": 0.825083694918896, + "cresselia": 0.8623544734249247, + "tornadus-incarnate": 0.9253081537770332, + "thundurus-incarnate": 0.8961055041181754, + "reshiram": 0.5284283311172636, + "zekrom": 0.611727665778423, + "landorus-incarnate": 0.5378043243726455, + "kyurem": 0.9778208474613134, + "xerneas": 0.6734155374668461, + "yveltal": 0.6269953335768665, + "zygarde-50": 0.4088402032800421, + "tapu-koko": 1.365623002651429, + "tapu-lele": 2.702262955446743, + "tapu-bulu": 1.5090837926137686, + "tapu-fini": 0.7937593131978289, + "solgaleo": 0.6796144973106459, + "lunala": 0.7027257541406733, + "nihilego": 1.89198083744679, + "buzzwole": 1.253313661101489, + "pheromosa": 1.654515921000277, + "xurkitree": 0.7193531601136074, + "celesteela": 0.6702008123511378, + "kartana": 1.424427667642623, + "guzzlord": 0.8774149006519856, + "necrozma": 1.4220207680716797, + "stakataka": 0.8103723250121175, + "blacephalon": 1.2860903631255027 }, "duraludon": { - "articuno": 1.043599997213522, - "zapdos": 0.7293280306152212, - "moltres": 0.698039398732232, - "mewtwo": 0.7855074429521953, - "raikou": 1.7680038558428572, - "entei": 1.253804859191952, - "suicune": 1.889969492990926, - "lugia": 1.099317889228206, - "ho-oh": 0.8571622896881209, - "latias": 1.3639811490058027, - "latios": 1.5450243197926747, - "kyogre": 0.5590555759511875, - "groudon": 0.3128647886129679, - "rayquaza": 0.566167902932887, - "uxie": 1.3557660540298202, - "mesprit": 1.3044234216695756, - "azelf": 1.2075397094734341, - "dialga": 0.6193271467029198, - "palkia": 0.7246027770186171, - "heatran": 0.44404553711951944, - "giratina-altered": 0.8848991673523409, - "cresselia": 0.736163667511452, - "tornadus-incarnate": 0.9652294935108094, - "thundurus-incarnate": 0.9985896321914407, - "reshiram": 0.7195349004708765, - "zekrom": 0.8668879917596426, - "landorus-incarnate": 0.5027831466862629, - "kyurem": 0.7594223278895447, - "xerneas": 0.5071800775073928, - "yveltal": 0.6698614362653981, - "zygarde-50": 0.4554852746564507, - "tapu-koko": 1.2733663461535831, - "tapu-lele": 2.4244278532143646, - "tapu-bulu": 1.379205899305021, - "tapu-fini": 0.8638251269333672, - "solgaleo": 0.7831921243850666, - "lunala": 0.5969959118347758, - "nihilego": 1.851025628431303, - "buzzwole": 1.2713936799973162, - "pheromosa": 1.5235975038889928, - "xurkitree": 0.7854388332507134, - "celesteela": 1.01990397616824, - "kartana": 1.4261173452319225, - "guzzlord": 0.9733904902199524, - "necrozma": 1.2836754339495065, - "stakataka": 0.716927985706436, - "blacephalon": 1.4665717916277532 + "articuno": 1.0449849232177153, + "zapdos": 0.7309247529290472, + "moltres": 0.6986284300335724, + "mewtwo": 0.7864910524665825, + "raikou": 1.7699594475712856, + "entei": 1.2548117503110143, + "suicune": 1.895229795762924, + "lugia": 1.101460293879999, + "ho-oh": 0.8591394165315729, + "latias": 1.3661932108987158, + "latios": 1.54506825620855, + "kyogre": 0.5602728493605545, + "groudon": 0.31224596384104253, + "rayquaza": 0.5673159675646472, + "uxie": 1.356923963972616, + "mesprit": 1.3056267455480564, + "azelf": 1.2089090076742521, + "dialga": 0.6202147553078889, + "palkia": 0.726492211989499, + "heatran": 0.4439116132337879, + "giratina-altered": 0.8863257742852992, + "cresselia": 0.737178232605241, + "tornadus-incarnate": 0.9670883736880703, + "thundurus-incarnate": 1.0004646293900494, + "reshiram": 0.719329218638781, + "zekrom": 0.8687770013238669, + "landorus-incarnate": 0.5018732506368042, + "kyurem": 0.7598242455882986, + "xerneas": 0.5072770302255598, + "yveltal": 0.6712469891225218, + "zygarde-50": 0.45510929388720567, + "tapu-koko": 1.2745453525264452, + "tapu-lele": 2.4299511468963733, + "tapu-bulu": 1.3822977274444246, + "tapu-fini": 0.8650190435966758, + "solgaleo": 0.7847109457221284, + "lunala": 0.5965434484445135, + "nihilego": 1.8587694511699804, + "buzzwole": 1.2727197321780865, + "pheromosa": 1.525329044287232, + "xurkitree": 0.7860930799601269, + "celesteela": 1.0223222986346148, + "kartana": 1.4279679879779468, + "guzzlord": 0.9749341595750043, + "necrozma": 1.2860731503298268, + "stakataka": 0.7184309271083313, + "blacephalon": 1.4670304272179775 }, "drakloak": { - "articuno": 0.6098877253719568, - "zapdos": 0.6700719596284586, - "moltres": 0.5797511205404573, - "mewtwo": 0.7199805251340087, - "raikou": 1.8438580490683716, - "entei": 1.1596804768450204, - "suicune": 1.3760747780998286, - "lugia": 0.8833166609608352, - "ho-oh": 0.7541746051922078, - "latias": 1.234714155863079, - "latios": 1.4768208817760375, - "kyogre": 0.4980353973427025, - "groudon": 0.32418413728235773, - "rayquaza": 0.46670764246725926, - "uxie": 1.4085469106709358, - "mesprit": 1.447353307317063, - "azelf": 1.214282633917846, - "dialga": 0.5219631202223826, - "palkia": 0.6703222221855976, - "heatran": 0.4397137799470201, - "giratina-altered": 0.6913412171415458, - "cresselia": 0.6722859715000498, - "tornadus-incarnate": 0.7108052363696308, - "thundurus-incarnate": 0.947405127424956, - "reshiram": 0.7062797939789563, - "zekrom": 0.7578625261527826, - "landorus-incarnate": 0.47102153887195247, - "kyurem": 0.6206099704381594, - "xerneas": 0.2642203612485844, - "yveltal": 0.39792799158545716, - "zygarde-50": 0.44553095520137365, - "tapu-koko": 1.1131638792645624, - "tapu-lele": 1.3960049382616186, - "tapu-bulu": 0.9801888200558682, - "tapu-fini": 0.5875691365683118, - "solgaleo": 0.7997488745190349, - "lunala": 0.7836440639950021, - "nihilego": 1.0256295563751823, - "buzzwole": 1.264759487886054, - "pheromosa": 1.4818842563668326, - "xurkitree": 0.7240541042156734, - "celesteela": 0.6371370554094591, - "kartana": 1.551852575043749, - "guzzlord": 0.7540012664874169, - "necrozma": 1.3130042740579424, - "stakataka": 0.5346722408157165, - "blacephalon": 1.4707666402798871 + "articuno": 0.6072637950192955, + "zapdos": 0.6699984252749247, + "moltres": 0.5799839308164633, + "mewtwo": 0.7189442302007747, + "raikou": 1.8472182319410972, + "entei": 1.159300978426492, + "suicune": 1.3767699404362181, + "lugia": 0.8822956015876142, + "ho-oh": 0.7544525724918081, + "latias": 1.233972907254403, + "latios": 1.4760781152651066, + "kyogre": 0.49862233781316584, + "groudon": 0.3240537215940825, + "rayquaza": 0.4656168377761758, + "uxie": 1.4069748979673444, + "mesprit": 1.4478681990503843, + "azelf": 1.2143454580356028, + "dialga": 0.5210705323891954, + "palkia": 0.6703545168318119, + "heatran": 0.43923917588469163, + "giratina-altered": 0.6896412150547736, + "cresselia": 0.6711352543389735, + "tornadus-incarnate": 0.7097680954923968, + "thundurus-incarnate": 0.9485993592029209, + "reshiram": 0.7060837196220748, + "zekrom": 0.7577767870408663, + "landorus-incarnate": 0.4707791595548592, + "kyurem": 0.6184585895719277, + "xerneas": 0.26271255533811844, + "yveltal": 0.39599378709856137, + "zygarde-50": 0.44489967980370376, + "tapu-koko": 1.1119764600553865, + "tapu-lele": 1.391510796562275, + "tapu-bulu": 0.9801094829762615, + "tapu-fini": 0.5860114267813181, + "solgaleo": 0.7993603611943203, + "lunala": 0.7817277406257201, + "nihilego": 1.0245399726514788, + "buzzwole": 1.2663314303627378, + "pheromosa": 1.4820104567340033, + "xurkitree": 0.7240402677129762, + "celesteela": 0.6361895957627803, + "kartana": 1.5525673423485027, + "guzzlord": 0.7512971840724805, + "necrozma": 1.3125238172828082, + "stakataka": 0.5336989205356002, + "blacephalon": 1.471741494209236 } } \ No newline at end of file diff --git a/data/boss_pokemon.json b/data/boss_pokemon.json index b88b16d4..c55d10fd 100644 --- a/data/boss_pokemon.json +++ b/data/boss_pokemon.json @@ -377,16 +377,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 216, 134.0, @@ -775,16 +773,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 216, 141.0, @@ -1173,16 +1169,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 216, 155.0, @@ -1561,16 +1555,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 238, 169.0, @@ -1949,16 +1941,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 216, 134.0, @@ -2337,16 +2327,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 251, 176.0, @@ -2725,16 +2713,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 230, 120.0, @@ -3123,16 +3109,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 238, 141.0, @@ -3521,16 +3505,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 238, 197.0, @@ -3919,16 +3901,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 202, 127.0, @@ -4317,16 +4297,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 202, 141.0, @@ -4705,16 +4683,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 230, 155.0, @@ -5093,16 +5069,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 230, 225.0, @@ -5491,16 +5465,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 237, 225.0, @@ -5879,16 +5851,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 195, 120.0, @@ -6267,16 +6237,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 202, 162.0, @@ -6655,16 +6623,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 195, 190.0, @@ -7053,16 +7019,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 230, 183.0, @@ -7451,16 +7415,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 216, 183.0, @@ -7849,16 +7811,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 217, 141.0, @@ -8247,16 +8207,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 300, 155.0, @@ -8635,16 +8593,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 258, 113.0, @@ -9022,16 +8978,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 201, 176.0, @@ -9419,16 +9373,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 201, 176.0, @@ -9816,16 +9768,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 230, 183.0, @@ -10213,16 +10163,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 230, 225.0, @@ -10610,16 +10558,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 215, 190.0, @@ -11007,16 +10953,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 265, 197.0, @@ -11394,16 +11338,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 266, 198.0, @@ -11791,16 +11733,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 266, 198.0, @@ -12188,16 +12128,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 241, 155.0, @@ -12585,16 +12523,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 188, 176.0, @@ -12982,16 +12918,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 188, 134.0, @@ -13379,16 +13313,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 188, 197.0, @@ -13776,16 +13708,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 188, 120.0, @@ -14173,16 +14103,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 282, 207.0, @@ -14570,16 +14498,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 282, 173.0, @@ -14967,16 +14893,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 243, 89.0, @@ -15364,16 +15288,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 240, 210.0, @@ -15761,16 +15683,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 189, 207.0, @@ -16148,16 +16068,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 206, 140.0, @@ -16545,16 +16463,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 226, 156.0, @@ -16942,16 +16858,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 173, 268.0, @@ -17339,16 +17253,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 402, 156.0, @@ -17726,16 +17638,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 226, 165.0, @@ -18123,16 +18033,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 198.0, @@ -18520,16 +18428,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 164, 193.0, diff --git a/data/misc_icons/.gitkeep b/data/misc_icons/.gitkeep new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/data/misc_icons/.gitkeep @@ -0,0 +1 @@ + diff --git a/data/misc_icons/cheer.png b/data/misc_icons/cheer.png new file mode 100644 index 00000000..a02b1c21 Binary files /dev/null and b/data/misc_icons/cheer.png differ diff --git a/data/misc_icons/fight.png b/data/misc_icons/fight.png new file mode 100644 index 00000000..6e2d36e4 Binary files /dev/null and b/data/misc_icons/fight.png differ diff --git a/data/pokemon_sprites.pickle b/data/pokemon_sprites.pickle new file mode 100644 index 00000000..fa35aa9c Binary files /dev/null and b/data/pokemon_sprites.pickle differ diff --git a/data/pokesprite b/data/pokesprite new file mode 160000 index 00000000..0f29dddb --- /dev/null +++ b/data/pokesprite @@ -0,0 +1 @@ +Subproject commit 0f29dddb3210207d2d8c6fe526f2be1a892dc3ce diff --git a/data/rental_matchup_LUT.json b/data/rental_matchup_LUT.json index 0e6c6f7e..59dff199 100644 --- a/data/rental_matchup_LUT.json +++ b/data/rental_matchup_LUT.json @@ -1,51530 +1,51530 @@ { "ivysaur": { - "charmeleon": 3.145379321190849, - "wartortle": 3.6420881666072162, - "butterfree": 4.162648018216757, - "raichu": 5.299065308860941, - "raichu-alola": 3.0853451394157974, - "sandslash": 3.0024190775255035, - "sandslash-alola": 1.632349505399691, - "nidoqueen": 2.7079952247144092, - "nidoking": 1.630007967590601, - "clefairy": 9.962241219892103, - "clefable": 2.6145592220845812, - "jigglypuff": 32.983889389317, - "wigglytuff": 2.4147080097313975, - "gloom": 5.40298006412884, - "vileplume": 2.936057426454743, - "dugtrio": 4.229743199753365, - "dugtrio-alola": 3.163987342910923, - "persian": 4.1265601032032455, - "persian-alola": 4.056725825142315, - "golduck": 4.112080130162489, - "poliwrath": 2.5859990631469842, - "kadabra": 3.4352342444599167, - "machoke": 3.958724241007634, - "tentacruel": 2.243023266797116, - "slowbro": 1.9949058449216004, - "magneton": 2.7443183764221954, - "haunter": 3.6277383605586015, - "kingler": 3.9038443472202142, - "exeggutor": 2.1676914121203854, - "marowak": 3.995636362118022, - "marowak-alola": 1.5147923975130206, - "hitmonlee": 2.1318050475957224, - "hitmonchan": 1.8452651871087207, - "lickitung": 1.8371225187185334, - "weezing": 1.2390368841781343, - "weezing-galar": 2.509993208664328, - "rhydon": 4.622824192715173, - "chansey": 18.585755063910035, - "tangela": 7.351519518695659, - "kangaskhan": 1.7362006735062478, - "seadra": 6.449192108600477, - "seaking": 2.9154659227263706, - "starmie": 1.7330950725828638, - "mr-mime": 5.946412445297626, - "mr-mime-galar": 2.8229141109938336, - "scyther": 2.212791658805425, - "jynx": 3.5752351890545793, - "electabuzz": 2.6393580375036843, - "magmar": 1.2767636400754343, - "tauros": 2.05231165328128, - "ditto": 3.4815290653685924, - "vaporeon": 3.9965487380747646, - "jolteon": 1.8483707555403788, - "flareon": 1.7244326642709844, - "porygon": 2.65802299365775, - "dragonair": 1.5633989632528733, - "noctowl": 4.332933865192573, - "lanturn": 2.6670390185363333, - "togetic": 5.682258590523776, - "xatu": 2.9627183677246953, - "bellossom": 3.068097828755472, - "azumarill": 2.837481462821361, - "sudowoodo": 3.530919639176508, - "politoed": 3.1966916043162192, - "quagsire": 10.327796258636624, - "slowking": 2.644294270743055, - "dunsparce": 2.91183618785848, - "qwilfish": 3.561870986111879, - "sneasel": 2.0115596837140117, - "piloswine": 1.8732685461847791, - "octillery": 3.110241023957422, - "mantine": 2.125838172991532, - "skarmory": 1.3585941555978431, - "hitmontop": 2.4543078659612716, - "miltank": 3.724957298063858, - "grovyle": 9.728754802027893, - "sceptile": 1.6639323240188761, - "combusken": 3.026706053273548, - "blaziken": 1.3544243077286127, - "marshtomp": 4.651456230456646, - "swampert": 2.242702359960811, - "linoone": 4.880473927536542, - "linoone-galar": 4.492227666577595, - "pelipper": 5.5838142853188, - "ninjask": 6.555934910952319, - "exploud": 1.4517006046118441, - "lairon": 2.5022759678918085, - "manectric": 1.66691786988508, - "roselia": 3.5125622384241004, - "sharpedo": 6.362732046353472, - "wailmer": 8.216227746555832, - "torkoal": 1.535689883330214, - "flygon": 2.255267494929905, - "altaria": 1.3787332202733928, - "whiscash": 3.8687734944879004, - "crawdaunt": 2.8897278421692283, - "claydol": 3.7302772847123755, - "cradily": 2.338754024044041, - "armaldo": 1.793773943486289, - "dusclops": 3.212009403836556, - "absol": 1.7577963190598611, - "glalie": 3.585602255197482, - "sealeo": 3.8998174431085704, - "relicanth": 3.9763321850811844, - "metang": 2.190913110564436, - "luxray": 3.881891372236776, - "vespiquen": 2.2837659720314867, - "cherrim": 7.229957051163101, - "gastrodon": 3.8903646428415612, - "drifblim": 3.2558729160639137, - "lopunny": 3.332088787025235, - "skuntank": 1.1036254778583954, - "bronzong": 2.1122918739356598, - "munchlax": 1.8894647171899992, - "drapion": 1.9507394408659628, - "abomasnow": 3.3488771238078883, - "froslass": 2.4836547124581463, - "rotom": 3.8150164339145873, - "stoutland": 2.2663987783292296, - "liepard": 7.007420257284695, - "musharna": 1.3329355289656173, - "unfezant": 4.844629642786177, - "boldore": 4.811210365620059, - "swoobat": 4.230874061669223, - "audino": 2.1336389464307954, - "gurdurr": 2.4544995651808392, - "palpitoad": 7.1964191673028335, - "seismitoad": 12.006885038114685, - "scolipede": 2.4478704667792597, - "whimsicott": 5.500413261536288, - "lilligant": 3.856388024143852, - "basculin-red-striped": 3.501948901224988, - "basculin-blue-striped": 5.079493293579847, - "krookodile": 3.5846564637076903, - "maractus": 2.8793485830122085, - "crustle": 2.1148432685891274, - "sigilyph": 1.8668313831274448, - "cofagrigus": 2.4588433429211323, - "garbodor": 1.53242004469049, - "cinccino": 4.024818159654819, - "vanillish": 1.8140233967554051, - "emolga": 2.834488232979154, - "escavalier": 1.3252234264310707, - "amoonguss": 2.4273284162154827, - "jellicent": 1.8686641289424917, - "galvantula": 1.573996055379606, - "klang": 2.343922486379914, - "klinklang": 2.6463319389301936, - "beheeyem": 1.6161584136358151, - "lampent": 1.690528632695464, - "fraxure": 1.4065610593821392, - "beartic": 1.5184373188098235, - "cryogonal": 1.314462378820157, - "accelgor": 2.6863757963427077, - "stunfisk": 1.6926592786471981, - "stunfisk-galar": 2.290436976902157, - "mienshao": 3.357343441936771, - "druddigon": 1.5334274387208284, - "golurk": 2.4400738367515595, - "bisharp": 1.8388839965265436, - "bouffalant": 1.1678952245266965, - "heatmor": 1.5427123827502456, - "durant": 2.2360703032575127, - "diggersby": 3.9176710987830843, - "talonflame": 2.3556807452466764, - "pangoro": 1.76337210878848, - "doublade": 1.9625706691140266, - "malamar": 2.682861205666171, - "barbaracle": 2.668048304287164, - "heliolisk": 3.4249992243519767, - "tyrantrum": 1.6527228581307578, - "aurorus": 2.6223042298712613, - "hawlucha": 3.2767509025677666, - "dedenne": 3.8113493175260347, - "klefki": 2.542120018600248, - "trevenant": 3.032072521875719, - "gourgeist-average": 4.572807321317139, - "charjabug": 3.872892207121974, - "vikavolt": 1.732872001133448, - "ribombee": 5.503171660978829, - "lycanroc-midday": 4.059092945718584, - "lycanroc-midnight": 2.9149996256861943, - "mudsdale": 2.0876798859012364, - "araquanid": 2.2053897130217046, - "lurantis": 2.8987326096521824, - "shiinotic": 7.33964191232292, - "salazzle": 2.345942526501621, - "bewear": 1.7176218716570797, - "tsareena": 3.524096545034272, - "comfey": 5.719430007057342, - "oranguru": 2.082177719618644, - "passimian": 2.3127288378035407, - "palossand": 2.817031550273743, - "pyukumuku": 55.38310039836671, - "togedemaru": 1.8455843585075913, - "mimikyu-disguised": 3.661742241466986, - "greedent": 1.9298811140806529, - "orbeetle": 1.499930166203424, - "thievul": 1.5785190764743415, - "eldegoss": 4.757484585008736, - "dubwool": 3.035740168463329, - "drednaw": 2.3776809050467085, - "boltund": 4.780238294554476, - "carkol": 2.162003029045116, - "coalossal": 1.8757775557647176, - "sandaconda": 4.2900116792699565, - "cramorant": 5.100297262018545, - "barraskewda": 6.128647660936986, - "toxtricity-amped": 2.2605827355088266, - "centiskorch": 1.6868073631034521, - "grapploct": 1.8423915576981835, - "polteageist": 2.3100116339425183, - "hatterene": 2.673111642619971, - "grimmsnarl": 4.499255907190962, - "obstagoon": 2.520262062498892, - "perrserker": 2.684433049271118, - "alcremie": 1.674020768275049, - "falinks": 3.288754228142619, - "pincurchin": 3.2048553854018436, - "frosmoth": 2.229859964344115, - "indeedee-male": 2.5973864688273807, - "morpeko": 2.7180268379705557, - "copperajah": 1.939639452155712, - "duraludon": 1.1321734577125762, - "drakloak": 3.541269049883293, - "ivysaur": 3.1408399323518648 + "ivysaur": 3.1408399323518648, + "charmeleon": 3.1362156924071725, + "wartortle": 3.651903460265477, + "butterfree": 4.157069859322726, + "raichu": 5.309501782421996, + "raichu-alola": 3.0803370728939736, + "sandslash": 3.0062876582870883, + "sandslash-alola": 1.6265837839250203, + "nidoqueen": 2.7062992889799755, + "nidoking": 1.6262350585834358, + "clefairy": 9.969694671950009, + "clefable": 2.6211504252675057, + "jigglypuff": 33.073705792655346, + "wigglytuff": 2.4167349410495396, + "gloom": 5.399577634803219, + "vileplume": 2.936898543442969, + "dugtrio": 4.23189737045592, + "dugtrio-alola": 3.158924286127368, + "persian": 4.124735193171522, + "persian-alola": 4.05523207845707, + "golduck": 4.12277887324137, + "poliwrath": 2.59336057535977, + "kadabra": 3.4248482799864375, + "machoke": 3.962172242115323, + "tentacruel": 2.2433444458729856, + "slowbro": 1.992169683617298, + "magneton": 2.7407429693708933, + "haunter": 3.6232563097133648, + "kingler": 3.9190379632606813, + "exeggutor": 2.1664150897853385, + "marowak": 3.999494656292618, + "marowak-alola": 1.510073209547151, + "hitmonlee": 2.1303349653208103, + "hitmonchan": 1.8420122793022888, + "lickitung": 1.8373292151891318, + "weezing": 1.2367826801134418, + "weezing-galar": 2.5095441631879236, + "rhydon": 4.633977651798399, + "chansey": 18.510622500425356, + "tangela": 7.37439697554686, + "kangaskhan": 1.734804913683377, + "seadra": 6.470353626770844, + "seaking": 2.91826475382369, + "starmie": 1.733387835500426, + "mr-mime": 5.9296793490820665, + "mr-mime-galar": 2.812585425256671, + "scyther": 2.204749341267027, + "jynx": 3.5646897929534367, + "electabuzz": 2.6421113950810478, + "magmar": 1.2727289395400372, + "tauros": 2.053338155145698, + "ditto": 3.462724862856395, + "vaporeon": 4.006322340708764, + "jolteon": 1.8494985243472, + "flareon": 1.719750926314732, + "porygon": 2.656604968826232, + "dragonair": 1.5607897564085822, + "noctowl": 4.315333968297916, + "lanturn": 2.677758845972822, + "togetic": 5.679397711190138, + "xatu": 2.951018931161059, + "bellossom": 3.076674904908288, + "azumarill": 2.8282890315256526, + "sudowoodo": 3.53734835482339, + "politoed": 3.2032895457943287, + "quagsire": 10.382187435800601, + "slowking": 2.6420837249453255, + "dunsparce": 2.906909135253418, + "qwilfish": 3.5633592348509384, + "sneasel": 2.0059762534469594, + "piloswine": 1.8737158171527037, + "octillery": 3.117425047337539, + "mantine": 2.123937599692323, + "skarmory": 1.352619254782042, + "hitmontop": 2.4524656725893377, + "miltank": 3.726947640757099, + "grovyle": 9.75223337277283, + "sceptile": 1.666921621820563, + "combusken": 3.0243837886814773, + "blaziken": 1.3513727599013792, + "marshtomp": 4.664384610959435, + "swampert": 2.2498486352890543, + "linoone": 4.87616513701394, + "linoone-galar": 4.489432830253641, + "pelipper": 5.574800491179621, + "ninjask": 6.540392278483951, + "exploud": 1.4508848582600404, + "lairon": 2.5002259624682326, + "manectric": 1.6654413031799506, + "roselia": 3.507247099892875, + "sharpedo": 6.371805756144276, + "wailmer": 8.226895178490041, + "torkoal": 1.5326809828330652, + "flygon": 2.2530248344462134, + "altaria": 1.3760059051837348, + "whiscash": 3.873699837016603, + "crawdaunt": 2.89588472708767, + "claydol": 3.7267884753078846, + "cradily": 2.3413826056169302, + "armaldo": 1.7924856442030648, + "dusclops": 3.2105494083934616, + "absol": 1.7553207574596523, + "glalie": 3.5767814919117495, + "sealeo": 3.903752134448613, + "relicanth": 3.989684074159238, + "metang": 2.182435841697364, + "luxray": 3.8848219587646815, + "vespiquen": 2.276596282647141, + "cherrim": 7.243828454840807, + "gastrodon": 3.901091071461517, + "drifblim": 3.2470094865129333, + "lopunny": 3.327982569173643, + "skuntank": 1.1012997249649155, + "bronzong": 2.1010037229822474, + "munchlax": 1.885347499058072, + "drapion": 1.947603359505234, + "abomasnow": 3.34452533441083, + "froslass": 2.4771918001694235, + "rotom": 3.8203767761618295, + "stoutland": 2.263845466422726, + "liepard": 7.010928912876681, + "musharna": 1.3299925415055487, + "unfezant": 4.825682362373188, + "boldore": 4.821485146759708, + "swoobat": 4.214076902001795, + "audino": 2.1322743739768937, + "gurdurr": 2.459429337755217, + "palpitoad": 7.217871627817761, + "seismitoad": 12.0358399372402, + "scolipede": 2.440676259073502, + "whimsicott": 5.51518174176836, + "lilligant": 3.864658127414654, + "basculin-red-striped": 3.504494322317358, + "basculin-blue-striped": 5.0949062049632365, + "krookodile": 3.5881679989491655, + "maractus": 2.8876271454383526, + "crustle": 2.1151223091574183, + "sigilyph": 1.8605841375209, + "cofagrigus": 2.4562001326098724, + "garbodor": 1.529821059366674, + "cinccino": 4.016187150778485, + "vanillish": 1.8092203637333744, + "emolga": 2.831960187384597, + "escavalier": 1.3210322989658352, + "amoonguss": 2.4262521779270374, + "jellicent": 1.8719077111104063, + "galvantula": 1.574931678814464, + "klang": 2.340768546193318, + "klinklang": 2.638401406774009, + "beheeyem": 1.6136484713332715, + "lampent": 1.6852573413209502, + "fraxure": 1.4045075785181595, + "beartic": 1.516807963473422, + "cryogonal": 1.310420988018126, + "accelgor": 2.6823372046379377, + "stunfisk": 1.6964320194928455, + "stunfisk-galar": 2.2891488386991936, + "mienshao": 3.3589409076529013, + "druddigon": 1.5301543018612553, + "golurk": 2.4441289468049505, + "bisharp": 1.8314805702399855, + "bouffalant": 1.1627491470618183, + "heatmor": 1.5388396626448198, + "durant": 2.2289199162138638, + "diggersby": 3.9197762141287154, + "talonflame": 2.3473270993629405, + "pangoro": 1.764475942042739, + "doublade": 1.9584063452657232, + "malamar": 2.680346074565641, + "barbaracle": 2.6739287330154897, + "heliolisk": 3.4257146808934626, + "tyrantrum": 1.6528103709094204, + "aurorus": 2.619276259829688, + "hawlucha": 3.2750153155847403, + "dedenne": 3.8241047171327147, + "klefki": 2.5391981400176857, + "trevenant": 3.0371966535048225, + "gourgeist-average": 4.565712015106627, + "charjabug": 3.8743598398615084, + "vikavolt": 1.7325781784029162, + "ribombee": 5.50868973113726, + "lycanroc-midday": 4.06169003918131, + "lycanroc-midnight": 2.9179047799271753, + "mudsdale": 2.091674412428617, + "araquanid": 2.205657638760403, + "lurantis": 2.9017842905817686, + "shiinotic": 7.359868317213696, + "salazzle": 2.3350122240926687, + "bewear": 1.7161858059003043, + "tsareena": 3.52470746867798, + "comfey": 5.741544716930139, + "oranguru": 2.073838969942993, + "passimian": 2.3132411652011626, + "palossand": 2.821878728913057, + "pyukumuku": 55.49463325806723, + "togedemaru": 1.8407729725115958, + "mimikyu-disguised": 3.6603289118350766, + "greedent": 1.9263939942509025, + "orbeetle": 1.4940517476755546, + "thievul": 1.5767489274504665, + "eldegoss": 4.766956171427741, + "dubwool": 3.0379541944349797, + "drednaw": 2.3844874679623453, + "boltund": 4.784844718537828, + "carkol": 2.1568014578595305, + "coalossal": 1.8734671444501496, + "sandaconda": 4.295780891527562, + "cramorant": 5.099643878366505, + "barraskewda": 6.140360560978525, + "toxtricity-amped": 2.258595336656808, + "centiskorch": 1.6816151135713473, + "grapploct": 1.8467111482759384, + "polteageist": 2.306633135004719, + "hatterene": 2.672720175920177, + "grimmsnarl": 4.5075308617897, + "obstagoon": 2.519479911651927, + "perrserker": 2.678894093527462, + "alcremie": 1.6764501405399825, + "falinks": 3.291969467103638, + "pincurchin": 3.2130711127289384, + "frosmoth": 2.2225150198817936, + "indeedee-male": 2.5897015178194716, + "morpeko": 2.718953691057858, + "copperajah": 1.9356669153941464, + "duraludon": 1.1291812508685641, + "drakloak": 3.534451667333439 }, "charmeleon": { - "ivysaur": 3.944982286026063, - "wartortle": 2.072996382263036, - "butterfree": 5.402857058182743, - "raichu": 4.55851653331568, - "raichu-alola": 3.017306671729307, - "sandslash": 1.9416280330488485, - "sandslash-alola": 3.5260063215116, - "nidoqueen": 2.382099458106985, - "nidoking": 1.6325609048144987, - "clefairy": 9.16342403711276, - "clefable": 1.9766236253435996, - "jigglypuff": 26.984012329371225, - "wigglytuff": 1.9934928764775925, - "gloom": 7.111954898608122, - "vileplume": 3.9504362340033428, - "dugtrio": 2.622423392635348, - "dugtrio-alola": 3.828170812854464, - "persian": 3.933171581750047, - "persian-alola": 3.8125144936923414, - "golduck": 2.1852130784440815, - "poliwrath": 1.4224842845233914, - "kadabra": 3.5169688037198856, - "machoke": 3.4097851876810705, - "tentacruel": 1.6033272451445701, - "slowbro": 1.5705597300496013, - "magneton": 4.367256942192947, - "haunter": 4.246017176319155, - "kingler": 1.9189606427020793, - "exeggutor": 2.2699984414878647, - "marowak": 2.7382381764406114, - "marowak-alola": 1.8613581961701489, - "hitmonlee": 2.0587491461681333, - "hitmonchan": 1.9927327306822422, - "lickitung": 1.68769763745853, - "weezing": 1.6528044748268456, - "weezing-galar": 2.827213911219214, - "rhydon": 1.8305078246818764, - "chansey": 18.074862126350833, - "tangela": 7.543376978614284, - "kangaskhan": 1.6006413538932527, - "seadra": 3.3898506105854924, - "seaking": 1.7263488519883055, - "starmie": 1.2706801941492025, - "mr-mime": 5.811651861170999, - "mr-mime-galar": 4.3515512509818866, - "scyther": 3.226597332064264, - "jynx": 6.134974730685301, - "electabuzz": 2.2340386364320755, - "magmar": 1.497636116103236, - "tauros": 1.8036760916135137, - "ditto": 3.8409828339510064, - "vaporeon": 2.2245480839423393, - "jolteon": 1.677867877683537, - "flareon": 2.055008238016064, - "porygon": 2.629657608295764, - "dragonair": 1.9354630387465412, - "noctowl": 4.885934567414706, - "lanturn": 1.3693336078959013, - "togetic": 5.3157919425643225, - "xatu": 3.5422073648056456, - "bellossom": 3.1224937311095493, - "azumarill": 1.5182067292209136, - "sudowoodo": 1.9497443627767135, - "politoed": 1.7684423213077738, - "quagsire": 3.562558091174675, - "slowking": 1.8804482345144935, - "dunsparce": 3.2105929030258764, - "qwilfish": 2.644274194653744, - "sneasel": 2.5373629842221654, - "piloswine": 1.5587531472368141, - "octillery": 1.8966275305771731, - "mantine": 1.6903641344384766, - "skarmory": 3.097770077742269, - "hitmontop": 2.331222636644361, - "miltank": 3.55910188102576, - "grovyle": 9.47425403012852, - "sceptile": 1.7234915403779474, - "combusken": 2.9104238454709, - "blaziken": 1.4412947212464888, - "marshtomp": 1.787728417349468, - "swampert": 1.000735121630817, - "linoone": 4.828952761129621, - "linoone-galar": 4.254624864015744, - "pelipper": 5.150047258027428, - "ninjask": 9.270034959491133, - "exploud": 1.5479482676932539, - "lairon": 2.1376012523035177, - "manectric": 1.6831927797750357, - "roselia": 4.550858826854762, - "sharpedo": 3.8453953811585317, - "wailmer": 5.012335249000067, - "torkoal": 1.8581269225039967, - "flygon": 2.458418616231514, - "altaria": 1.770757602327763, - "whiscash": 1.4197945406291184, - "crawdaunt": 1.5025345011264146, - "claydol": 2.8686633354685043, - "cradily": 2.0331926416549484, - "armaldo": 1.6133407436312717, - "dusclops": 3.2003901142115545, - "absol": 1.921804932437325, - "glalie": 5.159085771712329, - "sealeo": 2.47578163683212, - "relicanth": 1.419830456725364, - "metang": 3.8402577130102102, - "luxray": 3.478316045117281, - "vespiquen": 3.3290941813121346, - "cherrim": 7.296594930297207, - "gastrodon": 1.569851707336738, - "drifblim": 3.8418000041699445, - "lopunny": 3.2534003468729416, - "skuntank": 1.4146817705665484, - "bronzong": 4.023564840674114, - "munchlax": 1.7697135996145141, - "drapion": 2.475970907524056, - "abomasnow": 5.361654890713856, - "froslass": 3.7758231486243883, - "rotom": 3.450061553715865, - "stoutland": 2.1590118730340375, - "liepard": 6.734204410080698, - "musharna": 1.4367076363378377, - "unfezant": 6.0279403347276395, - "boldore": 2.566335832680033, - "swoobat": 5.067802453538359, - "audino": 2.1107537766055025, - "gurdurr": 2.0521314523586196, - "palpitoad": 2.783373287714812, - "seismitoad": 5.273443150681448, - "scolipede": 4.276056347829915, - "whimsicott": 4.171873172829107, - "lilligant": 4.060885679094564, - "basculin-red-striped": 2.100411778548918, - "basculin-blue-striped": 2.652244436362418, - "krookodile": 2.4589073945838855, - "maractus": 2.908245890457771, - "crustle": 1.9442856357143743, - "sigilyph": 2.2059875610982917, - "cofagrigus": 2.517436518154658, - "garbodor": 1.7223815078849087, - "cinccino": 4.329625289548185, - "vanillish": 2.6634313315902913, - "emolga": 2.7942616770202555, - "escavalier": 2.963903229374701, - "amoonguss": 3.1096600347633165, - "jellicent": 1.2998810744758813, - "galvantula": 1.98209391592402, - "klang": 3.4662905740206273, - "klinklang": 4.626466262228903, - "beheeyem": 1.5554031786262066, - "lampent": 2.3871749478560336, - "fraxure": 1.670840871639608, - "beartic": 2.152001429423523, - "cryogonal": 1.9414648515671304, - "accelgor": 3.815553505066811, - "stunfisk": 1.0171381776680772, - "stunfisk-galar": 2.6932760875035004, - "mienshao": 2.91796793209763, - "druddigon": 1.8292099960210777, - "golurk": 1.6327610156113523, - "bisharp": 3.0867981421152226, - "bouffalant": 1.1964355970092497, - "heatmor": 1.770212212910073, - "durant": 7.245219640153744, - "diggersby": 2.5099141936992915, - "talonflame": 2.6286265946793916, - "pangoro": 1.6434210842634458, - "doublade": 3.8668724109784263, - "malamar": 2.644136614486743, - "barbaracle": 1.226744486982775, - "heliolisk": 3.7676082299759424, - "tyrantrum": 1.6563276636888036, - "aurorus": 2.1277113804524435, - "hawlucha": 3.2515110693689984, - "dedenne": 2.907422594115458, - "klefki": 4.395986319568238, - "trevenant": 3.8302532555884214, - "gourgeist-average": 7.263848029199114, - "charjabug": 4.8395703034341455, - "vikavolt": 2.386367829994924, - "ribombee": 6.146559825597901, - "lycanroc-midday": 2.37824518775387, - "lycanroc-midnight": 1.7940785524253449, - "mudsdale": 1.39122846638328, - "araquanid": 1.9301040957151956, - "lurantis": 3.0693754210105073, - "shiinotic": 5.466676970849841, - "salazzle": 2.861599375039418, - "bewear": 1.6395261417745273, - "tsareena": 3.894034469497517, - "comfey": 4.511311123776055, - "oranguru": 2.3668336536624803, - "passimian": 2.108803563112467, - "palossand": 1.8123507127423, - "pyukumuku": 36.79374230277264, - "togedemaru": 2.7358362408098342, - "mimikyu-disguised": 3.501181824832985, - "greedent": 2.0309237169579335, - "orbeetle": 2.2377741721391597, - "thievul": 1.6751307884728308, - "eldegoss": 4.7578969140841965, - "dubwool": 3.602141855676668, - "drednaw": 0.9306927581885773, - "boltund": 4.321913655508369, - "carkol": 1.8665345755644878, - "coalossal": 1.5886561404536406, - "sandaconda": 2.9451464813753017, - "cramorant": 3.8237694107535987, - "barraskewda": 3.5324497681518805, - "toxtricity-amped": 2.400165656301625, - "centiskorch": 1.8107615147340883, - "grapploct": 1.4509644952548444, - "polteageist": 2.3815105840418713, - "hatterene": 2.389685701525924, - "grimmsnarl": 3.4946128269971477, - "obstagoon": 2.3562126486679453, - "perrserker": 4.589904869864132, - "alcremie": 1.439093417754456, - "falinks": 3.230013342417856, - "pincurchin": 2.6484455943146896, - "frosmoth": 4.19027601960042, - "indeedee-male": 2.8602632591278065, - "morpeko": 2.5594595917762955, - "copperajah": 3.1650048118402925, - "duraludon": 1.6593558099674057, - "drakloak": 4.638798937349062, - "charmeleon": 3.5095514781317547 + "ivysaur": 3.9512616291651086, + "charmeleon": 3.5095514781317547, + "wartortle": 2.0652281835923496, + "butterfree": 5.408806792515153, + "raichu": 4.5532412354551, + "raichu-alola": 3.0107156547805656, + "sandslash": 1.9370210292831724, + "sandslash-alola": 3.5328075679691064, + "nidoqueen": 2.37629101172416, + "nidoking": 1.629793480915248, + "clefairy": 9.166293537007851, + "clefable": 1.9729933741264434, + "jigglypuff": 26.984804059425073, + "wigglytuff": 1.9910179461228559, + "gloom": 7.120921137093679, + "vileplume": 3.9608706502427413, + "dugtrio": 2.6106418075796523, + "dugtrio-alola": 3.824587145896894, + "persian": 3.9273198990764144, + "persian-alola": 3.807131328791379, + "golduck": 2.1742337924743906, + "poliwrath": 1.416765611609628, + "kadabra": 3.5097460217494536, + "machoke": 3.4026516309989354, + "tentacruel": 1.5949789566135544, + "slowbro": 1.5681130975002016, + "magneton": 4.374903786791984, + "haunter": 4.246708013905938, + "kingler": 1.9112210840452462, + "exeggutor": 2.2692416484328835, + "marowak": 2.732481359997073, + "marowak-alola": 1.8609668992474018, + "hitmonlee": 2.0556551488581625, + "hitmonchan": 1.9918030733374028, + "lickitung": 1.6848492535067976, + "weezing": 1.6528449355448718, + "weezing-galar": 2.8285809996530817, + "rhydon": 1.8226410194226998, + "chansey": 17.99121936693936, + "tangela": 7.56359890080641, + "kangaskhan": 1.5967145508279952, + "seadra": 3.377998385580167, + "seaking": 1.7179440838415545, + "starmie": 1.2673979255549899, + "mr-mime": 5.796217745057555, + "mr-mime-galar": 4.352275645624044, + "scyther": 3.227631319858598, + "jynx": 6.146144102010945, + "electabuzz": 2.230139357305152, + "magmar": 1.4961392287517672, + "tauros": 1.7999598709720028, + "ditto": 3.8179765238374888, + "vaporeon": 2.213752206383884, + "jolteon": 1.6750609651959256, + "flareon": 2.0479817258725315, + "porygon": 2.627347814143574, + "dragonair": 1.9331420947037197, + "noctowl": 4.874919600007514, + "lanturn": 1.3635229329269372, + "togetic": 5.316948237499998, + "xatu": 3.537897568437792, + "bellossom": 3.130188957683813, + "azumarill": 1.5118638864198881, + "sudowoodo": 1.9413535471121564, + "politoed": 1.7591739916757199, + "quagsire": 3.5489389952559254, + "slowking": 1.8731672088232205, + "dunsparce": 3.2106081736630223, + "qwilfish": 2.634481841460296, + "sneasel": 2.5367193258860508, + "piloswine": 1.5573901554437197, + "octillery": 1.8912180887801417, + "mantine": 1.6825450732954974, + "skarmory": 3.105455854676283, + "hitmontop": 2.326845681506455, + "miltank": 3.557408594828351, + "grovyle": 9.486204387752899, + "sceptile": 1.726599045961876, + "combusken": 2.9071429493122976, + "blaziken": 1.4402634817424742, + "marshtomp": 1.7792760159792396, + "swampert": 0.9964868241960951, + "linoone": 4.823045314304129, + "linoone-galar": 4.247810780027702, + "pelipper": 5.137943918007249, + "ninjask": 9.281192994679586, + "exploud": 1.5461691546356362, + "lairon": 2.1354625409235197, + "manectric": 1.6829031538623698, + "roselia": 4.5541351815487285, + "sharpedo": 3.830213919210057, + "wailmer": 4.993891933951922, + "torkoal": 1.858744799142239, + "flygon": 2.455554836589312, + "altaria": 1.7703670013224309, + "whiscash": 1.414903067127852, + "crawdaunt": 1.497898851153034, + "claydol": 2.8613004393244825, + "cradily": 2.0295831512198337, + "armaldo": 1.6094299168223836, + "dusclops": 3.1994363142357494, + "absol": 1.9206146627680223, + "glalie": 5.16529293520367, + "sealeo": 2.4665329322249674, + "relicanth": 1.411940554096316, + "metang": 3.844370221723244, + "luxray": 3.4731403002938652, + "vespiquen": 3.332065439657504, + "cherrim": 7.307219634891457, + "gastrodon": 1.5627780895344658, + "drifblim": 3.837135677609715, + "lopunny": 3.247418336470105, + "skuntank": 1.4141633577284876, + "bronzong": 4.027431982879342, + "munchlax": 1.7644220802855317, + "drapion": 2.477966516445949, + "abomasnow": 5.375967871702585, + "froslass": 3.7832630941294303, + "rotom": 3.449186234290128, + "stoutland": 2.154300011796916, + "liepard": 6.731565950098139, + "musharna": 1.435284666597756, + "unfezant": 6.024260607555601, + "boldore": 2.5559538702506885, + "swoobat": 5.06165385256346, + "audino": 2.110436748592019, + "gurdurr": 2.0489130772311226, + "palpitoad": 2.771084590345245, + "seismitoad": 5.25886869581775, + "scolipede": 4.284430502071579, + "whimsicott": 4.178409110197928, + "lilligant": 4.071143916143223, + "basculin-red-striped": 2.091449095606436, + "basculin-blue-striped": 2.6399085818223607, + "krookodile": 2.4528599260517963, + "maractus": 2.915046796177523, + "crustle": 1.941981707644755, + "sigilyph": 2.204318338381314, + "cofagrigus": 2.516527504908171, + "garbodor": 1.719869517583847, + "cinccino": 4.325482760848629, + "vanillish": 2.667315659868164, + "emolga": 2.792103671328074, + "escavalier": 2.9632980481140896, + "amoonguss": 3.1127652866195468, + "jellicent": 1.297151119622189, + "galvantula": 1.9842742913455667, + "klang": 3.4677688625543146, + "klinklang": 4.633954345970309, + "beheeyem": 1.551641220440104, + "lampent": 2.3830075000714435, + "fraxure": 1.66912593449414, + "beartic": 2.1529918749364647, + "cryogonal": 1.9433439538010417, + "accelgor": 3.82127010117963, + "stunfisk": 1.0138153475059781, + "stunfisk-galar": 2.69105418487384, + "mienshao": 2.911250348973355, + "druddigon": 1.8265260601207145, + "golurk": 1.6299035765717034, + "bisharp": 3.087392400186828, + "bouffalant": 1.1954388934576334, + "heatmor": 1.767151664237431, + "durant": 7.274822373537751, + "diggersby": 2.4993633047111636, + "talonflame": 2.6270717274418645, + "pangoro": 1.6419895534612503, + "doublade": 3.87736779221125, + "malamar": 2.6405410984428004, + "barbaracle": 1.22094175058453, + "heliolisk": 3.7635727346743346, + "tyrantrum": 1.652181939329391, + "aurorus": 2.121800726724804, + "hawlucha": 3.247657847686394, + "dedenne": 2.9050984609096933, + "klefki": 4.408143436161971, + "trevenant": 3.837256930034843, + "gourgeist-average": 7.279205123215921, + "charjabug": 4.835646529665098, + "vikavolt": 2.3893495402518297, + "ribombee": 6.158287431068073, + "lycanroc-midday": 2.3658409398304623, + "lycanroc-midnight": 1.7867595882251057, + "mudsdale": 1.3884879615119405, + "araquanid": 1.925195675027344, + "lurantis": 3.0740780199761906, + "shiinotic": 5.471410675682456, + "salazzle": 2.8594972483767958, + "bewear": 1.6365053897124393, + "tsareena": 3.899806014191009, + "comfey": 4.51321031741538, + "oranguru": 2.3622302686352192, + "passimian": 2.1053314733079165, + "palossand": 1.8089959764371555, + "pyukumuku": 36.725618785225876, + "togedemaru": 2.737671175544486, + "mimikyu-disguised": 3.492978666921254, + "greedent": 2.0288073063240577, + "orbeetle": 2.238447757927676, + "thievul": 1.6734944656385435, + "eldegoss": 4.76462137132276, + "dubwool": 3.6034678111738536, + "drednaw": 0.9266145664068175, + "boltund": 4.317102000736904, + "carkol": 1.860281262130294, + "coalossal": 1.5825449270706415, + "sandaconda": 2.9410684994059046, + "cramorant": 3.8049239581096295, + "barraskewda": 3.5187345637477265, + "toxtricity-amped": 2.396923385021032, + "centiskorch": 1.807737116139434, + "grapploct": 1.4487824420761737, + "polteageist": 2.3798673966134536, + "hatterene": 2.386841194313206, + "grimmsnarl": 3.488192065463033, + "obstagoon": 2.352144593632034, + "perrserker": 4.597769857874337, + "alcremie": 1.4393110183878284, + "falinks": 3.2316602988913736, + "pincurchin": 2.6414940677197887, + "frosmoth": 4.196397187923933, + "indeedee-male": 2.8564322497265158, + "morpeko": 2.5570417030282018, + "copperajah": 3.17106609760322, + "duraludon": 1.6614036491772906, + "drakloak": 4.633471971007789 }, "wartortle": { - "ivysaur": 2.760806475644209, - "charmeleon": 4.928708597318736, - "butterfree": 4.074824944684755, - "raichu": 4.14961406342854, - "raichu-alola": 2.8345320996681735, - "sandslash": 2.892805874706652, - "sandslash-alola": 2.700540549507457, - "nidoqueen": 3.32141015492568, - "nidoking": 2.215376969141816, - "clefairy": 8.095917289724266, - "clefable": 1.8610252842745842, - "jigglypuff": 24.52868808167554, - "wigglytuff": 1.8366724069558193, - "gloom": 5.635830239841983, - "vileplume": 2.6820357857560584, - "dugtrio": 4.1330585004908045, - "dugtrio-alola": 4.184375150163758, - "persian": 4.004218569341365, - "persian-alola": 3.988847741646847, - "golduck": 2.6517308450226724, - "poliwrath": 1.577088767408827, - "kadabra": 3.355080916875621, - "machoke": 3.7141375072108, - "tentacruel": 1.9272047305432696, - "slowbro": 1.4979777196893393, - "magneton": 3.009322248422147, - "haunter": 3.813808764751298, - "kingler": 2.2287293672304944, - "exeggutor": 1.8480315433256775, - "marowak": 3.9680260468045887, - "marowak-alola": 2.8455659507952737, - "hitmonlee": 2.1132251148482575, - "hitmonchan": 1.9307977239719705, - "lickitung": 1.9176230210425562, - "weezing": 1.6461512469092627, - "weezing-galar": 2.679008528598965, - "rhydon": 4.469004275485236, - "chansey": 18.64496654767043, - "tangela": 4.948750726060976, - "kangaskhan": 1.751135103586245, - "seadra": 3.7316873079464994, - "seaking": 2.0206084424721844, - "starmie": 1.2021954370831884, - "mr-mime": 5.8771447582094405, - "mr-mime-galar": 3.5565222493067985, - "scyther": 2.709184384289861, - "jynx": 3.5883814804628624, - "electabuzz": 1.9089761368910225, - "magmar": 2.038330835656718, - "tauros": 1.9987074225720218, - "ditto": 2.648348948725796, - "vaporeon": 2.6032524533695818, - "jolteon": 1.5935295461700802, - "flareon": 2.7830202645885516, - "porygon": 2.5900487069331364, - "dragonair": 1.8810542752430999, - "noctowl": 5.321294495457453, - "lanturn": 1.4882045149960166, - "togetic": 5.486031097158777, - "xatu": 3.851682121204598, - "bellossom": 2.1690337399711246, - "azumarill": 1.7785528723224715, - "sudowoodo": 3.3188865142737765, - "politoed": 2.1115967982705195, - "quagsire": 4.740801313291129, - "slowking": 2.0765526188076215, - "dunsparce": 3.22961591771307, - "qwilfish": 2.953460293525443, - "sneasel": 2.547558608131493, - "piloswine": 2.083052519048512, - "octillery": 2.0305254045542838, - "mantine": 2.025224718447193, - "skarmory": 2.1355039040783703, - "hitmontop": 2.5329169295335547, - "miltank": 3.56963734623725, - "grovyle": 6.807663746566861, - "sceptile": 1.270120947951765, - "combusken": 4.159876985293614, - "blaziken": 2.06331043896472, - "marshtomp": 2.5007100158634126, - "swampert": 1.2607632262152935, - "linoone": 4.912964894656595, - "linoone-galar": 5.443073441571003, - "pelipper": 5.222932673470858, - "ninjask": 7.407011202919186, - "exploud": 1.588496134043277, - "lairon": 3.631938213268035, - "manectric": 1.6174843392857934, - "roselia": 3.3730144107082882, - "sharpedo": 4.819336847854853, - "wailmer": 5.689660918746052, - "torkoal": 2.826646495657968, - "flygon": 3.2830627881507324, - "altaria": 2.183643257237286, - "whiscash": 2.086146989528192, - "crawdaunt": 2.0938429896925204, - "claydol": 3.825552564780142, - "cradily": 2.086107260086459, - "armaldo": 2.30140221819508, - "dusclops": 3.1399923479512193, - "absol": 1.9818246540769535, - "glalie": 4.200431432464149, - "sealeo": 3.281006811426733, - "relicanth": 2.0160070862458355, - "metang": 2.7510801563668488, - "luxray": 3.1895015394775856, - "vespiquen": 2.7310837490721553, - "cherrim": 5.120949759663954, - "gastrodon": 2.0355956444041654, - "drifblim": 3.831201414459327, - "lopunny": 3.4218094275579407, - "skuntank": 1.4223967899229266, - "bronzong": 3.0213969134496153, - "munchlax": 1.9252581377534272, - "drapion": 2.4233157156491, - "abomasnow": 2.816498725084923, - "froslass": 2.8790572213237047, - "rotom": 3.1569582050538454, - "stoutland": 2.2749114551169773, - "liepard": 6.7006385484392155, - "musharna": 1.3487289974042502, - "unfezant": 6.688935565584622, - "boldore": 4.50787518799158, - "swoobat": 5.507765903307022, - "audino": 2.1659893823492196, - "gurdurr": 2.2101208924604876, - "palpitoad": 3.6736908906988557, - "seismitoad": 5.897337705604572, - "scolipede": 3.0842089350770165, - "whimsicott": 3.0043688535796056, - "lilligant": 2.7418770048900143, - "basculin-red-striped": 2.486931889067031, - "basculin-blue-striped": 3.195833658492866, - "krookodile": 3.4309723096939218, - "maractus": 1.9497314619832604, - "crustle": 2.6789386876561467, - "sigilyph": 2.3962168880355232, - "cofagrigus": 2.5212007250025192, - "garbodor": 1.7346136046181317, - "cinccino": 4.501796757564482, - "vanillish": 2.1783566080428773, - "emolga": 2.650354432705738, - "escavalier": 1.7544252229051365, - "amoonguss": 2.3184458442278553, - "jellicent": 1.160348957209807, - "galvantula": 1.2900030325055591, - "klang": 2.584975446974119, - "klinklang": 3.5198307945103378, - "beheeyem": 1.6428651430412993, - "lampent": 3.498048302459301, - "fraxure": 1.6429752413403285, - "beartic": 1.813187007089307, - "cryogonal": 1.6009987921410014, - "accelgor": 2.7238969217408107, - "stunfisk": 1.4758649191823876, - "stunfisk-galar": 2.906758369362358, - "mienshao": 3.153831978242266, - "druddigon": 1.9009407412973782, - "golurk": 2.250069320776381, - "bisharp": 3.1057631213150376, - "bouffalant": 1.2539564337120845, - "heatmor": 2.3925210659701808, - "durant": 3.0239307765679735, - "diggersby": 3.8091902609396504, - "talonflame": 3.7521343352070753, - "pangoro": 1.7179089242910845, - "doublade": 2.6567910237578753, - "malamar": 2.5663054192824335, - "barbaracle": 1.5249239568877093, - "heliolisk": 2.885428773001383, - "tyrantrum": 1.7391973187796568, - "aurorus": 2.690680292876458, - "hawlucha": 3.616234942524361, - "dedenne": 2.486950193336141, - "klefki": 3.0121093469058358, - "trevenant": 2.713745229225286, - "gourgeist-average": 5.833582669647658, - "charjabug": 3.5375958239470497, - "vikavolt": 1.6826170792015267, - "ribombee": 4.256646055556413, - "lycanroc-midday": 3.932577904186358, - "lycanroc-midnight": 2.770701454144185, - "mudsdale": 1.9226843031253016, - "araquanid": 1.7671755680077612, - "lurantis": 2.228594612042003, - "shiinotic": 4.295373789087478, - "salazzle": 3.993427628953474, - "bewear": 1.7308132377000514, - "tsareena": 2.794287597169407, - "comfey": 3.733865468638617, - "oranguru": 2.408338514030119, - "passimian": 2.274784511349132, - "palossand": 2.6121830379753677, - "pyukumuku": 34.50784063336262, - "togedemaru": 1.9911353475662472, - "mimikyu-disguised": 3.588378687022617, - "greedent": 2.1289398940087367, - "orbeetle": 1.6765699459152852, - "thievul": 1.7308227227338073, - "eldegoss": 3.3149203000254372, - "dubwool": 2.703053325935663, - "drednaw": 1.296147443372586, - "boltund": 4.010807035572019, - "carkol": 4.266664648978238, - "coalossal": 3.5920790152974575, - "sandaconda": 4.086056480345131, - "cramorant": 4.602400142040203, - "barraskewda": 3.9022657272130186, - "toxtricity-amped": 2.275992166985125, - "centiskorch": 2.387317849670615, - "grapploct": 1.6653185985643733, - "polteageist": 2.1631822406507766, - "hatterene": 2.3139477260797303, - "grimmsnarl": 3.5287226952846487, - "obstagoon": 2.9557719481764493, - "perrserker": 3.2973688318227916, - "alcremie": 1.2559632436041839, - "falinks": 3.156144919910237, - "pincurchin": 2.67550503281973, - "frosmoth": 2.3698477271536738, - "indeedee-male": 2.885677497700838, - "morpeko": 2.37766366353124, - "copperajah": 2.438328008698406, - "duraludon": 1.601060907153738, - "drakloak": 4.588355207727698, - "wartortle": 2.4014968305476643 + "ivysaur": 2.7531684287764975, + "charmeleon": 4.94354294630831, + "wartortle": 2.4014968305476643, + "butterfree": 4.068122855631255, + "raichu": 4.14248908632549, + "raichu-alola": 2.827073649586693, + "sandslash": 2.902760975242174, + "sandslash-alola": 2.7079496332646094, + "nidoqueen": 3.328865034795858, + "nidoking": 2.220926976186113, + "clefairy": 8.092409921091864, + "clefable": 1.8613089178456477, + "jigglypuff": 24.53465920211451, + "wigglytuff": 1.8370452030602142, + "gloom": 5.632395576394708, + "vileplume": 2.67607124386893, + "dugtrio": 4.141905790197192, + "dugtrio-alola": 4.1980918240669745, + "persian": 4.0053463314576465, + "persian-alola": 3.9916604117692964, + "golduck": 2.6515479787123652, + "poliwrath": 1.5723300595860656, + "kadabra": 3.3498569596351357, + "machoke": 3.7172173293787134, + "tentacruel": 1.9256127700030001, + "slowbro": 1.4963952615504201, + "magneton": 3.0109566516781, + "haunter": 3.8092757643139943, + "kingler": 2.2300854924572593, + "exeggutor": 1.8445676957902901, + "marowak": 3.9818671413564024, + "marowak-alola": 2.855108835351797, + "hitmonlee": 2.1131380025524864, + "hitmonchan": 1.9308620746433387, + "lickitung": 1.9186801068457782, + "weezing": 1.6480693485291953, + "weezing-galar": 2.682741327686634, + "rhydon": 4.492204802994978, + "chansey": 18.577345777322698, + "tangela": 4.9410290171604085, + "kangaskhan": 1.752320343222836, + "seadra": 3.732216322939957, + "seaking": 2.0192444339911075, + "starmie": 1.2005583806777673, + "mr-mime": 5.870338773070473, + "mr-mime-galar": 3.554926399883414, + "scyther": 2.7096912630081667, + "jynx": 3.5748000878636557, + "electabuzz": 1.9037726300496094, + "magmar": 2.0431513635139082, + "tauros": 2.0016626856367177, + "ditto": 2.63156206731136, + "vaporeon": 2.596028093722237, + "jolteon": 1.5902481940454407, + "flareon": 2.7875640743999206, + "porygon": 2.5907378825780047, + "dragonair": 1.8798438164282427, + "noctowl": 5.3199116724570015, + "lanturn": 1.486351577593845, + "togetic": 5.494539700696986, + "xatu": 3.853018409018554, + "bellossom": 2.1645827846662082, + "azumarill": 1.7793329589143547, + "sudowoodo": 3.329521764746272, + "politoed": 2.10996208077229, + "quagsire": 4.750191396797402, + "slowking": 2.0745672269057507, + "dunsparce": 3.2348603889573084, + "qwilfish": 2.9533123334545373, + "sneasel": 2.5498946665122944, + "piloswine": 2.0900629536466573, + "octillery": 2.030421848802646, + "mantine": 2.020067494890147, + "skarmory": 2.1416231228608247, + "hitmontop": 2.5352077885873516, + "miltank": 3.57408539755486, + "grovyle": 6.789998232966571, + "sceptile": 1.266477645229663, + "combusken": 4.170740370775949, + "blaziken": 2.069673380886007, + "marshtomp": 2.5055966684653472, + "swampert": 1.2629209996026582, + "linoone": 4.915804823568733, + "linoone-galar": 5.450369989695927, + "pelipper": 5.217349898489086, + "ninjask": 7.407075923705246, + "exploud": 1.5897793350488394, + "lairon": 3.65187227303027, + "manectric": 1.6176778180704352, + "roselia": 3.363415946271492, + "sharpedo": 4.819093247674654, + "wailmer": 5.690944316812935, + "torkoal": 2.8386558754060065, + "flygon": 3.2898348157300172, + "altaria": 2.1858899115152823, + "whiscash": 2.0885380655434314, + "crawdaunt": 2.094818503596958, + "claydol": 3.831321721916443, + "cradily": 2.0855134836261953, + "armaldo": 2.3066821391599914, + "dusclops": 3.1401244965037174, + "absol": 1.9850299801976383, + "glalie": 4.206243005955631, + "sealeo": 3.284502970109667, + "relicanth": 2.019458907072294, + "metang": 2.7518539287755064, + "luxray": 3.183823513205561, + "vespiquen": 2.731852888767734, + "cherrim": 5.107712090295065, + "gastrodon": 2.0370342437888573, + "drifblim": 3.8258136153486726, + "lopunny": 3.423520298888663, + "skuntank": 1.424391786833998, + "bronzong": 3.0248601081176676, + "munchlax": 1.923080864562146, + "drapion": 2.4281734214398414, + "abomasnow": 2.811442271048491, + "froslass": 2.8810597454063696, + "rotom": 3.153394863196356, + "stoutland": 2.275465096721957, + "liepard": 6.707250701851461, + "musharna": 1.34691104111749, + "unfezant": 6.701271046101196, + "boldore": 4.524504798690964, + "swoobat": 5.509671783911328, + "audino": 2.1689823067632954, + "gurdurr": 2.2129825179210907, + "palpitoad": 3.6779120716308737, + "seismitoad": 5.895824584399209, + "scolipede": 3.085375956363256, + "whimsicott": 3.0001200336474887, + "lilligant": 2.7358022343799524, + "basculin-red-striped": 2.4880407414582146, + "basculin-blue-striped": 3.1969116109412594, + "krookodile": 3.441614502486696, + "maractus": 1.9413772663468898, + "crustle": 2.6861279933590385, + "sigilyph": 2.3981189372069154, + "cofagrigus": 2.522336592698493, + "garbodor": 1.7345804582312856, + "cinccino": 4.50751770489526, + "vanillish": 2.1811757493030743, + "emolga": 2.6479756870917104, + "escavalier": 1.7562752459880413, + "amoonguss": 2.3136732225841703, + "jellicent": 1.1560450124772188, + "galvantula": 1.2870658860002462, + "klang": 2.5865612956264794, + "klinklang": 3.528773566526692, + "beheeyem": 1.641873167123788, + "lampent": 3.5105306494124613, + "fraxure": 1.643350768183535, + "beartic": 1.8161861467979592, + "cryogonal": 1.6000729303310464, + "accelgor": 2.721670560147869, + "stunfisk": 1.4774659338364287, + "stunfisk-galar": 2.916457818319722, + "mienshao": 3.1550957635072385, + "druddigon": 1.9025453345850822, + "golurk": 2.255415744747647, + "bisharp": 3.112246465325635, + "bouffalant": 1.2560444414037577, + "heatmor": 2.3994645684188542, + "durant": 3.0265869132894956, + "diggersby": 3.8200801024605675, + "talonflame": 3.7637512341116013, + "pangoro": 1.7204750971703109, + "doublade": 2.6626622073690016, + "malamar": 2.5645174144422853, + "barbaracle": 1.5265466870214817, + "heliolisk": 2.870496292898109, + "tyrantrum": 1.7436367458768842, + "aurorus": 2.693206121983949, + "hawlucha": 3.619697711332016, + "dedenne": 2.483269166042952, + "klefki": 3.017846466970344, + "trevenant": 2.707629335042106, + "gourgeist-average": 5.839049178460085, + "charjabug": 3.531401129929736, + "vikavolt": 1.6822027211095545, + "ribombee": 4.254837665723025, + "lycanroc-midday": 3.9414452475517407, + "lycanroc-midnight": 2.7768664869796997, + "mudsdale": 1.928095378877875, + "araquanid": 1.7605088000038989, + "lurantis": 2.2246017108884955, + "shiinotic": 4.29180802490014, + "salazzle": 4.004051394108732, + "bewear": 1.7320727308969555, + "tsareena": 2.788525179078697, + "comfey": 3.7282048773716925, + "oranguru": 2.407005538636616, + "passimian": 2.2775160065867954, + "palossand": 2.619447839470685, + "pyukumuku": 34.4515163378937, + "togedemaru": 1.991488821345226, + "mimikyu-disguised": 3.5872491054654, + "greedent": 2.1320061470109977, + "orbeetle": 1.6751658341834856, + "thievul": 1.732348777075467, + "eldegoss": 3.305040408270515, + "dubwool": 2.702532944967188, + "drednaw": 1.2980265456367985, + "boltund": 4.006001279601639, + "carkol": 4.2882846937831465, + "coalossal": 3.6099706214277467, + "sandaconda": 4.0991185880173795, + "cramorant": 4.598680319098241, + "barraskewda": 3.9003906058340636, + "toxtricity-amped": 2.270825880633302, + "centiskorch": 2.3909240203965867, + "grapploct": 1.667117283659656, + "polteageist": 2.15897048366424, + "hatterene": 2.313429240337082, + "grimmsnarl": 3.5303821649566207, + "obstagoon": 2.957804821598532, + "perrserker": 3.3036486004881382, + "alcremie": 1.255267124406061, + "falinks": 3.1609502228200164, + "pincurchin": 2.6735135312485987, + "frosmoth": 2.366421926796102, + "indeedee-male": 2.885138554757958, + "morpeko": 2.3757327330700346, + "copperajah": 2.4444471616729153, + "duraludon": 1.603186850286474, + "drakloak": 4.5870144507015675 }, "butterfree": { - "ivysaur": 3.4154080856848354, - "charmeleon": 2.8833761211538245, - "wartortle": 2.9511746957862526, - "raichu": 4.687587203051127, - "raichu-alola": 3.8331193160173385, - "sandslash": 2.272083746973257, - "sandslash-alola": 1.13440923878006, - "nidoqueen": 2.629843408147596, - "nidoking": 1.407229146528994, - "clefairy": 8.421601498180522, - "clefable": 1.7326656328084873, - "jigglypuff": 25.676115636067934, - "wigglytuff": 1.9286379015362611, - "gloom": 5.636895591409919, - "vileplume": 3.3525030438769097, - "dugtrio": 2.6566757845397824, - "dugtrio-alola": 3.0281631626331285, - "persian": 3.9391958527962547, - "persian-alola": 5.365297236076126, - "golduck": 3.1719427609400093, - "poliwrath": 2.054489107734475, - "kadabra": 4.32469834008028, - "machoke": 2.8226641482635566, - "tentacruel": 1.8964138588365285, - "slowbro": 2.3505399588182248, - "magneton": 2.4631377365562086, - "haunter": 3.493696264741705, - "kingler": 3.1810314171758165, - "exeggutor": 3.997728211312679, - "marowak": 3.6004303837819522, - "marowak-alola": 1.3174859601978377, - "hitmonlee": 1.9650719336466327, - "hitmonchan": 1.4731149980286737, - "lickitung": 1.7400459383734734, - "weezing": 1.2567235547088518, - "weezing-galar": 2.1139300394445386, - "rhydon": 3.1916323726995, - "chansey": 18.962719950161866, - "tangela": 8.478205320909439, - "kangaskhan": 1.7616571998906347, - "seadra": 5.114962725371225, - "seaking": 2.4243595567098577, - "starmie": 1.6692294810988824, - "mr-mime": 6.2498797833234185, - "mr-mime-galar": 3.8607997610788587, - "scyther": 1.9858645756293725, - "jynx": 4.278403147894849, - "electabuzz": 2.045281132351152, - "magmar": 1.1800029031783694, - "tauros": 2.190946479387363, - "ditto": 4.525637338693626, - "vaporeon": 3.2309067257235045, - "jolteon": 1.7080566259276795, - "flareon": 1.589545654034353, - "porygon": 2.535940646627899, - "dragonair": 1.6164237106065529, - "noctowl": 3.8957488604650847, - "lanturn": 1.9219286444188097, - "togetic": 4.50873402103502, - "xatu": 3.5391013938774476, - "bellossom": 3.2197291582923775, - "azumarill": 1.9706790153686617, - "sudowoodo": 2.357818160762507, - "politoed": 2.734957124818619, - "quagsire": 7.881306003134976, - "slowking": 2.714698662922846, - "dunsparce": 2.966938185373662, - "qwilfish": 2.8593600406828132, - "sneasel": 2.4584626642293133, - "piloswine": 1.4408920638485792, - "octillery": 2.5985358234745295, - "mantine": 1.8136178674808052, - "skarmory": 1.3480455801276827, - "hitmontop": 2.318175319891945, - "miltank": 3.470936122757318, - "grovyle": 11.157121953784769, - "sceptile": 1.8789274823762092, - "combusken": 2.7915696763589524, - "blaziken": 1.2045845633731664, - "marshtomp": 3.5763246214349134, - "swampert": 1.8382738060076327, - "linoone": 4.9206054997829165, - "linoone-galar": 5.836078230339572, - "pelipper": 4.690197393639895, - "ninjask": 6.71091239432846, - "exploud": 1.4883752011063605, - "lairon": 1.3310425354205333, - "manectric": 1.6398286430850313, - "roselia": 4.004048621202868, - "sharpedo": 6.165969490479787, - "wailmer": 6.475197485304822, - "torkoal": 1.3625964880275017, - "flygon": 2.373693947362554, - "altaria": 1.2127872654084686, - "whiscash": 2.9125305015882668, - "crawdaunt": 2.79409243158781, - "claydol": 3.7489237271381404, - "cradily": 2.618227877448531, - "armaldo": 1.6197869478813782, - "dusclops": 2.901618574807724, - "absol": 2.340064759167765, - "glalie": 3.4505303529541704, - "sealeo": 3.1467801378906493, - "relicanth": 2.216398466595742, - "metang": 2.618152686978462, - "luxray": 3.325289964132776, - "vespiquen": 2.1337464966658226, - "cherrim": 8.237662371765234, - "gastrodon": 2.587795135235214, - "drifblim": 2.911310885038657, - "lopunny": 3.2852551382368342, - "skuntank": 1.3527785079364651, - "bronzong": 2.935671212692661, - "munchlax": 1.6887154485799851, - "drapion": 2.473145599963269, - "abomasnow": 3.6374251594609204, - "froslass": 2.1718747923497332, - "rotom": 2.9260685272040847, - "stoutland": 2.2123733678010753, - "liepard": 8.694628023593323, - "musharna": 2.0294135606438894, - "unfezant": 4.11828057633276, - "boldore": 3.1600523843692723, - "swoobat": 5.065537691860815, - "audino": 2.145350144527696, - "gurdurr": 2.369354183685065, - "palpitoad": 5.86554978464391, - "seismitoad": 9.592184446979772, - "scolipede": 2.6725014914857335, - "whimsicott": 4.034665413129668, - "lilligant": 4.583439550431878, - "basculin-red-striped": 2.775894882182788, - "basculin-blue-striped": 3.8887285981491626, - "krookodile": 3.887368906892136, - "maractus": 3.281636110313635, - "crustle": 1.809242572601477, - "sigilyph": 2.1881216995174246, - "cofagrigus": 2.3369499396578384, - "garbodor": 1.5391807847848349, - "cinccino": 3.9123601441383657, - "vanillish": 1.8441322149961288, - "emolga": 2.0202559611532624, - "escavalier": 1.5900744488779932, - "amoonguss": 2.6521550215843193, - "jellicent": 1.4557466376159223, - "galvantula": 1.4215359819717184, - "klang": 1.9112481958961673, - "klinklang": 2.5847528226226437, - "beheeyem": 2.049262719319277, - "lampent": 1.572889585998506, - "fraxure": 1.518899397785893, - "beartic": 1.5390198226119616, - "cryogonal": 1.3304474334202063, - "accelgor": 3.2279935186612247, - "stunfisk": 1.3614690070517401, - "stunfisk-galar": 2.2087725280066848, - "mienshao": 2.437244628621051, - "druddigon": 1.6853001482633583, - "golurk": 2.1417164957991517, - "bisharp": 2.3520292496971877, - "bouffalant": 1.2570483279191864, - "heatmor": 1.369271526320843, - "durant": 2.4304523153463977, - "diggersby": 3.151426146407962, - "talonflame": 2.094365763569572, - "pangoro": 1.783490428737776, - "doublade": 1.7246304647450819, - "malamar": 5.323903050851362, - "barbaracle": 2.0332548283147123, - "heliolisk": 3.1582113486453194, - "tyrantrum": 1.3906810251681696, - "aurorus": 1.8497217509012636, - "hawlucha": 2.893812751541993, - "dedenne": 2.61379405214216, - "klefki": 2.175301377818321, - "trevenant": 3.377258792625445, - "gourgeist-average": 5.016483744090958, - "charjabug": 3.7490447513115215, - "vikavolt": 1.8736990637698883, - "ribombee": 4.7386401291677736, - "lycanroc-midday": 2.1602595425445985, - "lycanroc-midnight": 1.8679045443323603, - "mudsdale": 1.8819873908961604, - "araquanid": 2.1577773216342218, - "lurantis": 3.4080410380385326, - "shiinotic": 5.390880550847931, - "salazzle": 2.2142063903347644, - "bewear": 1.4496224223634577, - "tsareena": 3.884873001185202, - "comfey": 4.569252030798229, - "oranguru": 3.236481330357476, - "passimian": 1.6812648289503385, - "palossand": 2.530067601287815, - "pyukumuku": 47.56609218942285, - "togedemaru": 1.5989459934525132, - "mimikyu-disguised": 3.086900293259525, - "greedent": 2.0072762195785345, - "orbeetle": 2.461449175416082, - "thievul": 2.0501647992681984, - "eldegoss": 5.382263334102284, - "dubwool": 3.0520726619456275, - "drednaw": 1.2452720217597455, - "boltund": 4.178478986807647, - "carkol": 1.3407564896399042, - "coalossal": 1.445870406952198, - "sandaconda": 3.885091109720629, - "cramorant": 4.199956271474543, - "barraskewda": 4.7540384728302865, - "toxtricity-amped": 2.042684956056618, - "centiskorch": 1.598988773435778, - "grapploct": 1.6088217889227132, - "polteageist": 2.2363624831762046, - "hatterene": 2.4027001724380215, - "grimmsnarl": 3.9387347328761653, - "obstagoon": 3.0995270097482366, - "perrserker": 2.5193471893284, - "alcremie": 1.3107246555846856, - "falinks": 2.98617303588712, - "pincurchin": 2.8231520328453543, - "frosmoth": 2.5590706911083574, - "indeedee-male": 3.600723422394098, - "morpeko": 2.9823065951701793, - "copperajah": 1.9772555311974411, - "duraludon": 1.2354045377036997, - "drakloak": 3.479878627069131, - "butterfree": 4.080071534157263 + "ivysaur": 3.4189634360140717, + "charmeleon": 2.873122485128187, + "wartortle": 2.952805830217499, + "butterfree": 4.080071534157263, + "raichu": 4.682012420311982, + "raichu-alola": 3.827211502753965, + "sandslash": 2.2686256478845914, + "sandslash-alola": 1.1277154200685042, + "nidoqueen": 2.6298557984075206, + "nidoking": 1.401720696955358, + "clefairy": 8.41595809178871, + "clefable": 1.7275615641594826, + "jigglypuff": 25.670214850045024, + "wigglytuff": 1.9280779667794123, + "gloom": 5.631753426471052, + "vileplume": 3.3587674111654877, + "dugtrio": 2.6526075826519104, + "dugtrio-alola": 3.0247210270921774, + "persian": 3.9312871265183533, + "persian-alola": 5.364751393908611, + "golduck": 3.170363018771842, + "poliwrath": 2.0538594241875994, + "kadabra": 4.320152781856276, + "machoke": 2.81041293901728, + "tentacruel": 1.892008147806774, + "slowbro": 2.35169358598058, + "magneton": 2.4543255861080793, + "haunter": 3.4890092096435046, + "kingler": 3.188628148038063, + "exeggutor": 4.010328760173165, + "marowak": 3.6049076559097992, + "marowak-alola": 1.3108406591021717, + "hitmonlee": 1.9619430228279637, + "hitmonchan": 1.4657141212558782, + "lickitung": 1.736714338974867, + "weezing": 1.2540994070927765, + "weezing-galar": 2.1093242588195484, + "rhydon": 3.185368572613265, + "chansey": 18.889107261591036, + "tangela": 8.506691472048564, + "kangaskhan": 1.759436325650055, + "seadra": 5.121151701630533, + "seaking": 2.4225210505389887, + "starmie": 1.6658746917565643, + "mr-mime": 6.246972888996909, + "mr-mime-galar": 3.856552762563193, + "scyther": 1.9771104558690205, + "jynx": 4.267764624369822, + "electabuzz": 2.0390044021069356, + "magmar": 1.1755670633746251, + "tauros": 2.193037834887829, + "ditto": 4.493664833270908, + "vaporeon": 3.2309893100285025, + "jolteon": 1.7039390557679983, + "flareon": 1.5841287559116441, + "porygon": 2.530599082373109, + "dragonair": 1.611768901439068, + "noctowl": 3.8753434849713377, + "lanturn": 1.9211538056732378, + "togetic": 4.49520906657117, + "xatu": 3.531421633475584, + "bellossom": 3.228426808689545, + "azumarill": 1.962641521051229, + "sudowoodo": 2.349664405255527, + "politoed": 2.7371139786132357, + "quagsire": 7.9024604532788425, + "slowking": 2.7112310519167933, + "dunsparce": 2.9607578177109684, + "qwilfish": 2.852272154712437, + "sneasel": 2.451284555174542, + "piloswine": 1.4361666679945944, + "octillery": 2.600584270590848, + "mantine": 1.8078916329021615, + "skarmory": 1.3417502461553887, + "hitmontop": 2.31597447657242, + "miltank": 3.4653463867542267, + "grovyle": 11.196007544018993, + "sceptile": 1.8840830627993144, + "combusken": 2.7877708630977285, + "blaziken": 1.200308155677757, + "marshtomp": 3.5773185614131657, + "swampert": 1.8421879286564944, + "linoone": 4.913444251478248, + "linoone-galar": 5.8338289905706, + "pelipper": 4.6727858714412145, + "ninjask": 6.706316890843436, + "exploud": 1.4872909914794947, + "lairon": 1.3243757583682303, + "manectric": 1.636108327531415, + "roselia": 4.0047573527751075, + "sharpedo": 6.164317467440002, + "wailmer": 6.467117096803353, + "torkoal": 1.358754260153522, + "flygon": 2.3720319524611115, + "altaria": 1.209522437330842, + "whiscash": 2.9112849536979355, + "crawdaunt": 2.796185572315217, + "claydol": 3.742995477501131, + "cradily": 2.614763640934025, + "armaldo": 1.6145488747310863, + "dusclops": 2.898012232344493, + "absol": 2.3372544964519077, + "glalie": 3.4375951154166424, + "sealeo": 3.142633244113666, + "relicanth": 2.2060502676498146, + "metang": 2.6089346890025835, + "luxray": 3.3157860235034846, + "vespiquen": 2.1269383748961124, + "cherrim": 8.259699139472364, + "gastrodon": 2.581234658206345, + "drifblim": 2.898698069498885, + "lopunny": 3.2781166379629516, + "skuntank": 1.3502967783384778, + "bronzong": 2.9286951542698447, + "munchlax": 1.6808394727664497, + "drapion": 2.4708535739340256, + "abomasnow": 3.632933006497214, + "froslass": 2.163078340722983, + "rotom": 2.919341328728577, + "stoutland": 2.2073352510986517, + "liepard": 8.690132053828794, + "musharna": 2.031390800341674, + "unfezant": 4.09511736451685, + "boldore": 3.1498961610565104, + "swoobat": 5.054555702129624, + "audino": 2.142395599539968, + "gurdurr": 2.375870318913546, + "palpitoad": 5.875271483446621, + "seismitoad": 9.598440325200938, + "scolipede": 2.666750813108298, + "whimsicott": 4.038794787108514, + "lilligant": 4.600502636402096, + "basculin-red-striped": 2.771496266482414, + "basculin-blue-striped": 3.8883789317663853, + "krookodile": 3.893934168699573, + "maractus": 3.2929242260703493, + "crustle": 1.8030291457940062, + "sigilyph": 2.184055997018519, + "cofagrigus": 2.3352521680738634, + "garbodor": 1.5358865828165167, + "cinccino": 3.899333212007336, + "vanillish": 1.8386565963380666, + "emolga": 2.0106002235468123, + "escavalier": 1.5881823195165745, + "amoonguss": 2.6527354924288167, + "jellicent": 1.453766532409469, + "galvantula": 1.4182485927525206, + "klang": 1.9011792494353, + "klinklang": 2.575324054765911, + "beheeyem": 2.046057124104287, + "lampent": 1.5668217170483714, + "fraxure": 1.5165443251241668, + "beartic": 1.5366929170549515, + "cryogonal": 1.326081230421999, + "accelgor": 3.229446597206028, + "stunfisk": 1.3615264214236902, + "stunfisk-galar": 2.2093758901492615, + "mienshao": 2.4263980142660255, + "druddigon": 1.6821186560431185, + "golurk": 2.1434205635665045, + "bisharp": 2.346347289198637, + "bouffalant": 1.254245965077505, + "heatmor": 1.36432208235167, + "durant": 2.4217459705629896, + "diggersby": 3.1461538629384664, + "talonflame": 2.0849339407423937, + "pangoro": 1.783627739439858, + "doublade": 1.7188955725393202, + "malamar": 5.3263349162361315, + "barbaracle": 2.0311223515170864, + "heliolisk": 3.151971208639895, + "tyrantrum": 1.3854129600848344, + "aurorus": 1.838426977466709, + "hawlucha": 2.888294952626472, + "dedenne": 2.609548812583049, + "klefki": 2.168221448553793, + "trevenant": 3.3849409951643974, + "gourgeist-average": 5.008020844674277, + "charjabug": 3.7373132351590463, + "vikavolt": 1.8729342515600527, + "ribombee": 4.740714608938198, + "lycanroc-midday": 2.1426081765779896, + "lycanroc-midnight": 1.858150155108886, + "mudsdale": 1.8859735539405449, + "araquanid": 2.1555715092142735, + "lurantis": 3.41610368917996, + "shiinotic": 5.394680383926893, + "salazzle": 2.2024197897407007, + "bewear": 1.4453303429041742, + "tsareena": 3.8856572210947737, + "comfey": 4.5753962693359576, + "oranguru": 3.2356953920505735, + "passimian": 1.6737916626560105, + "palossand": 2.534031189706039, + "pyukumuku": 47.61643688812252, + "togedemaru": 1.5910214205182145, + "mimikyu-disguised": 3.0777359346940147, + "greedent": 2.003516358781419, + "orbeetle": 2.46289490273759, + "thievul": 2.04954114092406, + "eldegoss": 5.397341338218377, + "dubwool": 3.052336658623426, + "drednaw": 1.242381755952679, + "boltund": 4.168762526736258, + "carkol": 1.333394159727979, + "coalossal": 1.4385407264447863, + "sandaconda": 3.892556020028729, + "cramorant": 4.187124603999159, + "barraskewda": 4.749942405206887, + "toxtricity-amped": 2.0343026145513985, + "centiskorch": 1.5942866437171144, + "grapploct": 1.611100581844612, + "polteageist": 2.2337260787482407, + "hatterene": 2.402325034636017, + "grimmsnarl": 3.944233216095187, + "obstagoon": 3.095436901526481, + "perrserker": 2.5105638826805308, + "alcremie": 1.3097907545724485, + "falinks": 2.9872387653345216, + "pincurchin": 2.817718619955972, + "frosmoth": 2.5527402914015287, + "indeedee-male": 3.597769405144171, + "morpeko": 2.9737472249347965, + "copperajah": 1.9734868933309162, + "duraludon": 1.2308516572775259, + "drakloak": 3.4703314624328616 }, "raichu": { - "ivysaur": 2.5498115157933436, - "charmeleon": 3.7257666174500943, - "wartortle": 3.4600722107372244, - "butterfree": 5.146706599887852, - "raichu-alola": 3.145255829661919, - "sandslash": 1.7069718271987253, - "sandslash-alola": 2.9007755113237392, - "nidoqueen": 1.9700320700245084, - "nidoking": 1.3098875707238171, - "clefairy": 8.592154103057764, - "clefable": 1.921701597343708, - "jigglypuff": 25.330820559581568, - "wigglytuff": 1.8982697158457968, - "gloom": 4.587502122093182, - "vileplume": 2.405822547490537, - "dugtrio": 2.6339181297878143, - "dugtrio-alola": 3.118523904004645, - "persian": 4.102189866639575, - "persian-alola": 4.199595427161514, - "golduck": 3.7087784198409652, - "poliwrath": 2.280131611919017, - "kadabra": 3.3891005997134265, - "machoke": 3.6204484648794435, - "tentacruel": 2.5990890716170343, - "slowbro": 2.31282307134667, - "magneton": 4.237689516857407, - "haunter": 4.237684123386616, - "kingler": 3.2791350040127383, - "exeggutor": 1.5013669566901462, - "marowak": 2.3836958611974732, - "marowak-alola": 1.9963953933536676, - "hitmonlee": 1.9945143837978387, - "hitmonchan": 2.050416150331913, - "lickitung": 2.0563542352279, - "weezing": 1.628559521909298, - "weezing-galar": 2.709287723943488, - "rhydon": 2.297565114914801, - "chansey": 19.11584515258268, - "tangela": 4.2870060182918985, - "kangaskhan": 1.700861984431568, - "seadra": 6.041329730149744, - "seaking": 2.6926457056390642, - "starmie": 1.7812346575975968, - "mr-mime": 6.038904437297781, - "mr-mime-galar": 3.3832013001355588, - "scyther": 3.2566384485665556, - "jynx": 3.790426483883139, - "electabuzz": 2.9356767298027324, - "magmar": 1.5455646431435266, - "tauros": 1.9297491221686158, - "ditto": 5.604582897938055, - "vaporeon": 3.7007062199158165, - "jolteon": 1.740340003818094, - "flareon": 2.0947339075219507, - "porygon": 2.9958980627635734, - "dragonair": 1.5530489832216525, - "noctowl": 6.574154672762859, - "lanturn": 1.7636674977092202, - "togetic": 6.295161478655295, - "xatu": 4.982953207267714, - "bellossom": 1.9887210204275958, - "azumarill": 2.9017430913994278, - "sudowoodo": 2.5233687738808825, - "politoed": 2.8038104075933505, - "quagsire": 4.059751624232761, - "slowking": 2.7690007280599094, - "dunsparce": 3.4021305815678646, - "qwilfish": 4.494111733630785, - "sneasel": 2.7047458401032056, - "piloswine": 1.638466362485658, - "octillery": 2.9992786364145543, - "mantine": 3.9122565651998045, - "skarmory": 3.103355958663464, - "hitmontop": 2.2473814313541074, - "miltank": 3.6659351957585966, - "grovyle": 6.482398114797924, - "sceptile": 1.1659936141016745, - "combusken": 3.182071873312848, - "blaziken": 1.5063555670730715, - "marshtomp": 1.9163861297691005, - "swampert": 1.0263071348289108, - "linoone": 4.966418296577945, - "linoone-galar": 6.106766274258218, - "pelipper": 12.371161371455662, - "ninjask": 8.406803472867002, - "exploud": 1.6332369208202266, - "lairon": 3.904682297761193, - "manectric": 1.5894274172037308, - "roselia": 3.11725438821044, - "sharpedo": 5.893347363129257, - "wailmer": 8.549874311238016, - "torkoal": 1.9430957975640242, - "flygon": 1.9371150071109131, - "altaria": 1.5071138318357007, - "whiscash": 1.7396162125059114, - "crawdaunt": 2.6262977038083712, - "claydol": 2.5419643308929976, - "cradily": 2.2946550925169182, - "armaldo": 1.6325234431999789, - "dusclops": 3.1314354885467637, - "absol": 1.983361702192636, - "glalie": 4.0730734769932395, - "sealeo": 3.883503942848929, - "relicanth": 2.451572671692148, - "metang": 3.135480753527797, - "luxray": 3.7321407540524776, - "vespiquen": 3.2814138117882496, - "cherrim": 4.916889410857028, - "gastrodon": 1.6874104857322285, - "drifblim": 6.102430640367013, - "lopunny": 3.5407895176601483, - "skuntank": 1.3820046337597471, - "bronzong": 2.965049225524276, - "munchlax": 2.121867017642278, - "drapion": 2.382233921127958, - "abomasnow": 3.0244467808879034, - "froslass": 2.7391985132460404, - "rotom": 3.3950740358433427, - "stoutland": 2.3115331505615444, - "liepard": 6.816911986902957, - "musharna": 1.4380881179472254, - "unfezant": 9.006158368499227, - "boldore": 3.3835317796947284, - "swoobat": 7.129623880042317, - "audino": 2.2932874815086173, - "gurdurr": 2.041509309808979, - "palpitoad": 3.0720006679706056, - "seismitoad": 5.380308181410783, - "scolipede": 3.0046720047771402, - "whimsicott": 2.5999029225733086, - "lilligant": 2.603831704315671, - "basculin-red-striped": 3.4440574338442174, - "basculin-blue-striped": 4.575584486836784, - "krookodile": 2.691286994033353, - "maractus": 1.8591867322229276, - "crustle": 1.9831636923330334, - "sigilyph": 3.0679473759707947, - "cofagrigus": 2.6208874307554417, - "garbodor": 1.733475121563835, - "cinccino": 4.4575795970458225, - "vanillish": 2.161934809746421, - "emolga": 3.9417758685698674, - "escavalier": 1.530246975954293, - "amoonguss": 2.040425437362224, - "jellicent": 1.8353338202609668, - "galvantula": 1.6615366732211214, - "klang": 3.4295432083464847, - "klinklang": 3.6697210987723285, - "beheeyem": 1.691089565104757, - "lampent": 2.432025525112037, - "fraxure": 1.2557188264763157, - "beartic": 1.758535887987453, - "cryogonal": 1.5722884166940685, - "accelgor": 2.801102139437421, - "stunfisk": 1.1217397840407644, - "stunfisk-galar": 2.2144448416928624, - "mienshao": 3.1252126991582374, - "druddigon": 1.4741750550254586, - "golurk": 1.1257153374102322, - "bisharp": 3.442241915022981, - "bouffalant": 1.2819690676097055, - "heatmor": 1.806490913961551, - "durant": 3.4399925643862894, - "diggersby": 2.7706351206558715, - "talonflame": 3.9048798723604845, - "pangoro": 1.7547467523317986, - "doublade": 2.729733883557927, - "malamar": 2.894958360950473, - "barbaracle": 1.80777873862106, - "heliolisk": 3.796620013704196, - "tyrantrum": 1.6751408713625633, - "aurorus": 3.1839869979505675, - "hawlucha": 4.271473236418543, - "dedenne": 2.5455538047807176, - "klefki": 3.0267637259076983, - "trevenant": 2.2684033675630193, - "gourgeist-average": 4.1911059210777735, - "charjabug": 3.5578270980625635, - "vikavolt": 1.5513136343678018, - "ribombee": 4.399871925465713, - "lycanroc-midday": 3.2669786724701844, - "lycanroc-midnight": 2.2791393615162265, - "mudsdale": 1.2190533115141924, - "araquanid": 2.6081032479431445, - "lurantis": 2.006738047310442, - "shiinotic": 3.55123627738616, - "salazzle": 3.0522427141027535, - "bewear": 1.749806762416552, - "tsareena": 2.593914397520309, - "comfey": 4.195816638730312, - "oranguru": 2.4298347038901964, - "passimian": 2.2887363620583097, - "palossand": 1.2332611634767021, - "pyukumuku": 53.493441537883406, - "togedemaru": 2.6484016811375657, - "mimikyu-disguised": 3.4801784729428773, - "greedent": 2.1741613135720677, - "orbeetle": 1.725971547931338, - "thievul": 1.737280840077705, - "eldegoss": 3.2543794202367264, - "dubwool": 2.8644256417334297, - "drednaw": 1.5453875954859155, - "boltund": 4.477675903217337, - "carkol": 2.4239942299726174, - "coalossal": 2.075668625692422, - "sandaconda": 2.5171798750610037, - "cramorant": 8.230131987240567, - "barraskewda": 5.641501730790905, - "toxtricity-amped": 2.426454222850544, - "centiskorch": 1.802512237568117, - "grapploct": 1.6195759491061015, - "polteageist": 2.327065642491334, - "hatterene": 2.325312183906865, - "grimmsnarl": 3.578088590275925, - "obstagoon": 3.604109990436773, - "perrserker": 3.8622546612650153, - "alcremie": 1.3081816646158648, - "falinks": 3.0934229166043217, - "pincurchin": 2.904875893893299, - "frosmoth": 2.4892784382236477, - "indeedee-male": 2.8839953017862276, - "morpeko": 3.4398019214915347, - "copperajah": 2.579694999410953, - "duraludon": 1.9873605602332476, - "drakloak": 3.4295857944802077, - "raichu": 5.040842664937848 + "ivysaur": 2.5434179882363734, + "charmeleon": 3.722328844243564, + "wartortle": 3.461066048570454, + "butterfree": 5.140245820844024, + "raichu": 5.040842664937848, + "raichu-alola": 3.1435769596039242, + "sandslash": 1.6993974154570475, + "sandslash-alola": 2.902528044608638, + "nidoqueen": 1.9612961407925669, + "nidoking": 1.304331470316932, + "clefairy": 8.581020504566627, + "clefable": 1.919225238583091, + "jigglypuff": 25.30268871674675, + "wigglytuff": 1.8960071421860891, + "gloom": 4.575782442812773, + "vileplume": 2.400223567783475, + "dugtrio": 2.618833235262613, + "dugtrio-alola": 3.1088187169128623, + "persian": 4.095123843170671, + "persian-alola": 4.195186605148928, + "golduck": 3.7057692841223178, + "poliwrath": 2.2778693612448286, + "kadabra": 3.378862423898016, + "machoke": 3.6144392350495886, + "tentacruel": 2.5963174473014847, + "slowbro": 2.3118106083444268, + "magneton": 4.25523111500082, + "haunter": 4.230897427180468, + "kingler": 3.275568135518265, + "exeggutor": 1.4951609586319274, + "marowak": 2.3732038944546585, + "marowak-alola": 1.9925515105825353, + "hitmonlee": 1.9893970243974992, + "hitmonchan": 2.049522450672078, + "lickitung": 2.0586628432482463, + "weezing": 1.6270112468137257, + "weezing-galar": 2.706693266674762, + "rhydon": 2.290369143158525, + "chansey": 19.04198601909479, + "tangela": 4.276699696028696, + "kangaskhan": 1.6968592647552225, + "seadra": 6.044085519572908, + "seaking": 2.687624240378288, + "starmie": 1.7801078251423816, + "mr-mime": 6.024377495562218, + "mr-mime-galar": 3.3768672547557546, + "scyther": 3.253140851480917, + "jynx": 3.781248516824438, + "electabuzz": 2.94542034484771, + "magmar": 1.5434986529338075, + "tauros": 1.9259506605674777, + "ditto": 5.558680679828501, + "vaporeon": 3.6992472524645685, + "jolteon": 1.7396515974617834, + "flareon": 2.0911512764630436, + "porygon": 2.9975623922980317, + "dragonair": 1.550639992447726, + "noctowl": 6.572537670914073, + "lanturn": 1.7610165610740012, + "togetic": 6.2899909645879335, + "xatu": 4.984411532170181, + "bellossom": 1.9850376046532818, + "azumarill": 2.9012609807181624, + "sudowoodo": 2.519239633900057, + "politoed": 2.7987993758533616, + "quagsire": 4.051174065268455, + "slowking": 2.76468494602894, + "dunsparce": 3.401992928565617, + "qwilfish": 4.490573331538994, + "sneasel": 2.7020401373290728, + "piloswine": 1.6356647467359369, + "octillery": 2.9999229368538494, + "mantine": 3.91696056884781, + "skarmory": 3.107808148279255, + "hitmontop": 2.2403868324855356, + "miltank": 3.6617019301279274, + "grovyle": 6.466516592512765, + "sceptile": 1.163113986025579, + "combusken": 3.179065674355283, + "blaziken": 1.5042452651926261, + "marshtomp": 1.9084162993980562, + "swampert": 1.0227725957376685, + "linoone": 4.957715938159901, + "linoone-galar": 6.106633727353758, + "pelipper": 12.386636291013561, + "ninjask": 8.388013034257288, + "exploud": 1.6322391190559098, + "lairon": 3.9134422684656864, + "manectric": 1.5872447035037673, + "roselia": 3.108454209579512, + "sharpedo": 5.889187520541517, + "wailmer": 8.556368238120289, + "torkoal": 1.9424528106397143, + "flygon": 1.9306163552266882, + "altaria": 1.5046293288571757, + "whiscash": 1.7351702010632946, + "crawdaunt": 2.6267114559360145, + "claydol": 2.5327329154879683, + "cradily": 2.292579781300731, + "armaldo": 1.6277659323831308, + "dusclops": 3.1238274625184888, + "absol": 1.9813388223542816, + "glalie": 4.068147192868049, + "sealeo": 3.8846670696066754, + "relicanth": 2.4514953409436036, + "metang": 3.138568194560213, + "luxray": 3.735610624366565, + "vespiquen": 3.27827276276361, + "cherrim": 4.906312332088503, + "gastrodon": 1.6809499078291006, + "drifblim": 6.117344058151618, + "lopunny": 3.5363449000330998, + "skuntank": 1.3800982744429664, + "bronzong": 2.961651790028875, + "munchlax": 2.119881866996771, + "drapion": 2.38010673077029, + "abomasnow": 3.0173147081336036, + "froslass": 2.7332719470487454, + "rotom": 3.3969858121931313, + "stoutland": 2.3070267458010827, + "liepard": 6.808056817457583, + "musharna": 1.4351054139310526, + "unfezant": 9.023023565751732, + "boldore": 3.3791226329998736, + "swoobat": 7.131623978679653, + "audino": 2.29259338249142, + "gurdurr": 2.036580029157248, + "palpitoad": 3.0618556627761677, + "seismitoad": 5.364102747925873, + "scolipede": 2.997579243383425, + "whimsicott": 2.5942303455847737, + "lilligant": 2.5988867294679063, + "basculin-red-striped": 3.440647960573288, + "basculin-blue-striped": 4.5735120742963185, + "krookodile": 2.683437110878131, + "maractus": 1.855756688543433, + "crustle": 1.9800375916589341, + "sigilyph": 3.069631850200336, + "cofagrigus": 2.6169862938759882, + "garbodor": 1.7292805394934465, + "cinccino": 4.4509802082590255, + "vanillish": 2.1604261460204306, + "emolga": 3.957880120819422, + "escavalier": 1.5252531755906884, + "amoonguss": 2.0351359092634236, + "jellicent": 1.8340095648348196, + "galvantula": 1.6657848864451505, + "klang": 3.4419392537055256, + "klinklang": 3.671673896552849, + "beheeyem": 1.6878672230907155, + "lampent": 2.4286751415634793, + "fraxure": 1.2518709778846855, + "beartic": 1.7573782265515159, + "cryogonal": 1.5698914817910956, + "accelgor": 2.795229343918785, + "stunfisk": 1.1198346917126498, + "stunfisk-galar": 2.208630786304477, + "mienshao": 3.1199551738298696, + "druddigon": 1.4705314926398196, + "golurk": 1.1192672545035303, + "bisharp": 3.4432193478261954, + "bouffalant": 1.281042352063555, + "heatmor": 1.804973105990654, + "durant": 3.4443685730707427, + "diggersby": 2.7584981010987124, + "talonflame": 3.9087048975289447, + "pangoro": 1.7533243378524697, + "doublade": 2.7293553312663903, + "malamar": 2.893951410945265, + "barbaracle": 1.8062680712832146, + "heliolisk": 3.7992542138789007, + "tyrantrum": 1.672956847408734, + "aurorus": 3.187803246011102, + "hawlucha": 4.266303285754221, + "dedenne": 2.546850154660558, + "klefki": 3.0266156632344567, + "trevenant": 2.2597116178760497, + "gourgeist-average": 4.178173900755251, + "charjabug": 3.5582097243537314, + "vikavolt": 1.5489745911229524, + "ribombee": 4.391713721317912, + "lycanroc-midday": 3.2633899729931772, + "lycanroc-midnight": 2.2761583597658563, + "mudsdale": 1.2139495498566673, + "araquanid": 2.603682758407193, + "lurantis": 2.0018136995713482, + "shiinotic": 3.5415457834484516, + "salazzle": 3.0470094889979777, + "bewear": 1.7468305909680533, + "tsareena": 2.588301422830095, + "comfey": 4.190190813764598, + "oranguru": 2.4247652444667147, + "passimian": 2.2868460585314976, + "palossand": 1.2263789682237614, + "pyukumuku": 53.4793655304953, + "togedemaru": 2.652448556961534, + "mimikyu-disguised": 3.4689665858253527, + "greedent": 2.172135181184722, + "orbeetle": 1.722172849891375, + "thievul": 1.7347102177997804, + "eldegoss": 3.2471095074546827, + "dubwool": 2.859839558429455, + "drednaw": 1.545345143543233, + "boltund": 4.480424052259297, + "carkol": 2.423300031882306, + "coalossal": 2.07550167796973, + "sandaconda": 2.5071522239334483, + "cramorant": 8.224625044843688, + "barraskewda": 5.635359721174361, + "toxtricity-amped": 2.4286163072726716, + "centiskorch": 1.7975395293265564, + "grapploct": 1.6176777495142938, + "polteageist": 2.321066072740496, + "hatterene": 2.3199897069126063, + "grimmsnarl": 3.5733914798733224, + "obstagoon": 3.607363181719476, + "perrserker": 3.8699690654070493, + "alcremie": 1.3061902350295425, + "falinks": 3.090111250130575, + "pincurchin": 2.910877909177338, + "frosmoth": 2.4857837392235074, + "indeedee-male": 2.8789204169765217, + "morpeko": 3.451229115409297, + "copperajah": 2.582329337137674, + "duraludon": 1.992964805985205, + "drakloak": 3.4168090858862232 }, "raichu-alola": { - "ivysaur": 4.197762615661172, - "charmeleon": 3.9899703746197868, - "wartortle": 3.8893233587062506, - "butterfree": 5.152067028291819, - "raichu": 5.5582107955278515, - "sandslash": 1.9697201841789909, - "sandslash-alola": 2.0954974320969786, - "nidoqueen": 3.4600778200853677, - "nidoking": 2.227021562312415, - "clefairy": 9.202616756310878, - "clefable": 2.070239908061815, - "jigglypuff": 27.05776922604394, - "wigglytuff": 2.08398045848218, - "gloom": 7.7420876758356645, - "vileplume": 3.7887008568583447, - "dugtrio": 3.0233941485189724, - "dugtrio-alola": 2.3727410833437528, - "persian": 4.01408426569537, - "persian-alola": 3.415480097893437, - "golduck": 4.031423761620362, - "poliwrath": 2.5583304247140735, - "kadabra": 3.7055917778865384, - "machoke": 5.057054040260978, - "tentacruel": 2.8132239633843046, - "slowbro": 2.7551363195490692, - "magneton": 3.0249703740808487, - "haunter": 5.9499440014255125, - "kingler": 3.7075113567149263, - "exeggutor": 1.6164777662951182, - "marowak": 2.6672061913925487, - "marowak-alola": 1.9429399187831078, - "hitmonlee": 2.8551175668175097, - "hitmonchan": 2.688169974077392, - "lickitung": 1.9993779014194788, - "weezing": 2.4225898585886707, - "weezing-galar": 4.161151037748258, - "rhydon": 2.2298940863897743, - "chansey": 19.38055283077798, - "tangela": 5.283599261496407, - "kangaskhan": 1.570134613020537, - "seadra": 6.785456858052857, - "seaking": 2.87554110687557, - "starmie": 2.000208372918712, - "mr-mime": 7.061629817735575, - "mr-mime-galar": 3.7311763491729053, - "scyther": 3.1019600701495476, - "jynx": 3.9722172663357798, - "electabuzz": 2.7488854055454386, - "magmar": 1.6473198129700415, - "tauros": 1.848976535147255, - "ditto": 3.489101073742607, - "vaporeon": 4.071820184177116, - "jolteon": 1.8568755485685662, - "flareon": 2.130850320572167, - "porygon": 2.6740788446248245, - "dragonair": 1.8100914008889166, - "noctowl": 7.109838786572206, - "lanturn": 2.0036576530934433, - "togetic": 6.839872872704604, - "xatu": 5.768160766369833, - "bellossom": 2.384669525075375, - "azumarill": 3.1777575070343245, - "sudowoodo": 2.5229156112657156, - "politoed": 3.0531083030135857, - "quagsire": 5.174042783500524, - "slowking": 3.0612494425092374, - "dunsparce": 3.0393676141541333, - "qwilfish": 4.877535665996676, - "sneasel": 1.8456226866537149, - "piloswine": 1.6579660626945278, - "octillery": 3.104587280428164, - "mantine": 4.376091736437401, - "skarmory": 3.083654093057392, - "hitmontop": 3.230051485927192, - "miltank": 3.5439239280278865, - "grovyle": 7.878256528350322, - "sceptile": 1.3199941651065412, - "combusken": 4.86566208478275, - "blaziken": 2.236579445577015, - "marshtomp": 2.273738597736175, - "swampert": 1.2492466656444585, - "linoone": 4.209530134006908, - "linoone-galar": 3.736834563890678, - "pelipper": 14.002318409355322, - "ninjask": 7.428576957923646, - "exploud": 1.6587714041215995, - "lairon": 2.661241715994093, - "manectric": 1.8994202056811305, - "roselia": 5.0124419347555325, - "sharpedo": 5.743042397041693, - "wailmer": 9.398429166009432, - "torkoal": 2.1073226351445853, - "flygon": 2.2298883465475754, - "altaria": 1.614166507154127, - "whiscash": 2.1618869922623496, - "crawdaunt": 2.6881322949489617, - "claydol": 3.0023887729432897, - "cradily": 2.298011247677361, - "armaldo": 1.5518241612196169, - "dusclops": 2.713048490581282, - "absol": 1.8276870770915559, - "glalie": 3.6362237308045167, - "sealeo": 4.249796845177657, - "relicanth": 2.6468974816489883, - "metang": 3.2577925902411433, - "luxray": 3.960297552614045, - "vespiquen": 3.224901756470005, - "cherrim": 5.876376781224696, - "gastrodon": 1.8760144803634582, - "drifblim": 6.388342377248868, - "lopunny": 3.569697711166277, - "skuntank": 1.3120005550107703, - "bronzong": 3.431563850357156, - "munchlax": 1.9540707618387585, - "drapion": 2.132427530941735, - "abomasnow": 2.9639928713080543, - "froslass": 2.743501706670283, - "rotom": 3.7354052588095064, - "stoutland": 2.252791395271613, - "liepard": 5.875781812851995, - "musharna": 1.6513943913785565, - "unfezant": 9.829735181003004, - "boldore": 3.375003037420142, - "swoobat": 8.278115466277034, - "audino": 2.2999992964005056, - "gurdurr": 3.2392343765204945, - "palpitoad": 3.7406451507598115, - "seismitoad": 6.550113373894546, - "scolipede": 3.5543952315065774, - "whimsicott": 3.256804247183107, - "lilligant": 2.952713354529396, - "basculin-red-striped": 3.824955504936155, - "basculin-blue-striped": 4.645836986265774, - "krookodile": 1.9597441297678004, - "maractus": 2.1487973394257245, - "crustle": 1.9516796141766286, - "sigilyph": 3.5144202128287354, - "cofagrigus": 2.667558013138847, - "garbodor": 2.543354304817516, - "cinccino": 4.360679473930551, - "vanillish": 2.167813796599461, - "emolga": 3.461651864811213, - "escavalier": 1.489651134464574, - "amoonguss": 3.4075546020664356, - "jellicent": 2.0329129471579117, - "galvantula": 1.7028530653504803, - "klang": 3.1448940621991524, - "klinklang": 3.575702021928069, - "beheeyem": 1.7829633379407452, - "lampent": 2.5681836108664644, - "fraxure": 1.4653326497672632, - "beartic": 1.7931729468922573, - "cryogonal": 1.5800443774617052, - "accelgor": 2.5183736813574975, - "stunfisk": 1.2720097473606664, - "stunfisk-galar": 1.637306370490704, - "mienshao": 4.5556801612884374, - "druddigon": 1.6408886527661366, - "golurk": 1.660026580883012, - "bisharp": 2.2393280129923494, - "bouffalant": 1.219481474525969, - "heatmor": 1.923811920696407, - "durant": 3.0588808966934478, - "diggersby": 2.6823486994672088, - "talonflame": 4.299705921634983, - "pangoro": 1.6325983562774244, - "doublade": 3.06714345635473, - "malamar": 2.7021609783615865, - "barbaracle": 1.9557851101907942, - "heliolisk": 3.467738586030041, - "tyrantrum": 1.6800236618207824, - "aurorus": 2.390302931867266, - "hawlucha": 4.435871571624089, - "dedenne": 3.0451056831014656, - "klefki": 3.23525438858763, - "trevenant": 2.9520574987724553, - "gourgeist-average": 4.831294198443589, - "charjabug": 3.9530005294067916, - "vikavolt": 1.7516451519393499, - "ribombee": 4.248052784961377, - "lycanroc-midday": 3.1949870420243327, - "lycanroc-midnight": 2.1325161975595583, - "mudsdale": 1.4290244841907291, - "araquanid": 2.5438583629997877, - "lurantis": 2.2260117041559524, - "shiinotic": 4.395047147507001, - "salazzle": 4.323644853082893, - "bewear": 2.214553723414939, - "tsareena": 3.036522493911866, - "comfey": 4.490143383362573, - "oranguru": 2.8617683503565137, - "passimian": 3.5131093664067614, - "palossand": 1.93658882348565, - "pyukumuku": 58.17935576259694, - "togedemaru": 1.9345746094931044, - "mimikyu-disguised": 3.145821445351235, - "greedent": 2.203870595359421, - "orbeetle": 1.7546074314071132, - "thievul": 1.5134279184277224, - "eldegoss": 3.8464920974388788, - "dubwool": 2.8865207566488182, - "drednaw": 1.603683988324295, - "boltund": 4.291711260996184, - "carkol": 2.382362406702799, - "coalossal": 2.0768693801519245, - "sandaconda": 2.86144376541181, - "cramorant": 8.099858594588753, - "barraskewda": 5.6347300497426085, - "toxtricity-amped": 3.8238093052089255, - "centiskorch": 1.9060363159710993, - "grapploct": 2.474837263111356, - "polteageist": 2.4356189564426654, - "hatterene": 2.590689116602531, - "grimmsnarl": 3.5427578412526164, - "obstagoon": 2.2728671166880807, - "perrserker": 3.282445468885769, - "alcremie": 1.3974532727658833, - "falinks": 4.372117667614913, - "pincurchin": 3.2496049628904053, - "frosmoth": 2.3051610205974424, - "indeedee-male": 3.0203694218822648, - "morpeko": 2.335621000926877, - "copperajah": 2.6398343158245745, - "duraludon": 1.3852097348524421, - "drakloak": 3.9365045574725395, - "raichu-alola": 3.1451381381470083 + "ivysaur": 4.201394917578665, + "charmeleon": 3.993462402089717, + "wartortle": 3.8981085149479098, + "butterfree": 5.1471546258246725, + "raichu": 5.5605536477219335, + "raichu-alola": 3.1451381381470083, + "sandslash": 1.961920065157003, + "sandslash-alola": 2.094248175757589, + "nidoqueen": 3.4550816363981043, + "nidoking": 2.2228593297368953, + "clefairy": 9.211304634582564, + "clefable": 2.0722475517397037, + "jigglypuff": 27.074806976006833, + "wigglytuff": 2.0864267881823686, + "gloom": 7.749018992442828, + "vileplume": 3.787770047460554, + "dugtrio": 3.0092685533666277, + "dugtrio-alola": 2.3598420892452037, + "persian": 4.009012279484907, + "persian-alola": 3.4004869874351478, + "golduck": 4.033473422828576, + "poliwrath": 2.563377747777917, + "kadabra": 3.7025340048113855, + "machoke": 5.057900616877997, + "tentacruel": 2.817393507488535, + "slowbro": 2.7620618882293915, + "magneton": 3.0285648526389553, + "haunter": 5.952118292836005, + "kingler": 3.7105843437289385, + "exeggutor": 1.6126888389401421, + "marowak": 2.6559037184262184, + "marowak-alola": 1.939953403413035, + "hitmonlee": 2.8581572853486126, + "hitmonchan": 2.690495012005644, + "lickitung": 2.001446991179792, + "weezing": 2.4263581659307274, + "weezing-galar": 4.171923468791195, + "rhydon": 2.2220473769431472, + "chansey": 19.31596867540302, + "tangela": 5.278947598645416, + "kangaskhan": 1.5656237027157907, + "seadra": 6.800763163175999, + "seaking": 2.8731581539007527, + "starmie": 2.0030723975491136, + "mr-mime": 7.06958308203556, + "mr-mime-galar": 3.7319854342493253, + "scyther": 3.0968486723525537, + "jynx": 3.9659238148950147, + "electabuzz": 2.751182593589209, + "magmar": 1.6478431991651026, + "tauros": 1.8456973595281592, + "ditto": 3.465298015407509, + "vaporeon": 4.076766732578712, + "jolteon": 1.8530510942983272, + "flareon": 2.127979686019372, + "porygon": 2.6721089197492267, + "dragonair": 1.8085697652158117, + "noctowl": 7.117597405268577, + "lanturn": 2.0008453419064214, + "togetic": 6.846927142380121, + "xatu": 5.784998286953592, + "bellossom": 2.3844642792864166, + "azumarill": 3.1826718056801826, + "sudowoodo": 2.5202733059139013, + "politoed": 3.0519719494988005, + "quagsire": 5.176149453003848, + "slowking": 3.0613581130127674, + "dunsparce": 3.0356309782212394, + "qwilfish": 4.887011380572981, + "sneasel": 1.834950354352035, + "piloswine": 1.6566164810525081, + "octillery": 3.1063606864243622, + "mantine": 4.387739752259137, + "skarmory": 3.0832245731080796, + "hitmontop": 3.2289608345085687, + "miltank": 3.541148266601213, + "grovyle": 7.876878239664698, + "sceptile": 1.3176452241147136, + "combusken": 4.8795721811780615, + "blaziken": 2.2405653417524674, + "marshtomp": 2.2672057562502403, + "swampert": 1.24721055724117, + "linoone": 4.193863500857304, + "linoone-galar": 3.7169585587241274, + "pelipper": 14.039308153378855, + "ninjask": 7.399357697837077, + "exploud": 1.659939088295296, + "lairon": 2.6620060050001317, + "manectric": 1.8985483274442425, + "roselia": 5.016878587302415, + "sharpedo": 5.725550937867686, + "wailmer": 9.41947755324118, + "torkoal": 2.1107942346197768, + "flygon": 2.224070103719111, + "altaria": 1.6150260986756566, + "whiscash": 2.1613206077804286, + "crawdaunt": 2.681931457839517, + "claydol": 2.998733224023036, + "cradily": 2.2967826880653455, + "armaldo": 1.5464030295566786, + "dusclops": 2.7021893426168946, + "absol": 1.8210397061457213, + "glalie": 3.6272882027113242, + "sealeo": 4.25454773691043, + "relicanth": 2.6473046299987235, + "metang": 3.2598488108475046, + "luxray": 3.960259099224844, + "vespiquen": 3.221763272353634, + "cherrim": 5.874131600597966, + "gastrodon": 1.869313811764846, + "drifblim": 6.4080405662020326, + "lopunny": 3.568810623166351, + "skuntank": 1.306324511470378, + "bronzong": 3.433878103757744, + "munchlax": 1.9505919727742036, + "drapion": 2.1240932467255567, + "abomasnow": 2.957504792662884, + "froslass": 2.739775175097747, + "rotom": 3.7326066334324164, + "stoutland": 2.2493230759819025, + "liepard": 5.849800552124769, + "musharna": 1.6528456342097444, + "unfezant": 9.860717047211843, + "boldore": 3.3726107199704365, + "swoobat": 8.302564639519892, + "audino": 2.3014013307140084, + "gurdurr": 3.2434286682332205, + "palpitoad": 3.73493088740477, + "seismitoad": 6.542095124886357, + "scolipede": 3.544240889636473, + "whimsicott": 3.2569612368641563, + "lilligant": 2.9491020573968423, + "basculin-red-striped": 3.827585817104043, + "basculin-blue-striped": 4.643759046288186, + "krookodile": 1.9466580116466432, + "maractus": 2.146798017398789, + "crustle": 1.9484592365033162, + "sigilyph": 3.5248636214166336, + "cofagrigus": 2.666761090272571, + "garbodor": 2.5457971828610697, + "cinccino": 4.3563049886165, + "vanillish": 2.1680748886156085, + "emolga": 3.4712720694144568, + "escavalier": 1.4834868180532346, + "amoonguss": 3.4102916385679745, + "jellicent": 2.0349781399437887, + "galvantula": 1.703272195452779, + "klang": 3.1502894731771196, + "klinklang": 3.575421112389326, + "beheeyem": 1.7818208450248887, + "lampent": 2.5686635994227798, + "fraxure": 1.4615666399922391, + "beartic": 1.79439885204703, + "cryogonal": 1.578646924203646, + "accelgor": 2.5121006467082516, + "stunfisk": 1.2701745171445227, + "stunfisk-galar": 1.6288971849900662, + "mienshao": 4.560991531061512, + "druddigon": 1.637105400463172, + "golurk": 1.653711958989995, + "bisharp": 2.23126327618783, + "bouffalant": 1.2186579966684468, + "heatmor": 1.9254717286657956, + "durant": 3.0534744393285433, + "diggersby": 2.670226842166765, + "talonflame": 4.312070395565486, + "pangoro": 1.6283005070100716, + "doublade": 3.073387761675134, + "malamar": 2.695310423232139, + "barbaracle": 1.9545348583081785, + "heliolisk": 3.466012223657305, + "tyrantrum": 1.6786295244766967, + "aurorus": 2.3881588206055513, + "hawlucha": 4.438795614024525, + "dedenne": 3.0483064849705306, + "klefki": 3.236930874343674, + "trevenant": 2.9487795802490107, + "gourgeist-average": 4.816513349967863, + "charjabug": 3.947964290326919, + "vikavolt": 1.7488349645590695, + "ribombee": 4.242350764868323, + "lycanroc-midday": 3.1918058790922186, + "lycanroc-midnight": 2.1282278916037045, + "mudsdale": 1.4245497142562342, + "araquanid": 2.539015709258454, + "lurantis": 2.221204790628246, + "shiinotic": 4.3931414553618495, + "salazzle": 4.328748582159934, + "bewear": 2.2116677550802555, + "tsareena": 3.033869859273159, + "comfey": 4.4942072172792145, + "oranguru": 2.864587320457386, + "passimian": 3.5218448502673207, + "palossand": 1.9302249917608285, + "pyukumuku": 58.23244791291269, + "togedemaru": 1.9324460759558169, + "mimikyu-disguised": 3.1330968935935894, + "greedent": 2.204485897344428, + "orbeetle": 1.7545399492738933, + "thievul": 1.506037506301786, + "eldegoss": 3.8444365958073066, + "dubwool": 2.884838971962143, + "drednaw": 1.6026164328151071, + "boltund": 4.282332821119135, + "carkol": 2.3826629761718077, + "coalossal": 2.0778960643199573, + "sandaconda": 2.8507948994634598, + "cramorant": 8.087233584297596, + "barraskewda": 5.627224281468362, + "toxtricity-amped": 3.8310378859506105, + "centiskorch": 1.9044455054216207, + "grapploct": 2.4821526256947877, + "polteageist": 2.4331896843465883, + "hatterene": 2.591412901474433, + "grimmsnarl": 3.5343426297912846, + "obstagoon": 2.2640663816218938, + "perrserker": 3.2783549532782432, + "alcremie": 1.3982294692654493, + "falinks": 4.37431873418263, + "pincurchin": 3.2540884474086416, + "frosmoth": 2.3024940575757977, + "indeedee-male": 3.017376127197247, + "morpeko": 2.3308036564794863, + "copperajah": 2.6435323858621333, + "duraludon": 1.3861806387003974, + "drakloak": 3.9225714038711263 }, "sandslash": { - "ivysaur": 2.9060515342132973, - "charmeleon": 5.298619588906157, - "wartortle": 2.2944724290959626, - "butterfree": 7.326102751741859, - "raichu": 8.542984360054167, - "raichu-alola": 5.509862616870301, - "sandslash-alola": 2.516705366052366, - "nidoqueen": 3.744091307792435, - "nidoking": 2.649094155002701, - "clefairy": 8.785018852794273, - "clefable": 2.0936067006652324, - "jigglypuff": 27.567023218250796, - "wigglytuff": 1.961959285939527, - "gloom": 5.901724374678069, - "vileplume": 2.6027951601308104, - "dugtrio": 4.29197877361772, - "dugtrio-alola": 5.2387546239201, - "persian": 4.525168999012571, - "persian-alola": 4.830568673476648, - "golduck": 2.8048811245847713, - "poliwrath": 1.9286121463229406, - "kadabra": 4.896862951134305, - "machoke": 4.19272967788942, - "tentacruel": 3.257285166997473, - "slowbro": 1.8648205933109054, - "magneton": 6.5433635556221805, - "haunter": 3.69550506411596, - "kingler": 2.2379024832455086, - "exeggutor": 2.684254291781339, - "marowak": 3.1511730282560046, - "marowak-alola": 2.8297651413380454, - "hitmonlee": 2.870537257294048, - "hitmonchan": 2.4299484619861373, - "lickitung": 1.618482878187675, - "weezing": 1.915250187300217, - "weezing-galar": 3.1617521336687275, - "rhydon": 2.6468327732830788, - "chansey": 30.1547901996071, - "tangela": 4.4966683703618955, - "kangaskhan": 1.9874558604643462, - "seadra": 3.322227824162141, - "seaking": 2.630977395150716, - "starmie": 1.5223797226654976, - "mr-mime": 7.2687524028891595, - "mr-mime-galar": 3.498343915721083, - "scyther": 4.47688448627763, - "jynx": 4.862696729812677, - "electabuzz": 4.662610590095062, - "magmar": 2.419381912571835, - "tauros": 2.079130398708737, - "ditto": 2.6693234059843722, - "vaporeon": 2.9540402481493113, - "jolteon": 3.074990378706215, - "flareon": 3.5526747926990505, - "porygon": 2.795694582388725, - "dragonair": 1.8504420103784662, - "noctowl": 7.43608315748077, - "lanturn": 2.6650075901851147, - "togetic": 6.3863076203480365, - "xatu": 4.179049876374258, - "bellossom": 2.3395929462363956, - "azumarill": 2.302544560955212, - "sudowoodo": 3.276220551001305, - "politoed": 2.583854955724734, - "quagsire": 3.908886311181522, - "slowking": 2.793349808753907, - "dunsparce": 3.11576498316661, - "qwilfish": 4.381780960783733, - "sneasel": 2.635819693973568, - "piloswine": 1.3861572579555659, - "octillery": 2.1915930015970497, - "mantine": 2.865514305761252, - "skarmory": 1.760974661068452, - "hitmontop": 2.8440904348040403, - "miltank": 3.6381181548047263, - "grovyle": 8.282124496304654, - "sceptile": 1.5257185822362742, - "combusken": 4.538949428128446, - "blaziken": 2.2876263073869123, - "marshtomp": 2.3421608224668042, - "swampert": 1.0721635613834972, - "linoone": 5.5805577344821184, - "linoone-galar": 5.215589989246384, - "pelipper": 6.6030380948715806, - "ninjask": 12.551747751697611, - "exploud": 1.4498053172618963, - "lairon": 3.9775785737006357, - "manectric": 2.5474574569285346, - "roselia": 3.759827241297857, - "sharpedo": 5.842237744332554, - "wailmer": 6.0467718720810755, - "torkoal": 2.104841716812322, - "flygon": 2.2001423751069544, - "altaria": 1.7877110562155725, - "whiscash": 1.7142913098759598, - "crawdaunt": 1.8335369269331134, - "claydol": 3.7817020327124697, - "cradily": 2.4297886030761564, - "armaldo": 2.1873998052184707, - "dusclops": 3.5227943524889116, - "absol": 2.098800374576728, - "glalie": 4.651659537859482, - "sealeo": 2.9755751103683945, - "relicanth": 2.2592011473959674, - "metang": 4.231410262165568, - "luxray": 6.05840369994004, - "vespiquen": 4.492505883743407, - "cherrim": 5.65539871014364, - "gastrodon": 2.309908512753241, - "drifblim": 5.518090786151619, - "lopunny": 4.018177406674714, - "skuntank": 2.065185418739895, - "bronzong": 3.0045344932751985, - "munchlax": 2.8313369800210717, - "drapion": 3.2985972541401765, - "abomasnow": 3.369011466252596, - "froslass": 3.011830369977485, - "rotom": 3.5886692168296324, - "stoutland": 2.544657775891259, - "liepard": 8.491214133925059, - "musharna": 1.6474124042582945, - "unfezant": 7.12355568496576, - "boldore": 3.89300033688668, - "swoobat": 5.987100275799843, - "audino": 2.1374195688021542, - "gurdurr": 2.221715110920866, - "palpitoad": 3.542849742046857, - "seismitoad": 6.650838789321275, - "scolipede": 3.6705912542568617, - "whimsicott": 2.5667796342296105, - "lilligant": 2.923488564185444, - "basculin-red-striped": 2.6922814659311376, - "basculin-blue-striped": 3.2774413265764957, - "krookodile": 3.2015287672361925, - "maractus": 2.1088642048904154, - "crustle": 2.3017050602310896, - "sigilyph": 2.531451059921533, - "cofagrigus": 2.409868304240452, - "garbodor": 2.7484243728189717, - "cinccino": 4.59624539422814, - "vanillish": 2.011513149016999, - "emolga": 4.266525574954143, - "escavalier": 1.8960111239412534, - "amoonguss": 2.4488700840319777, - "jellicent": 1.4772628757542186, - "galvantula": 2.1168549973144963, - "klang": 4.092660214251351, - "klinklang": 4.632770536787363, - "beheeyem": 2.0968027086620116, - "lampent": 3.4785278870566207, - "fraxure": 1.6040657616471379, - "beartic": 1.5758078969536786, - "cryogonal": 1.7484345874829934, - "accelgor": 3.600507509102333, - "stunfisk": 1.6606930539174711, - "stunfisk-galar": 3.047514875834338, - "mienshao": 3.5814490429919994, - "druddigon": 1.9742759056890153, - "golurk": 1.97193628581199, - "bisharp": 3.314124102185322, - "bouffalant": 1.4004066769677364, - "heatmor": 2.5265836190722957, - "durant": 2.947454710567465, - "diggersby": 3.5064026558833827, - "talonflame": 4.6494347688059605, - "pangoro": 1.8631913968321083, - "doublade": 2.7172384080193517, - "malamar": 4.522776998418877, - "barbaracle": 1.7123062119224008, - "heliolisk": 5.992897773959284, - "tyrantrum": 1.9725640897001022, - "aurorus": 3.385473029339965, - "hawlucha": 3.3658599600740065, - "dedenne": 4.3050350781280855, - "klefki": 4.44878021187669, - "trevenant": 2.688290645335857, - "gourgeist-average": 4.447088122853416, - "charjabug": 4.9074427408318835, - "vikavolt": 2.1198740987116964, - "ribombee": 5.267900691206853, - "lycanroc-midday": 4.863963946601892, - "lycanroc-midnight": 3.3955042223538427, - "mudsdale": 1.6494341613084456, - "araquanid": 2.970610951825134, - "lurantis": 2.439614036445037, - "shiinotic": 3.917907090594592, - "salazzle": 6.560806802808321, - "bewear": 1.8303842692537207, - "tsareena": 3.4227792575308653, - "comfey": 4.124669681429873, - "oranguru": 3.1683296712218896, - "passimian": 2.397561135288085, - "palossand": 1.8585996273588956, - "pyukumuku": 46.843936611538524, - "togedemaru": 5.655651413160037, - "mimikyu-disguised": 4.607051185639535, - "greedent": 2.213269620825263, - "orbeetle": 1.9848168792568464, - "thievul": 2.1861793210473985, - "eldegoss": 3.8511019259245742, - "dubwool": 3.0103167875423025, - "drednaw": 1.7104306322798797, - "boltund": 7.380879019182643, - "carkol": 4.497660871951632, - "coalossal": 3.2479355755209864, - "sandaconda": 2.963868407416413, - "cramorant": 6.8506958030633935, - "barraskewda": 4.628335228007419, - "toxtricity-amped": 5.628206204887155, - "centiskorch": 3.5475075632740563, - "grapploct": 1.5290592078605836, - "polteageist": 2.77449630363668, - "hatterene": 2.5758057811938926, - "grimmsnarl": 3.9772171280209077, - "obstagoon": 3.0039543885061217, - "perrserker": 4.397146209121125, - "alcremie": 1.4638816511862158, - "falinks": 3.1137668801116902, - "pincurchin": 3.9910104611205535, - "frosmoth": 4.120514188185821, - "indeedee-male": 3.810239940195931, - "morpeko": 4.113891006004915, - "copperajah": 3.4028466715467713, - "duraludon": 2.0360051917253883, - "drakloak": 4.7464764473525145, - "sandslash": 2.1441917266747796 + "ivysaur": 2.9020224289005303, + "charmeleon": 5.306971969902048, + "wartortle": 2.2888821439247433, + "butterfree": 7.323897369664395, + "raichu": 8.580118357486214, + "raichu-alola": 5.529512913922101, + "sandslash": 2.1441917266747796, + "sandslash-alola": 2.5184663820247586, + "nidoqueen": 3.7473879629600617, + "nidoking": 2.655343520279091, + "clefairy": 8.777433526030594, + "clefable": 2.096182313145067, + "jigglypuff": 27.577819216522144, + "wigglytuff": 1.9617204536358952, + "gloom": 5.90855523658322, + "vileplume": 2.5980514118469507, + "dugtrio": 4.302318391973047, + "dugtrio-alola": 5.250030310348835, + "persian": 4.530578149010174, + "persian-alola": 4.83986928486292, + "golduck": 2.8015229714808987, + "poliwrath": 1.9289491499030709, + "kadabra": 4.906686313172591, + "machoke": 4.19972323409521, + "tentacruel": 3.2555315921095396, + "slowbro": 1.8657532026246022, + "magneton": 6.561842989520962, + "haunter": 3.6820280654820414, + "kingler": 2.2374565184974733, + "exeggutor": 2.6839021161797865, + "marowak": 3.1549575904302296, + "marowak-alola": 2.8369722290026393, + "hitmonlee": 2.877089281032513, + "hitmonchan": 2.4342788499132997, + "lickitung": 1.6174763337894489, + "weezing": 1.9172769554494087, + "weezing-galar": 3.1633933536723706, + "rhydon": 2.64900631121242, + "chansey": 30.192321080176782, + "tangela": 4.490115200563077, + "kangaskhan": 1.9912163077654266, + "seadra": 3.3122464634838678, + "seaking": 2.6358981427052997, + "starmie": 1.5242643477460636, + "mr-mime": 7.275266685593083, + "mr-mime-galar": 3.498955412905768, + "scyther": 4.486524555993414, + "jynx": 4.863859424973823, + "electabuzz": 4.685834751619278, + "magmar": 2.424444135295306, + "tauros": 2.082599301110238, + "ditto": 2.657338047228442, + "vaporeon": 2.9499377591141913, + "jolteon": 3.086179436859438, + "flareon": 3.5611556495528465, + "porygon": 2.796550966430212, + "dragonair": 1.8531564663319462, + "noctowl": 7.441402683617063, + "lanturn": 2.6667040721576196, + "togetic": 6.3897142042238855, + "xatu": 4.177276766303899, + "bellossom": 2.335352092268649, + "azumarill": 2.306506755970727, + "sudowoodo": 3.2838398744517807, + "politoed": 2.584944014139027, + "quagsire": 3.8987835742723034, + "slowking": 2.79537722776237, + "dunsparce": 3.1151113278219675, + "qwilfish": 4.3874833848253445, + "sneasel": 2.6414027753899525, + "piloswine": 1.3860659233332027, + "octillery": 2.1898669614719015, + "mantine": 2.8625430994762056, + "skarmory": 1.7600552861580998, + "hitmontop": 2.8464864902005425, + "miltank": 3.64262319944363, + "grovyle": 8.271853195265683, + "sceptile": 1.5228384609644123, + "combusken": 4.544628701043643, + "blaziken": 2.292312561224788, + "marshtomp": 2.3400641413902084, + "swampert": 1.0701012479179917, + "linoone": 5.590580449695564, + "linoone-galar": 5.223990892658575, + "pelipper": 6.601804530148287, + "ninjask": 12.57630843017922, + "exploud": 1.4487440113226764, + "lairon": 3.9863063491911657, + "manectric": 2.5550164992875333, + "roselia": 3.7552190435423842, + "sharpedo": 5.852839509824216, + "wailmer": 6.041620974053043, + "torkoal": 2.106765183715639, + "flygon": 2.1988424478150597, + "altaria": 1.7867397915827667, + "whiscash": 1.7131321847972252, + "crawdaunt": 1.8337490023313392, + "claydol": 3.780033564632075, + "cradily": 2.429394281915749, + "armaldo": 2.193030169230698, + "dusclops": 3.5241732328164157, + "absol": 2.1016008670819053, + "glalie": 4.657240210211108, + "sealeo": 2.969242521192887, + "relicanth": 2.26131480604682, + "metang": 4.24355384520684, + "luxray": 6.085529370252485, + "vespiquen": 4.502435943365165, + "cherrim": 5.642611416714421, + "gastrodon": 2.312644234712286, + "drifblim": 5.52320533297976, + "lopunny": 4.026624424543783, + "skuntank": 2.071351063588155, + "bronzong": 3.0052237353809286, + "munchlax": 2.8425151542269074, + "drapion": 3.3078853456687547, + "abomasnow": 3.368566734531707, + "froslass": 3.008170047103528, + "rotom": 3.58973530067765, + "stoutland": 2.5475651168443916, + "liepard": 8.515014183413866, + "musharna": 1.6474670889837797, + "unfezant": 7.131087988754108, + "boldore": 3.9001314893127965, + "swoobat": 5.984669082150994, + "audino": 2.1374184630915134, + "gurdurr": 2.2233838678888223, + "palpitoad": 3.538997110421266, + "seismitoad": 6.654400416264849, + "scolipede": 3.6781281142622566, + "whimsicott": 2.562862945684171, + "lilligant": 2.917066777697237, + "basculin-red-striped": 2.692229237889913, + "basculin-blue-striped": 3.2737510769580185, + "krookodile": 3.2059507872130206, + "maractus": 2.104388614367341, + "crustle": 2.306662293338909, + "sigilyph": 2.530202657441107, + "cofagrigus": 2.4068885627799212, + "garbodor": 2.7577142781936397, + "cinccino": 4.59802771142571, + "vanillish": 2.0076684596502288, + "emolga": 4.28248340168463, + "escavalier": 1.8975996543581797, + "amoonguss": 2.44804167903536, + "jellicent": 1.476124324931655, + "galvantula": 2.1261134555646586, + "klang": 4.102743821387981, + "klinklang": 4.6404430957081715, + "beheeyem": 2.099510682260157, + "lampent": 3.4843391842223372, + "fraxure": 1.606589117862842, + "beartic": 1.573537692766437, + "cryogonal": 1.744173693271343, + "accelgor": 3.6034957526813525, + "stunfisk": 1.6632020403013128, + "stunfisk-galar": 3.0489753564735835, + "mienshao": 3.584750872212801, + "druddigon": 1.9790663132595891, + "golurk": 1.9725853269667657, + "bisharp": 3.3215366527267784, + "bouffalant": 1.4038249482679168, + "heatmor": 2.5306671761250445, + "durant": 2.95064144413477, + "diggersby": 3.512893585627694, + "talonflame": 4.653791406347336, + "pangoro": 1.86618442130963, + "doublade": 2.7195463938179483, + "malamar": 4.535886874300836, + "barbaracle": 1.7124472605345957, + "heliolisk": 6.013565164102854, + "tyrantrum": 1.9762812116870379, + "aurorus": 3.393441874672672, + "hawlucha": 3.366899020883638, + "dedenne": 4.318881657215099, + "klefki": 4.4545433219011885, + "trevenant": 2.6871837926344866, + "gourgeist-average": 4.444400823435625, + "charjabug": 4.930165109952286, + "vikavolt": 2.122255586184466, + "ribombee": 5.26813812203808, + "lycanroc-midday": 4.879685689489207, + "lycanroc-midnight": 3.4056838625841026, + "mudsdale": 1.6519301197877132, + "araquanid": 2.9772588216879603, + "lurantis": 2.4364382485002376, + "shiinotic": 3.916150983281785, + "salazzle": 6.5791204147949855, + "bewear": 1.8310554743751322, + "tsareena": 3.424610353262093, + "comfey": 4.119010829469082, + "oranguru": 3.1727780980366136, + "passimian": 2.4007134535208214, + "palossand": 1.8553740993347407, + "pyukumuku": 46.921136329770206, + "togedemaru": 5.680957497750986, + "mimikyu-disguised": 4.613164011799739, + "greedent": 2.216475350291849, + "orbeetle": 1.9859810733189125, + "thievul": 2.1909024952574248, + "eldegoss": 3.8424728090022366, + "dubwool": 3.0129564562695825, + "drednaw": 1.7127273768693816, + "boltund": 7.413743756304829, + "carkol": 4.507925046289664, + "coalossal": 3.2504139781095898, + "sandaconda": 2.9638560336088844, + "cramorant": 6.854516111750961, + "barraskewda": 4.632382212940981, + "toxtricity-amped": 5.648575529848204, + "centiskorch": 3.555791357672985, + "grapploct": 1.5282037686533574, + "polteageist": 2.7722556945910513, + "hatterene": 2.5785707548637102, + "grimmsnarl": 3.9823617059566527, + "obstagoon": 3.011380521395018, + "perrserker": 4.407042093278757, + "alcremie": 1.463886103336355, + "falinks": 3.1155243015817717, + "pincurchin": 3.9967638484072916, + "frosmoth": 4.1234977438636715, + "indeedee-male": 3.8152848872961904, + "morpeko": 4.131431788588671, + "copperajah": 3.407251920013369, + "duraludon": 2.041041503969508, + "drakloak": 4.748947401661672 }, "sandslash-alola": { - "ivysaur": 4.720027411622491, - "charmeleon": 3.2614995706336822, - "wartortle": 2.2859088544184396, - "butterfree": 8.596419650218921, - "raichu": 4.227704126976189, - "raichu-alola": 3.7489218822538546, - "sandslash": 2.4763762505394498, - "nidoqueen": 3.3735224101674777, - "nidoking": 2.235442995349984, - "clefairy": 7.413011867666646, - "clefable": 2.2578532688961896, - "jigglypuff": 29.1125707851801, - "wigglytuff": 2.185629178115212, - "gloom": 8.348908353651725, - "vileplume": 4.089292383304268, - "dugtrio": 4.888912154399456, - "dugtrio-alola": 3.7656584178555397, - "persian": 5.13431655487663, - "persian-alola": 4.564224717742305, - "golduck": 2.925929247819675, - "poliwrath": 1.548846664659001, - "kadabra": 4.634491485082398, - "machoke": 3.439307114329731, - "tentacruel": 2.3684576991752877, - "slowbro": 1.4161613320605073, - "magneton": 3.096022687217601, - "haunter": 4.66261293731481, - "kingler": 1.9089127153992047, - "exeggutor": 2.4659664637121876, - "marowak": 3.6431016222254957, - "marowak-alola": 2.023700230285381, - "hitmonlee": 2.0216907614533306, - "hitmonchan": 2.0106818918377325, - "lickitung": 2.124698716880933, - "weezing": 1.1352311577991339, - "weezing-galar": 2.1333733599537092, - "rhydon": 2.3684671149009002, - "chansey": 35.79847627873264, - "tangela": 5.7033805600941205, - "kangaskhan": 2.103117312915136, - "seadra": 3.6392980890902913, - "seaking": 2.435889389201048, - "starmie": 1.433500786576158, - "mr-mime": 7.772535565158222, - "mr-mime-galar": 4.8664904998686005, - "scyther": 4.60210073601716, - "jynx": 6.177355164006712, - "electabuzz": 2.5987619717442767, - "magmar": 1.3540987599081404, - "tauros": 1.9304346115602002, - "ditto": 3.1188534767349467, - "vaporeon": 3.1116134636964725, - "jolteon": 2.0489207737707433, - "flareon": 1.9013590843214776, - "porygon": 3.15571383466655, - "dragonair": 2.728785461704768, - "noctowl": 9.145159702638857, - "lanturn": 1.7707142791945287, - "togetic": 5.72627673803923, - "xatu": 5.188472930858582, - "bellossom": 3.2268794211198086, - "azumarill": 2.1660560228886525, - "sudowoodo": 2.3145058383140142, - "politoed": 2.3361525274294768, - "quagsire": 3.5635504851283804, - "slowking": 2.5352935200060194, - "dunsparce": 3.7109099122624163, - "qwilfish": 3.275393682977884, - "sneasel": 3.392249452651585, - "piloswine": 1.6386639317578242, - "octillery": 2.2218424349705566, - "mantine": 3.2736924918987906, - "skarmory": 1.9388585101263462, - "hitmontop": 2.4439936531181576, - "miltank": 4.0324705790945625, - "grovyle": 10.21227780868356, - "sceptile": 2.0313207843465424, - "combusken": 2.0786052529094414, - "blaziken": 1.0979507890465858, - "marshtomp": 2.4894045845374784, - "swampert": 1.220280305204036, - "linoone": 6.0788976546035585, - "linoone-galar": 6.502615475255937, - "pelipper": 7.162482533840288, - "ninjask": 12.696624478254634, - "exploud": 1.733590251004417, - "lairon": 2.8788884374494117, - "manectric": 1.5736169575273569, - "roselia": 6.031163178978591, - "sharpedo": 5.720356231458066, - "wailmer": 6.184493725754153, - "torkoal": 1.1376155329395043, - "flygon": 4.615044065483, - "altaria": 2.4714215239757555, - "whiscash": 2.0551261428648977, - "crawdaunt": 2.0268892742968916, - "claydol": 4.486698611785386, - "cradily": 3.0715791554114436, - "armaldo": 2.108654227559068, - "dusclops": 3.4325532345617016, - "absol": 2.069803513235614, - "glalie": 5.158203339054552, - "sealeo": 3.8331580671621346, - "relicanth": 1.9323586127050463, - "metang": 2.648764636056055, - "luxray": 3.85617474155388, - "vespiquen": 4.299867175771643, - "cherrim": 7.966187380184461, - "gastrodon": 2.344032741134853, - "drifblim": 5.8474023477120465, - "lopunny": 3.9438131797986298, - "skuntank": 1.19269444318642, - "bronzong": 2.9739358684101327, - "munchlax": 2.718602204124093, - "drapion": 2.3969660190523916, - "abomasnow": 4.072950785811374, - "froslass": 3.573495259107892, - "rotom": 3.5244480102682654, - "stoutland": 2.8806476889544363, - "liepard": 8.055445451060132, - "musharna": 1.6575633910770282, - "unfezant": 8.289952421770934, - "boldore": 2.830318555156734, - "swoobat": 7.4332073795686355, - "audino": 2.2404511258816946, - "gurdurr": 1.662801925215322, - "palpitoad": 3.503086450513748, - "seismitoad": 7.284613351226353, - "scolipede": 3.767750276604719, - "whimsicott": 4.207794868756613, - "lilligant": 4.1098445333930655, - "basculin-red-striped": 2.764365607560223, - "basculin-blue-striped": 3.349882195724617, - "krookodile": 3.2968755233430684, - "maractus": 2.9998583122918774, - "crustle": 2.091091875836585, - "sigilyph": 3.0699245551483854, - "cofagrigus": 2.4514217618514302, - "garbodor": 1.885276927916851, - "cinccino": 5.501592952359395, - "vanillish": 2.8490726772929102, - "emolga": 3.951932789010791, - "escavalier": 1.7135274358884747, - "amoonguss": 3.8066441899718066, - "jellicent": 1.6639331336962644, - "galvantula": 1.8021380952483215, - "klang": 2.818891718671705, - "klinklang": 3.675485363361774, - "beheeyem": 1.8684310481621176, - "lampent": 1.7479170032526055, - "fraxure": 2.1239129840946815, - "beartic": 2.05135278826814, - "cryogonal": 2.630481858842326, - "accelgor": 4.097163648442045, - "stunfisk": 1.5549844672834734, - "stunfisk-galar": 2.2215519965492465, - "mienshao": 2.845335191087508, - "druddigon": 2.4401590098928967, - "golurk": 2.110286576772073, - "bisharp": 3.5973464719055652, - "bouffalant": 1.3478285480615169, - "heatmor": 1.6442617385404463, - "durant": 2.6893521875274633, - "diggersby": 4.01288866536308, - "talonflame": 3.908929989042376, - "pangoro": 1.6649341804876212, - "doublade": 1.6502539971679997, - "malamar": 2.813580719176069, - "barbaracle": 1.647668583239686, - "heliolisk": 4.103939202842581, - "tyrantrum": 1.7148315278994153, - "aurorus": 3.4722423892856322, - "hawlucha": 4.098058313859923, - "dedenne": 3.107126818031793, - "klefki": 2.709313804568561, - "trevenant": 3.8082480300637287, - "gourgeist-average": 4.947639205703441, - "charjabug": 4.419852950815107, - "vikavolt": 2.1293524338991543, - "ribombee": 5.87236395064488, - "lycanroc-midday": 3.7055446693651266, - "lycanroc-midnight": 2.394623441346341, - "mudsdale": 1.6853508649037297, - "araquanid": 3.214416367413729, - "lurantis": 3.2792257121782162, - "shiinotic": 6.2605428380141035, - "salazzle": 2.9259717490528034, - "bewear": 2.0108198576242717, - "tsareena": 4.337519268605971, - "comfey": 4.829572558438345, - "oranguru": 2.9803767885823595, - "passimian": 1.9888606992806754, - "palossand": 2.2027493245028213, - "pyukumuku": 40.57874231674499, - "togedemaru": 2.5653810290283583, - "mimikyu-disguised": 4.456122116717745, - "greedent": 2.4173320634546593, - "orbeetle": 2.2417053606701938, - "thievul": 1.64188804645008, - "eldegoss": 5.547281535849407, - "dubwool": 3.0303481783822797, - "drednaw": 1.3790577366338646, - "boltund": 4.651475447526802, - "carkol": 2.1082032114533242, - "coalossal": 1.6813635622713046, - "sandaconda": 3.4643242580176663, - "cramorant": 7.21157231331343, - "barraskewda": 4.468204166020307, - "toxtricity-amped": 2.7432577706590977, - "centiskorch": 2.875933443979961, - "grapploct": 1.3222436053446422, - "polteageist": 3.0794924853936285, - "hatterene": 2.7139414403667232, - "grimmsnarl": 3.4749928296706756, - "obstagoon": 3.575707585972468, - "perrserker": 3.2841265141952696, - "alcremie": 1.4505574363864495, - "falinks": 2.668961458305724, - "pincurchin": 2.804300230372939, - "frosmoth": 4.688411021557874, - "indeedee-male": 2.902283846166932, - "morpeko": 2.987704673538695, - "copperajah": 2.3508094905158634, - "duraludon": 1.577047460830319, - "drakloak": 6.229840131672024, - "sandslash-alola": 2.5037776783835684 + "ivysaur": 4.734794866809265, + "charmeleon": 3.244121844331011, + "wartortle": 2.281028034847633, + "butterfree": 8.630963845427797, + "raichu": 4.213671513061488, + "raichu-alola": 3.750217635886698, + "sandslash": 2.4779908148951364, + "sandslash-alola": 2.5037776783835684, + "nidoqueen": 3.3719247400581964, + "nidoking": 2.2346742185521125, + "clefairy": 7.383213055227047, + "clefable": 2.259800144366985, + "jigglypuff": 29.16974060473097, + "wigglytuff": 2.189250115331839, + "gloom": 8.3769029541958, + "vileplume": 4.098275626584261, + "dugtrio": 4.890533805114988, + "dugtrio-alola": 3.7691559898781017, + "persian": 5.149221284796759, + "persian-alola": 4.570475153080035, + "golduck": 2.926294349539578, + "poliwrath": 1.5456498389842723, + "kadabra": 4.642768352110142, + "machoke": 3.4328238307197667, + "tentacruel": 2.3691168113731695, + "slowbro": 1.4113935480606699, + "magneton": 3.0935206423854753, + "haunter": 4.664334873739455, + "kingler": 1.90327918411033, + "exeggutor": 2.468755940811664, + "marowak": 3.6444099309355815, + "marowak-alola": 2.0193237294934367, + "hitmonlee": 2.0139641974972955, + "hitmonchan": 2.0076879185971857, + "lickitung": 2.127625191166347, + "weezing": 1.1332170376948958, + "weezing-galar": 2.127120262551193, + "rhydon": 2.367304783638232, + "chansey": 35.92335784036769, + "tangela": 5.714224459340516, + "kangaskhan": 2.10772304583494, + "seadra": 3.635446634984933, + "seaking": 2.4383882839575417, + "starmie": 1.433888836556855, + "mr-mime": 7.783546930978945, + "mr-mime-galar": 4.8762726173896525, + "scyther": 4.619433944887364, + "jynx": 6.19455247899339, + "electabuzz": 2.599461435117724, + "magmar": 1.348555316750095, + "tauros": 1.9293947265363944, + "ditto": 3.1007770458884125, + "vaporeon": 3.112324721633277, + "jolteon": 2.0498483330591144, + "flareon": 1.8971002268781334, + "porygon": 3.1615675859338, + "dragonair": 2.7364461257062294, + "noctowl": 9.183033453475902, + "lanturn": 1.7701735553823252, + "togetic": 5.712046236956834, + "xatu": 5.200926729709677, + "bellossom": 3.234435414037783, + "azumarill": 2.1697831930988523, + "sudowoodo": 2.311570365639928, + "politoed": 2.3340486025192733, + "quagsire": 3.5480518952057674, + "slowking": 2.537421014242559, + "dunsparce": 3.7200036873949562, + "qwilfish": 3.277969385810991, + "sneasel": 3.403435088417888, + "piloswine": 1.637839355867182, + "octillery": 2.22184184544766, + "mantine": 3.2804614393342346, + "skarmory": 1.9419308879107149, + "hitmontop": 2.439875852134791, + "miltank": 4.043012264698684, + "grovyle": 10.216866822757108, + "sceptile": 2.0371661204775617, + "combusken": 2.064107736648186, + "blaziken": 1.091724741240946, + "marshtomp": 2.4899987835298925, + "swampert": 1.2185021889251992, + "linoone": 6.09528837183902, + "linoone-galar": 6.515913072061687, + "pelipper": 7.175934622854022, + "ninjask": 12.737432931287486, + "exploud": 1.7322414275613227, + "lairon": 2.8816602321190983, + "manectric": 1.5690178639496783, + "roselia": 6.04649914632554, + "sharpedo": 5.730008396739446, + "wailmer": 6.185103998727596, + "torkoal": 1.131596111276399, + "flygon": 4.625959365703248, + "altaria": 2.4723518373328686, + "whiscash": 2.056530736227974, + "crawdaunt": 2.027994517211253, + "claydol": 4.491582800195601, + "cradily": 3.080335040518779, + "armaldo": 2.111720883177719, + "dusclops": 3.433182009700291, + "absol": 2.0691577480557832, + "glalie": 5.172003920125128, + "sealeo": 3.839418206011926, + "relicanth": 1.9333299856567026, + "metang": 2.649922162425618, + "luxray": 3.8584861155131884, + "vespiquen": 4.309654104977886, + "cherrim": 7.9834125350509915, + "gastrodon": 2.347583772335854, + "drifblim": 5.856320970896858, + "lopunny": 3.9472017285606062, + "skuntank": 1.1924721207139561, + "bronzong": 2.9779610464122923, + "munchlax": 2.7225558590052685, + "drapion": 2.4006020057564337, + "abomasnow": 4.086375346955613, + "froslass": 3.577984542770083, + "rotom": 3.5214269852266495, + "stoutland": 2.8887966457869627, + "liepard": 8.075881111868512, + "musharna": 1.6596157802938771, + "unfezant": 8.320137501757971, + "boldore": 2.8255614335999457, + "swoobat": 7.451176762416005, + "audino": 2.2355442613161403, + "gurdurr": 1.6554498006143026, + "palpitoad": 3.4982212396509826, + "seismitoad": 7.302579084967432, + "scolipede": 3.774383210057086, + "whimsicott": 4.217420721033672, + "lilligant": 4.119246880458279, + "basculin-red-striped": 2.767328074011883, + "basculin-blue-striped": 3.34905533086775, + "krookodile": 3.297356012975725, + "maractus": 3.0073003161933674, + "crustle": 2.0907791871021977, + "sigilyph": 3.075517940974766, + "cofagrigus": 2.449745915295736, + "garbodor": 1.8867405992503525, + "cinccino": 5.519170487610404, + "vanillish": 2.8579600110023895, + "emolga": 3.959484511652584, + "escavalier": 1.7142601632178827, + "amoonguss": 3.8204397241390673, + "jellicent": 1.6655914063768782, + "galvantula": 1.8028659529768327, + "klang": 2.818053716363403, + "klinklang": 3.6808264234817987, + "beheeyem": 1.868704189419467, + "lampent": 1.7390412320636677, + "fraxure": 2.1304319656800423, + "beartic": 2.0522823599829265, + "cryogonal": 2.6413700099978215, + "accelgor": 4.107288737747947, + "stunfisk": 1.55328493948863, + "stunfisk-galar": 2.219680892384325, + "mienshao": 2.836565022131497, + "druddigon": 2.445193346116282, + "golurk": 2.1056393006169927, + "bisharp": 3.6088970529254, + "bouffalant": 1.3488580371348862, + "heatmor": 1.637075663613575, + "durant": 2.6902200606020763, + "diggersby": 4.017536248969541, + "talonflame": 3.901840753706682, + "pangoro": 1.6627788732772821, + "doublade": 1.6450166470258498, + "malamar": 2.8144906829043257, + "barbaracle": 1.6506569517529077, + "heliolisk": 4.108741723445956, + "tyrantrum": 1.7154229070049363, + "aurorus": 3.479488062713086, + "hawlucha": 4.096219122835114, + "dedenne": 3.1085297048594445, + "klefki": 2.710595240106569, + "trevenant": 3.8080885029264335, + "gourgeist-average": 4.929692005610557, + "charjabug": 4.422336301319076, + "vikavolt": 2.1319858410849877, + "ribombee": 5.883353717896358, + "lycanroc-midday": 3.712372501184377, + "lycanroc-midnight": 2.394825710187328, + "mudsdale": 1.6820905700918054, + "araquanid": 3.2232673241387095, + "lurantis": 3.2871568525695745, + "shiinotic": 6.274030534896724, + "salazzle": 2.909009633818158, + "bewear": 2.014861325719804, + "tsareena": 4.3517520021078955, + "comfey": 4.837486603532135, + "oranguru": 2.9860491457801777, + "passimian": 1.9847658925516156, + "palossand": 2.1987062626418252, + "pyukumuku": 40.493764755382614, + "togedemaru": 2.569953145068798, + "mimikyu-disguised": 4.46220739064205, + "greedent": 2.423288135950724, + "orbeetle": 2.244823853375737, + "thievul": 1.640731824668884, + "eldegoss": 5.561312447824559, + "dubwool": 3.0311022785534134, + "drednaw": 1.3803754285039087, + "boltund": 4.653365746916063, + "carkol": 2.096901305613149, + "coalossal": 1.6749715664136238, + "sandaconda": 3.463478651731558, + "cramorant": 7.226663289820506, + "barraskewda": 4.471502078516753, + "toxtricity-amped": 2.742034598993887, + "centiskorch": 2.8690216378435784, + "grapploct": 1.3147576546050022, + "polteageist": 3.084677904367826, + "hatterene": 2.717750330494442, + "grimmsnarl": 3.470179152162534, + "obstagoon": 3.5840870270431466, + "perrserker": 3.2858285648193117, + "alcremie": 1.447762826835271, + "falinks": 2.663221981280499, + "pincurchin": 2.8027746161575795, + "frosmoth": 4.699928502381592, + "indeedee-male": 2.895936645980728, + "morpeko": 2.9919913333528783, + "copperajah": 2.348151518550541, + "duraludon": 1.5784986030186585, + "drakloak": 6.239033469990062 }, "nidoqueen": { - "ivysaur": 3.0979107592726303, - "charmeleon": 4.720539296476941, - "wartortle": 2.382989755665228, - "butterfree": 4.289214392722673, - "raichu": 6.7239012527144695, - "raichu-alola": 3.880422315144676, - "sandslash": 2.2145392690969365, - "sandslash-alola": 2.7472319039646926, - "nidoking": 2.1661782703521757, - "clefairy": 9.851806245562553, - "clefable": 2.551155479502734, - "jigglypuff": 31.0830954743087, - "wigglytuff": 2.3229748749833723, - "gloom": 5.98877947053312, - "vileplume": 2.9271959770084948, - "dugtrio": 3.3696074090262624, - "dugtrio-alola": 3.932131407856101, - "persian": 4.163123900644372, - "persian-alola": 4.085763252787217, - "golduck": 2.6738551407399216, - "poliwrath": 1.779855514244598, - "kadabra": 3.825207593694747, - "machoke": 4.027774226587196, - "tentacruel": 2.438404669829321, - "slowbro": 1.8154104994350015, - "magneton": 6.6381132171384, - "haunter": 4.7187878958887035, - "kingler": 2.4537683968755175, - "exeggutor": 2.0295603048015587, - "marowak": 2.9007966264422205, - "marowak-alola": 2.733860522595651, - "hitmonlee": 2.25884633826218, - "hitmonchan": 2.029776744378364, - "lickitung": 1.6837848669412858, - "weezing": 2.2485231966513815, - "weezing-galar": 3.809729288821557, - "rhydon": 2.980680328348186, - "chansey": 19.22205113397912, - "tangela": 6.3217351935878305, - "kangaskhan": 1.7375017544661144, - "seadra": 4.08892277343721, - "seaking": 2.165872634869064, - "starmie": 1.5325738757304204, - "mr-mime": 5.99497045980219, - "mr-mime-galar": 3.2142712220938936, - "scyther": 2.5237172803692127, - "jynx": 3.9177161250115695, - "electabuzz": 3.483786444652993, - "magmar": 1.9533221423014298, - "tauros": 1.9869431997021034, - "ditto": 4.582956189846163, - "vaporeon": 2.648405684550193, - "jolteon": 2.324220409688688, - "flareon": 2.655380695041586, - "porygon": 2.668379258533605, - "dragonair": 1.7290537222598723, - "noctowl": 4.9495561245886925, - "lanturn": 2.2260492128156746, - "togetic": 5.961098160253986, - "xatu": 3.848536717040788, - "bellossom": 2.758679033475656, - "azumarill": 2.464150020165568, - "sudowoodo": 3.4248902409034967, - "politoed": 2.151816024824918, - "quagsire": 4.354893433389395, - "slowking": 2.228765705751975, - "dunsparce": 3.1059293444949407, - "qwilfish": 4.46356743852013, - "sneasel": 2.069620830339153, - "piloswine": 1.4713255308154214, - "octillery": 2.2099897021564976, - "mantine": 1.9117819742069742, - "skarmory": 1.9552616702193681, - "hitmontop": 2.4167069818893294, - "miltank": 3.7346382511359972, - "grovyle": 8.54138353755492, - "sceptile": 1.5310723318223178, - "combusken": 4.293593484977391, - "blaziken": 2.0517017835344955, - "marshtomp": 2.1040052274601475, - "swampert": 1.0638541968073731, - "linoone": 5.112151980589487, - "linoone-galar": 4.523687190900745, - "pelipper": 5.7150385552704055, - "ninjask": 7.138175822887612, - "exploud": 1.4507081807794102, - "lairon": 5.505543067953532, - "manectric": 2.2447275657776355, - "roselia": 3.4547243108372436, - "sharpedo": 4.644818445250351, - "wailmer": 5.880867144077594, - "torkoal": 2.6258966700668234, - "flygon": 2.118331803628226, - "altaria": 1.4983242546314508, - "whiscash": 1.7365337514813715, - "crawdaunt": 1.852259468115396, - "claydol": 3.3380463784368946, - "cradily": 2.284199556235955, - "armaldo": 1.8621127651325984, - "dusclops": 3.7904346947210863, - "absol": 1.8105453673246965, - "glalie": 3.7723842739702973, - "sealeo": 2.690006178070468, - "relicanth": 2.495908053808172, - "metang": 3.726083017343231, - "luxray": 5.1613384601020895, - "vespiquen": 2.618778030266969, - "cherrim": 6.341385050747887, - "gastrodon": 1.9904532634071406, - "drifblim": 4.5235260698369135, - "lopunny": 3.5553271214200226, - "skuntank": 1.8823408133226494, - "bronzong": 3.1658866512258013, - "munchlax": 2.139345040578636, - "drapion": 3.34241450020262, - "abomasnow": 3.249543519165604, - "froslass": 2.9017204200867397, - "rotom": 4.467400518696055, - "stoutland": 2.324059689209086, - "liepard": 7.007464389864538, - "musharna": 1.4776841761888615, - "unfezant": 5.917841457193983, - "boldore": 4.634553246316276, - "swoobat": 5.496789614563998, - "audino": 2.201282525208387, - "gurdurr": 2.3091516009921156, - "palpitoad": 3.3365092289300415, - "seismitoad": 6.637667358966372, - "scolipede": 3.2854409260430426, - "whimsicott": 5.028037897480932, - "lilligant": 3.469980647957933, - "basculin-red-striped": 2.413482705151529, - "basculin-blue-striped": 3.2476184113703686, - "krookodile": 2.6414987957782605, - "maractus": 2.465644700309339, - "crustle": 2.255701335839905, - "sigilyph": 2.37576021790301, - "cofagrigus": 2.8250592179516705, - "garbodor": 2.4605901806934645, - "cinccino": 4.186884200520359, - "vanillish": 1.852238192479145, - "emolga": 3.1679372120595, - "escavalier": 1.6348573277584786, - "amoonguss": 2.5781504817469054, - "jellicent": 1.5449808037167694, - "galvantula": 1.769087427486755, - "klang": 3.833192258168901, - "klinklang": 4.444171116710232, - "beheeyem": 1.8225210310939286, - "lampent": 3.2504547623835056, - "fraxure": 1.5749984672070223, - "beartic": 1.4989028334655325, - "cryogonal": 1.3029197514012176, - "accelgor": 2.978786364257885, - "stunfisk": 1.4302487979204779, - "stunfisk-galar": 2.7681351579752507, - "mienshao": 3.4148090197658876, - "druddigon": 1.7128922555169108, - "golurk": 2.0274765647143482, - "bisharp": 3.1549138934010488, - "bouffalant": 1.2697335120656335, - "heatmor": 2.363452157181273, - "durant": 3.4198135228896405, - "diggersby": 2.9321140377066794, - "talonflame": 2.6727254293176044, - "pangoro": 1.7638370858343688, - "doublade": 3.785065622022376, - "malamar": 2.738794680004529, - "barbaracle": 1.7376376718022806, - "heliolisk": 4.192079786533917, - "tyrantrum": 2.2518780963984617, - "aurorus": 2.7863317940282846, - "hawlucha": 3.4494961104288384, - "dedenne": 4.074720091738893, - "klefki": 4.122235502639125, - "trevenant": 3.3233750035443466, - "gourgeist-average": 6.093071964745904, - "charjabug": 4.080195868544877, - "vikavolt": 1.8143237976309377, - "ribombee": 5.5096659259450895, - "lycanroc-midday": 4.27057892047548, - "lycanroc-midnight": 2.9827847270724606, - "mudsdale": 1.5489332938317326, - "araquanid": 2.0338397970813307, - "lurantis": 2.720986138316646, - "shiinotic": 6.7213727768155405, - "salazzle": 5.634376951502313, - "bewear": 1.7617957819324204, - "tsareena": 3.4408454928390335, - "comfey": 5.049018104033803, - "oranguru": 2.1697601636155937, - "passimian": 2.462855757234927, - "palossand": 2.200462972325904, - "pyukumuku": 45.17688622133653, - "togedemaru": 4.244179640035562, - "mimikyu-disguised": 4.241646081197098, - "greedent": 2.012646358090814, - "orbeetle": 1.867849448092929, - "thievul": 1.6867190119762083, - "eldegoss": 4.140970463941786, - "dubwool": 2.943128417454787, - "drednaw": 1.642462273044851, - "boltund": 6.2942806931488136, - "carkol": 4.36975752880851, - "coalossal": 3.3937882033376034, - "sandaconda": 3.1105622077179795, - "cramorant": 4.4011121272664475, - "barraskewda": 4.307879660350295, - "toxtricity-amped": 5.019673205914366, - "centiskorch": 1.890452122102196, - "grapploct": 1.6059814086076942, - "polteageist": 2.539982187108606, - "hatterene": 2.6242357825778795, - "grimmsnarl": 4.317600594457775, - "obstagoon": 2.596752945852112, - "perrserker": 4.6041399541120125, - "alcremie": 1.6337566542365936, - "falinks": 3.3519314829462954, - "pincurchin": 3.790405142487524, - "frosmoth": 2.5338821085154186, - "indeedee-male": 2.7375773719878507, - "morpeko": 3.6059568510742688, - "copperajah": 3.0430831097506372, - "duraludon": 2.471469690794478, - "drakloak": 4.971130325383966, - "nidoqueen": 3.3416104955760133 + "ivysaur": 3.1006199424876533, + "charmeleon": 4.7269945425823465, + "wartortle": 2.37977916626102, + "butterfree": 4.288795673819985, + "raichu": 6.749018253893026, + "raichu-alola": 3.8835387392730305, + "sandslash": 2.2153658273154297, + "sandslash-alola": 2.749484017709985, + "nidoqueen": 3.3416104955760133, + "nidoking": 2.16633382133541, + "clefairy": 9.864379387565748, + "clefable": 2.558339840544085, + "jigglypuff": 31.137388744226108, + "wigglytuff": 2.3235167503510814, + "gloom": 6.002488261902878, + "vileplume": 2.930172048183209, + "dugtrio": 3.364257714662752, + "dugtrio-alola": 3.9307242523221664, + "persian": 4.161226709847847, + "persian-alola": 4.085134979891709, + "golduck": 2.6696236916309504, + "poliwrath": 1.7798411153366573, + "kadabra": 3.8202862876245116, + "machoke": 4.035687142453783, + "tentacruel": 2.4359965262622296, + "slowbro": 1.8142488327631907, + "magneton": 6.662325601744948, + "haunter": 4.716257510940969, + "kingler": 2.4542499069059653, + "exeggutor": 2.0291195714264254, + "marowak": 2.8984774000933906, + "marowak-alola": 2.7408553960693562, + "hitmonlee": 2.2609828564359233, + "hitmonchan": 2.030977655673937, + "lickitung": 1.681936671848236, + "weezing": 2.2549525100729446, + "weezing-galar": 3.8230901065820495, + "rhydon": 2.981756848714909, + "chansey": 19.153782668374912, + "tangela": 6.332396675429255, + "kangaskhan": 1.7357446187774839, + "seadra": 4.087687435518194, + "seaking": 2.1639427959019266, + "starmie": 1.533407581158362, + "mr-mime": 5.984566030849338, + "mr-mime-galar": 3.206460902583726, + "scyther": 2.522514644728697, + "jynx": 3.910686596302362, + "electabuzz": 3.4956651533606626, + "magmar": 1.9556561621951123, + "tauros": 1.9863343054211615, + "ditto": 4.570845052805925, + "vaporeon": 2.6435302073206444, + "jolteon": 2.3297801590282834, + "flareon": 2.657074824219377, + "porygon": 2.6666226753271447, + "dragonair": 1.7297483477853435, + "noctowl": 4.938862547733971, + "lanturn": 2.2276663078443324, + "togetic": 5.967972951368731, + "xatu": 3.843341319002481, + "bellossom": 2.7621829400610345, + "azumarill": 2.4682500443324673, + "sudowoodo": 3.4310236463213304, + "politoed": 2.1477872733098975, + "quagsire": 4.351311079226257, + "slowking": 2.22418558526126, + "dunsparce": 3.103741461050549, + "qwilfish": 4.4678629391052915, + "sneasel": 2.0662707837301015, + "piloswine": 1.4709527019998245, + "octillery": 2.209724894931363, + "mantine": 1.906890227709873, + "skarmory": 1.9543346083911892, + "hitmontop": 2.415499847597689, + "miltank": 3.736278963686347, + "grovyle": 8.548386925016956, + "sceptile": 1.532126347527328, + "combusken": 4.304488632342262, + "blaziken": 2.0562664498636467, + "marshtomp": 2.0988455297952435, + "swampert": 1.0614144341177219, + "linoone": 5.111280382976082, + "linoone-galar": 4.520813372874741, + "pelipper": 5.7119385501854065, + "ninjask": 7.138130060416776, + "exploud": 1.4491510522351008, + "lairon": 5.522646422414685, + "manectric": 2.2493479762703226, + "roselia": 3.450588304851432, + "sharpedo": 4.640348193585073, + "wailmer": 5.8756285573094615, + "torkoal": 2.6319245086196723, + "flygon": 2.1154281492240714, + "altaria": 1.4976475244553236, + "whiscash": 1.7335486738565948, + "crawdaunt": 1.8513537964702236, + "claydol": 3.332405305023525, + "cradily": 2.2869183842189758, + "armaldo": 1.8631833098071087, + "dusclops": 3.7964607756314463, + "absol": 1.8097921507444008, + "glalie": 3.7682635442786157, + "sealeo": 2.6837250649979776, + "relicanth": 2.498399738208055, + "metang": 3.7310337182877618, + "luxray": 5.177329573126475, + "vespiquen": 2.6193504584726, + "cherrim": 6.344108393959643, + "gastrodon": 1.989018848230281, + "drifblim": 4.522238865197281, + "lopunny": 3.5546515575474293, + "skuntank": 1.8853140965988604, + "bronzong": 3.159173792654964, + "munchlax": 2.13945787764009, + "drapion": 3.348808525858656, + "abomasnow": 3.246257558055616, + "froslass": 2.8995383799151027, + "rotom": 4.476826922553004, + "stoutland": 2.322014155334914, + "liepard": 7.012929050164218, + "musharna": 1.4758723989667557, + "unfezant": 5.911913100202412, + "boldore": 4.644195194594078, + "swoobat": 5.489174278020787, + "audino": 2.2006468951399754, + "gurdurr": 2.3128426370972073, + "palpitoad": 3.3306085713697176, + "seismitoad": 6.644822471212267, + "scolipede": 3.2890566709055857, + "whimsicott": 5.041888392162518, + "lilligant": 3.474233175358112, + "basculin-red-striped": 2.408794828517629, + "basculin-blue-striped": 3.2437533743879188, + "krookodile": 2.6381319077642784, + "maractus": 2.4681344867323896, + "crustle": 2.2604935296454594, + "sigilyph": 2.373248808837719, + "cofagrigus": 2.8257436636412576, + "garbodor": 2.468992472510055, + "cinccino": 4.179853813249404, + "vanillish": 1.8482198876797993, + "emolga": 3.1740250946916047, + "escavalier": 1.6322699394967959, + "amoonguss": 2.582183620115402, + "jellicent": 1.5447909404574873, + "galvantula": 1.7753360174214616, + "klang": 3.8435114352026707, + "klinklang": 4.4486649932596665, + "beheeyem": 1.8222410073330368, + "lampent": 3.258793593298475, + "fraxure": 1.5766969684033745, + "beartic": 1.4967502783577737, + "cryogonal": 1.298186343839407, + "accelgor": 2.981680106068377, + "stunfisk": 1.4304952041393042, + "stunfisk-galar": 2.7675283988147124, + "mienshao": 3.4199346084774525, + "druddigon": 1.7132703782793124, + "golurk": 2.0292279779471474, + "bisharp": 3.1563169817049745, + "bouffalant": 1.2700970917342367, + "heatmor": 2.367855319948035, + "durant": 3.42637283068351, + "diggersby": 2.9262870962196113, + "talonflame": 2.671530136711019, + "pangoro": 1.7655770169968137, + "doublade": 3.798434901269772, + "malamar": 2.738922185361198, + "barbaracle": 1.7372920000231347, + "heliolisk": 4.195939822276921, + "tyrantrum": 2.257299838518481, + "aurorus": 2.7870130680206815, + "hawlucha": 3.452381031278761, + "dedenne": 4.093571462406061, + "klefki": 4.130762970530004, + "trevenant": 3.3284953261667662, + "gourgeist-average": 6.102960639455933, + "charjabug": 4.088521962591356, + "vikavolt": 1.8163355728331787, + "ribombee": 5.522343436901927, + "lycanroc-midday": 4.279826182045392, + "lycanroc-midnight": 2.9885699556760317, + "mudsdale": 1.5494488815417449, + "araquanid": 2.0330215484389385, + "lurantis": 2.7236349642588022, + "shiinotic": 6.7394719493840824, + "salazzle": 5.650824351456437, + "bewear": 1.7608753378690958, + "tsareena": 3.443747576784295, + "comfey": 5.059888099093536, + "oranguru": 2.161848869046249, + "passimian": 2.468467321624118, + "palossand": 2.2005851229804074, + "pyukumuku": 45.24419705370872, + "togedemaru": 4.258986108551351, + "mimikyu-disguised": 4.2473394939636995, + "greedent": 2.0100428882508927, + "orbeetle": 1.8646327038073665, + "thievul": 1.6857501504501826, + "eldegoss": 4.141982774235539, + "dubwool": 2.942952433228518, + "drednaw": 1.643608614731045, + "boltund": 6.313886417982975, + "carkol": 4.381221853453894, + "coalossal": 3.3999777050082503, + "sandaconda": 3.1103483672947068, + "cramorant": 4.389881540733833, + "barraskewda": 4.3061283523904805, + "toxtricity-amped": 5.037728858644889, + "centiskorch": 1.8899828444479239, + "grapploct": 1.6080730738246434, + "polteageist": 2.538444595981093, + "hatterene": 2.626455868884251, + "grimmsnarl": 4.3242451555832915, + "obstagoon": 2.597110131143753, + "perrserker": 4.61354951002994, + "alcremie": 1.6365833842108017, + "falinks": 3.359283232824331, + "pincurchin": 3.79832908277944, + "frosmoth": 2.5320519450576677, + "indeedee-male": 2.731368838730713, + "morpeko": 3.614886209159776, + "copperajah": 3.0470612189514963, + "duraludon": 2.4788255021070738, + "drakloak": 4.976905227572624 }, "nidoking": { - "ivysaur": 4.012984823177674, - "charmeleon": 5.8567651738344875, - "wartortle": 2.8504648955863625, - "butterfree": 6.054784681415567, - "raichu": 9.54526363330124, - "raichu-alola": 5.586056358664604, - "sandslash": 2.185561546663349, - "sandslash-alola": 2.811739883855905, - "nidoqueen": 3.8985849241903536, - "clefairy": 10.351776884484725, - "clefable": 2.608841572054727, - "jigglypuff": 31.99626122425192, - "wigglytuff": 2.2765073267634923, - "gloom": 7.46751322576734, - "vileplume": 3.5928920884400175, - "dugtrio": 4.408235794690113, - "dugtrio-alola": 4.960714573814823, - "persian": 4.7006939877507445, - "persian-alola": 4.5835412374071485, - "golduck": 3.213913280514988, - "poliwrath": 2.113372781221447, - "kadabra": 4.666247064011865, - "machoke": 4.319474202025029, - "tentacruel": 3.694991214529785, - "slowbro": 1.7235435672212538, - "magneton": 7.161456940414773, - "haunter": 4.119993026978129, - "kingler": 2.3095682025780144, - "exeggutor": 2.000173793096372, - "marowak": 3.148834383092576, - "marowak-alola": 2.846643609571483, - "hitmonlee": 3.04037603114862, - "hitmonchan": 2.4563115106528612, - "lickitung": 1.8277337090619512, - "weezing": 2.13467649147799, - "weezing-galar": 3.6321812044531407, - "rhydon": 2.4644900470189333, - "chansey": 32.70518794115382, - "tangela": 4.7637342772562015, - "kangaskhan": 1.9080793940706764, - "seadra": 3.953242725465305, - "seaking": 2.762842012497912, - "starmie": 1.6256232085811635, - "mr-mime": 6.797798744885863, - "mr-mime-galar": 3.626002130394684, - "scyther": 3.165622731268738, - "jynx": 7.76785276605269, - "electabuzz": 4.967972797001157, - "magmar": 2.709297865675113, - "tauros": 2.0147917564194717, - "ditto": 3.2793477209721393, - "vaporeon": 3.6880890598988545, - "jolteon": 3.3867403338444255, - "flareon": 3.986442606950168, - "porygon": 2.9890141836924897, - "dragonair": 2.123636988206025, - "noctowl": 7.48194187081101, - "lanturn": 3.0011680249758843, - "togetic": 6.698200758080423, - "xatu": 4.062835148145166, - "bellossom": 2.902626484712855, - "azumarill": 2.5933243624364355, - "sudowoodo": 3.225871918089428, - "politoed": 2.7954944870870047, - "quagsire": 4.455215344446215, - "slowking": 2.584554257663221, - "dunsparce": 3.358771998651857, - "qwilfish": 4.415185142976946, - "sneasel": 2.5828675155621, - "piloswine": 1.4919942041588388, - "octillery": 2.6635170526636838, - "mantine": 4.521062398927137, - "skarmory": 2.1446277216528298, - "hitmontop": 2.7567150411448584, - "miltank": 3.70419655845145, - "grovyle": 9.93299501555834, - "sceptile": 1.7300595147766078, - "combusken": 5.129095916612229, - "blaziken": 2.442832298674185, - "marshtomp": 2.2932182026013113, - "swampert": 1.1569329111922535, - "linoone": 5.655511914285882, - "linoone-galar": 4.928726463934038, - "pelipper": 9.081533239184521, - "ninjask": 9.214903210913192, - "exploud": 1.6449784562351977, - "lairon": 4.023288563342744, - "manectric": 2.699516764089786, - "roselia": 4.835123488235975, - "sharpedo": 5.558942046882384, - "wailmer": 7.081668185018307, - "torkoal": 2.313139353443707, - "flygon": 3.9024917186186965, - "altaria": 2.844603477571439, - "whiscash": 1.8631562546920373, - "crawdaunt": 1.9348290574917573, - "claydol": 3.670731088854179, - "cradily": 2.8027489226799247, - "armaldo": 1.938282070480934, - "dusclops": 3.7211551104586595, - "absol": 1.9877143247749696, - "glalie": 4.424197261080649, - "sealeo": 3.15612129891703, - "relicanth": 2.2376358068428504, - "metang": 4.022551360600576, - "luxray": 6.203318002335971, - "vespiquen": 3.2930354262081876, - "cherrim": 6.8121214829766625, - "gastrodon": 2.3093204642190064, - "drifblim": 5.201566568538292, - "lopunny": 4.072683480099123, - "skuntank": 2.188701610196651, - "bronzong": 3.3835679517569224, - "munchlax": 2.8820159555356004, - "drapion": 3.3943916601182225, - "abomasnow": 4.6867504716392245, - "froslass": 3.0788505065480702, - "rotom": 3.704679986752419, - "stoutland": 2.552867533510276, - "liepard": 7.792052761101022, - "musharna": 1.4743085434704568, - "unfezant": 6.880883927861538, - "boldore": 3.810227419975179, - "swoobat": 5.808656729226028, - "audino": 2.407528308842836, - "gurdurr": 2.229913969107854, - "palpitoad": 3.6561684001620947, - "seismitoad": 7.412992890768284, - "scolipede": 3.697844894258103, - "whimsicott": 3.6516952984014326, - "lilligant": 3.608290280064099, - "basculin-red-striped": 2.742374928451059, - "basculin-blue-striped": 3.706979754104605, - "krookodile": 3.015024598513354, - "maractus": 2.5661113338126764, - "crustle": 2.1979878968759174, - "sigilyph": 2.511474522938707, - "cofagrigus": 2.447932740663787, - "garbodor": 2.97788611713513, - "cinccino": 4.584505547864522, - "vanillish": 2.22038781273289, - "emolga": 4.22023981004715, - "escavalier": 2.868376065391321, - "amoonguss": 3.2541169807592336, - "jellicent": 1.9292060825206605, - "galvantula": 2.195967769204911, - "klang": 4.417761683686191, - "klinklang": 4.637658208055961, - "beheeyem": 1.9022168510757187, - "lampent": 3.917560625394999, - "fraxure": 1.7362862823030325, - "beartic": 1.7364020384099403, - "cryogonal": 1.9853472835313424, - "accelgor": 4.2412682309583, - "stunfisk": 1.777654586454489, - "stunfisk-galar": 3.02570504694633, - "mienshao": 3.8059457073694443, - "druddigon": 2.0735498499292833, - "golurk": 2.1780188353406094, - "bisharp": 3.2104107541987954, - "bouffalant": 1.4182539564749388, - "heatmor": 2.8262950826756787, - "durant": 4.38584172958322, - "diggersby": 3.4673434776166197, - "talonflame": 3.400683915807992, - "pangoro": 1.910483884157242, - "doublade": 2.7741973693626907, - "malamar": 2.8780178861487524, - "barbaracle": 1.7910253556727729, - "heliolisk": 6.3423503078884025, - "tyrantrum": 2.0162109183301924, - "aurorus": 3.439736773305709, - "hawlucha": 4.224656973464767, - "dedenne": 5.291574304593517, - "klefki": 4.9100620241986235, - "trevenant": 3.686029031441179, - "gourgeist-average": 5.531449883604419, - "charjabug": 4.664305040192064, - "vikavolt": 2.2639368256104735, - "ribombee": 6.098234221353213, - "lycanroc-midday": 5.033905660751605, - "lycanroc-midnight": 3.507371462892935, - "mudsdale": 1.7753011686518154, - "araquanid": 2.9488916650333437, - "lurantis": 2.8207401085458423, - "shiinotic": 5.618861823154468, - "salazzle": 7.196081612689586, - "bewear": 1.7960623205911732, - "tsareena": 3.5633974011114424, - "comfey": 5.1590666617370715, - "oranguru": 2.542125717626085, - "passimian": 2.469571045345539, - "palossand": 2.057326362968519, - "pyukumuku": 55.48546073712376, - "togedemaru": 5.960954147019983, - "mimikyu-disguised": 4.586445172402479, - "greedent": 2.067986900259454, - "orbeetle": 2.0217128782267597, - "thievul": 2.0745788887560224, - "eldegoss": 4.691524502158332, - "dubwool": 3.411143143837556, - "drednaw": 1.7251124285809645, - "boltund": 7.580668241401559, - "carkol": 4.804125711810965, - "coalossal": 3.6119724033896206, - "sandaconda": 3.141439237508714, - "cramorant": 9.555222851881298, - "barraskewda": 4.922751633686616, - "toxtricity-amped": 6.356894968247811, - "centiskorch": 2.260519599480002, - "grapploct": 1.7153409383804852, - "polteageist": 2.977141482234769, - "hatterene": 2.540228708234828, - "grimmsnarl": 4.322716346144444, - "obstagoon": 2.6957301527239155, - "perrserker": 4.429635866189, - "alcremie": 1.8208854639903662, - "falinks": 3.262887933760168, - "pincurchin": 4.332044048715046, - "frosmoth": 4.731315859142862, - "indeedee-male": 3.4164391346464233, - "morpeko": 4.309685564472158, - "copperajah": 3.656429254577729, - "duraludon": 2.0459351790574307, - "drakloak": 5.379945211819523, - "nidoking": 2.527213471837806 + "ivysaur": 4.028145023786469, + "charmeleon": 5.86854724760573, + "wartortle": 2.8488306586359164, + "butterfree": 6.078857838175956, + "raichu": 9.592611838880341, + "raichu-alola": 5.5980375922770795, + "sandslash": 2.185832189387807, + "sandslash-alola": 2.8173396355113716, + "nidoqueen": 3.90566207267709, + "nidoking": 2.527213471837806, + "clefairy": 10.376494153913274, + "clefable": 2.6189217288068294, + "jigglypuff": 32.106926251681585, + "wigglytuff": 2.2796249347452937, + "gloom": 7.504272084166848, + "vileplume": 3.6050509222175213, + "dugtrio": 4.410329766741822, + "dugtrio-alola": 4.96888183403404, + "persian": 4.70815410273041, + "persian-alola": 4.590492969502004, + "golduck": 3.211435358232987, + "poliwrath": 2.1148452438017697, + "kadabra": 4.670737825804023, + "machoke": 4.331489435698465, + "tentacruel": 3.7009459352489964, + "slowbro": 1.7210019134988812, + "magneton": 7.194034333225863, + "haunter": 4.121867504930943, + "kingler": 2.3070282089084446, + "exeggutor": 1.999312260558881, + "marowak": 3.1479690752092955, + "marowak-alola": 2.8520554414544055, + "hitmonlee": 3.05269695969418, + "hitmonchan": 2.4625944396684045, + "lickitung": 1.8290186397930728, + "weezing": 2.141275068411036, + "weezing-galar": 3.6442499690355667, + "rhydon": 2.4627445177631007, + "chansey": 32.77988465077135, + "tangela": 4.763671886622996, + "kangaskhan": 1.9094775790455825, + "seadra": 3.9478213874721777, + "seaking": 2.7641657645913282, + "starmie": 1.6267996146084447, + "mr-mime": 6.793030339750237, + "mr-mime-galar": 3.621372713218509, + "scyther": 3.1732680396001838, + "jynx": 7.779441203526426, + "electabuzz": 4.994630744450228, + "magmar": 2.7161809168470334, + "tauros": 2.01624909946268, + "ditto": 3.271238642974723, + "vaporeon": 3.6885761854302004, + "jolteon": 3.3990748942595648, + "flareon": 3.9933667447642938, + "porygon": 2.9927856148855767, + "dragonair": 2.1269738053391145, + "noctowl": 7.497914596212205, + "lanturn": 3.0017236831782914, + "togetic": 6.717996670099646, + "xatu": 4.061801414103358, + "bellossom": 2.909634109827956, + "azumarill": 2.5977487693236587, + "sudowoodo": 3.2308524115849124, + "politoed": 2.794383979502798, + "quagsire": 4.449780455354372, + "slowking": 2.5812293701425233, + "dunsparce": 3.361843821215743, + "qwilfish": 4.420801827627649, + "sneasel": 2.5839885139750782, + "piloswine": 1.4911285979371955, + "octillery": 2.6656139998976878, + "mantine": 4.524147133067481, + "skarmory": 2.148469207007481, + "hitmontop": 2.7589263202905068, + "miltank": 3.709007358061558, + "grovyle": 9.960336090203988, + "sceptile": 1.7341101418512812, + "combusken": 5.144788865903094, + "blaziken": 2.449411598372431, + "marshtomp": 2.2877505147189576, + "swampert": 1.154362909787951, + "linoone": 5.665114824913653, + "linoone-galar": 4.933893000129332, + "pelipper": 9.089854206197066, + "ninjask": 9.24452100097528, + "exploud": 1.6467364720180648, + "lairon": 4.032665824572952, + "manectric": 2.705283045780056, + "roselia": 4.846419176911825, + "sharpedo": 5.560568072100687, + "wailmer": 7.081573275865814, + "torkoal": 2.3155642612919287, + "flygon": 3.905363246668964, + "altaria": 2.850331998101141, + "whiscash": 1.8602682027931556, + "crawdaunt": 1.9343268320396043, + "claydol": 3.6655650320399746, + "cradily": 2.8108010394989336, + "armaldo": 1.9412885916620541, + "dusclops": 3.7304355063560695, + "absol": 1.9896470499872525, + "glalie": 4.424445942529067, + "sealeo": 3.150082739357768, + "relicanth": 2.2387194492570726, + "metang": 4.031384495047187, + "luxray": 6.228026129805103, + "vespiquen": 3.3035383634458224, + "cherrim": 6.823456522011478, + "gastrodon": 2.3091782225926716, + "drifblim": 5.212020536001986, + "lopunny": 4.08079947086269, + "skuntank": 2.1956877926083744, + "bronzong": 3.3796635847456558, + "munchlax": 2.8900943547206293, + "drapion": 3.403969174751732, + "abomasnow": 4.688011257222925, + "froslass": 3.0793068330808233, + "rotom": 3.712565862140729, + "stoutland": 2.555087039556877, + "liepard": 7.810213395429518, + "musharna": 1.4730601262936187, + "unfezant": 6.890449211426816, + "boldore": 3.814010509232853, + "swoobat": 5.8070703061945865, + "audino": 2.411336887364921, + "gurdurr": 2.2327923166112833, + "palpitoad": 3.6502094136718624, + "seismitoad": 7.424404052532927, + "scolipede": 3.7081335786773355, + "whimsicott": 3.660024363711357, + "lilligant": 3.6163779384456287, + "basculin-red-striped": 2.737898323032468, + "basculin-blue-striped": 3.7039778452673082, + "krookodile": 3.015187539865061, + "maractus": 2.571312632738527, + "crustle": 2.203539427608552, + "sigilyph": 2.5116280055284657, + "cofagrigus": 2.4480276660635116, + "garbodor": 2.993094878290397, + "cinccino": 4.584597737165896, + "vanillish": 2.2188046373211887, + "emolga": 4.2363759351897325, + "escavalier": 2.872039959955157, + "amoonguss": 3.2679708782229397, + "jellicent": 1.9323751990868692, + "galvantula": 2.207738309939836, + "klang": 4.4388951000733226, + "klinklang": 4.648826435241553, + "beheeyem": 1.9035164128835587, + "lampent": 3.9256381972122854, + "fraxure": 1.738389859753502, + "beartic": 1.7359120043577505, + "cryogonal": 1.9833580825086694, + "accelgor": 4.257220856129026, + "stunfisk": 1.7809243791426566, + "stunfisk-galar": 3.0286332676690577, + "mienshao": 3.816190188414369, + "druddigon": 2.0758604166693644, + "golurk": 2.181927134399653, + "bisharp": 3.2166708664762442, + "bouffalant": 1.421498771918645, + "heatmor": 2.830922732014793, + "durant": 4.400459238745112, + "diggersby": 3.4673905988151237, + "talonflame": 3.4028714457291027, + "pangoro": 1.9146743333304572, + "doublade": 2.780671031662389, + "malamar": 2.8796309893495, + "barbaracle": 1.791213448273508, + "heliolisk": 6.369295653857355, + "tyrantrum": 2.0202642528943517, + "aurorus": 3.4456572772809313, + "hawlucha": 4.236554520390807, + "dedenne": 5.31932367890631, + "klefki": 4.931079056679028, + "trevenant": 3.6973293061347072, + "gourgeist-average": 5.539998853530329, + "charjabug": 4.677986137586323, + "vikavolt": 2.268577220327972, + "ribombee": 6.11980046748309, + "lycanroc-midday": 5.050885000415687, + "lycanroc-midnight": 3.518259786237902, + "mudsdale": 1.7777854027971465, + "araquanid": 2.9539957077605266, + "lurantis": 2.8262124785937144, + "shiinotic": 5.6365853154732735, + "salazzle": 7.222414058300463, + "bewear": 1.7969502305385427, + "tsareena": 3.5698026956972404, + "comfey": 5.174830705257051, + "oranguru": 2.5385473437908503, + "passimian": 2.475497829249356, + "palossand": 2.057079109584547, + "pyukumuku": 55.64168796114804, + "togedemaru": 5.9921928794372175, + "mimikyu-disguised": 4.598332679403327, + "greedent": 2.0676099166981956, + "orbeetle": 2.019550634888916, + "thievul": 2.078373613119033, + "eldegoss": 4.70046867882088, + "dubwool": 3.4183824211699596, + "drednaw": 1.7271243088814283, + "boltund": 7.611114207483849, + "carkol": 4.816662452380548, + "coalossal": 3.6184432200882752, + "sandaconda": 3.14100255416205, + "cramorant": 9.559349212686808, + "barraskewda": 4.92287410872159, + "toxtricity-amped": 6.38638729139292, + "centiskorch": 2.2632142118579663, + "grapploct": 1.7189727468888545, + "polteageist": 2.982093897896792, + "hatterene": 2.5413908767654942, + "grimmsnarl": 4.333739539845479, + "obstagoon": 2.6992707463680135, + "perrserker": 4.44325450458634, + "alcremie": 1.8270979216779855, + "falinks": 3.2693917551006577, + "pincurchin": 4.342935000983287, + "frosmoth": 4.741781647404948, + "indeedee-male": 3.418515494898041, + "morpeko": 4.32528722343917, + "copperajah": 3.669227425379091, + "duraludon": 2.0516686486061593, + "drakloak": 5.390121007537985 }, "clefairy": { - "ivysaur": 2.7559850007652393, - "charmeleon": 3.0128841203766052, - "wartortle": 2.5222620601236363, - "butterfree": 4.108837892822302, - "raichu": 4.153336831988189, - "raichu-alola": 2.713816405582206, - "sandslash": 2.052219132440384, - "sandslash-alola": 2.659582859281165, - "nidoqueen": 2.1011712171557595, - "nidoking": 1.4140383552656437, - "clefable": 1.5973272198280932, - "jigglypuff": 21.346802981526295, - "wigglytuff": 1.5712773180971014, - "gloom": 4.837914131447975, - "vileplume": 2.9170104427629506, - "dugtrio": 3.0693350588053807, - "dugtrio-alola": 2.874448860395389, - "persian": 3.252771987324003, - "persian-alola": 3.7497596838683096, - "golduck": 2.675787765351061, - "poliwrath": 1.70231618094346, - "kadabra": 2.9707325023442688, - "machoke": 3.2921598235216107, - "tentacruel": 1.6113666767769612, - "slowbro": 1.64402334802683, - "magneton": 2.8249861899358573, - "haunter": 3.4601050716798687, - "kingler": 2.4288447756269154, - "exeggutor": 1.8151361899169434, - "marowak": 2.6517279169869363, - "marowak-alola": 1.3334781076188411, - "hitmonlee": 1.9166146142901255, - "hitmonchan": 1.6498762618170488, - "lickitung": 1.5377251978694015, - "weezing": 1.2388831588274263, - "weezing-galar": 2.073897994111282, - "rhydon": 2.607746001273445, - "chansey": 17.65037349928654, - "tangela": 5.005211747008609, - "kangaskhan": 1.5537240219013506, - "seadra": 4.374325417130783, - "seaking": 1.9510543789525872, - "starmie": 1.2994807322680022, - "mr-mime": 5.199642535731435, - "mr-mime-galar": 3.3332224597803206, - "scyther": 2.581428499776096, - "jynx": 4.440138920295716, - "electabuzz": 1.982956332404658, - "magmar": 1.1935884631259603, - "tauros": 1.6647751537634647, - "ditto": 8.63346800726053, - "vaporeon": 2.7231636840694984, - "jolteon": 1.4818385496733515, - "flareon": 1.6461282484823858, - "porygon": 2.289127222502996, - "dragonair": 1.5478720023117702, - "noctowl": 4.324502301082537, - "lanturn": 1.6863631089574016, - "togetic": 4.120389814117733, - "xatu": 3.0949565204486587, - "bellossom": 2.1969439853600363, - "azumarill": 1.4266138268819764, - "sudowoodo": 2.425094732308546, - "politoed": 2.191997433362021, - "quagsire": 5.825944963073329, - "slowking": 2.090727725344018, - "dunsparce": 2.663511401226379, - "qwilfish": 2.265372482722494, - "sneasel": 2.182518338398091, - "piloswine": 1.4739758712100115, - "octillery": 1.9979205671255769, - "mantine": 1.7882416123881062, - "skarmory": 2.0019937237938286, - "hitmontop": 2.139515607057118, - "miltank": 2.7978918989290027, - "grovyle": 7.404031677767484, - "sceptile": 1.4052821019551844, - "combusken": 2.589211914744194, - "blaziken": 1.204972104774885, - "marshtomp": 2.7651479539881993, - "swampert": 1.4563380940260084, - "linoone": 4.06569771021517, - "linoone-galar": 4.218591720880797, - "pelipper": 4.6752477642338555, - "ninjask": 7.500607446832212, - "exploud": 1.3096463707320667, - "lairon": 1.7638545410117756, - "manectric": 1.3992548133168583, - "roselia": 3.523511607117238, - "sharpedo": 4.880108457424923, - "wailmer": 5.551443723814973, - "torkoal": 1.3776219505485623, - "flygon": 1.9177101381242996, - "altaria": 1.2195191543869353, - "whiscash": 2.2802516072370747, - "crawdaunt": 1.9115424142960196, - "claydol": 2.9658502531195037, - "cradily": 1.7501601957138715, - "armaldo": 1.5293646411333977, - "dusclops": 2.678606211637954, - "absol": 1.6135945690491051, - "glalie": 3.77207532614411, - "sealeo": 2.8554053572792304, - "relicanth": 2.3624809342166624, - "metang": 2.470603880358818, - "luxray": 2.9596185752907607, - "vespiquen": 2.661321969526598, - "cherrim": 5.446990214504007, - "gastrodon": 2.33629084058423, - "drifblim": 3.3262593689054194, - "lopunny": 2.8536083135573507, - "skuntank": 1.179116485364962, - "bronzong": 2.6477166879593854, - "munchlax": 1.5074409377487803, - "drapion": 1.9006770523763898, - "abomasnow": 3.551515316649982, - "froslass": 2.719128299060472, - "rotom": 2.8720746319534385, - "stoutland": 1.8253955559741146, - "liepard": 5.7565251132641, - "musharna": 1.2183986215959024, - "unfezant": 4.982504177509226, - "boldore": 3.209074209332117, - "swoobat": 4.42430176348968, - "audino": 1.7833427759841678, - "gurdurr": 1.9404744499753952, - "palpitoad": 4.3680620831783505, - "seismitoad": 6.446557071417791, - "scolipede": 3.169850755763526, - "whimsicott": 2.9878231616243434, - "lilligant": 3.0011683199326677, - "basculin-red-striped": 2.4533930064540277, - "basculin-blue-striped": 3.3697053149815286, - "krookodile": 2.72585163476759, - "maractus": 2.1309350120014696, - "crustle": 1.7810221721581279, - "sigilyph": 1.7881065136402605, - "cofagrigus": 2.102814867731311, - "garbodor": 1.318019390115928, - "cinccino": 3.513355837985414, - "vanillish": 2.0013357479493883, - "emolga": 2.374396167874933, - "escavalier": 2.298265031844961, - "amoonguss": 2.112761334713049, - "jellicent": 1.3019211457236528, - "galvantula": 1.5470466022306222, - "klang": 2.501871106017819, - "klinklang": 2.7294564935529335, - "beheeyem": 1.4755323083574376, - "lampent": 1.7456919622364881, - "fraxure": 1.3530425096121403, - "beartic": 1.6673169077274221, - "cryogonal": 1.4831712315108008, - "accelgor": 2.9992262681931656, - "stunfisk": 1.1506351745226489, - "stunfisk-galar": 2.3269838035930395, - "mienshao": 2.721422657307569, - "druddigon": 1.2151415029673736, - "golurk": 1.6910373200809468, - "bisharp": 2.247225111150517, - "bouffalant": 0.9792904811702561, - "heatmor": 1.3327309557261962, - "durant": 4.144814201463029, - "diggersby": 2.7879306079435513, - "talonflame": 2.0104993562376023, - "pangoro": 1.435704001097092, - "doublade": 2.34396906056449, - "malamar": 2.396596978216632, - "barbaracle": 1.6151738147329282, - "heliolisk": 3.175768254455189, - "tyrantrum": 1.3505337491809546, - "aurorus": 2.1454659635078905, - "hawlucha": 2.7558596023715465, - "dedenne": 2.2552502334065148, - "klefki": 2.6402510200242437, - "trevenant": 2.8168624901397608, - "gourgeist-average": 5.131922453549684, - "charjabug": 3.835757809491483, - "vikavolt": 1.7852560908511463, - "ribombee": 4.633805518162536, - "lycanroc-midday": 2.923873249954754, - "lycanroc-midnight": 2.1778208694957626, - "mudsdale": 1.5127594651224001, - "araquanid": 1.697059306573244, - "lurantis": 2.320154652860114, - "shiinotic": 4.077410464528091, - "salazzle": 2.225973106807018, - "bewear": 1.3938012701183682, - "tsareena": 2.801266876352189, - "comfey": 3.5176761950115285, - "oranguru": 2.086109532343144, - "passimian": 1.939137058106042, - "palossand": 1.8985066219554918, - "pyukumuku": 36.56348015645365, - "togedemaru": 1.8105352575540485, - "mimikyu-disguised": 2.895777785666038, - "greedent": 1.5374481951436896, - "orbeetle": 1.804288364229671, - "thievul": 1.5444111520640038, - "eldegoss": 3.5792474847585076, - "dubwool": 2.775306184155517, - "drednaw": 1.3861494430484957, - "boltund": 3.9001336202881527, - "carkol": 1.8771560729106513, - "coalossal": 1.6027594428747414, - "sandaconda": 3.278310244512655, - "cramorant": 4.151871436384248, - "barraskewda": 4.558716276132528, - "toxtricity-amped": 2.097143543107517, - "centiskorch": 1.548154211158203, - "grapploct": 1.4389144034247439, - "polteageist": 2.0247715913308117, - "hatterene": 1.9499427494414052, - "grimmsnarl": 3.3402697682393407, - "obstagoon": 2.113116658079859, - "perrserker": 3.0189976655313293, - "alcremie": 1.1085623197967336, - "falinks": 2.5189485841633736, - "pincurchin": 2.4036237388713957, - "frosmoth": 3.167201896961817, - "indeedee-male": 2.4985308291201878, - "morpeko": 2.1894713201225016, - "copperajah": 1.963749740460184, - "duraludon": 1.3667035395128906, - "drakloak": 3.528668796782716, - "clefairy": 7.213432414442201 + "ivysaur": 2.746392001282632, + "charmeleon": 3.0058707418531005, + "wartortle": 2.517902398900907, + "butterfree": 4.0975914458551, + "raichu": 4.145307150371453, + "raichu-alola": 2.7044097620595045, + "sandslash": 2.0484749097618296, + "sandslash-alola": 2.6584009743004424, + "nidoqueen": 2.093387743198589, + "nidoking": 1.409383145391151, + "clefairy": 7.213432414442201, + "clefable": 1.5934277799567966, + "jigglypuff": 21.29072620705358, + "wigglytuff": 1.5667466994333483, + "gloom": 4.818005717257082, + "vileplume": 2.913205273589929, + "dugtrio": 3.0611651765902943, + "dugtrio-alola": 2.863956487503613, + "persian": 3.2395127009305504, + "persian-alola": 3.743833798841963, + "golduck": 2.6676858066133438, + "poliwrath": 1.69816534397365, + "kadabra": 2.9589034931406024, + "machoke": 3.2868046916505715, + "tentacruel": 1.6033784283652575, + "slowbro": 1.6400671130763824, + "magneton": 2.8147585844869596, + "haunter": 3.4506587093435446, + "kingler": 2.424529896884459, + "exeggutor": 1.8100703439211283, + "marowak": 2.6434376830475874, + "marowak-alola": 1.3269578400030708, + "hitmonlee": 1.9126029149813097, + "hitmonchan": 1.6447113585641708, + "lickitung": 1.5332619937818621, + "weezing": 1.2335950638530837, + "weezing-galar": 2.0670765636334005, + "rhydon": 2.6006975502267067, + "chansey": 17.563968341800113, + "tangela": 4.99276995269509, + "kangaskhan": 1.5505866665263222, + "seadra": 4.371163105041352, + "seaking": 1.9428594945348454, + "starmie": 1.296200335961355, + "mr-mime": 5.182507848173186, + "mr-mime-galar": 3.3250098646278423, + "scyther": 2.5758540686504925, + "jynx": 4.431143276580624, + "electabuzz": 1.9766149255313996, + "magmar": 1.1886575113832611, + "tauros": 1.660748908811728, + "ditto": 8.566432437143739, + "vaporeon": 2.7158363366733513, + "jolteon": 1.477193524477037, + "flareon": 1.6387818528937503, + "porygon": 2.2833621391180965, + "dragonair": 1.5460271166835384, + "noctowl": 4.307046943603755, + "lanturn": 1.6827674620478754, + "togetic": 4.10733729678573, + "xatu": 3.0854624478293973, + "bellossom": 2.1925429632046285, + "azumarill": 1.4178267401939029, + "sudowoodo": 2.42032809415247, + "politoed": 2.185703576230685, + "quagsire": 5.825931206892477, + "slowking": 2.083862769819027, + "dunsparce": 2.6568628423782057, + "qwilfish": 2.251699750399167, + "sneasel": 2.1787241146539387, + "piloswine": 1.4717179676479815, + "octillery": 1.9909333507988665, + "mantine": 1.781980973411525, + "skarmory": 1.997140947371859, + "hitmontop": 2.1341824814501513, + "miltank": 2.7873766353644926, + "grovyle": 7.390497168955672, + "sceptile": 1.4030876503349168, + "combusken": 2.5836555149028095, + "blaziken": 1.2014233345850713, + "marshtomp": 2.7604782090028896, + "swampert": 1.4552405177887473, + "linoone": 4.051661543903135, + "linoone-galar": 4.21321567411582, + "pelipper": 4.657531804050258, + "ninjask": 7.492236247774651, + "exploud": 1.3061852816574175, + "lairon": 1.7548615602763293, + "manectric": 1.3954051571315973, + "roselia": 3.51419648022875, + "sharpedo": 4.875056083083857, + "wailmer": 5.532436641729046, + "torkoal": 1.3732493180238872, + "flygon": 1.9127449497664788, + "altaria": 1.217078028034522, + "whiscash": 2.2762411944341006, + "crawdaunt": 1.9080678450512742, + "claydol": 2.958888474769423, + "cradily": 1.7436800467465559, + "armaldo": 1.5258110772862574, + "dusclops": 2.672340324330636, + "absol": 1.609579393235866, + "glalie": 3.761572779700222, + "sealeo": 2.8480789826600588, + "relicanth": 2.3601111325593753, + "metang": 2.459813731873246, + "luxray": 2.949441263337933, + "vespiquen": 2.657021916745792, + "cherrim": 5.434325302317716, + "gastrodon": 2.3319820212606803, + "drifblim": 3.315831822244831, + "lopunny": 2.8439887802403465, + "skuntank": 1.1764478173625736, + "bronzong": 2.6370000599525274, + "munchlax": 1.4988404888431828, + "drapion": 1.894691112120163, + "abomasnow": 3.5436814647501613, + "froslass": 2.713930112628078, + "rotom": 2.8657866644876115, + "stoutland": 1.8175263777745072, + "liepard": 5.742828066564146, + "musharna": 1.2145071876517979, + "unfezant": 4.966114372334706, + "boldore": 3.2033157349430907, + "swoobat": 4.410692437558081, + "audino": 1.7783442567022236, + "gurdurr": 1.9379378335577708, + "palpitoad": 4.363476455298337, + "seismitoad": 6.421398505608728, + "scolipede": 3.164844252747612, + "whimsicott": 2.9814747895099605, + "lilligant": 2.9969548773694163, + "basculin-red-striped": 2.445609634370461, + "basculin-blue-striped": 3.362907637075229, + "krookodile": 2.723345216326605, + "maractus": 2.127465046099787, + "crustle": 1.7783005150180298, + "sigilyph": 1.7809309703142264, + "cofagrigus": 2.09809163988377, + "garbodor": 1.309538049272843, + "cinccino": 3.499764302216701, + "vanillish": 1.9970246944012617, + "emolga": 2.367086644338051, + "escavalier": 2.296520167316782, + "amoonguss": 2.1034254694928274, + "jellicent": 1.2988996922719793, + "galvantula": 1.5447960742327247, + "klang": 2.4945201098935845, + "klinklang": 2.715289595619863, + "beheeyem": 1.4717275162454635, + "lampent": 1.7391409702783673, + "fraxure": 1.35199845935849, + "beartic": 1.6648003367884585, + "cryogonal": 1.4792158650811906, + "accelgor": 2.9944241582366518, + "stunfisk": 1.148354411964224, + "stunfisk-galar": 2.3256850820307107, + "mienshao": 2.7143748459515518, + "druddigon": 1.2090813331917636, + "golurk": 1.6885716422181813, + "bisharp": 2.2403692456999513, + "bouffalant": 0.9747412698069666, + "heatmor": 1.3270638132970476, + "durant": 4.138557728567848, + "diggersby": 2.7801840480040125, + "talonflame": 2.00114303858821, + "pangoro": 1.4322593749612582, + "doublade": 2.3374077809898846, + "malamar": 2.391231868909685, + "barbaracle": 1.6093714730704476, + "heliolisk": 3.167820163516339, + "tyrantrum": 1.34767242878512, + "aurorus": 2.139138250372901, + "hawlucha": 2.746326385830192, + "dedenne": 2.249395029178185, + "klefki": 2.630958860346367, + "trevenant": 2.8116310225712313, + "gourgeist-average": 5.122499959150181, + "charjabug": 3.8257180897286736, + "vikavolt": 1.7819932668580312, + "ribombee": 4.629593995356705, + "lycanroc-midday": 2.915499083526299, + "lycanroc-midnight": 2.173853229175215, + "mudsdale": 1.511618709584453, + "araquanid": 1.690149066259564, + "lurantis": 2.3157081474218018, + "shiinotic": 4.067770858325874, + "salazzle": 2.2140616057005698, + "bewear": 1.3885580106877637, + "tsareena": 2.7931077100450263, + "comfey": 3.5088302789309713, + "oranguru": 2.0787740042132223, + "passimian": 1.9352801015980425, + "palossand": 1.8958628549217886, + "pyukumuku": 36.47576163793916, + "togedemaru": 1.799581836843061, + "mimikyu-disguised": 2.8848602617277557, + "greedent": 1.5297050230576608, + "orbeetle": 1.800688173980066, + "thievul": 1.5423343331408523, + "eldegoss": 3.5706705221458757, + "dubwool": 2.768805947334525, + "drednaw": 1.3824896260900512, + "boltund": 3.8925508929070802, + "carkol": 1.8707355154138994, + "coalossal": 1.598055385889823, + "sandaconda": 3.2793434020518966, + "cramorant": 4.138236755790985, + "barraskewda": 4.5549888942143255, + "toxtricity-amped": 2.0903183526085787, + "centiskorch": 1.5418164712904092, + "grapploct": 1.4374457387779662, + "polteageist": 2.019150027973476, + "hatterene": 1.9437596376473325, + "grimmsnarl": 3.3377865035656358, + "obstagoon": 2.107112397916903, + "perrserker": 3.0098434953706494, + "alcremie": 1.105639775673509, + "falinks": 2.51160226054657, + "pincurchin": 2.3972903767570175, + "frosmoth": 3.1637761557979607, + "indeedee-male": 2.490564196867544, + "morpeko": 2.1831298191815733, + "copperajah": 1.9551032265552701, + "duraludon": 1.3615829787469012, + "drakloak": 3.5236370253008014 }, "clefable": { - "ivysaur": 2.784463537039075, - "charmeleon": 4.620892997018092, - "wartortle": 2.959987181075987, - "butterfree": 6.404602164185128, - "raichu": 5.377446027839052, - "raichu-alola": 3.467286826746999, - "sandslash": 2.501690088672176, - "sandslash-alola": 1.9993470112376373, - "nidoqueen": 2.359403441961888, - "nidoking": 1.5966510810366061, - "clefairy": 9.479035544769175, - "jigglypuff": 28.121999539546493, - "wigglytuff": 2.1472098671840736, - "gloom": 4.91773804916855, - "vileplume": 2.837035978267458, - "dugtrio": 3.6783237677258493, - "dugtrio-alola": 2.796933634435553, - "persian": 4.410638348191956, - "persian-alola": 6.44613629394002, - "golduck": 3.2222743634211737, - "poliwrath": 2.7728265574818627, - "kadabra": 3.778597106199439, - "machoke": 5.897619629628304, - "tentacruel": 1.9618601057668439, - "slowbro": 1.9630388633410183, - "magneton": 2.650967364763469, - "haunter": 4.086080957008764, - "kingler": 2.967966740012085, - "exeggutor": 2.056525091105301, - "marowak": 3.2568320482529236, - "marowak-alola": 2.3981246729311634, - "hitmonlee": 3.02060817531331, - "hitmonchan": 2.821396443702178, - "lickitung": 2.053746807212281, - "weezing": 1.5017486689152812, - "weezing-galar": 2.5002647413910006, - "rhydon": 2.5153144470125515, - "chansey": 20.236309897399938, - "tangela": 5.824988655624297, - "kangaskhan": 2.0501020393715317, - "seadra": 5.196114360524361, - "seaking": 2.392445859489175, - "starmie": 1.5380986687704215, - "mr-mime": 6.656874724575458, - "mr-mime-galar": 4.022224164424349, - "scyther": 4.255794538065409, - "jynx": 4.365089995419694, - "electabuzz": 2.6117561796897544, - "magmar": 1.8109174000304977, - "tauros": 2.2729188967611345, - "ditto": 3.1074517890468627, - "vaporeon": 3.1970936900120126, - "jolteon": 1.939810105273801, - "flareon": 2.5215477960412978, - "porygon": 2.996624394002392, - "dragonair": 2.9400128497358553, - "noctowl": 5.98949998950776, - "lanturn": 2.000830179944714, - "togetic": 5.936935377590393, - "xatu": 4.447004525726678, - "bellossom": 2.4892042373959717, - "azumarill": 2.3731612416708705, - "sudowoodo": 2.9045431149113714, - "politoed": 2.597708077401228, - "quagsire": 5.277954248338297, - "slowking": 2.475665108202285, - "dunsparce": 3.5484337646244075, - "qwilfish": 2.987806491895813, - "sneasel": 2.960505707008393, - "piloswine": 1.7494445042808278, - "octillery": 2.41434088405068, - "mantine": 2.533677214996434, - "skarmory": 1.9638186770330361, - "hitmontop": 3.717378070734804, - "miltank": 3.936978818402213, - "grovyle": 8.184059293801116, - "sceptile": 1.5228000021482662, - "combusken": 3.710043653430149, - "blaziken": 1.7563691007232172, - "marshtomp": 2.6094377167149814, - "swampert": 1.346629327535141, - "linoone": 5.502297594537744, - "linoone-galar": 6.964655244206266, - "pelipper": 7.375869710703941, - "ninjask": 11.987911436034697, - "exploud": 1.7178731194026402, - "lairon": 2.117521645534456, - "manectric": 1.8973152357579435, - "roselia": 3.5331212612509635, - "sharpedo": 7.5654727742271195, - "wailmer": 6.746548922312865, - "torkoal": 2.435040022373384, - "flygon": 3.503178190715368, - "altaria": 2.299683691197563, - "whiscash": 2.191672428015851, - "crawdaunt": 3.16413030871725, - "claydol": 3.471994216093095, - "cradily": 2.2951618530408284, - "armaldo": 2.249142213458181, - "dusclops": 3.6600331697209025, - "absol": 2.8361041459895864, - "glalie": 4.663521270175414, - "sealeo": 3.661834186461893, - "relicanth": 2.195458999251224, - "metang": 2.382231067427356, - "luxray": 4.0295503460202955, - "vespiquen": 4.330974130395317, - "cherrim": 6.08733464258987, - "gastrodon": 2.2235889396429984, - "drifblim": 4.866076233393178, - "lopunny": 3.8069179638315958, - "skuntank": 1.6047953024897872, - "bronzong": 2.5276213534145677, - "munchlax": 2.042340935190186, - "drapion": 2.715125975617559, - "abomasnow": 3.4776554284651766, - "froslass": 3.371725004213829, - "rotom": 4.032256695418956, - "stoutland": 2.5031733856384175, - "liepard": 10.17927349962028, - "musharna": 1.6053979911548462, - "unfezant": 7.619143282904274, - "boldore": 3.8874019091352103, - "swoobat": 6.364371068243328, - "audino": 2.4206526386009424, - "gurdurr": 3.6373077257404014, - "palpitoad": 4.05909629971794, - "seismitoad": 6.226149808423523, - "scolipede": 3.8924322283961437, - "whimsicott": 3.3721001837317397, - "lilligant": 3.321473080787805, - "basculin-red-striped": 3.0020646364333072, - "basculin-blue-striped": 4.023531701343506, - "krookodile": 4.2050090212828595, - "maractus": 2.3784246547879664, - "crustle": 2.656135522916017, - "sigilyph": 2.611871054874399, - "cofagrigus": 2.9383696769620005, - "garbodor": 1.5809052015612832, - "cinccino": 4.782571270252442, - "vanillish": 2.4436688411187646, - "emolga": 3.5875209085262165, - "escavalier": 1.6982456646093758, - "amoonguss": 2.162297466646075, - "jellicent": 1.5833987347961824, - "galvantula": 1.8937979153266635, - "klang": 2.329011260812776, - "klinklang": 2.651153717644722, - "beheeyem": 1.9013453412443257, - "lampent": 3.0376020118955185, - "fraxure": 2.7441651787248964, - "beartic": 2.022653374666973, - "cryogonal": 1.744315365626289, - "accelgor": 3.575769148019896, - "stunfisk": 1.3436001544252156, - "stunfisk-galar": 2.097627954238728, - "mienshao": 4.854313489349833, - "druddigon": 2.508614166302846, - "golurk": 2.010456810317193, - "bisharp": 2.6195952817681354, - "bouffalant": 1.3562097327507234, - "heatmor": 2.199108926263428, - "durant": 2.9298931838676867, - "diggersby": 3.341870725784873, - "talonflame": 4.573424598258686, - "pangoro": 3.8798601365411054, - "doublade": 2.1143818882786016, - "malamar": 4.188196553341432, - "barbaracle": 1.543706721616998, - "heliolisk": 3.5538971573204323, - "tyrantrum": 2.6570850148002334, - "aurorus": 2.637134843339191, - "hawlucha": 5.085781665893235, - "dedenne": 3.1003398833812135, - "klefki": 2.4640844883533277, - "trevenant": 3.1889425560459763, - "gourgeist-average": 5.8616760739739195, - "charjabug": 4.7587044003442465, - "vikavolt": 2.243493342495065, - "ribombee": 5.554526425977063, - "lycanroc-midday": 3.474104867179398, - "lycanroc-midnight": 2.5439015737007162, - "mudsdale": 1.7706796244108456, - "araquanid": 2.5110314672703664, - "lurantis": 2.591172667616763, - "shiinotic": 4.555254811103458, - "salazzle": 3.4787807429568858, - "bewear": 2.6084476773159686, - "tsareena": 3.201866140058731, - "comfey": 4.639351512450439, - "oranguru": 2.7149966910867005, - "passimian": 3.6188055429052297, - "palossand": 2.275208815254429, - "pyukumuku": 41.75205466330935, - "togedemaru": 1.7737571589483792, - "mimikyu-disguised": 4.03415502045306, - "greedent": 2.1848179077314067, - "orbeetle": 2.1548399990814557, - "thievul": 2.4818510819239306, - "eldegoss": 3.9824986701865654, - "dubwool": 3.165568548628518, - "drednaw": 1.3490529455554465, - "boltund": 5.178779175392632, - "carkol": 2.7626591389271553, - "coalossal": 2.308151183332453, - "sandaconda": 3.8163649808887237, - "cramorant": 5.923507260329725, - "barraskewda": 5.353244647692979, - "toxtricity-amped": 2.5191382951987284, - "centiskorch": 2.9337292355647175, - "grapploct": 2.5353487759757964, - "polteageist": 2.656718347795559, - "hatterene": 2.6209338307514694, - "grimmsnarl": 5.769184095809948, - "obstagoon": 3.7197322810429787, - "perrserker": 2.805050950336482, - "alcremie": 1.4637901186903468, - "falinks": 4.8444391519950205, - "pincurchin": 3.1789288058891962, - "frosmoth": 3.8887474685202656, - "indeedee-male": 3.1691767735954435, - "morpeko": 3.9202560561700377, - "copperajah": 1.890818740390083, - "duraludon": 2.0279158984992973, - "drakloak": 7.273741042212105, - "clefable": 2.1857271480407316 + "ivysaur": 2.7793109651544334, + "charmeleon": 4.625484453182744, + "wartortle": 2.9615338777684137, + "butterfree": 6.410056023144278, + "raichu": 5.380539523543787, + "raichu-alola": 3.464580375740377, + "sandslash": 2.502211036999509, + "sandslash-alola": 1.9985301808989617, + "nidoqueen": 2.354601470019094, + "nidoking": 1.5942855898067279, + "clefairy": 9.480872664095607, + "clefable": 2.1857271480407316, + "jigglypuff": 28.122331618946486, + "wigglytuff": 2.147051401678429, + "gloom": 4.906246784150653, + "vileplume": 2.836492604318547, + "dugtrio": 3.6756961218017037, + "dugtrio-alola": 2.7895566712823463, + "persian": 4.406957552086307, + "persian-alola": 6.4599036249420445, + "golduck": 3.2212075487650225, + "poliwrath": 2.7763209526942685, + "kadabra": 3.773852076275853, + "machoke": 5.909952175255801, + "tentacruel": 1.9574920026785332, + "slowbro": 1.9632598864005641, + "magneton": 2.644477996914649, + "haunter": 4.084139175821097, + "kingler": 2.9707985624531834, + "exeggutor": 2.055524820651554, + "marowak": 3.254098281562653, + "marowak-alola": 2.3972981460683656, + "hitmonlee": 3.024576193023834, + "hitmonchan": 2.8236792911340363, + "lickitung": 2.0535387619025705, + "weezing": 1.499468855482959, + "weezing-galar": 2.4983461255216977, + "rhydon": 2.512294061749687, + "chansey": 20.176539102682028, + "tangela": 5.826164808635891, + "kangaskhan": 2.0516348527513255, + "seadra": 5.203931320050506, + "seaking": 2.3896266981124814, + "starmie": 1.5379672492527465, + "mr-mime": 6.652545421405834, + "mr-mime-galar": 4.021475016611518, + "scyther": 4.26293474979729, + "jynx": 4.36172843495319, + "electabuzz": 2.610526431230597, + "magmar": 1.8098908285889361, + "tauros": 2.2743340827706513, + "ditto": 3.093180276524879, + "vaporeon": 3.196104590216244, + "jolteon": 1.939120762984191, + "flareon": 2.520330738059958, + "porygon": 2.9970317270552296, + "dragonair": 2.9491846867932257, + "noctowl": 5.986950280633937, + "lanturn": 2.0013619392981785, + "togetic": 5.940320875654757, + "xatu": 4.4495950406168365, + "bellossom": 2.4890775893865786, + "azumarill": 2.374584814229757, + "sudowoodo": 2.9061177321058818, + "politoed": 2.5967839064254266, + "quagsire": 5.281270852071643, + "slowking": 2.4738923843757554, + "dunsparce": 3.549650975490147, + "qwilfish": 2.980181123780347, + "sneasel": 2.964984007616832, + "piloswine": 1.7503780695664566, + "octillery": 2.4124519699204017, + "mantine": 2.5341344844507288, + "skarmory": 1.9628754339381866, + "hitmontop": 3.7223759305491195, + "miltank": 3.935630813232277, + "grovyle": 8.184489462326193, + "sceptile": 1.5233263560369599, + "combusken": 3.714429801524482, + "blaziken": 1.7575744071429082, + "marshtomp": 2.6082063397784667, + "swampert": 1.3466868650414636, + "linoone": 5.500695260051186, + "linoone-galar": 6.980195119452766, + "pelipper": 7.379772166316572, + "ninjask": 12.015755397847773, + "exploud": 1.7179488472340378, + "lairon": 2.111434388672903, + "manectric": 1.8977863819298877, + "roselia": 3.528603242288992, + "sharpedo": 7.583207496017716, + "wailmer": 6.7422359602270525, + "torkoal": 2.4369345088797276, + "flygon": 3.5088356659576467, + "altaria": 2.306271515436715, + "whiscash": 2.190185530300468, + "crawdaunt": 3.1700593461329953, + "claydol": 3.4698132869875344, + "cradily": 2.2932118081455406, + "armaldo": 2.2518213106728275, + "dusclops": 3.6620559486717212, + "absol": 2.8406205803612448, + "glalie": 4.663583913462894, + "sealeo": 3.6634601178669985, + "relicanth": 2.19652730551816, + "metang": 2.375605326364978, + "luxray": 4.028243431744311, + "vespiquen": 4.339840115408265, + "cherrim": 6.085698561094219, + "gastrodon": 2.222286040338649, + "drifblim": 4.86897823295089, + "lopunny": 3.805771773994837, + "skuntank": 1.6062889482401648, + "bronzong": 2.5210727285091705, + "munchlax": 2.038148616999472, + "drapion": 2.7165860114051057, + "abomasnow": 3.4760449424244726, + "froslass": 3.3740964482389177, + "rotom": 4.035276525476691, + "stoutland": 2.5007839300624015, + "liepard": 10.196650268047627, + "musharna": 1.604880487153995, + "unfezant": 7.625635009261438, + "boldore": 3.890529780864871, + "swoobat": 6.368011909958481, + "audino": 2.420387740436545, + "gurdurr": 3.6462209082130315, + "palpitoad": 4.058579712928309, + "seismitoad": 6.211277118100732, + "scolipede": 3.8954164490221586, + "whimsicott": 3.372445274742143, + "lilligant": 3.3230943134041313, + "basculin-red-striped": 3.0012500493397747, + "basculin-blue-striped": 4.025448105103267, + "krookodile": 4.212916556282183, + "maractus": 2.3794472617762437, + "crustle": 2.661148406499309, + "sigilyph": 2.6115473439310763, + "cofagrigus": 2.9403291381457812, + "garbodor": 1.5761252254117093, + "cinccino": 4.7795460791636835, + "vanillish": 2.4440992859500392, + "emolga": 3.590606165324602, + "escavalier": 1.6973939957104571, + "amoonguss": 2.1567480833655797, + "jellicent": 1.5835334571605109, + "galvantula": 1.8960546142134476, + "klang": 2.324507983492829, + "klinklang": 2.6420776830189885, + "beheeyem": 1.9014039858281695, + "lampent": 3.0403470474317578, + "fraxure": 2.754584980016485, + "beartic": 2.0242019584161213, + "cryogonal": 1.7433085549415956, + "accelgor": 3.5787147983561547, + "stunfisk": 1.3431537712776294, + "stunfisk-galar": 2.096219544987043, + "mienshao": 4.860793767001411, + "druddigon": 2.5101024505794713, + "golurk": 2.0110336751481963, + "bisharp": 2.6178380289787655, + "bouffalant": 1.3560227568400838, + "heatmor": 2.2000663584593427, + "durant": 2.9273671438812894, + "diggersby": 3.339552614779704, + "talonflame": 4.576164030781731, + "pangoro": 3.890807098113448, + "doublade": 2.111440677208114, + "malamar": 4.195254164571702, + "barbaracle": 1.541485454866916, + "heliolisk": 3.551901663070164, + "tyrantrum": 2.6640897734821385, + "aurorus": 2.6359722600374296, + "hawlucha": 5.092004348319056, + "dedenne": 3.100762657617015, + "klefki": 2.458506680650717, + "trevenant": 3.190242707849444, + "gourgeist-average": 5.864748215255149, + "charjabug": 4.761904049536823, + "vikavolt": 2.24609988080826, + "ribombee": 5.562704861423482, + "lycanroc-midday": 3.4729049325421117, + "lycanroc-midnight": 2.5449705156796374, + "mudsdale": 1.7721271512760626, + "araquanid": 2.5107744708378843, + "lurantis": 2.591551187608924, + "shiinotic": 4.5538954806217085, + "salazzle": 3.474347105211616, + "bewear": 2.6099742166540985, + "tsareena": 3.200448426364529, + "comfey": 4.640237625980172, + "oranguru": 2.713165448145153, + "passimian": 3.6257851038892004, + "palossand": 2.2758387332305627, + "pyukumuku": 41.713987947251056, + "togedemaru": 1.7666776987647266, + "mimikyu-disguised": 4.03231428802289, + "greedent": 2.18183770545713, + "orbeetle": 2.156094112409623, + "thievul": 2.486427709747007, + "eldegoss": 3.98097322172107, + "dubwool": 3.1650672875158876, + "drednaw": 1.3479209842140887, + "boltund": 5.182696268309223, + "carkol": 2.762889425615754, + "coalossal": 2.3085334933276047, + "sandaconda": 3.8223386118249483, + "cramorant": 5.926105985076724, + "barraskewda": 5.360665691370825, + "toxtricity-amped": 2.5164450257234874, + "centiskorch": 2.934552581855435, + "grapploct": 2.541439703765173, + "polteageist": 2.65667449428088, + "hatterene": 2.620499088777107, + "grimmsnarl": 5.785230473160128, + "obstagoon": 3.7245898835602276, + "perrserker": 2.8001662592125838, + "alcremie": 1.4636788179687739, + "falinks": 4.85070466157058, + "pincurchin": 3.1798325371263165, + "frosmoth": 3.892919943096558, + "indeedee-male": 3.1673070769554967, + "morpeko": 3.925403048732142, + "copperajah": 1.8852166254784444, + "duraludon": 2.0283796589171654, + "drakloak": 7.297254237735107 }, "jigglypuff": { - "ivysaur": 1.8858709546184365, - "charmeleon": 2.7605696081655946, - "wartortle": 1.9550403724027314, - "butterfree": 3.20207860527567, - "raichu": 3.55352429286586, - "raichu-alola": 2.3994103063049876, - "sandslash": 1.6054123118947403, - "sandslash-alola": 1.318786802808801, - "nidoqueen": 1.7998024370314618, - "nidoking": 1.1584959677314615, - "clefairy": 6.489484556679081, - "clefable": 1.3585954543447838, - "wigglytuff": 1.3492741650046485, - "gloom": 3.2252491694870216, - "vileplume": 2.0507728997030172, - "dugtrio": 2.481541285667823, - "dugtrio-alola": 1.9464210645956639, - "persian": 2.8769304369700817, - "persian-alola": 3.953815085129038, - "golduck": 2.107885008460451, - "poliwrath": 1.5180201669308167, - "kadabra": 2.5997872044502524, - "machoke": 3.340643783892723, - "tentacruel": 1.3430417957600247, - "slowbro": 1.2859583361797222, - "magneton": 1.7621532697937905, - "haunter": 3.167577908261312, - "kingler": 1.7883933695229337, - "exeggutor": 1.3863529747762464, - "marowak": 2.074456607000217, - "marowak-alola": 1.3088346331094147, - "hitmonlee": 1.7811566738842297, - "hitmonchan": 1.6632036315312941, - "lickitung": 1.3444089692735461, - "weezing": 0.9513447058057412, - "weezing-galar": 1.6054214413780765, - "rhydon": 1.5970506014306185, - "chansey": 16.114801148411534, - "tangela": 3.5998926767339627, - "kangaskhan": 1.4231401588897876, - "seadra": 3.4056033188362806, - "seaking": 1.537523931330918, - "starmie": 1.028118463708546, - "mr-mime": 4.638043750254734, - "mr-mime-galar": 2.5704044807052746, - "scyther": 2.009857874728076, - "jynx": 3.0221849282550153, - "electabuzz": 1.727602831466644, - "magmar": 1.050049096310984, - "tauros": 1.44106121402935, - "ditto": 30.847258911915958, - "vaporeon": 2.1678067246213284, - "jolteon": 1.3899473194707515, - "flareon": 1.5484466910573134, - "porygon": 2.0424045180584223, - "dragonair": 1.8429346146076562, - "noctowl": 3.873663981569101, - "lanturn": 1.3194651466998208, - "togetic": 3.707109599789491, - "xatu": 2.7460853022589626, - "bellossom": 1.6407604635706425, - "azumarill": 1.4498215240988999, - "sudowoodo": 1.8620979027865938, - "politoed": 1.7517569703944058, - "quagsire": 3.4046968035729894, - "slowking": 1.690471229185976, - "dunsparce": 2.575845592318423, - "qwilfish": 1.8114130436250526, - "sneasel": 2.0175177841444665, - "piloswine": 1.1370111085205774, - "octillery": 1.5342794234276158, - "mantine": 1.6412040649038668, - "skarmory": 1.2090825510690673, - "hitmontop": 2.1348728188191846, - "miltank": 2.4830094676636114, - "grovyle": 5.5587312758207705, - "sceptile": 1.1244114820570594, - "combusken": 2.3826955939208103, - "blaziken": 1.1357949052541194, - "marshtomp": 1.71863609218717, - "swampert": 0.9033825973629843, - "linoone": 4.048603912673685, - "linoone-galar": 4.475707569168518, - "pelipper": 4.2928405503133025, - "ninjask": 5.97217247895583, - "exploud": 1.1317265430067274, - "lairon": 1.3424422285547792, - "manectric": 1.2387111215219027, - "roselia": 2.5368932421481185, - "sharpedo": 4.685760788309644, - "wailmer": 4.34575971122542, - "torkoal": 1.2022185990828478, - "flygon": 2.098494743185068, - "altaria": 1.3711784640182363, - "whiscash": 1.3647880303462756, - "crawdaunt": 1.755488593001731, - "claydol": 2.3688212053307462, - "cradily": 1.5339245950938463, - "armaldo": 1.3904569981677168, - "dusclops": 3.087451538200829, - "absol": 1.6902441300559148, - "glalie": 2.922594345292507, - "sealeo": 2.2833015341684657, - "relicanth": 1.4643270521374316, - "metang": 1.5819858155463349, - "luxray": 2.6185409147487464, - "vespiquen": 2.0277088514547508, - "cherrim": 4.158436452924912, - "gastrodon": 1.4890999547680601, - "drifblim": 2.938954117228324, - "lopunny": 2.4647660546911556, - "skuntank": 1.0592990759132948, - "bronzong": 1.706719050273029, - "munchlax": 1.3569049446470123, - "drapion": 1.695712579677164, - "abomasnow": 2.242941563726328, - "froslass": 2.2532585244970122, - "rotom": 2.9425056650113883, - "stoutland": 1.610341340004509, - "liepard": 6.121109657498714, - "musharna": 1.0802477579534215, - "unfezant": 4.486112480508286, - "boldore": 2.431901961803076, - "swoobat": 3.9262794765472444, - "audino": 1.5298972399070698, - "gurdurr": 1.9003781916507103, - "palpitoad": 2.7082099855667154, - "seismitoad": 3.781814202233482, - "scolipede": 2.182562377112126, - "whimsicott": 2.2446245404941765, - "lilligant": 2.300943666049779, - "basculin-red-striped": 1.923869594227435, - "basculin-blue-striped": 2.6703681496761256, - "krookodile": 2.5927990364217637, - "maractus": 1.6092824408644308, - "crustle": 1.5623133746873916, - "sigilyph": 1.5536984835993546, - "cofagrigus": 2.221183869231184, - "garbodor": 1.0375910801716137, - "cinccino": 3.115850892267259, - "vanillish": 1.5123446094509845, - "emolga": 2.0838901723866883, - "escavalier": 1.1665641625079937, - "amoonguss": 1.4048505234841802, - "jellicent": 0.9934038415057569, - "galvantula": 1.1555371579299463, - "klang": 1.5967982580373956, - "klinklang": 1.6976607781445163, - "beheeyem": 1.3181062170167057, - "lampent": 1.5566388105927265, - "fraxure": 1.7192452340181357, - "beartic": 1.2382846036192232, - "cryogonal": 1.1836831850746659, - "accelgor": 2.33820736073117, - "stunfisk": 0.9220521026566807, - "stunfisk-galar": 1.5761552139141015, - "mienshao": 2.7367599094235997, - "druddigon": 1.4011949464246831, - "golurk": 1.4487576708206835, - "bisharp": 1.639315480137452, - "bouffalant": 0.837340693735732, - "heatmor": 1.2204857425103408, - "durant": 1.8288102897905663, - "diggersby": 2.2496007186844436, - "talonflame": 1.7809179637918564, - "pangoro": 1.8522631594179422, - "doublade": 1.2851070899276922, - "malamar": 2.5176336645515587, - "barbaracle": 1.0125190347457773, - "heliolisk": 2.43533203125584, - "tyrantrum": 1.4706401409044723, - "aurorus": 1.7816427659882388, - "hawlucha": 2.751987578132831, - "dedenne": 1.9306879415376317, - "klefki": 1.6308537586896525, - "trevenant": 2.0255826403260295, - "gourgeist-average": 4.4827595826430295, - "charjabug": 2.9056361956957346, - "vikavolt": 1.3131186656432714, - "ribombee": 3.5763661050126827, - "lycanroc-midday": 2.3710406861287296, - "lycanroc-midnight": 1.7304168957967405, - "mudsdale": 1.1433780713071986, - "araquanid": 1.514672902410084, - "lurantis": 1.7686047820476896, - "shiinotic": 3.1138016534995625, - "salazzle": 1.9411590862852264, - "bewear": 1.457070670150551, - "tsareena": 2.1461438570990152, - "comfey": 3.1448155674553546, - "oranguru": 1.8564256932599137, - "passimian": 1.9634118515973666, - "palossand": 1.6545155191914223, - "pyukumuku": 33.901788155966365, - "togedemaru": 1.2116054838062102, - "mimikyu-disguised": 3.198801356361982, - "greedent": 1.340725421963184, - "orbeetle": 1.398961014937261, - "thievul": 1.5930341572605107, - "eldegoss": 2.766742653221161, - "dubwool": 2.0244702742427068, - "drednaw": 0.8662332117297549, - "boltund": 3.5303147568759496, - "carkol": 1.5842171090756594, - "coalossal": 1.3569814138384222, - "sandaconda": 2.6512355998541794, - "cramorant": 3.8912755923714135, - "barraskewda": 3.7146041001549586, - "toxtricity-amped": 1.6353875480818894, - "centiskorch": 1.261744538564625, - "grapploct": 1.4189157581544314, - "polteageist": 1.8163752901918335, - "hatterene": 1.7327941208249231, - "grimmsnarl": 3.446134929037199, - "obstagoon": 2.21833082274525, - "perrserker": 1.8808308703908412, - "alcremie": 0.9619443860245549, - "falinks": 2.54399938732625, - "pincurchin": 2.1859219185863084, - "frosmoth": 2.0604479567618794, - "indeedee-male": 2.416353734217681, - "morpeko": 2.289512639465424, - "copperajah": 1.2158238381052326, - "duraludon": 1.2180203032784738, - "drakloak": 4.9490474456574045, - "jigglypuff": 19.271839320102814 + "ivysaur": 1.8720721310415507, + "charmeleon": 2.7489921610069588, + "wartortle": 1.9452653677273632, + "butterfree": 3.1839601236775836, + "raichu": 3.535239970215372, + "raichu-alola": 2.385242709457728, + "sandslash": 1.5973302776776288, + "sandslash-alola": 1.3108976245938608, + "nidoqueen": 1.7892939508364167, + "nidoking": 1.1512989806901741, + "clefairy": 6.458340131521174, + "clefable": 1.3523587991840489, + "jigglypuff": 19.271839320102814, + "wigglytuff": 1.3420604371046978, + "gloom": 3.1990829030377754, + "vileplume": 2.04122648531097, + "dugtrio": 2.468078227387986, + "dugtrio-alola": 1.931350018189048, + "persian": 2.858145163623751, + "persian-alola": 3.9438479652546654, + "golduck": 2.0954213328278435, + "poliwrath": 1.510345628487138, + "kadabra": 2.583650974247227, + "machoke": 3.327907436617072, + "tentacruel": 1.3328325152359395, + "slowbro": 1.2790758108980076, + "magneton": 1.7477057557861384, + "haunter": 3.1574599494932625, + "kingler": 1.778511522326097, + "exeggutor": 1.3782978685156968, + "marowak": 2.061228243226373, + "marowak-alola": 1.3016284899941073, + "hitmonlee": 1.7719599369630803, + "hitmonchan": 1.654927702774557, + "lickitung": 1.337149963170166, + "weezing": 0.9439519459212427, + "weezing-galar": 1.5948463988938277, + "rhydon": 1.5860548841917943, + "chansey": 16.00850919475442, + "tangela": 3.5791749131521486, + "kangaskhan": 1.4174471054374518, + "seadra": 3.393279845449236, + "seaking": 1.5266525550075922, + "starmie": 1.0226912901453336, + "mr-mime": 4.611922632963724, + "mr-mime-galar": 2.5565099634843316, + "scyther": 2.000243743279713, + "jynx": 3.004450110682628, + "electabuzz": 1.7179140822269898, + "magmar": 1.0433467385107746, + "tauros": 1.4332731452246619, + "ditto": 30.53260732795208, + "vaporeon": 2.1557987809783516, + "jolteon": 1.3843547084165997, + "flareon": 1.54236307215379, + "porygon": 2.0323174121620897, + "dragonair": 1.840912837324257, + "noctowl": 3.85027401986508, + "lanturn": 1.3126909685390031, + "togetic": 3.6879546454756618, + "xatu": 2.731623718151269, + "bellossom": 1.6327447365334027, + "azumarill": 1.4420525514150766, + "sudowoodo": 1.8521041816066122, + "politoed": 1.74184348279078, + "quagsire": 3.3881756142705974, + "slowking": 1.6804763996614525, + "dunsparce": 2.5669564751923666, + "qwilfish": 1.7950713396814109, + "sneasel": 2.0101621601044712, + "piloswine": 1.130879872043982, + "octillery": 1.5239153034429442, + "mantine": 1.6324367967715174, + "skarmory": 1.2011369366408196, + "hitmontop": 2.1248247442565518, + "miltank": 2.4675748106626694, + "grovyle": 5.5285171753586955, + "sceptile": 1.1193234662427214, + "combusken": 2.3708140021828594, + "blaziken": 1.1297928978166236, + "marshtomp": 1.7088934793113946, + "swampert": 0.8990412457214166, + "linoone": 4.033016552425005, + "linoone-galar": 4.466512181709613, + "pelipper": 4.267984995514217, + "ninjask": 5.951443897017443, + "exploud": 1.1253282536588478, + "lairon": 1.3310090251954687, + "manectric": 1.2320261121510305, + "roselia": 2.521445283061375, + "sharpedo": 4.674505114171718, + "wailmer": 4.317964020864331, + "torkoal": 1.1958844252402117, + "flygon": 2.0913730193921314, + "altaria": 1.368677868644283, + "whiscash": 1.3570735785678352, + "crawdaunt": 1.7493117009117745, + "claydol": 2.355808966485352, + "cradily": 1.524182256607075, + "armaldo": 1.3841947621512802, + "dusclops": 3.087978975868766, + "absol": 1.6837257810345705, + "glalie": 2.9055769347144667, + "sealeo": 2.2710220673231314, + "relicanth": 1.4573798168836485, + "metang": 1.568602694215459, + "luxray": 2.602957810191525, + "vespiquen": 2.018236317021976, + "cherrim": 4.135982762050281, + "gastrodon": 1.4806725085229129, + "drifblim": 2.9229414845178945, + "lopunny": 2.44930702792225, + "skuntank": 1.054738594466094, + "bronzong": 1.6930635474905673, + "munchlax": 1.3463773568321498, + "drapion": 1.6867492677199194, + "abomasnow": 2.229114929457708, + "froslass": 2.245442695611202, + "rotom": 2.936220678342869, + "stoutland": 1.5994065294902646, + "liepard": 6.099612570294324, + "musharna": 1.0741725188758955, + "unfezant": 4.462596711539677, + "boldore": 2.4191199696516312, + "swoobat": 3.905552835276257, + "audino": 1.522128556032628, + "gurdurr": 1.89197847810815, + "palpitoad": 2.6942866646440575, + "seismitoad": 3.749425321427619, + "scolipede": 2.171866622311192, + "whimsicott": 2.232810738514699, + "lilligant": 2.2908655633621957, + "basculin-red-striped": 1.9122490746783776, + "basculin-blue-striped": 2.6575644115318244, + "krookodile": 2.585536255723204, + "maractus": 1.6017149146656366, + "crustle": 1.555387402889731, + "sigilyph": 1.5436248156681769, + "cofagrigus": 2.217642663642004, + "garbodor": 1.0265666763014651, + "cinccino": 3.0962216766235704, + "vanillish": 1.5043883684248822, + "emolga": 2.0729961627402975, + "escavalier": 1.1600425593003685, + "amoonguss": 1.392932348493197, + "jellicent": 0.9885027916053853, + "galvantula": 1.1501722942943071, + "klang": 1.5851024672352443, + "klinklang": 1.6815718235393566, + "beheeyem": 1.311625387980889, + "lampent": 1.5492081033588092, + "fraxure": 1.7186917325535864, + "beartic": 1.23180468097669, + "cryogonal": 1.1773182453853477, + "accelgor": 2.327721227284349, + "stunfisk": 0.9173510736450569, + "stunfisk-galar": 1.5690068471243797, + "mienshao": 2.7237682716378715, + "druddigon": 1.393413193718068, + "golurk": 1.4440933976859789, + "bisharp": 1.6289100840124302, + "bouffalant": 0.8318837316046892, + "heatmor": 1.213750752965697, + "durant": 1.8161835888104516, + "diggersby": 2.236738205352449, + "talonflame": 1.7687875257789276, + "pangoro": 1.8456833812285647, + "doublade": 1.2748008060671867, + "malamar": 2.5085965090052857, + "barbaracle": 1.0046321022807798, + "heliolisk": 2.4212979500307066, + "tyrantrum": 1.4657278239366311, + "aurorus": 1.771432583840311, + "hawlucha": 2.7368195667046846, + "dedenne": 1.9211465091866837, + "klefki": 1.6177751403086373, + "trevenant": 2.014063090079018, + "gourgeist-average": 4.475886450040371, + "charjabug": 2.8887232520412756, + "vikavolt": 1.3065376377975286, + "ribombee": 3.562884700246679, + "lycanroc-midday": 2.3579231256495934, + "lycanroc-midnight": 1.7218747623006143, + "mudsdale": 1.1377658791392482, + "araquanid": 1.5051497594750025, + "lurantis": 1.7598394436301545, + "shiinotic": 3.0967867139180396, + "salazzle": 1.925525721637377, + "bewear": 1.4493608539352676, + "tsareena": 2.1337229488678577, + "comfey": 3.129310295818743, + "oranguru": 1.8455837060681555, + "passimian": 1.9548406601471355, + "palossand": 1.6501665712474103, + "pyukumuku": 33.80660876502135, + "togedemaru": 1.1990681749477652, + "mimikyu-disguised": 3.1913549020546377, + "greedent": 1.3304540649964671, + "orbeetle": 1.391962096401766, + "thievul": 1.5894773085662828, + "eldegoss": 2.751851271371235, + "dubwool": 2.011828358529437, + "drednaw": 0.8606458906004222, + "boltund": 3.51563010428149, + "carkol": 1.5756646303270034, + "coalossal": 1.349560089692528, + "sandaconda": 2.644700137795037, + "cramorant": 3.872454497796633, + "barraskewda": 3.7028807222697484, + "toxtricity-amped": 1.6256466315126594, + "centiskorch": 1.2531226811235228, + "grapploct": 1.4128743641250838, + "polteageist": 1.8071145427742161, + "hatterene": 1.7230522218734412, + "grimmsnarl": 3.437077728562671, + "obstagoon": 2.209109190738438, + "perrserker": 1.8671083878815575, + "alcremie": 0.9572795194699, + "falinks": 2.5304627926886805, + "pincurchin": 2.1741554974314514, + "frosmoth": 2.050230415457734, + "indeedee-male": 2.4066106740983484, + "morpeko": 2.2795700838165858, + "copperajah": 1.2046169696959892, + "duraludon": 1.2103159976447782, + "drakloak": 4.955703502298297 }, "wigglytuff": { - "ivysaur": 3.192114957372416, - "charmeleon": 3.8084247668009317, - "wartortle": 2.7298538379634305, - "butterfree": 4.292490310229059, - "raichu": 4.8960103098357735, - "raichu-alola": 3.2464520314781207, - "sandslash": 2.356546421506238, - "sandslash-alola": 1.7758661364346142, - "nidoqueen": 3.0390903877808833, - "nidoking": 2.0082596621451456, - "clefairy": 8.90068857727038, - "clefable": 2.005304235230782, - "jigglypuff": 26.570139426943413, - "gloom": 5.6720907403365235, - "vileplume": 3.345590904466284, - "dugtrio": 3.4852116431990634, - "dugtrio-alola": 2.6631207128969105, - "persian": 4.147996597340696, - "persian-alola": 6.016330537787976, - "golduck": 3.024188234221284, - "poliwrath": 2.5026846409505246, - "kadabra": 3.539150165126705, - "machoke": 5.330764147940101, - "tentacruel": 2.235979951984998, - "slowbro": 1.8327703316452593, - "magneton": 2.452820461281017, - "haunter": 5.33780223989006, - "kingler": 2.7105096290212316, - "exeggutor": 1.9345751425927622, - "marowak": 3.065348135627201, - "marowak-alola": 1.8915796953112298, - "hitmonlee": 2.6780370333934904, - "hitmonchan": 2.593370010951214, - "lickitung": 1.9069550504294226, - "weezing": 1.8111475479821397, - "weezing-galar": 3.0411164853684025, - "rhydon": 2.366455044311893, - "chansey": 19.51114028890102, - "tangela": 5.466532729610039, - "kangaskhan": 1.951744661229939, - "seadra": 4.852917612979027, - "seaking": 2.2540029249807403, - "starmie": 1.4381357710531362, - "mr-mime": 6.255050397874664, - "mr-mime-galar": 3.5081768454703424, - "scyther": 2.7651268329419487, - "jynx": 3.899170326823763, - "electabuzz": 2.426095111327145, - "magmar": 1.494029952757423, - "tauros": 2.0972048064028073, - "ditto": 3.5989138218912915, - "vaporeon": 2.9886691444354128, - "jolteon": 1.8794678680417647, - "flareon": 2.1796856541091305, - "porygon": 2.8059184019569336, - "dragonair": 2.744117298431691, - "noctowl": 5.273267849765726, - "lanturn": 1.8644166597026377, - "togetic": 5.143347015723947, - "xatu": 3.813579131052336, - "bellossom": 2.312102417870186, - "azumarill": 2.2242280835011354, - "sudowoodo": 2.6901023230645684, - "politoed": 2.4421101072492117, - "quagsire": 4.805150255240751, - "slowking": 2.340014092641806, - "dunsparce": 3.4930129593306, - "qwilfish": 3.6371131794189013, - "sneasel": 2.8123952892386885, - "piloswine": 1.6158268674183307, - "octillery": 2.2309186427866288, - "mantine": 2.213628442944536, - "skarmory": 1.7174418199581805, - "hitmontop": 3.3666555220364787, - "miltank": 3.7044184556352597, - "grovyle": 7.538161724570509, - "sceptile": 1.449144671551765, - "combusken": 3.6824339424959622, - "blaziken": 1.777215301927236, - "marshtomp": 2.458020388831515, - "swampert": 1.2569948116077687, - "linoone": 5.529597007668228, - "linoone-galar": 6.55186950387103, - "pelipper": 6.272716834401928, - "ninjask": 7.898905607021824, - "exploud": 1.5813603877042737, - "lairon": 1.9926422020612768, - "manectric": 1.7686292771146976, - "roselia": 4.003970548632502, - "sharpedo": 7.116658241707368, - "wailmer": 6.320005823471348, - "torkoal": 1.898562200582668, - "flygon": 3.263880766475577, - "altaria": 2.119067291700664, - "whiscash": 2.024991687344065, - "crawdaunt": 2.9038062407023686, - "claydol": 3.247755974532601, - "cradily": 2.1367202547169972, - "armaldo": 1.9498457938309677, - "dusclops": 3.9620697160987626, - "absol": 2.6325356625932663, - "glalie": 4.087143815789846, - "sealeo": 3.1608042032305215, - "relicanth": 2.080253593983512, - "metang": 2.255524956082777, - "luxray": 3.771989574381136, - "vespiquen": 2.7770225973235707, - "cherrim": 5.70210526689759, - "gastrodon": 2.106424530913067, - "drifblim": 4.144654998308382, - "lopunny": 3.5238155889249425, - "skuntank": 1.5065964599171309, - "bronzong": 2.402894187715513, - "munchlax": 1.9323448759527082, - "drapion": 2.552665795273178, - "abomasnow": 3.0717817128455858, - "froslass": 3.0718253175153274, - "rotom": 4.090352704966065, - "stoutland": 2.352833894468806, - "liepard": 9.543130442051812, - "musharna": 1.5035278793172684, - "unfezant": 6.527947012347022, - "boldore": 3.5935478889983528, - "swoobat": 5.454622602535905, - "audino": 2.230273573049801, - "gurdurr": 3.1833717654930656, - "palpitoad": 3.796662119481306, - "seismitoad": 5.68469262447327, - "scolipede": 3.7787664084427472, - "whimsicott": 3.1618320111247695, - "lilligant": 3.119937045183142, - "basculin-red-striped": 2.8280593470845163, - "basculin-blue-striped": 3.7863105053080406, - "krookodile": 3.929987911051809, - "maractus": 2.2279103029694003, - "crustle": 2.233759326978124, - "sigilyph": 2.2167897758372677, - "cofagrigus": 3.0330288048164955, - "garbodor": 1.8556522367640238, - "cinccino": 4.5011850443004615, - "vanillish": 2.107492791788984, - "emolga": 3.033013201811176, - "escavalier": 1.53353857685272, - "amoonguss": 2.47447608609718, - "jellicent": 1.464246986784985, - "galvantula": 1.6150434949795875, - "klang": 2.1699666969918243, - "klinklang": 2.4983008638165622, - "beheeyem": 1.7836343439782176, - "lampent": 2.257986383126398, - "fraxure": 2.5841348635669386, - "beartic": 1.7229341749146012, - "cryogonal": 1.552036535307185, - "accelgor": 3.1186172466141007, - "stunfisk": 1.2579670862388024, - "stunfisk-galar": 1.997424773879879, - "mienshao": 4.388041308877152, - "druddigon": 2.325257334579142, - "golurk": 1.9751772177264484, - "bisharp": 2.463308117456811, - "bouffalant": 1.2477590260054818, - "heatmor": 1.7815314806924243, - "durant": 2.578650156830321, - "diggersby": 3.1700122041721164, - "talonflame": 2.652773214153073, - "pangoro": 3.4405136335551885, - "doublade": 1.9423496105193974, - "malamar": 3.8866802793994855, - "barbaracle": 1.4528420241594435, - "heliolisk": 3.323630766547682, - "tyrantrum": 2.4182771861578405, - "aurorus": 2.34113765356674, - "hawlucha": 4.577942815768012, - "dedenne": 2.8504381156750958, - "klefki": 2.2997021696518303, - "trevenant": 2.9317047959663354, - "gourgeist-average": 6.09377429535494, - "charjabug": 4.101836766619344, - "vikavolt": 1.9035968471630111, - "ribombee": 4.806316398892209, - "lycanroc-midday": 3.2953276477379836, - "lycanroc-midnight": 2.375923833824168, - "mudsdale": 1.6126603335147438, - "araquanid": 2.1782176344455046, - "lurantis": 2.43148062513852, - "shiinotic": 4.264353911817848, - "salazzle": 3.361143882498345, - "bewear": 2.41651935127565, - "tsareena": 3.035927248931184, - "comfey": 4.34453838882893, - "oranguru": 2.5531361234316017, - "passimian": 3.2467323040954605, - "palossand": 2.276612690990004, - "pyukumuku": 42.193540941863546, - "togedemaru": 1.6788655171054558, - "mimikyu-disguised": 4.302977065316478, - "greedent": 2.0462809687146226, - "orbeetle": 1.8750667200729831, - "thievul": 2.3170181715383658, - "eldegoss": 3.7368725838865475, - "dubwool": 2.921439743298703, - "drednaw": 1.2714599506969355, - "boltund": 4.882511687405532, - "carkol": 2.182165328788078, - "coalossal": 1.8119011698171619, - "sandaconda": 3.6132878707218845, - "cramorant": 5.247699369040956, - "barraskewda": 5.098352974063621, - "toxtricity-amped": 2.9188031363224916, - "centiskorch": 1.8031220798564591, - "grapploct": 2.250128051377908, - "polteageist": 2.50380146159413, - "hatterene": 2.4577058445265845, - "grimmsnarl": 5.259761799675632, - "obstagoon": 3.4693796089606956, - "perrserker": 2.6508079589957907, - "alcremie": 1.356792958072231, - "falinks": 4.339396665158077, - "pincurchin": 2.9934926528835324, - "frosmoth": 2.6890461253431033, - "indeedee-male": 3.1299531087525336, - "morpeko": 3.637778264037377, - "copperajah": 1.7314166941379143, - "duraludon": 1.8904272748063389, - "drakloak": 7.277816055919847, - "wigglytuff": 1.9778031622326664 + "ivysaur": 3.189247055488014, + "charmeleon": 3.8109304419365126, + "wartortle": 2.731227136473584, + "butterfree": 4.289575804926948, + "raichu": 4.89691841353192, + "raichu-alola": 3.2427345314801617, + "sandslash": 2.359373070025457, + "sandslash-alola": 1.773731948845341, + "nidoqueen": 3.0402668998778095, + "nidoking": 2.0091908135380105, + "clefairy": 8.904876521132179, + "clefable": 2.006178862441584, + "jigglypuff": 26.582632994273453, + "wigglytuff": 1.9778031622326664, + "gloom": 5.664347343806854, + "vileplume": 3.349367634082727, + "dugtrio": 3.4848548293018107, + "dugtrio-alola": 2.6565234043218453, + "persian": 4.1458346332520435, + "persian-alola": 6.027499416773676, + "golduck": 3.024218530277045, + "poliwrath": 2.507110736368485, + "kadabra": 3.533612725574018, + "machoke": 5.34446556561984, + "tentacruel": 2.233218145133897, + "slowbro": 1.8327579690321287, + "magneton": 2.445912948461003, + "haunter": 5.346862421823343, + "kingler": 2.713515021995623, + "exeggutor": 1.9333534594583908, + "marowak": 3.065222966366521, + "marowak-alola": 1.8906180632427356, + "hitmonlee": 2.6802972736402415, + "hitmonchan": 2.596893796686105, + "lickitung": 1.907084305620557, + "weezing": 1.810536629310581, + "weezing-galar": 3.0428308625835303, + "rhydon": 2.364222085718275, + "chansey": 19.44858796553654, + "tangela": 5.471473728771079, + "kangaskhan": 1.954313449038045, + "seadra": 4.862935737966587, + "seaking": 2.2521243175623056, + "starmie": 1.437831653243466, + "mr-mime": 6.249329922758136, + "mr-mime-galar": 3.5045933595681023, + "scyther": 2.766823597609115, + "jynx": 3.892575114199821, + "electabuzz": 2.4251375529993724, + "magmar": 1.492207717893543, + "tauros": 2.0987468769889137, + "ditto": 3.5794265478965572, + "vaporeon": 2.9880749030792484, + "jolteon": 1.8809635600266676, + "flareon": 2.180100364650845, + "porygon": 2.806877688000359, + "dragonair": 2.7534856304500206, + "noctowl": 5.268922275146339, + "lanturn": 1.8653918340134852, + "togetic": 5.1449342700625635, + "xatu": 3.8126877146695963, + "bellossom": 2.3124374042396436, + "azumarill": 2.2273415254953832, + "sudowoodo": 2.690669134930615, + "politoed": 2.4418037333820495, + "quagsire": 4.808841044368942, + "slowking": 2.3380807565544344, + "dunsparce": 3.4987724515475414, + "qwilfish": 3.633368549645215, + "sneasel": 2.8147343020620776, + "piloswine": 1.6165604981959145, + "octillery": 2.2293216118344823, + "mantine": 2.213000633071019, + "skarmory": 1.7161376912049415, + "hitmontop": 3.372362542171172, + "miltank": 3.705269508418067, + "grovyle": 7.5360840651952, + "sceptile": 1.4498902223618404, + "combusken": 3.6871905968199137, + "blaziken": 1.7793492195453675, + "marshtomp": 2.458601204621613, + "swampert": 1.2577134029185109, + "linoone": 5.537323430672121, + "linoone-galar": 6.56505209951904, + "pelipper": 6.274915069843647, + "ninjask": 7.909250071466202, + "exploud": 1.5810393596942112, + "lairon": 1.9864648498256914, + "manectric": 1.7696077914550736, + "roselia": 4.0026294682749395, + "sharpedo": 7.131743746717055, + "wailmer": 6.318139861391963, + "torkoal": 1.8997207269357632, + "flygon": 3.270589957860989, + "altaria": 2.1246723119105706, + "whiscash": 2.0249305336173906, + "crawdaunt": 2.908104138713144, + "claydol": 3.2457271680317277, + "cradily": 2.1340284890468553, + "armaldo": 1.951163112835919, + "dusclops": 3.9742549479350178, + "absol": 2.6355436361336873, + "glalie": 4.086355967275484, + "sealeo": 3.160957514711901, + "relicanth": 2.0815101106600826, + "metang": 2.2487280248240795, + "luxray": 3.7720066327305664, + "vespiquen": 2.7788316318925803, + "cherrim": 5.701359583284324, + "gastrodon": 2.1066866766325383, + "drifblim": 4.141619614651672, + "lopunny": 3.5225609572836207, + "skuntank": 1.5075020360886024, + "bronzong": 2.396291484808943, + "munchlax": 1.928628745257896, + "drapion": 2.553450676049499, + "abomasnow": 3.0692280415589845, + "froslass": 3.0741486905617643, + "rotom": 4.098349990857384, + "stoutland": 2.351385543502847, + "liepard": 9.55675434108861, + "musharna": 1.5027332917297453, + "unfezant": 6.533610684808929, + "boldore": 3.595545330459953, + "swoobat": 5.453306969258687, + "audino": 2.2305392293048936, + "gurdurr": 3.1911979921194877, + "palpitoad": 3.7983321347457295, + "seismitoad": 5.6721079493075885, + "scolipede": 3.784580684853965, + "whimsicott": 3.1631438317428318, + "lilligant": 3.122201427258358, + "basculin-red-striped": 2.8287461847827817, + "basculin-blue-striped": 3.7899221327768124, + "krookodile": 3.9368166189094627, + "maractus": 2.2294673839093804, + "crustle": 2.2358787601061634, + "sigilyph": 2.2143453025074606, + "cofagrigus": 3.0397703894834116, + "garbodor": 1.8513486033889366, + "cinccino": 4.50000842274022, + "vanillish": 2.106802294591498, + "emolga": 3.0349020933131152, + "escavalier": 1.5322510234620563, + "amoonguss": 2.4702894698763975, + "jellicent": 1.46359603940469, + "galvantula": 1.616394997270211, + "klang": 2.165134692355893, + "klinklang": 2.4898341684762855, + "beheeyem": 1.783268340208455, + "lampent": 2.256849111432549, + "fraxure": 2.5954446233712263, + "beartic": 1.7228559115825046, + "cryogonal": 1.5501621165496862, + "accelgor": 3.1199360378683485, + "stunfisk": 1.2580412086362167, + "stunfisk-galar": 1.9966020240837934, + "mienshao": 4.39575945668253, + "druddigon": 2.327050108730193, + "golurk": 1.9771060067099642, + "bisharp": 2.460464683980782, + "bouffalant": 1.2476596562631261, + "heatmor": 1.781726536663297, + "durant": 2.575601925694146, + "diggersby": 3.170049993233548, + "talonflame": 2.65038943448607, + "pangoro": 3.4469027967913646, + "doublade": 1.937766699286656, + "malamar": 3.891317434463593, + "barbaracle": 1.4505088924904839, + "heliolisk": 3.321812055919116, + "tyrantrum": 2.4235498059398877, + "aurorus": 2.338187410680729, + "hawlucha": 4.584527764791977, + "dedenne": 2.8516538475246387, + "klefki": 2.2941816444773755, + "trevenant": 2.930035454096541, + "gourgeist-average": 6.107331104711886, + "charjabug": 4.10441035411996, + "vikavolt": 1.9055287777261682, + "ribombee": 4.812078946075119, + "lycanroc-midday": 3.294052745010979, + "lycanroc-midnight": 2.376035771711407, + "mudsdale": 1.613976146693269, + "araquanid": 2.1775400020795557, + "lurantis": 2.4323638596369843, + "shiinotic": 4.263534485125705, + "salazzle": 3.3580244751559443, + "bewear": 2.4204337325500114, + "tsareena": 3.0358869353806313, + "comfey": 4.346441083168034, + "oranguru": 2.5508905474081036, + "passimian": 3.254523223603254, + "palossand": 2.279962940036586, + "pyukumuku": 42.213820947170035, + "togedemaru": 1.6718254958227736, + "mimikyu-disguised": 4.310001248388578, + "greedent": 2.0443387244380515, + "orbeetle": 1.8746203625681206, + "thievul": 2.3204579710959985, + "eldegoss": 3.7356794080118725, + "dubwool": 2.920833539603692, + "drednaw": 1.270340944482331, + "boltund": 4.888448180850344, + "carkol": 2.1804164692647188, + "coalossal": 1.8103437301760348, + "sandaconda": 3.6226326805916114, + "cramorant": 5.249162320425537, + "barraskewda": 5.1090880571815855, + "toxtricity-amped": 2.9192781940147596, + "centiskorch": 1.800575686576221, + "grapploct": 2.254921997221097, + "polteageist": 2.5023466442504843, + "hatterene": 2.457073900582684, + "grimmsnarl": 5.269833075911752, + "obstagoon": 3.472546080208237, + "perrserker": 2.646531884560625, + "alcremie": 1.3568937253589097, + "falinks": 4.34725059120064, + "pincurchin": 2.9950680187717262, + "frosmoth": 2.6879401254638005, + "indeedee-male": 3.130249540572008, + "morpeko": 3.6408426063988313, + "copperajah": 1.7252372795454227, + "duraludon": 1.8907925841104432, + "drakloak": 7.310242806178241 }, "gloom": { - "ivysaur": 3.0384024709224726, - "charmeleon": 3.0205985979515044, - "wartortle": 2.505047623857646, - "butterfree": 4.037872932459551, - "raichu": 4.790828536791745, - "raichu-alola": 2.8111024178700177, - "sandslash": 2.013860260754495, - "sandslash-alola": 1.572296296866753, - "nidoqueen": 2.143606961274395, - "nidoking": 1.3272830030887761, - "clefairy": 9.443329002244763, - "clefable": 2.473686439982439, - "jigglypuff": 31.344693802328667, - "wigglytuff": 2.2789313491897962, - "vileplume": 2.8357631956957174, - "dugtrio": 3.122574351601757, - "dugtrio-alola": 2.5653796758503282, - "persian": 3.77909057678892, - "persian-alola": 4.529877995619527, - "golduck": 2.8769687017561933, - "poliwrath": 2.2530875255867935, - "kadabra": 3.1961468276952245, - "machoke": 4.523672147319935, - "tentacruel": 1.8673496640918035, - "slowbro": 1.3525299585344195, - "magneton": 2.551648393166288, - "haunter": 3.3803539239544786, - "kingler": 2.5573972863041448, - "exeggutor": 2.103170101312953, - "marowak": 2.7641166390169607, - "marowak-alola": 1.4379225152890316, - "hitmonlee": 2.3696081575499965, - "hitmonchan": 2.089671232365423, - "lickitung": 1.6447178976670431, - "weezing": 1.1359724294571985, - "weezing-galar": 2.400128978369359, - "rhydon": 2.1867492301081324, - "chansey": 17.88156794592335, - "tangela": 7.012857334314513, - "kangaskhan": 1.6006709185586445, - "seadra": 4.161085248767275, - "seaking": 2.094374754499694, - "starmie": 1.2216830119423974, - "mr-mime": 5.649553058636407, - "mr-mime-galar": 2.5648564828727896, - "scyther": 2.2074469153798004, - "jynx": 3.322704577099124, - "electabuzz": 2.3949746788369257, - "magmar": 1.2256984792707601, - "tauros": 1.867417165496582, - "ditto": 5.7705608246439475, - "vaporeon": 2.838044469596496, - "jolteon": 1.671847803632022, - "flareon": 1.6595565022565297, - "porygon": 2.3942192414030994, - "dragonair": 1.8996290368396984, - "noctowl": 4.293737508318042, - "lanturn": 1.8208700377168203, - "togetic": 5.415647849242815, - "xatu": 2.8435966861808457, - "bellossom": 2.916756337660113, - "azumarill": 2.702275840729293, - "sudowoodo": 2.4335999410515026, - "politoed": 2.2776729055500695, - "quagsire": 4.630087944296231, - "slowking": 1.9362891774475048, - "dunsparce": 2.6363024068621375, - "qwilfish": 2.770454982571641, - "sneasel": 2.221437385762025, - "piloswine": 1.295718626809967, - "octillery": 2.1516649920704602, - "mantine": 1.9389652572428595, - "skarmory": 1.4838181445887093, - "hitmontop": 2.788548277002694, - "miltank": 3.3788774518026248, - "grovyle": 9.347351448434544, - "sceptile": 1.6053941564779803, - "combusken": 2.927539512903439, - "blaziken": 1.329173345930026, - "marshtomp": 2.202005818728217, - "swampert": 1.0426268406714696, - "linoone": 4.496590292750374, - "linoone-galar": 4.995897815053873, - "pelipper": 5.055428167043043, - "ninjask": 6.492770352631151, - "exploud": 1.3031549365881203, - "lairon": 1.9378811572592416, - "manectric": 1.4864633410456056, - "roselia": 3.400347735463716, - "sharpedo": 5.604779962915683, - "wailmer": 5.7318503124129245, - "torkoal": 1.4602105380147417, - "flygon": 2.5842381962801757, - "altaria": 1.6233502822876553, - "whiscash": 1.8182338277383367, - "crawdaunt": 2.489321456065018, - "claydol": 2.6330609522049757, - "cradily": 2.124599300213737, - "armaldo": 1.6578197537246724, - "dusclops": 2.9129903140745856, - "absol": 1.968286032574329, - "glalie": 3.348367452738409, - "sealeo": 2.7522088939896046, - "relicanth": 1.83566983072791, - "metang": 2.0981017892019587, - "luxray": 3.5187507457324747, - "vespiquen": 2.2732809892925783, - "cherrim": 6.884952437702675, - "gastrodon": 1.906902353811234, - "drifblim": 3.4575110733233547, - "lopunny": 3.089324811974515, - "skuntank": 1.198988568130421, - "bronzong": 2.0294517030971853, - "munchlax": 1.7841714795931454, - "drapion": 2.172134316481105, - "abomasnow": 3.2696185182749953, - "froslass": 2.262299474189712, - "rotom": 3.3714157992992733, - "stoutland": 2.0823455470601058, - "liepard": 7.966370307686038, - "musharna": 1.2093858350166806, - "unfezant": 4.832354308587258, - "boldore": 3.2156367567201114, - "swoobat": 4.062036093741366, - "audino": 1.9060219091633634, - "gurdurr": 2.8287088339808557, - "palpitoad": 3.356023149922538, - "seismitoad": 5.5576895474806225, - "scolipede": 2.451116527411227, - "whimsicott": 5.135433613288172, - "lilligant": 3.6660904770425007, - "basculin-red-striped": 2.429989576493339, - "basculin-blue-striped": 3.490111556739419, - "krookodile": 3.1322895505490176, - "maractus": 2.749142208948486, - "crustle": 1.9361757967155828, - "sigilyph": 1.7929184190293381, - "cofagrigus": 2.1616297523014563, - "garbodor": 1.4501258410530031, - "cinccino": 3.7012492050750896, - "vanillish": 1.638279299963758, - "emolga": 2.760065428180405, - "escavalier": 1.4127512851871602, - "amoonguss": 2.3433619124933873, - "jellicent": 1.2670313844725296, - "galvantula": 1.5176945846668999, - "klang": 2.1828188221082074, - "klinklang": 2.5198015288613833, - "beheeyem": 1.457795341167635, - "lampent": 1.5503147545721179, - "fraxure": 1.7815006689049302, - "beartic": 1.370815729042898, - "cryogonal": 1.2180542783411097, - "accelgor": 2.5913956701522434, - "stunfisk": 1.207337022320099, - "stunfisk-galar": 1.7752894874011713, - "mienshao": 3.806018945381304, - "druddigon": 1.9043428728640481, - "golurk": 1.6819418077659312, - "bisharp": 2.0548556431831075, - "bouffalant": 1.1488348930924284, - "heatmor": 1.5022447231733702, - "durant": 2.419089438325381, - "diggersby": 2.8226337648688378, - "talonflame": 2.270318245935613, - "pangoro": 2.8160458231812147, - "doublade": 1.826100988482911, - "malamar": 3.0034410709361197, - "barbaracle": 1.2898270801365226, - "heliolisk": 3.116315692533357, - "tyrantrum": 1.945524812892989, - "aurorus": 2.049728645234207, - "hawlucha": 4.049871756632719, - "dedenne": 3.602159876453092, - "klefki": 2.371327585539995, - "trevenant": 2.9625202015804697, - "gourgeist-average": 4.432644070173472, - "charjabug": 3.7873400897809653, - "vikavolt": 1.6760822170513916, - "ribombee": 5.217440469662141, - "lycanroc-midday": 2.9473580812193365, - "lycanroc-midnight": 2.1221727431909794, - "mudsdale": 1.4630824427969327, - "araquanid": 2.033511779626894, - "lurantis": 2.7774093280636243, - "shiinotic": 6.855060072225667, - "salazzle": 2.29920522665485, - "bewear": 1.975925108917735, - "tsareena": 3.428797401177288, - "comfey": 5.442072013162384, - "oranguru": 1.9009553254160387, - "passimian": 2.670114535009763, - "palossand": 1.8358723300947704, - "pyukumuku": 38.62117903002031, - "togedemaru": 1.7654150558787893, - "mimikyu-disguised": 3.343019924803077, - "greedent": 1.7715668357313779, - "orbeetle": 1.4424073217498643, - "thievul": 1.7244355089583765, - "eldegoss": 4.546275511923366, - "dubwool": 2.7882657069578527, - "drednaw": 1.168565193851522, - "boltund": 4.332328090479574, - "carkol": 1.7627926721986977, - "coalossal": 1.5091870516446093, - "sandaconda": 2.875840723266583, - "cramorant": 4.749918643427758, - "barraskewda": 4.2367790629707285, - "toxtricity-amped": 2.105566313136726, - "centiskorch": 1.6370485223048998, - "grapploct": 2.0735666832389437, - "polteageist": 2.1341756955311273, - "hatterene": 2.542011018309092, - "grimmsnarl": 4.285798222609541, - "obstagoon": 2.8582885859097784, - "perrserker": 2.5321245040744342, - "alcremie": 1.5911144868287463, - "falinks": 3.7992203234231168, - "pincurchin": 2.8684233968623816, - "frosmoth": 2.155642261159276, - "indeedee-male": 2.3621361405817716, - "morpeko": 3.069662672254475, - "copperajah": 1.8327339405118646, - "duraludon": 1.523693502567789, - "drakloak": 4.994374155671978, - "gloom": 5.205389577581499 + "ivysaur": 3.0383119356191672, + "charmeleon": 3.0084399166147255, + "wartortle": 2.5041128300199715, + "butterfree": 4.032323592165072, + "raichu": 4.793168819382163, + "raichu-alola": 2.8025849294577068, + "sandslash": 2.0108431898044783, + "sandslash-alola": 1.5659573239891766, + "nidoqueen": 2.1371863489379797, + "nidoking": 1.321828072646292, + "clefairy": 9.436350195502985, + "clefable": 2.4763796167233956, + "jigglypuff": 31.385042285636082, + "wigglytuff": 2.2772809995691685, + "gloom": 5.205389577581499, + "vileplume": 2.835289728774977, + "dugtrio": 3.116301622469286, + "dugtrio-alola": 2.556486442060777, + "persian": 3.772927600775038, + "persian-alola": 4.527282573346391, + "golduck": 2.8765044866365663, + "poliwrath": 2.2558387240332256, + "kadabra": 3.1834195794594136, + "machoke": 4.52710590469782, + "tentacruel": 1.8641044885247902, + "slowbro": 1.3466610563901202, + "magneton": 2.5455016308841625, + "haunter": 3.3723178967634557, + "kingler": 2.5600887530926864, + "exeggutor": 2.101439629223754, + "marowak": 2.7593269583598516, + "marowak-alola": 1.4324310576523362, + "hitmonlee": 2.368235107382872, + "hitmonchan": 2.086221225963161, + "lickitung": 1.6422979059694045, + "weezing": 1.1324219182692234, + "weezing-galar": 2.3966828263716833, + "rhydon": 2.1824250485804395, + "chansey": 17.797524410398218, + "tangela": 7.0322596953084355, + "kangaskhan": 1.5977207129836928, + "seadra": 4.161295561981063, + "seaking": 2.09117044078836, + "starmie": 1.2185171932944656, + "mr-mime": 5.625747557788488, + "mr-mime-galar": 2.551931727153981, + "scyther": 2.2006548124123233, + "jynx": 3.309044389316, + "electabuzz": 2.3939964083903713, + "magmar": 1.2206034100337202, + "tauros": 1.866130014908579, + "ditto": 5.730169682758837, + "vaporeon": 2.83662516960416, + "jolteon": 1.6703842553000565, + "flareon": 1.6536456188932585, + "porygon": 2.3893598977000154, + "dragonair": 1.898003363003824, + "noctowl": 4.275904453632673, + "lanturn": 1.8225981284568809, + "togetic": 5.410049498518763, + "xatu": 2.8305912328209164, + "bellossom": 2.9234127098186615, + "azumarill": 2.7070448618215384, + "sudowoodo": 2.4313196894255444, + "politoed": 2.2759105278291907, + "quagsire": 4.632335260849828, + "slowking": 1.9296811003082204, + "dunsparce": 2.628303768581734, + "qwilfish": 2.7656201350867926, + "sneasel": 2.2157545207929146, + "piloswine": 1.2923915752817858, + "octillery": 2.1503105022289875, + "mantine": 1.9345611553330764, + "skarmory": 1.4780391472136958, + "hitmontop": 2.7865448909801405, + "miltank": 3.3765624125150806, + "grovyle": 9.366100626598286, + "sceptile": 1.6077332683626029, + "combusken": 2.923898762626745, + "blaziken": 1.325888754534251, + "marshtomp": 2.1985807503757213, + "swampert": 1.0409632413695125, + "linoone": 4.487905920900967, + "linoone-galar": 4.9922091813108525, + "pelipper": 5.040892210935327, + "ninjask": 6.480107673947022, + "exploud": 1.3004098863052502, + "lairon": 1.93193622561353, + "manectric": 1.4828539280697517, + "roselia": 3.3936258471006853, + "sharpedo": 5.604392343358686, + "wailmer": 5.723779055622186, + "torkoal": 1.4556028995554144, + "flygon": 2.58161128097729, + "altaria": 1.6218238731109569, + "whiscash": 1.812730598203149, + "crawdaunt": 2.4904379830596044, + "claydol": 2.6225896927653194, + "cradily": 2.1239347352254594, + "armaldo": 1.6548868039310027, + "dusclops": 2.907769736523193, + "absol": 1.9650135632826968, + "glalie": 3.337162428837682, + "sealeo": 2.7468952867876064, + "relicanth": 1.8338727117865798, + "metang": 2.0888407118985537, + "luxray": 3.5167452764937153, + "vespiquen": 2.267380721505473, + "cherrim": 6.894342218703035, + "gastrodon": 1.9040640855390123, + "drifblim": 3.4470299738086787, + "lopunny": 3.0824938620324844, + "skuntank": 1.1964659723287485, + "bronzong": 2.0175840166635224, + "munchlax": 1.7789018545115853, + "drapion": 2.168985850017706, + "abomasnow": 3.2647995489434996, + "froslass": 2.253478929855805, + "rotom": 3.370248341461565, + "stoutland": 2.0776974766000667, + "liepard": 7.969793227528606, + "musharna": 1.2050620570299684, + "unfezant": 4.813580741113221, + "boldore": 3.2133422481289196, + "swoobat": 4.043360011448814, + "audino": 1.901769018115833, + "gurdurr": 2.8337155448804685, + "palpitoad": 3.3505360714635253, + "seismitoad": 5.544539364555231, + "scolipede": 2.4441390779322614, + "whimsicott": 5.146192004527053, + "lilligant": 3.6718686752582492, + "basculin-red-striped": 2.425533267770026, + "basculin-blue-striped": 3.490847505274566, + "krookodile": 3.1302521793719578, + "maractus": 2.755828679076786, + "crustle": 1.9341735108912563, + "sigilyph": 1.7858277983272242, + "cofagrigus": 2.1554278261154303, + "garbodor": 1.4465308884661527, + "cinccino": 3.6893096925743745, + "vanillish": 1.6315203296638636, + "emolga": 2.7569777149020753, + "escavalier": 1.4088550548796617, + "amoonguss": 2.3412079862145334, + "jellicent": 1.2652770261049455, + "galvantula": 1.5178012831216134, + "klang": 2.1775002783676354, + "klinklang": 2.510671057243065, + "beheeyem": 1.453319839724552, + "lampent": 1.5435896289553683, + "fraxure": 1.780747296062854, + "beartic": 1.367381642528795, + "cryogonal": 1.2129183760334366, + "accelgor": 2.5861586267352448, + "stunfisk": 1.2064182121387996, + "stunfisk-galar": 1.7699784452191563, + "mienshao": 3.8072567264127266, + "druddigon": 1.9023275615944313, + "golurk": 1.6798656002491759, + "bisharp": 2.0476163101403557, + "bouffalant": 1.147734134007557, + "heatmor": 1.4971317619101607, + "durant": 2.4124246173306494, + "diggersby": 2.816958038137804, + "talonflame": 2.261117119757631, + "pangoro": 2.8210218167989187, + "doublade": 1.8206214752876604, + "malamar": 2.999585208388385, + "barbaracle": 1.2870728497641206, + "heliolisk": 3.1125355573554656, + "tyrantrum": 1.9457019024541085, + "aurorus": 2.042697071150863, + "hawlucha": 4.051746167705195, + "dedenne": 3.6089057715102255, + "klefki": 2.366198190473649, + "trevenant": 2.9668736651316823, + "gourgeist-average": 4.424059325675488, + "charjabug": 3.788263516452968, + "vikavolt": 1.6750817881727018, + "ribombee": 5.2194075675462575, + "lycanroc-midday": 2.9416643470257617, + "lycanroc-midnight": 2.1189214736118047, + "mudsdale": 1.4619090634522784, + "araquanid": 2.0315912587354257, + "lurantis": 2.7791717247670715, + "shiinotic": 6.869622810807156, + "salazzle": 2.287041896983774, + "bewear": 1.9742356403936365, + "tsareena": 3.4289372150637534, + "comfey": 5.4556531737176925, + "oranguru": 1.8909004288771751, + "passimian": 2.670399267294635, + "palossand": 1.8328131535423036, + "pyukumuku": 38.58727549199424, + "togedemaru": 1.759896549190648, + "mimikyu-disguised": 3.337935760381682, + "greedent": 1.7665047188191223, + "orbeetle": 1.4359120917154846, + "thievul": 1.722040143070682, + "eldegoss": 4.553059406330208, + "dubwool": 2.7871683785008994, + "drednaw": 1.1669044369901431, + "boltund": 4.330769672985712, + "carkol": 1.7547010531252454, + "coalossal": 1.5039107386882602, + "sandaconda": 2.871255321688384, + "cramorant": 4.744690066120723, + "barraskewda": 4.2336737650789775, + "toxtricity-amped": 2.101435607625904, + "centiskorch": 1.6313457887958278, + "grapploct": 2.0777131370942525, + "polteageist": 2.1286474118245446, + "hatterene": 2.537995078635756, + "grimmsnarl": 4.291281845026642, + "obstagoon": 2.857230821644734, + "perrserker": 2.524962984221345, + "alcremie": 1.5912567937822704, + "falinks": 3.802275707737621, + "pincurchin": 2.8711714583696817, + "frosmoth": 2.1474733853561636, + "indeedee-male": 2.351796323822785, + "morpeko": 3.070000593248194, + "copperajah": 1.8274884863999235, + "duraludon": 1.5220839211000547, + "drakloak": 4.9910239711731545 }, "vileplume": { - "ivysaur": 3.2667426157525625, - "charmeleon": 3.1184241090251623, - "wartortle": 4.17918808540413, - "butterfree": 3.8792238813216278, - "raichu": 5.717334504872358, - "raichu-alola": 3.804000032965562, - "sandslash": 3.6126555868672607, - "sandslash-alola": 1.8510729658828313, - "nidoqueen": 3.0137267005676986, - "nidoking": 1.8997824319731966, - "clefairy": 9.357429987064112, - "clefable": 2.4258826024222646, - "jigglypuff": 30.338486347992813, - "wigglytuff": 2.2571305108343065, - "gloom": 5.687846494853916, - "dugtrio": 4.97940188787353, - "dugtrio-alola": 3.6373360595412905, - "persian": 4.635837373287002, - "persian-alola": 5.214741302554427, - "golduck": 4.779967487256391, - "poliwrath": 3.0304354056945675, - "kadabra": 4.216298049925799, - "machoke": 4.440426108429957, - "tentacruel": 2.470961248047261, - "slowbro": 2.3962175289361456, - "magneton": 2.9771316015140754, - "haunter": 3.9403400099845447, - "kingler": 4.617549764545842, - "exeggutor": 3.3647650539802902, - "marowak": 4.766957998982031, - "marowak-alola": 1.7313350862471455, - "hitmonlee": 2.366975234715861, - "hitmonchan": 2.109473477629834, - "lickitung": 2.036303437490193, - "weezing": 1.3647128842903655, - "weezing-galar": 2.4062274688380345, - "rhydon": 5.686727380778075, - "chansey": 19.712401604591918, - "tangela": 7.931696317882935, - "kangaskhan": 1.9805406525730989, - "seadra": 7.526232924811639, - "seaking": 3.457053313419787, - "starmie": 2.026715392840458, - "mr-mime": 5.795814880627185, - "mr-mime-galar": 3.5560728497300387, - "scyther": 2.1421229113469225, - "jynx": 4.25706254924178, - "electabuzz": 2.8603814634164646, - "magmar": 1.2828883215908882, - "tauros": 2.327033625897829, - "ditto": 3.818062929009362, - "vaporeon": 4.541677667595476, - "jolteon": 2.0168907416507684, - "flareon": 1.7600707646892588, - "porygon": 2.937130653411929, - "dragonair": 1.7160782758683395, - "noctowl": 4.464339287339062, - "lanturn": 3.0392857522429435, - "togetic": 4.443604163735926, - "xatu": 3.228799784912976, - "bellossom": 3.2196537690237954, - "azumarill": 1.8419989877055054, - "sudowoodo": 4.170744784270584, - "politoed": 3.6685958012233444, - "quagsire": 12.196488059326432, - "slowking": 3.11414940922395, - "dunsparce": 3.314648964541128, - "qwilfish": 4.102317142028854, - "sneasel": 2.491186043385576, - "piloswine": 2.2289887527746424, - "octillery": 3.6030597004654106, - "mantine": 2.331866516332919, - "skarmory": 1.5307564268427063, - "hitmontop": 2.784542212901178, - "miltank": 4.230037336238622, - "grovyle": 10.20057123735343, - "sceptile": 1.7696625581598617, - "combusken": 2.951642531863235, - "blaziken": 1.359960737387459, - "marshtomp": 5.685246160790749, - "swampert": 2.701587341423603, - "linoone": 5.569070697689384, - "linoone-galar": 5.688948079256379, - "pelipper": 6.460109763881839, - "ninjask": 6.233779234539087, - "exploud": 1.6152560989372258, - "lairon": 2.963080083001789, - "manectric": 1.8697002441488086, - "roselia": 3.6999266552121357, - "sharpedo": 7.522573713128302, - "wailmer": 9.725248952371334, - "torkoal": 1.523378515792666, - "flygon": 2.569638163383541, - "altaria": 1.2780194197433765, - "whiscash": 4.769831514815838, - "crawdaunt": 3.401468864030622, - "claydol": 4.323634052925347, - "cradily": 2.8723768875910514, - "armaldo": 2.060595632671849, - "dusclops": 3.67710336745282, - "absol": 2.282353791134596, - "glalie": 4.13376698001553, - "sealeo": 4.507923375590653, - "relicanth": 4.86335504829287, - "metang": 2.772803746070414, - "luxray": 4.322870886576686, - "vespiquen": 2.1942662991537056, - "cherrim": 7.611415488298458, - "gastrodon": 4.736851727955371, - "drifblim": 3.53644909629561, - "lopunny": 3.7988909018245884, - "skuntank": 1.3527995588898474, - "bronzong": 2.7258718252089724, - "munchlax": 2.1398006779311656, - "drapion": 2.4467079451381224, - "abomasnow": 3.67777709616436, - "froslass": 2.874027419308293, - "rotom": 4.290354199018051, - "stoutland": 2.583833897672263, - "liepard": 9.024179080690708, - "musharna": 1.7168620820433709, - "unfezant": 5.011675296680025, - "boldore": 5.728947546720224, - "swoobat": 4.613096800624604, - "audino": 2.385147596206423, - "gurdurr": 2.7441885635906056, - "palpitoad": 8.674408928492026, - "seismitoad": 14.401609900780482, - "scolipede": 2.6670726435175274, - "whimsicott": 3.1981295276246553, - "lilligant": 4.06368924124744, - "basculin-red-striped": 4.228810685226982, - "basculin-blue-striped": 5.920848423980935, - "krookodile": 4.192471794059125, - "maractus": 3.040576002377735, - "crustle": 2.4257000906815573, - "sigilyph": 2.0234563971992827, - "cofagrigus": 2.815390622315833, - "garbodor": 1.6524220012236528, - "cinccino": 4.649319962282361, - "vanillish": 2.0344805253488447, - "emolga": 2.7672647510973225, - "escavalier": 1.5271282057393618, - "amoonguss": 2.548544802514529, - "jellicent": 2.1945905307682936, - "galvantula": 1.6496134822428605, - "klang": 2.539192498262405, - "klinklang": 3.000425467442324, - "beheeyem": 2.0307266620797835, - "lampent": 1.9010535410146294, - "fraxure": 1.5615982927121836, - "beartic": 1.6991489107400792, - "cryogonal": 1.4527660236244344, - "accelgor": 2.8601963330541627, - "stunfisk": 1.9122897091763513, - "stunfisk-galar": 2.571902947339138, - "mienshao": 3.754559457936589, - "druddigon": 1.7013375081854627, - "golurk": 2.8593275325123786, - "bisharp": 2.3275015733263666, - "bouffalant": 1.2745349749310457, - "heatmor": 1.5423478651200404, - "durant": 2.6496509242678172, - "diggersby": 4.622685283589615, - "talonflame": 2.079059578993099, - "pangoro": 1.9784336230947885, - "doublade": 2.263799427693561, - "malamar": 4.972753125231131, - "barbaracle": 3.239553675569498, - "heliolisk": 3.7185407070322474, - "tyrantrum": 1.9096762971478385, - "aurorus": 3.0281132485059237, - "hawlucha": 3.243332573166716, - "dedenne": 3.500188536319282, - "klefki": 2.7868531736123536, - "trevenant": 3.1829166420299027, - "gourgeist-average": 5.010199885307939, - "charjabug": 4.1157111814839435, - "vikavolt": 1.85631915814194, - "ribombee": 4.2154501917850755, - "lycanroc-midday": 4.75018679885893, - "lycanroc-midnight": 3.4060991524743987, - "mudsdale": 2.446150870624794, - "araquanid": 2.474997336529367, - "lurantis": 3.1085342361312, - "shiinotic": 4.430226013448854, - "salazzle": 2.369767556079944, - "bewear": 1.975078950918784, - "tsareena": 3.862426789319745, - "comfey": 5.201097246200576, - "oranguru": 2.6857537943810526, - "passimian": 2.638560621929467, - "palossand": 3.2863075277092118, - "pyukumuku": 62.92000883152323, - "togedemaru": 2.0204445137036564, - "mimikyu-disguised": 4.195352237095621, - "greedent": 2.2502554006951447, - "orbeetle": 2.0282424454138597, - "thievul": 1.9705580497129302, - "eldegoss": 4.974074362850841, - "dubwool": 3.385382054093639, - "drednaw": 2.9266815295156863, - "boltund": 5.3188787857467155, - "carkol": 2.4722844488163527, - "coalossal": 2.0906342171918926, - "sandaconda": 5.0992722449601615, - "cramorant": 5.6607613916725255, - "barraskewda": 7.288103870629472, - "toxtricity-amped": 2.451869249847684, - "centiskorch": 1.5899171255109743, - "grapploct": 2.0039232842645904, - "polteageist": 2.6257568636095696, - "hatterene": 2.5387167671031206, - "grimmsnarl": 4.189273941897629, - "obstagoon": 3.2574119729629682, - "perrserker": 3.016893652836375, - "alcremie": 1.5655263543224214, - "falinks": 3.7246961711025177, - "pincurchin": 3.460678534465503, - "frosmoth": 2.3880048856431912, - "indeedee-male": 3.2292268213504345, - "morpeko": 3.492761086349978, - "copperajah": 2.1332210818867736, - "duraludon": 1.372384694416067, - "drakloak": 3.9273855071255763, - "vileplume": 3.0665376623826 + "ivysaur": 3.268772404231984, + "charmeleon": 3.1087962001556138, + "wartortle": 4.1884345427044085, + "butterfree": 3.8726849099153853, + "raichu": 5.727430990645246, + "raichu-alola": 3.8025158830206243, + "sandslash": 3.6195463167598865, + "sandslash-alola": 1.8479877996128895, + "nidoqueen": 3.013174729014659, + "nidoking": 1.897787253070536, + "clefairy": 9.351365351717108, + "clefable": 2.4279680702096895, + "jigglypuff": 30.367039224141138, + "wigglytuff": 2.255758689234641, + "gloom": 5.686394562549324, + "vileplume": 3.0665376623826, + "dugtrio": 4.985242624918117, + "dugtrio-alola": 3.636480144600352, + "persian": 4.636190050694698, + "persian-alola": 5.219785831042902, + "golduck": 4.791493675760281, + "poliwrath": 3.037426828142567, + "kadabra": 4.210979339269512, + "machoke": 4.443530967289309, + "tentacruel": 2.471990383940052, + "slowbro": 2.3952434967482157, + "magneton": 2.9764846041857203, + "haunter": 3.936741442650949, + "kingler": 4.633630427386175, + "exeggutor": 3.369883807891212, + "marowak": 4.774742945069741, + "marowak-alola": 1.7272733984691588, + "hitmonlee": 2.3659980602000785, + "hitmonchan": 2.1067313135433916, + "lickitung": 2.0366184706744455, + "weezing": 1.3626945282333032, + "weezing-galar": 2.4033241399370815, + "rhydon": 5.701757384315377, + "chansey": 19.64450347700903, + "tangela": 7.957827931478708, + "kangaskhan": 1.9804311018645726, + "seadra": 7.54589187072359, + "seaking": 3.461437139873327, + "starmie": 2.028937265112926, + "mr-mime": 5.777158851847331, + "mr-mime-galar": 3.5478466422319097, + "scyther": 2.1353690978347437, + "jynx": 4.250070961952911, + "electabuzz": 2.8632393198654373, + "magmar": 1.2786702064053013, + "tauros": 2.329312012260248, + "ditto": 3.7986806267678173, + "vaporeon": 4.550908602690148, + "jolteon": 2.0181525824036806, + "flareon": 1.7550193722162435, + "porygon": 2.9360939208759405, + "dragonair": 1.714388791001916, + "noctowl": 4.448381388772397, + "lanturn": 3.049352106603724, + "togetic": 4.433968783969551, + "xatu": 3.2182005545519603, + "bellossom": 3.228407532354937, + "azumarill": 1.8314995872434872, + "sudowoodo": 4.1803603359323604, + "politoed": 3.675325524101596, + "quagsire": 12.249814654935982, + "slowking": 3.1149111588943845, + "dunsparce": 3.3110091991734185, + "qwilfish": 4.105806651323867, + "sneasel": 2.4892595798282144, + "piloswine": 2.2308390761048122, + "octillery": 3.610324486868201, + "mantine": 2.3294146328655607, + "skarmory": 1.5269135875575532, + "hitmontop": 2.7830991735765807, + "miltank": 4.2341994120521615, + "grovyle": 10.225736447120063, + "sceptile": 1.7733160676800332, + "combusken": 2.9473103405091, + "blaziken": 1.356608253691907, + "marshtomp": 5.70081546817925, + "swampert": 2.708628417361636, + "linoone": 5.568285034393328, + "linoone-galar": 5.693451560514179, + "pelipper": 6.450522977628005, + "ninjask": 6.220031929281506, + "exploud": 1.614566457099579, + "lairon": 2.9642754892774588, + "manectric": 1.8687652622322248, + "roselia": 3.69612879885688, + "sharpedo": 7.540570167577229, + "wailmer": 9.738674910477084, + "torkoal": 1.5197197004665042, + "flygon": 2.569901438759188, + "altaria": 1.2749926737353037, + "whiscash": 4.776896646981021, + "crawdaunt": 3.4113882329113405, + "claydol": 4.324484019540283, + "cradily": 2.878131949882217, + "armaldo": 2.0616448646937315, + "dusclops": 3.6769793527066668, + "absol": 2.2826299925495137, + "glalie": 4.127902110921502, + "sealeo": 4.511808830179476, + "relicanth": 4.8790845217955665, + "metang": 2.769900614748863, + "luxray": 4.327198801520591, + "vespiquen": 2.1882360242141385, + "cherrim": 7.626446780213568, + "gastrodon": 4.750032113366273, + "drifblim": 3.5274414903401974, + "lopunny": 3.7973241226209558, + "skuntank": 1.352074210358364, + "bronzong": 2.719637824809147, + "munchlax": 2.1372771541103304, + "drapion": 2.4470373559336647, + "abomasnow": 3.6763599391450765, + "froslass": 2.8685861548269305, + "rotom": 4.295592082086513, + "stoutland": 2.582793022615724, + "liepard": 9.041284815257914, + "musharna": 1.7156778089815408, + "unfezant": 4.99456448889269, + "boldore": 5.743629483782705, + "swoobat": 4.597810879999583, + "audino": 2.38390566712765, + "gurdurr": 2.7484161341018787, + "palpitoad": 8.697363501666327, + "seismitoad": 14.430026972499991, + "scolipede": 2.662191801970571, + "whimsicott": 3.1997199194842976, + "lilligant": 4.072547447259117, + "basculin-red-striped": 4.233309341460126, + "basculin-blue-striped": 5.937115766196892, + "krookodile": 4.201828815983048, + "maractus": 3.049432202977172, + "crustle": 2.428647386035159, + "sigilyph": 2.017932290979543, + "cofagrigus": 2.8127671648586423, + "garbodor": 1.6508917526172326, + "cinccino": 4.643472961441651, + "vanillish": 2.029868172621759, + "emolga": 2.7644316387044103, + "escavalier": 1.525325412823289, + "amoonguss": 2.548305357161039, + "jellicent": 2.197642881729255, + "galvantula": 1.6508044876029198, + "klang": 2.5385049919542517, + "klinklang": 2.9970309525977763, + "beheeyem": 2.0300982993895547, + "lampent": 1.8953148550501777, + "fraxure": 1.5608097865574093, + "beartic": 1.69774107728413, + "cryogonal": 1.4489985764438962, + "accelgor": 2.8569991665044743, + "stunfisk": 1.9165753318326835, + "stunfisk-galar": 2.5724124578020984, + "mienshao": 3.7558173132754256, + "druddigon": 1.6995334752378983, + "golurk": 2.8646725120971883, + "bisharp": 2.3247690087467747, + "bouffalant": 1.2713596209402325, + "heatmor": 1.5384936918250345, + "durant": 2.6471253384003823, + "diggersby": 4.628570244341052, + "talonflame": 2.07037800759677, + "pangoro": 1.98053766016092, + "doublade": 2.2622969042258285, + "malamar": 4.980357820507324, + "barbaracle": 3.2467732875881214, + "heliolisk": 3.719643272081316, + "tyrantrum": 1.9119448940698018, + "aurorus": 3.0271754773124, + "hawlucha": 3.240349788896463, + "dedenne": 3.5055021810424027, + "klefki": 2.7859873519051366, + "trevenant": 3.1887875645958346, + "gourgeist-average": 5.005592567091875, + "charjabug": 4.11946155364951, + "vikavolt": 1.8567080259992776, + "ribombee": 4.212522462333093, + "lycanroc-midday": 4.756358451388924, + "lycanroc-midnight": 3.411695508768341, + "mudsdale": 2.4519470720029046, + "araquanid": 2.4766334114232142, + "lurantis": 3.1129920048119883, + "shiinotic": 4.432313424826804, + "salazzle": 2.3599584640769313, + "bewear": 1.9738445648964733, + "tsareena": 3.8661496879950192, + "comfey": 5.2116455664660055, + "oranguru": 2.6795713975472903, + "passimian": 2.6390266891451883, + "palossand": 3.2913992365554945, + "pyukumuku": 63.00138460514268, + "togedemaru": 2.018490717783457, + "mimikyu-disguised": 4.1928816733542345, + "greedent": 2.24828198778068, + "orbeetle": 2.0240338148981003, + "thievul": 1.97051879548144, + "eldegoss": 4.984237210662928, + "dubwool": 3.389201766815236, + "drednaw": 2.9349702308598355, + "boltund": 5.325188820812832, + "carkol": 2.467605899576498, + "coalossal": 2.0886320120612787, + "sandaconda": 5.108349958858053, + "cramorant": 5.660534907076216, + "barraskewda": 7.302590258795766, + "toxtricity-amped": 2.4502648884768563, + "centiskorch": 1.5849444186807258, + "grapploct": 2.0072929311323118, + "polteageist": 2.6236308438120677, + "hatterene": 2.536698798147685, + "grimmsnarl": 4.193020221676323, + "obstagoon": 3.2613968044041064, + "perrserker": 3.0157666499640436, + "alcremie": 1.5656307586572789, + "falinks": 3.7275071757078657, + "pincurchin": 3.4685235786140907, + "frosmoth": 2.3815866308351543, + "indeedee-male": 3.2241160856502358, + "morpeko": 3.4984982149489836, + "copperajah": 2.1318070893270518, + "duraludon": 1.371783712871665, + "drakloak": 3.92279477466165 }, "dugtrio": { - "ivysaur": 2.8495590164716194, - "charmeleon": 5.316300872671626, - "wartortle": 2.2374705578410374, - "butterfree": 6.850709912499086, - "raichu": 8.74067804076305, - "raichu-alola": 5.593498079462806, - "sandslash": 1.8153675694324007, - "sandslash-alola": 2.107939295554158, - "nidoqueen": 3.7606510877392756, - "nidoking": 2.257688587753654, - "clefairy": 8.640705393336889, - "clefable": 2.0588004710908674, - "jigglypuff": 27.20300047642711, - "wigglytuff": 1.9304083073052078, - "gloom": 5.875635475726197, - "vileplume": 2.546235964041985, - "dugtrio-alola": 4.4531072834924315, - "persian": 3.8974964150619775, - "persian-alola": 3.957173276575074, - "golduck": 2.415303849015414, - "poliwrath": 1.512471836675505, - "kadabra": 4.106510206667873, - "machoke": 3.631568024645705, - "tentacruel": 3.1639346181492156, - "slowbro": 1.6013662771318695, - "magneton": 6.692976282467452, - "haunter": 3.489577002690373, - "kingler": 1.7461205970411764, - "exeggutor": 1.4318205265683808, - "marowak": 2.637797511481354, - "marowak-alola": 2.4020857782930176, - "hitmonlee": 2.435667452061702, - "hitmonchan": 2.048953138254339, - "lickitung": 1.5754832431678545, - "weezing": 1.9175965456810267, - "weezing-galar": 3.164231153613682, - "rhydon": 2.280935408060169, - "chansey": 29.74301206635525, - "tangela": 2.820928732028299, - "kangaskhan": 1.6387060645441274, - "seadra": 3.2342343585543136, - "seaking": 2.1205420283068723, - "starmie": 1.3067572028175962, - "mr-mime": 7.209853226144434, - "mr-mime-galar": 3.2442096729737484, - "scyther": 3.5629231506126415, - "jynx": 4.560784077867167, - "electabuzz": 4.809847961734311, - "magmar": 2.4283674764240204, - "tauros": 1.7290069566372583, - "ditto": 3.381401526407208, - "vaporeon": 2.8921881166184424, - "jolteon": 3.1203234263473636, - "flareon": 3.4573422056936014, - "porygon": 2.6501091996346133, - "dragonair": 1.6326052270380345, - "noctowl": 6.458026613944415, - "lanturn": 2.6627679071813004, - "togetic": 5.6300030518584006, - "xatu": 3.9673296418393926, - "bellossom": 1.7631496713309944, - "azumarill": 1.8099494463266468, - "sudowoodo": 2.887491312979363, - "politoed": 2.2335181970931526, - "quagsire": 3.816330436460758, - "slowking": 2.003861902799315, - "dunsparce": 2.854555179306927, - "qwilfish": 3.5220247148783286, - "sneasel": 2.1856297817710866, - "piloswine": 1.2406210199569352, - "octillery": 2.080057461318188, - "mantine": 2.5411573364709517, - "skarmory": 1.4214059492267757, - "hitmontop": 2.3049191656751744, - "miltank": 2.992477602566683, - "grovyle": 5.874829771574419, - "sceptile": 1.075248318329496, - "combusken": 4.359160892048186, - "blaziken": 2.055937222270389, - "marshtomp": 1.9041395490443578, - "swampert": 1.0477986596400184, - "linoone": 4.603476756794155, - "linoone-galar": 4.294505126165597, - "pelipper": 5.645428549995129, - "ninjask": 10.180735388956842, - "exploud": 1.4198562064949098, - "lairon": 3.435190969696344, - "manectric": 2.517174544210902, - "roselia": 3.692048840309181, - "sharpedo": 4.135971259412841, - "wailmer": 5.540797036962074, - "torkoal": 2.0318601294439773, - "flygon": 1.6419753549502811, - "altaria": 1.68150642664131, - "whiscash": 1.5770886525151622, - "crawdaunt": 1.4956127537737864, - "claydol": 2.530243731141274, - "cradily": 2.145010563189812, - "armaldo": 1.8092324407736868, - "dusclops": 3.1459917125866284, - "absol": 1.7132352095270047, - "glalie": 3.5324357212395068, - "sealeo": 2.6130770580435536, - "relicanth": 1.8665609065360753, - "metang": 3.7076272492426163, - "luxray": 5.603747879943346, - "vespiquen": 3.596062270952628, - "cherrim": 4.232923704963848, - "gastrodon": 1.8479371438056234, - "drifblim": 5.271589944270188, - "lopunny": 3.3360450265325303, - "skuntank": 1.9160633088944423, - "bronzong": 2.0525638949857368, - "munchlax": 2.493402404657405, - "drapion": 2.78150592867864, - "abomasnow": 2.537177422837894, - "froslass": 2.5463751339013645, - "rotom": 3.4571788100008813, - "stoutland": 2.132950797098451, - "liepard": 6.359827921999484, - "musharna": 1.392723378728935, - "unfezant": 5.822459947511895, - "boldore": 3.4227341177641035, - "swoobat": 5.6795848741146155, - "audino": 2.0930238463876583, - "gurdurr": 1.866907564372852, - "palpitoad": 3.4069664366443826, - "seismitoad": 6.611857400426507, - "scolipede": 2.934426907274013, - "whimsicott": 2.317813701342875, - "lilligant": 2.210055175812381, - "basculin-red-striped": 2.0201302044302176, - "basculin-blue-striped": 2.797389987238213, - "krookodile": 2.5823437168799286, - "maractus": 1.5363035329380648, - "crustle": 1.908634215983767, - "sigilyph": 2.4034338489570755, - "cofagrigus": 2.3786900432238447, - "garbodor": 2.623532781221028, - "cinccino": 3.7367403402021457, - "vanillish": 1.8672887861813265, - "emolga": 3.935224219082573, - "escavalier": 1.5120383317535433, - "amoonguss": 2.41770306726339, - "jellicent": 1.3683147894109218, - "galvantula": 2.051360205269438, - "klang": 4.162305015760745, - "klinklang": 3.8659869440852446, - "beheeyem": 1.8491313867076076, - "lampent": 3.420591233231672, - "fraxure": 1.3054248394900205, - "beartic": 1.4317206265182656, - "cryogonal": 1.61379121901339, - "accelgor": 3.3892651107898932, - "stunfisk": 1.6582449203164267, - "stunfisk-galar": 2.8504282369298433, - "mienshao": 3.257892991687533, - "druddigon": 1.6564658483907255, - "golurk": 1.7135969252169987, - "bisharp": 2.844592912105935, - "bouffalant": 1.162376264906297, - "heatmor": 2.4071800949827002, - "durant": 2.537018934187593, - "diggersby": 3.0096388978579016, - "talonflame": 4.222481422145885, - "pangoro": 1.5610736089831567, - "doublade": 2.2976518457460493, - "malamar": 2.734324830736434, - "barbaracle": 1.4866618597042196, - "heliolisk": 6.0973260245466925, - "tyrantrum": 1.6849471190348329, - "aurorus": 2.975116235806124, - "hawlucha": 2.7839699301948544, - "dedenne": 4.3201103552037505, - "klefki": 4.106564723282099, - "trevenant": 2.0050611761978474, - "gourgeist-average": 3.8772393056856114, - "charjabug": 4.509197492711176, - "vikavolt": 1.9988415291462278, - "ribombee": 4.983885832789812, - "lycanroc-midday": 4.578002420321132, - "lycanroc-midnight": 3.0029461874334515, - "mudsdale": 1.3859390162128886, - "araquanid": 2.2684708385019228, - "lurantis": 1.7726576041425117, - "shiinotic": 3.732961979091457, - "salazzle": 6.597188001470283, - "bewear": 1.4877592061121372, - "tsareena": 2.051928333209755, - "comfey": 4.04948522964944, - "oranguru": 2.641921948485356, - "passimian": 2.0658794638278835, - "palossand": 1.8358373403983888, - "pyukumuku": 45.28800555021671, - "togedemaru": 5.3949189175713155, - "mimikyu-disguised": 3.8284751218793076, - "greedent": 1.8148403816121603, - "orbeetle": 1.8761625377879299, - "thievul": 1.8277349051399647, - "eldegoss": 2.854900963678596, - "dubwool": 2.397833085503543, - "drednaw": 1.4293174408247613, - "boltund": 6.827201959312179, - "carkol": 4.322799193830684, - "coalossal": 3.262685863633088, - "sandaconda": 2.6131812723612713, - "cramorant": 5.126606707070488, - "barraskewda": 3.643902222591333, - "toxtricity-amped": 5.696821167588453, - "centiskorch": 3.2035608425156186, - "grapploct": 1.4322627177331686, - "polteageist": 2.5593829662762158, - "hatterene": 2.378491135607911, - "grimmsnarl": 3.763054913071575, - "obstagoon": 2.3226385661740525, - "perrserker": 3.826807738329383, - "alcremie": 1.441637737756623, - "falinks": 2.589464366961102, - "pincurchin": 4.038543139165597, - "frosmoth": 3.8446984803904867, - "indeedee-male": 3.3329391554338113, - "morpeko": 3.920041536415343, - "copperajah": 3.0984983424734063, - "duraludon": 1.731480342937106, - "drakloak": 4.18800130982831, - "dugtrio": 3.8072979313063895 + "ivysaur": 2.8394029622402455, + "charmeleon": 5.318812952504846, + "wartortle": 2.2273207609151973, + "butterfree": 6.8362351552778495, + "raichu": 8.767942464593238, + "raichu-alola": 5.602102262678455, + "sandslash": 1.8092818664574073, + "sandslash-alola": 2.1006051924214146, + "nidoqueen": 3.760887425102979, + "nidoking": 2.25393465271076, + "clefairy": 8.617646168999496, + "clefable": 2.058300384379943, + "jigglypuff": 27.165409228248116, + "wigglytuff": 1.9271670506063696, + "gloom": 5.871218048403481, + "vileplume": 2.536315096960634, + "dugtrio": 3.8072979313063895, + "dugtrio-alola": 4.445537048266448, + "persian": 3.8844793931127053, + "persian-alola": 3.94766823516788, + "golduck": 2.402271884895032, + "poliwrath": 1.504453360442621, + "kadabra": 4.098104304168976, + "machoke": 3.6231278937117195, + "tentacruel": 3.156950950236596, + "slowbro": 1.5972892181312979, + "magneton": 6.712370798059565, + "haunter": 3.4724738551361645, + "kingler": 1.7361865463533546, + "exeggutor": 1.4242349955554747, + "marowak": 2.628388231075836, + "marowak-alola": 2.4000103464218703, + "hitmonlee": 2.4296186998915434, + "hitmonchan": 2.043067029565708, + "lickitung": 1.5715608053575374, + "weezing": 1.9184453133924875, + "weezing-galar": 3.164196586439478, + "rhydon": 2.275379479280761, + "chansey": 29.69517822706209, + "tangela": 2.7975294501789723, + "kangaskhan": 1.6330648366513612, + "seadra": 3.21922443322629, + "seaking": 2.1121225808609934, + "starmie": 1.3039430015815427, + "mr-mime": 7.199593404924477, + "mr-mime-galar": 3.236206995192912, + "scyther": 3.5529710534248, + "jynx": 4.547668080801788, + "electabuzz": 4.828443902699116, + "magmar": 2.4306557312686126, + "tauros": 1.7232352135424118, + "ditto": 3.360821038327024, + "vaporeon": 2.881112711776154, + "jolteon": 3.1275899581018303, + "flareon": 3.45983946214593, + "porygon": 2.6436298129096234, + "dragonair": 1.6287859263845754, + "noctowl": 6.438378245036443, + "lanturn": 2.6603305484352435, + "togetic": 5.614879718017933, + "xatu": 3.9565156643218025, + "bellossom": 1.754387377102368, + "azumarill": 1.8023926847324223, + "sudowoodo": 2.884946676085362, + "politoed": 2.224452348590628, + "quagsire": 3.7994441923070443, + "slowking": 1.9930994760099079, + "dunsparce": 2.844725914033731, + "qwilfish": 3.5099819585655334, + "sneasel": 2.176174595854461, + "piloswine": 1.2355771675388616, + "octillery": 2.0729063848161844, + "mantine": 2.530123027753107, + "skarmory": 1.4141155191239183, + "hitmontop": 2.2950935230672362, + "miltank": 2.9810125485097476, + "grovyle": 5.843679763883502, + "sceptile": 1.068884055609094, + "combusken": 4.3575931850911545, + "blaziken": 2.054179157147837, + "marshtomp": 1.8926987767464012, + "swampert": 1.043778534889175, + "linoone": 4.58722070370923, + "linoone-galar": 4.282328619304967, + "pelipper": 5.622892799468833, + "ninjask": 10.154056629067167, + "exploud": 1.4159827657482054, + "lairon": 3.4346512480066025, + "manectric": 2.519848117916961, + "roselia": 3.6788915814680694, + "sharpedo": 4.116423903038129, + "wailmer": 5.517922735864034, + "torkoal": 2.0310141546209595, + "flygon": 1.6327023885479104, + "altaria": 1.6772667051080656, + "whiscash": 1.5713012177873702, + "crawdaunt": 1.4895539452813664, + "claydol": 2.5193225464334867, + "cradily": 2.1398447149007653, + "armaldo": 1.8062615248927665, + "dusclops": 3.1388167113518355, + "absol": 1.7077529345601778, + "glalie": 3.5161704072698985, + "sealeo": 2.599518562231557, + "relicanth": 1.8606403689864954, + "metang": 3.7050468209337444, + "luxray": 5.61152983761577, + "vespiquen": 3.586576148394002, + "cherrim": 4.209563604366665, + "gastrodon": 1.8393736962627787, + "drifblim": 5.271527045261069, + "lopunny": 3.3253745992125228, + "skuntank": 1.9149034331912231, + "bronzong": 2.040541508819009, + "munchlax": 2.4912212148745976, + "drapion": 2.776967610644757, + "abomasnow": 2.5202510522265458, + "froslass": 2.5362149867714106, + "rotom": 3.453823714357385, + "stoutland": 2.124885746553953, + "liepard": 6.341050054396893, + "musharna": 1.3881467077689187, + "unfezant": 5.800880091173337, + "boldore": 3.41856372997158, + "swoobat": 5.664098569406313, + "audino": 2.089130586750144, + "gurdurr": 1.8603753646150343, + "palpitoad": 3.3952125832272584, + "seismitoad": 6.603429159722966, + "scolipede": 2.926633041602981, + "whimsicott": 2.3068020795061317, + "lilligant": 2.1982192505006677, + "basculin-red-striped": 2.007088286663567, + "basculin-blue-striped": 2.7822865670379806, + "krookodile": 2.5748354851281063, + "maractus": 1.5274455328648817, + "crustle": 1.9049774829976882, + "sigilyph": 2.3967263679206257, + "cofagrigus": 2.374187011217641, + "garbodor": 2.6250097091617546, + "cinccino": 3.7182744909883083, + "vanillish": 1.860071086972219, + "emolga": 3.9375254511417315, + "escavalier": 1.5057033866965637, + "amoonguss": 2.4119497684501017, + "jellicent": 1.3639843657823674, + "galvantula": 2.057022859284748, + "klang": 4.1711084924096, + "klinklang": 3.8572027964155597, + "beheeyem": 1.8466312732785224, + "lampent": 3.424048719874023, + "fraxure": 1.300528052974541, + "beartic": 1.4261482172244482, + "cryogonal": 1.605627937404577, + "accelgor": 3.384395456949311, + "stunfisk": 1.6588925512324315, + "stunfisk-galar": 2.846673186688875, + "mienshao": 3.2508700181211925, + "druddigon": 1.651943099073594, + "golurk": 1.7087755718794329, + "bisharp": 2.840176422090112, + "bouffalant": 1.1589535177620378, + "heatmor": 2.406164686144672, + "durant": 2.530869710217247, + "diggersby": 3.0014879525603275, + "talonflame": 4.216933166135085, + "pangoro": 1.5558344615306865, + "doublade": 2.2926723086238887, + "malamar": 2.7297532225106327, + "barbaracle": 1.4803446572048409, + "heliolisk": 6.109934863052418, + "tyrantrum": 1.681920892529455, + "aurorus": 2.972125495857316, + "hawlucha": 2.7718941646168798, + "dedenne": 4.330481495154322, + "klefki": 4.103523245250039, + "trevenant": 1.992503317510725, + "gourgeist-average": 3.8628449160470266, + "charjabug": 4.516949195340211, + "vikavolt": 1.9960459049359907, + "ribombee": 4.975018997044407, + "lycanroc-midday": 4.5823253026668525, + "lycanroc-midnight": 3.0015513810169674, + "mudsdale": 1.3813402780004675, + "araquanid": 2.2592729793781112, + "lurantis": 1.763480074472608, + "shiinotic": 3.7219604469437524, + "salazzle": 6.6093885088481255, + "bewear": 1.4811113784865269, + "tsareena": 2.038175273911536, + "comfey": 4.036929399090132, + "oranguru": 2.635928436115175, + "passimian": 2.06048910722375, + "palossand": 1.8316404467004537, + "pyukumuku": 45.249875340063234, + "togedemaru": 5.405494626116212, + "mimikyu-disguised": 3.818577760352868, + "greedent": 1.8079558489522216, + "orbeetle": 1.8719615084390124, + "thievul": 1.823427558950966, + "eldegoss": 2.8390464645016147, + "dubwool": 2.3864230789359437, + "drednaw": 1.4246746078699823, + "boltund": 6.83637080866083, + "carkol": 4.32980338161455, + "coalossal": 3.2644264997042804, + "sandaconda": 2.603885584444642, + "cramorant": 5.097237559453839, + "barraskewda": 3.625652493331253, + "toxtricity-amped": 5.716289818849258, + "centiskorch": 3.203922913407829, + "grapploct": 1.4276879157502398, + "polteageist": 2.551805521624056, + "hatterene": 2.3731499489337784, + "grimmsnarl": 3.7566524674182675, + "obstagoon": 2.316349980531855, + "perrserker": 3.8231034328793525, + "alcremie": 1.439159081641338, + "falinks": 2.579540723488525, + "pincurchin": 4.039382287134941, + "frosmoth": 3.8406474060166955, + "indeedee-male": 3.3279518777280996, + "morpeko": 3.9246457863323454, + "copperajah": 3.094857876437965, + "duraludon": 1.7311766044393293, + "drakloak": 4.177798390719582 }, "dugtrio-alola": { - "ivysaur": 3.4629716539675997, - "charmeleon": 4.7092939241011695, - "wartortle": 2.2527720052837505, - "butterfree": 5.187626496973852, - "raichu": 7.9101623935299505, - "raichu-alola": 6.109191627935972, - "sandslash": 1.8561261117265513, - "sandslash-alola": 2.331080052844442, - "nidoqueen": 3.566990333164502, - "nidoking": 2.1556959943924845, - "clefairy": 11.695797759792484, - "clefable": 3.3294771511312033, - "jigglypuff": 41.82735509072864, - "wigglytuff": 3.078001690278401, - "gloom": 6.791608192760908, - "vileplume": 3.043410601337901, - "dugtrio": 3.6282373387102806, - "persian": 4.6845889659849105, - "persian-alola": 4.0843835009417, - "golduck": 2.5838135896276393, - "poliwrath": 1.5208030753521886, - "kadabra": 5.128373377200679, - "machoke": 3.4631552461198556, - "tentacruel": 3.295972125653159, - "slowbro": 1.7495436582543245, - "magneton": 7.244845715938119, - "haunter": 5.010803137096115, - "kingler": 1.6400872366821584, - "exeggutor": 1.8883781120847827, - "marowak": 2.5633398335798283, - "marowak-alola": 2.308134136178432, - "hitmonlee": 2.037150137817444, - "hitmonchan": 2.0200309762847644, - "lickitung": 1.7536686225781688, - "weezing": 1.7743460152870232, - "weezing-galar": 3.1988725143397563, - "rhydon": 2.2338006466698017, - "chansey": 34.39330266048621, - "tangela": 4.04191897450233, - "kangaskhan": 1.7882424396740535, - "seadra": 3.449653562834967, - "seaking": 2.1972432903286405, - "starmie": 1.6201352004097584, - "mr-mime": 11.403775022866089, - "mr-mime-galar": 4.941147593045002, - "scyther": 2.7576948045165, - "jynx": 6.801681636994011, - "electabuzz": 4.957072922312586, - "magmar": 2.052827388585677, - "tauros": 1.6457622108555188, - "ditto": 3.8975770885300376, - "vaporeon": 3.0158534664624197, - "jolteon": 3.340206945600581, - "flareon": 2.896830375231468, - "porygon": 2.9621997689650517, - "dragonair": 2.0023863384456737, - "noctowl": 6.837541340628413, - "lanturn": 2.6634291445439553, - "togetic": 6.817966024968502, - "xatu": 4.42899369904506, - "bellossom": 2.426520013283011, - "azumarill": 2.012732071616209, - "sudowoodo": 2.6737280944207846, - "politoed": 2.2081504978754105, - "quagsire": 3.5624317921709467, - "slowking": 2.4520066615140483, - "dunsparce": 3.2888108711159294, - "qwilfish": 3.962393502159509, - "sneasel": 2.886935353639965, - "piloswine": 1.7965352499273637, - "octillery": 2.26055289332622, - "mantine": 1.9992376754916028, - "skarmory": 1.638635858611556, - "hitmontop": 2.2130456137575627, - "miltank": 3.6272328072587703, - "grovyle": 7.334320758156534, - "sceptile": 1.4779439111995432, - "combusken": 3.6084710116656273, - "blaziken": 1.7153799822434417, - "marshtomp": 1.9762456516364235, - "swampert": 1.0945988771257262, - "linoone": 5.329479779939483, - "linoone-galar": 4.379115190635944, - "pelipper": 5.41717172841723, - "ninjask": 7.675710371298827, - "exploud": 1.6089460564371614, - "lairon": 4.040923016154903, - "manectric": 2.565080755794739, - "roselia": 4.407838582320268, - "sharpedo": 4.503457441736342, - "wailmer": 5.958387420816704, - "torkoal": 1.6603289491208932, - "flygon": 2.40157770840945, - "altaria": 1.4915295347964022, - "whiscash": 1.6706543252671748, - "crawdaunt": 1.555977924067872, - "claydol": 3.982511648442338, - "cradily": 3.2825464837689036, - "armaldo": 2.281800097037976, - "dusclops": 3.5783304053520935, - "absol": 1.8755435802423923, - "glalie": 5.126555603871605, - "sealeo": 2.677596794227827, - "relicanth": 2.052734517572669, - "metang": 4.300481347550133, - "luxray": 6.210138921857899, - "vespiquen": 2.64163850363283, - "cherrim": 5.822602576469381, - "gastrodon": 2.078308568901478, - "drifblim": 5.562401461791186, - "lopunny": 3.576154565984462, - "skuntank": 1.8207576401135575, - "bronzong": 3.6800247997666995, - "munchlax": 2.6257104729124583, - "drapion": 3.1338309870559877, - "abomasnow": 3.9521648806130756, - "froslass": 3.7335187941827543, - "rotom": 4.460078362184638, - "stoutland": 2.595890116998294, - "liepard": 7.023816784434206, - "musharna": 1.7403104646363619, - "unfezant": 6.345671287408675, - "boldore": 3.1780993340519927, - "swoobat": 6.345184126016595, - "audino": 2.280181216426601, - "gurdurr": 1.5589083110405624, - "palpitoad": 3.27923365618894, - "seismitoad": 7.761297019151112, - "scolipede": 3.141692416316671, - "whimsicott": 4.165747858078764, - "lilligant": 3.023419003459315, - "basculin-red-striped": 2.2919819062427464, - "basculin-blue-striped": 2.88920702247934, - "krookodile": 2.4427299468172734, - "maractus": 2.1024614598352125, - "crustle": 2.3746469250392175, - "sigilyph": 2.686566367919636, - "cofagrigus": 2.661772561393597, - "garbodor": 2.734014723938923, - "cinccino": 4.689867638691899, - "vanillish": 2.843881889303049, - "emolga": 3.217230698929624, - "escavalier": 1.518214041107857, - "amoonguss": 2.9135478284826273, - "jellicent": 1.7690802728841877, - "galvantula": 1.9751250347821288, - "klang": 4.466915976038321, - "klinklang": 4.681257270389086, - "beheeyem": 2.1315177908291267, - "lampent": 2.741068809189261, - "fraxure": 1.5984112043101957, - "beartic": 1.9807744800885163, - "cryogonal": 2.5788892823937912, - "accelgor": 3.5923840868280346, - "stunfisk": 1.565121600158089, - "stunfisk-galar": 2.6928194708556523, - "mienshao": 3.2788090575427593, - "druddigon": 1.747326844922565, - "golurk": 1.6399822452524693, - "bisharp": 3.205550675604207, - "bouffalant": 1.2142205722295127, - "heatmor": 2.161784748917258, - "durant": 2.949082391077892, - "diggersby": 2.814556713683751, - "talonflame": 2.3591378873190254, - "pangoro": 1.4938520614163362, - "doublade": 2.417881980256278, - "malamar": 2.912217956752179, - "barbaracle": 1.7210088852778531, - "heliolisk": 6.193593813322889, - "tyrantrum": 1.7728923126560563, - "aurorus": 4.908955471354573, - "hawlucha": 3.091573435254583, - "dedenne": 4.961593980975918, - "klefki": 4.792778571311189, - "trevenant": 2.815519538967883, - "gourgeist-average": 4.411904054600542, - "charjabug": 3.9794981050020475, - "vikavolt": 1.664778980994705, - "ribombee": 7.071479216372982, - "lycanroc-midday": 5.045377435483261, - "lycanroc-midnight": 2.9881475977860132, - "mudsdale": 1.2220882669788238, - "araquanid": 1.943760260977284, - "lurantis": 2.4296641730287023, - "shiinotic": 6.6610967779680585, - "salazzle": 6.148677129834704, - "bewear": 1.7685225345916393, - "tsareena": 2.993085477817126, - "comfey": 6.525596455619174, - "oranguru": 3.250307223214845, - "passimian": 2.012872213103333, - "palossand": 1.8114499962188093, - "pyukumuku": 47.9872734125291, - "togedemaru": 5.964772275190445, - "mimikyu-disguised": 5.938784338933575, - "greedent": 2.2065176747609487, - "orbeetle": 2.126825086431322, - "thievul": 1.6844862477339142, - "eldegoss": 3.9789491251722047, - "dubwool": 2.6523188976047174, - "drednaw": 1.6117647563568682, - "boltund": 7.0075762838561175, - "carkol": 4.13166915393965, - "coalossal": 3.048761576612045, - "sandaconda": 2.6993926671919346, - "cramorant": 4.106412936504701, - "barraskewda": 3.9941437520638488, - "toxtricity-amped": 6.533722187771664, - "centiskorch": 1.9426545663057928, - "grapploct": 1.2961485735558151, - "polteageist": 3.208736320785839, - "hatterene": 3.713582203918579, - "grimmsnarl": 4.817833349751092, - "obstagoon": 2.549550418825541, - "perrserker": 4.2016002504750425, - "alcremie": 2.2022346263628267, - "falinks": 2.6385017946052014, - "pincurchin": 4.0561752147234245, - "frosmoth": 3.9888223005358032, - "indeedee-male": 3.4914592525075934, - "morpeko": 4.194367858648384, - "copperajah": 3.2284132124752216, - "duraludon": 2.0596115834807844, - "drakloak": 4.858597392409533, - "dugtrio-alola": 4.390424033662299 + "ivysaur": 3.467235231598743, + "charmeleon": 4.699633962400961, + "wartortle": 2.2438591560658505, + "butterfree": 5.188796631056771, + "raichu": 7.921118400637527, + "raichu-alola": 6.135518379687972, + "sandslash": 1.8525846890284798, + "sandslash-alola": 2.3273910683166728, + "nidoqueen": 3.5669682591184797, + "nidoking": 2.1523663335405545, + "clefairy": 11.681108007355691, + "clefable": 3.340647415729758, + "jigglypuff": 41.941756260956694, + "wigglytuff": 3.0855390517467485, + "gloom": 6.814487138877691, + "vileplume": 3.044776909009144, + "dugtrio": 3.6192537929613655, + "dugtrio-alola": 4.390424033662299, + "persian": 4.690300199690595, + "persian-alola": 4.080933563310408, + "golduck": 2.5738765565431567, + "poliwrath": 1.5135382812190326, + "kadabra": 5.14354214950618, + "machoke": 3.4557417809133706, + "tentacruel": 3.292123072297311, + "slowbro": 1.7480955498659627, + "magneton": 7.276659093582568, + "haunter": 5.009956411609064, + "kingler": 1.6294953535915173, + "exeggutor": 1.8853351157514044, + "marowak": 2.5561464898735027, + "marowak-alola": 2.3047609780511378, + "hitmonlee": 2.0288989302604223, + "hitmonchan": 2.016242426425219, + "lickitung": 1.7538080482526988, + "weezing": 1.7764641557594705, + "weezing-galar": 3.2029851194256036, + "rhydon": 2.2297212613468598, + "chansey": 34.492572231211845, + "tangela": 4.030185439949254, + "kangaskhan": 1.7868439407611292, + "seadra": 3.4382563114517772, + "seaking": 2.1909977287342177, + "starmie": 1.6227710342492276, + "mr-mime": 11.440800807000237, + "mr-mime-galar": 4.950816045943762, + "scyther": 2.7550918650561202, + "jynx": 6.817142788597629, + "electabuzz": 4.982321430400788, + "magmar": 2.0504276451752776, + "tauros": 1.6404776510190109, + "ditto": 3.8778965210296406, + "vaporeon": 3.0083026072069714, + "jolteon": 3.3513293431623357, + "flareon": 2.8954457195273706, + "porygon": 2.9645311600894892, + "dragonair": 2.005869168478009, + "noctowl": 6.841792526685686, + "lanturn": 2.66101046047804, + "togetic": 6.8050863507439985, + "xatu": 4.433364062024888, + "bellossom": 2.425325541654236, + "azumarill": 2.0097425103317477, + "sudowoodo": 2.670788882481873, + "politoed": 2.199985367127101, + "quagsire": 3.5452634935303378, + "slowking": 2.4476386892680164, + "dunsparce": 3.289524706998734, + "qwilfish": 3.95709006168748, + "sneasel": 2.8840413568868204, + "piloswine": 1.7940949641557538, + "octillery": 2.2571652721755164, + "mantine": 1.9920344599012112, + "skarmory": 1.636007739941943, + "hitmontop": 2.204686721540739, + "miltank": 3.629492439318484, + "grovyle": 7.316255120193066, + "sceptile": 1.4769163361159994, + "combusken": 3.594980346414534, + "blaziken": 1.708438086784533, + "marshtomp": 1.9671778597818879, + "swampert": 1.0903691531934159, + "linoone": 5.330754833914586, + "linoone-galar": 4.371914225594646, + "pelipper": 5.410369119205603, + "ninjask": 7.667524703179729, + "exploud": 1.6080680917215435, + "lairon": 4.0513924139459965, + "manectric": 2.5670301910528384, + "roselia": 4.41220525433927, + "sharpedo": 4.488998192412553, + "wailmer": 5.94408780036322, + "torkoal": 1.6558416207348554, + "flygon": 2.3987604436314998, + "altaria": 1.4893179303301372, + "whiscash": 1.668191043817334, + "crawdaunt": 1.5512099746683652, + "claydol": 3.9875970925829347, + "cradily": 3.2907767942043806, + "armaldo": 2.2823434507181513, + "dusclops": 3.5814647010702023, + "absol": 1.8723193432777683, + "glalie": 5.125146744427608, + "sealeo": 2.668906346825905, + "relicanth": 2.050360890211411, + "metang": 4.314257426878636, + "luxray": 6.233233197275485, + "vespiquen": 2.636848115748564, + "cherrim": 5.817700208146036, + "gastrodon": 2.0747560156049207, + "drifblim": 5.578816918900994, + "lopunny": 3.5732931814765294, + "skuntank": 1.8208856927107413, + "bronzong": 3.682032721370738, + "munchlax": 2.629812074097487, + "drapion": 3.136429370097028, + "abomasnow": 3.9485094426213188, + "froslass": 3.7364080796450665, + "rotom": 4.465012130775943, + "stoutland": 2.5982450711460743, + "liepard": 7.021010675011391, + "musharna": 1.743136116603249, + "unfezant": 6.344948650105602, + "boldore": 3.172935932898543, + "swoobat": 6.351581690562663, + "audino": 2.278105369916929, + "gurdurr": 1.5501479440406198, + "palpitoad": 3.268571513815286, + "seismitoad": 7.7833081782222795, + "scolipede": 3.1423030652764403, + "whimsicott": 4.168029040015924, + "lilligant": 3.0212645140783234, + "basculin-red-striped": 2.2826716623730765, + "basculin-blue-striped": 2.876323750835117, + "krookodile": 2.4356390834144146, + "maractus": 2.099780789914727, + "crustle": 2.374433502971433, + "sigilyph": 2.689091942851458, + "cofagrigus": 2.6641382960026103, + "garbodor": 2.740683714046667, + "cinccino": 4.690569270301186, + "vanillish": 2.8452372846375535, + "emolga": 3.2228838704235683, + "escavalier": 1.5126990123223858, + "amoonguss": 2.9205561887003437, + "jellicent": 1.7692194634975085, + "galvantula": 1.982139041063235, + "klang": 4.485081853416654, + "klinklang": 4.689029248808077, + "beheeyem": 2.136205866173732, + "lampent": 2.7387196416399773, + "fraxure": 1.5997983070073079, + "beartic": 1.9767820928861997, + "cryogonal": 2.578441832421742, + "accelgor": 3.598617006564356, + "stunfisk": 1.5640161418724676, + "stunfisk-galar": 2.688007377012884, + "mienshao": 3.2757912787405044, + "druddigon": 1.7462520804770363, + "golurk": 1.6361313752443136, + "bisharp": 3.2080177860431514, + "bouffalant": 1.2130322199544228, + "heatmor": 2.1560270698348205, + "durant": 2.951175945436685, + "diggersby": 2.807571441169155, + "talonflame": 2.351633051928154, + "pangoro": 1.4890004118599323, + "doublade": 2.4162741870791447, + "malamar": 2.9137497449089484, + "barbaracle": 1.7188619475266491, + "heliolisk": 6.210506272396701, + "tyrantrum": 1.7734199140093936, + "aurorus": 4.926715724607405, + "hawlucha": 3.0806047420187492, + "dedenne": 4.983084138339098, + "klefki": 4.807039361356084, + "trevenant": 2.8094508324453997, + "gourgeist-average": 4.399503542571537, + "charjabug": 3.9786508873059443, + "vikavolt": 1.6636493690187018, + "ribombee": 7.085150280230145, + "lycanroc-midday": 5.068203391819772, + "lycanroc-midnight": 2.991076709587888, + "mudsdale": 1.2171025438609364, + "araquanid": 1.9398541200226238, + "lurantis": 2.4285314288459015, + "shiinotic": 6.672737093923456, + "salazzle": 6.144893174363633, + "bewear": 1.76778481916501, + "tsareena": 2.9898401767031917, + "comfey": 6.536390330353397, + "oranguru": 3.258481938439382, + "passimian": 2.008501187002235, + "palossand": 1.8087229393447106, + "pyukumuku": 47.96665040901622, + "togedemaru": 5.9944241611563935, + "mimikyu-disguised": 5.946019061152388, + "greedent": 2.208268402074694, + "orbeetle": 2.12990131498858, + "thievul": 1.6813988713597365, + "eldegoss": 3.9761315080058273, + "dubwool": 2.6469076541090724, + "drednaw": 1.6106457598215314, + "boltund": 7.02206776764787, + "carkol": 4.127827680177216, + "coalossal": 3.0458795178638667, + "sandaconda": 2.694309031779923, + "cramorant": 4.08527111057314, + "barraskewda": 3.981908567324961, + "toxtricity-amped": 6.564757386040231, + "centiskorch": 1.9383827804015978, + "grapploct": 1.2900225316769716, + "polteageist": 3.215587145348045, + "hatterene": 3.7232913140610604, + "grimmsnarl": 4.811778378026537, + "obstagoon": 2.548593699159103, + "perrserker": 4.206255550454518, + "alcremie": 2.2033781258769194, + "falinks": 2.6314900858816377, + "pincurchin": 4.05781261171872, + "frosmoth": 3.9956308727294516, + "indeedee-male": 3.4923612204054537, + "morpeko": 4.204715454167475, + "copperajah": 3.2286495868634466, + "duraludon": 2.0649116380905217, + "drakloak": 4.864155862881967 }, "persian": { - "ivysaur": 2.883857299745733, - "charmeleon": 3.5111412525780965, - "wartortle": 2.3404391219195815, - "butterfree": 4.221919501971021, - "raichu": 4.398570252845879, - "raichu-alola": 3.2518797271939306, - "sandslash": 1.9312693722083787, - "sandslash-alola": 1.5152721156238913, - "nidoqueen": 2.5960911467054664, - "nidoking": 1.6052774180528007, - "clefairy": 8.470044319056885, - "clefable": 1.8323749643486649, - "jigglypuff": 24.408657657806508, - "wigglytuff": 1.7619658590547227, - "gloom": 5.035814146722252, - "vileplume": 2.6317398351368064, - "dugtrio": 3.3371424630653985, - "dugtrio-alola": 2.60047727723964, - "persian-alola": 4.191021878180829, - "golduck": 2.6835676168173146, - "poliwrath": 1.7140379534771002, - "kadabra": 3.731409505836045, - "machoke": 3.468643016183649, - "tentacruel": 2.229801989791664, - "slowbro": 1.5514301269427113, - "magneton": 2.362035615804418, - "haunter": 3.5529629618533862, - "kingler": 2.0982145347788217, - "exeggutor": 1.6851453862316177, - "marowak": 2.659708867629463, - "marowak-alola": 1.5356432309976191, - "hitmonlee": 2.276391834887578, - "hitmonchan": 2.1176290304228407, - "lickitung": 1.682611325685413, - "weezing": 1.4042889151908708, - "weezing-galar": 2.334652546172511, - "rhydon": 1.857026400930288, - "chansey": 25.997551614113625, - "tangela": 4.520598281660119, - "kangaskhan": 1.595537162425215, - "seadra": 3.790146342903375, - "seaking": 2.177803491183365, - "starmie": 1.2772386047185118, - "mr-mime": 6.421014237027704, - "mr-mime-galar": 3.3290802265584296, - "scyther": 2.3553054158840143, - "jynx": 4.243776613271152, - "electabuzz": 2.350203473211271, - "magmar": 1.556731496162334, - "tauros": 1.6430637010204125, - "ditto": 4.312043561710064, - "vaporeon": 2.9654899811695805, - "jolteon": 1.8768122939651501, - "flareon": 2.3357970824249246, - "porygon": 2.484162137370534, - "dragonair": 1.8406802678326106, - "noctowl": 5.4409542858111415, - "lanturn": 1.7584421092418667, - "togetic": 4.808138298966361, - "xatu": 3.387851751041473, - "bellossom": 2.0647586284076764, - "azumarill": 1.923649327465903, - "sudowoodo": 1.9109598981731737, - "politoed": 2.3200501711162937, - "quagsire": 3.787411570920418, - "slowking": 2.2409335445465546, - "dunsparce": 3.0097829272961403, - "qwilfish": 2.952088769214075, - "sneasel": 2.2999025910115387, - "piloswine": 1.3167879903329558, - "octillery": 2.067746282740747, - "mantine": 2.3433779307022395, - "skarmory": 1.5082196245655828, - "hitmontop": 2.491943755172832, - "miltank": 3.0976245771112496, - "grovyle": 6.844506177348551, - "sceptile": 1.2953093188350921, - "combusken": 2.6419178438410142, - "blaziken": 1.3268766906232683, - "marshtomp": 2.177971263543299, - "swampert": 1.1165646885040543, - "linoone": 4.798553683837974, - "linoone-galar": 4.545254255035307, - "pelipper": 5.260365196161845, - "ninjask": 6.5923986378603505, - "exploud": 1.4035233599984516, - "lairon": 1.7111831033978344, - "manectric": 1.5588025424354255, - "roselia": 3.72652207778333, - "sharpedo": 4.898168747447302, - "wailmer": 5.767649826044844, - "torkoal": 1.6777766003350598, - "flygon": 2.3312591032822745, - "altaria": 1.6143759964246849, - "whiscash": 1.7808333909599772, - "crawdaunt": 1.8421313464915334, - "claydol": 2.9780591731990467, - "cradily": 1.9015304513967908, - "armaldo": 1.4866996295745476, - "dusclops": 3.198954251668634, - "absol": 1.9505666057327007, - "glalie": 3.639802863292104, - "sealeo": 2.8167546552122316, - "relicanth": 1.4976342512117065, - "metang": 2.132690573173087, - "luxray": 3.3211307039042435, - "vespiquen": 2.2833952620270175, - "cherrim": 5.201410285503732, - "gastrodon": 1.9124410506464995, - "drifblim": 3.5330220790697657, - "lopunny": 3.0483179894589285, - "skuntank": 1.2624969834983693, - "bronzong": 2.3035574177510485, - "munchlax": 2.1211144978595797, - "drapion": 2.0801378906538113, - "abomasnow": 2.827873143776922, - "froslass": 2.5606103684511003, - "rotom": 3.308562540614504, - "stoutland": 2.073556004471692, - "liepard": 6.8789487112400085, - "musharna": 1.371116763392132, - "unfezant": 5.476607396561799, - "boldore": 2.4725830614368487, - "swoobat": 4.838571248895962, - "audino": 1.948044345881181, - "gurdurr": 1.7613419511341708, - "palpitoad": 3.3658362917176414, - "seismitoad": 5.576691211572006, - "scolipede": 2.7124919052234966, - "whimsicott": 2.728927685303143, - "lilligant": 2.6948833268082133, - "basculin-red-striped": 2.3999914575948873, - "basculin-blue-striped": 3.1305005534509407, - "krookodile": 2.7354456977951696, - "maractus": 1.947665254122417, - "crustle": 1.5188360338584896, - "sigilyph": 2.0531487510144864, - "cofagrigus": 2.314409770771289, - "garbodor": 1.5763971377657358, - "cinccino": 3.974683560997108, - "vanillish": 1.9252978307034851, - "emolga": 2.6540296207839154, - "escavalier": 1.35724687816403, - "amoonguss": 2.263111299293258, - "jellicent": 1.292804177173775, - "galvantula": 1.399658165095357, - "klang": 2.0616205874029943, - "klinklang": 2.4377357493249336, - "beheeyem": 1.6402948912653788, - "lampent": 1.7858298751269228, - "fraxure": 1.4346111240659227, - "beartic": 1.4795167715275976, - "cryogonal": 1.6986539689008722, - "accelgor": 2.80057094968373, - "stunfisk": 1.1662053096823, - "stunfisk-galar": 1.7263877476661085, - "mienshao": 3.1073398027190624, - "druddigon": 1.7936568084495588, - "golurk": 1.5079079460538265, - "bisharp": 1.8853220095387995, - "bouffalant": 1.056547573122682, - "heatmor": 1.6802366938307305, - "durant": 2.274045469820633, - "diggersby": 2.826501729074445, - "talonflame": 2.5781923743095487, - "pangoro": 2.068981848813461, - "doublade": 1.4356387455713606, - "malamar": 2.71360835900916, - "barbaracle": 1.1887155026372422, - "heliolisk": 3.388990321754405, - "tyrantrum": 1.3178523043439256, - "aurorus": 2.1000793184196107, - "hawlucha": 3.090817430248242, - "dedenne": 2.57566120426453, - "klefki": 2.227571485661679, - "trevenant": 2.269499211908558, - "gourgeist-average": 4.5350686921434455, - "charjabug": 3.4636090775284263, - "vikavolt": 1.5752006642171321, - "ribombee": 4.179747368951173, - "lycanroc-midday": 2.7684933877535904, - "lycanroc-midnight": 1.8516747961509248, - "mudsdale": 1.2250828870271095, - "araquanid": 2.1246200451986237, - "lurantis": 2.1054739875645323, - "shiinotic": 3.9921073615373808, - "salazzle": 2.8589485505839485, - "bewear": 1.6360647602584906, - "tsareena": 2.704302520055891, - "comfey": 4.047575517334847, - "oranguru": 2.442356668575882, - "passimian": 1.9733197496168615, - "palossand": 1.7369760959707232, - "pyukumuku": 37.625049002342855, - "togedemaru": 1.7097001537172831, - "mimikyu-disguised": 3.8014208204026225, - "greedent": 1.8054713627485774, - "orbeetle": 1.6197621689524935, - "thievul": 1.92731189787139, - "eldegoss": 3.5600897544249097, - "dubwool": 2.3813990063345933, - "drednaw": 1.0223163407261835, - "boltund": 4.117733439640279, - "carkol": 1.8510995935422048, - "coalossal": 1.545680090529446, - "sandaconda": 2.763964348109015, - "cramorant": 5.067848640027037, - "barraskewda": 3.9196380124313634, - "toxtricity-amped": 2.2975685383026017, - "centiskorch": 1.8739776776552086, - "grapploct": 1.4840895330306636, - "polteageist": 2.290148792353686, - "hatterene": 2.2157990288343767, - "grimmsnarl": 3.6816188176418487, - "obstagoon": 2.386664471977464, - "perrserker": 2.4027823935367376, - "alcremie": 1.3428156516312113, - "falinks": 2.6045272518085927, - "pincurchin": 2.606907597328924, - "frosmoth": 2.4215371909632886, - "indeedee-male": 3.1852458207525616, - "morpeko": 2.695942985532677, - "copperajah": 1.6726343191041884, - "duraludon": 1.1598577743037, - "drakloak": 4.818705229818747, - "persian": 3.727845510922177 + "ivysaur": 2.8806835002295164, + "charmeleon": 3.5079467732138694, + "wartortle": 2.3375719001964965, + "butterfree": 4.217447464487805, + "raichu": 4.391332396742849, + "raichu-alola": 3.2485790982908918, + "sandslash": 1.92854915687633, + "sandslash-alola": 1.509314245307881, + "nidoqueen": 2.5961000483291774, + "nidoking": 1.6033566555713814, + "clefairy": 8.469401384407028, + "clefable": 1.8320822138291044, + "jigglypuff": 24.397966347092776, + "wigglytuff": 1.7605993812221425, + "gloom": 5.029092788005869, + "vileplume": 2.6287372623734875, + "dugtrio": 3.335286746656296, + "dugtrio-alola": 2.5940145171295264, + "persian": 3.727845510922177, + "persian-alola": 4.189829981197364, + "golduck": 2.6806022073904234, + "poliwrath": 1.7112025330774645, + "kadabra": 3.7277976413447247, + "machoke": 3.4629800026350215, + "tentacruel": 2.227964533093289, + "slowbro": 1.5494860811712798, + "magneton": 2.355770317909365, + "haunter": 3.5468956296923024, + "kingler": 2.092786427225797, + "exeggutor": 1.682451669333799, + "marowak": 2.6564689121122895, + "marowak-alola": 1.531621239510589, + "hitmonlee": 2.2715149389408587, + "hitmonchan": 2.116039335036734, + "lickitung": 1.680836027746622, + "weezing": 1.4023764125743416, + "weezing-galar": 2.3321463948944094, + "rhydon": 1.8514066124375383, + "chansey": 25.97235828581766, + "tangela": 4.512513534872838, + "kangaskhan": 1.5932711266823447, + "seadra": 3.7846205939217046, + "seaking": 2.175980521178027, + "starmie": 1.2760806877869222, + "mr-mime": 6.417246831986651, + "mr-mime-galar": 3.324902953560281, + "scyther": 2.3519977439655877, + "jynx": 4.239885406890141, + "electabuzz": 2.348412588697183, + "magmar": 1.555342419979039, + "tauros": 1.6392971754457002, + "ditto": 4.279098035806639, + "vaporeon": 2.9641332351224277, + "jolteon": 1.8782014558708973, + "flareon": 2.3373111414649834, + "porygon": 2.4816059068039156, + "dragonair": 1.8400628082180503, + "noctowl": 5.436637690646043, + "lanturn": 1.7583288051155537, + "togetic": 4.806284271534884, + "xatu": 3.384603613431274, + "bellossom": 2.063050661406463, + "azumarill": 1.9242633755854672, + "sudowoodo": 1.9043981538125827, + "politoed": 2.3184003581147303, + "quagsire": 3.779463176045302, + "slowking": 2.2386311031954333, + "dunsparce": 3.0100971607435625, + "qwilfish": 2.947314509873712, + "sneasel": 2.2978547275125787, + "piloswine": 1.3136597937304808, + "octillery": 2.0658097812110494, + "mantine": 2.343326504898747, + "skarmory": 1.5045200260607055, + "hitmontop": 2.4884094291505807, + "miltank": 3.0924693509399614, + "grovyle": 6.831533818725985, + "sceptile": 1.2941123548947915, + "combusken": 2.635000774115154, + "blaziken": 1.324235190960243, + "marshtomp": 2.1760743393797095, + "swampert": 1.1160168120320495, + "linoone": 4.79760612761115, + "linoone-galar": 4.542232319522361, + "pelipper": 5.252743692194938, + "ninjask": 6.583313898063, + "exploud": 1.4007642430597764, + "lairon": 1.7047935183709728, + "manectric": 1.557916017404422, + "roselia": 3.7225551611372243, + "sharpedo": 4.895051780691508, + "wailmer": 5.7630741919205155, + "torkoal": 1.6758950522690295, + "flygon": 2.3301899198791585, + "altaria": 1.6143439448356267, + "whiscash": 1.779216008738764, + "crawdaunt": 1.8406607355460998, + "claydol": 2.9746015995565176, + "cradily": 1.897556343437531, + "armaldo": 1.48331792913508, + "dusclops": 3.1990685573324247, + "absol": 1.9498577080748924, + "glalie": 3.634792305843076, + "sealeo": 2.8137590517851345, + "relicanth": 1.4933549831184143, + "metang": 2.126615179235201, + "luxray": 3.3172371249952284, + "vespiquen": 2.2787493263119822, + "cherrim": 5.1958236595444465, + "gastrodon": 1.9104452674136843, + "drifblim": 3.5219379837050933, + "lopunny": 3.041326239359692, + "skuntank": 1.2618931233673358, + "bronzong": 2.297784860840382, + "munchlax": 2.119156077631713, + "drapion": 2.0784651797311433, + "abomasnow": 2.8229168267997475, + "froslass": 2.556381937756435, + "rotom": 3.306277186209333, + "stoutland": 2.0697568584006567, + "liepard": 6.87648927810884, + "musharna": 1.3696450835613478, + "unfezant": 5.471650404142178, + "boldore": 2.463966258462652, + "swoobat": 4.833806250936627, + "audino": 1.9461901600444524, + "gurdurr": 1.7560372107448576, + "palpitoad": 3.3636219910463145, + "seismitoad": 5.5687823522619855, + "scolipede": 2.7081318819200706, + "whimsicott": 2.726438339997876, + "lilligant": 2.6922190674347464, + "basculin-red-striped": 2.3971372207839488, + "basculin-blue-striped": 3.127345009668555, + "krookodile": 2.7343704879001804, + "maractus": 1.946306009995642, + "crustle": 1.5136105004268745, + "sigilyph": 2.0510603428892145, + "cofagrigus": 2.312659789652791, + "garbodor": 1.5723377453123786, + "cinccino": 3.968948225225379, + "vanillish": 1.9230785116465898, + "emolga": 2.6527543498933186, + "escavalier": 1.3538685311534069, + "amoonguss": 2.26012769032381, + "jellicent": 1.289535608060881, + "galvantula": 1.3984777800336503, + "klang": 2.056861593493401, + "klinklang": 2.4305092822573533, + "beheeyem": 1.6387276127645536, + "lampent": 1.7796894265989436, + "fraxure": 1.4333288860547464, + "beartic": 1.4764335142554375, + "cryogonal": 1.697785934895399, + "accelgor": 2.7980521071768134, + "stunfisk": 1.165370153485799, + "stunfisk-galar": 1.7224154202968673, + "mienshao": 3.1027359992532317, + "druddigon": 1.7935235684884525, + "golurk": 1.5031868636372099, + "bisharp": 1.8805868957408207, + "bouffalant": 1.0545430431018916, + "heatmor": 1.6791443087493731, + "durant": 2.2673099207254586, + "diggersby": 2.8234203453257893, + "talonflame": 2.5756480894299774, + "pangoro": 2.066783293142895, + "doublade": 1.4278406128939138, + "malamar": 2.7117034442574006, + "barbaracle": 1.1849865001553597, + "heliolisk": 3.3869651378597547, + "tyrantrum": 1.3138871958938865, + "aurorus": 2.0946669406852574, + "hawlucha": 3.084980668570923, + "dedenne": 2.5748363078027845, + "klefki": 2.2228926299427614, + "trevenant": 2.2593859495033133, + "gourgeist-average": 4.5309433791093365, + "charjabug": 3.460083180217318, + "vikavolt": 1.5739852762331359, + "ribombee": 4.1766387260141675, + "lycanroc-midday": 2.762550057817778, + "lycanroc-midnight": 1.8458526979543215, + "mudsdale": 1.221635964838164, + "araquanid": 2.123298277706807, + "lurantis": 2.1027566561456217, + "shiinotic": 3.9884379943527004, + "salazzle": 2.8549634849930348, + "bewear": 1.6338803408874492, + "tsareena": 2.7012710845001067, + "comfey": 4.046462926716992, + "oranguru": 2.4396800934841414, + "passimian": 1.9695211400645292, + "palossand": 1.7343058572791814, + "pyukumuku": 37.5704498983912, + "togedemaru": 1.7049680778486804, + "mimikyu-disguised": 3.7999920543380465, + "greedent": 1.8024736228320428, + "orbeetle": 1.6176812382143826, + "thievul": 1.9278245549465074, + "eldegoss": 3.556840347630442, + "dubwool": 2.3750778128550403, + "drednaw": 1.019550243133313, + "boltund": 4.114318202111739, + "carkol": 1.8462922912318012, + "coalossal": 1.5414908170467818, + "sandaconda": 2.7601328230164857, + "cramorant": 5.06418010769693, + "barraskewda": 3.91451963936648, + "toxtricity-amped": 2.2941464991612026, + "centiskorch": 1.8718223711567408, + "grapploct": 1.4798043809871744, + "polteageist": 2.2838333587206567, + "hatterene": 2.213966395016877, + "grimmsnarl": 3.678367392998095, + "obstagoon": 2.383937129655572, + "perrserker": 2.3964215912838984, + "alcremie": 1.3427992152148638, + "falinks": 2.5987013257740066, + "pincurchin": 2.60473887087793, + "frosmoth": 2.418009059034274, + "indeedee-male": 3.186715318700063, + "morpeko": 2.6950733054840557, + "copperajah": 1.6667341744581528, + "duraludon": 1.1573341340102852, + "drakloak": 4.815495587509034 }, "persian-alola": { - "ivysaur": 2.7175517682005017, - "charmeleon": 3.366405454180101, - "wartortle": 2.2926748714389644, - "butterfree": 3.6141319325213694, - "raichu": 4.130562725788886, - "raichu-alola": 4.164441245674865, - "sandslash": 1.8859329930175337, - "sandslash-alola": 1.765830352197142, - "nidoqueen": 2.4725913744298444, - "nidoking": 1.5792008303539826, - "clefairy": 7.013039963259544, - "clefable": 1.22540554188698, - "jigglypuff": 17.44946287270889, - "wigglytuff": 1.298625873382044, - "gloom": 4.413321665400043, - "vileplume": 2.351063858406441, - "dugtrio": 3.1472242620762847, - "dugtrio-alola": 2.960217688067413, - "persian": 3.40912383179148, - "golduck": 2.617576229109627, - "poliwrath": 1.3137484518507665, - "kadabra": 4.1247580101023065, - "machoke": 2.8132879796758505, - "tentacruel": 2.0813521805415762, - "slowbro": 2.355717660824294, - "magneton": 2.803453662862987, - "haunter": 5.295979246741025, - "kingler": 2.1507181020616963, - "exeggutor": 2.2016922415365214, - "marowak": 2.798494826879615, - "marowak-alola": 2.432203899298061, - "hitmonlee": 1.620241771743733, - "hitmonchan": 1.559259358601664, - "lickitung": 1.6479182387041407, - "weezing": 1.4605705665015027, - "weezing-galar": 1.8638472651091162, - "rhydon": 2.1458958213240136, - "chansey": 24.358420382250006, - "tangela": 4.63119858214472, - "kangaskhan": 1.600306711611346, - "seadra": 3.8824932538944825, - "seaking": 2.0586095742741395, - "starmie": 1.462646437030654, - "mr-mime": 7.634905177115158, - "mr-mime-galar": 4.166795668818708, - "scyther": 2.2467110198013915, - "jynx": 4.748108634669203, - "electabuzz": 2.2056050481478793, - "magmar": 1.463071936578034, - "tauros": 1.710138503401406, - "ditto": 4.150948873867861, - "vaporeon": 2.7665528341099286, - "jolteon": 1.714818254485226, - "flareon": 2.128194203848979, - "porygon": 2.4579476642491196, - "dragonair": 1.5697225719296182, - "noctowl": 5.112756126973973, - "lanturn": 1.64130992438478, - "togetic": 3.6715598151614763, - "xatu": 4.600287522845088, - "bellossom": 1.726065898179304, - "azumarill": 1.4618586157261686, - "sudowoodo": 2.209039099035522, - "politoed": 2.1834677306225876, - "quagsire": 3.876947303218353, - "slowking": 2.8149193840947806, - "dunsparce": 2.769185652712343, - "qwilfish": 3.0210558550324405, - "sneasel": 1.927470737233664, - "piloswine": 1.3427809477097226, - "octillery": 1.931343013290616, - "mantine": 2.1823563321152593, - "skarmory": 1.8060565059121894, - "hitmontop": 1.8664664835706941, - "miltank": 2.9216291104528667, - "grovyle": 6.458652593365972, - "sceptile": 1.1935585177595107, - "combusken": 2.2677951583099283, - "blaziken": 1.1393453325922052, - "marshtomp": 2.1336276357761443, - "swampert": 1.0941542694962592, - "linoone": 4.260518689364392, - "linoone-galar": 4.05282616968955, - "pelipper": 5.375122169088856, - "ninjask": 5.356876355043008, - "exploud": 1.340417687886557, - "lairon": 2.2279768194365985, - "manectric": 1.5690672139606847, - "roselia": 3.7048476001210346, - "sharpedo": 3.9448437978327755, - "wailmer": 5.647243924161238, - "torkoal": 1.7165903078340952, - "flygon": 1.9387062164745743, - "altaria": 1.2449338138399653, - "whiscash": 1.8320839484844393, - "crawdaunt": 1.5968020215110934, - "claydol": 3.893368535425197, - "cradily": 1.962711923469692, - "armaldo": 1.4989167230221976, - "dusclops": 3.719062218387272, - "absol": 1.545046522115749, - "glalie": 3.7196527054434982, - "sealeo": 2.763681218413344, - "relicanth": 1.7397949186801538, - "metang": 3.5178242207143127, - "luxray": 3.2573990996541173, - "vespiquen": 2.0565964156852834, - "cherrim": 5.000259680655714, - "gastrodon": 1.7362791319638986, - "drifblim": 5.055826961294708, - "lopunny": 2.9117812352523282, - "skuntank": 1.140389675000695, - "bronzong": 4.0151500866678935, - "munchlax": 1.9829880182633586, - "drapion": 1.7698948742464862, - "abomasnow": 2.730299172816187, - "froslass": 3.2482695927454293, - "rotom": 4.36872156884911, - "stoutland": 2.030793405415265, - "liepard": 5.090349332855951, - "musharna": 1.9216118381794733, - "unfezant": 5.604469675141714, - "boldore": 2.9304753085694095, - "swoobat": 6.5862823640603025, - "audino": 1.8548580501318415, - "gurdurr": 1.502521596841045, - "palpitoad": 3.2967160267037556, - "seismitoad": 5.4644989555993995, - "scolipede": 2.553982336978093, - "whimsicott": 2.246210226872702, - "lilligant": 2.470607875586735, - "basculin-red-striped": 2.564262485697145, - "basculin-blue-striped": 3.280158154307234, - "krookodile": 2.334653792259731, - "maractus": 1.9437417138192052, - "crustle": 1.6286258226268049, - "sigilyph": 2.713705962792303, - "cofagrigus": 3.544625062477282, - "garbodor": 1.5426667626751698, - "cinccino": 3.9010540658015493, - "vanillish": 1.8479906632676453, - "emolga": 2.5932586483729683, - "escavalier": 1.4552109436002976, - "amoonguss": 2.1607178616056153, - "jellicent": 1.5107081727579854, - "galvantula": 1.311264933735059, - "klang": 2.4082012480866304, - "klinklang": 2.909400447642701, - "beheeyem": 2.116290107906782, - "lampent": 2.7137202820140844, - "fraxure": 1.310413311461243, - "beartic": 1.4525412668895785, - "cryogonal": 1.595470844653385, - "accelgor": 2.167877971023265, - "stunfisk": 1.1114184289286433, - "stunfisk-galar": 2.1028258508376974, - "mienshao": 2.3780223496596666, - "druddigon": 1.6043264803637785, - "golurk": 1.9229911713052306, - "bisharp": 2.061768856588422, - "bouffalant": 1.0569960791264554, - "heatmor": 1.6434630703521693, - "durant": 2.521564469722036, - "diggersby": 2.773370004504958, - "talonflame": 2.542315633393664, - "pangoro": 1.2245299476358298, - "doublade": 2.962785825579087, - "malamar": 2.8079938249466263, - "barbaracle": 1.3052996631077558, - "heliolisk": 3.1709449112742876, - "tyrantrum": 1.3662408506735901, - "aurorus": 2.120486790395927, - "hawlucha": 2.5404248189515064, - "dedenne": 1.7713242203986044, - "klefki": 1.9980990068116484, - "trevenant": 2.9810237100168826, - "gourgeist-average": 6.45526522054041, - "charjabug": 3.5041838213946277, - "vikavolt": 1.4534525657489825, - "ribombee": 2.917229518917824, - "lycanroc-midday": 2.8966201691634454, - "lycanroc-midnight": 1.9958620248747354, - "mudsdale": 1.2754799480932317, - "araquanid": 1.8358374036912513, - "lurantis": 1.9468937850438919, - "shiinotic": 2.9454565127334207, - "salazzle": 2.800466015194895, - "bewear": 1.363781034889987, - "tsareena": 2.6532141295527225, - "comfey": 3.064823942270596, - "oranguru": 3.6344302674279554, - "passimian": 1.6426978595724213, - "palossand": 2.4314879862490963, - "pyukumuku": 37.272612748035044, - "togedemaru": 1.8995957302268462, - "mimikyu-disguised": 3.5812696727152113, - "greedent": 1.9796759050095667, - "orbeetle": 1.905410680982138, - "thievul": 1.531293526339396, - "eldegoss": 3.3726786046809885, - "dubwool": 2.388688822553199, - "drednaw": 1.08712309814556, - "boltund": 4.248453586766706, - "carkol": 2.1111405792438003, - "coalossal": 1.7623801321874488, - "sandaconda": 2.639377889523931, - "cramorant": 5.012890546296651, - "barraskewda": 4.130193162407129, - "toxtricity-amped": 2.248307907796428, - "centiskorch": 1.7664981961458843, - "grapploct": 1.1663787282431852, - "polteageist": 3.3804735193574773, - "hatterene": 2.201726685897963, - "grimmsnarl": 2.855919434480726, - "obstagoon": 2.0493311410677784, - "perrserker": 3.0303623027233018, - "alcremie": 0.9304133582196124, - "falinks": 2.0826775108808437, - "pincurchin": 2.6160668421408877, - "frosmoth": 1.9858839458181043, - "indeedee-male": 3.979766378481437, - "morpeko": 2.1121637264215103, - "copperajah": 1.913521828271958, - "duraludon": 1.4517025444089642, - "drakloak": 5.218877757154863, - "persian-alola": 3.588536321972294 + "ivysaur": 2.712154967996286, + "charmeleon": 3.3604962433863106, + "wartortle": 2.287203108572828, + "butterfree": 3.5993065017141026, + "raichu": 4.118199138831397, + "raichu-alola": 4.16837111317515, + "sandslash": 1.8802691492796222, + "sandslash-alola": 1.7600970287637026, + "nidoqueen": 2.4691752171713803, + "nidoking": 1.5761092628882962, + "clefairy": 6.995179483955672, + "clefable": 1.2202162449809575, + "jigglypuff": 17.35154143969762, + "wigglytuff": 1.2940861128602297, + "gloom": 4.396080251297976, + "vileplume": 2.342988833857083, + "dugtrio": 3.141432466181884, + "dugtrio-alola": 2.955350245948595, + "persian": 3.3963646653687425, + "persian-alola": 3.588536321972294, + "golduck": 2.611610726421265, + "poliwrath": 1.3076606681802587, + "kadabra": 4.124526401601026, + "machoke": 2.8020931342999207, + "tentacruel": 2.077555902123784, + "slowbro": 2.3624357783429875, + "magneton": 2.797865771247314, + "haunter": 5.304669688252108, + "kingler": 2.1436798028601225, + "exeggutor": 2.2020781251670556, + "marowak": 2.7942126955832567, + "marowak-alola": 2.4332617437362396, + "hitmonlee": 1.6114966459757527, + "hitmonchan": 1.5532338831051757, + "lickitung": 1.6443101494645158, + "weezing": 1.4584498862173745, + "weezing-galar": 1.8557088869572218, + "rhydon": 2.1405090199380785, + "chansey": 24.300192107278423, + "tangela": 4.620306906441731, + "kangaskhan": 1.5969228207653496, + "seadra": 3.8739500475059065, + "seaking": 2.054239925259543, + "starmie": 1.4624517280397429, + "mr-mime": 7.657809207805778, + "mr-mime-galar": 4.173839960754542, + "scyther": 2.2399854649486013, + "jynx": 4.739957619239611, + "electabuzz": 2.2008978503806875, + "magmar": 1.4604110696723012, + "tauros": 1.705182346278789, + "ditto": 4.1192794862638635, + "vaporeon": 2.7612091400218146, + "jolteon": 1.7125000834065573, + "flareon": 2.1258750697119857, + "porygon": 2.453673455917376, + "dragonair": 1.5661321314995251, + "noctowl": 5.101816379112231, + "lanturn": 1.6388108093259588, + "togetic": 3.6551852078923286, + "xatu": 4.608515182690746, + "bellossom": 1.7207740465684125, + "azumarill": 1.456319160649275, + "sudowoodo": 2.202259696034252, + "politoed": 2.179055588830339, + "quagsire": 3.865164442789702, + "slowking": 2.8171899078727103, + "dunsparce": 2.76231248749615, + "qwilfish": 3.0143083040171437, + "sneasel": 1.9234866770621843, + "piloswine": 1.3383865792019924, + "octillery": 1.9255734032886216, + "mantine": 2.1790201975345767, + "skarmory": 1.802035600686207, + "hitmontop": 1.8581816466271759, + "miltank": 2.909916345403391, + "grovyle": 6.438243365123531, + "sceptile": 1.1901520907164658, + "combusken": 2.2567237035365753, + "blaziken": 1.1344966259606983, + "marshtomp": 2.129302795207936, + "swampert": 1.0923892326674185, + "linoone": 4.246872636193387, + "linoone-galar": 4.047580991553508, + "pelipper": 5.362432078937701, + "ninjask": 5.327164358192257, + "exploud": 1.3361490562737919, + "lairon": 2.2231527319645554, + "manectric": 1.5675043714830081, + "roselia": 3.701594225071391, + "sharpedo": 3.9343062851245154, + "wailmer": 5.636040733190788, + "torkoal": 1.7138223883201595, + "flygon": 1.9325434525518257, + "altaria": 1.2414239342463556, + "whiscash": 1.8305915852318524, + "crawdaunt": 1.5928351597389925, + "claydol": 3.8989081969361887, + "cradily": 1.9584151381044732, + "armaldo": 1.493375079903444, + "dusclops": 3.718593651212997, + "absol": 1.54122831872747, + "glalie": 3.7135869186652863, + "sealeo": 2.7577773664550658, + "relicanth": 1.735582668558886, + "metang": 3.52141014875765, + "luxray": 3.2498330008494554, + "vespiquen": 2.047113847892185, + "cherrim": 4.989111795917312, + "gastrodon": 1.7308774703909042, + "drifblim": 5.064063388257065, + "lopunny": 2.9015466782113526, + "skuntank": 1.1387490308269603, + "bronzong": 4.027287128521636, + "munchlax": 1.9782919576692313, + "drapion": 1.763899633780658, + "abomasnow": 2.7227601897507183, + "froslass": 3.249063602357661, + "rotom": 4.373952663307599, + "stoutland": 2.0247587698680207, + "liepard": 5.070156956531556, + "musharna": 1.9270897964993778, + "unfezant": 5.594283391212217, + "boldore": 2.9218148692339083, + "swoobat": 6.598066145368863, + "audino": 1.8496196320600269, + "gurdurr": 1.494225944919958, + "palpitoad": 3.2907037356243904, + "seismitoad": 5.4504733972968635, + "scolipede": 2.5444311147655245, + "whimsicott": 2.236546229420285, + "lilligant": 2.462362720439159, + "basculin-red-striped": 2.561038821051943, + "basculin-blue-striped": 3.2753984214737155, + "krookodile": 2.3303717893330487, + "maractus": 1.9408477895478184, + "crustle": 1.6213536637794033, + "sigilyph": 2.7168429158556577, + "cofagrigus": 3.555576058966717, + "garbodor": 1.5374617458596522, + "cinccino": 3.891084602204066, + "vanillish": 1.8438047072583128, + "emolga": 2.5887267592913688, + "escavalier": 1.4506295801764053, + "amoonguss": 2.1560050834182576, + "jellicent": 1.5092157488181361, + "galvantula": 1.3070217767960024, + "klang": 2.4039928171830094, + "klinklang": 2.902675255116767, + "beheeyem": 2.119520375391966, + "lampent": 2.713106704373128, + "fraxure": 1.3059580441078684, + "beartic": 1.4480282751346474, + "cryogonal": 1.5924805917524103, + "accelgor": 2.157274929235855, + "stunfisk": 1.1092980396550483, + "stunfisk-galar": 2.1008332577850544, + "mienshao": 2.3674986450862785, + "druddigon": 1.6021058577343203, + "golurk": 1.920691971891881, + "bisharp": 2.0593265995395313, + "bouffalant": 1.0541241945706141, + "heatmor": 1.6410450245431787, + "durant": 2.5118358839465285, + "diggersby": 2.7673806964929746, + "talonflame": 2.537855156026059, + "pangoro": 1.2188582702141457, + "doublade": 2.959307912228346, + "malamar": 2.808437219434067, + "barbaracle": 1.3014400544839142, + "heliolisk": 3.1645376882938727, + "tyrantrum": 1.3616894869041198, + "aurorus": 2.1147082409973343, + "hawlucha": 2.5300636234786196, + "dedenne": 1.7638678991594898, + "klefki": 1.988582232255125, + "trevenant": 2.9758373774819447, + "gourgeist-average": 6.4608328415285765, + "charjabug": 3.496814490698457, + "vikavolt": 1.4480914549999702, + "ribombee": 2.8986713806119284, + "lycanroc-midday": 2.890247653141996, + "lycanroc-midnight": 1.9905722815041944, + "mudsdale": 1.2712229333194718, + "araquanid": 1.8294480604622543, + "lurantis": 1.9401531206202862, + "shiinotic": 2.9288896668373745, + "salazzle": 2.794936715507621, + "bewear": 1.3588310548067566, + "tsareena": 2.6473969924560636, + "comfey": 3.0511466608710944, + "oranguru": 3.650468802710261, + "passimian": 1.6352441924291652, + "palossand": 2.4327350652016673, + "pyukumuku": 37.19038294060165, + "togedemaru": 1.8950771604493366, + "mimikyu-disguised": 3.5776113643211733, + "greedent": 1.9771693782697861, + "orbeetle": 1.9079125756736297, + "thievul": 1.5293452391029454, + "eldegoss": 3.3655983129920415, + "dubwool": 2.379948420262413, + "drednaw": 1.0835458369505921, + "boltund": 4.244192998325751, + "carkol": 2.1069088610191886, + "coalossal": 1.7586375469369016, + "sandaconda": 2.6303690646410995, + "cramorant": 5.007494045388734, + "barraskewda": 4.123257133497261, + "toxtricity-amped": 2.243184844780649, + "centiskorch": 1.7629071097059714, + "grapploct": 1.1597121631734382, + "polteageist": 3.3873034779400886, + "hatterene": 2.1985376509995813, + "grimmsnarl": 2.8464548837245958, + "obstagoon": 2.04355226873355, + "perrserker": 3.027077606681526, + "alcremie": 0.9268139490018854, + "falinks": 2.0705348192005566, + "pincurchin": 2.6109998759589903, + "frosmoth": 1.9785123961631055, + "indeedee-male": 3.9878414188492597, + "morpeko": 2.1061757862199424, + "copperajah": 1.9076715378393856, + "duraludon": 1.4492233829036703, + "drakloak": 5.222607804298059 }, "golduck": { - "ivysaur": 2.670934015666779, - "charmeleon": 5.312161602699416, - "wartortle": 2.6655555873510473, - "butterfree": 4.146984501577411, - "raichu": 4.507782511090536, - "raichu-alola": 3.129287765472162, - "sandslash": 3.16815094382088, - "sandslash-alola": 2.2043114622735187, - "nidoqueen": 3.6202680188989507, - "nidoking": 2.405560008009164, - "clefairy": 8.665263615432044, - "clefable": 2.0085699219024935, - "jigglypuff": 26.202747489328807, - "wigglytuff": 1.9789999618355836, - "gloom": 5.1762376333783, - "vileplume": 2.4739412012367503, - "dugtrio": 4.463880275674205, - "dugtrio-alola": 4.532579955178978, - "persian": 4.18440568750268, - "persian-alola": 4.182957692529528, - "poliwrath": 1.766504889361638, - "kadabra": 3.8798912954446285, - "machoke": 3.955830847346106, - "tentacruel": 2.434710200426615, - "slowbro": 1.5992279587035485, - "magneton": 3.172019627593146, - "haunter": 4.128899616664763, - "kingler": 2.3006940386379133, - "exeggutor": 1.6571372904285588, - "marowak": 4.312053011050452, - "marowak-alola": 3.0957810105016277, - "hitmonlee": 2.399333708080105, - "hitmonchan": 2.0541801533033546, - "lickitung": 1.994707738553604, - "weezing": 1.763255549968334, - "weezing-galar": 2.8744664178810826, - "rhydon": 4.953537704003455, - "chansey": 26.629911958871595, - "tangela": 3.9701944423723408, - "kangaskhan": 1.8260388594565393, - "seadra": 3.8694593069022787, - "seaking": 2.337429792530279, - "starmie": 1.35438600452182, - "mr-mime": 6.5834728357694186, - "mr-mime-galar": 3.761077543396948, - "scyther": 2.6737945025955483, - "jynx": 4.573526207140063, - "electabuzz": 2.1020351864291187, - "magmar": 2.1868375924261034, - "tauros": 2.0854896123651234, - "ditto": 3.8116259232778376, - "vaporeon": 3.2260276535309647, - "jolteon": 1.7435737060238394, - "flareon": 3.0916295944538366, - "porygon": 2.6977478769060204, - "dragonair": 1.7177441018832873, - "noctowl": 5.6163005812589075, - "lanturn": 1.7875850936857556, - "togetic": 5.369935339439915, - "xatu": 3.806898665257564, - "bellossom": 2.0153767399508364, - "azumarill": 2.077003031586329, - "sudowoodo": 3.614292812464986, - "politoed": 2.482431699595184, - "quagsire": 5.040151696626278, - "slowking": 2.4539653019515297, - "dunsparce": 3.35711862329793, - "qwilfish": 3.1189798429103535, - "sneasel": 2.2149810527854275, - "piloswine": 2.2493817610046984, - "octillery": 2.2620509370675483, - "mantine": 2.5173868844819296, - "skarmory": 2.3034802341435765, - "hitmontop": 2.6792003687474546, - "miltank": 3.7358902970198704, - "grovyle": 6.782507582039174, - "sceptile": 1.2335708108379222, - "combusken": 4.501590453090759, - "blaziken": 2.2242340113899948, - "marshtomp": 2.6412593795154287, - "swampert": 1.3331045407940212, - "linoone": 5.128685403006591, - "linoone-galar": 4.627892097955317, - "pelipper": 5.288781396975038, - "ninjask": 7.325338839548272, - "exploud": 1.6498500341358795, - "lairon": 3.8278450407859346, - "manectric": 1.7353765975525142, - "roselia": 3.52020367631303, - "sharpedo": 4.6893297819561415, - "wailmer": 6.336456701509658, - "torkoal": 3.087054110423726, - "flygon": 2.4092622145662634, - "altaria": 1.5463849784216988, - "whiscash": 2.2216115697617025, - "crawdaunt": 1.866968221149934, - "claydol": 4.155422114899993, - "cradily": 2.0859733903339803, - "armaldo": 2.502917386316647, - "dusclops": 3.366737581168758, - "absol": 2.0497633094215253, - "glalie": 4.331852854076725, - "sealeo": 3.167851879847339, - "relicanth": 2.0928966916112435, - "metang": 2.9540090288689043, - "luxray": 3.455600457161803, - "vespiquen": 2.693159773163103, - "cherrim": 4.834513990789544, - "gastrodon": 2.156217314599449, - "drifblim": 3.8267307684809575, - "lopunny": 3.5622072880300175, - "skuntank": 1.5160878649447267, - "bronzong": 3.229505224220676, - "munchlax": 2.167372933021633, - "drapion": 2.5986055009782465, - "abomasnow": 2.8448822515530576, - "froslass": 3.051132817144995, - "rotom": 3.4438210636158977, - "stoutland": 2.3790006913330664, - "liepard": 6.979074339227604, - "musharna": 1.4444278775191697, - "unfezant": 6.5534115016473535, - "boldore": 4.93144647232186, - "swoobat": 5.444949044644419, - "audino": 2.274427872710926, - "gurdurr": 2.3644604385619683, - "palpitoad": 3.904531384961767, - "seismitoad": 6.323625723141503, - "scolipede": 3.290158057568693, - "whimsicott": 2.649403639514414, - "lilligant": 2.5154194132604912, - "basculin-red-striped": 2.683171207529154, - "basculin-blue-striped": 3.452159268519512, - "krookodile": 3.7276945469198646, - "maractus": 1.7801746381206274, - "crustle": 2.925363961839582, - "sigilyph": 2.361231850774459, - "cofagrigus": 2.7201587234659304, - "garbodor": 1.838673296170254, - "cinccino": 4.68306147274985, - "vanillish": 2.2564799223624643, - "emolga": 2.655211437900551, - "escavalier": 1.8675610064246175, - "amoonguss": 2.178751897829434, - "jellicent": 1.0504845923733734, - "galvantula": 1.4014325116991553, - "klang": 2.7186770361616226, - "klinklang": 3.6577749122051992, - "beheeyem": 1.7473940184263062, - "lampent": 3.8048291095381543, - "fraxure": 1.351239372536984, - "beartic": 1.8695001009764778, - "cryogonal": 1.8624626598710203, - "accelgor": 2.9349707011380066, - "stunfisk": 1.6014726634443992, - "stunfisk-galar": 3.155770981971342, - "mienshao": 3.360398239041504, - "druddigon": 1.6929449008769222, - "golurk": 2.4518785926131357, - "bisharp": 2.5197821577467225, - "bouffalant": 1.3050199704607426, - "heatmor": 2.594914131262568, - "durant": 3.2706028567253544, - "diggersby": 4.12700724744166, - "talonflame": 4.055624041418157, - "pangoro": 1.785265329139968, - "doublade": 2.870976352778817, - "malamar": 2.752676820251639, - "barbaracle": 1.5746244185620415, - "heliolisk": 3.2473952732349662, - "tyrantrum": 1.7051292042132977, - "aurorus": 2.817048043732952, - "hawlucha": 3.5538843024121283, - "dedenne": 2.701700199153051, - "klefki": 3.2233529618432746, - "trevenant": 2.2553204992134477, - "gourgeist-average": 4.608109811960826, - "charjabug": 3.7989422398505894, - "vikavolt": 1.813073685975225, - "ribombee": 4.542456816976037, - "lycanroc-midday": 4.250486173974005, - "lycanroc-midnight": 2.9940985768128563, - "mudsdale": 2.0896319456823877, - "araquanid": 2.286504716344008, - "lurantis": 2.0378829639389013, - "shiinotic": 4.101950313966881, - "salazzle": 4.27940374632366, - "bewear": 1.8107010765164233, - "tsareena": 2.5514864501790075, - "comfey": 4.02125278328143, - "oranguru": 2.5689899879765066, - "passimian": 2.429246346392376, - "palossand": 2.8701485307338888, - "pyukumuku": 38.802713094570024, - "togedemaru": 2.085399997920758, - "mimikyu-disguised": 3.841450938712225, - "greedent": 2.218760281483, - "orbeetle": 1.7867606121724784, - "thievul": 1.8121072778356058, - "eldegoss": 3.2667888551367783, - "dubwool": 2.8322779740042763, - "drednaw": 1.3451411971439788, - "boltund": 4.33102129184204, - "carkol": 4.706428841970918, - "coalossal": 3.9512598364659883, - "sandaconda": 4.476535952474391, - "cramorant": 5.491911354881038, - "barraskewda": 4.223539223869843, - "toxtricity-amped": 2.4762920171217075, - "centiskorch": 2.5701964014132477, - "grapploct": 1.7660245263342509, - "polteageist": 2.3547823398734433, - "hatterene": 2.4683377437655065, - "grimmsnarl": 3.764472105934976, - "obstagoon": 2.486205492304358, - "perrserker": 3.4573957084838893, - "alcremie": 1.3784448388072985, - "falinks": 3.3704701513387834, - "pincurchin": 2.8644618242671163, - "frosmoth": 2.5410725020487823, - "indeedee-male": 3.151616316533099, - "morpeko": 2.5084835713665417, - "copperajah": 2.524516906648593, - "duraludon": 1.3550283001613317, - "drakloak": 3.7003630108151704, - "golduck": 2.9623408479305553 + "ivysaur": 2.6633694572240203, + "charmeleon": 5.327490458626169, + "wartortle": 2.6673354404564495, + "butterfree": 4.141698240602103, + "raichu": 4.5019966428615, + "raichu-alola": 3.1242211492770733, + "sandslash": 3.1724607042443616, + "sandslash-alola": 2.204912239857794, + "nidoqueen": 3.6256031897233143, + "nidoking": 2.4095195536828014, + "clefairy": 8.66585251037797, + "clefable": 2.0094498909782144, + "jigglypuff": 26.20842219021428, + "wigglytuff": 1.9790183966830073, + "gloom": 5.170503118806187, + "vileplume": 2.4674896094309906, + "dugtrio": 4.4713647927655815, + "dugtrio-alola": 4.5416785315161174, + "persian": 4.1823936209877575, + "persian-alola": 4.182504130196536, + "golduck": 2.9623408479305553, + "poliwrath": 1.762528139017675, + "kadabra": 3.8787700259297617, + "machoke": 3.9568149791885956, + "tentacruel": 2.4363346155646437, + "slowbro": 1.5979477644272233, + "magneton": 3.1690969498230253, + "haunter": 4.122288349530191, + "kingler": 2.2999659204087033, + "exeggutor": 1.652972576044621, + "marowak": 4.320160266425471, + "marowak-alola": 3.1033734614200092, + "hitmonlee": 2.401203184120085, + "hitmonchan": 2.0546443796195755, + "lickitung": 1.9940993255654207, + "weezing": 1.76400992128151, + "weezing-galar": 2.8767512488664955, + "rhydon": 4.966239586836868, + "chansey": 26.612341558695388, + "tangela": 3.9556198857545133, + "kangaskhan": 1.8255568050119453, + "seadra": 3.867157105172003, + "seaking": 2.337076495687781, + "starmie": 1.3534810185875927, + "mr-mime": 6.583668902117097, + "mr-mime-galar": 3.761371137998291, + "scyther": 2.673037589715447, + "jynx": 4.56391212619358, + "electabuzz": 2.097394105221396, + "magmar": 2.192887190550758, + "tauros": 2.0854718391719693, + "ditto": 3.7891252683013605, + "vaporeon": 3.221571864711641, + "jolteon": 1.74110551977994, + "flareon": 3.099111228885768, + "porygon": 2.696196001023045, + "dragonair": 1.7152094224197385, + "noctowl": 5.615900030146584, + "lanturn": 1.7866446121452624, + "togetic": 5.376626361192293, + "xatu": 3.8065075719454047, + "bellossom": 2.0098902614429006, + "azumarill": 2.079033423887097, + "sudowoodo": 3.618658771852436, + "politoed": 2.482233665341898, + "quagsire": 5.046070870296781, + "slowking": 2.4542250835436645, + "dunsparce": 3.358845098867258, + "qwilfish": 3.1187712139353705, + "sneasel": 2.214860375396001, + "piloswine": 2.254310168950342, + "octillery": 2.262386514884904, + "mantine": 2.5146279571136785, + "skarmory": 2.305359929657399, + "hitmontop": 2.6811942800289925, + "miltank": 3.7345402784103063, + "grovyle": 6.763889083283758, + "sceptile": 1.2297578928396082, + "combusken": 4.512200681726382, + "blaziken": 2.230388298124986, + "marshtomp": 2.645153107142389, + "swampert": 1.3348353570520288, + "linoone": 5.1268522646934915, + "linoone-galar": 4.626200891315509, + "pelipper": 5.281563410521006, + "ninjask": 7.322914260229224, + "exploud": 1.6500910297307776, + "lairon": 3.8355635701468405, + "manectric": 1.7350478248061123, + "roselia": 3.511696830106305, + "sharpedo": 4.686377812331799, + "wailmer": 6.338854482892136, + "torkoal": 3.096089748163737, + "flygon": 2.409931575826806, + "altaria": 1.5455879223415758, + "whiscash": 2.2232052032915104, + "crawdaunt": 1.8655248393902566, + "claydol": 4.159949074051401, + "cradily": 2.082102489112937, + "armaldo": 2.505904535808224, + "dusclops": 3.3646774593235937, + "absol": 2.051009513353761, + "glalie": 4.335208739555254, + "sealeo": 3.1699616282621834, + "relicanth": 2.092903820957002, + "metang": 2.9526775418630664, + "luxray": 3.4489861914848277, + "vespiquen": 2.6926514021265495, + "cherrim": 4.819541396955585, + "gastrodon": 2.1575269942007615, + "drifblim": 3.8176089674975833, + "lopunny": 3.561497161904602, + "skuntank": 1.5173075734957553, + "bronzong": 3.231269237363601, + "munchlax": 2.1664439424689426, + "drapion": 2.6009138144044046, + "abomasnow": 2.8385829878946085, + "froslass": 3.0523636383382957, + "rotom": 3.437751020886024, + "stoutland": 2.377461841537114, + "liepard": 6.979181646618901, + "musharna": 1.44295813349549, + "unfezant": 6.555039108139658, + "boldore": 4.937706182368384, + "swoobat": 5.444354834855346, + "audino": 2.275319012588967, + "gurdurr": 2.3649219370005112, + "palpitoad": 3.9075505683894938, + "seismitoad": 6.320604191225755, + "scolipede": 3.290792759023623, + "whimsicott": 2.643738577378488, + "lilligant": 2.5080337898942293, + "basculin-red-striped": 2.684053874630827, + "basculin-blue-striped": 3.4530008457633423, + "krookodile": 3.732880368726044, + "maractus": 1.7713493189322662, + "crustle": 2.9289468011250634, + "sigilyph": 2.361946842714736, + "cofagrigus": 2.718864731151371, + "garbodor": 1.8387284114796767, + "cinccino": 4.684411228469517, + "vanillish": 2.2585099970092353, + "emolga": 2.6512098684358447, + "escavalier": 1.8685031062402093, + "amoonguss": 2.1736600702517554, + "jellicent": 1.0457662628553794, + "galvantula": 1.3985589445679276, + "klang": 2.7168923863611196, + "klinklang": 3.6606835781898583, + "beheeyem": 1.7471025941796645, + "lampent": 3.815949688176752, + "fraxure": 1.349417057784323, + "beartic": 1.8714357979743796, + "cryogonal": 1.863416436780303, + "accelgor": 2.934454035266138, + "stunfisk": 1.6023506065337751, + "stunfisk-galar": 3.160425395147094, + "mienshao": 3.3606754131790955, + "druddigon": 1.6925125818373432, + "golurk": 2.4544966408664672, + "bisharp": 2.5189005823182744, + "bouffalant": 1.305734658664858, + "heatmor": 2.60169222379477, + "durant": 3.268978478571675, + "diggersby": 4.1326553799239925, + "talonflame": 4.066677005269655, + "pangoro": 1.785875773020949, + "doublade": 2.8737439410335845, + "malamar": 2.7497317756179713, + "barbaracle": 1.5743123985181777, + "heliolisk": 3.231987755461054, + "tyrantrum": 1.7044150581120407, + "aurorus": 2.8167220171193925, + "hawlucha": 3.5539217167309034, + "dedenne": 2.698677282816472, + "klefki": 3.227017027780108, + "trevenant": 2.246959208013175, + "gourgeist-average": 4.602897615777001, + "charjabug": 3.7917773090961493, + "vikavolt": 1.8122509385161, + "ribombee": 4.542571088103561, + "lycanroc-midday": 4.254934617169552, + "lycanroc-midnight": 2.9971312641200365, + "mudsdale": 2.0927789900899256, + "araquanid": 2.2822613686932627, + "lurantis": 2.0326731223245034, + "shiinotic": 4.0975660920523405, + "salazzle": 4.2907264222381984, + "bewear": 1.809594701729218, + "tsareena": 2.5441927812405494, + "comfey": 4.017105977107682, + "oranguru": 2.5682651053662755, + "passimian": 2.4298833557833595, + "palossand": 2.8732387387588076, + "pyukumuku": 38.7537622090273, + "togedemaru": 2.083902857011012, + "mimikyu-disguised": 3.8385246604133165, + "greedent": 2.2189182056598122, + "orbeetle": 1.7859954301486216, + "thievul": 1.8128608338536947, + "eldegoss": 3.256426599533581, + "dubwool": 2.8289453920448246, + "drednaw": 1.3453270445424277, + "boltund": 4.325019653588186, + "carkol": 4.723458469812611, + "coalossal": 3.9652868420482257, + "sandaconda": 4.482266332234338, + "cramorant": 5.492713961862788, + "barraskewda": 4.2213036297676, + "toxtricity-amped": 2.4712083296967737, + "centiskorch": 2.5755169606471946, + "grapploct": 1.767010403977653, + "polteageist": 2.350265646735235, + "hatterene": 2.468589399290888, + "grimmsnarl": 3.7657900327323466, + "obstagoon": 2.483113672598402, + "perrserker": 3.457346819314174, + "alcremie": 1.378778011637685, + "falinks": 3.371907924388226, + "pincurchin": 2.8614379717417626, + "frosmoth": 2.539164893353113, + "indeedee-male": 3.152830524454979, + "morpeko": 2.504411123294471, + "copperajah": 2.5274680932097366, + "duraludon": 1.3528458796456668, + "drakloak": 3.692858127907644 }, "poliwrath": { - "ivysaur": 2.8224450530304823, - "charmeleon": 6.07016725576937, - "wartortle": 3.1614635581520147, - "butterfree": 5.12619382828859, - "raichu": 5.396969067234341, - "raichu-alola": 3.573482877536576, - "sandslash": 2.7420766329963246, - "sandslash-alola": 3.2415692056526924, - "nidoqueen": 3.9432947693056413, - "nidoking": 2.6437592002330232, - "clefairy": 10.173794170754064, - "clefable": 2.0089952665602557, - "jigglypuff": 26.502852115860854, - "wigglytuff": 1.9104738905348944, - "gloom": 5.04259235039432, - "vileplume": 2.680469912357262, - "dugtrio": 5.875419676730507, - "dugtrio-alola": 5.435034190992526, - "persian": 5.307811244448826, - "persian-alola": 5.98792527235668, - "golduck": 3.6025592232335244, - "kadabra": 4.111826546108118, - "machoke": 4.262599390160181, - "tentacruel": 2.8476060690033576, - "slowbro": 1.5025771368565024, - "magneton": 3.685802051384229, - "haunter": 4.698614554698048, - "kingler": 2.4556109081259536, - "exeggutor": 1.6827836636722078, - "marowak": 4.245825250705678, - "marowak-alola": 2.9569851553131388, - "hitmonlee": 2.9087923503866504, - "hitmonchan": 2.4229916996399403, - "lickitung": 2.689401843062467, - "weezing": 1.637323960456678, - "weezing-galar": 2.4771159418837705, - "rhydon": 3.5391951295902118, - "chansey": 40.23278851548602, - "tangela": 3.9255558117074028, - "kangaskhan": 2.3770073646792884, - "seadra": 4.222932332448245, - "seaking": 2.628082312017872, - "starmie": 1.3123609127968923, - "mr-mime": 6.953051519881562, - "mr-mime-galar": 4.039643135979986, - "scyther": 2.849895167638511, - "jynx": 4.787976936468143, - "electabuzz": 2.561725875425746, - "magmar": 2.818697960350827, - "tauros": 2.4524447604971598, - "ditto": 2.823826683030078, - "vaporeon": 3.8970121905732613, - "jolteon": 2.126579848622671, - "flareon": 4.2457336857988555, - "porygon": 3.5675216732095705, - "dragonair": 1.8848216116956062, - "noctowl": 6.347572473231752, - "lanturn": 2.1605575789765776, - "togetic": 5.787327117969975, - "xatu": 3.58291802533217, - "bellossom": 1.9924395516051445, - "azumarill": 2.1940645293187253, - "sudowoodo": 3.2720047195337285, - "politoed": 2.8704986375656887, - "quagsire": 5.465213936091514, - "slowking": 2.5486440521691063, - "dunsparce": 4.109814788504248, - "qwilfish": 3.4718356246415647, - "sneasel": 4.293852340902934, - "piloswine": 2.2142613279926815, - "octillery": 2.65148529068109, - "mantine": 2.6695597021529, - "skarmory": 1.9839988443519863, - "hitmontop": 3.0007221033367357, - "miltank": 3.9886585014403204, - "grovyle": 7.4513622900577134, - "sceptile": 1.3610117694037105, - "combusken": 4.933060574943822, - "blaziken": 2.4392742270515755, - "marshtomp": 3.081439712098966, - "swampert": 1.4722562875111342, - "linoone": 6.701350662025302, - "linoone-galar": 8.858626014814527, - "pelipper": 5.240805581139651, - "ninjask": 8.630028323383975, - "exploud": 2.181711599117308, - "lairon": 3.610714507319667, - "manectric": 1.844388205289302, - "roselia": 3.592519696879438, - "sharpedo": 7.058458735252215, - "wailmer": 7.116339474509367, - "torkoal": 2.5153100013743477, - "flygon": 2.6438805935078005, - "altaria": 1.50891720222732, - "whiscash": 2.6021425982673927, - "crawdaunt": 2.8340602702290267, - "claydol": 4.559318520236193, - "cradily": 2.7665139440513946, - "armaldo": 2.648258822000165, - "dusclops": 3.727668689512311, - "absol": 2.645754184926006, - "glalie": 5.538675502118736, - "sealeo": 4.697429665815866, - "relicanth": 2.329010184501504, - "metang": 2.864175966795618, - "luxray": 3.770909027999317, - "vespiquen": 2.861985236014837, - "cherrim": 5.290862859332942, - "gastrodon": 2.665955941019299, - "drifblim": 4.135109012284997, - "lopunny": 4.613185623930315, - "skuntank": 1.6497577232772018, - "bronzong": 3.196781972940653, - "munchlax": 3.2250882122529347, - "drapion": 2.6390065742296085, - "abomasnow": 3.845411779717675, - "froslass": 3.2661508881086356, - "rotom": 3.7806381544848247, - "stoutland": 3.049779113297835, - "liepard": 8.716543928053582, - "musharna": 1.4614037694424873, - "unfezant": 5.699551435981477, - "boldore": 3.8877679218435253, - "swoobat": 5.120321141937396, - "audino": 2.8535782260164986, - "gurdurr": 2.2154020660813787, - "palpitoad": 4.301199013355493, - "seismitoad": 6.808118023964032, - "scolipede": 3.5329933885285216, - "whimsicott": 2.5947057187640974, - "lilligant": 2.810504560957175, - "basculin-red-striped": 3.061330511862396, - "basculin-blue-striped": 4.276519930785845, - "krookodile": 4.04414950083331, - "maractus": 1.9758595711302376, - "crustle": 2.7504491771733384, - "sigilyph": 2.2803321724727637, - "cofagrigus": 2.496933212195472, - "garbodor": 1.9746282732238212, - "cinccino": 5.952894754548045, - "vanillish": 2.919613576064495, - "emolga": 2.8471717231712725, - "escavalier": 2.170168136591996, - "amoonguss": 2.2949293653746032, - "jellicent": 1.0051598360064076, - "galvantula": 1.5537266812297177, - "klang": 3.4595538520822755, - "klinklang": 4.271656747577872, - "beheeyem": 1.9575659570666222, - "lampent": 4.227247373870979, - "fraxure": 1.4967520458796102, - "beartic": 2.3631699671663737, - "cryogonal": 2.6774290433655072, - "accelgor": 3.7773642621923935, - "stunfisk": 2.012170345297686, - "stunfisk-galar": 3.304964767348311, - "mienshao": 3.695822743636327, - "druddigon": 1.822839290841976, - "golurk": 2.7216530841128814, - "bisharp": 4.043153449690369, - "bouffalant": 1.722934806731157, - "heatmor": 2.8497102610831866, - "durant": 2.89087457938189, - "diggersby": 4.618171400700448, - "talonflame": 4.152079584430097, - "pangoro": 2.2743765005212273, - "doublade": 2.1180621180100303, - "malamar": 2.7918402083066667, - "barbaracle": 1.8612333078651055, - "heliolisk": 4.820278365693762, - "tyrantrum": 1.7824294948048056, - "aurorus": 4.194116391062771, - "hawlucha": 3.7543635901905947, - "dedenne": 2.7295258640731435, - "klefki": 3.196274127950411, - "trevenant": 2.4716430732847434, - "gourgeist-average": 4.463072615862542, - "charjabug": 3.882165843830386, - "vikavolt": 1.9408488524011367, - "ribombee": 5.039853448541157, - "lycanroc-midday": 4.928143607602259, - "lycanroc-midnight": 3.458055250659762, - "mudsdale": 2.203701949292199, - "araquanid": 2.6288787066148087, - "lurantis": 2.2687371083402685, - "shiinotic": 3.8994634895559286, - "salazzle": 4.6517143218181864, - "bewear": 2.146235584588827, - "tsareena": 2.707295199933399, - "comfey": 4.355399949408921, - "oranguru": 2.6159177761807575, - "passimian": 2.3117258349751637, - "palossand": 2.680393800725103, - "pyukumuku": 42.01004183566825, - "togedemaru": 2.8392919518593, - "mimikyu-disguised": 4.592729200874147, - "greedent": 2.5188703217767774, - "orbeetle": 1.8897088643320394, - "thievul": 2.728696619764394, - "eldegoss": 3.5844655438477195, - "dubwool": 3.5099439295828025, - "drednaw": 1.6999238868219648, - "boltund": 4.864206556451367, - "carkol": 4.827799767691735, - "coalossal": 3.991563712173809, - "sandaconda": 3.976201310841465, - "cramorant": 6.429125801936616, - "barraskewda": 4.970622679906846, - "toxtricity-amped": 2.7108022097399385, - "centiskorch": 3.2104162450495526, - "grapploct": 1.9514107435015404, - "polteageist": 2.893733328723785, - "hatterene": 2.396642751275781, - "grimmsnarl": 4.434932874292203, - "obstagoon": 4.200837087491449, - "perrserker": 3.8706522206140734, - "alcremie": 1.4898651195881567, - "falinks": 3.23891839479898, - "pincurchin": 3.1095731403086297, - "frosmoth": 3.014480335327533, - "indeedee-male": 3.521100475677792, - "morpeko": 3.289371689108912, - "copperajah": 3.2596545160775463, - "duraludon": 1.718147190736827, - "drakloak": 4.023439450900632, - "poliwrath": 2.0482420923467384 + "ivysaur": 2.818645125883597, + "charmeleon": 6.093520548563171, + "wartortle": 3.1758384210265245, + "butterfree": 5.129235094046054, + "raichu": 5.401610110243498, + "raichu-alola": 3.569714558936057, + "sandslash": 2.7484586339474255, + "sandslash-alola": 3.253133545823626, + "nidoqueen": 3.9510207308338465, + "nidoking": 2.6499247601039135, + "clefairy": 10.187810230044613, + "clefable": 2.009934204319598, + "jigglypuff": 26.496506686762462, + "wigglytuff": 1.910455712794028, + "gloom": 5.036278079145877, + "vileplume": 2.6784756173272815, + "dugtrio": 5.89616681441535, + "dugtrio-alola": 5.460062796656046, + "persian": 5.316460929409926, + "persian-alola": 6.011059113247524, + "golduck": 3.6189879581346376, + "poliwrath": 2.0482420923467384, + "kadabra": 4.109714093458747, + "machoke": 4.273499895296244, + "tentacruel": 2.861170073008676, + "slowbro": 1.4997132769658406, + "magneton": 3.690709914303127, + "haunter": 4.692034227304143, + "kingler": 2.460883163405716, + "exeggutor": 1.6794049766679335, + "marowak": 4.25861301514323, + "marowak-alola": 2.963157133103949, + "hitmonlee": 2.918155685178223, + "hitmonchan": 2.428672702828393, + "lickitung": 2.6974332371059093, + "weezing": 1.6390251667789504, + "weezing-galar": 2.4758778623024815, + "rhydon": 3.549387253359882, + "chansey": 40.356970306379516, + "tangela": 3.9157820927205336, + "kangaskhan": 2.383617045432741, + "seadra": 4.231559030013852, + "seaking": 2.6348886716045476, + "starmie": 1.3115558899198965, + "mr-mime": 6.94313932196589, + "mr-mime-galar": 4.039662580401391, + "scyther": 2.8505794610610433, + "jynx": 4.783127867600327, + "electabuzz": 2.5617783801921687, + "magmar": 2.8300064162481844, + "tauros": 2.458688646929869, + "ditto": 2.8047055264339633, + "vaporeon": 3.909109020020776, + "jolteon": 2.128533504477754, + "flareon": 4.262204129839342, + "porygon": 3.5761047816057765, + "dragonair": 1.8860846326673775, + "noctowl": 6.3534432818486115, + "lanturn": 2.168659602551587, + "togetic": 5.79229878364252, + "xatu": 3.57572799370576, + "bellossom": 1.9893920271493069, + "azumarill": 2.1995248127726192, + "sudowoodo": 3.281518747818903, + "politoed": 2.879971747510856, + "quagsire": 5.488368105891514, + "slowking": 2.5520843551778416, + "dunsparce": 4.120735538685378, + "qwilfish": 3.480162060324444, + "sneasel": 4.314690644255249, + "piloswine": 2.223086908548731, + "octillery": 2.6613353888509463, + "mantine": 2.6711506807195775, + "skarmory": 1.9867718527266478, + "hitmontop": 3.0083747403682652, + "miltank": 3.991758548786223, + "grovyle": 7.447787742605479, + "sceptile": 1.3601918584683177, + "combusken": 4.949335839277378, + "blaziken": 2.448375794244408, + "marshtomp": 3.0965586287063553, + "swampert": 1.4778910942546577, + "linoone": 6.719839913076097, + "linoone-galar": 8.900124552604709, + "pelipper": 5.233193549015129, + "ninjask": 8.646277289891554, + "exploud": 2.1878811957781954, + "lairon": 3.625042767122108, + "manectric": 1.8463120780359485, + "roselia": 3.587482001796694, + "sharpedo": 7.087065157345794, + "wailmer": 7.137939862353532, + "torkoal": 2.52268168471627, + "flygon": 2.6499387285068634, + "altaria": 1.5088043853991613, + "whiscash": 2.607920202845775, + "crawdaunt": 2.8446836623372795, + "claydol": 4.562557276098628, + "cradily": 2.770191875216776, + "armaldo": 2.6564707074163314, + "dusclops": 3.7281637458072012, + "absol": 2.655707575979304, + "glalie": 5.559576115852407, + "sealeo": 4.72277103212256, + "relicanth": 2.336647968597809, + "metang": 2.86444400295349, + "luxray": 3.770587514296275, + "vespiquen": 2.8627688506977345, + "cherrim": 5.285377191934328, + "gastrodon": 2.6775360869638667, + "drifblim": 4.122964333533713, + "lopunny": 4.622705798871057, + "skuntank": 1.6554668073960888, + "bronzong": 3.198330731690915, + "munchlax": 3.235154977313406, + "drapion": 2.647577031200031, + "abomasnow": 3.848591430984105, + "froslass": 3.2680970156159246, + "rotom": 3.775447057128349, + "stoutland": 3.0561486934856643, + "liepard": 8.735964434601376, + "musharna": 1.4589773274324473, + "unfezant": 5.69483634754776, + "boldore": 3.8968660354937326, + "swoobat": 5.109940853283607, + "audino": 2.8601386334436665, + "gurdurr": 2.2180114155005066, + "palpitoad": 4.313580762540214, + "seismitoad": 6.815771961872723, + "scolipede": 3.5400795034410537, + "whimsicott": 2.588776769057079, + "lilligant": 2.8089826548559462, + "basculin-red-striped": 3.07123291405925, + "basculin-blue-striped": 4.298008816920418, + "krookodile": 4.060484503500835, + "maractus": 1.9713262484169694, + "crustle": 2.757975516721686, + "sigilyph": 2.277698817796047, + "cofagrigus": 2.4923672506845813, + "garbodor": 1.9769023157118821, + "cinccino": 5.9698886256694905, + "vanillish": 2.9293776105012643, + "emolga": 2.84414972582878, + "escavalier": 2.1783583677325504, + "amoonguss": 2.292734654279658, + "jellicent": 1.0006503496949934, + "galvantula": 1.5529478506948649, + "klang": 3.4674499509566408, + "klinklang": 4.284888463137449, + "beheeyem": 1.9587647685271041, + "lampent": 4.239660335657781, + "fraxure": 1.497981404419217, + "beartic": 2.372487667421473, + "cryogonal": 2.687591306702379, + "accelgor": 3.787092385586575, + "stunfisk": 2.0170764325535355, + "stunfisk-galar": 3.317369167201014, + "mienshao": 3.703703076960628, + "druddigon": 1.8255218345758502, + "golurk": 2.7250828103555116, + "bisharp": 4.054893272356747, + "bouffalant": 1.7291694002453828, + "heatmor": 2.8598265405026084, + "durant": 2.8930322490046256, + "diggersby": 4.635360852491191, + "talonflame": 4.16041320436729, + "pangoro": 2.28221814538152, + "doublade": 2.116199102912243, + "malamar": 2.7917672304952266, + "barbaracle": 1.8668394378535758, + "heliolisk": 4.817040655004137, + "tyrantrum": 1.7853209516018107, + "aurorus": 4.209104860015922, + "hawlucha": 3.7596132961353863, + "dedenne": 2.72721283380445, + "klefki": 3.2005627636590512, + "trevenant": 2.464609282235913, + "gourgeist-average": 4.457713047527767, + "charjabug": 3.8794265806078028, + "vikavolt": 1.9431962050463238, + "ribombee": 5.042665235807901, + "lycanroc-midday": 4.9487236331713635, + "lycanroc-midnight": 3.472099560282107, + "mudsdale": 2.2100308033039076, + "araquanid": 2.6332894309296995, + "lurantis": 2.2682354805050533, + "shiinotic": 3.8932188399911, + "salazzle": 4.666171374338256, + "bewear": 2.15053142532165, + "tsareena": 2.7034109006075733, + "comfey": 4.3513844661840775, + "oranguru": 2.6134956292670095, + "passimian": 2.3141955490881325, + "palossand": 2.682181872396005, + "pyukumuku": 42.038083886270684, + "togedemaru": 2.8458405742467976, + "mimikyu-disguised": 4.5926188016036305, + "greedent": 2.522794165295318, + "orbeetle": 1.8868360673401519, + "thievul": 2.741122631349496, + "eldegoss": 3.5809365305396037, + "dubwool": 3.5151850311679755, + "drednaw": 1.706739469462879, + "boltund": 4.8691463759562446, + "carkol": 4.850647924118601, + "coalossal": 4.013351627410779, + "sandaconda": 3.984705005396679, + "cramorant": 6.455874815349999, + "barraskewda": 4.98547841673017, + "toxtricity-amped": 2.708257948123011, + "centiskorch": 3.2196705266623784, + "grapploct": 1.9566415390785201, + "polteageist": 2.8891518069562347, + "hatterene": 2.392747794533859, + "grimmsnarl": 4.448938472531088, + "obstagoon": 4.212684171097641, + "perrserker": 3.8805026545796104, + "alcremie": 1.490719654464994, + "falinks": 3.2449985447176894, + "pincurchin": 3.1150635004271674, + "frosmoth": 3.0161303674906685, + "indeedee-male": 3.525353310792502, + "morpeko": 3.2942812061171756, + "copperajah": 3.2720162651239257, + "duraludon": 1.7195586754978003, + "drakloak": 4.018896606604132 }, "kadabra": { - "ivysaur": 4.42683268469909, - "charmeleon": 4.009136558329969, - "wartortle": 2.8686142622134936, - "butterfree": 4.0350680114942, - "raichu": 5.49448781807234, - "raichu-alola": 3.0987979981716443, - "sandslash": 1.7864936798844913, - "sandslash-alola": 1.4608394563525655, - "nidoqueen": 3.6854558711184886, - "nidoking": 2.1813474147840997, - "clefairy": 9.483423938049196, - "clefable": 2.0399978728671604, - "jigglypuff": 27.598779463699795, - "wigglytuff": 2.05616885475349, - "gloom": 7.95716935536046, - "vileplume": 3.8125139986290977, - "dugtrio": 3.079810845387134, - "dugtrio-alola": 2.153801961104804, - "persian": 3.6635905851027544, - "persian-alola": 3.378766080423863, - "golduck": 2.7740678139098747, - "poliwrath": 2.3844341985883797, - "machoke": 4.582998823502249, - "tentacruel": 3.064990550797763, - "slowbro": 1.7485324544194334, - "magneton": 2.6065897228359525, - "haunter": 6.20313816684989, - "kingler": 2.414808859341498, - "exeggutor": 1.6762340511089304, - "marowak": 2.4052769332141084, - "marowak-alola": 1.6133798148482157, - "hitmonlee": 3.1043392393946236, - "hitmonchan": 2.5578146670533206, - "lickitung": 1.9325420005226723, - "weezing": 2.262002642763065, - "weezing-galar": 3.952321053500204, - "rhydon": 2.063745054758421, - "chansey": 25.497871064871813, - "tangela": 4.558754770881816, - "kangaskhan": 1.4177173709386628, - "seadra": 4.53688897295307, - "seaking": 2.046282768225286, - "starmie": 1.2885752825611436, - "mr-mime": 6.48838884028148, - "mr-mime-galar": 3.267699395467571, - "scyther": 1.9189690042338172, - "jynx": 3.675558193965132, - "electabuzz": 2.546766427350282, - "magmar": 1.688825999682292, - "tauros": 1.7000432286469374, - "ditto": 3.08936238260163, - "vaporeon": 3.2082448776844483, - "jolteon": 1.8460446360891771, - "flareon": 2.1425549058375726, - "porygon": 2.6202646087953267, - "dragonair": 1.8434434947214826, - "noctowl": 5.177621100149161, - "lanturn": 1.9850933756128528, - "togetic": 4.97402970134303, - "xatu": 3.6260227255405564, - "bellossom": 2.3294398702841583, - "azumarill": 1.973375613616593, - "sudowoodo": 2.3750190572195042, - "politoed": 2.368922834142527, - "quagsire": 5.053880943297866, - "slowking": 1.9276457919040793, - "dunsparce": 2.6768712799316727, - "qwilfish": 4.190616670772091, - "sneasel": 1.7692428611890378, - "piloswine": 1.5338628459936907, - "octillery": 2.0972362094374155, - "mantine": 2.3550484642446667, - "skarmory": 1.2384192609167344, - "hitmontop": 3.3613095882192825, - "miltank": 3.0432485649375014, - "grovyle": 7.984433722211781, - "sceptile": 1.2642665644185112, - "combusken": 4.9792566128055835, - "blaziken": 2.190667880028696, - "marshtomp": 2.204016332582084, - "swampert": 1.2930788209005177, - "linoone": 3.5457240496769824, - "linoone-galar": 3.643126124099359, - "pelipper": 5.557391084558478, - "ninjask": 4.802822403093668, - "exploud": 1.6607663449153123, - "lairon": 1.6469939893502743, - "manectric": 1.8400069844346754, - "roselia": 5.5925011201996195, - "sharpedo": 4.130918212127946, - "wailmer": 6.176465038417545, - "torkoal": 1.8950645782884918, - "flygon": 2.293299192308135, - "altaria": 1.7605273385950122, - "whiscash": 1.998637370389148, - "crawdaunt": 2.0001838608254623, - "claydol": 3.07827863526573, - "cradily": 2.287345453509299, - "armaldo": 1.393148859185808, - "dusclops": 2.358026091427887, - "absol": 1.876915362341745, - "glalie": 3.0848854815543616, - "sealeo": 3.0877264487482394, - "relicanth": 1.6736567836679166, - "metang": 1.9377074982392126, - "luxray": 3.5268639314728403, - "vespiquen": 2.0267226733159585, - "cherrim": 5.856976991355669, - "gastrodon": 1.6657426265472282, - "drifblim": 4.619487766182624, - "lopunny": 3.1776793001128905, - "skuntank": 1.0069340460223253, - "bronzong": 2.1807507942687736, - "munchlax": 1.8092880437263703, - "drapion": 1.4854357265090523, - "abomasnow": 2.70757876704993, - "froslass": 2.5882847741682395, - "rotom": 3.5051787108852075, - "stoutland": 2.0086038596807008, - "liepard": 5.682262389539867, - "musharna": 1.438887608192183, - "unfezant": 5.559374693176535, - "boldore": 3.1863412705317375, - "swoobat": 5.202119103308213, - "audino": 2.217995812545666, - "gurdurr": 3.158134354851315, - "palpitoad": 3.7989169842058677, - "seismitoad": 6.432633124354542, - "scolipede": 2.9101276781269387, - "whimsicott": 3.0114477207451325, - "lilligant": 2.8669397218291586, - "basculin-red-striped": 2.4969930398957256, - "basculin-blue-striped": 3.0036427715029204, - "krookodile": 2.4180548947563523, - "maractus": 2.0391480102933848, - "crustle": 1.646008574556149, - "sigilyph": 2.169132077107923, - "cofagrigus": 2.521021600207924, - "garbodor": 2.5284287450802316, - "cinccino": 3.954149272759424, - "vanillish": 2.128383195488878, - "emolga": 2.9815979529751457, - "escavalier": 1.110698414622512, - "amoonguss": 3.529791464824955, - "jellicent": 1.5086888157732488, - "galvantula": 1.5541977163957028, - "klang": 2.2735955389468225, - "klinklang": 2.2397448799489594, - "beheeyem": 1.5418158404059108, - "lampent": 2.4655741485165033, - "fraxure": 1.46279555763211, - "beartic": 1.7422994205761337, - "cryogonal": 1.720273006891864, - "accelgor": 2.446650101493629, - "stunfisk": 1.3045358478106812, - "stunfisk-galar": 1.6760105346151, - "mienshao": 4.36879445139427, - "druddigon": 1.6053675912225125, - "golurk": 1.5343366159767005, - "bisharp": 1.6740378289314262, - "bouffalant": 1.055139996357502, - "heatmor": 1.8577902891347287, - "durant": 1.8209360390029152, - "diggersby": 2.7364759356441732, - "talonflame": 2.8873491537406544, - "pangoro": 2.33591145098584, - "doublade": 1.8254029029373404, - "malamar": 2.6972838899393716, - "barbaracle": 1.3161876531215833, - "heliolisk": 3.591950450528423, - "tyrantrum": 1.7657045351553613, - "aurorus": 2.2215805602046172, - "hawlucha": 3.953132718537549, - "dedenne": 2.9162579423141226, - "klefki": 2.2556280691598034, - "trevenant": 2.7464344913862293, - "gourgeist-average": 4.112663414430181, - "charjabug": 3.624961179688867, - "vikavolt": 1.6048281073058375, - "ribombee": 4.152151148969998, - "lycanroc-midday": 2.9180597380091298, - "lycanroc-midnight": 1.8853157266268457, - "mudsdale": 1.3279011075784393, - "araquanid": 1.7015135110148127, - "lurantis": 2.042450493695166, - "shiinotic": 4.4302090963580225, - "salazzle": 4.3807763676259945, - "bewear": 1.9036825264305621, - "tsareena": 2.609796614643855, - "comfey": 4.566148580508579, - "oranguru": 2.5128225962444617, - "passimian": 3.0813618908926808, - "palossand": 1.9313631083054017, - "pyukumuku": 43.89690689722268, - "togedemaru": 1.6180062769336052, - "mimikyu-disguised": 2.7506034254914584, - "greedent": 1.8805206327707087, - "orbeetle": 1.4926621681426295, - "thievul": 1.604895723921722, - "eldegoss": 3.8965928815666975, - "dubwool": 2.5852479646098976, - "drednaw": 0.9981553849822439, - "boltund": 3.6761924033615827, - "carkol": 2.144542213301533, - "coalossal": 2.001549604992315, - "sandaconda": 2.5739373976888618, - "cramorant": 3.851149293577951, - "barraskewda": 3.4999139822116314, - "toxtricity-amped": 3.6492617570358528, - "centiskorch": 1.9572241745271408, - "grapploct": 2.467632427018067, - "polteageist": 2.4406819659447, - "hatterene": 2.157521278459722, - "grimmsnarl": 3.822837577726737, - "obstagoon": 2.1833097071213023, - "perrserker": 2.015709706288105, - "alcremie": 1.4386174469359203, - "falinks": 3.632639571103671, - "pincurchin": 3.1123471414396846, - "frosmoth": 2.176687129441558, - "indeedee-male": 2.6743715356195352, - "morpeko": 2.713227967477939, - "copperajah": 1.8339059572831027, - "duraludon": 1.3078934512078844, - "drakloak": 4.0335969738784385, - "kadabra": 3.3197238162925995 + "ivysaur": 4.426898195958057, + "charmeleon": 4.005523349829841, + "wartortle": 2.86843231619007, + "butterfree": 4.022420267347723, + "raichu": 5.497807938996324, + "raichu-alola": 3.094799502683958, + "sandslash": 1.7771808532576032, + "sandslash-alola": 1.4543273874571472, + "nidoqueen": 3.6808286920908952, + "nidoking": 2.1744962938900514, + "clefairy": 9.4828206878651, + "clefable": 2.0399260606259833, + "jigglypuff": 27.585366170538062, + "wigglytuff": 2.0560859930814956, + "gloom": 7.955011938800066, + "vileplume": 3.8059940393265097, + "dugtrio": 3.0706117853244557, + "dugtrio-alola": 2.1393055293184347, + "persian": 3.6488275579389673, + "persian-alola": 3.3576821786254367, + "golduck": 2.765831489547273, + "poliwrath": 2.3809794068773553, + "kadabra": 3.3197238162925995, + "machoke": 4.571904140486657, + "tentacruel": 3.062928680773286, + "slowbro": 1.7480373567426724, + "magneton": 2.6001624308152484, + "haunter": 6.193637965080496, + "kingler": 2.4080795079618182, + "exeggutor": 1.6717182435829825, + "marowak": 2.3921942952993893, + "marowak-alola": 1.602665675113915, + "hitmonlee": 3.106284603893765, + "hitmonchan": 2.5542561827099366, + "lickitung": 1.9307794122837956, + "weezing": 2.2587796399102933, + "weezing-galar": 3.9516020420823557, + "rhydon": 2.053877594564752, + "chansey": 25.456450929755626, + "tangela": 4.539436310575347, + "kangaskhan": 1.4097468919517344, + "seadra": 4.5326730742771755, + "seaking": 2.0383081399794483, + "starmie": 1.2867866743330245, + "mr-mime": 6.491795290008529, + "mr-mime-galar": 3.265117251145534, + "scyther": 1.9059887060260734, + "jynx": 3.666564437438235, + "electabuzz": 2.5445433306922873, + "magmar": 1.6871881927885162, + "tauros": 1.692689880066085, + "ditto": 3.065348370400736, + "vaporeon": 3.2062002831738523, + "jolteon": 1.8423620697629106, + "flareon": 2.1367850676272626, + "porygon": 2.614095760472005, + "dragonair": 1.8396258701819397, + "noctowl": 5.163797194328843, + "lanturn": 1.9848018657610034, + "togetic": 4.964746649580433, + "xatu": 3.6244295965778583, + "bellossom": 2.3278552276579676, + "azumarill": 1.9680842933335299, + "sudowoodo": 2.367127413304149, + "politoed": 2.363707064059711, + "quagsire": 5.05573664632735, + "slowking": 1.9209055542928457, + "dunsparce": 2.6646959561103003, + "qwilfish": 4.174296793715076, + "sneasel": 1.7535501542952936, + "piloswine": 1.5306992775908963, + "octillery": 2.0905510457397467, + "mantine": 2.352779123414897, + "skarmory": 1.2293434802056413, + "hitmontop": 3.3587523527356096, + "miltank": 3.0295269402881777, + "grovyle": 7.9789719397403935, + "sceptile": 1.260235830908341, + "combusken": 4.986358247395705, + "blaziken": 2.1897199072286737, + "marshtomp": 2.1970807365467113, + "swampert": 1.2926748365475362, + "linoone": 3.519657928154932, + "linoone-galar": 3.6152828806099206, + "pelipper": 5.539871488397969, + "ninjask": 4.763847708643218, + "exploud": 1.6598897146609084, + "lairon": 1.6381133113783592, + "manectric": 1.8393492696026943, + "roselia": 5.596593757398647, + "sharpedo": 4.102389232226213, + "wailmer": 6.163105526221379, + "torkoal": 1.8920250819655862, + "flygon": 2.2861116331260183, + "altaria": 1.760714222562146, + "whiscash": 1.996120095691077, + "crawdaunt": 1.988003288491942, + "claydol": 3.0756585376050696, + "cradily": 2.2845159390506007, + "armaldo": 1.384291920342453, + "dusclops": 2.3403717244144784, + "absol": 1.8653573151809166, + "glalie": 3.0660100717008483, + "sealeo": 3.08239616858038, + "relicanth": 1.6658310750484717, + "metang": 1.9275093198645994, + "luxray": 3.5174699093624175, + "vespiquen": 2.0145661492457836, + "cherrim": 5.850950899803976, + "gastrodon": 1.6569818576355804, + "drifblim": 4.618580440789546, + "lopunny": 3.1664044162282297, + "skuntank": 0.998532854708758, + "bronzong": 2.1720783637348715, + "munchlax": 1.8014278963149613, + "drapion": 1.4731993408777724, + "abomasnow": 2.6963188143806045, + "froslass": 2.578507381200464, + "rotom": 3.4956092208654717, + "stoutland": 1.9993045557764737, + "liepard": 5.64247322535139, + "musharna": 1.4380863071895138, + "unfezant": 5.540465644232769, + "boldore": 3.175714036932742, + "swoobat": 5.200110068208591, + "audino": 2.216299722382925, + "gurdurr": 3.1588093822020697, + "palpitoad": 3.794965746190317, + "seismitoad": 6.423946453202983, + "scolipede": 2.887696887972803, + "whimsicott": 3.0058452914400373, + "lilligant": 2.8605280007190044, + "basculin-red-striped": 2.4885569100546747, + "basculin-blue-striped": 2.9899962361769994, + "krookodile": 2.4027709757493, + "maractus": 2.0342738737928157, + "crustle": 1.63660712023137, + "sigilyph": 2.1675108491573445, + "cofagrigus": 2.513983720503058, + "garbodor": 2.522793064427797, + "cinccino": 3.9387674373393686, + "vanillish": 2.1261237996109097, + "emolga": 2.977278447999479, + "escavalier": 1.1027950580686585, + "amoonguss": 3.5288397989147544, + "jellicent": 1.5063728878885043, + "galvantula": 1.5510429719203613, + "klang": 2.2686088159736406, + "klinklang": 2.226409446604995, + "beheeyem": 1.5385553697896979, + "lampent": 2.4594755021995813, + "fraxure": 1.4557780906881965, + "beartic": 1.7408470774927083, + "cryogonal": 1.7188090720489275, + "accelgor": 2.437412302153801, + "stunfisk": 1.3036491704016857, + "stunfisk-galar": 1.6685730179389293, + "mienshao": 4.365866879768717, + "druddigon": 1.5983601152519968, + "golurk": 1.5267418627411242, + "bisharp": 1.6617544199279335, + "bouffalant": 1.0504751125869274, + "heatmor": 1.8546595177657723, + "durant": 1.8063689145183828, + "diggersby": 2.72582938687256, + "talonflame": 2.8823893394383893, + "pangoro": 2.3261192135602373, + "doublade": 1.816636652866738, + "malamar": 2.684192284131748, + "barbaracle": 1.309093376707383, + "heliolisk": 3.588984948299853, + "tyrantrum": 1.7606553968941383, + "aurorus": 2.2145996111758124, + "hawlucha": 3.940264132194663, + "dedenne": 2.9156230748937064, + "klefki": 2.2473814164785337, + "trevenant": 2.73779884579824, + "gourgeist-average": 4.087110576819508, + "charjabug": 3.610101565943836, + "vikavolt": 1.5991324653472803, + "ribombee": 4.139589942245054, + "lycanroc-midday": 2.9070669436674814, + "lycanroc-midnight": 1.8755070737717527, + "mudsdale": 1.3225880134926422, + "araquanid": 1.6916392036553756, + "lurantis": 2.0341654266945084, + "shiinotic": 4.425977665163298, + "salazzle": 4.374316913733156, + "bewear": 1.8951155800504051, + "tsareena": 2.5994000024548014, + "comfey": 4.5648503418873245, + "oranguru": 2.5121544889872847, + "passimian": 3.0793526300498364, + "palossand": 1.925617044162378, + "pyukumuku": 43.85553439903295, + "togedemaru": 1.6085507914652342, + "mimikyu-disguised": 2.7302413783930164, + "greedent": 1.8735564652658199, + "orbeetle": 1.4906552822436359, + "thievul": 1.5974853554951167, + "eldegoss": 3.892800429276411, + "dubwool": 2.575799315535342, + "drednaw": 0.99256054724541, + "boltund": 3.6571178818046244, + "carkol": 2.1393450469236392, + "coalossal": 1.998033251810985, + "sandaconda": 2.560973396720338, + "cramorant": 3.827118491631416, + "barraskewda": 3.479237122256502, + "toxtricity-amped": 3.647886612747193, + "centiskorch": 1.9530899949252958, + "grapploct": 2.472390646940349, + "polteageist": 2.434132938067001, + "hatterene": 2.1535032402049166, + "grimmsnarl": 3.809506685701529, + "obstagoon": 2.1689427927481573, + "perrserker": 2.001529840718301, + "alcremie": 1.4384460188151729, + "falinks": 3.620309228204431, + "pincurchin": 3.110193009030339, + "frosmoth": 2.1708332097382113, + "indeedee-male": 2.6684627325334493, + "morpeko": 2.7025359514601544, + "copperajah": 1.827776124573906, + "duraludon": 1.3037899629785883, + "drakloak": 4.013195589550012 }, "machoke": { - "ivysaur": 2.7444160790512053, - "charmeleon": 4.120889958470174, - "wartortle": 2.4409291727960083, - "butterfree": 7.200096460032668, - "raichu": 4.7756141154111855, - "raichu-alola": 3.424286607917014, - "sandslash": 1.912129807431999, - "sandslash-alola": 2.876855517670596, - "nidoqueen": 2.2851052762020188, - "nidoking": 1.5581283388635447, - "clefairy": 8.010489100262888, - "clefable": 1.4345074351749754, - "jigglypuff": 21.188326584116115, - "wigglytuff": 1.4706724123291135, - "gloom": 4.376031530419244, - "vileplume": 2.6201538577227024, - "dugtrio": 3.680597822851312, - "dugtrio-alola": 4.198298728333148, - "persian": 4.712083728329018, - "persian-alola": 5.430775313455432, - "golduck": 2.7710838628812278, - "poliwrath": 1.7152398495625638, - "kadabra": 3.609243871817717, - "tentacruel": 2.126156391052307, - "slowbro": 1.482100805936946, - "magneton": 3.3717165969169147, - "haunter": 4.550406258895224, - "kingler": 2.0648417754270945, - "exeggutor": 1.8106297457920268, - "marowak": 2.7803241983826146, - "marowak-alola": 2.0679589809913015, - "hitmonlee": 2.3839341584742604, - "hitmonchan": 2.0403720696840164, - "lickitung": 2.135672905648843, - "weezing": 1.273469434980781, - "weezing-galar": 1.9138607910319374, - "rhydon": 2.279492678544469, - "chansey": 35.56006718687741, - "tangela": 4.03772031003315, - "kangaskhan": 2.1533913920758967, - "seadra": 3.4227813275285532, - "seaking": 2.2171370304523004, - "starmie": 1.3087281366647838, - "mr-mime": 5.059323176630827, - "mr-mime-galar": 3.5618334912545455, - "scyther": 3.7139534365488607, - "jynx": 4.814778581674105, - "electabuzz": 2.374839104140725, - "magmar": 1.8435529312333336, - "tauros": 2.2331202192369326, - "ditto": 4.762686892773461, - "vaporeon": 2.9895704410768897, - "jolteon": 1.8093821701850343, - "flareon": 2.6769518295673653, - "porygon": 3.240803838692143, - "dragonair": 1.6875839387029008, - "noctowl": 6.096772506730678, - "lanturn": 1.773116639317368, - "togetic": 5.378045095021281, - "xatu": 3.2973711992463066, - "bellossom": 1.8004937846081952, - "azumarill": 1.7300566064950367, - "sudowoodo": 2.743723388273155, - "politoed": 2.3784517244116543, - "quagsire": 4.027566239166227, - "slowking": 2.4242816181318267, - "dunsparce": 3.605809822317438, - "qwilfish": 2.802347632568562, - "sneasel": 3.8428458274044393, - "piloswine": 1.7153493940690399, - "octillery": 2.146659747127796, - "mantine": 2.645485749082332, - "skarmory": 1.65724437846113, - "hitmontop": 2.4967945130861535, - "miltank": 3.5681691570793355, - "grovyle": 7.426859030499385, - "sceptile": 1.3393883527258277, - "combusken": 3.0137777921816866, - "blaziken": 1.4782572077592873, - "marshtomp": 2.2621350589843194, - "swampert": 1.124884784852894, - "linoone": 6.08438961456658, - "linoone-galar": 7.979414303612717, - "pelipper": 5.5701064660191415, - "ninjask": 11.561922922774722, - "exploud": 1.8554515145647321, - "lairon": 3.158551098703152, - "manectric": 1.5446770823867972, - "roselia": 3.3452715249976483, - "sharpedo": 6.001798140913307, - "wailmer": 5.655638795604698, - "torkoal": 1.718884725620533, - "flygon": 2.201199039729194, - "altaria": 1.538783296914441, - "whiscash": 1.719707679620166, - "crawdaunt": 2.1534765340587363, - "claydol": 3.1169300038615946, - "cradily": 2.6410650189618714, - "armaldo": 2.014206248764879, - "dusclops": 3.523588902260186, - "absol": 2.301912418085245, - "glalie": 4.853357044325541, - "sealeo": 3.5665782219522018, - "relicanth": 1.9960757261046345, - "metang": 2.6916058873992195, - "luxray": 3.4100509055198063, - "vespiquen": 3.7319776280674466, - "cherrim": 5.249704242751648, - "gastrodon": 2.08313412701981, - "drifblim": 4.146270960574681, - "lopunny": 4.130113082547094, - "skuntank": 1.3553555210332329, - "bronzong": 2.891334230587092, - "munchlax": 2.938053102940641, - "drapion": 2.229341395151338, - "abomasnow": 3.5869180371782674, - "froslass": 3.0318232318207263, - "rotom": 3.755902066502329, - "stoutland": 2.731850669562556, - "liepard": 7.857051954929624, - "musharna": 1.3632981196498168, - "unfezant": 5.430963465699913, - "boldore": 3.3124477528290432, - "swoobat": 4.71735580446732, - "audino": 2.408880963422525, - "gurdurr": 1.9212807429336665, - "palpitoad": 3.328983137240832, - "seismitoad": 5.634976920920689, - "scolipede": 3.483984993382892, - "whimsicott": 2.3976502032052514, - "lilligant": 2.8131261070061906, - "basculin-red-striped": 2.4185892724847666, - "basculin-blue-striped": 3.3206438414503214, - "krookodile": 3.3079217109754167, - "maractus": 2.006605621549851, - "crustle": 2.133055984545, - "sigilyph": 2.0780236868421795, - "cofagrigus": 2.2706759963273893, - "garbodor": 1.5922874305880415, - "cinccino": 5.214762382576408, - "vanillish": 2.4125459177380386, - "emolga": 3.0504951697412963, - "escavalier": 1.705860780015691, - "amoonguss": 2.1589744053659317, - "jellicent": 1.4740028470164228, - "galvantula": 1.6788728457079705, - "klang": 3.1784748635924727, - "klinklang": 3.6754957120374114, - "beheeyem": 1.8023197640981197, - "lampent": 2.6616704346993822, - "fraxure": 1.373680920670362, - "beartic": 1.9188291810718, - "cryogonal": 2.22511834233353, - "accelgor": 3.708055794336868, - "stunfisk": 1.1758674743960333, - "stunfisk-galar": 2.627236548605387, - "mienshao": 3.136722498745475, - "druddigon": 1.6388354509422716, - "golurk": 1.893276702364115, - "bisharp": 3.5818323260975404, - "bouffalant": 1.5346742176559414, - "heatmor": 1.9975454357105034, - "durant": 2.562456661569157, - "diggersby": 3.7511295562818274, - "talonflame": 3.865979329517305, - "pangoro": 2.056464954344073, - "doublade": 1.9312240232230633, - "malamar": 2.4261684295199766, - "barbaracle": 1.5669814340961898, - "heliolisk": 4.515088543904671, - "tyrantrum": 1.634097440199322, - "aurorus": 3.8132292788299282, - "hawlucha": 3.0720427383248863, - "dedenne": 2.0434115838522207, - "klefki": 2.499023140596227, - "trevenant": 3.105973917892384, - "gourgeist-average": 4.857654078342012, - "charjabug": 4.105269699324678, - "vikavolt": 1.9688299699369418, - "ribombee": 4.8500591328726035, - "lycanroc-midday": 4.0656104693778, - "lycanroc-midnight": 2.8524815182053675, - "mudsdale": 1.446439976958569, - "araquanid": 2.747432523785295, - "lurantis": 2.2013515193893896, - "shiinotic": 3.3432185925989213, - "salazzle": 3.339707351071689, - "bewear": 1.946997269446292, - "tsareena": 2.666680693561873, - "comfey": 3.5109507659173778, - "oranguru": 2.338908841716632, - "passimian": 1.9881540888093463, - "palossand": 1.892991159674143, - "pyukumuku": 40.14635959831055, - "togedemaru": 2.6608646020699145, - "mimikyu-disguised": 3.511920303162645, - "greedent": 2.2093447065269007, - "orbeetle": 1.7827864831816758, - "thievul": 2.3697593735816724, - "eldegoss": 3.5847322011605876, - "dubwool": 3.2931779925782165, - "drednaw": 1.4723023410413776, - "boltund": 4.419696789183238, - "carkol": 2.692545049937115, - "coalossal": 2.118713891369879, - "sandaconda": 2.7197073246105488, - "cramorant": 6.559505933180107, - "barraskewda": 4.239526168994831, - "toxtricity-amped": 2.1989921249090765, - "centiskorch": 3.0809880593179946, - "grapploct": 1.5006348547910746, - "polteageist": 2.8104481160833794, - "hatterene": 1.8032016754892635, - "grimmsnarl": 3.7614333672428906, - "obstagoon": 3.882843155535271, - "perrserker": 3.527441997017509, - "alcremie": 1.0792835758163366, - "falinks": 2.7665582293348505, - "pincurchin": 2.6243601573816537, - "frosmoth": 3.8525311771896216, - "indeedee-male": 3.143478115388046, - "morpeko": 3.1964514169103917, - "copperajah": 2.762225444995109, - "duraludon": 1.5604942057481233, - "drakloak": 4.691233652881547, - "machoke": 3.6958970323188858 + "ivysaur": 2.7398351036676827, + "charmeleon": 4.120039168236033, + "wartortle": 2.4382863591272512, + "butterfree": 7.2068513214596805, + "raichu": 4.772588881292823, + "raichu-alola": 3.4156635712724595, + "sandslash": 1.9102225027430153, + "sandslash-alola": 2.880063507481963, + "nidoqueen": 2.2798623794120525, + "nidoking": 1.5556591523990508, + "clefairy": 7.9983868720976385, + "clefable": 1.430528327466508, + "jigglypuff": 21.104052823218762, + "wigglytuff": 1.4653639068131978, + "gloom": 4.359870438189617, + "vileplume": 2.6176109479128793, + "dugtrio": 3.6799611308722193, + "dugtrio-alola": 4.200613540511446, + "persian": 4.706024936767465, + "persian-alola": 5.4379022921768785, + "golduck": 2.7679188551346163, + "poliwrath": 1.712625262073785, + "kadabra": 3.598582470032907, + "machoke": 3.6958970323188858, + "tentacruel": 2.123949831072903, + "slowbro": 1.4763233841174854, + "magneton": 3.3687252183033842, + "haunter": 4.544041272907091, + "kingler": 2.0615599129122293, + "exeggutor": 1.806361956285158, + "marowak": 2.7777308945100945, + "marowak-alola": 2.0675668753216776, + "hitmonlee": 2.3824073895071782, + "hitmonchan": 2.0382889072373747, + "lickitung": 2.134484038461204, + "weezing": 1.2709742923320149, + "weezing-galar": 1.905868394515554, + "rhydon": 2.2771335702740547, + "chansey": 35.55826667172377, + "tangela": 4.029039004470089, + "kangaskhan": 2.153923262981045, + "seadra": 3.414627115961128, + "seaking": 2.2147734033189446, + "starmie": 1.3059162906441233, + "mr-mime": 5.033997473267791, + "mr-mime-galar": 3.5531381687753947, + "scyther": 3.713294799608632, + "jynx": 4.812593297072981, + "electabuzz": 2.3722844736503585, + "magmar": 1.8435059457204312, + "tauros": 2.233440692384221, + "ditto": 4.725269847909882, + "vaporeon": 2.9872113007999888, + "jolteon": 1.807853066855635, + "flareon": 2.677720206993029, + "porygon": 3.240554036321999, + "dragonair": 1.6857772835607947, + "noctowl": 6.087674947289705, + "lanturn": 1.7721985036300105, + "togetic": 5.366788777167187, + "xatu": 3.2842585527341708, + "bellossom": 1.7961908343904933, + "azumarill": 1.7260540317643247, + "sudowoodo": 2.7446474017828297, + "politoed": 2.3766388707641806, + "quagsire": 4.020443961859136, + "slowking": 2.4194623901420726, + "dunsparce": 3.603976153433243, + "qwilfish": 2.7972706233262596, + "sneasel": 3.8523278349061014, + "piloswine": 1.715563182737902, + "octillery": 2.14478198119895, + "mantine": 2.6418341138762855, + "skarmory": 1.655381579843226, + "hitmontop": 2.4940337477564, + "miltank": 3.561341173790642, + "grovyle": 7.420728066985497, + "sceptile": 1.3383898126682863, + "combusken": 3.01033310677939, + "blaziken": 1.4769018834310317, + "marshtomp": 2.2595108805641426, + "swampert": 1.1233445364596202, + "linoone": 6.085973895449543, + "linoone-galar": 7.999446586970162, + "pelipper": 5.555319818115083, + "ninjask": 11.583411955886877, + "exploud": 1.854505730653151, + "lairon": 3.160454499489306, + "manectric": 1.5422071239169228, + "roselia": 3.3368892803893173, + "sharpedo": 6.004578438533716, + "wailmer": 5.645243679031793, + "torkoal": 1.7172400503010299, + "flygon": 2.19893350056712, + "altaria": 1.5361919003026152, + "whiscash": 1.7146393675007987, + "crawdaunt": 2.153224702309429, + "claydol": 3.107657248283303, + "cradily": 2.641692963670332, + "armaldo": 2.0164008133293603, + "dusclops": 3.5219827041176597, + "absol": 2.302757691142964, + "glalie": 4.858563069488481, + "sealeo": 3.567172076507429, + "relicanth": 1.9959113061741487, + "metang": 2.6868003507197233, + "luxray": 3.4054749182347717, + "vespiquen": 3.7315562428745714, + "cherrim": 5.242031024278677, + "gastrodon": 2.082430961573648, + "drifblim": 4.136461170503482, + "lopunny": 4.127251399833171, + "skuntank": 1.355789421278987, + "bronzong": 2.8849714297624134, + "munchlax": 2.9399075923266933, + "drapion": 2.2297826323529195, + "abomasnow": 3.5867014561184885, + "froslass": 3.030438723946993, + "rotom": 3.752556759153168, + "stoutland": 2.730081085439782, + "liepard": 7.851851516640827, + "musharna": 1.3584666667757905, + "unfezant": 5.414858929880633, + "boldore": 3.3121726697928717, + "swoobat": 4.6985801174527975, + "audino": 2.4060100325678455, + "gurdurr": 1.9179985592611453, + "palpitoad": 3.322675749920327, + "seismitoad": 5.622355948450203, + "scolipede": 3.4862546603166327, + "whimsicott": 2.388265828337149, + "lilligant": 2.810965816082121, + "basculin-red-striped": 2.414275165188906, + "basculin-blue-striped": 3.3186388220523275, + "krookodile": 3.309305753542448, + "maractus": 2.0050645877636533, + "crustle": 2.1346676668049445, + "sigilyph": 2.071046403627613, + "cofagrigus": 2.2635713401680917, + "garbodor": 1.5897646528846852, + "cinccino": 5.212897954206095, + "vanillish": 2.412509343105109, + "emolga": 3.04585579260399, + "escavalier": 1.7061232977799434, + "amoonguss": 2.1548313532664256, + "jellicent": 1.4717496146488034, + "galvantula": 1.6781950988545624, + "klang": 3.1788777213047767, + "klinklang": 3.674141149504969, + "beheeyem": 1.7993955401173434, + "lampent": 2.662523399426391, + "fraxure": 1.372249118217768, + "beartic": 1.919072304753354, + "cryogonal": 2.2273104306071283, + "accelgor": 3.711315491737877, + "stunfisk": 1.1741455268630885, + "stunfisk-galar": 2.6276333152221425, + "mienshao": 3.133194879443338, + "druddigon": 1.6374078463532697, + "golurk": 1.8911096246824446, + "bisharp": 3.5828996892961937, + "bouffalant": 1.5357815188699675, + "heatmor": 1.9979535100956696, + "durant": 2.5604233938709884, + "diggersby": 3.7521191623019883, + "talonflame": 3.862563091606731, + "pangoro": 2.056905172530766, + "doublade": 1.9262555334701505, + "malamar": 2.420841540159631, + "barbaracle": 1.5655451949000092, + "heliolisk": 4.5154473283997785, + "tyrantrum": 1.6336455127079357, + "aurorus": 3.818870258110753, + "hawlucha": 3.0682579369046117, + "dedenne": 2.0369962131171895, + "klefki": 2.4920782266001376, + "trevenant": 3.103969195680797, + "gourgeist-average": 4.850943477554885, + "charjabug": 4.103118242916893, + "vikavolt": 1.969303779812071, + "ribombee": 4.841933744134398, + "lycanroc-midday": 4.071932616655938, + "lycanroc-midnight": 2.856584795481949, + "mudsdale": 1.4454150451115706, + "araquanid": 2.74951137295544, + "lurantis": 2.199053619894925, + "shiinotic": 3.327926023826256, + "salazzle": 3.337251493215909, + "bewear": 1.9451347805538903, + "tsareena": 2.661374651575605, + "comfey": 3.4990992765448565, + "oranguru": 2.3300965090648105, + "passimian": 1.984257730874137, + "palossand": 1.8892325428011103, + "pyukumuku": 40.13074054150945, + "togedemaru": 2.660798310516898, + "mimikyu-disguised": 3.506530584626429, + "greedent": 2.205929189409697, + "orbeetle": 1.7766318857293153, + "thievul": 2.372960793170786, + "eldegoss": 3.580208912583992, + "dubwool": 3.2921598680789805, + "drednaw": 1.4728512163887915, + "boltund": 4.4191471144070515, + "carkol": 2.693813607321494, + "coalossal": 2.1191999411912015, + "sandaconda": 2.715894801934945, + "cramorant": 6.5652797595482975, + "barraskewda": 4.237332642108566, + "toxtricity-amped": 2.194200355991706, + "centiskorch": 3.0824449420511826, + "grapploct": 1.4982276221563877, + "polteageist": 2.806183456652234, + "hatterene": 1.7942206710703097, + "grimmsnarl": 3.7619574819288024, + "obstagoon": 3.886756511758426, + "perrserker": 3.5283019090639796, + "alcremie": 1.0764124193388795, + "falinks": 2.7628345701992405, + "pincurchin": 2.620727607538603, + "frosmoth": 3.849348410549757, + "indeedee-male": 3.1377416763850983, + "morpeko": 3.1967181124664767, + "copperajah": 2.762121982992043, + "duraludon": 1.5593966652899707, + "drakloak": 4.688637867806463 }, "tentacruel": { - "ivysaur": 3.1574982766358892, - "charmeleon": 5.602019517920214, - "wartortle": 2.762770734285088, - "butterfree": 4.870414055936063, - "raichu": 5.0124493136543915, - "raichu-alola": 3.214271074190652, - "sandslash": 3.0405922606670925, - "sandslash-alola": 2.2242107432253864, - "nidoqueen": 3.7808390712722906, - "nidoking": 2.254145335027943, - "clefairy": 11.795390801242378, - "clefable": 2.8214641182773463, - "jigglypuff": 34.17230587706532, - "wigglytuff": 2.5311891043247483, - "gloom": 5.79105256016133, - "vileplume": 2.9014750052103895, - "dugtrio": 4.141019732681396, - "dugtrio-alola": 4.213868800178154, - "persian": 4.313227566166031, - "persian-alola": 4.369325610489839, - "golduck": 2.934855811774195, - "poliwrath": 1.7763005897937107, - "kadabra": 3.9414927808308615, - "machoke": 4.058441866709107, - "slowbro": 1.4953726050719935, - "magneton": 3.4152135893303037, - "haunter": 4.595191924252968, - "kingler": 2.260113216576203, - "exeggutor": 1.9314025480500683, - "marowak": 3.998296542121836, - "marowak-alola": 3.111555665526641, - "hitmonlee": 2.4934618211858552, - "hitmonchan": 2.0749953873603, - "lickitung": 2.115232321757224, - "weezing": 1.916135915804544, - "weezing-galar": 3.185486720360725, - "rhydon": 4.638866668152425, - "chansey": 27.108625455594073, - "tangela": 4.533103041079809, - "kangaskhan": 1.7428904115116406, - "seadra": 4.081997064099816, - "seaking": 2.208017446182323, - "starmie": 1.383383189271079, - "mr-mime": 7.847233803246814, - "mr-mime-galar": 3.768000900088937, - "scyther": 2.698541489137113, - "jynx": 4.781046583608857, - "electabuzz": 2.3545293162223597, - "magmar": 2.323019766626616, - "tauros": 2.017795819097668, - "ditto": 2.7645487835710894, - "vaporeon": 3.3224774081960664, - "jolteon": 1.8962972451116629, - "flareon": 3.158016967758599, - "porygon": 2.8549204307659743, - "dragonair": 1.7095038189620024, - "noctowl": 5.598621195867205, - "lanturn": 1.8646741084418235, - "togetic": 6.766469650932862, - "xatu": 3.8085455548832083, - "bellossom": 2.9299069172519694, - "azumarill": 2.7548335328199434, - "sudowoodo": 3.5205015180722445, - "politoed": 2.422061937683506, - "quagsire": 5.410847128314392, - "slowking": 2.351633125358063, - "dunsparce": 3.5085051316603946, - "qwilfish": 3.1935328730107644, - "sneasel": 2.2317393452401424, - "piloswine": 2.348816228660659, - "octillery": 2.3672520449000656, - "mantine": 2.5685536138691303, - "skarmory": 2.3477740333641117, - "hitmontop": 2.6059662297004227, - "miltank": 3.827697347089944, - "grovyle": 9.802460402083852, - "sceptile": 1.689380221188896, - "combusken": 4.901554641495844, - "blaziken": 2.3393290341144035, - "marshtomp": 2.539830885294709, - "swampert": 1.3510947642904088, - "linoone": 5.197400509269264, - "linoone-galar": 4.778157775927414, - "pelipper": 5.374663186426226, - "ninjask": 7.831645140832368, - "exploud": 1.7636930580168007, - "lairon": 3.817842154996751, - "manectric": 1.7920605943162484, - "roselia": 3.8618053879724723, - "sharpedo": 4.534218568099924, - "wailmer": 6.296680441918385, - "torkoal": 3.24229644582049, - "flygon": 2.443490356629078, - "altaria": 1.666043450333717, - "whiscash": 2.20594426257073, - "crawdaunt": 1.897371199084698, - "claydol": 4.1943507527427455, - "cradily": 2.4017250441930162, - "armaldo": 2.465196431394551, - "dusclops": 3.5186792456660223, - "absol": 2.0774787015565366, - "glalie": 4.30304856151866, - "sealeo": 3.2021097501095834, - "relicanth": 2.076356990635081, - "metang": 2.7299749450289372, - "luxray": 3.6376729584368706, - "vespiquen": 2.82459640016218, - "cherrim": 6.906091007638782, - "gastrodon": 2.1790209556294258, - "drifblim": 3.9333028720696843, - "lopunny": 3.6025685074161027, - "skuntank": 1.5523097814796754, - "bronzong": 2.8291666622248473, - "munchlax": 2.123397058159111, - "drapion": 2.6559988348285524, - "abomasnow": 3.6147345185685564, - "froslass": 3.156947308412059, - "rotom": 3.750911333545272, - "stoutland": 2.3703430980488305, - "liepard": 7.19060391283169, - "musharna": 1.4248814325968044, - "unfezant": 6.498208700439529, - "boldore": 4.8010424785511425, - "swoobat": 5.43545989969285, - "audino": 2.4800209502542163, - "gurdurr": 2.3854710954608613, - "palpitoad": 3.90551390207862, - "seismitoad": 7.067304722022582, - "scolipede": 3.438642756652542, - "whimsicott": 4.947710206765283, - "lilligant": 3.633520043193222, - "basculin-red-striped": 2.493163266585896, - "basculin-blue-striped": 3.4164055389065484, - "krookodile": 3.6605176435538276, - "maractus": 2.5623957666630877, - "crustle": 3.1024375629159895, - "sigilyph": 2.3836502593709454, - "cofagrigus": 2.7601347274645613, - "garbodor": 1.9855983582014212, - "cinccino": 4.711543231890634, - "vanillish": 2.3859427807256406, - "emolga": 2.889766056793721, - "escavalier": 1.78589268546992, - "amoonguss": 2.535369611400416, - "jellicent": 1.4191532238599491, - "galvantula": 1.5594013678498304, - "klang": 2.924330649172189, - "klinklang": 3.6403867968343313, - "beheeyem": 1.782396401882584, - "lampent": 4.045489217766811, - "fraxure": 1.3430935110917361, - "beartic": 1.9661604006185953, - "cryogonal": 1.9635933611374767, - "accelgor": 3.4146200026561453, - "stunfisk": 1.6637908641985066, - "stunfisk-galar": 3.151704127084057, - "mienshao": 3.4736072956083923, - "druddigon": 1.5807203814948787, - "golurk": 2.5092612807628383, - "bisharp": 2.4225466610905024, - "bouffalant": 1.3234513744187526, - "heatmor": 2.7865184654883732, - "durant": 3.373564324139303, - "diggersby": 3.73221746559957, - "talonflame": 4.247730718352348, - "pangoro": 1.8392607855907002, - "doublade": 2.952063042606574, - "malamar": 2.7600181928734315, - "barbaracle": 1.6079087158770737, - "heliolisk": 3.3798681847047214, - "tyrantrum": 1.7265518671867026, - "aurorus": 2.97155777365038, - "hawlucha": 3.740787710925714, - "dedenne": 3.7178450908550835, - "klefki": 3.445074244180839, - "trevenant": 2.7265449043066603, - "gourgeist-average": 4.680400642499585, - "charjabug": 3.603329959949412, - "vikavolt": 1.9206076262703897, - "ribombee": 6.007314346643282, - "lycanroc-midday": 4.271295390119776, - "lycanroc-midnight": 3.0427918341502362, - "mudsdale": 2.089047861904131, - "araquanid": 2.364167338888863, - "lurantis": 2.8205313441103215, - "shiinotic": 7.848838319624992, - "salazzle": 4.510017121412063, - "bewear": 1.7822103574426784, - "tsareena": 3.3387351811339503, - "comfey": 5.647556334242884, - "oranguru": 2.3368678285870645, - "passimian": 2.5031091860249197, - "palossand": 2.9448624346259606, - "pyukumuku": 41.65456321908883, - "togedemaru": 2.1773433384348335, - "mimikyu-disguised": 3.809074657150875, - "greedent": 2.064752343921306, - "orbeetle": 1.8478399265405794, - "thievul": 1.901350575574873, - "eldegoss": 4.751936721159031, - "dubwool": 2.9916669494008614, - "drednaw": 1.3463323174152857, - "boltund": 4.5402896896474765, - "carkol": 4.8074799886246495, - "coalossal": 4.189904290483792, - "sandaconda": 4.536259939753615, - "cramorant": 5.317771310518394, - "barraskewda": 4.090424965017449, - "toxtricity-amped": 2.736260711723245, - "centiskorch": 2.63708673720383, - "grapploct": 1.8955873089585702, - "polteageist": 2.380568155204501, - "hatterene": 2.8202083131524573, - "grimmsnarl": 4.681626885162016, - "obstagoon": 2.5149989146401683, - "perrserker": 3.5264157411421615, - "alcremie": 2.0394126682518023, - "falinks": 3.5913809302511464, - "pincurchin": 3.0552883434004725, - "frosmoth": 2.8818794962622185, - "indeedee-male": 3.1330887131657503, - "morpeko": 2.569152853455492, - "copperajah": 2.6370873456686623, - "duraludon": 1.3771351520517072, - "drakloak": 3.727990708094175, - "tentacruel": 2.148287845692085 + "ivysaur": 3.1603365444149016, + "charmeleon": 5.62566901037936, + "wartortle": 2.7682102292760407, + "butterfree": 4.879956494793148, + "raichu": 5.016564286141692, + "raichu-alola": 3.211212609078969, + "sandslash": 3.0437225803453356, + "sandslash-alola": 2.2260861959896774, + "nidoqueen": 3.788776170751018, + "nidoking": 2.2544061939890403, + "clefairy": 11.836766745659062, + "clefable": 2.831524167601239, + "jigglypuff": 34.29141041410817, + "wigglytuff": 2.5371415546391156, + "gloom": 5.800944130243732, + "vileplume": 2.904460608750166, + "dugtrio": 4.138014827513574, + "dugtrio-alola": 4.214845168065457, + "persian": 4.31488876523097, + "persian-alola": 4.371534941256399, + "golduck": 2.9363190829165013, + "poliwrath": 1.7725322611614402, + "kadabra": 3.937374740971061, + "machoke": 4.063047644877788, + "tentacruel": 2.148287845692085, + "slowbro": 1.4927349202941231, + "magneton": 3.416890778460597, + "haunter": 4.599385534985425, + "kingler": 2.2596591315197205, + "exeggutor": 1.9285194103840935, + "marowak": 4.000633152755868, + "marowak-alola": 3.1219365887272383, + "hitmonlee": 2.4982044573170605, + "hitmonchan": 2.0760003271180736, + "lickitung": 2.1181312700992514, + "weezing": 1.9212532797791049, + "weezing-galar": 3.196721013386009, + "rhydon": 4.648539512819719, + "chansey": 27.0952395130343, + "tangela": 4.530329150006404, + "kangaskhan": 1.7414214776403683, + "seadra": 4.085900013061297, + "seaking": 2.206303469173001, + "starmie": 1.382406131341581, + "mr-mime": 7.847161664095597, + "mr-mime-galar": 3.7667795564818363, + "scyther": 2.699063171000228, + "jynx": 4.777892387631766, + "electabuzz": 2.3534567455213726, + "magmar": 2.332456341291153, + "tauros": 2.0173894107197516, + "ditto": 2.7496281959255526, + "vaporeon": 3.3209377485519314, + "jolteon": 1.896905471317904, + "flareon": 3.168086250209627, + "porygon": 2.857267240299077, + "dragonair": 1.7079839509492487, + "noctowl": 5.600058010615321, + "lanturn": 1.866299777514309, + "togetic": 6.791092976647073, + "xatu": 3.809337286390294, + "bellossom": 2.935578750455325, + "azumarill": 2.7628400156959874, + "sudowoodo": 3.52502558107832, + "politoed": 2.4217943565788413, + "quagsire": 5.425162667893615, + "slowking": 2.3508402751715383, + "dunsparce": 3.514635664089917, + "qwilfish": 3.194995402081148, + "sneasel": 2.2316346676051193, + "piloswine": 2.3563977919414434, + "octillery": 2.3711457825542888, + "mantine": 2.567876198831106, + "skarmory": 2.3511193814951543, + "hitmontop": 2.6070825490515968, + "miltank": 3.8300467381274603, + "grovyle": 9.81924579482417, + "sceptile": 1.6917620682697057, + "combusken": 4.923432918272444, + "blaziken": 2.3489822983083255, + "marshtomp": 2.5409436747705945, + "swampert": 1.3525786881103077, + "linoone": 5.198504586336423, + "linoone-galar": 4.778729049267502, + "pelipper": 5.370576984665876, + "ninjask": 7.841536195219392, + "exploud": 1.7671276084861105, + "lairon": 3.828795261949476, + "manectric": 1.7930362989646222, + "roselia": 3.8609136025329764, + "sharpedo": 4.530896751102235, + "wailmer": 6.301930624915243, + "torkoal": 3.2567934353078316, + "flygon": 2.444343238759912, + "altaria": 1.6679507437782397, + "whiscash": 2.2053039172791826, + "crawdaunt": 1.8965133358345605, + "claydol": 4.198910802749875, + "cradily": 2.40567214979371, + "armaldo": 2.4684077631458257, + "dusclops": 3.522308421749387, + "absol": 2.0795476719345154, + "glalie": 4.3069572426338585, + "sealeo": 3.2065693407545135, + "relicanth": 2.0770369589811692, + "metang": 2.7243700019577286, + "luxray": 3.6354460174434413, + "vespiquen": 2.8276141490547233, + "cherrim": 6.915263094205256, + "gastrodon": 2.1800239953102487, + "drifblim": 3.9286728445688146, + "lopunny": 3.603547153826968, + "skuntank": 1.5538394747487345, + "bronzong": 2.8226352477125642, + "munchlax": 2.1224046210520493, + "drapion": 2.6596832845087404, + "abomasnow": 3.6160638613529668, + "froslass": 3.1626189209121867, + "rotom": 3.753642666712655, + "stoutland": 2.3694059190140617, + "liepard": 7.197163009112984, + "musharna": 1.4234491894787316, + "unfezant": 6.501767754373034, + "boldore": 4.8083420717413015, + "swoobat": 5.436303950764783, + "audino": 2.48520258560999, + "gurdurr": 2.38760885001792, + "palpitoad": 3.907671703548746, + "seismitoad": 7.078361714328459, + "scolipede": 3.4422805174566635, + "whimsicott": 4.962508139215918, + "lilligant": 3.640290930137291, + "basculin-red-striped": 2.491826489998096, + "basculin-blue-striped": 3.418588874705196, + "krookodile": 3.66444500684499, + "maractus": 2.5612110001439694, + "crustle": 3.111845348108051, + "sigilyph": 2.3855377163265756, + "cofagrigus": 2.76195695862914, + "garbodor": 1.9894598298394945, + "cinccino": 4.7148836252435835, + "vanillish": 2.39083572002442, + "emolga": 2.889788071820599, + "escavalier": 1.7846419451519173, + "amoonguss": 2.53830652293105, + "jellicent": 1.416961110809055, + "galvantula": 1.55995712409947, + "klang": 2.9260241576940147, + "klinklang": 3.642648413409422, + "beheeyem": 1.7831277481384054, + "lampent": 4.064470663517953, + "fraxure": 1.3417963304348262, + "beartic": 1.9708090876979243, + "cryogonal": 1.9672701773861863, + "accelgor": 3.4237003759487266, + "stunfisk": 1.6654684106461877, + "stunfisk-galar": 3.156347509989616, + "mienshao": 3.4772582828009977, + "druddigon": 1.5790659722662894, + "golurk": 2.5141368404780633, + "bisharp": 2.4198195631534927, + "bouffalant": 1.3249883636379538, + "heatmor": 2.798845382352787, + "durant": 3.3749865183234453, + "diggersby": 3.7298286949618324, + "talonflame": 4.264797040542744, + "pangoro": 1.8416313736974916, + "doublade": 2.9587706275070067, + "malamar": 2.7582494167331735, + "barbaracle": 1.6086994872731877, + "heliolisk": 3.367516145225265, + "tyrantrum": 1.727186022705375, + "aurorus": 2.9746112417146326, + "hawlucha": 3.746133128130092, + "dedenne": 3.72602815132612, + "klefki": 3.452687418366234, + "trevenant": 2.7262090984505782, + "gourgeist-average": 4.681957407827065, + "charjabug": 3.5929245878531475, + "vikavolt": 1.922732731808873, + "ribombee": 6.030606238053782, + "lycanroc-midday": 4.2772057383739845, + "lycanroc-midnight": 3.0476005980807894, + "mudsdale": 2.0923288862304394, + "araquanid": 2.361977495054859, + "lurantis": 2.8244839332072296, + "shiinotic": 7.87826752125472, + "salazzle": 4.5275240013964035, + "bewear": 1.7813455723227118, + "tsareena": 3.338620357665098, + "comfey": 5.667178451106747, + "oranguru": 2.332249629120812, + "passimian": 2.506476017455333, + "palossand": 2.9514856944242895, + "pyukumuku": 41.66882917280576, + "togedemaru": 2.1761709511684595, + "mimikyu-disguised": 3.8105503792458033, + "greedent": 2.0629020707102717, + "orbeetle": 1.8469863045823312, + "thievul": 1.9033754394255977, + "eldegoss": 4.758551371790428, + "dubwool": 2.9924043734449555, + "drednaw": 1.3472483350463236, + "boltund": 4.539585183764105, + "carkol": 4.830316003624069, + "coalossal": 4.212088691217386, + "sandaconda": 4.545175865525115, + "cramorant": 5.317282218802349, + "barraskewda": 4.0882132954756125, + "toxtricity-amped": 2.734609773218512, + "centiskorch": 2.6440815599613625, + "grapploct": 1.900727130977781, + "polteageist": 2.378557353193922, + "hatterene": 2.824094873244392, + "grimmsnarl": 4.695194640515358, + "obstagoon": 2.5134205488912027, + "perrserker": 3.528069469179126, + "alcremie": 2.0471560097506427, + "falinks": 3.5994762063434766, + "pincurchin": 3.0581924491215524, + "frosmoth": 2.884992857951108, + "indeedee-male": 3.1344621245153474, + "morpeko": 2.5669754818565416, + "copperajah": 2.641697393175397, + "duraludon": 1.3758770234368007, + "drakloak": 3.724123208227746 }, "slowbro": { - "ivysaur": 4.0781174139968766, - "charmeleon": 4.393369092555465, - "wartortle": 3.1555352824273397, - "butterfree": 4.484879560402383, - "raichu": 5.152948608466117, - "raichu-alola": 3.0622842486221455, - "sandslash": 2.5478879423806933, - "sandslash-alola": 4.108053557806897, - "nidoqueen": 3.815668297966638, - "nidoking": 2.7415182103580458, - "clefairy": 9.577404918296816, - "clefable": 2.220390732510695, - "jigglypuff": 28.60675010220661, - "wigglytuff": 2.1889274068332845, - "gloom": 8.06290884256638, - "vileplume": 3.682142887768658, - "dugtrio": 4.022961380079661, - "dugtrio-alola": 4.220010615292087, - "persian": 4.664506658004939, - "persian-alola": 3.524863476291886, - "golduck": 3.523448525516866, - "poliwrath": 3.0251788108483693, - "kadabra": 3.670154045137769, - "machoke": 5.916616309250314, - "tentacruel": 3.5597762820254744, - "magneton": 3.973159842274935, - "haunter": 6.070026024867745, - "kingler": 3.2304386385329824, - "exeggutor": 2.2892294117049485, - "marowak": 3.4774613491263944, - "marowak-alola": 2.395274758055706, - "hitmonlee": 3.694280552662517, - "hitmonchan": 3.1616538717928053, - "lickitung": 2.131093707331269, - "weezing": 2.6109524170688188, - "weezing-galar": 4.387421919322103, - "rhydon": 2.8152369331598757, - "chansey": 27.580920326632672, - "tangela": 6.624109013267358, - "kangaskhan": 1.988399005234717, - "seadra": 5.1478554079720915, - "seaking": 2.7503001786958556, - "starmie": 1.335454124356018, - "mr-mime": 6.637299244551685, - "mr-mime-galar": 4.538398357550977, - "scyther": 3.1561793813108725, - "jynx": 5.8900326941817305, - "electabuzz": 2.3500110752442795, - "magmar": 1.9082846341228563, - "tauros": 2.319668288868595, - "ditto": 2.506856445002745, - "vaporeon": 3.542312906082813, - "jolteon": 1.8750827553761638, - "flareon": 2.62544612137584, - "porygon": 2.8701735650345945, - "dragonair": 2.061222744807483, - "noctowl": 6.1489298191935315, - "lanturn": 2.047087807524436, - "togetic": 5.952746068584057, - "xatu": 3.8055658476822476, - "bellossom": 2.628725719518914, - "azumarill": 2.6110050120111126, - "sudowoodo": 3.066944503579522, - "politoed": 2.8138916425932274, - "quagsire": 5.559108067335355, - "slowking": 2.386496209197269, - "dunsparce": 3.4215287650623734, - "qwilfish": 5.879505757719473, - "sneasel": 2.42211663324972, - "piloswine": 1.8807410784601266, - "octillery": 2.6001219287650494, - "mantine": 2.679830625034623, - "skarmory": 2.919052531313981, - "hitmontop": 4.091489813590615, - "miltank": 4.19716563472647, - "grovyle": 8.357797123819548, - "sceptile": 1.5133242081187284, - "combusken": 5.193958955901316, - "blaziken": 2.5393977542246136, - "marshtomp": 2.8719971927750407, - "swampert": 1.420415872592232, - "linoone": 5.3446509588298525, - "linoone-galar": 3.9475940519889527, - "pelipper": 6.951834041477904, - "ninjask": 8.213987012230714, - "exploud": 1.8077255798208116, - "lairon": 2.751370468813038, - "manectric": 1.8920400057520745, - "roselia": 5.1982107622316125, - "sharpedo": 4.20351430200075, - "wailmer": 7.525003555122489, - "torkoal": 2.4343885944765464, - "flygon": 2.536704603910417, - "altaria": 1.7706986350724594, - "whiscash": 2.4457960211456706, - "crawdaunt": 1.7825560658476847, - "claydol": 3.2548752076816454, - "cradily": 2.250501735597119, - "armaldo": 2.012075742638903, - "dusclops": 3.2703358641623437, - "absol": 1.9356752140389606, - "glalie": 5.060879450749122, - "sealeo": 3.668461972357682, - "relicanth": 2.3150864321714417, - "metang": 3.930640146878492, - "luxray": 3.799867116514994, - "vespiquen": 3.221456288709919, - "cherrim": 6.204903789601493, - "gastrodon": 2.366054004485157, - "drifblim": 4.3686430475112505, - "lopunny": 4.086448667427796, - "skuntank": 1.3880697851348045, - "bronzong": 4.343491566996338, - "munchlax": 2.4082065632645366, - "drapion": 2.3379604205549507, - "abomasnow": 4.912969566981991, - "froslass": 3.531255398762124, - "rotom": 3.501556492734445, - "stoutland": 2.647918747004715, - "liepard": 6.540923509229145, - "musharna": 1.4823120697565786, - "unfezant": 7.282980777223162, - "boldore": 4.112155025757825, - "swoobat": 5.453755075593229, - "audino": 2.444369371897638, - "gurdurr": 3.8295641708333985, - "palpitoad": 4.19848830113006, - "seismitoad": 6.787252663599212, - "scolipede": 4.5583631182692885, - "whimsicott": 3.682332938840112, - "lilligant": 3.181661667016648, - "basculin-red-striped": 3.407548478720295, - "basculin-blue-striped": 4.137389352148316, - "krookodile": 2.6365048429336033, - "maractus": 2.359832405292265, - "crustle": 2.354160576460792, - "sigilyph": 2.338263946703398, - "cofagrigus": 2.783628603210902, - "garbodor": 2.7448116527930138, - "cinccino": 5.138936464775713, - "vanillish": 2.672159176709477, - "emolga": 2.9125424171678866, - "escavalier": 3.322521961212681, - "amoonguss": 3.374048457217171, - "jellicent": 1.764432762686621, - "galvantula": 1.6823091003464272, - "klang": 3.3869447414734175, - "klinklang": 4.718669639034243, - "beheeyem": 1.670059937155738, - "lampent": 2.9965092647239757, - "fraxure": 1.7897889946611114, - "beartic": 2.2619433254230668, - "cryogonal": 1.984679432704196, - "accelgor": 2.9962407421230495, - "stunfisk": 1.355564720424638, - "stunfisk-galar": 2.83762066369897, - "mienshao": 5.091151700882841, - "druddigon": 1.9933629415002554, - "golurk": 1.997173146540713, - "bisharp": 3.1521599028223424, - "bouffalant": 1.4396171215747435, - "heatmor": 2.1083345960971958, - "durant": 6.332542042293893, - "diggersby": 3.5368132227579414, - "talonflame": 3.3036314995822877, - "pangoro": 1.7339301080257479, - "doublade": 3.951850505999155, - "malamar": 2.6369321838121778, - "barbaracle": 1.7117324950369968, - "heliolisk": 3.739163808751416, - "tyrantrum": 1.9455126655701744, - "aurorus": 2.5108300737864537, - "hawlucha": 5.2880924866497825, - "dedenne": 2.982570443636539, - "klefki": 4.137815051970469, - "trevenant": 3.5754223186187257, - "gourgeist-average": 6.8153835611217355, - "charjabug": 4.872058786942962, - "vikavolt": 2.143453147528251, - "ribombee": 5.033856267557225, - "lycanroc-midday": 3.642923188758199, - "lycanroc-midnight": 2.531877357457786, - "mudsdale": 1.760068495813869, - "araquanid": 2.514788147164737, - "lurantis": 2.6396230604521396, - "shiinotic": 5.0881648645681175, - "salazzle": 4.701238253433823, - "bewear": 2.707749982328117, - "tsareena": 3.5653292720105387, - "comfey": 4.421718632191286, - "oranguru": 2.708202384104891, - "passimian": 3.8275272048836175, - "palossand": 2.1412363071336626, - "pyukumuku": 45.38473793761928, - "togedemaru": 2.6077104490386973, - "mimikyu-disguised": 4.133917245583527, - "greedent": 2.5237236744971785, - "orbeetle": 2.053665548218592, - "thievul": 1.5860527586801818, - "eldegoss": 3.987252442260803, - "dubwool": 3.675739245636832, - "drednaw": 1.4670327651164183, - "boltund": 4.521423300432941, - "carkol": 2.7511788345644526, - "coalossal": 2.2471226022714803, - "sandaconda": 3.527872489042262, - "cramorant": 5.797756038454844, - "barraskewda": 5.1593415237263525, - "toxtricity-amped": 3.6194008992837015, - "centiskorch": 2.240292853050384, - "grapploct": 2.669944765957106, - "polteageist": 2.7097318342571035, - "hatterene": 2.520059765958452, - "grimmsnarl": 3.3665020327881474, - "obstagoon": 2.3588606420205065, - "perrserker": 4.297783435679455, - "alcremie": 1.5240183398016622, - "falinks": 5.123781070121581, - "pincurchin": 3.075258501790053, - "frosmoth": 3.472354680678342, - "indeedee-male": 2.9341337860782186, - "morpeko": 2.4166223979999737, - "copperajah": 3.217033681830779, - "duraludon": 1.687753507652813, - "drakloak": 4.601222407602444, - "slowbro": 1.7609861010877763 + "ivysaur": 4.086682486273354, + "charmeleon": 4.403810857620466, + "wartortle": 3.1646937559867663, + "butterfree": 4.482330040680553, + "raichu": 5.156896333863482, + "raichu-alola": 3.0587798600368608, + "sandslash": 2.5529396591952316, + "sandslash-alola": 4.125181779559008, + "nidoqueen": 3.8252891568969165, + "nidoking": 2.753337345725286, + "clefairy": 9.592275603599138, + "clefable": 2.2246044017784476, + "jigglypuff": 28.654707843501704, + "wigglytuff": 2.1932942644046842, + "gloom": 8.094159516382893, + "vileplume": 3.6873812177573546, + "dugtrio": 4.031913933090306, + "dugtrio-alola": 4.228715179804404, + "persian": 4.672319021896445, + "persian-alola": 3.514144531307312, + "golduck": 3.5323197876261077, + "poliwrath": 3.03981252051551, + "kadabra": 3.671026984150851, + "machoke": 5.940912641152272, + "tentacruel": 3.576072584742948, + "slowbro": 1.7609861010877763, + "magneton": 3.9767846908346076, + "haunter": 6.082127610570137, + "kingler": 3.24060536611631, + "exeggutor": 2.2900565046925996, + "marowak": 3.4846394089443082, + "marowak-alola": 2.4010785241164703, + "hitmonlee": 3.7138822326318697, + "hitmonchan": 3.175803012183094, + "lickitung": 2.1337652526091033, + "weezing": 2.6186835287526344, + "weezing-galar": 4.40506385188129, + "rhydon": 2.8199588263195734, + "chansey": 27.581073816793175, + "tangela": 6.634337355459775, + "kangaskhan": 1.9916156544977754, + "seadra": 5.156974857122572, + "seaking": 2.7569327043874696, + "starmie": 1.3359110087536477, + "mr-mime": 6.646875217486725, + "mr-mime-galar": 4.54742156221304, + "scyther": 3.1612988938813413, + "jynx": 5.900893431945892, + "electabuzz": 2.348261830548002, + "magmar": 1.9123896311362218, + "tauros": 2.3251133386674514, + "ditto": 2.494820352578108, + "vaporeon": 3.5500415656527866, + "jolteon": 1.873618256802546, + "flareon": 2.6254477031262424, + "porygon": 2.8721033526271054, + "dragonair": 2.0634501673491212, + "noctowl": 6.1585058615948824, + "lanturn": 2.050102619920169, + "togetic": 5.970508689117851, + "xatu": 3.808819337523589, + "bellossom": 2.630101827849807, + "azumarill": 2.6211251271071543, + "sudowoodo": 3.0737104908329425, + "politoed": 2.8192632511134925, + "quagsire": 5.574924488739632, + "slowking": 2.3892809133527964, + "dunsparce": 3.4251900209660118, + "qwilfish": 5.906288638835745, + "sneasel": 2.41905184873716, + "piloswine": 1.88682714961251, + "octillery": 2.604667540065199, + "mantine": 2.6860230245991517, + "skarmory": 2.9260811205058843, + "hitmontop": 4.112513204877565, + "miltank": 4.206382516598078, + "grovyle": 8.363810874194286, + "sceptile": 1.5131071415941295, + "combusken": 5.219669266881867, + "blaziken": 2.55246349135476, + "marshtomp": 2.880198903853972, + "swampert": 1.4236330700440374, + "linoone": 5.348103155810856, + "linoone-galar": 3.9346597841456443, + "pelipper": 6.9614188998963735, + "ninjask": 8.21887108850159, + "exploud": 1.811295937086348, + "lairon": 2.7569738172122067, + "manectric": 1.8955173981323412, + "roselia": 5.211849456861622, + "sharpedo": 4.194049886517955, + "wailmer": 7.5450381458635265, + "torkoal": 2.4412897471185047, + "flygon": 2.539179474365148, + "altaria": 1.7731409358196024, + "whiscash": 2.4519427757258203, + "crawdaunt": 1.7786735017202078, + "claydol": 3.2565842555608473, + "cradily": 2.2506084800649346, + "armaldo": 2.0150003411407305, + "dusclops": 3.2704029839854982, + "absol": 1.9334661595342957, + "glalie": 5.0737059797931, + "sealeo": 3.6779533613470194, + "relicanth": 2.3191683653101074, + "metang": 3.938647301107142, + "luxray": 3.8002640393480194, + "vespiquen": 3.2278833604052393, + "cherrim": 6.205627553732848, + "gastrodon": 2.3701725977818437, + "drifblim": 4.372844896869242, + "lopunny": 4.096393928736273, + "skuntank": 1.3857496068461925, + "bronzong": 4.357128856957203, + "munchlax": 2.4113399357858873, + "drapion": 2.3349216209338546, + "abomasnow": 4.924406899275508, + "froslass": 3.5403501416343426, + "rotom": 3.501147053851284, + "stoutland": 2.6523352147416506, + "liepard": 6.5292457271204665, + "musharna": 1.4827871209407442, + "unfezant": 7.301897864560928, + "boldore": 4.121598909741574, + "swoobat": 5.458625489726991, + "audino": 2.448938171358876, + "gurdurr": 3.8491576452031073, + "palpitoad": 4.206469911184419, + "seismitoad": 6.791324796417319, + "scolipede": 4.572178743044538, + "whimsicott": 3.6878766356620534, + "lilligant": 3.1801609505138217, + "basculin-red-striped": 3.4187301419859097, + "basculin-blue-striped": 4.145459671265311, + "krookodile": 2.631235536398098, + "maractus": 2.360089226489218, + "crustle": 2.358585503644914, + "sigilyph": 2.3407827309383555, + "cofagrigus": 2.786435450184319, + "garbodor": 2.756741252620187, + "cinccino": 5.150987396700668, + "vanillish": 2.679996922159859, + "emolga": 2.913759206054776, + "escavalier": 3.332679568084206, + "amoonguss": 3.3829415187477156, + "jellicent": 1.769473513781568, + "galvantula": 1.6817430120226684, + "klang": 3.390560113919837, + "klinklang": 4.733639298407033, + "beheeyem": 1.6694596027669828, + "lampent": 3.002121848683049, + "fraxure": 1.792175208505348, + "beartic": 2.2702562658192242, + "cryogonal": 1.9885443390117752, + "accelgor": 2.9952751518616703, + "stunfisk": 1.3563847766969843, + "stunfisk-galar": 2.84097583177315, + "mienshao": 5.113995813613274, + "druddigon": 1.9969606627912584, + "golurk": 2.0012673338079114, + "bisharp": 3.1535333445141216, + "bouffalant": 1.4435116346370103, + "heatmor": 2.1110261585091905, + "durant": 6.34762975276589, + "diggersby": 3.5445312164676372, + "talonflame": 3.311456935477763, + "pangoro": 1.7328130774916475, + "doublade": 3.9689792633328134, + "malamar": 2.6310081112262758, + "barbaracle": 1.7144138310624106, + "heliolisk": 3.7419572817721782, + "tyrantrum": 1.9492335408726542, + "aurorus": 2.511386826050925, + "hawlucha": 5.307777738117489, + "dedenne": 2.9840498391254826, + "klefki": 4.151085840684415, + "trevenant": 3.5844036240068275, + "gourgeist-average": 6.83346225099305, + "charjabug": 4.880977257298138, + "vikavolt": 2.145786820179622, + "ribombee": 5.036704928178715, + "lycanroc-midday": 3.648601858913155, + "lycanroc-midnight": 2.5350268203807595, + "mudsdale": 1.764208069281144, + "araquanid": 2.519969570373898, + "lurantis": 2.6405778306112704, + "shiinotic": 5.0982632561200205, + "salazzle": 4.721638548757562, + "bewear": 2.7161961433459823, + "tsareena": 3.570751443168005, + "comfey": 4.424032326344426, + "oranguru": 2.7123137590012396, + "passimian": 3.845897162047378, + "palossand": 2.142787525840143, + "pyukumuku": 45.40880895529956, + "togedemaru": 2.6115558267208696, + "mimikyu-disguised": 4.1393229293345, + "greedent": 2.5310380582033964, + "orbeetle": 2.055776408366644, + "thievul": 1.581809263633748, + "eldegoss": 3.986763034376851, + "dubwool": 3.6850128588933817, + "drednaw": 1.4690541249818336, + "boltund": 4.519890047055613, + "carkol": 2.7550869745964084, + "coalossal": 2.2505927483525707, + "sandaconda": 3.532664279530738, + "cramorant": 5.805075728661519, + "barraskewda": 5.167063064280741, + "toxtricity-amped": 3.6243988011635917, + "centiskorch": 2.245121033501136, + "grapploct": 2.6839872442436246, + "polteageist": 2.7128126248813462, + "hatterene": 2.5238192324262427, + "grimmsnarl": 3.3578925099309025, + "obstagoon": 2.352875100094513, + "perrserker": 4.304064371307634, + "alcremie": 1.526380643225798, + "falinks": 5.144414884051526, + "pincurchin": 3.0772783057158604, + "frosmoth": 3.475956071112462, + "indeedee-male": 2.9339114142323233, + "morpeko": 2.409659907431788, + "copperajah": 3.2281942156060195, + "duraludon": 1.6897887484642444, + "drakloak": 4.603116335532687 }, "magneton": { - "ivysaur": 3.7383996514838724, - "charmeleon": 3.463321078015741, - "wartortle": 3.6902811939769427, - "butterfree": 6.29176899675488, - "raichu": 4.094370962431382, - "raichu-alola": 3.1662157506609594, - "sandslash": 2.367766332538155, - "sandslash-alola": 2.503232932936249, - "nidoqueen": 2.472395831831427, - "nidoking": 1.7323386808160026, - "clefairy": 12.115719447909553, - "clefable": 3.3330412906841564, - "jigglypuff": 42.71668797476211, - "wigglytuff": 3.305511024841024, - "gloom": 7.02205751766577, - "vileplume": 3.436679526074122, - "dugtrio": 3.218998299884958, - "dugtrio-alola": 2.5916710595950025, - "persian": 5.05732519694423, - "persian-alola": 4.433396526903815, - "golduck": 4.4016604840719795, - "poliwrath": 2.6744923163118592, - "kadabra": 4.121644044004436, - "machoke": 4.225751532934227, - "tentacruel": 3.0072524815283352, - "slowbro": 2.6129637412481275, - "haunter": 4.947312163729246, - "kingler": 3.6516856112310974, - "exeggutor": 2.0330998794905555, - "marowak": 3.0130220868164335, - "marowak-alola": 2.190359474624557, - "hitmonlee": 2.026013536401903, - "hitmonchan": 2.1577814778823963, - "lickitung": 2.1471768302277883, - "weezing": 1.7505560148243502, - "weezing-galar": 4.557228059150254, - "rhydon": 3.3577292694873995, - "chansey": 21.344742886426815, - "tangela": 6.860513145399164, - "kangaskhan": 1.9589695150096853, - "seadra": 7.059128756568819, - "seaking": 3.1539052302175272, - "starmie": 2.177046062459554, - "mr-mime": 9.57040093766502, - "mr-mime-galar": 5.304378652095405, - "scyther": 4.081150040970396, - "jynx": 5.465163076034186, - "electabuzz": 2.360292117322439, - "magmar": 1.3714511112413494, - "tauros": 2.032813675213471, - "ditto": 3.1392144292063944, - "vaporeon": 4.134401291455441, - "jolteon": 1.699601082220415, - "flareon": 1.807363324417366, - "porygon": 3.2067256378455506, - "dragonair": 2.2305782692638343, - "noctowl": 7.88823367689495, - "lanturn": 1.4311515912121053, - "togetic": 7.092881770339057, - "xatu": 5.9050143251852365, - "bellossom": 2.7273314408998086, - "azumarill": 3.684704640731894, - "sudowoodo": 3.7386548805550106, - "politoed": 2.8107478103200787, - "quagsire": 3.7724580807241272, - "slowking": 3.3782973844790583, - "dunsparce": 3.83333114568503, - "qwilfish": 5.9598919089089275, - "sneasel": 3.0396890083424966, - "piloswine": 2.5481001787281565, - "octillery": 3.567343101807313, - "mantine": 4.55495468220103, - "skarmory": 3.9713643539589554, - "hitmontop": 2.427136925463685, - "miltank": 4.618733740200219, - "grovyle": 8.136767459964503, - "sceptile": 1.5948583121427182, - "combusken": 2.883277681373835, - "blaziken": 1.445335330048418, - "marshtomp": 1.9895679848013206, - "swampert": 0.9563823055928142, - "linoone": 6.071884940883816, - "linoone-galar": 4.8871199567733035, - "pelipper": 16.07872761478978, - "ninjask": 10.124489537789227, - "exploud": 1.7556221909021343, - "lairon": 3.464824158175127, - "manectric": 1.5496527818403003, - "roselia": 4.259489151278757, - "sharpedo": 7.320944711163657, - "wailmer": 9.792309678705672, - "torkoal": 1.695538040695557, - "flygon": 2.5359432298375673, - "altaria": 1.565217658042786, - "whiscash": 1.8354664495850115, - "crawdaunt": 3.047268505206053, - "claydol": 3.785890289058652, - "cradily": 3.5859119940495, - "armaldo": 2.733132814940136, - "dusclops": 3.775052457836466, - "absol": 2.168735602753106, - "glalie": 6.450933463033265, - "sealeo": 4.481834780382249, - "relicanth": 3.137312069661416, - "metang": 3.569133984501871, - "luxray": 3.6597083112967725, - "vespiquen": 3.9616393390412235, - "cherrim": 6.623751269345026, - "gastrodon": 1.995137755446987, - "drifblim": 6.339920887189221, - "lopunny": 4.027719630829805, - "skuntank": 1.527562173262948, - "bronzong": 3.7452741836976533, - "munchlax": 2.3245590832986407, - "drapion": 3.070092625141071, - "abomasnow": 4.77407104395846, - "froslass": 4.59982177686419, - "rotom": 3.241083842837641, - "stoutland": 2.8988569023157975, - "liepard": 8.032377235124384, - "musharna": 1.7732764542708899, - "unfezant": 11.058855741155227, - "boldore": 5.16445377376084, - "swoobat": 8.466120787727917, - "audino": 2.468094557260943, - "gurdurr": 2.135668540955648, - "palpitoad": 2.7191348259624073, - "seismitoad": 6.6235934575231985, - "scolipede": 3.8932100075094094, - "whimsicott": 5.292655109861681, - "lilligant": 3.5419929551464273, - "basculin-red-striped": 4.348317579488908, - "basculin-blue-striped": 5.32447170927061, - "krookodile": 2.515658320186766, - "maractus": 2.5541982955094973, - "crustle": 3.519955026166577, - "sigilyph": 3.6189308145876504, - "cofagrigus": 3.049080197507818, - "garbodor": 2.1941034111890163, - "cinccino": 5.494546118289983, - "vanillish": 3.2883611832290507, - "emolga": 3.516537566747064, - "escavalier": 1.6798240818510664, - "amoonguss": 3.139577518270704, - "jellicent": 2.273150331109464, - "galvantula": 1.5022204730389244, - "klang": 3.2575338348356278, - "klinklang": 4.22157498858625, - "beheeyem": 1.972435368210307, - "lampent": 2.0693766432003637, - "fraxure": 2.0072186925779727, - "beartic": 2.56860512419384, - "cryogonal": 2.1900370267684472, - "accelgor": 3.459683122000718, - "stunfisk": 0.9472823896488541, - "stunfisk-galar": 1.6057672800908183, - "mienshao": 3.568376719497987, - "druddigon": 1.945320072999352, - "golurk": 1.7062705121724004, - "bisharp": 2.9075579822792763, - "bouffalant": 1.4453688744682593, - "heatmor": 1.7450902970641193, - "durant": 3.9981035345533957, - "diggersby": 2.823266763327672, - "talonflame": 4.093404160794677, - "pangoro": 1.8578518885613287, - "doublade": 3.1501801187442258, - "malamar": 3.2769966950720097, - "barbaracle": 2.278652148194598, - "heliolisk": 2.830210252686782, - "tyrantrum": 2.8192210007331484, - "aurorus": 4.918997896407787, - "hawlucha": 5.094021667257248, - "dedenne": 3.4361797127979354, - "klefki": 3.900887552742372, - "trevenant": 3.264209070027049, - "gourgeist-average": 5.607325074580164, - "charjabug": 3.3341305915633646, - "vikavolt": 1.608003220307709, - "ribombee": 7.33756579987883, - "lycanroc-midday": 5.317369861020136, - "lycanroc-midnight": 3.4452948579852385, - "mudsdale": 1.4816996305294843, - "araquanid": 3.389958803962614, - "lurantis": 2.810956558482217, - "shiinotic": 6.700861338468396, - "salazzle": 3.100883402936004, - "bewear": 2.1889698343614885, - "tsareena": 3.7464834686592416, - "comfey": 7.012448257154549, - "oranguru": 3.000182589035579, - "passimian": 2.6755357973350344, - "palossand": 1.8433375730186783, - "pyukumuku": 66.36074668229386, - "togedemaru": 2.1307826706509725, - "mimikyu-disguised": 6.261937863974993, - "greedent": 2.702308990178202, - "orbeetle": 2.087392447886562, - "thievul": 1.6465268297679665, - "eldegoss": 4.325144266383552, - "dubwool": 3.305652460100717, - "drednaw": 2.00757262389444, - "boltund": 4.309293896306838, - "carkol": 2.5098176050945837, - "coalossal": 1.9988470996305814, - "sandaconda": 3.119507681028183, - "cramorant": 10.193408465499731, - "barraskewda": 7.083574465815155, - "toxtricity-amped": 2.565320799777436, - "centiskorch": 1.7125883628723049, - "grapploct": 1.6693327180746569, - "polteageist": 2.8660193632666893, - "hatterene": 4.064299274701793, - "grimmsnarl": 5.338643680368618, - "obstagoon": 2.982037532212645, - "perrserker": 3.9843497857570824, - "alcremie": 2.0132826435511575, - "falinks": 3.687566863138917, - "pincurchin": 2.700120200744716, - "frosmoth": 3.808904374886359, - "indeedee-male": 3.0143671711874607, - "morpeko": 2.5658875235433287, - "copperajah": 2.6364606620568063, - "duraludon": 1.6924311315163147, - "drakloak": 5.143181050140714, - "magneton": 3.0779645800758453 + "ivysaur": 3.7441995936614783, + "charmeleon": 3.4513790693406454, + "wartortle": 3.688693647760924, + "butterfree": 6.305338778131554, + "raichu": 4.07675227613408, + "raichu-alola": 3.1631495795067073, + "sandslash": 2.3619461024571455, + "sandslash-alola": 2.505652871662351, + "nidoqueen": 2.4605373137437745, + "nidoking": 1.7258703782356033, + "clefairy": 12.108606434446124, + "clefable": 3.3417103341095586, + "jigglypuff": 42.82337146716077, + "wigglytuff": 3.3135506117510305, + "gloom": 7.037159934991795, + "vileplume": 3.4397868182538196, + "dugtrio": 3.198217551979944, + "dugtrio-alola": 2.579287282441791, + "persian": 5.064927594075991, + "persian-alola": 4.432687757488182, + "golduck": 4.404242105993822, + "poliwrath": 2.6746365792615157, + "kadabra": 4.123040610586785, + "machoke": 4.225313618555246, + "tentacruel": 3.0085780160481668, + "slowbro": 2.613735670933558, + "magneton": 3.0779645800758453, + "haunter": 4.951464366163919, + "kingler": 3.646722644426842, + "exeggutor": 2.0297522174161937, + "marowak": 3.0018949126255237, + "marowak-alola": 2.1890723427971652, + "hitmonlee": 2.0196384400189618, + "hitmonchan": 2.1564266159792855, + "lickitung": 2.14878563538035, + "weezing": 1.7528987206920004, + "weezing-galar": 4.565577352777576, + "rhydon": 3.3512663173189976, + "chansey": 21.302674490083334, + "tangela": 6.875411058666709, + "kangaskhan": 1.9577859477403354, + "seadra": 7.067356008460207, + "seaking": 3.1517568434644874, + "starmie": 2.18146613046818, + "mr-mime": 9.587587882412924, + "mr-mime-galar": 5.3130578054053315, + "scyther": 4.0921808482850235, + "jynx": 5.470187101936507, + "electabuzz": 2.3586567061447394, + "magmar": 1.3669753066414068, + "tauros": 2.028787000754816, + "ditto": 3.1208426937233718, + "vaporeon": 4.134362440359797, + "jolteon": 1.6949136665007063, + "flareon": 1.801952703420017, + "porygon": 3.2101624947579817, + "dragonair": 2.2330795394727425, + "noctowl": 7.907046148610673, + "lanturn": 1.42389754722093, + "togetic": 7.096544506624515, + "xatu": 5.922278791824786, + "bellossom": 2.72928719055996, + "azumarill": 3.6966692129126737, + "sudowoodo": 3.7363201193183584, + "politoed": 2.8012532981313054, + "quagsire": 3.7568016931580575, + "slowking": 3.381821227460792, + "dunsparce": 3.8388436822452183, + "qwilfish": 5.977634337349013, + "sneasel": 3.042257002740028, + "piloswine": 2.5496545442071312, + "octillery": 3.5734121715933957, + "mantine": 4.564500533026052, + "skarmory": 3.9867448383353246, + "hitmontop": 2.4202704778921498, + "miltank": 4.629687658616188, + "grovyle": 8.128927961977787, + "sceptile": 1.595963474855636, + "combusken": 2.8718401015425536, + "blaziken": 1.440455615926671, + "marshtomp": 1.9814065947632957, + "swampert": 0.9499623946283504, + "linoone": 6.079464761676188, + "linoone-galar": 4.884917438007344, + "pelipper": 16.14194299109389, + "ninjask": 10.130550497483604, + "exploud": 1.7546129429728015, + "lairon": 3.47712795235831, + "manectric": 1.5437966544878399, + "roselia": 4.260520245006747, + "sharpedo": 7.3277403808030925, + "wailmer": 9.806186985154842, + "torkoal": 1.6914932858117768, + "flygon": 2.5315090025745937, + "altaria": 1.5643838412734494, + "whiscash": 1.8328888917972779, + "crawdaunt": 3.0502089542271005, + "claydol": 3.7853190512218875, + "cradily": 3.594972765380605, + "armaldo": 2.7337291873774214, + "dusclops": 3.777757798596408, + "absol": 2.1680489994309213, + "glalie": 6.465861459859379, + "sealeo": 4.487135863798729, + "relicanth": 3.1458115361843544, + "metang": 3.5769060240366306, + "luxray": 3.659617395127624, + "vespiquen": 3.9697924828166786, + "cherrim": 6.626785674620185, + "gastrodon": 1.9927316068207162, + "drifblim": 6.354794378292233, + "lopunny": 4.029448829485799, + "skuntank": 1.5283077705649097, + "bronzong": 3.7532900126673003, + "munchlax": 2.3250762765104955, + "drapion": 3.0775027282036427, + "abomasnow": 4.782807863635206, + "froslass": 4.609394868789858, + "rotom": 3.2385328171698244, + "stoutland": 2.9034177623401156, + "liepard": 8.040596620346712, + "musharna": 1.775577676295688, + "unfezant": 11.109450431089815, + "boldore": 5.162755618091276, + "swoobat": 8.490950195137392, + "audino": 2.4657089901743765, + "gurdurr": 2.1292495843584383, + "palpitoad": 2.70272461630473, + "seismitoad": 6.627090710254976, + "scolipede": 3.900852642865861, + "whimsicott": 5.307406196983045, + "lilligant": 3.544666784733886, + "basculin-red-striped": 4.35494588299326, + "basculin-blue-striped": 5.326759716831816, + "krookodile": 2.502972019701724, + "maractus": 2.556187046888686, + "crustle": 3.5277965978154517, + "sigilyph": 3.63017638134553, + "cofagrigus": 3.0517058734779545, + "garbodor": 2.199143010510083, + "cinccino": 5.504063773418004, + "vanillish": 3.2949591116630232, + "emolga": 3.5219417294571933, + "escavalier": 1.6750866802962066, + "amoonguss": 3.1468971540112025, + "jellicent": 2.276979958495361, + "galvantula": 1.5019711905425566, + "klang": 3.2630376238860768, + "klinklang": 4.232233718169473, + "beheeyem": 1.9732067030117486, + "lampent": 2.063705493371873, + "fraxure": 2.010729307818334, + "beartic": 2.5703830307394817, + "cryogonal": 2.192419008332303, + "accelgor": 3.4639736036176423, + "stunfisk": 0.9410187352787333, + "stunfisk-galar": 1.5955053004119075, + "mienshao": 3.566671816505309, + "druddigon": 1.943669623181024, + "golurk": 1.6991282618536916, + "bisharp": 2.9116998803836998, + "bouffalant": 1.4463037226483015, + "heatmor": 1.7402484953584911, + "durant": 4.008525320962999, + "diggersby": 2.8091489774246203, + "talonflame": 4.094307825170209, + "pangoro": 1.8567686655476665, + "doublade": 3.1565837789932765, + "malamar": 3.27964797515786, + "barbaracle": 2.284398106609773, + "heliolisk": 2.8209699097980216, + "tyrantrum": 2.824206508879991, + "aurorus": 4.933324945523197, + "hawlucha": 5.099750237638937, + "dedenne": 3.4393780431325434, + "klefki": 3.913922406011613, + "trevenant": 3.263450708568705, + "gourgeist-average": 5.598369938619507, + "charjabug": 3.3234835798427067, + "vikavolt": 1.605332843683465, + "ribombee": 7.355216102499313, + "lycanroc-midday": 5.333155033673203, + "lycanroc-midnight": 3.4493775581282065, + "mudsdale": 1.4757937116857383, + "araquanid": 3.3968252340825886, + "lurantis": 2.8131330509477457, + "shiinotic": 6.7123490762800095, + "salazzle": 3.0922591632639334, + "bewear": 2.1925940789177747, + "tsareena": 3.7531241048278283, + "comfey": 7.031177451545856, + "oranguru": 3.003180674423504, + "passimian": 2.677292145102134, + "palossand": 1.8339820184083044, + "pyukumuku": 66.39392701136482, + "togedemaru": 2.1324845894025484, + "mimikyu-disguised": 6.274698741501781, + "greedent": 2.708896754699473, + "orbeetle": 2.089392948849179, + "thievul": 1.644146649081312, + "eldegoss": 4.326816187271595, + "dubwool": 3.3065821271861644, + "drednaw": 2.0126950810328155, + "boltund": 4.306199256297592, + "carkol": 2.5040133491664998, + "coalossal": 1.9956742844481803, + "sandaconda": 3.1073538326833727, + "cramorant": 10.207060657897674, + "barraskewda": 7.092686741404522, + "toxtricity-amped": 2.5642048490276528, + "centiskorch": 1.7052996220674839, + "grapploct": 1.6652400295902605, + "polteageist": 2.8693561525448437, + "hatterene": 4.075589556271256, + "grimmsnarl": 5.3378107361058085, + "obstagoon": 2.9846583799759, + "perrserker": 3.9910925635308607, + "alcremie": 2.0140272020951535, + "falinks": 3.6903054796206742, + "pincurchin": 2.6974683534328356, + "frosmoth": 3.8159711448853564, + "indeedee-male": 3.0088094431453944, + "morpeko": 2.564650824522003, + "copperajah": 2.638112685015181, + "duraludon": 1.6956962792368482, + "drakloak": 5.144311705614686 }, "haunter": { - "ivysaur": 3.702149158013756, - "charmeleon": 3.6316981389866054, - "wartortle": 3.223023761439986, - "butterfree": 4.833822932256397, - "raichu": 5.086406956603344, - "raichu-alola": 3.6521942574476025, - "sandslash": 3.2672477327044036, - "sandslash-alola": 2.05347948502696, - "nidoqueen": 3.141720570731424, - "nidoking": 2.039426821562837, - "clefairy": 8.85072064672898, - "clefable": 2.1045284890581617, - "jigglypuff": 26.14477127515792, - "wigglytuff": 1.8855622146839863, - "gloom": 6.894235651776679, - "vileplume": 3.578981299596028, - "dugtrio": 4.230573506320211, - "dugtrio-alola": 3.1901110825227055, - "persian": 4.779137077090882, - "persian-alola": 2.769280761511089, - "golduck": 3.6871414966039673, - "poliwrath": 2.502921467412599, - "kadabra": 4.147585405444761, - "machoke": 4.154201778725687, - "tentacruel": 2.3259915512550724, - "slowbro": 1.9630433336230044, - "magneton": 3.0919900314575757, - "kingler": 3.6623155593343486, - "exeggutor": 2.5117593916979697, - "marowak": 3.620212896806396, - "marowak-alola": 2.541043910695583, - "hitmonlee": 2.649763513938594, - "hitmonchan": 2.142759698701004, - "lickitung": 1.705548339636858, - "weezing": 1.8395232062882967, - "weezing-galar": 3.3458277880923344, - "rhydon": 4.517944185849133, - "chansey": 23.032871849996873, - "tangela": 6.141940753882484, - "kangaskhan": 1.6604993367609824, - "seadra": 5.709134296323011, - "seaking": 2.86251270335762, - "starmie": 1.794064464906862, - "mr-mime": 5.9955449942264565, - "mr-mime-galar": 3.6691116986776686, - "scyther": 2.4916135236820836, - "jynx": 4.8135183225972265, - "electabuzz": 2.3210535713621265, - "magmar": 1.5509840012560498, - "tauros": 2.1275492988727973, - "ditto": 5.058129862733482, - "vaporeon": 3.6434407293723376, - "jolteon": 1.8077310057040572, - "flareon": 1.9234359267726813, - "porygon": 2.4741486337629266, - "dragonair": 1.6486654242698013, - "noctowl": 4.938609689145692, - "lanturn": 2.111279124299286, - "togetic": 5.129993033993166, - "xatu": 4.227528794974766, - "bellossom": 2.4933421610032553, - "azumarill": 2.16839052060129, - "sudowoodo": 3.5342578943733582, - "politoed": 3.1302425111602132, - "quagsire": 9.013261448940327, - "slowking": 2.551336577291739, - "dunsparce": 2.7619853160316308, - "qwilfish": 4.002887514877172, - "sneasel": 1.605783220232936, - "piloswine": 1.9140829514522624, - "octillery": 2.823824792762046, - "mantine": 2.052909261829231, - "skarmory": 2.066981611095289, - "hitmontop": 3.2119057044823816, - "miltank": 4.107155296311739, - "grovyle": 8.470295318977282, - "sceptile": 1.3942071939560534, - "combusken": 4.100403687910438, - "blaziken": 1.8405403329382695, - "marshtomp": 4.2324016792210735, - "swampert": 2.2064844219652016, - "linoone": 4.748313545254094, - "linoone-galar": 3.039249349596843, - "pelipper": 6.88513838279325, - "ninjask": 8.505055913801161, - "exploud": 1.607320920293456, - "lairon": 2.368702156774596, - "manectric": 1.7713591253112586, - "roselia": 3.905322120117387, - "sharpedo": 4.792832569409001, - "wailmer": 7.313138834548434, - "torkoal": 1.9651627130907627, - "flygon": 2.3428550624783813, - "altaria": 1.5204290512695788, - "whiscash": 3.0792097009433324, - "crawdaunt": 2.254928141973397, - "claydol": 3.7790485486562213, - "cradily": 2.3182255766531457, - "armaldo": 2.0603385010415423, - "dusclops": 3.8237843644870537, - "absol": 1.6383019179817158, - "glalie": 3.366154989900418, - "sealeo": 3.4915147095311596, - "relicanth": 3.2999021858332265, - "metang": 3.431278005964969, - "luxray": 4.019628390248258, - "vespiquen": 2.8640990621661437, - "cherrim": 6.439547983274002, - "gastrodon": 3.62737577121967, - "drifblim": 4.674961306727218, - "lopunny": 3.8684343133153103, - "skuntank": 0.9848666740206291, - "bronzong": 3.359920930884078, - "munchlax": 2.0064127502433338, - "drapion": 1.726458855851065, - "abomasnow": 3.1580828851477234, - "froslass": 3.3642392006934267, - "rotom": 4.480529454821088, - "stoutland": 2.892180966036766, - "liepard": 5.3882622144758905, - "musharna": 1.5925555988496498, - "unfezant": 5.212568003098763, - "boldore": 4.799498110929487, - "swoobat": 6.061889518279317, - "audino": 2.5425938841705147, - "gurdurr": 3.319951818285693, - "palpitoad": 7.1179066243047, - "seismitoad": 13.539362189312232, - "scolipede": 3.3846874948360455, - "whimsicott": 3.265227511735395, - "lilligant": 3.332640343853824, - "basculin-red-striped": 2.9277688730035054, - "basculin-blue-striped": 3.8070694937909475, - "krookodile": 2.9229436654197722, - "maractus": 2.16938506010493, - "crustle": 2.361290323577173, - "sigilyph": 2.631404637971107, - "cofagrigus": 2.920648126190881, - "garbodor": 2.334155518011973, - "cinccino": 4.669160954029113, - "vanillish": 2.1490632554692866, - "emolga": 2.809279778510878, - "escavalier": 1.970801560264991, - "amoonguss": 3.063409557023537, - "jellicent": 1.9578178243337598, - "galvantula": 1.5511829624594924, - "klang": 2.653388469597625, - "klinklang": 3.56258660615523, - "beheeyem": 1.9295393723246095, - "lampent": 3.328957132602821, - "fraxure": 1.5507061956014554, - "beartic": 1.6645213480647256, - "cryogonal": 1.4302980329643842, - "accelgor": 3.4231779097994846, - "stunfisk": 1.4857207870189673, - "stunfisk-galar": 2.4165660656036008, - "mienshao": 4.218054540503253, - "druddigon": 1.6144997373046324, - "golurk": 2.425933778049556, - "bisharp": 1.6007729591161688, - "bouffalant": 1.0616840221226431, - "heatmor": 1.8289111839148746, - "durant": 3.3656512553093645, - "diggersby": 4.372175806134583, - "talonflame": 2.7491032858852966, - "pangoro": 1.4805172079624547, - "doublade": 4.2294371873563685, - "malamar": 2.190647699174656, - "barbaracle": 2.645224314109358, - "heliolisk": 3.3855742385579513, - "tyrantrum": 1.7924855704167166, - "aurorus": 2.4516772436831755, - "hawlucha": 3.8547146659902705, - "dedenne": 2.9530393659342513, - "klefki": 3.1090478673125594, - "trevenant": 4.492117095471588, - "gourgeist-average": 6.374931331074766, - "charjabug": 4.2199531965289125, - "vikavolt": 2.0909435516925945, - "ribombee": 5.121128794435701, - "lycanroc-midday": 3.7067222433714226, - "lycanroc-midnight": 2.4642319076181494, - "mudsdale": 1.9676339125706133, - "araquanid": 2.2906068533218162, - "lurantis": 2.738912551901089, - "shiinotic": 4.780784526717436, - "salazzle": 3.5568097051535865, - "bewear": 2.235618541041433, - "tsareena": 3.047665607673255, - "comfey": 4.674881723129969, - "oranguru": 1.7237501098179073, - "passimian": 2.8250476325571716, - "palossand": 2.9138376357149873, - "pyukumuku": 59.72148396052981, - "togedemaru": 2.096300124600955, - "mimikyu-disguised": 4.494417232626861, - "greedent": 1.8733100225858288, - "orbeetle": 2.106319729766774, - "thievul": 1.2697132888603502, - "eldegoss": 4.143934487764604, - "dubwool": 3.3277245914971214, - "drednaw": 2.0370180961334237, - "boltund": 3.8037628625362223, - "carkol": 2.212330709708919, - "coalossal": 1.8932185985955434, - "sandaconda": 4.43538807629628, - "cramorant": 4.011054515733986, - "barraskewda": 4.684610512283044, - "toxtricity-amped": 3.4729015999197563, - "centiskorch": 2.1509618970904594, - "grapploct": 2.0437415848186857, - "polteageist": 2.696502711949769, - "hatterene": 2.831851437885649, - "grimmsnarl": 2.990805191662771, - "obstagoon": 2.138239646552715, - "perrserker": 2.8705643016477618, - "alcremie": 1.4193640395481761, - "falinks": 4.0863108962010495, - "pincurchin": 2.914338931290467, - "frosmoth": 2.8102662960646976, - "indeedee-male": 2.1888332000132564, - "morpeko": 2.1858324213032425, - "copperajah": 2.3771267491360057, - "duraludon": 1.6250260282020739, - "drakloak": 4.998347827155662, - "haunter": 5.190941271376678 + "ivysaur": 3.7021716726146763, + "charmeleon": 3.62203857741444, + "wartortle": 3.2223594251269345, + "butterfree": 4.833623252231848, + "raichu": 5.084462390918558, + "raichu-alola": 3.6401680762428494, + "sandslash": 3.2773497151980933, + "sandslash-alola": 2.0508230263212353, + "nidoqueen": 3.140475382203849, + "nidoking": 2.038008235256382, + "clefairy": 8.841949486409383, + "clefable": 2.103464596403802, + "jigglypuff": 26.116236898865843, + "wigglytuff": 1.8805761206490237, + "gloom": 6.896586430867325, + "vileplume": 3.5802388013679867, + "dugtrio": 4.238763603041605, + "dugtrio-alola": 3.1838757347239377, + "persian": 4.784926903089838, + "persian-alola": 2.7538302265889625, + "golduck": 3.6869871739787623, + "poliwrath": 2.5073055091308243, + "kadabra": 4.132334871600763, + "machoke": 4.146856492898232, + "tentacruel": 2.322091678059007, + "slowbro": 1.9561639029868552, + "magneton": 3.083973704297849, + "haunter": 5.190941271376678, + "kingler": 3.6699455014086304, + "exeggutor": 2.508863046328636, + "marowak": 3.6170091514258678, + "marowak-alola": 2.5329529988187383, + "hitmonlee": 2.6527912774793814, + "hitmonchan": 2.138657004046691, + "lickitung": 1.7016217451557663, + "weezing": 1.837016431986652, + "weezing-galar": 3.346118868963717, + "rhydon": 4.5264872203228705, + "chansey": 23.028216871653463, + "tangela": 6.146902599025966, + "kangaskhan": 1.6554154147413032, + "seadra": 5.7112250698965665, + "seaking": 2.862883480455055, + "starmie": 1.790900909370332, + "mr-mime": 5.960418462699721, + "mr-mime-galar": 3.6521550145609827, + "scyther": 2.483054680710838, + "jynx": 4.808909054938345, + "electabuzz": 2.3172793438366774, + "magmar": 1.5483784856931035, + "tauros": 2.126907899181517, + "ditto": 5.033936815587681, + "vaporeon": 3.643902485340394, + "jolteon": 1.8013254180691367, + "flareon": 1.9157427724174148, + "porygon": 2.4660643797302475, + "dragonair": 1.6428785815355234, + "noctowl": 4.924605611948492, + "lanturn": 2.1089440494342524, + "togetic": 5.121689643658707, + "xatu": 4.210646284785863, + "bellossom": 2.492637002668202, + "azumarill": 2.156940060074608, + "sudowoodo": 3.5409391915699278, + "politoed": 3.13393352767216, + "quagsire": 9.03291179371734, + "slowking": 2.543468259530875, + "dunsparce": 2.7506350341669803, + "qwilfish": 3.999087841745772, + "sneasel": 1.5937260161759115, + "piloswine": 1.9149635712919482, + "octillery": 2.823612828866855, + "mantine": 2.0470893789345457, + "skarmory": 2.06112834847895, + "hitmontop": 3.216473458692417, + "miltank": 4.111208146698274, + "grovyle": 8.474093903522855, + "sceptile": 1.3930257838034927, + "combusken": 4.104324288337521, + "blaziken": 1.8393315316807293, + "marshtomp": 4.235242174913193, + "swampert": 2.2112621906991814, + "linoone": 4.734909129948377, + "linoone-galar": 3.0162009735896875, + "pelipper": 6.889666396430073, + "ninjask": 8.511893170858956, + "exploud": 1.608019418784664, + "lairon": 2.3643275960790904, + "manectric": 1.76666949198281, + "roselia": 3.894887571057735, + "sharpedo": 4.770526046978529, + "wailmer": 7.303050516811846, + "torkoal": 1.9637111828358127, + "flygon": 2.339536268049159, + "altaria": 1.5164086848929967, + "whiscash": 3.074444056387107, + "crawdaunt": 2.248512318024666, + "claydol": 3.7716190664919864, + "cradily": 2.3171495039714465, + "armaldo": 2.06203076838497, + "dusclops": 3.810465046905117, + "absol": 1.6312914066086563, + "glalie": 3.3497549512041926, + "sealeo": 3.4860956707901307, + "relicanth": 3.2982591354478057, + "metang": 3.4179307732173196, + "luxray": 4.018884559512761, + "vespiquen": 2.8617921090298437, + "cherrim": 6.4430326899502735, + "gastrodon": 3.631386281595769, + "drifblim": 4.656626939148839, + "lopunny": 3.869936548488968, + "skuntank": 0.9782309975018382, + "bronzong": 3.342874715207828, + "munchlax": 2.002037473843847, + "drapion": 1.717921948871821, + "abomasnow": 3.1523847496037387, + "froslass": 3.354842433791447, + "rotom": 4.468064964050888, + "stoutland": 2.899472182273266, + "liepard": 5.361048542680968, + "musharna": 1.5855315153628267, + "unfezant": 5.189510507545913, + "boldore": 4.809873098258496, + "swoobat": 6.037783184302761, + "audino": 2.540692706838625, + "gurdurr": 3.334831106405746, + "palpitoad": 7.135910621859125, + "seismitoad": 13.603411925978353, + "scolipede": 3.3744519745704933, + "whimsicott": 3.2621761714562925, + "lilligant": 3.3332638869955478, + "basculin-red-striped": 2.919042590158406, + "basculin-blue-striped": 3.7961453475078315, + "krookodile": 2.913228582322736, + "maractus": 2.165517935381981, + "crustle": 2.363671886077661, + "sigilyph": 2.6219585879240874, + "cofagrigus": 2.907240381534965, + "garbodor": 2.3388421879965113, + "cinccino": 4.665615822582742, + "vanillish": 2.1455960485533074, + "emolga": 2.8017187658957763, + "escavalier": 1.9704996845703842, + "amoonguss": 3.064667369982642, + "jellicent": 1.9590197072212323, + "galvantula": 1.5484020486195589, + "klang": 2.6468830572721416, + "klinklang": 3.5588742107157314, + "beheeyem": 1.9226050951684859, + "lampent": 3.3282231749469315, + "fraxure": 1.5479583062376987, + "beartic": 1.6625883366940535, + "cryogonal": 1.4261096943405058, + "accelgor": 3.426124548840903, + "stunfisk": 1.4865003390057128, + "stunfisk-galar": 2.4162465074571884, + "mienshao": 4.225144604779468, + "druddigon": 1.6085789330376778, + "golurk": 2.426602797122455, + "bisharp": 1.5902008133876935, + "bouffalant": 1.056008410214488, + "heatmor": 1.825298067563204, + "durant": 3.3611517094466614, + "diggersby": 4.380149110775527, + "talonflame": 2.7409926409432055, + "pangoro": 1.475389395953948, + "doublade": 4.23217708122076, + "malamar": 2.177710833175173, + "barbaracle": 2.6499066781003546, + "heliolisk": 3.381340687193335, + "tyrantrum": 1.7929619772971686, + "aurorus": 2.4453870061676786, + "hawlucha": 3.8474564392609825, + "dedenne": 2.9503940437091165, + "klefki": 3.1054171050305985, + "trevenant": 4.500847458983926, + "gourgeist-average": 6.3514106871787295, + "charjabug": 4.214430283243652, + "vikavolt": 2.0923247509999627, + "ribombee": 5.124041163792178, + "lycanroc-midday": 3.702631738951081, + "lycanroc-midnight": 2.458861381614547, + "mudsdale": 1.969117796156238, + "araquanid": 2.289103568064171, + "lurantis": 2.7414756741628032, + "shiinotic": 4.782432082239838, + "salazzle": 3.5507960296811003, + "bewear": 2.235070999249953, + "tsareena": 3.042257378131259, + "comfey": 4.677327425949366, + "oranguru": 1.7094239567834664, + "passimian": 2.825992619866498, + "palossand": 2.9167008631300666, + "pyukumuku": 59.83768714051858, + "togedemaru": 2.090746971726678, + "mimikyu-disguised": 4.480455636486187, + "greedent": 1.86603534278222, + "orbeetle": 2.0955772959939996, + "thievul": 1.2626338263609467, + "eldegoss": 4.144350540527144, + "dubwool": 3.332024012106659, + "drednaw": 2.036813227235268, + "boltund": 3.7856994499411476, + "carkol": 2.207685200544703, + "coalossal": 1.8892333025113341, + "sandaconda": 4.44459017884231, + "cramorant": 3.9883335364544727, + "barraskewda": 4.668423894783074, + "toxtricity-amped": 3.470012617107168, + "centiskorch": 2.1503836068757893, + "grapploct": 2.0486242326406794, + "polteageist": 2.6863790897203192, + "hatterene": 2.82301658944702, + "grimmsnarl": 2.977477870060066, + "obstagoon": 2.128065456513497, + "perrserker": 2.8575526912285856, + "alcremie": 1.418424487209291, + "falinks": 4.092069518825012, + "pincurchin": 2.9079304017520506, + "frosmoth": 2.8072679423315847, + "indeedee-male": 2.1734269061076184, + "morpeko": 2.1761159629572906, + "copperajah": 2.3735721461379047, + "duraludon": 1.6208987363460046, + "drakloak": 4.975770134439454 }, "kingler": { - "ivysaur": 2.4321126363134282, - "charmeleon": 6.513794364521573, - "wartortle": 2.8466331766043638, - "butterfree": 4.651286837266289, - "raichu": 5.573700453122694, - "raichu-alola": 3.848232118283081, - "sandslash": 3.000001232402564, - "sandslash-alola": 3.395196127194321, - "nidoqueen": 4.0192656522447185, - "nidoking": 3.0678210231315246, - "clefairy": 9.939344937140651, - "clefable": 2.2542500236806626, - "jigglypuff": 29.699498794844253, - "wigglytuff": 2.108706441905631, - "gloom": 4.92946972408002, - "vileplume": 2.2592173346648803, - "dugtrio": 6.52905667029484, - "dugtrio-alola": 6.292118472609174, - "persian": 5.508398169652182, - "persian-alola": 5.213180035551002, - "golduck": 3.35070569897283, - "poliwrath": 2.074147148635985, - "kadabra": 4.609126310936742, - "machoke": 4.505434615414163, - "tentacruel": 3.2412425750299096, - "slowbro": 1.570107530966752, - "magneton": 4.528883756288649, - "haunter": 4.566794273314814, - "exeggutor": 1.5342073173102087, - "marowak": 4.764263820296496, - "marowak-alola": 3.437150113160673, - "hitmonlee": 3.2799359686013965, - "hitmonchan": 2.69853326367402, - "lickitung": 2.3862801536574163, - "weezing": 1.7408738371717982, - "weezing-galar": 2.7589026846020115, - "rhydon": 3.993842329088649, - "chansey": 37.932191110424384, - "tangela": 3.9257808658618085, - "kangaskhan": 2.444031632386606, - "seadra": 3.6780569675061248, - "seaking": 2.7712059762575967, - "starmie": 2.184323337680966, - "mr-mime": 7.8420710892286, - "mr-mime-galar": 4.300991478550658, - "scyther": 3.167731180399486, - "jynx": 4.855999258391916, - "electabuzz": 2.442027218308028, - "magmar": 3.022846544662278, - "tauros": 2.5170608175526477, - "ditto": 2.5900176647788022, - "vaporeon": 3.4843391465591647, - "jolteon": 2.202626476828753, - "flareon": 4.530704121940919, - "porygon": 3.1993283160804573, - "dragonair": 2.5638840830751555, - "noctowl": 7.123475472408141, - "lanturn": 2.3106290961518337, - "togetic": 6.594128480881096, - "xatu": 3.9407099458107786, - "bellossom": 1.919130043644673, - "azumarill": 2.313997476857355, - "sudowoodo": 3.584725679251424, - "politoed": 2.6948133613105707, - "quagsire": 4.991351893459648, - "slowking": 2.531349961675098, - "dunsparce": 4.121528673967183, - "qwilfish": 4.032482833955657, - "sneasel": 4.428552064447852, - "piloswine": 2.426957615324843, - "octillery": 2.4605449609160432, - "mantine": 2.1023131161154067, - "skarmory": 2.189022599491579, - "hitmontop": 3.326228200116419, - "miltank": 4.349247095842211, - "grovyle": 6.502073321059584, - "sceptile": 1.2195037696885, - "combusken": 5.369182824748336, - "blaziken": 2.7862207718952114, - "marshtomp": 3.080415872850141, - "swampert": 1.4433466453135524, - "linoone": 6.8646740673328654, - "linoone-galar": 8.19581135900036, - "pelipper": 5.168055240840854, - "ninjask": 8.770911050153908, - "exploud": 2.0335856023729995, - "lairon": 3.8353856236565624, - "manectric": 2.010109914703023, - "roselia": 3.2436111402022294, - "sharpedo": 6.866266075259684, - "wailmer": 7.1254381069778026, - "torkoal": 2.634448732614763, - "flygon": 2.7149331605721203, - "altaria": 2.415173093899299, - "whiscash": 2.4372995205469024, - "crawdaunt": 2.487158761156985, - "claydol": 4.854790431876406, - "cradily": 2.359051030663743, - "armaldo": 2.894360193503301, - "dusclops": 3.846755752665201, - "absol": 2.6706678584225676, - "glalie": 5.679341974707667, - "sealeo": 4.24416334257409, - "relicanth": 2.323538002444787, - "metang": 3.5958644771482664, - "luxray": 3.9409662485787664, - "vespiquen": 3.1821400757151133, - "cherrim": 4.428934028932982, - "gastrodon": 2.7254749228519417, - "drifblim": 4.10911359882218, - "lopunny": 4.972340857694437, - "skuntank": 1.8627812201222596, - "bronzong": 3.9235944214752783, - "munchlax": 3.4039421740647753, - "drapion": 2.9927949351816947, - "abomasnow": 3.834655899370492, - "froslass": 3.377892942830141, - "rotom": 3.547530776458461, - "stoutland": 3.0891845325599947, - "liepard": 9.331503759407655, - "musharna": 1.544402292914662, - "unfezant": 6.983404646600386, - "boldore": 4.201385052415079, - "swoobat": 5.648994535928944, - "audino": 2.5971218913541803, - "gurdurr": 2.404596412450708, - "palpitoad": 4.234092592237207, - "seismitoad": 6.4925207436987105, - "scolipede": 3.6378417669374965, - "whimsicott": 2.41530418163246, - "lilligant": 2.3002211853169285, - "basculin-red-striped": 3.1232158624868482, - "basculin-blue-striped": 3.891859862352022, - "krookodile": 4.2446950913787065, - "maractus": 1.6460665305832207, - "crustle": 2.9718455277738975, - "sigilyph": 2.4668994835022353, - "cofagrigus": 2.5481792905022864, - "garbodor": 2.3205854135058486, - "cinccino": 6.0214122266983585, - "vanillish": 3.8431306744754217, - "emolga": 2.700559906749477, - "escavalier": 2.2490904048656675, - "amoonguss": 2.005302390362608, - "jellicent": 2.316131472489484, - "galvantula": 1.3729413083349544, - "klang": 3.2839803029127648, - "klinklang": 4.79563694150688, - "beheeyem": 1.9283733058175585, - "lampent": 4.564162631620613, - "fraxure": 1.673900963787222, - "beartic": 2.2982388788822377, - "cryogonal": 2.5435782387258734, - "accelgor": 3.3272023332218548, - "stunfisk": 1.9151150680386877, - "stunfisk-galar": 3.4036019205938235, - "mienshao": 3.817247436306179, - "druddigon": 1.994460762271883, - "golurk": 3.0889666715266437, - "bisharp": 4.3772876353413706, - "bouffalant": 1.7838809718219133, - "heatmor": 3.071701288941891, - "durant": 3.0212132830921656, - "diggersby": 5.244385226828341, - "talonflame": 4.720274745998435, - "pangoro": 2.313124703795807, - "doublade": 2.5321868098156366, - "malamar": 2.7787571019871287, - "barbaracle": 1.9350967843682365, - "heliolisk": 4.588935166001029, - "tyrantrum": 1.911861583777135, - "aurorus": 3.8418678596172464, - "hawlucha": 4.024603214249025, - "dedenne": 3.0761877028240523, - "klefki": 4.088001652504699, - "trevenant": 2.621581404767913, - "gourgeist-average": 4.5436494579260085, - "charjabug": 4.228321530837762, - "vikavolt": 1.8927857680618008, - "ribombee": 4.963530732675058, - "lycanroc-midday": 5.264634562033028, - "lycanroc-midnight": 3.7849387594727975, - "mudsdale": 2.488942282283033, - "araquanid": 2.1971448744243514, - "lurantis": 1.9484726813322293, - "shiinotic": 3.701288048595324, - "salazzle": 5.835817053041829, - "bewear": 2.199703768470295, - "tsareena": 2.8623695881269735, - "comfey": 4.345081010131489, - "oranguru": 3.0073483850660816, - "passimian": 2.5607695018053587, - "palossand": 2.704187226715014, - "pyukumuku": 48.36006864967828, - "togedemaru": 3.8474432521798683, - "mimikyu-disguised": 5.193797890929806, - "greedent": 2.7392046081163794, - "orbeetle": 1.913112720137321, - "thievul": 2.9677391106895596, - "eldegoss": 2.9858421740975833, - "dubwool": 3.630993445291624, - "drednaw": 1.718395602686132, - "boltund": 5.021925727530412, - "carkol": 5.358977972951916, - "coalossal": 4.099721199457743, - "sandaconda": 4.190209072741145, - "cramorant": 5.704892429479893, - "barraskewda": 4.933424995581264, - "toxtricity-amped": 3.511135642144433, - "centiskorch": 3.476241392762458, - "grapploct": 1.9553564113237507, - "polteageist": 3.016481138350998, - "hatterene": 2.7839953673722952, - "grimmsnarl": 4.301785618256936, - "obstagoon": 4.019758990266723, - "perrserker": 3.966843202721145, - "alcremie": 1.5876355418294952, - "falinks": 3.4353109142477614, - "pincurchin": 3.1402966334617117, - "frosmoth": 2.8887654574010435, - "indeedee-male": 3.719468009785705, - "morpeko": 3.312307714781307, - "copperajah": 3.5947776041593444, - "duraludon": 1.7818334919502887, - "drakloak": 4.270511632211338, - "kingler": 2.422003256715035 + "ivysaur": 2.420493537902328, + "charmeleon": 6.531749564373858, + "wartortle": 2.849086223742752, + "butterfree": 4.63484649749188, + "raichu": 5.5636768054909815, + "raichu-alola": 3.837670968149419, + "sandslash": 3.0059633688754235, + "sandslash-alola": 3.408639594421194, + "nidoqueen": 4.019415071908374, + "nidoking": 3.076759196120106, + "clefairy": 9.928169541573507, + "clefable": 2.2537067435973412, + "jigglypuff": 29.702317667348126, + "wigglytuff": 2.108669373203539, + "gloom": 4.917178650641741, + "vileplume": 2.248859861319348, + "dugtrio": 6.549342544949075, + "dugtrio-alola": 6.326306699265432, + "persian": 5.5195820202762125, + "persian-alola": 5.223304311576158, + "golduck": 3.3557598936883486, + "poliwrath": 2.0739259285923417, + "kadabra": 4.608240729602883, + "machoke": 4.514477489092625, + "tentacruel": 3.2465964482364935, + "slowbro": 1.5673870620733166, + "magneton": 4.527181950938255, + "haunter": 4.550033471725593, + "kingler": 2.422003256715035, + "exeggutor": 1.528351768290582, + "marowak": 4.778084763215194, + "marowak-alola": 3.448768611054442, + "hitmonlee": 3.291375825897622, + "hitmonchan": 2.705523715364688, + "lickitung": 2.3924120391510755, + "weezing": 1.7390216306609632, + "weezing-galar": 2.7562941939732473, + "rhydon": 4.006729072577287, + "chansey": 37.99248419831425, + "tangela": 3.9148151123663997, + "kangaskhan": 2.451285681868445, + "seadra": 3.671906234217767, + "seaking": 2.7771802922322255, + "starmie": 2.181222496775843, + "mr-mime": 7.8316797520626, + "mr-mime-galar": 4.302020272427849, + "scyther": 3.16839837186242, + "jynx": 4.842178882901416, + "electabuzz": 2.4366618769092994, + "magmar": 3.031397775323154, + "tauros": 2.5239701268059136, + "ditto": 2.572484993169952, + "vaporeon": 3.4793459803933873, + "jolteon": 2.1983045200392715, + "flareon": 4.5439218859911605, + "porygon": 3.1998063986019267, + "dragonair": 2.5635089017111157, + "noctowl": 7.127673822552913, + "lanturn": 2.3095869785168364, + "togetic": 6.5997974552949294, + "xatu": 3.931270613826398, + "bellossom": 1.9115719338134518, + "azumarill": 2.319432999754031, + "sudowoodo": 3.596749063411976, + "politoed": 2.6961639945631855, + "quagsire": 4.994619986375099, + "slowking": 2.532077207503946, + "dunsparce": 4.131306215134817, + "qwilfish": 4.0383951581929, + "sneasel": 4.446033883298254, + "piloswine": 2.436261391072969, + "octillery": 2.4623466639467946, + "mantine": 2.0950672682697853, + "skarmory": 2.192798940947644, + "hitmontop": 3.3355956448765793, + "miltank": 4.358846638004506, + "grovyle": 6.4801064774350134, + "sceptile": 1.214343944933614, + "combusken": 5.383094766939905, + "blaziken": 2.7974002240928875, + "marshtomp": 3.089459497149252, + "swampert": 1.4453894635640372, + "linoone": 6.884320517918532, + "linoone-galar": 8.218423550224022, + "pelipper": 5.157130801028794, + "ninjask": 8.769860268203901, + "exploud": 2.035287570004311, + "lairon": 3.8538348181597955, + "manectric": 2.009508436207434, + "roselia": 3.23023796483557, + "sharpedo": 6.884362186632551, + "wailmer": 7.13673556864366, + "torkoal": 2.641064276761507, + "flygon": 2.716419908461388, + "altaria": 2.4092624248873657, + "whiscash": 2.442155339565806, + "crawdaunt": 2.491151218814632, + "claydol": 4.849911122925292, + "cradily": 2.356030160867513, + "armaldo": 2.9022023025197274, + "dusclops": 3.8453714470649483, + "absol": 2.6787767161858187, + "glalie": 5.6997029599459825, + "sealeo": 4.2545687239127945, + "relicanth": 2.329186241055889, + "metang": 3.6035203781889984, + "luxray": 3.932928785335764, + "vespiquen": 3.183066648204519, + "cherrim": 4.409020936894454, + "gastrodon": 2.7330753908826964, + "drifblim": 4.090542612249461, + "lopunny": 4.988145363001571, + "skuntank": 1.867315650858037, + "bronzong": 3.933254390921886, + "munchlax": 3.416508788812396, + "drapion": 3.001194527809755, + "abomasnow": 3.8357167456243126, + "froslass": 3.3784928729869295, + "rotom": 3.532620539438124, + "stoutland": 3.095487615910313, + "liepard": 9.36134250983077, + "musharna": 1.54091054742706, + "unfezant": 6.9919709421277005, + "boldore": 4.21282495837733, + "swoobat": 5.635552053246808, + "audino": 2.6003106297392513, + "gurdurr": 2.4080404030164635, + "palpitoad": 4.237401309126942, + "seismitoad": 6.483680403434647, + "scolipede": 3.6408272902154835, + "whimsicott": 2.4063419260053616, + "lilligant": 2.290006894302299, + "basculin-red-striped": 3.130270408034682, + "basculin-blue-striped": 3.8977669810587177, + "krookodile": 4.255770125882387, + "maractus": 1.6356670601054932, + "crustle": 2.978761165429135, + "sigilyph": 2.4623297706979708, + "cofagrigus": 2.542349678674239, + "garbodor": 2.323168515396608, + "cinccino": 6.0377207660125825, + "vanillish": 3.857362876611489, + "emolga": 2.691604028480242, + "escavalier": 2.255813899750717, + "amoonguss": 1.9969028415300327, + "jellicent": 2.304955821635298, + "galvantula": 1.367207718854061, + "klang": 3.284828010590293, + "klinklang": 4.815994902775458, + "beheeyem": 1.9255749094233146, + "lampent": 4.577327344400272, + "fraxure": 1.6749700452683793, + "beartic": 2.3044533488889107, + "cryogonal": 2.5478784517781174, + "accelgor": 3.3222358265113225, + "stunfisk": 1.9139323161482857, + "stunfisk-galar": 3.4118959262363733, + "mienshao": 3.8212592054901293, + "druddigon": 1.9982603187559391, + "golurk": 3.0936928946464133, + "bisharp": 4.394455819477941, + "bouffalant": 1.7903502645185139, + "heatmor": 3.0795477117784227, + "durant": 3.0232884362217627, + "diggersby": 5.264410990166411, + "talonflame": 4.727201053240169, + "pangoro": 2.320533078591333, + "doublade": 2.5349805568355683, + "malamar": 2.7746928779396054, + "barbaracle": 1.940462658526906, + "heliolisk": 4.572327265528429, + "tyrantrum": 1.916130967157029, + "aurorus": 3.850184353845881, + "hawlucha": 4.0268995479958685, + "dedenne": 3.06910212354161, + "klefki": 4.1010484982291375, + "trevenant": 2.6156752995600945, + "gourgeist-average": 4.537808844673019, + "charjabug": 4.225219288341424, + "vikavolt": 1.8897904630178375, + "ribombee": 4.954010004160062, + "lycanroc-midday": 5.284328478728693, + "lycanroc-midnight": 3.8005941637156546, + "mudsdale": 2.4958467070874395, + "araquanid": 2.193744426953443, + "lurantis": 1.9418459302607756, + "shiinotic": 3.6912147732651635, + "salazzle": 5.854609284739485, + "bewear": 2.2045102759792785, + "tsareena": 2.859741216309244, + "comfey": 4.333117583422727, + "oranguru": 3.0073797164161906, + "passimian": 2.565030762902266, + "palossand": 2.701311705473641, + "pyukumuku": 48.35503407899162, + "togedemaru": 3.8581148719189917, + "mimikyu-disguised": 5.1993283758717626, + "greedent": 2.7471621859130178, + "orbeetle": 1.908350573041285, + "thievul": 2.9839097455644215, + "eldegoss": 2.972369086482571, + "dubwool": 3.637857058524326, + "drednaw": 1.7241348540856425, + "boltund": 5.015514860064312, + "carkol": 5.383849745809128, + "coalossal": 4.114211459819398, + "sandaconda": 4.194389040628008, + "cramorant": 5.710398853197475, + "barraskewda": 4.940657103019066, + "toxtricity-amped": 3.500055688998575, + "centiskorch": 3.481669274652274, + "grapploct": 1.95794871943747, + "polteageist": 3.0103920424813575, + "hatterene": 2.782145181962708, + "grimmsnarl": 4.304481647452262, + "obstagoon": 4.0262527952229, + "perrserker": 3.9746923633654103, + "alcremie": 1.5866438556430293, + "falinks": 3.440961418002046, + "pincurchin": 3.133176396846458, + "frosmoth": 2.8855777426986, + "indeedee-male": 3.7210845053047104, + "morpeko": 3.313210909180216, + "copperajah": 3.610505359030205, + "duraludon": 1.7816656586640973, + "drakloak": 4.264707803813321 }, "exeggutor": { - "ivysaur": 4.43810245262677, - "charmeleon": 4.158229760577825, - "wartortle": 4.3996879386688335, - "butterfree": 3.904175541718101, - "raichu": 6.916770499198624, - "raichu-alola": 4.655158177752163, - "sandslash": 3.6564469720017794, - "sandslash-alola": 2.0696093253451604, - "nidoqueen": 3.4401748692811718, - "nidoking": 2.4251724389267064, - "clefairy": 9.727711117291609, - "clefable": 2.2894448018967504, - "jigglypuff": 29.78251622593242, - "wigglytuff": 2.2766171691519537, - "gloom": 7.083695924038063, - "vileplume": 3.4619574837529195, - "dugtrio": 5.486898521148516, - "dugtrio-alola": 4.145816874207216, - "persian": 4.775706180752605, - "persian-alola": 4.033255220116238, - "golduck": 5.0866943747849165, - "poliwrath": 3.2390237772110915, - "kadabra": 4.093259698029504, - "machoke": 5.045318000641119, - "tentacruel": 3.6742601711772886, - "slowbro": 2.972105998628424, - "magneton": 4.994746232664507, - "haunter": 6.402100846833246, - "kingler": 5.040025037496251, - "marowak": 5.085819828796415, - "marowak-alola": 2.063871209587638, - "hitmonlee": 3.7899725139035563, - "hitmonchan": 2.9813393039232423, - "lickitung": 2.0999089182542363, - "weezing": 1.6146886258900257, - "weezing-galar": 2.880366148974498, - "rhydon": 6.391299675778104, - "chansey": 30.970383208684503, - "tangela": 5.34683783656093, - "kangaskhan": 2.059782466029284, - "seadra": 7.985496712376076, - "seaking": 3.6625861512437377, - "starmie": 2.1359589814683906, - "mr-mime": 7.5800417619766955, - "mr-mime-galar": 3.548985746729187, - "scyther": 2.3259363873761254, - "jynx": 4.091068512390513, - "electabuzz": 3.4588890015774725, - "magmar": 1.8075938277173984, - "tauros": 2.442361187830136, - "ditto": 2.7654204344527438, - "vaporeon": 4.761203553522421, - "jolteon": 2.419065863885704, - "flareon": 2.5857825457042756, - "porygon": 2.940077025611877, - "dragonair": 1.841515394228891, - "noctowl": 6.013002125119517, - "lanturn": 3.1963291146096022, - "togetic": 5.205670593194622, - "xatu": 3.401436889240565, - "bellossom": 2.4587625326066744, - "azumarill": 2.366912080411887, - "sudowoodo": 4.560745661336255, - "politoed": 3.9720134290157496, - "quagsire": 13.098206512545682, - "slowking": 3.593014838329718, - "dunsparce": 3.0938522982006473, - "qwilfish": 4.237810278377725, - "sneasel": 2.1493424601552475, - "piloswine": 2.368273269009604, - "octillery": 3.4158581089624933, - "mantine": 2.684480879672087, - "skarmory": 1.4331218385530002, - "hitmontop": 3.744325358237396, - "miltank": 4.359371480830045, - "grovyle": 9.071578839616674, - "sceptile": 1.475723899309894, - "combusken": 4.426919041253867, - "blaziken": 2.0658281387141093, - "marshtomp": 6.288744161649211, - "swampert": 2.9362963514863827, - "linoone": 5.062475571264577, - "linoone-galar": 4.465116043431202, - "pelipper": 6.862088355956673, - "ninjask": 5.678655620125683, - "exploud": 1.6681850869595307, - "lairon": 3.2048710726149103, - "manectric": 2.071376609628051, - "roselia": 6.296012590622879, - "sharpedo": 7.633623766204297, - "wailmer": 10.42239471758895, - "torkoal": 1.637831554072601, - "flygon": 2.451877368468229, - "altaria": 1.5443507026794023, - "whiscash": 5.346211665844274, - "crawdaunt": 3.486337755283456, - "claydol": 5.084041728377935, - "cradily": 2.462041861725667, - "armaldo": 1.8961118396161638, - "dusclops": 3.157281261514532, - "absol": 1.999682396806715, - "glalie": 4.189716775344095, - "sealeo": 4.747200166957494, - "relicanth": 5.306747757868298, - "metang": 3.4518839429656065, - "luxray": 4.690233638991972, - "vespiquen": 2.2799485524153886, - "cherrim": 6.270485475051878, - "gastrodon": 4.743654322036145, - "drifblim": 4.815660676226362, - "lopunny": 4.027171407554509, - "skuntank": 1.4844528619381445, - "bronzong": 3.0159813331823075, - "munchlax": 2.432810652849397, - "drapion": 2.252530023013068, - "abomasnow": 3.200713896914838, - "froslass": 2.8774773495309347, - "rotom": 4.139469233964137, - "stoutland": 2.7279371188922523, - "liepard": 7.454259072562783, - "musharna": 1.8376752359197783, - "unfezant": 5.439477793511156, - "boldore": 6.291477667530765, - "swoobat": 4.875554827391813, - "audino": 2.4339529066504886, - "gurdurr": 3.007252788620307, - "palpitoad": 9.605167095356085, - "seismitoad": 14.036280665907254, - "scolipede": 3.187628090498761, - "whimsicott": 3.106534584772451, - "lilligant": 2.7587484745973256, - "basculin-red-striped": 4.80470170101014, - "basculin-blue-striped": 6.05665256751694, - "krookodile": 4.257338771772907, - "maractus": 2.328550777257614, - "crustle": 2.20369090798064, - "sigilyph": 2.082309128159353, - "cofagrigus": 2.9593036779885162, - "garbodor": 2.331023044572427, - "cinccino": 4.942459045544765, - "vanillish": 2.092214266625713, - "emolga": 3.2208601784534574, - "escavalier": 1.566678928717379, - "amoonguss": 3.2489000881446333, - "jellicent": 2.196517968460602, - "galvantula": 1.5471002390528246, - "klang": 3.263091525230718, - "klinklang": 3.7340027377958034, - "beheeyem": 1.9287776635941263, - "lampent": 2.4724280918575396, - "fraxure": 1.4330831094570926, - "beartic": 1.7493089478732604, - "cryogonal": 1.7350996833170091, - "accelgor": 2.1585754318564674, - "stunfisk": 2.0434861860139795, - "stunfisk-galar": 2.66415759548239, - "mienshao": 4.663631473948444, - "druddigon": 1.777102235909522, - "golurk": 2.9400119779972864, - "bisharp": 2.460933828202947, - "bouffalant": 1.3157085463730753, - "heatmor": 2.0315833308444873, - "durant": 2.1645637677680485, - "diggersby": 5.1519458544728565, - "talonflame": 2.658297266046362, - "pangoro": 1.9739097790614126, - "doublade": 2.40076262131167, - "malamar": 3.213699719014067, - "barbaracle": 3.423448583776998, - "heliolisk": 4.847381964825484, - "tyrantrum": 2.027281174925456, - "aurorus": 3.2083543398400005, - "hawlucha": 4.285726760979843, - "dedenne": 3.613066771339568, - "klefki": 3.636888651903643, - "trevenant": 3.3599683042676154, - "gourgeist-average": 4.428463330058085, - "charjabug": 4.053581251195619, - "vikavolt": 1.4788220634983196, - "ribombee": 3.7575467149147976, - "lycanroc-midday": 5.067342801831557, - "lycanroc-midnight": 3.4984089812250225, - "mudsdale": 2.5589753662773047, - "araquanid": 2.2211052725736216, - "lurantis": 2.235830719584052, - "shiinotic": 4.597314940405893, - "salazzle": 4.58496968984697, - "bewear": 2.173492776394136, - "tsareena": 3.1512222866406683, - "comfey": 5.108461608798946, - "oranguru": 3.1070261724124473, - "passimian": 2.8957666012284298, - "palossand": 3.3657014911785303, - "pyukumuku": 60.3121723752083, - "togedemaru": 3.889958012877592, - "mimikyu-disguised": 4.154509641196681, - "greedent": 2.5715710368389897, - "orbeetle": 1.3615414873850709, - "thievul": 1.6276996267498045, - "eldegoss": 4.337633328216183, - "dubwool": 3.52354716121504, - "drednaw": 3.0269924532450703, - "boltund": 5.373119735080305, - "carkol": 3.2555939439362067, - "coalossal": 2.666861256160747, - "sandaconda": 4.941610919902836, - "cramorant": 5.8798378275659475, - "barraskewda": 7.496991263452793, - "toxtricity-amped": 4.438470719085949, - "centiskorch": 2.031011587767336, - "grapploct": 2.3578690776590756, - "polteageist": 3.084919597727814, - "hatterene": 2.939417401153415, - "grimmsnarl": 3.9505205606921567, - "obstagoon": 2.823038360690803, - "perrserker": 3.340896328271935, - "alcremie": 1.5542655472649503, - "falinks": 3.5299002955902106, - "pincurchin": 3.64875416233585, - "frosmoth": 1.9825409226011026, - "indeedee-male": 3.1227277256884394, - "morpeko": 3.162865524108021, - "copperajah": 2.860033838420085, - "duraludon": 1.630188764161439, - "drakloak": 4.2384294107614675, - "exeggutor": 1.9426336337398507 + "ivysaur": 4.44546253727858, + "charmeleon": 4.157976683622799, + "wartortle": 4.412511524656844, + "butterfree": 3.8864692634886815, + "raichu": 6.94691175807395, + "raichu-alola": 4.667782679605798, + "sandslash": 3.6604175439072493, + "sandslash-alola": 2.069850227392245, + "nidoqueen": 3.445954304758023, + "nidoking": 2.4326012814189166, + "clefairy": 9.739984448936365, + "clefable": 2.2939595617743787, + "jigglypuff": 29.83472071224123, + "wigglytuff": 2.281186038186578, + "gloom": 7.083095109655994, + "vileplume": 3.4581504994623455, + "dugtrio": 5.506478891595747, + "dugtrio-alola": 4.154238603301548, + "persian": 4.781988440883772, + "persian-alola": 4.0266921273367275, + "golduck": 5.10390594330155, + "poliwrath": 3.2534526315108905, + "kadabra": 4.0983774982645915, + "machoke": 5.05859717127322, + "tentacruel": 3.687502741055662, + "slowbro": 2.978194079810382, + "magneton": 5.007722898427274, + "haunter": 6.4062573733461745, + "kingler": 5.061048014239202, + "exeggutor": 1.9426336337398507, + "marowak": 5.0973455710268345, + "marowak-alola": 2.063232976854719, + "hitmonlee": 3.80226363871147, + "hitmonchan": 2.9873569444604007, + "lickitung": 2.102743686983592, + "weezing": 1.613802499001486, + "weezing-galar": 2.882895492531782, + "rhydon": 6.41337834282818, + "chansey": 30.989627526475637, + "tangela": 5.356442623396797, + "kangaskhan": 2.062349890063006, + "seadra": 8.007176006473603, + "seaking": 3.671192991184988, + "starmie": 2.139562285678659, + "mr-mime": 7.599557719485986, + "mr-mime-galar": 3.5493384377028505, + "scyther": 2.318054865688138, + "jynx": 4.085812621949238, + "electabuzz": 3.4708199375982707, + "magmar": 1.8070638308859404, + "tauros": 2.4474042755010097, + "ditto": 2.7512292945407335, + "vaporeon": 4.776881510485763, + "jolteon": 2.424334676954155, + "flareon": 2.585640190561548, + "porygon": 2.9409255707718422, + "dragonair": 1.8431291185079668, + "noctowl": 6.005924998126003, + "lanturn": 3.21252552629854, + "togetic": 5.201413977974532, + "xatu": 3.3969952014436178, + "bellossom": 2.4620973855404364, + "azumarill": 2.36439653864908, + "sudowoodo": 4.5763410019207615, + "politoed": 3.986043429004882, + "quagsire": 13.156697422315462, + "slowking": 3.6003636452561407, + "dunsparce": 3.0878406850046987, + "qwilfish": 4.249638325195387, + "sneasel": 2.1438456513458926, + "piloswine": 2.372013522478244, + "octillery": 3.417697713063218, + "mantine": 2.6858515051980705, + "skarmory": 1.4281212773651069, + "hitmontop": 3.7554306322333675, + "miltank": 4.3661405194088125, + "grovyle": 9.091561825833725, + "sceptile": 1.4760602956015814, + "combusken": 4.43841368663432, + "blaziken": 2.06958941348029, + "marshtomp": 6.311783270520504, + "swampert": 2.946278282162622, + "linoone": 5.0551886712210266, + "linoone-galar": 4.455661806170876, + "pelipper": 6.859945224945554, + "ninjask": 5.64615282531301, + "exploud": 1.6697365637249502, + "lairon": 3.2111422745411424, + "manectric": 2.076464711124586, + "roselia": 6.315639733908066, + "sharpedo": 7.639653180280305, + "wailmer": 10.44796403872893, + "torkoal": 1.637540146002711, + "flygon": 2.4493196532704573, + "altaria": 1.5428405986435667, + "whiscash": 5.3629802304603045, + "crawdaunt": 3.4895529982335556, + "claydol": 5.092157898117491, + "cradily": 2.4641186181465327, + "armaldo": 1.8937689224943917, + "dusclops": 3.149471717754132, + "absol": 1.996892010769253, + "glalie": 4.186898827174089, + "sealeo": 4.75470522231742, + "relicanth": 5.325298025696111, + "metang": 3.458768109892211, + "luxray": 4.705516278971861, + "vespiquen": 2.2713098698019856, + "cherrim": 6.278898015642055, + "gastrodon": 4.751855869929612, + "drifblim": 4.821556993148107, + "lopunny": 4.032862693182774, + "skuntank": 1.4826112033635672, + "bronzong": 3.01715466922803, + "munchlax": 2.434665366394401, + "drapion": 2.2483984366047673, + "abomasnow": 3.1993454102801913, + "froslass": 2.8733376538995006, + "rotom": 4.139514183679143, + "stoutland": 2.7311873721485385, + "liepard": 7.449490173958798, + "musharna": 1.8423459180911825, + "unfezant": 5.430344723625541, + "boldore": 6.3126780151516, + "swoobat": 4.869402041658974, + "audino": 2.434838361768214, + "gurdurr": 3.0199867426179905, + "palpitoad": 9.639678768748901, + "seismitoad": 14.03928856792402, + "scolipede": 3.178615533882534, + "whimsicott": 3.108157056173611, + "lilligant": 2.7541030022628945, + "basculin-red-striped": 4.8199491422973155, + "basculin-blue-striped": 6.072644535155673, + "krookodile": 4.259900272750707, + "maractus": 2.3322435361956178, + "crustle": 2.2010608994470697, + "sigilyph": 2.079874493441082, + "cofagrigus": 2.9591789076335604, + "garbodor": 2.332889913316409, + "cinccino": 4.944689657171615, + "vanillish": 2.0900509325053314, + "emolga": 3.2233477715160213, + "escavalier": 1.564738478260241, + "amoonguss": 3.2496359536186876, + "jellicent": 2.201260799381482, + "galvantula": 1.5459608925626358, + "klang": 3.269119801466416, + "klinklang": 3.7385709229753585, + "beheeyem": 1.92977516041105, + "lampent": 2.4701096489211976, + "fraxure": 1.4322164316059602, + "beartic": 1.7498487043165212, + "cryogonal": 1.7325748831922687, + "accelgor": 2.1470688195250167, + "stunfisk": 2.052431222281103, + "stunfisk-galar": 2.6677868746022906, + "mienshao": 4.678294972983083, + "druddigon": 1.7779819591542352, + "golurk": 2.94585226405425, + "bisharp": 2.458582851674155, + "bouffalant": 1.3147535521821334, + "heatmor": 2.032790725500614, + "durant": 2.15739485272392, + "diggersby": 5.1686801238367845, + "talonflame": 2.652996662999298, + "pangoro": 1.974669755787634, + "doublade": 2.4024542655485375, + "malamar": 3.214204400222769, + "barbaracle": 3.4304831055780483, + "heliolisk": 4.863309955346693, + "tyrantrum": 2.031707187787694, + "aurorus": 3.2119831539720343, + "hawlucha": 4.286902910779389, + "dedenne": 3.6254436597966437, + "klefki": 3.6434835318746654, + "trevenant": 3.3670471963450592, + "gourgeist-average": 4.4179754840367, + "charjabug": 4.064954214856795, + "vikavolt": 1.4737884008139344, + "ribombee": 3.742729417596104, + "lycanroc-midday": 5.080710888968577, + "lycanroc-midnight": 3.506028428491668, + "mudsdale": 2.5661003345193345, + "araquanid": 2.218227152680158, + "lurantis": 2.2329319865419963, + "shiinotic": 4.599190911107873, + "salazzle": 4.586561086211995, + "bewear": 2.176774453886435, + "tsareena": 3.15342061305567, + "comfey": 5.1224647882846, + "oranguru": 3.114592923945078, + "passimian": 2.9036159504730064, + "palossand": 3.369474727561171, + "pyukumuku": 60.35019843923257, + "togedemaru": 3.89762554473504, + "mimikyu-disguised": 4.154785426851055, + "greedent": 2.5766821851229937, + "orbeetle": 1.359391955123359, + "thievul": 1.6238133374640427, + "eldegoss": 4.344484502887012, + "dubwool": 3.531703221539077, + "drednaw": 3.032448571883248, + "boltund": 5.383744032972125, + "carkol": 3.257675086965448, + "coalossal": 2.670487884823337, + "sandaconda": 4.942427430601093, + "cramorant": 5.882058637727571, + "barraskewda": 7.511843159165769, + "toxtricity-amped": 4.455481711320077, + "centiskorch": 2.0299909405684344, + "grapploct": 2.367694047537794, + "polteageist": 3.0924652398261143, + "hatterene": 2.945856129993744, + "grimmsnarl": 3.9474001763329234, + "obstagoon": 2.8215775724981906, + "perrserker": 3.342812011971529, + "alcremie": 1.5566100262148133, + "falinks": 3.5314052741575575, + "pincurchin": 3.6635191148294655, + "frosmoth": 1.9755851253627221, + "indeedee-male": 3.1216704085845466, + "morpeko": 3.1662690840682624, + "copperajah": 2.8651975311450286, + "duraludon": 1.632656018801151, + "drakloak": 4.234775850500604 }, "marowak": { - "ivysaur": 2.7775003307994064, - "charmeleon": 4.783907502841353, - "wartortle": 2.216995286039329, - "butterfree": 3.9888931122811204, - "raichu": 7.497226941258475, - "raichu-alola": 4.906494130253222, - "sandslash": 1.978139900815941, - "sandslash-alola": 2.236576124731598, - "nidoqueen": 3.3869041603515155, - "nidoking": 2.287371008552391, - "clefairy": 9.604153618187922, - "clefable": 2.3066794950354836, - "jigglypuff": 29.5876008006557, - "wigglytuff": 2.1532155436063727, - "gloom": 5.563568325564679, - "vileplume": 2.5041268926788343, - "dugtrio": 3.891434309897977, - "dugtrio-alola": 4.467538083353359, - "persian": 4.136023447210661, - "persian-alola": 4.0468438693970334, - "golduck": 2.6091864959172013, - "poliwrath": 1.7267097011159824, - "kadabra": 4.6525978546269045, - "machoke": 3.8130017510770067, - "tentacruel": 2.9077450519936523, - "slowbro": 1.7957402322049987, - "magneton": 5.619439370346102, - "haunter": 4.709709215557658, - "kingler": 2.053021065072059, - "exeggutor": 1.901869287041574, - "marowak-alola": 2.441629193523308, - "hitmonlee": 2.549965054907271, - "hitmonchan": 2.1781416162767266, - "lickitung": 1.5815481250678491, - "weezing": 1.7662293529000532, - "weezing-galar": 2.896482137096108, - "rhydon": 2.4121427914272973, - "chansey": 27.51636239372898, - "tangela": 3.652260588570089, - "kangaskhan": 1.7938403453172818, - "seadra": 3.2663171756598692, - "seaking": 2.3499169434407823, - "starmie": 1.4725978775022637, - "mr-mime": 7.914706807985067, - "mr-mime-galar": 3.4679918723181524, - "scyther": 2.4563800232494044, - "jynx": 4.7127904640530875, - "electabuzz": 4.081153189833558, - "magmar": 2.186448020372284, - "tauros": 1.8927834097405545, - "ditto": 3.1896383150645016, - "vaporeon": 2.7989801928217686, - "jolteon": 2.731845752231726, - "flareon": 3.198278240334945, - "porygon": 2.644049569539484, - "dragonair": 1.7221462386898017, - "noctowl": 5.427081563333784, - "lanturn": 2.381911116114904, - "togetic": 5.9632228095899915, - "xatu": 4.035784957951083, - "bellossom": 1.8917349147961429, - "azumarill": 2.0081055253507953, - "sudowoodo": 2.918559726856933, - "politoed": 2.3682534797047565, - "quagsire": 3.786155602022476, - "slowking": 2.5708600222502738, - "dunsparce": 2.9269608669801617, - "qwilfish": 3.7889473194160534, - "sneasel": 2.4511025327213796, - "piloswine": 1.474661131737633, - "octillery": 2.0808914683047144, - "mantine": 2.0873050411919776, - "skarmory": 1.6617299134010532, - "hitmontop": 2.551233660297441, - "miltank": 3.3163830915510912, - "grovyle": 6.430741953000761, - "sceptile": 1.1819646023766044, - "combusken": 4.056089083445573, - "blaziken": 2.005379112557301, - "marshtomp": 2.1384758623968994, - "swampert": 1.0400539851242254, - "linoone": 5.030984593949488, - "linoone-galar": 4.424305193799764, - "pelipper": 5.192193462099611, - "ninjask": 6.813772501825298, - "exploud": 1.4025676083058591, - "lairon": 3.4244243197293, - "manectric": 2.2695756191601584, - "roselia": 3.574675482749539, - "sharpedo": 4.679464203389945, - "wailmer": 5.679369968658589, - "torkoal": 1.9637996857961026, - "flygon": 2.1108183449593856, - "altaria": 1.4012115857828262, - "whiscash": 1.6641491890538418, - "crawdaunt": 1.6066098390331898, - "claydol": 3.6390199805138077, - "cradily": 2.35563013607015, - "armaldo": 2.0189641551651425, - "dusclops": 3.7088952561649675, - "absol": 1.7635193831483185, - "glalie": 4.256994530609795, - "sealeo": 2.5546921044859463, - "relicanth": 2.015638762187563, - "metang": 3.659187152829352, - "luxray": 5.260456885381054, - "vespiquen": 2.4731141348468015, - "cherrim": 4.527793678852452, - "gastrodon": 2.0633407468637053, - "drifblim": 5.175488856887582, - "lopunny": 3.6177779483603603, - "skuntank": 1.8132666763188627, - "bronzong": 3.540531736474767, - "munchlax": 2.525198322703365, - "drapion": 2.848964307722291, - "abomasnow": 3.1158135385679566, - "froslass": 2.8431792379982066, - "rotom": 4.4503762743331094, - "stoutland": 2.3179256237877546, - "liepard": 6.834224475331492, - "musharna": 1.5844913600321595, - "unfezant": 5.4596655355051364, - "boldore": 3.508672254498049, - "swoobat": 5.773245610034625, - "audino": 2.0674916289066902, - "gurdurr": 2.036120180536577, - "palpitoad": 3.3647870919600047, - "seismitoad": 6.280574653568082, - "scolipede": 2.9927932996485485, - "whimsicott": 3.07498729291847, - "lilligant": 2.363073001166509, - "basculin-red-striped": 2.4074681022504727, - "basculin-blue-striped": 3.049500548989519, - "krookodile": 2.6787698565543874, - "maractus": 1.674915802940671, - "crustle": 2.1380788908754296, - "sigilyph": 2.4478787045656185, - "cofagrigus": 2.611742903956959, - "garbodor": 2.4019735013066366, - "cinccino": 4.172730082408184, - "vanillish": 2.0022895014650475, - "emolga": 3.141315096749195, - "escavalier": 1.6906199060538043, - "amoonguss": 2.3311306745363227, - "jellicent": 1.6337525750960924, - "galvantula": 1.7390964391351882, - "klang": 3.643519277396093, - "klinklang": 3.9870595574493506, - "beheeyem": 2.0130539304051704, - "lampent": 3.1323528926579383, - "fraxure": 1.4524664601253603, - "beartic": 1.560721474465174, - "cryogonal": 1.7254870907508693, - "accelgor": 2.7649331961792827, - "stunfisk": 1.523211895439696, - "stunfisk-galar": 2.7283980839870328, - "mienshao": 3.3039496702615327, - "druddigon": 1.7787298887467635, - "golurk": 2.046826482433601, - "bisharp": 2.890816537379912, - "bouffalant": 1.2557259481390988, - "heatmor": 2.2549559227478984, - "durant": 2.7160194231770634, - "diggersby": 3.1897632652806283, - "talonflame": 2.5508820048437366, - "pangoro": 1.6888525790112865, - "doublade": 2.39287997384824, - "malamar": 2.7655197955741144, - "barbaracle": 1.5493290218262563, - "heliolisk": 5.277243801856024, - "tyrantrum": 1.74969817606161, - "aurorus": 3.5500009849870855, - "hawlucha": 3.1798623981514194, - "dedenne": 3.888876152035439, - "klefki": 3.8625665197789165, - "trevenant": 3.1154839887053667, - "gourgeist-average": 5.16568087153686, - "charjabug": 4.031546563782795, - "vikavolt": 1.6406471588064555, - "ribombee": 5.05222987928958, - "lycanroc-midday": 4.304504644830601, - "lycanroc-midnight": 2.970938124109968, - "mudsdale": 1.5007871527489651, - "araquanid": 2.0958018563065455, - "lurantis": 1.943660492007848, - "shiinotic": 4.788132748530277, - "salazzle": 5.594496724937949, - "bewear": 1.6645165501799286, - "tsareena": 2.568081526004967, - "comfey": 4.529321442854549, - "oranguru": 2.9989377838321163, - "passimian": 2.1959200065434494, - "palossand": 2.003833926738191, - "pyukumuku": 42.295470561119146, - "togedemaru": 4.667780749760202, - "mimikyu-disguised": 4.757641234998906, - "greedent": 2.0080487953657284, - "orbeetle": 1.927595010584858, - "thievul": 1.818735608006195, - "eldegoss": 3.057059652372277, - "dubwool": 2.7238233923118056, - "drednaw": 1.5061449969604566, - "boltund": 6.399531651234199, - "carkol": 3.891319561689654, - "coalossal": 2.882082937771628, - "sandaconda": 2.777950871131546, - "cramorant": 4.846086685078822, - "barraskewda": 4.162169554378804, - "toxtricity-amped": 4.919513908419971, - "centiskorch": 2.0389465903746076, - "grapploct": 1.457445986004395, - "polteageist": 3.0005938330530455, - "hatterene": 2.736798777733527, - "grimmsnarl": 4.251206355433476, - "obstagoon": 2.495753318451314, - "perrserker": 3.825523830332409, - "alcremie": 1.6184852913293395, - "falinks": 2.8507970812157737, - "pincurchin": 3.588035105908455, - "frosmoth": 2.889692007453891, - "indeedee-male": 3.64445810881754, - "morpeko": 3.628699798159413, - "copperajah": 2.9688738441686535, - "duraludon": 1.7755856774809464, - "drakloak": 4.982148306108928, - "marowak": 2.8787491506016787 + "ivysaur": 2.772956105315564, + "charmeleon": 4.788173736621802, + "wartortle": 2.21042175999394, + "butterfree": 3.9795541584181775, + "raichu": 7.524286407091002, + "raichu-alola": 4.921222626428456, + "sandslash": 1.9783683342963712, + "sandslash-alola": 2.2368373567082287, + "nidoqueen": 3.391788297817988, + "nidoking": 2.2918568892691638, + "clefairy": 9.599859842393892, + "clefable": 2.309914631596195, + "jigglypuff": 29.603315230625334, + "wigglytuff": 2.1537050795467185, + "gloom": 5.5669415011351155, + "vileplume": 2.4990931948103015, + "dugtrio": 3.8974652348731826, + "dugtrio-alola": 4.4762128768130545, + "persian": 4.136146948850564, + "persian-alola": 4.046074340355251, + "golduck": 2.602953818847508, + "poliwrath": 1.7244833436491027, + "kadabra": 4.6582966048077665, + "machoke": 3.815920198042279, + "tentacruel": 2.906664008539157, + "slowbro": 1.7952716776785689, + "magneton": 5.638250793689994, + "haunter": 4.703798593806885, + "kingler": 2.0492805273936776, + "exeggutor": 1.8988799205521645, + "marowak": 2.8787491506016787, + "marowak-alola": 2.4470301098574354, + "hitmonlee": 2.553231747626999, + "hitmonchan": 2.179893167472784, + "lickitung": 1.579923900013632, + "weezing": 1.7684092537276723, + "weezing-galar": 2.8999587815653056, + "rhydon": 2.4137788838486234, + "chansey": 27.529291839595622, + "tangela": 3.6394364986174015, + "kangaskhan": 1.7946086580398735, + "seadra": 3.2554759766608994, + "seaking": 2.3496147076489207, + "starmie": 1.4729812561344908, + "mr-mime": 7.9233897955402535, + "mr-mime-galar": 3.467156739956362, + "scyther": 2.4539007782196736, + "jynx": 4.712522882741101, + "electabuzz": 4.098091408579425, + "magmar": 2.1893668678691034, + "tauros": 1.8933300851966715, + "ditto": 3.1732820141647577, + "vaporeon": 2.792983093983604, + "jolteon": 2.740091177510049, + "flareon": 3.202910424059869, + "porygon": 2.6435411162681994, + "dragonair": 1.7228547101586154, + "noctowl": 5.421950334845488, + "lanturn": 2.3824847950418375, + "togetic": 5.962135646490931, + "xatu": 4.032478697079634, + "bellossom": 1.8862417816209902, + "azumarill": 2.0081730973817544, + "sudowoodo": 2.9246600710014152, + "politoed": 2.3658323452382573, + "quagsire": 3.775957007006976, + "slowking": 2.568700736234611, + "dunsparce": 2.9244147722991194, + "qwilfish": 3.789656086329298, + "sneasel": 2.450511292180125, + "piloswine": 1.4742017372793788, + "octillery": 2.0775268948014514, + "mantine": 2.081343877455126, + "skarmory": 1.6595067311233498, + "hitmontop": 2.5507906584955937, + "miltank": 3.3159379326697644, + "grovyle": 6.414322306954422, + "sceptile": 1.178393667515869, + "combusken": 4.059401243311537, + "blaziken": 2.007786706195762, + "marshtomp": 2.134213038056598, + "swampert": 1.0378353418165311, + "linoone": 5.0325742488509135, + "linoone-galar": 4.422257181281357, + "pelipper": 5.181274754089923, + "ninjask": 6.80620292791366, + "exploud": 1.4010516481664643, + "lairon": 3.4315898499592565, + "manectric": 2.2747069984035546, + "roselia": 3.5693693301525142, + "sharpedo": 4.673876877050832, + "wailmer": 5.6687517561533, + "torkoal": 1.9640381756352658, + "flygon": 2.108127999381637, + "altaria": 1.3989007579802393, + "whiscash": 1.661809532707494, + "crawdaunt": 1.6033079032083346, + "claydol": 3.6372351064054103, + "cradily": 2.3553848253791796, + "armaldo": 2.022182655686116, + "dusclops": 3.7141320742377046, + "absol": 1.7623186501148154, + "glalie": 4.256004019604186, + "sealeo": 2.546665392598223, + "relicanth": 2.0158747462391005, + "metang": 3.6693908983138157, + "luxray": 5.277365376733396, + "vespiquen": 2.4708044785236947, + "cherrim": 4.512845395900539, + "gastrodon": 2.0626426666243294, + "drifblim": 5.183491512738052, + "lopunny": 3.620020628432444, + "skuntank": 1.816687802084047, + "bronzong": 3.541104806153451, + "munchlax": 2.5313169641157955, + "drapion": 2.853051316235031, + "abomasnow": 3.1093644039029478, + "froslass": 2.8428971558923157, + "rotom": 4.457189529670866, + "stoutland": 2.3176501511701395, + "liepard": 6.835955710758138, + "musharna": 1.583911905013388, + "unfezant": 5.454517131490903, + "boldore": 3.5140929149345337, + "swoobat": 5.768482420962355, + "audino": 2.0665350836069463, + "gurdurr": 2.035830720051452, + "palpitoad": 3.3598743150252193, + "seismitoad": 6.280843609896991, + "scolipede": 2.9938003563800635, + "whimsicott": 3.0701317354511977, + "lilligant": 2.3555630141707997, + "basculin-red-striped": 2.4026815386184657, + "basculin-blue-striped": 3.0423558829853805, + "krookodile": 2.678097295490089, + "maractus": 1.6695237103592557, + "crustle": 2.140677903145081, + "sigilyph": 2.4457588160425177, + "cofagrigus": 2.6126500791287066, + "garbodor": 2.4090197591761537, + "cinccino": 4.168958725733855, + "vanillish": 1.9981332196680581, + "emolga": 3.1453454797469664, + "escavalier": 1.6901555660583636, + "amoonguss": 2.32953358295887, + "jellicent": 1.6339305212074127, + "galvantula": 1.7432859697555556, + "klang": 3.653861518424046, + "klinklang": 3.991864582433271, + "beheeyem": 2.014877948310863, + "lampent": 3.1394267834972953, + "fraxure": 1.4526414486694046, + "beartic": 1.5579607690672206, + "cryogonal": 1.7206946959709444, + "accelgor": 2.7633684441968156, + "stunfisk": 1.5253024359758074, + "stunfisk-galar": 2.731185170471133, + "mienshao": 3.305281588930862, + "druddigon": 1.7804355736056923, + "golurk": 2.0500130801952183, + "bisharp": 2.8942628849783327, + "bouffalant": 1.2568946837850987, + "heatmor": 2.2565880878410227, + "durant": 2.71654622149324, + "diggersby": 3.192617712449881, + "talonflame": 2.546493238595155, + "pangoro": 1.6889134165143596, + "doublade": 2.395918859895856, + "malamar": 2.7670599617804434, + "barbaracle": 1.5484864814758463, + "heliolisk": 5.292359272347585, + "tyrantrum": 1.752516013485394, + "aurorus": 3.5590737523682003, + "hawlucha": 3.177016884319735, + "dedenne": 3.900127188058431, + "klefki": 3.869143586856799, + "trevenant": 3.11425090638143, + "gourgeist-average": 5.1657693739289545, + "charjabug": 4.040854319672096, + "vikavolt": 1.6390595758518585, + "ribombee": 5.050484253645815, + "lycanroc-midday": 4.318758757100213, + "lycanroc-midnight": 2.9793877928593133, + "mudsdale": 1.501608496244071, + "araquanid": 2.0941676240951055, + "lurantis": 1.938718849191225, + "shiinotic": 4.785592799615962, + "salazzle": 5.609543785432825, + "bewear": 1.6635251019574013, + "tsareena": 2.563316675153179, + "comfey": 4.525481591242363, + "oranguru": 3.0011988804757204, + "passimian": 2.19689717769471, + "palossand": 2.004209208202973, + "pyukumuku": 42.28495946830434, + "togedemaru": 4.6881044140225026, + "mimikyu-disguised": 4.768183635292781, + "greedent": 2.0081083014007115, + "orbeetle": 1.9266257470792936, + "thievul": 1.8191963611301665, + "eldegoss": 3.0470793862337864, + "dubwool": 2.72225080395146, + "drednaw": 1.5068892252581383, + "boltund": 6.419884180841864, + "carkol": 3.90049843348718, + "coalossal": 2.885344670926118, + "sandaconda": 2.7764785587894316, + "cramorant": 4.835135685419026, + "barraskewda": 4.1578673489500755, + "toxtricity-amped": 4.93808053924716, + "centiskorch": 2.0393681165713824, + "grapploct": 1.4562344235102271, + "polteageist": 3.0026824751319783, + "hatterene": 2.7395276861408746, + "grimmsnarl": 4.25414407226031, + "obstagoon": 2.4961636579211675, + "perrserker": 3.83256746741637, + "alcremie": 1.6190679872804297, + "falinks": 2.849823318049991, + "pincurchin": 3.5919475457956502, + "frosmoth": 2.888228260065108, + "indeedee-male": 3.6477955707024012, + "morpeko": 3.637088846677049, + "copperajah": 2.9730136998602363, + "duraludon": 1.7793086690321218, + "drakloak": 4.989572577295075 }, "marowak-alola": { - "ivysaur": 5.097999593516688, - "charmeleon": 4.122403770120174, - "wartortle": 2.500077145553613, - "butterfree": 7.651341076662364, - "raichu": 6.073616311035956, - "raichu-alola": 5.007131773313355, - "sandslash": 2.040500557781805, - "sandslash-alola": 3.4066959821139013, - "nidoqueen": 2.5858252709986873, - "nidoking": 1.928151323113886, - "clefairy": 11.46782956569852, - "clefable": 2.4672206011349367, - "jigglypuff": 33.16925732448134, - "wigglytuff": 2.503049875208899, - "gloom": 8.796618093713114, - "vileplume": 4.657192687994574, - "dugtrio": 3.586231936980648, - "dugtrio-alola": 4.926764934000782, - "persian": 5.448719572411244, - "persian-alola": 3.766341118371809, - "golduck": 2.842029001419572, - "poliwrath": 1.9659675146746816, - "kadabra": 6.295370127227894, - "machoke": 3.986209181888942, - "tentacruel": 2.2722965092025333, - "slowbro": 2.160484337561738, - "magneton": 4.349304799609663, - "haunter": 5.942990202122701, - "kingler": 2.1494478466783145, - "exeggutor": 2.6542073376367865, - "marowak": 2.896457065427171, - "hitmonlee": 3.255994436331476, - "hitmonchan": 2.5949246084839936, - "lickitung": 1.9487197838814314, - "weezing": 1.568899305979403, - "weezing-galar": 2.8243092911363146, - "rhydon": 2.0360293576232933, - "chansey": 39.756947017039494, - "tangela": 6.176042514685532, - "kangaskhan": 1.96988891447215, - "seadra": 3.5276289116241597, - "seaking": 2.3704686385827958, - "starmie": 1.9025244998755915, - "mr-mime": 9.779182142222632, - "mr-mime-galar": 5.5167181501118705, - "scyther": 3.8781484285292382, - "jynx": 12.137331436501219, - "electabuzz": 2.8940563682489664, - "magmar": 1.939119026978935, - "tauros": 2.113305319873248, - "ditto": 2.863880130101851, - "vaporeon": 3.1476998919857775, - "jolteon": 2.256134990262429, - "flareon": 2.6820993915970437, - "porygon": 3.0858458606290187, - "dragonair": 1.9357759973530482, - "noctowl": 7.39944019326154, - "lanturn": 1.7477161101166119, - "togetic": 6.578514573129248, - "xatu": 4.802198533645442, - "bellossom": 3.595364240812388, - "azumarill": 2.1608228672959147, - "sudowoodo": 2.440135664439053, - "politoed": 2.4406141616508488, - "quagsire": 4.182570326114282, - "slowking": 3.2603673465229615, - "dunsparce": 3.395059735724355, - "qwilfish": 3.160019235323519, - "sneasel": 2.970244278713283, - "piloswine": 1.7647212359216038, - "octillery": 2.2704494365272256, - "mantine": 2.4089745368326874, - "skarmory": 2.6357518199119667, - "hitmontop": 3.0436163214726424, - "miltank": 4.157733570906908, - "grovyle": 13.186869281852399, - "sceptile": 2.2162071495789393, - "combusken": 3.7834817279731348, - "blaziken": 1.8070964488773735, - "marshtomp": 2.2486779322429578, - "swampert": 1.1643375805800344, - "linoone": 5.8855464622808995, - "linoone-galar": 4.069996996801169, - "pelipper": 6.426389725349445, - "ninjask": 11.598132344404757, - "exploud": 2.0099307337214745, - "lairon": 2.06205857475024, - "manectric": 2.0351273604225084, - "roselia": 6.731745678892567, - "sharpedo": 4.03234289029373, - "wailmer": 6.007422657720641, - "torkoal": 1.880849163056378, - "flygon": 2.4172019679008963, - "altaria": 1.7307066202874233, - "whiscash": 1.727327656023957, - "crawdaunt": 1.4630283061484182, - "claydol": 4.277968305938405, - "cradily": 2.456834345273756, - "armaldo": 1.9304482209789122, - "dusclops": 4.143887298009373, - "absol": 2.145599142052432, - "glalie": 5.735894628709265, - "sealeo": 2.946192832649918, - "relicanth": 1.5889441002799685, - "metang": 4.199044884173036, - "luxray": 4.284517653070216, - "vespiquen": 4.156313801300228, - "cherrim": 9.265676542976887, - "gastrodon": 2.1890436312364776, - "drifblim": 5.728509699522855, - "lopunny": 4.560178701825304, - "skuntank": 1.4867064292541805, - "bronzong": 4.892484810079337, - "munchlax": 2.4309816363868935, - "drapion": 2.4279275613259443, - "abomasnow": 7.124663181297782, - "froslass": 4.042053478677104, - "rotom": 4.567263671556652, - "stoutland": 3.123677981400436, - "liepard": 7.200359617633506, - "musharna": 2.041347356630581, - "unfezant": 6.383048159056017, - "boldore": 2.952919025951145, - "swoobat": 6.885576077883799, - "audino": 2.915055007921283, - "gurdurr": 2.3648208761199516, - "palpitoad": 3.371807068519908, - "seismitoad": 7.194681684243221, - "scolipede": 4.446089369604902, - "whimsicott": 4.511779048574777, - "lilligant": 4.647834995090998, - "basculin-red-striped": 2.5992301931614676, - "basculin-blue-striped": 3.0611446621089464, - "krookodile": 2.536960935605782, - "maractus": 3.241886372041761, - "crustle": 2.1954363773869217, - "sigilyph": 2.9797683870158047, - "cofagrigus": 2.833438921192508, - "garbodor": 2.114639418529828, - "cinccino": 5.6681455512481635, - "vanillish": 3.4809818510468293, - "emolga": 3.1722181140582526, - "escavalier": 3.9210054309756726, - "amoonguss": 3.976962524214982, - "jellicent": 2.4654283708826545, - "galvantula": 2.294704023489232, - "klang": 3.792630917534859, - "klinklang": 5.209344222511139, - "beheeyem": 2.263011823236715, - "lampent": 3.7835019327968915, - "fraxure": 1.5661410013778925, - "beartic": 2.5228892126244666, - "cryogonal": 3.1289801826792454, - "accelgor": 5.4345690891278675, - "stunfisk": 1.1941844053679604, - "stunfisk-galar": 2.887244181387278, - "mienshao": 3.8874081297630085, - "druddigon": 1.7648862145973703, - "golurk": 2.376069258127645, - "bisharp": 3.10882239116695, - "bouffalant": 1.5061541837182952, - "heatmor": 2.0443065721765836, - "durant": 5.634228964259167, - "diggersby": 3.1699644606262867, - "talonflame": 3.00971233980302, - "pangoro": 1.8826895493629034, - "doublade": 2.9310881509511333, - "malamar": 2.7040839376042483, - "barbaracle": 1.4673774372435378, - "heliolisk": 6.013871005324972, - "tyrantrum": 1.6126155351178082, - "aurorus": 3.310056651186894, - "hawlucha": 3.750504004473274, - "dedenne": 3.394551758363318, - "klefki": 4.989125944364519, - "trevenant": 4.9932349729812735, - "gourgeist-average": 6.413238404833102, - "charjabug": 5.323771187964828, - "vikavolt": 2.6862190211474513, - "ribombee": 7.626298995067648, - "lycanroc-midday": 3.3568489696253963, - "lycanroc-midnight": 2.4187363975199894, - "mudsdale": 1.6364479807259442, - "araquanid": 2.6875839908070525, - "lurantis": 3.7969717731699815, - "shiinotic": 7.199526274042116, - "salazzle": 3.348170692697856, - "bewear": 2.0421301103804907, - "tsareena": 4.601355297205776, - "comfey": 5.5074443355278095, - "oranguru": 2.906856447437145, - "passimian": 2.4019618035487795, - "palossand": 2.1340008603678466, - "pyukumuku": 45.99072805834594, - "togedemaru": 3.483856823038222, - "mimikyu-disguised": 5.726314003097755, - "greedent": 2.429711949986438, - "orbeetle": 2.6951506917236956, - "thievul": 1.8647094278375076, - "eldegoss": 6.358592771958038, - "dubwool": 4.74229333389602, - "drednaw": 1.14270765767904, - "boltund": 4.631845818896178, - "carkol": 2.1951667222234033, - "coalossal": 1.719939371746905, - "sandaconda": 2.91162172032013, - "cramorant": 5.218635023349307, - "barraskewda": 4.141526568011782, - "toxtricity-amped": 3.3002584294962825, - "centiskorch": 2.3316046673558355, - "grapploct": 1.7291187581073793, - "polteageist": 4.050560829515235, - "hatterene": 3.401730886553841, - "grimmsnarl": 3.995281764637167, - "obstagoon": 2.583872730539026, - "perrserker": 4.11081027019229, - "alcremie": 1.914121356684898, - "falinks": 3.5009723958323034, - "pincurchin": 2.8521074834268783, - "frosmoth": 6.491124583830379, - "indeedee-male": 3.4301991272673433, - "morpeko": 2.7904745407796683, - "copperajah": 3.886821729596791, - "duraludon": 1.493947153821356, - "drakloak": 5.528359861498849, - "marowak-alola": 2.592107996376084 + "ivysaur": 5.118144125089468, + "charmeleon": 4.126984279373921, + "wartortle": 2.4962971596959953, + "butterfree": 7.684650355192431, + "raichu": 6.089602534228858, + "raichu-alola": 5.017439833335825, + "sandslash": 2.040555196654214, + "sandslash-alola": 3.418540575764043, + "nidoqueen": 2.5831318779098127, + "nidoking": 1.9306992491860493, + "clefairy": 11.514555821486091, + "clefable": 2.4721239068583127, + "jigglypuff": 33.25375780445019, + "wigglytuff": 2.509086318653349, + "gloom": 8.829010191464516, + "vileplume": 4.676927296784058, + "dugtrio": 3.5848904555413155, + "dugtrio-alola": 4.934820141986692, + "persian": 5.467343795817481, + "persian-alola": 3.761269522854938, + "golduck": 2.8376276628768022, + "poliwrath": 1.9678384554691346, + "kadabra": 6.319293715923088, + "machoke": 3.9903999889397244, + "tentacruel": 2.2688748606066964, + "slowbro": 2.1618734827443835, + "magneton": 4.358299656610882, + "haunter": 5.951747598417954, + "kingler": 2.146346351374906, + "exeggutor": 2.6619915861844556, + "marowak": 2.8951970643237033, + "marowak-alola": 2.592107996376084, + "hitmonlee": 3.2738001287808567, + "hitmonchan": 2.6043119736070555, + "lickitung": 1.9486989939051598, + "weezing": 1.5696645347564666, + "weezing-galar": 2.8320023420015996, + "rhydon": 2.031930411603192, + "chansey": 39.94449728362605, + "tangela": 6.1943317150618045, + "kangaskhan": 1.9700774949791402, + "seadra": 3.5190096715323387, + "seaking": 2.368710761926055, + "starmie": 1.903372787811357, + "mr-mime": 9.806505197053886, + "mr-mime-galar": 5.535685526292012, + "scyther": 3.8885410095688253, + "jynx": 12.21704953065792, + "electabuzz": 2.8986294235558465, + "magmar": 1.9434480970445016, + "tauros": 2.1143815480435326, + "ditto": 2.860911779323292, + "vaporeon": 3.144860454229671, + "jolteon": 2.257325291109661, + "flareon": 2.6771779796371833, + "porygon": 3.0877346943258592, + "dragonair": 1.9371248826725145, + "noctowl": 7.417938792715788, + "lanturn": 1.7440458882842953, + "togetic": 6.60551124442825, + "xatu": 4.8083961617347, + "bellossom": 3.6082501516051146, + "azumarill": 2.162885551366955, + "sudowoodo": 2.4389141088351103, + "politoed": 2.4375644282220654, + "quagsire": 4.1763018167774835, + "slowking": 3.2618571613196004, + "dunsparce": 3.394662892197701, + "qwilfish": 3.1577966462503646, + "sneasel": 2.9724494006665534, + "piloswine": 1.7694434725016064, + "octillery": 2.2688682487284364, + "mantine": 2.4064454447872246, + "skarmory": 2.6425452183723226, + "hitmontop": 3.0518082129795876, + "miltank": 4.168584791581937, + "grovyle": 13.24856214908062, + "sceptile": 2.224871041444141, + "combusken": 3.7946510287477935, + "blaziken": 1.8118171174318416, + "marshtomp": 2.2446826967180935, + "swampert": 1.1614822075903841, + "linoone": 5.892881964881402, + "linoone-galar": 4.058766165405752, + "pelipper": 6.436835707471749, + "ninjask": 11.643425859940399, + "exploud": 2.016577526049393, + "lairon": 2.061357459535728, + "manectric": 2.03944608832664, + "roselia": 6.758645201344832, + "sharpedo": 4.021896249652778, + "wailmer": 5.998079920656817, + "torkoal": 1.8831080118980752, + "flygon": 2.418810739801586, + "altaria": 1.7323501793936207, + "whiscash": 1.7249605100888838, + "crawdaunt": 1.4590114038277178, + "claydol": 4.283811949123031, + "cradily": 2.459907958018242, + "armaldo": 1.932736318179069, + "dusclops": 4.146939707566033, + "absol": 2.14758704782603, + "glalie": 5.750622545341079, + "sealeo": 2.9425570425105656, + "relicanth": 1.584400270028667, + "metang": 4.214792545117966, + "luxray": 4.292751910819645, + "vespiquen": 4.173409006501986, + "cherrim": 9.305780539683475, + "gastrodon": 2.1891368743088555, + "drifblim": 5.739211810111623, + "lopunny": 4.574250588527594, + "skuntank": 1.4863968164402181, + "bronzong": 4.913584592760284, + "munchlax": 2.435122518375544, + "drapion": 2.4298253143575534, + "abomasnow": 7.163778519982499, + "froslass": 4.055601156296186, + "rotom": 4.568615756358161, + "stoutland": 3.135755771153688, + "liepard": 7.200913234489254, + "musharna": 2.0455374341686, + "unfezant": 6.38435010221794, + "boldore": 2.9497378749548657, + "swoobat": 6.89468856620132, + "audino": 2.9219738292811415, + "gurdurr": 2.3705517868100916, + "palpitoad": 3.364638660331323, + "seismitoad": 7.209820440557369, + "scolipede": 4.458589520056815, + "whimsicott": 4.528237479566546, + "lilligant": 4.665916540123995, + "basculin-red-striped": 2.596010465379185, + "basculin-blue-striped": 3.0521620918840866, + "krookodile": 2.5312824727660965, + "maractus": 3.2518381729502335, + "crustle": 2.2003435728510183, + "sigilyph": 2.984819481190076, + "cofagrigus": 2.831912277662913, + "garbodor": 2.122286933506647, + "cinccino": 5.685606688481508, + "vanillish": 3.496437418753348, + "emolga": 3.175338247140558, + "escavalier": 3.9310020145519124, + "amoonguss": 3.9918565547836753, + "jellicent": 2.4709217265225187, + "galvantula": 2.299962037596453, + "klang": 3.7982311279447454, + "klinklang": 5.233556554840531, + "beheeyem": 2.2642974441648893, + "lampent": 3.7904314288122896, + "fraxure": 1.5681233019153544, + "beartic": 2.530934220574281, + "cryogonal": 3.1442860616422017, + "accelgor": 5.461052213176062, + "stunfisk": 1.1925089088935041, + "stunfisk-galar": 2.8878401713631403, + "mienshao": 3.899240540684868, + "druddigon": 1.7649516614994643, + "golurk": 2.380324603481491, + "bisharp": 3.1110311799590233, + "bouffalant": 1.5094358512278303, + "heatmor": 2.044624369258671, + "durant": 5.658586986690828, + "diggersby": 3.165983757431026, + "talonflame": 3.0123555817835506, + "pangoro": 1.8850143956626528, + "doublade": 2.943024802181292, + "malamar": 2.702149355560544, + "barbaracle": 1.4671651336299418, + "heliolisk": 6.025672809718893, + "tyrantrum": 1.6137278023737118, + "aurorus": 3.3130697009797903, + "hawlucha": 3.7574269329805503, + "dedenne": 3.4020168636615407, + "klefki": 5.0127632985627475, + "trevenant": 5.024231859414819, + "gourgeist-average": 6.4264960617703455, + "charjabug": 5.33076680333771, + "vikavolt": 2.6941088812489182, + "ribombee": 7.665236115795153, + "lycanroc-midday": 3.355405786024706, + "lycanroc-midnight": 2.4186711005154384, + "mudsdale": 1.6386577858778384, + "araquanid": 2.692809167661821, + "lurantis": 3.814237250975486, + "shiinotic": 7.235130712214498, + "salazzle": 3.353563448128375, + "bewear": 2.0461847910075637, + "tsareena": 4.61757159275347, + "comfey": 5.529582056362035, + "oranguru": 2.906040615823724, + "passimian": 2.4061303307684447, + "palossand": 2.1322377367209304, + "pyukumuku": 46.022730921586394, + "togedemaru": 3.4957096613363605, + "mimikyu-disguised": 5.744937859268668, + "greedent": 2.4342291581355724, + "orbeetle": 2.7028462474355535, + "thievul": 1.8632679531450302, + "eldegoss": 6.386249141587017, + "dubwool": 4.763463799382015, + "drednaw": 1.1411535272836093, + "boltund": 4.629941504622549, + "carkol": 2.1927377471912033, + "coalossal": 1.7158796454979255, + "sandaconda": 2.910699950155535, + "cramorant": 5.21017733851196, + "barraskewda": 4.13407303910036, + "toxtricity-amped": 3.3060788994346084, + "centiskorch": 2.335733969955946, + "grapploct": 1.7338509879855502, + "polteageist": 4.0635808399205375, + "hatterene": 3.412631343185815, + "grimmsnarl": 3.9954249781584346, + "obstagoon": 2.5822616295355805, + "perrserker": 4.116489505080101, + "alcremie": 1.9224501441160884, + "falinks": 3.5129607236064295, + "pincurchin": 2.8485212229110974, + "frosmoth": 6.522776481722977, + "indeedee-male": 3.4278048191621475, + "morpeko": 2.789145446883087, + "copperajah": 3.9046463935083375, + "duraludon": 1.4953976405274723, + "drakloak": 5.527388925447344 }, "hitmonlee": { - "ivysaur": 4.171067971278293, - "charmeleon": 4.484404214400138, - "wartortle": 3.0773790185568846, - "butterfree": 6.352151306034017, - "raichu": 6.1747316531245735, - "raichu-alola": 3.4499125722817094, - "sandslash": 2.02126733609139, - "sandslash-alola": 3.6973556249667605, - "nidoqueen": 2.7246140848768285, - "nidoking": 1.6116471780658064, - "clefairy": 9.475779664831546, - "clefable": 2.3420426945109276, - "jigglypuff": 27.333078361969115, - "wigglytuff": 1.986338337981867, - "gloom": 6.677881632564244, - "vileplume": 3.86899526463315, - "dugtrio": 4.182645496785601, - "dugtrio-alola": 5.120129126146383, - "persian": 5.630786901494247, - "persian-alola": 7.3393258377726465, - "golduck": 3.1927200853636606, - "poliwrath": 1.8514400649393932, - "kadabra": 3.7289937257944388, - "machoke": 4.084689167844715, - "tentacruel": 2.1907052168688823, - "slowbro": 1.324889336636915, - "magneton": 4.625868717083842, - "haunter": 4.412084425461608, - "kingler": 2.13682899298267, - "exeggutor": 2.0191981345726515, - "marowak": 2.976534576695479, - "marowak-alola": 1.4405294830528512, - "hitmonchan": 2.2443830157505644, - "lickitung": 3.0873356587825755, - "weezing": 1.7825060703128042, - "weezing-galar": 2.2129899726485935, - "rhydon": 2.472971036556737, - "chansey": 51.40508799292732, - "tangela": 4.507123900978293, - "kangaskhan": 2.5452277199503683, - "seadra": 4.16010105956315, - "seaking": 2.3972719765600474, - "starmie": 1.9574565132002302, - "mr-mime": 6.133267518382949, - "mr-mime-galar": 4.511539908354667, - "scyther": 2.865774931297951, - "jynx": 8.92572249857175, - "electabuzz": 3.145668511733146, - "magmar": 2.066556984176236, - "tauros": 2.6058976020271176, - "ditto": 2.7379258533410518, - "vaporeon": 3.897680072289503, - "jolteon": 2.4086240461646202, - "flareon": 2.9709060121926796, - "porygon": 4.36927294431038, - "dragonair": 2.682254864765986, - "noctowl": 5.868236500515909, - "lanturn": 2.3184059774135166, - "togetic": 4.505372305367973, - "xatu": 3.2244484739948307, - "bellossom": 2.7841495769529154, - "azumarill": 1.5529736923604045, - "sudowoodo": 3.1557995364672764, - "politoed": 2.849549112497348, - "quagsire": 4.973227057576096, - "slowking": 2.0216668791051657, - "dunsparce": 4.544251017425426, - "qwilfish": 2.5698789648728178, - "sneasel": 5.410243944890496, - "piloswine": 2.1681765710928116, - "octillery": 2.6544897212142686, - "mantine": 2.1799006532393292, - "skarmory": 2.0122521315435438, - "hitmontop": 2.724885903585762, - "miltank": 3.9562543939990698, - "grovyle": 10.354992558585693, - "sceptile": 1.8335999988588307, - "combusken": 3.629472920276497, - "blaziken": 1.677052547244105, - "marshtomp": 2.5372182759395026, - "swampert": 1.433417876882649, - "linoone": 7.218911804499141, - "linoone-galar": 11.811992609153574, - "pelipper": 4.369455309417014, - "ninjask": 9.488087170378892, - "exploud": 2.6658128701258574, - "lairon": 3.9060660822688953, - "manectric": 1.9060461204825299, - "roselia": 5.296834299962224, - "sharpedo": 7.198559395160265, - "wailmer": 6.473129737021083, - "torkoal": 1.9698105749158115, - "flygon": 2.491564661516603, - "altaria": 2.668440200314404, - "whiscash": 2.008919122929394, - "crawdaunt": 2.791374426612416, - "claydol": 3.1354855066811265, - "cradily": 3.622321106426941, - "armaldo": 1.9432169583863068, - "dusclops": 3.151777540041155, - "absol": 3.0577848721154286, - "glalie": 5.727005862312591, - "sealeo": 4.675948404728639, - "relicanth": 2.251529427097892, - "metang": 2.917282493736418, - "luxray": 4.004730311584233, - "vespiquen": 2.8833940691648596, - "cherrim": 7.518708434666191, - "gastrodon": 2.3077498154811145, - "drifblim": 3.9330686727003066, - "lopunny": 4.7957166257298365, - "skuntank": 1.6704265120271655, - "bronzong": 3.152868651111898, - "munchlax": 3.591295745138381, - "drapion": 2.4787736176893205, - "abomasnow": 5.093434587782453, - "froslass": 3.5118437643575877, - "rotom": 3.615295156016672, - "stoutland": 3.253793664642236, - "liepard": 9.170314381877876, - "musharna": 1.3088965506456742, - "unfezant": 4.791472405018878, - "boldore": 3.7217700458116822, - "swoobat": 4.6028584697691715, - "audino": 3.4858048362679446, - "gurdurr": 2.0254075536089133, - "palpitoad": 4.020477472609536, - "seismitoad": 7.106934311899986, - "scolipede": 3.7515407377284973, - "whimsicott": 3.2570047866296123, - "lilligant": 3.973507143152003, - "basculin-red-striped": 2.5484486597398233, - "basculin-blue-striped": 3.8377851239203826, - "krookodile": 4.2243912943715225, - "maractus": 2.8471383204240963, - "crustle": 2.050392968896318, - "sigilyph": 2.0215429134451437, - "cofagrigus": 2.2474575757542974, - "garbodor": 1.8091253655019186, - "cinccino": 6.325864381935548, - "vanillish": 3.8702873341574007, - "emolga": 2.8484864994166452, - "escavalier": 3.1746378046122117, - "amoonguss": 3.254598021510282, - "jellicent": 2.026116265947652, - "galvantula": 2.0488499665372397, - "klang": 4.478279249104781, - "klinklang": 4.310322072461014, - "beheeyem": 1.803022290169078, - "lampent": 2.6819509392248344, - "fraxure": 1.4684774550203188, - "beartic": 2.5919777054602977, - "cryogonal": 3.3174010849501325, - "accelgor": 4.515592109712263, - "stunfisk": 1.4979226181615528, - "stunfisk-galar": 3.4695520432801885, - "mienshao": 3.6156085412359253, - "druddigon": 1.7703160979132107, - "golurk": 1.6412824296552078, - "bisharp": 4.522050010637428, - "bouffalant": 1.8495473560406208, - "heatmor": 2.0711065328250697, - "durant": 4.117161226239298, - "diggersby": 4.445332361099736, - "talonflame": 2.430552442140729, - "pangoro": 2.4594272919772275, - "doublade": 2.0001823837695203, - "malamar": 2.9137253956538514, - "barbaracle": 1.8655982435534857, - "heliolisk": 6.5440442373968954, - "tyrantrum": 1.8527157813318267, - "aurorus": 5.245115710029989, - "hawlucha": 3.1217110116319873, - "dedenne": 3.0979354974196682, - "klefki": 3.379253216574419, - "trevenant": 3.445768429227927, - "gourgeist-average": 5.537439222373988, - "charjabug": 4.394577871033284, - "vikavolt": 2.2439451226565934, - "ribombee": 5.972524610716778, - "lycanroc-midday": 5.104667609023771, - "lycanroc-midnight": 3.445218704232521, - "mudsdale": 1.5637051593419211, - "araquanid": 2.2598986885501127, - "lurantis": 3.0472568011983263, - "shiinotic": 5.159919653641361, - "salazzle": 3.2439644324125854, - "bewear": 2.2338388289711633, - "tsareena": 3.1968415624378608, - "comfey": 4.211855331456192, - "oranguru": 2.5135086506143254, - "passimian": 2.0916845925238556, - "palossand": 1.8583510764536062, - "pyukumuku": 49.208476362090444, - "togedemaru": 3.3875262667329595, - "mimikyu-disguised": 3.5681517694203677, - "greedent": 2.4839665209790915, - "orbeetle": 2.1854778360561387, - "thievul": 3.3875271809766705, - "eldegoss": 5.190788042238117, - "dubwool": 3.8063877919322984, - "drednaw": 1.7311392839206325, - "boltund": 5.31898874617797, - "carkol": 3.4488759980242953, - "coalossal": 2.7793524653081945, - "sandaconda": 3.0225792212122484, - "cramorant": 4.914297489984737, - "barraskewda": 4.601984772614445, - "toxtricity-amped": 3.086916215967545, - "centiskorch": 2.045541708845574, - "grapploct": 1.782989463632798, - "polteageist": 2.5117537222930624, - "hatterene": 1.9454927818848256, - "grimmsnarl": 4.509468636983245, - "obstagoon": 5.129981270171539, - "perrserker": 4.321198184718796, - "alcremie": 1.5690169018192792, - "falinks": 2.940993022536797, - "pincurchin": 3.2652945993858427, - "frosmoth": 4.987641953449144, - "indeedee-male": 3.6144933390821734, - "morpeko": 4.027128227298483, - "copperajah": 3.543692200723542, - "duraludon": 1.8913192291725938, - "drakloak": 3.460643431984682, - "hitmonlee": 2.6798734459992746 + "ivysaur": 4.177861178547591, + "charmeleon": 4.494031548797109, + "wartortle": 3.0834398388406, + "butterfree": 6.361967879333151, + "raichu": 6.1938843034552615, + "raichu-alola": 3.4480659417397486, + "sandslash": 2.0208358284547234, + "sandslash-alola": 3.713210780849403, + "nidoqueen": 2.7258175053993403, + "nidoking": 1.6090999184644632, + "clefairy": 9.487824503744783, + "clefable": 2.3423674969491155, + "jigglypuff": 27.33827415581993, + "wigglytuff": 1.9874070218252131, + "gloom": 6.67662618899587, + "vileplume": 3.877188681541077, + "dugtrio": 4.188895396943756, + "dugtrio-alola": 5.139259538116159, + "persian": 5.635289348909224, + "persian-alola": 7.370890846848682, + "golduck": 3.19343449582653, + "poliwrath": 1.850247288026887, + "kadabra": 3.7206942610507077, + "machoke": 4.090333925478935, + "tentacruel": 2.190841537815829, + "slowbro": 1.3200824557563131, + "magneton": 4.645631424175412, + "haunter": 4.406083135196463, + "kingler": 2.1331509201053684, + "exeggutor": 2.015398894928457, + "marowak": 2.9765733391874605, + "marowak-alola": 1.4340580274887607, + "hitmonlee": 2.6798734459992746, + "hitmonchan": 2.2457037749386535, + "lickitung": 3.0989138901146314, + "weezing": 1.7824492347760685, + "weezing-galar": 2.208463567408795, + "rhydon": 2.4726547487191772, + "chansey": 51.622113121810116, + "tangela": 4.49997931220887, + "kangaskhan": 2.550266328811239, + "seadra": 4.161824993387929, + "seaking": 2.3951335843553316, + "starmie": 1.9525221699024067, + "mr-mime": 6.1156586839570135, + "mr-mime-galar": 4.5143172703721755, + "scyther": 2.858850032507661, + "jynx": 8.952658256286938, + "electabuzz": 3.1536979779077874, + "magmar": 2.0713152025849912, + "tauros": 2.6105678956337197, + "ditto": 2.7196411459887146, + "vaporeon": 3.9073733963717343, + "jolteon": 2.4155731719372273, + "flareon": 2.974265594630102, + "porygon": 4.385562587404101, + "dragonair": 2.6859722798139036, + "noctowl": 5.864817169239672, + "lanturn": 2.3248592998349453, + "togetic": 4.491627608995178, + "xatu": 3.213889044197172, + "bellossom": 2.7905255838440226, + "azumarill": 1.5483184553459142, + "sudowoodo": 3.16107282407364, + "politoed": 2.8528434656111727, + "quagsire": 4.98019191063425, + "slowking": 2.0167915173684356, + "dunsparce": 4.555448887556266, + "qwilfish": 2.5622852591540295, + "sneasel": 5.438472482785378, + "piloswine": 2.173106134971432, + "octillery": 2.659275231188504, + "mantine": 2.1788424582282397, + "skarmory": 2.0122132285933847, + "hitmontop": 2.7259688339133135, + "miltank": 3.953106355930487, + "grovyle": 10.380138595255637, + "sceptile": 1.8386364531597448, + "combusken": 3.634472383501685, + "blaziken": 1.6778642698865647, + "marshtomp": 2.5374056912810765, + "swampert": 1.4361315357642401, + "linoone": 7.233748032920733, + "linoone-galar": 11.882055954672001, + "pelipper": 4.351537720818051, + "ninjask": 9.49451769989694, + "exploud": 2.6761800470520827, + "lairon": 3.917026497402687, + "manectric": 1.90819214548261, + "roselia": 5.302349067558399, + "sharpedo": 7.215192573419619, + "wailmer": 6.4696440295308, + "torkoal": 1.9708972600469752, + "flygon": 2.4924675448009763, + "altaria": 2.6662032750233506, + "whiscash": 2.0052566834739363, + "crawdaunt": 2.7977865076579476, + "claydol": 3.132608815964842, + "cradily": 3.6378855260070284, + "armaldo": 1.9459559358724574, + "dusclops": 3.1454384903119808, + "absol": 3.0681246322901687, + "glalie": 5.744301180022173, + "sealeo": 4.690268568903196, + "relicanth": 2.2536140591269236, + "metang": 2.913644715707794, + "luxray": 4.008141196390848, + "vespiquen": 2.8767250939821993, + "cherrim": 7.538249190990172, + "gastrodon": 2.3089705542112213, + "drifblim": 3.9220825178102245, + "lopunny": 4.799684859609467, + "skuntank": 1.6751269458801148, + "bronzong": 3.1475377378825766, + "munchlax": 3.599165889632753, + "drapion": 2.482789559351562, + "abomasnow": 5.106749588863906, + "froslass": 3.508953112185969, + "rotom": 3.611854209687932, + "stoutland": 3.2581409072187686, + "liepard": 9.181277758889792, + "musharna": 1.3054659629425829, + "unfezant": 4.773914983020569, + "boldore": 3.7256966221230536, + "swoobat": 4.5875734844129, + "audino": 3.4967329275650987, + "gurdurr": 2.023994188512046, + "palpitoad": 4.0233897558810225, + "seismitoad": 7.115445539816881, + "scolipede": 3.7522266835892024, + "whimsicott": 3.2511792752283646, + "lilligant": 3.986115427463, + "basculin-red-striped": 2.543799852868772, + "basculin-blue-striped": 3.8411358030566616, + "krookodile": 4.240431290763322, + "maractus": 2.855791444461696, + "crustle": 2.0523125801382758, + "sigilyph": 2.0160568300457893, + "cofagrigus": 2.241120685796203, + "garbodor": 1.8068687598015822, + "cinccino": 6.337872030849781, + "vanillish": 3.904592834169438, + "emolga": 2.844624355232218, + "escavalier": 3.1813049715225934, + "amoonguss": 3.259082860013759, + "jellicent": 2.0173982916967272, + "galvantula": 2.0528424545121036, + "klang": 4.502031203221364, + "klinklang": 4.3198691387670864, + "beheeyem": 1.8032656416180215, + "lampent": 2.670486162117558, + "fraxure": 1.467194402608337, + "beartic": 2.6013506831809616, + "cryogonal": 3.335349353162011, + "accelgor": 4.529327071870659, + "stunfisk": 1.5013284603402621, + "stunfisk-galar": 3.4853205745698013, + "mienshao": 3.6206403003387226, + "druddigon": 1.7691132430116183, + "golurk": 1.636271429050032, + "bisharp": 4.537327896320688, + "bouffalant": 1.8543392905745537, + "heatmor": 2.072412945804829, + "durant": 4.121617900017703, + "diggersby": 4.4557921910157425, + "talonflame": 2.427213656633061, + "pangoro": 2.466230629303775, + "doublade": 1.9921813885833035, + "malamar": 2.915536601235903, + "barbaracle": 1.8658332368690336, + "heliolisk": 6.5786324219620065, + "tyrantrum": 1.854012658774844, + "aurorus": 5.269430538426333, + "hawlucha": 3.117900701419225, + "dedenne": 3.097666511891959, + "klefki": 3.379699513902036, + "trevenant": 3.4385692315810865, + "gourgeist-average": 5.5281373596478325, + "charjabug": 4.389798967805399, + "vikavolt": 2.2468186801102314, + "ribombee": 5.975524698900923, + "lycanroc-midday": 5.1234964356606305, + "lycanroc-midnight": 3.455738951738006, + "mudsdale": 1.564270403991734, + "araquanid": 2.2594645021195694, + "lurantis": 3.054868477478047, + "shiinotic": 5.156685587496684, + "salazzle": 3.240750166008961, + "bewear": 2.2360508817731946, + "tsareena": 3.193349715039364, + "comfey": 4.210432282439069, + "oranguru": 2.5094381540801125, + "passimian": 2.089669290137047, + "palossand": 1.8554064394235308, + "pyukumuku": 49.278649572926994, + "togedemaru": 3.397226469192132, + "mimikyu-disguised": 3.555424453246181, + "greedent": 2.483198041266275, + "orbeetle": 2.181737308041154, + "thievul": 3.4031110657918178, + "eldegoss": 5.205592218573347, + "dubwool": 3.813486725849443, + "drednaw": 1.733762057658009, + "boltund": 5.332068373919326, + "carkol": 3.4581284171549105, + "coalossal": 2.788138672555738, + "sandaconda": 3.023555085216821, + "cramorant": 4.91139802848253, + "barraskewda": 4.601127157886796, + "toxtricity-amped": 3.0874693429003037, + "centiskorch": 2.0461725439273284, + "grapploct": 1.7848952962770606, + "polteageist": 2.5042745021190225, + "hatterene": 1.936488781074682, + "grimmsnarl": 4.52321800999704, + "obstagoon": 5.1503334739289155, + "perrserker": 4.3366795619939715, + "alcremie": 1.5700613792616855, + "falinks": 2.9403399100781886, + "pincurchin": 3.272100569856349, + "frosmoth": 4.9991722447197, + "indeedee-male": 3.6196925029920126, + "morpeko": 4.039935020227183, + "copperajah": 3.557807580508956, + "duraludon": 1.8949643875831808, + "drakloak": 3.448833088592381 }, "hitmonchan": { - "ivysaur": 4.058856332562787, - "charmeleon": 3.8011576400022764, - "wartortle": 3.3641883949309546, - "butterfree": 6.172241683352141, - "raichu": 5.137992300023649, - "raichu-alola": 3.3245395886850604, - "sandslash": 2.3077101439129493, - "sandslash-alola": 2.9379851127625702, - "nidoqueen": 3.3673734179174195, - "nidoking": 2.142408561592629, - "clefairy": 9.11184326344534, - "clefable": 1.7370650407799133, - "jigglypuff": 22.98264738212034, - "wigglytuff": 1.6617526896620065, - "gloom": 6.499359378975258, - "vileplume": 3.77257940800682, - "dugtrio": 4.820539031479546, - "dugtrio-alola": 4.2646043971438985, - "persian": 4.431777305364621, - "persian-alola": 5.260930241049104, - "golduck": 3.6688561050039836, - "poliwrath": 2.1948037194497854, - "kadabra": 3.4952744112930505, - "machoke": 3.7046908269563907, - "tentacruel": 3.230105189622049, - "slowbro": 1.783246147642294, - "magneton": 3.6643573011089616, - "haunter": 4.309897559176623, - "kingler": 2.4728344855543662, - "exeggutor": 2.0858763757297583, - "marowak": 3.4436138508777168, - "marowak-alola": 1.7838118629710231, - "hitmonlee": 2.3883038717082394, - "lickitung": 2.1608004797594025, - "weezing": 1.4283169578874868, - "weezing-galar": 2.17993063309108, - "rhydon": 2.279520790777654, - "chansey": 34.24084827015302, - "tangela": 4.69553761235114, - "kangaskhan": 2.008876682427165, - "seadra": 4.471191738224323, - "seaking": 2.877240362948986, - "starmie": 1.603807674287689, - "mr-mime": 5.998233345815248, - "mr-mime-galar": 4.301791731815257, - "scyther": 3.0236810263912774, - "jynx": 8.600738835533328, - "electabuzz": 2.5849679598752497, - "magmar": 1.701822297057351, - "tauros": 2.095104284039492, - "ditto": 2.081245006567719, - "vaporeon": 4.321130595743871, - "jolteon": 1.963926814078833, - "flareon": 2.452965831564108, - "porygon": 3.2099666492979058, - "dragonair": 2.256293233461826, - "noctowl": 6.98232977252138, - "lanturn": 1.8008032880167626, - "togetic": 6.122828312771294, - "xatu": 4.023965428914068, - "bellossom": 2.53526780530824, - "azumarill": 2.53628002186899, - "sudowoodo": 2.606805795760067, - "politoed": 3.246257931609817, - "quagsire": 4.299183238793885, - "slowking": 2.910226662517953, - "dunsparce": 3.4840121746149455, - "qwilfish": 3.676980200887587, - "sneasel": 3.5932648337700814, - "piloswine": 1.6741804215879688, - "octillery": 2.9301114045295913, - "mantine": 4.928262805788971, - "skarmory": 2.0744269631276753, - "hitmontop": 2.4904201166735476, - "miltank": 3.3134201834981414, - "grovyle": 10.045738120857385, - "sceptile": 1.7886726293950184, - "combusken": 3.1626313051107076, - "blaziken": 1.507952105865758, - "marshtomp": 2.2976232150558387, - "swampert": 1.2079922944872323, - "linoone": 5.663976426564647, - "linoone-galar": 7.587264887367388, - "pelipper": 8.619731512523284, - "ninjask": 9.588761480915517, - "exploud": 1.8684046939787011, - "lairon": 2.963542143380044, - "manectric": 1.6404224786246835, - "roselia": 5.140650074407123, - "sharpedo": 6.084186465658462, - "wailmer": 7.489457520851046, - "torkoal": 1.6345955998525898, - "flygon": 4.131993194259321, - "altaria": 2.7372834128933654, - "whiscash": 1.8092043035782948, - "crawdaunt": 2.280839996718611, - "claydol": 3.8701733996969008, - "cradily": 2.843825462594036, - "armaldo": 1.7725969307716842, - "dusclops": 3.2071033849459285, - "absol": 2.2372593789634116, - "glalie": 4.908436426462589, - "sealeo": 3.8028397826042335, - "relicanth": 2.0070427256124326, - "metang": 3.05125272947392, - "luxray": 3.5403832777372317, - "vespiquen": 3.0386335488911858, - "cherrim": 7.153845694441294, - "gastrodon": 2.0891147560948307, - "drifblim": 5.075653060542032, - "lopunny": 3.8219739621850826, - "skuntank": 1.4119925175587662, - "bronzong": 3.320950440912383, - "munchlax": 2.7070349275310512, - "drapion": 2.236140073754319, - "abomasnow": 5.073375951777059, - "froslass": 3.514359247218864, - "rotom": 3.537096767931307, - "stoutland": 2.57213197197485, - "liepard": 7.278685585198394, - "musharna": 1.3068164771263833, - "unfezant": 5.825924962811297, - "boldore": 3.158791847934531, - "swoobat": 5.747530124526136, - "audino": 2.474751023944016, - "gurdurr": 1.9088147262063613, - "palpitoad": 3.513622270100231, - "seismitoad": 6.071533736513199, - "scolipede": 3.844507840732998, - "whimsicott": 3.324089532436826, - "lilligant": 3.7860901617405416, - "basculin-red-striped": 3.050872852034204, - "basculin-blue-striped": 4.344333710344514, - "krookodile": 3.450475072200317, - "maractus": 2.7254979587207524, - "crustle": 1.8956328968982348, - "sigilyph": 2.5231134092012235, - "cofagrigus": 2.2079008001999556, - "garbodor": 1.7159066622067756, - "cinccino": 4.924204141196815, - "vanillish": 2.6524031072352554, - "emolga": 3.587608371099223, - "escavalier": 3.270298100306552, - "amoonguss": 3.169209198508013, - "jellicent": 1.9451085198050104, - "galvantula": 1.9984307022534962, - "klang": 3.4418104589748575, - "klinklang": 3.699029817475841, - "beheeyem": 1.7422468196590575, - "lampent": 2.451677581026626, - "fraxure": 1.7304373831137325, - "beartic": 2.0665228724288953, - "cryogonal": 2.451948294764194, - "accelgor": 4.396289479989244, - "stunfisk": 1.6153599271121095, - "stunfisk-galar": 2.7841957051836292, - "mienshao": 3.2176861809793813, - "druddigon": 2.1066930712196053, - "golurk": 2.21155772224565, - "bisharp": 3.285357412733464, - "bouffalant": 1.4297518146253525, - "heatmor": 1.7979950214015807, - "durant": 4.257398396947178, - "diggersby": 3.792805356165385, - "talonflame": 3.346291242568733, - "pangoro": 1.927331643209758, - "doublade": 2.133525993577404, - "malamar": 2.573200181909122, - "barbaracle": 1.6099213020151435, - "heliolisk": 4.943506459269001, - "tyrantrum": 1.6427345778077145, - "aurorus": 3.6520297523073273, - "hawlucha": 4.066745781097064, - "dedenne": 2.464259342993932, - "klefki": 3.41883056530228, - "trevenant": 3.591374146474685, - "gourgeist-average": 5.630547081628098, - "charjabug": 4.531477755995607, - "vikavolt": 2.256309863585706, - "ribombee": 5.80982923225642, - "lycanroc-midday": 3.885196900273856, - "lycanroc-midnight": 2.695509269901404, - "mudsdale": 1.8149261058168435, - "araquanid": 3.09879991581026, - "lurantis": 2.94016386339767, - "shiinotic": 5.020184599078663, - "salazzle": 3.0154824825808344, - "bewear": 1.8197748852694708, - "tsareena": 3.332696600513253, - "comfey": 4.058904571351282, - "oranguru": 2.2256301754938317, - "passimian": 1.9724655012709622, - "palossand": 2.30315174462842, - "pyukumuku": 50.11901968385444, - "togedemaru": 2.758435018319773, - "mimikyu-disguised": 3.763221064373849, - "greedent": 2.0490588362105093, - "orbeetle": 2.1335236305937992, - "thievul": 2.3218273543380596, - "eldegoss": 4.934629171336247, - "dubwool": 3.309743211032986, - "drednaw": 1.4884633696305984, - "boltund": 4.606322214272543, - "carkol": 2.6363097111886873, - "coalossal": 2.1338276417013784, - "sandaconda": 3.3842831199995027, - "cramorant": 11.043350023916146, - "barraskewda": 5.3779217311534495, - "toxtricity-amped": 2.5486761737894197, - "centiskorch": 2.015059851522568, - "grapploct": 1.56764759838692, - "polteageist": 2.559462263639073, - "hatterene": 2.0149934946186505, - "grimmsnarl": 3.8823193435910524, - "obstagoon": 3.654568754924388, - "perrserker": 3.622061895524892, - "alcremie": 1.297953768971908, - "falinks": 2.753548365343157, - "pincurchin": 2.78000233827511, - "frosmoth": 4.8300203087587725, - "indeedee-male": 3.041856519639328, - "morpeko": 3.061976661904875, - "copperajah": 2.88303199435787, - "duraludon": 1.484348484348498, - "drakloak": 5.636265159154359, - "hitmonchan": 2.0407677441188676 + "ivysaur": 4.0704316394149895, + "charmeleon": 3.805026715255172, + "wartortle": 3.3701269683303696, + "butterfree": 6.201191245409355, + "raichu": 5.141890054003314, + "raichu-alola": 3.323700083639477, + "sandslash": 2.3089684293052875, + "sandslash-alola": 2.9462310936864924, + "nidoqueen": 3.3711713049251855, + "nidoking": 2.1433858631949256, + "clefairy": 9.1322451442037, + "clefable": 1.7387515114978758, + "jigglypuff": 22.977990189505434, + "wigglytuff": 1.6620773464666907, + "gloom": 6.505801854619351, + "vileplume": 3.7849924094150893, + "dugtrio": 4.8296438143859834, + "dugtrio-alola": 4.274660732741646, + "persian": 4.433187964181941, + "persian-alola": 5.2788295676117185, + "golduck": 3.6721017458987006, + "poliwrath": 2.19604477564493, + "kadabra": 3.492719487616691, + "machoke": 3.7121388041698347, + "tentacruel": 3.2356113537142153, + "slowbro": 1.7799248187002086, + "magneton": 3.671668881421193, + "haunter": 4.316505582843769, + "kingler": 2.4718207585618854, + "exeggutor": 2.086150856848522, + "marowak": 3.446127912831554, + "marowak-alola": 1.7818941514655, + "hitmonlee": 2.3937527162015373, + "hitmonchan": 2.0407677441188676, + "lickitung": 2.165553696213226, + "weezing": 1.4296227895554516, + "weezing-galar": 2.178451648913711, + "rhydon": 2.2783150565915617, + "chansey": 34.34346243748374, + "tangela": 4.694598958362691, + "kangaskhan": 2.011997461148115, + "seadra": 4.472674911523599, + "seaking": 2.878231838603475, + "starmie": 1.6029831803343622, + "mr-mime": 5.9923053949615195, + "mr-mime-galar": 4.300889453373163, + "scyther": 3.0293574166459987, + "jynx": 8.622134638237494, + "electabuzz": 2.589347668176308, + "magmar": 1.7039745091754566, + "tauros": 2.0978620001633095, + "ditto": 2.071789820977902, + "vaporeon": 4.3304398831626045, + "jolteon": 1.9652443829388684, + "flareon": 2.4529081303781366, + "porygon": 3.2179542245546835, + "dragonair": 2.258478585650476, + "noctowl": 6.994266973390536, + "lanturn": 1.7985080092953298, + "togetic": 6.131422028163685, + "xatu": 4.023433793553033, + "bellossom": 2.539667181332969, + "azumarill": 2.5356190883707344, + "sudowoodo": 2.6092127739251048, + "politoed": 3.251238783183221, + "quagsire": 4.298436468966337, + "slowking": 2.9092476469006194, + "dunsparce": 3.4891289217277768, + "qwilfish": 3.6758836364152097, + "sneasel": 3.606026826675973, + "piloswine": 1.674691838109985, + "octillery": 2.935347260379496, + "mantine": 4.938568734911327, + "skarmory": 2.078404423331857, + "hitmontop": 2.493780719901749, + "miltank": 3.310238625144721, + "grovyle": 10.075517045730923, + "sceptile": 1.7943356022326378, + "combusken": 3.1648226546399547, + "blaziken": 1.5084932672778115, + "marshtomp": 2.296451043636558, + "swampert": 1.2083812967055096, + "linoone": 5.672838322798075, + "linoone-galar": 7.6168355111441794, + "pelipper": 8.617687670161919, + "ninjask": 9.630553425059048, + "exploud": 1.8728313392219766, + "lairon": 2.9665221457139603, + "manectric": 1.6395252293823566, + "roselia": 5.152702271967195, + "sharpedo": 6.09594430908972, + "wailmer": 7.490816206099245, + "torkoal": 1.6341342620095072, + "flygon": 4.139486367295201, + "altaria": 2.7425481247416665, + "whiscash": 1.805148997811131, + "crawdaunt": 2.284608126045974, + "claydol": 3.8692925564176126, + "cradily": 2.8526373736457806, + "armaldo": 1.7760574233274984, + "dusclops": 3.2112068885169522, + "absol": 2.2429774588535407, + "glalie": 4.918613581863289, + "sealeo": 3.8085179172503074, + "relicanth": 2.0082127769430818, + "metang": 3.0500559540080747, + "luxray": 3.5424163691100388, + "vespiquen": 3.0444974541005254, + "cherrim": 7.172916722805615, + "gastrodon": 2.0892549399636264, + "drifblim": 5.0836051916775915, + "lopunny": 3.8241662620131818, + "skuntank": 1.4164697604439844, + "bronzong": 3.318471642303346, + "munchlax": 2.7101516727775588, + "drapion": 2.2412572532339414, + "abomasnow": 5.083196350490727, + "froslass": 3.5183165963282224, + "rotom": 3.5413835028330256, + "stoutland": 2.574279860609771, + "liepard": 7.284839307023001, + "musharna": 1.3051825249185092, + "unfezant": 5.820560820086113, + "boldore": 3.159974441950933, + "swoobat": 5.746561937085183, + "audino": 2.478631638425705, + "gurdurr": 1.909158735633333, + "palpitoad": 3.51186192030743, + "seismitoad": 6.068747166882849, + "scolipede": 3.8534700415607728, + "whimsicott": 3.3245588434607303, + "lilligant": 3.798329196113764, + "basculin-red-striped": 3.049460624601321, + "basculin-blue-striped": 4.350499473936049, + "krookodile": 3.459635604322182, + "maractus": 2.7343665865108355, + "crustle": 1.898395385267205, + "sigilyph": 2.5242010034818323, + "cofagrigus": 2.2067929367823327, + "garbodor": 1.7170262468304889, + "cinccino": 4.9303250546162865, + "vanillish": 2.6586889017449424, + "emolga": 3.591025735315807, + "escavalier": 3.2797247445074875, + "amoonguss": 3.177362694963858, + "jellicent": 1.9462328122390233, + "galvantula": 2.0028137780110864, + "klang": 3.4539555340309973, + "klinklang": 3.70461542829553, + "beheeyem": 1.743957696876899, + "lampent": 2.449975700827487, + "fraxure": 1.7310319185272436, + "beartic": 2.070863682424173, + "cryogonal": 2.460735073810566, + "accelgor": 4.412981691921009, + "stunfisk": 1.6181401876914803, + "stunfisk-galar": 2.791782527018543, + "mienshao": 3.223443967461611, + "druddigon": 2.107825507352858, + "golurk": 2.2124063236131932, + "bisharp": 3.2910495022890953, + "bouffalant": 1.4328788941723345, + "heatmor": 1.7975313185956399, + "durant": 4.2653348856007165, + "diggersby": 3.799157917529268, + "talonflame": 3.3480647375182997, + "pangoro": 1.9315196385600508, + "doublade": 2.1308073432783194, + "malamar": 2.5744392359596917, + "barbaracle": 1.6098377372851167, + "heliolisk": 4.960832855782263, + "tyrantrum": 1.6434595628087911, + "aurorus": 3.660208603658242, + "hawlucha": 4.0765095874659, + "dedenne": 2.464519925471028, + "klefki": 3.420485088455381, + "trevenant": 3.5975647933194037, + "gourgeist-average": 5.637515768211456, + "charjabug": 4.5340217952279795, + "vikavolt": 2.2611154492849366, + "ribombee": 5.820438169981691, + "lycanroc-midday": 3.89552947263362, + "lycanroc-midnight": 2.7016907314670484, + "mudsdale": 1.8167927758539264, + "araquanid": 3.1053459871884135, + "lurantis": 2.9484022089404824, + "shiinotic": 5.023053307459371, + "salazzle": 3.015271280914245, + "bewear": 1.8208959166764873, + "tsareena": 3.3345999782956355, + "comfey": 4.061346826044541, + "oranguru": 2.222543687312384, + "passimian": 1.9724668441171096, + "palossand": 2.3044740749191868, + "pyukumuku": 50.15278694393446, + "togedemaru": 2.7632398935606357, + "mimikyu-disguised": 3.7661096568163686, + "greedent": 2.0480690863424766, + "orbeetle": 2.1324124758965115, + "thievul": 2.3306737724841664, + "eldegoss": 4.949133920966961, + "dubwool": 3.3149648642384344, + "drednaw": 1.4902500655601134, + "boltund": 4.615001158057883, + "carkol": 2.63780699781531, + "coalossal": 2.1359372264410776, + "sandaconda": 3.386508329223011, + "cramorant": 11.076820830679086, + "barraskewda": 5.382808984387186, + "toxtricity-amped": 2.5498167523780335, + "centiskorch": 2.0168290588805227, + "grapploct": 1.5697869995352942, + "polteageist": 2.561520479974743, + "hatterene": 2.010824208941938, + "grimmsnarl": 3.894730304536878, + "obstagoon": 3.6627556834124015, + "perrserker": 3.630819300928227, + "alcremie": 1.299736415937454, + "falinks": 2.7551320138128954, + "pincurchin": 2.783353545563667, + "frosmoth": 4.838600034947321, + "indeedee-male": 3.0451133471137557, + "morpeko": 3.067300364505316, + "copperajah": 2.8906989131248517, + "duraludon": 1.485524780574086, + "drakloak": 5.641649198949441 }, "lickitung": { - "ivysaur": 3.119779606256764, - "charmeleon": 3.8548049529318105, - "wartortle": 2.702254611011588, - "butterfree": 4.340558902260555, - "raichu": 4.103042250187362, - "raichu-alola": 2.9547254986290663, - "sandslash": 2.3799613174582737, - "sandslash-alola": 1.7714504937772158, - "nidoqueen": 2.9455736199108955, - "nidoking": 1.8694184186016292, - "clefairy": 7.878046629259497, - "clefable": 1.7851589712610076, - "jigglypuff": 23.189897943583475, - "wigglytuff": 1.7464636797688065, - "gloom": 5.677219654292397, - "vileplume": 2.9751752895119403, - "dugtrio": 3.5818562490882693, - "dugtrio-alola": 3.3637802780007213, - "persian": 3.730586734062153, - "persian-alola": 3.732462630398958, - "golduck": 3.1007368689583403, - "poliwrath": 1.8390134011737271, - "kadabra": 3.272027747001073, - "machoke": 3.2886792730510317, - "tentacruel": 2.2043807095107653, - "slowbro": 1.8697574219147617, - "magneton": 2.692132247311123, - "haunter": 3.967687673723251, - "kingler": 2.6580635189954096, - "exeggutor": 1.9789686592785112, - "marowak": 3.235251206565053, - "marowak-alola": 2.266313315418395, - "hitmonlee": 1.7920759887996394, - "hitmonchan": 1.784051011649493, - "weezing": 1.4565314965397982, - "weezing-galar": 2.410285451083426, - "rhydon": 3.289172673473717, - "chansey": 18.77364450135118, - "tangela": 5.635026840447903, - "kangaskhan": 1.6241627548219175, - "seadra": 4.664964659320278, - "seaking": 2.4129245441074825, - "starmie": 1.4643767259380955, - "mr-mime": 5.662045922817624, - "mr-mime-galar": 3.2072245440120017, - "scyther": 2.721285062034541, - "jynx": 3.6486292546879078, - "electabuzz": 2.182320612877786, - "magmar": 1.6043437026958856, - "tauros": 1.7525259109843458, - "ditto": 2.328063513229819, - "vaporeon": 3.0377735657706646, - "jolteon": 1.6844666631665004, - "flareon": 2.3027284615557937, - "porygon": 2.4663791262060255, - "dragonair": 1.8740601420585787, - "noctowl": 5.375568759387463, - "lanturn": 1.641614586734673, - "togetic": 5.241700319646977, - "xatu": 3.870417696372054, - "bellossom": 2.352366693150524, - "azumarill": 2.2939956695263, - "sudowoodo": 2.6173792129415427, - "politoed": 2.496463038172841, - "quagsire": 3.97564589190703, - "slowking": 2.3960255981703815, - "dunsparce": 3.030149066720167, - "qwilfish": 3.6646197251672445, - "sneasel": 1.994862920267059, - "piloswine": 1.5771343490680938, - "octillery": 2.386539344726339, - "mantine": 2.863754115715282, - "skarmory": 2.299176069213999, - "hitmontop": 2.2085251992504507, - "miltank": 3.269479547475207, - "grovyle": 7.330132867373724, - "sceptile": 1.389295854338446, - "combusken": 3.061015386782664, - "blaziken": 1.535814827296567, - "marshtomp": 2.1953363164136146, - "swampert": 1.11361672064913, - "linoone": 4.8001160095751985, - "linoone-galar": 4.161027479885296, - "pelipper": 8.684548334938672, - "ninjask": 7.4511023223646635, - "exploud": 1.37761923689975, - "lairon": 2.6973236921372, - "manectric": 1.549870263889851, - "roselia": 3.740952144835614, - "sharpedo": 5.087056295389891, - "wailmer": 6.664778661932155, - "torkoal": 2.0484450197714517, - "flygon": 3.1831609167568384, - "altaria": 2.0741473777677, - "whiscash": 1.8246882602992893, - "crawdaunt": 2.149451806241892, - "claydol": 3.2998534606731553, - "cradily": 2.26197906573287, - "armaldo": 1.9038676743913305, - "dusclops": 3.201378225716612, - "absol": 1.7447985646263087, - "glalie": 3.7028629510063116, - "sealeo": 3.220172712353946, - "relicanth": 2.073433790601325, - "metang": 2.4873846162818385, - "luxray": 3.3452960441758224, - "vespiquen": 2.6585480173648333, - "cherrim": 5.785758954620702, - "gastrodon": 1.8692356541175692, - "drifblim": 4.205046925288304, - "lopunny": 3.056173246080709, - "skuntank": 1.2796306480850137, - "bronzong": 2.616332831434776, - "munchlax": 1.868572438786102, - "drapion": 2.1824812617938343, - "abomasnow": 2.830127580978246, - "froslass": 2.6125212234289785, - "rotom": 3.3222578557519955, - "stoutland": 2.117582530359486, - "liepard": 6.197523629298178, - "musharna": 1.348957667159084, - "unfezant": 6.681511446691214, - "boldore": 3.4991664973592407, - "swoobat": 5.529764788672082, - "audino": 1.9845982986710684, - "gurdurr": 1.8507733732293217, - "palpitoad": 3.358882547451972, - "seismitoad": 5.601484591041796, - "scolipede": 2.8553555549850236, - "whimsicott": 3.2266026379187904, - "lilligant": 3.0767987846093217, - "basculin-red-striped": 2.916928035721046, - "basculin-blue-striped": 3.777763184717129, - "krookodile": 2.9133700073291466, - "maractus": 2.236824514533862, - "crustle": 2.0963989733164885, - "sigilyph": 2.347540484039623, - "cofagrigus": 2.4723938035782487, - "garbodor": 1.5762015947191752, - "cinccino": 4.030761241296273, - "vanillish": 1.90870676017887, - "emolga": 3.0914558542100146, - "escavalier": 1.5323042605380757, - "amoonguss": 2.515132779978278, - "jellicent": 1.496401354212761, - "galvantula": 1.3948321051188768, - "klang": 2.3396058257182952, - "klinklang": 2.864011013686487, - "beheeyem": 1.5706339083588219, - "lampent": 2.5525631115469554, - "fraxure": 1.646349879430578, - "beartic": 1.5118222827858903, - "cryogonal": 1.4549263483561448, - "accelgor": 2.615208736621141, - "stunfisk": 1.277676475680567, - "stunfisk-galar": 2.3751401753133172, - "mienshao": 2.8206693871324315, - "druddigon": 1.8534808292140306, - "golurk": 1.8878644815620969, - "bisharp": 2.107091405288074, - "bouffalant": 1.082543984782026, - "heatmor": 1.904669893863761, - "durant": 2.692403002299711, - "diggersby": 3.2571836329668855, - "talonflame": 2.9810198225170534, - "pangoro": 1.4618173887001291, - "doublade": 2.064791667811456, - "malamar": 2.544802628580078, - "barbaracle": 1.5310897438044475, - "heliolisk": 3.006782821468483, - "tyrantrum": 1.672739480624727, - "aurorus": 2.3682491132821917, - "hawlucha": 3.419556002040559, - "dedenne": 2.515531090196919, - "klefki": 2.541362315761039, - "trevenant": 2.8579191309291554, - "gourgeist-average": 6.154331862425826, - "charjabug": 3.5814398276981487, - "vikavolt": 1.6355558405477184, - "ribombee": 4.0409802793197285, - "lycanroc-midday": 3.332472956193148, - "lycanroc-midnight": 2.2640564866655173, - "mudsdale": 1.5072019655239752, - "araquanid": 2.260954627430949, - "lurantis": 2.4192155127379698, - "shiinotic": 4.330676365724761, - "salazzle": 3.177586565653177, - "bewear": 1.5965364890206764, - "tsareena": 3.123379765530247, - "comfey": 3.847714448078502, - "oranguru": 2.312637894799332, - "passimian": 1.9901972967784123, - "palossand": 2.3056514214001256, - "pyukumuku": 42.46469353192353, - "togedemaru": 1.854345441610683, - "mimikyu-disguised": 3.6240257569323804, - "greedent": 1.9101671827270137, - "orbeetle": 1.6072012982090444, - "thievul": 1.5755613719839805, - "eldegoss": 3.7941228356983627, - "dubwool": 2.51300760020127, - "drednaw": 1.3298573252774504, - "boltund": 4.130054507734973, - "carkol": 3.1500527925485935, - "coalossal": 2.5956128479750387, - "sandaconda": 3.380623152958104, - "cramorant": 6.568834603797589, - "barraskewda": 4.780652650775526, - "toxtricity-amped": 2.340440268390861, - "centiskorch": 1.9662645637095575, - "grapploct": 1.3922052269622105, - "polteageist": 2.137112059486345, - "hatterene": 2.1886964088078567, - "grimmsnarl": 3.183741592496884, - "obstagoon": 2.295795142950147, - "perrserker": 2.821755874760601, - "alcremie": 1.2230833332921587, - "falinks": 2.7015801866287585, - "pincurchin": 2.6261903768367048, - "frosmoth": 2.31444851088788, - "indeedee-male": 2.844923096214636, - "morpeko": 2.4161467717223775, - "copperajah": 1.9075630771645158, - "duraludon": 1.402414574190301, - "drakloak": 4.876396445200058, - "lickitung": 1.6924046815017193 + "ivysaur": 3.118646206263194, + "charmeleon": 3.8558326555886966, + "wartortle": 2.7011206393353726, + "butterfree": 4.340135650538832, + "raichu": 4.093168347006111, + "raichu-alola": 2.9503312778435067, + "sandslash": 2.3829597339545168, + "sandslash-alola": 1.7688688687578629, + "nidoqueen": 2.949940557493462, + "nidoking": 1.8708092225069408, + "clefairy": 7.8776098498027105, + "clefable": 1.7850227030235368, + "jigglypuff": 23.18480490552466, + "wigglytuff": 1.7458978253644653, + "gloom": 5.6753927107126465, + "vileplume": 2.974788562035391, + "dugtrio": 3.582861320130646, + "dugtrio-alola": 3.3627845935665124, + "persian": 3.727733010326199, + "persian-alola": 3.730935562620947, + "golduck": 3.100078799608081, + "poliwrath": 1.8360846481099586, + "kadabra": 3.2669253726678664, + "machoke": 3.2857201826179434, + "tentacruel": 2.202956575715292, + "slowbro": 1.8699028124161887, + "magneton": 2.6895831240235895, + "haunter": 3.9716112742370315, + "kingler": 2.657713095841836, + "exeggutor": 1.9780837732623389, + "marowak": 3.2381161205657376, + "marowak-alola": 2.269656367205392, + "hitmonlee": 1.7869594004364413, + "hitmonchan": 1.7821839135942303, + "lickitung": 1.6924046815017193, + "weezing": 1.4573099274437986, + "weezing-galar": 2.4122295984738304, + "rhydon": 3.2939267842365294, + "chansey": 18.70752438702334, + "tangela": 5.638794879618906, + "kangaskhan": 1.6234587089251051, + "seadra": 4.666928085466312, + "seaking": 2.4124949459293745, + "starmie": 1.4642219898826085, + "mr-mime": 5.656072328868358, + "mr-mime-galar": 3.2027415342724037, + "scyther": 2.7232191830203454, + "jynx": 3.6387555418243505, + "electabuzz": 2.1798316891182568, + "magmar": 1.6039889610316242, + "tauros": 1.7514394577321977, + "ditto": 2.313179143590605, + "vaporeon": 3.0345088960177513, + "jolteon": 1.6834773505915637, + "flareon": 2.3043221426860256, + "porygon": 2.46550516102901, + "dragonair": 1.8735832796924345, + "noctowl": 5.375099965992298, + "lanturn": 1.6383053242059853, + "togetic": 5.24753256521625, + "xatu": 3.873901566073025, + "bellossom": 2.3518182178428013, + "azumarill": 2.29649344961342, + "sudowoodo": 2.617322619583251, + "politoed": 2.495574698319321, + "quagsire": 3.969606475189346, + "slowking": 2.3945279716595618, + "dunsparce": 3.032597104198948, + "qwilfish": 3.666167039451254, + "sneasel": 1.9922224541778357, + "piloswine": 1.5755167342606402, + "octillery": 2.386253738938846, + "mantine": 2.8645250663866832, + "skarmory": 2.3030813912565473, + "hitmontop": 2.2057377857270586, + "miltank": 3.269548746518437, + "grovyle": 7.319791133762715, + "sceptile": 1.388609144550454, + "combusken": 3.0573102694523726, + "blaziken": 1.5349496550207018, + "marshtomp": 2.1938136245790885, + "swampert": 1.1129852783262595, + "linoone": 4.802605031484241, + "linoone-galar": 4.158684862532553, + "pelipper": 8.695677326705377, + "ninjask": 7.455107517580069, + "exploud": 1.3757170662100138, + "lairon": 2.698799583716556, + "manectric": 1.548429096561375, + "roselia": 3.737932998410245, + "sharpedo": 5.085769851715973, + "wailmer": 6.665144779310947, + "torkoal": 2.050996645441397, + "flygon": 3.1857329076480876, + "altaria": 2.0760337537354108, + "whiscash": 1.8231795492251117, + "crawdaunt": 2.149874892340605, + "claydol": 3.299596276202844, + "cradily": 2.261029330987192, + "armaldo": 1.904789955382709, + "dusclops": 3.2075021365030127, + "absol": 1.7444350147632222, + "glalie": 3.7000369049104185, + "sealeo": 3.218758121454931, + "relicanth": 2.073909190946262, + "metang": 2.486017854795495, + "luxray": 3.3430003828988806, + "vespiquen": 2.659048756622273, + "cherrim": 5.782938230945772, + "gastrodon": 1.8672729651775941, + "drifblim": 4.206170316343595, + "lopunny": 3.0519274074130553, + "skuntank": 1.2802679907160364, + "bronzong": 2.6149539319811246, + "munchlax": 1.865767552102486, + "drapion": 2.184279440133472, + "abomasnow": 2.825734673699156, + "froslass": 2.6126612174893187, + "rotom": 3.3257160398073595, + "stoutland": 2.1158512613214713, + "liepard": 6.196576957678661, + "musharna": 1.3482259700268098, + "unfezant": 6.693855385646884, + "boldore": 3.500541802304578, + "swoobat": 5.534625416576125, + "audino": 1.9838435663549439, + "gurdurr": 1.8482334323896654, + "palpitoad": 3.356679185335458, + "seismitoad": 5.593974211201086, + "scolipede": 2.8556770932969178, + "whimsicott": 3.226951332756044, + "lilligant": 3.076102381852862, + "basculin-red-striped": 2.9172660594296507, + "basculin-blue-striped": 3.7783940399520346, + "krookodile": 2.9151349731896516, + "maractus": 2.235705660932807, + "crustle": 2.0963965740822608, + "sigilyph": 2.3495407650455666, + "cofagrigus": 2.4766669791336504, + "garbodor": 1.5746486264934298, + "cinccino": 4.028700635143671, + "vanillish": 1.906698416594395, + "emolga": 3.094178398701991, + "escavalier": 1.5314384531650114, + "amoonguss": 2.514146811658035, + "jellicent": 1.4946403266623274, + "galvantula": 1.3941320144783917, + "klang": 2.338522086844117, + "klinklang": 2.8625478360664047, + "beheeyem": 1.569529988797659, + "lampent": 2.5532674409049703, + "fraxure": 1.6464923702197618, + "beartic": 1.509577170272713, + "cryogonal": 1.4523920861921782, + "accelgor": 2.6127870800498116, + "stunfisk": 1.2779847521199268, + "stunfisk-galar": 2.3757788589132254, + "mienshao": 2.817361680197765, + "druddigon": 1.853833672844738, + "golurk": 1.888157892865178, + "bisharp": 2.105934799194745, + "bouffalant": 1.08172168493047, + "heatmor": 1.9061260239697606, + "durant": 2.6925218924091183, + "diggersby": 3.2585973939140533, + "talonflame": 2.9850473109040676, + "pangoro": 1.4599804064660509, + "doublade": 2.0637257868123777, + "malamar": 2.5440196942228033, + "barbaracle": 1.5303346704296226, + "heliolisk": 2.999689142434773, + "tyrantrum": 1.6721824264183938, + "aurorus": 2.3656138354087317, + "hawlucha": 3.420206271840097, + "dedenne": 2.514490448147347, + "klefki": 2.5409822627243193, + "trevenant": 2.8534650455254233, + "gourgeist-average": 6.165837102644561, + "charjabug": 3.5813607140787713, + "vikavolt": 1.6354526581378916, + "ribombee": 4.039491746360971, + "lycanroc-midday": 3.332802983404079, + "lycanroc-midnight": 2.262561449382651, + "mudsdale": 1.506217144005019, + "araquanid": 2.2590246252722577, + "lurantis": 2.4182133805466286, + "shiinotic": 4.328352630361371, + "salazzle": 3.1784507652516765, + "bewear": 1.5958476098470542, + "tsareena": 3.1229861385457616, + "comfey": 3.8474237913037177, + "oranguru": 2.3105342827960578, + "passimian": 1.9888290804649196, + "palossand": 2.3099524117133545, + "pyukumuku": 42.41873918200017, + "togedemaru": 1.8517503714029009, + "mimikyu-disguised": 3.6285649329646095, + "greedent": 1.9097108993702805, + "orbeetle": 1.605958491045973, + "thievul": 1.5748935527220658, + "eldegoss": 3.7916950787292008, + "dubwool": 2.5097522528577367, + "drednaw": 1.3295782498515796, + "boltund": 4.128446111740482, + "carkol": 3.153372411623856, + "coalossal": 2.5980475329696135, + "sandaconda": 3.3841965990312, + "cramorant": 6.5724655092406845, + "barraskewda": 4.780847995266866, + "toxtricity-amped": 2.338514937977206, + "centiskorch": 1.9658035039729769, + "grapploct": 1.3893197974694327, + "polteageist": 2.134516343838556, + "hatterene": 2.1882276170750976, + "grimmsnarl": 3.1807685024604724, + "obstagoon": 2.294670140584477, + "perrserker": 2.821657115898707, + "alcremie": 1.2225905736718672, + "falinks": 2.6995189066108414, + "pincurchin": 2.6254600331078946, + "frosmoth": 2.310585373313409, + "indeedee-male": 2.8447869038233455, + "morpeko": 2.414862511811645, + "copperajah": 1.9047436979074863, + "duraludon": 1.4024776419661764, + "drakloak": 4.8798582954717595 }, "weezing": { - "ivysaur": 3.6444586516527724, - "charmeleon": 3.55363480893458, - "wartortle": 2.55719697970395, - "butterfree": 5.019262902781385, - "raichu": 4.681632824770176, - "raichu-alola": 3.1399513901150367, - "sandslash": 2.0996936534601844, - "sandslash-alola": 3.6192616156966535, - "nidoqueen": 2.30940817637432, - "nidoking": 1.6501686918328473, - "clefairy": 10.857660307050434, - "clefable": 2.642876897863925, - "jigglypuff": 33.643161833787445, - "wigglytuff": 2.4371461097070366, - "gloom": 6.675711945415149, - "vileplume": 3.4894384478559175, - "dugtrio": 3.1360519674707685, - "dugtrio-alola": 3.718318873859456, - "persian": 4.164803971356546, - "persian-alola": 3.949310624630032, - "golduck": 2.9286433509121106, - "poliwrath": 1.9373750051689738, - "kadabra": 3.775049156190873, - "machoke": 4.0306613619372005, - "tentacruel": 1.9890384280960007, - "slowbro": 1.7761042383115604, - "magneton": 3.5942452839049324, - "haunter": 4.786088564913811, - "kingler": 2.6856673688900434, - "exeggutor": 2.277957450385618, - "marowak": 2.809614890431156, - "marowak-alola": 2.5174532976717936, - "hitmonlee": 2.3000070546256053, - "hitmonchan": 2.0767442370128917, - "lickitung": 1.7528281289137895, - "weezing-galar": 2.7482054959701037, - "rhydon": 2.2116145003093997, - "chansey": 18.07669063712067, - "tangela": 7.717602874787358, - "kangaskhan": 1.7844562397043346, - "seadra": 4.15878206986967, - "seaking": 2.323874763915966, - "starmie": 1.5872465446869373, - "mr-mime": 5.933428767821162, - "mr-mime-galar": 3.3859650444951086, - "scyther": 3.1450520563522906, - "jynx": 5.125627034959893, - "electabuzz": 2.2321551418744754, - "magmar": 1.4942540826083854, - "tauros": 2.0404531919034836, - "ditto": 1.729909012995877, - "vaporeon": 2.7581899095926876, - "jolteon": 1.6708465234624477, - "flareon": 2.0467625013557065, - "porygon": 2.571774836168932, - "dragonair": 1.7765145738759465, - "noctowl": 5.083451687034749, - "lanturn": 1.7102831570035106, - "togetic": 6.448796505849572, - "xatu": 3.6816508544053463, - "bellossom": 3.036302322355262, - "azumarill": 3.0880174572472416, - "sudowoodo": 2.473539106469282, - "politoed": 2.190642000534675, - "quagsire": 4.27296849247062, - "slowking": 2.424398862815253, - "dunsparce": 3.176861253746398, - "qwilfish": 3.3907271790749816, - "sneasel": 2.406201450743266, - "piloswine": 1.4876590553966396, - "octillery": 2.2569625521504593, - "mantine": 2.0887970602930217, - "skarmory": 2.77141761955442, - "hitmontop": 2.5784312553797397, - "miltank": 3.81640390164041, - "grovyle": 9.689724694567595, - "sceptile": 1.733290368853499, - "combusken": 3.309090244339627, - "blaziken": 1.6128909373814144, - "marshtomp": 2.2071419248590116, - "swampert": 1.0365741945111933, - "linoone": 5.2304237689629165, - "linoone-galar": 4.418182135689506, - "pelipper": 6.047277366970999, - "ninjask": 8.66693008090798, - "exploud": 1.4818674157130205, - "lairon": 2.4956472612472558, - "manectric": 1.6165572455614856, - "roselia": 3.8903312293716366, - "sharpedo": 4.983662366913831, - "wailmer": 6.236671940315672, - "torkoal": 1.8738766780349376, - "flygon": 2.1335566806997237, - "altaria": 1.5076849233920493, - "whiscash": 1.7748646423661363, - "crawdaunt": 1.999475770958264, - "claydol": 3.1307553749126913, - "cradily": 2.2102486843026456, - "armaldo": 1.7620852660156308, - "dusclops": 3.8796075425502403, - "absol": 1.8842104247338183, - "glalie": 4.728975916427581, - "sealeo": 2.9778076473889383, - "relicanth": 1.8906016723199277, - "metang": 3.365164831649335, - "luxray": 3.595593225498554, - "vespiquen": 3.2464939429649045, - "cherrim": 7.074827608756191, - "gastrodon": 1.9990213643257744, - "drifblim": 4.034344557067021, - "lopunny": 3.635736253962489, - "skuntank": 1.3294758415482422, - "bronzong": 3.4015260357627333, - "munchlax": 2.0933395465284397, - "drapion": 2.3789792171645185, - "abomasnow": 4.655647499404378, - "froslass": 3.2155873809161437, - "rotom": 4.075609561935457, - "stoutland": 2.3497177707314036, - "liepard": 7.1578279648823315, - "musharna": 1.4714590847069449, - "unfezant": 6.45639041681275, - "boldore": 3.261676700088258, - "swoobat": 5.261912839814988, - "audino": 2.0627234362679894, - "gurdurr": 2.3694519875933766, - "palpitoad": 3.1114648176932453, - "seismitoad": 5.838278828587139, - "scolipede": 3.974750933807849, - "whimsicott": 5.911584308192863, - "lilligant": 3.9212805597989235, - "basculin-red-striped": 2.7553499435818987, - "basculin-blue-striped": 3.5672485705588564, - "krookodile": 2.4404559580599563, - "maractus": 2.8584119867530395, - "crustle": 2.1100264539606446, - "sigilyph": 2.2832303032178305, - "cofagrigus": 2.739185950873437, - "garbodor": 1.7814602184102055, - "cinccino": 4.438070861120158, - "vanillish": 2.2224194303244333, - "emolga": 2.826385675724074, - "escavalier": 2.951455993470886, - "amoonguss": 2.953446006133623, - "jellicent": 1.6884374731587362, - "galvantula": 1.7524359523221356, - "klang": 3.076219970309367, - "klinklang": 4.134267149213198, - "beheeyem": 1.7217978378834546, - "lampent": 2.7775795779385346, - "fraxure": 1.62303007693329, - "beartic": 1.878763054987259, - "cryogonal": 1.6212662981488926, - "accelgor": 3.4736018299738376, - "stunfisk": 1.0534892483358427, - "stunfisk-galar": 2.4230257013867798, - "mienshao": 3.3794465207788544, - "druddigon": 1.761143158206464, - "golurk": 2.0802264935004855, - "bisharp": 2.925951563302476, - "bouffalant": 1.3012851592493382, - "heatmor": 1.8317779913438863, - "durant": 6.143145064237891, - "diggersby": 2.8151035500595816, - "talonflame": 2.748582043077915, - "pangoro": 1.8055419632540315, - "doublade": 3.459770638078072, - "malamar": 2.5393296258813924, - "barbaracle": 1.3952505284646348, - "heliolisk": 3.4122671222041556, - "tyrantrum": 1.5968245138023502, - "aurorus": 2.180841903251258, - "hawlucha": 3.699554525601802, - "dedenne": 3.719445335736655, - "klefki": 3.672324645679208, - "trevenant": 3.6723337865561163, - "gourgeist-average": 6.329011218298897, - "charjabug": 4.6312627409399205, - "vikavolt": 2.1805977031823263, - "ribombee": 5.936033798513583, - "lycanroc-midday": 3.099313374631528, - "lycanroc-midnight": 2.244094524530289, - "mudsdale": 1.4967687405044443, - "araquanid": 2.313145395568171, - "lurantis": 3.0207667946133947, - "shiinotic": 7.4728636792740435, - "salazzle": 2.8874593541202227, - "bewear": 1.8102221972165462, - "tsareena": 4.037312241208928, - "comfey": 5.665397138408301, - "oranguru": 2.327182037542173, - "passimian": 2.4735350371354023, - "palossand": 2.136847726590204, - "pyukumuku": 43.393839248133915, - "togedemaru": 2.5205512005090354, - "mimikyu-disguised": 3.821845881718123, - "greedent": 2.070752373750593, - "orbeetle": 1.8031923190498675, - "thievul": 1.6238323277380875, - "eldegoss": 4.621654161426752, - "dubwool": 3.57078020317755, - "drednaw": 1.2446452814973648, - "boltund": 4.472928051628688, - "carkol": 2.2189486753788197, - "coalossal": 1.7565861642749563, - "sandaconda": 2.8512775907789285, - "cramorant": 5.071463366236559, - "barraskewda": 4.659219683470606, - "toxtricity-amped": 2.26441107014636, - "centiskorch": 1.8064809258255488, - "grapploct": 1.6817008477858493, - "polteageist": 2.6511951398626428, - "hatterene": 2.7457146522045655, - "grimmsnarl": 4.634527016552669, - "obstagoon": 2.5286521707459366, - "perrserker": 4.076443337148966, - "alcremie": 1.7460591060341182, - "falinks": 3.43098581650172, - "pincurchin": 2.782799335476189, - "frosmoth": 3.6443795618612227, - "indeedee-male": 2.8726531780073814, - "morpeko": 2.617310545373817, - "copperajah": 2.752365720226234, - "duraludon": 1.575901912460735, - "drakloak": 5.137156807120359, - "weezing": 1.4963020738669548 + "ivysaur": 3.6549439645938975, + "charmeleon": 3.554136291650576, + "wartortle": 2.5587932980130894, + "butterfree": 5.029540826051964, + "raichu": 4.686508658799328, + "raichu-alola": 3.134691905688163, + "sandslash": 2.102065427490269, + "sandslash-alola": 3.629594590581423, + "nidoqueen": 2.304868045261311, + "nidoking": 1.649551818666454, + "clefairy": 10.886434400270101, + "clefable": 2.650911823553671, + "jigglypuff": 33.756110897021095, + "wigglytuff": 2.4402611767534923, + "gloom": 6.695920070193617, + "vileplume": 3.5005292014596807, + "dugtrio": 3.131902726122378, + "dugtrio-alola": 3.717845605727923, + "persian": 4.170289386536066, + "persian-alola": 3.9518084692699227, + "golduck": 2.9309056194076897, + "poliwrath": 1.9408619552379598, + "kadabra": 3.7713691804522096, + "machoke": 4.040953878354785, + "tentacruel": 1.9872121052907712, + "slowbro": 1.774290856149983, + "magneton": 3.592877725119089, + "haunter": 4.787307965671378, + "kingler": 2.692979703666637, + "exeggutor": 2.2847949175642386, + "marowak": 2.810165013077662, + "marowak-alola": 2.523042464335279, + "hitmonlee": 2.303971204229201, + "hitmonchan": 2.079935323963049, + "lickitung": 1.7532938019943969, + "weezing": 1.4963020738669548, + "weezing-galar": 2.7554272043959105, + "rhydon": 2.2095137925564248, + "chansey": 18.001877305374673, + "tangela": 7.768683017831741, + "kangaskhan": 1.7868292885698236, + "seadra": 4.162090578664139, + "seaking": 2.326337905540914, + "starmie": 1.5886135528932033, + "mr-mime": 5.919909520190696, + "mr-mime-galar": 3.380417775480246, + "scyther": 3.15339776404243, + "jynx": 5.129214655264655, + "electabuzz": 2.2314893755338314, + "magmar": 1.4940033735003433, + "tauros": 2.04498766159827, + "ditto": 1.7223743108126102, + "vaporeon": 2.756801130834976, + "jolteon": 1.670530378119923, + "flareon": 2.044290956237467, + "porygon": 2.5728219620656034, + "dragonair": 1.7778915962976587, + "noctowl": 5.082806717289417, + "lanturn": 1.710815019758221, + "togetic": 6.468358910362536, + "xatu": 3.678431443812981, + "bellossom": 3.049928416228839, + "azumarill": 3.102840441141045, + "sudowoodo": 2.475104540599255, + "politoed": 2.1885532803890255, + "quagsire": 4.273177414519379, + "slowking": 2.4232828868637863, + "dunsparce": 3.1819522425192637, + "qwilfish": 3.3959870101531484, + "sneasel": 2.408548353477541, + "piloswine": 1.4894949493378826, + "octillery": 2.2590009437253435, + "mantine": 2.0881120577553354, + "skarmory": 2.7781568915332673, + "hitmontop": 2.581811316337196, + "miltank": 3.8275228518329767, + "grovyle": 9.730536247359417, + "sceptile": 1.7405849240559932, + "combusken": 3.3136849083301136, + "blaziken": 1.615287225557543, + "marshtomp": 2.206179802883921, + "swampert": 1.0343031387838424, + "linoone": 5.2413966219957855, + "linoone-galar": 4.420567997569417, + "pelipper": 6.05440080815432, + "ninjask": 8.68981505838171, + "exploud": 1.4824399857144175, + "lairon": 2.49676556859929, + "manectric": 1.6177524035084954, + "roselia": 3.890813632058552, + "sharpedo": 4.988485368534646, + "wailmer": 6.242201934149525, + "torkoal": 1.8770173133649832, + "flygon": 2.1326066571564732, + "altaria": 1.5081194541719758, + "whiscash": 1.7732133958969958, + "crawdaunt": 2.0014965011632757, + "claydol": 3.12399901972596, + "cradily": 2.2133795103355642, + "armaldo": 1.7639362315989253, + "dusclops": 3.8866143560852313, + "absol": 1.8860692019354364, + "glalie": 4.739429482201346, + "sealeo": 2.9782840920331193, + "relicanth": 1.8915700045343604, + "metang": 3.3684695039113617, + "luxray": 3.599106942349039, + "vespiquen": 3.257121100900778, + "cherrim": 7.0996352723673315, + "gastrodon": 1.9999198334633062, + "drifblim": 4.02753917391421, + "lopunny": 3.6428806626671233, + "skuntank": 1.3306671766279234, + "bronzong": 3.402204623802153, + "munchlax": 2.0946716099391463, + "drapion": 2.383241113356517, + "abomasnow": 4.673060229024397, + "froslass": 3.2210644396396546, + "rotom": 4.0798922977121785, + "stoutland": 2.3524092235111294, + "liepard": 7.173393854860846, + "musharna": 1.4701354655247436, + "unfezant": 6.474177779884837, + "boldore": 3.264865359480609, + "swoobat": 5.257216595864751, + "audino": 2.064202656273306, + "gurdurr": 2.376048795812882, + "palpitoad": 3.1053367322957364, + "seismitoad": 5.836115576462376, + "scolipede": 3.9859708018453675, + "whimsicott": 5.9471298978803695, + "lilligant": 3.939200565650755, + "basculin-red-striped": 2.7587481306697397, + "basculin-blue-striped": 3.571797217795077, + "krookodile": 2.436946746402647, + "maractus": 2.8723612516929564, + "crustle": 2.1153006734829765, + "sigilyph": 2.282059312096955, + "cofagrigus": 2.7376438005710844, + "garbodor": 1.7854619062769337, + "cinccino": 4.443772495437075, + "vanillish": 2.223389791528789, + "emolga": 2.830576555863923, + "escavalier": 2.9568938312950754, + "amoonguss": 2.9621225613991076, + "jellicent": 1.6904572480120192, + "galvantula": 1.7556126446831066, + "klang": 3.075393984918124, + "klinklang": 4.139175248123998, + "beheeyem": 1.720335188454429, + "lampent": 2.778064543062338, + "fraxure": 1.6267506568513932, + "beartic": 1.881537099385508, + "cryogonal": 1.6206691919336862, + "accelgor": 3.481988914347337, + "stunfisk": 1.0511450589383577, + "stunfisk-galar": 2.4198183146472516, + "mienshao": 3.385699380489648, + "druddigon": 1.76349575806847, + "golurk": 2.0820600141959043, + "bisharp": 2.9270320480063923, + "bouffalant": 1.3048487158905488, + "heatmor": 1.8329024011110562, + "durant": 6.164546759262995, + "diggersby": 2.813254776734126, + "talonflame": 2.7505134361079744, + "pangoro": 1.8094180459220806, + "doublade": 3.4734720194540554, + "malamar": 2.5383961287510104, + "barbaracle": 1.3951868903540576, + "heliolisk": 3.410723926617699, + "tyrantrum": 1.5986552393778926, + "aurorus": 2.1780956300672427, + "hawlucha": 3.709864399932293, + "dedenne": 3.7300415588054765, + "klefki": 3.675787287500082, + "trevenant": 3.6910521676226256, + "gourgeist-average": 6.354497067046928, + "charjabug": 4.642310512403561, + "vikavolt": 2.1870232630802184, + "ribombee": 5.961656398041516, + "lycanroc-midday": 3.0995842389737356, + "lycanroc-midnight": 2.2454796728111956, + "mudsdale": 1.4985721888955417, + "araquanid": 2.319218162435587, + "lurantis": 3.032743762642792, + "shiinotic": 7.509534266506278, + "salazzle": 2.8870572150598317, + "bewear": 1.8128647936382452, + "tsareena": 4.057383310328524, + "comfey": 5.687355384443879, + "oranguru": 2.3214297934519275, + "passimian": 2.4808969888392376, + "palossand": 2.1346703854403777, + "pyukumuku": 43.45482305205193, + "togedemaru": 2.522621349696487, + "mimikyu-disguised": 3.830297561611915, + "greedent": 2.073296768078602, + "orbeetle": 1.800865063069121, + "thievul": 1.6237778926021746, + "eldegoss": 4.637023703963898, + "dubwool": 3.582286468680741, + "drednaw": 1.2450570188469374, + "boltund": 4.479202991326453, + "carkol": 2.2163183733977867, + "coalossal": 1.7543675073887566, + "sandaconda": 2.851223563423111, + "cramorant": 5.075125719741356, + "barraskewda": 4.667542783214433, + "toxtricity-amped": 2.2623220914188567, + "centiskorch": 1.8061502390010566, + "grapploct": 1.6856748581628611, + "polteageist": 2.651386383434855, + "hatterene": 2.748316290957737, + "grimmsnarl": 4.646071566345065, + "obstagoon": 2.5309628033242517, + "perrserker": 4.081636617354315, + "alcremie": 1.7509455116786747, + "falinks": 3.4423251736450924, + "pincurchin": 2.7850456301990416, + "frosmoth": 3.648537043841679, + "indeedee-male": 2.868333795248563, + "morpeko": 2.619504109769889, + "copperajah": 2.754448934018125, + "duraludon": 1.5767278134815501, + "drakloak": 5.142889028021427 }, "weezing-galar": { - "ivysaur": 3.5457361703021397, - "charmeleon": 3.460150068265702, - "wartortle": 2.733211263472733, - "butterfree": 5.065785375321921, - "raichu": 5.042717692309563, - "raichu-alola": 2.9115219730182096, - "sandslash": 2.413793901451816, - "sandslash-alola": 3.6866034436462067, - "nidoqueen": 2.2536593704939367, - "nidoking": 1.6590109846873213, - "clefairy": 9.516714231405043, - "clefable": 2.3091832416674265, - "jigglypuff": 29.407010847735986, - "wigglytuff": 2.120030757875968, - "gloom": 6.3688336811002255, - "vileplume": 3.600634373196626, - "dugtrio": 3.460170436837907, - "dugtrio-alola": 3.6312176283382036, - "persian": 4.399218152120316, - "persian-alola": 6.069279616611201, - "golduck": 3.10215479335219, - "poliwrath": 2.777187260340156, - "kadabra": 3.5308924381011133, - "machoke": 5.870001029582344, - "tentacruel": 1.862203036000106, - "slowbro": 1.611630090341675, - "magneton": 3.2783091951337013, - "haunter": 3.8180428019887165, - "kingler": 2.911989910364624, - "exeggutor": 2.1147296381767346, - "marowak": 3.1162991933667437, - "marowak-alola": 1.7718223180856665, - "hitmonlee": 3.0656913108322805, - "hitmonchan": 2.8241723078143135, - "lickitung": 1.8509340626778725, - "weezing": 1.4716385629654085, - "rhydon": 2.420949741491399, - "chansey": 18.39202781579013, - "tangela": 6.998962068353927, - "kangaskhan": 1.9966975519938965, - "seadra": 4.773882760196203, - "seaking": 2.4184606762027467, - "starmie": 1.4537220576570389, - "mr-mime": 5.32328394220555, - "mr-mime-galar": 3.4108202992714585, - "scyther": 3.25061096549074, - "jynx": 5.169861235439349, - "electabuzz": 2.3469379387515232, - "magmar": 1.3765890578848343, - "tauros": 2.2163394133643166, - "ditto": 2.903644753315306, - "vaporeon": 2.9082985029892345, - "jolteon": 1.7582608259457728, - "flareon": 1.9124275426393278, - "porygon": 2.7596390968345714, - "dragonair": 2.7285741893861655, - "noctowl": 5.318945522928988, - "lanturn": 1.817364851888732, - "togetic": 5.668878274601677, - "xatu": 3.3648420473245135, - "bellossom": 2.8016641079856215, - "azumarill": 2.6074055108815917, - "sudowoodo": 2.8295111507491413, - "politoed": 2.3112642691355183, - "quagsire": 4.946550918806624, - "slowking": 2.238899569844017, - "dunsparce": 3.3905077746515553, - "qwilfish": 3.025193705848947, - "sneasel": 2.8953633985943057, - "piloswine": 1.680545546514469, - "octillery": 2.2526553307252124, - "mantine": 2.189267355482116, - "skarmory": 2.7456670530299347, - "hitmontop": 3.586184255536712, - "miltank": 4.0630185731262785, - "grovyle": 9.109696147188796, - "sceptile": 1.676847360673006, - "combusken": 3.592327452090349, - "blaziken": 1.7261503524209831, - "marshtomp": 2.4889464731055946, - "swampert": 1.1681073129506467, - "linoone": 5.586757145666633, - "linoone-galar": 6.606361857465183, - "pelipper": 6.439622061334166, - "ninjask": 9.012725496838481, - "exploud": 1.5742749890435543, - "lairon": 2.369998204758888, - "manectric": 1.7191814585266343, - "roselia": 3.9198826582049753, - "sharpedo": 7.427484928664075, - "wailmer": 6.461212677821729, - "torkoal": 1.686469450944102, - "flygon": 3.2957306670611493, - "altaria": 2.1781770552486943, - "whiscash": 1.9887528823557643, - "crawdaunt": 2.9278042841980616, - "claydol": 2.8757660840482737, - "cradily": 2.262247817354397, - "armaldo": 2.0083131200511, - "dusclops": 3.5357755484519604, - "absol": 2.66524189360328, - "glalie": 4.776750256254719, - "sealeo": 3.1420468224307463, - "relicanth": 2.1971528381915717, - "metang": 3.2330435519045926, - "luxray": 3.8150392512371045, - "vespiquen": 3.348668004693637, - "cherrim": 6.553086404100851, - "gastrodon": 2.254468633922702, - "drifblim": 3.66952417789176, - "lopunny": 3.8669520508624684, - "skuntank": 1.5443300385932304, - "bronzong": 3.2936400892137185, - "munchlax": 2.1505002052033473, - "drapion": 2.7412168911277064, - "abomasnow": 4.706662862421689, - "froslass": 3.2438968819861813, - "rotom": 3.6407787838250263, - "stoutland": 2.484575455075044, - "liepard": 10.345548789744836, - "musharna": 1.3490767342779129, - "unfezant": 6.885846818465429, - "boldore": 3.7742893681008085, - "swoobat": 4.808028938782449, - "audino": 2.1773008956144584, - "gurdurr": 3.526501096398495, - "palpitoad": 3.510857381354075, - "seismitoad": 6.144359372100485, - "scolipede": 4.092930429588886, - "whimsicott": 4.8710918507456675, - "lilligant": 3.6912666103316134, - "basculin-red-striped": 2.929124364590188, - "basculin-blue-striped": 3.865243734931262, - "krookodile": 3.7045322377587144, - "maractus": 2.66110956552286, - "crustle": 2.4513160178700453, - "sigilyph": 1.996838073698319, - "cofagrigus": 2.447242278471065, - "garbodor": 1.7189630062465688, - "cinccino": 4.696619838206686, - "vanillish": 2.239460271829749, - "emolga": 3.005144360443003, - "escavalier": 3.0184589057176536, - "amoonguss": 2.793768526444998, - "jellicent": 1.5339131122243108, - "galvantula": 1.7878079735196268, - "klang": 2.89427640170126, - "klinklang": 3.839860045631843, - "beheeyem": 1.6206549958997623, - "lampent": 2.047347544594608, - "fraxure": 2.6741545889454903, - "beartic": 1.9039563178191232, - "cryogonal": 1.6304665544537718, - "accelgor": 3.66484368895913, - "stunfisk": 1.1675624714035688, - "stunfisk-galar": 2.4924365584220283, - "mienshao": 4.804142421172547, - "druddigon": 2.4396746892126715, - "golurk": 1.9113648913241246, - "bisharp": 2.9742349060917856, - "bouffalant": 1.376282332421604, - "heatmor": 1.676434752237287, - "durant": 6.055149864563683, - "diggersby": 3.131205227580616, - "talonflame": 2.4572923035353327, - "pangoro": 3.8367337423550056, - "doublade": 3.3322990141697675, - "malamar": 3.628780744092875, - "barbaracle": 1.5476864283211262, - "heliolisk": 3.437163441881924, - "tyrantrum": 2.630821746949524, - "aurorus": 2.3517687656709336, - "hawlucha": 5.310180556086194, - "dedenne": 3.2285215535254155, - "klefki": 3.3605739146268805, - "trevenant": 3.755992879955439, - "gourgeist-average": 6.39835205727166, - "charjabug": 4.686579259947733, - "vikavolt": 2.239881396026039, - "ribombee": 5.666650678575213, - "lycanroc-midday": 3.4490190010912465, - "lycanroc-midnight": 2.566966515714972, - "mudsdale": 1.7381697715890398, - "araquanid": 2.431581161329005, - "lurantis": 2.8165005588985403, - "shiinotic": 6.250791400556647, - "salazzle": 2.532295087342678, - "bewear": 2.59616250401252, - "tsareena": 3.724657797682687, - "comfey": 4.960540605174, - "oranguru": 2.145300412078436, - "passimian": 3.609731152417322, - "palossand": 1.9192394124522543, - "pyukumuku": 43.873195196504284, - "togedemaru": 2.411520316548111, - "mimikyu-disguised": 4.05955605837492, - "greedent": 2.1278520160733025, - "orbeetle": 1.8662288314578501, - "thievul": 2.294490025341585, - "eldegoss": 4.294083452804463, - "dubwool": 3.638783238846485, - "drednaw": 1.374630452434261, - "boltund": 4.900193979389574, - "carkol": 2.1077080314984187, - "coalossal": 1.6681583257620392, - "sandaconda": 3.4123530713256716, - "cramorant": 5.491670990325467, - "barraskewda": 5.309764392097361, - "toxtricity-amped": 2.277772785594272, - "centiskorch": 1.699172255319949, - "grapploct": 2.4109722416729653, - "polteageist": 2.4600061509442277, - "hatterene": 2.409038046622289, - "grimmsnarl": 5.480684079478397, - "obstagoon": 3.5990470286604785, - "perrserker": 4.003856214121086, - "alcremie": 1.5447214985580593, - "falinks": 4.904846173940605, - "pincurchin": 2.948260415401154, - "frosmoth": 3.837420726166987, - "indeedee-male": 2.666274150716654, - "morpeko": 3.7461075848035765, - "copperajah": 2.476634761624803, - "duraludon": 1.9571178917120142, - "drakloak": 6.820587228286624, - "weezing-galar": 2.5124261836008612 + "ivysaur": 3.5491385528038344, + "charmeleon": 3.4587588709293122, + "wartortle": 2.733053725297821, + "butterfree": 5.073634241437874, + "raichu": 5.046065492198721, + "raichu-alola": 2.9031015793166954, + "sandslash": 2.416428555768314, + "sandslash-alola": 3.6979249105290375, + "nidoqueen": 2.2469763842002366, + "nidoking": 1.6576181981701708, + "clefairy": 9.529102886228504, + "clefable": 2.3130727202655965, + "jigglypuff": 29.467404051722987, + "wigglytuff": 2.119810515969202, + "gloom": 6.3729773487687655, + "vileplume": 3.6093371947758146, + "dugtrio": 3.455534519999312, + "dugtrio-alola": 3.628401433394291, + "persian": 4.40152674265763, + "persian-alola": 6.085751048671325, + "golduck": 3.1019430218105675, + "poliwrath": 2.7846463525361074, + "kadabra": 3.523452652865443, + "machoke": 5.8921109844691575, + "tentacruel": 1.8582554751306772, + "slowbro": 1.6075402577954825, + "magneton": 3.2708271971271956, + "haunter": 3.813633181002716, + "kingler": 2.917367322634139, + "exeggutor": 2.1166091210581603, + "marowak": 3.1155012748746476, + "marowak-alola": 1.7712445849538447, + "hitmonlee": 3.074882736396101, + "hitmonchan": 2.830802653958467, + "lickitung": 1.8499060150180946, + "weezing": 1.470970011756446, + "weezing-galar": 2.5124261836008612, + "rhydon": 2.418049473398198, + "chansey": 18.31241833857837, + "tangela": 7.032708755468007, + "kangaskhan": 2.0000200424139605, + "seadra": 4.778747896583137, + "seaking": 2.418445529010592, + "starmie": 1.4528761935666532, + "mr-mime": 5.302975148101613, + "mr-mime-galar": 3.401559466186006, + "scyther": 3.2588821447141214, + "jynx": 5.170144025831721, + "electabuzz": 2.3445372372635065, + "magmar": 1.373989833997518, + "tauros": 2.22015359708299, + "ditto": 2.890584429155293, + "vaporeon": 2.904663423419715, + "jolteon": 1.756627872622199, + "flareon": 1.9072948692304894, + "porygon": 2.759368362093107, + "dragonair": 2.7361199909495193, + "noctowl": 5.314996639737583, + "lanturn": 1.8163122644333165, + "togetic": 5.6785040727616645, + "xatu": 3.357232315427689, + "bellossom": 2.8099258769644755, + "azumarill": 2.6158478009992043, + "sudowoodo": 2.831487649050675, + "politoed": 2.307321789858136, + "quagsire": 4.948063610138165, + "slowking": 2.234945692726774, + "dunsparce": 3.3935910347312, + "qwilfish": 3.023514295635902, + "sneasel": 2.9029021359192058, + "piloswine": 1.6828138046218706, + "octillery": 2.250164485023214, + "mantine": 2.1871215613660775, + "skarmory": 2.7510502627404727, + "hitmontop": 3.5940293501175287, + "miltank": 4.070939863122867, + "grovyle": 9.13678316568613, + "sceptile": 1.6823204460958525, + "combusken": 3.597733311479804, + "blaziken": 1.7284186892802857, + "marshtomp": 2.48773133150438, + "swampert": 1.165494605890516, + "linoone": 5.595053159806204, + "linoone-galar": 6.624871051999833, + "pelipper": 6.441146529438507, + "ninjask": 9.036859411664292, + "exploud": 1.5740328418892036, + "lairon": 2.3672449628104744, + "manectric": 1.7188372892953354, + "roselia": 3.91625700609111, + "sharpedo": 7.45066729405703, + "wailmer": 6.458313065056723, + "torkoal": 1.6860076281821943, + "flygon": 3.300409719482508, + "altaria": 2.183737476632407, + "whiscash": 1.986531435539504, + "crawdaunt": 2.9340690010363124, + "claydol": 2.8673478597512965, + "cradily": 2.262651728142224, + "armaldo": 2.01078885296608, + "dusclops": 3.5398643941945256, + "absol": 2.6707413923293317, + "glalie": 4.784603996276159, + "sealeo": 3.1401514424817827, + "relicanth": 2.199251133078741, + "metang": 3.2304687725818244, + "luxray": 3.815448443091243, + "vespiquen": 3.359174917941418, + "cherrim": 6.566040621346307, + "gastrodon": 2.2557651096526303, + "drifblim": 3.660194909505063, + "lopunny": 3.8723756706351837, + "skuntank": 1.5471234832514331, + "bronzong": 3.2890734694824504, + "munchlax": 2.14990344920706, + "drapion": 2.747015103973966, + "abomasnow": 4.718968697770058, + "froslass": 3.2468630728465886, + "rotom": 3.6413178059710756, + "stoutland": 2.4854048930475447, + "liepard": 10.382537279089977, + "musharna": 1.3460552854134489, + "unfezant": 6.898321622843664, + "boldore": 3.7779407160401757, + "swoobat": 4.797014927544549, + "audino": 2.17708694116041, + "gurdurr": 3.5395396989442314, + "palpitoad": 3.503737942837938, + "seismitoad": 6.133667142036929, + "scolipede": 4.103408648657438, + "whimsicott": 4.89001324665033, + "lilligant": 3.7038834832551575, + "basculin-red-striped": 2.930075155998338, + "basculin-blue-striped": 3.8681530334216676, + "krookodile": 3.7069930187860285, + "maractus": 2.6704601157904966, + "crustle": 2.4583011812729616, + "sigilyph": 1.991486213374905, + "cofagrigus": 2.443701424507401, + "garbodor": 1.7192055014319194, + "cinccino": 4.698781695822925, + "vanillish": 2.2391260056268605, + "emolga": 3.0067504000651804, + "escavalier": 3.0247617067321517, + "amoonguss": 2.79493663735679, + "jellicent": 1.5343452705455136, + "galvantula": 1.790343997568363, + "klang": 2.889604713339427, + "klinklang": 3.837974421364311, + "beheeyem": 1.6178378309902615, + "lampent": 2.043070361005306, + "fraxure": 2.686692220328198, + "beartic": 1.9058903927758328, + "cryogonal": 1.6291958420889776, + "accelgor": 3.673808848028762, + "stunfisk": 1.164933505346359, + "stunfisk-galar": 2.4899809385921343, + "mienshao": 4.8176699772154725, + "druddigon": 2.442571260138277, + "golurk": 1.912450167135245, + "bisharp": 2.978783758915773, + "bouffalant": 1.3786903625543943, + "heatmor": 1.674337356183528, + "durant": 6.072752936187365, + "diggersby": 3.129007878892807, + "talonflame": 2.4536323059510807, + "pangoro": 3.853292951527859, + "doublade": 3.338465197492156, + "malamar": 3.6297584723412575, + "barbaracle": 1.547121592228978, + "heliolisk": 3.433612303042495, + "tyrantrum": 2.639353075148877, + "aurorus": 2.348922896175, + "hawlucha": 5.329683101082749, + "dedenne": 3.2332541938082695, + "klefki": 3.3585347588026164, + "trevenant": 3.770781823081798, + "gourgeist-average": 6.413602163223599, + "charjabug": 4.694330298540856, + "vikavolt": 2.245558585076584, + "ribombee": 5.688127209382957, + "lycanroc-midday": 3.449302422604288, + "lycanroc-midnight": 2.570041299499937, + "mudsdale": 1.741371576069839, + "araquanid": 2.435949126223612, + "lurantis": 2.8238345328897463, + "shiinotic": 6.268387790688967, + "salazzle": 2.5271117008997703, + "bewear": 2.6019598108838267, + "tsareena": 3.7373947017620166, + "comfey": 4.973067630969082, + "oranguru": 2.137290104693383, + "passimian": 3.6232157159202085, + "palossand": 1.9161969894170032, + "pyukumuku": 43.8942802385524, + "togedemaru": 2.4098032820537973, + "mimikyu-disguised": 4.0648249688672395, + "greedent": 2.1271562200334513, + "orbeetle": 1.8618254079882282, + "thievul": 2.2988216174551566, + "eldegoss": 4.302109961179875, + "dubwool": 3.6488806654636594, + "drednaw": 1.3744917672299595, + "boltund": 4.90587826466116, + "carkol": 2.1031102020894683, + "coalossal": 1.6644914669059594, + "sandaconda": 3.4151226089113482, + "cramorant": 5.495624527276684, + "barraskewda": 5.322177234675898, + "toxtricity-amped": 2.2737244391232587, + "centiskorch": 1.695992253086205, + "grapploct": 2.4195807986423272, + "polteageist": 2.458821145452446, + "hatterene": 2.40727066010809, + "grimmsnarl": 5.501562284843171, + "obstagoon": 3.6065504768897823, + "perrserker": 4.0065299542396255, + "alcremie": 1.5470378608883708, + "falinks": 4.921688168970892, + "pincurchin": 2.947913799732337, + "frosmoth": 3.841958332922409, + "indeedee-male": 2.659059794409444, + "morpeko": 3.7531395102840692, + "copperajah": 2.472944236732183, + "duraludon": 1.9591374788620841, + "drakloak": 6.840158870044843 }, "rhydon": { - "ivysaur": 2.6264535169715892, - "charmeleon": 6.5648965329812015, - "wartortle": 2.056603913157107, - "butterfree": 8.234187064096858, - "raichu": 9.07961826555107, - "raichu-alola": 6.5218697016697575, - "sandslash": 2.304749194739833, - "sandslash-alola": 2.8220474714317856, - "nidoqueen": 4.023358774633095, - "nidoking": 3.02657798159136, - "clefairy": 9.781614894185331, - "clefable": 2.5677256997545537, - "jigglypuff": 34.138517467048395, - "wigglytuff": 2.451843187142421, - "gloom": 6.677634020565511, - "vileplume": 2.3875930859239642, - "dugtrio": 4.556302150697524, - "dugtrio-alola": 5.755820631903683, - "persian": 5.4302290123953485, - "persian-alola": 4.816242347807128, - "golduck": 2.6299382253990187, - "poliwrath": 1.9985758074730993, - "kadabra": 4.904646514843385, - "machoke": 4.495505298710414, - "tentacruel": 3.0597365269958896, - "slowbro": 1.8958858207314346, - "magneton": 6.889858491710058, - "haunter": 3.6643000600617057, - "kingler": 2.192383094248353, - "exeggutor": 1.5700962239126535, - "marowak": 3.2776194912070267, - "marowak-alola": 3.3128101194799457, - "hitmonlee": 3.0943879211633787, - "hitmonchan": 2.7301447402038312, - "lickitung": 1.575876382759498, - "weezing": 2.3417072153135994, - "weezing-galar": 3.7429904647799335, - "chansey": 38.61521284853997, - "tangela": 3.80144285919189, - "kangaskhan": 2.2469370710511365, - "seadra": 3.1260899753156783, - "seaking": 2.773376564591623, - "starmie": 1.4996644839296185, - "mr-mime": 9.029321124996228, - "mr-mime-galar": 4.0657437420636136, - "scyther": 5.739221888330289, - "jynx": 5.890080755340704, - "electabuzz": 5.5140415809747125, - "magmar": 3.141335343556077, - "tauros": 2.24140291386017, - "ditto": 4.1665112536280935, - "vaporeon": 2.779947229552572, - "jolteon": 3.791792903908305, - "flareon": 4.650518835026511, - "porygon": 3.1968693233284977, - "dragonair": 2.0816729266284604, - "noctowl": 9.72239590258663, - "lanturn": 2.5135486597906698, - "togetic": 7.98839286468068, - "xatu": 5.101059769938795, - "bellossom": 1.806674979633973, - "azumarill": 2.4578493119693845, - "sudowoodo": 3.523759998825684, - "politoed": 2.6153944357143115, - "quagsire": 3.368628860225937, - "slowking": 2.637712612691047, - "dunsparce": 3.496242638054205, - "qwilfish": 4.681608046290594, - "sneasel": 3.0822777943165764, - "piloswine": 1.6224810383628694, - "octillery": 2.0260208226671494, - "mantine": 3.0897666641649053, - "skarmory": 1.9500816300267538, - "hitmontop": 3.030133380264709, - "miltank": 4.223082623990679, - "grovyle": 5.788564788273986, - "sceptile": 1.1334567663877146, - "combusken": 4.9630022295655705, - "blaziken": 2.6865686094662733, - "marshtomp": 2.2727832993189137, - "swampert": 1.045984046225167, - "linoone": 6.471884845216946, - "linoone-galar": 5.1925450372233435, - "pelipper": 8.367338589201767, - "ninjask": 15.279594482995677, - "exploud": 1.6211680991347217, - "lairon": 4.4498783712462835, - "manectric": 3.1624118311671836, - "roselia": 3.560623157978129, - "sharpedo": 5.578352028005115, - "wailmer": 5.630884037211873, - "torkoal": 2.700288542642372, - "flygon": 2.213162696209091, - "altaria": 2.2020475724981123, - "whiscash": 1.4517707838130678, - "crawdaunt": 1.4581917938636075, - "claydol": 3.2552555186546925, - "cradily": 2.2494755133716056, - "armaldo": 2.4937854341762424, - "dusclops": 3.961722982473008, - "absol": 2.1281126469911618, - "glalie": 5.451884784245106, - "sealeo": 3.0382304006870497, - "relicanth": 2.406983672891913, - "metang": 4.731117172878237, - "luxray": 7.225431264742559, - "vespiquen": 5.59103868159411, - "cherrim": 4.150658020554178, - "gastrodon": 2.4871836570094104, - "drifblim": 6.507792894667141, - "lopunny": 4.59648924816947, - "skuntank": 2.525895112726214, - "bronzong": 2.712628880662212, - "munchlax": 3.3481954887074155, - "drapion": 3.7590652099619204, - "abomasnow": 3.816702583978933, - "froslass": 3.582061095075348, - "rotom": 4.054137441605004, - "stoutland": 3.089101875262443, - "liepard": 8.538016688796972, - "musharna": 1.467113189567026, - "unfezant": 8.81906047410672, - "boldore": 4.146698015075644, - "swoobat": 7.3095405313486195, - "audino": 2.690501481017669, - "gurdurr": 2.2455717034320912, - "palpitoad": 3.3352550174006934, - "seismitoad": 8.035108450938917, - "scolipede": 4.2797671424934425, - "whimsicott": 3.0466691370560346, - "lilligant": 2.1089951818023884, - "basculin-red-striped": 2.7787957319365724, - "basculin-blue-striped": 3.05654891439091, - "krookodile": 2.9512740447955075, - "maractus": 1.455487272007527, - "crustle": 2.6005516818038634, - "sigilyph": 2.8940632207078343, - "cofagrigus": 2.650686923255144, - "garbodor": 3.180861261089515, - "cinccino": 5.483889464889685, - "vanillish": 2.4250414049720495, - "emolga": 5.08209173402078, - "escavalier": 1.9708389602666645, - "amoonguss": 2.376109859341902, - "jellicent": 1.6364286570840418, - "galvantula": 2.457733891086386, - "klang": 4.323922898397308, - "klinklang": 5.208762087804124, - "beheeyem": 2.0946308566796987, - "lampent": 4.59171498176708, - "fraxure": 1.8235961180339797, - "beartic": 1.7288215362345318, - "cryogonal": 1.9823520305021427, - "accelgor": 4.2628372060465525, - "stunfisk": 1.5414664639361082, - "stunfisk-galar": 3.2652427571614604, - "mienshao": 3.7563986556789555, - "druddigon": 2.1479530646764307, - "golurk": 2.04668673558905, - "bisharp": 3.870715989336305, - "bouffalant": 1.5425156272549079, - "heatmor": 2.868720415519894, - "durant": 3.138245475635752, - "diggersby": 3.736819303375518, - "talonflame": 6.090364321173957, - "pangoro": 1.972705628054948, - "doublade": 2.9370941461165914, - "malamar": 3.2586636021082427, - "barbaracle": 1.90231172813872, - "heliolisk": 7.063620903454227, - "tyrantrum": 2.2176532899197614, - "aurorus": 4.311665635918602, - "hawlucha": 3.658837688851211, - "dedenne": 4.99971245224144, - "klefki": 4.730892213837581, - "trevenant": 2.714277607113772, - "gourgeist-average": 5.158909320937122, - "charjabug": 5.549169858126614, - "vikavolt": 2.410711118632588, - "ribombee": 6.172413483944333, - "lycanroc-midday": 5.654835827970825, - "lycanroc-midnight": 3.8213328727541622, - "mudsdale": 1.7210100750985933, - "araquanid": 3.4031816982102203, - "lurantis": 1.9148453592236476, - "shiinotic": 5.484964124493473, - "salazzle": 8.25958423130345, - "bewear": 2.1588452123387927, - "tsareena": 2.8521188425819117, - "comfey": 4.308505722881875, - "oranguru": 3.1243040918465317, - "passimian": 2.579501286498944, - "palossand": 1.9174958303932579, - "pyukumuku": 53.052578764515616, - "togedemaru": 6.628207872898119, - "mimikyu-disguised": 6.032894902047262, - "greedent": 2.4825975602959067, - "orbeetle": 2.3011209531860866, - "thievul": 2.2395237941297634, - "eldegoss": 2.743788005733072, - "dubwool": 3.2138035696894502, - "drednaw": 1.8604691483489861, - "boltund": 8.584505165965714, - "carkol": 5.55551003340153, - "coalossal": 3.5842132890723706, - "sandaconda": 3.0202724971468595, - "cramorant": 7.692747971826089, - "barraskewda": 4.91015339910091, - "toxtricity-amped": 7.550378701573948, - "centiskorch": 4.4818254304227105, - "grapploct": 1.3655558833711787, - "polteageist": 2.728858941552506, - "hatterene": 3.1457418107089694, - "grimmsnarl": 4.759062541364198, - "obstagoon": 3.0820912037539245, - "perrserker": 4.892019495819509, - "alcremie": 1.7388075448215714, - "falinks": 3.23860284000132, - "pincurchin": 4.040392212615227, - "frosmoth": 5.273957379886423, - "indeedee-male": 3.8361860759293496, - "morpeko": 4.745565097131557, - "copperajah": 3.465318718862962, - "duraludon": 2.2991627521786286, - "drakloak": 5.375393335828733, - "rhydon": 2.758210584878204 + "ivysaur": 2.613680605045018, + "charmeleon": 6.585893791358835, + "wartortle": 2.043703458356505, + "butterfree": 8.218039630701455, + "raichu": 9.098427616423228, + "raichu-alola": 6.541511235340073, + "sandslash": 2.307026846214713, + "sandslash-alola": 2.82617306239471, + "nidoqueen": 4.023588645830901, + "nidoking": 3.034876045130577, + "clefairy": 9.76669901818881, + "clefable": 2.5738370351253845, + "jigglypuff": 34.198457586493525, + "wigglytuff": 2.4560018429567583, + "gloom": 6.688400233758063, + "vileplume": 2.3758340475081914, + "dugtrio": 4.560900340834878, + "dugtrio-alola": 5.7640321393491565, + "persian": 5.445995628141621, + "persian-alola": 4.823878057398427, + "golduck": 2.618076188176067, + "poliwrath": 1.996324502854331, + "kadabra": 4.913693365388237, + "machoke": 4.50259378874085, + "tentacruel": 3.046773642532319, + "slowbro": 1.8961186220398085, + "magneton": 6.894357395348758, + "haunter": 3.647807602370449, + "kingler": 2.1873804969167505, + "exeggutor": 1.5637314326813883, + "marowak": 3.2784851969843327, + "marowak-alola": 3.3259126595729334, + "hitmonlee": 3.100068784280962, + "hitmonchan": 2.7367649311800273, + "lickitung": 1.5736605605807092, + "weezing": 2.348034306979496, + "weezing-galar": 3.752951250754909, + "rhydon": 2.758210584878204, + "chansey": 38.74418440200919, + "tangela": 3.7873743750308257, + "kangaskhan": 2.25242992110141, + "seadra": 3.1084710593868135, + "seaking": 2.774172022149507, + "starmie": 1.4999375040041145, + "mr-mime": 9.043478626220704, + "mr-mime-galar": 4.066427704576403, + "scyther": 5.759578666913337, + "jynx": 5.8931375868617275, + "electabuzz": 5.543465669573025, + "magmar": 3.1545022206657527, + "tauros": 2.244603827764725, + "ditto": 4.14963538460624, + "vaporeon": 2.7661188919453945, + "jolteon": 3.806258042495002, + "flareon": 4.667079228539766, + "porygon": 3.19998870633853, + "dragonair": 2.0850988512755624, + "noctowl": 9.750924838705831, + "lanturn": 2.5042946932140495, + "togetic": 8.013118997537841, + "xatu": 5.103292538666296, + "bellossom": 1.7957571547922146, + "azumarill": 2.460251236931425, + "sudowoodo": 3.5326751882808596, + "politoed": 2.6104384013593482, + "quagsire": 3.345290629968585, + "slowking": 2.6345577482004385, + "dunsparce": 3.496792151351129, + "qwilfish": 4.682562457602044, + "sneasel": 3.090808111311209, + "piloswine": 1.6232995430014316, + "octillery": 2.0171714339711184, + "mantine": 3.079408804238586, + "skarmory": 1.9501062273480005, + "hitmontop": 3.03165866603611, + "miltank": 4.234198089518651, + "grovyle": 5.75463930952742, + "sceptile": 1.1255050613385078, + "combusken": 4.965795906756664, + "blaziken": 2.694195620378479, + "marshtomp": 2.264285376015815, + "swampert": 1.040139300896383, + "linoone": 6.490454749192189, + "linoone-galar": 5.199149990346351, + "pelipper": 8.38251605449925, + "ninjask": 15.311934425187426, + "exploud": 1.6202055775132718, + "lairon": 4.458901287816424, + "manectric": 3.175061383484584, + "roselia": 3.545909975930143, + "sharpedo": 5.5788309243184955, + "wailmer": 5.6063860252626885, + "torkoal": 2.708704968903348, + "flygon": 2.209140193246979, + "altaria": 2.202389345711537, + "whiscash": 1.4476812516871136, + "crawdaunt": 1.4549835727985894, + "claydol": 3.251347523778569, + "cradily": 2.2441854627444626, + "armaldo": 2.502497074860826, + "dusclops": 3.969358721443064, + "absol": 2.1313545577789754, + "glalie": 5.464669593795666, + "sealeo": 3.025220546935305, + "relicanth": 2.4083765260460908, + "metang": 4.742442485840133, + "luxray": 7.262259165382269, + "vespiquen": 5.607543525178608, + "cherrim": 4.125243308092951, + "gastrodon": 2.487232642740778, + "drifblim": 6.521508804772402, + "lopunny": 4.609520771849079, + "skuntank": 2.535904426530227, + "bronzong": 2.7102060622625777, + "munchlax": 3.3649861426249337, + "drapion": 3.769779881394375, + "abomasnow": 3.815404932092733, + "froslass": 3.5853531307070114, + "rotom": 4.05755133834189, + "stoutland": 3.0989729022243857, + "liepard": 8.560214972981967, + "musharna": 1.4635511692057008, + "unfezant": 8.845307422706163, + "boldore": 4.1550517734981085, + "swoobat": 7.312829822882667, + "audino": 2.6945687980579045, + "gurdurr": 2.2448755646065655, + "palpitoad": 3.3204670582922677, + "seismitoad": 8.050278601883129, + "scolipede": 4.291286687276571, + "whimsicott": 3.0379378098419725, + "lilligant": 2.0955411180360772, + "basculin-red-striped": 2.774130705347151, + "basculin-blue-striped": 3.04295847398728, + "krookodile": 2.9494033028244537, + "maractus": 1.4454866849583066, + "crustle": 2.6085484762288584, + "sigilyph": 2.891356269981171, + "cofagrigus": 2.6505465726267863, + "garbodor": 3.1939589694082686, + "cinccino": 5.49467447316254, + "vanillish": 2.422972782966495, + "emolga": 5.102860532601066, + "escavalier": 1.9706642315464642, + "amoonguss": 2.3696010048136755, + "jellicent": 1.635242071061745, + "galvantula": 2.4671426282804543, + "klang": 4.328417692937441, + "klinklang": 5.2174116814463005, + "beheeyem": 2.0965691140720972, + "lampent": 4.6114693173712205, + "fraxure": 1.827903334208695, + "beartic": 1.725352631826819, + "cryogonal": 1.9764036005711976, + "accelgor": 4.2661334046206605, + "stunfisk": 1.5394213396753338, + "stunfisk-galar": 3.2636733317793896, + "mienshao": 3.7575323468168182, + "druddigon": 2.1524254073825597, + "golurk": 2.0471810954649214, + "bisharp": 3.8820420087228094, + "bouffalant": 1.5460016379484354, + "heatmor": 2.872853715580047, + "durant": 3.1417537936021427, + "diggersby": 3.7414461720081524, + "talonflame": 6.104709725550203, + "pangoro": 1.974307682454576, + "doublade": 2.9396650594764235, + "malamar": 3.2640263338049342, + "barbaracle": 1.9027827714083902, + "heliolisk": 7.086903675949937, + "tyrantrum": 2.224338701908108, + "aurorus": 4.3313584545903145, + "hawlucha": 3.6607803266532075, + "dedenne": 5.017570031755304, + "klefki": 4.732723483150101, + "trevenant": 2.709837062356029, + "gourgeist-average": 5.165115231430707, + "charjabug": 5.569193102753863, + "vikavolt": 2.4107789273341833, + "ribombee": 6.179084866025331, + "lycanroc-midday": 5.6820315440197815, + "lycanroc-midnight": 3.836074424011216, + "mudsdale": 1.7219121976551213, + "araquanid": 3.4058352858890237, + "lurantis": 1.9066885962331446, + "shiinotic": 5.488561180098118, + "salazzle": 8.300457936732613, + "bewear": 2.1640578655928286, + "tsareena": 2.8478852874169873, + "comfey": 4.295804558963589, + "oranguru": 3.1267477855011077, + "passimian": 2.5832582830251143, + "palossand": 1.9141421018278142, + "pyukumuku": 53.121139645273445, + "togedemaru": 6.6553370722327765, + "mimikyu-disguised": 6.061678684239745, + "greedent": 2.4875367429943527, + "orbeetle": 2.3006679471540696, + "thievul": 2.2436759208934682, + "eldegoss": 2.7260581508179933, + "dubwool": 3.215150832386781, + "drednaw": 1.8617739825124016, + "boltund": 8.622794265308148, + "carkol": 5.5803797979500285, + "coalossal": 3.585466081556847, + "sandaconda": 3.0168513661428813, + "cramorant": 7.686606309878332, + "barraskewda": 4.908745573262062, + "toxtricity-amped": 7.588155061852924, + "centiskorch": 4.493973245726398, + "grapploct": 1.3617719327619882, + "polteageist": 2.72357052993706, + "hatterene": 3.151879164798076, + "grimmsnarl": 4.766599045539145, + "obstagoon": 3.0906283389810847, + "perrserker": 4.902501654803415, + "alcremie": 1.7388355671797164, + "falinks": 3.2388838966369162, + "pincurchin": 4.031677360729519, + "frosmoth": 5.287380988735009, + "indeedee-male": 3.840335807965481, + "morpeko": 4.762155768039763, + "copperajah": 3.4624152413201346, + "duraludon": 2.3045238860678006, + "drakloak": 5.386729061695528 }, "chansey": { - "ivysaur": 2.8663804146625904, - "charmeleon": 3.5326450064102057, - "wartortle": 2.459526062851923, - "butterfree": 4.132644820808937, - "raichu": 4.411634371183682, - "raichu-alola": 3.1409416027107353, - "sandslash": 1.49118360177191, - "sandslash-alola": 1.2040684804349837, - "nidoqueen": 2.5884756497955443, - "nidoking": 1.2214039174279867, - "clefairy": 8.12401595774028, - "clefable": 1.953309686635823, - "jigglypuff": 23.922141143361472, - "wigglytuff": 1.8716566924561464, - "gloom": 5.172694807653714, - "vileplume": 2.699006904075217, - "dugtrio": 2.442567900929851, - "dugtrio-alola": 2.035308602388189, - "persian": 2.969819381693742, - "persian-alola": 3.452572997316637, - "golduck": 2.2681899989549392, - "poliwrath": 1.117868918508952, - "kadabra": 3.278470087809376, - "machoke": 2.347447544503024, - "tentacruel": 1.8473402610166563, - "slowbro": 1.534949713725493, - "magneton": 2.6379387515667867, - "haunter": 3.3465678369532723, - "kingler": 1.552804379586152, - "exeggutor": 1.5337915161114593, - "marowak": 2.0855856197210656, - "marowak-alola": 1.2236674146080218, - "hitmonlee": 1.246425500817096, - "hitmonchan": 1.3110575273068759, - "lickitung": 1.7843714981928038, - "weezing": 1.4932361868167923, - "weezing-galar": 2.446818087992554, - "rhydon": 1.5246556073766095, - "tangela": 3.4617927155989676, - "kangaskhan": 1.1947892422908761, - "seadra": 4.025111919372326, - "seaking": 1.5807605289782658, - "starmie": 1.2620010614294523, - "mr-mime": 5.996121250706386, - "mr-mime-galar": 3.465342399718195, - "scyther": 1.7958639386223478, - "jynx": 3.9117575299025193, - "electabuzz": 2.337204780386525, - "magmar": 1.52592869144502, - "tauros": 1.240738710796692, - "ditto": 58.435616571489106, - "vaporeon": 2.8079985010382758, - "jolteon": 1.7359246139226059, - "flareon": 2.0992096974541834, - "porygon": 2.48543825099371, - "dragonair": 1.3517900146319322, - "noctowl": 4.2701426940649405, - "lanturn": 1.6916630923750913, - "togetic": 4.0715974852127905, - "xatu": 3.523601067979108, - "bellossom": 2.2107407651859, - "azumarill": 1.393677725358204, - "sudowoodo": 1.5163443268897112, - "politoed": 1.9679645765818112, - "quagsire": 4.205362920615158, - "slowking": 1.788603969725714, - "dunsparce": 2.5835183668334176, - "qwilfish": 2.2625050549752173, - "sneasel": 1.6671434593534094, - "piloswine": 1.1518120595900725, - "octillery": 1.9732396412703461, - "mantine": 1.9692085150272347, - "skarmory": 1.1996188532611405, - "hitmontop": 1.5876551383654693, - "miltank": 2.390082129546464, - "grovyle": 5.7303994599293855, - "sceptile": 1.1082206647320834, - "combusken": 2.443181137108544, - "blaziken": 1.041845313488769, - "marshtomp": 1.7539020012969404, - "swampert": 1.1492333398060954, - "linoone": 3.732677661032822, - "linoone-galar": 3.764371984634428, - "pelipper": 4.579848025560045, - "ninjask": 5.110736400942113, - "exploud": 1.4706029495055781, - "lairon": 1.3788176645272265, - "manectric": 1.5071156954195881, - "roselia": 3.524471019939093, - "sharpedo": 3.2860986968651518, - "wailmer": 5.060573262749886, - "torkoal": 1.7291609477812995, - "flygon": 1.7335618032537257, - "altaria": 1.4894993669730998, - "whiscash": 1.7108855275320392, - "crawdaunt": 1.611827473047741, - "claydol": 3.069877190255313, - "cradily": 1.9461713985889344, - "armaldo": 1.1520856664343015, - "dusclops": 2.3318599974319563, - "absol": 1.5253216135021865, - "glalie": 2.809704024254784, - "sealeo": 2.700265057725372, - "relicanth": 1.2200661309951941, - "metang": 1.7197951172399635, - "luxray": 2.927234447655791, - "vespiquen": 1.7186925118034608, - "cherrim": 5.339141405669543, - "gastrodon": 1.390169479414065, - "drifblim": 3.2025627696355246, - "lopunny": 2.18822782532921, - "skuntank": 1.0951792616546654, - "bronzong": 1.8216266694882064, - "munchlax": 1.4035239590938127, - "drapion": 1.5911569024388315, - "abomasnow": 2.2981641726726942, - "froslass": 1.9828299060836576, - "rotom": 2.6899371869612168, - "stoutland": 1.6178576624984995, - "liepard": 4.666111458399962, - "musharna": 1.295673269585398, - "unfezant": 4.33918125388574, - "boldore": 1.9682215341565772, - "swoobat": 5.027384337009689, - "audino": 2.151975154724422, - "gurdurr": 1.250827194113302, - "palpitoad": 3.267452393513902, - "seismitoad": 5.890364276475898, - "scolipede": 2.108067023115866, - "whimsicott": 2.5622169657079956, - "lilligant": 2.8071427425249755, - "basculin-red-striped": 1.8518237406333267, - "basculin-blue-striped": 2.7040997164568443, - "krookodile": 2.14136495387648, - "maractus": 1.8829137222199945, - "crustle": 1.1856926588351664, - "sigilyph": 2.142131681650138, - "cofagrigus": 2.000206042449445, - "garbodor": 1.275445797431198, - "cinccino": 3.178076163666888, - "vanillish": 2.05191691449142, - "emolga": 2.5309127564056473, - "escavalier": 1.07634785745403, - "amoonguss": 2.30354344150113, - "jellicent": 1.0796574735960407, - "galvantula": 1.4420164143386525, - "klang": 2.2698054173369075, - "klinklang": 1.9541816714923657, - "beheeyem": 1.6507149359873294, - "lampent": 1.8250892147034266, - "fraxure": 1.0018664199539586, - "beartic": 1.4300350161402018, - "cryogonal": 1.5830401914594652, - "accelgor": 2.7956949185123277, - "stunfisk": 1.17751473013903, - "stunfisk-galar": 1.804876169932858, - "mienshao": 2.4177795459486227, - "druddigon": 1.1972856319526595, - "golurk": 1.0744822130328973, - "bisharp": 1.4600371900243236, - "bouffalant": 0.7631508262725897, - "heatmor": 1.5249093020569928, - "durant": 1.8097074184305684, - "diggersby": 2.175729236696357, - "talonflame": 2.4542003047098975, - "pangoro": 1.0282548017052604, - "doublade": 1.0943498020499596, - "malamar": 2.277802171338371, - "barbaracle": 1.0180889782386853, - "heliolisk": 3.176172004633541, - "tyrantrum": 0.9032876453528269, - "aurorus": 1.9109470774508406, - "hawlucha": 2.0895235743130707, - "dedenne": 2.7072337858167055, - "klefki": 2.0272468216961235, - "trevenant": 1.4636868466064805, - "gourgeist-average": 4.02023993770211, - "charjabug": 2.8167395483441684, - "vikavolt": 1.4666576964670948, - "ribombee": 4.209751372285812, - "lycanroc-midday": 2.203530785548801, - "lycanroc-midnight": 1.3814596251385207, - "mudsdale": 0.916718352355589, - "araquanid": 1.476012573122371, - "lurantis": 1.994045648396849, - "shiinotic": 4.013842778837939, - "salazzle": 2.624176678433204, - "bewear": 1.1546950730836245, - "tsareena": 2.074403815820529, - "comfey": 3.982734847277652, - "oranguru": 2.1840210847023296, - "passimian": 1.4004887035480507, - "palossand": 1.5681948471725744, - "pyukumuku": 38.477814777598084, - "togedemaru": 1.4679759433367683, - "mimikyu-disguised": 2.58927493208158, - "greedent": 1.3934142108956196, - "orbeetle": 1.7019794149371976, - "thievul": 1.6161551253941289, - "eldegoss": 3.5532410391624136, - "dubwool": 1.7857289089836104, - "drednaw": 0.7882249587347006, - "boltund": 3.5760140042075674, - "carkol": 1.7105206488622717, - "coalossal": 1.7224782811911394, - "sandaconda": 2.3554284973333384, - "cramorant": 3.4910357017580127, - "barraskewda": 3.0249883655355383, - "toxtricity-amped": 2.5398307456632665, - "centiskorch": 1.6833627086653518, - "grapploct": 1.2190371098840154, - "polteageist": 1.6826546362162431, - "hatterene": 1.9519650974996021, - "grimmsnarl": 2.766711581719436, - "obstagoon": 1.8122455725396687, - "perrserker": 2.0359034153882143, - "alcremie": 1.3172193164901747, - "falinks": 1.881991234437221, - "pincurchin": 2.635223788890719, - "frosmoth": 2.5228497123530613, - "indeedee-male": 2.9225732264450714, - "morpeko": 2.062386133769855, - "copperajah": 1.4372632734187842, - "duraludon": 0.9569217941425812, - "drakloak": 2.624421579842909, - "chansey": 20.83869285151395 + "ivysaur": 2.865652887378726, + "charmeleon": 3.531976549684928, + "wartortle": 2.458658964256408, + "butterfree": 4.130149368537456, + "raichu": 4.408063632432337, + "raichu-alola": 3.138861187504312, + "sandslash": 1.4820790016449084, + "sandslash-alola": 1.1945687669359355, + "nidoqueen": 2.5893484122549655, + "nidoking": 1.214014248730607, + "clefairy": 8.122485832826065, + "clefable": 1.9528702796218949, + "jigglypuff": 23.9121272175778, + "wigglytuff": 1.8709424045565095, + "gloom": 5.171371092358249, + "vileplume": 2.698688563710506, + "dugtrio": 2.4293556063178565, + "dugtrio-alola": 2.0211458873776973, + "persian": 2.9524573473833313, + "persian-alola": 3.4372803959016265, + "golduck": 2.258063275458081, + "poliwrath": 1.1089354154172184, + "kadabra": 3.2668561299589927, + "machoke": 2.329337299182644, + "tentacruel": 1.8425650498588069, + "slowbro": 1.5319909315970257, + "magneton": 2.6359389237443414, + "haunter": 3.344179043007739, + "kingler": 1.5409669213343336, + "exeggutor": 1.5277959012700353, + "marowak": 2.072820971580014, + "marowak-alola": 1.216943401309061, + "hitmonlee": 1.2346127951260581, + "hitmonchan": 1.3015768914926653, + "lickitung": 1.7837956299755133, + "weezing": 1.4934771334073296, + "weezing-galar": 2.4475130762717, + "rhydon": 1.5144809593987307, + "chansey": 20.83869285151395, + "tangela": 3.440313296321627, + "kangaskhan": 1.1865746909662644, + "seadra": 4.02498309886235, + "seaking": 1.5705279740192009, + "starmie": 1.2588900199640127, + "mr-mime": 5.992682730637712, + "mr-mime-galar": 3.463066835369476, + "scyther": 1.7840497939100417, + "jynx": 3.908475803190884, + "electabuzz": 2.336022876158339, + "magmar": 1.5253684811435808, + "tauros": 1.2311987776076454, + "ditto": 57.88373112192136, + "vaporeon": 2.806896235526228, + "jolteon": 1.7360110841945406, + "flareon": 2.0966302859542894, + "porygon": 2.4829975606694497, + "dragonair": 1.3455143867052834, + "noctowl": 4.252265735946488, + "lanturn": 1.6914811159929852, + "togetic": 4.058285573346786, + "xatu": 3.5225323379693396, + "bellossom": 2.2101305444736288, + "azumarill": 1.385631930546706, + "sudowoodo": 1.50463822566616, + "politoed": 1.961261361343237, + "quagsire": 4.203016969271576, + "slowking": 1.7799087701947098, + "dunsparce": 2.575203048502879, + "qwilfish": 2.248112303831891, + "sneasel": 1.6561115049801085, + "piloswine": 1.1436185991646401, + "octillery": 1.969231480224435, + "mantine": 1.9657207460979258, + "skarmory": 1.1916984988816628, + "hitmontop": 1.5753232179763956, + "miltank": 2.374148972143514, + "grovyle": 5.703102878776546, + "sceptile": 1.1053215517861967, + "combusken": 2.432622277992608, + "blaziken": 1.0350357608336733, + "marshtomp": 1.7448632938240505, + "swampert": 1.149167681758974, + "linoone": 3.713426691741523, + "linoone-galar": 3.7459723976705406, + "pelipper": 4.559359388724152, + "ninjask": 5.079436713048205, + "exploud": 1.4695080539719783, + "lairon": 1.3695544396461234, + "manectric": 1.504677509771245, + "roselia": 3.522879100234418, + "sharpedo": 3.2638201115176235, + "wailmer": 5.0427514990788085, + "torkoal": 1.726652480724972, + "flygon": 1.7253060759031515, + "altaria": 1.4890624849169567, + "whiscash": 1.704215014070222, + "crawdaunt": 1.6035004629515384, + "claydol": 3.068592228551329, + "cradily": 1.9445605084964082, + "armaldo": 1.1443804244840148, + "dusclops": 2.32509787451961, + "absol": 1.5178541184642615, + "glalie": 2.7918497742520296, + "sealeo": 2.6946531126624285, + "relicanth": 1.2117854254766336, + "metang": 1.7075150332443485, + "luxray": 2.9161002554451394, + "vespiquen": 1.7060930928329348, + "cherrim": 5.337002442050991, + "gastrodon": 1.3808972820412406, + "drifblim": 3.1973835871780913, + "lopunny": 2.170626762960377, + "skuntank": 1.0899171276073516, + "bronzong": 1.8088849443248378, + "munchlax": 1.3935429994773387, + "drapion": 1.5813224455196728, + "abomasnow": 2.285224102397441, + "froslass": 1.975473943970733, + "rotom": 2.6879355759811903, + "stoutland": 1.607236663681503, + "liepard": 4.63648378208966, + "musharna": 1.2928784845003014, + "unfezant": 4.314745731656252, + "boldore": 1.953282943802927, + "swoobat": 5.025642630311053, + "audino": 2.1512215286901393, + "gurdurr": 1.239609879153016, + "palpitoad": 3.262919083127407, + "seismitoad": 5.887634981611397, + "scolipede": 2.0947098682082217, + "whimsicott": 2.5554941375043363, + "lilligant": 2.806387342992292, + "basculin-red-striped": 1.8397741019966976, + "basculin-blue-striped": 2.692233823272339, + "krookodile": 2.132125878534108, + "maractus": 1.8800583700694833, + "crustle": 1.1762982388281844, + "sigilyph": 2.1414731798923015, + "cofagrigus": 1.9990625662071597, + "garbodor": 1.266525444325852, + "cinccino": 3.159611425746074, + "vanillish": 2.050922024787262, + "emolga": 2.5244970755109426, + "escavalier": 1.0689230041318512, + "amoonguss": 2.302926726139556, + "jellicent": 1.0755619667665663, + "galvantula": 1.4416914128803886, + "klang": 2.2682326845476473, + "klinklang": 1.9399993810277116, + "beheeyem": 1.6500187931368886, + "lampent": 1.8205387256809153, + "fraxure": 0.9949416570143175, + "beartic": 1.424054739015684, + "cryogonal": 1.581932323405789, + "accelgor": 2.7940939618200193, + "stunfisk": 1.1772194658786352, + "stunfisk-galar": 1.8015788990114845, + "mienshao": 2.405954874956042, + "druddigon": 1.189846174136378, + "golurk": 1.0674519399401725, + "bisharp": 1.4496096661623739, + "bouffalant": 0.7571766069035573, + "heatmor": 1.5213815700497801, + "durant": 1.7970770099633913, + "diggersby": 2.1623659089827134, + "talonflame": 2.4497367815968216, + "pangoro": 1.0196774209225605, + "doublade": 1.084439181794564, + "malamar": 2.2700803831562393, + "barbaracle": 1.010682838285648, + "heliolisk": 3.174524388067305, + "tyrantrum": 0.8958482830502504, + "aurorus": 1.9039987947240058, + "hawlucha": 2.072793398464635, + "dedenne": 2.7065489731225068, + "klefki": 2.0187085213930596, + "trevenant": 1.4502505117514177, + "gourgeist-average": 4.017718475567401, + "charjabug": 2.799039282264766, + "vikavolt": 1.4625869378886023, + "ribombee": 4.208468249294283, + "lycanroc-midday": 2.190512148846824, + "lycanroc-midnight": 1.370591736238079, + "mudsdale": 0.9090464730044997, + "araquanid": 1.4663151759603905, + "lurantis": 1.9889480181112829, + "shiinotic": 4.012321487156493, + "salazzle": 2.617865157810555, + "bewear": 1.1464629970943279, + "tsareena": 2.061504404103418, + "comfey": 3.982301709382849, + "oranguru": 2.177910491505407, + "passimian": 1.389583641387543, + "palossand": 1.5668957792534546, + "pyukumuku": 38.43235465557736, + "togedemaru": 1.4578182186140878, + "mimikyu-disguised": 2.578973722167988, + "greedent": 1.3838173671299474, + "orbeetle": 1.7012214856223413, + "thievul": 1.6141826141802587, + "eldegoss": 3.5518519338228414, + "dubwool": 1.7712519392566628, + "drednaw": 0.7828134381266842, + "boltund": 3.562628341380358, + "carkol": 1.7055193335881564, + "coalossal": 1.7212196800184927, + "sandaconda": 2.344867815700155, + "cramorant": 3.468060899704555, + "barraskewda": 3.0049691876712226, + "toxtricity-amped": 2.5389152288651813, + "centiskorch": 1.6794886872248669, + "grapploct": 1.210923631423376, + "polteageist": 1.6747250938154314, + "hatterene": 1.9454639691978164, + "grimmsnarl": 2.754109568949164, + "obstagoon": 1.801707661201029, + "perrserker": 2.0239208459518405, + "alcremie": 1.316879441521417, + "falinks": 1.8669173133734132, + "pincurchin": 2.635113923876438, + "frosmoth": 2.5209967807813483, + "indeedee-male": 2.9222375461103365, + "morpeko": 2.053738668170476, + "copperajah": 1.4278991325476866, + "duraludon": 0.9521274892393168, + "drakloak": 2.6087298040769937 }, "tangela": { - "ivysaur": 2.345577340180361, - "charmeleon": 2.4166520911960556, - "wartortle": 2.9120170695286207, - "butterfree": 2.962484475358523, - "raichu": 4.752715980761215, - "raichu-alola": 3.1559384079199893, - "sandslash": 2.312791614715568, - "sandslash-alola": 1.613554025971613, - "nidoqueen": 2.169358445083634, - "nidoking": 1.7440004451145872, - "clefairy": 7.292101791817439, - "clefable": 1.6231640598449677, - "jigglypuff": 22.83232498760392, - "wigglytuff": 1.5779050077078502, - "gloom": 3.6082366239745816, - "vileplume": 2.077059473317354, - "dugtrio": 4.8740073361316405, - "dugtrio-alola": 3.4731618622925544, - "persian": 3.948050413623795, - "persian-alola": 3.599950910511761, - "golduck": 3.8126905351631413, - "poliwrath": 2.382661415219366, - "kadabra": 3.49610653277055, - "machoke": 3.7053997534449428, - "tentacruel": 2.3150136532541143, - "slowbro": 1.6463216288604707, - "magneton": 2.2695578202394877, - "haunter": 3.2691895940046214, - "kingler": 2.7381014833600723, - "exeggutor": 1.640825586938072, - "marowak": 3.632438700402746, - "marowak-alola": 1.5469901082128212, - "hitmonlee": 2.441790080485455, - "hitmonchan": 2.0527542985100853, - "lickitung": 1.472266588819374, - "weezing": 0.8641395747880202, - "weezing-galar": 1.5604299210308397, - "rhydon": 3.011062099692248, - "chansey": 24.110684235155208, - "kangaskhan": 1.8062420067727551, - "seadra": 3.9969586442204563, - "seaking": 3.086633777536104, - "starmie": 1.3912998218664359, - "mr-mime": 5.902108444295177, - "mr-mime-galar": 2.4891764061714268, - "scyther": 2.1790548170985833, - "jynx": 3.4110597796640336, - "electabuzz": 2.463262977349088, - "magmar": 0.9880810228028358, - "tauros": 1.9175221849173356, - "ditto": 4.86905652220718, - "vaporeon": 3.9540263355670873, - "jolteon": 1.7211791215444618, - "flareon": 1.4107117604766983, - "porygon": 2.284006452589885, - "dragonair": 1.3572634059420294, - "noctowl": 4.496570259557531, - "lanturn": 2.491578095957374, - "togetic": 3.716235289123091, - "xatu": 2.471430795645774, - "bellossom": 1.7691746544399454, - "azumarill": 1.8783496782593598, - "sudowoodo": 2.8504264335203393, - "politoed": 3.2206984733690596, - "quagsire": 6.962546496225752, - "slowking": 2.936087769663002, - "dunsparce": 2.501726696557097, - "qwilfish": 3.0530908640460743, - "sneasel": 2.121848219956224, - "piloswine": 1.4320661110852506, - "octillery": 2.485035947985579, - "mantine": 2.111517813674102, - "skarmory": 1.3671709594799546, - "hitmontop": 2.58708288086125, - "miltank": 3.304642616004836, - "grovyle": 6.944772177263758, - "sceptile": 1.221981435863706, - "combusken": 2.323292866902435, - "blaziken": 1.1842098317532677, - "marshtomp": 4.3664397427001385, - "swampert": 1.7497668533554407, - "linoone": 4.81124253239235, - "linoone-galar": 4.0377737978910835, - "pelipper": 4.9363192728362595, - "ninjask": 5.8377568502402095, - "exploud": 1.1608287396107997, - "lairon": 2.1058193113723425, - "manectric": 1.4262046941673079, - "roselia": 3.236729280191067, - "sharpedo": 6.281974679320781, - "wailmer": 7.677853937464425, - "torkoal": 0.9806115405512168, - "flygon": 2.033975045751592, - "altaria": 1.014980217068658, - "whiscash": 3.3511152662870622, - "crawdaunt": 2.24472437138572, - "claydol": 3.4407284118671786, - "cradily": 1.8504710286680361, - "armaldo": 1.6892418756630039, - "dusclops": 2.9073928063463805, - "absol": 1.5146116023029357, - "glalie": 3.7917955564509604, - "sealeo": 3.1901320752066438, - "relicanth": 2.715381746029444, - "metang": 2.400295985498563, - "luxray": 3.626826613357109, - "vespiquen": 2.1463027195550493, - "cherrim": 4.696732015659928, - "gastrodon": 3.9383686667163804, - "drifblim": 3.1870427525347456, - "lopunny": 3.4881232776431244, - "skuntank": 0.9859017441388046, - "bronzong": 2.55393242666978, - "munchlax": 2.2645594018835986, - "drapion": 1.8989286950404312, - "abomasnow": 2.65926809805255, - "froslass": 2.233503481350219, - "rotom": 3.1972112280328906, - "stoutland": 2.2468622530050952, - "liepard": 6.788600940260449, - "musharna": 1.3580125877269595, - "unfezant": 4.656838126917891, - "boldore": 3.434959414303476, - "swoobat": 3.5395286426586505, - "audino": 1.6411815066130355, - "gurdurr": 2.063327982303869, - "palpitoad": 6.264753414831871, - "seismitoad": 7.794816295469303, - "scolipede": 2.49049897734557, - "whimsicott": 2.3632585765512486, - "lilligant": 2.2031745568179364, - "basculin-red-striped": 3.4154898403952236, - "basculin-blue-striped": 4.400214378987261, - "krookodile": 3.3199272478761603, - "maractus": 1.861176942237285, - "crustle": 1.7811530356949823, - "sigilyph": 1.5373637040341055, - "cofagrigus": 1.9940980258999126, - "garbodor": 1.3582211398516468, - "cinccino": 4.034697652840806, - "vanillish": 1.4320823771671791, - "emolga": 2.4600072166722375, - "escavalier": 1.4071841861594168, - "amoonguss": 1.6630202617810843, - "jellicent": 1.6026066734300146, - "galvantula": 1.199280436475287, - "klang": 1.9908914044160875, - "klinklang": 2.6727277926419593, - "beheeyem": 1.5005759920919255, - "lampent": 1.2943036489313582, - "fraxure": 1.2722718679449878, - "beartic": 1.1919830292646825, - "cryogonal": 1.2348864468580005, - "accelgor": 1.695568624971361, - "stunfisk": 1.5745369839122363, - "stunfisk-galar": 2.088217073844252, - "mienshao": 3.062086739431737, - "druddigon": 1.5431720731068483, - "golurk": 2.286042764936943, - "bisharp": 1.8933807233319064, - "bouffalant": 1.1068203797656395, - "heatmor": 1.2848628913697868, - "durant": 2.1207193366434827, - "diggersby": 4.051327383605317, - "talonflame": 1.8245772042847177, - "pangoro": 1.678345569659851, - "doublade": 1.6827193127540543, - "malamar": 2.5076189768159294, - "barbaracle": 1.953823701674057, - "heliolisk": 3.3914231095193146, - "tyrantrum": 1.4143330625306563, - "aurorus": 2.630034439939659, - "hawlucha": 2.8707639543510757, - "dedenne": 2.410177168848143, - "klefki": 2.2357129959850357, - "trevenant": 2.605060641049649, - "gourgeist-average": 3.3974361026435975, - "charjabug": 3.4683897295420247, - "vikavolt": 1.2059238234144676, - "ribombee": 2.9151359833871364, - "lycanroc-midday": 3.917521625850534, - "lycanroc-midnight": 2.83595946289724, - "mudsdale": 1.886182836781391, - "araquanid": 2.2396603773540655, - "lurantis": 1.8719833788713298, - "shiinotic": 3.26092727632298, - "salazzle": 2.1525530036561613, - "bewear": 1.660269745768682, - "tsareena": 2.6784068127712946, - "comfey": 4.003845157652998, - "oranguru": 2.356722356230913, - "passimian": 2.071750183671977, - "palossand": 2.048158817838838, - "pyukumuku": 44.369350302335064, - "togedemaru": 1.8363130005402089, - "mimikyu-disguised": 4.0155262605236555, - "greedent": 2.0012615271394965, - "orbeetle": 1.1518920470766472, - "thievul": 1.4436264723993073, - "eldegoss": 3.241630785812663, - "dubwool": 2.872040397250581, - "drednaw": 1.9823422987534804, - "boltund": 4.478172648172326, - "carkol": 1.858237464547665, - "coalossal": 1.4590017486795697, - "sandaconda": 3.228902427954556, - "cramorant": 5.8348872945822645, - "barraskewda": 5.633592801852925, - "toxtricity-amped": 1.9223229721980282, - "centiskorch": 1.4162833714568035, - "grapploct": 1.5298455227914243, - "polteageist": 2.6623898728794955, - "hatterene": 2.191096129967091, - "grimmsnarl": 3.3422151889354073, - "obstagoon": 2.3900994344345743, - "perrserker": 2.5296032394184227, - "alcremie": 1.1729144226094415, - "falinks": 2.7181337948720095, - "pincurchin": 2.7238084242279976, - "frosmoth": 1.52654875313271, - "indeedee-male": 2.5591866302800215, - "morpeko": 2.530288968010817, - "copperajah": 1.8016726815651252, - "duraludon": 1.1070299604987033, - "drakloak": 3.425861977482859, - "tangela": 4.207597962630357 + "ivysaur": 2.3351981606069754, + "charmeleon": 2.4008943107126113, + "wartortle": 2.9107673745922265, + "butterfree": 2.9415171993027887, + "raichu": 4.750196534330209, + "raichu-alola": 3.150308151742011, + "sandslash": 2.315199818917407, + "sandslash-alola": 1.6094619486233355, + "nidoqueen": 2.161922333243525, + "nidoking": 1.74452635810927, + "clefairy": 7.269191138166141, + "clefable": 1.6203301943503368, + "jigglypuff": 22.784730249855688, + "wigglytuff": 1.5737125346897134, + "gloom": 3.5834682162790656, + "vileplume": 2.0663753436741015, + "dugtrio": 4.890604528815376, + "dugtrio-alola": 3.477307765638807, + "persian": 3.9443095627502816, + "persian-alola": 3.5963220009783856, + "golduck": 3.8212726471309226, + "poliwrath": 2.389359908843157, + "kadabra": 3.4909720264917543, + "machoke": 3.707329510646548, + "tentacruel": 2.3153600366375304, + "slowbro": 1.642273425837307, + "magneton": 2.261574512333701, + "haunter": 3.258231252490637, + "kingler": 2.743834000765321, + "exeggutor": 1.637847961244003, + "marowak": 3.640930347516865, + "marowak-alola": 1.543158130562558, + "hitmonlee": 2.4438469314325246, + "hitmonchan": 2.0527896757351507, + "lickitung": 1.4680288165408695, + "weezing": 0.857670115747837, + "weezing-galar": 1.5501615160482154, + "rhydon": 3.0182425334804437, + "chansey": 24.061000350593794, + "tangela": 4.207597962630357, + "kangaskhan": 1.8071644719612794, + "seadra": 3.991554532202592, + "seaking": 3.0938755610503685, + "starmie": 1.3899321234307882, + "mr-mime": 5.888493890510368, + "mr-mime-galar": 2.4789338875490428, + "scyther": 2.1725876953915266, + "jynx": 3.394865782404816, + "electabuzz": 2.4617726809307023, + "magmar": 0.9817849220006272, + "tauros": 1.918489712706005, + "ditto": 4.834255476114079, + "vaporeon": 3.9584419232224555, + "jolteon": 1.7193166035723095, + "flareon": 1.404858667728487, + "porygon": 2.27721057358995, + "dragonair": 1.3536483259348189, + "noctowl": 4.481843555256997, + "lanturn": 2.4978769077020466, + "togetic": 3.699843259628235, + "xatu": 2.4562887203702095, + "bellossom": 1.765098598100942, + "azumarill": 1.865320635373124, + "sudowoodo": 2.8547798194315392, + "politoed": 3.227201836656898, + "quagsire": 6.977533354012176, + "slowking": 2.9384834471035575, + "dunsparce": 2.4922601397863353, + "qwilfish": 3.051804560074868, + "sneasel": 2.119800060693187, + "piloswine": 1.4310777514812183, + "octillery": 2.4830931011862996, + "mantine": 2.1071054722987896, + "skarmory": 1.3627366886670764, + "hitmontop": 2.5882965743830644, + "miltank": 3.3037924957548297, + "grovyle": 6.9388962218502375, + "sceptile": 1.2202386876864124, + "combusken": 2.312861572697641, + "blaziken": 1.1799172652582752, + "marshtomp": 4.384987563450163, + "swampert": 1.7533365678986024, + "linoone": 4.808211257387267, + "linoone-galar": 4.033407457525065, + "pelipper": 4.923264072189889, + "ninjask": 5.816310198224841, + "exploud": 1.1564071545233303, + "lairon": 2.1034760284631777, + "manectric": 1.4220613539860658, + "roselia": 3.227185258899324, + "sharpedo": 6.297206329337392, + "wailmer": 7.68739331903806, + "torkoal": 0.9746079585389154, + "flygon": 2.0299257129919814, + "altaria": 1.0095900328707377, + "whiscash": 3.3597889626740924, + "crawdaunt": 2.2474933246388433, + "claydol": 3.4357085960195017, + "cradily": 1.8442268021826904, + "armaldo": 1.6880129452889356, + "dusclops": 2.9015725056785326, + "absol": 1.5104990501384337, + "glalie": 3.787931225157452, + "sealeo": 3.184830004050836, + "relicanth": 2.723709061023797, + "metang": 2.3982879192768793, + "luxray": 3.626896224297366, + "vespiquen": 2.1391785249290596, + "cherrim": 4.68517331831422, + "gastrodon": 3.9548685436150874, + "drifblim": 3.175818031688766, + "lopunny": 3.487563464442722, + "skuntank": 0.9828425111426828, + "bronzong": 2.5517743471367353, + "munchlax": 2.2649537552870243, + "drapion": 1.8961023043187644, + "abomasnow": 2.652648224436614, + "froslass": 2.224104672502667, + "rotom": 3.1922119345049413, + "stoutland": 2.245086362123681, + "liepard": 6.7917107281861915, + "musharna": 1.3557690121458812, + "unfezant": 4.642128293357898, + "boldore": 3.4384782988357014, + "swoobat": 3.517945865158658, + "audino": 1.6343099256127425, + "gurdurr": 2.064195206618716, + "palpitoad": 6.283123844743699, + "seismitoad": 7.773632600863821, + "scolipede": 2.4832616197964286, + "whimsicott": 2.355528694530559, + "lilligant": 2.193759025411468, + "basculin-red-striped": 3.4233757766602997, + "basculin-blue-striped": 4.410128705362267, + "krookodile": 3.3255789106066227, + "maractus": 1.8592458705470196, + "crustle": 1.778773805079317, + "sigilyph": 1.528511558284824, + "cofagrigus": 1.9868753298451978, + "garbodor": 1.3518063227956716, + "cinccino": 4.028117629431919, + "vanillish": 1.4239319669883643, + "emolga": 2.4559820835458526, + "escavalier": 1.4050101289915011, + "amoonguss": 1.65237120691003, + "jellicent": 1.6025648763223277, + "galvantula": 1.1944330327543076, + "klang": 1.9843429114911346, + "klinklang": 2.6691478471122365, + "beheeyem": 1.4962130490993912, + "lampent": 1.286113270264611, + "fraxure": 1.2700549571368616, + "beartic": 1.187337475478269, + "cryogonal": 1.2297583117987712, + "accelgor": 1.6828936144585809, + "stunfisk": 1.5773787116892664, + "stunfisk-galar": 2.087248777315349, + "mienshao": 3.0597789516360594, + "druddigon": 1.5419355907783292, + "golurk": 2.2904186164892275, + "bisharp": 1.8893370018603253, + "bouffalant": 1.1022404154672434, + "heatmor": 1.2789016613253748, + "durant": 2.113994215281454, + "diggersby": 4.062943545635569, + "talonflame": 1.8120790440635768, + "pangoro": 1.679093274852049, + "doublade": 1.6786402471075772, + "malamar": 2.50405669768504, + "barbaracle": 1.9566774102833844, + "heliolisk": 3.3887005267327948, + "tyrantrum": 1.4134209061597578, + "aurorus": 2.627474039839139, + "hawlucha": 2.8661613887578614, + "dedenne": 2.408092268710169, + "klefki": 2.23036652948527, + "trevenant": 2.604295843724226, + "gourgeist-average": 3.379810572475955, + "charjabug": 3.470474126686425, + "vikavolt": 1.199649803526414, + "ribombee": 2.896339635661718, + "lycanroc-midday": 3.922451723267911, + "lycanroc-midnight": 2.841017557345931, + "mudsdale": 1.8906345522146637, + "araquanid": 2.2397839364738417, + "lurantis": 1.866243215662601, + "shiinotic": 3.2478730140351804, + "salazzle": 2.1365051156488315, + "bewear": 1.6596874926461063, + "tsareena": 2.676196840887251, + "comfey": 4.000314819917974, + "oranguru": 2.35189018420785, + "passimian": 2.070878447738818, + "palossand": 2.046281024862113, + "pyukumuku": 44.35488213023743, + "togedemaru": 1.8334873314241755, + "mimikyu-disguised": 4.01730050144545, + "greedent": 2.001074125564366, + "orbeetle": 1.14588541616851, + "thievul": 1.4412567631509554, + "eldegoss": 3.2351336037993907, + "dubwool": 2.873225709736822, + "drednaw": 1.9883452200491436, + "boltund": 4.4794866347961175, + "carkol": 1.8480051420908725, + "coalossal": 1.4520557172525186, + "sandaconda": 3.2295281680389367, + "cramorant": 5.845538030263041, + "barraskewda": 5.647205073930335, + "toxtricity-amped": 1.917026084438751, + "centiskorch": 1.4082350131130674, + "grapploct": 1.52872373569918, + "polteageist": 2.662228480459423, + "hatterene": 2.1878515032180443, + "grimmsnarl": 3.337357385696311, + "obstagoon": 2.3891263422726645, + "perrserker": 2.526080524817581, + "alcremie": 1.1701483751769657, + "falinks": 2.715427012421939, + "pincurchin": 2.723367842805833, + "frosmoth": 1.5161802684738492, + "indeedee-male": 2.5496103127899867, + "morpeko": 2.5290539929241094, + "copperajah": 1.7972386072663067, + "duraludon": 1.1044257342708648, + "drakloak": 3.4166232567190793 }, "kangaskhan": { - "ivysaur": 3.513341020421371, - "charmeleon": 4.569351059181445, - "wartortle": 2.856414765077349, - "butterfree": 5.150557399204445, - "raichu": 6.005518896165755, - "raichu-alola": 4.36988834502198, - "sandslash": 2.087421548158316, - "sandslash-alola": 1.9705159171142337, - "nidoqueen": 3.2867189223708104, - "nidoking": 2.096236548812552, - "clefairy": 10.383044584164576, - "clefable": 2.327698216157684, - "jigglypuff": 29.843344299877714, - "wigglytuff": 2.2080268245875363, - "gloom": 6.115037288387462, - "vileplume": 3.1822033908215897, - "dugtrio": 4.12423932985886, - "dugtrio-alola": 3.8814116286758336, - "persian": 4.6122690264588435, - "persian-alola": 4.626217695804804, - "golduck": 3.291676427105185, - "poliwrath": 1.9178395007098776, - "kadabra": 5.011183344184032, - "machoke": 3.8634190975957625, - "tentacruel": 3.0158251535994616, - "slowbro": 1.904355062220091, - "magneton": 4.468394800837025, - "haunter": 5.830861800606803, - "kingler": 2.239436495103601, - "exeggutor": 2.1239378200395884, - "marowak": 3.119469627685133, - "marowak-alola": 2.3777100866744183, - "hitmonlee": 2.5854586620721536, - "hitmonchan": 2.3364242626308735, - "lickitung": 2.052277679994516, - "weezing": 1.650510461849973, - "weezing-galar": 2.7376827538017547, - "rhydon": 2.2361386108398853, - "chansey": 32.966497990780496, - "tangela": 4.5412947937107555, - "seadra": 4.023980417709054, - "seaking": 2.6945365200084472, - "starmie": 1.6363127434905662, - "mr-mime": 7.968944289889314, - "mr-mime-galar": 4.297587749330694, - "scyther": 2.866764903550424, - "jynx": 5.556057844189487, - "electabuzz": 3.1665810705655337, - "magmar": 2.066783575583897, - "tauros": 1.9807655878195094, - "ditto": 2.976306914114593, - "vaporeon": 3.682162817363328, - "jolteon": 2.492999686554298, - "flareon": 3.1598561921522257, - "porygon": 3.0054845506900896, - "dragonair": 2.4629792336169816, - "noctowl": 6.77902913912326, - "lanturn": 2.36776579313649, - "togetic": 5.889839047040828, - "xatu": 4.332502531582706, - "bellossom": 2.5195057422230147, - "azumarill": 2.4439681011363072, - "sudowoodo": 2.5391110335991334, - "politoed": 2.8546996984024986, - "quagsire": 4.544397624017935, - "slowking": 2.930187804235805, - "dunsparce": 3.589677074475287, - "qwilfish": 3.642365469194495, - "sneasel": 2.467547550314637, - "piloswine": 1.5686916473177872, - "octillery": 2.519126205694729, - "mantine": 2.922673121679119, - "skarmory": 1.6892683529015264, - "hitmontop": 2.7737123077689882, - "miltank": 3.595688051594495, - "grovyle": 8.502900990404838, - "sceptile": 1.565633901425473, - "combusken": 3.546832353970803, - "blaziken": 1.77145684598975, - "marshtomp": 2.660646073156157, - "swampert": 1.3464382066344898, - "linoone": 5.7827157276055425, - "linoone-galar": 4.966658460061057, - "pelipper": 6.1385644780160735, - "ninjask": 8.044823918826225, - "exploud": 1.7297126631881334, - "lairon": 2.808149658808452, - "manectric": 2.0499053410333063, - "roselia": 4.592836806497914, - "sharpedo": 5.370724627742675, - "wailmer": 7.035536767203981, - "torkoal": 1.9157317422087647, - "flygon": 3.058841348370705, - "altaria": 2.139038191597076, - "whiscash": 2.2157149681051744, - "crawdaunt": 2.025377575614868, - "claydol": 3.821974016486782, - "cradily": 2.278619230606311, - "armaldo": 1.7933492691967996, - "dusclops": 4.344050130354376, - "absol": 2.1090771961635055, - "glalie": 4.398040106410761, - "sealeo": 3.386927609490841, - "relicanth": 1.9164256328479432, - "metang": 3.2670219225943273, - "luxray": 4.38149189992131, - "vespiquen": 2.8063810020260065, - "cherrim": 6.2810422519938935, - "gastrodon": 2.367969183216196, - "drifblim": 5.0620609860688575, - "lopunny": 3.8277767728885546, - "skuntank": 1.6653945911224828, - "bronzong": 3.650262441796345, - "munchlax": 2.6733317905067038, - "drapion": 2.610509463884487, - "abomasnow": 3.400756460124013, - "froslass": 3.4885132558452785, - "rotom": 4.696408537920217, - "stoutland": 2.564729518572008, - "liepard": 7.502241725923836, - "musharna": 1.7699426691359101, - "unfezant": 6.364114716175829, - "boldore": 3.0873353741774516, - "swoobat": 6.192927505544021, - "audino": 2.416029512199636, - "gurdurr": 2.0017926997620537, - "palpitoad": 4.075055938488486, - "seismitoad": 6.804664931643186, - "scolipede": 3.258628491915176, - "whimsicott": 3.288044194839447, - "lilligant": 3.2397298533434946, - "basculin-red-striped": 2.940718102084629, - "basculin-blue-striped": 3.8072395395455016, - "krookodile": 2.959039334712503, - "maractus": 2.3564989229173103, - "crustle": 1.8454752813147435, - "sigilyph": 2.628551096946454, - "cofagrigus": 3.0819902359940423, - "garbodor": 2.055810422732026, - "cinccino": 4.885888700050353, - "vanillish": 2.347248761486502, - "emolga": 3.282680107753636, - "escavalier": 1.687591036855073, - "amoonguss": 2.7545719384491054, - "jellicent": 1.9764970561961817, - "galvantula": 1.703286450416326, - "klang": 3.007931166343922, - "klinklang": 3.509412801481456, - "beheeyem": 2.1228061911956724, - "lampent": 3.0325041990769472, - "fraxure": 1.8938861721740736, - "beartic": 1.805857445703507, - "cryogonal": 2.109697543710217, - "accelgor": 3.4785029980872126, - "stunfisk": 1.5064737670051351, - "stunfisk-galar": 2.4538159353790827, - "mienshao": 3.439004642891823, - "druddigon": 2.3623407007989776, - "golurk": 2.124466045036526, - "bisharp": 2.5128805726992276, - "bouffalant": 1.3344697151903653, - "heatmor": 2.193296147092765, - "durant": 2.522823356888672, - "diggersby": 3.4244006047142443, - "talonflame": 3.116946586684116, - "pangoro": 1.7413640903457952, - "doublade": 2.1626461294215567, - "malamar": 2.941974907050237, - "barbaracle": 1.5659242825396276, - "heliolisk": 4.572633853253265, - "tyrantrum": 1.691633791049705, - "aurorus": 2.7694627261141207, - "hawlucha": 3.458321904417651, - "dedenne": 3.515797194152573, - "klefki": 3.4072013705896387, - "trevenant": 3.321423920930078, - "gourgeist-average": 5.881479139398957, - "charjabug": 4.093839818881253, - "vikavolt": 1.9198067250919406, - "ribombee": 5.109195678535807, - "lycanroc-midday": 3.7483633108730308, - "lycanroc-midnight": 2.557939662980279, - "mudsdale": 1.5294352147847479, - "araquanid": 2.668516125002657, - "lurantis": 2.5487466942790884, - "shiinotic": 4.8617019861384305, - "salazzle": 4.653980738451516, - "bewear": 1.8074719059486943, - "tsareena": 3.2839411762770876, - "comfey": 4.949463856908446, - "oranguru": 3.1886372674135988, - "passimian": 2.2033131971017883, - "palossand": 2.2878926967918236, - "pyukumuku": 44.58041275276484, - "togedemaru": 3.5050544377290067, - "mimikyu-disguised": 4.229967706204193, - "greedent": 2.1889197010572916, - "orbeetle": 2.07688727236393, - "thievul": 2.0851573619889145, - "eldegoss": 4.312814259793708, - "dubwool": 2.9594487891000174, - "drednaw": 1.3742455616827636, - "boltund": 5.412306773064669, - "carkol": 3.220229525853278, - "coalossal": 2.6115077302097456, - "sandaconda": 3.038575121389779, - "cramorant": 6.337918881760933, - "barraskewda": 4.80356104864699, - "toxtricity-amped": 3.99635677099044, - "centiskorch": 2.2879441572138344, - "grapploct": 1.6492936354075518, - "polteageist": 3.4144606995242492, - "hatterene": 2.7160806294400768, - "grimmsnarl": 4.058993396562017, - "obstagoon": 2.61030457325141, - "perrserker": 3.279876889283793, - "alcremie": 1.6944134150385854, - "falinks": 2.919283663120824, - "pincurchin": 3.310624591447175, - "frosmoth": 2.9618129812966822, - "indeedee-male": 4.087556424606015, - "morpeko": 3.1388062617352226, - "copperajah": 2.539213431889362, - "duraludon": 1.55951642833071, - "drakloak": 6.334300495059582, - "kangaskhan": 1.968435453697455 + "ivysaur": 3.521108222500447, + "charmeleon": 4.581260998347848, + "wartortle": 2.861021625439646, + "butterfree": 5.158521010288537, + "raichu": 6.017962463655147, + "raichu-alola": 4.384073350948459, + "sandslash": 2.0890873968340986, + "sandslash-alola": 1.9693210745476626, + "nidoqueen": 3.296875113795501, + "nidoking": 2.1013275075337177, + "clefairy": 10.393092428141983, + "clefable": 2.329418287646782, + "jigglypuff": 29.86095876557345, + "wigglytuff": 2.2086563652877222, + "gloom": 6.126357069958408, + "vileplume": 3.188470939838103, + "dugtrio": 4.134531988880266, + "dugtrio-alola": 3.8873783640856985, + "persian": 4.619455408590326, + "persian-alola": 4.633052251827577, + "golduck": 3.2977584885892903, + "poliwrath": 1.918955914617754, + "kadabra": 5.026940864262469, + "machoke": 3.865265674912122, + "tentacruel": 3.0257669986150915, + "slowbro": 1.9077694836215815, + "magneton": 4.474814389226815, + "haunter": 5.849514213846501, + "kingler": 2.239002788747395, + "exeggutor": 2.1270791226263674, + "marowak": 3.1237548842564946, + "marowak-alola": 2.384500640181904, + "hitmonlee": 2.587468990379943, + "hitmonchan": 2.339983085002411, + "lickitung": 2.0556991416783155, + "weezing": 1.65295774529482, + "weezing-galar": 2.7386705502943487, + "rhydon": 2.2354655640749574, + "chansey": 33.06412450991136, + "tangela": 4.540717573222068, + "kangaskhan": 1.968435453697455, + "seadra": 4.026237383412154, + "seaking": 2.700825239067128, + "starmie": 1.6403199212147968, + "mr-mime": 7.978203075014049, + "mr-mime-galar": 4.306959857533496, + "scyther": 2.8699658221897746, + "jynx": 5.573058657082043, + "electabuzz": 3.175070352171499, + "magmar": 2.072704007332787, + "tauros": 1.9821057320890327, + "ditto": 2.964168959692617, + "vaporeon": 3.6922481847982853, + "jolteon": 2.5028559108243362, + "flareon": 3.173160816039351, + "porygon": 3.0106430150984527, + "dragonair": 2.4700247543617238, + "noctowl": 6.793158508317161, + "lanturn": 2.375614143692798, + "togetic": 5.891504758847488, + "xatu": 4.341059267462467, + "bellossom": 2.523387406676759, + "azumarill": 2.447228323735287, + "sudowoodo": 2.539319955956933, + "politoed": 2.8614654105593216, + "quagsire": 4.54720900391709, + "slowking": 2.9382720948577687, + "dunsparce": 3.5990027394268145, + "qwilfish": 3.6485858794262978, + "sneasel": 2.470388085718925, + "piloswine": 1.5695180651987228, + "octillery": 2.52388052685491, + "mantine": 2.9307143022740414, + "skarmory": 1.688952247149726, + "hitmontop": 2.7761103530705857, + "miltank": 3.599236480412391, + "grovyle": 8.513064124806954, + "sceptile": 1.568528620613363, + "combusken": 3.549012498940713, + "blaziken": 1.7735978624265818, + "marshtomp": 2.6660501982909977, + "swampert": 1.349310527615708, + "linoone": 5.797218348871388, + "linoone-galar": 4.971880450145363, + "pelipper": 6.142967936936269, + "ninjask": 8.05451154295726, + "exploud": 1.731709776046376, + "lairon": 2.8087191517085914, + "manectric": 2.0553466692951368, + "roselia": 4.604575641173386, + "sharpedo": 5.377960670969632, + "wailmer": 7.0500197771419035, + "torkoal": 1.9183863742135228, + "flygon": 3.0659268215651254, + "altaria": 2.1445236730236124, + "whiscash": 2.219778556297088, + "crawdaunt": 2.02686001084757, + "claydol": 3.829118926107911, + "cradily": 2.28107908941364, + "armaldo": 1.7950581139475124, + "dusclops": 4.361523285038434, + "absol": 2.1122175741747355, + "glalie": 4.404526222950797, + "sealeo": 3.3924745365182094, + "relicanth": 1.9169944615604189, + "metang": 3.272426558897032, + "luxray": 4.390820828892524, + "vespiquen": 2.8081502997162273, + "cherrim": 6.290374635529772, + "gastrodon": 2.373046191542041, + "drifblim": 5.068188119278206, + "lopunny": 3.8320194002350076, + "skuntank": 1.669387649634733, + "bronzong": 3.6552172047839386, + "munchlax": 2.6805764830542125, + "drapion": 2.6154227981939746, + "abomasnow": 3.4039207396063933, + "froslass": 3.4975258115389725, + "rotom": 4.71163742298848, + "stoutland": 2.5680239997953134, + "liepard": 7.5137422264265386, + "musharna": 1.7742758576987683, + "unfezant": 6.371763998797151, + "boldore": 3.086179972816848, + "swoobat": 6.205071996178686, + "audino": 2.4200367692018223, + "gurdurr": 2.000016172885355, + "palpitoad": 4.083503185808083, + "seismitoad": 6.814372685990449, + "scolipede": 3.2634983376691458, + "whimsicott": 3.2879118274928807, + "lilligant": 3.244485287386163, + "basculin-red-striped": 2.9457257561295083, + "basculin-blue-striped": 3.8138902322807517, + "krookodile": 2.9627199643641258, + "maractus": 2.3607623335622696, + "crustle": 1.8451449497204968, + "sigilyph": 2.6336207102655207, + "cofagrigus": 3.091569588197121, + "garbodor": 2.059072477751775, + "cinccino": 4.89359814845295, + "vanillish": 2.3508308394265782, + "emolga": 3.2888437623891633, + "escavalier": 1.6892187315491578, + "amoonguss": 2.759897841320042, + "jellicent": 1.981547150861604, + "galvantula": 1.7066400935541428, + "klang": 3.011878357505469, + "klinklang": 3.512309144106143, + "beheeyem": 2.12836958562488, + "lampent": 3.0402688985829656, + "fraxure": 1.8980908287473754, + "beartic": 1.807331853576174, + "cryogonal": 2.1143672906541133, + "accelgor": 3.485243467004182, + "stunfisk": 1.5101011461091918, + "stunfisk-galar": 2.456467666799664, + "mienshao": 3.4411111565772288, + "druddigon": 2.3696402311671134, + "golurk": 2.1279335857085813, + "bisharp": 2.513633350370422, + "bouffalant": 1.3364032296467279, + "heatmor": 2.1995233575369024, + "durant": 2.5218428669575284, + "diggersby": 3.430438269849804, + "talonflame": 3.1220433267698393, + "pangoro": 1.7415592393585322, + "doublade": 2.1618594077422406, + "malamar": 2.9457544628070926, + "barbaracle": 1.5667315975914058, + "heliolisk": 4.58644576448522, + "tyrantrum": 1.692813712733685, + "aurorus": 2.7719790952340357, + "hawlucha": 3.4577989074800533, + "dedenne": 3.5197490118419887, + "klefki": 3.40940762735279, + "trevenant": 3.3233354557595036, + "gourgeist-average": 5.896100121960958, + "charjabug": 4.101145602754848, + "vikavolt": 1.9226691244695537, + "ribombee": 5.1100275479821295, + "lycanroc-midday": 3.7539519958500587, + "lycanroc-midnight": 2.559992946700505, + "mudsdale": 1.530045398269577, + "araquanid": 2.6751634471371375, + "lurantis": 2.552032724709245, + "shiinotic": 4.861918764683579, + "salazzle": 4.6664235728176795, + "bewear": 1.808484706079394, + "tsareena": 3.2889983721207634, + "comfey": 4.953213307640681, + "oranguru": 3.197050243309085, + "passimian": 2.2034031034419006, + "palossand": 2.293169496212445, + "pyukumuku": 44.61615601575423, + "togedemaru": 3.5116256918926325, + "mimikyu-disguised": 4.236303076844646, + "greedent": 2.1915657597292038, + "orbeetle": 2.0808292489616482, + "thievul": 2.0890589129703008, + "eldegoss": 4.320339635271634, + "dubwool": 2.961014850752841, + "drednaw": 1.3753593613706139, + "boltund": 5.4253514070016955, + "carkol": 3.2255629624360576, + "coalossal": 2.61534982212679, + "sandaconda": 3.041140846235182, + "cramorant": 6.351841141571747, + "barraskewda": 4.811248185631953, + "toxtricity-amped": 4.005534416187035, + "centiskorch": 2.2931099410256026, + "grapploct": 1.6484655478877954, + "polteageist": 3.422745926755794, + "hatterene": 2.718159578850357, + "grimmsnarl": 4.057561454120789, + "obstagoon": 2.611902084801109, + "perrserker": 3.2824848200922063, + "alcremie": 1.6961848876234078, + "falinks": 2.9184163208900586, + "pincurchin": 3.3180439668903485, + "frosmoth": 2.965394057462893, + "indeedee-male": 4.103676423512582, + "morpeko": 3.1446902856029837, + "copperajah": 2.5408126734721956, + "duraludon": 1.561323039188249, + "drakloak": 6.358741270284511 }, "seadra": { - "ivysaur": 2.1118340216183236, - "charmeleon": 5.133174385258441, - "wartortle": 2.47827128444575, - "butterfree": 3.544434836309337, - "raichu": 3.8435240944259395, - "raichu-alola": 2.5950393566304353, - "sandslash": 3.3709213602981754, - "sandslash-alola": 2.2909988039596687, - "nidoqueen": 3.352083557853248, - "nidoking": 2.5446178115514715, - "clefairy": 7.79829448294927, - "clefable": 1.7147064922405963, - "jigglypuff": 24.209429721455287, - "wigglytuff": 1.7222865090398765, - "gloom": 4.4895127356215525, - "vileplume": 2.0527835020202745, - "dugtrio": 4.641054079744216, - "dugtrio-alola": 4.800005671585833, - "persian": 4.149965655260244, - "persian-alola": 3.847809252328745, - "golduck": 2.8877831454029472, - "poliwrath": 1.813064437584352, - "kadabra": 3.1801493895736987, - "machoke": 4.103291478731056, - "tentacruel": 2.0408419395095594, - "slowbro": 1.572750916215254, - "magneton": 2.8193186014545093, - "haunter": 3.6094685717465134, - "kingler": 2.582931541275484, - "exeggutor": 1.5258865398008314, - "marowak": 4.569732921569584, - "marowak-alola": 3.3031122706160336, - "hitmonlee": 2.2822410617356494, - "hitmonchan": 2.1097422271750244, - "lickitung": 1.8238631266513745, - "weezing": 1.6393584720912555, - "weezing-galar": 2.6725895221942935, - "rhydon": 5.353161003472127, - "chansey": 17.048177910835864, - "tangela": 4.436133412670462, - "kangaskhan": 1.890548895057006, - "seaking": 2.267670810558803, - "starmie": 1.2346151059083028, - "mr-mime": 5.59843093979203, - "mr-mime-galar": 3.423204955040391, - "scyther": 2.7616579223460347, - "jynx": 3.4965760846379106, - "electabuzz": 1.67534295837901, - "magmar": 2.087760695723849, - "tauros": 2.1673380066421277, - "ditto": 4.099486210717748, - "vaporeon": 2.6504268813047416, - "jolteon": 1.474992323882243, - "flareon": 2.8234387969615415, - "porygon": 2.4673970564525547, - "dragonair": 2.0321466393760144, - "noctowl": 5.060284174273933, - "lanturn": 1.4772129355881543, - "togetic": 5.359362583920158, - "xatu": 3.4391538200525167, - "bellossom": 1.656546937298295, - "azumarill": 1.9719814557945725, - "sudowoodo": 3.8319547616146172, - "politoed": 2.1697183349930946, - "quagsire": 4.761370659387031, - "slowking": 2.1999410901749137, - "dunsparce": 3.286690295571521, - "qwilfish": 3.4517198998158793, - "sneasel": 2.2073645643565083, - "piloswine": 2.2982933326532295, - "octillery": 2.134146889066861, - "mantine": 1.9907181059094026, - "skarmory": 2.4214252755843386, - "hitmontop": 2.770346163240807, - "miltank": 3.8795302583263798, - "grovyle": 5.457169422684313, - "sceptile": 1.0433001993175512, - "combusken": 4.4400920602048926, - "blaziken": 2.306385847624256, - "marshtomp": 2.6911843660759764, - "swampert": 1.2617360236353918, - "linoone": 5.305935717044413, - "linoone-galar": 4.358020124662557, - "pelipper": 5.44546789323279, - "ninjask": 7.438787732916667, - "exploud": 1.5124273469298046, - "lairon": 4.084898196041474, - "manectric": 1.5852338095959813, - "roselia": 2.620387777826901, - "sharpedo": 4.747049190292774, - "wailmer": 6.16944924731451, - "torkoal": 3.0342144118003818, - "flygon": 2.6470584659564205, - "altaria": 1.6414602214580793, - "whiscash": 2.1301096888100615, - "crawdaunt": 1.9469640044009857, - "claydol": 3.8048434617170352, - "cradily": 1.8102511308530307, - "armaldo": 2.6490053952799024, - "dusclops": 3.304406504115959, - "absol": 2.046856130905068, - "glalie": 4.47197035768597, - "sealeo": 3.023760469421987, - "relicanth": 2.1732947340496036, - "metang": 3.074973334490727, - "luxray": 3.1030717062313817, - "vespiquen": 2.7800228261470474, - "cherrim": 3.930572750613268, - "gastrodon": 2.2311217363581064, - "drifblim": 3.292706529415116, - "lopunny": 3.6792581019081076, - "skuntank": 1.515721671617837, - "bronzong": 3.36208930292472, - "munchlax": 2.0566307531961145, - "drapion": 2.7151055859909103, - "abomasnow": 2.716905239132326, - "froslass": 2.943715738919062, - "rotom": 2.990888904115409, - "stoutland": 2.394691828635775, - "liepard": 7.222517470500197, - "musharna": 1.2974162324644671, - "unfezant": 6.804286204156868, - "boldore": 5.250518083718841, - "swoobat": 4.926485341572679, - "audino": 1.9815769718534306, - "gurdurr": 2.4622423899222703, - "palpitoad": 3.690776344664319, - "seismitoad": 5.645499499387018, - "scolipede": 3.417745982832223, - "whimsicott": 2.2897018285119497, - "lilligant": 2.094124812493005, - "basculin-red-striped": 2.8178158991850153, - "basculin-blue-striped": 3.5159185200591834, - "krookodile": 3.7425653957911615, - "maractus": 1.49407122180709, - "crustle": 3.1061216996289387, - "sigilyph": 2.1567151673435303, - "cofagrigus": 2.469655163969819, - "garbodor": 1.8512112691558846, - "cinccino": 4.680114184155661, - "vanillish": 2.0596058769404513, - "emolga": 2.2570514629398994, - "escavalier": 1.9419602570947814, - "amoonguss": 1.7886721687435434, - "jellicent": 1.255589737755813, - "galvantula": 1.177298818842166, - "klang": 2.4245759978115586, - "klinklang": 3.8187669270835944, - "beheeyem": 1.5661792355737767, - "lampent": 3.714600661740528, - "fraxure": 1.9134769383579564, - "beartic": 1.7989318136197834, - "cryogonal": 1.4989397729006035, - "accelgor": 2.5566461815884383, - "stunfisk": 1.4728443535165572, - "stunfisk-galar": 3.1001546770716755, - "mienshao": 3.3136944036809215, - "druddigon": 2.173114997081326, - "golurk": 2.52634265882185, - "bisharp": 2.623586997067858, - "bouffalant": 1.3560950015536961, - "heatmor": 2.528432925702792, - "durant": 3.426136605208982, - "diggersby": 4.348515794725472, - "talonflame": 3.9670732122045558, - "pangoro": 1.8509956061351267, - "doublade": 3.033873157635758, - "malamar": 2.545646089984939, - "barbaracle": 1.594958667502668, - "heliolisk": 2.399253401665447, - "tyrantrum": 2.026189535428496, - "aurorus": 2.60174386162931, - "hawlucha": 3.686098632493704, - "dedenne": 2.2694374743816184, - "klefki": 3.248470629347825, - "trevenant": 2.4749081998288993, - "gourgeist-average": 4.9966792228189325, - "charjabug": 3.9373107689520523, - "vikavolt": 1.7259330545621219, - "ribombee": 4.103696550665634, - "lycanroc-midday": 4.3888693131549585, - "lycanroc-midnight": 3.152505325257734, - "mudsdale": 2.2103427664255695, - "araquanid": 2.1272705976857305, - "lurantis": 1.7729654768347851, - "shiinotic": 3.294769594392041, - "salazzle": 4.369453363965858, - "bewear": 1.8783259162076371, - "tsareena": 2.5758732648974205, - "comfey": 3.4989715277690565, - "oranguru": 2.379395008815792, - "passimian": 2.526420549693639, - "palossand": 2.6730003772236675, - "pyukumuku": 37.930002049165, - "togedemaru": 1.9928349439499624, - "mimikyu-disguised": 3.9873953207761392, - "greedent": 2.302769092043005, - "orbeetle": 1.5884252692241696, - "thievul": 1.673035752253267, - "eldegoss": 2.5461682053790877, - "dubwool": 2.926906009566707, - "drednaw": 1.3920628188289148, - "boltund": 3.956830285517102, - "carkol": 4.918013723230887, - "coalossal": 3.891694895259799, - "sandaconda": 4.531700498599951, - "cramorant": 4.952136077353521, - "barraskewda": 4.4445400435347775, - "toxtricity-amped": 2.052359895861417, - "centiskorch": 2.494072918617456, - "grapploct": 1.7229560520983067, - "polteageist": 2.1187302266056385, - "hatterene": 2.352368903021646, - "grimmsnarl": 3.5550795263145503, - "obstagoon": 2.4185649975535695, - "perrserker": 3.412644993630507, - "alcremie": 1.1654943169779588, - "falinks": 3.508722812409548, - "pincurchin": 2.606550515399941, - "frosmoth": 2.1826910697145907, - "indeedee-male": 2.7729950293121695, - "morpeko": 2.371112830461958, - "copperajah": 2.543088608186534, - "duraludon": 1.4588890365229406, - "drakloak": 5.076198051977171, - "seadra": 3.841385570705997 + "ivysaur": 2.09930113443499, + "charmeleon": 5.137201892973173, + "wartortle": 2.4770636339926844, + "butterfree": 3.528252037190496, + "raichu": 3.8255503900912404, + "raichu-alola": 2.581522380309041, + "sandslash": 3.3776259600767604, + "sandslash-alola": 2.292598843095227, + "nidoqueen": 3.348185483983508, + "nidoking": 2.5486059908542, + "clefairy": 7.771125413460402, + "clefable": 1.7103943495134475, + "jigglypuff": 24.141277364852566, + "wigglytuff": 1.7168838570694567, + "gloom": 4.475035757267103, + "vileplume": 2.041853113934896, + "dugtrio": 4.645044011155724, + "dugtrio-alola": 4.807110559040412, + "persian": 4.145481677112191, + "persian-alola": 3.8442262340285813, + "golduck": 2.88781190001562, + "poliwrath": 1.811059520210892, + "kadabra": 3.1711716787835336, + "machoke": 4.106408203964051, + "tentacruel": 2.0391456245840995, + "slowbro": 1.570249179745344, + "magneton": 2.8092185427585834, + "haunter": 3.59428987581746, + "kingler": 2.586512918402385, + "exeggutor": 1.519900240799792, + "marowak": 4.579537727296314, + "marowak-alola": 3.3121938803856383, + "hitmonlee": 2.2823649261116223, + "hitmonchan": 2.10993137601883, + "lickitung": 1.8187253084906119, + "weezing": 1.6375738523178907, + "weezing-galar": 2.6684052400894207, + "rhydon": 5.3684922894126395, + "chansey": 16.949671234701164, + "tangela": 4.427662011324682, + "kangaskhan": 1.8906510774141985, + "seadra": 3.841385570705997, + "seaking": 2.2679442148491775, + "starmie": 1.2324440160101138, + "mr-mime": 5.576754365243094, + "mr-mime-galar": 3.4155685501376745, + "scyther": 2.7617085426452896, + "jynx": 3.4812533818150575, + "electabuzz": 1.6661655062436345, + "magmar": 2.0881408143482747, + "tauros": 2.168865509809615, + "ditto": 4.071287846833403, + "vaporeon": 2.642242622648055, + "jolteon": 1.467424680732135, + "flareon": 2.822809816633989, + "porygon": 2.460899159710551, + "dragonair": 2.0290595994015215, + "noctowl": 5.049847513779794, + "lanturn": 1.4728699347464178, + "togetic": 5.35742601270822, + "xatu": 3.431086529236068, + "bellossom": 1.6478066957024655, + "azumarill": 1.9725971087264176, + "sudowoodo": 3.83839411541084, + "politoed": 2.166184296161293, + "quagsire": 4.7609743212053495, + "slowking": 2.1978177081978045, + "dunsparce": 3.2859904895234964, + "qwilfish": 3.455889988337427, + "sneasel": 2.2065190055924297, + "piloswine": 2.3030589651577924, + "octillery": 2.1326776123467215, + "mantine": 1.9849710130594358, + "skarmory": 2.4247643914842723, + "hitmontop": 2.772752520369894, + "miltank": 3.8812311802781423, + "grovyle": 5.427378568155553, + "sceptile": 1.0368478870097726, + "combusken": 4.443727930301991, + "blaziken": 2.3115305335629532, + "marshtomp": 2.695048772123844, + "swampert": 1.2613131801965918, + "linoone": 5.30564202755725, + "linoone-galar": 4.354098486079232, + "pelipper": 5.437966882287942, + "ninjask": 7.435358987900612, + "exploud": 1.5089471312847493, + "lairon": 4.094520799468482, + "manectric": 1.581576358599044, + "roselia": 2.6047507512488037, + "sharpedo": 4.746732026138011, + "wailmer": 6.1704107631667195, + "torkoal": 3.0415817051015637, + "flygon": 2.647870364479372, + "altaria": 1.6389863579394945, + "whiscash": 2.130635551370558, + "crawdaunt": 1.946877116768787, + "claydol": 3.7979314079372006, + "cradily": 1.8019259097680602, + "armaldo": 2.6526710241967564, + "dusclops": 3.3005873483182677, + "absol": 2.047628356930831, + "glalie": 4.476782506574551, + "sealeo": 3.023750563865433, + "relicanth": 2.175357604722856, + "metang": 3.074039131541216, + "luxray": 3.0904495011021043, + "vespiquen": 2.7803108198884696, + "cherrim": 3.9069734957556195, + "gastrodon": 2.2326570191107757, + "drifblim": 3.275752596621749, + "lopunny": 3.678969156449326, + "skuntank": 1.5166219387026012, + "bronzong": 3.3636732624586827, + "munchlax": 2.054216247149401, + "drapion": 2.719873959211876, + "abomasnow": 2.7099406720583277, + "froslass": 2.9422202931471775, + "rotom": 2.9779053771472115, + "stoutland": 2.3926218782047393, + "liepard": 7.2248322780363505, + "musharna": 1.2930305606830246, + "unfezant": 6.811011602025718, + "boldore": 5.261013362188105, + "swoobat": 4.915023628300288, + "audino": 1.9789297496398077, + "gurdurr": 2.4650771648835814, + "palpitoad": 3.6881007240001553, + "seismitoad": 5.629182085369157, + "scolipede": 3.4206087580873294, + "whimsicott": 2.278532829563738, + "lilligant": 2.082209229380518, + "basculin-red-striped": 2.8211662138859164, + "basculin-blue-striped": 3.517590841921601, + "krookodile": 3.7442277656222025, + "maractus": 1.4834759695586635, + "crustle": 3.1112583087909593, + "sigilyph": 2.152872155336101, + "cofagrigus": 2.463962394061287, + "garbodor": 1.8502177469691587, + "cinccino": 4.67964081047343, + "vanillish": 2.0580713083049966, + "emolga": 2.248968735147018, + "escavalier": 1.9428681053509371, + "amoonguss": 1.7795387181616487, + "jellicent": 1.2518699794997126, + "galvantula": 1.1713426934654725, + "klang": 2.416253806570348, + "klinklang": 3.8226832013371936, + "beheeyem": 1.5617968751790974, + "lampent": 3.7211086044685566, + "fraxure": 1.914901594279982, + "beartic": 1.7993499167949552, + "cryogonal": 1.4948321430278741, + "accelgor": 2.5491755942942396, + "stunfisk": 1.4686739030922467, + "stunfisk-galar": 3.0992018149762615, + "mienshao": 3.311835902556341, + "druddigon": 2.17600190771011, + "golurk": 2.527783172400147, + "bisharp": 2.623370150875128, + "bouffalant": 1.35730143989043, + "heatmor": 2.5303788907974236, + "durant": 3.4265404604181864, + "diggersby": 4.354004690651641, + "talonflame": 3.971132226181582, + "pangoro": 1.8524483243410768, + "doublade": 3.0387135155911755, + "malamar": 2.5389352389410975, + "barbaracle": 1.5953392789174492, + "heliolisk": 2.381133249422317, + "tyrantrum": 2.0292356655813206, + "aurorus": 2.595071076548049, + "hawlucha": 3.6881215973995607, + "dedenne": 2.2584350876937416, + "klefki": 3.247893734929245, + "trevenant": 2.468140567341111, + "gourgeist-average": 4.994465327921611, + "charjabug": 3.9321032419509967, + "vikavolt": 1.7232748938502123, + "ribombee": 4.090120000735836, + "lycanroc-midday": 4.391733977016411, + "lycanroc-midnight": 3.155698522216283, + "mudsdale": 2.2138651578335313, + "araquanid": 2.1244001573024014, + "lurantis": 1.764718066004732, + "shiinotic": 3.280135994079597, + "salazzle": 4.376071237453428, + "bewear": 1.8784180207049799, + "tsareena": 2.56980504291569, + "comfey": 3.4816084545528163, + "oranguru": 2.373817736029259, + "passimian": 2.5291470583913576, + "palossand": 2.669870741547614, + "pyukumuku": 37.880569852139416, + "togedemaru": 1.9896924430413918, + "mimikyu-disguised": 3.981908384207709, + "greedent": 2.3043457577014266, + "orbeetle": 1.583939419534245, + "thievul": 1.6717659535906653, + "eldegoss": 2.529807525534955, + "dubwool": 2.9246866706067545, + "drednaw": 1.3931492875764313, + "boltund": 3.9437304739417325, + "carkol": 4.930173361037003, + "coalossal": 3.897483665914634, + "sandaconda": 4.535551634333301, + "cramorant": 4.951381358004992, + "barraskewda": 4.446018803116303, + "toxtricity-amped": 2.0424466380692463, + "centiskorch": 2.4938947953856943, + "grapploct": 1.7227013250679706, + "polteageist": 2.110277467569216, + "hatterene": 2.3471693323865868, + "grimmsnarl": 3.547115045563218, + "obstagoon": 2.414139473610109, + "perrserker": 3.4100691507619922, + "alcremie": 1.1615886327510028, + "falinks": 3.5135048587783952, + "pincurchin": 2.5961432319142235, + "frosmoth": 2.175261247757928, + "indeedee-male": 2.76638896761808, + "morpeko": 2.364144908375968, + "copperajah": 2.5442589882104283, + "duraludon": 1.4564870646725399, + "drakloak": 5.072484905766154 }, "seaking": { - "ivysaur": 3.149580465609728, - "charmeleon": 5.812379038585043, - "wartortle": 2.67265209534467, - "butterfree": 5.061488956185196, - "raichu": 5.736615084593263, - "raichu-alola": 3.9788452714145692, - "sandslash": 2.452286683818844, - "sandslash-alola": 2.044345478953306, - "nidoqueen": 3.7540711045000603, - "nidoking": 2.430234487037039, - "clefairy": 10.117199657249994, - "clefable": 2.2980881426194477, - "jigglypuff": 29.734078752661482, - "wigglytuff": 2.1847633507510382, - "gloom": 6.041092448411898, - "vileplume": 2.8914295421717293, - "dugtrio": 5.184521610101662, - "dugtrio-alola": 4.955579272965712, - "persian": 4.307891005440512, - "persian-alola": 4.355724654506242, - "golduck": 2.9295202667931566, - "poliwrath": 2.010642819992757, - "kadabra": 4.430181404233116, - "machoke": 4.068507306560289, - "tentacruel": 3.139762657323494, - "slowbro": 1.5935002136626961, - "magneton": 4.548965505698729, - "haunter": 4.541806185071869, - "kingler": 2.101385857852827, - "exeggutor": 1.978510819447817, - "marowak": 3.8641101617591325, - "marowak-alola": 2.7583597653642062, - "hitmonlee": 2.932185834420915, - "hitmonchan": 2.4151994587526064, - "lickitung": 2.052601894299582, - "weezing": 1.697729367337883, - "weezing-galar": 2.764076782350692, - "rhydon": 3.219622057090608, - "chansey": 31.316891206235603, - "tangela": 3.9905104833442486, - "kangaskhan": 1.8249900860035337, - "seadra": 3.6757740770716905, - "starmie": 1.3518204687881719, - "mr-mime": 7.948801498473876, - "mr-mime-galar": 4.140631300803623, - "scyther": 2.8511772026326465, - "jynx": 4.585168523735039, - "electabuzz": 2.670162102293693, - "magmar": 2.691972834741657, - "tauros": 1.9186764254951667, - "ditto": 2.947728547862609, - "vaporeon": 3.2348692066701776, - "jolteon": 2.2587307929452436, - "flareon": 4.006344587016121, - "porygon": 2.8049574078104533, - "dragonair": 1.6907348004768301, - "noctowl": 6.387713911679378, - "lanturn": 2.3255505866789123, - "togetic": 6.0523896447182235, - "xatu": 3.9170833044690565, - "bellossom": 2.4986815710143135, - "azumarill": 2.457519833215505, - "sudowoodo": 2.9506179238837262, - "politoed": 2.4744529403672724, - "quagsire": 4.827163999824863, - "slowking": 2.4376066334934383, - "dunsparce": 3.3493902954581873, - "qwilfish": 3.7004677934000663, - "sneasel": 2.3841539170402894, - "piloswine": 2.0759475162649217, - "octillery": 2.252977916100936, - "mantine": 2.521545299966268, - "skarmory": 1.8663984492831438, - "hitmontop": 3.0080183409311783, - "miltank": 3.3399721813722936, - "grovyle": 8.513824990079288, - "sceptile": 1.5354748953195685, - "combusken": 4.6699668353879895, - "blaziken": 2.2909486135983474, - "marshtomp": 2.6821729066326276, - "swampert": 1.3728962002968617, - "linoone": 5.128216625217648, - "linoone-galar": 4.6955189476236185, - "pelipper": 5.218869316204936, - "ninjask": 8.038997259270817, - "exploud": 1.7648346308204172, - "lairon": 2.9018410677204596, - "manectric": 1.9817592132140307, - "roselia": 4.201376609460344, - "sharpedo": 4.586864067196645, - "wailmer": 6.284681015612506, - "torkoal": 2.400125827690405, - "flygon": 2.4459105005118467, - "altaria": 1.5520133288873714, - "whiscash": 2.251610165378947, - "crawdaunt": 1.8314003079067485, - "claydol": 4.570985210110325, - "cradily": 2.1948734780857184, - "armaldo": 2.3251933427594125, - "dusclops": 3.415338419360329, - "absol": 2.082126010615659, - "glalie": 4.361834790800855, - "sealeo": 3.1644044089676386, - "relicanth": 1.9063726735132211, - "metang": 3.056432281173236, - "luxray": 3.8903772311955533, - "vespiquen": 2.8722120968853253, - "cherrim": 6.029969069518096, - "gastrodon": 2.2811288704659614, - "drifblim": 4.1789929572869635, - "lopunny": 3.6978027615127624, - "skuntank": 1.6740929315719266, - "bronzong": 3.264631336941465, - "munchlax": 2.4263424187050284, - "drapion": 2.5695629286794945, - "abomasnow": 3.359811993630541, - "froslass": 3.125717139994776, - "rotom": 3.568658632322925, - "stoutland": 2.383918134273461, - "liepard": 6.998217144132522, - "musharna": 1.5201444920510605, - "unfezant": 5.96853652136345, - "boldore": 3.51011637712112, - "swoobat": 5.603834876123869, - "audino": 2.340318043133389, - "gurdurr": 2.1826528048316973, - "palpitoad": 4.005128484915206, - "seismitoad": 6.509995960017525, - "scolipede": 3.282660659685213, - "whimsicott": 3.9886024047712274, - "lilligant": 3.1179849284339047, - "basculin-red-striped": 2.6404475987248963, - "basculin-blue-striped": 3.415282796067661, - "krookodile": 3.633425972878849, - "maractus": 2.220078624162437, - "crustle": 2.4177395534385604, - "sigilyph": 2.42955072440746, - "cofagrigus": 2.535683795237656, - "garbodor": 2.0653100869216163, - "cinccino": 4.73317107784844, - "vanillish": 2.3966732254275955, - "emolga": 2.7289278080850075, - "escavalier": 1.8830903430219403, - "amoonguss": 2.555087137109019, - "jellicent": 1.5558920431973071, - "galvantula": 1.4440147551222127, - "klang": 3.008860807476621, - "klinklang": 3.7172587903935836, - "beheeyem": 1.9112861819464824, - "lampent": 3.9861120714089657, - "fraxure": 1.31398857074348, - "beartic": 1.9090147390302497, - "cryogonal": 2.134042131038144, - "accelgor": 3.5721736231610413, - "stunfisk": 1.7891717905635813, - "stunfisk-galar": 3.0257074241152364, - "mienshao": 3.640146184780992, - "druddigon": 1.6583873371080273, - "golurk": 2.5135874548999153, - "bisharp": 2.498752578233984, - "bouffalant": 1.3111286247474032, - "heatmor": 2.7050646619905647, - "durant": 2.5797614265303044, - "diggersby": 4.199725346423152, - "talonflame": 4.1750099509056735, - "pangoro": 1.8671665328133218, - "doublade": 2.2252891913016777, - "malamar": 2.683937515306284, - "barbaracle": 1.601756825867492, - "heliolisk": 4.213769277406444, - "tyrantrum": 1.531051545031294, - "aurorus": 3.1447737089188856, - "hawlucha": 3.6252913367551014, - "dedenne": 3.2844881130898664, - "klefki": 3.6269319460210228, - "trevenant": 2.83935785182101, - "gourgeist-average": 5.137488910832442, - "charjabug": 3.554022525324038, - "vikavolt": 1.748391898814077, - "ribombee": 5.448394000504708, - "lycanroc-midday": 4.335738359492812, - "lycanroc-midnight": 3.041298751074823, - "mudsdale": 1.9934665255703907, - "araquanid": 2.6742627307268942, - "lurantis": 2.505695117116538, - "shiinotic": 6.471854200377586, - "salazzle": 5.1065513019510735, - "bewear": 1.7817999235951014, - "tsareena": 3.0422753448132696, - "comfey": 4.579493330882807, - "oranguru": 2.8392017690803746, - "passimian": 2.3224041182696022, - "palossand": 2.550055649222295, - "pyukumuku": 38.92116567345078, - "togedemaru": 3.4944592607470115, - "mimikyu-disguised": 4.216118203405007, - "greedent": 2.084871415250044, - "orbeetle": 2.001166343057847, - "thievul": 2.0450423543887473, - "eldegoss": 4.112036748441303, - "dubwool": 2.7368643830995367, - "drednaw": 1.3634504644877412, - "boltund": 4.877538652929698, - "carkol": 4.298627805708816, - "coalossal": 3.5885506284701467, - "sandaconda": 3.6259191597638054, - "cramorant": 5.399317426998458, - "barraskewda": 4.1337847576398605, - "toxtricity-amped": 3.932025512127342, - "centiskorch": 3.0308119613519784, - "grapploct": 1.8609752694075978, - "polteageist": 2.802015001575578, - "hatterene": 2.672734914678948, - "grimmsnarl": 4.177535085798571, - "obstagoon": 2.362700089537544, - "perrserker": 3.305441178997526, - "alcremie": 1.6664673228618798, - "falinks": 3.1290868282586612, - "pincurchin": 3.150235778669659, - "frosmoth": 3.0123352545485407, - "indeedee-male": 3.595612305410862, - "morpeko": 2.7887355482284653, - "copperajah": 2.8630106173000427, - "duraludon": 1.4880097640344432, - "drakloak": 3.968759171560444, - "seaking": 2.292313540608223 + "ivysaur": 3.1459213060660156, + "charmeleon": 5.834830550853961, + "wartortle": 2.677406751592444, + "butterfree": 5.0591400338728265, + "raichu": 5.739270627668356, + "raichu-alola": 3.979748184592032, + "sandslash": 2.452192183619788, + "sandslash-alola": 2.044258992411844, + "nidoqueen": 3.760865152104863, + "nidoking": 2.433805524055728, + "clefairy": 10.138590002805588, + "clefable": 2.3035412374598137, + "jigglypuff": 29.79769151636974, + "wigglytuff": 2.1886825338773974, + "gloom": 6.043926640709696, + "vileplume": 2.888336011915959, + "dugtrio": 5.192235706717691, + "dugtrio-alola": 4.966157573717478, + "persian": 4.307773288350562, + "persian-alola": 4.357829835516396, + "golduck": 2.932427054245514, + "poliwrath": 2.009684680689891, + "kadabra": 4.434999072286605, + "machoke": 4.071287204343363, + "tentacruel": 3.147327554358145, + "slowbro": 1.5932466401853969, + "magneton": 4.551847917282462, + "haunter": 4.5369558524708316, + "kingler": 2.1002709756626707, + "exeggutor": 1.9763759850120257, + "marowak": 3.867889299594083, + "marowak-alola": 2.7662013168974777, + "hitmonlee": 2.938612016501833, + "hitmonchan": 2.418131024740632, + "lickitung": 2.053562971912439, + "weezing": 1.6991272885697275, + "weezing-galar": 2.768348041589218, + "rhydon": 3.2224266325589355, + "chansey": 31.368869116460957, + "tangela": 3.975851635143104, + "kangaskhan": 1.8248876462678643, + "seadra": 3.6748963521914155, + "seaking": 2.292313540608223, + "starmie": 1.3521108210222814, + "mr-mime": 7.967774084683249, + "mr-mime-galar": 4.145347135906151, + "scyther": 2.849921726824403, + "jynx": 4.581060308283602, + "electabuzz": 2.6689868725796857, + "magmar": 2.7028362703499083, + "tauros": 1.9183426328266444, + "ditto": 2.933619936037072, + "vaporeon": 3.2357236217561733, + "jolteon": 2.259702015190907, + "flareon": 4.021568936036729, + "porygon": 2.805265664758511, + "dragonair": 1.6897147372818195, + "noctowl": 6.389011700764109, + "lanturn": 2.3289890916852296, + "togetic": 6.064811509568809, + "xatu": 3.9166195948830276, + "bellossom": 2.4965908143758972, + "azumarill": 2.4646150668706324, + "sudowoodo": 2.952277048800953, + "politoed": 2.4772888915385307, + "quagsire": 4.8330515098074525, + "slowking": 2.4405483203267506, + "dunsparce": 3.3525721501898875, + "qwilfish": 3.7030592165219556, + "sneasel": 2.3854243610719283, + "piloswine": 2.0789669674844578, + "octillery": 2.255504934842483, + "mantine": 2.519857809555431, + "skarmory": 1.864274380432232, + "hitmontop": 3.012795518393758, + "miltank": 3.3377019058171227, + "grovyle": 8.507245605599635, + "sceptile": 1.533675056195971, + "combusken": 4.68561539975167, + "blaziken": 2.299204291373082, + "marshtomp": 2.686298182598025, + "swampert": 1.3751634710978153, + "linoone": 5.127527606995729, + "linoone-galar": 4.695642491674071, + "pelipper": 5.209918434859365, + "ninjask": 8.036433046516885, + "exploud": 1.7667705637757192, + "lairon": 2.905967711601929, + "manectric": 1.9838830477063722, + "roselia": 4.199143916402951, + "sharpedo": 4.586685144554993, + "wailmer": 6.2927653315966765, + "torkoal": 2.4065848569090704, + "flygon": 2.4447678449182355, + "altaria": 1.5516384675667356, + "whiscash": 2.253343141429312, + "crawdaunt": 1.830509764034092, + "claydol": 4.573442871990537, + "cradily": 2.1936057061525225, + "armaldo": 2.3267053228667938, + "dusclops": 3.4168472844121434, + "absol": 2.0842357266420786, + "glalie": 4.3666061802220275, + "sealeo": 3.1695028418664726, + "relicanth": 1.9059859209610512, + "metang": 3.0554994365202006, + "luxray": 3.8871916826205224, + "vespiquen": 2.8712420973587367, + "cherrim": 6.022943344750523, + "gastrodon": 2.282709490212227, + "drifblim": 4.172201657013957, + "lopunny": 3.6984940450729704, + "skuntank": 1.6765635102530279, + "bronzong": 3.262453257617362, + "munchlax": 2.4276194197926615, + "drapion": 2.5722970455164202, + "abomasnow": 3.3567417185724384, + "froslass": 3.1306899882370303, + "rotom": 3.5634162105751273, + "stoutland": 2.383008801488031, + "liepard": 7.000221978966318, + "musharna": 1.5197743316620587, + "unfezant": 5.964753851941188, + "boldore": 3.5102802368470334, + "swoobat": 5.603169870906953, + "audino": 2.3430338853733605, + "gurdurr": 2.1828826521852127, + "palpitoad": 4.009354699545039, + "seismitoad": 6.509216217783016, + "scolipede": 3.2830205489856916, + "whimsicott": 3.9910466981130224, + "lilligant": 3.1145994994517876, + "basculin-red-striped": 2.642872796903106, + "basculin-blue-striped": 3.4185029782965053, + "krookodile": 3.6365744610394994, + "maractus": 2.2147323251970903, + "crustle": 2.4184288329831984, + "sigilyph": 2.4302370627757885, + "cofagrigus": 2.536555051303091, + "garbodor": 2.066805028153178, + "cinccino": 4.736523544717006, + "vanillish": 2.4009514795614164, + "emolga": 2.723783392480425, + "escavalier": 1.883912388713111, + "amoonguss": 2.553215188426617, + "jellicent": 1.5557607897588854, + "galvantula": 1.4422257057560808, + "klang": 3.0094994126551997, + "klinklang": 3.720824922382315, + "beheeyem": 1.9129457020861649, + "lampent": 4.002734588774523, + "fraxure": 1.3125808183383192, + "beartic": 1.9120658255990053, + "cryogonal": 2.13672797093419, + "accelgor": 3.5757037183835685, + "stunfisk": 1.7911211749138247, + "stunfisk-galar": 3.0298886572650194, + "mienshao": 3.6432958037956684, + "druddigon": 1.6590491321859195, + "golurk": 2.5163577918761773, + "bisharp": 2.497776093987482, + "bouffalant": 1.3122426077481415, + "heatmor": 2.7142370921153516, + "durant": 2.5751350839965355, + "diggersby": 4.2030772013312685, + "talonflame": 4.184437242000901, + "pangoro": 1.8687537785482116, + "doublade": 2.2257634687839403, + "malamar": 2.6819473873931656, + "barbaracle": 1.602057436130167, + "heliolisk": 4.205028294509598, + "tyrantrum": 1.5300266422791733, + "aurorus": 3.1470764985248336, + "hawlucha": 3.624118271699359, + "dedenne": 3.2886627395854453, + "klefki": 3.6335730141737255, + "trevenant": 2.83399689482932, + "gourgeist-average": 5.138712400674601, + "charjabug": 3.546443093537584, + "vikavolt": 1.746701881883145, + "ribombee": 5.457840801537115, + "lycanroc-midday": 4.341412223322898, + "lycanroc-midnight": 3.0449146545792125, + "mudsdale": 1.9949384678796755, + "araquanid": 2.673051254679841, + "lurantis": 2.5035825005383803, + "shiinotic": 6.485519506217817, + "salazzle": 5.126185000094315, + "bewear": 1.7809695392052052, + "tsareena": 3.0370946395244167, + "comfey": 4.583540588116928, + "oranguru": 2.8411472175610193, + "passimian": 2.323217697010901, + "palossand": 2.5525762745641956, + "pyukumuku": 38.91441874068073, + "togedemaru": 3.49778290350749, + "mimikyu-disguised": 4.2208393829401665, + "greedent": 2.08490869282243, + "orbeetle": 2.001946997250039, + "thievul": 2.047658263344763, + "eldegoss": 4.107426862237941, + "dubwool": 2.733583396653845, + "drednaw": 1.3642730299981647, + "boltund": 4.8761313966628865, + "carkol": 4.3154845936659925, + "coalossal": 3.602744620380128, + "sandaconda": 3.626538690838971, + "cramorant": 5.400452290093614, + "barraskewda": 4.13358840904988, + "toxtricity-amped": 3.9311160752947827, + "centiskorch": 3.039246523079008, + "grapploct": 1.863347090866917, + "polteageist": 2.8023513059402045, + "hatterene": 2.676983797450574, + "grimmsnarl": 4.18602520907642, + "obstagoon": 2.359823064817954, + "perrserker": 3.3053924740040825, + "alcremie": 1.6706345187231229, + "falinks": 3.1302829204352562, + "pincurchin": 3.1505971386807916, + "frosmoth": 3.0134367996746487, + "indeedee-male": 3.601836395966701, + "morpeko": 2.7867663897157224, + "copperajah": 2.8685636540007833, + "duraludon": 1.4862631731907996, + "drakloak": 3.967406033114983 }, "starmie": { - "ivysaur": 3.517859435571555, - "charmeleon": 4.730551133288927, - "wartortle": 2.7881868069703017, - "butterfree": 5.635594852296981, - "raichu": 4.700578938200005, - "raichu-alola": 2.9054154983420926, - "sandslash": 2.3960188540307916, - "sandslash-alola": 2.0572957902500675, - "nidoqueen": 3.1128444485719218, - "nidoking": 2.1756349090946605, - "clefairy": 8.679327267507706, - "clefable": 1.9624420483623184, - "jigglypuff": 25.454084289683053, - "wigglytuff": 1.9095538651186148, - "gloom": 6.771457345277345, - "vileplume": 3.021801721039684, - "dugtrio": 3.689503153528724, - "dugtrio-alola": 2.885785669047815, - "persian": 3.9894755759099247, - "persian-alola": 3.992884988258358, - "golduck": 3.0463138441654563, - "poliwrath": 2.3967288655278915, - "kadabra": 3.4512787762770802, - "machoke": 4.560483052388824, - "tentacruel": 3.3770834679702832, - "slowbro": 1.8449012426728197, - "magneton": 2.4254994491447652, - "haunter": 5.082542533154087, - "kingler": 2.6589559933627176, - "exeggutor": 1.9669913314788197, - "marowak": 3.283995541903177, - "marowak-alola": 2.5491621130350626, - "hitmonlee": 3.5208399087783917, - "hitmonchan": 2.7526869305569814, - "lickitung": 1.86620362052552, - "weezing": 1.7215167857957097, - "weezing-galar": 2.8864611966331966, - "rhydon": 2.696605503195829, - "chansey": 27.65370588616839, - "tangela": 5.214643463558019, - "kangaskhan": 1.6473200018741327, - "seadra": 4.311855364679346, - "seaking": 2.408159016717466, - "mr-mime": 6.372218422268243, - "mr-mime-galar": 4.375503725249839, - "scyther": 3.928308916776265, - "jynx": 4.459531596712085, - "electabuzz": 2.1152811066616484, - "magmar": 1.9648070777662243, - "tauros": 1.88926519817648, - "ditto": 1.5316054374088695, - "vaporeon": 3.330011807440753, - "jolteon": 1.726384667432043, - "flareon": 2.5736848589613928, - "porygon": 2.4750032435277873, - "dragonair": 2.1494306064561055, - "noctowl": 5.944385250869219, - "lanturn": 1.8399349490032328, - "togetic": 6.200031607833301, - "xatu": 4.588756003007886, - "bellossom": 2.2575737584961835, - "azumarill": 2.161837838211918, - "sudowoodo": 2.5458449002007493, - "politoed": 2.5564092055877246, - "quagsire": 4.784774332715341, - "slowking": 2.3973483453018862, - "dunsparce": 2.8474552058717633, - "qwilfish": 3.9645224934260437, - "sneasel": 2.222966271902625, - "piloswine": 1.6106320645632035, - "octillery": 2.229421499882378, - "mantine": 2.629304969618251, - "skarmory": 1.9157748686216896, - "hitmontop": 3.464311997985474, - "miltank": 3.399355701734306, - "grovyle": 7.275785459148086, - "sceptile": 1.2934735270171895, - "combusken": 4.33027261007542, - "blaziken": 2.1031591398207894, - "marshtomp": 2.483083038567235, - "swampert": 1.2528920530501755, - "linoone": 4.338346341615448, - "linoone-galar": 4.4082060107269525, - "pelipper": 7.395418525942286, - "ninjask": 10.028361863354858, - "exploud": 1.6243137642963081, - "lairon": 2.121907682255578, - "manectric": 1.6293499049259967, - "roselia": 4.847432832642392, - "sharpedo": 5.525884936297823, - "wailmer": 6.509376338050213, - "torkoal": 2.6908009099143246, - "flygon": 3.3120671170354976, - "altaria": 2.281328512665964, - "whiscash": 2.109033558021085, - "crawdaunt": 2.4953453109188053, - "claydol": 3.553540131909604, - "cradily": 2.171103479741572, - "armaldo": 2.0645518985518923, - "dusclops": 2.654407415019731, - "absol": 2.2690804930989246, - "glalie": 4.648519620647436, - "sealeo": 3.9764392041578667, - "relicanth": 1.9212013855183627, - "metang": 2.356015658758229, - "luxray": 3.196951105173011, - "vespiquen": 4.038244295866916, - "cherrim": 5.340666540039933, - "gastrodon": 2.0395629227470478, - "drifblim": 4.590013768586339, - "lopunny": 3.5363558191480555, - "skuntank": 1.2741938064255671, - "bronzong": 2.6638040853482012, - "munchlax": 2.236563071834122, - "drapion": 2.0843065226369673, - "abomasnow": 3.347646039213978, - "froslass": 3.3388300134633844, - "rotom": 2.9073227495916614, - "stoutland": 2.222501760874358, - "liepard": 7.401558017281338, - "musharna": 1.4168730835087064, - "unfezant": 7.7082036880299825, - "boldore": 3.3718995152742632, - "swoobat": 6.582681006848704, - "audino": 2.115775315408815, - "gurdurr": 2.982991572318048, - "palpitoad": 3.6540633397436073, - "seismitoad": 5.886592432952561, - "scolipede": 3.353734095686961, - "whimsicott": 3.127741381182606, - "lilligant": 2.7167048756720398, - "basculin-red-striped": 2.877066305093323, - "basculin-blue-striped": 3.423916441756182, - "krookodile": 3.0085540314949237, - "maractus": 1.986600886998878, - "crustle": 2.451801376644098, - "sigilyph": 2.8251272332176915, - "cofagrigus": 2.2946822751935025, - "garbodor": 2.2484861492306516, - "cinccino": 4.387786631871939, - "vanillish": 2.557663145837032, - "emolga": 3.0794557348548173, - "escavalier": 1.6188514608651627, - "amoonguss": 2.8493706237829395, - "jellicent": 1.6155331924735319, - "galvantula": 1.5643310513762678, - "klang": 2.0917980384192267, - "klinklang": 2.799283802159455, - "beheeyem": 1.5970975311413012, - "lampent": 3.2772098489495844, - "fraxure": 1.8580864770731969, - "beartic": 2.175687387455505, - "cryogonal": 1.9193889102661168, - "accelgor": 2.77592699948657, - "stunfisk": 1.3082736025361523, - "stunfisk-galar": 1.89558598725254, - "mienshao": 4.125795168709197, - "druddigon": 2.0699766434562883, - "golurk": 1.8939263949922056, - "bisharp": 2.185510030864733, - "bouffalant": 1.199623200638179, - "heatmor": 2.2921522275033746, - "durant": 2.7256572833064565, - "diggersby": 3.3640066449151957, - "talonflame": 5.108931357632937, - "pangoro": 2.8578114038381077, - "doublade": 2.0909883576251, - "malamar": 3.0475309081055735, - "barbaracle": 1.4573784520062174, - "heliolisk": 3.3197906328958453, - "tyrantrum": 2.0693650957529144, - "aurorus": 2.5543915599973617, - "hawlucha": 4.038015537240329, - "dedenne": 2.593824716929475, - "klefki": 2.4602267935955844, - "trevenant": 2.9178593313879007, - "gourgeist-average": 5.535395840155374, - "charjabug": 4.420009362845091, - "vikavolt": 1.966748581071153, - "ribombee": 4.724020819893871, - "lycanroc-midday": 3.125342687772143, - "lycanroc-midnight": 2.1401246049342477, - "mudsdale": 1.6725908755770669, - "araquanid": 2.469431488659125, - "lurantis": 2.2224592299874457, - "shiinotic": 4.446504251573445, - "salazzle": 3.9251797826536077, - "bewear": 2.045020350300726, - "tsareena": 2.9132201449676827, - "comfey": 3.928459164477765, - "oranguru": 2.6142229441368583, - "passimian": 2.9723436008626534, - "palossand": 2.092700133183544, - "pyukumuku": 38.89750408177072, - "togedemaru": 1.7110716437074711, - "mimikyu-disguised": 3.4710725187475875, - "greedent": 2.0920444763494945, - "orbeetle": 1.9348590490495226, - "thievul": 1.7907991759861774, - "eldegoss": 3.4544400868624905, - "dubwool": 2.6626568302394995, - "drednaw": 1.2131384338445548, - "boltund": 3.722949398137117, - "carkol": 2.901153254875127, - "coalossal": 2.436922260992353, - "sandaconda": 3.33652955880967, - "cramorant": 5.533872030880411, - "barraskewda": 4.17712016596292, - "toxtricity-amped": 2.9199585283756058, - "centiskorch": 3.155409296232611, - "grapploct": 2.157466045229444, - "polteageist": 2.5047807720090267, - "hatterene": 2.3907556301215633, - "grimmsnarl": 4.0064605231126045, - "obstagoon": 2.670621948535933, - "perrserker": 2.427471239580811, - "alcremie": 1.4149287642418273, - "falinks": 3.896899105074626, - "pincurchin": 2.6122852898681153, - "frosmoth": 3.213788318637251, - "indeedee-male": 2.8069236129195856, - "morpeko": 2.7921702285985184, - "copperajah": 2.057537233750073, - "duraludon": 1.5511947869229106, - "drakloak": 4.81326061495033, - "starmie": 1.3822737957176434 + "ivysaur": 3.5149596089946638, + "charmeleon": 4.740406885193391, + "wartortle": 2.7947244730816583, + "butterfree": 5.630917102245569, + "raichu": 4.69825672773473, + "raichu-alola": 2.9007545115766815, + "sandslash": 2.396755988548827, + "sandslash-alola": 2.058542551991585, + "nidoqueen": 3.1131571745774953, + "nidoking": 2.1784537182858577, + "clefairy": 8.682936929443844, + "clefable": 1.964208188734163, + "jigglypuff": 25.468336232839086, + "wigglytuff": 1.9115174281839857, + "gloom": 6.779286995798253, + "vileplume": 3.0170868298345477, + "dugtrio": 3.692125902277588, + "dugtrio-alola": 2.8824483172851703, + "persian": 3.9894358910829117, + "persian-alola": 3.9846790324676573, + "golduck": 3.050708223039983, + "poliwrath": 2.403778298288967, + "kadabra": 3.4503997360627743, + "machoke": 4.5685641404369814, + "tentacruel": 3.384225093225205, + "slowbro": 1.8480599912141176, + "magneton": 2.420862862529141, + "haunter": 5.078245474725461, + "kingler": 2.665105573040738, + "exeggutor": 1.9659466136572086, + "marowak": 3.2853159435392945, + "marowak-alola": 2.5526156737886847, + "hitmonlee": 3.532743537224551, + "hitmonchan": 2.758346675245712, + "lickitung": 1.8665502208878257, + "weezing": 1.7226544737706013, + "weezing-galar": 2.891910721546232, + "rhydon": 2.6992560373112973, + "chansey": 27.61570862479747, + "tangela": 5.210036433708895, + "kangaskhan": 1.6466557342208963, + "seadra": 4.3173392346732244, + "seaking": 2.410480068006097, + "starmie": 1.3822737957176434, + "mr-mime": 6.380516457925245, + "mr-mime-galar": 4.38246060793111, + "scyther": 3.9306892120845185, + "jynx": 4.460099079596173, + "electabuzz": 2.1108769556672216, + "magmar": 1.9682215742887512, + "tauros": 1.8904913437611714, + "ditto": 1.5241332024256762, + "vaporeon": 3.3344052785325955, + "jolteon": 1.7224622200075617, + "flareon": 2.5735323704099287, + "porygon": 2.4730665830541882, + "dragonair": 2.152137340589989, + "noctowl": 5.950828778240387, + "lanturn": 1.8409248965031946, + "togetic": 6.2182636186712745, + "xatu": 4.598711201732502, + "bellossom": 2.2554834360448077, + "azumarill": 2.1676949476244145, + "sudowoodo": 2.54937025602117, + "politoed": 2.5587414830255577, + "quagsire": 4.79523140207759, + "slowking": 2.400057732429783, + "dunsparce": 2.8460572706547698, + "qwilfish": 3.971997214424448, + "sneasel": 2.219047513474611, + "piloswine": 1.613584845475489, + "octillery": 2.2307807752341087, + "mantine": 2.6351728439709303, + "skarmory": 1.9157408941196004, + "hitmontop": 3.4749824447117015, + "miltank": 3.401047897361379, + "grovyle": 7.269411107474875, + "sceptile": 1.290788478023293, + "combusken": 4.343966024977376, + "blaziken": 2.109873532259299, + "marshtomp": 2.4871899191146634, + "swampert": 1.2546904883345935, + "linoone": 4.331135762921398, + "linoone-galar": 4.396586828977352, + "pelipper": 7.404774644296031, + "ninjask": 10.021883722606594, + "exploud": 1.6259318439242274, + "lairon": 2.12195088272081, + "manectric": 1.6305664207279196, + "roselia": 4.846382478648423, + "sharpedo": 5.521280772225077, + "wailmer": 6.520566087925106, + "torkoal": 2.6978805061661335, + "flygon": 3.316943760761492, + "altaria": 2.2887494216735274, + "whiscash": 2.1120322206850437, + "crawdaunt": 2.4942264657612627, + "claydol": 3.555690449801494, + "cradily": 2.169816830971192, + "armaldo": 2.064979102301792, + "dusclops": 2.6492854295165773, + "absol": 2.268515308983282, + "glalie": 4.650803551093579, + "sealeo": 3.9864298434796295, + "relicanth": 1.9228120608931145, + "metang": 2.3535544468551675, + "luxray": 3.192375860655718, + "vespiquen": 4.042769496560174, + "cherrim": 5.3331185535141525, + "gastrodon": 2.03935041201135, + "drifblim": 4.5947393056846595, + "lopunny": 3.5389334999330124, + "skuntank": 1.2719372247273566, + "bronzong": 2.6651841482130587, + "munchlax": 2.2351127562634856, + "drapion": 2.081563522000912, + "abomasnow": 3.34626172431111, + "froslass": 3.342572731524441, + "rotom": 2.90341651224289, + "stoutland": 2.2222318752047254, + "liepard": 7.392665378634355, + "musharna": 1.4170009213775137, + "unfezant": 7.72635409914739, + "boldore": 3.377305530602091, + "swoobat": 6.597263204241681, + "audino": 2.11779643887564, + "gurdurr": 2.992951068548221, + "palpitoad": 3.657295119785953, + "seismitoad": 5.883807046979495, + "scolipede": 3.351407280293307, + "whimsicott": 3.1275160106045368, + "lilligant": 2.7111650773921223, + "basculin-red-striped": 2.8837638777857952, + "basculin-blue-striped": 3.426127958240328, + "krookodile": 3.005285237842478, + "maractus": 1.9833503707577127, + "crustle": 2.4538541605431625, + "sigilyph": 2.8319996905089964, + "cofagrigus": 2.2948512571213007, + "garbodor": 2.2516264502365777, + "cinccino": 4.39167547796398, + "vanillish": 2.562344872246416, + "emolga": 3.0803941152608743, + "escavalier": 1.6174865276771964, + "amoonguss": 2.848719441483433, + "jellicent": 1.6187083446059738, + "galvantula": 1.561586687254123, + "klang": 2.0881875642684635, + "klinklang": 2.799107602420857, + "beheeyem": 1.5961022063944958, + "lampent": 3.2853947780928854, + "fraxure": 1.8603558714319912, + "beartic": 2.1812769475349723, + "cryogonal": 1.92068042290735, + "accelgor": 2.7711661558757053, + "stunfisk": 1.307684197202043, + "stunfisk-galar": 1.8920215222185888, + "mienshao": 4.135647207717174, + "druddigon": 2.073524217902715, + "golurk": 1.894698023704823, + "bisharp": 2.181446385406637, + "bouffalant": 1.2007433830058336, + "heatmor": 2.2964313674783052, + "durant": 2.720744345007082, + "diggersby": 3.3660814093922564, + "talonflame": 5.12521439254038, + "pangoro": 2.860848657457027, + "doublade": 2.0937700682996105, + "malamar": 3.043766759845396, + "barbaracle": 1.4580960830997458, + "heliolisk": 3.3153311444861777, + "tyrantrum": 2.0749242304056787, + "aurorus": 2.553227127520347, + "hawlucha": 4.046954610157663, + "dedenne": 2.5920054833751793, + "klefki": 2.4607116269170395, + "trevenant": 2.918381199798944, + "gourgeist-average": 5.539198694977527, + "charjabug": 4.417517590239669, + "vikavolt": 1.965622604696308, + "ribombee": 4.72034055885992, + "lycanroc-midday": 3.126802279838029, + "lycanroc-midnight": 2.139853065262315, + "mudsdale": 1.6738839171635984, + "araquanid": 2.470475644788653, + "lurantis": 2.219133515694197, + "shiinotic": 4.449411838631619, + "salazzle": 3.9350150779425057, + "bewear": 2.0460423620226567, + "tsareena": 2.910440548556106, + "comfey": 3.925639492975986, + "oranguru": 2.617783921728127, + "passimian": 2.9807968060978256, + "palossand": 2.0922385177611145, + "pyukumuku": 38.8741999810523, + "togedemaru": 1.7080247601559209, + "mimikyu-disguised": 3.4673235892200687, + "greedent": 2.095031733631542, + "orbeetle": 1.9362874953133855, + "thievul": 1.7873331718318228, + "eldegoss": 3.448577789425659, + "dubwool": 2.6622536266194503, + "drednaw": 1.2133810387464314, + "boltund": 3.7147406746290486, + "carkol": 2.9062874107638654, + "coalossal": 2.4409666055554715, + "sandaconda": 3.3358662899374787, + "cramorant": 5.535201731946579, + "barraskewda": 4.176321955445118, + "toxtricity-amped": 2.9161784911723303, + "centiskorch": 3.161955773136305, + "grapploct": 2.1655287408960646, + "polteageist": 2.503475618885564, + "hatterene": 2.393507571122527, + "grimmsnarl": 4.002220246792115, + "obstagoon": 2.6656536215287456, + "perrserker": 2.4224096920936296, + "alcremie": 1.4155037441785965, + "falinks": 3.90387357031123, + "pincurchin": 2.611002047149948, + "frosmoth": 3.2129607974193957, + "indeedee-male": 2.8058136025046423, + "morpeko": 2.786892813626155, + "copperajah": 2.0591354730361076, + "duraludon": 1.551817681633469, + "drakloak": 4.815309457939709 }, "mr-mime": { - "ivysaur": 4.1510914010002455, - "charmeleon": 4.32013945793096, - "wartortle": 2.9986279642242177, - "butterfree": 4.375663004987947, - "raichu": 5.506868055686072, - "raichu-alola": 3.0562086482323023, - "sandslash": 2.2981872684113056, - "sandslash-alola": 1.7656881362869763, - "nidoqueen": 3.66889465920496, - "nidoking": 2.435436798185511, - "clefairy": 9.502450284222473, - "clefable": 2.165287971347486, - "jigglypuff": 27.929850041914428, - "wigglytuff": 2.17188637171776, - "gloom": 7.435651199158606, - "vileplume": 4.223823797782398, - "dugtrio": 3.4187942227647827, - "dugtrio-alola": 2.4618864148132955, - "persian": 4.135185564022805, - "persian-alola": 2.8570329154214784, - "golduck": 3.0785651451010034, - "poliwrath": 2.7051790686295907, - "kadabra": 3.3301761713560816, - "machoke": 5.71123760547955, - "tentacruel": 2.7148105883520763, - "slowbro": 1.6952336924045648, - "magneton": 2.6056239305943234, - "haunter": 6.259508664198091, - "kingler": 2.8806560246302295, - "exeggutor": 1.7199948595586103, - "marowak": 2.9129555662775655, - "marowak-alola": 1.8699203395883681, - "hitmonlee": 3.073897756997276, - "hitmonchan": 2.7174140762057037, - "lickitung": 2.05160513966619, - "weezing": 2.461400587027276, - "weezing-galar": 4.187829385376275, - "rhydon": 2.3084480727201284, - "chansey": 19.687869666465517, - "tangela": 5.441363240732629, - "kangaskhan": 1.9078710835713917, - "seadra": 5.27275501782524, - "seaking": 2.1853644211064207, - "starmie": 1.2881793816915599, - "mr-mime-galar": 3.3152437421638967, - "scyther": 2.587928234024758, - "jynx": 3.6434119398421414, - "electabuzz": 2.595748509854288, - "magmar": 1.6823697727393088, - "tauros": 2.1443365078039083, - "ditto": 5.718914542021896, - "vaporeon": 3.1895104770608382, - "jolteon": 1.8712203146441737, - "flareon": 2.222568425494703, - "porygon": 2.9318313833723764, - "dragonair": 2.2302570496008594, - "noctowl": 5.3305946965512625, - "lanturn": 2.0057588711300802, - "togetic": 5.272066038329871, - "xatu": 3.5242952075743093, - "bellossom": 2.4762005274153776, - "azumarill": 2.2261237032194874, - "sudowoodo": 2.8008944800473214, - "politoed": 2.512373539445199, - "quagsire": 5.403155731604958, - "slowking": 2.041849965446641, - "dunsparce": 3.2435110294053215, - "qwilfish": 4.408915674827738, - "sneasel": 1.5882906540641368, - "piloswine": 1.7302512047342549, - "octillery": 2.3191712679689944, - "mantine": 2.3094316507568697, - "skarmory": 1.5888751029988981, - "hitmontop": 3.6602016838712994, - "miltank": 3.6446441930191185, - "grovyle": 8.261536667571256, - "sceptile": 1.50619879597763, - "combusken": 5.198639176968818, - "blaziken": 2.3696931773179344, - "marshtomp": 2.4709903781999962, - "swampert": 1.352534833445202, - "linoone": 4.617968572625899, - "linoone-galar": 3.222796787684998, - "pelipper": 6.387753187827735, - "ninjask": 7.156412546119738, - "exploud": 1.731563374006611, - "lairon": 1.855180871212732, - "manectric": 1.9237095288394115, - "roselia": 5.205242517611884, - "sharpedo": 3.3933931732942764, - "wailmer": 6.424677475888881, - "torkoal": 2.198532867204933, - "flygon": 2.4911303326520327, - "altaria": 1.7475336698087593, - "whiscash": 2.1731265465644305, - "crawdaunt": 1.3386310598671551, - "claydol": 3.029773318717597, - "cradily": 2.2813471791735225, - "armaldo": 1.8563948762718305, - "dusclops": 3.003251179390623, - "absol": 1.3181208566323483, - "glalie": 3.8354233873549632, - "sealeo": 3.3093384802065553, - "relicanth": 2.08113442969569, - "metang": 1.9303439537873441, - "luxray": 3.8843623585584215, - "vespiquen": 2.7058121117929366, - "cherrim": 6.071947974440468, - "gastrodon": 2.0232684834847525, - "drifblim": 4.636915961346267, - "lopunny": 3.6176228632835308, - "skuntank": 0.9028215239277584, - "bronzong": 2.1366019015761433, - "munchlax": 1.8436993705399227, - "drapion": 1.34666826686555, - "abomasnow": 3.0388302623587133, - "froslass": 2.8481841983887968, - "rotom": 3.756155016111294, - "stoutland": 2.320892279057897, - "liepard": 4.429348139646626, - "musharna": 1.4160155111167547, - "unfezant": 6.474888868365793, - "boldore": 3.753823537063341, - "swoobat": 5.049967144941682, - "audino": 2.3995548058772482, - "gurdurr": 3.743898993470399, - "palpitoad": 4.0243352849222145, - "seismitoad": 6.124667958759757, - "scolipede": 4.240234896775895, - "whimsicott": 3.295954969386832, - "lilligant": 3.247779269011125, - "basculin-red-striped": 2.8712510284028667, - "basculin-blue-striped": 3.7620351897524134, - "krookodile": 1.9042587452138595, - "maractus": 2.3236429896808852, - "crustle": 2.243029960765962, - "sigilyph": 2.0370952907873994, - "cofagrigus": 2.790361482193817, - "garbodor": 2.362570051414814, - "cinccino": 4.49093749655722, - "vanillish": 2.252864907529345, - "emolga": 3.20857281301008, - "escavalier": 1.4354915162127724, - "amoonguss": 3.242192510941208, - "jellicent": 1.5539393810642297, - "galvantula": 1.710314425117729, - "klang": 2.2956268384402794, - "klinklang": 2.3234571921024765, - "beheeyem": 1.6184926463760694, - "lampent": 2.744729442945771, - "fraxure": 1.950731410966387, - "beartic": 1.8778108475275146, - "cryogonal": 1.6336144716283023, - "accelgor": 3.0423981862311353, - "stunfisk": 1.3441924876582783, - "stunfisk-galar": 2.0038387572069762, - "mienshao": 4.775286140934837, - "druddigon": 1.664317442431544, - "golurk": 1.79988464838121, - "bisharp": 1.43841815328463, - "bouffalant": 1.2496316790567972, - "heatmor": 1.9883935775241426, - "durant": 2.3631312217516016, - "diggersby": 3.1146688971502234, - "talonflame": 2.9205370848899523, - "pangoro": 1.149717871674378, - "doublade": 1.9533575585945333, - "malamar": 1.987134022394151, - "barbaracle": 1.4522714525382623, - "heliolisk": 3.5438615323800104, - "tyrantrum": 1.881395786031241, - "aurorus": 2.3962708814622458, - "hawlucha": 4.749247807992056, - "dedenne": 3.0819991487159504, - "klefki": 2.3414424377391674, - "trevenant": 3.0936657460148482, - "gourgeist-average": 4.993455270766427, - "charjabug": 4.10225078573629, - "vikavolt": 1.890663292572812, - "ribombee": 4.87953002520239, - "lycanroc-midday": 3.27808451571674, - "lycanroc-midnight": 2.3763516653272854, - "mudsdale": 1.7009580709438157, - "araquanid": 2.0304940791499315, - "lurantis": 2.4744439668831184, - "shiinotic": 4.544068117643262, - "salazzle": 4.199260792486658, - "bewear": 2.399091485722464, - "tsareena": 2.979569095912682, - "comfey": 4.643280487673829, - "oranguru": 2.4755712402909182, - "passimian": 3.605843860915801, - "palossand": 2.1473462351393384, - "pyukumuku": 38.0491287901138, - "togedemaru": 1.607270907528862, - "mimikyu-disguised": 3.2441996343932646, - "greedent": 2.0509053529483925, - "orbeetle": 1.675985321593048, - "thievul": 1.2878162618517828, - "eldegoss": 3.9733567930586586, - "dubwool": 3.016656505609162, - "drednaw": 1.2150366101168402, - "boltund": 4.798418545247469, - "carkol": 2.453009428436987, - "coalossal": 2.1476803257084374, - "sandaconda": 3.6522147733244057, - "cramorant": 4.888183813922405, - "barraskewda": 4.967849186175167, - "toxtricity-amped": 3.875080228631189, - "centiskorch": 1.9845040377335859, - "grapploct": 2.644380546670643, - "polteageist": 2.641217239660219, - "hatterene": 2.186568549569041, - "grimmsnarl": 2.697729139390633, - "obstagoon": 1.6785344181668136, - "perrserker": 2.4720775855503856, - "alcremie": 1.4543273178864793, - "falinks": 4.544833088197451, - "pincurchin": 3.2027630916668164, - "frosmoth": 2.6629658280197708, - "indeedee-male": 2.6783563998794415, - "morpeko": 1.7999182790321064, - "copperajah": 1.787329347689874, - "duraludon": 1.4774505483006322, - "drakloak": 4.821841714790906, - "mr-mime": 6.1418463948725925 + "ivysaur": 4.149019058698041, + "charmeleon": 4.321330486333105, + "wartortle": 2.9983173515990953, + "butterfree": 4.366106012758287, + "raichu": 5.508113172050872, + "raichu-alola": 3.0503866409900575, + "sandslash": 2.293370055562236, + "sandslash-alola": 1.7615532972123527, + "nidoqueen": 3.6652743488881088, + "nidoking": 2.433318085893058, + "clefairy": 9.496663715898034, + "clefable": 2.163988571303997, + "jigglypuff": 27.901394569050773, + "wigglytuff": 2.170867727848224, + "gloom": 7.427672522741545, + "vileplume": 4.226723978562297, + "dugtrio": 3.410803528387161, + "dugtrio-alola": 2.4490013761750458, + "persian": 4.123373037699403, + "persian-alola": 2.8427198012923798, + "golduck": 3.0722183752019614, + "poliwrath": 2.705370121798757, + "kadabra": 3.3223031442463418, + "machoke": 5.715076401880225, + "tentacruel": 2.7101752959446213, + "slowbro": 1.6937965331238345, + "magneton": 2.5969248286238265, + "haunter": 6.25881580242261, + "kingler": 2.878533393829507, + "exeggutor": 1.7158286001818586, + "marowak": 2.902859176813648, + "marowak-alola": 1.8623016718527214, + "hitmonlee": 3.077389309434407, + "hitmonchan": 2.7160229887816447, + "lickitung": 2.0496991873710813, + "weezing": 2.460162832403288, + "weezing-galar": 4.190561201757938, + "rhydon": 2.3007166942691946, + "chansey": 19.614751176826594, + "tangela": 5.429606015232685, + "kangaskhan": 1.904921874376281, + "seadra": 5.2764199101785465, + "seaking": 2.177439496814255, + "starmie": 1.2859482215742182, + "mr-mime": 6.1418463948725925, + "mr-mime-galar": 3.310361352382678, + "scyther": 2.580499634741293, + "jynx": 3.6333662082025615, + "electabuzz": 2.5924438831323586, + "magmar": 1.6799969735461326, + "tauros": 2.1411767787672034, + "ditto": 5.677984343316561, + "vaporeon": 3.1858897837290563, + "jolteon": 1.8672717803700722, + "flareon": 2.2169693634540644, + "porygon": 2.928507664471646, + "dragonair": 2.233219306063047, + "noctowl": 5.317311133299662, + "lanturn": 2.0045595319447744, + "togetic": 5.264121740250235, + "xatu": 3.5200910931595635, + "bellossom": 2.474151012140548, + "azumarill": 2.22225263477049, + "sudowoodo": 2.7977737680976467, + "politoed": 2.507895723186615, + "quagsire": 5.405681703744801, + "slowking": 2.035710620380265, + "dunsparce": 3.2361203461660635, + "qwilfish": 4.395454236758955, + "sneasel": 1.579578429750078, + "piloswine": 1.7290935063827249, + "octillery": 2.3136237301803706, + "mantine": 2.3061339631214386, + "skarmory": 1.5821695556151778, + "hitmontop": 3.6616670848795208, + "miltank": 3.6346981252495465, + "grovyle": 8.257437063061678, + "sceptile": 1.504761852079814, + "combusken": 5.211186598273274, + "blaziken": 2.3724044247157665, + "marshtomp": 2.4658402299986752, + "swampert": 1.3519600253518782, + "linoone": 4.597894849699562, + "linoone-galar": 3.206382457823069, + "pelipper": 6.375340292744307, + "ninjask": 7.136192335976917, + "exploud": 1.7306482291184255, + "lairon": 1.8451128291256622, + "manectric": 1.922942749016642, + "roselia": 5.2082897208357215, + "sharpedo": 3.3778985534989356, + "wailmer": 6.408931951481206, + "torkoal": 2.1976990891619037, + "flygon": 2.48799189839435, + "altaria": 1.7486157923400918, + "whiscash": 2.1704785003789815, + "crawdaunt": 1.331544172189266, + "claydol": 3.025371490290299, + "cradily": 2.2774690672503386, + "armaldo": 1.8521276314589006, + "dusclops": 2.9911598422365873, + "absol": 1.31141740385465, + "glalie": 3.822046417189796, + "sealeo": 3.3049862318744774, + "relicanth": 2.078031872704764, + "metang": 1.9195499657891277, + "luxray": 3.8769677259382984, + "vespiquen": 2.7002373062871223, + "cherrim": 6.065256022105182, + "gastrodon": 2.0174069643931625, + "drifblim": 4.636578414826477, + "lopunny": 3.610114527247122, + "skuntank": 0.8978134742592675, + "bronzong": 2.126659333089277, + "munchlax": 1.83537340261896, + "drapion": 1.3374101411817074, + "abomasnow": 3.0300765914650007, + "froslass": 2.841618457326862, + "rotom": 3.7497792216222194, + "stoutland": 2.3135442404580893, + "liepard": 4.40438742602975, + "musharna": 1.414401394285302, + "unfezant": 6.461930911612598, + "boldore": 3.750327307434028, + "swoobat": 5.044078703260164, + "audino": 2.3973366607618694, + "gurdurr": 3.7521483986358675, + "palpitoad": 4.020770720124742, + "seismitoad": 6.105114879267452, + "scolipede": 4.233199467334053, + "whimsicott": 3.2919351212782297, + "lilligant": 3.245185384785289, + "basculin-red-striped": 2.865387170138277, + "basculin-blue-striped": 3.7553566870665733, + "krookodile": 1.8951979698619876, + "maractus": 2.32151793373869, + "crustle": 2.240354111472479, + "sigilyph": 2.032630506613142, + "cofagrigus": 2.786525791880446, + "garbodor": 2.355532156488853, + "cinccino": 4.478979259622547, + "vanillish": 2.250265611516007, + "emolga": 3.20489313963641, + "escavalier": 1.430316869754138, + "amoonguss": 3.2379345400362194, + "jellicent": 1.5521559276579955, + "galvantula": 1.7090462570195921, + "klang": 2.2892732621494982, + "klinklang": 2.309009518955775, + "beheeyem": 1.6158998238085465, + "lampent": 2.7438421184850097, + "fraxure": 1.9521015057106306, + "beartic": 1.8770646513439484, + "cryogonal": 1.6308947596489185, + "accelgor": 3.0366478557274603, + "stunfisk": 1.3430859416477225, + "stunfisk-galar": 1.9999274205558462, + "mienshao": 4.7766906712101616, + "druddigon": 1.6584255510627504, + "golurk": 1.7954806585505136, + "bisharp": 1.4291302145377478, + "bouffalant": 1.246401505067566, + "heatmor": 1.9867000398621206, + "durant": 2.3521289965896126, + "diggersby": 3.1067199482779797, + "talonflame": 2.914739008128511, + "pangoro": 1.1440889309330138, + "doublade": 1.9462211578961284, + "malamar": 1.978851121476934, + "barbaracle": 1.446463581374874, + "heliolisk": 3.5391209528336116, + "tyrantrum": 1.8813942161911914, + "aurorus": 2.3910550291222563, + "hawlucha": 4.744324079671698, + "dedenne": 3.079871397913296, + "klefki": 2.3325425502273034, + "trevenant": 3.0902752526441963, + "gourgeist-average": 4.976033920433284, + "charjabug": 4.092550150498093, + "vikavolt": 1.8871501266538078, + "ribombee": 4.87515840644374, + "lycanroc-midday": 3.270726849944377, + "lycanroc-midnight": 2.3722612622913473, + "mudsdale": 1.699952486582959, + "araquanid": 2.022759387665423, + "lurantis": 2.470550482003775, + "shiinotic": 4.539028921471628, + "salazzle": 4.1932500812755755, + "bewear": 2.3950384464967147, + "tsareena": 2.9718218381281867, + "comfey": 4.640349148970282, + "oranguru": 2.47317403666769, + "passimian": 3.609667877623972, + "palossand": 2.144095074909928, + "pyukumuku": 37.93918801079122, + "togedemaru": 1.5961726804102807, + "mimikyu-disguised": 3.2273334957255435, + "greedent": 2.0439719791703546, + "orbeetle": 1.6742517167846436, + "thievul": 1.2827722813296076, + "eldegoss": 3.968842216476464, + "dubwool": 3.010865994629342, + "drednaw": 1.210768776426244, + "boltund": 4.790409157236308, + "carkol": 2.450263400419418, + "coalossal": 2.146317072744102, + "sandaconda": 3.652089487530535, + "cramorant": 4.873102730533841, + "barraskewda": 4.962414774924142, + "toxtricity-amped": 3.876701627792791, + "centiskorch": 1.9804938006512018, + "grapploct": 2.6516488292552296, + "polteageist": 2.6387932911781995, + "hatterene": 2.182357054727193, + "grimmsnarl": 2.6892377338960287, + "obstagoon": 1.669156151340767, + "perrserker": 2.4605239562883208, + "alcremie": 1.4531664537224944, + "falinks": 4.541589675897751, + "pincurchin": 3.200844680080997, + "frosmoth": 2.658498907206294, + "indeedee-male": 2.6714748082627615, + "morpeko": 1.7910812617368779, + "copperajah": 1.7792885732886625, + "duraludon": 1.472837276126596, + "drakloak": 4.817830807864151 }, "mr-mime-galar": { - "ivysaur": 4.066397967181395, - "charmeleon": 3.4695026900859736, - "wartortle": 2.822449907903717, - "butterfree": 4.479047767674427, - "raichu": 4.956550672816455, - "raichu-alola": 3.169910567977159, - "sandslash": 2.460704035433941, - "sandslash-alola": 1.5550429577857818, - "nidoqueen": 3.552070642845713, - "nidoking": 2.314070705972601, - "clefairy": 8.253743705606674, - "clefable": 1.9356553261866594, - "jigglypuff": 26.374678465747778, - "wigglytuff": 2.031975559200005, - "gloom": 7.48883418313013, - "vileplume": 3.659028143743899, - "dugtrio": 3.433205118320465, - "dugtrio-alola": 2.6199126044198353, - "persian": 4.048382079354653, - "persian-alola": 3.116511191018687, - "golduck": 2.985937842374053, - "poliwrath": 2.471190961895396, - "kadabra": 3.428449801865063, - "machoke": 4.601665371174034, - "tentacruel": 2.7693416222010807, - "slowbro": 1.558114305886202, - "magneton": 2.4478206894099994, - "haunter": 5.735585542285367, - "kingler": 2.6571151437046323, - "exeggutor": 2.285482332250525, - "marowak": 3.2254586026624317, - "marowak-alola": 1.7077252070842948, - "hitmonlee": 2.4977066628332327, - "hitmonchan": 2.486336262562507, - "lickitung": 2.00282656038623, - "weezing": 2.1413677008513954, - "weezing-galar": 3.812920536183234, - "rhydon": 2.5315949132707942, - "chansey": 19.09027891260763, - "tangela": 6.434742466263984, - "kangaskhan": 1.6688922516371596, - "seadra": 4.666295876278334, - "seaking": 2.2758166765601575, - "starmie": 1.2370760025798624, - "mr-mime": 6.453196469772395, - "scyther": 2.687501886322306, - "jynx": 3.6827546984571615, - "electabuzz": 2.441017679023801, - "magmar": 1.3916280439356798, - "tauros": 1.933050500396317, - "ditto": 3.499667400773625, - "vaporeon": 3.0165449754728706, - "jolteon": 1.7559821848873058, - "flareon": 1.798754610494695, - "porygon": 2.70059982034335, - "dragonair": 2.164120143298529, - "noctowl": 5.900622745513807, - "lanturn": 1.8880024737702192, - "togetic": 5.479970675772877, - "xatu": 4.70023808142391, - "bellossom": 2.690398285266044, - "azumarill": 2.1814067619569, - "sudowoodo": 2.4166330250842485, - "politoed": 2.4246985565270327, - "quagsire": 4.881893987402584, - "slowking": 2.090937235165649, - "dunsparce": 3.0240415534874296, - "qwilfish": 4.67515018834755, - "sneasel": 1.617248741957149, - "piloswine": 1.6555958515543137, - "octillery": 2.1341829733064257, - "mantine": 2.208031561739712, - "skarmory": 1.6769515550312608, - "hitmontop": 3.4353712269370216, - "miltank": 3.5950825142178533, - "grovyle": 8.573941387494674, - "sceptile": 1.5120549904537026, - "combusken": 4.2107971637726545, - "blaziken": 1.907435069547625, - "marshtomp": 2.4730151113716303, - "swampert": 1.331661900341337, - "linoone": 4.332853180002635, - "linoone-galar": 3.4552963008684836, - "pelipper": 6.171865671902348, - "ninjask": 6.826973184320092, - "exploud": 1.674739026386961, - "lairon": 1.6120798432340977, - "manectric": 1.74618689766154, - "roselia": 4.869116554681314, - "sharpedo": 3.4772228292506564, - "wailmer": 6.221809093974669, - "torkoal": 1.7274347763528146, - "flygon": 3.5573953857569447, - "altaria": 2.3678444320852092, - "whiscash": 2.08474105008977, - "crawdaunt": 1.5022773314415492, - "claydol": 3.786296753264723, - "cradily": 2.4547343846202665, - "armaldo": 1.5873496974483565, - "dusclops": 2.7372036082555713, - "absol": 1.6951502394030622, - "glalie": 3.701613862609669, - "sealeo": 3.2889346028894924, - "relicanth": 1.78828499723162, - "metang": 2.0884853222707425, - "luxray": 3.7407921963143096, - "vespiquen": 2.7333864828550984, - "cherrim": 6.61992405808223, - "gastrodon": 1.8404325104131187, - "drifblim": 5.125861477856109, - "lopunny": 3.4101049228844476, - "skuntank": 1.1310579666287603, - "bronzong": 2.3058782721297972, - "munchlax": 1.8479329674580767, - "drapion": 1.8180684381202414, - "abomasnow": 3.123948437707311, - "froslass": 2.8871498964537166, - "rotom": 3.467790347319869, - "stoutland": 2.2834476498463028, - "liepard": 5.5297118605872235, - "musharna": 1.5004410841509062, - "unfezant": 7.5461377934437905, - "boldore": 3.2325428038892245, - "swoobat": 6.738982513355779, - "audino": 2.155613692590421, - "gurdurr": 3.1686483812447825, - "palpitoad": 3.8238400388795863, - "seismitoad": 6.382259489807947, - "scolipede": 3.4931524377964474, - "whimsicott": 3.695279131496713, - "lilligant": 3.34903706503881, - "basculin-red-striped": 2.8923074381781007, - "basculin-blue-striped": 3.418314223511646, - "krookodile": 2.906572795410539, - "maractus": 2.485884850737909, - "crustle": 1.8235794636171696, - "sigilyph": 2.700385727979831, - "cofagrigus": 2.5924740885975703, - "garbodor": 2.457353114054748, - "cinccino": 4.593706499665679, - "vanillish": 2.2847771259988203, - "emolga": 3.5952422693295594, - "escavalier": 1.3413949606919262, - "amoonguss": 3.2976358789712394, - "jellicent": 1.5290415610342598, - "galvantula": 1.5466243127590542, - "klang": 2.0798822791768554, - "klinklang": 2.3389699388143743, - "beheeyem": 1.5571245104895428, - "lampent": 2.0963854945031044, - "fraxure": 1.7815547986470368, - "beartic": 1.8608359823561635, - "cryogonal": 1.7070085373832842, - "accelgor": 2.4500088774841124, - "stunfisk": 1.4646475389705111, - "stunfisk-galar": 1.9956092292654477, - "mienshao": 4.148470138743047, - "druddigon": 1.8420648754182243, - "golurk": 1.9580355443766373, - "bisharp": 1.74457663135357, - "bouffalant": 1.1291903896414799, - "heatmor": 1.6620836988592296, - "durant": 2.156703910562391, - "diggersby": 3.4135567388538175, - "talonflame": 2.6317438159465487, - "pangoro": 1.3864830222419706, - "doublade": 1.8540436666863176, - "malamar": 2.450494576209609, - "barbaracle": 1.5115109535580233, - "heliolisk": 3.349567203859853, - "tyrantrum": 1.8637608051852594, - "aurorus": 2.2823414334890444, - "hawlucha": 4.3052742944518165, - "dedenne": 2.873747581416486, - "klefki": 2.254360848091997, - "trevenant": 3.36584249506054, - "gourgeist-average": 5.533173570306175, - "charjabug": 3.9828738636507612, - "vikavolt": 1.7182881711346214, - "ribombee": 4.138555489195736, - "lycanroc-midday": 2.74721330147291, - "lycanroc-midnight": 1.950973594336877, - "mudsdale": 1.700696883754277, - "araquanid": 1.9523883490862275, - "lurantis": 2.5828723457937883, - "shiinotic": 4.961075378728086, - "salazzle": 3.9147012556649496, - "bewear": 2.2444239342172665, - "tsareena": 3.427773046046696, - "comfey": 4.388088856973457, - "oranguru": 2.6248509555923767, - "passimian": 3.057040047922894, - "palossand": 2.3903340003464697, - "pyukumuku": 40.94136368096008, - "togedemaru": 1.6632255721706564, - "mimikyu-disguised": 3.2307816800967166, - "greedent": 2.0299939580425015, - "orbeetle": 1.584165817527607, - "thievul": 1.327834491592255, - "eldegoss": 4.317228729803393, - "dubwool": 2.83038250822004, - "drednaw": 1.0422586242057044, - "boltund": 4.165285023791217, - "carkol": 1.9685079231423364, - "coalossal": 1.8065552067890285, - "sandaconda": 3.616311180215363, - "cramorant": 4.391757469049838, - "barraskewda": 4.201500042891143, - "toxtricity-amped": 3.5559625865402813, - "centiskorch": 1.8321990392318583, - "grapploct": 2.28712680171476, - "polteageist": 2.4313968198527407, - "hatterene": 2.3670716592268777, - "grimmsnarl": 3.0878994466080005, - "obstagoon": 2.0984953967289397, - "perrserker": 2.2727064241732755, - "alcremie": 1.3189577878625935, - "falinks": 3.8733792995615137, - "pincurchin": 3.05343598004438, - "frosmoth": 2.2024182644680534, - "indeedee-male": 2.6335883732362033, - "morpeko": 2.4139720190343645, - "copperajah": 1.6659457608877024, - "duraludon": 1.4456207834075312, - "drakloak": 4.714979091748955, - "mr-mime-galar": 3.431234563189827 + "ivysaur": 4.07022566113759, + "charmeleon": 3.458626025116544, + "wartortle": 2.821162454689237, + "butterfree": 4.468106001616941, + "raichu": 4.953153604859866, + "raichu-alola": 3.1648873888902425, + "sandslash": 2.4559358791902177, + "sandslash-alola": 1.5502814988451914, + "nidoqueen": 3.55323012156037, + "nidoking": 2.3142963086241957, + "clefairy": 8.23636369710704, + "clefable": 1.932752902386438, + "jigglypuff": 26.351491336772607, + "wigglytuff": 2.0313594865314766, + "gloom": 7.4960919547028935, + "vileplume": 3.6584036807304434, + "dugtrio": 3.4272742062764565, + "dugtrio-alola": 2.6079663230030468, + "persian": 4.039954928606395, + "persian-alola": 3.0993425828673744, + "golduck": 2.9805083942818573, + "poliwrath": 2.469675309598788, + "kadabra": 3.4219004376277997, + "machoke": 4.592305569369835, + "tentacruel": 2.7680147725268176, + "slowbro": 1.5553539673377317, + "magneton": 2.438946866528984, + "haunter": 5.733828613237806, + "kingler": 2.6537959501531527, + "exeggutor": 2.283981661756378, + "marowak": 3.217066015988485, + "marowak-alola": 1.6998078655496576, + "hitmonlee": 2.4930797466058827, + "hitmonchan": 2.4838179144386126, + "lickitung": 2.001927284010766, + "weezing": 2.1407945247161155, + "weezing-galar": 3.8144188127573475, + "rhydon": 2.525109282132821, + "chansey": 19.015161137801808, + "tangela": 6.433398442535582, + "kangaskhan": 1.6641842490504835, + "seadra": 4.663052358865256, + "seaking": 2.270950678488314, + "starmie": 1.2340835655495552, + "mr-mime": 6.4517272375541355, + "mr-mime-galar": 3.431234563189827, + "scyther": 2.679454945880987, + "jynx": 3.6748253337784913, + "electabuzz": 2.4379400549724304, + "magmar": 1.3870199757948973, + "tauros": 1.9290407422031814, + "ditto": 3.475063453639394, + "vaporeon": 3.0121326241358846, + "jolteon": 1.7520853440561839, + "flareon": 1.791839725925249, + "porygon": 2.6964980413830224, + "dragonair": 2.1633674632960735, + "noctowl": 5.892991171333419, + "lanturn": 1.8862960065702683, + "togetic": 5.470558395443176, + "xatu": 4.701961344307982, + "bellossom": 2.6905402515531254, + "azumarill": 2.1791166158194657, + "sudowoodo": 2.410483570431233, + "politoed": 2.420550094326147, + "quagsire": 4.880903711698615, + "slowking": 2.086818804417445, + "dunsparce": 3.016966390857465, + "qwilfish": 4.670756095077286, + "sneasel": 1.6070071160201036, + "piloswine": 1.653170588005799, + "octillery": 2.1275749701496425, + "mantine": 2.2052288256097103, + "skarmory": 1.6702904711301132, + "hitmontop": 3.4368404444325225, + "miltank": 3.589229111077916, + "grovyle": 8.568849017295802, + "sceptile": 1.510061488881011, + "combusken": 4.207568374331325, + "blaziken": 1.9036314890578214, + "marshtomp": 2.470973062881096, + "swampert": 1.331771042166613, + "linoone": 4.31435105449766, + "linoone-galar": 3.4338147418937335, + "pelipper": 6.164211344457385, + "ninjask": 6.797111254194878, + "exploud": 1.6735952264123855, + "lairon": 1.6035077953974057, + "manectric": 1.7439526371287817, + "roselia": 4.873731430469562, + "sharpedo": 3.456485507608355, + "wailmer": 6.208056107069474, + "torkoal": 1.72327031294847, + "flygon": 3.552351436766487, + "altaria": 2.3680349088918784, + "whiscash": 2.0837931587385383, + "crawdaunt": 1.4938856922625223, + "claydol": 3.7828436671295753, + "cradily": 2.4519131152314326, + "armaldo": 1.5812714690544967, + "dusclops": 2.7256124531225465, + "absol": 1.686630862327158, + "glalie": 3.688920046680118, + "sealeo": 3.2858225824577003, + "relicanth": 1.782192116746298, + "metang": 2.079170889431177, + "luxray": 3.735755240499747, + "vespiquen": 2.7259480879365787, + "cherrim": 6.6178234984098605, + "gastrodon": 1.8340846843964893, + "drifblim": 5.130518890163199, + "lopunny": 3.4031550439632916, + "skuntank": 1.1246825236632734, + "bronzong": 2.297680408334105, + "munchlax": 1.8407312652442887, + "drapion": 1.8066337583292496, + "abomasnow": 3.119575003772946, + "froslass": 2.8837479703794955, + "rotom": 3.462190901066756, + "stoutland": 2.278238502080228, + "liepard": 5.500713650805976, + "musharna": 1.4997052577302319, + "unfezant": 7.544737496670038, + "boldore": 3.225179004810186, + "swoobat": 6.741694505958401, + "audino": 2.1515480913787037, + "gurdurr": 3.1698090806254777, + "palpitoad": 3.8214715601994698, + "seismitoad": 6.374501945876167, + "scolipede": 3.4803111483531275, + "whimsicott": 3.695244647836719, + "lilligant": 3.3451882834547835, + "basculin-red-striped": 2.8893531793479523, + "basculin-blue-striped": 3.409146226661975, + "krookodile": 2.895494046935564, + "maractus": 2.4843818147828145, + "crustle": 1.8170607599980189, + "sigilyph": 2.698264675007018, + "cofagrigus": 2.589348125983435, + "garbodor": 2.456819133406648, + "cinccino": 4.588998436513421, + "vanillish": 2.284550886002712, + "emolga": 3.595790582264716, + "escavalier": 1.3359585666796756, + "amoonguss": 3.3005408544365737, + "jellicent": 1.5281072737220796, + "galvantula": 1.5439268744217305, + "klang": 2.072085800092189, + "klinklang": 2.326615924910339, + "beheeyem": 1.5527545063492, + "lampent": 2.0900927656045685, + "fraxure": 1.7784542163955086, + "beartic": 1.8599595674209555, + "cryogonal": 1.7058804604956155, + "accelgor": 2.440608772619717, + "stunfisk": 1.464643025564251, + "stunfisk-galar": 1.9904030535165917, + "mienshao": 4.144010431082242, + "druddigon": 1.8371628078068805, + "golurk": 1.9544098804390062, + "bisharp": 1.735425232115198, + "bouffalant": 1.1256839966726968, + "heatmor": 1.6565517905581122, + "durant": 2.1453954438355236, + "diggersby": 3.407734564211663, + "talonflame": 2.624752740645595, + "pangoro": 1.3792215466346978, + "doublade": 1.8477624723304826, + "malamar": 2.4406989371376024, + "barbaracle": 1.5081587202701976, + "heliolisk": 3.344968811965791, + "tyrantrum": 1.8612028150397975, + "aurorus": 2.2765302890587624, + "hawlucha": 4.301515152862482, + "dedenne": 2.872220790347064, + "klefki": 2.2462859136478226, + "trevenant": 3.364177377675797, + "gourgeist-average": 5.517850909945093, + "charjabug": 3.977604498071572, + "vikavolt": 1.714450217556046, + "ribombee": 4.126984111940487, + "lycanroc-midday": 2.7353838111258613, + "lycanroc-midnight": 1.942801958505093, + "mudsdale": 1.6979512820005604, + "araquanid": 1.9450267134593564, + "lurantis": 2.5785457355197154, + "shiinotic": 4.959578013563464, + "salazzle": 3.906438295409681, + "bewear": 2.240888791486852, + "tsareena": 3.4248136669975144, + "comfey": 4.3858563392042855, + "oranguru": 2.6241738623854554, + "passimian": 3.0549444255026152, + "palossand": 2.3888344067370135, + "pyukumuku": 40.83589674358127, + "togedemaru": 1.6548331653743968, + "mimikyu-disguised": 3.217894735703541, + "greedent": 2.02533680497805, + "orbeetle": 1.5817932963491639, + "thievul": 1.3203283642191939, + "eldegoss": 4.315625350178545, + "dubwool": 2.8249488053191447, + "drednaw": 1.0377588742323005, + "boltund": 4.1527989938275125, + "carkol": 1.9609697449828234, + "coalossal": 1.8008756927291985, + "sandaconda": 3.611258094495687, + "cramorant": 4.3742701640920725, + "barraskewda": 4.187547482023874, + "toxtricity-amped": 3.557055009230021, + "centiskorch": 1.8270426560434183, + "grapploct": 2.288231918856131, + "polteageist": 2.4281604796819187, + "hatterene": 2.3648943896880708, + "grimmsnarl": 3.0738900353652974, + "obstagoon": 2.087901609455903, + "perrserker": 2.260929815353597, + "alcremie": 1.316742482439376, + "falinks": 3.864905373177736, + "pincurchin": 3.0520622645294733, + "frosmoth": 2.1954893557252984, + "indeedee-male": 2.6250123313466043, + "morpeko": 2.4060674982104877, + "copperajah": 1.6577157657171737, + "duraludon": 1.441902302144682, + "drakloak": 4.703940612114479 }, "scyther": { - "ivysaur": 4.805302895032071, - "charmeleon": 3.5536357153743516, - "wartortle": 2.695644049065127, - "butterfree": 6.970149451549798, - "raichu": 4.736985516042609, - "raichu-alola": 4.122798284650941, - "sandslash": 1.8891773812374648, - "sandslash-alola": 1.3070830149312158, - "nidoqueen": 2.9498969643832025, - "nidoking": 1.7514093866166145, - "clefairy": 9.35477800895175, - "clefable": 1.899515827044696, - "jigglypuff": 27.704669550233874, - "wigglytuff": 2.027821186002776, - "gloom": 7.5726801264077706, - "vileplume": 4.417519468068146, - "dugtrio": 3.149388831979686, - "dugtrio-alola": 3.3271747547992594, - "persian": 4.286258928080957, - "persian-alola": 4.988140781956208, - "golduck": 3.0654999606947193, - "poliwrath": 2.6016890575202285, - "kadabra": 5.161002602238863, - "machoke": 4.530068812340099, - "tentacruel": 2.5748011040188317, - "slowbro": 1.8620464837167838, - "magneton": 2.4853260248244395, - "haunter": 5.56923144430651, - "kingler": 2.3876366356431884, - "exeggutor": 3.1868587201459553, - "marowak": 3.151227455185608, - "marowak-alola": 2.0145775983171945, - "hitmonlee": 3.826867255906212, - "hitmonchan": 2.7484283728680774, - "lickitung": 1.7370224928455866, - "weezing": 1.335923504212456, - "weezing-galar": 2.2948497330113575, - "rhydon": 1.826519413122302, - "chansey": 30.235601941688294, - "tangela": 5.748187536226138, - "kangaskhan": 1.8866452470198656, - "seadra": 3.7714043209218477, - "seaking": 2.5410920173031992, - "starmie": 1.4887974716574148, - "mr-mime": 7.368359590743527, - "mr-mime-galar": 3.853687829233423, - "jynx": 5.291332079379094, - "electabuzz": 2.1058111441851075, - "magmar": 1.545747829565577, - "tauros": 2.088533528020154, - "ditto": 4.009034468081684, - "vaporeon": 3.4031774276603457, - "jolteon": 1.774990382014308, - "flareon": 2.218093158961972, - "porygon": 2.572344760835576, - "dragonair": 1.7301560674210146, - "noctowl": 5.787617896714946, - "lanturn": 1.733214176340084, - "togetic": 5.067469066881293, - "xatu": 3.8943235967985803, - "bellossom": 3.2132809280411587, - "azumarill": 2.202747089037424, - "sudowoodo": 1.988566921100491, - "politoed": 2.8196420755966494, - "quagsire": 4.692303843331473, - "slowking": 2.8986831682663086, - "dunsparce": 3.03086041049991, - "qwilfish": 3.1951146508451114, - "sneasel": 2.581137330790529, - "piloswine": 1.3143083636297668, - "octillery": 2.3944657212182845, - "mantine": 2.5163637300114106, - "skarmory": 1.595703792941161, - "hitmontop": 3.817995079433649, - "miltank": 3.3557118938130155, - "grovyle": 12.536159730536001, - "sceptile": 2.0965140212774322, - "combusken": 4.488522343591339, - "blaziken": 2.0448842304702444, - "marshtomp": 2.494830769936501, - "swampert": 1.2147687889728211, - "linoone": 5.275685028776728, - "linoone-galar": 5.318563014251305, - "pelipper": 5.31260416412214, - "ninjask": 10.859564397570116, - "exploud": 1.5422493679725129, - "lairon": 1.3857314077357743, - "manectric": 1.5157187558246812, - "roselia": 6.264943039752906, - "sharpedo": 5.836998583391229, - "wailmer": 6.268545095606175, - "torkoal": 1.4230652319572115, - "flygon": 2.4869898550770584, - "altaria": 1.5041935817172394, - "whiscash": 1.9917938470701444, - "crawdaunt": 2.157316763879393, - "claydol": 3.4953872714393524, - "cradily": 2.402883444398561, - "armaldo": 1.6800329329827441, - "dusclops": 3.879346808658796, - "absol": 2.114928253163566, - "glalie": 3.8295479687135225, - "sealeo": 2.9587159800914797, - "relicanth": 1.3443559719833087, - "metang": 2.9756150571348146, - "luxray": 3.1848834849646526, - "vespiquen": 3.5180606200072435, - "cherrim": 8.405739177384566, - "gastrodon": 2.0411715213580957, - "drifblim": 4.505295518700745, - "lopunny": 3.695034894312803, - "skuntank": 1.3581302560691086, - "bronzong": 3.5419430125994475, - "munchlax": 2.3005347757129906, - "drapion": 2.3357231122749953, - "abomasnow": 4.013187322475742, - "froslass": 2.910449111466814, - "rotom": 3.892515907521082, - "stoutland": 2.382634453749161, - "liepard": 8.17340849945548, - "musharna": 1.8860714910336946, - "unfezant": 5.165866943402838, - "boldore": 2.4405779564122905, - "swoobat": 5.574803613706393, - "audino": 2.142014215006344, - "gurdurr": 3.0245162449680687, - "palpitoad": 3.945353045192648, - "seismitoad": 6.319939497510024, - "scolipede": 4.151897660818156, - "whimsicott": 4.033761689560391, - "lilligant": 4.452466146849211, - "basculin-red-striped": 2.6591038472125783, - "basculin-blue-striped": 3.556641088798189, - "krookodile": 3.3951901823923634, - "maractus": 3.2383179880233754, - "crustle": 1.7522102210698423, - "sigilyph": 2.4052772739750283, - "cofagrigus": 2.727482805479835, - "garbodor": 1.8951722287094732, - "cinccino": 4.277076526388932, - "vanillish": 1.9159584879253762, - "emolga": 2.256579147991845, - "escavalier": 1.9978070977477416, - "amoonguss": 3.6175326657557196, - "jellicent": 1.7596448973448084, - "galvantula": 1.416974141420681, - "klang": 2.0202443157102485, - "klinklang": 2.835050044142243, - "beheeyem": 1.9798746744977778, - "lampent": 2.407371073900044, - "fraxure": 1.4947670075457626, - "beartic": 1.54558380828666, - "cryogonal": 1.6920840576116614, - "accelgor": 4.776377222096086, - "stunfisk": 1.2163537693988928, - "stunfisk-galar": 2.134574203345684, - "mienshao": 4.081276836559794, - "druddigon": 1.8155350077332648, - "golurk": 2.252596887621854, - "bisharp": 2.134634216131996, - "bouffalant": 1.3347008839765107, - "heatmor": 1.7351298302332672, - "durant": 2.629805485605641, - "diggersby": 3.1554954590908295, - "talonflame": 2.587319759949146, - "pangoro": 2.384331213730638, - "doublade": 2.1401600538286907, - "malamar": 4.203747062659131, - "barbaracle": 1.2593756311868636, - "heliolisk": 3.3825708458678747, - "tyrantrum": 1.223820433798261, - "aurorus": 1.827379145166467, - "hawlucha": 4.652003317758105, - "dedenne": 2.3372869740852167, - "klefki": 2.4761245559886085, - "trevenant": 4.665408132354453, - "gourgeist-average": 5.817997595769843, - "charjabug": 3.7322098206352186, - "vikavolt": 1.8466333487987652, - "ribombee": 6.7251465515967315, - "lycanroc-midday": 2.238529255111552, - "lycanroc-midnight": 1.8557334126655098, - "mudsdale": 1.698749837766534, - "araquanid": 3.5333059437145478, - "lurantis": 3.370661072190803, - "shiinotic": 6.034340993329963, - "salazzle": 2.9557939420140675, - "bewear": 2.165169513513204, - "tsareena": 4.089378251288889, - "comfey": 4.908718260179726, - "oranguru": 3.2886955411170473, - "passimian": 2.5092056294311, - "palossand": 2.2363322408630535, - "pyukumuku": 43.52562015632232, - "togedemaru": 1.8736082166062111, - "mimikyu-disguised": 4.215169117145878, - "greedent": 2.0421549817235953, - "orbeetle": 2.495636344931604, - "thievul": 2.1202847877056277, - "eldegoss": 5.895400211547246, - "dubwool": 3.1053089929867865, - "drednaw": 0.8862394273095016, - "boltund": 3.9959622446981617, - "carkol": 1.5174297180622256, - "coalossal": 1.4072856107622926, - "sandaconda": 3.135524844883564, - "cramorant": 5.88348764402479, - "barraskewda": 4.482120815217059, - "toxtricity-amped": 2.1940423108610223, - "centiskorch": 2.7816929120108607, - "grapploct": 2.313211503454705, - "polteageist": 3.5025827867130226, - "hatterene": 2.5268350011157317, - "grimmsnarl": 4.082975396896237, - "obstagoon": 2.6956202603756374, - "perrserker": 2.5914988178625062, - "alcremie": 1.5353294845476744, - "falinks": 3.979181843221663, - "pincurchin": 2.5145943349896873, - "frosmoth": 3.6430084830504983, - "indeedee-male": 3.8788126582861975, - "morpeko": 2.8264453234083877, - "copperajah": 2.179616382602834, - "duraludon": 1.186126950518911, - "drakloak": 5.062608034512758, - "scyther": 3.352056185150178 + "ivysaur": 4.821416947285457, + "charmeleon": 3.54729111084566, + "wartortle": 2.6965136484010355, + "butterfree": 6.989163219863151, + "raichu": 4.735260622277083, + "raichu-alola": 4.122434023598265, + "sandslash": 1.886716010794441, + "sandslash-alola": 1.3017953523213492, + "nidoqueen": 2.9540340556715163, + "nidoking": 1.7502494946987341, + "clefairy": 9.352781232292699, + "clefable": 1.894535137803178, + "jigglypuff": 27.704057957063778, + "wigglytuff": 2.0271646993300885, + "gloom": 7.581361584881736, + "vileplume": 4.434061183341797, + "dugtrio": 3.1509829009667008, + "dugtrio-alola": 3.3304028249245174, + "persian": 4.286094824741287, + "persian-alola": 4.991313588066049, + "golduck": 3.066392167707911, + "poliwrath": 2.605726159552785, + "kadabra": 5.1718335161678155, + "machoke": 4.525106406548587, + "tentacruel": 2.5770250618777393, + "slowbro": 1.8621865321467364, + "magneton": 2.4778190505099946, + "haunter": 5.580278009133891, + "kingler": 2.390005058023111, + "exeggutor": 3.199033242913509, + "marowak": 3.15589438663247, + "marowak-alola": 2.0123478013997267, + "hitmonlee": 3.8367900228299137, + "hitmonchan": 2.746461044786966, + "lickitung": 1.7346329753246983, + "weezing": 1.3341384113079822, + "weezing-galar": 2.290610338573464, + "rhydon": 1.8203291521374947, + "chansey": 30.269022200571566, + "tangela": 5.760774931256646, + "kangaskhan": 1.8879537339655834, + "seadra": 3.768180627247737, + "seaking": 2.543687705919642, + "starmie": 1.4866397300567633, + "mr-mime": 7.3756812884361675, + "mr-mime-galar": 3.8545314176201226, + "scyther": 3.352056185150178, + "jynx": 5.293425366828847, + "electabuzz": 2.101300596296505, + "magmar": 1.5435855591807295, + "tauros": 2.0919631752410126, + "ditto": 3.990241870016809, + "vaporeon": 3.4066855410564987, + "jolteon": 1.7726959159965139, + "flareon": 2.2170946247772942, + "porygon": 2.568619991621832, + "dragonair": 1.7285334704877802, + "noctowl": 5.78145603104689, + "lanturn": 1.7323179383470357, + "togetic": 5.059648132983025, + "xatu": 3.8919912328184694, + "bellossom": 3.223755798322784, + "azumarill": 2.203406681879471, + "sudowoodo": 1.9819287425857608, + "politoed": 2.8253152011595892, + "quagsire": 4.697633947565038, + "slowking": 2.901448255446719, + "dunsparce": 3.028082114594862, + "qwilfish": 3.1936035500721784, + "sneasel": 2.5793690699006033, + "piloswine": 1.3113659959069217, + "octillery": 2.3962280306733126, + "mantine": 2.515733806632504, + "skarmory": 1.592898291734878, + "hitmontop": 3.8259152984094777, + "miltank": 3.353983515428947, + "grovyle": 12.597419810571655, + "sceptile": 2.1054370912155655, + "combusken": 4.493606991828637, + "blaziken": 2.0446363485719523, + "marshtomp": 2.496334766048536, + "swampert": 1.2162286028027813, + "linoone": 5.278380095829062, + "linoone-galar": 5.32003179644876, + "pelipper": 5.3011969915165125, + "ninjask": 10.890307226738141, + "exploud": 1.5424162296172086, + "lairon": 1.3789157085002888, + "manectric": 1.512684393244069, + "roselia": 6.284875127571976, + "sharpedo": 5.839745393890201, + "wailmer": 6.266165957139356, + "torkoal": 1.4193165071103584, + "flygon": 2.4900483483271962, + "altaria": 1.5032051761470901, + "whiscash": 1.9912215354756189, + "crawdaunt": 2.157259594600626, + "claydol": 3.492307100141126, + "cradily": 2.3998531781641996, + "armaldo": 1.6777711155951054, + "dusclops": 3.883750106178157, + "absol": 2.113814179563212, + "glalie": 3.8242587835340607, + "sealeo": 2.9552809500695556, + "relicanth": 1.3373055976538972, + "metang": 2.9737450685783693, + "luxray": 3.1777077402410385, + "vespiquen": 3.5210630838640764, + "cherrim": 8.434389626404528, + "gastrodon": 2.0393183995794772, + "drifblim": 4.499560323371103, + "lopunny": 3.6960288315566747, + "skuntank": 1.3580228211935532, + "bronzong": 3.5446762354764862, + "munchlax": 2.299649351503008, + "drapion": 2.3369043815280364, + "abomasnow": 4.016581130603478, + "froslass": 2.9061531848369695, + "rotom": 3.8878124326774093, + "stoutland": 2.381903116763163, + "liepard": 8.179023734553095, + "musharna": 1.8902991003890461, + "unfezant": 5.15101060271185, + "boldore": 2.4312597034671777, + "swoobat": 5.571491772187537, + "audino": 2.1401562759039265, + "gurdurr": 3.034724838537853, + "palpitoad": 3.950448332987684, + "seismitoad": 6.318833881445093, + "scolipede": 4.158596872642245, + "whimsicott": 4.037873950420456, + "lilligant": 4.470836696318862, + "basculin-red-striped": 2.6579469189403833, + "basculin-blue-striped": 3.55751333566253, + "krookodile": 3.4011052263816843, + "maractus": 3.2520213909074487, + "crustle": 1.7485715545090819, + "sigilyph": 2.4045627178236266, + "cofagrigus": 2.727863138229601, + "garbodor": 1.896557906420256, + "cinccino": 4.272092034804338, + "vanillish": 1.9118983244011662, + "emolga": 2.2495751402028343, + "escavalier": 2.0018881729853835, + "amoonguss": 3.626053486879094, + "jellicent": 1.760836367109927, + "galvantula": 1.4150679695709978, + "klang": 2.0122522600940758, + "klinklang": 2.8316705112015548, + "beheeyem": 1.9792979076416743, + "lampent": 2.404876357605456, + "fraxure": 1.4949695642109857, + "beartic": 1.5440984142979888, + "cryogonal": 1.6911584683078713, + "accelgor": 4.790413201104514, + "stunfisk": 1.2162461492834287, + "stunfisk-galar": 2.1357303605080626, + "mienshao": 4.07729482260402, + "druddigon": 1.8165956167705581, + "golurk": 2.2580614299969306, + "bisharp": 2.1319647614205715, + "bouffalant": 1.3364728792721743, + "heatmor": 1.7329631880716483, + "durant": 2.626700386468371, + "diggersby": 3.1554583790533397, + "talonflame": 2.581538305191862, + "pangoro": 2.3888798814447982, + "doublade": 2.137952788882167, + "malamar": 4.205340117953144, + "barbaracle": 1.2569645849509243, + "heliolisk": 3.380451605463506, + "tyrantrum": 1.2198482698237603, + "aurorus": 1.8174399849698712, + "hawlucha": 4.658340821306412, + "dedenne": 2.3320125236563127, + "klefki": 2.4733334894382546, + "trevenant": 4.6874873160550665, + "gourgeist-average": 5.817194537785585, + "charjabug": 3.7291511480635213, + "vikavolt": 1.848568837030407, + "ribombee": 6.737929537253836, + "lycanroc-midday": 2.2243400261946653, + "lycanroc-midnight": 1.8489251970760616, + "mudsdale": 1.7029108214614226, + "araquanid": 3.542217914998708, + "lurantis": 3.381155971710669, + "shiinotic": 6.040218810118483, + "salazzle": 2.9492009817526905, + "bewear": 2.1646186805287035, + "tsareena": 4.098065424982702, + "comfey": 4.91609945778065, + "oranguru": 3.294168438127706, + "passimian": 2.5050115019236494, + "palossand": 2.2395272459668005, + "pyukumuku": 43.55993278105555, + "togedemaru": 1.869648990319213, + "mimikyu-disguised": 4.214721154757626, + "greedent": 2.041535930210428, + "orbeetle": 2.501521143942438, + "thievul": 2.120407258370088, + "eldegoss": 5.918641124923335, + "dubwool": 3.109590789253004, + "drednaw": 0.8835185670717958, + "boltund": 3.9891726328770067, + "carkol": 1.5100983469213385, + "coalossal": 1.4001086306488786, + "sandaconda": 3.1399010174508346, + "cramorant": 5.887343911167642, + "barraskewda": 4.482467956065014, + "toxtricity-amped": 2.187828676332822, + "centiskorch": 2.7835664602084, + "grapploct": 2.319753950334042, + "polteageist": 3.511044252796853, + "hatterene": 2.5282058257268005, + "grimmsnarl": 4.087233026671775, + "obstagoon": 2.6931975490942657, + "perrserker": 2.586748617572032, + "alcremie": 1.5356012211638417, + "falinks": 3.9862183303110883, + "pincurchin": 2.5090489135827774, + "frosmoth": 3.6432060241184674, + "indeedee-male": 3.883305741704522, + "morpeko": 2.8201240368317624, + "copperajah": 2.1798505487507347, + "duraludon": 1.183147925148468, + "drakloak": 5.065491710074639 }, "jynx": { - "ivysaur": 4.680087358309619, - "charmeleon": 2.7142467165666684, - "wartortle": 3.2112203116360574, - "butterfree": 5.746694919532224, - "raichu": 5.5018814126241615, - "raichu-alola": 3.7199501137298956, - "sandslash": 2.8824221117311906, - "sandslash-alola": 1.2769726961694228, - "nidoqueen": 4.136382382770139, - "nidoking": 2.1245088280844837, - "clefairy": 8.17017756587458, - "clefable": 2.195471641047591, - "jigglypuff": 29.413447012422218, - "wigglytuff": 2.2863150864549135, - "gloom": 8.663995471266151, - "vileplume": 4.2670524766105595, - "dugtrio": 3.8111310787513215, - "dugtrio-alola": 2.7309511972903486, - "persian": 4.079383916983701, - "persian-alola": 3.627448853294039, - "golduck": 3.613588819424316, - "poliwrath": 2.306663770759432, - "kadabra": 3.9323000767477025, - "machoke": 3.313429205600501, - "tentacruel": 2.4614686113681383, - "slowbro": 1.5623868038493929, - "magneton": 2.7062780727461178, - "haunter": 4.739286585128179, - "kingler": 2.8613917153481645, - "exeggutor": 2.823830207667957, - "marowak": 3.6947234578337342, - "marowak-alola": 1.0576881697904792, - "hitmonlee": 1.6941605952826655, - "hitmonchan": 1.6427438755614707, - "lickitung": 2.573542619093307, - "weezing": 1.5370305714736552, - "weezing-galar": 2.843940850909883, - "rhydon": 2.8941588079715563, - "chansey": 20.233213274931437, - "tangela": 7.8410823764430475, - "kangaskhan": 1.6143347954594056, - "seadra": 4.940089979211045, - "seaking": 2.3750292020346544, - "starmie": 1.3412681715747312, - "mr-mime": 7.53182963821998, - "mr-mime-galar": 3.681100754612448, - "scyther": 3.0093022734097596, - "electabuzz": 2.7170722519832227, - "magmar": 1.065567345873339, - "tauros": 1.895633085793585, - "ditto": 4.529023893898318, - "vaporeon": 3.541958300749564, - "jolteon": 1.95878848434546, - "flareon": 1.3711233322014715, - "porygon": 2.9054539131041524, - "dragonair": 2.6309571690100917, - "noctowl": 7.030411945053196, - "lanturn": 2.1690034090069688, - "togetic": 6.123432056097818, - "xatu": 6.1382198836708515, - "bellossom": 3.5301051636387255, - "azumarill": 2.469483433967615, - "sudowoodo": 2.355129002276704, - "politoed": 2.945038886733128, - "quagsire": 6.74380051741654, - "slowking": 2.8544734889507204, - "dunsparce": 3.1312063557734033, - "qwilfish": 3.6256162379287895, - "sneasel": 1.8505205344380453, - "piloswine": 1.4005603894029266, - "octillery": 2.093075963875978, - "mantine": 3.1249629650863833, - "skarmory": 1.8402931762012862, - "hitmontop": 2.617069956043678, - "miltank": 3.5631107764004115, - "grovyle": 10.57855198040084, - "sceptile": 1.8252150852153863, - "combusken": 2.5599272369331345, - "blaziken": 0.970332749539587, - "marshtomp": 3.4755854611208328, - "swampert": 1.6023409969684153, - "linoone": 4.118472088169764, - "linoone-galar": 3.8894288469383778, - "pelipper": 6.415641835838782, - "ninjask": 7.560805178704914, - "exploud": 1.8515740426027172, - "lairon": 1.446880924955328, - "manectric": 1.8259484020955068, - "roselia": 5.557808403365984, - "sharpedo": 4.864330652991137, - "wailmer": 6.152292015695208, - "torkoal": 1.2151204332204284, - "flygon": 4.656942202043175, - "altaria": 3.0002989374746294, - "whiscash": 3.1216234051493403, - "crawdaunt": 2.382299709416638, - "claydol": 4.899042030848067, - "cradily": 3.191367413461345, - "armaldo": 1.515716232556351, - "dusclops": 2.768748537116415, - "absol": 1.8335038747987178, - "glalie": 2.998291325647417, - "sealeo": 3.989751598644596, - "relicanth": 1.679184319705791, - "metang": 2.102365229921916, - "luxray": 3.93365901386502, - "vespiquen": 3.06739293324876, - "cherrim": 8.570728061602104, - "gastrodon": 2.1814930542680444, - "drifblim": 6.749224715374224, - "lopunny": 3.3394197778288635, - "skuntank": 1.1831018895064813, - "bronzong": 2.3655335298713176, - "munchlax": 1.349602865788686, - "drapion": 1.918969438891351, - "abomasnow": 3.1570027273068293, - "froslass": 2.5402219291989523, - "rotom": 3.9725301545488803, - "stoutland": 2.2680585379159335, - "liepard": 5.822218416658804, - "musharna": 1.7571185108167284, - "unfezant": 9.12993315817102, - "boldore": 3.172676807258714, - "swoobat": 8.81402183373556, - "audino": 2.2926736544081354, - "gurdurr": 2.3167041947122358, - "palpitoad": 4.653964748573811, - "seismitoad": 7.143307931868081, - "scolipede": 2.413607843903471, - "whimsicott": 4.680163123057201, - "lilligant": 4.416733160802183, - "basculin-red-striped": 3.8562279565252426, - "basculin-blue-striped": 3.913755238060518, - "krookodile": 3.390613934591356, - "maractus": 3.155330215817549, - "crustle": 1.7508272554211413, - "sigilyph": 3.5589871047943173, - "cofagrigus": 2.964558270705272, - "garbodor": 1.8939498507304888, - "cinccino": 4.693804038246061, - "vanillish": 2.123933831208576, - "emolga": 4.715264449550364, - "escavalier": 1.5416199867686853, - "amoonguss": 3.809565552111949, - "jellicent": 1.5461600571628935, - "galvantula": 1.7391827009161678, - "klang": 2.2966298259573925, - "klinklang": 2.177846025552858, - "beheeyem": 1.870679464394593, - "lampent": 1.4450004146811137, - "fraxure": 2.098824913565329, - "beartic": 1.7452875874537823, - "cryogonal": 1.6250611652694151, - "accelgor": 2.787074916358396, - "stunfisk": 2.2203583111645973, - "stunfisk-galar": 2.348280607199247, - "mienshao": 3.150142525596622, - "druddigon": 2.095068325645778, - "golurk": 2.3032844349655797, - "bisharp": 1.754520180637606, - "bouffalant": 1.088232427394918, - "heatmor": 1.1246472646060162, - "durant": 2.0103397573441435, - "diggersby": 3.912130764321884, - "talonflame": 2.570740819159342, - "pangoro": 1.941728856687135, - "doublade": 1.7820787780710718, - "malamar": 2.7215250849480483, - "barbaracle": 1.4935092879295122, - "heliolisk": 3.7001904623819657, - "tyrantrum": 2.2022479724795043, - "aurorus": 2.106182822997127, - "hawlucha": 4.3504133539674115, - "dedenne": 3.2476129010013493, - "klefki": 2.34900065593005, - "trevenant": 3.9801677854394724, - "gourgeist-average": 6.316223352554829, - "charjabug": 4.069687425413753, - "vikavolt": 1.8715219437599275, - "ribombee": 4.669944441971579, - "lycanroc-midday": 2.626011437204749, - "lycanroc-midnight": 1.8469233483932612, - "mudsdale": 1.9635784797103446, - "araquanid": 1.9653021493240526, - "lurantis": 3.168539825139687, - "shiinotic": 6.4677078827197665, - "salazzle": 2.3581248039176623, - "bewear": 1.6216444204216824, - "tsareena": 3.9777959035819377, - "comfey": 4.879888580568025, - "oranguru": 3.012377866213585, - "passimian": 2.213131240912074, - "palossand": 3.2754949993951747, - "pyukumuku": 37.49348334125031, - "togedemaru": 1.6157780163727318, - "mimikyu-disguised": 3.0920505191874232, - "greedent": 1.985482254824349, - "orbeetle": 1.910415946140339, - "thievul": 1.4198711952768597, - "eldegoss": 5.53440820791044, - "dubwool": 2.7787196964700565, - "drednaw": 0.8807276463446969, - "boltund": 4.211308282039789, - "carkol": 1.4697186363776402, - "coalossal": 1.595943270579778, - "sandaconda": 4.386850802337694, - "cramorant": 5.635513478022014, - "barraskewda": 4.092299688552073, - "toxtricity-amped": 3.0011886898095517, - "centiskorch": 1.5091019211772827, - "grapploct": 2.1030870172788223, - "polteageist": 2.5223402934280736, - "hatterene": 2.7024963120279537, - "grimmsnarl": 3.7002618277441175, - "obstagoon": 2.2407125815422666, - "perrserker": 2.1500322466848316, - "alcremie": 1.3927173007379106, - "falinks": 2.7266307666255134, - "pincurchin": 3.762862658002528, - "frosmoth": 2.134653517704913, - "indeedee-male": 2.8802910555005643, - "morpeko": 2.79322670775046, - "copperajah": 1.6696532279268492, - "duraludon": 1.667764418640128, - "drakloak": 5.826011777552185, - "jynx": 3.914707060054633 + "ivysaur": 4.686739639526138, + "charmeleon": 2.6996109388467437, + "wartortle": 3.2284932191893523, + "butterfree": 5.743627861143295, + "raichu": 5.505869343693581, + "raichu-alola": 3.72156674282685, + "sandslash": 2.8744075570983147, + "sandslash-alola": 1.2714372807707104, + "nidoqueen": 4.139920156774492, + "nidoking": 2.116877729589077, + "clefairy": 8.147194732999772, + "clefable": 2.1953979341790895, + "jigglypuff": 29.43099656220805, + "wigglytuff": 2.2888866065459226, + "gloom": 8.6765148035458, + "vileplume": 4.268772263731143, + "dugtrio": 3.8037614564019657, + "dugtrio-alola": 2.7158317242013803, + "persian": 4.069291604119806, + "persian-alola": 3.614520550635481, + "golduck": 3.632176094587311, + "poliwrath": 2.313075776739183, + "kadabra": 3.9302029596919574, + "machoke": 3.3009599270070966, + "tentacruel": 2.4688623603899664, + "slowbro": 1.5599571109312138, + "magneton": 2.700445755591526, + "haunter": 4.734473073635396, + "kingler": 2.872302129768392, + "exeggutor": 2.825776718651179, + "marowak": 3.6818808213256586, + "marowak-alola": 1.0469430438685887, + "hitmonlee": 1.6846333993123812, + "hitmonchan": 1.6347864172693725, + "lickitung": 2.5805711006960035, + "weezing": 1.5352639943242794, + "weezing-galar": 2.840749438682736, + "rhydon": 2.8836304044921075, + "chansey": 20.173078831130617, + "tangela": 7.83527485200141, + "kangaskhan": 1.6080720531675872, + "seadra": 4.95999695285799, + "seaking": 2.3779636918690383, + "starmie": 1.3401575491725497, + "mr-mime": 7.5443119247784205, + "mr-mime-galar": 3.6835189285133936, + "scyther": 2.997732364005319, + "jynx": 3.914707060054633, + "electabuzz": 2.71745716732973, + "magmar": 1.0599951701322072, + "tauros": 1.8899258503142495, + "ditto": 4.497020724032007, + "vaporeon": 3.5582478464124794, + "jolteon": 1.9574443041032281, + "flareon": 1.3644582326447245, + "porygon": 2.9033072295875053, + "dragonair": 2.631699552007207, + "noctowl": 7.0247636004030785, + "lanturn": 2.180218131318405, + "togetic": 6.106146897189584, + "xatu": 6.154311089029915, + "bellossom": 3.536253774019981, + "azumarill": 2.48286967801677, + "sudowoodo": 2.3458866166322383, + "politoed": 2.960116846473965, + "quagsire": 6.783625515555053, + "slowking": 2.8684812708813823, + "dunsparce": 3.1240748845070074, + "qwilfish": 3.6328862837619935, + "sneasel": 1.8396963105120885, + "piloswine": 1.3969679376201602, + "octillery": 2.0911810062165372, + "mantine": 3.1424539669387697, + "skarmory": 1.8312513201228655, + "hitmontop": 2.6146054759909285, + "miltank": 3.5544456543666185, + "grovyle": 10.582476973346818, + "sceptile": 1.82407370341523, + "combusken": 2.5512665431782455, + "blaziken": 0.9632764649082668, + "marshtomp": 3.4953491665798646, + "swampert": 1.608719037608569, + "linoone": 4.095918431399422, + "linoone-galar": 3.8705493006634883, + "pelipper": 6.407883719193224, + "ninjask": 7.5214762096062495, + "exploud": 1.8529344826556606, + "lairon": 1.4373980645092281, + "manectric": 1.8228032690663238, + "roselia": 5.566120476079629, + "sharpedo": 4.855266498689886, + "wailmer": 6.153925016483994, + "torkoal": 1.2097115441923756, + "flygon": 4.652385351365783, + "altaria": 3.003137673213735, + "whiscash": 3.1315155563520745, + "crawdaunt": 2.3753583942150613, + "claydol": 4.905930427971883, + "cradily": 3.1927100920391416, + "armaldo": 1.5075206330235393, + "dusclops": 2.7537607288775807, + "absol": 1.8255700001025263, + "glalie": 2.9833533193474677, + "sealeo": 4.013857630722987, + "relicanth": 1.6756056827853225, + "metang": 2.0918943309627274, + "luxray": 3.9295142300302905, + "vespiquen": 3.0565149887681207, + "cherrim": 8.582193928237094, + "gastrodon": 2.17949347777516, + "drifblim": 6.762510409460817, + "lopunny": 3.3296438469936365, + "skuntank": 1.177320072492464, + "bronzong": 2.356489851972958, + "munchlax": 1.3396699867417614, + "drapion": 1.9082512056284067, + "abomasnow": 3.151759666729797, + "froslass": 2.5361036514438395, + "rotom": 3.969228055176525, + "stoutland": 2.2614002842900005, + "liepard": 5.7981459555776205, + "musharna": 1.7592922056754992, + "unfezant": 9.125184218614642, + "boldore": 3.161169406784681, + "swoobat": 8.8374900060439, + "audino": 2.2880103351657466, + "gurdurr": 2.3146319072331742, + "palpitoad": 4.6663097777392615, + "seismitoad": 7.145398022476492, + "scolipede": 2.3978135783377246, + "whimsicott": 4.684192278539626, + "lilligant": 4.419921316432967, + "basculin-red-striped": 3.8925350884120182, + "basculin-blue-striped": 3.9252479267258957, + "krookodile": 3.3821124045855973, + "maractus": 3.1564416355191787, + "crustle": 1.7418110024911166, + "sigilyph": 3.5648691361938303, + "cofagrigus": 2.9632640663277856, + "garbodor": 1.8897980460372326, + "cinccino": 4.688034743369174, + "vanillish": 2.125106106846135, + "emolga": 4.720260670770317, + "escavalier": 1.5387756034158135, + "amoonguss": 3.814759306310341, + "jellicent": 1.5509807968490708, + "galvantula": 1.7389799020107226, + "klang": 2.2913560167148983, + "klinklang": 2.1633824416316907, + "beheeyem": 1.869705956714423, + "lampent": 1.4361122558574353, + "fraxure": 2.094457943738772, + "beartic": 1.7466009655342987, + "cryogonal": 1.624760178562958, + "accelgor": 2.7810158185742706, + "stunfisk": 2.22765511686436, + "stunfisk-galar": 2.343864149571792, + "mienshao": 3.143357455339263, + "druddigon": 2.088514590068292, + "golurk": 2.296639687668322, + "bisharp": 1.7459744296046362, + "bouffalant": 1.0836087515221966, + "heatmor": 1.1161404013676162, + "durant": 1.9970800424087587, + "diggersby": 3.9030473814798405, + "talonflame": 2.5607516198637255, + "pangoro": 1.9348941032597522, + "doublade": 1.7728110904232501, + "malamar": 2.715911134936989, + "barbaracle": 1.4944467660114507, + "heliolisk": 3.7002367720838816, + "tyrantrum": 2.197933896404513, + "aurorus": 2.1008003414900758, + "hawlucha": 4.340566305958225, + "dedenne": 3.250575001120716, + "klefki": 2.3414374550203867, + "trevenant": 3.9740633771074445, + "gourgeist-average": 6.286834153271812, + "charjabug": 4.0611135284355715, + "vikavolt": 1.868943627807604, + "ribombee": 4.6645400854798345, + "lycanroc-midday": 2.6109707062664014, + "lycanroc-midnight": 1.8362579146646387, + "mudsdale": 1.9590028884408834, + "araquanid": 1.9626986283653851, + "lurantis": 3.164948132153225, + "shiinotic": 6.477667006512698, + "salazzle": 2.3426974770404305, + "bewear": 1.616351042176288, + "tsareena": 3.972421974549361, + "comfey": 4.884230877150546, + "oranguru": 3.015993779949871, + "passimian": 2.2083020062841885, + "palossand": 3.277651883802232, + "pyukumuku": 37.42902502422941, + "togedemaru": 1.6053167341873813, + "mimikyu-disguised": 3.073599477325075, + "greedent": 1.9790367682277181, + "orbeetle": 1.9115896198620224, + "thievul": 1.4143907745415767, + "eldegoss": 5.541797000367515, + "dubwool": 2.7709571970828275, + "drednaw": 0.8774813944455336, + "boltund": 4.19726962070266, + "carkol": 1.4600005789941959, + "coalossal": 1.5902094548203383, + "sandaconda": 4.379728004602504, + "cramorant": 5.636322013281082, + "barraskewda": 4.087759823481691, + "toxtricity-amped": 3.001781806612504, + "centiskorch": 1.502297234578458, + "grapploct": 2.1056333204572706, + "polteageist": 2.5174504539385896, + "hatterene": 2.702938365453892, + "grimmsnarl": 3.6955957511802726, + "obstagoon": 2.232418340252362, + "perrserker": 2.136453136233966, + "alcremie": 1.390188881105735, + "falinks": 2.7159744826226286, + "pincurchin": 3.778441294067555, + "frosmoth": 2.1296493029581476, + "indeedee-male": 2.872963694180193, + "morpeko": 2.7914034234273895, + "copperajah": 1.661061426364939, + "duraludon": 1.663834196384966, + "drakloak": 5.812292905791818 }, "electabuzz": { - "ivysaur": 2.7055439101779335, - "charmeleon": 3.8448344514308186, - "wartortle": 3.6001580493844783, - "butterfree": 5.337019253290939, - "raichu": 4.528124346805525, - "raichu-alola": 3.0240022818616845, - "sandslash": 1.7497895429317607, - "sandslash-alola": 2.0188097971371555, - "nidoqueen": 2.2673661573724258, - "nidoking": 1.4325179919576052, - "clefairy": 8.854998567053167, - "clefable": 1.9990576174730688, - "jigglypuff": 26.124561535996342, - "wigglytuff": 1.9723265181790108, - "gloom": 4.882350756383404, - "vileplume": 2.559558276598784, - "dugtrio": 2.69756119952301, - "dugtrio-alola": 2.3331208928250815, - "persian": 3.9640699498570875, - "persian-alola": 4.063356759497278, - "golduck": 3.857051691115546, - "poliwrath": 2.369614539612093, - "kadabra": 3.4942314525277753, - "machoke": 3.728775709104031, - "tentacruel": 2.6947602455213744, - "slowbro": 2.40718173249541, - "magneton": 2.9390426907404654, - "haunter": 4.385992890315434, - "kingler": 3.4236221204218853, - "exeggutor": 1.5931384114783684, - "marowak": 2.440510140886756, - "marowak-alola": 2.059034639357767, - "hitmonlee": 2.046024513221888, - "hitmonchan": 1.9762133186275834, - "lickitung": 1.9264479358219515, - "weezing": 1.688084887044507, - "weezing-galar": 2.8046730462571468, - "rhydon": 1.715823973112616, - "chansey": 19.1475780644125, - "tangela": 4.376106673862205, - "kangaskhan": 1.643133348040493, - "seadra": 6.318049205782914, - "seaking": 2.797382785688299, - "starmie": 1.8521239968474061, - "mr-mime": 6.220558855941503, - "mr-mime-galar": 3.493828452830626, - "scyther": 3.3678974601870943, - "jynx": 3.8928820089985914, - "magmar": 1.595858223653929, - "tauros": 1.8549205768445614, - "ditto": 2.7202533532641247, - "vaporeon": 3.8482938519420005, - "jolteon": 1.6512990353340384, - "flareon": 2.1694078657817077, - "porygon": 2.762765675170998, - "dragonair": 1.5477491739289544, - "noctowl": 6.789900812997389, - "lanturn": 1.671326368845163, - "togetic": 6.527164249645262, - "xatu": 5.163537314279594, - "bellossom": 2.035666466594552, - "azumarill": 3.022204983877118, - "sudowoodo": 2.4256023940250353, - "politoed": 2.9234666977125627, - "quagsire": 4.147453556938273, - "slowking": 2.868596094260898, - "dunsparce": 3.267889581506341, - "qwilfish": 4.676576198788775, - "sneasel": 2.082752150522815, - "piloswine": 1.3719465833370854, - "octillery": 3.1163617166748163, - "mantine": 4.072680484956285, - "skarmory": 3.230723668448756, - "hitmontop": 2.318178371526502, - "miltank": 3.4976139132770316, - "grovyle": 6.607869676746571, - "sceptile": 1.186200568161504, - "combusken": 3.2809203146571577, - "blaziken": 1.551546118822495, - "marshtomp": 1.9612516990028934, - "swampert": 1.0517574002501462, - "linoone": 4.787096058516335, - "linoone-galar": 4.486309272775761, - "pelipper": 12.949028374012961, - "ninjask": 8.724750850476577, - "exploud": 1.5795715117982596, - "lairon": 2.608114912883103, - "manectric": 1.5480605931308795, - "roselia": 3.2924371401881376, - "sharpedo": 6.124052686375075, - "wailmer": 8.866050304146697, - "torkoal": 2.02056564370281, - "flygon": 1.9809004515644313, - "altaria": 1.5598510359481188, - "whiscash": 1.7822040753437682, - "crawdaunt": 2.744906973582829, - "claydol": 2.873052407258857, - "cradily": 1.9097149188194518, - "armaldo": 1.6867200078757247, - "dusclops": 3.234149518661405, - "absol": 1.907365177685565, - "glalie": 3.9334698426522055, - "sealeo": 4.035945635845136, - "relicanth": 2.5488663228648987, - "metang": 3.0139006363761696, - "luxray": 3.3520701724165196, - "vespiquen": 3.3916524342904166, - "cherrim": 5.022723481938391, - "gastrodon": 1.722043607862075, - "drifblim": 5.708495431800686, - "lopunny": 3.4144058648165916, - "skuntank": 1.427271187318531, - "bronzong": 3.0571272561510634, - "munchlax": 1.9518199582448137, - "drapion": 2.45878720283694, - "abomasnow": 2.6500057620483197, - "froslass": 2.826200284282363, - "rotom": 3.132960338539735, - "stoutland": 2.232541344348076, - "liepard": 6.5591268217780225, - "musharna": 1.4829708132723287, - "unfezant": 9.304126600905946, - "boldore": 3.2370575711495837, - "swoobat": 7.388775504855813, - "audino": 2.2218331777837346, - "gurdurr": 2.111776355690314, - "palpitoad": 3.150722478748879, - "seismitoad": 5.512913105348222, - "scolipede": 3.095182793087792, - "whimsicott": 2.7611184508006783, - "lilligant": 2.6595376150021823, - "basculin-red-striped": 3.58061905761212, - "basculin-blue-striped": 4.760257278313204, - "krookodile": 2.2852313818826384, - "maractus": 1.8975916997485456, - "crustle": 2.046044395579015, - "sigilyph": 3.1762683557398264, - "cofagrigus": 2.7166363834119687, - "garbodor": 1.7803252391522015, - "cinccino": 4.298196161434524, - "vanillish": 2.1032838787695107, - "emolga": 3.3196935086893715, - "escavalier": 1.5841538761898213, - "amoonguss": 2.1698697966380496, - "jellicent": 1.9200677381553655, - "galvantula": 1.4766002863875107, - "klang": 3.000667186220787, - "klinklang": 3.4835010655020104, - "beheeyem": 1.7441282844543289, - "lampent": 2.526601001151091, - "fraxure": 1.2815242837635141, - "beartic": 1.7040089690443718, - "cryogonal": 1.5498929344016763, - "accelgor": 2.8961636700943747, - "stunfisk": 1.090333219167717, - "stunfisk-galar": 1.6139565230716029, - "mienshao": 3.222039737930735, - "druddigon": 1.502003928403386, - "golurk": 1.1405478604930521, - "bisharp": 2.360505772407844, - "bouffalant": 1.2277380287602015, - "heatmor": 1.8634816050168972, - "durant": 3.3239588336586694, - "diggersby": 2.371252466259329, - "talonflame": 4.0424717652154, - "pangoro": 1.68432567303268, - "doublade": 2.820110525923212, - "malamar": 2.8437724058995038, - "barbaracle": 1.8768721471298866, - "heliolisk": 2.993981566047945, - "tyrantrum": 1.3056748073992008, - "aurorus": 2.3467387101403645, - "hawlucha": 4.435290419041092, - "dedenne": 2.5440872690083722, - "klefki": 3.1226534723692136, - "trevenant": 2.3225789951769302, - "gourgeist-average": 4.303034532637151, - "charjabug": 3.352941769400877, - "vikavolt": 1.57463971791965, - "ribombee": 4.5413183564135595, - "lycanroc-midday": 3.156268397883853, - "lycanroc-midnight": 2.201988004028597, - "mudsdale": 1.2465753629463916, - "araquanid": 2.7047333850658024, - "lurantis": 2.0507043006088486, - "shiinotic": 3.765089077904057, - "salazzle": 3.13178206309467, - "bewear": 1.6833592835800344, - "tsareena": 2.636855666578466, - "comfey": 4.327535041325565, - "oranguru": 2.504053779021455, - "passimian": 2.3560230275325864, - "palossand": 1.2551343167183018, - "pyukumuku": 55.196028609895144, - "togedemaru": 1.91571551478753, - "mimikyu-disguised": 3.591153191897851, - "greedent": 2.0843977161709812, - "orbeetle": 1.781590785727987, - "thievul": 1.6931249336675438, - "eldegoss": 3.3242712116150996, - "dubwool": 2.761167726222591, - "drednaw": 1.6055553515691243, - "boltund": 4.110023537872609, - "carkol": 2.337564605198863, - "coalossal": 2.0055185510871762, - "sandaconda": 2.584798921188086, - "cramorant": 8.58443824502226, - "barraskewda": 5.867225433315063, - "toxtricity-amped": 2.3816421790086655, - "centiskorch": 1.8612638883359072, - "grapploct": 1.6703973580407352, - "polteageist": 2.3978752877137044, - "hatterene": 2.3979879531233435, - "grimmsnarl": 3.6913187105170397, - "obstagoon": 2.4835559479185116, - "perrserker": 3.505377855389888, - "alcremie": 1.3542722698575, - "falinks": 3.1882997833023605, - "pincurchin": 2.6909500548959544, - "frosmoth": 2.5664237205866747, - "indeedee-male": 2.9698844652166274, - "morpeko": 2.4524729227208075, - "copperajah": 2.45647795677164, - "duraludon": 1.3657319454223669, - "drakloak": 3.5231105230264608, - "electabuzz": 2.350860280065927 + "ivysaur": 2.701685574886017, + "charmeleon": 3.845276326372713, + "wartortle": 3.6069526113390067, + "butterfree": 5.340082442105665, + "raichu": 4.516964160385102, + "raichu-alola": 3.0199930703859525, + "sandslash": 1.742038508372405, + "sandslash-alola": 2.0169733734315383, + "nidoqueen": 2.259376103962145, + "nidoking": 1.4264089307151069, + "clefairy": 8.856369146227618, + "clefable": 1.9993908005745755, + "jigglypuff": 26.12234212913989, + "wigglytuff": 1.972099782914594, + "gloom": 4.875399327582071, + "vileplume": 2.5564471711393555, + "dugtrio": 2.682444221882461, + "dugtrio-alola": 2.3212628626281386, + "persian": 3.9577516105364223, + "persian-alola": 4.059705979194343, + "golduck": 3.859968311416326, + "poliwrath": 2.370849000256263, + "kadabra": 3.4878336363488955, + "machoke": 3.7261346178750467, + "tentacruel": 2.696411603478207, + "slowbro": 2.410944621695855, + "magneton": 2.9407091379544568, + "haunter": 4.384723203671605, + "kingler": 3.4257948386756065, + "exeggutor": 1.5884028000052202, + "marowak": 2.429830260631425, + "marowak-alola": 2.0577960722364743, + "hitmonlee": 2.0423318272972972, + "hitmonchan": 1.9745235722150356, + "lickitung": 1.9269479646987624, + "weezing": 1.6892839519677327, + "weezing-galar": 2.8074209193269986, + "rhydon": 1.7070190291575877, + "chansey": 19.07811649150014, + "tangela": 4.368298426145708, + "kangaskhan": 1.6394697130060856, + "seadra": 6.332152762235459, + "seaking": 2.7963724720843337, + "starmie": 1.854451927654592, + "mr-mime": 6.215199972329686, + "mr-mime-galar": 3.4905159067268317, + "scyther": 3.3707074600035054, + "jynx": 3.886628248682767, + "electabuzz": 2.350860280065927, + "magmar": 1.5952696659649064, + "tauros": 1.8515077031065732, + "ditto": 2.7017007911645408, + "vaporeon": 3.852686723678785, + "jolteon": 1.6464692878957283, + "flareon": 2.1676669997812694, + "porygon": 2.762276335969932, + "dragonair": 1.5449727371799096, + "noctowl": 6.797299881333988, + "lanturn": 1.6644758408833003, + "togetic": 6.534881521332051, + "xatu": 5.175530416972379, + "bellossom": 2.033050047609966, + "azumarill": 3.0282237762114983, + "sudowoodo": 2.421014745113178, + "politoed": 2.922814772396853, + "quagsire": 4.138894880880867, + "slowking": 2.8691569466708584, + "dunsparce": 3.268124590658269, + "qwilfish": 4.6822361852256265, + "sneasel": 2.0784121740428816, + "piloswine": 1.3678808182462479, + "octillery": 3.121920684552056, + "mantine": 4.086264651910048, + "skarmory": 3.2400663563010257, + "hitmontop": 2.313057128600289, + "miltank": 3.4937291063429194, + "grovyle": 6.595224556741587, + "sceptile": 1.1839353609111478, + "combusken": 3.2810164422969077, + "blaziken": 1.5508315808113569, + "marshtomp": 1.9532012100986313, + "swampert": 1.048286214546061, + "linoone": 4.779203019942162, + "linoone-galar": 4.481114658918937, + "pelipper": 12.995863528730162, + "ninjask": 8.722068399682454, + "exploud": 1.5788880938271648, + "lairon": 2.609383285017883, + "manectric": 1.5430916062843616, + "roselia": 3.2864630281499165, + "sharpedo": 6.125021291308766, + "wailmer": 8.88632851326726, + "torkoal": 2.022254200018889, + "flygon": 1.9743757565623303, + "altaria": 1.559530973595086, + "whiscash": 1.7776631971051167, + "crawdaunt": 2.747892496807323, + "claydol": 2.8653034179852996, + "cradily": 1.9062135995959193, + "armaldo": 1.682949481573023, + "dusclops": 3.2304093834977463, + "absol": 1.9057501790618412, + "glalie": 3.9290066229547156, + "sealeo": 4.040645297706301, + "relicanth": 2.550256590510103, + "metang": 3.014778396115871, + "luxray": 3.348578530521108, + "vespiquen": 3.394855143268492, + "cherrim": 5.014893954928077, + "gastrodon": 1.7155075333880967, + "drifblim": 5.7195328927107845, + "lopunny": 3.410412053607889, + "skuntank": 1.42697338088059, + "bronzong": 3.0558753180158114, + "munchlax": 1.9481021131636411, + "drapion": 2.4595486509616125, + "abomasnow": 2.6424448756048835, + "froslass": 2.8235913500650858, + "rotom": 3.1307345922389818, + "stoutland": 2.2284823418292055, + "liepard": 6.551445142444203, + "musharna": 1.4820532715269659, + "unfezant": 9.335596450998967, + "boldore": 3.231949538077534, + "swoobat": 7.40582469824154, + "audino": 2.2214838778191774, + "gurdurr": 2.108909039281314, + "palpitoad": 3.1407113370671373, + "seismitoad": 5.496919820419946, + "scolipede": 3.093099919412043, + "whimsicott": 2.7583115078245086, + "lilligant": 2.656090267329918, + "basculin-red-striped": 3.5827189857361876, + "basculin-blue-striped": 4.765711259021462, + "krookodile": 2.2761187208812705, + "maractus": 1.8952280064499152, + "crustle": 2.0441892790764564, + "sigilyph": 3.184432485421783, + "cofagrigus": 2.71646287444696, + "garbodor": 1.7786154155322162, + "cinccino": 4.292347404547641, + "vanillish": 2.1021202050345855, + "emolga": 3.326297456602566, + "escavalier": 1.5801729161502573, + "amoonguss": 2.1666639920962947, + "jellicent": 1.9220044950303468, + "galvantula": 1.4767664213489886, + "klang": 3.005417493010971, + "klinklang": 3.484288791868734, + "beheeyem": 1.7432961627397865, + "lampent": 2.5265091209318573, + "fraxure": 1.278379600614847, + "beartic": 1.7031012740209133, + "cryogonal": 1.547772881927338, + "accelgor": 2.894088206762998, + "stunfisk": 1.0870901385276055, + "stunfisk-galar": 1.6065049042091661, + "mienshao": 3.2197112394578307, + "druddigon": 1.4991098436936883, + "golurk": 1.1342365170502013, + "bisharp": 2.3577400100936416, + "bouffalant": 1.2269676969403023, + "heatmor": 1.863882899818148, + "durant": 3.326154622697347, + "diggersby": 2.3582336085974243, + "talonflame": 4.053967204879332, + "pangoro": 1.6831905748196028, + "doublade": 2.824189810703775, + "malamar": 2.8431352846185085, + "barbaracle": 1.8764391064968877, + "heliolisk": 2.9890902963512707, + "tyrantrum": 1.302475864838684, + "aurorus": 2.343753336906377, + "hawlucha": 4.4381613070697865, + "dedenne": 2.5433934421284157, + "klefki": 3.124770055994346, + "trevenant": 2.3155229192223956, + "gourgeist-average": 4.293734298427669, + "charjabug": 3.346112797786172, + "vikavolt": 1.5726733638879415, + "ribombee": 4.54059870033996, + "lycanroc-midday": 3.152076661977617, + "lycanroc-midnight": 2.1985868225127723, + "mudsdale": 1.241394158160419, + "araquanid": 2.7051011035184778, + "lurantis": 2.0468861351219463, + "shiinotic": 3.7590847234864726, + "salazzle": 3.1308071638069808, + "bewear": 1.6806039655305822, + "tsareena": 2.63245731089439, + "comfey": 4.328152615309609, + "oranguru": 2.501325784241315, + "passimian": 2.3563639381370294, + "palossand": 1.2484740544016624, + "pyukumuku": 55.26016997212619, + "togedemaru": 1.913352310795967, + "mimikyu-disguised": 3.584023918009656, + "greedent": 2.0826531499227023, + "orbeetle": 1.7805994267059932, + "thievul": 1.691141752409096, + "eldegoss": 3.3187431734938686, + "dubwool": 2.7570286960687067, + "drednaw": 1.606379946575669, + "boltund": 4.106318562724081, + "carkol": 2.3363600362581347, + "coalossal": 2.0049878514562787, + "sandaconda": 2.5746602989475957, + "cramorant": 8.596920137291413, + "barraskewda": 5.870116086617191, + "toxtricity-amped": 2.380468960816968, + "centiskorch": 1.858713482249596, + "grapploct": 1.670060387742737, + "polteageist": 2.394425994499933, + "hatterene": 2.3966828440175236, + "grimmsnarl": 3.6905421251798245, + "obstagoon": 2.4811027726511625, + "perrserker": 3.5084179626897893, + "alcremie": 1.3540626278819472, + "falinks": 3.1880694955526767, + "pincurchin": 2.691095272397133, + "frosmoth": 2.5649517991526816, + "indeedee-male": 2.967492713574174, + "morpeko": 2.450920596599159, + "copperajah": 2.458252244565685, + "duraludon": 1.3660112991062836, + "drakloak": 3.513233078459832 }, "magmar": { - "ivysaur": 4.707285785056854, - "charmeleon": 3.650646520937049, - "wartortle": 2.2327913409676956, - "butterfree": 6.338276848362488, - "raichu": 5.270693611728182, - "raichu-alola": 3.4567589955359104, - "sandslash": 2.1948709039178134, - "sandslash-alola": 4.361168738985151, - "nidoqueen": 2.8093627654254325, - "nidoking": 1.8154869059467176, - "clefairy": 10.345557796329317, - "clefable": 2.3109284898368143, - "jigglypuff": 30.548865734931688, - "wigglytuff": 2.3173068562409247, - "gloom": 8.574543970024102, - "vileplume": 4.697507693264898, - "dugtrio": 2.909072529501829, - "dugtrio-alola": 4.476169469347886, - "persian": 4.413667720412411, - "persian-alola": 4.39084022872836, - "golduck": 2.2939094480783795, - "poliwrath": 1.4407393190681343, - "kadabra": 3.924706410392078, - "machoke": 3.807934724842691, - "tentacruel": 1.7192869983025263, - "slowbro": 1.6362522120592928, - "magneton": 5.366889810913603, - "haunter": 4.966817606490297, - "kingler": 1.9475520162710693, - "exeggutor": 2.6622344484790235, - "marowak": 3.0624692611691744, - "marowak-alola": 1.862842380983724, - "hitmonlee": 2.2331988521097395, - "hitmonchan": 2.1846241477061783, - "lickitung": 1.9909410888271555, - "weezing": 1.9428374014435361, - "weezing-galar": 3.2941676623730203, - "rhydon": 1.8425287717816148, - "chansey": 19.62558433598148, - "tangela": 8.990430965084057, - "kangaskhan": 1.7779582137602903, - "seadra": 3.669949593738842, - "seaking": 1.749397972595455, - "starmie": 1.3233441992598527, - "mr-mime": 6.642191986212749, - "mr-mime-galar": 5.138887250438099, - "scyther": 3.729725663347713, - "jynx": 7.373194638841518, - "electabuzz": 2.6012505162279096, - "tauros": 2.022993129346536, - "ditto": 1.805219865230945, - "vaporeon": 2.414112729488334, - "jolteon": 1.9433646996784044, - "flareon": 2.1332088181099014, - "porygon": 2.9711136586493248, - "dragonair": 1.6092223414253528, - "noctowl": 5.44625661901752, - "lanturn": 1.4842765165938843, - "togetic": 5.9234857253780415, - "xatu": 4.108782438324965, - "bellossom": 3.7133080393428934, - "azumarill": 1.8914532694640374, - "sudowoodo": 1.9613010300438196, - "politoed": 1.8576017001812724, - "quagsire": 3.8464427139539037, - "slowking": 1.9310318192717215, - "dunsparce": 3.6333218375079817, - "qwilfish": 2.6821845384777783, - "sneasel": 2.8905538725767865, - "piloswine": 1.752841892098313, - "octillery": 2.0130447384632357, - "mantine": 1.79226148233837, - "skarmory": 3.742814198243212, - "hitmontop": 2.574477872947464, - "miltank": 3.9948450995985354, - "grovyle": 11.01233201549678, - "sceptile": 1.9984402577274802, - "combusken": 3.006520305892253, - "blaziken": 1.4628764726723589, - "marshtomp": 1.8459754760930032, - "swampert": 1.068920710504743, - "linoone": 5.3601926939851285, - "linoone-galar": 4.8255759854659175, - "pelipper": 5.3053157331892375, - "ninjask": 10.80595810484916, - "exploud": 1.7797664072155708, - "lairon": 2.436773901195486, - "manectric": 1.9508058788683718, - "roselia": 5.392497971752304, - "sharpedo": 3.8949642108796523, - "wailmer": 5.301159092405994, - "torkoal": 1.92758525831169, - "flygon": 2.0573320273952005, - "altaria": 1.522764931439923, - "whiscash": 1.5517394800332767, - "crawdaunt": 1.6119779274396304, - "claydol": 3.338931205792586, - "cradily": 2.345679096059855, - "armaldo": 1.8006728428696397, - "dusclops": 3.6541303749406153, - "absol": 2.155122170055224, - "glalie": 5.935992333499357, - "sealeo": 2.5997454993362474, - "relicanth": 1.2615117541073144, - "metang": 4.542169343101394, - "luxray": 3.980161470837518, - "vespiquen": 3.8393666299020426, - "cherrim": 8.692248365763938, - "gastrodon": 1.590464619739651, - "drifblim": 4.4896252147401485, - "lopunny": 3.591923344080404, - "skuntank": 1.6125239271357552, - "bronzong": 4.753174112548552, - "munchlax": 1.7861845507642473, - "drapion": 2.8069097513483605, - "abomasnow": 6.472863148869404, - "froslass": 4.518558094900098, - "rotom": 4.1118479470696165, - "stoutland": 2.415859944847585, - "liepard": 7.470363277983023, - "musharna": 1.634309740249388, - "unfezant": 6.772596577344602, - "boldore": 2.582385882306259, - "swoobat": 5.880433313558494, - "audino": 2.479155102936642, - "gurdurr": 2.313774981794881, - "palpitoad": 2.9980036031322395, - "seismitoad": 5.612521169141325, - "scolipede": 5.019762447665391, - "whimsicott": 4.956533643151137, - "lilligant": 4.816845861586989, - "basculin-red-striped": 2.129317594504145, - "basculin-blue-striped": 2.773068471053851, - "krookodile": 2.8127037658940566, - "maractus": 3.4515286016701214, - "crustle": 2.184587575597936, - "sigilyph": 2.546813964106919, - "cofagrigus": 2.992829333438994, - "garbodor": 1.9344109825235374, - "cinccino": 4.85861219934512, - "vanillish": 3.1820903037465826, - "emolga": 3.2621509896293004, - "escavalier": 3.65629826327714, - "amoonguss": 3.7501543592207636, - "jellicent": 1.3398435679551368, - "galvantula": 2.423948617460133, - "klang": 4.3000625366820895, - "klinklang": 5.494082230507267, - "beheeyem": 1.8084477430067558, - "lampent": 2.049535925659706, - "fraxure": 1.3334036165486174, - "beartic": 2.5571918928241244, - "cryogonal": 2.2151876553508343, - "accelgor": 4.535962314288623, - "stunfisk": 1.2032483818227724, - "stunfisk-galar": 3.269988740183888, - "mienshao": 3.2941640146820563, - "druddigon": 1.4923699232799463, - "golurk": 1.8554037205496166, - "bisharp": 3.6500206775641573, - "bouffalant": 1.336842225701678, - "heatmor": 1.7919005528390228, - "durant": 9.094650866828127, - "diggersby": 2.781378948529292, - "talonflame": 2.7228743268921933, - "pangoro": 1.826891320627956, - "doublade": 4.7290106191691486, - "malamar": 3.013002837353987, - "barbaracle": 1.1089410404404125, - "heliolisk": 4.565355655862804, - "tyrantrum": 1.1372659051552745, - "aurorus": 2.3937734952371024, - "hawlucha": 3.627446054610994, - "dedenne": 3.379926080840195, - "klefki": 5.28999955068231, - "trevenant": 4.478629933467802, - "gourgeist-average": 8.72628043431271, - "charjabug": 5.705571516166904, - "vikavolt": 2.8903039954676464, - "ribombee": 7.309448294601648, - "lycanroc-midday": 2.4075234111002453, - "lycanroc-midnight": 1.803909444530274, - "mudsdale": 1.548307946613837, - "araquanid": 2.1354843594751314, - "lurantis": 3.6455719663472568, - "shiinotic": 6.485791387208815, - "salazzle": 2.9153349672653137, - "bewear": 1.8314472084942537, - "tsareena": 4.498598845261717, - "comfey": 5.100435971228588, - "oranguru": 2.6822882104765116, - "passimian": 2.3692174695106334, - "palossand": 2.1726994023900774, - "pyukumuku": 37.30483598564277, - "togedemaru": 3.236033128844014, - "mimikyu-disguised": 3.9146583427460477, - "greedent": 2.2687936036224716, - "orbeetle": 2.6775786018949677, - "thievul": 1.8660143023428164, - "eldegoss": 5.606498474251323, - "dubwool": 4.186493209166749, - "drednaw": 0.8398415706478499, - "boltund": 4.93179673354277, - "carkol": 1.6930392809859225, - "coalossal": 1.5158884479083672, - "sandaconda": 3.414916820461549, - "cramorant": 3.8718695291148606, - "barraskewda": 3.579748663108102, - "toxtricity-amped": 2.8559802348351733, - "centiskorch": 2.0581016944829553, - "grapploct": 1.692554548139785, - "polteageist": 2.670776577943173, - "hatterene": 2.7229985181677527, - "grimmsnarl": 4.0002329267944985, - "obstagoon": 2.63550630788795, - "perrserker": 5.546943025708712, - "alcremie": 1.6284551319513336, - "falinks": 3.627785080116909, - "pincurchin": 3.0984464751379326, - "frosmoth": 5.186525287779334, - "indeedee-male": 3.2424895990526643, - "morpeko": 2.9056958662165124, - "copperajah": 3.7634367086798175, - "duraludon": 1.9508689775678978, - "drakloak": 3.732643000954277, - "magmar": 1.5611504820621895 + "ivysaur": 4.725206294688855, + "charmeleon": 3.6552357997004963, + "wartortle": 2.229668354141483, + "butterfree": 6.358628809437125, + "raichu": 5.276775047941388, + "raichu-alola": 3.4569599472446715, + "sandslash": 2.192557369625125, + "sandslash-alola": 4.375393557468339, + "nidoqueen": 2.808593717199029, + "nidoking": 1.814366281538323, + "clefairy": 10.38224351948747, + "clefable": 2.3151842586687748, + "jigglypuff": 30.649209631409406, + "wigglytuff": 2.323018367416886, + "gloom": 8.605219913293233, + "vileplume": 4.719676214659872, + "dugtrio": 2.899701716406798, + "dugtrio-alola": 4.4777790333618865, + "persian": 4.414617951427011, + "persian-alola": 4.392362317361817, + "golduck": 2.2865594910267464, + "poliwrath": 1.4367788240874269, + "kadabra": 3.923350542718877, + "machoke": 3.8057872590317747, + "tentacruel": 1.7133372734142611, + "slowbro": 1.6367280140738214, + "magneton": 5.387248795294734, + "haunter": 4.9736913405539465, + "kingler": 1.9426169869761591, + "exeggutor": 2.6672697864315644, + "marowak": 3.059869579878158, + "marowak-alola": 1.8625645958487924, + "hitmonlee": 2.232609062863762, + "hitmonchan": 2.1865531870990393, + "lickitung": 1.992384977721753, + "weezing": 1.947142625058525, + "weezing-galar": 3.3064945846825786, + "rhydon": 1.8352600894003621, + "chansey": 19.56368271900961, + "tangela": 9.033184686439643, + "kangaskhan": 1.7762296925075174, + "seadra": 3.666816023970423, + "seaking": 1.7429281283151923, + "starmie": 1.3223614298533506, + "mr-mime": 6.646876201310761, + "mr-mime-galar": 5.151194577374149, + "scyther": 3.7366880256059654, + "jynx": 7.402216619719425, + "electabuzz": 2.6026743667410503, + "magmar": 1.5611504820621895, + "tauros": 2.021989947714437, + "ditto": 1.7960062074483056, + "vaporeon": 2.408020248489433, + "jolteon": 1.9446707196164117, + "flareon": 2.127239636580292, + "porygon": 2.9740025911604517, + "dragonair": 1.6080737851548808, + "noctowl": 5.443345756516761, + "lanturn": 1.481638444971105, + "togetic": 5.9424287805027936, + "xatu": 4.11344569813888, + "bellossom": 3.731423121799465, + "azumarill": 1.8903642191293557, + "sudowoodo": 1.9539133643922064, + "politoed": 1.8511019809843612, + "quagsire": 3.839747177248402, + "slowking": 1.9260998941207865, + "dunsparce": 3.640061473738074, + "qwilfish": 2.67502843541142, + "sneasel": 2.894180988933414, + "piloswine": 1.7536137533104976, + "octillery": 2.011575051170095, + "mantine": 1.7872850408470702, + "skarmory": 3.7568921304831178, + "hitmontop": 2.573319975231188, + "miltank": 3.9992013415376095, + "grovyle": 11.050098148034255, + "sceptile": 2.0064769735079433, + "combusken": 3.008078920302963, + "blaziken": 1.4637291692201546, + "marshtomp": 1.8394784671528228, + "swampert": 1.0666618688810927, + "linoone": 5.361522568138859, + "linoone-galar": 4.825737446800515, + "pelipper": 5.3016341430501, + "ninjask": 10.837783332955702, + "exploud": 1.7818708706628774, + "lairon": 2.4365994238619426, + "manectric": 1.954711564117918, + "roselia": 5.4084197340716145, + "sharpedo": 3.8842651327327973, + "wailmer": 5.29238201746448, + "torkoal": 1.9317048784859399, + "flygon": 2.0553808164367675, + "altaria": 1.5237223038119558, + "whiscash": 1.5485462386555109, + "crawdaunt": 1.6097383504233682, + "claydol": 3.337656217672442, + "cradily": 2.346293620560634, + "armaldo": 1.7979761834945105, + "dusclops": 3.656475305162418, + "absol": 2.1573135518128757, + "glalie": 5.952125225252507, + "sealeo": 2.594724765501802, + "relicanth": 1.254531118787173, + "metang": 4.552894010131283, + "luxray": 3.982232419271897, + "vespiquen": 3.8486689462048878, + "cherrim": 8.727358418519715, + "gastrodon": 1.5846465159530863, + "drifblim": 4.490972649906154, + "lopunny": 3.5904346333871597, + "skuntank": 1.6143429297401264, + "bronzong": 4.763856833830739, + "munchlax": 1.7824901208933923, + "drapion": 2.8128273917587645, + "abomasnow": 6.50295365206353, + "froslass": 4.533805706470424, + "rotom": 4.116959593582991, + "stoutland": 2.4145136697502707, + "liepard": 7.478355603309599, + "musharna": 1.636001742671376, + "unfezant": 6.779135639316513, + "boldore": 2.573444491993209, + "swoobat": 5.887109327579799, + "audino": 2.4840179759509127, + "gurdurr": 2.313860015104797, + "palpitoad": 2.9906619704397444, + "seismitoad": 5.6072731194590055, + "scolipede": 5.03652323534563, + "whimsicott": 4.983434476258953, + "lilligant": 4.840864274484589, + "basculin-red-striped": 2.1229991024612707, + "basculin-blue-striped": 2.765222086067158, + "krookodile": 2.8107336721065934, + "maractus": 3.467796888918767, + "crustle": 2.1840415498461976, + "sigilyph": 2.5507002374277294, + "cofagrigus": 2.9962518664514644, + "garbodor": 1.9345246765833894, + "cinccino": 4.862142301862097, + "vanillish": 3.193462580661046, + "emolga": 3.266576140601696, + "escavalier": 3.6605462436578087, + "amoonguss": 3.762723289825915, + "jellicent": 1.3375237292706759, + "galvantula": 2.4325385053096977, + "klang": 4.31155521460407, + "klinklang": 5.510036895149209, + "beheeyem": 1.8084668011210834, + "lampent": 2.042278089514337, + "fraxure": 1.332485866041578, + "beartic": 2.5637836225015698, + "cryogonal": 2.221294752794069, + "accelgor": 4.552545602853956, + "stunfisk": 1.2020363097693298, + "stunfisk-galar": 3.2732635880227163, + "mienshao": 3.2923849720308658, + "druddigon": 1.4904980508952348, + "golurk": 1.8535871968693924, + "bisharp": 3.655478865582432, + "bouffalant": 1.337773329339071, + "heatmor": 1.7894229325548148, + "durant": 9.143367479547386, + "diggersby": 2.773031222373792, + "talonflame": 2.7259848397186386, + "pangoro": 1.828009820013699, + "doublade": 4.746493839474226, + "malamar": 3.014887377961045, + "barbaracle": 1.103740102295692, + "heliolisk": 4.572115170841531, + "tyrantrum": 1.1331241382258925, + "aurorus": 2.3908450710265283, + "hawlucha": 3.6286484652001283, + "dedenne": 3.389581413629433, + "klefki": 5.314662269579676, + "trevenant": 4.491813156561777, + "gourgeist-average": 8.756171185073576, + "charjabug": 5.710416462760632, + "vikavolt": 2.9000407880156276, + "ribombee": 7.346088762620129, + "lycanroc-midday": 2.3963238643588514, + "lycanroc-midnight": 1.7973793534136824, + "mudsdale": 1.5471477958724025, + "araquanid": 2.1331463362137946, + "lurantis": 3.6601959544885516, + "shiinotic": 6.516712882402015, + "salazzle": 2.916529606059543, + "bewear": 1.830873108199203, + "tsareena": 4.513903713781952, + "comfey": 5.1194297389676935, + "oranguru": 2.6824132066412654, + "passimian": 2.3690535012652094, + "palossand": 2.1720240104056248, + "pyukumuku": 37.28257601744703, + "togedemaru": 3.242731956923321, + "mimikyu-disguised": 3.912447773593141, + "greedent": 2.2698967787947066, + "orbeetle": 2.684836852495226, + "thievul": 1.8661521299476491, + "eldegoss": 5.628394850212459, + "dubwool": 4.194610711400571, + "drednaw": 0.8361353476603979, + "boltund": 4.935934825986349, + "carkol": 1.6864659830431896, + "coalossal": 1.511571035055023, + "sandaconda": 3.4164910494984237, + "cramorant": 3.8568215735425575, + "barraskewda": 3.570510379880978, + "toxtricity-amped": 2.858077374217074, + "centiskorch": 2.0588603371645298, + "grapploct": 1.6934455310639156, + "polteageist": 2.6713662806333627, + "hatterene": 2.729040625497143, + "grimmsnarl": 4.006717175805172, + "obstagoon": 2.635274326298986, + "perrserker": 5.5647000241645905, + "alcremie": 1.633757303459332, + "falinks": 3.6353074751575614, + "pincurchin": 3.098990503568428, + "frosmoth": 5.206234318996542, + "indeedee-male": 3.2449141676757147, + "morpeko": 2.9084687905033038, + "copperajah": 3.7762350815984767, + "duraludon": 1.9550184417786247, + "drakloak": 3.72599200432679 }, "tauros": { - "ivysaur": 3.2530076192120294, - "charmeleon": 4.658030439547744, - "wartortle": 2.670064725308036, - "butterfree": 4.76796563485476, - "raichu": 6.064407525653724, - "raichu-alola": 4.38917016119138, - "sandslash": 2.0552737173300333, - "sandslash-alola": 2.8062940966548156, - "nidoqueen": 3.3790213062432963, - "nidoking": 2.223903105915187, - "clefairy": 9.617813018017596, - "clefable": 2.1000428595192213, - "jigglypuff": 28.09434481201778, - "wigglytuff": 2.039104500835661, - "gloom": 5.660463109419457, - "vileplume": 2.951856115805926, - "dugtrio": 4.033401523792508, - "dugtrio-alola": 4.580560162361761, - "persian": 5.080454936101753, - "persian-alola": 5.068611286261949, - "golduck": 3.166518336743456, - "poliwrath": 1.8780903410349745, - "kadabra": 4.6313349946498805, - "machoke": 3.788231003192668, - "tentacruel": 3.1372830288757156, - "slowbro": 1.7899293001682024, - "magneton": 4.924125042898634, - "haunter": 5.501943638659055, - "kingler": 2.2017404335469086, - "exeggutor": 2.020162586726072, - "marowak": 3.0664588164385895, - "marowak-alola": 2.4967090131123486, - "hitmonlee": 2.5272688916624997, - "hitmonchan": 2.2898860299345873, - "lickitung": 2.2217168001675462, - "weezing": 1.658950441990795, - "weezing-galar": 2.7599481390860108, - "rhydon": 2.388597414579315, - "chansey": 36.273486403892605, - "tangela": 4.473647185565721, - "kangaskhan": 2.1909412857202852, - "seadra": 3.776392428667555, - "seaking": 2.644308486155248, - "starmie": 1.5281675211267536, - "mr-mime": 7.336907490384987, - "mr-mime-galar": 3.9540136392430756, - "scyther": 2.7848690533997686, - "jynx": 5.142764478284488, - "electabuzz": 3.2085081669359967, - "magmar": 2.10365208225748, - "ditto": 2.7280182942012425, - "vaporeon": 3.4470199884086643, - "jolteon": 2.5758611128004905, - "flareon": 3.2442671279279827, - "porygon": 3.230590118655955, - "dragonair": 1.9438598999156895, - "noctowl": 6.494026609929568, - "lanturn": 2.4314557881011285, - "togetic": 5.568510168345666, - "xatu": 4.030148837992504, - "bellossom": 2.3461248448100953, - "azumarill": 2.345846077110575, - "sudowoodo": 2.772874922477558, - "politoed": 2.728002914596642, - "quagsire": 4.224583163739701, - "slowking": 2.7933558159709113, - "dunsparce": 3.9636473881855516, - "qwilfish": 3.8426160355344416, - "sneasel": 3.8345142610675014, - "piloswine": 1.6943000904643408, - "octillery": 2.386458561516476, - "mantine": 2.720494388090236, - "skarmory": 1.7625239685625829, - "hitmontop": 2.7166196524208903, - "miltank": 3.955065202411782, - "grovyle": 8.110111554822542, - "sceptile": 1.5056668687757493, - "combusken": 3.6045019153452396, - "blaziken": 1.853206714624727, - "marshtomp": 2.5857492801578603, - "swampert": 1.267298238960381, - "linoone": 6.4884652709868424, - "linoone-galar": 7.58930609442896, - "pelipper": 5.853072591812023, - "ninjask": 7.764730053534302, - "exploud": 1.8351431997603695, - "lairon": 3.29253652049983, - "manectric": 2.1072039549832127, - "roselia": 4.2392480715257514, - "sharpedo": 5.986621901428926, - "wailmer": 6.750745671107266, - "torkoal": 1.9139654754173199, - "flygon": 2.453442363385223, - "altaria": 1.6186403590755272, - "whiscash": 2.0811687404815116, - "crawdaunt": 2.183634598498259, - "claydol": 3.5477646844911943, - "cradily": 2.5944503473039564, - "armaldo": 1.7822054668324188, - "dusclops": 4.221910941345319, - "absol": 2.3311358703723633, - "glalie": 4.856970027678949, - "sealeo": 3.6316807460722367, - "relicanth": 2.080675823748175, - "metang": 3.4151464831901532, - "luxray": 4.528602489723811, - "vespiquen": 2.7240496875544578, - "cherrim": 5.9030608234308755, - "gastrodon": 2.3235023297269217, - "drifblim": 4.685165724860995, - "lopunny": 4.268954504692847, - "skuntank": 1.7408355594483522, - "bronzong": 3.5224532721968176, - "munchlax": 3.0448472774470385, - "drapion": 2.765114077655993, - "abomasnow": 3.697142258114977, - "froslass": 3.347219315104179, - "rotom": 4.437667160574214, - "stoutland": 2.8289805489285325, - "liepard": 8.36580498436563, - "musharna": 1.6577338895833023, - "unfezant": 6.2505194095601695, - "boldore": 3.3330163845722307, - "swoobat": 5.759929168222557, - "audino": 2.5732217869137113, - "gurdurr": 1.963157585851989, - "palpitoad": 3.862056934866197, - "seismitoad": 6.356838795290582, - "scolipede": 3.1635695052565467, - "whimsicott": 3.0999059656998895, - "lilligant": 3.047994948101214, - "basculin-red-striped": 2.888768288127619, - "basculin-blue-striped": 3.675263794963903, - "krookodile": 3.2172142064446767, - "maractus": 2.2351117038055373, - "crustle": 1.831383425912132, - "sigilyph": 2.443248151869548, - "cofagrigus": 2.9366401087396587, - "garbodor": 2.165989450320418, - "cinccino": 5.3846087421023885, - "vanillish": 2.525251864669383, - "emolga": 3.0523189677277465, - "escavalier": 1.7992812334754356, - "amoonguss": 2.5479598817555886, - "jellicent": 1.8093712044828538, - "galvantula": 1.576378280956276, - "klang": 3.3718883793331926, - "klinklang": 4.069466583980652, - "beheeyem": 1.967724733578383, - "lampent": 3.0443414611255877, - "fraxure": 1.5569958036786522, - "beartic": 1.9187658066911224, - "cryogonal": 2.319547938336101, - "accelgor": 3.1882389496150245, - "stunfisk": 1.5322177651101794, - "stunfisk-galar": 2.7714404233177836, - "mienshao": 3.275955584683502, - "druddigon": 1.9185973415689654, - "golurk": 2.0428643976403604, - "bisharp": 3.7835538695948516, - "bouffalant": 1.4981156213333655, - "heatmor": 2.271686932903355, - "durant": 2.637177111472159, - "diggersby": 3.799333459353448, - "talonflame": 2.926367788828268, - "pangoro": 1.9293887987175977, - "doublade": 2.2386139665175446, - "malamar": 2.8149197217901585, - "barbaracle": 1.7035274328514873, - "heliolisk": 4.956232171681307, - "tyrantrum": 1.6784966318612082, - "aurorus": 3.773477845907502, - "hawlucha": 3.3512546674239925, - "dedenne": 3.5344798559629123, - "klefki": 3.7438005414930906, - "trevenant": 3.212680631103341, - "gourgeist-average": 5.6214452873844225, - "charjabug": 3.967773342531125, - "vikavolt": 1.8067657872386327, - "ribombee": 4.724167805386567, - "lycanroc-midday": 4.148087839581, - "lycanroc-midnight": 2.8419405132866826, - "mudsdale": 1.500026283108054, - "araquanid": 2.57357039358686, - "lurantis": 2.421186088296316, - "shiinotic": 4.496373391315448, - "salazzle": 5.296052592263598, - "bewear": 1.9909889816698665, - "tsareena": 3.2257922155934264, - "comfey": 4.5811587364448165, - "oranguru": 2.9875752894734817, - "passimian": 2.162760647839061, - "palossand": 2.169484017541526, - "pyukumuku": 42.298378708603934, - "togedemaru": 4.053843692225051, - "mimikyu-disguised": 4.397034115285651, - "greedent": 2.4216511357294337, - "orbeetle": 1.922640074486193, - "thievul": 2.3327592758662425, - "eldegoss": 4.052344226661809, - "dubwool": 3.2646825424497665, - "drednaw": 1.5158911411213303, - "boltund": 5.620003276637263, - "carkol": 3.5941214279445477, - "coalossal": 2.8330457228402244, - "sandaconda": 2.9433688506394287, - "cramorant": 6.113710309200364, - "barraskewda": 4.717514297543266, - "toxtricity-amped": 4.370498503460054, - "centiskorch": 2.1422975115403338, - "grapploct": 1.562402265967918, - "polteageist": 3.214236415121034, - "hatterene": 2.557110215039527, - "grimmsnarl": 3.8578518847656227, - "obstagoon": 3.853603713062002, - "perrserker": 3.745476305666907, - "alcremie": 1.5416331787302437, - "falinks": 2.8653111691376036, - "pincurchin": 3.4019678544870837, - "frosmoth": 2.7535698302059872, - "indeedee-male": 3.831226493443067, - "morpeko": 3.4268569095667996, - "copperajah": 2.9270432084116353, - "duraludon": 1.7231402123815602, - "drakloak": 5.334131954972251, - "tauros": 2.1889085595009634 + "ivysaur": 3.255938571523087, + "charmeleon": 4.669040995851207, + "wartortle": 2.6724573491095844, + "butterfree": 4.764386699065327, + "raichu": 6.074164397008554, + "raichu-alola": 4.398875367694935, + "sandslash": 2.0572068631523335, + "sandslash-alola": 2.812771277449005, + "nidoqueen": 3.3872695164170663, + "nidoking": 2.229337066492789, + "clefairy": 9.629349946435264, + "clefable": 2.1021290018181062, + "jigglypuff": 28.137010880151312, + "wigglytuff": 2.0413417134412537, + "gloom": 5.663443188919013, + "vileplume": 2.9538457277101764, + "dugtrio": 4.044175088689222, + "dugtrio-alola": 4.598836136671215, + "persian": 5.093405664988733, + "persian-alola": 5.08044549980244, + "golduck": 3.1718590001990226, + "poliwrath": 1.879624276154819, + "kadabra": 4.640820370817069, + "machoke": 3.7908414540194846, + "tentacruel": 3.145477450700218, + "slowbro": 1.791100042506764, + "magneton": 4.937720626516442, + "haunter": 5.506930574214942, + "kingler": 2.2015578309059203, + "exeggutor": 2.0208500857269365, + "marowak": 3.0712173914841028, + "marowak-alola": 2.50281218381756, + "hitmonlee": 2.5300226049736265, + "hitmonchan": 2.294041043330413, + "lickitung": 2.226001023395095, + "weezing": 1.6599535768290057, + "weezing-galar": 2.7609481063836134, + "rhydon": 2.3905773177371064, + "chansey": 36.39943259408206, + "tangela": 4.472608795695117, + "kangaskhan": 2.197263015665044, + "seadra": 3.7755660217652682, + "seaking": 2.6511913006280685, + "starmie": 1.5302907868053977, + "mr-mime": 7.34355409313101, + "mr-mime-galar": 3.9599099636146193, + "scyther": 2.784451229826156, + "jynx": 5.1550744253228356, + "electabuzz": 3.2162213395870523, + "magmar": 2.109204126568094, + "tauros": 2.1889085595009634, + "ditto": 2.7150327893816124, + "vaporeon": 3.454436861017776, + "jolteon": 2.5858995931685396, + "flareon": 3.25861679771049, + "porygon": 3.237825819448343, + "dragonair": 1.9474413372803743, + "noctowl": 6.502125681003027, + "lanturn": 2.4389181532053126, + "togetic": 5.567400202297195, + "xatu": 4.029356969618564, + "bellossom": 2.3477272187286293, + "azumarill": 2.351759852360991, + "sudowoodo": 2.777034423725291, + "politoed": 2.7337874254698655, + "quagsire": 4.2235958117785195, + "slowking": 2.7987988455931863, + "dunsparce": 3.9772236323187973, + "qwilfish": 3.849207288451635, + "sneasel": 3.847176827633932, + "piloswine": 1.6967030336023337, + "octillery": 2.38984353736726, + "mantine": 2.722825162495294, + "skarmory": 1.763001859476723, + "hitmontop": 2.719636893027485, + "miltank": 3.9634693615250134, + "grovyle": 8.114847674051994, + "sceptile": 1.5074214406835107, + "combusken": 3.606235888348997, + "blaziken": 1.8561765394700307, + "marshtomp": 2.5910745713299095, + "swampert": 1.2692603162133569, + "linoone": 6.511768527107724, + "linoone-galar": 7.61202412247903, + "pelipper": 5.849625273960363, + "ninjask": 7.7631065096523315, + "exploud": 1.8376414338952531, + "lairon": 3.3029290258736017, + "manectric": 2.1125318710711842, + "roselia": 4.2444065837125065, + "sharpedo": 6.002580421259051, + "wailmer": 6.763141565095122, + "torkoal": 1.9163876494397836, + "flygon": 2.4550406940008274, + "altaria": 1.6181519688451322, + "whiscash": 2.0846019599008025, + "crawdaunt": 2.187130270288201, + "claydol": 3.5476710219979144, + "cradily": 2.5986028065384454, + "armaldo": 1.7844349387011937, + "dusclops": 4.234803071447417, + "absol": 2.3366707621762113, + "glalie": 4.869830147238129, + "sealeo": 3.63963717263292, + "relicanth": 2.084084129716005, + "metang": 3.424834881535472, + "luxray": 4.538506347221693, + "vespiquen": 2.7222838187026928, + "cherrim": 5.90633218429224, + "gastrodon": 2.3290819420117943, + "drifblim": 4.6788626623933425, + "lopunny": 4.278961207901781, + "skuntank": 1.7456827730994529, + "bronzong": 3.528436660061697, + "munchlax": 3.0572214756873883, + "drapion": 2.772040464328798, + "abomasnow": 3.703283603443781, + "froslass": 3.3518228151270213, + "rotom": 4.442011525808218, + "stoutland": 2.8356075585370206, + "liepard": 8.389597863858414, + "musharna": 1.659842421881732, + "unfezant": 6.255851836664584, + "boldore": 3.3360296557861515, + "swoobat": 5.758693878401483, + "audino": 2.57831247406406, + "gurdurr": 1.96170305284894, + "palpitoad": 3.86822792685093, + "seismitoad": 6.36125723396796, + "scolipede": 3.1659785415694253, + "whimsicott": 3.0996777505652338, + "lilligant": 3.0496544821390525, + "basculin-red-striped": 2.8943282589981143, + "basculin-blue-striped": 3.6812084079438696, + "krookodile": 3.2241994810135393, + "maractus": 2.237469419312008, + "crustle": 1.831480338726684, + "sigilyph": 2.4426230055041005, + "cofagrigus": 2.9417107206739717, + "garbodor": 2.168758664204808, + "cinccino": 5.3986154844694685, + "vanillish": 2.5298590789532907, + "emolga": 3.052953104104474, + "escavalier": 1.8030454445201212, + "amoonguss": 2.549486302950398, + "jellicent": 1.810904810851598, + "galvantula": 1.5773624864415485, + "klang": 3.3814467125950785, + "klinklang": 4.082151002798133, + "beheeyem": 1.97018060520466, + "lampent": 3.0485837454182363, + "fraxure": 1.5593651097406438, + "beartic": 1.9213554850038626, + "cryogonal": 2.3244854310180294, + "accelgor": 3.1891216179130333, + "stunfisk": 1.5355098617046101, + "stunfisk-galar": 2.7792761013307326, + "mienshao": 3.2769283888872716, + "druddigon": 1.9232916342130495, + "golurk": 2.0438371925933185, + "bisharp": 3.7968022985294625, + "bouffalant": 1.5022027884123745, + "heatmor": 2.2782618404716852, + "durant": 2.6383878257426847, + "diggersby": 3.810609582496234, + "talonflame": 2.9263076624189184, + "pangoro": 1.932128693613575, + "doublade": 2.2380201037419676, + "malamar": 2.817551913337695, + "barbaracle": 1.7067416759982246, + "heliolisk": 4.975214347054592, + "tyrantrum": 1.680581281233322, + "aurorus": 3.7849820459090644, + "hawlucha": 3.3475089419938753, + "dedenne": 3.5404336939593364, + "klefki": 3.752875233023767, + "trevenant": 3.2102324203983272, + "gourgeist-average": 5.62677320463227, + "charjabug": 3.9730465020043226, + "vikavolt": 1.8065535370245103, + "ribombee": 4.722039190509096, + "lycanroc-midday": 4.1605331803476195, + "lycanroc-midnight": 2.848811833841536, + "mudsdale": 1.5008790253746658, + "araquanid": 2.577896025889721, + "lurantis": 2.42254841649056, + "shiinotic": 4.495310772636196, + "salazzle": 5.309545985455941, + "bewear": 1.9945469852611026, + "tsareena": 3.2305526955562662, + "comfey": 4.585338267014874, + "oranguru": 2.9940407178304165, + "passimian": 2.1632442460589703, + "palossand": 2.171350739754195, + "pyukumuku": 42.3152617617193, + "togedemaru": 4.070456081148959, + "mimikyu-disguised": 4.406475383705256, + "greedent": 2.4274502685564023, + "orbeetle": 1.9225931674768881, + "thievul": 2.3389212068206544, + "eldegoss": 4.05568418239254, + "dubwool": 3.270215433259029, + "drednaw": 1.5194289505819951, + "boltund": 5.63431608172676, + "carkol": 3.604160251710323, + "coalossal": 2.839502881539918, + "sandaconda": 2.945367873483905, + "cramorant": 6.120115997173681, + "barraskewda": 4.726072131362592, + "toxtricity-amped": 4.378749816159361, + "centiskorch": 2.144794903051909, + "grapploct": 1.5609824716743046, + "polteageist": 3.2167958321843475, + "hatterene": 2.559065920804433, + "grimmsnarl": 3.8608274607305564, + "obstagoon": 3.863758875523003, + "perrserker": 3.756108485968354, + "alcremie": 1.5437017858194229, + "falinks": 2.8649187232135533, + "pincurchin": 3.408388193033952, + "frosmoth": 2.754350993308189, + "indeedee-male": 3.844622237825747, + "morpeko": 3.437524234275884, + "copperajah": 2.934932786020251, + "duraludon": 1.7274250979355894, + "drakloak": 5.343622115903468 }, "ditto": { - "ivysaur": 3.124258750781834, - "charmeleon": 3.4830985741639893, - "wartortle": 2.390531707119179, - "butterfree": 4.056858144078132, - "raichu": 5.069522606525819, - "raichu-alola": 3.125085242446455, - "sandslash": 2.0958816669646314, - "sandslash-alola": 2.421410604490566, - "nidoqueen": 3.1594773408980883, - "nidoking": 2.3946590880414327, - "clefairy": 6.996162685724197, - "clefable": 2.0214848304572137, - "jigglypuff": 16.834442889584892, - "wigglytuff": 1.6803857108677218, - "gloom": 5.149280789384061, - "vileplume": 3.0122147664465513, - "dugtrio": 3.929422762231713, - "dugtrio-alola": 4.563536269225019, - "persian": 3.6214149740105084, - "persian-alola": 3.5228571278694547, - "golduck": 2.878625738223624, - "poliwrath": 2.016527663837766, - "kadabra": 3.407167996762502, - "machoke": 3.595479700660545, - "tentacruel": 2.1123050326071198, - "slowbro": 1.7125665403159362, - "magneton": 3.092827544548407, - "haunter": 5.246186679439923, - "kingler": 2.422699654399911, - "exeggutor": 1.8765075794657156, - "marowak": 2.850766907419688, - "marowak-alola": 2.5604169525352978, - "hitmonlee": 2.6919091077900634, - "hitmonchan": 2.047871384545792, - "lickitung": 1.5921879823501035, - "weezing": 1.4649760652092403, - "weezing-galar": 2.4655410955135313, - "rhydon": 2.5837694174253487, - "chansey": 18.116454333509747, - "tangela": 4.173735409780613, - "kangaskhan": 1.8364812884144044, - "seadra": 3.806245791274949, - "seaking": 2.205614582691308, - "starmie": 1.3684883444265403, - "mr-mime": 6.2299612136515465, - "mr-mime-galar": 3.4466878887021264, - "scyther": 3.2415636047680003, - "jynx": 3.864820984452368, - "electabuzz": 2.3190117057451562, - "magmar": 1.5414623211026028, - "tauros": 2.108036642105951, - "vaporeon": 3.200054790807304, - "jolteon": 1.8936186586553236, - "flareon": 3.129490889767583, - "porygon": 2.677696761696782, - "dragonair": 1.760156530500609, - "noctowl": 5.049830307597537, - "lanturn": 1.9145055463574174, - "togetic": 4.587877805368337, - "xatu": 3.8827359792263465, - "bellossom": 2.186016339563431, - "azumarill": 1.9665172371440574, - "sudowoodo": 2.564977875420574, - "politoed": 2.326277751758089, - "quagsire": 4.195047941731298, - "slowking": 2.2726617239955162, - "dunsparce": 2.8116112934596895, - "qwilfish": 3.031584381025363, - "sneasel": 2.127346262941762, - "piloswine": 1.7002009237384668, - "octillery": 2.1829310542378035, - "mantine": 2.587717964160826, - "skarmory": 1.7453484670605857, - "hitmontop": 2.602779110483185, - "miltank": 3.4207362469378757, - "grovyle": 6.592048006111676, - "sceptile": 1.591482834455506, - "combusken": 3.0668261091289573, - "blaziken": 1.8334253970191527, - "marshtomp": 2.348575308875032, - "swampert": 1.2582979213446621, - "linoone": 4.709845477117784, - "linoone-galar": 4.075938499551234, - "pelipper": 5.152294498313181, - "ninjask": 6.468666538852978, - "exploud": 1.5856286499933399, - "lairon": 2.3730929360417745, - "manectric": 1.765316841026486, - "roselia": 4.163703846538783, - "sharpedo": 4.252891570195013, - "wailmer": 5.062983737247263, - "torkoal": 1.7559818332640784, - "flygon": 3.071172097774796, - "altaria": 1.7874907184789772, - "whiscash": 1.8664136212366618, - "crawdaunt": 1.871263981130416, - "claydol": 3.1272654940000266, - "cradily": 2.254933604762689, - "armaldo": 2.220544268404836, - "dusclops": 3.6056428923457826, - "absol": 1.8050329062202866, - "glalie": 4.152208161782954, - "sealeo": 2.8801082457491454, - "relicanth": 1.9297283261020575, - "metang": 2.668136693891671, - "luxray": 3.655511471497853, - "vespiquen": 3.101706481832052, - "cherrim": 5.030088271833575, - "gastrodon": 2.098148121709573, - "drifblim": 3.757883541022065, - "lopunny": 3.4639877686354907, - "skuntank": 1.2247748556840752, - "bronzong": 2.8846324408374038, - "munchlax": 2.1512072185638473, - "drapion": 2.1683983075723634, - "abomasnow": 3.094652846619039, - "froslass": 3.498291364513931, - "rotom": 4.666294492156466, - "stoutland": 2.577332381626297, - "liepard": 6.638437345511882, - "musharna": 1.5353612892885549, - "unfezant": 5.783480502422847, - "boldore": 3.041910797876238, - "swoobat": 5.0806766630551214, - "audino": 2.0107372952267095, - "gurdurr": 2.1366350182219254, - "palpitoad": 3.2553451115902496, - "seismitoad": 5.310983266564164, - "scolipede": 2.984677043845733, - "whimsicott": 3.28654811295757, - "lilligant": 3.517965680368086, - "basculin-red-striped": 2.577716876336722, - "basculin-blue-striped": 3.268023251218421, - "krookodile": 2.7765079839868996, - "maractus": 2.0796127862043017, - "crustle": 2.349605858038215, - "sigilyph": 2.426300817807326, - "cofagrigus": 3.6563683614061793, - "garbodor": 1.6416540441545902, - "cinccino": 3.9153540677445537, - "vanillish": 1.9768444772080556, - "emolga": 2.661087689024218, - "escavalier": 1.8798669680943054, - "amoonguss": 2.3374490700861545, - "jellicent": 1.454988879292666, - "galvantula": 1.6966024453029003, - "klang": 2.413655074844355, - "klinklang": 2.996920765303756, - "beheeyem": 2.142491879443928, - "lampent": 2.699132392014767, - "fraxure": 1.958458024017074, - "beartic": 1.9045540619793462, - "cryogonal": 1.659153799807754, - "accelgor": 2.763089833076191, - "stunfisk": 1.5046422739879943, - "stunfisk-galar": 2.692404478507796, - "mienshao": 3.2437980615806357, - "druddigon": 1.7402315704042874, - "golurk": 2.641276444662162, - "bisharp": 2.3946580007415044, - "bouffalant": 1.506649955532546, - "heatmor": 1.9848115709635326, - "durant": 2.6721624965981396, - "diggersby": 2.8681224139982877, - "talonflame": 2.8898702484589034, - "pangoro": 2.4001855330412547, - "doublade": 2.066816588257418, - "malamar": 2.8581242509809637, - "barbaracle": 1.569215203908823, - "heliolisk": 3.411281641576265, - "tyrantrum": 1.781340762325922, - "aurorus": 2.6810804719671864, - "hawlucha": 3.0855499582299033, - "dedenne": 2.6750496466287785, - "klefki": 3.145440841313733, - "trevenant": 2.9389993976353765, - "gourgeist-average": 4.644874824773092, - "charjabug": 3.4645773779174376, - "vikavolt": 2.3805224024774647, - "ribombee": 4.326217422742494, - "lycanroc-midday": 3.4495323087928096, - "lycanroc-midnight": 2.407011921216382, - "mudsdale": 1.594732517491181, - "araquanid": 2.598102572706159, - "lurantis": 2.7355326248749545, - "shiinotic": 4.414645633390924, - "salazzle": 2.950924921021768, - "bewear": 2.01555622210153, - "tsareena": 3.4484193884715078, - "comfey": 4.042682397016824, - "oranguru": 2.503548405646005, - "passimian": 2.375890739488745, - "palossand": 2.8467446149696354, - "pyukumuku": 28.23790992990743, - "togedemaru": 1.9675300392693047, - "mimikyu-disguised": 5.272148335070591, - "greedent": 2.105277180751679, - "orbeetle": 1.9553722777770384, - "thievul": 1.6354211793444577, - "eldegoss": 3.5967104273147013, - "dubwool": 2.909389679410099, - "drednaw": 1.284737407445606, - "boltund": 4.315158201563038, - "carkol": 2.4802334775110704, - "coalossal": 2.534879418874628, - "sandaconda": 3.0044302068120654, - "cramorant": 4.976908623532539, - "barraskewda": 4.017552533563202, - "toxtricity-amped": 2.4648195311334167, - "centiskorch": 1.9885740110137062, - "grapploct": 1.6454746311510822, - "polteageist": 2.718667729064009, - "hatterene": 2.709516089493646, - "grimmsnarl": 3.4393960104729966, - "obstagoon": 2.4958969584110386, - "perrserker": 2.87443137313213, - "alcremie": 1.505588991580241, - "falinks": 2.9141197123928606, - "pincurchin": 2.837030726162099, - "frosmoth": 2.845374934508631, - "indeedee-male": 3.079470198203351, - "morpeko": 2.5210503151432238, - "copperajah": 2.507376910009204, - "duraludon": 1.4272856011654063, - "drakloak": 4.067857714509732, - "ditto": 77.59575172813615 + "ivysaur": 3.1062254143071435, + "charmeleon": 3.464097016544438, + "wartortle": 2.3742510174498754, + "butterfree": 4.030792729660278, + "raichu": 5.024954315940437, + "raichu-alola": 3.1045814082269025, + "sandslash": 2.084549620128021, + "sandslash-alola": 2.407038602913207, + "nidoqueen": 3.1500807114374334, + "nidoking": 2.3855120816624704, + "clefairy": 6.959300938062658, + "clefable": 2.0122276884781893, + "jigglypuff": 16.74594644650177, + "wigglytuff": 1.6717344093789088, + "gloom": 5.119160710877255, + "vileplume": 2.995515762547721, + "dugtrio": 3.9125095347550514, + "dugtrio-alola": 4.545798288811798, + "persian": 3.5997003612105267, + "persian-alola": 3.5015498492200186, + "golduck": 2.861499195665739, + "poliwrath": 2.0002294951132735, + "kadabra": 3.3870814870201427, + "machoke": 3.5688661155653243, + "tentacruel": 2.099387685398103, + "slowbro": 1.7023961682625677, + "magneton": 3.0737536936360312, + "haunter": 5.23744283755847, + "kingler": 2.4043238117059023, + "exeggutor": 1.8654074524661644, + "marowak": 2.835542392160711, + "marowak-alola": 2.5539258222812586, + "hitmonlee": 2.670729142713606, + "hitmonchan": 2.0353805976053434, + "lickitung": 1.5829216924188516, + "weezing": 1.4568897822224958, + "weezing-galar": 2.452763562028741, + "rhydon": 2.5718362339345484, + "chansey": 17.983900578990337, + "tangela": 4.146683875279224, + "kangaskhan": 1.8264008449491156, + "seadra": 3.7851188129038373, + "seaking": 2.193820544251277, + "starmie": 1.361135212488628, + "mr-mime": 6.189878101318133, + "mr-mime-galar": 3.4252834504551446, + "scyther": 3.2268946229343283, + "jynx": 3.8407398390834615, + "electabuzz": 2.304180386089773, + "magmar": 1.5326262992571933, + "tauros": 2.0945204520984637, + "ditto": 77.59575172813615, + "vaporeon": 3.1788333443870798, + "jolteon": 1.8858165462191598, + "flareon": 3.120538295902451, + "porygon": 2.6637498748179427, + "dragonair": 1.7524361389082985, + "noctowl": 5.021776296130714, + "lanturn": 1.902359078145059, + "togetic": 4.56421601304658, + "xatu": 3.8621566463664125, + "bellossom": 2.174303389880825, + "azumarill": 1.9563660834104624, + "sudowoodo": 2.549535948187878, + "politoed": 2.3129900756046204, + "quagsire": 4.165653772936322, + "slowking": 2.258807569468462, + "dunsparce": 2.800150084968581, + "qwilfish": 3.0124913923075476, + "sneasel": 2.11496956158357, + "piloswine": 1.6892788910320409, + "octillery": 2.170181096853197, + "mantine": 2.5728283718374962, + "skarmory": 1.7346986301760206, + "hitmontop": 2.5843371217457527, + "miltank": 3.400533213653864, + "grovyle": 6.543670562979456, + "sceptile": 1.5836225546080924, + "combusken": 3.0416597374214573, + "blaziken": 1.821258290311845, + "marshtomp": 2.336863090140631, + "swampert": 1.2523050359887473, + "linoone": 4.6902940416622805, + "linoone-galar": 4.051844729557642, + "pelipper": 5.121734898432689, + "ninjask": 6.4292980815681675, + "exploud": 1.5751277459041257, + "lairon": 2.3595312403297015, + "manectric": 1.7558678448094103, + "roselia": 4.141563343027755, + "sharpedo": 4.22857509226539, + "wailmer": 5.034689854809786, + "torkoal": 1.7466517690066146, + "flygon": 3.057334770293428, + "altaria": 1.779206959581976, + "whiscash": 1.856901472394656, + "crawdaunt": 1.86031682330271, + "claydol": 3.107643187136023, + "cradily": 2.2428634671145415, + "armaldo": 2.2108676741644744, + "dusclops": 3.602502411064669, + "absol": 1.7953693495191645, + "glalie": 4.131110014061163, + "sealeo": 2.8624875517120882, + "relicanth": 1.9192913059995154, + "metang": 2.651489538089024, + "luxray": 3.633577015152269, + "vespiquen": 3.0830263113799745, + "cherrim": 4.999456422454139, + "gastrodon": 2.0871114929421073, + "drifblim": 3.73993127910345, + "lopunny": 3.440528146164299, + "skuntank": 1.2179742759566452, + "bronzong": 2.8662211586081465, + "munchlax": 2.140504448010828, + "drapion": 2.1560924886948065, + "abomasnow": 3.0771630326272605, + "froslass": 3.4898696453654923, + "rotom": 4.6590771194154, + "stoutland": 2.561827035954564, + "liepard": 6.6084191541099315, + "musharna": 1.5263801539609156, + "unfezant": 5.75555207139271, + "boldore": 3.0234188106553717, + "swoobat": 5.053126973884025, + "audino": 1.9998351558259102, + "gurdurr": 2.1174758338384674, + "palpitoad": 3.2390256291993698, + "seismitoad": 5.274651857625033, + "scolipede": 2.967602140695254, + "whimsicott": 3.2710674468698526, + "lilligant": 3.501530770983529, + "basculin-red-striped": 2.562843654104981, + "basculin-blue-striped": 3.249613875941054, + "krookodile": 2.762286478129901, + "maractus": 2.0683794618795512, + "crustle": 2.3350875267430347, + "sigilyph": 2.4133183166283425, + "cofagrigus": 3.6527230036584033, + "garbodor": 1.6283603850441557, + "cinccino": 3.892939103815058, + "vanillish": 1.9654614502541479, + "emolga": 2.647426222374599, + "escavalier": 1.8700398857783056, + "amoonguss": 2.323512774740963, + "jellicent": 1.446684130111724, + "galvantula": 1.6873466313947887, + "klang": 2.3995141803969173, + "klinklang": 2.976957211968231, + "beheeyem": 2.1317853178626986, + "lampent": 2.679767929716187, + "fraxure": 1.9501434005643676, + "beartic": 1.8925004425589709, + "cryogonal": 1.6494007685457577, + "accelgor": 2.7481195352506527, + "stunfisk": 1.498142415167093, + "stunfisk-galar": 2.6820125171110307, + "mienshao": 3.22098090178104, + "druddigon": 1.7314236291840204, + "golurk": 2.6304157141662605, + "bisharp": 2.3793919799252135, + "bouffalant": 1.4972856695321095, + "heatmor": 1.9730291641046316, + "durant": 2.6553685981494146, + "diggersby": 2.853084034002866, + "talonflame": 2.8753145269004112, + "pangoro": 2.3847883074483223, + "doublade": 2.0497417468978347, + "malamar": 2.841941187797299, + "barbaracle": 1.5594166524783728, + "heliolisk": 3.391357319413884, + "tyrantrum": 1.769920177286024, + "aurorus": 2.668005177603966, + "hawlucha": 3.060708669758493, + "dedenne": 2.661583454122643, + "klefki": 3.1291089530870613, + "trevenant": 2.915069722268539, + "gourgeist-average": 4.636092565292312, + "charjabug": 3.444515838341895, + "vikavolt": 2.3691542699214763, + "ribombee": 4.301604490327714, + "lycanroc-midday": 3.4337170480708212, + "lycanroc-midnight": 2.3930965233803265, + "mudsdale": 1.5823570197398231, + "araquanid": 2.5835522437840592, + "lurantis": 2.7215425415725916, + "shiinotic": 4.39050778774176, + "salazzle": 2.9345480972192037, + "bewear": 2.004160224522328, + "tsareena": 3.432142523785277, + "comfey": 4.021432922038094, + "oranguru": 2.4874987842470553, + "passimian": 2.359335691844638, + "palossand": 2.8417290317819783, + "pyukumuku": 28.07310030347503, + "togedemaru": 1.9545121599980553, + "mimikyu-disguised": 5.2666093075313505, + "greedent": 2.093018630469089, + "orbeetle": 1.9448698464380225, + "thievul": 1.6274975765057333, + "eldegoss": 3.574868047465332, + "dubwool": 2.888958453278344, + "drednaw": 1.2780039013105116, + "boltund": 4.291893927756165, + "carkol": 2.468889774530844, + "coalossal": 2.525244594548248, + "sandaconda": 2.9883558120220837, + "cramorant": 4.950333627780721, + "barraskewda": 3.9947390744687388, + "toxtricity-amped": 2.4508134586915036, + "centiskorch": 1.9782569959611935, + "grapploct": 1.630161498676204, + "polteageist": 2.7051977749338674, + "hatterene": 2.694911030722583, + "grimmsnarl": 3.413387065655607, + "obstagoon": 2.4810832678438324, + "perrserker": 2.8580217566539585, + "alcremie": 1.4983814714118564, + "falinks": 2.8907971093812477, + "pincurchin": 2.820824074061627, + "frosmoth": 2.830794149298626, + "indeedee-male": 3.066823396508181, + "morpeko": 2.506645135099963, + "copperajah": 2.4908831780300247, + "duraludon": 1.4188897847246953, + "drakloak": 4.057442985630277 }, "vaporeon": { - "ivysaur": 2.703476081593617, - "charmeleon": 5.645763797895725, - "wartortle": 2.877417656076797, - "butterfree": 4.466938076197359, - "raichu": 4.948208351359646, - "raichu-alola": 3.347844171874236, - "sandslash": 3.279004812830672, - "sandslash-alola": 2.261440965109148, - "nidoqueen": 3.9267996900156676, - "nidoking": 2.4846113524029523, - "clefairy": 9.394034481162947, - "clefable": 2.2300069362623756, - "jigglypuff": 28.185488209605495, - "wigglytuff": 2.1783923325060806, - "gloom": 5.25328827430278, - "vileplume": 2.5840532792053823, - "dugtrio": 4.626260145792722, - "dugtrio-alola": 4.677349758821671, - "persian": 4.361663705193406, - "persian-alola": 4.491600196345011, - "golduck": 3.2201967914644385, - "poliwrath": 1.8670363085285926, - "kadabra": 3.8277035768641636, - "machoke": 4.060308242159636, - "tentacruel": 2.32418343019341, - "slowbro": 1.7178499128242533, - "magneton": 3.4696640244669097, - "haunter": 4.546981997640185, - "kingler": 2.6429363725265382, - "exeggutor": 1.738147013538941, - "marowak": 4.453172146707428, - "marowak-alola": 3.1975693584701856, - "hitmonlee": 2.267921311228881, - "hitmonchan": 2.0945009749255874, - "lickitung": 2.2452161499580576, - "weezing": 1.8860678850231594, - "weezing-galar": 3.079845424799574, - "rhydon": 5.146387721717227, - "chansey": 20.824379727819217, - "tangela": 4.271636937887419, - "kangaskhan": 1.874740501961612, - "seadra": 4.556873599173009, - "seaking": 2.328569966474963, - "starmie": 1.3730293869470551, - "mr-mime": 6.735668964186697, - "mr-mime-galar": 3.9963896399884216, - "scyther": 2.741628395027945, - "jynx": 3.9891948583858574, - "electabuzz": 2.374925370416233, - "magmar": 2.327728910611452, - "tauros": 2.1419013197194205, - "ditto": 5.551014341667874, - "jolteon": 1.8845903436063671, - "flareon": 3.2093800328672524, - "porygon": 2.91505124829431, - "dragonair": 1.6899256317517797, - "noctowl": 5.565527980272858, - "lanturn": 1.859638973388965, - "togetic": 5.5840239610252675, - "xatu": 4.10487884682768, - "bellossom": 2.1214256517304313, - "azumarill": 2.187880278934905, - "sudowoodo": 3.733806521399962, - "politoed": 2.537443615036232, - "quagsire": 5.7346679030711964, - "slowking": 2.460280903166602, - "dunsparce": 3.5092278606425373, - "qwilfish": 3.5750996407936313, - "sneasel": 2.2743132369698245, - "piloswine": 2.3452034786812774, - "octillery": 2.367392988914189, - "mantine": 2.3594698773195217, - "skarmory": 2.3715721224502992, - "hitmontop": 2.742789369821837, - "miltank": 3.847089656216297, - "grovyle": 6.637328743519926, - "sceptile": 1.2064557929761843, - "combusken": 4.757371514518497, - "blaziken": 2.3066343223168055, - "marshtomp": 2.9554922673013113, - "swampert": 1.447757439260967, - "linoone": 5.272465341832549, - "linoone-galar": 4.911194557407549, - "pelipper": 5.6688478505330595, - "ninjask": 7.556920936862069, - "exploud": 1.7639782870271379, - "lairon": 3.9704174239202783, - "manectric": 1.8695564307143409, - "roselia": 3.34520522189033, - "sharpedo": 4.821301996675676, - "wailmer": 6.642876823808514, - "torkoal": 3.2842747917837096, - "flygon": 2.5193822058079682, - "altaria": 1.5378108331056652, - "whiscash": 2.617563892413486, - "crawdaunt": 2.165539997742547, - "claydol": 4.5146218609338575, - "cradily": 2.288045752793823, - "armaldo": 2.586224885399086, - "dusclops": 3.5313678837555953, - "absol": 2.1230747427949392, - "glalie": 4.426933631619433, - "sealeo": 3.428057296684773, - "relicanth": 2.268542582791139, - "metang": 3.0415713103273525, - "luxray": 3.764084268756551, - "vespiquen": 2.761100126011663, - "cherrim": 5.0296280282705546, - "gastrodon": 2.349627432856269, - "drifblim": 4.2367975929258535, - "lopunny": 3.656734014304912, - "skuntank": 1.5773522797874109, - "bronzong": 3.320710337943536, - "munchlax": 2.0528784736035215, - "drapion": 2.6715356281893223, - "abomasnow": 2.7821806376322895, - "froslass": 3.201713574504101, - "rotom": 3.8207124654828895, - "stoutland": 2.4683748869351017, - "liepard": 7.168527931280492, - "musharna": 1.5625595714559108, - "unfezant": 6.745013320431967, - "boldore": 5.1013231842503775, - "swoobat": 5.870988444820094, - "audino": 2.5019529707155463, - "gurdurr": 2.4285694054237448, - "palpitoad": 4.295594526322797, - "seismitoad": 6.873412724296044, - "scolipede": 3.3782054830102712, - "whimsicott": 2.7938121630545343, - "lilligant": 2.6670113266114983, - "basculin-red-striped": 2.997392851018073, - "basculin-blue-striped": 3.8869760871612504, - "krookodile": 3.9162693946023643, - "maractus": 1.877506490422022, - "crustle": 3.02617146781039, - "sigilyph": 2.534208610298358, - "cofagrigus": 2.9466722824856237, - "garbodor": 1.9031552916728873, - "cinccino": 4.862390048787477, - "vanillish": 2.410367210406969, - "emolga": 2.9717869969354336, - "escavalier": 2.023931293538867, - "amoonguss": 2.231233379684879, - "jellicent": 1.16617669915126, - "galvantula": 1.5708679147528652, - "klang": 2.9657403680671495, - "klinklang": 3.7558406967025606, - "beheeyem": 1.8857261904326572, - "lampent": 4.0525080819783765, - "fraxure": 1.4103903066158598, - "beartic": 1.9856622647563398, - "cryogonal": 1.7534593368413627, - "accelgor": 3.170652743034292, - "stunfisk": 1.8286900205036503, - "stunfisk-galar": 3.385024401443423, - "mienshao": 3.5065288452324976, - "druddigon": 1.6491981196772278, - "golurk": 2.5583949332279756, - "bisharp": 2.5899690376842144, - "bouffalant": 1.3394668118356674, - "heatmor": 2.758051034160264, - "durant": 3.372942343724893, - "diggersby": 4.262039891861671, - "talonflame": 4.297187709737018, - "pangoro": 1.8301965395531132, - "doublade": 2.9580921053833635, - "malamar": 2.94737639267564, - "barbaracle": 1.6903755894271502, - "heliolisk": 3.0375886520332998, - "tyrantrum": 1.7522488327306656, - "aurorus": 3.021035394904282, - "hawlucha": 3.649610845472271, - "dedenne": 3.0314261848055564, - "klefki": 3.3544133516691987, - "trevenant": 2.3139584573225283, - "gourgeist-average": 4.761230956131433, - "charjabug": 3.921592518800711, - "vikavolt": 1.926962993951605, - "ribombee": 4.905092446011071, - "lycanroc-midday": 4.411562302542338, - "lycanroc-midnight": 3.0868641115785276, - "mudsdale": 2.1582622141611942, - "araquanid": 2.20282319821097, - "lurantis": 2.1186342807821967, - "shiinotic": 4.05872897662583, - "salazzle": 4.4540799066468875, - "bewear": 1.8611182848621484, - "tsareena": 2.514832975057395, - "comfey": 4.427337786173782, - "oranguru": 2.7231062359759157, - "passimian": 2.493949547947766, - "palossand": 3.1197189984677105, - "pyukumuku": 39.453111410965946, - "togedemaru": 2.2088540573206075, - "mimikyu-disguised": 3.9544772629126204, - "greedent": 2.278608267611228, - "orbeetle": 1.936288126387825, - "thievul": 1.8985707583932554, - "eldegoss": 3.3000605581842923, - "dubwool": 2.9149609446230085, - "drednaw": 1.4288430785365933, - "boltund": 4.67851088774905, - "carkol": 4.940196468573406, - "coalossal": 4.341079996239108, - "sandaconda": 4.710797686353163, - "cramorant": 5.259240138919587, - "barraskewda": 4.533779093153234, - "toxtricity-amped": 2.793211482900734, - "centiskorch": 2.7225928192877236, - "grapploct": 1.938656799245139, - "polteageist": 2.496461127421428, - "hatterene": 2.613537380421858, - "grimmsnarl": 3.996287079047091, - "obstagoon": 2.6109319136885754, - "perrserker": 3.632848320471897, - "alcremie": 1.4767010417426347, - "falinks": 3.4595276411780698, - "pincurchin": 3.1920830076068487, - "frosmoth": 2.7476700410957635, - "indeedee-male": 3.2552082484997618, - "morpeko": 2.6700559796622416, - "copperajah": 2.6148654876596216, - "duraludon": 1.4257255785826306, - "drakloak": 3.8515027221443576, - "vaporeon": 3.2038189285270278 + "ivysaur": 2.6982517495045895, + "charmeleon": 5.660373019143318, + "wartortle": 2.884719275451368, + "butterfree": 4.463125399127329, + "raichu": 4.944221169870508, + "raichu-alola": 3.3437652990273374, + "sandslash": 3.283099705421, + "sandslash-alola": 2.261929527654436, + "nidoqueen": 3.933695672025877, + "nidoking": 2.486840622092374, + "clefairy": 9.397262223900855, + "clefable": 2.2312542597448384, + "jigglypuff": 28.19693289607622, + "wigglytuff": 2.179262209073445, + "gloom": 5.250787746634961, + "vileplume": 2.5800577528102684, + "dugtrio": 4.629367810250521, + "dugtrio-alola": 4.682573882018978, + "persian": 4.358397113843143, + "persian-alola": 4.490545401950541, + "golduck": 3.227244390283268, + "poliwrath": 1.86612732613793, + "kadabra": 3.8241808316537185, + "machoke": 4.059971507156863, + "tentacruel": 2.328225982264189, + "slowbro": 1.7176771075358404, + "magneton": 3.4699413599492095, + "haunter": 4.543865082176451, + "kingler": 2.647512513031839, + "exeggutor": 1.7350602934734154, + "marowak": 4.459655182337702, + "marowak-alola": 3.2036839576604716, + "hitmonlee": 2.2667000547051463, + "hitmonchan": 2.0932677091881544, + "lickitung": 2.2473242797597632, + "weezing": 1.8886514796718794, + "weezing-galar": 3.084856717949108, + "rhydon": 5.158550782249972, + "chansey": 20.776312709719775, + "tangela": 4.259159869631958, + "kangaskhan": 1.8733367726307235, + "seadra": 4.565604318967903, + "seaking": 2.329716910088187, + "starmie": 1.3724702160206945, + "mr-mime": 6.734856232682329, + "mr-mime-galar": 3.9973050927619296, + "scyther": 2.739721021256475, + "jynx": 3.9819878724049285, + "electabuzz": 2.3710211907813434, + "magmar": 2.3327665175669985, + "tauros": 2.1414376316056227, + "ditto": 5.518268829178568, + "vaporeon": 3.2038189285270278, + "jolteon": 1.882734561440499, + "flareon": 3.214166644337569, + "porygon": 2.9147483703397743, + "dragonair": 1.687732840749064, + "noctowl": 5.5615042920876565, + "lanturn": 1.862145465739394, + "togetic": 5.588661410933774, + "xatu": 4.106808578201234, + "bellossom": 2.117943525157493, + "azumarill": 2.1930183901621403, + "sudowoodo": 3.7374340799247605, + "politoed": 2.5409724359248376, + "quagsire": 5.753021653636079, + "slowking": 2.4632251225228026, + "dunsparce": 3.5108611249954347, + "qwilfish": 3.5815292707399284, + "sneasel": 2.2729598544054106, + "piloswine": 2.349455513526518, + "octillery": 2.3703985563379986, + "mantine": 2.3609125227236847, + "skarmory": 2.3734346801390585, + "hitmontop": 2.7431045050136946, + "miltank": 3.8454212108945436, + "grovyle": 6.622315669758325, + "sceptile": 1.203636353756008, + "combusken": 4.7671486785020285, + "blaziken": 2.3113922120493764, + "marshtomp": 2.9640258377769744, + "swampert": 1.4511569965470708, + "linoone": 5.268123635156393, + "linoone-galar": 4.909098747503287, + "pelipper": 5.664027976406786, + "ninjask": 7.5514494094893525, + "exploud": 1.7648677540807283, + "lairon": 3.9779349640462627, + "manectric": 1.8699955599823728, + "roselia": 3.338733303131389, + "sharpedo": 4.821688632580307, + "wailmer": 6.653275270430821, + "torkoal": 3.294563807421915, + "flygon": 2.5201122306642967, + "altaria": 1.5378582981846263, + "whiscash": 2.6220436865602994, + "crawdaunt": 2.166326799870587, + "claydol": 4.520610205159209, + "cradily": 2.2860704190809633, + "armaldo": 2.588074377690961, + "dusclops": 3.5297017874752306, + "absol": 2.1237080936968535, + "glalie": 4.428213798957506, + "sealeo": 3.4368986620497273, + "relicanth": 2.2713189981046793, + "metang": 3.039378917130773, + "luxray": 3.759045755078021, + "vespiquen": 2.7594808954467385, + "cherrim": 5.019569746431966, + "gastrodon": 2.352408986015088, + "drifblim": 4.231428532430187, + "lopunny": 3.6537843165806407, + "skuntank": 1.5781844931874112, + "bronzong": 3.320839286733812, + "munchlax": 2.0492991317932776, + "drapion": 2.6733603006027282, + "abomasnow": 2.7756595673556443, + "froslass": 3.2036765982277844, + "rotom": 3.8181403414835877, + "stoutland": 2.4661026613699906, + "liepard": 7.1653333675852835, + "musharna": 1.5617030264374314, + "unfezant": 6.745970444650105, + "boldore": 5.10758469247637, + "swoobat": 5.8736309951337695, + "audino": 2.503964040162808, + "gurdurr": 2.429027649315592, + "palpitoad": 4.303085718155632, + "seismitoad": 6.874581043172028, + "scolipede": 3.3779069886174407, + "whimsicott": 2.790156439380593, + "lilligant": 2.662391349399829, + "basculin-red-striped": 3.0046519521608874, + "basculin-blue-striped": 3.8967306107537816, + "krookodile": 3.9209878508154117, + "maractus": 1.8713056738524032, + "crustle": 3.0290238975167623, + "sigilyph": 2.536241894999858, + "cofagrigus": 2.947912784699138, + "garbodor": 1.9027973615426976, + "cinccino": 4.862542736216218, + "vanillish": 2.4126942127932214, + "emolga": 2.969091645900405, + "escavalier": 2.0263180311875906, + "amoonguss": 2.2280258557893338, + "jellicent": 1.1640489780085237, + "galvantula": 1.5692890602829075, + "klang": 2.966180735663438, + "klinklang": 3.75774834594558, + "beheeyem": 1.8860630659017563, + "lampent": 4.063101025771643, + "fraxure": 1.4085985628316564, + "beartic": 1.9884105145435287, + "cryogonal": 1.7531664319109428, + "accelgor": 3.1706804205117987, + "stunfisk": 1.8313351649113336, + "stunfisk-galar": 3.3905808978665064, + "mienshao": 3.5063236695522706, + "druddigon": 1.6482598699807498, + "golurk": 2.560145915417383, + "bisharp": 2.5886284387367122, + "bouffalant": 1.3394297911034068, + "heatmor": 2.764575488190195, + "durant": 3.371572256580488, + "diggersby": 4.264941022783378, + "talonflame": 4.3079875569987705, + "pangoro": 1.830211273994788, + "doublade": 2.960794197488662, + "malamar": 2.9458894145578105, + "barbaracle": 1.6919693457338019, + "heliolisk": 3.0269892606332136, + "tyrantrum": 1.7516993184889769, + "aurorus": 3.021420214535703, + "hawlucha": 3.648674686074691, + "dedenne": 3.02987961762517, + "klefki": 3.357329620188829, + "trevenant": 2.3055829959775798, + "gourgeist-average": 4.75753850026563, + "charjabug": 3.9136708096851844, + "vikavolt": 1.9266320498759186, + "ribombee": 4.90700092457161, + "lycanroc-midday": 4.414109760920075, + "lycanroc-midnight": 3.0881144680546164, + "mudsdale": 2.1602898355140523, + "araquanid": 2.2013308934167934, + "lurantis": 2.1150174852160477, + "shiinotic": 4.056566952383471, + "salazzle": 4.463830811078164, + "bewear": 1.8596650368433092, + "tsareena": 2.507185559593485, + "comfey": 4.425434829282703, + "oranguru": 2.7222445223761937, + "passimian": 2.4943394843595934, + "palossand": 3.125128030722843, + "pyukumuku": 39.41694897651549, + "togedemaru": 2.206716318734505, + "mimikyu-disguised": 3.9498943286678427, + "greedent": 2.278161851000215, + "orbeetle": 1.9365147365299418, + "thievul": 1.8987974224666693, + "eldegoss": 3.29275440408808, + "dubwool": 2.9106414569851657, + "drednaw": 1.4302503637882507, + "boltund": 4.674037531041326, + "carkol": 4.955860031442155, + "coalossal": 4.359081946746116, + "sandaconda": 4.71764183719225, + "cramorant": 5.264394765908968, + "barraskewda": 4.5363082375864145, + "toxtricity-amped": 2.7902216196453904, + "centiskorch": 2.7266716686545855, + "grapploct": 1.9408432296437574, + "polteageist": 2.4926209343628396, + "hatterene": 2.613887403543279, + "grimmsnarl": 3.9977664232508285, + "obstagoon": 2.6083504134618813, + "perrserker": 3.633853067502379, + "alcremie": 1.4769275080502586, + "falinks": 3.4609331237752707, + "pincurchin": 3.1950572005801874, + "frosmoth": 2.7463835162484758, + "indeedee-male": 3.2559966946265932, + "morpeko": 2.6662592553783484, + "copperajah": 2.6171581722266826, + "duraludon": 1.4248234620136198, + "drakloak": 3.845090363817955 }, "jolteon": { - "ivysaur": 2.95838075268634, - "charmeleon": 4.267348468093616, - "wartortle": 4.1922571008410765, - "butterfree": 6.079311907841091, - "raichu": 5.4691408483637165, - "raichu-alola": 4.300841134850007, - "sandslash": 1.9444764209479637, - "sandslash-alola": 2.2470923451909535, - "nidoqueen": 2.5041545336978266, - "nidoking": 1.6368868253841584, - "clefairy": 9.812958938981781, - "clefable": 2.238283086689383, - "jigglypuff": 29.03559813155378, - "wigglytuff": 2.2144226918003147, - "gloom": 5.3634983337167, - "vileplume": 2.810432872637203, - "dugtrio": 2.9282916027511625, - "dugtrio-alola": 2.8754149645468607, - "persian": 4.382939050202607, - "persian-alola": 4.512097565098069, - "golduck": 4.474482471142588, - "poliwrath": 2.7504974063798997, - "kadabra": 4.088172124472854, - "machoke": 4.133839378487609, - "tentacruel": 3.078037480681821, - "slowbro": 2.8072399827264567, - "magneton": 3.7284387750562344, - "haunter": 5.5038583852210365, - "kingler": 4.046583591258046, - "exeggutor": 2.1739758733891987, - "marowak": 2.6859639202226226, - "marowak-alola": 2.5977893368474625, - "hitmonlee": 2.2141678650206758, - "hitmonchan": 2.2880831149700414, - "lickitung": 2.1975641977761846, - "weezing": 1.9121899722361149, - "weezing-galar": 3.1770283456468533, - "rhydon": 2.1187318455103714, - "chansey": 19.98695226129947, - "tangela": 4.886821544479167, - "kangaskhan": 1.818178499279583, - "seadra": 7.50790412908308, - "seaking": 3.221694369173789, - "starmie": 2.1449255083545538, - "mr-mime": 7.412036551945215, - "mr-mime-galar": 4.132818904187852, - "scyther": 3.859527121736218, - "jynx": 4.4536352571642395, - "electabuzz": 3.1091558656596687, - "magmar": 1.7586363350005298, - "tauros": 2.0708368559028774, - "ditto": 2.208640577838101, - "vaporeon": 4.441356144534057, - "flareon": 2.386364647734964, - "porygon": 3.207210769497097, - "dragonair": 1.7345779423890488, - "noctowl": 7.700322224012037, - "lanturn": 1.9590564553205803, - "togetic": 7.524000939660274, - "xatu": 5.968847946832472, - "bellossom": 2.2318447071788143, - "azumarill": 3.582703904420483, - "sudowoodo": 2.6988510185445254, - "politoed": 3.3767840427744216, - "quagsire": 4.591306632047479, - "slowking": 3.2705766161801333, - "dunsparce": 3.6283348857772326, - "qwilfish": 5.49475157712634, - "sneasel": 2.2492877355494034, - "piloswine": 1.5066481540988867, - "octillery": 3.6214771046899505, - "mantine": 4.8434117733766175, - "skarmory": 3.851917696197584, - "hitmontop": 2.551042979243574, - "miltank": 3.923825791218907, - "grovyle": 7.1562208104653475, - "sceptile": 1.2849694037938701, - "combusken": 3.641989614006724, - "blaziken": 1.7174353836679779, - "marshtomp": 2.151959493385317, - "swampert": 1.160141572554673, - "linoone": 5.29477873587949, - "linoone-galar": 4.944578907940777, - "pelipper": 15.789309644804902, - "ninjask": 10.014621597107817, - "exploud": 1.7528449660191967, - "lairon": 2.9413934936073756, - "manectric": 1.777507233263578, - "roselia": 3.5714536660782747, - "sharpedo": 7.08039364553949, - "wailmer": 10.304472621354707, - "torkoal": 2.297733322497912, - "flygon": 2.1745835990370983, - "altaria": 1.7323904053470582, - "whiscash": 1.9669600018929128, - "crawdaunt": 3.2277759720970085, - "claydol": 3.9115235539629793, - "cradily": 2.14869510304528, - "armaldo": 1.8710109764489675, - "dusclops": 4.0296914369450985, - "absol": 2.1141849509397646, - "glalie": 4.30395535442524, - "sealeo": 4.657487849435764, - "relicanth": 2.9617218504597207, - "metang": 4.002268228186141, - "luxray": 4.077434284351849, - "vespiquen": 3.881110039714766, - "cherrim": 5.485573816136386, - "gastrodon": 1.8753751793750943, - "drifblim": 7.245755371956352, - "lopunny": 3.753396351780407, - "skuntank": 1.6022970296369081, - "bronzong": 3.8214329047563833, - "munchlax": 2.225949703771919, - "drapion": 2.7707737211286503, - "abomasnow": 2.8492146873222612, - "froslass": 3.479367226225418, - "rotom": 5.417809138591709, - "stoutland": 2.4709034742868905, - "liepard": 7.248159558721422, - "musharna": 1.7971661834320698, - "unfezant": 10.844387088879294, - "boldore": 3.6338216083477173, - "swoobat": 8.54770647046239, - "audino": 2.484702193476228, - "gurdurr": 2.365857786946167, - "palpitoad": 3.479309715263424, - "seismitoad": 6.076156964385348, - "scolipede": 3.4426369820189358, - "whimsicott": 3.0282084121333446, - "lilligant": 2.9144353804449463, - "basculin-red-striped": 4.167722940250553, - "basculin-blue-striped": 5.553125479472856, - "krookodile": 2.3846725433878206, - "maractus": 2.0856683300466314, - "crustle": 2.2822778717280925, - "sigilyph": 3.6682057983337844, - "cofagrigus": 3.4606355235526394, - "garbodor": 1.9712987724727267, - "cinccino": 4.761486144941612, - "vanillish": 2.3189351374375837, - "emolga": 4.363289628082041, - "escavalier": 1.7654432895422958, - "amoonguss": 2.3802250782035355, - "jellicent": 2.2495963727813413, - "galvantula": 1.879004803810683, - "klang": 3.5995425503072562, - "klinklang": 3.90729184504287, - "beheeyem": 2.102447069748678, - "lampent": 3.1937475440767633, - "fraxure": 1.4230209860952607, - "beartic": 1.8792772976334051, - "cryogonal": 1.6678041484845758, - "accelgor": 3.1993758188783836, - "stunfisk": 1.2430355949968717, - "stunfisk-galar": 2.0682582932507936, - "mienshao": 3.568886618411628, - "druddigon": 1.6459281304536306, - "golurk": 2.1096893164632236, - "bisharp": 2.639804724008192, - "bouffalant": 1.3657671013766104, - "heatmor": 2.0765043317482363, - "durant": 4.002870646218103, - "diggersby": 2.4654347104370986, - "talonflame": 4.689888997336666, - "pangoro": 1.8633840984738153, - "doublade": 3.728263973276294, - "malamar": 3.273783458308781, - "barbaracle": 2.163920694704182, - "heliolisk": 3.3934857629141177, - "tyrantrum": 1.5144977648219236, - "aurorus": 2.6496709986623515, - "hawlucha": 5.147379054726217, - "dedenne": 2.9895819583977774, - "klefki": 3.5166920632675533, - "trevenant": 3.4201627699347235, - "gourgeist-average": 6.742708809221588, - "charjabug": 4.125688821873208, - "vikavolt": 1.8438086644446567, - "ribombee": 5.041402434604651, - "lycanroc-midday": 3.4603036811804424, - "lycanroc-midnight": 2.41193929898371, - "mudsdale": 1.365678560882667, - "araquanid": 3.108424160419805, - "lurantis": 2.243410910735511, - "shiinotic": 4.1077792972148846, - "salazzle": 3.453915639435624, - "bewear": 1.8720397240957538, - "tsareena": 2.863807509850675, - "comfey": 4.8012651253019625, - "oranguru": 2.7484451687236993, - "passimian": 2.624906035434921, - "palossand": 2.5141478812617994, - "pyukumuku": 63.15312597887398, - "togedemaru": 2.37492612169984, - "mimikyu-disguised": 4.441913260704462, - "greedent": 2.3175533772746237, - "orbeetle": 2.150095835246959, - "thievul": 1.8694275824308937, - "eldegoss": 3.608644397858404, - "dubwool": 3.0483592193089457, - "drednaw": 1.8512229787664451, - "boltund": 4.905566221113917, - "carkol": 2.5785137171241512, - "coalossal": 2.214961535237057, - "sandaconda": 2.8758678989022584, - "cramorant": 10.210599639531853, - "barraskewda": 6.833725517436093, - "toxtricity-amped": 2.8338799399106915, - "centiskorch": 2.049143824960632, - "grapploct": 1.8570491623456762, - "polteageist": 2.9013615393774916, - "hatterene": 2.9373193699012656, - "grimmsnarl": 4.100727530441953, - "obstagoon": 2.8355759619179395, - "perrserker": 4.0933155179569605, - "alcremie": 1.4984996297807416, - "falinks": 3.561559271634815, - "pincurchin": 3.181911316536943, - "frosmoth": 2.7934981197841458, - "indeedee-male": 3.245899729417973, - "morpeko": 2.9576782807750015, - "copperajah": 2.736049356793791, - "duraludon": 1.7183799108661826, - "drakloak": 5.405295115933644, - "jolteon": 1.9131811983961455 + "ivysaur": 2.958072836172196, + "charmeleon": 4.272063973975502, + "wartortle": 4.201705690739959, + "butterfree": 6.08573576356134, + "raichu": 5.477564754948436, + "raichu-alola": 4.311035844243465, + "sandslash": 1.9392650091923014, + "sandslash-alola": 2.2469987843853563, + "nidoqueen": 2.4996557551419274, + "nidoking": 1.633741740133405, + "clefairy": 9.82396247194154, + "clefable": 2.2407932843076512, + "jigglypuff": 29.034484240553866, + "wigglytuff": 2.2143416546691927, + "gloom": 5.363209168198596, + "vileplume": 2.810849850556738, + "dugtrio": 2.9160565366451046, + "dugtrio-alola": 2.8663252587569175, + "persian": 4.376065130997812, + "persian-alola": 4.510091850643306, + "golduck": 4.479232045227512, + "poliwrath": 2.7525420719951046, + "kadabra": 4.087006223366293, + "machoke": 4.1345281235673035, + "tentacruel": 3.0811188369846705, + "slowbro": 2.8144901440269336, + "magneton": 3.7435408835655766, + "haunter": 5.512872903485839, + "kingler": 4.049828888026536, + "exeggutor": 2.1722506051064157, + "marowak": 2.678569798330361, + "marowak-alola": 2.6008959968107686, + "hitmonlee": 2.2118714959945427, + "hitmonchan": 2.290597794004648, + "lickitung": 2.2001849203748565, + "weezing": 1.9155616541391391, + "weezing-galar": 3.183450650078094, + "rhydon": 2.111955437052195, + "chansey": 19.920008706827087, + "tangela": 4.88516092584398, + "kangaskhan": 1.814095305280162, + "seadra": 7.526980236689692, + "seaking": 3.221461749725449, + "starmie": 2.149770968200741, + "mr-mime": 7.418024071124101, + "mr-mime-galar": 4.135600223302763, + "scyther": 3.8637767391954023, + "jynx": 4.4529685270574655, + "electabuzz": 3.122755503183564, + "magmar": 1.7596606581128833, + "tauros": 2.0668861513314116, + "ditto": 2.2009190211408374, + "vaporeon": 4.448277172277588, + "jolteon": 1.9131811983961455, + "flareon": 2.386565435784517, + "porygon": 3.209890064675055, + "dragonair": 1.7349200238538223, + "noctowl": 7.7071193012382615, + "lanturn": 1.958051025560216, + "togetic": 7.535162073117208, + "xatu": 5.9887046564473945, + "bellossom": 2.2318689014383786, + "azumarill": 3.5900951036721303, + "sudowoodo": 2.696161107144391, + "politoed": 3.377434640443372, + "quagsire": 4.58987403480077, + "slowking": 3.2743168485364365, + "dunsparce": 3.62861588714348, + "qwilfish": 5.502340157298999, + "sneasel": 2.2455914461878335, + "piloswine": 1.5045595703976533, + "octillery": 3.6291100327540526, + "mantine": 4.858005708566903, + "skarmory": 3.8631288197296314, + "hitmontop": 2.547595508748982, + "miltank": 3.9193284550982055, + "grovyle": 7.151036872449705, + "sceptile": 1.2840970755070016, + "combusken": 3.6455656810965955, + "blaziken": 1.7181855355140057, + "marshtomp": 2.146538350001912, + "swampert": 1.158324277784177, + "linoone": 5.285907654455018, + "linoone-galar": 4.939020442865995, + "pelipper": 15.83819417954912, + "ninjask": 10.015024684525802, + "exploud": 1.752321538262501, + "lairon": 2.9453692110667893, + "manectric": 1.7773582693314618, + "roselia": 3.569392932790276, + "sharpedo": 7.081219373778822, + "wailmer": 10.33111927859061, + "torkoal": 2.3019340383492497, + "flygon": 2.170925191134219, + "altaria": 1.733712750268555, + "whiscash": 1.9650815865603275, + "crawdaunt": 3.2309352753279192, + "claydol": 3.9112682360722957, + "cradily": 2.1476188869951303, + "armaldo": 1.868483369109979, + "dusclops": 4.032299888679163, + "absol": 2.1133895071292517, + "glalie": 4.302599714261708, + "sealeo": 4.664673772228542, + "relicanth": 2.9640289075610147, + "metang": 4.015482313098551, + "luxray": 4.087233733003588, + "vespiquen": 3.885752616728773, + "cherrim": 5.484189042606446, + "gastrodon": 1.8710226246984756, + "drifblim": 7.280972024698604, + "lopunny": 3.7488888247709538, + "skuntank": 1.6026507013515559, + "bronzong": 3.8264462400402555, + "munchlax": 2.22404256611141, + "drapion": 2.772585459670741, + "abomasnow": 2.844167820053269, + "froslass": 3.482435260532, + "rotom": 5.438958175582043, + "stoutland": 2.4664010227870596, + "liepard": 7.242696712075837, + "musharna": 1.7991534745496156, + "unfezant": 10.874603585499049, + "boldore": 3.6314580166311656, + "swoobat": 8.57604755448379, + "audino": 2.4844830747189546, + "gurdurr": 2.364841889039747, + "palpitoad": 3.4742182608840153, + "seismitoad": 6.068815762857136, + "scolipede": 3.4433652371531838, + "whimsicott": 3.029107575728214, + "lilligant": 2.9145791484591035, + "basculin-red-striped": 4.171150456043159, + "basculin-blue-striped": 5.5610361856786605, + "krookodile": 2.37752752460511, + "maractus": 2.0859085433117714, + "crustle": 2.282220536010688, + "sigilyph": 3.6812580959827828, + "cofagrigus": 3.467178334009148, + "garbodor": 1.9712459909842388, + "cinccino": 4.7550181537792335, + "vanillish": 2.319837874460652, + "emolga": 4.388824868321528, + "escavalier": 1.7625941158508622, + "amoonguss": 2.379940209166982, + "jellicent": 2.2540622250665083, + "galvantula": 1.8875239708238865, + "klang": 3.6139910331978915, + "klinklang": 3.911573487486447, + "beheeyem": 2.10509433656265, + "lampent": 3.1996611939207162, + "fraxure": 1.421522172623192, + "beartic": 1.8799992099313156, + "cryogonal": 1.66685553640106, + "accelgor": 3.200211482469412, + "stunfisk": 1.2428416114767282, + "stunfisk-galar": 2.0636305703624958, + "mienshao": 3.5695755383578747, + "druddigon": 1.6448472353386032, + "golurk": 2.1063569554443413, + "bisharp": 2.637731237880687, + "bouffalant": 1.3647669216294784, + "heatmor": 2.0789372224742784, + "durant": 4.014101274751466, + "diggersby": 2.452822688616563, + "talonflame": 4.704529951336337, + "pangoro": 1.8628719166831194, + "doublade": 3.740558932285241, + "malamar": 3.278679458505989, + "barbaracle": 2.1640766635679674, + "heliolisk": 3.394326470613487, + "tyrantrum": 1.5129753531135302, + "aurorus": 2.650874188531083, + "hawlucha": 5.1519365515218425, + "dedenne": 2.997912308015139, + "klefki": 3.522253931279219, + "trevenant": 3.41813812646315, + "gourgeist-average": 6.745903993961744, + "charjabug": 4.135838568113201, + "vikavolt": 1.8461192725614728, + "ribombee": 5.045634717008933, + "lycanroc-midday": 3.4585976066795237, + "lycanroc-midnight": 2.4101866084999872, + "mudsdale": 1.362133918202748, + "araquanid": 3.109602085612947, + "lurantis": 2.2421708930123607, + "shiinotic": 4.10655769989361, + "salazzle": 3.456133689945082, + "bewear": 1.8688868085287582, + "tsareena": 2.8623934943375486, + "comfey": 4.806597528072051, + "oranguru": 2.745741374775971, + "passimian": 2.6275854938167678, + "palossand": 2.511905110963415, + "pyukumuku": 63.22895752612931, + "togedemaru": 2.3786219200640484, + "mimikyu-disguised": 4.44084309460947, + "greedent": 2.315415228074197, + "orbeetle": 2.152618986185436, + "thievul": 1.8687265490129419, + "eldegoss": 3.607121544490437, + "dubwool": 3.0436778173117114, + "drednaw": 1.8526571314539049, + "boltund": 4.916052206547585, + "carkol": 2.579495451830163, + "coalossal": 2.2164741883532555, + "sandaconda": 2.8697553358760186, + "cramorant": 10.221966467885487, + "barraskewda": 6.838724755335512, + "toxtricity-amped": 2.842393769424756, + "centiskorch": 2.048306747127194, + "grapploct": 1.8584072901729434, + "polteageist": 2.902184754608145, + "hatterene": 2.9407986693206656, + "grimmsnarl": 4.101869167045546, + "obstagoon": 2.8345930471356935, + "perrserker": 4.103350976901906, + "alcremie": 1.49966095687638, + "falinks": 3.5644691274043705, + "pincurchin": 3.1934516962677675, + "frosmoth": 2.7942815087701893, + "indeedee-male": 3.243876003791401, + "morpeko": 2.9668321096611576, + "copperajah": 2.7404127135712155, + "duraludon": 1.7235482833687326, + "drakloak": 5.404199054691899 }, "flareon": { - "ivysaur": 4.307931494855174, - "charmeleon": 4.658618819780628, - "wartortle": 2.5778867143679243, - "butterfree": 5.868592822396004, - "raichu": 5.442783856929588, - "raichu-alola": 3.8530506045973483, - "sandslash": 2.026673806528704, - "sandslash-alola": 3.7468958771659673, - "nidoqueen": 2.7133376038050754, - "nidoking": 1.769450933624138, - "clefairy": 11.171951131409738, - "clefable": 2.321778403128765, - "jigglypuff": 29.824819881626578, - "wigglytuff": 2.255645590759663, - "gloom": 7.834403746367194, - "vileplume": 4.256323529295223, - "dugtrio": 2.9416963385468855, - "dugtrio-alola": 4.012093816492682, - "persian": 4.241613877563407, - "persian-alola": 4.280229200805181, - "golduck": 2.625952708693764, - "poliwrath": 1.5978937914077693, - "kadabra": 4.517919898085961, - "machoke": 3.5430891050701856, - "tentacruel": 2.207089209018648, - "slowbro": 2.2765499895708277, - "magneton": 4.825166701905688, - "haunter": 5.440565722110308, - "kingler": 2.047691506087845, - "exeggutor": 2.4259647183229256, - "marowak": 2.8470251590358835, - "marowak-alola": 2.8517153978795795, - "hitmonlee": 2.5578398573716443, - "hitmonchan": 2.3196633454302042, - "lickitung": 1.9331988579623642, - "weezing": 1.9668984875913758, - "weezing-galar": 3.203832841938424, - "rhydon": 1.9353355638384024, - "chansey": 27.515575393513565, - "tangela": 7.882673897717639, - "kangaskhan": 1.6717809297188495, - "seadra": 3.994164846905152, - "seaking": 2.026814558873041, - "starmie": 1.7307690928002968, - "mr-mime": 7.551548727823736, - "mr-mime-galar": 4.791312308259696, - "scyther": 3.3627045808182006, - "jynx": 6.691803277174808, - "electabuzz": 2.7270322069805477, - "magmar": 2.1456936468322323, - "tauros": 1.878731410963161, - "ditto": 3.598678155794807, - "vaporeon": 3.0537637479618382, - "jolteon": 2.0567377974663232, - "porygon": 2.8406399677616667, - "dragonair": 1.8231153741619632, - "noctowl": 5.906784435812459, - "lanturn": 1.828885983659748, - "togetic": 6.252716606111296, - "xatu": 4.496027991676759, - "bellossom": 3.3948453822620763, - "azumarill": 1.928188407393813, - "sudowoodo": 2.0657209169143713, - "politoed": 2.223321094300788, - "quagsire": 4.255864066875257, - "slowking": 2.454113837904038, - "dunsparce": 3.41231869922323, - "qwilfish": 2.8111923926244398, - "sneasel": 2.660031743840808, - "piloswine": 1.6373066084747543, - "octillery": 2.301525241793498, - "mantine": 2.3287177542233373, - "skarmory": 3.248618737409279, - "hitmontop": 2.489304616563649, - "miltank": 3.6917267345436553, - "grovyle": 10.055568398191848, - "sceptile": 1.817498845745797, - "combusken": 3.545162068448221, - "blaziken": 1.8200578892824328, - "marshtomp": 2.084381974303875, - "swampert": 1.2232283416098166, - "linoone": 5.026257181432298, - "linoone-galar": 4.627535797249527, - "pelipper": 5.6263085702971445, - "ninjask": 9.78136704820138, - "exploud": 1.7540909837860674, - "lairon": 2.242172205851366, - "manectric": 1.9063104066647347, - "roselia": 4.994225252300828, - "sharpedo": 4.224791490227092, - "wailmer": 6.063441187487916, - "torkoal": 2.445591271199089, - "flygon": 2.3073566244666113, - "altaria": 1.899488873260006, - "whiscash": 1.8000580771048544, - "crawdaunt": 1.6763391315186777, - "claydol": 3.671616644061637, - "cradily": 2.265179528010118, - "armaldo": 1.6775727181847557, - "dusclops": 3.9666860885987205, - "absol": 2.0689691000834514, - "glalie": 5.355566739095254, - "sealeo": 2.9343372040019977, - "relicanth": 1.506619986773578, - "metang": 4.0137287106151645, - "luxray": 3.773451576517081, - "vespiquen": 3.4621761801875044, - "cherrim": 7.998739315024123, - "gastrodon": 1.83216563489718, - "drifblim": 4.940270712947623, - "lopunny": 3.4712640041451834, - "skuntank": 1.5729747229030473, - "bronzong": 4.206185120659459, - "munchlax": 2.2939433213995537, - "drapion": 2.5663353285904753, - "abomasnow": 5.701323636307142, - "froslass": 4.07164648813707, - "rotom": 4.572428675568082, - "stoutland": 2.2809030184618733, - "liepard": 6.989205761705259, - "musharna": 1.7704231866969409, - "unfezant": 6.254778630078923, - "boldore": 2.7296392334335096, - "swoobat": 6.431025153029099, - "audino": 2.4831974274330646, - "gurdurr": 2.1356831086756944, - "palpitoad": 3.4622680423937036, - "seismitoad": 6.40977345388619, - "scolipede": 4.456892917255861, - "whimsicott": 4.478716218936885, - "lilligant": 4.374768758343968, - "basculin-red-striped": 2.3216659897206706, - "basculin-blue-striped": 3.074494729335104, - "krookodile": 2.6744222233554877, - "maractus": 3.1138391245455916, - "crustle": 2.019123314111377, - "sigilyph": 2.7792617743764425, - "cofagrigus": 3.319758409290885, - "garbodor": 1.811035355307488, - "cinccino": 4.579903762749924, - "vanillish": 2.9474341007357245, - "emolga": 3.099472597989032, - "escavalier": 3.1523596921385373, - "amoonguss": 3.4391697984527934, - "jellicent": 1.8024518841839146, - "galvantula": 2.210587335913878, - "klang": 3.9111284663965487, - "klinklang": 4.838008772854436, - "beheeyem": 1.9865833614202864, - "lampent": 4.119162991151288, - "fraxure": 1.4122185635618947, - "beartic": 2.3480914189967677, - "cryogonal": 2.177028755131902, - "accelgor": 4.164137729412525, - "stunfisk": 1.2191347146517295, - "stunfisk-galar": 2.9292706323807334, - "mienshao": 3.1149861994395582, - "druddigon": 1.6647176170929936, - "golurk": 2.007662952416853, - "bisharp": 3.2373198764596225, - "bouffalant": 1.246761955145666, - "heatmor": 2.359048056276272, - "durant": 7.650974578791693, - "diggersby": 2.6306013611450787, - "talonflame": 3.220624592549288, - "pangoro": 1.7005874507581316, - "doublade": 4.062794099582636, - "malamar": 2.853323839540284, - "barbaracle": 1.299134883655801, - "heliolisk": 4.277874991744939, - "tyrantrum": 1.3798746840114369, - "aurorus": 2.338898745325113, - "hawlucha": 3.3694708301072405, - "dedenne": 3.327389106129747, - "klefki": 4.664702159842086, - "trevenant": 3.98562060612507, - "gourgeist-average": 8.156807405804587, - "charjabug": 5.067352748883656, - "vikavolt": 2.594865586322584, - "ribombee": 6.625812370871598, - "lycanroc-midday": 2.5277186826553955, - "lycanroc-midnight": 1.8853319829308406, - "mudsdale": 1.4439175664735546, - "araquanid": 2.1688060132377607, - "lurantis": 3.323119505355997, - "shiinotic": 5.956095921672237, - "salazzle": 3.44759490426471, - "bewear": 1.7043868427881952, - "tsareena": 4.045534961994037, - "comfey": 5.0125428709790745, - "oranguru": 2.7389087260022977, - "passimian": 2.1928267320254133, - "palossand": 2.4219379739433577, - "pyukumuku": 40.97015680136357, - "togedemaru": 2.9115278703503504, - "mimikyu-disguised": 4.207813508728664, - "greedent": 2.1069307762438774, - "orbeetle": 2.471504458337578, - "thievul": 2.038758223544624, - "eldegoss": 5.168233699467, - "dubwool": 3.762618633705553, - "drednaw": 0.9846105221390089, - "boltund": 4.661197423395631, - "carkol": 2.0999584844230785, - "coalossal": 1.918594955237881, - "sandaconda": 3.2049372751852934, - "cramorant": 4.736929140934535, - "barraskewda": 3.8912628433845105, - "toxtricity-amped": 2.776261614230083, - "centiskorch": 2.2099350267634397, - "grapploct": 1.6166306227928167, - "polteageist": 2.868428122274954, - "hatterene": 2.955861243997742, - "grimmsnarl": 3.912324078228264, - "obstagoon": 2.4792340126335883, - "perrserker": 4.879453034557992, - "alcremie": 1.7611766192966751, - "falinks": 3.338772314710392, - "pincurchin": 2.9456854733611846, - "frosmoth": 4.678409859812554, - "indeedee-male": 3.603227160706114, - "morpeko": 2.752157880980406, - "copperajah": 3.3498982128743737, - "duraludon": 1.762967931658709, - "drakloak": 5.139454044978503, - "flareon": 3.1212499462069405 + "ivysaur": 4.316348382225101, + "charmeleon": 4.673077022629348, + "wartortle": 2.573480254217379, + "butterfree": 5.877689794681876, + "raichu": 5.443093816039957, + "raichu-alola": 3.853084700493124, + "sandslash": 2.0212709962246085, + "sandslash-alola": 3.7503080380971356, + "nidoqueen": 2.710761517137173, + "nidoking": 1.7674628455987316, + "clefairy": 11.209050191758859, + "clefable": 2.321989961766526, + "jigglypuff": 29.83399828344733, + "wigglytuff": 2.254915269169673, + "gloom": 7.847812462651115, + "vileplume": 4.26774594771737, + "dugtrio": 2.9289276503046473, + "dugtrio-alola": 4.006978822590144, + "persian": 4.2325229883138125, + "persian-alola": 4.273642406816684, + "golduck": 2.6159425792759246, + "poliwrath": 1.591902392982072, + "kadabra": 4.515604218131289, + "machoke": 3.5348979327114884, + "tentacruel": 2.20024968308545, + "slowbro": 2.279672841459854, + "magneton": 4.8367626886337, + "haunter": 5.451105943634873, + "kingler": 2.039632004077926, + "exeggutor": 2.4263956252795045, + "marowak": 2.840331106511051, + "marowak-alola": 2.8607052919266778, + "hitmonlee": 2.5570181848220956, + "hitmonchan": 2.321128648637091, + "lickitung": 1.930663958637664, + "weezing": 1.9703936555086017, + "weezing-galar": 3.213390692090602, + "rhydon": 1.927330121928592, + "chansey": 27.447918493836628, + "tangela": 7.896389117870479, + "kangaskhan": 1.6659021486763206, + "seadra": 3.9879789310952463, + "seaking": 2.0176638292987796, + "starmie": 1.7302796910716123, + "mr-mime": 7.552607127772967, + "mr-mime-galar": 4.7980598582034855, + "scyther": 3.361675574894032, + "jynx": 6.707760142196009, + "electabuzz": 2.725897193840185, + "magmar": 2.151823742905177, + "tauros": 1.8725633295983688, + "ditto": 3.5897227777535115, + "vaporeon": 3.046259401254283, + "jolteon": 2.0561647000529395, + "flareon": 3.1212499462069405, + "porygon": 2.8365369207968687, + "dragonair": 1.8203277859637015, + "noctowl": 5.894056534245257, + "lanturn": 1.825204529951292, + "togetic": 6.269985203326703, + "xatu": 4.499769288386951, + "bellossom": 3.4034088109761793, + "azumarill": 1.922941655995269, + "sudowoodo": 2.0571535355645496, + "politoed": 2.2147007496377933, + "quagsire": 4.247952600310883, + "slowking": 2.4486961852286324, + "dunsparce": 3.410181691511967, + "qwilfish": 2.801031036952052, + "sneasel": 2.6577865747772256, + "piloswine": 1.6356569708531503, + "octillery": 2.2987599044797213, + "mantine": 2.3223640115323843, + "skarmory": 3.2545679174599096, + "hitmontop": 2.4843129967109325, + "miltank": 3.685055923658534, + "grovyle": 10.067027325465435, + "sceptile": 1.8205824091536424, + "combusken": 3.5480218766436273, + "blaziken": 1.8238492787584422, + "marshtomp": 2.076106608905405, + "swampert": 1.2207956791284627, + "linoone": 5.014465997475898, + "linoone-galar": 4.617372001361834, + "pelipper": 5.616551833963966, + "ninjask": 9.789846759582531, + "exploud": 1.7527883040208327, + "lairon": 2.24000062698252, + "manectric": 1.9090516593463578, + "roselia": 5.000695164237222, + "sharpedo": 4.207146735744822, + "wailmer": 6.049966311698258, + "torkoal": 2.4545547315091274, + "flygon": 2.304188543001668, + "altaria": 1.901729501755804, + "whiscash": 1.7957136309686526, + "crawdaunt": 1.6713278805199607, + "claydol": 3.67082245941195, + "cradily": 2.2640814567487357, + "armaldo": 1.6731310296817519, + "dusclops": 3.9700619397410923, + "absol": 2.0680119687669314, + "glalie": 5.358521799606853, + "sealeo": 2.9272577368804025, + "relicanth": 1.4988406587577168, + "metang": 4.019069661859043, + "luxray": 3.769772140420074, + "vespiquen": 3.463021975116227, + "cherrim": 8.014130207659713, + "gastrodon": 1.8245385435205663, + "drifblim": 4.944832617438804, + "lopunny": 3.4614943235182376, + "skuntank": 1.5722550880721566, + "bronzong": 4.211361918640209, + "munchlax": 2.289154356525546, + "drapion": 2.5658236055471293, + "abomasnow": 5.712870864108895, + "froslass": 4.082421738747279, + "rotom": 4.580555309421129, + "stoutland": 2.274021067515845, + "liepard": 6.981504570755494, + "musharna": 1.771506847704324, + "unfezant": 6.242629313558236, + "boldore": 2.718908803223643, + "swoobat": 6.436247352591668, + "audino": 2.484997662885272, + "gurdurr": 2.131708853094276, + "palpitoad": 3.4537766009867967, + "seismitoad": 6.403140643046462, + "scolipede": 4.4619728355133095, + "whimsicott": 4.488256743653241, + "lilligant": 4.386199105579967, + "basculin-red-striped": 2.3122279381258477, + "basculin-blue-striped": 3.0633469959022697, + "krookodile": 2.668532771156245, + "maractus": 3.120720771186373, + "crustle": 2.016098860449263, + "sigilyph": 2.7825393934283635, + "cofagrigus": 3.3252372625245785, + "garbodor": 1.8086966840285505, + "cinccino": 4.571828798610357, + "vanillish": 2.9527159733152506, + "emolga": 3.0988094442452017, + "escavalier": 3.1488834987970478, + "amoonguss": 3.4444905817839953, + "jellicent": 1.8016310599293277, + "galvantula": 2.2142955107524775, + "klang": 3.9168467987066222, + "klinklang": 4.843264751688675, + "beheeyem": 1.9864385407759344, + "lampent": 4.137815327805793, + "fraxure": 1.4094293795321087, + "beartic": 2.3498678429569715, + "cryogonal": 2.180053543469285, + "accelgor": 4.171791573438114, + "stunfisk": 1.21717777228612, + "stunfisk-galar": 2.9276039569023062, + "mienshao": 3.1085194199678625, + "druddigon": 1.6609919790871888, + "golurk": 2.006412011872911, + "bisharp": 3.2353765777201, + "bouffalant": 1.2441694794826894, + "heatmor": 2.3668947262170272, + "durant": 7.673010339193597, + "diggersby": 2.617085079538035, + "talonflame": 3.2257643908173925, + "pangoro": 1.6980192030944616, + "doublade": 4.074585001192599, + "malamar": 2.8511426912742808, + "barbaracle": 1.2935966357668216, + "heliolisk": 4.275426133343899, + "tyrantrum": 1.3753160044194348, + "aurorus": 2.3351854614097336, + "hawlucha": 3.3646152712792348, + "dedenne": 3.3303338483410063, + "klefki": 4.678311645895062, + "trevenant": 3.992584084282156, + "gourgeist-average": 8.185328701012033, + "charjabug": 5.059808726371027, + "vikavolt": 2.5980240938771866, + "ribombee": 6.643087906575289, + "lycanroc-midday": 2.5154266003377437, + "lycanroc-midnight": 1.8779927031252288, + "mudsdale": 1.4407410349048941, + "araquanid": 2.163056908683597, + "lurantis": 3.328739697512986, + "shiinotic": 5.966948876502837, + "salazzle": 3.4544022243086028, + "bewear": 1.6992853168830577, + "tsareena": 4.048722342160929, + "comfey": 5.021092097881208, + "oranguru": 2.734130572056932, + "passimian": 2.1886305726812068, + "palossand": 2.4231400593541075, + "pyukumuku": 40.89876020344674, + "togedemaru": 2.9128599482792015, + "mimikyu-disguised": 4.204357905684485, + "greedent": 2.102139298995068, + "orbeetle": 2.4757004646275966, + "thievul": 2.035815999622775, + "eldegoss": 5.17748121193314, + "dubwool": 3.759023092869339, + "drednaw": 0.9806141401300268, + "boltund": 4.6578516617702705, + "carkol": 2.0981794880912394, + "coalossal": 1.917036394866883, + "sandaconda": 3.2022748550713738, + "cramorant": 4.71599071137161, + "barraskewda": 3.8768726082220404, + "toxtricity-amped": 2.775558169262113, + "centiskorch": 2.2106936798236125, + "grapploct": 1.6151639914866958, + "polteageist": 2.869772390205597, + "hatterene": 2.9591884426443107, + "grimmsnarl": 3.90946807903405, + "obstagoon": 2.473070780475898, + "perrserker": 4.886494389225247, + "alcremie": 1.7655027204466407, + "falinks": 3.3392198896316785, + "pincurchin": 2.9430382588878503, + "frosmoth": 4.6870284862061125, + "indeedee-male": 3.603840434497245, + "morpeko": 2.7494733324705685, + "copperajah": 3.355712260607481, + "duraludon": 1.7649219361503947, + "drakloak": 5.137136481137835 }, "porygon": { - "ivysaur": 3.348405880091967, - "charmeleon": 3.8239013105092026, - "wartortle": 2.9184835440136294, - "butterfree": 4.588639819601596, - "raichu": 4.660809956608456, - "raichu-alola": 3.872434117142496, - "sandslash": 2.5909945509094268, - "sandslash-alola": 1.8125672274423423, - "nidoqueen": 3.211154119038841, - "nidoking": 2.004532163566927, - "clefairy": 8.81767966574171, - "clefable": 1.9671371062186052, - "jigglypuff": 26.079516248073574, - "wigglytuff": 1.9480716953885413, - "gloom": 6.1188457289332785, - "vileplume": 3.2106968556128295, - "dugtrio": 3.782353168819072, - "dugtrio-alola": 3.0384084966991773, - "persian": 4.109604651290844, - "persian-alola": 4.10428865071979, - "golduck": 3.328347414973207, - "poliwrath": 1.9520067219430692, - "kadabra": 4.0578974414748625, - "machoke": 3.6410126633336253, - "tentacruel": 2.33692899050981, - "slowbro": 2.025629598307007, - "magneton": 2.6596453325038194, - "haunter": 4.989301605978509, - "kingler": 2.88155828002348, - "exeggutor": 2.118089611643181, - "marowak": 3.4864178402554886, - "marowak-alola": 2.1289662334614627, - "hitmonlee": 1.9039737534730565, - "hitmonchan": 1.9330412881780004, - "lickitung": 1.8830301558020688, - "weezing": 1.6778779136507511, - "weezing-galar": 2.797144921508554, - "rhydon": 2.7334563229874114, - "chansey": 21.6470244863158, - "tangela": 6.163806606005946, - "kangaskhan": 1.7952643207951162, - "seadra": 5.148449920679648, - "seaking": 2.5679928663085017, - "starmie": 1.572794061358426, - "mr-mime": 6.165707623245389, - "mr-mime-galar": 3.770840480541665, - "scyther": 2.885371212109904, - "jynx": 4.722674586741125, - "electabuzz": 2.447103604719819, - "magmar": 1.6374244450758866, - "tauros": 1.9536930915157855, - "ditto": 3.1671912641075153, - "vaporeon": 3.251433657032143, - "jolteon": 1.8814881870585345, - "flareon": 2.4843916297866295, - "dragonair": 2.006419545607856, - "noctowl": 5.650535269184262, - "lanturn": 1.8554173380823973, - "togetic": 5.6275133375905515, - "xatu": 4.169376612196587, - "bellossom": 2.5115670295592225, - "azumarill": 2.5296478439147227, - "sudowoodo": 2.2597082967012687, - "politoed": 2.6648911036561973, - "quagsire": 4.487619501368754, - "slowking": 2.6114134170408163, - "dunsparce": 3.406338626118451, - "qwilfish": 3.982822558451595, - "sneasel": 2.1427585056014085, - "piloswine": 1.5457606862843967, - "octillery": 2.5757955893231728, - "mantine": 3.193290644250851, - "skarmory": 2.555963086245963, - "hitmontop": 2.4036347156489724, - "miltank": 3.6800942129315186, - "grovyle": 7.707450860570274, - "sceptile": 1.4809886806358463, - "combusken": 2.991926520251507, - "blaziken": 1.498302829814652, - "marshtomp": 2.4452967888216124, - "swampert": 1.2662785412160567, - "linoone": 5.352269304530655, - "linoone-galar": 4.551333189683574, - "pelipper": 9.918463526279556, - "ninjask": 7.89521802838551, - "exploud": 1.5359630675675005, - "lairon": 2.2911592759298403, - "manectric": 1.759298284857656, - "roselia": 3.9710727423885848, - "sharpedo": 5.426918557704107, - "wailmer": 7.196770116154353, - "torkoal": 2.020414874559709, - "flygon": 3.5982968912695377, - "altaria": 2.3382736491343383, - "whiscash": 2.019204505894021, - "crawdaunt": 2.3268387376480586, - "claydol": 3.524200757999621, - "cradily": 2.4208156087749817, - "armaldo": 1.6936170943058428, - "dusclops": 3.960903256598261, - "absol": 1.9441606544629537, - "glalie": 4.042569090739568, - "sealeo": 3.453910798486794, - "relicanth": 2.234345482130473, - "metang": 2.829621218359633, - "luxray": 3.829116439356196, - "vespiquen": 2.8024692855328657, - "cherrim": 6.198908168938404, - "gastrodon": 2.0650492526012405, - "drifblim": 4.666920153687447, - "lopunny": 3.3210435367768287, - "skuntank": 1.4599106694354704, - "bronzong": 3.285785693161019, - "munchlax": 2.0990441192114386, - "drapion": 2.5082990720897733, - "abomasnow": 3.0652930023715435, - "froslass": 3.1942767334790307, - "rotom": 4.029615588840418, - "stoutland": 2.363865050802149, - "liepard": 6.87446625737279, - "musharna": 1.5448958540760618, - "unfezant": 7.250809250478088, - "boldore": 2.9981067782558246, - "swoobat": 5.96107061095065, - "audino": 2.1898920333419256, - "gurdurr": 2.066174300865266, - "palpitoad": 3.773716516741663, - "seismitoad": 6.27561180667494, - "scolipede": 3.2010658044813467, - "whimsicott": 3.485322276826376, - "lilligant": 3.312577448213133, - "basculin-red-striped": 3.137992610225484, - "basculin-blue-striped": 4.085414953773746, - "krookodile": 3.129947156319336, - "maractus": 2.415984508962051, - "crustle": 1.7972643579086571, - "sigilyph": 2.5281158033276565, - "cofagrigus": 2.7167203024013475, - "garbodor": 1.7699552509298346, - "cinccino": 4.473498168917757, - "vanillish": 2.075413755926914, - "emolga": 3.360314161527815, - "escavalier": 1.6703461666738733, - "amoonguss": 2.7046547275768154, - "jellicent": 1.6580123554111474, - "galvantula": 1.5723261133238315, - "klang": 2.449024709901348, - "klinklang": 2.9684292773643293, - "beheeyem": 1.8983794707830748, - "lampent": 2.4250889235846946, - "fraxure": 1.7793524138042083, - "beartic": 1.6970576683332845, - "cryogonal": 1.563372971436985, - "accelgor": 2.882263616412634, - "stunfisk": 1.3702696449377991, - "stunfisk-galar": 2.067687858519144, - "mienshao": 3.122227199679073, - "druddigon": 1.988828015602559, - "golurk": 2.180140365005993, - "bisharp": 2.1782174157733705, - "bouffalant": 1.2196360045199297, - "heatmor": 1.8950261636883974, - "durant": 2.8224118937409735, - "diggersby": 3.469826299064821, - "talonflame": 3.2296748784163882, - "pangoro": 1.6071609407767458, - "doublade": 2.1889970142505164, - "malamar": 2.8299186305513593, - "barbaracle": 1.6403936035251279, - "heliolisk": 3.301155798187237, - "tyrantrum": 1.8033360858524192, - "aurorus": 2.1659134435507537, - "hawlucha": 3.6319437877858047, - "dedenne": 2.8055530909459523, - "klefki": 2.6643603785166174, - "trevenant": 3.21973107792343, - "gourgeist-average": 6.9060263767300345, - "charjabug": 4.069884373891231, - "vikavolt": 1.8627535890525384, - "ribombee": 4.51298352230978, - "lycanroc-midday": 3.0427556732008947, - "lycanroc-midnight": 2.0448492842322126, - "mudsdale": 1.592845003829194, - "araquanid": 2.4006848404824623, - "lurantis": 2.5895971477263102, - "shiinotic": 4.6344785619543405, - "salazzle": 3.1660844126689254, - "bewear": 1.7759036589189057, - "tsareena": 3.3225824035225386, - "comfey": 4.304872481912426, - "oranguru": 2.759157006719774, - "passimian": 2.224720150372416, - "palossand": 2.5659454921413825, - "pyukumuku": 45.57506255696189, - "togedemaru": 1.9517201477773487, - "mimikyu-disguised": 3.9688231723143597, - "greedent": 2.1301303919382764, - "orbeetle": 1.7939053746216187, - "thievul": 1.7075029612410804, - "eldegoss": 4.038738311818696, - "dubwool": 2.7466489098575084, - "drednaw": 1.4115469710181254, - "boltund": 4.633343260578032, - "carkol": 2.1562404522202527, - "coalossal": 1.7919122411033253, - "sandaconda": 3.680193857575389, - "cramorant": 7.264170989325157, - "barraskewda": 5.140138405783481, - "toxtricity-amped": 2.6065966633858673, - "centiskorch": 2.0301071980496768, - "grapploct": 1.5424699624911966, - "polteageist": 2.938833325023188, - "hatterene": 2.4457734713017887, - "grimmsnarl": 3.535232596158644, - "obstagoon": 2.5335493215229166, - "perrserker": 2.956310183129994, - "alcremie": 1.3358780212799946, - "falinks": 3.027526603850975, - "pincurchin": 2.9904089459179852, - "frosmoth": 2.4759857533276293, - "indeedee-male": 3.6294599750144334, - "morpeko": 2.694333135054504, - "copperajah": 2.063119235591223, - "duraludon": 1.4871221210089365, - "drakloak": 5.3479323239827545, - "porygon": 2.740359804784859 + "ivysaur": 3.350411687519972, + "charmeleon": 3.824629915221898, + "wartortle": 2.9198106238027, + "butterfree": 4.591958586601623, + "raichu": 4.6529947285454165, + "raichu-alola": 3.874311989714453, + "sandslash": 2.593211036259901, + "sandslash-alola": 1.8098849261741123, + "nidoqueen": 3.2168660341688735, + "nidoking": 2.0061484297820806, + "clefairy": 8.819888384400983, + "clefable": 1.967908752162014, + "jigglypuff": 26.08074232357554, + "wigglytuff": 1.948178256841425, + "gloom": 6.122563232118683, + "vileplume": 3.2137048224002696, + "dugtrio": 3.7847647716148565, + "dugtrio-alola": 3.0368321906432745, + "persian": 4.1085685684110675, + "persian-alola": 4.103403726911194, + "golduck": 3.33076301104282, + "poliwrath": 1.9506989333501465, + "kadabra": 4.056061871990226, + "machoke": 3.6379043624556564, + "tentacruel": 2.338116305472008, + "slowbro": 2.0286697239418294, + "magneton": 2.6573278756101026, + "haunter": 5.001669765952495, + "kingler": 2.883091327420029, + "exeggutor": 2.120598032494056, + "marowak": 3.4883828564138066, + "marowak-alola": 2.132728697710956, + "hitmonlee": 1.8991221498368351, + "hitmonchan": 1.931548805845154, + "lickitung": 1.8833390478356817, + "weezing": 1.6798095040259784, + "weezing-galar": 2.8001357861466563, + "rhydon": 2.7334609753330543, + "chansey": 21.57706903839967, + "tangela": 6.170246316243235, + "kangaskhan": 1.7956928541906862, + "seadra": 5.154300794406234, + "seaking": 2.570221080053564, + "starmie": 1.5752524460204986, + "mr-mime": 6.163285927110405, + "mr-mime-galar": 3.77064413592013, + "scyther": 2.89046690430896, + "jynx": 4.720473459238496, + "electabuzz": 2.446655911028536, + "magmar": 1.6377864451324016, + "tauros": 1.9533457978680868, + "ditto": 3.1511486693172444, + "vaporeon": 3.253312212626642, + "jolteon": 1.8817275756073677, + "flareon": 2.4889949601512504, + "porygon": 2.740359804784859, + "dragonair": 2.00792769312038, + "noctowl": 5.654958689601195, + "lanturn": 1.8526840556179507, + "togetic": 5.636572442914522, + "xatu": 4.1806281137395365, + "bellossom": 2.513612051292519, + "azumarill": 2.533518546177074, + "sudowoodo": 2.2585641365298477, + "politoed": 2.6666822508809345, + "quagsire": 4.482415848762913, + "slowking": 2.6143450809805526, + "dunsparce": 3.4114579527995352, + "qwilfish": 3.9876858733246703, + "sneasel": 2.1400931392572433, + "piloswine": 1.5431395723421673, + "octillery": 2.5786419461401526, + "mantine": 3.1981714381418165, + "skarmory": 2.5610912549369242, + "hitmontop": 2.4008259142088075, + "miltank": 3.681386766685222, + "grovyle": 7.702433142024802, + "sceptile": 1.481829689840606, + "combusken": 2.986260391039879, + "blaziken": 1.496616864191009, + "marshtomp": 2.4447527973315673, + "swampert": 1.2666817777003048, + "linoone": 5.358372476214617, + "linoone-galar": 4.549536902124818, + "pelipper": 9.936617866544553, + "ninjask": 7.907080158989521, + "exploud": 1.5351752210631515, + "lairon": 2.2901936819905266, + "manectric": 1.758375391605731, + "roselia": 3.9718893337574217, + "sharpedo": 5.428650769746651, + "wailmer": 7.203659631904914, + "torkoal": 2.022222958407732, + "flygon": 3.6032648638625018, + "altaria": 2.342716730188772, + "whiscash": 2.0185013389906397, + "crawdaunt": 2.328627738888563, + "claydol": 3.526614831223272, + "cradily": 2.4213888135317223, + "armaldo": 1.6945467180377098, + "dusclops": 3.9753526744041983, + "absol": 1.9446328293134982, + "glalie": 4.041107466175173, + "sealeo": 3.454792987555366, + "relicanth": 2.235226942162401, + "metang": 2.8311109733042326, + "luxray": 3.830076671730647, + "vespiquen": 2.8050302597094365, + "cherrim": 6.20113992022563, + "gastrodon": 2.063850318113901, + "drifblim": 4.677195096985596, + "lopunny": 3.317863786894706, + "skuntank": 1.461065377333186, + "bronzong": 3.289269650976217, + "munchlax": 2.0977910687739896, + "drapion": 2.510550523873277, + "abomasnow": 3.062871206921776, + "froslass": 3.1993658794585653, + "rotom": 4.03896641601044, + "stoutland": 2.363760612348445, + "liepard": 6.87480666546734, + "musharna": 1.5458686199500147, + "unfezant": 7.272003453569958, + "boldore": 2.9975086223384833, + "swoobat": 5.975211834203712, + "audino": 2.1904655948838165, + "gurdurr": 2.0629519927637077, + "palpitoad": 3.772862252474174, + "seismitoad": 6.271307876439822, + "scolipede": 3.2033863804301355, + "whimsicott": 3.487476074323556, + "lilligant": 3.3146130948772874, + "basculin-red-striped": 3.141099549820477, + "basculin-blue-striped": 4.090077748402701, + "krookodile": 3.1308313132964183, + "maractus": 2.4187705843553973, + "crustle": 1.7965560893002421, + "sigilyph": 2.5340854847307357, + "cofagrigus": 2.7245155316862792, + "garbodor": 1.7692509545627675, + "cinccino": 4.474469968268634, + "vanillish": 2.0743977948500234, + "emolga": 3.366194571663933, + "escavalier": 1.6711761872141313, + "amoonguss": 2.7066478313300193, + "jellicent": 1.660119131527766, + "galvantula": 1.572601091634532, + "klang": 2.449455904121532, + "klinklang": 2.9682568146907062, + "beheeyem": 1.9001716906437145, + "lampent": 2.425490813353296, + "fraxure": 1.7812318512192242, + "beartic": 1.6960011503184274, + "cryogonal": 1.5617172860636197, + "accelgor": 2.882136343937504, + "stunfisk": 1.3706898611160192, + "stunfisk-galar": 2.067091017395746, + "mienshao": 3.119619174903452, + "druddigon": 1.9916381770227405, + "golurk": 2.183115916586217, + "bisharp": 2.1769811552333302, + "bouffalant": 1.2196331241306806, + "heatmor": 1.8967777067708158, + "durant": 2.82310258685136, + "diggersby": 3.470250952496813, + "talonflame": 3.2349782232888913, + "pangoro": 1.604843412512764, + "doublade": 2.189061263622243, + "malamar": 2.830982365222838, + "barbaracle": 1.6401571011563605, + "heliolisk": 3.2992879902709813, + "tyrantrum": 1.8031183492807314, + "aurorus": 2.1628046810375974, + "hawlucha": 3.633901140321181, + "dedenne": 2.805083467314458, + "klefki": 2.66413624268011, + "trevenant": 3.220837736261073, + "gourgeist-average": 6.930785884678826, + "charjabug": 4.07125670378824, + "vikavolt": 1.8634791549411667, + "ribombee": 4.512581001708269, + "lycanroc-midday": 3.043399068894309, + "lycanroc-midnight": 2.0434013873844714, + "mudsdale": 1.5916411697586519, + "araquanid": 2.4021905676572706, + "lurantis": 2.5914121558834124, + "shiinotic": 4.634193745701264, + "salazzle": 3.166173898411775, + "bewear": 1.7754167832940735, + "tsareena": 3.3258429254942863, + "comfey": 4.305821350740166, + "oranguru": 2.760358032678784, + "passimian": 2.223240654153748, + "palossand": 2.571728418161679, + "pyukumuku": 45.56055272459197, + "togedemaru": 1.9501430585038304, + "mimikyu-disguised": 3.9787792855056754, + "greedent": 2.130742365899771, + "orbeetle": 1.794288768821448, + "thievul": 1.707210409189957, + "eldegoss": 4.039333697137302, + "dubwool": 2.7439550957857204, + "drednaw": 1.4119536896618912, + "boltund": 4.634813123679889, + "carkol": 2.154977582553331, + "coalossal": 1.7909452389372866, + "sandaconda": 3.683157236034888, + "cramorant": 7.275581963978485, + "barraskewda": 5.145995187341424, + "toxtricity-amped": 2.6067519839412556, + "centiskorch": 2.0306289494915313, + "grapploct": 1.5393764541363875, + "polteageist": 2.9404839521738904, + "hatterene": 2.4473509576648516, + "grimmsnarl": 3.5321653082122673, + "obstagoon": 2.532576771300791, + "perrserker": 2.9576933482715617, + "alcremie": 1.3359293889211625, + "falinks": 3.0248758254671353, + "pincurchin": 2.991994915730822, + "frosmoth": 2.473275578052033, + "indeedee-male": 3.635819802529092, + "morpeko": 2.6934388122938433, + "copperajah": 2.0621118522627833, + "duraludon": 1.4883766159510066, + "drakloak": 5.361422776372311 }, "dragonair": { - "ivysaur": 3.3128874085516644, - "charmeleon": 3.6896242925752007, - "wartortle": 2.81773135936772, - "butterfree": 4.501677234579436, - "raichu": 5.236026128480246, - "raichu-alola": 3.5271047971150224, - "sandslash": 2.36288125395651, - "sandslash-alola": 1.6741331330159102, - "nidoqueen": 2.7928838654947485, - "nidoking": 1.8445344892424675, - "clefairy": 8.231667667648644, - "clefable": 1.3305830176304165, - "jigglypuff": 18.852635028658646, - "wigglytuff": 1.3841438869013092, - "gloom": 5.131528691098275, - "vileplume": 3.1337125652219022, - "dugtrio": 3.5292465329500295, - "dugtrio-alola": 2.7704608221001683, - "persian": 3.672504432447946, - "persian-alola": 3.8645958451623814, - "golduck": 3.2921882011791954, - "poliwrath": 1.9910509122939324, - "kadabra": 3.430802194668266, - "machoke": 3.474366379583401, - "tentacruel": 2.497755865332447, - "slowbro": 1.9078953260030267, - "magneton": 2.496126046768751, - "haunter": 4.385595652145657, - "kingler": 2.917598672110075, - "exeggutor": 2.018626001525369, - "marowak": 3.1972690877645396, - "marowak-alola": 1.8515074049720568, - "hitmonlee": 2.4329953181558213, - "hitmonchan": 2.0247488891372076, - "lickitung": 1.6937399090255711, - "weezing": 1.4445616853427223, - "weezing-galar": 2.1518740450656186, - "rhydon": 2.513992160016412, - "chansey": 27.14764325220821, - "tangela": 6.077817093912262, - "kangaskhan": 1.5539703975788937, - "seadra": 4.58934812019138, - "seaking": 2.4622235460949344, - "starmie": 1.2625715933852795, - "mr-mime": 5.333864898332342, - "mr-mime-galar": 2.9796860370646483, - "scyther": 2.6667758869134186, - "jynx": 3.83720227377803, - "electabuzz": 2.7208958829009475, - "magmar": 1.770057175242441, - "tauros": 1.7519284148571712, - "ditto": 2.047507510651572, - "vaporeon": 3.2843463309481673, - "jolteon": 1.9352958644372187, - "flareon": 2.5520511624847018, - "porygon": 2.4971636940874236, - "noctowl": 5.656812628592695, - "lanturn": 2.0357363725697497, - "togetic": 4.994744584095831, - "xatu": 3.839163486998186, - "bellossom": 2.063280612227216, - "azumarill": 2.259849343940449, - "sudowoodo": 2.2361898772507027, - "politoed": 2.5842745631511788, - "quagsire": 4.382961324564291, - "slowking": 2.3312123674347056, - "dunsparce": 2.796010829662272, - "qwilfish": 3.8144049802620006, - "sneasel": 2.051100789703441, - "piloswine": 1.2354278361480924, - "octillery": 2.4623137353415627, - "mantine": 3.046205461416072, - "skarmory": 2.3013657439660253, - "hitmontop": 2.3375222662129183, - "miltank": 2.8373533370634867, - "grovyle": 8.169073162073602, - "sceptile": 1.3658842916548866, - "combusken": 3.172285848757192, - "blaziken": 1.5721133803121978, - "marshtomp": 2.289858422687144, - "swampert": 1.0804077103934797, - "linoone": 4.636614108056683, - "linoone-galar": 4.228253135172072, - "pelipper": 8.792748596964046, - "ninjask": 7.305654660743232, - "exploud": 1.3638120017543107, - "lairon": 2.13186460709007, - "manectric": 1.6954001982224984, - "roselia": 4.0939553430485764, - "sharpedo": 4.860268815186108, - "wailmer": 6.96512380975647, - "torkoal": 1.8294108508424465, - "flygon": 2.954974329930754, - "altaria": 1.9049427589533374, - "whiscash": 2.02673761302273, - "crawdaunt": 2.2717974666225134, - "claydol": 3.259579810199856, - "cradily": 2.337215175649777, - "armaldo": 1.6369901266794216, - "dusclops": 3.050305818499949, - "absol": 1.7014784268915482, - "glalie": 3.442257797240434, - "sealeo": 3.1108934107308057, - "relicanth": 2.0456169624695395, - "metang": 2.477744772184689, - "luxray": 3.6582694263707065, - "vespiquen": 2.6891913667275635, - "cherrim": 6.14221698716292, - "gastrodon": 2.0681538263975843, - "drifblim": 4.399727547113219, - "lopunny": 3.3418796742035175, - "skuntank": 1.358863853187955, - "bronzong": 2.5353662739097, - "munchlax": 2.32351510383988, - "drapion": 2.060024419880199, - "abomasnow": 2.8208720975755774, - "froslass": 2.3448342736534604, - "rotom": 3.555571576584657, - "stoutland": 2.146912399220641, - "liepard": 5.823916836914685, - "musharna": 1.4571284627945515, - "unfezant": 6.638233324275103, - "boldore": 2.9434450235270777, - "swoobat": 5.493617157692591, - "audino": 2.0038258628515377, - "gurdurr": 1.9298449248933784, - "palpitoad": 3.6033742331046428, - "seismitoad": 5.768480726100245, - "scolipede": 2.7678483280298174, - "whimsicott": 3.116813001656207, - "lilligant": 3.2608573348903587, - "basculin-red-striped": 2.939281008498671, - "basculin-blue-striped": 4.028724256382733, - "krookodile": 2.884686728200032, - "maractus": 2.413395372775636, - "crustle": 1.7806855457565631, - "sigilyph": 2.3305929719180103, - "cofagrigus": 2.2481998228590006, - "garbodor": 1.6957923703211941, - "cinccino": 3.823718260152164, - "vanillish": 1.7205785320280198, - "emolga": 3.3552591903756745, - "escavalier": 1.5385270931654829, - "amoonguss": 2.6016984938325596, - "jellicent": 1.2382715863914024, - "galvantula": 1.5760829379253378, - "klang": 2.388987687954138, - "klinklang": 2.775094379292936, - "beheeyem": 1.6970904881575035, - "lampent": 2.5860478369651116, - "fraxure": 1.4420051213735674, - "beartic": 1.3806129741518696, - "cryogonal": 1.4937886313424165, - "accelgor": 2.9095264841819035, - "stunfisk": 1.3646961922041354, - "stunfisk-galar": 1.9207084994326702, - "mienshao": 3.0650088217197693, - "druddigon": 2.132020703453415, - "golurk": 1.8652781024442717, - "bisharp": 2.0430430657391834, - "bouffalant": 1.1601216374685988, - "heatmor": 1.921827680135638, - "durant": 2.698172504939872, - "diggersby": 3.205601406187856, - "talonflame": 3.083495947030152, - "pangoro": 1.5665899195280395, - "doublade": 2.126062797924471, - "malamar": 2.588752241188035, - "barbaracle": 1.4657756310344456, - "heliolisk": 3.6984370736087637, - "tyrantrum": 1.6337586722738822, - "aurorus": 2.187788988714269, - "hawlucha": 3.5710809424513816, - "dedenne": 2.0034770013283247, - "klefki": 2.2537066184018735, - "trevenant": 3.172903853380806, - "gourgeist-average": 5.856971135057308, - "charjabug": 3.728819122614114, - "vikavolt": 1.6666534202177505, - "ribombee": 3.538429146537612, - "lycanroc-midday": 3.0465965991521156, - "lycanroc-midnight": 2.1417631518973232, - "mudsdale": 1.5994347571729088, - "araquanid": 2.3387459187007553, - "lurantis": 2.493421669622017, - "shiinotic": 3.7733120396743614, - "salazzle": 3.092669416755585, - "bewear": 1.5260092227098425, - "tsareena": 3.2794673293392247, - "comfey": 3.4659630854113406, - "oranguru": 2.5301618358963855, - "passimian": 2.0112894882977805, - "palossand": 2.153259431348492, - "pyukumuku": 43.74038207968247, - "togedemaru": 1.8388204128952281, - "mimikyu-disguised": 3.125301374333693, - "greedent": 1.8494147954210063, - "orbeetle": 1.6716762773662568, - "thievul": 1.8288257696351753, - "eldegoss": 4.063675876123732, - "dubwool": 2.6896843714687235, - "drednaw": 1.3280884460489573, - "boltund": 4.487252822152867, - "carkol": 2.204981209203904, - "coalossal": 1.8624740946231442, - "sandaconda": 3.154713674995331, - "cramorant": 6.908372798133106, - "barraskewda": 4.563119499960839, - "toxtricity-amped": 2.483139548441538, - "centiskorch": 2.016380180943686, - "grapploct": 1.586480788274939, - "polteageist": 2.731380176628851, - "hatterene": 1.8892678358377912, - "grimmsnarl": 3.1386592837886704, - "obstagoon": 2.2825881388934643, - "perrserker": 2.814835299049875, - "alcremie": 0.9975589610104634, - "falinks": 2.6864895978372774, - "pincurchin": 2.9086599786080374, - "frosmoth": 2.5032279483808293, - "indeedee-male": 3.197239803276397, - "morpeko": 2.5590422364034513, - "copperajah": 1.9403610533643612, - "duraludon": 1.234957747717177, - "drakloak": 4.933341518774037, - "dragonair": 1.8270495702947898 + "ivysaur": 3.3179952799364023, + "charmeleon": 3.68995411760601, + "wartortle": 2.8198051222843734, + "butterfree": 4.5061516596163536, + "raichu": 5.239304141983476, + "raichu-alola": 3.527443035796227, + "sandslash": 2.361642730185063, + "sandslash-alola": 1.6685605734494129, + "nidoqueen": 2.7923389353364416, + "nidoking": 1.8443008714807485, + "clefairy": 8.229864424452966, + "clefable": 1.3255695716596354, + "jigglypuff": 18.755784487004615, + "wigglytuff": 1.3789721302479365, + "gloom": 5.122484113852282, + "vileplume": 3.1378344089690384, + "dugtrio": 3.529367991530454, + "dugtrio-alola": 2.7651454250404814, + "persian": 3.6657365761228107, + "persian-alola": 3.863300558070754, + "golduck": 3.296601413281607, + "poliwrath": 1.9926739220291725, + "kadabra": 3.425944019001702, + "machoke": 3.474071583234794, + "tentacruel": 2.502320108439828, + "slowbro": 1.9085297749210306, + "magneton": 2.4931716650040627, + "haunter": 4.392149829329989, + "kingler": 2.92022346352401, + "exeggutor": 2.018791689847004, + "marowak": 3.1958780630812806, + "marowak-alola": 1.8528090282322784, + "hitmonlee": 2.434480716035588, + "hitmonchan": 2.024604100694892, + "lickitung": 1.6932081607513134, + "weezing": 1.4448524621602827, + "weezing-galar": 2.145975041042803, + "rhydon": 2.5113628959380416, + "chansey": 27.12570663177137, + "tangela": 6.085054956719553, + "kangaskhan": 1.5511073037105807, + "seadra": 4.586650763782259, + "seaking": 2.46437658169141, + "starmie": 1.2609681197403613, + "mr-mime": 5.317396879479354, + "mr-mime-galar": 2.9733502615488545, + "scyther": 2.66794369634081, + "jynx": 3.824906911879561, + "electabuzz": 2.723863765382041, + "magmar": 1.772074077852341, + "tauros": 1.7511601478077843, + "ditto": 2.0368717266243577, + "vaporeon": 3.289569876382183, + "jolteon": 1.9356456551691847, + "flareon": 2.553918570623698, + "porygon": 2.494864098069972, + "dragonair": 1.8270495702947898, + "noctowl": 5.6603523748771085, + "lanturn": 2.0377781099719776, + "togetic": 4.986988657063369, + "xatu": 3.8424502736189576, + "bellossom": 2.0630057247552136, + "azumarill": 2.256912991996849, + "sudowoodo": 2.2351450166880724, + "politoed": 2.58695234745851, + "quagsire": 4.3845805398931, + "slowking": 2.3301120613077058, + "dunsparce": 2.7925779781128037, + "qwilfish": 3.8177793243004188, + "sneasel": 2.0460310977212472, + "piloswine": 1.231805932500361, + "octillery": 2.4643438832169346, + "mantine": 3.054362951409213, + "skarmory": 2.302058114931752, + "hitmontop": 2.334886155526427, + "miltank": 2.8309961153402505, + "grovyle": 8.180503808048911, + "sceptile": 1.3670179938760652, + "combusken": 3.1739345546033437, + "blaziken": 1.5736087366028366, + "marshtomp": 2.288542779215498, + "swampert": 1.079719375622501, + "linoone": 4.632839805427734, + "linoone-galar": 4.22531810733276, + "pelipper": 8.79935139169779, + "ninjask": 7.308671746496803, + "exploud": 1.3621994996007631, + "lairon": 2.128322828349283, + "manectric": 1.6960330976524065, + "roselia": 4.098950644139, + "sharpedo": 4.856350740418449, + "wailmer": 6.973826606363071, + "torkoal": 1.8312571405425415, + "flygon": 2.955661365284354, + "altaria": 1.9061495522587886, + "whiscash": 2.0264896809398065, + "crawdaunt": 2.272537443024742, + "claydol": 3.25765484229037, + "cradily": 2.3389631933899944, + "armaldo": 1.6364568509650474, + "dusclops": 3.050848538370878, + "absol": 1.7005736345950084, + "glalie": 3.433148735793955, + "sealeo": 3.1083694912865276, + "relicanth": 2.0445268046271408, + "metang": 2.4748528554313713, + "luxray": 3.659560978758556, + "vespiquen": 2.690655751500625, + "cherrim": 6.149552795634277, + "gastrodon": 2.067665932093546, + "drifblim": 4.4099316965166375, + "lopunny": 3.339804725060942, + "skuntank": 1.359708555183888, + "bronzong": 2.531724843581851, + "munchlax": 2.324212386582034, + "drapion": 2.060273522203155, + "abomasnow": 2.8150732323983783, + "froslass": 2.3389466173363953, + "rotom": 3.5608451520341777, + "stoutland": 2.14446146313549, + "liepard": 5.812694328571719, + "musharna": 1.4572284578409525, + "unfezant": 6.6465196938124675, + "boldore": 2.9419891827315787, + "swoobat": 5.498363588630099, + "audino": 2.002930743180853, + "gurdurr": 1.929414159624706, + "palpitoad": 3.6033774540457806, + "seismitoad": 5.760208717895711, + "scolipede": 2.7665673829107504, + "whimsicott": 3.11008175703919, + "lilligant": 3.264943144768972, + "basculin-red-striped": 2.9402709718240243, + "basculin-blue-striped": 4.034873092098917, + "krookodile": 2.8837109607062916, + "maractus": 2.418066596169162, + "crustle": 1.7799871628329895, + "sigilyph": 2.3325220398816624, + "cofagrigus": 2.248604737014001, + "garbodor": 1.6951814298516203, + "cinccino": 3.8157805993440386, + "vanillish": 1.7149940318399546, + "emolga": 3.362690720556185, + "escavalier": 1.5373422760053699, + "amoonguss": 2.6038158280560806, + "jellicent": 1.2380470011448983, + "galvantula": 1.5776611194242531, + "klang": 2.387838120683811, + "klinklang": 2.7702091658422523, + "beheeyem": 1.6964361743241874, + "lampent": 2.5915417272819012, + "fraxure": 1.440457304640062, + "beartic": 1.377582634668761, + "cryogonal": 1.4903548692402508, + "accelgor": 2.9085679736626977, + "stunfisk": 1.3661679973549232, + "stunfisk-galar": 1.9172945637595478, + "mienshao": 3.0643534201246245, + "druddigon": 2.135839500287248, + "golurk": 1.8653611823613665, + "bisharp": 2.0393887263167167, + "bouffalant": 1.159968680652777, + "heatmor": 1.9258554408966835, + "durant": 2.695237558757683, + "diggersby": 3.2043120499347877, + "talonflame": 3.0879185511908247, + "pangoro": 1.566102331773286, + "doublade": 2.124172247647738, + "malamar": 2.588307401863705, + "barbaracle": 1.464754482263681, + "heliolisk": 3.700546172102618, + "tyrantrum": 1.633576637472746, + "aurorus": 2.1830071954097114, + "hawlucha": 3.574222954416461, + "dedenne": 1.99692713383584, + "klefki": 2.2442770819273457, + "trevenant": 3.1783318220664514, + "gourgeist-average": 5.86394696988013, + "charjabug": 3.731918325830958, + "vikavolt": 1.666751002563096, + "ribombee": 3.524492166815284, + "lycanroc-midday": 3.0454308057948607, + "lycanroc-midnight": 2.140785685774539, + "mudsdale": 1.5989503345963276, + "araquanid": 2.34133024831518, + "lurantis": 2.4946763367823435, + "shiinotic": 3.7564091263462087, + "salazzle": 3.0953239335406817, + "bewear": 1.5242150687322047, + "tsareena": 3.2832972175083603, + "comfey": 3.4550154993827134, + "oranguru": 2.5287832674651725, + "passimian": 2.011044384970068, + "palossand": 2.153164629547874, + "pyukumuku": 43.74905778879215, + "togedemaru": 1.8358469604340877, + "mimikyu-disguised": 3.1166532306966754, + "greedent": 1.8478245987556465, + "orbeetle": 1.6704940217452204, + "thievul": 1.8292769152987303, + "eldegoss": 4.069368997354435, + "dubwool": 2.6888708900402847, + "drednaw": 1.3282291630592693, + "boltund": 4.489523788924939, + "carkol": 2.205995188376226, + "coalossal": 1.8631590089518562, + "sandaconda": 3.1491859982817076, + "cramorant": 6.922387214673697, + "barraskewda": 4.559493025040583, + "toxtricity-amped": 2.48403243505439, + "centiskorch": 2.0169140432504786, + "grapploct": 1.5869955364032506, + "polteageist": 2.734790603350982, + "hatterene": 1.8815813968629937, + "grimmsnarl": 3.1313866729378934, + "obstagoon": 2.2811432340071516, + "perrserker": 2.8120867230724733, + "alcremie": 0.9946681231378665, + "falinks": 2.685131917922924, + "pincurchin": 2.9136355546573873, + "frosmoth": 2.500219046275288, + "indeedee-male": 3.1982059252064383, + "morpeko": 2.558801861569616, + "copperajah": 1.9375819098735214, + "duraludon": 1.2342991782793455, + "drakloak": 4.935316302108472 }, "noctowl": { - "ivysaur": 3.8885692063530346, - "charmeleon": 3.64575067998679, - "wartortle": 2.469418902967286, - "butterfree": 5.742953627006765, - "raichu": 4.26657132696902, - "raichu-alola": 2.945512433803593, - "sandslash": 2.0439708890885937, - "sandslash-alola": 1.3724049181829403, - "nidoqueen": 2.8199091463592025, - "nidoking": 1.5496120750199924, - "clefairy": 8.940159616715837, - "clefable": 1.924501341855958, - "jigglypuff": 25.079078286105922, - "wigglytuff": 1.885652280733547, - "gloom": 6.477824974141735, - "vileplume": 3.5958842971752274, - "dugtrio": 3.1445509169759194, - "dugtrio-alola": 2.789683294979045, - "persian": 3.7045116042672626, - "persian-alola": 3.8633892245297536, - "golduck": 2.692287351948977, - "poliwrath": 1.9502838159984612, - "kadabra": 3.8703370629448033, - "machoke": 3.7419037832556343, - "tentacruel": 2.250823205997053, - "slowbro": 1.6688471268159235, - "magneton": 2.4428055349762077, - "haunter": 4.568999668702115, - "kingler": 2.3665341964940363, - "exeggutor": 2.1697284989421517, - "marowak": 2.9401370181348963, - "marowak-alola": 1.776313589786898, - "hitmonlee": 2.776564099366585, - "hitmonchan": 2.1358439723368283, - "lickitung": 1.6699994890378376, - "weezing": 1.5406583125816211, - "weezing-galar": 2.5435135168463185, - "rhydon": 1.9311252643187615, - "chansey": 26.679277008017614, - "tangela": 4.96199892733936, - "kangaskhan": 1.6136095244590898, - "seadra": 4.162099151568113, - "seaking": 2.2106686749018785, - "starmie": 1.260917021848694, - "mr-mime": 6.654667433476054, - "mr-mime-galar": 3.224558334563398, - "scyther": 2.8405616072478774, - "jynx": 4.136832738144776, - "electabuzz": 2.040832137635901, - "magmar": 1.6292174853053984, - "tauros": 1.854368501773037, - "ditto": 7.9402721776282155, - "vaporeon": 3.0692367463744743, - "jolteon": 1.6820712618681446, - "flareon": 2.416934415484241, - "porygon": 2.4291038798674296, - "dragonair": 1.5443156676346437, - "lanturn": 1.6494527351761352, - "togetic": 4.809005239706835, - "xatu": 3.5649132923092477, - "bellossom": 2.739792423934918, - "azumarill": 1.8503571327620756, - "sudowoodo": 1.971929469951891, - "politoed": 2.4379087411560194, - "quagsire": 4.418601877178221, - "slowking": 2.1150304159081754, - "dunsparce": 2.9980111036614026, - "qwilfish": 2.99576426131741, - "sneasel": 1.9615897596303502, - "piloswine": 1.2904530756398174, - "octillery": 2.1932865315083396, - "mantine": 2.370273361787823, - "skarmory": 1.5689990573208827, - "hitmontop": 2.8506029855312187, - "miltank": 3.1450260411015556, - "grovyle": 9.485189736986245, - "sceptile": 1.6642428371600189, - "combusken": 3.6853092458430607, - "blaziken": 1.729931002955564, - "marshtomp": 2.1682293005660713, - "swampert": 1.1400115212637894, - "linoone": 4.820131758602204, - "linoone-galar": 4.2187909815071665, - "pelipper": 5.495002519810839, - "ninjask": 8.74123590628114, - "exploud": 1.43249868542218, - "lairon": 1.5111461587368171, - "manectric": 1.5647877267492534, - "roselia": 5.048649465315091, - "sharpedo": 4.264498570356371, - "wailmer": 5.830009763406851, - "torkoal": 1.8465187343692022, - "flygon": 2.1546464975652633, - "altaria": 1.518780473567527, - "whiscash": 1.8807507846791438, - "crawdaunt": 1.8700902439237215, - "claydol": 3.0325796120201174, - "cradily": 2.101115549474648, - "armaldo": 1.6039947357311104, - "dusclops": 3.431383417218518, - "absol": 1.6837471203708723, - "glalie": 3.2770913807824584, - "sealeo": 2.7672113217877725, - "relicanth": 1.3942593792764364, - "metang": 2.061198604778432, - "luxray": 3.1520166288025258, - "vespiquen": 2.9253891589656735, - "cherrim": 6.9308932641204954, - "gastrodon": 1.8194508684295916, - "drifblim": 3.741878620630538, - "lopunny": 3.131369975387133, - "skuntank": 1.2887933033750585, - "bronzong": 2.2834323230343276, - "munchlax": 1.9510145588671812, - "drapion": 2.1738325205047486, - "abomasnow": 3.236843707482854, - "froslass": 2.4312878672741594, - "rotom": 2.8721010184995404, - "stoutland": 2.0578460833674153, - "liepard": 5.9841726161150515, - "musharna": 1.4372277482101343, - "unfezant": 5.558064267881281, - "boldore": 2.5628552700727134, - "swoobat": 5.08710063118717, - "audino": 2.1181063872301054, - "gurdurr": 2.237089332751205, - "palpitoad": 3.6448717309389163, - "seismitoad": 5.918825937052996, - "scolipede": 3.333117958660155, - "whimsicott": 3.4457663402706897, - "lilligant": 3.650079137160472, - "basculin-red-striped": 2.3325412715174902, - "basculin-blue-striped": 3.2457304054880667, - "krookodile": 2.6496807572810623, - "maractus": 2.579315580471331, - "crustle": 1.629256910960478, - "sigilyph": 2.1644640346600608, - "cofagrigus": 2.4784433049777554, - "garbodor": 1.6138001421376913, - "cinccino": 3.6733273804170707, - "vanillish": 1.8690895745062603, - "emolga": 2.476832848455731, - "escavalier": 1.7022129531738774, - "amoonguss": 3.0015571265719654, - "jellicent": 1.397707133740207, - "galvantula": 1.349613029199741, - "klang": 2.065285189767425, - "klinklang": 2.481695141575668, - "beheeyem": 1.6722903832943345, - "lampent": 2.3415095161595523, - "fraxure": 1.3643555594756822, - "beartic": 1.4639869829889172, - "cryogonal": 1.5969332552756617, - "accelgor": 3.958064439025872, - "stunfisk": 1.1846341672202407, - "stunfisk-galar": 1.9550378612469466, - "mienshao": 3.416657455842172, - "druddigon": 1.6135675084916286, - "golurk": 1.7756433601690012, - "bisharp": 1.8398644814109777, - "bouffalant": 1.086136690005946, - "heatmor": 1.7268087341476495, - "durant": 2.297888669156211, - "diggersby": 2.961058344799223, - "talonflame": 2.6670476670276275, - "pangoro": 1.787431397155122, - "doublade": 1.5693577273019237, - "malamar": 2.5042994658555733, - "barbaracle": 1.1422704786905615, - "heliolisk": 3.0435618251702965, - "tyrantrum": 1.1727626566547866, - "aurorus": 1.8037434204403082, - "hawlucha": 3.521597304128827, - "dedenne": 2.5716752495948194, - "klefki": 2.2988215424908653, - "trevenant": 3.3814042193175373, - "gourgeist-average": 5.823013526381592, - "charjabug": 3.3709826973466566, - "vikavolt": 1.674227268110445, - "ribombee": 5.621604190050565, - "lycanroc-midday": 2.2625751735202635, - "lycanroc-midnight": 1.6816315315078003, - "mudsdale": 1.4209134706799675, - "araquanid": 2.7097739789157176, - "lurantis": 2.785773595411798, - "shiinotic": 5.14815959606195, - "salazzle": 2.8738061690631502, - "bewear": 1.7287740950257318, - "tsareena": 3.399008815913, - "comfey": 4.319498527621162, - "oranguru": 2.4981800277532455, - "passimian": 2.1542092171071694, - "palossand": 1.9867068687396925, - "pyukumuku": 38.97093636218746, - "togedemaru": 1.5930953002067425, - "mimikyu-disguised": 3.9493707183109334, - "greedent": 1.835093226272778, - "orbeetle": 2.1520673929738257, - "thievul": 1.7635122447178029, - "eldegoss": 4.795105276510509, - "dubwool": 2.5979003420751887, - "drednaw": 0.898498312650027, - "boltund": 3.9208388685778406, - "carkol": 1.7258951878986835, - "coalossal": 1.6196238591798993, - "sandaconda": 3.108964059126425, - "cramorant": 4.877968596778736, - "barraskewda": 3.9623689124238375, - "toxtricity-amped": 2.3749030537246196, - "centiskorch": 2.4321592267902017, - "grapploct": 1.8139591374787847, - "polteageist": 2.5649765431413316, - "hatterene": 2.241830786491976, - "grimmsnarl": 3.491085785575021, - "obstagoon": 2.1907810738217104, - "perrserker": 2.4180593767462755, - "alcremie": 1.435521923104782, - "falinks": 3.071173189257423, - "pincurchin": 2.598727164839648, - "frosmoth": 3.299028534534938, - "indeedee-male": 3.236541794833483, - "morpeko": 2.1226632184282037, - "copperajah": 1.8124062039321907, - "duraludon": 1.166983990272965, - "drakloak": 4.034624153647143, - "noctowl": 5.422923258843294 + "ivysaur": 3.893878410701233, + "charmeleon": 3.6440847990089846, + "wartortle": 2.466986145060812, + "butterfree": 5.750155835389251, + "raichu": 4.25665732414426, + "raichu-alola": 2.9379036318902965, + "sandslash": 2.0412389058151916, + "sandslash-alola": 1.3652334028750857, + "nidoqueen": 2.8238883792904543, + "nidoking": 1.546030638446475, + "clefairy": 8.94288821596391, + "clefable": 1.9222007272360049, + "jigglypuff": 25.06321635031872, + "wigglytuff": 1.8842634940835974, + "gloom": 6.479487563999012, + "vileplume": 3.602383672624229, + "dugtrio": 3.1427444817568193, + "dugtrio-alola": 2.785249018481845, + "persian": 3.6954270146703463, + "persian-alola": 3.8564247610283724, + "golduck": 2.687451436470047, + "poliwrath": 1.9475903713689593, + "kadabra": 3.8644543444642148, + "machoke": 3.7335593788482786, + "tentacruel": 2.24883462948796, + "slowbro": 1.667001371890418, + "magneton": 2.4354059248028017, + "haunter": 4.573811428456882, + "kingler": 2.3634841219451745, + "exeggutor": 2.17039930537803, + "marowak": 2.9386966239616705, + "marowak-alola": 1.7736110131065241, + "hitmonlee": 2.774174144874739, + "hitmonchan": 2.129793123174871, + "lickitung": 1.6666032331494662, + "weezing": 1.540017630440747, + "weezing-galar": 2.542980938555155, + "rhydon": 1.9255968899428753, + "chansey": 26.645257750914638, + "tangela": 4.959993763123939, + "kangaskhan": 1.610369328889313, + "seadra": 4.159315942908212, + "seaking": 2.2078447488519823, + "starmie": 1.2580795764299009, + "mr-mime": 6.650228225968863, + "mr-mime-galar": 3.2181754690516877, + "scyther": 2.837232370603097, + "jynx": 4.127949975591688, + "electabuzz": 2.034409001838278, + "magmar": 1.6283949994681586, + "tauros": 1.8519359048708097, + "ditto": 7.882089322242825, + "vaporeon": 3.0675629424421977, + "jolteon": 1.6792379899294778, + "flareon": 2.417315400314937, + "porygon": 2.423816549794294, + "dragonair": 1.5400032930033034, + "noctowl": 5.422923258843294, + "lanturn": 1.646708892814055, + "togetic": 4.8036726782128945, + "xatu": 3.5623122129550513, + "bellossom": 2.742541642373393, + "azumarill": 1.8476934653794006, + "sudowoodo": 1.9648907708344892, + "politoed": 2.4368221473002274, + "quagsire": 4.416559190239043, + "slowking": 2.108920072801484, + "dunsparce": 2.995152344278859, + "qwilfish": 2.9889519280810912, + "sneasel": 1.95412534019632, + "piloswine": 1.2856346226070625, + "octillery": 2.1920526581287576, + "mantine": 2.3689163296822837, + "skarmory": 1.5651552497754482, + "hitmontop": 2.8476856969047857, + "miltank": 3.1367503250736393, + "grovyle": 9.491734126321585, + "sceptile": 1.6660455978665878, + "combusken": 3.6857197268315174, + "blaziken": 1.7289763802542852, + "marshtomp": 2.1644095209132566, + "swampert": 1.139997731669544, + "linoone": 4.81595304496739, + "linoone-galar": 4.210029146417593, + "pelipper": 5.484581938687171, + "ninjask": 8.747552183982446, + "exploud": 1.4304581158769611, + "lairon": 1.5036406220396517, + "manectric": 1.5617110530713272, + "roselia": 5.0547569746752785, + "sharpedo": 4.25333391224833, + "wailmer": 5.821914978907617, + "torkoal": 1.8452736910576197, + "flygon": 2.1520278080852044, + "altaria": 1.5178101856906248, + "whiscash": 1.8778229239575945, + "crawdaunt": 1.8663633978940195, + "claydol": 3.027948442143903, + "cradily": 2.0984091515250913, + "armaldo": 1.600928886427332, + "dusclops": 3.435175392507208, + "absol": 1.6799878478700876, + "glalie": 3.263744449564685, + "sealeo": 2.7612323990340184, + "relicanth": 1.3874176295603342, + "metang": 2.0522141722660794, + "luxray": 3.141393176687072, + "vespiquen": 2.923532492891134, + "cherrim": 6.938058008602597, + "gastrodon": 1.8144614416790141, + "drifblim": 3.732479238370967, + "lopunny": 3.123379610618622, + "skuntank": 1.286845007116952, + "bronzong": 2.2759082561243296, + "munchlax": 1.944572736659714, + "drapion": 2.170670119650952, + "abomasnow": 3.2296808873724814, + "froslass": 2.4237972861503616, + "rotom": 2.8667631458890077, + "stoutland": 2.052093232443595, + "liepard": 5.970085899893756, + "musharna": 1.435993402337226, + "unfezant": 5.547367436401142, + "boldore": 2.5538038484554075, + "swoobat": 5.08317433262534, + "audino": 2.1163673800000726, + "gurdurr": 2.2363525856092403, + "palpitoad": 3.6455545952144965, + "seismitoad": 5.912540902452813, + "scolipede": 3.3317759534230618, + "whimsicott": 3.446484242948787, + "lilligant": 3.6559167194833826, + "basculin-red-striped": 2.3253693547085397, + "basculin-blue-striped": 3.24037771263905, + "krookodile": 2.647539944915403, + "maractus": 2.582407642303878, + "crustle": 1.624137909197376, + "sigilyph": 2.1628200721266975, + "cofagrigus": 2.4791934919974636, + "garbodor": 1.6107500850870342, + "cinccino": 3.6596358164683727, + "vanillish": 1.8640202358301952, + "emolga": 2.469665624411902, + "escavalier": 1.7016443543530513, + "amoonguss": 3.0041562762944967, + "jellicent": 1.395030080003013, + "galvantula": 1.3468593609564252, + "klang": 2.059003201082804, + "klinklang": 2.4730179810410893, + "beheeyem": 1.6701062500627613, + "lampent": 2.3395766445741533, + "fraxure": 1.3613058743127033, + "beartic": 1.4603757957518737, + "cryogonal": 1.593529488696222, + "accelgor": 3.9637177279781333, + "stunfisk": 1.1834164397938716, + "stunfisk-galar": 1.9538120160334569, + "mienshao": 3.410526999359025, + "druddigon": 1.611442434243867, + "golurk": 1.7751647463415332, + "bisharp": 1.8335192181885676, + "bouffalant": 1.0836639626401265, + "heatmor": 1.7259282286915434, + "durant": 2.2907285752664426, + "diggersby": 2.9583733224227347, + "talonflame": 2.664832240980839, + "pangoro": 1.7848706901835656, + "doublade": 1.5631693014549706, + "malamar": 2.498777960021262, + "barbaracle": 1.1377687656831321, + "heliolisk": 3.037285629337542, + "tyrantrum": 1.1677028548473651, + "aurorus": 1.7944047082350636, + "hawlucha": 3.516564980046179, + "dedenne": 2.5661451106675326, + "klefki": 2.293712244692706, + "trevenant": 3.3801298500006927, + "gourgeist-average": 5.829788004587623, + "charjabug": 3.359605613231265, + "vikavolt": 1.6725060916069943, + "ribombee": 5.628373274131615, + "lycanroc-midday": 2.2498231387169234, + "lycanroc-midnight": 1.6737003696085835, + "mudsdale": 1.4190714792072727, + "araquanid": 2.70877639703651, + "lurantis": 2.7878654943627104, + "shiinotic": 5.149460625894198, + "salazzle": 2.8707791298813916, + "bewear": 1.7250095688916793, + "tsareena": 3.3985673056240344, + "comfey": 4.320927462424141, + "oranguru": 2.494682581782846, + "passimian": 2.149539898434833, + "palossand": 1.9886302023864086, + "pyukumuku": 38.9196038959279, + "togedemaru": 1.5858854557364714, + "mimikyu-disguised": 3.9488917915333843, + "greedent": 1.8300997650642292, + "orbeetle": 2.1527570724883196, + "thievul": 1.7619090640099326, + "eldegoss": 4.801202536332497, + "dubwool": 2.59235051678084, + "drednaw": 0.8948421858221485, + "boltund": 3.90919673173693, + "carkol": 1.72040728108346, + "coalossal": 1.6157382315701136, + "sandaconda": 3.10859771221238, + "cramorant": 4.867051175850123, + "barraskewda": 3.9525732521220713, + "toxtricity-amped": 2.3684465310012826, + "centiskorch": 2.4333362646674725, + "grapploct": 1.813367303053411, + "polteageist": 2.562210058823724, + "hatterene": 2.2387740956265785, + "grimmsnarl": 3.4876547781708807, + "obstagoon": 2.184263136797908, + "perrserker": 2.4100439759795393, + "alcremie": 1.4355773789405375, + "falinks": 3.0682904273731677, + "pincurchin": 2.592722712092214, + "frosmoth": 3.3000880285393244, + "indeedee-male": 3.23689082828532, + "morpeko": 2.1130812345757133, + "copperajah": 1.8077077147571763, + "duraludon": 1.163120142424536, + "drakloak": 4.028184061296716 }, "lanturn": { - "ivysaur": 2.4997124324672733, - "charmeleon": 5.440021015899872, - "wartortle": 3.8690432916860136, - "butterfree": 5.248968839559539, - "raichu": 6.02394514507292, - "raichu-alola": 3.837268386053469, - "sandslash": 3.0282445104546603, - "sandslash-alola": 2.2214658744773415, - "nidoqueen": 3.5680292476041924, - "nidoking": 2.528243616885063, - "clefairy": 9.00987488868781, - "clefable": 2.1226953411718776, - "jigglypuff": 27.272034946199057, - "wigglytuff": 2.0806256655862727, - "gloom": 4.914842913501147, - "vileplume": 2.3887331325672156, - "dugtrio": 4.21738205029177, - "dugtrio-alola": 4.339495090032871, - "persian": 4.257797880304929, - "persian-alola": 4.337091756493905, - "golduck": 4.228710464749916, - "poliwrath": 2.582909405383316, - "kadabra": 3.694502217180401, - "machoke": 3.987855612106149, - "tentacruel": 2.920651735835083, - "slowbro": 2.510938925119735, - "magneton": 4.204872780078741, - "haunter": 4.330940764677965, - "kingler": 3.744495127583936, - "exeggutor": 1.5832685301130394, - "marowak": 4.106260561520893, - "marowak-alola": 3.1331778083746498, - "hitmonlee": 2.23574611244731, - "hitmonchan": 2.3519120534543934, - "lickitung": 2.2023012038293697, - "weezing": 1.8222846578715282, - "weezing-galar": 2.9725631809483977, - "rhydon": 4.71853200903019, - "chansey": 20.222469562155368, - "tangela": 4.009074742095757, - "kangaskhan": 1.7912627764044413, - "seadra": 6.633192055304387, - "seaking": 3.0563404959636453, - "starmie": 1.940285729207985, - "mr-mime": 6.49724314635594, - "mr-mime-galar": 3.8765634570913585, - "scyther": 3.507746413830664, - "jynx": 4.184633339978749, - "electabuzz": 3.5230239798174914, - "magmar": 2.2437403167637355, - "tauros": 2.0211180795229557, - "ditto": 3.203367752454085, - "vaporeon": 4.123400230114773, - "jolteon": 2.085208427928899, - "flareon": 3.084962303786294, - "porygon": 3.1248873039801195, - "dragonair": 1.6824808314280442, - "noctowl": 6.956563790464494, - "togetic": 6.959260205317262, - "xatu": 5.213649848996431, - "bellossom": 1.9634058778128591, - "azumarill": 3.2823515926475704, - "sudowoodo": 3.4856703368205357, - "politoed": 3.156632261113603, - "quagsire": 5.175244500122792, - "slowking": 3.160075612908724, - "dunsparce": 3.4898575213053498, - "qwilfish": 5.123803247012846, - "sneasel": 2.2374363226203844, - "piloswine": 2.2777063804527766, - "octillery": 3.305173112819258, - "mantine": 4.296731799249247, - "skarmory": 3.3507842767379508, - "hitmontop": 2.578516652101829, - "miltank": 3.7896811182300594, - "grovyle": 6.20579772214329, - "sceptile": 1.1345355481823716, - "combusken": 4.592085294936535, - "blaziken": 2.2423513018896597, - "marshtomp": 2.562323498045018, - "swampert": 1.3172463910934462, - "linoone": 5.174804813129728, - "linoone-galar": 4.768922019410855, - "pelipper": 13.15849633700332, - "ninjask": 9.185696068939635, - "exploud": 1.706833170300065, - "lairon": 3.9212047282622957, - "manectric": 1.9807821740756109, - "roselia": 3.1072568566978873, - "sharpedo": 6.618515718877181, - "wailmer": 9.426917746932205, - "torkoal": 3.155960484180623, - "flygon": 2.425046090666494, - "altaria": 1.6732576174484926, - "whiscash": 2.3033783947582305, - "crawdaunt": 2.9926315787826274, - "claydol": 4.3105197864727325, - "cradily": 2.181463558419778, - "armaldo": 2.4121821037861784, - "dusclops": 3.4352684318350297, - "absol": 2.0801185549777617, - "glalie": 4.39385236641834, - "sealeo": 4.451520192791992, - "relicanth": 2.74212676805302, - "metang": 3.475484869624635, - "luxray": 4.629615358965202, - "vespiquen": 3.5282647871342787, - "cherrim": 4.654941023115187, - "gastrodon": 2.167856503889614, - "drifblim": 6.465117439151007, - "lopunny": 3.6585075466209758, - "skuntank": 1.5414870837281125, - "bronzong": 3.304778548844759, - "munchlax": 2.2652205159655283, - "drapion": 2.650607175754253, - "abomasnow": 2.662324663620966, - "froslass": 3.118502411639388, - "rotom": 4.486395179309004, - "stoutland": 2.4129100320372885, - "liepard": 7.0414421809931, - "musharna": 1.502220851082945, - "unfezant": 9.421748643935286, - "boldore": 4.752857345522807, - "swoobat": 7.4615347519899995, - "audino": 2.3889828263484167, - "gurdurr": 2.290615692922904, - "palpitoad": 3.8669346090671533, - "seismitoad": 6.587075475564729, - "scolipede": 3.3351424085746437, - "whimsicott": 2.6480818923791345, - "lilligant": 2.464431540120728, - "basculin-red-striped": 4.018165215598742, - "basculin-blue-striped": 5.203671009205076, - "krookodile": 3.619811787367709, - "maractus": 1.7195529867218704, - "crustle": 2.9364169346764837, - "sigilyph": 3.2294185563623756, - "cofagrigus": 2.8274944402940543, - "garbodor": 1.8653981956433394, - "cinccino": 4.756936190987608, - "vanillish": 2.335217024903102, - "emolga": 4.226821174331286, - "escavalier": 1.7783438794517052, - "amoonguss": 2.068203913586827, - "jellicent": 2.0946353127577764, - "galvantula": 2.099507752438935, - "klang": 3.4101068063091406, - "klinklang": 3.7905280760717917, - "beheeyem": 1.8165200525085967, - "lampent": 3.894456506573587, - "fraxure": 1.3349136417554732, - "beartic": 1.9105219723657667, - "cryogonal": 1.704227512776044, - "accelgor": 3.040631053941979, - "stunfisk": 1.7886903365794258, - "stunfisk-galar": 3.0858852772291865, - "mienshao": 3.4216335279125136, - "druddigon": 1.5678077771546297, - "golurk": 2.41607641672133, - "bisharp": 2.5389181720361016, - "bouffalant": 1.326009126409779, - "heatmor": 2.653701226856451, - "durant": 3.8151203026565756, - "diggersby": 3.821287755269361, - "talonflame": 4.311048135261852, - "pangoro": 1.8108224559873445, - "doublade": 3.0096541882476537, - "malamar": 3.1530124582509087, - "barbaracle": 2.0282976945954894, - "heliolisk": 3.345503832761602, - "tyrantrum": 1.7117949422803291, - "aurorus": 3.2759621791359157, - "hawlucha": 4.649222581875658, - "dedenne": 3.310409920818578, - "klefki": 3.3318981112672237, - "trevenant": 2.2730397637338586, - "gourgeist-average": 4.676052104914847, - "charjabug": 4.652228486823157, - "vikavolt": 2.035290324538297, - "ribombee": 4.724947000954604, - "lycanroc-midday": 4.286638750717582, - "lycanroc-midnight": 3.0061661418663257, - "mudsdale": 2.030937113348514, - "araquanid": 2.955309333362018, - "lurantis": 1.9744881373220218, - "shiinotic": 3.80077008978862, - "salazzle": 4.333024932021435, - "bewear": 1.8247534571387236, - "tsareena": 2.4559650283322942, - "comfey": 4.22677152992988, - "oranguru": 2.639917432279713, - "passimian": 2.4984890485947937, - "palossand": 2.8258768254478452, - "pyukumuku": 57.67852992798795, - "togedemaru": 2.6732167000215616, - "mimikyu-disguised": 3.875420508809327, - "greedent": 2.2619330980518004, - "orbeetle": 1.863367173461787, - "thievul": 1.849418996514248, - "eldegoss": 3.057153322845272, - "dubwool": 2.8573552031829674, - "drednaw": 1.7360584402877577, - "boltund": 5.536033291471101, - "carkol": 4.765234736664325, - "coalossal": 4.042513075888023, - "sandaconda": 4.35163814692798, - "cramorant": 9.349807527894846, - "barraskewda": 6.360580722827063, - "toxtricity-amped": 3.1451391812639917, - "centiskorch": 2.554308854715268, - "grapploct": 1.8022472354232018, - "polteageist": 2.403594233410404, - "hatterene": 2.5333722974009203, - "grimmsnarl": 3.875527157548152, - "obstagoon": 2.7783567484835263, - "perrserker": 3.919610714699685, - "alcremie": 1.4128389699556911, - "falinks": 3.4352251128742983, - "pincurchin": 3.564174906933839, - "frosmoth": 2.6885773716276975, - "indeedee-male": 3.1526228800626983, - "morpeko": 3.5021806852470396, - "copperajah": 2.635903401865414, - "duraludon": 1.5558051386047667, - "drakloak": 3.7655272254130043, - "lanturn": 1.8943867275027642 + "ivysaur": 2.493718255353541, + "charmeleon": 5.461784590664426, + "wartortle": 3.880388594126082, + "butterfree": 5.251604389069728, + "raichu": 6.043935210421894, + "raichu-alola": 3.847152505215659, + "sandslash": 3.031375949398292, + "sandslash-alola": 2.225972879310595, + "nidoqueen": 3.5716828259099733, + "nidoking": 2.5346179384352587, + "clefairy": 9.019801451938818, + "clefable": 2.1258506548904803, + "jigglypuff": 27.309799449564707, + "wigglytuff": 2.0833261535189145, + "gloom": 4.911465747438907, + "vileplume": 2.384060340756167, + "dugtrio": 4.2147542733737176, + "dugtrio-alola": 4.344301829817282, + "persian": 4.2592497889720455, + "persian-alola": 4.340596411628972, + "golduck": 4.237791667903739, + "poliwrath": 2.583072067828211, + "kadabra": 3.693379366635834, + "machoke": 3.992851238372797, + "tentacruel": 2.9259372985866157, + "slowbro": 2.5158913483435015, + "magneton": 4.230632667184973, + "haunter": 4.335167056337259, + "kingler": 3.751582784407943, + "exeggutor": 1.5792476391049393, + "marowak": 4.110742805244304, + "marowak-alola": 3.1478758815072694, + "hitmonlee": 2.236646658000406, + "hitmonchan": 2.3596971042728443, + "lickitung": 2.210043094677558, + "weezing": 1.8270035595390923, + "weezing-galar": 2.981252287170607, + "rhydon": 4.731856419553613, + "chansey": 20.173676936513154, + "tangela": 3.998568503832834, + "kangaskhan": 1.791185690161543, + "seadra": 6.6514317926337805, + "seaking": 3.0590816851843927, + "starmie": 1.9433918020597534, + "mr-mime": 6.500797732810112, + "mr-mime-galar": 3.880109573930219, + "scyther": 3.514639748465882, + "jynx": 4.175675834949424, + "electabuzz": 3.545014627260122, + "magmar": 2.2513871812099606, + "tauros": 2.021941341017329, + "ditto": 3.1855414246678615, + "vaporeon": 4.125803399892465, + "jolteon": 2.0899438633704936, + "flareon": 3.093251973988261, + "porygon": 3.134080959458, + "dragonair": 1.6833898756793015, + "noctowl": 6.969244667922265, + "lanturn": 1.8943867275027642, + "togetic": 6.97884268805918, + "xatu": 5.2287047231832515, + "bellossom": 1.9593244791671047, + "azumarill": 3.292714080976341, + "sudowoodo": 3.4932059191064964, + "politoed": 3.1591893091087706, + "quagsire": 5.182704035588463, + "slowking": 3.1655582512491733, + "dunsparce": 3.4968489337390216, + "qwilfish": 5.136958344491136, + "sneasel": 2.2380435622124883, + "piloswine": 2.2834483486627417, + "octillery": 3.313573033371235, + "mantine": 4.308424862575337, + "skarmory": 3.3658812969393184, + "hitmontop": 2.5795081873636976, + "miltank": 3.79379666574692, + "grovyle": 6.189460353447768, + "sceptile": 1.1313764496722847, + "combusken": 4.6083976012048895, + "blaziken": 2.2506751857749925, + "marshtomp": 2.5630092876438626, + "swampert": 1.3174973187005912, + "linoone": 5.176987872787853, + "linoone-galar": 4.771595177226816, + "pelipper": 13.200393103049405, + "ninjask": 9.194873048829011, + "exploud": 1.7090308083574306, + "lairon": 3.94012355730246, + "manectric": 1.98491738814031, + "roselia": 3.0996245977694423, + "sharpedo": 6.626710507204235, + "wailmer": 9.456608965716796, + "torkoal": 3.1717459294216703, + "flygon": 2.4246691222940724, + "altaria": 1.6741646991490577, + "whiscash": 2.30527760368551, + "crawdaunt": 2.9980109431978423, + "claydol": 4.31709353626097, + "cradily": 2.180170675618027, + "armaldo": 2.4166044103566136, + "dusclops": 3.4407496927153156, + "absol": 2.0832010415741595, + "glalie": 4.401017377452594, + "sealeo": 4.463824196683463, + "relicanth": 2.749425693785251, + "metang": 3.491015596301645, + "luxray": 4.649050988384731, + "vespiquen": 3.5354768434759474, + "cherrim": 4.643404008830085, + "gastrodon": 2.1677231217074837, + "drifblim": 6.501451525997956, + "lopunny": 3.661129253457316, + "skuntank": 1.5444686574498017, + "bronzong": 3.3124876974625144, + "munchlax": 2.268668329243744, + "drapion": 2.6573868812065267, + "abomasnow": 2.656121562294451, + "froslass": 3.126236844169711, + "rotom": 4.509028763658695, + "stoutland": 2.4134452903510097, + "liepard": 7.047131960377685, + "musharna": 1.5025792679313006, + "unfezant": 9.459827495965708, + "boldore": 4.764942563825724, + "swoobat": 7.483014872327812, + "audino": 2.392939714241956, + "gurdurr": 2.29265825122429, + "palpitoad": 3.8669453204514443, + "seismitoad": 6.585560931604091, + "scolipede": 3.3400026794273323, + "whimsicott": 2.6448789697307205, + "lilligant": 2.4590191552425136, + "basculin-red-striped": 4.027978803308969, + "basculin-blue-striped": 5.216662711638162, + "krookodile": 3.622620728333123, + "maractus": 1.7112285595746188, + "crustle": 2.9452620256285673, + "sigilyph": 3.2400301549005484, + "cofagrigus": 2.8343906385977635, + "garbodor": 1.8673473874918856, + "cinccino": 4.762658793369267, + "vanillish": 2.339490054575148, + "emolga": 4.257845145886641, + "escavalier": 1.779608812383921, + "amoonguss": 2.0644214466116435, + "jellicent": 2.0964309379285715, + "galvantula": 2.112284818067341, + "klang": 3.42899426231143, + "klinklang": 3.802380185600394, + "beheeyem": 1.8181825839748909, + "lampent": 3.9137051740959303, + "fraxure": 1.3335678593730727, + "beartic": 1.914295851076247, + "cryogonal": 1.7046520480203453, + "accelgor": 3.042664018898932, + "stunfisk": 1.794546131642924, + "stunfisk-galar": 3.090171268452802, + "mienshao": 3.425313895439077, + "druddigon": 1.567113989719269, + "golurk": 2.419301475617673, + "bisharp": 2.5422797416494953, + "bouffalant": 1.3280059684140038, + "heatmor": 2.6640302092093218, + "durant": 3.833577197209334, + "diggersby": 3.8199764881746, + "talonflame": 4.335792679128395, + "pangoro": 1.8132975004124132, + "doublade": 3.024243172457151, + "malamar": 3.160880410624236, + "barbaracle": 2.032699634467804, + "heliolisk": 3.3393811539698106, + "tyrantrum": 1.7131836408894252, + "aurorus": 3.2881036327635367, + "hawlucha": 4.658235915451455, + "dedenne": 3.3231871022652024, + "klefki": 3.3426164192427033, + "trevenant": 2.267243727146428, + "gourgeist-average": 4.678602254210635, + "charjabug": 4.672729049250599, + "vikavolt": 2.039792900197855, + "ribombee": 4.73078067160971, + "lycanroc-midday": 4.29633519836432, + "lycanroc-midnight": 3.0125987012714224, + "mudsdale": 2.0328717022571148, + "araquanid": 2.9547667740071972, + "lurantis": 1.9704926924574413, + "shiinotic": 3.797496618953211, + "salazzle": 4.349172674992548, + "bewear": 1.8256888012073442, + "tsareena": 2.449916216015672, + "comfey": 4.227971210128155, + "oranguru": 2.641072054722249, + "passimian": 2.5035069089300697, + "palossand": 2.830544409389085, + "pyukumuku": 57.76000833916127, + "togedemaru": 2.6835095837550904, + "mimikyu-disguised": 3.8791767419304626, + "greedent": 2.2650652532428976, + "orbeetle": 1.8649919047996002, + "thievul": 1.8514134596776728, + "eldegoss": 3.048675510796821, + "dubwool": 2.8565319501947912, + "drednaw": 1.7405878401966022, + "boltund": 5.556889182843262, + "carkol": 4.790182501538137, + "coalossal": 4.064419190767255, + "sandaconda": 4.3568674003071575, + "cramorant": 9.372751124230433, + "barraskewda": 6.370903684655992, + "toxtricity-amped": 3.1584455535496474, + "centiskorch": 2.559917256108959, + "grapploct": 1.8054273757641672, + "polteageist": 2.4033700991162292, + "hatterene": 2.5364015489205816, + "grimmsnarl": 3.8808250253495635, + "obstagoon": 2.7833921671336332, + "perrserker": 3.9370898345561356, + "alcremie": 1.4140935102812249, + "falinks": 3.4425036609074446, + "pincurchin": 3.584240314414897, + "frosmoth": 2.6900972861108574, + "indeedee-male": 3.155302899001744, + "morpeko": 3.5217164375519046, + "copperajah": 2.644542849347821, + "duraludon": 1.56160231775615, + "drakloak": 3.763425123087848 }, "togetic": { - "ivysaur": 3.3332622172437283, - "charmeleon": 3.2140247327156977, - "wartortle": 2.337278274975372, - "butterfree": 4.824045145170205, - "raichu": 4.371249029187082, - "raichu-alola": 2.964029883488398, - "sandslash": 2.0892656890562233, - "sandslash-alola": 2.8293314337716673, - "nidoqueen": 2.491781405295531, - "nidoking": 1.5757156044660494, - "clefairy": 8.397744371141673, - "clefable": 1.7590370574665064, - "jigglypuff": 23.400550454229325, - "wigglytuff": 1.7667532455731578, - "gloom": 5.618213839340211, - "vileplume": 3.510512140586042, - "dugtrio": 3.1325141416669817, - "dugtrio-alola": 3.6473345484647193, - "persian": 3.671725167153843, - "persian-alola": 4.867160795500132, - "golduck": 2.6062511854376473, - "poliwrath": 1.992849215945725, - "kadabra": 3.632478461790628, - "machoke": 3.943739386789132, - "tentacruel": 1.7641510416986073, - "slowbro": 1.4961044287914804, - "magneton": 3.1240094536367695, - "haunter": 3.9772253041576957, - "kingler": 2.1589810708443076, - "exeggutor": 2.2236685890528913, - "marowak": 2.8772521916130005, - "marowak-alola": 1.5014636643496484, - "hitmonlee": 2.9581054144560053, - "hitmonchan": 2.139997269825949, - "lickitung": 1.5708917479183433, - "weezing": 1.4057345479106478, - "weezing-galar": 2.342205266679903, - "rhydon": 1.8760326370742622, - "chansey": 24.391485097231627, - "tangela": 6.386770158111367, - "kangaskhan": 1.7786629305414998, - "seadra": 3.621661688878729, - "seaking": 2.094885403443287, - "starmie": 1.1749123386000866, - "mr-mime": 6.176722808796238, - "mr-mime-galar": 3.3548048031481756, - "scyther": 2.987354961743857, - "jynx": 4.691862240407094, - "electabuzz": 1.9806820583606535, - "magmar": 1.32857402418038, - "tauros": 1.9871367157686564, - "ditto": 4.91846933015073, - "vaporeon": 2.8496527740251136, - "jolteon": 1.6429278708361033, - "flareon": 1.9146503493988756, - "porygon": 2.3394030391666787, - "dragonair": 2.025670904573172, - "noctowl": 5.196817288147386, - "lanturn": 1.5966995425837986, - "xatu": 3.4129650596639634, - "bellossom": 2.5953186460295345, - "azumarill": 1.8035662113796147, - "sudowoodo": 2.1063811313474443, - "politoed": 2.363638103535088, - "quagsire": 4.099189976667868, - "slowking": 2.068301003466506, - "dunsparce": 2.8588605378547367, - "qwilfish": 2.396401644157095, - "sneasel": 2.396630294409946, - "piloswine": 1.2988122168103953, - "octillery": 1.9582530511122997, - "mantine": 2.2265553230870454, - "skarmory": 2.439677933286201, - "hitmontop": 2.918707854631136, - "miltank": 3.189072067579799, - "grovyle": 8.880387391955404, - "sceptile": 1.6319503552494075, - "combusken": 3.1062626676792364, - "blaziken": 1.4531687375477795, - "marshtomp": 2.114460714438643, - "swampert": 1.0605275852506861, - "linoone": 4.636369418971148, - "linoone-galar": 5.232455857480568, - "pelipper": 4.973344744914442, - "ninjask": 9.000039693530717, - "exploud": 1.3511391518097184, - "lairon": 1.85123718143041, - "manectric": 1.5034798852390576, - "roselia": 4.149521100474692, - "sharpedo": 5.551737705791813, - "wailmer": 5.393347994578914, - "torkoal": 1.52458531801767, - "flygon": 2.6510301277737742, - "altaria": 1.7808818383047251, - "whiscash": 1.7489168028463853, - "crawdaunt": 1.9954789789183875, - "claydol": 2.833423493583271, - "cradily": 1.9095296371993822, - "armaldo": 1.729378013280657, - "dusclops": 3.033281764690288, - "absol": 1.9627527265455063, - "glalie": 4.021185161837591, - "sealeo": 2.5934026776497974, - "relicanth": 1.473933286374638, - "metang": 2.858348974632537, - "luxray": 3.04161202797317, - "vespiquen": 3.113472359949783, - "cherrim": 6.507653976550838, - "gastrodon": 1.8251137174417562, - "drifblim": 3.4329917842739226, - "lopunny": 3.246224114572057, - "skuntank": 1.3089108247911305, - "bronzong": 3.1690750587077137, - "munchlax": 1.8588093518653577, - "drapion": 2.198556602394481, - "abomasnow": 4.079256789544187, - "froslass": 2.8287943276478824, - "rotom": 2.9832539730666907, - "stoutland": 2.0741238463630705, - "liepard": 7.4262416967345555, - "musharna": 1.3816325464203039, - "unfezant": 5.615361513878971, - "boldore": 2.698692643376144, - "swoobat": 4.87626090996684, - "audino": 2.0033310972039136, - "gurdurr": 2.429945216070853, - "palpitoad": 3.475159503452459, - "seismitoad": 4.961302334367261, - "scolipede": 3.7541898499639013, - "whimsicott": 3.5374073592258037, - "lilligant": 3.623177473225227, - "basculin-red-striped": 2.2455170651194662, - "basculin-blue-striped": 3.1310240855749063, - "krookodile": 3.1751241710499016, - "maractus": 2.58791454474894, - "crustle": 1.9264740844327521, - "sigilyph": 1.9945346367958037, - "cofagrigus": 2.351743146913594, - "garbodor": 1.4980578111320273, - "cinccino": 3.7141507005698564, - "vanillish": 2.0310458065254013, - "emolga": 2.340403603404991, - "escavalier": 3.014205154466768, - "amoonguss": 2.5362830338701112, - "jellicent": 1.2809956468247938, - "galvantula": 1.5768415664779032, - "klang": 2.6775522545797896, - "klinklang": 3.3407392705673367, - "beheeyem": 1.5862418555479432, - "lampent": 1.9318495895326562, - "fraxure": 1.7940159761495527, - "beartic": 1.6916443279419817, - "cryogonal": 1.4509392625248647, - "accelgor": 3.515862208097588, - "stunfisk": 1.1416495832252154, - "stunfisk-galar": 2.8561364861859717, - "mienshao": 3.4092012050196976, - "druddigon": 1.8684039757069333, - "golurk": 1.7514609533144778, - "bisharp": 2.661425070512035, - "bouffalant": 1.124948610353881, - "heatmor": 1.4744959979819492, - "durant": 5.063738775335386, - "diggersby": 2.9848008612987846, - "talonflame": 2.2110169976599416, - "pangoro": 2.456291839614673, - "doublade": 2.921851409256214, - "malamar": 2.830087292399198, - "barbaracle": 1.1540661519907416, - "heliolisk": 3.4283143047209155, - "tyrantrum": 1.4937999604574332, - "aurorus": 1.893743842521808, - "hawlucha": 3.5381985318777325, - "dedenne": 2.42204518489217, - "klefki": 3.1496962638388073, - "trevenant": 3.507106509194509, - "gourgeist-average": 6.004518236768159, - "charjabug": 4.257712780728748, - "vikavolt": 2.0777026335891438, - "ribombee": 5.343652950974255, - "lycanroc-midday": 2.512052919755264, - "lycanroc-midnight": 1.9762828824953418, - "mudsdale": 1.5854324623933331, - "araquanid": 2.0405645430005457, - "lurantis": 2.7679621478994694, - "shiinotic": 4.619300201143724, - "salazzle": 2.404667525029933, - "bewear": 1.7277119867984534, - "tsareena": 3.433463918920255, - "comfey": 4.06499192390454, - "oranguru": 2.3748802846923764, - "passimian": 2.237930080737022, - "palossand": 1.9648336946814484, - "pyukumuku": 32.43745387404618, - "togedemaru": 2.010120604463996, - "mimikyu-disguised": 3.385523463548333, - "greedent": 1.7789860480570074, - "orbeetle": 2.0719095918524, - "thievul": 2.1502606756221474, - "eldegoss": 4.277521151699917, - "dubwool": 3.338831999052969, - "drednaw": 0.9552285623375796, - "boltund": 3.9720139385829114, - "carkol": 1.6847508326911087, - "coalossal": 1.4932553921123213, - "sandaconda": 3.4014262180903256, - "cramorant": 5.024594811662764, - "barraskewda": 4.178055027311859, - "toxtricity-amped": 2.2214542371395973, - "centiskorch": 1.7763401332915314, - "grapploct": 1.830672965274736, - "polteageist": 2.507611742421435, - "hatterene": 2.1772663356471553, - "grimmsnarl": 4.47266079001697, - "obstagoon": 2.4929787540069466, - "perrserker": 3.516745042400556, - "alcremie": 1.3303012609568257, - "falinks": 3.0626792383840096, - "pincurchin": 2.464323812244169, - "frosmoth": 3.769223343662972, - "indeedee-male": 2.9110365089273658, - "morpeko": 2.5025315531798586, - "copperajah": 2.365826006408874, - "duraludon": 1.5032402501876738, - "drakloak": 5.150181732369382, - "togetic": 4.610716307683052 + "ivysaur": 3.3310912487076236, + "charmeleon": 3.2101311050509693, + "wartortle": 2.333253364837432, + "butterfree": 4.824996083513664, + "raichu": 4.363459966132486, + "raichu-alola": 2.955744912252681, + "sandslash": 2.0881466959561332, + "sandslash-alola": 2.827272856872157, + "nidoqueen": 2.488562198090211, + "nidoking": 1.5724426622007743, + "clefairy": 8.39633385834018, + "clefable": 1.7557571145707942, + "jigglypuff": 23.37147221075849, + "wigglytuff": 1.7644362053483154, + "gloom": 5.605644601856677, + "vileplume": 3.5158175808830885, + "dugtrio": 3.1319190544378683, + "dugtrio-alola": 3.645939108150977, + "persian": 3.6638568919891856, + "persian-alola": 4.8709199040080335, + "golduck": 2.60068413180395, + "poliwrath": 1.9922467108713469, + "kadabra": 3.6262069388230707, + "machoke": 3.9430640590611485, + "tentacruel": 1.7581247160787294, + "slowbro": 1.493116543119048, + "magneton": 3.114492648843116, + "haunter": 3.974766860833836, + "kingler": 2.1576251133568345, + "exeggutor": 2.224792925420624, + "marowak": 2.875600208208816, + "marowak-alola": 1.4967262046942642, + "hitmonlee": 2.9632623288542637, + "hitmonchan": 2.1363868788798843, + "lickitung": 1.5665030258312844, + "weezing": 1.4019511925016626, + "weezing-galar": 2.3378126664348113, + "rhydon": 1.870391383629526, + "chansey": 24.338847163146408, + "tangela": 6.392345131990291, + "kangaskhan": 1.7791503415590793, + "seadra": 3.6179297591729864, + "seaking": 2.09070121089013, + "starmie": 1.171290907744801, + "mr-mime": 6.168618711878318, + "mr-mime-galar": 3.3484491205437115, + "scyther": 2.987798355495938, + "jynx": 4.684236776991648, + "electabuzz": 1.9738450237021155, + "magmar": 1.3251379295692145, + "tauros": 1.988005763575804, + "ditto": 4.887340908361182, + "vaporeon": 2.8450782001909984, + "jolteon": 1.6385021975463108, + "flareon": 1.9090019709006092, + "porygon": 2.333683304271016, + "dragonair": 2.0255311604933057, + "noctowl": 5.188159410712147, + "lanturn": 1.592993466200313, + "togetic": 4.610716307683052, + "xatu": 3.408562887319486, + "bellossom": 2.5969472506691433, + "azumarill": 1.80099014394585, + "sudowoodo": 2.1021335464191666, + "politoed": 2.3619737733012984, + "quagsire": 4.095977810101158, + "slowking": 2.0622021145584766, + "dunsparce": 2.8542941604317993, + "qwilfish": 2.385275567621994, + "sneasel": 2.39514414406225, + "piloswine": 1.295462589979987, + "octillery": 1.9534516855230242, + "mantine": 2.223582041611805, + "skarmory": 2.439187394813961, + "hitmontop": 2.9203040058865493, + "miltank": 3.182587557047528, + "grovyle": 8.893020632427556, + "sceptile": 1.6347393273268795, + "combusken": 3.106626869740112, + "blaziken": 1.4522460430825739, + "marshtomp": 2.110481211633254, + "swampert": 1.0595808310833514, + "linoone": 4.63010694684599, + "linoone-galar": 5.236549184206883, + "pelipper": 4.961188138143676, + "ninjask": 9.019046905385942, + "exploud": 1.348967217312559, + "lairon": 1.8430601798789543, + "manectric": 1.5003955960494664, + "roselia": 4.1493102242461815, + "sharpedo": 5.554602705313127, + "wailmer": 5.379692603862857, + "torkoal": 1.5214987951280037, + "flygon": 2.65289907234839, + "altaria": 1.7825338569830365, + "whiscash": 1.7450755524364143, + "crawdaunt": 1.9941879031881258, + "claydol": 2.82722288465653, + "cradily": 1.904994593068703, + "armaldo": 1.7285092945244425, + "dusclops": 3.0318857375676953, + "absol": 1.9618266161223636, + "glalie": 4.011530858066, + "sealeo": 2.585390701686082, + "relicanth": 1.4684819169225438, + "metang": 2.849912839011851, + "luxray": 3.0314815510390285, + "vespiquen": 3.116498208752084, + "cherrim": 6.511454316685548, + "gastrodon": 1.8208309500998636, + "drifblim": 3.423813183173995, + "lopunny": 3.2422126194620233, + "skuntank": 1.3084167596498588, + "bronzong": 3.1629791078249347, + "munchlax": 1.8519583252537388, + "drapion": 2.19685071003747, + "abomasnow": 4.076242812405711, + "froslass": 2.822646576589718, + "rotom": 2.9770561683990566, + "stoutland": 2.0692842490309173, + "liepard": 7.427370664361909, + "musharna": 1.3801550777029667, + "unfezant": 5.607504601460013, + "boldore": 2.6930070579795364, + "swoobat": 4.869833657563182, + "audino": 2.0005823136973553, + "gurdurr": 2.4358002384492377, + "palpitoad": 3.47373499323074, + "seismitoad": 4.941157684934209, + "scolipede": 3.7566198586779915, + "whimsicott": 3.5387392930498183, + "lilligant": 3.6293872338084388, + "basculin-red-striped": 2.2388485122884543, + "basculin-blue-striped": 3.1263444290474887, + "krookodile": 3.1806774098900066, + "maractus": 2.5918790636998317, + "crustle": 1.9249222214238573, + "sigilyph": 1.9904353371548686, + "cofagrigus": 2.349553954882584, + "garbodor": 1.4921606928115847, + "cinccino": 3.702170810751128, + "vanillish": 2.0256391411604455, + "emolga": 2.3335417101484097, + "escavalier": 3.0228191481859836, + "amoonguss": 2.531471774643173, + "jellicent": 1.278378504818734, + "galvantula": 1.5743316271415586, + "klang": 2.6698735797389923, + "klinklang": 3.330988517677815, + "beheeyem": 1.5836715415491809, + "lampent": 1.926779116099501, + "fraxure": 1.7973176386712981, + "beartic": 1.6893000378444882, + "cryogonal": 1.4472698174297203, + "accelgor": 3.519382491698666, + "stunfisk": 1.1403170814336976, + "stunfisk-galar": 2.8621363162088524, + "mienshao": 3.4066211057064852, + "druddigon": 1.8669994380847799, + "golurk": 1.7522298481924796, + "bisharp": 2.6591465318749687, + "bouffalant": 1.1235495163474623, + "heatmor": 1.470483858123496, + "durant": 5.063727005238793, + "diggersby": 2.9835396268952596, + "talonflame": 2.2045235088296233, + "pangoro": 2.460471275626263, + "doublade": 2.9199886383933986, + "malamar": 2.8277170871989132, + "barbaracle": 1.1493141427622706, + "heliolisk": 3.4231852531536804, + "tyrantrum": 1.4919682867186572, + "aurorus": 1.8849231315823465, + "hawlucha": 3.537094319944448, + "dedenne": 2.4161167057083364, + "klefki": 3.1447764275711356, + "trevenant": 3.5133095047934275, + "gourgeist-average": 6.004387577396426, + "charjabug": 4.250726312213356, + "vikavolt": 2.078034224008885, + "ribombee": 5.350648229945478, + "lycanroc-midday": 2.500854378852159, + "lycanroc-midnight": 1.9714483650748194, + "mudsdale": 1.5875880164782676, + "araquanid": 2.0375821098650455, + "lurantis": 2.7704714147005394, + "shiinotic": 4.617153490400737, + "salazzle": 2.395726381766304, + "bewear": 1.725571010477168, + "tsareena": 3.4347683411044247, + "comfey": 4.064437640507114, + "oranguru": 2.370944304045474, + "passimian": 2.2368646608423717, + "palossand": 1.9656180263641132, + "pyukumuku": 32.34016490990582, + "togedemaru": 2.001524973667934, + "mimikyu-disguised": 3.380074153083044, + "greedent": 1.7736900567916698, + "orbeetle": 2.071943379708632, + "thievul": 2.153033051544819, + "eldegoss": 4.280490623868872, + "dubwool": 3.3397345508941747, + "drednaw": 0.9516273903198547, + "boltund": 3.9639177258432445, + "carkol": 1.6781672296791752, + "coalossal": 1.4882606780594294, + "sandaconda": 3.408957714588678, + "cramorant": 5.018576489116934, + "barraskewda": 4.175966502987327, + "toxtricity-amped": 2.213418384620341, + "centiskorch": 1.7733510224886055, + "grapploct": 1.8338548687087246, + "polteageist": 2.5074778841392846, + "hatterene": 2.1742340384946974, + "grimmsnarl": 4.481111979581716, + "obstagoon": 2.489923008715981, + "perrserker": 3.510869110436185, + "alcremie": 1.3296879254222294, + "falinks": 3.0624773881549325, + "pincurchin": 2.4572895376650035, + "frosmoth": 3.7729734706399727, + "indeedee-male": 2.907279699300459, + "morpeko": 2.4956900872547108, + "copperajah": 2.360767937080807, + "duraludon": 1.499505400216207, + "drakloak": 5.157420413353982 }, "xatu": { - "ivysaur": 4.387244698020476, - "charmeleon": 3.904860915026339, - "wartortle": 2.729503634205149, - "butterfree": 5.454476347050812, - "raichu": 4.703619310110426, - "raichu-alola": 2.6798503568583563, - "sandslash": 2.440162085248253, - "sandslash-alola": 1.5812010378911583, - "nidoqueen": 3.8472489761896163, - "nidoking": 2.4869283627295333, - "clefairy": 9.402468403432291, - "clefable": 1.9178896935497751, - "jigglypuff": 26.625819793409008, - "wigglytuff": 2.027052190871576, - "gloom": 7.56753132398865, - "vileplume": 4.203283425442548, - "dugtrio": 3.474045362957842, - "dugtrio-alola": 2.912690838321403, - "persian": 4.227473462573532, - "persian-alola": 3.355314313075805, - "golduck": 3.0860853539449087, - "poliwrath": 2.77264301040685, - "kadabra": 3.5802735918183197, - "machoke": 5.220211076330598, - "tentacruel": 2.8323314487003763, - "slowbro": 1.9568953469171997, - "magneton": 2.450522724037336, - "haunter": 5.9815097737465415, - "kingler": 3.0839816551314887, - "exeggutor": 2.767883897903621, - "marowak": 3.322053989430488, - "marowak-alola": 2.0633912741130183, - "hitmonlee": 3.1008650755857783, - "hitmonchan": 2.54147140284927, - "lickitung": 1.7348149276432618, - "weezing": 2.3583428829030773, - "weezing-galar": 4.071413579082897, - "rhydon": 2.605502554075306, - "chansey": 18.997889892977916, - "tangela": 8.282856751288929, - "kangaskhan": 1.8355128277909674, - "seadra": 4.678998403483564, - "seaking": 2.5205726642764636, - "starmie": 1.3232021809176397, - "mr-mime": 6.816245567170726, - "mr-mime-galar": 3.0812341236904857, - "scyther": 3.300979900705878, - "jynx": 3.4654213604803177, - "electabuzz": 2.028589022336883, - "magmar": 1.6069449814901762, - "tauros": 2.245966993273159, - "ditto": 4.569444665545789, - "vaporeon": 3.0050859656004096, - "jolteon": 1.6406559999199386, - "flareon": 2.0870468748062403, - "porygon": 2.4522898870591217, - "dragonair": 1.699193432003689, - "noctowl": 5.322976797152135, - "lanturn": 1.7668295911345404, - "togetic": 5.233594761031423, - "bellossom": 3.0669496471511115, - "azumarill": 2.314105348616642, - "sudowoodo": 2.807160899821252, - "politoed": 2.6547447040379515, - "quagsire": 5.171507227803632, - "slowking": 2.283365271960946, - "dunsparce": 3.023104751253567, - "qwilfish": 5.160028694457148, - "sneasel": 1.85319224505574, - "piloswine": 1.4752540534854799, - "octillery": 2.3775301832443225, - "mantine": 2.2282248521874646, - "skarmory": 1.7192789244563709, - "hitmontop": 3.7333808992704416, - "miltank": 3.810209300970114, - "grovyle": 10.644471950490976, - "sceptile": 1.8254677569266504, - "combusken": 5.001730867122104, - "blaziken": 2.3437245014572916, - "marshtomp": 2.5310332155635487, - "swampert": 1.2276580592017337, - "linoone": 4.9056653718989764, - "linoone-galar": 3.7465391599358036, - "pelipper": 6.404951323757734, - "ninjask": 9.602951361783205, - "exploud": 1.485457764756685, - "lairon": 1.8882036688056951, - "manectric": 1.750798409121169, - "roselia": 5.18874339105237, - "sharpedo": 4.569164882476668, - "wailmer": 6.664539900939743, - "torkoal": 2.0801573042829355, - "flygon": 2.4704884498108948, - "altaria": 1.571984556036548, - "whiscash": 2.1086106465876058, - "crawdaunt": 1.9644561788665271, - "claydol": 3.1960859322775717, - "cradily": 2.202430844925196, - "armaldo": 1.9239605088186913, - "dusclops": 3.0139832304844187, - "absol": 1.7342251912987028, - "glalie": 3.600519356898328, - "sealeo": 2.9658767789901197, - "relicanth": 1.9125259875121992, - "metang": 2.3697076068026464, - "luxray": 3.4501051724319933, - "vespiquen": 3.5702337727131566, - "cherrim": 7.799082650001367, - "gastrodon": 2.0425584363279112, - "drifblim": 3.9952623756692565, - "lopunny": 3.7561350440353953, - "skuntank": 1.3416804284283965, - "bronzong": 2.7101254586870818, - "munchlax": 1.9606291308405654, - "drapion": 2.3396434433557243, - "abomasnow": 3.7235934396377353, - "froslass": 2.4749977419579965, - "rotom": 3.1898096337964823, - "stoutland": 2.401818678194104, - "liepard": 6.2805477753596675, - "musharna": 1.6504201799285694, - "unfezant": 6.70987851138149, - "boldore": 3.7563772300347376, - "swoobat": 5.67124846152566, - "audino": 2.2310987655172454, - "gurdurr": 3.9738252437754626, - "palpitoad": 4.152869817554968, - "seismitoad": 6.383965635741686, - "scolipede": 4.291167220021155, - "whimsicott": 4.335904326193748, - "lilligant": 4.1794173401190395, - "basculin-red-striped": 2.8747305237084575, - "basculin-blue-striped": 3.5745977087947125, - "krookodile": 2.7219643925902943, - "maractus": 3.0214032607341945, - "crustle": 2.1786628096491887, - "sigilyph": 2.372555535887989, - "cofagrigus": 2.5847746893464563, - "garbodor": 2.6379884793964354, - "cinccino": 4.293309433253749, - "vanillish": 1.829212694697375, - "emolga": 2.6379924144989584, - "escavalier": 1.9294242524493512, - "amoonguss": 3.474016854329176, - "jellicent": 1.3538144332419, - "galvantula": 1.3924112785896736, - "klang": 2.051085735674778, - "klinklang": 2.8190235400213672, - "beheeyem": 1.6325819547221996, - "lampent": 2.582644297129862, - "fraxure": 1.6450160346157778, - "beartic": 1.5361566626939345, - "cryogonal": 1.305809257338216, - "accelgor": 3.661815300210126, - "stunfisk": 1.2697012475132181, - "stunfisk-galar": 1.9778674652198107, - "mienshao": 4.590783137332597, - "druddigon": 1.8265053763038879, - "golurk": 1.9220611208712466, - "bisharp": 1.929311164422644, - "bouffalant": 1.3032015444567582, - "heatmor": 1.9781458415619837, - "durant": 3.157200775549455, - "diggersby": 3.473779306990151, - "talonflame": 2.983878135932299, - "pangoro": 2.2933464664633543, - "doublade": 2.2492081644734334, - "malamar": 2.5867877449414474, - "barbaracle": 1.4464605644175914, - "heliolisk": 3.1554650275052367, - "tyrantrum": 1.7235223932245338, - "aurorus": 1.9804415078025221, - "hawlucha": 4.873481300412562, - "dedenne": 2.686271105185094, - "klefki": 2.5120631942959832, - "trevenant": 4.4218630798704766, - "gourgeist-average": 6.951093085551976, - "charjabug": 4.050743967915004, - "vikavolt": 1.889045586095736, - "ribombee": 5.920539513696221, - "lycanroc-midday": 2.9314935749585525, - "lycanroc-midnight": 2.155440495706733, - "mudsdale": 1.7214982673844257, - "araquanid": 2.881198547357585, - "lurantis": 3.205981677215995, - "shiinotic": 5.450572223235635, - "salazzle": 4.347248475831972, - "bewear": 2.414296880182296, - "tsareena": 4.227070267007517, - "comfey": 4.61487554812645, - "oranguru": 2.8032978066731165, - "passimian": 3.4753383689501973, - "palossand": 2.141063216789892, - "pyukumuku": 43.972521676285005, - "togedemaru": 1.6897215528193117, - "mimikyu-disguised": 3.480426386807392, - "greedent": 2.277218988661396, - "orbeetle": 2.396336293362138, - "thievul": 1.4910269422887152, - "eldegoss": 5.073195902109651, - "dubwool": 3.2149727109124444, - "drednaw": 1.1824805253890962, - "boltund": 4.004882739014219, - "carkol": 2.2073302900298577, - "coalossal": 1.9203882599790545, - "sandaconda": 3.6353741854078216, - "cramorant": 4.687752313050575, - "barraskewda": 4.489481115087359, - "toxtricity-amped": 3.3074000254299856, - "centiskorch": 2.592261002753016, - "grapploct": 2.5382199572451425, - "polteageist": 2.6024598958734795, - "hatterene": 2.5863387114739385, - "grimmsnarl": 3.4325207472467865, - "obstagoon": 2.263619793969736, - "perrserker": 2.503342440184067, - "alcremie": 1.3799142305421683, - "falinks": 4.961439809864784, - "pincurchin": 2.8372681273187457, - "frosmoth": 3.031488367422053, - "indeedee-male": 2.885467331360349, - "morpeko": 1.8859673046336138, - "copperajah": 2.044249548282973, - "duraludon": 1.3261661705784684, - "drakloak": 4.112273343564519, - "xatu": 3.953311549934315 + "ivysaur": 4.397956415875846, + "charmeleon": 3.903051073276136, + "wartortle": 2.7277681136645624, + "butterfree": 5.45435761182261, + "raichu": 4.693398616556664, + "raichu-alola": 2.6697712658048416, + "sandslash": 2.44150438350614, + "sandslash-alola": 1.5764018508523767, + "nidoqueen": 3.85106044135461, + "nidoking": 2.4884399729901103, + "clefairy": 9.406787624583044, + "clefable": 1.9151276407856324, + "jigglypuff": 26.608938279350262, + "wigglytuff": 2.026661428766876, + "gloom": 7.5762988734936485, + "vileplume": 4.213811742306726, + "dugtrio": 3.4766015831088453, + "dugtrio-alola": 2.9087280325389058, + "persian": 4.222263460743067, + "persian-alola": 3.3399800460525357, + "golduck": 3.083876554723802, + "poliwrath": 2.7797630258796024, + "kadabra": 3.5747375839527598, + "machoke": 5.2250660017573125, + "tentacruel": 2.8322962588284586, + "slowbro": 1.9576144569513443, + "magneton": 2.440902131640081, + "haunter": 5.982927134324407, + "kingler": 3.0909627074801858, + "exeggutor": 2.7724903164312895, + "marowak": 3.3231904540732082, + "marowak-alola": 2.061785992170135, + "hitmonlee": 3.1099057966937274, + "hitmonchan": 2.5413485620746337, + "lickitung": 1.7305648479563867, + "weezing": 2.3589321316840826, + "weezing-galar": 4.076954894619508, + "rhydon": 2.6046386443051937, + "chansey": 18.921801859904875, + "tangela": 8.30464268101565, + "kangaskhan": 1.8336020933209265, + "seadra": 4.678610363668515, + "seaking": 2.5212972766447472, + "starmie": 1.3201770757565119, + "mr-mime": 6.816893038465703, + "mr-mime-galar": 3.0745538800395424, + "scyther": 3.2985913751399742, + "jynx": 3.4501800070702586, + "electabuzz": 2.020328456602341, + "magmar": 1.6054511810399805, + "tauros": 2.2478086105286823, + "ditto": 4.543251090955314, + "vaporeon": 3.0017866921529635, + "jolteon": 1.633362554322897, + "flareon": 2.082109034007891, + "porygon": 2.4444109362844504, + "dragonair": 1.695501473237134, + "noctowl": 5.314861082023676, + "lanturn": 1.762838711576066, + "togetic": 5.231411674151581, + "xatu": 3.953311549934315, + "bellossom": 3.071287771767045, + "azumarill": 2.3156349103046554, + "sudowoodo": 2.806338558320965, + "politoed": 2.656072308427084, + "quagsire": 5.1766477350311, + "slowking": 2.2786985247482137, + "dunsparce": 3.016173064990206, + "qwilfish": 5.165239600154026, + "sneasel": 1.8423418123442064, + "piloswine": 1.4731111555091867, + "octillery": 2.376066737112269, + "mantine": 2.2258657664951764, + "skarmory": 1.7164360508932144, + "hitmontop": 3.7432635585520533, + "miltank": 3.8082760878200634, + "grovyle": 10.668682109812199, + "sceptile": 1.8280061219887813, + "combusken": 5.019749727621329, + "blaziken": 2.3505144968989384, + "marshtomp": 2.530221408164901, + "swampert": 1.2281357192115419, + "linoone": 4.895612934947344, + "linoone-galar": 3.7273826734206685, + "pelipper": 6.401893212811087, + "ninjask": 9.606941045834978, + "exploud": 1.4836812685915879, + "lairon": 1.8826336031693396, + "manectric": 1.7477297237063387, + "roselia": 5.200266789430014, + "sharpedo": 4.55237179303099, + "wailmer": 6.661774122662142, + "torkoal": 2.081222417435268, + "flygon": 2.4701904587643524, + "altaria": 1.5707960653106445, + "whiscash": 2.1087143063480704, + "crawdaunt": 1.9578146744945357, + "claydol": 3.1906026768074605, + "cradily": 2.1997141103560423, + "armaldo": 1.9233917410058332, + "dusclops": 3.0063153631275568, + "absol": 1.7274701056210862, + "glalie": 3.5880488294730104, + "sealeo": 2.959449514874539, + "relicanth": 1.908104165993978, + "metang": 2.3634210372596214, + "luxray": 3.438613555391508, + "vespiquen": 3.573077527507773, + "cherrim": 7.809256226484844, + "gastrodon": 2.039483939675813, + "drifblim": 3.98885864860142, + "lopunny": 3.7554642998552668, + "skuntank": 1.336352900186438, + "bronzong": 2.7075134744766958, + "munchlax": 1.955787605654244, + "drapion": 2.3327737645573725, + "abomasnow": 3.719612823892775, + "froslass": 2.466440117832679, + "rotom": 3.1780465184992943, + "stoutland": 2.3986436209450446, + "liepard": 6.256649952930564, + "musharna": 1.6513032193302217, + "unfezant": 6.710569352580208, + "boldore": 3.756182868328907, + "swoobat": 5.669288004287552, + "audino": 2.2294408116675735, + "gurdurr": 3.9966470673186905, + "palpitoad": 4.15736769953227, + "seismitoad": 6.376632080710923, + "scolipede": 4.293671444713356, + "whimsicott": 4.341745582952642, + "lilligant": 4.18583860867699, + "basculin-red-striped": 2.8729046292726377, + "basculin-blue-striped": 3.5697721014035544, + "krookodile": 2.7147724360374594, + "maractus": 3.02584337623236, + "crustle": 2.1779739307264965, + "sigilyph": 2.3710389520359216, + "cofagrigus": 2.5816566178120746, + "garbodor": 2.641457935067394, + "cinccino": 4.2837236773805145, + "vanillish": 1.8229125901624001, + "emolga": 2.6303468415068068, + "escavalier": 1.9302742822264158, + "amoonguss": 3.480575342947516, + "jellicent": 1.3523505847547908, + "galvantula": 1.3883201036037636, + "klang": 2.0430836557789847, + "klinklang": 2.8136669688365163, + "beheeyem": 1.6281966967494848, + "lampent": 2.5836594286233057, + "fraxure": 1.6442957979194182, + "beartic": 1.5332986554874966, + "cryogonal": 1.300824891167419, + "accelgor": 3.660540904848441, + "stunfisk": 1.2680563530179545, + "stunfisk-galar": 1.9752786493907255, + "mienshao": 4.59756387462719, + "druddigon": 1.8255521496523766, + "golurk": 1.9224196379797425, + "bisharp": 1.9216847705171531, + "bouffalant": 1.3025844213471818, + "heatmor": 1.9789881067383077, + "durant": 3.152873016469395, + "diggersby": 3.4764243757392554, + "talonflame": 2.983125560871576, + "pangoro": 2.291400959238653, + "doublade": 2.2499504943913724, + "malamar": 2.5769111532733326, + "barbaracle": 1.4435979456401102, + "heliolisk": 3.146135663891466, + "tyrantrum": 1.7220244071606787, + "aurorus": 1.970456873175709, + "hawlucha": 4.8805755206836245, + "dedenne": 2.679060241016155, + "klefki": 2.508283156287246, + "trevenant": 4.435826419605926, + "gourgeist-average": 6.946907841897467, + "charjabug": 4.045340410787652, + "vikavolt": 1.8882522973080789, + "ribombee": 5.9215730633333825, + "lycanroc-midday": 2.920837507757436, + "lycanroc-midnight": 2.1491872431561285, + "mudsdale": 1.7231719189969406, + "araquanid": 2.8816399554202325, + "lurantis": 3.2087478821472866, + "shiinotic": 5.450208350347488, + "salazzle": 4.350083907631302, + "bewear": 2.4152593288123656, + "tsareena": 4.2338967317761265, + "comfey": 4.617292789355886, + "oranguru": 2.8037855636674704, + "passimian": 3.4838261746258805, + "palossand": 2.140974228364158, + "pyukumuku": 43.94902708608899, + "togedemaru": 1.6833835812484246, + "mimikyu-disguised": 3.471217861029897, + "greedent": 2.27696316246001, + "orbeetle": 2.3984396463085718, + "thievul": 1.4841855367989552, + "eldegoss": 5.079927084931308, + "dubwool": 3.216759940413128, + "drednaw": 1.1800380438911264, + "boltund": 3.988190535145958, + "carkol": 2.203352951285597, + "coalossal": 1.9162945897934014, + "sandaconda": 3.640291111224318, + "cramorant": 4.674778783258889, + "barraskewda": 4.48225238890885, + "toxtricity-amped": 3.300186096377919, + "centiskorch": 2.5943318855650213, + "grapploct": 2.5486784685411292, + "polteageist": 2.6025367144940525, + "hatterene": 2.5860113678776937, + "grimmsnarl": 3.4206186562561447, + "obstagoon": 2.2534540735642574, + "perrserker": 2.494744386696554, + "alcremie": 1.3795676811268915, + "falinks": 4.977088787359433, + "pincurchin": 2.8284364121736836, + "frosmoth": 3.0288811958608965, + "indeedee-male": 2.878927060146175, + "morpeko": 1.8740922168435343, + "copperajah": 2.041947071565279, + "duraludon": 1.3231864804865727, + "drakloak": 4.1029226110673624 }, "bellossom": { - "ivysaur": 2.5673403566737854, - "charmeleon": 3.070918968648647, - "wartortle": 3.8135444863258687, - "butterfree": 3.765563162129897, - "raichu": 5.2996773413007165, - "raichu-alola": 3.48816134180787, - "sandslash": 3.2880169130193044, - "sandslash-alola": 1.786681820022522, - "nidoqueen": 2.8220632157260135, - "nidoking": 1.864645958583655, - "clefairy": 8.844767941729202, - "clefable": 2.1141643105146324, - "jigglypuff": 27.118531847927912, - "wigglytuff": 2.076981764254806, - "gloom": 4.283508193235878, - "vileplume": 2.3640560367792416, - "dugtrio": 4.817517429350088, - "dugtrio-alola": 3.576719097057684, - "persian": 4.351124997183414, - "persian-alola": 4.854472324104131, - "golduck": 4.415082714606748, - "poliwrath": 2.7161628886368154, - "kadabra": 3.7021801509210315, - "machoke": 4.591383757241786, - "tentacruel": 2.2653349760926877, - "slowbro": 2.462710200434011, - "magneton": 2.8878216828980565, - "haunter": 3.861226323464475, - "kingler": 4.159213514140411, - "exeggutor": 1.9099509912687858, - "marowak": 4.5401957652259135, - "marowak-alola": 1.6865796928773942, - "hitmonlee": 2.3684706567707448, - "hitmonchan": 2.2127043671442967, - "lickitung": 1.9528222452100836, - "weezing": 1.2661626830719137, - "weezing-galar": 2.1853776175973447, - "rhydon": 5.259795216852416, - "chansey": 19.860865372159637, - "tangela": 5.3303048322932565, - "kangaskhan": 1.9205187741831677, - "seadra": 6.868334684428083, - "seaking": 3.1707404151863496, - "starmie": 1.8770685283663817, - "mr-mime": 6.478055197002244, - "mr-mime-galar": 3.2876138082333535, - "scyther": 2.303895760724767, - "jynx": 3.7635238843131225, - "electabuzz": 2.7389201233665013, - "magmar": 1.258213729976747, - "tauros": 2.20567866088113, - "ditto": 2.8049770453234752, - "vaporeon": 4.214566797580922, - "jolteon": 1.9342421861790802, - "flareon": 1.7571171046407272, - "porygon": 2.8161183022363225, - "dragonair": 2.056786560297085, - "noctowl": 4.680383361616236, - "lanturn": 2.791579845337365, - "togetic": 4.507717827789405, - "xatu": 3.346128408549724, - "azumarill": 2.067735817869843, - "sudowoodo": 3.8427515489194697, - "politoed": 3.497516684401371, - "quagsire": 10.575728802933112, - "slowking": 3.0830003490358537, - "dunsparce": 3.0816029888169414, - "qwilfish": 3.642513721416318, - "sneasel": 2.3560240686270024, - "piloswine": 2.0470596767770823, - "octillery": 3.157979138055131, - "mantine": 2.2510021288634507, - "skarmory": 1.5471502427766837, - "hitmontop": 2.9434748636261707, - "miltank": 3.8921550539165297, - "grovyle": 7.501361606257614, - "sceptile": 1.3125068732951926, - "combusken": 2.960162516359871, - "blaziken": 1.392222031607606, - "marshtomp": 5.197875286762361, - "swampert": 2.485770893160673, - "linoone": 5.105070463355268, - "linoone-galar": 5.309645828914379, - "pelipper": 6.162309747029987, - "ninjask": 6.137530916598981, - "exploud": 1.5401763109055795, - "lairon": 2.805691992877218, - "manectric": 1.8150325865510655, - "roselia": 3.2913983747534026, - "sharpedo": 6.970474935700611, - "wailmer": 8.991923942044783, - "torkoal": 1.4952022566524477, - "flygon": 2.6791080868670827, - "altaria": 1.6975153203170499, - "whiscash": 4.394165457953489, - "crawdaunt": 3.1288509523450214, - "claydol": 4.352324019069223, - "cradily": 2.2961826913386054, - "armaldo": 1.8887975421190895, - "dusclops": 3.3490946953701473, - "absol": 2.1236118665275687, - "glalie": 3.9917956213547114, - "sealeo": 4.199468352399805, - "relicanth": 4.355418046628601, - "metang": 2.581059856363665, - "luxray": 4.119243229851762, - "vespiquen": 2.264914223023831, - "cherrim": 5.624613083150209, - "gastrodon": 4.143458062841971, - "drifblim": 3.988456961348329, - "lopunny": 3.575848766849041, - "skuntank": 1.2680757889698815, - "bronzong": 2.6579625545404046, - "munchlax": 2.0089131704989347, - "drapion": 2.2137802342239263, - "abomasnow": 2.876307489961374, - "froslass": 2.754593956720459, - "rotom": 4.027677033321941, - "stoutland": 2.4758060260939905, - "liepard": 8.06104812245892, - "musharna": 1.5984467153789232, - "unfezant": 5.3035378976022205, - "boldore": 5.253075646407311, - "swoobat": 4.784403937354206, - "audino": 2.2716951558078637, - "gurdurr": 2.828316942401414, - "palpitoad": 7.9908590232513115, - "seismitoad": 11.854590804607593, - "scolipede": 2.4087710130108255, - "whimsicott": 2.933001468757091, - "lilligant": 2.8277555953310056, - "basculin-red-striped": 4.047217052940563, - "basculin-blue-striped": 5.442708158617558, - "krookodile": 3.992441978647417, - "maractus": 2.176750262551153, - "crustle": 2.1328947818008586, - "sigilyph": 2.063588845480795, - "cofagrigus": 2.8315739041998755, - "garbodor": 1.4625400161728432, - "cinccino": 4.471585427142601, - "vanillish": 1.9804151233276295, - "emolga": 2.899823758409296, - "escavalier": 1.46092828374948, - "amoonguss": 1.9387854222709981, - "jellicent": 1.9475949814552371, - "galvantula": 1.5155595482529343, - "klang": 2.463547715554702, - "klinklang": 2.915038206423367, - "beheeyem": 1.8178064838536558, - "lampent": 1.85045260778815, - "fraxure": 1.862458945632745, - "beartic": 1.6269325140412567, - "cryogonal": 1.4298198208408874, - "accelgor": 2.359142783519218, - "stunfisk": 1.8121215678065123, - "stunfisk-galar": 2.516690562253296, - "mienshao": 3.8923485931398942, - "druddigon": 2.0721411901924904, - "golurk": 2.5994108572177446, - "bisharp": 2.222124328749153, - "bouffalant": 1.1902407823588685, - "heatmor": 1.5033157967678186, - "durant": 2.395968701393431, - "diggersby": 4.4829031651763795, - "talonflame": 2.16037592250514, - "pangoro": 2.848908288447051, - "doublade": 2.1223551828943794, - "malamar": 3.3755330173338782, - "barbaracle": 2.8658589626149995, - "heliolisk": 3.622465397416045, - "tyrantrum": 2.0097595535481405, - "aurorus": 2.889287139129303, - "hawlucha": 3.966965924991122, - "dedenne": 3.0732358671904585, - "klefki": 2.5916545405589995, - "trevenant": 2.8671119758288572, - "gourgeist-average": 4.746325063679421, - "charjabug": 3.927923521368906, - "vikavolt": 1.6197587548673815, - "ribombee": 3.922505827556119, - "lycanroc-midday": 4.428335854125045, - "lycanroc-midnight": 3.119221829172656, - "mudsdale": 2.21700718357247, - "araquanid": 2.1627110735582264, - "lurantis": 2.20847401853025, - "shiinotic": 4.026564545163867, - "salazzle": 2.2760342088481993, - "bewear": 2.1123580987648087, - "tsareena": 2.852672063552715, - "comfey": 4.661290654394948, - "oranguru": 2.6575365866408363, - "passimian": 2.7407715251637974, - "palossand": 3.099116709474053, - "pyukumuku": 50.86666324003393, - "togedemaru": 1.914987772578592, - "mimikyu-disguised": 3.987861895931589, - "greedent": 2.255552234663194, - "orbeetle": 1.5648199389733692, - "thievul": 1.8585296427929725, - "eldegoss": 3.73937598886471, - "dubwool": 3.125088003622209, - "drednaw": 2.5934925202074046, - "boltund": 5.050028079207298, - "carkol": 2.3822116942673577, - "coalossal": 2.0077158163529214, - "sandaconda": 4.581808598207614, - "cramorant": 5.450283707527517, - "barraskewda": 6.715925355176628, - "toxtricity-amped": 2.404763347994776, - "centiskorch": 1.558553035843735, - "grapploct": 2.0422000813187497, - "polteageist": 2.639717567374672, - "hatterene": 2.566314162909886, - "grimmsnarl": 4.368419547272436, - "obstagoon": 3.022625417911823, - "perrserker": 2.9194185647711848, - "alcremie": 1.3986042687131404, - "falinks": 3.6920124906806318, - "pincurchin": 3.2502263707699397, - "frosmoth": 2.108846840123067, - "indeedee-male": 2.9717779980350745, - "morpeko": 3.227291590076578, - "copperajah": 2.0318468701703662, - "duraludon": 1.6195447751622067, - "drakloak": 5.301077302000328, - "bellossom": 2.25324156849124 + "ivysaur": 2.5621394463739193, + "charmeleon": 3.061426726435262, + "wartortle": 3.8199805365967974, + "butterfree": 3.7531096665700168, + "raichu": 5.3040899912311446, + "raichu-alola": 3.487493118350669, + "sandslash": 3.2930402381624333, + "sandslash-alola": 1.7829001601894443, + "nidoqueen": 2.820074404065312, + "nidoking": 1.863469168029383, + "clefairy": 8.839013309536458, + "clefable": 2.114407531932045, + "jigglypuff": 27.11435091166617, + "wigglytuff": 2.076734520044429, + "gloom": 4.2685217670889575, + "vileplume": 2.358606510391219, + "dugtrio": 4.826833016831465, + "dugtrio-alola": 3.577604487966794, + "persian": 4.348664676739144, + "persian-alola": 4.857284399421232, + "golduck": 4.424511971477964, + "poliwrath": 2.723024309847454, + "kadabra": 3.6977980446271608, + "machoke": 4.596847276829747, + "tentacruel": 2.2637487093351325, + "slowbro": 2.464197235252369, + "magneton": 2.8867539399319218, + "haunter": 3.859151338366476, + "kingler": 4.171536788799644, + "exeggutor": 1.909523497576337, + "marowak": 4.549626491608908, + "marowak-alola": 1.683109261761182, + "hitmonlee": 2.36727821391914, + "hitmonchan": 2.2116466495833342, + "lickitung": 1.952600967283038, + "weezing": 1.2623271505262754, + "weezing-galar": 2.180470948226181, + "rhydon": 5.2764720300846975, + "chansey": 19.798021717537324, + "tangela": 5.335395209564646, + "kangaskhan": 1.9204724475979247, + "seadra": 6.88450118892233, + "seaking": 3.173206232474543, + "starmie": 1.8783517339677962, + "mr-mime": 6.4734451347642175, + "mr-mime-galar": 3.2817555202500186, + "scyther": 2.2969554576123103, + "jynx": 3.7532557918512315, + "electabuzz": 2.7408163857711427, + "magmar": 1.2536771253816679, + "tauros": 2.2070973250858654, + "ditto": 2.7897144948866486, + "vaporeon": 4.221874454250142, + "jolteon": 1.9349111694637928, + "flareon": 1.7520062324526746, + "porygon": 2.814513702343246, + "dragonair": 2.0565450455986496, + "noctowl": 4.666566322116111, + "lanturn": 2.799880765675642, + "togetic": 4.49874142505489, + "xatu": 3.339076799085537, + "bellossom": 2.25324156849124, + "azumarill": 2.059243568360741, + "sudowoodo": 3.8506535373572235, + "politoed": 3.504916695220744, + "quagsire": 10.613503259512779, + "slowking": 3.084332912889805, + "dunsparce": 3.0758420114502734, + "qwilfish": 3.6403739555147863, + "sneasel": 2.3536773148227033, + "piloswine": 2.047533169726451, + "octillery": 3.1600813397897394, + "mantine": 2.249221222377493, + "skarmory": 1.543182250084529, + "hitmontop": 2.9447816179330264, + "miltank": 3.892418537094091, + "grovyle": 7.500549558557186, + "sceptile": 1.3118147169555376, + "combusken": 2.9558440695935166, + "blaziken": 1.3893715115042429, + "marshtomp": 5.213451563648256, + "swampert": 2.493349351617039, + "linoone": 5.098850604522132, + "linoone-galar": 5.3118442932472885, + "pelipper": 6.155441316177102, + "ninjask": 6.114889725721816, + "exploud": 1.5386846976574904, + "lairon": 2.806291046300343, + "manectric": 1.8147399825553063, + "roselia": 3.2866526048178137, + "sharpedo": 6.98455140897144, + "wailmer": 9.002339798010809, + "torkoal": 1.491432055609641, + "flygon": 2.6798047932688034, + "altaria": 1.696060485113874, + "whiscash": 4.403477138819752, + "crawdaunt": 3.136779418428193, + "claydol": 4.355634551093548, + "cradily": 2.2954055564363633, + "armaldo": 1.8877599595110954, + "dusclops": 3.3471411373462416, + "absol": 2.1232046799632256, + "glalie": 3.985564774645506, + "sealeo": 4.202263061529871, + "relicanth": 4.3689631064233545, + "metang": 2.5789055638367833, + "luxray": 4.122226560620542, + "vespiquen": 2.2572656820513344, + "cherrim": 5.624036145932289, + "gastrodon": 4.151827307244031, + "drifblim": 3.9875807413817173, + "lopunny": 3.572203401361287, + "skuntank": 1.2665554137815034, + "bronzong": 2.654706415178712, + "munchlax": 2.004974229544878, + "drapion": 2.2115999181947084, + "abomasnow": 2.8707217639065177, + "froslass": 2.750362067907919, + "rotom": 4.033605109939907, + "stoutland": 2.47426893576372, + "liepard": 8.067396770476238, + "musharna": 1.5986718845174939, + "unfezant": 5.288883984942458, + "boldore": 5.2653933030128215, + "swoobat": 4.77426533710684, + "audino": 2.2693461060972204, + "gurdurr": 2.833746889461376, + "palpitoad": 8.015440800035403, + "seismitoad": 11.855758132274026, + "scolipede": 2.4005088308055376, + "whimsicott": 2.930838874093065, + "lilligant": 2.8251117088328845, + "basculin-red-striped": 4.053678872372625, + "basculin-blue-striped": 5.456062853710213, + "krookodile": 4.002115939217433, + "maractus": 2.1781064080823884, + "crustle": 2.131592379690476, + "sigilyph": 2.0598158838994802, + "cofagrigus": 2.833371075487239, + "garbodor": 1.4572058728406034, + "cinccino": 4.465329809823788, + "vanillish": 1.975672059411059, + "emolga": 2.898390411888224, + "escavalier": 1.458486419068021, + "amoonguss": 1.9325386708785977, + "jellicent": 1.9496238941728663, + "galvantula": 1.5146744423277934, + "klang": 2.4624839283633237, + "klinklang": 2.9114331502715602, + "beheeyem": 1.8171530827510325, + "lampent": 1.8448091649088034, + "fraxure": 1.8619870595724821, + "beartic": 1.624727555011012, + "cryogonal": 1.4258877168620683, + "accelgor": 2.3499769287534455, + "stunfisk": 1.8167967852204185, + "stunfisk-galar": 2.5184208795073384, + "mienshao": 3.8958381133624913, + "druddigon": 2.0723975307146114, + "golurk": 2.6038633850758472, + "bisharp": 2.219149262924687, + "bouffalant": 1.1867684294614613, + "heatmor": 1.4993199146926348, + "durant": 2.390149220376732, + "diggersby": 4.4915875368744596, + "talonflame": 2.1524872340964962, + "pangoro": 2.8547904844705654, + "doublade": 2.120701401173013, + "malamar": 3.3792738149010155, + "barbaracle": 2.8700788093945984, + "heliolisk": 3.623629605686973, + "tyrantrum": 2.012553673896228, + "aurorus": 2.8880018709207187, + "hawlucha": 3.9654223292558877, + "dedenne": 3.0757508383808743, + "klefki": 2.5894073946375613, + "trevenant": 2.8680402254325044, + "gourgeist-average": 4.740466581969685, + "charjabug": 3.931919891597252, + "vikavolt": 1.616938608648063, + "ribombee": 3.912680315861257, + "lycanroc-midday": 4.433120296207765, + "lycanroc-midnight": 3.1224949880490134, + "mudsdale": 2.220794443693727, + "araquanid": 2.1596545767034714, + "lurantis": 2.2057075082872744, + "shiinotic": 4.022279434126397, + "salazzle": 2.2650679779977905, + "bewear": 2.1135196680730948, + "tsareena": 2.849945716761839, + "comfey": 4.665355415386395, + "oranguru": 2.655942932098383, + "passimian": 2.742815559039291, + "palossand": 3.10636178942095, + "pyukumuku": 50.82320395065682, + "togedemaru": 1.9113643328787042, + "mimikyu-disguised": 3.987582424778915, + "greedent": 2.2552238997817446, + "orbeetle": 1.5618531958612023, + "thievul": 1.85790292938145, + "eldegoss": 3.7392516633071806, + "dubwool": 3.1255349925623035, + "drednaw": 2.5990264638556493, + "boltund": 5.054294897071265, + "carkol": 2.377622569126946, + "coalossal": 2.0055804654550715, + "sandaconda": 4.586853356882201, + "cramorant": 5.451345556109219, + "barraskewda": 6.727686795086981, + "toxtricity-amped": 2.40283242638247, + "centiskorch": 1.553447709906879, + "grapploct": 2.045229370000987, + "polteageist": 2.6407558323048113, + "hatterene": 2.566325313224651, + "grimmsnarl": 4.372721048993169, + "obstagoon": 3.025200135252809, + "perrserker": 2.917909501879298, + "alcremie": 1.397794772891836, + "falinks": 3.693368148602631, + "pincurchin": 3.2561357886190705, + "frosmoth": 2.101292014610472, + "indeedee-male": 2.967562150149926, + "morpeko": 3.2312966384039608, + "copperajah": 2.029365301378624, + "duraludon": 1.6202203393172967, + "drakloak": 5.303787994074458 }, "azumarill": { - "ivysaur": 4.0308072332225375, - "charmeleon": 4.896615149635586, - "wartortle": 2.680173722885688, - "butterfree": 5.277934644112103, - "raichu": 4.576196292120214, - "raichu-alola": 3.1413683638123517, - "sandslash": 2.1990465707936355, - "sandslash-alola": 1.8265639996567455, - "nidoqueen": 2.944208806802088, - "nidoking": 2.0479059633058765, - "clefairy": 11.088217851128553, - "clefable": 1.9349754401604937, - "jigglypuff": 24.866431789016275, - "wigglytuff": 1.8453486229120681, - "gloom": 4.940117309614697, - "vileplume": 3.8734342335496943, - "dugtrio": 4.312862538577738, - "dugtrio-alola": 4.020546393316262, - "persian": 3.9118001945716365, - "persian-alola": 5.270237333098061, - "golduck": 2.9488464282024065, - "poliwrath": 2.234616991542286, - "kadabra": 3.869604024882425, - "machoke": 4.457436086311736, - "tentacruel": 2.04125217313483, - "slowbro": 1.6042480731484954, - "magneton": 2.570202997628957, - "haunter": 4.99244113966525, - "kingler": 2.208995169383519, - "exeggutor": 2.1751031479990663, - "marowak": 3.317532612184653, - "marowak-alola": 2.259425680265224, - "hitmonlee": 3.2093310029936246, - "hitmonchan": 2.563906670268501, - "lickitung": 1.8209812845307323, - "weezing": 1.3447828346418942, - "weezing-galar": 2.198901775700221, - "rhydon": 2.6853790973295455, - "chansey": 26.33847023689149, - "tangela": 6.878997987177595, - "kangaskhan": 1.7866809827553676, - "seadra": 3.878575662420862, - "seaking": 2.2544364629242475, - "starmie": 1.3538849202178043, - "mr-mime": 6.5544311663768635, - "mr-mime-galar": 3.6915613381292167, - "scyther": 2.6734244483281735, - "jynx": 4.53108981606205, - "electabuzz": 2.116480400387571, - "magmar": 2.118042716224838, - "tauros": 1.8407321229727855, - "ditto": 3.0142010903527465, - "vaporeon": 3.1907921098419543, - "jolteon": 1.745717075518751, - "flareon": 3.188354203937128, - "porygon": 2.566294894668455, - "dragonair": 2.3779286496566545, - "noctowl": 5.595235224269483, - "lanturn": 1.7778587048112025, - "togetic": 5.120329559568793, - "xatu": 3.4866514225587606, - "bellossom": 2.7579359602333273, - "sudowoodo": 2.6518894457573823, - "politoed": 2.4690642455726604, - "quagsire": 4.422634489119275, - "slowking": 2.4418708433871075, - "dunsparce": 3.0700926027603757, - "qwilfish": 2.641735162497012, - "sneasel": 2.729676758164338, - "piloswine": 1.7866279432645158, - "octillery": 2.194685907609178, - "mantine": 2.4873138594233914, - "skarmory": 1.7283110715745924, - "hitmontop": 3.2199651519438013, - "miltank": 3.1211410313498504, - "grovyle": 11.524318929216648, - "sceptile": 1.9113440261408425, - "combusken": 4.00817019348507, - "blaziken": 1.9468034451868064, - "marshtomp": 2.395278580915085, - "swampert": 1.209361411818373, - "linoone": 4.807274584409914, - "linoone-galar": 5.618264512176781, - "pelipper": 5.323545966447944, - "ninjask": 7.702552283567024, - "exploud": 1.573929855644227, - "lairon": 2.299827366263112, - "manectric": 1.5699916743962479, - "roselia": 5.132195482984013, - "sharpedo": 6.201856695026271, - "wailmer": 6.193947919960518, - "torkoal": 2.047004378201499, - "flygon": 2.887013963718031, - "altaria": 1.9975984046078206, - "whiscash": 1.9951244201159664, - "crawdaunt": 2.267898286786516, - "claydol": 3.764066159397722, - "cradily": 2.465293358661973, - "armaldo": 2.0554517498943596, - "dusclops": 3.1086039988744876, - "absol": 2.333609554982853, - "glalie": 4.0517523691720605, - "sealeo": 3.143043789920279, - "relicanth": 1.7387786109750492, - "metang": 2.4648353289886873, - "luxray": 3.1745010070191007, - "vespiquen": 2.725574387509245, - "cherrim": 8.123756766594852, - "gastrodon": 2.0835398768326874, - "drifblim": 3.6496743143957, - "lopunny": 3.4439284255050215, - "skuntank": 1.359382424375859, - "bronzong": 2.8251013702724865, - "munchlax": 2.0933879457364144, - "drapion": 2.1962881694439194, - "abomasnow": 3.9029712857838814, - "froslass": 2.7580000434912213, - "rotom": 3.0735486257729514, - "stoutland": 2.1873271657215265, - "liepard": 8.145775729074966, - "musharna": 1.614228904494749, - "unfezant": 5.507980368635423, - "boldore": 3.2150575471526777, - "swoobat": 4.982666109027162, - "audino": 2.0945078783529665, - "gurdurr": 2.4063748737022363, - "palpitoad": 3.546171200939611, - "seismitoad": 5.255635959136352, - "scolipede": 3.128817847360664, - "whimsicott": 3.581741471409392, - "lilligant": 4.2645098084100805, - "basculin-red-striped": 2.670565129117164, - "basculin-blue-striped": 3.5174606308177796, - "krookodile": 3.213217111717011, - "maractus": 3.521330285696076, - "crustle": 2.2164320071359382, - "sigilyph": 2.1188046796261135, - "cofagrigus": 2.2508711796217016, - "garbodor": 1.5579716414978009, - "cinccino": 4.2775654048227, - "vanillish": 2.142477253481668, - "emolga": 2.4320066647418983, - "escavalier": 1.7288898973100513, - "amoonguss": 2.635179589296519, - "jellicent": 1.553035902449916, - "galvantula": 1.3061606893851785, - "klang": 2.3281696712989994, - "klinklang": 2.9034406853481034, - "beheeyem": 1.720343059421802, - "lampent": 3.1944537468893026, - "fraxure": 1.905322658203258, - "beartic": 1.7427978801417219, - "cryogonal": 2.038515850422888, - "accelgor": 3.2518314993929347, - "stunfisk": 1.465166859029957, - "stunfisk-galar": 2.593557365296858, - "mienshao": 3.867478151026569, - "druddigon": 2.0917933734440703, - "golurk": 2.144708144210515, - "bisharp": 2.0934779950031452, - "bouffalant": 1.208405892185157, - "heatmor": 2.4855305603984763, - "durant": 2.465000852435903, - "diggersby": 3.5706033959183743, - "talonflame": 3.3512800910628977, - "pangoro": 2.7805180411589143, - "doublade": 1.8903767348095797, - "malamar": 3.0446187599242522, - "barbaracle": 1.336628933918937, - "heliolisk": 3.252729225936419, - "tyrantrum": 1.671280016751235, - "aurorus": 2.686798005651948, - "hawlucha": 3.829841369347114, - "dedenne": 2.568475540045543, - "klefki": 2.718890794973919, - "trevenant": 4.109816419115799, - "gourgeist-average": 4.823159677552585, - "charjabug": 3.2951760473489182, - "vikavolt": 1.601571234659863, - "ribombee": 4.751137504098624, - "lycanroc-midday": 3.6894719484607346, - "lycanroc-midnight": 2.7037474716476853, - "mudsdale": 1.801666176982506, - "araquanid": 2.3975590600247765, - "lurantis": 2.9173655983070694, - "shiinotic": 4.351978236620152, - "salazzle": 3.514210982194375, - "bewear": 1.9047945846822647, - "tsareena": 4.110652967671083, - "comfey": 5.276894949650771, - "oranguru": 2.524245774590358, - "passimian": 2.50455995925827, - "palossand": 2.1177808174020845, - "pyukumuku": 36.23132174123844, - "togedemaru": 1.8794605392618653, - "mimikyu-disguised": 3.716486702613267, - "greedent": 1.8866385662269345, - "orbeetle": 1.8336009087425118, - "thievul": 2.3969261203457126, - "eldegoss": 5.839489656061345, - "dubwool": 3.093781478877268, - "drednaw": 1.1798884295502623, - "boltund": 4.10062052060738, - "carkol": 3.4119513296752078, - "coalossal": 2.8074516277050083, - "sandaconda": 3.3978846423432216, - "cramorant": 5.657695252652324, - "barraskewda": 4.5769059211255785, - "toxtricity-amped": 2.289965919569772, - "centiskorch": 2.4011549075352208, - "grapploct": 1.9830313661685235, - "polteageist": 3.190822666516092, - "hatterene": 2.292465830565945, - "grimmsnarl": 4.7635452352426775, - "obstagoon": 2.708606158815654, - "perrserker": 2.7393196657256857, - "alcremie": 1.5256892057799631, - "falinks": 3.3792577183402392, - "pincurchin": 2.526423663399519, - "frosmoth": 2.815520789783145, - "indeedee-male": 3.132605710610727, - "morpeko": 2.8833791635372323, - "copperajah": 2.1859388048134996, - "duraludon": 1.3471677231744086, - "drakloak": 5.583435163086226, - "azumarill": 2.059555345997211 + "ivysaur": 4.055665194767337, + "charmeleon": 4.912436432483656, + "wartortle": 2.6830377821304676, + "butterfree": 5.296317624517459, + "raichu": 4.573847604431936, + "raichu-alola": 3.1375098831173394, + "sandslash": 2.2006128447378823, + "sandslash-alola": 1.826297132274066, + "nidoqueen": 2.9441532552966807, + "nidoking": 2.050158714780506, + "clefairy": 11.160852785212075, + "clefable": 1.9360420822337883, + "jigglypuff": 24.87584364489942, + "wigglytuff": 1.845417683361806, + "gloom": 4.929063375650214, + "vileplume": 3.902106876362367, + "dugtrio": 4.320640371415317, + "dugtrio-alola": 4.026985379222504, + "persian": 3.910332932087009, + "persian-alola": 5.281640727276769, + "golduck": 2.949857038039073, + "poliwrath": 2.2360365409381258, + "kadabra": 3.8709005463586674, + "machoke": 4.4671373124176075, + "tentacruel": 2.0400905854506055, + "slowbro": 1.6031154881910372, + "magneton": 2.5645310944092174, + "haunter": 5.015195679827887, + "kingler": 2.2087882097413414, + "exeggutor": 2.181273386969031, + "marowak": 3.3218657395073903, + "marowak-alola": 2.2634145800244543, + "hitmonlee": 3.2210088347501045, + "hitmonchan": 2.569008592837471, + "lickitung": 1.8204023023535847, + "weezing": 1.342152834446416, + "weezing-galar": 2.196599338824848, + "rhydon": 2.687457022959917, + "chansey": 26.355541509053047, + "tangela": 6.950711672598173, + "kangaskhan": 1.788604115383942, + "seadra": 3.8795950161070105, + "seaking": 2.2533500370677166, + "starmie": 1.3533069637235662, + "mr-mime": 6.558054911262328, + "mr-mime-galar": 3.6926140510122236, + "scyther": 2.6754859438831864, + "jynx": 4.5228678911184215, + "electabuzz": 2.1124649430066267, + "magmar": 2.1222779611399893, + "tauros": 1.8413972067932467, + "ditto": 3.0017415347366594, + "vaporeon": 3.188115548250817, + "jolteon": 1.7438846524080915, + "flareon": 3.195781671486283, + "porygon": 2.5660596567161718, + "dragonair": 2.382592054529073, + "noctowl": 5.597956184235015, + "lanturn": 1.7773069701740485, + "togetic": 5.1271888495305316, + "xatu": 3.486110517736136, + "bellossom": 2.7741299720331978, + "azumarill": 2.059555345997211, + "sudowoodo": 2.654126818567281, + "politoed": 2.4696989992096245, + "quagsire": 4.428389644630407, + "slowking": 2.4429484649229662, + "dunsparce": 3.0723394638321846, + "qwilfish": 2.6360601749862393, + "sneasel": 2.735578854712778, + "piloswine": 1.7903749626461962, + "octillery": 2.1942503896362924, + "mantine": 2.4857325272079063, + "skarmory": 1.7282699065264304, + "hitmontop": 3.228228803151458, + "miltank": 3.118764703174695, + "grovyle": 11.631232865955234, + "sceptile": 1.9295564646291434, + "combusken": 4.021279055503385, + "blaziken": 1.9532396414067523, + "marshtomp": 2.3984286789993465, + "swampert": 1.2107422664680292, + "linoone": 4.8077701642183435, + "linoone-galar": 5.629652049075933, + "pelipper": 5.31701978751372, + "ninjask": 7.713773479577123, + "exploud": 1.5748702216614556, + "lairon": 2.2985972104885692, + "manectric": 1.5694617741368635, + "roselia": 5.162982945527769, + "sharpedo": 6.216255719759609, + "wailmer": 6.195288537051601, + "torkoal": 2.0500338668275346, + "flygon": 2.8942441361119764, + "altaria": 2.002507008529369, + "whiscash": 1.995859806322661, + "crawdaunt": 2.269975975500185, + "claydol": 3.7680411637394524, + "cradily": 2.4737458331871505, + "armaldo": 2.0589302211700287, + "dusclops": 3.1113502772637363, + "absol": 2.338388129619765, + "glalie": 4.055786538424817, + "sealeo": 3.1454359046481333, + "relicanth": 1.7387596128895404, + "metang": 2.4614106162626657, + "luxray": 3.1683931121697206, + "vespiquen": 2.728618868009369, + "cherrim": 8.19142768098469, + "gastrodon": 2.0857644963339195, + "drifblim": 3.64582334821233, + "lopunny": 3.4452123635628222, + "skuntank": 1.3610828742590755, + "bronzong": 2.8246360688770427, + "munchlax": 2.0925471036326924, + "drapion": 2.1987926990116042, + "abomasnow": 3.920189664842739, + "froslass": 2.761242285415694, + "rotom": 3.0713556793496135, + "stoutland": 2.1860319081292037, + "liepard": 8.159799695602688, + "musharna": 1.6184912024457505, + "unfezant": 5.50717112965175, + "boldore": 3.2161565846815607, + "swoobat": 4.981831887756211, + "audino": 2.095105515944628, + "gurdurr": 2.4105975355951994, + "palpitoad": 3.548494014087394, + "seismitoad": 5.243583143475478, + "scolipede": 3.1317763710175868, + "whimsicott": 3.5956518224707446, + "lilligant": 4.302071187216933, + "basculin-red-striped": 2.67167398112477, + "basculin-blue-striped": 3.5203641636621326, + "krookodile": 3.221558321755775, + "maractus": 3.5644416355772166, + "crustle": 2.2202463659963403, + "sigilyph": 2.1184588258902255, + "cofagrigus": 2.250876220673466, + "garbodor": 1.5543987988018657, + "cinccino": 4.278571508204868, + "vanillish": 2.144332393097261, + "emolga": 2.4281567491381604, + "escavalier": 1.7305496857757976, + "amoonguss": 2.63880429596266, + "jellicent": 1.5520936349882344, + "galvantula": 1.304142134596669, + "klang": 2.3248223331027793, + "klinklang": 2.9011830624586388, + "beheeyem": 1.7210338043730253, + "lampent": 3.204668411110286, + "fraxure": 1.910094630962432, + "beartic": 1.7450322980928554, + "cryogonal": 2.0467447164410193, + "accelgor": 3.255940169184062, + "stunfisk": 1.4658938538050263, + "stunfisk-galar": 2.5977611729586334, + "mienshao": 3.874058203929134, + "druddigon": 2.0939032968068183, + "golurk": 2.149460167369836, + "bisharp": 2.0920556541311663, + "bouffalant": 1.209581681031711, + "heatmor": 2.4973135744011863, + "durant": 2.4619503153391804, + "diggersby": 3.5748552477284017, + "talonflame": 3.356888469215349, + "pangoro": 2.789913435793077, + "doublade": 1.889219925858911, + "malamar": 3.0454719405202617, + "barbaracle": 1.3352795459869609, + "heliolisk": 3.2391508992371048, + "tyrantrum": 1.673119465490526, + "aurorus": 2.6872852745554967, + "hawlucha": 3.8341149050119547, + "dedenne": 2.5657094067590256, + "klefki": 2.7190523876488015, + "trevenant": 4.145484484916379, + "gourgeist-average": 4.824823993804313, + "charjabug": 3.288939747157304, + "vikavolt": 1.6011114029073008, + "ribombee": 4.758444803097454, + "lycanroc-midday": 3.6933487562468494, + "lycanroc-midnight": 2.708713541249562, + "mudsdale": 1.8058776644739454, + "araquanid": 2.3955967848791557, + "lurantis": 2.931378812305201, + "shiinotic": 4.351339031214306, + "salazzle": 3.516930970753265, + "bewear": 1.9057276569088444, + "tsareena": 4.1413593364119965, + "comfey": 5.30908343694907, + "oranguru": 2.5242856264774134, + "passimian": 2.508371855996151, + "palossand": 2.1199625449319752, + "pyukumuku": 36.18089751143803, + "togedemaru": 1.875515544204248, + "mimikyu-disguised": 3.7194088193764188, + "greedent": 1.8855352526180786, + "orbeetle": 1.8342490829233769, + "thievul": 2.4043678345203503, + "eldegoss": 5.9034285289005695, + "dubwool": 3.102333181309274, + "drednaw": 1.179869038661867, + "boltund": 4.097369718538571, + "carkol": 3.4218395584783368, + "coalossal": 2.815273032439894, + "sandaconda": 3.4045577813605647, + "cramorant": 5.665565173168874, + "barraskewda": 4.5830077762912484, + "toxtricity-amped": 2.2841284403906474, + "centiskorch": 2.4046776186218652, + "grapploct": 1.9883964188793133, + "polteageist": 3.209924233166416, + "hatterene": 2.2928457197508574, + "grimmsnarl": 4.7772787285221545, + "obstagoon": 2.7088107299244273, + "perrserker": 2.737126318694116, + "alcremie": 1.5311424721187854, + "falinks": 3.3846618167292717, + "pincurchin": 2.523256223372535, + "frosmoth": 2.816799025603612, + "indeedee-male": 3.1350403122585266, + "morpeko": 2.8821176616159745, + "copperajah": 2.1862153385819516, + "duraludon": 1.3453353999966478, + "drakloak": 5.597228094985893 }, "sudowoodo": { - "ivysaur": 3.009093788113871, - "charmeleon": 5.859078217926658, - "wartortle": 2.3954641939923498, - "butterfree": 9.762376190116603, - "raichu": 5.761685000817144, - "raichu-alola": 4.276816833088565, - "sandslash": 1.897225323589328, - "sandslash-alola": 2.6198667622097664, - "nidoqueen": 2.940500458004715, - "nidoking": 2.1378363593052425, - "clefairy": 9.499672174304933, - "clefable": 2.12181427417871, - "jigglypuff": 28.471735884231034, - "wigglytuff": 2.078281917271894, - "gloom": 6.048887844395924, - "vileplume": 2.6960454449035254, - "dugtrio": 3.493032019714617, - "dugtrio-alola": 4.023131832180608, - "persian": 5.246854338896554, - "persian-alola": 4.7341277156697865, - "golduck": 2.9278177926320295, - "poliwrath": 1.6928248522084313, - "kadabra": 4.501323042764814, - "machoke": 3.550459904224919, - "tentacruel": 2.689118286256657, - "slowbro": 1.7713226176305246, - "magneton": 4.2189536500053055, - "haunter": 4.423218947742105, - "kingler": 2.1122008664860097, - "exeggutor": 1.8213314076443394, - "marowak": 2.6433836726542443, - "marowak-alola": 2.858871354149813, - "hitmonlee": 2.3599700096952256, - "hitmonchan": 2.1507994748428567, - "lickitung": 1.9117753948939018, - "weezing": 1.7454162913922513, - "weezing-galar": 2.802267528064457, - "rhydon": 2.174787518704189, - "chansey": 37.61656185026048, - "tangela": 4.243430426025974, - "kangaskhan": 2.1334583625930494, - "seadra": 3.5171859507770535, - "seaking": 2.6018416273649585, - "starmie": 1.4649377742567369, - "mr-mime": 7.501414024446511, - "mr-mime-galar": 4.998944251755715, - "scyther": 5.9316936808745035, - "jynx": 6.934080149289862, - "electabuzz": 3.104352907343956, - "magmar": 2.7747718896597044, - "tauros": 2.1131478011408222, - "ditto": 3.158512823410568, - "vaporeon": 3.1754462299410964, - "jolteon": 2.4742065487895584, - "flareon": 4.107047013065562, - "porygon": 3.1526251683922313, - "dragonair": 1.9856202400069483, - "noctowl": 10.162750198052128, - "lanturn": 2.059810931506806, - "togetic": 8.313080127994494, - "xatu": 5.377764006230224, - "bellossom": 2.168700494168223, - "azumarill": 2.346124865199786, - "politoed": 2.5338854000900555, - "quagsire": 3.433806545334336, - "slowking": 2.5922263945153663, - "dunsparce": 3.6285567345255267, - "qwilfish": 3.6203560359537006, - "sneasel": 3.5136356930594994, - "piloswine": 1.6247750894806599, - "octillery": 2.149062218832275, - "mantine": 3.8090900528567726, - "skarmory": 1.929554820241481, - "hitmontop": 2.440988255589708, - "miltank": 4.051115077328465, - "grovyle": 7.344289826867889, - "sceptile": 1.3902842342916955, - "combusken": 3.5975771044008438, - "blaziken": 1.912642074763407, - "marshtomp": 2.1237160964227417, - "swampert": 1.0338678767711706, - "linoone": 6.179409100294549, - "linoone-galar": 6.727256787991159, - "pelipper": 8.627476862439714, - "ninjask": 15.801892563705223, - "exploud": 1.782741517435102, - "lairon": 3.0147187734174934, - "manectric": 2.152906262872767, - "roselia": 3.9690261311493122, - "sharpedo": 5.5784878101705875, - "wailmer": 6.181320240452555, - "torkoal": 2.455760743241677, - "flygon": 2.0262611232894443, - "altaria": 2.3362974711767803, - "whiscash": 1.6121948626898135, - "crawdaunt": 1.8272088591519442, - "claydol": 2.8907911773009713, - "cradily": 2.2985390224690123, - "armaldo": 2.4680263506981377, - "dusclops": 3.579196067866246, - "absol": 2.252821435026744, - "glalie": 5.730292668684213, - "sealeo": 3.9269478325476825, - "relicanth": 1.9558990452603253, - "metang": 3.218730601818012, - "luxray": 4.535301672938462, - "vespiquen": 5.729868944014379, - "cherrim": 5.385911147554302, - "gastrodon": 2.081327932302322, - "drifblim": 6.196817221465762, - "lopunny": 4.3774736850876845, - "skuntank": 1.7757072940430114, - "bronzong": 2.770864468005363, - "munchlax": 3.108445440207314, - "drapion": 2.6461852379932993, - "abomasnow": 4.278982757139326, - "froslass": 4.0802341607809565, - "rotom": 3.805761034420791, - "stoutland": 2.9915963073398935, - "liepard": 8.120598064353034, - "musharna": 1.5094148998810748, - "unfezant": 9.040558700117773, - "boldore": 3.177977806535585, - "swoobat": 7.705782541483439, - "audino": 2.6786413196323133, - "gurdurr": 1.8137341760008594, - "palpitoad": 3.1188608443680295, - "seismitoad": 6.412852312999366, - "scolipede": 4.305967412598386, - "whimsicott": 3.0089068565621337, - "lilligant": 2.7085758806966926, - "basculin-red-striped": 2.77562232398339, - "basculin-blue-striped": 3.35138976090721, - "krookodile": 2.8355918934402187, - "maractus": 1.9428815612445467, - "crustle": 2.562521490893465, - "sigilyph": 3.062974769006434, - "cofagrigus": 2.4798766908827634, - "garbodor": 2.2230236105451064, - "cinccino": 5.4993212348152625, - "vanillish": 2.9986214745408217, - "emolga": 4.3622847455047555, - "escavalier": 1.8305609051404343, - "amoonguss": 2.5247835558091865, - "jellicent": 1.6723143004212795, - "galvantula": 2.1754636770303, - "klang": 2.9331468056263748, - "klinklang": 3.734540599215777, - "beheeyem": 1.9092012963274096, - "lampent": 4.057158597841071, - "fraxure": 1.6324610713266643, - "beartic": 2.1897148223850293, - "cryogonal": 2.6529079567639715, - "accelgor": 4.515418110695581, - "stunfisk": 1.2840007127515123, - "stunfisk-galar": 2.458755146341648, - "mienshao": 3.0516358129069134, - "druddigon": 1.8984732872047223, - "golurk": 1.601172158905416, - "bisharp": 3.575420292913604, - "bouffalant": 1.451418178911629, - "heatmor": 2.7574837003559933, - "durant": 2.744508449034728, - "diggersby": 3.432323977246146, - "talonflame": 6.403409617393228, - "pangoro": 1.8225842043404132, - "doublade": 2.151086929955776, - "malamar": 2.8499945827561692, - "barbaracle": 1.6343869054226228, - "heliolisk": 4.64981620713281, - "tyrantrum": 1.6755175046089517, - "aurorus": 3.5281246688359813, - "hawlucha": 3.5968609852139553, - "dedenne": 3.348743266975564, - "klefki": 3.3013467058449932, - "trevenant": 2.952982725712974, - "gourgeist-average": 5.246828009545327, - "charjabug": 5.344735848728327, - "vikavolt": 2.462634812953018, - "ribombee": 6.55751786652983, - "lycanroc-midday": 4.0706325624012365, - "lycanroc-midnight": 2.772135498388581, - "mudsdale": 1.3764624623561592, - "araquanid": 3.6907130533293406, - "lurantis": 2.3170733456926964, - "shiinotic": 4.682095515870238, - "salazzle": 5.412118683540452, - "bewear": 2.0530854496955104, - "tsareena": 3.1536030347200663, - "comfey": 4.26923756882363, - "oranguru": 2.8711278158705937, - "passimian": 2.077725044015378, - "palossand": 1.6035433005507291, - "pyukumuku": 46.020254062820854, - "togedemaru": 3.806249181101454, - "mimikyu-disguised": 4.782570859755915, - "greedent": 2.355176276035696, - "orbeetle": 2.431852254816722, - "thievul": 2.2124652674668894, - "eldegoss": 3.6256657540729087, - "dubwool": 3.190011854754122, - "drednaw": 1.4142381529147308, - "boltund": 5.470541464449098, - "carkol": 3.638788806086037, - "coalossal": 2.6753345207676866, - "sandaconda": 2.5694231719668865, - "cramorant": 8.48504325027988, - "barraskewda": 4.667610487905449, - "toxtricity-amped": 4.543126566006947, - "centiskorch": 4.741502349393801, - "grapploct": 1.3183098274299399, - "polteageist": 2.8514177461020465, - "hatterene": 2.6321687234428426, - "grimmsnarl": 3.9290108563791537, - "obstagoon": 3.6922696755928195, - "perrserker": 3.4306152556691485, - "alcremie": 1.546203591938688, - "falinks": 2.6286424627806277, - "pincurchin": 3.0913559957832417, - "frosmoth": 5.667447080185989, - "indeedee-male": 3.549798932816551, - "morpeko": 3.2646018857106966, - "copperajah": 2.4894706036541328, - "duraludon": 1.6056453314031263, - "drakloak": 4.827968303792158, - "sudowoodo": 2.636898981232418 + "ivysaur": 3.0027760086985027, + "charmeleon": 5.878155263998743, + "wartortle": 2.389581140509354, + "butterfree": 9.764610134056392, + "raichu": 5.76224985478329, + "raichu-alola": 4.279791305202442, + "sandslash": 1.896002952987324, + "sandslash-alola": 2.6256605045761616, + "nidoqueen": 2.9369181266630395, + "nidoking": 2.1394082408518313, + "clefairy": 9.49664018725985, + "clefable": 2.1222280166978393, + "jigglypuff": 28.490476988159045, + "wigglytuff": 2.0797560349767212, + "gloom": 6.050940193672021, + "vileplume": 2.6894145003147334, + "dugtrio": 3.4909783375317476, + "dugtrio-alola": 4.026590804089868, + "persian": 5.262937870020602, + "persian-alola": 4.743107136595959, + "golduck": 2.9243186112523225, + "poliwrath": 1.6915202878982056, + "kadabra": 4.5049307512255465, + "machoke": 3.549808402668896, + "tentacruel": 2.6871531578921592, + "slowbro": 1.77078825223565, + "magneton": 4.216547407503606, + "haunter": 4.411306020097582, + "kingler": 2.1082314969912055, + "exeggutor": 1.8170841618094238, + "marowak": 2.6398786450603504, + "marowak-alola": 2.865819926141502, + "hitmonlee": 2.3608176169665223, + "hitmonchan": 2.15321239754347, + "lickitung": 1.9125546892052845, + "weezing": 1.7474029815840022, + "weezing-galar": 2.8043308042683037, + "rhydon": 2.1721643211954076, + "chansey": 37.768359732033964, + "tangela": 4.234695039244473, + "kangaskhan": 2.1382335695679053, + "seadra": 3.508069622372525, + "seaking": 2.6039223089987944, + "starmie": 1.4646787244057065, + "mr-mime": 7.49931575960386, + "mr-mime-galar": 5.001992772256398, + "scyther": 5.950031811844975, + "jynx": 6.945906064718586, + "electabuzz": 3.1089945014168303, + "magmar": 2.786101433575797, + "tauros": 2.115351146338881, + "ditto": 3.1414740970974773, + "vaporeon": 3.1721976301419383, + "jolteon": 2.478360835568361, + "flareon": 4.121903453535661, + "porygon": 3.1576837443151735, + "dragonair": 1.9872948320770236, + "noctowl": 10.19543729930619, + "lanturn": 2.058524263765042, + "togetic": 8.3291743744748, + "xatu": 5.380335033459033, + "bellossom": 2.163317730649964, + "azumarill": 2.3485353244652534, + "sudowoodo": 2.636898981232418, + "politoed": 2.5318886277842045, + "quagsire": 3.4200728078937868, + "slowking": 2.5911561380549095, + "dunsparce": 3.6349304199367207, + "qwilfish": 3.62111227733707, + "sneasel": 3.5270344796725306, + "piloswine": 1.6260571434999054, + "octillery": 2.1449465427753167, + "mantine": 3.809088947324364, + "skarmory": 1.9295881178952006, + "hitmontop": 2.4397512686773863, + "miltank": 4.061209396167587, + "grovyle": 7.325634395837842, + "sceptile": 1.3867081322233885, + "combusken": 3.5984744142695035, + "blaziken": 1.9166355270291882, + "marshtomp": 2.1201608308662143, + "swampert": 1.0307163074199928, + "linoone": 6.196490010095012, + "linoone-galar": 6.74428817267364, + "pelipper": 8.644467456946488, + "ninjask": 15.828642419906643, + "exploud": 1.7844241402453114, + "lairon": 3.0181471415282823, + "manectric": 2.1578625881646962, + "roselia": 3.962276352763368, + "sharpedo": 5.5864704375671845, + "wailmer": 6.17365919315118, + "torkoal": 2.4629696779349874, + "flygon": 2.022005046897304, + "altaria": 2.3372759468151, + "whiscash": 1.6103610586505757, + "crawdaunt": 1.8276232545083808, + "claydol": 2.8847446982047638, + "cradily": 2.29784787107156, + "armaldo": 2.4718371577547584, + "dusclops": 3.579732630407989, + "absol": 2.258583345387805, + "glalie": 5.7437680753184255, + "sealeo": 3.9268753569708643, + "relicanth": 1.9570858531140556, + "metang": 3.22032835575804, + "luxray": 4.543243812744517, + "vespiquen": 5.743339602230105, + "cherrim": 5.373134179164493, + "gastrodon": 2.082044883487288, + "drifblim": 6.195025008516053, + "lopunny": 4.389298375859569, + "skuntank": 1.7808530738420916, + "bronzong": 2.7687588726941725, + "munchlax": 3.122195277415651, + "drapion": 2.650116320475459, + "abomasnow": 4.284348234215353, + "froslass": 4.08372173022874, + "rotom": 3.8003995832681525, + "stoutland": 3.00161686075246, + "liepard": 8.140379074811328, + "musharna": 1.5073409860431335, + "unfezant": 9.067515906988579, + "boldore": 3.1784892461490246, + "swoobat": 7.709503977881516, + "audino": 2.684574007933039, + "gurdurr": 1.810157709543796, + "palpitoad": 3.1113963014118555, + "seismitoad": 6.419011153302387, + "scolipede": 4.311127478179875, + "whimsicott": 3.004249967034352, + "lilligant": 2.700928581383284, + "basculin-red-striped": 2.7750990994236315, + "basculin-blue-striped": 3.346493579274113, + "krookodile": 2.8343219789453444, + "maractus": 1.9374506069116348, + "crustle": 2.5655809844980864, + "sigilyph": 3.0604920863934963, + "cofagrigus": 2.476942555889411, + "garbodor": 2.2274219438398783, + "cinccino": 5.515262356013427, + "vanillish": 3.0039443479172507, + "emolga": 4.366753507464815, + "escavalier": 1.8309962246384293, + "amoonguss": 2.5220639859500658, + "jellicent": 1.6719838032539784, + "galvantula": 2.176342249122894, + "klang": 2.932811935930423, + "klinklang": 3.7388719857223727, + "beheeyem": 1.908807135887984, + "lampent": 4.071133803244752, + "fraxure": 1.6345186551276587, + "beartic": 2.190707700325009, + "cryogonal": 2.655467067316322, + "accelgor": 4.517842886094826, + "stunfisk": 1.2817944974444582, + "stunfisk-galar": 2.4585977473677523, + "mienshao": 3.0496220047750433, + "druddigon": 1.9000587430750553, + "golurk": 1.5978349663236346, + "bisharp": 3.588152517194273, + "bouffalant": 1.4542846964706375, + "heatmor": 2.765814740126344, + "durant": 2.743687395317747, + "diggersby": 3.434106167356623, + "talonflame": 6.420198689891981, + "pangoro": 1.8230677704436702, + "doublade": 2.1481057247889077, + "malamar": 2.8499485642705653, + "barbaracle": 1.636819725709021, + "heliolisk": 4.661091390575866, + "tyrantrum": 1.6779680872090927, + "aurorus": 3.538926303325063, + "hawlucha": 3.594802098689322, + "dedenne": 3.3514365824267753, + "klefki": 3.3004311473551207, + "trevenant": 2.947570441688663, + "gourgeist-average": 5.246921857823965, + "charjabug": 5.350330347751755, + "vikavolt": 2.462564269391135, + "ribombee": 6.558012531491275, + "lycanroc-midday": 4.082747184016277, + "lycanroc-midnight": 2.7783771755065754, + "mudsdale": 1.375009316541162, + "araquanid": 3.696212401478916, + "lurantis": 2.313697372922794, + "shiinotic": 4.679976873123599, + "salazzle": 5.436010320370098, + "bewear": 2.0577031796259337, + "tsareena": 3.153086523977983, + "comfey": 4.262414190518736, + "oranguru": 2.8721804368120534, + "passimian": 2.0772590564716653, + "palossand": 1.5985105686457748, + "pyukumuku": 46.02749477485584, + "togedemaru": 3.8155090831880005, + "mimikyu-disguised": 4.790968454753184, + "greedent": 2.3592123874287054, + "orbeetle": 2.4308385620286113, + "thievul": 2.2178035688873603, + "eldegoss": 3.6165766239848134, + "dubwool": 3.1934675292733976, + "drednaw": 1.4153909355402803, + "boltund": 5.4789874969544226, + "carkol": 3.653850175548098, + "coalossal": 2.6804948651283214, + "sandaconda": 2.564391261130993, + "cramorant": 8.490120712171471, + "barraskewda": 4.668927210666256, + "toxtricity-amped": 4.550521202043076, + "centiskorch": 4.754049003973282, + "grapploct": 1.3147337579014542, + "polteageist": 2.8486901984461985, + "hatterene": 2.6320123101627177, + "grimmsnarl": 3.929973447463274, + "obstagoon": 3.702622647689873, + "perrserker": 3.4335142395031215, + "alcremie": 1.5463993674467782, + "falinks": 2.62468518425986, + "pincurchin": 3.0880755635965507, + "frosmoth": 5.681524613484109, + "indeedee-male": 3.552940847529918, + "morpeko": 3.272028617118389, + "copperajah": 2.4878686781815693, + "duraludon": 1.606357710960003, + "drakloak": 4.829137526359608 }, "politoed": { - "ivysaur": 2.7123987708135706, - "charmeleon": 5.527183051869473, - "wartortle": 2.7528588981375206, - "butterfree": 4.699104460275224, - "raichu": 5.4010276325372235, - "raichu-alola": 3.596396124097613, - "sandslash": 2.3852929634964233, - "sandslash-alola": 2.5771652288859657, - "nidoqueen": 3.6244420992863633, - "nidoking": 2.3294745256144638, - "clefairy": 9.542725944494107, - "clefable": 2.206323333643165, - "jigglypuff": 27.929917054659988, - "wigglytuff": 2.0922824286181925, - "gloom": 5.344020858015013, - "vileplume": 2.6041209027399495, - "dugtrio": 4.966638262099922, - "dugtrio-alola": 4.702442174869784, - "persian": 4.260504999767855, - "persian-alola": 4.343253449469419, - "golduck": 3.010323369004471, - "poliwrath": 1.8126184525231284, - "kadabra": 4.385103993446192, - "machoke": 3.7524409345311054, - "tentacruel": 2.6443931356883326, - "slowbro": 1.7683844494444565, - "magneton": 5.690231966187029, - "haunter": 4.49825446059642, - "kingler": 2.5772739951979764, - "exeggutor": 1.6814504012913294, - "marowak": 3.720695310589638, - "marowak-alola": 2.6764225162366597, - "hitmonlee": 2.628978246149363, - "hitmonchan": 2.1973307627096252, - "lickitung": 2.028040475431716, - "weezing": 2.1516940578345114, - "weezing-galar": 3.5180941609101106, - "rhydon": 3.086811664572336, - "chansey": 30.50979235341633, - "tangela": 4.159502285012968, - "kangaskhan": 1.8021907200942655, - "seadra": 4.453565157298837, - "seaking": 2.267955617334416, - "starmie": 1.406254025657508, - "mr-mime": 7.471154413682688, - "mr-mime-galar": 4.09168660491334, - "scyther": 2.6439602160153495, - "jynx": 4.019660960849441, - "electabuzz": 2.54416252786221, - "magmar": 2.557357767785848, - "tauros": 1.9150104178997533, - "ditto": 3.3215720991392566, - "vaporeon": 3.0181758958032674, - "jolteon": 2.0525186025743136, - "flareon": 3.8221889677447782, - "porygon": 2.803407679054767, - "dragonair": 1.7423128816337614, - "noctowl": 6.2597354255290245, - "lanturn": 2.2310785836531206, - "togetic": 5.652589494688366, - "xatu": 3.8869712965144045, - "bellossom": 2.024009623250951, - "azumarill": 2.1096023308630305, - "sudowoodo": 3.1702555875440033, - "quagsire": 4.754798011075346, - "slowking": 2.3579385463309395, - "dunsparce": 3.296827592026326, - "qwilfish": 4.479013079781402, - "sneasel": 2.3429727493486374, - "piloswine": 1.9930516297111776, - "octillery": 2.3289661532368133, - "mantine": 2.1291753213016817, - "skarmory": 1.8364247022589888, - "hitmontop": 2.7431586867780364, - "miltank": 3.4238356250293114, - "grovyle": 6.4654639672472305, - "sceptile": 1.1750859831212384, - "combusken": 4.463536350889958, - "blaziken": 2.1794678842231585, - "marshtomp": 2.61232019483325, - "swampert": 1.3422034959491498, - "linoone": 5.062180510032732, - "linoone-galar": 4.677560790879436, - "pelipper": 5.514161459269678, - "ninjask": 7.429397978100583, - "exploud": 1.738345986325767, - "lairon": 4.88972450861637, - "manectric": 2.098460580233618, - "roselia": 3.355690720616874, - "sharpedo": 4.750252653682889, - "wailmer": 6.472084370640258, - "torkoal": 2.7205576354823067, - "flygon": 2.409501643864523, - "altaria": 1.4893450546491547, - "whiscash": 2.2197729915492865, - "crawdaunt": 2.074366867241339, - "claydol": 4.427862667053122, - "cradily": 2.2056621477845733, - "armaldo": 2.2426012933109063, - "dusclops": 3.35833966580518, - "absol": 2.0379150128884578, - "glalie": 4.277714584935256, - "sealeo": 3.246029918944945, - "relicanth": 2.439862968639937, - "metang": 3.4880347545757604, - "luxray": 4.169355478641436, - "vespiquen": 2.663543451064561, - "cherrim": 4.794027775302265, - "gastrodon": 2.2303648200666064, - "drifblim": 4.176569936138469, - "lopunny": 3.643202064701515, - "skuntank": 1.8044142290292084, - "bronzong": 3.1801025223357264, - "munchlax": 2.3782812110330793, - "drapion": 3.1002238839586536, - "abomasnow": 2.724135504531528, - "froslass": 3.055526560440505, - "rotom": 3.5491936326858085, - "stoutland": 2.3635257743480462, - "liepard": 6.885937671325859, - "musharna": 1.5185026256224552, - "unfezant": 5.887925044722728, - "boldore": 4.2870546821426885, - "swoobat": 5.556733456789635, - "audino": 2.3466782197000717, - "gurdurr": 2.1617199106065863, - "palpitoad": 3.932852125132184, - "seismitoad": 6.471160545242434, - "scolipede": 3.042243318340197, - "whimsicott": 2.6922840110560546, - "lilligant": 2.5455006935226736, - "basculin-red-striped": 2.8122967499742777, - "basculin-blue-striped": 3.6433767962822348, - "krookodile": 3.5082665239799664, - "maractus": 1.79226571003555, - "crustle": 2.3444030570211867, - "sigilyph": 2.403350974028156, - "cofagrigus": 2.5532923247671113, - "garbodor": 2.151601413115176, - "cinccino": 4.6564523045930635, - "vanillish": 2.3723635380439405, - "emolga": 2.762218061237693, - "escavalier": 1.8385103439548778, - "amoonguss": 2.249988495755801, - "jellicent": 1.4779460515326548, - "galvantula": 1.46106931376278, - "klang": 3.3304998488681887, - "klinklang": 4.341634804959119, - "beheeyem": 1.8941313389770036, - "lampent": 3.778413789733275, - "fraxure": 1.4749804613338622, - "beartic": 1.8767387370895112, - "cryogonal": 2.089204889992719, - "accelgor": 3.2935452038001682, - "stunfisk": 1.7275102575674606, - "stunfisk-galar": 2.9303784980070873, - "mienshao": 3.3521353113578165, - "druddigon": 1.7157557482956565, - "golurk": 2.407407054081604, - "bisharp": 2.967544123515984, - "bouffalant": 1.2853933289860642, - "heatmor": 2.5792975838901304, - "durant": 2.94871365531686, - "diggersby": 4.038006653235316, - "talonflame": 3.9832848871090833, - "pangoro": 1.7199029285631937, - "doublade": 3.5427344365370206, - "malamar": 2.6871970693952534, - "barbaracle": 1.8204145463048576, - "heliolisk": 3.695880839896809, - "tyrantrum": 2.016310292088832, - "aurorus": 3.0727546389307063, - "hawlucha": 3.354644930300443, - "dedenne": 3.3306555257234916, - "klefki": 3.87340608419661, - "trevenant": 2.273386490682096, - "gourgeist-average": 4.387110018268976, - "charjabug": 3.5172038833068857, - "vikavolt": 1.7376489817212764, - "ribombee": 4.822113163713272, - "lycanroc-midday": 4.175691454603312, - "lycanroc-midnight": 2.928899106739662, - "mudsdale": 1.9201105079894791, - "araquanid": 2.0209421843446096, - "lurantis": 2.0371989113728377, - "shiinotic": 3.927807456299033, - "salazzle": 5.310077708906494, - "bewear": 1.6720287075243339, - "tsareena": 2.461412269205686, - "comfey": 4.383259002988625, - "oranguru": 2.806269731930012, - "passimian": 2.2270822861190744, - "palossand": 2.4733545600042532, - "pyukumuku": 39.645910308200804, - "togedemaru": 3.462971193689534, - "mimikyu-disguised": 4.112974058146603, - "greedent": 2.0592731775401094, - "orbeetle": 1.8725840814001598, - "thievul": 2.0208869995785887, - "eldegoss": 3.172789263800465, - "dubwool": 2.7266994658701766, - "drednaw": 1.54973472322289, - "boltund": 5.204877446523927, - "carkol": 4.063572067336234, - "coalossal": 3.4111838429829353, - "sandaconda": 3.530823192138085, - "cramorant": 4.9638049277349525, - "barraskewda": 4.444690571092796, - "toxtricity-amped": 4.289623397798908, - "centiskorch": 2.896274069861196, - "grapploct": 1.7130847626804657, - "polteageist": 2.7649390365339785, - "hatterene": 2.535522864173398, - "grimmsnarl": 3.9412905353018233, - "obstagoon": 2.3663634533391287, - "perrserker": 4.198522947883177, - "alcremie": 1.5817239667116858, - "falinks": 3.0827603652744457, - "pincurchin": 3.454386659183303, - "frosmoth": 2.836627126157573, - "indeedee-male": 3.5315084502557825, - "morpeko": 2.9726518715962245, - "copperajah": 2.980893940625161, - "duraludon": 2.1906240924261384, - "drakloak": 4.164171130461084, - "politoed": 2.415065549642416 + "ivysaur": 2.7083210725054823, + "charmeleon": 5.5484845588460905, + "wartortle": 2.7574880267028647, + "butterfree": 4.694636279831246, + "raichu": 5.404264142546593, + "raichu-alola": 3.596831903294153, + "sandslash": 2.3881221595713473, + "sandslash-alola": 2.58132866991902, + "nidoqueen": 3.634317585973826, + "nidoking": 2.3346951527089983, + "clefairy": 9.551786158832574, + "clefable": 2.2090641514926723, + "jigglypuff": 27.958152723405604, + "wigglytuff": 2.0942629696907287, + "gloom": 5.3445608366101744, + "vileplume": 2.601159751227943, + "dugtrio": 4.9744923178426195, + "dugtrio-alola": 4.714957611444877, + "persian": 4.2603929520984165, + "persian-alola": 4.345044075463733, + "golduck": 3.012986425087627, + "poliwrath": 1.8110522950036756, + "kadabra": 4.386192203824663, + "machoke": 3.7545430670343984, + "tentacruel": 2.649239225295278, + "slowbro": 1.7693636379972464, + "magneton": 5.703563242389736, + "haunter": 4.493396155558014, + "kingler": 2.579767259969861, + "exeggutor": 1.6783243935334105, + "marowak": 3.72702827616653, + "marowak-alola": 2.6849476819506597, + "hitmonlee": 2.631192017015346, + "hitmonchan": 2.1982461574830774, + "lickitung": 2.0294773129655814, + "weezing": 2.157045246300403, + "weezing-galar": 3.5279180228905815, + "rhydon": 3.0940289839856447, + "chansey": 30.503537662669373, + "tangela": 4.147097186196886, + "kangaskhan": 1.8022222301637556, + "seadra": 4.459011443250114, + "seaking": 2.26852448480463, + "starmie": 1.4067162697327937, + "mr-mime": 7.477148250960074, + "mr-mime-galar": 4.095146667358176, + "scyther": 2.6415351769754665, + "jynx": 4.009966033438206, + "electabuzz": 2.5433435534806517, + "magmar": 2.566603508036791, + "tauros": 1.9156816161240262, + "ditto": 3.3043531921254443, + "vaporeon": 3.0163151186171593, + "jolteon": 2.053456556615414, + "flareon": 3.8341848233758093, + "porygon": 2.8043479322517104, + "dragonair": 1.7413682466296863, + "noctowl": 6.257901729386829, + "lanturn": 2.2345575430226066, + "togetic": 5.6567435106288695, + "xatu": 3.886560604951403, + "bellossom": 2.02022307108647, + "azumarill": 2.11325015838986, + "sudowoodo": 3.1758089831315663, + "politoed": 2.415065549642416, + "quagsire": 4.76417095048966, + "slowking": 2.3593914262576066, + "dunsparce": 3.3003375841033344, + "qwilfish": 4.488153072820724, + "sneasel": 2.3434807664390376, + "piloswine": 1.9972003436339227, + "octillery": 2.3315012414725036, + "mantine": 2.124986036636927, + "skarmory": 1.8357030560074343, + "hitmontop": 2.7458161602540336, + "miltank": 3.4239766421475166, + "grovyle": 6.4509697320739035, + "sceptile": 1.1722472973820945, + "combusken": 4.478174904759541, + "blaziken": 2.1869431741967675, + "marshtomp": 2.6170436702574045, + "swampert": 1.344932888914856, + "linoone": 5.06183189849734, + "linoone-galar": 4.678005764024235, + "pelipper": 5.506508571450949, + "ninjask": 7.4230007478091, + "exploud": 1.7401639746904585, + "lairon": 4.906767654744283, + "manectric": 2.1019047260216235, + "roselia": 3.3509217617608984, + "sharpedo": 4.7500715336747446, + "wailmer": 6.479580319178648, + "torkoal": 2.731249352722964, + "flygon": 2.409118840600669, + "altaria": 1.488506561280402, + "whiscash": 2.2224160559021984, + "crawdaunt": 2.075083776255208, + "claydol": 4.4321156930997345, + "cradily": 2.204269504204894, + "armaldo": 2.2448950284805274, + "dusclops": 3.3589352375040598, + "absol": 2.0399598212719163, + "glalie": 4.282006389721268, + "sealeo": 3.2508642854431358, + "relicanth": 2.443135233012509, + "metang": 3.4913258276971506, + "luxray": 4.169066308657687, + "vespiquen": 2.661349233848644, + "cherrim": 4.78331630793223, + "gastrodon": 2.2322155923323406, + "drifblim": 4.169252594308032, + "lopunny": 3.643379717701537, + "skuntank": 1.8083656049941368, + "bronzong": 3.179621997515755, + "munchlax": 2.377475481681683, + "drapion": 3.107216870304593, + "abomasnow": 2.718299459286592, + "froslass": 3.059306190948634, + "rotom": 3.5440484270491046, + "stoutland": 2.3629617435608212, + "liepard": 6.887982170316758, + "musharna": 1.5183604244120734, + "unfezant": 5.884655091658249, + "boldore": 4.294576454764906, + "swoobat": 5.556067651970427, + "audino": 2.349531234451546, + "gurdurr": 2.1630379472157837, + "palpitoad": 3.9387183294979193, + "seismitoad": 6.474609328318667, + "scolipede": 3.0438729260742985, + "whimsicott": 2.6885286083047424, + "lilligant": 2.540469807625772, + "basculin-red-striped": 2.8153425429571257, + "basculin-blue-striped": 3.6475365492303404, + "krookodile": 3.5133977706135067, + "maractus": 1.7859652198844074, + "crustle": 2.34661933217661, + "sigilyph": 2.403929181468823, + "cofagrigus": 2.5547474844355236, + "garbodor": 2.1546221663961598, + "cinccino": 4.65981991908529, + "vanillish": 2.376074599831435, + "emolga": 2.757947732605141, + "escavalier": 1.8401656366332588, + "amoonguss": 2.247788785204081, + "jellicent": 1.4761976410406614, + "galvantula": 1.4599613717895679, + "klang": 3.335448831263954, + "klinklang": 4.351137972441463, + "beheeyem": 1.8955421304181863, + "lampent": 3.793675227454786, + "fraxure": 1.4744345516078752, + "beartic": 1.8796000919543157, + "cryogonal": 2.090503709758008, + "accelgor": 3.2945649140974713, + "stunfisk": 1.7307148531440308, + "stunfisk-galar": 2.938216378510899, + "mienshao": 3.3541035174082214, + "druddigon": 1.716375265424989, + "golurk": 2.4102687388347306, + "bisharp": 2.9706151938532668, + "bouffalant": 1.286472696826158, + "heatmor": 2.588669746288226, + "durant": 2.9484017552586455, + "diggersby": 4.042912792814208, + "talonflame": 3.9919041349956528, + "pangoro": 1.7209883391379865, + "doublade": 3.55109684496448, + "malamar": 2.686547838811273, + "barbaracle": 1.8224630874490222, + "heliolisk": 3.6867814133402, + "tyrantrum": 2.018308524541923, + "aurorus": 3.075968231775102, + "hawlucha": 3.352215298358961, + "dedenne": 3.3334468731079783, + "klefki": 3.8838817093430666, + "trevenant": 2.2659044884260244, + "gourgeist-average": 4.383279097539742, + "charjabug": 3.512060721000208, + "vikavolt": 1.7362240501474666, + "ribombee": 4.824451640509457, + "lycanroc-midday": 4.182984406587935, + "lycanroc-midnight": 2.933645840666924, + "mudsdale": 1.9226834033127544, + "araquanid": 2.0168621402662357, + "lurantis": 2.033484168990525, + "shiinotic": 3.925584868800479, + "salazzle": 5.333071579296038, + "bewear": 1.6715794813437854, + "tsareena": 2.4544973242823445, + "comfey": 4.383494834121459, + "oranguru": 2.8074134657415355, + "passimian": 2.228505482577691, + "palossand": 2.477021612314571, + "pyukumuku": 39.625284705954385, + "togedemaru": 3.469293724287642, + "mimikyu-disguised": 4.11282917731519, + "greedent": 2.0601098314756, + "orbeetle": 1.8727261863374738, + "thievul": 2.0227908639869416, + "eldegoss": 3.1651603296033892, + "dubwool": 2.7243353865037516, + "drednaw": 1.5519111960393057, + "boltund": 5.206882463099927, + "carkol": 4.083386068036437, + "coalossal": 3.4283516790808086, + "sandaconda": 3.5355228171278696, + "cramorant": 4.960526081248316, + "barraskewda": 4.445839251742605, + "toxtricity-amped": 4.29411565646621, + "centiskorch": 2.9028933686640555, + "grapploct": 1.7150285508867449, + "polteageist": 2.7635990552399754, + "hatterene": 2.5374462060648595, + "grimmsnarl": 3.9454003788307097, + "obstagoon": 2.3647815213017775, + "perrserker": 4.205686682560631, + "alcremie": 1.583346732593177, + "falinks": 3.0853164722524644, + "pincurchin": 3.4580882393329473, + "frosmoth": 2.836063185921117, + "indeedee-male": 3.5354712779498865, + "morpeko": 2.972530385751716, + "copperajah": 2.988823156456846, + "duraludon": 2.1936365555342574, + "drakloak": 4.161643268599811 }, "quagsire": { - "ivysaur": 1.9127243331878223, - "charmeleon": 4.8306738779604785, - "wartortle": 2.242353790741821, - "butterfree": 3.568273565309455, - "raichu": 5.092063999140343, - "raichu-alola": 3.3189502779903335, - "sandslash": 2.983579010863199, - "sandslash-alola": 2.956536213027044, - "nidoqueen": 3.369009073683741, - "nidoking": 2.3583503936416017, - "clefairy": 7.1128010435173845, - "clefable": 1.9073338550293906, - "jigglypuff": 24.564568231683538, - "wigglytuff": 1.8375813190443873, - "gloom": 4.722977664406989, - "vileplume": 1.8350274970509637, - "dugtrio": 4.403617893420561, - "dugtrio-alola": 4.230212021937155, - "persian": 4.169781877826798, - "persian-alola": 4.106325006046383, - "golduck": 2.5596618614698086, - "poliwrath": 1.6106750991916414, - "kadabra": 3.3950940362881843, - "machoke": 3.8993545278432036, - "tentacruel": 1.8697995380066925, - "slowbro": 1.5137038586026064, - "magneton": 3.644123523538336, - "haunter": 3.3863117681826886, - "kingler": 2.2366306165114427, - "exeggutor": 1.3775730209895416, - "marowak": 4.015787372344742, - "marowak-alola": 2.8437457753155977, - "hitmonlee": 2.176208836887019, - "hitmonchan": 2.1098709087079355, - "lickitung": 1.8931048256464382, - "weezing": 1.6889560914928508, - "weezing-galar": 2.7147323172638065, - "rhydon": 4.550744575915731, - "chansey": 19.08926741496038, - "tangela": 3.3954426641234354, - "kangaskhan": 1.8375504691242288, - "seadra": 3.607959960319806, - "seaking": 2.0787243049260153, - "starmie": 1.197421001676039, - "mr-mime": 5.894223401683577, - "mr-mime-galar": 3.3165170925347884, - "scyther": 2.6055217407254485, - "jynx": 3.4776214998522095, - "electabuzz": 2.768885019191994, - "magmar": 2.0234485460264295, - "tauros": 2.0901415763098057, - "ditto": 6.356710787391897, - "vaporeon": 2.4989344411606007, - "jolteon": 1.8092751367270394, - "flareon": 2.768810834053628, - "porygon": 2.8024373680214945, - "dragonair": 1.5867537641974008, - "noctowl": 5.099189068689218, - "lanturn": 1.623211042662699, - "togetic": 5.132352263905503, - "xatu": 3.5607515800168676, - "bellossom": 1.601153783586447, - "azumarill": 1.752883189917219, - "sudowoodo": 3.4616621394881157, - "politoed": 2.0844371232278656, - "slowking": 2.011336391113166, - "dunsparce": 3.2262712249229004, - "qwilfish": 3.0145242237656924, - "sneasel": 2.6299872562997963, - "piloswine": 1.9797976330747764, - "octillery": 2.0146576370087392, - "mantine": 1.768255153484639, - "skarmory": 2.1721796804410487, - "hitmontop": 2.5427249639413043, - "miltank": 3.7573728941610156, - "grovyle": 4.85198412498101, - "sceptile": 0.934300944747902, - "combusken": 4.119057122371279, - "blaziken": 2.059182369555317, - "marshtomp": 2.376692901340192, - "swampert": 1.1732845845389477, - "linoone": 5.161169307154499, - "linoone-galar": 5.746291645049756, - "pelipper": 5.099732679390475, - "ninjask": 7.114645822517146, - "exploud": 1.5316893246303025, - "lairon": 4.023165927006254, - "manectric": 1.7567766540934628, - "roselia": 2.4119587377935434, - "sharpedo": 5.004155879182124, - "wailmer": 5.541873796005418, - "torkoal": 2.7740033567322047, - "flygon": 2.296432889005894, - "altaria": 1.331469732398264, - "whiscash": 1.9509366376843071, - "crawdaunt": 2.064195121129175, - "claydol": 3.870147894707027, - "cradily": 1.8469550636959111, - "armaldo": 2.38986921281926, - "dusclops": 3.1966636106528554, - "absol": 1.9621840629226885, - "glalie": 4.188034839136932, - "sealeo": 3.086283061719332, - "relicanth": 2.1049435257039573, - "metang": 3.0716629174658276, - "luxray": 4.0158631164389265, - "vespiquen": 2.6242654895017283, - "cherrim": 3.5516070128104844, - "gastrodon": 2.0627448635597676, - "drifblim": 4.234889583760133, - "lopunny": 3.5872284381129105, - "skuntank": 1.4478077459747496, - "bronzong": 3.0948716730783907, - "munchlax": 2.2116147375880777, - "drapion": 2.4763166081262264, - "abomasnow": 2.6392600468321783, - "froslass": 2.7320581760515443, - "rotom": 3.7598325317980135, - "stoutland": 2.381370017463638, - "liepard": 7.00728566065714, - "musharna": 1.2494818873533005, - "unfezant": 6.291204930330565, - "boldore": 4.689200822753937, - "swoobat": 5.092278459637406, - "audino": 2.1966428964165807, - "gurdurr": 2.2672363289599864, - "palpitoad": 3.5630185521412523, - "seismitoad": 6.265716825433775, - "scolipede": 3.174231353390951, - "whimsicott": 2.1469489277934053, - "lilligant": 1.8940957686402573, - "basculin-red-striped": 2.418086412965522, - "basculin-blue-striped": 3.0863336722632666, - "krookodile": 3.4523079122264053, - "maractus": 1.2894268860969555, - "crustle": 2.7793218754802353, - "sigilyph": 2.209932580486111, - "cofagrigus": 2.50318077407299, - "garbodor": 1.8353646435094337, - "cinccino": 4.525081845913947, - "vanillish": 2.046540815493798, - "emolga": 3.3534750041037755, - "escavalier": 1.7518726421121127, - "amoonguss": 1.7238423677830348, - "jellicent": 0.9918507215933595, - "galvantula": 1.713497208419494, - "klang": 3.084664002478185, - "klinklang": 3.6383586756873205, - "beheeyem": 1.6717396554482713, - "lampent": 3.429151672871117, - "fraxure": 1.3456305908718669, - "beartic": 1.685270389719491, - "cryogonal": 1.4080869098842548, - "accelgor": 2.757554153216983, - "stunfisk": 1.5383646404485716, - "stunfisk-galar": 2.864306996593105, - "mienshao": 3.2744387703815674, - "druddigon": 1.5781317405491615, - "golurk": 2.2750391179018497, - "bisharp": 3.4206509890981183, - "bouffalant": 1.307399893878568, - "heatmor": 2.2057295001888586, - "durant": 3.3599705437268073, - "diggersby": 3.945778651756467, - "talonflame": 3.691890769490092, - "pangoro": 1.7887938435260122, - "doublade": 2.6818001167873002, - "malamar": 2.8436188800422517, - "barbaracle": 1.5114546732296283, - "heliolisk": 3.5115430793653006, - "tyrantrum": 1.7383814511806177, - "aurorus": 3.0330018794027236, - "hawlucha": 3.507692700693368, - "dedenne": 2.816122482909347, - "klefki": 3.035349902713323, - "trevenant": 1.9540449841435605, - "gourgeist-average": 4.445727926560283, - "charjabug": 4.208308304906083, - "vikavolt": 1.8385479891121626, - "ribombee": 4.238201446576593, - "lycanroc-midday": 4.217259813868498, - "lycanroc-midnight": 2.90954276053237, - "mudsdale": 1.957885067655243, - "araquanid": 1.7861262935615803, - "lurantis": 1.6305928492426949, - "shiinotic": 3.492830723191655, - "salazzle": 4.014002547835009, - "bewear": 1.8212871030074416, - "tsareena": 2.0948719346086553, - "comfey": 3.2556167644270926, - "oranguru": 2.43621853742576, - "passimian": 2.3774538200803255, - "palossand": 2.564808697152986, - "pyukumuku": 38.12886837911328, - "togedemaru": 2.4479059636820617, - "mimikyu-disguised": 3.714671485189915, - "greedent": 2.2237456327078973, - "orbeetle": 1.6789071854823363, - "thievul": 1.7508882808101682, - "eldegoss": 2.29497966520075, - "dubwool": 2.668218967383269, - "drednaw": 1.3906237471879055, - "boltund": 4.881615927487321, - "carkol": 4.431667634374142, - "coalossal": 3.503956724916983, - "sandaconda": 4.106809569487775, - "cramorant": 4.402179912596765, - "barraskewda": 3.9609845968163784, - "toxtricity-amped": 2.646987201403721, - "centiskorch": 2.4119626549208806, - "grapploct": 1.6082408549661196, - "polteageist": 1.9487578012325852, - "hatterene": 2.3404103908937053, - "grimmsnarl": 3.5522777517194166, - "obstagoon": 3.4294158066423606, - "perrserker": 3.6694487173024894, - "alcremie": 1.1949394804267481, - "falinks": 3.2292787355117487, - "pincurchin": 3.023632797026832, - "frosmoth": 2.383164287835533, - "indeedee-male": 2.883723491277263, - "morpeko": 2.9812729182254296, - "copperajah": 2.4884516325816057, - "duraludon": 1.8762284199682124, - "drakloak": 3.6048201493746768, - "quagsire": 4.459752570560768 + "ivysaur": 1.8987009879906296, + "charmeleon": 4.836973872493538, + "wartortle": 2.2384101081973435, + "butterfree": 3.5515192883676674, + "raichu": 5.096903856513123, + "raichu-alola": 3.3163853734837927, + "sandslash": 2.9883596113434834, + "sandslash-alola": 2.963704534912681, + "nidoqueen": 3.3699903080517535, + "nidoking": 2.362047258368496, + "clefairy": 7.082915484009737, + "clefable": 1.9058138184458648, + "jigglypuff": 24.536576725366032, + "wigglytuff": 1.8351409932573945, + "gloom": 4.714702076898112, + "vileplume": 1.8223821972055514, + "dugtrio": 4.407397154970994, + "dugtrio-alola": 4.238162220587777, + "persian": 4.16781882064874, + "persian-alola": 4.1051656410685275, + "golduck": 2.555367712935076, + "poliwrath": 1.6068942053606032, + "kadabra": 3.3872160597135164, + "machoke": 3.9008301513552164, + "tentacruel": 1.8659554113243915, + "slowbro": 1.5110970264228207, + "magneton": 3.6548361609468927, + "haunter": 3.3695291659488085, + "kingler": 2.2355044312123935, + "exeggutor": 1.3701327351425505, + "marowak": 4.021428255498624, + "marowak-alola": 2.8488672092701712, + "hitmonlee": 2.175120384118502, + "hitmonchan": 2.111193014190313, + "lickitung": 1.8936031523859551, + "weezing": 1.6895902462402037, + "weezing-galar": 2.7146082934488134, + "rhydon": 4.566224357400334, + "chansey": 19.019359717394444, + "tangela": 3.375888369489588, + "kangaskhan": 1.8376465354009732, + "seadra": 3.6019138721580886, + "seaking": 2.0767210317399702, + "starmie": 1.1953937428315187, + "mr-mime": 5.880738849430217, + "mr-mime-galar": 3.310131600380511, + "scyther": 2.6024922272714757, + "jynx": 3.4639513432060793, + "electabuzz": 2.7727800151394972, + "magmar": 2.025661847446702, + "tauros": 2.0914635619448294, + "ditto": 6.305546991957568, + "vaporeon": 2.490471995621019, + "jolteon": 1.809623444201601, + "flareon": 2.7696939010300445, + "porygon": 2.8031951050959822, + "dragonair": 1.5853295211227691, + "noctowl": 5.091021492469206, + "lanturn": 1.6224091019527904, + "togetic": 5.130879384884537, + "xatu": 3.5542749652652192, + "bellossom": 1.5903650989130558, + "azumarill": 1.751304480713312, + "sudowoodo": 3.4700395934231465, + "politoed": 2.080605549224594, + "quagsire": 4.459752570560768, + "slowking": 2.0067614299527885, + "dunsparce": 3.226256429418657, + "qwilfish": 3.012736681992407, + "sneasel": 2.631234636955712, + "piloswine": 1.9830196127975648, + "octillery": 2.012384511974985, + "mantine": 1.7617993889523387, + "skarmory": 2.1748220359476576, + "hitmontop": 2.5419394631041046, + "miltank": 3.759151907175422, + "grovyle": 4.817712688716777, + "sceptile": 0.9268730016180091, + "combusken": 4.123650337549442, + "blaziken": 2.06281082781587, + "marshtomp": 2.375455543614558, + "swampert": 1.1722217655141516, + "linoone": 5.160953390169934, + "linoone-galar": 5.751209999163425, + "pelipper": 5.089710188934838, + "ninjask": 7.104861827413702, + "exploud": 1.5303164452141158, + "lairon": 4.042313443594969, + "manectric": 1.7585009504097027, + "roselia": 2.3946921489717043, + "sharpedo": 5.002108383665925, + "wailmer": 5.534880423959752, + "torkoal": 2.7805265829570724, + "flygon": 2.2952130761175136, + "altaria": 1.3285758629629782, + "whiscash": 1.9495381393648183, + "crawdaunt": 2.06367891579245, + "claydol": 3.8686313626315894, + "cradily": 1.8403947631234798, + "armaldo": 2.393208475372693, + "dusclops": 3.192676594919458, + "absol": 1.9628143576786388, + "glalie": 4.189051514057345, + "sealeo": 3.0834993417269247, + "relicanth": 2.1076615289293383, + "metang": 3.07559233521094, + "luxray": 4.020885384613853, + "vespiquen": 2.6214522658407473, + "cherrim": 3.525720841913773, + "gastrodon": 2.061943112097653, + "drifblim": 4.2343069330530705, + "lopunny": 3.5870246578538665, + "skuntank": 1.4483530429626237, + "bronzong": 3.095998658203656, + "munchlax": 2.213145354334478, + "drapion": 2.4779218243411174, + "abomasnow": 2.628608345370245, + "froslass": 2.7280354567920795, + "rotom": 3.7615999844480843, + "stoutland": 2.380337410629841, + "liepard": 7.009117476792692, + "musharna": 1.2443482249871434, + "unfezant": 6.291792696773064, + "boldore": 4.702188271280079, + "swoobat": 5.082996365339339, + "audino": 2.196520840569251, + "gurdurr": 2.2677527546835394, + "palpitoad": 3.5597936205145007, + "seismitoad": 6.262498610441243, + "scolipede": 3.172390723459109, + "whimsicott": 2.135550785043822, + "lilligant": 1.8809530514592196, + "basculin-red-striped": 2.4154048838952447, + "basculin-blue-striped": 3.0821721416392522, + "krookodile": 3.455911302815686, + "maractus": 1.2781805998483984, + "crustle": 2.783986379350822, + "sigilyph": 2.206809724776221, + "cofagrigus": 2.499455227412847, + "garbodor": 1.8359885235787885, + "cinccino": 4.524149673480958, + "vanillish": 2.044549904575209, + "emolga": 3.3590749942310536, + "escavalier": 1.7516064648204503, + "amoonguss": 1.7144557795781803, + "jellicent": 0.9873414649158406, + "galvantula": 1.7157108362545683, + "klang": 3.0931592270414283, + "klinklang": 3.6446060823010944, + "beheeyem": 1.6691255223586385, + "lampent": 3.434742736661946, + "fraxure": 1.3440336001182778, + "beartic": 1.6844650556525085, + "cryogonal": 1.402982670322046, + "accelgor": 2.7525302806081147, + "stunfisk": 1.5401670932826943, + "stunfisk-galar": 2.867950732994036, + "mienshao": 3.2736672043071744, + "druddigon": 1.577211462615014, + "golurk": 2.275571313808211, + "bisharp": 3.428641612539783, + "bouffalant": 1.3084488597446793, + "heatmor": 2.2054750928326037, + "durant": 3.3655023942704165, + "diggersby": 3.9516279879731715, + "talonflame": 3.695976404369011, + "pangoro": 1.7899747037106621, + "doublade": 2.683877251641948, + "malamar": 2.843297686148097, + "barbaracle": 1.5117313226921456, + "heliolisk": 3.507283182653314, + "tyrantrum": 1.7405940959422068, + "aurorus": 3.0396967532826475, + "hawlucha": 3.5070372688374194, + "dedenne": 2.8169749803177258, + "klefki": 3.037630172836638, + "trevenant": 1.942138212746368, + "gourgeist-average": 4.439432224564035, + "charjabug": 4.215211849071672, + "vikavolt": 1.8383089396531092, + "ribombee": 4.230168840377799, + "lycanroc-midday": 4.226706604692946, + "lycanroc-midnight": 2.914642501957666, + "mudsdale": 1.9596831467933402, + "araquanid": 1.7809426040744483, + "lurantis": 1.6214001987466347, + "shiinotic": 3.4834131882889467, + "salazzle": 4.02100913351156, + "bewear": 1.8214218722794666, + "tsareena": 2.0833868081030604, + "comfey": 3.2383194927431895, + "oranguru": 2.432367662931605, + "passimian": 2.378808233791113, + "palossand": 2.5644525859299483, + "pyukumuku": 38.089322886954974, + "togedemaru": 2.453802418545538, + "mimikyu-disguised": 3.7102070314563265, + "greedent": 2.2251191247266675, + "orbeetle": 1.6752846364475824, + "thievul": 1.7503753672359372, + "eldegoss": 2.2771650695445516, + "dubwool": 2.662965517631592, + "drednaw": 1.3919146349866733, + "boltund": 4.8875293021406545, + "carkol": 4.447601797003803, + "coalossal": 3.514223722025035, + "sandaconda": 4.110302198159213, + "cramorant": 4.393325802725573, + "barraskewda": 3.9562906779272495, + "toxtricity-amped": 2.647757252377148, + "centiskorch": 2.4131842583275, + "grapploct": 1.607457266782303, + "polteageist": 1.9386403818720912, + "hatterene": 2.337062162674016, + "grimmsnarl": 3.549311476397923, + "obstagoon": 3.4357932950907086, + "perrserker": 3.6785456457212478, + "alcremie": 1.1910401148433432, + "falinks": 3.23065257697464, + "pincurchin": 3.02742126492839, + "frosmoth": 2.3779809842921997, + "indeedee-male": 2.8798547503120213, + "morpeko": 2.987235594146422, + "copperajah": 2.49229864846736, + "duraludon": 1.8814287141082182, + "drakloak": 3.5964394571496046 }, "slowking": { - "ivysaur": 3.975409044705029, - "charmeleon": 5.426571195152644, - "wartortle": 3.0518948439598086, - "butterfree": 4.911983889052895, - "raichu": 5.240571769896592, - "raichu-alola": 3.6703078198560464, - "sandslash": 2.4178499911393545, - "sandslash-alola": 1.9605636335742034, - "nidoqueen": 3.86393875114352, - "nidoking": 2.564603180579069, - "clefairy": 9.663060608490852, - "clefable": 2.278454276012321, - "jigglypuff": 28.70658534592129, - "wigglytuff": 2.2347247746251866, - "gloom": 7.768768230180436, - "vileplume": 3.6598568473806443, - "dugtrio": 4.885359724656382, - "dugtrio-alola": 4.4697301498755815, - "persian": 4.4808868772391435, - "persian-alola": 3.7889759212236847, - "golduck": 3.309471272743764, - "poliwrath": 2.7296873313248478, - "kadabra": 4.474965031893113, - "machoke": 5.29012103881219, - "tentacruel": 2.993267239612124, - "slowbro": 1.7315429518125165, - "magneton": 2.9898958078553046, - "haunter": 5.758542121179184, - "kingler": 2.9640042671039266, - "exeggutor": 2.0264952870348165, - "marowak": 3.522718902235903, - "marowak-alola": 2.451853515579039, - "hitmonlee": 3.0391864494875134, - "hitmonchan": 2.707876628731147, - "lickitung": 2.1577912567173936, - "weezing": 2.4780456298904197, - "weezing-galar": 4.1434071281847284, - "rhydon": 3.044382803487924, - "chansey": 30.391766907247508, - "tangela": 5.0824319857596825, - "kangaskhan": 1.8653628155086839, - "seadra": 4.99473017577494, - "seaking": 2.4867236308802116, - "starmie": 1.3522566163518728, - "mr-mime": 7.921469542254846, - "mr-mime-galar": 4.18964912736126, - "scyther": 2.705149369507825, - "jynx": 4.0103003148358765, - "electabuzz": 2.4613347234679246, - "magmar": 2.5073260537041735, - "tauros": 2.1384193734499073, - "ditto": 3.3249168537957554, - "vaporeon": 3.2935895128148367, - "jolteon": 1.9528773594226274, - "flareon": 3.643461307285715, - "porygon": 2.8644469448949303, - "dragonair": 2.086666210470544, - "noctowl": 6.967471447512026, - "lanturn": 1.9556143198825215, - "togetic": 6.213295484914959, - "xatu": 4.389641984504031, - "bellossom": 2.522584588699032, - "azumarill": 2.381292215431343, - "sudowoodo": 2.979823582890104, - "politoed": 2.6397696735895515, - "quagsire": 5.424437951191694, - "dunsparce": 3.3373593582523338, - "qwilfish": 5.250990919174504, - "sneasel": 2.1430788250346864, - "piloswine": 1.996069314704601, - "octillery": 2.473803273044637, - "mantine": 2.5237561588405035, - "skarmory": 1.7919434701013626, - "hitmontop": 3.6292940790787895, - "miltank": 3.841128653105432, - "grovyle": 8.670536742202357, - "sceptile": 1.4949046186620931, - "combusken": 5.070254103336009, - "blaziken": 2.442181381162572, - "marshtomp": 2.771905790833941, - "swampert": 1.4232496630446694, - "linoone": 4.968507771152578, - "linoone-galar": 4.077987423837704, - "pelipper": 6.5351465009098115, - "ninjask": 7.167159489000733, - "exploud": 1.8171800175604638, - "lairon": 2.5620728132693253, - "manectric": 1.9116516029386226, - "roselia": 4.939887152037444, - "sharpedo": 4.060985598895581, - "wailmer": 7.109994548781648, - "torkoal": 2.4375872604902318, - "flygon": 3.4725270326271427, - "altaria": 2.6022915529920727, - "whiscash": 2.414124992780529, - "crawdaunt": 1.6758895832138117, - "claydol": 4.509448788682624, - "cradily": 2.4244897178290055, - "armaldo": 2.0901157979169014, - "dusclops": 3.1670361168859973, - "absol": 1.9410368757874314, - "glalie": 4.276246681751482, - "sealeo": 3.531822125832088, - "relicanth": 2.1292487107442044, - "metang": 2.8041436489119427, - "luxray": 3.816643977481556, - "vespiquen": 2.7761042589654306, - "cherrim": 6.072813010936658, - "gastrodon": 2.2211363369655412, - "drifblim": 4.794013651881031, - "lopunny": 3.8623523995939015, - "skuntank": 1.3584181588843585, - "bronzong": 3.331395613368576, - "munchlax": 2.3647647756494368, - "drapion": 2.053809412688736, - "abomasnow": 3.1141850200025614, - "froslass": 3.1143474860611917, - "rotom": 3.6532526838796793, - "stoutland": 2.5264652007627295, - "liepard": 6.354047682812639, - "musharna": 1.5957453184389137, - "unfezant": 6.92485989476569, - "boldore": 3.859852760591024, - "swoobat": 6.288480051618254, - "audino": 2.509111210767103, - "gurdurr": 3.437621082922763, - "palpitoad": 4.189115252200752, - "seismitoad": 6.926929387240062, - "scolipede": 3.999146088996758, - "whimsicott": 3.3340108812675666, - "lilligant": 3.0507519263685943, - "basculin-red-striped": 3.1600386568692196, - "basculin-blue-striped": 3.8446448570471548, - "krookodile": 3.1931225436979354, - "maractus": 2.2030760613421143, - "crustle": 2.2722683622741817, - "sigilyph": 2.694298286002479, - "cofagrigus": 2.78301045441928, - "garbodor": 2.517043682984477, - "cinccino": 4.964292830985333, - "vanillish": 2.45124797532279, - "emolga": 3.1101734528648772, - "escavalier": 1.741835163175665, - "amoonguss": 3.289346068798273, - "jellicent": 1.6318712574160257, - "galvantula": 1.5430162627321915, - "klang": 2.6916490341581936, - "klinklang": 3.2762468845122608, - "beheeyem": 1.8753932857296363, - "lampent": 3.6454743496261184, - "fraxure": 1.6812914840181055, - "beartic": 2.008366545719158, - "cryogonal": 2.0714054332806158, - "accelgor": 2.913066030601586, - "stunfisk": 1.7052784239202041, - "stunfisk-galar": 2.7516656712478373, - "mienshao": 4.639404598130584, - "druddigon": 1.9464798340744824, - "golurk": 2.3016282008735782, - "bisharp": 2.162168813072342, - "bouffalant": 1.3580854582699964, - "heatmor": 2.5364659263800924, - "durant": 2.564581974077989, - "diggersby": 3.9828018174484106, - "talonflame": 3.9098374704224454, - "pangoro": 1.6664576773638784, - "doublade": 2.3147465936639713, - "malamar": 2.586016815129846, - "barbaracle": 1.6205297489418717, - "heliolisk": 3.4726391936414274, - "tyrantrum": 1.79611032697741, - "aurorus": 3.054256816682541, - "hawlucha": 4.710340663717405, - "dedenne": 3.084253672879459, - "klefki": 3.1112283164719354, - "trevenant": 3.093361349322999, - "gourgeist-average": 5.529690727524061, - "charjabug": 3.924561319955213, - "vikavolt": 1.835453836527483, - "ribombee": 4.665359762518023, - "lycanroc-midday": 4.124407162230458, - "lycanroc-midnight": 2.8242332144607416, - "mudsdale": 1.8867367959894281, - "araquanid": 2.207189851991512, - "lurantis": 2.4265729398016322, - "shiinotic": 5.065117010584786, - "salazzle": 4.560787272826853, - "bewear": 2.399369975272164, - "tsareena": 3.047603579297216, - "comfey": 4.5264890308681895, - "oranguru": 3.0013503142169347, - "passimian": 3.432855650354632, - "palossand": 2.329210171959291, - "pyukumuku": 43.16242786148028, - "togedemaru": 2.175395114848046, - "mimikyu-disguised": 3.7976135137748748, - "greedent": 2.356605633745701, - "orbeetle": 1.8100601141630177, - "thievul": 1.8368720393149842, - "eldegoss": 4.145965677651031, - "dubwool": 3.034990793977937, - "drednaw": 1.3577957631151865, - "boltund": 4.445294990418079, - "carkol": 3.968270042542583, - "coalossal": 3.3053140666840073, - "sandaconda": 3.449331032727775, - "cramorant": 5.187875644777915, - "barraskewda": 4.694682771826258, - "toxtricity-amped": 3.571844592904074, - "centiskorch": 2.8477374957813772, - "grapploct": 2.4782434717351833, - "polteageist": 2.747365868546136, - "hatterene": 2.6178009978282697, - "grimmsnarl": 3.7173837603748447, - "obstagoon": 2.2350858511391234, - "perrserker": 2.843904347802802, - "alcremie": 1.5777767813707904, - "falinks": 4.556900335596335, - "pincurchin": 3.0928170086863886, - "frosmoth": 2.5959867158284053, - "indeedee-male": 3.4804809504005165, - "morpeko": 2.4790178299228325, - "copperajah": 2.533724685339835, - "duraludon": 1.4146000032558614, - "drakloak": 4.650224610372254, - "slowking": 2.3352822062644267 + "ivysaur": 3.9759844180245585, + "charmeleon": 5.440865121797605, + "wartortle": 3.056428662223861, + "butterfree": 4.909935061739544, + "raichu": 5.242891349058863, + "raichu-alola": 3.670272861042827, + "sandslash": 2.41871923296187, + "sandslash-alola": 1.960478628880855, + "nidoqueen": 3.871885971797612, + "nidoking": 2.5702600270353475, + "clefairy": 9.67267996632853, + "clefable": 2.281187725464604, + "jigglypuff": 28.731578383596393, + "wigglytuff": 2.237414263131136, + "gloom": 7.780553081940608, + "vileplume": 3.657961192266141, + "dugtrio": 4.89555427752061, + "dugtrio-alola": 4.474540207666381, + "persian": 4.480492462561514, + "persian-alola": 3.780001808593647, + "golduck": 3.311072369402086, + "poliwrath": 2.73151096973395, + "kadabra": 4.479919549146252, + "machoke": 5.294312317345149, + "tentacruel": 2.997854540225804, + "slowbro": 1.7324412837059167, + "magneton": 2.988529664123406, + "haunter": 5.760659149409791, + "kingler": 2.966317743005117, + "exeggutor": 2.0255333547263765, + "marowak": 3.526014524632508, + "marowak-alola": 2.454562397901084, + "hitmonlee": 3.047294459573038, + "hitmonchan": 2.7114614573023275, + "lickitung": 2.1591650767412074, + "weezing": 2.481157880877653, + "weezing-galar": 4.152006887252572, + "rhydon": 3.048924528785083, + "chansey": 30.413313560889723, + "tangela": 5.0705554262522465, + "kangaskhan": 1.864010787888505, + "seadra": 4.997565719450039, + "seaking": 2.486589408898361, + "starmie": 1.3521252143101934, + "mr-mime": 7.9386760636365565, + "mr-mime-galar": 4.194567804202274, + "scyther": 2.702807790525055, + "jynx": 4.0012280186470575, + "electabuzz": 2.4592348538284003, + "magmar": 2.5140065149624418, + "tauros": 2.1382235203443036, + "ditto": 3.3056030249222377, + "vaporeon": 3.292094725001527, + "jolteon": 1.951433613206003, + "flareon": 3.6487637604758802, + "porygon": 2.8634646408241022, + "dragonair": 2.087289798173262, + "noctowl": 6.977389707759473, + "lanturn": 1.956131899428236, + "togetic": 6.227260967078946, + "xatu": 4.397452342924059, + "bellossom": 2.5215852463491886, + "azumarill": 2.383688379268749, + "sudowoodo": 2.983128219264718, + "politoed": 2.6408384621967813, + "quagsire": 5.436106960585056, + "slowking": 2.3352822062644267, + "dunsparce": 3.335901129594109, + "qwilfish": 5.2576399812025745, + "sneasel": 2.137710976965258, + "piloswine": 1.9999778984202021, + "octillery": 2.473635065653366, + "mantine": 2.5237843792580756, + "skarmory": 1.790348486501599, + "hitmontop": 3.6369172343859604, + "miltank": 3.8399642767480002, + "grovyle": 8.66956135203071, + "sceptile": 1.4931303076441043, + "combusken": 5.087243075135748, + "blaziken": 2.4500269126914453, + "marshtomp": 2.7762860403336145, + "swampert": 1.4258893007692812, + "linoone": 4.959263358640689, + "linoone-galar": 4.065440998867176, + "pelipper": 6.533102183870593, + "ninjask": 7.154149497602008, + "exploud": 1.8195754304494378, + "lairon": 2.563367371664359, + "manectric": 1.9134436292459127, + "roselia": 4.943732069218585, + "sharpedo": 4.049747265221554, + "wailmer": 7.115085827725762, + "torkoal": 2.442734909371603, + "flygon": 3.478522069350518, + "altaria": 2.6088817873456858, + "whiscash": 2.4177517402646833, + "crawdaunt": 1.6709466432184477, + "claydol": 4.520918904511718, + "cradily": 2.4254709473486056, + "armaldo": 2.089726066086482, + "dusclops": 3.161676121176578, + "absol": 1.9389087866585126, + "glalie": 4.273691534568488, + "sealeo": 3.534854764952557, + "relicanth": 2.1293134196074184, + "metang": 2.803075738692142, + "luxray": 3.813043972433955, + "vespiquen": 2.774995006850091, + "cherrim": 6.068691171120269, + "gastrodon": 2.221359489345319, + "drifblim": 4.800013010606598, + "lopunny": 3.86397673605385, + "skuntank": 1.3559254987891511, + "bronzong": 3.3357932314860737, + "munchlax": 2.3636223475377482, + "drapion": 2.0492197889091894, + "abomasnow": 3.1097143954654713, + "froslass": 3.115949003633074, + "rotom": 3.651065471523901, + "stoutland": 2.5256346549551623, + "liepard": 6.3407760318357145, + "musharna": 1.596731174079891, + "unfezant": 6.930327064696181, + "boldore": 3.863286022563022, + "swoobat": 6.299799422561232, + "audino": 2.5118181057408844, + "gurdurr": 3.44477803169931, + "palpitoad": 4.194653993888139, + "seismitoad": 6.930097454312815, + "scolipede": 3.9933839293857405, + "whimsicott": 3.333582480835174, + "lilligant": 3.046956404540751, + "basculin-red-striped": 3.163139049237831, + "basculin-blue-striped": 3.843416144540212, + "krookodile": 3.1914966886074314, + "maractus": 2.1985363414884564, + "crustle": 2.2723019097012283, + "sigilyph": 2.6996526931623204, + "cofagrigus": 2.783769941206019, + "garbodor": 2.5207250860715464, + "cinccino": 4.967204962156231, + "vanillish": 2.454086142179165, + "emolga": 3.1106492288122953, + "escavalier": 1.7406425265200753, + "amoonguss": 3.291134769942738, + "jellicent": 1.6314569880138488, + "galvantula": 1.5408510994446614, + "klang": 2.691405186721505, + "klinklang": 3.2772252015456775, + "beheeyem": 1.876072638482582, + "lampent": 3.655303246504374, + "fraxure": 1.6802526364837758, + "beartic": 2.0113727276451083, + "cryogonal": 2.073595612503577, + "accelgor": 2.9097765556293966, + "stunfisk": 1.7082554216373116, + "stunfisk-galar": 2.7529191791513385, + "mienshao": 4.646471505829439, + "druddigon": 1.9469146625383904, + "golurk": 2.305144958102013, + "bisharp": 2.1576901249107765, + "bouffalant": 1.3586106030852922, + "heatmor": 2.542289054992917, + "durant": 2.558264609611238, + "diggersby": 3.9888984765574746, + "talonflame": 3.920177162243879, + "pangoro": 1.6649083263473723, + "doublade": 2.3165044697609476, + "malamar": 2.581012522784234, + "barbaracle": 1.6205333558217245, + "heliolisk": 3.4634808562182746, + "tyrantrum": 1.7973627283036648, + "aurorus": 3.055748837541921, + "hawlucha": 4.714138693383602, + "dedenne": 3.0842471831860623, + "klefki": 3.1142328420923295, + "trevenant": 3.092106777807222, + "gourgeist-average": 5.5274889110838785, + "charjabug": 3.9178933978810813, + "vikavolt": 1.8336096978388199, + "ribombee": 4.66284766629155, + "lycanroc-midday": 4.128923886931138, + "lycanroc-midnight": 2.8255799152067436, + "mudsdale": 1.8895118494093912, + "araquanid": 2.2018065458655505, + "lurantis": 2.4236886383033154, + "shiinotic": 5.070028768366226, + "salazzle": 4.572817734976087, + "bewear": 2.3985799577120224, + "tsareena": 3.0432398848979982, + "comfey": 4.526975382705359, + "oranguru": 3.006533477562206, + "passimian": 3.4386329254811914, + "palossand": 2.3322939829599685, + "pyukumuku": 43.10744616981532, + "togedemaru": 2.1741257976910306, + "mimikyu-disguised": 3.7933412302590153, + "greedent": 2.3581682238234123, + "orbeetle": 1.8109115729254774, + "thievul": 1.834168087106554, + "eldegoss": 4.143182467207056, + "dubwool": 3.0333051863104425, + "drednaw": 1.357340831095405, + "boltund": 4.437179238031032, + "carkol": 3.979611805673257, + "coalossal": 3.315300156372289, + "sandaconda": 3.4502865979243227, + "cramorant": 5.18325460707426, + "barraskewda": 4.689007113235081, + "toxtricity-amped": 3.57121955415014, + "centiskorch": 2.853224754697701, + "grapploct": 2.4849821871910147, + "polteageist": 2.748310054979867, + "hatterene": 2.620538755249197, + "grimmsnarl": 3.714298989040439, + "obstagoon": 2.228906400336649, + "perrserker": 2.8398020332705887, + "alcremie": 1.5796170290578777, + "falinks": 4.56031948241522, + "pincurchin": 3.093085588752495, + "frosmoth": 2.5935127144627863, + "indeedee-male": 3.4836114525629513, + "morpeko": 2.473705718321148, + "copperajah": 2.5375643904027054, + "duraludon": 1.4135967703610746, + "drakloak": 4.647668023534781 }, "dunsparce": { - "ivysaur": 3.18001170727187, - "charmeleon": 3.305074744582365, - "wartortle": 2.2556666903595226, - "butterfree": 4.57536281862317, - "raichu": 4.136885943049975, - "raichu-alola": 3.69338707301545, - "sandslash": 2.4566621679024845, - "sandslash-alola": 1.7882764395617832, - "nidoqueen": 3.0081026291775297, - "nidoking": 1.921637444173979, - "clefairy": 7.717556827187952, - "clefable": 1.7290835520161432, - "jigglypuff": 22.65863435952436, - "wigglytuff": 1.6940700488008535, - "gloom": 5.770105678153165, - "vileplume": 3.024992522452954, - "dugtrio": 3.6668676594922123, - "dugtrio-alola": 2.908929066614382, - "persian": 3.6759576776366396, - "persian-alola": 4.277658865255484, - "golduck": 2.6080817331025683, - "poliwrath": 1.7196325912828274, - "kadabra": 4.293459332914717, - "machoke": 3.481619992394169, - "tentacruel": 2.0181046006921672, - "slowbro": 1.8815254463601316, - "magneton": 2.721284000434601, - "haunter": 4.8754584783919706, - "kingler": 2.157233516867189, - "exeggutor": 2.3906530233421552, - "marowak": 3.330766525784978, - "marowak-alola": 2.3445276080531476, - "hitmonlee": 2.271372066964358, - "hitmonchan": 2.089731751872087, - "lickitung": 1.6448027290227758, - "weezing": 1.4091985960475784, - "weezing-galar": 2.331542535140617, - "rhydon": 2.6135382213257543, - "chansey": 24.127970122892947, - "tangela": 5.820744164482949, - "kangaskhan": 1.5930120159267358, - "seadra": 3.762789002804378, - "seaking": 2.114695473846439, - "starmie": 1.4710818178316045, - "mr-mime": 6.352077115888048, - "mr-mime-galar": 3.7555882102024176, - "scyther": 2.7920387343811046, - "jynx": 4.80703834727489, - "electabuzz": 2.214538462073131, - "magmar": 1.4279944830228843, - "tauros": 1.715785367942043, - "ditto": 4.335310081794465, - "vaporeon": 2.78077705932148, - "jolteon": 1.733262414855448, - "flareon": 2.1350069311751927, - "porygon": 2.4047034409939614, - "dragonair": 1.918898772231639, - "noctowl": 5.476247125785983, - "lanturn": 1.6275243388404061, - "togetic": 5.365613789570081, - "xatu": 3.936767130078893, - "bellossom": 2.39476187632477, - "azumarill": 1.8384756200088923, - "sudowoodo": 2.24538422082624, - "politoed": 2.2181148644975544, - "quagsire": 3.844322170765429, - "slowking": 2.5670357087935587, - "qwilfish": 3.006390133235762, - "sneasel": 2.329494296019937, - "piloswine": 1.3460106882333331, - "octillery": 1.997896691461932, - "mantine": 2.098465566199683, - "skarmory": 1.8390260936181015, - "hitmontop": 2.4872957055446885, - "miltank": 3.2011143344107076, - "grovyle": 7.985423600030858, - "sceptile": 1.482862860490574, - "combusken": 2.9312261287772774, - "blaziken": 1.4802815492196402, - "marshtomp": 2.1456029089915014, - "swampert": 1.0807850395339416, - "linoone": 4.713770386593657, - "linoone-galar": 4.6395117674756765, - "pelipper": 5.3759693459870785, - "ninjask": 7.631057313951022, - "exploud": 1.354459911821942, - "lairon": 2.2415709319325154, - "manectric": 1.5044629633246211, - "roselia": 4.047416710512417, - "sharpedo": 5.03384489818837, - "wailmer": 5.59058287451217, - "torkoal": 1.6821648528868889, - "flygon": 3.3033684543059882, - "altaria": 2.1385101156146584, - "whiscash": 1.7721544062649983, - "crawdaunt": 1.891704244693536, - "claydol": 3.4077387133477335, - "cradily": 2.3240849565522677, - "armaldo": 1.6415111749488953, - "dusclops": 3.95480843597094, - "absol": 1.9701167823859809, - "glalie": 3.6116280048482468, - "sealeo": 2.7376491839924615, - "relicanth": 1.7385418797418852, - "metang": 3.0941960368214447, - "luxray": 3.258129870425963, - "vespiquen": 2.7276606636085763, - "cherrim": 5.959257924102205, - "gastrodon": 1.8638347118858247, - "drifblim": 4.279814333660805, - "lopunny": 3.035162429602507, - "skuntank": 1.2468017686467423, - "bronzong": 3.262249666370945, - "munchlax": 2.0441058398222918, - "drapion": 2.1292774057677026, - "abomasnow": 3.238720378094481, - "froslass": 3.1603605562538424, - "rotom": 4.186056365237711, - "stoutland": 2.072709150051923, - "liepard": 7.040446246409614, - "musharna": 1.563365354544669, - "unfezant": 6.904305604864879, - "boldore": 2.9597160861138287, - "swoobat": 5.626054169925762, - "audino": 1.923537155017581, - "gurdurr": 1.8242053963537426, - "palpitoad": 3.2665287895614776, - "seismitoad": 5.430425385365416, - "scolipede": 2.9599718814124145, - "whimsicott": 3.2941429094310406, - "lilligant": 3.1235692743527625, - "basculin-red-striped": 2.439448106822072, - "basculin-blue-striped": 3.148388801595268, - "krookodile": 2.9818349793730548, - "maractus": 2.276113662679915, - "crustle": 1.7840993642007774, - "sigilyph": 2.387310739364292, - "cofagrigus": 3.1072107592114415, - "garbodor": 1.5414675397796032, - "cinccino": 3.947754628951798, - "vanillish": 1.8711378148661844, - "emolga": 3.1641901205118868, - "escavalier": 1.5458100276754183, - "amoonguss": 2.5540009698532433, - "jellicent": 1.501164982831029, - "galvantula": 1.3535952183330007, - "klang": 2.3402502989791185, - "klinklang": 2.8945381116240636, - "beheeyem": 1.848622188360642, - "lampent": 2.608819766014698, - "fraxure": 1.6986554119777435, - "beartic": 1.462146995033815, - "cryogonal": 1.6126622546284368, - "accelgor": 3.0640947873451845, - "stunfisk": 1.2986916320697317, - "stunfisk-galar": 1.998934600474541, - "mienshao": 3.0638954568771917, - "druddigon": 1.9056750473174198, - "golurk": 1.936710417976987, - "bisharp": 1.975633445205165, - "bouffalant": 1.058710411561265, - "heatmor": 1.6132057934864843, - "durant": 2.723175545275919, - "diggersby": 3.3440847869107038, - "talonflame": 2.5208649182292557, - "pangoro": 1.5656733946556325, - "doublade": 2.766199575064215, - "malamar": 3.529643479604272, - "barbaracle": 1.3028151294491415, - "heliolisk": 3.150930319820479, - "tyrantrum": 1.725179738034322, - "aurorus": 2.162212399225251, - "hawlucha": 3.518379922028106, - "dedenne": 2.435372724705374, - "klefki": 2.5575414953864604, - "trevenant": 2.9318590983732404, - "gourgeist-average": 6.329434247108366, - "charjabug": 3.5052063549574477, - "vikavolt": 1.5875757120251097, - "ribombee": 4.532596465693052, - "lycanroc-midday": 2.9280126072727524, - "lycanroc-midnight": 1.9904557146648791, - "mudsdale": 1.5484286238813443, - "araquanid": 2.3753312619487823, - "lurantis": 2.4611668587778945, - "shiinotic": 4.408048859469927, - "salazzle": 2.7367187709678324, - "bewear": 1.6431450600745139, - "tsareena": 3.2016601019788924, - "comfey": 3.7388601389626537, - "oranguru": 2.782547692431616, - "passimian": 1.9979869607972844, - "palossand": 2.3650483546731773, - "pyukumuku": 36.37975584021356, - "togedemaru": 1.881427444595667, - "mimikyu-disguised": 4.442072110293831, - "greedent": 1.8713616814248577, - "orbeetle": 1.8431890705626466, - "thievul": 1.937702185877134, - "eldegoss": 4.060563051767632, - "dubwool": 2.464439070082929, - "drednaw": 1.1353202556210094, - "boltund": 4.028049176304384, - "carkol": 2.113917391048726, - "coalossal": 1.7330632235595154, - "sandaconda": 3.47613613589488, - "cramorant": 4.699198968325586, - "barraskewda": 3.995438081511936, - "toxtricity-amped": 2.265762737502576, - "centiskorch": 2.0417354675814505, - "grapploct": 1.4733655380782626, - "polteageist": 2.531310738607588, - "hatterene": 2.5325141151434236, - "grimmsnarl": 3.1431040745324452, - "obstagoon": 2.4598647549566177, - "perrserker": 2.8479391706782557, - "alcremie": 1.225874493056617, - "falinks": 2.6665075763922235, - "pincurchin": 2.5528651247584193, - "frosmoth": 2.642061871857776, - "indeedee-male": 3.5694398146554143, - "morpeko": 2.7351381385722013, - "copperajah": 1.9178280110961312, - "duraludon": 1.4364661878643696, - "drakloak": 5.023564348268447, - "dunsparce": 2.9657211056615105 + "ivysaur": 3.18360238047901, + "charmeleon": 3.302443003722599, + "wartortle": 2.2533752970538776, + "butterfree": 4.576727785657202, + "raichu": 4.130398956922296, + "raichu-alola": 3.693906845767751, + "sandslash": 2.4590800564931916, + "sandslash-alola": 1.7846614703973285, + "nidoqueen": 3.0120958911835714, + "nidoking": 1.9230366481575323, + "clefairy": 7.716624879783982, + "clefable": 1.7286892342934594, + "jigglypuff": 22.634108321552272, + "wigglytuff": 1.691727144022353, + "gloom": 5.775875449017665, + "vileplume": 3.0285271253357466, + "dugtrio": 3.669856948380997, + "dugtrio-alola": 2.907500829188958, + "persian": 3.6711338918745633, + "persian-alola": 4.278021169044748, + "golduck": 2.6063417002212113, + "poliwrath": 1.7179377435082905, + "kadabra": 4.295591478419706, + "machoke": 3.4797346126758684, + "tentacruel": 2.016480020510824, + "slowbro": 1.8824596307375758, + "magneton": 2.7176819458997743, + "haunter": 4.887075681186353, + "kingler": 2.1544209800531746, + "exeggutor": 2.3957808249451085, + "marowak": 3.333690483764688, + "marowak-alola": 2.348634115380807, + "hitmonlee": 2.268304145770894, + "hitmonchan": 2.089594675351597, + "lickitung": 1.642815680051277, + "weezing": 1.4087290864241004, + "weezing-galar": 2.3311016061325924, + "rhydon": 2.614386634459141, + "chansey": 24.095127467936127, + "tangela": 5.829082922874521, + "kangaskhan": 1.5913345519050162, + "seadra": 3.759522300298317, + "seaking": 2.114009125104051, + "starmie": 1.472070480001459, + "mr-mime": 6.353350188961667, + "mr-mime-galar": 3.7555794313972233, + "scyther": 2.7941231492933394, + "jynx": 4.807538770896219, + "electabuzz": 2.2126332102663095, + "magmar": 1.4266517117848103, + "tauros": 1.7129769626078726, + "ditto": 4.317640867540861, + "vaporeon": 2.7793688289203144, + "jolteon": 1.7339581803990511, + "flareon": 2.1357161133325837, + "porygon": 2.4020570530116774, + "dragonair": 1.9200073721478594, + "noctowl": 5.472881046479074, + "lanturn": 1.6266335214122782, + "togetic": 5.3682737162136025, + "xatu": 3.9408126028466883, + "bellossom": 2.398403508194546, + "azumarill": 1.8391937517137187, + "sudowoodo": 2.243209309270684, + "politoed": 2.2170064514275967, + "quagsire": 3.8398260392739045, + "slowking": 2.5684930464725557, + "dunsparce": 2.9657211056615105, + "qwilfish": 3.0043647653600685, + "sneasel": 2.328278247473536, + "piloswine": 1.3440614058385458, + "octillery": 1.9965632404012184, + "mantine": 2.097881325153794, + "skarmory": 1.8394627217809854, + "hitmontop": 2.4859840253055117, + "miltank": 3.1975519076854946, + "grovyle": 7.991160384676778, + "sceptile": 1.4851255361464777, + "combusken": 2.9262266293242756, + "blaziken": 1.478867240422005, + "marshtomp": 2.145700654583376, + "swampert": 1.0808244738399448, + "linoone": 4.713325240627943, + "linoone-galar": 4.637349157178459, + "pelipper": 5.372993785659458, + "ninjask": 7.636121988141737, + "exploud": 1.351731446877696, + "lairon": 2.2394905580912936, + "manectric": 1.5040705916592199, + "roselia": 4.0514285985218, + "sharpedo": 5.032427982150642, + "wailmer": 5.588172683203556, + "torkoal": 1.6812448165718197, + "flygon": 3.3084795860931697, + "altaria": 2.141110592621727, + "whiscash": 1.77189262060126, + "crawdaunt": 1.8906626195127474, + "claydol": 3.411782603935406, + "cradily": 2.3259637945627194, + "armaldo": 1.641620725774412, + "dusclops": 3.9684793998699024, + "absol": 1.9704153254008583, + "glalie": 3.6089168268088656, + "sealeo": 2.734686773226249, + "relicanth": 1.7369000148127183, + "metang": 3.0951211496311917, + "luxray": 3.255879326359773, + "vespiquen": 2.7282814415502714, + "cherrim": 5.96714281859605, + "gastrodon": 1.863650904099421, + "drifblim": 4.2833460023597025, + "lopunny": 3.029682412238606, + "skuntank": 1.2468760721903949, + "bronzong": 3.2638627245066267, + "munchlax": 2.041972952696317, + "drapion": 2.1294060734563987, + "abomasnow": 3.239613752383919, + "froslass": 3.1649144103482136, + "rotom": 4.196896892394137, + "stoutland": 2.0696663209827206, + "liepard": 7.042453942414866, + "musharna": 1.5645897015507813, + "unfezant": 6.906247013444077, + "boldore": 2.957414798258072, + "swoobat": 5.631751269180585, + "audino": 1.9212880384009057, + "gurdurr": 1.8215415942708173, + "palpitoad": 3.266457473731564, + "seismitoad": 5.42633305601212, + "scolipede": 2.9609768759689734, + "whimsicott": 3.2982796236274012, + "lilligant": 3.128101268235802, + "basculin-red-striped": 2.4383467123941394, + "basculin-blue-striped": 3.1469041957309365, + "krookodile": 2.9843286660936554, + "maractus": 2.2803491672208516, + "crustle": 1.7829068315404968, + "sigilyph": 2.3896394834377164, + "cofagrigus": 3.116442410930637, + "garbodor": 1.5395672734794086, + "cinccino": 3.9431451546830485, + "vanillish": 1.869154895771839, + "emolga": 3.165546818283161, + "escavalier": 1.5451903381572705, + "amoonguss": 2.5565200180154535, + "jellicent": 1.502008667193392, + "galvantula": 1.3532937700017018, + "klang": 2.3379859691461884, + "klinklang": 2.8917564728702154, + "beheeyem": 1.8499298386534155, + "lampent": 2.6103904526528803, + "fraxure": 1.6998652464256354, + "beartic": 1.4598133088774088, + "cryogonal": 1.6114737751887998, + "accelgor": 3.0648626173993856, + "stunfisk": 1.2988912239011061, + "stunfisk-galar": 1.9983053271370954, + "mienshao": 3.0616187610661796, + "druddigon": 1.907664446554457, + "golurk": 1.9395842526236171, + "bisharp": 1.9730880113317995, + "bouffalant": 1.057188191134089, + "heatmor": 1.6126017195241347, + "durant": 2.721893829876845, + "diggersby": 3.344437914698167, + "talonflame": 2.5198334269962186, + "pangoro": 1.5642537087782817, + "doublade": 2.766552156191795, + "malamar": 3.5329336369501734, + "barbaracle": 1.3009639718909933, + "heliolisk": 3.1465705019424703, + "tyrantrum": 1.7250248697849362, + "aurorus": 2.1587126841650655, + "hawlucha": 3.518014055874505, + "dedenne": 2.433638694161674, + "klefki": 2.5556386021180844, + "trevenant": 2.935983715023399, + "gourgeist-average": 6.357095351974915, + "charjabug": 3.506027394423406, + "vikavolt": 1.587780703669487, + "ribombee": 4.5334950213686875, + "lycanroc-midday": 2.9266415764313933, + "lycanroc-midnight": 1.9880634967239317, + "mudsdale": 1.5476072803707037, + "araquanid": 2.376914105821502, + "lurantis": 2.4643769687163797, + "shiinotic": 4.412065679031263, + "salazzle": 2.7340385770368423, + "bewear": 1.6415096951926047, + "tsareena": 3.2072204075210404, + "comfey": 3.7379374925751234, + "oranguru": 2.781474435514497, + "passimian": 1.996709749320857, + "palossand": 2.372064724872198, + "pyukumuku": 36.3347932075668, + "togedemaru": 1.8788042739716968, + "mimikyu-disguised": 4.454639621789864, + "greedent": 1.8691912949735083, + "orbeetle": 1.8451115121988577, + "thievul": 1.9385080159547385, + "eldegoss": 4.066084318604295, + "dubwool": 2.459466192637202, + "drednaw": 1.1340726165257624, + "boltund": 4.02652243550747, + "carkol": 2.1113789041453734, + "coalossal": 1.7306441658576581, + "sandaconda": 3.478869910793927, + "cramorant": 4.697133450846309, + "barraskewda": 3.9932852425562366, + "toxtricity-amped": 2.262983048990917, + "centiskorch": 2.0415156003225254, + "grapploct": 1.470712282768795, + "polteageist": 2.5327029789773703, + "hatterene": 2.534050119681169, + "grimmsnarl": 3.1395951374943714, + "obstagoon": 2.458029310624223, + "perrserker": 2.846042298234009, + "alcremie": 1.2255474995756606, + "falinks": 2.6642777041832177, + "pincurchin": 2.5516856669155485, + "frosmoth": 2.640409599557459, + "indeedee-male": 3.5723828633029484, + "morpeko": 2.734665757318434, + "copperajah": 1.9144048421728432, + "duraludon": 1.4368929757691031, + "drakloak": 5.037772066765751 }, "qwilfish": { - "ivysaur": 3.0521288049303816, - "charmeleon": 5.6653868487149195, - "wartortle": 2.761670382514621, - "butterfree": 5.047484532915597, - "raichu": 4.857909662263377, - "raichu-alola": 3.0103445498041026, - "sandslash": 2.4683464449574144, - "sandslash-alola": 1.9974700507695613, - "nidoqueen": 3.39754054811785, - "nidoking": 2.4084843079844758, - "clefairy": 12.308512277997771, - "clefable": 2.8377666679600133, - "jigglypuff": 36.65051251311544, - "wigglytuff": 2.4854131887170983, - "gloom": 5.794794079745055, - "vileplume": 2.807901607819539, - "dugtrio": 4.999980617389735, - "dugtrio-alola": 4.857384010301864, - "persian": 4.4515264578465565, - "persian-alola": 4.176283268535178, - "golduck": 3.0873994598319907, - "poliwrath": 1.9334650432396057, - "kadabra": 4.251262226778238, - "machoke": 4.083183595057834, - "tentacruel": 2.271896740764781, - "slowbro": 1.373075375144315, - "magneton": 2.762205644495904, - "haunter": 4.394066136673642, - "kingler": 2.222323295745326, - "exeggutor": 2.0298816786063547, - "marowak": 3.759472084282834, - "marowak-alola": 2.8734084023159756, - "hitmonlee": 2.9952396777201775, - "hitmonchan": 2.373478979957025, - "lickitung": 1.9410257146060825, - "weezing": 1.5517646087050545, - "weezing-galar": 2.8290007192194038, - "rhydon": 3.1399480120336793, - "chansey": 29.28454341475527, - "tangela": 4.965149047581006, - "kangaskhan": 1.845964514603342, - "seadra": 3.588479542979269, - "seaking": 2.4312850152742804, - "starmie": 1.3890691281977148, - "mr-mime": 7.219988971629391, - "mr-mime-galar": 3.88444673601174, - "scyther": 2.834954649686115, - "jynx": 5.620171999627174, - "electabuzz": 2.1070087095389294, - "magmar": 2.6482133333217766, - "tauros": 1.9546847285022286, - "ditto": 3.539363567519773, - "vaporeon": 3.2748616552674585, - "jolteon": 1.8486802262873667, - "flareon": 3.891496274480547, - "porygon": 2.6619060038454467, - "dragonair": 1.7728758908349895, - "noctowl": 6.2896917856571335, - "lanturn": 1.77322270825674, - "togetic": 7.430102658841882, - "xatu": 3.284054177703069, - "bellossom": 2.913035929364656, - "azumarill": 3.199187278643297, - "sudowoodo": 3.0057539653040104, - "politoed": 2.3341567329906074, - "quagsire": 4.84568527564473, - "slowking": 2.3143957805374358, - "dunsparce": 3.3951226153742136, - "sneasel": 2.610135121885144, - "piloswine": 2.138703999971581, - "octillery": 2.400879121949437, - "mantine": 2.586852165035676, - "skarmory": 1.9722263152452677, - "hitmontop": 2.857214806223892, - "miltank": 3.5861730869633277, - "grovyle": 10.099314711580359, - "sceptile": 1.7814637334074526, - "combusken": 4.927220489224647, - "blaziken": 2.428265091876346, - "marshtomp": 2.624541408278567, - "swampert": 1.2440128635416652, - "linoone": 5.4736479180041675, - "linoone-galar": 4.565630177506885, - "pelipper": 5.382122182939526, - "ninjask": 8.098028634910435, - "exploud": 1.7065252083055371, - "lairon": 2.7264086761399327, - "manectric": 1.656676076362376, - "roselia": 3.5793643969641584, - "sharpedo": 4.955868084210534, - "wailmer": 6.580931484467843, - "torkoal": 2.3464733142283203, - "flygon": 2.417765021706436, - "altaria": 1.6235093524757627, - "whiscash": 2.149385004916943, - "crawdaunt": 1.892952778896038, - "claydol": 3.884506089153156, - "cradily": 2.47247326133307, - "armaldo": 2.405407868439453, - "dusclops": 3.4926741060613065, - "absol": 2.0950786230778458, - "glalie": 4.869498116498724, - "sealeo": 3.256292822264456, - "relicanth": 1.8347030043572286, - "metang": 2.713264617950352, - "luxray": 3.3171150982312705, - "vespiquen": 2.9539381116734527, - "cherrim": 6.75538811916027, - "gastrodon": 2.412170958973679, - "drifblim": 3.4662631675634037, - "lopunny": 3.940632168956368, - "skuntank": 1.537116943559693, - "bronzong": 3.0215202431980526, - "munchlax": 2.587559050510339, - "drapion": 2.4827643484338107, - "abomasnow": 3.924265291218841, - "froslass": 3.357331182688993, - "rotom": 3.2640016290176894, - "stoutland": 2.437475989962667, - "liepard": 7.543953462117603, - "musharna": 1.314592513403507, - "unfezant": 6.164939369181294, - "boldore": 3.5596774640688578, - "swoobat": 4.6971320744361, - "audino": 2.186855137342594, - "gurdurr": 2.169372575472909, - "palpitoad": 3.5734854868937713, - "seismitoad": 6.5703442610064275, - "scolipede": 3.3576538115448127, - "whimsicott": 5.284540578804903, - "lilligant": 3.6106850709289926, - "basculin-red-striped": 2.720951958546287, - "basculin-blue-striped": 3.594431754678702, - "krookodile": 3.3743593294435943, - "maractus": 2.5821297186123484, - "crustle": 2.6682882282071168, - "sigilyph": 2.096295755275772, - "cofagrigus": 2.1654858437960183, - "garbodor": 2.0356469447723566, - "cinccino": 4.776813873813028, - "vanillish": 2.461015028138992, - "emolga": 2.478111646869137, - "escavalier": 1.890812774684792, - "amoonguss": 2.471168719625279, - "jellicent": 1.3903574415398905, - "galvantula": 1.325058875661365, - "klang": 2.5220886847293897, - "klinklang": 3.488870472806111, - "beheeyem": 1.6526130050921901, - "lampent": 3.940102970693176, - "fraxure": 1.450362417239733, - "beartic": 2.052916640695874, - "cryogonal": 2.3250144579885177, - "accelgor": 3.5512002050390725, - "stunfisk": 1.604892129778654, - "stunfisk-galar": 2.7136719615145815, - "mienshao": 3.55523799827848, - "druddigon": 1.7438794753806826, - "golurk": 2.543399192045513, - "bisharp": 2.3138901294670053, - "bouffalant": 1.395572017543373, - "heatmor": 2.7822908573024305, - "durant": 2.7866145012735712, - "diggersby": 4.018715949881931, - "talonflame": 4.096528999592886, - "pangoro": 1.8803774856546505, - "doublade": 2.1754978481500586, - "malamar": 2.3913707376397006, - "barbaracle": 1.5226699285319523, - "heliolisk": 3.0263936169512577, - "tyrantrum": 1.61064327488462, - "aurorus": 3.382379655005858, - "hawlucha": 3.732615334511177, - "dedenne": 3.588068184080191, - "klefki": 3.416632454322375, - "trevenant": 3.006756906912047, - "gourgeist-average": 4.744615497612072, - "charjabug": 3.565100406368889, - "vikavolt": 1.775922458593782, - "ribombee": 6.313824300237833, - "lycanroc-midday": 4.465527184577879, - "lycanroc-midnight": 3.241515316195999, - "mudsdale": 2.091761360003683, - "araquanid": 2.5998975896556127, - "lurantis": 2.8345690289153143, - "shiinotic": 8.38070084355548, - "salazzle": 4.591774537317366, - "bewear": 1.7431809328150538, - "tsareena": 3.781021848747425, - "comfey": 5.8074488843088155, - "oranguru": 2.252470041602641, - "passimian": 2.3477269734933035, - "palossand": 2.2239915860381925, - "pyukumuku": 43.97532100603099, - "togedemaru": 2.2060948071905098, - "mimikyu-disguised": 4.922340996416493, - "greedent": 2.046988791782283, - "orbeetle": 1.6487770759560498, - "thievul": 1.9789717882446007, - "eldegoss": 4.662904758562794, - "dubwool": 3.0562141238229485, - "drednaw": 1.3196044928873292, - "boltund": 4.209975744936532, - "carkol": 4.410560157630027, - "coalossal": 3.5099367311733163, - "sandaconda": 3.4637923768107894, - "cramorant": 5.865188933853493, - "barraskewda": 4.461455911601588, - "toxtricity-amped": 2.274140516051843, - "centiskorch": 2.904571319925863, - "grapploct": 1.8172236049626644, - "polteageist": 2.7274867758101635, - "hatterene": 2.759909772801631, - "grimmsnarl": 4.865219803198656, - "obstagoon": 2.354142238709307, - "perrserker": 2.9956282943165693, - "alcremie": 2.106345673513444, - "falinks": 3.259391840796865, - "pincurchin": 2.695918240396744, - "frosmoth": 3.1029168392767144, - "indeedee-male": 3.0974996567426443, - "morpeko": 2.4808084559433876, - "copperajah": 2.6680235584112943, - "duraludon": 1.1333116537088483, - "drakloak": 3.9419354167487386, - "qwilfish": 3.0590920527852425 + "ivysaur": 3.048844334637778, + "charmeleon": 5.675268992244501, + "wartortle": 2.7630817621920873, + "butterfree": 5.049498439272908, + "raichu": 4.847921345582966, + "raichu-alola": 2.997555478559172, + "sandslash": 2.4665911905195728, + "sandslash-alola": 1.9965141596638567, + "nidoqueen": 3.3914540169500436, + "nidoking": 2.4074964411779325, + "clefairy": 12.33172904781259, + "clefable": 2.8431149829261413, + "jigglypuff": 36.73433776382254, + "wigglytuff": 2.484131120995624, + "gloom": 5.796406607616105, + "vileplume": 2.8050996026644306, + "dugtrio": 4.99499883558787, + "dugtrio-alola": 4.856994781745817, + "persian": 4.450178538307548, + "persian-alola": 4.174278169195355, + "golduck": 3.0878146390873265, + "poliwrath": 1.9318904631341725, + "kadabra": 4.244639043340376, + "machoke": 4.086716959478912, + "tentacruel": 2.272592882276344, + "slowbro": 1.3671113597123064, + "magneton": 2.7520127565397385, + "haunter": 4.384257564940307, + "kingler": 2.2206801353619294, + "exeggutor": 2.02553695443751, + "marowak": 3.757718036533443, + "marowak-alola": 2.8791068940971147, + "hitmonlee": 3.003799714713735, + "hitmonchan": 2.375905455710848, + "lickitung": 1.9375688239367148, + "weezing": 1.550736674890092, + "weezing-galar": 2.8312873857493286, + "rhydon": 3.1383815659203123, + "chansey": 29.25919673050068, + "tangela": 4.960972245862543, + "kangaskhan": 1.8446518023028595, + "seadra": 3.581021959638843, + "seaking": 2.430905962320243, + "starmie": 1.386768988963463, + "mr-mime": 7.197479583122492, + "mr-mime-galar": 3.8714944179580533, + "scyther": 2.8356729420494515, + "jynx": 5.609402098909735, + "electabuzz": 2.0995836853214582, + "magmar": 2.6539435467604657, + "tauros": 1.953496167252706, + "ditto": 3.5167644688161745, + "vaporeon": 3.2688772542682134, + "jolteon": 1.843432992468466, + "flareon": 3.8983128293139044, + "porygon": 2.657207137939933, + "dragonair": 1.7694911772859436, + "noctowl": 6.288331550152542, + "lanturn": 1.7705758905934816, + "togetic": 7.453403254748882, + "xatu": 3.2727956503278293, + "bellossom": 2.913381169744553, + "azumarill": 3.209754134641252, + "sudowoodo": 3.0050880445145025, + "politoed": 2.3295491233885164, + "quagsire": 4.84682579295525, + "slowking": 2.310435281450612, + "dunsparce": 3.3962753469608424, + "qwilfish": 3.0590920527852425, + "sneasel": 2.610873576619292, + "piloswine": 2.142283143352124, + "octillery": 2.4020710023612506, + "mantine": 2.5830864618386675, + "skarmory": 1.9715406300696512, + "hitmontop": 2.859177867313548, + "miltank": 3.585981056363673, + "grovyle": 10.104169570611251, + "sceptile": 1.7815077827442591, + "combusken": 4.940229370350684, + "blaziken": 2.4355470125035956, + "marshtomp": 2.6243532499207554, + "swampert": 1.2414269341330846, + "linoone": 5.475009035816739, + "linoone-galar": 4.562373209688305, + "pelipper": 5.372071892405567, + "ninjask": 8.103343260341013, + "exploud": 1.7057070801925338, + "lairon": 2.7267723426716266, + "manectric": 1.6533324520285975, + "roselia": 3.569595144219318, + "sharpedo": 4.954342326692604, + "wailmer": 6.58285229713702, + "torkoal": 2.349508839178011, + "flygon": 2.415357811136155, + "altaria": 1.6223279649289781, + "whiscash": 2.147014024915626, + "crawdaunt": 1.8911223869282838, + "claydol": 3.8734440620611377, + "cradily": 2.470675560085188, + "armaldo": 2.4063859939506616, + "dusclops": 3.4912955811592568, + "absol": 2.0959730768985314, + "glalie": 4.874276883059209, + "sealeo": 3.2575070768893877, + "relicanth": 1.833132328566363, + "metang": 2.706066566547798, + "luxray": 3.3063221125132896, + "vespiquen": 2.957043773477186, + "cherrim": 6.749460758703653, + "gastrodon": 2.413624792812378, + "drifblim": 3.448281473410912, + "lopunny": 3.942709767760177, + "skuntank": 1.5373565375843896, + "bronzong": 3.013850688343117, + "munchlax": 2.5893306020933498, + "drapion": 2.48395175227344, + "abomasnow": 3.925610655023158, + "froslass": 3.357574470026127, + "rotom": 3.2534605878271408, + "stoutland": 2.4354740128861785, + "liepard": 7.550594786842323, + "musharna": 1.3097288230342956, + "unfezant": 6.164562858997261, + "boldore": 3.5572041554316964, + "swoobat": 4.680970560008094, + "audino": 2.1864078965409015, + "gurdurr": 2.1694894667513163, + "palpitoad": 3.565259011738747, + "seismitoad": 6.563282736639023, + "scolipede": 3.359143596951142, + "whimsicott": 5.292990717916217, + "lilligant": 3.6102292814490005, + "basculin-red-striped": 2.7202011346499715, + "basculin-blue-striped": 3.5950425480322696, + "krookodile": 3.3693614797171767, + "maractus": 2.5783531943383124, + "crustle": 2.672155602299701, + "sigilyph": 2.090900427305113, + "cofagrigus": 2.157466029074738, + "garbodor": 2.038006076025418, + "cinccino": 4.77676746911615, + "vanillish": 2.461630486196513, + "emolga": 2.4711380893568835, + "escavalier": 1.8889741244855345, + "amoonguss": 2.4693869046738675, + "jellicent": 1.387680441427154, + "galvantula": 1.3205944832039416, + "klang": 2.5140267576609188, + "klinklang": 3.487714798466743, + "beheeyem": 1.648074262766212, + "lampent": 3.9495876468670374, + "fraxure": 1.4491441287515914, + "beartic": 2.0551487472413497, + "cryogonal": 2.3277393729707914, + "accelgor": 3.555733586976197, + "stunfisk": 1.5997526300564902, + "stunfisk-galar": 2.707317635271149, + "mienshao": 3.557046469854688, + "druddigon": 1.742891627083202, + "golurk": 2.5438183778723236, + "bisharp": 2.30934791357804, + "bouffalant": 1.3971561038523068, + "heatmor": 2.7889322800873475, + "durant": 2.782742208081989, + "diggersby": 4.0146520934369905, + "talonflame": 4.10298001011842, + "pangoro": 1.882468094951259, + "doublade": 2.1748294749709367, + "malamar": 2.3827931431176603, + "barbaracle": 1.5222227387549712, + "heliolisk": 3.0065640405276852, + "tyrantrum": 1.6094297588573119, + "aurorus": 3.378021244254156, + "hawlucha": 3.7367051125201782, + "dedenne": 3.5853602673518403, + "klefki": 3.4190201999659937, + "trevenant": 3.007761588662702, + "gourgeist-average": 4.742249709117991, + "charjabug": 3.554279263558489, + "vikavolt": 1.774588373218788, + "ribombee": 6.328876957858639, + "lycanroc-midday": 4.467881194297268, + "lycanroc-midnight": 3.2451059215904667, + "mudsdale": 2.0933308569114777, + "araquanid": 2.5999878521516813, + "lurantis": 2.833660331486586, + "shiinotic": 8.399876192358313, + "salazzle": 4.60112143367633, + "bewear": 1.7417534176280445, + "tsareena": 3.7832714104664134, + "comfey": 5.816723034979313, + "oranguru": 2.2426685709353467, + "passimian": 2.3492728170352732, + "palossand": 2.218134592782638, + "pyukumuku": 43.978581634793514, + "togedemaru": 2.2031292233383, + "mimikyu-disguised": 4.926111102899967, + "greedent": 2.044648202172612, + "orbeetle": 1.6415551379731461, + "thievul": 1.9793675852179236, + "eldegoss": 4.65966806800346, + "dubwool": 3.0566035540817262, + "drednaw": 1.3197497786670747, + "boltund": 4.1992399421806885, + "carkol": 4.420512277930163, + "coalossal": 3.5157028926834073, + "sandaconda": 3.4585299917176178, + "cramorant": 5.869444668008096, + "barraskewda": 4.460115099389227, + "toxtricity-amped": 2.2640953601095024, + "centiskorch": 2.906549147638154, + "grapploct": 1.8199275699835313, + "polteageist": 2.7224948432701535, + "hatterene": 2.756404055838151, + "grimmsnarl": 4.87091406353489, + "obstagoon": 2.349414466669395, + "perrserker": 2.9896328427974304, + "alcremie": 2.1116745636691476, + "falinks": 3.2636691567349563, + "pincurchin": 2.687835214818567, + "frosmoth": 3.1002164416366034, + "indeedee-male": 3.090992517058646, + "morpeko": 2.4747388629857956, + "copperajah": 2.6694178370092088, + "duraludon": 1.1286296181730586, + "drakloak": 3.934953192262088 }, "sneasel": { - "ivysaur": 4.103602237472418, - "charmeleon": 3.4870372433862364, - "wartortle": 2.5199707877371793, - "butterfree": 5.42831976449811, - "raichu": 4.53132600548625, - "raichu-alola": 5.516912795740347, - "sandslash": 1.9700982557667701, - "sandslash-alola": 1.4036649978449394, - "nidoqueen": 3.492928742350893, - "nidoking": 2.0941357320103258, - "clefairy": 8.343844205704302, - "clefable": 1.5516684980498947, - "jigglypuff": 22.632676217864596, - "wigglytuff": 1.681969597056202, - "gloom": 6.4245259044871315, - "vileplume": 3.3997606346476767, - "dugtrio": 4.016995072778837, - "dugtrio-alola": 3.188489457490217, - "persian": 3.8939808498961037, - "persian-alola": 4.471790509008159, - "golduck": 2.944507188561899, - "poliwrath": 1.1881374165065055, - "kadabra": 5.565479673964012, - "machoke": 2.6252671561119705, - "tentacruel": 2.5297333564235016, - "slowbro": 2.3892522379005423, - "magneton": 2.6919013972011587, - "haunter": 7.1493958945215, - "kingler": 1.6720266010504847, - "exeggutor": 2.5744692254735497, - "marowak": 3.227641533067712, - "marowak-alola": 2.2135576886719113, - "hitmonlee": 1.5198731984029559, - "hitmonchan": 1.7067881232543625, - "lickitung": 2.005757399804095, - "weezing": 1.3473540963123674, - "weezing-galar": 2.002868683638191, - "rhydon": 1.923826674761798, - "chansey": 31.508485970596844, - "tangela": 4.622729798185947, - "kangaskhan": 1.7897159558619489, - "seadra": 3.7201082383112416, - "seaking": 2.366579650263047, - "starmie": 1.7910534704117311, - "mr-mime": 9.49319611608822, - "mr-mime-galar": 5.829102857816029, - "scyther": 2.9847672589448226, - "jynx": 6.650686699752569, - "electabuzz": 2.741884732379975, - "magmar": 1.508896655082618, - "tauros": 1.5679303310156132, - "ditto": 2.273053825678005, - "vaporeon": 3.3993570255726624, - "jolteon": 2.1517024511721967, - "flareon": 2.1793801382566205, - "porygon": 2.9530078096413854, - "dragonair": 2.3386741148021244, - "noctowl": 7.849754530489469, - "lanturn": 2.0197771987021897, - "togetic": 5.627737316136789, - "xatu": 5.766298805458174, - "bellossom": 2.4687375723935157, - "azumarill": 1.5809379474381238, - "sudowoodo": 1.7694607011708587, - "politoed": 2.5846709189899615, - "quagsire": 3.743702972820736, - "slowking": 3.700743839324569, - "dunsparce": 3.1693249889617956, - "qwilfish": 2.8907345189034066, - "piloswine": 1.3077546338984196, - "octillery": 2.0794902393114962, - "mantine": 2.7442754891683654, - "skarmory": 1.566538264413221, - "hitmontop": 1.9890368018678153, - "miltank": 2.9102198065508444, - "grovyle": 8.3247539817913, - "sceptile": 1.738565160094133, - "combusken": 1.9160905407173043, - "blaziken": 0.9496496628937948, - "marshtomp": 2.4786033497724027, - "swampert": 1.3392194350279376, - "linoone": 4.740475059920557, - "linoone-galar": 4.871408606028986, - "pelipper": 5.560964599256176, - "ninjask": 7.202517150460396, - "exploud": 1.594338437954109, - "lairon": 1.4842630988846675, - "manectric": 1.7763042855127864, - "roselia": 5.762356183350935, - "sharpedo": 4.176211061257768, - "wailmer": 6.097446407715851, - "torkoal": 1.3588990288193052, - "flygon": 3.7535174267302276, - "altaria": 2.5418374274319144, - "whiscash": 2.1199164403802264, - "crawdaunt": 1.6237781699305391, - "claydol": 4.791099077600082, - "cradily": 2.631344808122301, - "armaldo": 1.4743043109038125, - "dusclops": 4.485617555345337, - "absol": 1.9077116542436463, - "glalie": 4.118852045855775, - "sealeo": 3.240581637544283, - "relicanth": 1.4658685879448596, - "metang": 3.4959767912058655, - "luxray": 3.7433563546962856, - "vespiquen": 2.495647812553213, - "cherrim": 7.197055415014015, - "gastrodon": 1.9307437572944441, - "drifblim": 6.893128669560262, - "lopunny": 2.96507173397445, - "skuntank": 1.3224863739937798, - "bronzong": 4.496518239961338, - "munchlax": 2.2153385572233395, - "drapion": 1.872963197977754, - "abomasnow": 3.2173062601630056, - "froslass": 4.251861388091886, - "rotom": 5.542637402979997, - "stoutland": 2.273088459750323, - "liepard": 6.04482108622956, - "musharna": 2.4191519419764216, - "unfezant": 6.898526443273447, - "boldore": 2.171455129087243, - "swoobat": 8.270012388415676, - "audino": 2.0798992266316803, - "gurdurr": 1.2482298569381198, - "palpitoad": 3.8311274322215354, - "seismitoad": 6.378924632036735, - "scolipede": 2.575551653516781, - "whimsicott": 3.4092283534611205, - "lilligant": 3.467933149269094, - "basculin-red-striped": 2.797337373846205, - "basculin-blue-striped": 3.5421955059771126, - "krookodile": 3.5081836945485927, - "maractus": 2.7602594201244237, - "crustle": 1.3506101708464575, - "sigilyph": 3.225735915112989, - "cofagrigus": 3.8353908848488407, - "garbodor": 1.6166973317742859, - "cinccino": 4.6059077663541235, - "vanillish": 2.327383535612351, - "emolga": 3.7868125912673136, - "escavalier": 1.6043745471560127, - "amoonguss": 3.1882015238315615, - "jellicent": 2.1695186877634978, - "galvantula": 1.543639904657296, - "klang": 2.4147155473891955, - "klinklang": 2.582324788772679, - "beheeyem": 2.6323416104816513, - "lampent": 2.7974368509579075, - "fraxure": 1.6323163787777861, - "beartic": 1.6107843319961557, - "cryogonal": 2.1475468367116766, - "accelgor": 2.6936981964872078, - "stunfisk": 1.6329803017900986, - "stunfisk-galar": 2.3132900236201435, - "mienshao": 2.440054757359051, - "druddigon": 2.078162226337527, - "golurk": 2.0088049162637605, - "bisharp": 2.0883630604102335, - "bouffalant": 1.0195995975569314, - "heatmor": 1.6182985393325464, - "durant": 2.083219197700793, - "diggersby": 3.5338442240651227, - "talonflame": 2.5894339137207143, - "pangoro": 1.2008025261559219, - "doublade": 1.8053818199921232, - "malamar": 3.0838219478464346, - "barbaracle": 1.3788413850411232, - "heliolisk": 3.9853108055179756, - "tyrantrum": 1.2677793874372991, - "aurorus": 2.358047098438689, - "hawlucha": 3.2083533812561473, - "dedenne": 2.3360930090444376, - "klefki": 1.9808177412218484, - "trevenant": 3.2447883177142174, - "gourgeist-average": 6.1292398368598775, - "charjabug": 3.734919270806416, - "vikavolt": 1.6145916099601294, - "ribombee": 3.7461276234058323, - "lycanroc-midday": 2.717187848075844, - "lycanroc-midnight": 1.8277921823901937, - "mudsdale": 1.3477689083140794, - "araquanid": 2.135512730557453, - "lurantis": 2.6670969612798183, - "shiinotic": 4.937015354308407, - "salazzle": 2.897995075419667, - "bewear": 1.531861581074759, - "tsareena": 3.564343520695193, - "comfey": 3.9745747376015204, - "oranguru": 4.719943669674267, - "passimian": 1.456369345919351, - "palossand": 2.647151594551993, - "pyukumuku": 38.83275122055392, - "togedemaru": 2.0444005726426915, - "mimikyu-disguised": 4.382083157907175, - "greedent": 1.961231816841423, - "orbeetle": 2.3766212188561315, - "thievul": 1.799061127534968, - "eldegoss": 5.005426296932125, - "dubwool": 2.270956211383362, - "drednaw": 0.940212326240766, - "boltund": 4.92703466646204, - "carkol": 1.7893467310655655, - "coalossal": 1.635821560085538, - "sandaconda": 3.0042588419824927, - "cramorant": 6.042276767353719, - "barraskewda": 4.3714446782138685, - "toxtricity-amped": 2.639788143714678, - "centiskorch": 1.9553551948768828, - "grapploct": 1.1524018670473213, - "polteageist": 4.600464329236008, - "hatterene": 2.5317557788207568, - "grimmsnarl": 3.182485764121986, - "obstagoon": 2.3382947125355784, - "perrserker": 2.6978515961362906, - "alcremie": 1.2028925974222004, - "falinks": 1.8299597632958071, - "pincurchin": 2.9715480327259804, - "frosmoth": 2.3436752521030453, - "indeedee-male": 4.9490664847221755, - "morpeko": 2.62554514680527, - "copperajah": 1.6991962640077583, - "duraludon": 1.2296222525726828, - "drakloak": 6.590541799305882, - "sneasel": 2.1294205203284413 + "ivysaur": 4.113045919702472, + "charmeleon": 3.4813627436361236, + "wartortle": 2.517845950592987, + "butterfree": 5.429868329973889, + "raichu": 4.523915980822419, + "raichu-alola": 5.542727482817686, + "sandslash": 1.9666491324354725, + "sandslash-alola": 1.3968504907401, + "nidoqueen": 3.5018154863526476, + "nidoking": 2.095859540517174, + "clefairy": 8.33446657073074, + "clefable": 1.5485373487409315, + "jigglypuff": 22.57614778286816, + "wigglytuff": 1.6811076387338284, + "gloom": 6.426014287559246, + "vileplume": 3.401970548986185, + "dugtrio": 4.02055928208381, + "dugtrio-alola": 3.187194948465068, + "persian": 3.888888412367693, + "persian-alola": 4.47581467423285, + "golduck": 2.9433996824418767, + "poliwrath": 1.1811277364089334, + "kadabra": 5.587298164639291, + "machoke": 2.610448779960094, + "tentacruel": 2.5319588611176265, + "slowbro": 2.3982975824192208, + "magneton": 2.687323277205487, + "haunter": 7.189695037802295, + "kingler": 1.6635383751627117, + "exeggutor": 2.5842762681994893, + "marowak": 3.2276146599056883, + "marowak-alola": 2.2130611703601444, + "hitmonlee": 1.509058027425548, + "hitmonchan": 1.7006740889216796, + "lickitung": 2.0082935080928754, + "weezing": 1.3474857287593247, + "weezing-galar": 1.996713724560386, + "rhydon": 1.917662589577502, + "chansey": 31.571370744617624, + "tangela": 4.619115592874106, + "kangaskhan": 1.789967980706093, + "seadra": 3.717293528128442, + "seaking": 2.365836170732261, + "starmie": 1.7943267343944653, + "mr-mime": 9.555951829942654, + "mr-mime-galar": 5.861237507111529, + "scyther": 2.984882597886463, + "jynx": 6.668041651154206, + "electabuzz": 2.7458209883997213, + "magmar": 1.5070828690280909, + "tauros": 1.5630845683507006, + "ditto": 2.2596917455864993, + "vaporeon": 3.4026171638894436, + "jolteon": 2.156773140200157, + "flareon": 2.1799479249100235, + "porygon": 2.957847218496429, + "dragonair": 2.342761328540296, + "noctowl": 7.866308168619265, + "lanturn": 2.0224217211855957, + "togetic": 5.615607280154466, + "xatu": 5.800761822571172, + "bellossom": 2.470837406435023, + "azumarill": 1.5773532827553982, + "sudowoodo": 1.7609063129728157, + "politoed": 2.585383492230812, + "quagsire": 3.734400366235899, + "slowking": 3.71502894766018, + "dunsparce": 3.170691223956619, + "qwilfish": 2.885732207286098, + "sneasel": 2.1294205203284413, + "piloswine": 1.3015452120617998, + "octillery": 2.075760084882558, + "mantine": 2.7503155639339276, + "skarmory": 1.563832386607972, + "hitmontop": 1.9801811991046074, + "miltank": 2.9030582274621324, + "grovyle": 8.31315773996752, + "sceptile": 1.740362227150808, + "combusken": 1.9022900800653701, + "blaziken": 0.9431060968617837, + "marshtomp": 2.480910901370822, + "swampert": 1.3416913976858251, + "linoone": 4.735707371763645, + "linoone-galar": 4.875643103477524, + "pelipper": 5.558912504516229, + "ninjask": 7.184939496949718, + "exploud": 1.5923033708042817, + "lairon": 1.477091974346472, + "manectric": 1.778053421513133, + "roselia": 5.783538739481264, + "sharpedo": 4.169895448318519, + "wailmer": 6.092714070625128, + "torkoal": 1.355573807851422, + "flygon": 3.7548673032351276, + "altaria": 2.5455460777362364, + "whiscash": 2.124202928324256, + "crawdaunt": 1.6212986267227574, + "claydol": 4.813094502848841, + "cradily": 2.6333410968726043, + "armaldo": 1.4701486070590741, + "dusclops": 4.4986294014780945, + "absol": 1.9065260017595942, + "glalie": 4.119366436130677, + "sealeo": 3.2411184784398497, + "relicanth": 1.460563754205999, + "metang": 3.4999966376268254, + "luxray": 3.7449350362381493, + "vespiquen": 2.488357335878659, + "cherrim": 7.209689032937604, + "gastrodon": 1.928060418953606, + "drifblim": 6.937905819638225, + "lopunny": 2.9558614394645506, + "skuntank": 1.3231300616932802, + "bronzong": 4.5127503833175755, + "munchlax": 2.2128229465175417, + "drapion": 1.8677215989656673, + "abomasnow": 3.218160748649252, + "froslass": 4.270869758544304, + "rotom": 5.570474551692586, + "stoutland": 2.2715529223162543, + "liepard": 6.032581478564561, + "musharna": 2.433968117830526, + "unfezant": 6.905295915787254, + "boldore": 2.1601849919695084, + "swoobat": 8.319646283003237, + "audino": 2.077994415758472, + "gurdurr": 1.2382696235204218, + "palpitoad": 3.8354918937096256, + "seismitoad": 6.3820192083723875, + "scolipede": 2.5692655081736966, + "whimsicott": 3.405850400751083, + "lilligant": 3.4699944032979873, + "basculin-red-striped": 2.799323659736763, + "basculin-blue-striped": 3.5433275243271005, + "krookodile": 3.5134142833588964, + "maractus": 2.766999634836921, + "crustle": 1.3432468181605504, + "sigilyph": 3.2395119785380153, + "cofagrigus": 3.8596853745292394, + "garbodor": 1.6116021949046222, + "cinccino": 4.6092157136088225, + "vanillish": 2.330904733641701, + "emolga": 3.7951112386591848, + "escavalier": 1.6020803480572052, + "amoonguss": 3.1945249872366075, + "jellicent": 2.1754129377557168, + "galvantula": 1.543578068129639, + "klang": 2.411373792746658, + "klinklang": 2.5738068193679435, + "beheeyem": 2.64293957441203, + "lampent": 2.799097544172295, + "fraxure": 1.631336466455424, + "beartic": 1.606516241674727, + "cryogonal": 2.1530013209269154, + "accelgor": 2.6900539251491575, + "stunfisk": 1.6365629704919846, + "stunfisk-galar": 2.317226138813728, + "mienshao": 2.428246027927492, + "druddigon": 2.0796690989249025, + "golurk": 2.008734622571099, + "bisharp": 2.088122746700921, + "bouffalant": 1.0166002703359256, + "heatmor": 1.6151149426081344, + "durant": 2.0741760361048254, + "diggersby": 3.534040701020927, + "talonflame": 2.586579814489465, + "pangoro": 1.193235700469658, + "doublade": 1.7993476082594868, + "malamar": 3.0917345008212815, + "barbaracle": 1.3765651808279973, + "heliolisk": 3.9922815927684736, + "tyrantrum": 1.2629877907596743, + "aurorus": 2.355264417464869, + "hawlucha": 3.1964217966475683, + "dedenne": 2.333562307462215, + "klefki": 1.9722193361516307, + "trevenant": 3.2440165805901735, + "gourgeist-average": 6.147503992797587, + "charjabug": 3.734542422378091, + "vikavolt": 1.6131033172598355, + "ribombee": 3.7336504159268147, + "lycanroc-midday": 2.7093211251772975, + "lycanroc-midnight": 1.8210964284198452, + "mudsdale": 1.3430359249346586, + "araquanid": 2.132095137084627, + "lurantis": 2.6672243199475503, + "shiinotic": 4.929756110079682, + "salazzle": 2.891382175210982, + "bewear": 1.5286843064805065, + "tsareena": 3.5676298602012055, + "comfey": 3.969049420548651, + "oranguru": 4.756966858420741, + "passimian": 1.4469552533657533, + "palossand": 2.6592604244613898, + "pyukumuku": 38.74481514506725, + "togedemaru": 2.039695674620145, + "mimikyu-disguised": 4.392673616515101, + "greedent": 1.9602260912260219, + "orbeetle": 2.3873065240595075, + "thievul": 1.799622540818783, + "eldegoss": 5.015854388960778, + "dubwool": 2.262422319556183, + "drednaw": 0.9367263248838813, + "boltund": 4.936388566086881, + "carkol": 1.7836262016782785, + "coalossal": 1.6314319562649324, + "sandaconda": 3.0012437731335058, + "cramorant": 6.0539249986456, + "barraskewda": 4.37039801662551, + "toxtricity-amped": 2.6418947871267466, + "centiskorch": 1.9535524011960281, + "grapploct": 1.1430765330882482, + "polteageist": 4.628704122378954, + "hatterene": 2.534372753082626, + "grimmsnarl": 3.171572264973289, + "obstagoon": 2.335781707543849, + "perrserker": 2.693899361027094, + "alcremie": 1.201207919637262, + "falinks": 1.8162450777163759, + "pincurchin": 2.9746068034618904, + "frosmoth": 2.3406233509617076, + "indeedee-male": 4.971119378909645, + "morpeko": 2.6252368799677708, + "copperajah": 1.690923519260161, + "duraludon": 1.2278005305039061, + "drakloak": 6.623629892010346 }, "piloswine": { - "ivysaur": 3.4212792133366254, - "charmeleon": 4.232538442030287, - "wartortle": 2.268000343082462, - "butterfree": 6.795005925037484, - "raichu": 5.37822264884905, - "raichu-alola": 3.5883338506909164, - "sandslash": 2.8666056258907275, - "sandslash-alola": 2.8899856127130734, - "nidoqueen": 3.284139591236054, - "nidoking": 2.3065124159014223, - "clefairy": 7.993532728362151, - "clefable": 1.88621889026797, - "jigglypuff": 26.74309151422799, - "wigglytuff": 1.9437788155223683, - "gloom": 6.8503449545801764, - "vileplume": 3.1075447860513186, - "dugtrio": 4.5064395082022894, - "dugtrio-alola": 4.045000688247213, - "persian": 5.103156645277904, - "persian-alola": 5.109307369315656, - "golduck": 2.6007375510812523, - "poliwrath": 1.6014210692583082, - "kadabra": 3.8469728188161616, - "machoke": 3.6882708466802283, - "tentacruel": 1.9827141747803667, - "slowbro": 1.5095957464854886, - "magneton": 3.4029142318843624, - "haunter": 3.8549206646411704, - "kingler": 1.998811182480034, - "exeggutor": 2.1225714836921314, - "marowak": 3.695852950201, - "marowak-alola": 2.084185572348084, - "hitmonlee": 2.3782207121636167, - "hitmonchan": 2.2932892980370827, - "lickitung": 2.2370362913980952, - "weezing": 1.5767556865015293, - "weezing-galar": 2.5878532804418164, - "rhydon": 2.89786881887534, - "chansey": 36.79234104189411, - "tangela": 6.1715717820267955, - "kangaskhan": 2.1960836259751253, - "seadra": 3.323278331986563, - "seaking": 2.3297166440367816, - "starmie": 1.3018563389126259, - "mr-mime": 6.532773447505666, - "mr-mime-galar": 4.278775320913827, - "scyther": 3.9249917165540062, - "jynx": 5.4274881962483565, - "electabuzz": 3.1775836933606403, - "magmar": 1.9166009576044438, - "tauros": 2.1898606803745944, - "ditto": 2.652260953790953, - "vaporeon": 2.8065877775867216, - "jolteon": 2.1101822699087665, - "flareon": 2.7846560470327013, - "porygon": 3.4998215305619866, - "dragonair": 2.3446422015293686, - "noctowl": 7.365136519849868, - "lanturn": 1.7669143114226005, - "togetic": 6.356283190433857, - "xatu": 4.377276337903061, - "bellossom": 2.488260074690312, - "azumarill": 1.8146925274309367, - "sudowoodo": 2.6958868829578884, - "politoed": 2.355552559257398, - "quagsire": 3.84175105335646, - "slowking": 2.190176581892759, - "dunsparce": 3.8768821894525827, - "qwilfish": 2.752633250171476, - "sneasel": 3.9266642716533817, - "octillery": 1.9846518304168983, - "mantine": 2.693833041510349, - "skarmory": 1.9938087850989752, - "hitmontop": 2.633219847445565, - "miltank": 3.9758631747677127, - "grovyle": 8.205268175213718, - "sceptile": 1.546345857948157, - "combusken": 2.87489836633267, - "blaziken": 1.4758067540705326, - "marshtomp": 2.2885965857895725, - "swampert": 1.2088235571037163, - "linoone": 6.1731949593790825, - "linoone-galar": 7.644979800352702, - "pelipper": 6.1819619757277, - "ninjask": 11.047358358319912, - "exploud": 1.9342646756193869, - "lairon": 2.89132841724446, - "manectric": 1.7890238878882092, - "roselia": 4.46377222797908, - "sharpedo": 5.731257984024141, - "wailmer": 5.54331443809809, - "torkoal": 1.7758228108361782, - "flygon": 3.844391209712816, - "altaria": 2.6268932130127296, - "whiscash": 1.7256852472345299, - "crawdaunt": 1.948656276196504, - "claydol": 3.8121972050618713, - "cradily": 2.6769715573930357, - "armaldo": 1.963632929927269, - "dusclops": 3.1373235915867728, - "absol": 2.4233233577485493, - "glalie": 5.049102567556066, - "sealeo": 3.558948870003539, - "relicanth": 1.8906284998456084, - "metang": 2.6104145617627266, - "luxray": 4.176217772461868, - "vespiquen": 3.84022690914762, - "cherrim": 5.975309352552895, - "gastrodon": 2.0885324991911154, - "drifblim": 5.529307733181153, - "lopunny": 4.283267367021386, - "skuntank": 1.4436730945626224, - "bronzong": 2.815374526029383, - "munchlax": 3.2772379349074354, - "drapion": 2.3228395553082533, - "abomasnow": 3.6859720470250137, - "froslass": 3.2841853681291115, - "rotom": 3.688609031933213, - "stoutland": 2.839737932954624, - "liepard": 8.389976238312505, - "musharna": 1.3565933018649332, - "unfezant": 7.992755051082511, - "boldore": 3.4346971091192255, - "swoobat": 6.265913864069155, - "audino": 2.597268762004603, - "gurdurr": 2.0303904163056994, - "palpitoad": 3.4737516424033514, - "seismitoad": 6.478843964593557, - "scolipede": 3.2753817660639886, - "whimsicott": 3.471968607125574, - "lilligant": 3.1214033377728123, - "basculin-red-striped": 2.4824672283961036, - "basculin-blue-striped": 3.0399137203167665, - "krookodile": 3.564139090600136, - "maractus": 2.240926882641056, - "crustle": 2.002390392884697, - "sigilyph": 2.5415188295545965, - "cofagrigus": 2.4487539023608584, - "garbodor": 1.7591054190702238, - "cinccino": 5.563289591351732, - "vanillish": 2.767373107903301, - "emolga": 4.2486860738428405, - "escavalier": 1.6734741807521565, - "amoonguss": 2.869731523793864, - "jellicent": 1.4142830545951337, - "galvantula": 1.9626380031330997, - "klang": 3.1722910958599106, - "klinklang": 3.4797846345374186, - "beheeyem": 1.669993931740581, - "lampent": 2.727155017505467, - "fraxure": 1.9831785705210918, - "beartic": 2.0818345795717894, - "cryogonal": 2.5268514285507786, - "accelgor": 3.45055600884005, - "stunfisk": 1.437438758014833, - "stunfisk-galar": 2.6006103634623132, - "mienshao": 3.1224675871650067, - "druddigon": 2.1113115962235183, - "golurk": 2.110215069199392, - "bisharp": 3.8999793978196924, - "bouffalant": 1.459038562970818, - "heatmor": 1.9899080787677543, - "durant": 2.6406960559092933, - "diggersby": 4.103997794529964, - "talonflame": 4.11746876238504, - "pangoro": 1.8905149076344738, - "doublade": 1.8305524444511794, - "malamar": 2.890410569359905, - "barbaracle": 1.6210388498460757, - "heliolisk": 5.121824480712584, - "tyrantrum": 2.0220083760811884, - "aurorus": 4.227164747931595, - "hawlucha": 4.161132675094605, - "dedenne": 2.827655987073224, - "klefki": 2.5662448169334233, - "trevenant": 3.215828245897355, - "gourgeist-average": 6.689378330683629, - "charjabug": 4.516506150972944, - "vikavolt": 2.005682966150019, - "ribombee": 5.042099201132036, - "lycanroc-midday": 3.9105227779122718, - "lycanroc-midnight": 2.6766931237735068, - "mudsdale": 1.7909396168694536, - "araquanid": 2.648347099788576, - "lurantis": 2.558362911677916, - "shiinotic": 5.112818919535403, - "salazzle": 3.4685681854594703, - "bewear": 1.9952583926868366, - "tsareena": 3.357673991665738, - "comfey": 3.7904110509277986, - "oranguru": 2.702830744025696, - "passimian": 2.1921236857985, - "palossand": 2.4940807991534943, - "pyukumuku": 42.37129694544762, - "togedemaru": 2.918301013830603, - "mimikyu-disguised": 3.860451440247205, - "greedent": 2.332611128968332, - "orbeetle": 1.9254866924651624, - "thievul": 2.3496186126745524, - "eldegoss": 4.03914918064792, - "dubwool": 3.155514618945053, - "drednaw": 1.3640925054038424, - "boltund": 5.080953276677278, - "carkol": 2.706385220195127, - "coalossal": 2.0560559083588372, - "sandaconda": 4.004578860724802, - "cramorant": 6.093141455727481, - "barraskewda": 4.132765120360447, - "toxtricity-amped": 2.5932640642255897, - "centiskorch": 3.2137706018601184, - "grapploct": 1.4173136237219373, - "polteageist": 2.434782379708829, - "hatterene": 2.324708261617452, - "grimmsnarl": 3.659440371835142, - "obstagoon": 4.096674816983621, - "perrserker": 3.4528393462365834, - "alcremie": 1.3339915780474947, - "falinks": 2.848135100297301, - "pincurchin": 2.922601028104702, - "frosmoth": 3.871240956323215, - "indeedee-male": 3.271729589111014, - "morpeko": 3.729910211133918, - "copperajah": 2.4384594413677445, - "duraludon": 1.7635009138554647, - "drakloak": 5.458541877736042, - "piloswine": 1.810197708312612 + "ivysaur": 3.420482126802584, + "charmeleon": 4.2362120175201055, + "wartortle": 2.2634876026538313, + "butterfree": 6.803742906709095, + "raichu": 5.389341350715391, + "raichu-alola": 3.5934955397178454, + "sandslash": 2.872367796409077, + "sandslash-alola": 2.895310599895578, + "nidoqueen": 3.2896618969406637, + "nidoking": 2.3135267951769456, + "clefairy": 7.988253018646171, + "clefable": 1.8873040890888377, + "jigglypuff": 26.775897876979005, + "wigglytuff": 1.9453505925683547, + "gloom": 6.865143170241357, + "vileplume": 3.1062040777756654, + "dugtrio": 4.518381380538291, + "dugtrio-alola": 4.051419459310901, + "persian": 5.1130780815739545, + "persian-alola": 5.119878041266644, + "golduck": 2.5958711725983177, + "poliwrath": 1.5987440256289487, + "kadabra": 3.847729907049687, + "machoke": 3.689015465573104, + "tentacruel": 1.978691419633412, + "slowbro": 1.507861579444012, + "magneton": 3.404330555638124, + "haunter": 3.8498381932048864, + "kingler": 1.994796694541522, + "exeggutor": 2.1222172638229706, + "marowak": 3.7010867594574184, + "marowak-alola": 2.0835967791524235, + "hitmonlee": 2.3780203068025094, + "hitmonchan": 2.2979601749768452, + "lickitung": 2.241513391533745, + "weezing": 1.5780478301390266, + "weezing-galar": 2.5884601513369763, + "rhydon": 2.9010104891100648, + "chansey": 36.86936646506895, + "tangela": 6.169728102381443, + "kangaskhan": 2.201156083594121, + "seadra": 3.3148470984388627, + "seaking": 2.330272101821402, + "starmie": 1.3013435477468072, + "mr-mime": 6.531403416475518, + "mr-mime-galar": 4.282371416337828, + "scyther": 3.935687578812784, + "jynx": 5.436608386020496, + "electabuzz": 3.190635818377062, + "magmar": 1.9189764764692123, + "tauros": 2.1931999359743783, + "ditto": 2.6382553122345063, + "vaporeon": 2.802156737016241, + "jolteon": 2.1165752832615565, + "flareon": 2.788366183885734, + "porygon": 3.5100284598356875, + "dragonair": 2.3532885924359617, + "noctowl": 7.387774351680945, + "lanturn": 1.7665822426164972, + "togetic": 6.371845789406914, + "xatu": 4.38368711165127, + "bellossom": 2.488195934711123, + "azumarill": 1.814091156634014, + "sudowoodo": 2.6990164364082405, + "politoed": 2.3541342479481284, + "quagsire": 3.832168922691544, + "slowking": 2.1877942809065996, + "dunsparce": 3.8870263301551096, + "qwilfish": 2.7483866815197846, + "sneasel": 3.94036524264226, + "piloswine": 1.810197708312612, + "octillery": 1.9809037428536262, + "mantine": 2.693661464702397, + "skarmory": 1.9956580964565536, + "hitmontop": 2.6352387146571417, + "miltank": 3.9835423441973417, + "grovyle": 8.200653436102069, + "sceptile": 1.545852720985287, + "combusken": 2.8712056330935933, + "blaziken": 1.4754653318371078, + "marshtomp": 2.2878944573044584, + "swampert": 1.2085804621523204, + "linoone": 6.186986476072342, + "linoone-galar": 7.667038119296557, + "pelipper": 6.185861004213086, + "ninjask": 11.076222225020208, + "exploud": 1.9364575024914235, + "lairon": 2.891914904093953, + "manectric": 1.7934193566690868, + "roselia": 4.461943314830164, + "sharpedo": 5.736061359073242, + "wailmer": 5.533725393299582, + "torkoal": 1.7763246743435075, + "flygon": 3.8552512586502425, + "altaria": 2.635515405402841, + "whiscash": 1.7249470688151738, + "crawdaunt": 1.9486436816549921, + "claydol": 3.8148002669209244, + "cradily": 2.681397784132151, + "armaldo": 1.967376257065056, + "dusclops": 3.1376304100479864, + "absol": 2.4292376246836493, + "glalie": 5.060164103495327, + "sealeo": 3.5592287438471724, + "relicanth": 1.8901691736465547, + "metang": 2.610171246875977, + "luxray": 4.189977967756215, + "vespiquen": 3.848825856235634, + "cherrim": 5.972601580103568, + "gastrodon": 2.0889497729045545, + "drifblim": 5.548983473088138, + "lopunny": 4.290486471826153, + "skuntank": 1.4467267111613145, + "bronzong": 2.8149382949839, + "munchlax": 3.2880876393716085, + "drapion": 2.3250338473624557, + "abomasnow": 3.6909875669946075, + "froslass": 3.286782320892832, + "rotom": 3.696092662907011, + "stoutland": 2.844841977942713, + "liepard": 8.411577120609428, + "musharna": 1.3552981178753583, + "unfezant": 8.01806197777094, + "boldore": 3.4376848176483885, + "swoobat": 6.2751358861531745, + "audino": 2.6011412251805655, + "gurdurr": 2.028625307241951, + "palpitoad": 3.4722432759399817, + "seismitoad": 6.485769781242107, + "scolipede": 3.2771454292096474, + "whimsicott": 3.4728834733874647, + "lilligant": 3.1204521283312543, + "basculin-red-striped": 2.480444694280499, + "basculin-blue-striped": 3.0344800766176054, + "krookodile": 3.5743995581165757, + "maractus": 2.2402720333773773, + "crustle": 2.0042424913237324, + "sigilyph": 2.542943704302873, + "cofagrigus": 2.4476357874806443, + "garbodor": 1.761121230206962, + "cinccino": 5.5777830350018345, + "vanillish": 2.7746004131192405, + "emolga": 4.2721431860506645, + "escavalier": 1.6737735917652825, + "amoonguss": 2.8720459373995686, + "jellicent": 1.4128685271770707, + "galvantula": 1.969769933489733, + "klang": 3.1760999009537736, + "klinklang": 3.478965335078469, + "beheeyem": 1.6697322869522917, + "lampent": 2.727599894817433, + "fraxure": 1.9878697566021553, + "beartic": 2.084118117788519, + "cryogonal": 2.534009587397695, + "accelgor": 3.4535990806338397, + "stunfisk": 1.440758817841886, + "stunfisk-galar": 2.6052061164552702, + "mienshao": 3.121604930972711, + "druddigon": 2.1160692423602248, + "golurk": 2.111066590681002, + "bisharp": 3.9116084224272814, + "bouffalant": 1.4613359825339731, + "heatmor": 1.991328697957614, + "durant": 2.6405663603571585, + "diggersby": 4.1174243802891946, + "talonflame": 4.122485229815675, + "pangoro": 1.891764055389363, + "doublade": 1.8253915308684483, + "malamar": 2.894653032737545, + "barbaracle": 1.6215168521804832, + "heliolisk": 5.1411170365620205, + "tyrantrum": 2.0262167858984146, + "aurorus": 4.2435861496149645, + "hawlucha": 4.16704305582762, + "dedenne": 2.834090372916888, + "klefki": 2.5639034052851093, + "trevenant": 3.21413658648094, + "gourgeist-average": 6.69902774098022, + "charjabug": 4.533004515343492, + "vikavolt": 2.009573598949806, + "ribombee": 5.044001975737831, + "lycanroc-midday": 3.919381981021595, + "lycanroc-midnight": 2.6811773434183763, + "mudsdale": 1.7928536368902253, + "araquanid": 2.649300455978374, + "lurantis": 2.5591282867533813, + "shiinotic": 5.1186165412675235, + "salazzle": 3.4710753867064827, + "bewear": 1.9981749510138094, + "tsareena": 3.360669272512333, + "comfey": 3.7864565684294993, + "oranguru": 2.7048965397674367, + "passimian": 2.1920563310358854, + "palossand": 2.4958348136611983, + "pyukumuku": 42.37674990303785, + "togedemaru": 2.923632631937224, + "mimikyu-disguised": 3.862511313448951, + "greedent": 2.3355466093751023, + "orbeetle": 1.9251995847757628, + "thievul": 2.3546891331261315, + "eldegoss": 4.03687733568559, + "dubwool": 3.1572686535731274, + "drednaw": 1.363708489475608, + "boltund": 5.097605377487442, + "carkol": 2.7100465066772736, + "coalossal": 2.056187595937176, + "sandaconda": 4.01131209071541, + "cramorant": 6.0954952433471785, + "barraskewda": 4.130468373379459, + "toxtricity-amped": 2.5981715333340105, + "centiskorch": 3.218839648305237, + "grapploct": 1.4147215598043101, + "polteageist": 2.432033306300172, + "hatterene": 2.3247334414178695, + "grimmsnarl": 3.6617289573605047, + "obstagoon": 4.110723863203276, + "perrserker": 3.4561672726218897, + "alcremie": 1.3339336830233255, + "falinks": 2.8453201462469444, + "pincurchin": 2.9264787365238867, + "frosmoth": 3.8745701793798197, + "indeedee-male": 3.2744778280922366, + "morpeko": 3.7466950575075018, + "copperajah": 2.4357244379107037, + "duraludon": 1.767468917523694, + "drakloak": 5.467805491477434 }, "octillery": { - "ivysaur": 2.6228918398104226, - "charmeleon": 5.8369118789019305, - "wartortle": 2.6393150281024873, - "butterfree": 4.238277932431416, - "raichu": 4.684810089652848, - "raichu-alola": 3.9146595226444068, - "sandslash": 3.5164925180915674, - "sandslash-alola": 2.348892586445184, - "nidoqueen": 3.961599507079598, - "nidoking": 2.6424187345380767, - "clefairy": 10.172107991046339, - "clefable": 2.3543172631904596, - "jigglypuff": 31.04777345155619, - "wigglytuff": 2.3394704632695964, - "gloom": 5.18681415110597, - "vileplume": 2.477205014133884, - "dugtrio": 4.849629580602182, - "dugtrio-alola": 4.99074129888284, - "persian": 4.412224427253902, - "persian-alola": 4.777438788701525, - "golduck": 2.932259096685795, - "poliwrath": 1.5934984565917127, - "kadabra": 4.907405630243662, - "machoke": 4.2055630988016866, - "tentacruel": 2.060374640716906, - "slowbro": 1.9089722730365213, - "magneton": 3.380549377241871, - "haunter": 4.379130728039919, - "kingler": 2.4026679073726687, - "exeggutor": 2.6234798846678746, - "marowak": 4.757995341888571, - "marowak-alola": 3.458051945625691, - "hitmonlee": 2.3196518121634293, - "hitmonchan": 2.1503727682626512, - "lickitung": 2.107775817726843, - "weezing": 1.8913427830691927, - "weezing-galar": 3.523953658799521, - "rhydon": 5.647779295780062, - "chansey": 26.26946033656538, - "tangela": 4.578469074862621, - "kangaskhan": 1.9304509117588866, - "seadra": 4.024312610375962, - "seaking": 2.3134602873181755, - "starmie": 1.647184058656109, - "mr-mime": 7.156734022950438, - "mr-mime-galar": 4.486443140411169, - "scyther": 2.818002158857107, - "jynx": 5.741557801223788, - "electabuzz": 2.155065029648097, - "magmar": 2.381333337535216, - "tauros": 2.2208918764212813, - "ditto": 2.788905510744512, - "vaporeon": 3.187758142316376, - "jolteon": 1.7885886107865843, - "flareon": 3.2398473554332563, - "porygon": 2.82028278717734, - "dragonair": 1.7257011399292774, - "noctowl": 5.520508763481011, - "lanturn": 1.761180986301289, - "togetic": 6.333517994026543, - "xatu": 4.012037606075831, - "bellossom": 2.432009083901522, - "azumarill": 2.206909491717274, - "sudowoodo": 3.984885685186635, - "politoed": 2.45338976465642, - "quagsire": 5.377886752237913, - "slowking": 3.052325084901657, - "dunsparce": 3.559482542454122, - "qwilfish": 3.224853843866704, - "sneasel": 2.6167014635486376, - "piloswine": 2.4778147719663037, - "mantine": 2.0951192964011836, - "skarmory": 2.507214583329847, - "hitmontop": 2.832322021606198, - "miltank": 3.9824607716154814, - "grovyle": 8.36907424617829, - "sceptile": 1.516101404140521, - "combusken": 4.95223129518911, - "blaziken": 2.4511148331576904, - "marshtomp": 2.8111021618030607, - "swampert": 1.4156974685720658, - "linoone": 5.424406834836539, - "linoone-galar": 5.114821911157936, - "pelipper": 5.401236099870264, - "ninjask": 7.7117235474914, - "exploud": 1.7389269840110773, - "lairon": 4.266030588583433, - "manectric": 1.8437753712122364, - "roselia": 3.450036327571312, - "sharpedo": 5.7550412554833965, - "wailmer": 6.275050508969065, - "torkoal": 3.4470880512152764, - "flygon": 2.551045867498698, - "altaria": 1.521195445728276, - "whiscash": 2.354724689137285, - "crawdaunt": 2.2070079955748048, - "claydol": 4.501944558672102, - "cradily": 2.412497836936828, - "armaldo": 2.750297441978736, - "dusclops": 3.5820336782292994, - "absol": 2.3016178182164566, - "glalie": 5.058287326414495, - "sealeo": 3.2412232652592357, - "relicanth": 2.2287237681345156, - "metang": 3.156964531075472, - "luxray": 3.6374748182498653, - "vespiquen": 2.837305267879847, - "cherrim": 5.877158384293111, - "gastrodon": 2.280974878267034, - "drifblim": 4.024302796121172, - "lopunny": 3.754195025943046, - "skuntank": 1.6241677677162962, - "bronzong": 3.4578922373973473, - "munchlax": 2.1434595483429844, - "drapion": 2.7979686991388917, - "abomasnow": 3.429976966205299, - "froslass": 3.637380710200065, - "rotom": 3.6744809621910384, - "stoutland": 2.5102115070352866, - "liepard": 7.830196280352325, - "musharna": 1.6598651287742712, - "unfezant": 7.003540720986773, - "boldore": 5.477873109187228, - "swoobat": 5.742042633618886, - "audino": 2.3901212462581833, - "gurdurr": 2.529995761510408, - "palpitoad": 4.143045802520182, - "seismitoad": 6.673861420721399, - "scolipede": 3.5054556233670238, - "whimsicott": 3.627737660686263, - "lilligant": 3.0389248358038747, - "basculin-red-striped": 2.677303004778297, - "basculin-blue-striped": 3.442002569365722, - "krookodile": 4.078871445706344, - "maractus": 2.1711197955701067, - "crustle": 3.233461390227891, - "sigilyph": 2.4911063629045147, - "cofagrigus": 2.909841151291067, - "garbodor": 1.9573644692152325, - "cinccino": 4.958838464568625, - "vanillish": 2.604662327111575, - "emolga": 2.7994737352511025, - "escavalier": 1.9926616229276481, - "amoonguss": 2.158590111889502, - "jellicent": 1.2862628806557126, - "galvantula": 1.472986390150628, - "klang": 2.8925989903303098, - "klinklang": 3.9354420653955033, - "beheeyem": 2.0850337020482046, - "lampent": 4.2320021728581265, - "fraxure": 1.4891310824018067, - "beartic": 2.1799543919529834, - "cryogonal": 1.8528181001736814, - "accelgor": 3.03941848005735, - "stunfisk": 1.7393637775394892, - "stunfisk-galar": 3.454733478099471, - "mienshao": 3.5574911652726957, - "druddigon": 1.7340734456575406, - "golurk": 2.6980763475806504, - "bisharp": 2.691969797521854, - "bouffalant": 1.388910226037327, - "heatmor": 2.863846119247549, - "durant": 3.533305552639142, - "diggersby": 4.508573522268323, - "talonflame": 4.469233365564659, - "pangoro": 1.8941873913587068, - "doublade": 3.1530306837281645, - "malamar": 3.9587532877070704, - "barbaracle": 1.6672451605111087, - "heliolisk": 3.1829158640688044, - "tyrantrum": 2.073146760321674, - "aurorus": 3.401645084274729, - "hawlucha": 3.776774268758328, - "dedenne": 2.838233181588297, - "klefki": 3.4720576170773896, - "trevenant": 2.4902243589244426, - "gourgeist-average": 5.230628649983196, - "charjabug": 4.047286285266892, - "vikavolt": 1.9297698679514603, - "ribombee": 5.343806106112358, - "lycanroc-midday": 4.628279192927494, - "lycanroc-midnight": 3.2599103637475952, - "mudsdale": 2.2950692365376844, - "araquanid": 2.2622079347087913, - "lurantis": 2.464274456646977, - "shiinotic": 5.094537193396867, - "salazzle": 4.715595991198209, - "bewear": 1.921399304004527, - "tsareena": 3.091800146560113, - "comfey": 4.721654108023633, - "oranguru": 3.131338226647683, - "passimian": 2.593696365696439, - "palossand": 3.175562530491839, - "pyukumuku": 38.523251019405386, - "togedemaru": 2.204510392361858, - "mimikyu-disguised": 4.602492737884576, - "greedent": 2.359467210400471, - "orbeetle": 2.0278673922599304, - "thievul": 2.2521964298985986, - "eldegoss": 4.005732795319457, - "dubwool": 2.985613496116545, - "drednaw": 1.4215345289293935, - "boltund": 4.570266328316271, - "carkol": 5.336759499353464, - "coalossal": 4.476730778159829, - "sandaconda": 4.9518332180387965, - "cramorant": 4.714893770246678, - "barraskewda": 4.209034243349324, - "toxtricity-amped": 2.595212091313606, - "centiskorch": 2.7948128330636104, - "grapploct": 1.8770334288923367, - "polteageist": 2.430338516411102, - "hatterene": 2.916946905989437, - "grimmsnarl": 4.458705810068017, - "obstagoon": 2.626259114489616, - "perrserker": 3.72457959277068, - "alcremie": 1.555136785591713, - "falinks": 3.606307007855534, - "pincurchin": 3.0401344760996407, - "frosmoth": 2.8305181723421686, - "indeedee-male": 3.9566081475017265, - "morpeko": 2.8022863178015163, - "copperajah": 2.702074063136991, - "duraludon": 1.4251255314033808, - "drakloak": 4.156900352346917, - "octillery": 2.239227271337967 + "ivysaur": 2.6173151974976077, + "charmeleon": 5.851331110927669, + "wartortle": 2.642765605627467, + "butterfree": 4.23219659263664, + "raichu": 4.678634361524695, + "raichu-alola": 3.910735118763731, + "sandslash": 3.5233433818877735, + "sandslash-alola": 2.351476084053167, + "nidoqueen": 3.966249412398268, + "nidoking": 2.6461569298629732, + "clefairy": 10.18588482569211, + "clefable": 2.3587333820621623, + "jigglypuff": 31.100303084547736, + "wigglytuff": 2.3431685663723334, + "gloom": 5.186148325421291, + "vileplume": 2.4730010040786405, + "dugtrio": 4.856964610161549, + "dugtrio-alola": 4.998562759546343, + "persian": 4.413283013956065, + "persian-alola": 4.783593260971136, + "golduck": 2.934504531320978, + "poliwrath": 1.5903395036616508, + "kadabra": 4.910143368310707, + "machoke": 4.209328217145266, + "tentacruel": 2.060114811412256, + "slowbro": 1.9103095415465776, + "magneton": 3.3768051071197105, + "haunter": 4.375348067581042, + "kingler": 2.40494967104301, + "exeggutor": 2.6242279552089656, + "marowak": 4.768677134057098, + "marowak-alola": 3.4674706891423392, + "hitmonlee": 2.320607522895735, + "hitmonchan": 2.1510657809066767, + "lickitung": 2.1087009594866766, + "weezing": 1.8934953788760203, + "weezing-galar": 3.5328688747076766, + "rhydon": 5.666729807336509, + "chansey": 26.22737093848537, + "tangela": 4.574773656598309, + "kangaskhan": 1.9315024564630674, + "seadra": 4.026548835688465, + "seaking": 2.3141963414009905, + "starmie": 1.6482900552511135, + "mr-mime": 7.165790990450555, + "mr-mime-galar": 4.494720335727277, + "scyther": 2.8184428010662548, + "jynx": 5.744424252820685, + "electabuzz": 2.1501455313388473, + "magmar": 2.386151199228574, + "tauros": 2.2232775653083547, + "ditto": 2.7744910246020194, + "vaporeon": 3.185767977997859, + "jolteon": 1.7857983845403003, + "flareon": 3.2444503803468736, + "porygon": 2.8202429187926894, + "dragonair": 1.7249412799248547, + "noctowl": 5.518351095373358, + "lanturn": 1.760500330716921, + "togetic": 6.349478533941854, + "xatu": 4.014659241500183, + "bellossom": 2.4302307918859607, + "azumarill": 2.2127917014833303, + "sudowoodo": 3.995465925341089, + "politoed": 2.4540906909134126, + "quagsire": 5.3860140914034575, + "slowking": 3.0563962782511442, + "dunsparce": 3.5644780465100547, + "qwilfish": 3.2257799726562055, + "sneasel": 2.6211612248024636, + "piloswine": 2.4858423324489545, + "octillery": 2.239227271337967, + "mantine": 2.0922084336447835, + "skarmory": 2.5099356651730442, + "hitmontop": 2.8353721866111883, + "miltank": 3.9855914774619414, + "grovyle": 8.360384850934562, + "sceptile": 1.5140543741164825, + "combusken": 4.961689811354807, + "blaziken": 2.456883477644155, + "marshtomp": 2.815834267396674, + "swampert": 1.4177521601473648, + "linoone": 5.426904038682887, + "linoone-galar": 5.119980168325785, + "pelipper": 5.396605810756482, + "ninjask": 7.711934296234045, + "exploud": 1.7403055658297797, + "lairon": 4.277897710047745, + "manectric": 1.8440286374815857, + "roselia": 3.443109499761518, + "sharpedo": 5.759495178073594, + "wailmer": 6.281599315819811, + "torkoal": 3.4581729738437654, + "flygon": 2.553246588466041, + "altaria": 1.5211220479990604, + "whiscash": 2.3568368720013613, + "crawdaunt": 2.208850955769134, + "claydol": 4.508898379598572, + "cradily": 2.413706173236627, + "armaldo": 2.757028414210844, + "dusclops": 3.584190087294523, + "absol": 2.3064485485093047, + "glalie": 5.070026223107284, + "sealeo": 3.2469760904468226, + "relicanth": 2.231595948453994, + "metang": 3.1569409224497225, + "luxray": 3.6314211638585037, + "vespiquen": 2.8379985295467023, + "cherrim": 5.8700952361217835, + "gastrodon": 2.282450040704852, + "drifblim": 4.017780550307218, + "lopunny": 3.7560172471405235, + "skuntank": 1.6266559355137846, + "bronzong": 3.4611546637941664, + "munchlax": 2.142760007086075, + "drapion": 2.8031913307508134, + "abomasnow": 3.4308305542961484, + "froslass": 3.646205208360908, + "rotom": 3.6705002126077617, + "stoutland": 2.5105372182778516, + "liepard": 7.841926813728003, + "musharna": 1.6602483330199735, + "unfezant": 7.011355592113846, + "boldore": 5.493906457064628, + "swoobat": 5.745821165897679, + "audino": 2.3929971463952735, + "gurdurr": 2.5330143937066065, + "palpitoad": 4.146876136905076, + "seismitoad": 6.671103149663303, + "scolipede": 3.507854880786527, + "whimsicott": 3.6314815981679924, + "lilligant": 3.036117657876963, + "basculin-red-striped": 2.680348629287655, + "basculin-blue-striped": 3.445569910315009, + "krookodile": 4.087260182679921, + "maractus": 2.1661192674736682, + "crustle": 3.242081445596211, + "sigilyph": 2.493785920746711, + "cofagrigus": 2.9123989996204633, + "garbodor": 1.9578193870392542, + "cinccino": 4.964406828307515, + "vanillish": 2.6106316732873456, + "emolga": 2.7950000029425217, + "escavalier": 1.993675143593256, + "amoonguss": 2.155358607394875, + "jellicent": 1.2842223828047463, + "galvantula": 1.4703099511331752, + "klang": 2.890593675076741, + "klinklang": 3.9393602548878084, + "beheeyem": 2.0871845687090107, + "lampent": 4.244735486398266, + "fraxure": 1.4894097793192764, + "beartic": 2.185564796650158, + "cryogonal": 1.8544527941322921, + "accelgor": 3.040204953046625, + "stunfisk": 1.7394828069214383, + "stunfisk-galar": 3.458200162157898, + "mienshao": 3.559428988974392, + "druddigon": 1.7356896643820354, + "golurk": 2.702098906720141, + "bisharp": 2.6923334991843424, + "bouffalant": 1.3908975881827237, + "heatmor": 2.8703271629026377, + "durant": 3.5330039386645966, + "diggersby": 4.515251798518154, + "talonflame": 4.479575585521772, + "pangoro": 1.8965739395095003, + "doublade": 3.15851923708163, + "malamar": 3.9627049158448684, + "barbaracle": 1.6687318922664858, + "heliolisk": 3.1703341287479305, + "tyrantrum": 2.076827124483973, + "aurorus": 3.4065197710270922, + "hawlucha": 3.77868648898988, + "dedenne": 2.8370434307718777, + "klefki": 3.477307638634076, + "trevenant": 2.486868474048654, + "gourgeist-average": 5.238581182182037, + "charjabug": 4.041512892167779, + "vikavolt": 1.9297834565311478, + "ribombee": 5.351671752633523, + "lycanroc-midday": 4.638050552600191, + "lycanroc-midnight": 3.2666795988070083, + "mudsdale": 2.299037805962229, + "araquanid": 2.25989773179038, + "lurantis": 2.463008062858779, + "shiinotic": 5.102941689929027, + "salazzle": 4.725403160657097, + "bewear": 1.92161162959064, + "tsareena": 3.0894078852342206, + "comfey": 4.72301595686809, + "oranguru": 3.1340486392634266, + "passimian": 2.5966756327508076, + "palossand": 3.1808125240436387, + "pyukumuku": 38.50104871073802, + "togedemaru": 2.2021700341531076, + "mimikyu-disguised": 4.607999563164006, + "greedent": 2.3620537018103027, + "orbeetle": 2.0295617752680686, + "thievul": 2.2549158046369095, + "eldegoss": 3.9998748631423333, + "dubwool": 2.98457845447746, + "drednaw": 1.4233298808249164, + "boltund": 4.56522987878947, + "carkol": 5.355514069310567, + "coalossal": 4.4921118656564065, + "sandaconda": 4.960643928893378, + "cramorant": 4.71337907792293, + "barraskewda": 4.2100852750429265, + "toxtricity-amped": 2.588957340093585, + "centiskorch": 2.7987609332765535, + "grapploct": 1.8791863559514965, + "polteageist": 2.4276448669471105, + "hatterene": 2.922798254525918, + "grimmsnarl": 4.468638801641794, + "obstagoon": 2.626779017051502, + "perrserker": 3.725489935598442, + "alcremie": 1.5570655550176198, + "falinks": 3.6114131991852725, + "pincurchin": 3.0378960805237405, + "frosmoth": 2.831194290175662, + "indeedee-male": 3.9621786816557796, + "morpeko": 2.8003794719938746, + "copperajah": 2.705353152366019, + "duraludon": 1.423763523250525, + "drakloak": 4.156154127890447 }, "mantine": { - "ivysaur": 4.107083886261769, - "charmeleon": 5.01575255280483, - "wartortle": 3.1908030190555925, - "butterfree": 5.726744434040209, - "raichu": 4.236140377739684, - "raichu-alola": 2.9359884921315382, - "sandslash": 2.894896560731598, - "sandslash-alola": 2.268681038873962, - "nidoqueen": 3.6380389516251057, - "nidoking": 2.087017440759766, - "clefairy": 9.546183936727214, - "clefable": 2.4082767019950704, - "jigglypuff": 27.133735356227962, - "wigglytuff": 2.410354377120704, - "gloom": 7.555138774590452, - "vileplume": 4.041899275413698, - "dugtrio": 4.588223418249057, - "dugtrio-alola": 4.356214488385347, - "persian": 4.145132556656877, - "persian-alola": 4.7608857485003515, - "golduck": 3.550392258753024, - "poliwrath": 2.795073642015635, - "kadabra": 4.644827118988892, - "machoke": 4.925584211405848, - "tentacruel": 2.5078017273590225, - "slowbro": 1.9181083605889817, - "magneton": 2.8977174696559507, - "haunter": 4.588582347862527, - "kingler": 3.2210781662835517, - "exeggutor": 2.5905513829276154, - "marowak": 4.1363190929203455, - "marowak-alola": 2.7258523921759483, - "hitmonlee": 2.832584328685969, - "hitmonchan": 2.305777024031153, - "lickitung": 2.972916350922042, - "weezing": 1.9729435407354359, - "weezing-galar": 2.968168392784454, - "rhydon": 4.330975611206699, - "chansey": 24.75865138467008, - "tangela": 7.246814266635708, - "kangaskhan": 1.8221692821201194, - "seadra": 5.194941222873478, - "seaking": 2.6708666045476512, - "starmie": 2.3550287316580136, - "mr-mime": 6.5772752295653465, - "mr-mime-galar": 4.731521545923796, - "scyther": 3.3785653085937932, - "jynx": 4.149211016688602, - "electabuzz": 2.3088988919548616, - "magmar": 2.2421562039278387, - "tauros": 2.1588580088073988, - "ditto": 3.446775618213976, - "vaporeon": 3.5162953814115543, - "jolteon": 1.83037956832827, - "flareon": 3.0791497649340043, - "porygon": 2.6777466051835557, - "dragonair": 2.7185328249010046, - "noctowl": 5.357213679678576, - "lanturn": 1.6259190961149599, - "togetic": 5.350656895497252, - "xatu": 3.994992281799198, - "bellossom": 3.255746502567039, - "azumarill": 2.500050632686148, - "sudowoodo": 3.202473212335147, - "politoed": 2.9382549401415483, - "quagsire": 5.634842070491416, - "slowking": 2.627427302875544, - "dunsparce": 3.384056773501055, - "qwilfish": 4.021324333732481, - "sneasel": 2.5639028710036347, - "piloswine": 2.0053927039112787, - "octillery": 2.6811095767024664, - "skarmory": 2.124614203171528, - "hitmontop": 3.5394110822898814, - "miltank": 3.5988003327514106, - "grovyle": 9.920967427483752, - "sceptile": 1.8518237599906582, - "combusken": 4.6801794313748255, - "blaziken": 2.2339038908553, - "marshtomp": 2.9133805389532554, - "swampert": 1.7466979268851506, - "linoone": 5.097079768996253, - "linoone-galar": 5.342329870347219, - "pelipper": 6.274152726682573, - "ninjask": 9.975891089564676, - "exploud": 1.933027571657524, - "lairon": 2.9905097575283794, - "manectric": 1.799241590303696, - "roselia": 4.848724515471126, - "sharpedo": 5.271086962633836, - "wailmer": 7.301313685749729, - "torkoal": 2.8398545869600187, - "flygon": 2.479412766407041, - "altaria": 3.033753276587687, - "whiscash": 2.5456904026627925, - "crawdaunt": 2.4915487824859763, - "claydol": 3.9582817782168096, - "cradily": 2.262420091342724, - "armaldo": 2.2986942252365656, - "dusclops": 3.446121453697608, - "absol": 2.189117754513238, - "glalie": 4.053886666391827, - "sealeo": 3.6945763901739443, - "relicanth": 1.8987665244167782, - "metang": 2.486858109314201, - "luxray": 3.1013545247636296, - "vespiquen": 3.5214328353038677, - "cherrim": 7.599535739673201, - "gastrodon": 2.208253237812776, - "drifblim": 3.7519918217643387, - "lopunny": 3.5405293757276395, - "skuntank": 1.5878497790062542, - "bronzong": 2.9669999994422924, - "munchlax": 1.8265653392906707, - "drapion": 2.575005091394157, - "abomasnow": 3.7861939910071234, - "froslass": 2.939245112869684, - "rotom": 3.1723163360462197, - "stoutland": 2.3359390481154523, - "liepard": 6.768081649296743, - "musharna": 1.5585906209822071, - "unfezant": 6.342488231458891, - "boldore": 4.32326418851358, - "swoobat": 5.708520914111348, - "audino": 3.0060768314650783, - "gurdurr": 3.4036864835855196, - "palpitoad": 4.307795260766781, - "seismitoad": 6.6776091869460155, - "scolipede": 4.411603164008496, - "whimsicott": 4.192230427765425, - "lilligant": 4.145893221818028, - "basculin-red-striped": 3.280677288554063, - "basculin-blue-striped": 4.320234929935028, - "krookodile": 3.549510714751773, - "maractus": 2.942119103244572, - "crustle": 2.5960440549353994, - "sigilyph": 2.4675286261880864, - "cofagrigus": 2.839581696460699, - "garbodor": 2.0648091660075565, - "cinccino": 4.4772318157547755, - "vanillish": 4.227716810799153, - "emolga": 2.6533521178032276, - "escavalier": 2.1310299682229292, - "amoonguss": 3.341153594252737, - "jellicent": 2.777229816832209, - "galvantula": 1.4738110485439324, - "klang": 2.4700930042403755, - "klinklang": 3.3497901714071494, - "beheeyem": 1.8032839781457262, - "lampent": 3.5613885790841975, - "fraxure": 1.7144215707660337, - "beartic": 2.2664597789906256, - "cryogonal": 2.2260297742739286, - "accelgor": 4.319623364835182, - "stunfisk": 1.6202656787043814, - "stunfisk-galar": 3.117511810063042, - "mienshao": 4.204600440589212, - "druddigon": 1.8708835808654034, - "golurk": 2.334327189245297, - "bisharp": 2.3114685409779874, - "bouffalant": 1.2935177325877674, - "heatmor": 2.472272699334942, - "durant": 2.99926975259167, - "diggersby": 3.9312808331311344, - "talonflame": 3.7892818002481965, - "pangoro": 2.3345766910836474, - "doublade": 2.6366101297999487, - "malamar": 2.7039834606731143, - "barbaracle": 1.880723449573155, - "heliolisk": 2.7244105508859406, - "tyrantrum": 1.5243984717527126, - "aurorus": 2.4669557315506934, - "hawlucha": 4.649303758218393, - "dedenne": 2.8890762047792453, - "klefki": 3.0053605641279972, - "trevenant": 3.8645558364977077, - "gourgeist-average": 7.598144063892333, - "charjabug": 3.324059338057981, - "vikavolt": 1.7685868639813616, - "ribombee": 6.348141902937675, - "lycanroc-midday": 3.4129275840462423, - "lycanroc-midnight": 2.566198014749655, - "mudsdale": 2.0213065214021517, - "araquanid": 3.215931771236805, - "lurantis": 3.217641517301991, - "shiinotic": 5.70142055806382, - "salazzle": 4.139275554341988, - "bewear": 2.292725863961347, - "tsareena": 3.8090414341581686, - "comfey": 4.528159480508371, - "oranguru": 2.6355017981505204, - "passimian": 3.094708903362002, - "palossand": 2.845891703300814, - "pyukumuku": 53.283195817037345, - "togedemaru": 2.004676309654179, - "mimikyu-disguised": 3.7126624618452757, - "greedent": 2.147481951954555, - "orbeetle": 2.5375763561312317, - "thievul": 3.410409044488763, - "eldegoss": 4.918606354056719, - "dubwool": 2.9372745620670946, - "drednaw": 1.6363532813593844, - "boltund": 3.9120166531307885, - "carkol": 3.7249195509173063, - "coalossal": 3.574897118652374, - "sandaconda": 4.329762510297481, - "cramorant": 5.698950598982633, - "barraskewda": 5.01225800807164, - "toxtricity-amped": 2.638389632309425, - "centiskorch": 2.6443248686315615, - "grapploct": 2.5332687172712163, - "polteageist": 2.504071749247256, - "hatterene": 2.5108380051131514, - "grimmsnarl": 3.951497112321362, - "obstagoon": 2.3837238371319396, - "perrserker": 3.1143319037457293, - "alcremie": 1.8109714145324207, - "falinks": 4.644534655225886, - "pincurchin": 2.9072837641164524, - "frosmoth": 3.659402532829888, - "indeedee-male": 3.1864017890459326, - "morpeko": 2.0601968917845923, - "copperajah": 2.435433806526617, - "duraludon": 1.448907949559255, - "drakloak": 4.464819338940529, - "mantine": 2.5833587008385592 + "ivysaur": 4.112879224521763, + "charmeleon": 5.03178385226485, + "wartortle": 3.200730927011323, + "butterfree": 5.738079284334247, + "raichu": 4.226013998991008, + "raichu-alola": 2.928199047061926, + "sandslash": 2.9001897739765834, + "sandslash-alola": 2.2646929520481147, + "nidoqueen": 3.649684696352666, + "nidoking": 2.0876669349205814, + "clefairy": 9.564352269301025, + "clefable": 2.4088469748926036, + "jigglypuff": 27.155760280176445, + "wigglytuff": 2.412090342984975, + "gloom": 7.565874097338417, + "vileplume": 4.050222946478727, + "dugtrio": 4.597063583966992, + "dugtrio-alola": 4.367560354559861, + "persian": 4.142342873580262, + "persian-alola": 4.759884674564264, + "golduck": 3.559788692288768, + "poliwrath": 2.801086087637958, + "kadabra": 4.641171963317874, + "machoke": 4.928031718067566, + "tentacruel": 2.513215308216826, + "slowbro": 1.9190687270278306, + "magneton": 2.8924240493029916, + "haunter": 4.5959534013063195, + "kingler": 3.2335344711563394, + "exeggutor": 2.5938149413575005, + "marowak": 4.148632444155848, + "marowak-alola": 2.73310852573185, + "hitmonlee": 2.837700244919543, + "hitmonchan": 2.302746913083315, + "lickitung": 2.9720299600282845, + "weezing": 1.9765697664648973, + "weezing-galar": 2.974554337814988, + "rhydon": 4.341466064675853, + "chansey": 24.728552387136382, + "tangela": 7.25030594733269, + "kangaskhan": 1.821774159959453, + "seadra": 5.208309110561867, + "seaking": 2.676097858845714, + "starmie": 2.352224255095701, + "mr-mime": 6.580619095930578, + "mr-mime-galar": 4.730966523450014, + "scyther": 3.380966009205034, + "jynx": 4.14061699512715, + "electabuzz": 2.298853072009233, + "magmar": 2.2486210065190786, + "tauros": 2.1612522120652393, + "ditto": 3.43080177658427, + "vaporeon": 3.520762249184072, + "jolteon": 1.8253044980719524, + "flareon": 3.0857701658595103, + "porygon": 2.6758325016428968, + "dragonair": 2.712002345046361, + "noctowl": 5.354952869597824, + "lanturn": 1.6251373989734361, + "togetic": 5.356545483832388, + "xatu": 3.9990284223106842, + "bellossom": 3.2600291580619736, + "azumarill": 2.5073830166329767, + "sudowoodo": 3.2043023108477957, + "politoed": 2.947637063398129, + "quagsire": 5.657597521516269, + "slowking": 2.630852133178153, + "dunsparce": 3.3869218618675907, + "qwilfish": 4.030532106068044, + "sneasel": 2.5597241284060273, + "piloswine": 2.0077254581764965, + "octillery": 2.6873091640521274, + "mantine": 2.5833587008385592, + "skarmory": 2.1266476213486496, + "hitmontop": 3.547780595522405, + "miltank": 3.5965989102914273, + "grovyle": 9.933716362497965, + "sceptile": 1.8535004295509412, + "combusken": 4.699568666147513, + "blaziken": 2.242400678648144, + "marshtomp": 2.92437589475825, + "swampert": 1.7523657955653562, + "linoone": 5.0950489591269275, + "linoone-galar": 5.3380306637122015, + "pelipper": 6.270904956946578, + "ninjask": 9.998145604881625, + "exploud": 1.9341881858022985, + "lairon": 2.99117562863603, + "manectric": 1.7968038293891508, + "roselia": 4.854187483210639, + "sharpedo": 5.273152027540624, + "wailmer": 7.315355104813445, + "torkoal": 2.849695736444578, + "flygon": 2.481782702519852, + "altaria": 3.0341041326527054, + "whiscash": 2.5496794182115754, + "crawdaunt": 2.4922838901020152, + "claydol": 3.9635767102174215, + "cradily": 2.262836883948635, + "armaldo": 2.302296892095682, + "dusclops": 3.449722998160425, + "absol": 2.189228220324013, + "glalie": 4.051986949894336, + "sealeo": 3.7045874157066856, + "relicanth": 1.8974307933478605, + "metang": 2.480287002126402, + "luxray": 3.0903211566169144, + "vespiquen": 3.526909312529708, + "cherrim": 7.609224789630806, + "gastrodon": 2.210454115482901, + "drifblim": 3.7452747859145736, + "lopunny": 3.5392155695136047, + "skuntank": 1.5888286561103895, + "bronzong": 2.966594300019099, + "munchlax": 1.8209711573330527, + "drapion": 2.5782215578114216, + "abomasnow": 3.784818262814058, + "froslass": 2.94133979560719, + "rotom": 3.166983304630614, + "stoutland": 2.3337939850347915, + "liepard": 6.764580329343605, + "musharna": 1.559334677294413, + "unfezant": 6.342911502057239, + "boldore": 4.326337454068477, + "swoobat": 5.7140818492625005, + "audino": 3.009346623824619, + "gurdurr": 3.415240059352435, + "palpitoad": 4.320735916947782, + "seismitoad": 6.682285013516399, + "scolipede": 4.420113257000405, + "whimsicott": 4.197216794566636, + "lilligant": 4.153819893242732, + "basculin-red-striped": 3.2890784446403467, + "basculin-blue-striped": 4.333203563581638, + "krookodile": 3.5566495351276357, + "maractus": 2.943551123122587, + "crustle": 2.599150430235645, + "sigilyph": 2.4708722221463995, + "cofagrigus": 2.844643072480174, + "garbodor": 2.065369857618581, + "cinccino": 4.474869555866072, + "vanillish": 4.228551402379504, + "emolga": 2.644522580796644, + "escavalier": 2.1396814304981837, + "amoonguss": 3.345861665927777, + "jellicent": 2.7766230592562477, + "galvantula": 1.4700081010526942, + "klang": 2.466425089725428, + "klinklang": 3.350752249303047, + "beheeyem": 1.8038669147713349, + "lampent": 3.575749998810841, + "fraxure": 1.712667935010105, + "beartic": 2.2690685234159806, + "cryogonal": 2.2254007764546992, + "accelgor": 4.330958481281011, + "stunfisk": 1.6213156865345901, + "stunfisk-galar": 3.1269125555802333, + "mienshao": 4.206550137968128, + "druddigon": 1.8714934512899921, + "golurk": 2.3400007706654473, + "bisharp": 2.309441506836218, + "bouffalant": 1.2941471212420943, + "heatmor": 2.4805574022017596, + "durant": 2.9962944256373794, + "diggersby": 3.9384245473876662, + "talonflame": 3.800879394025556, + "pangoro": 2.3384498529495183, + "doublade": 2.640942919143295, + "malamar": 2.700755605316484, + "barbaracle": 1.8809464518852481, + "heliolisk": 2.7098525077717976, + "tyrantrum": 1.522502341331148, + "aurorus": 2.4622768737891523, + "hawlucha": 4.655289170075861, + "dedenne": 2.882200330908584, + "klefki": 3.0080205536587967, + "trevenant": 3.8680314586007705, + "gourgeist-average": 7.611416625788087, + "charjabug": 3.3086557758286084, + "vikavolt": 1.767505716926708, + "ribombee": 6.365309381796321, + "lycanroc-midday": 3.4060494456718953, + "lycanroc-midnight": 2.5641233839289423, + "mudsdale": 2.026466351372479, + "araquanid": 3.222313291213846, + "lurantis": 3.2223031934633917, + "shiinotic": 5.709042902680725, + "salazzle": 4.149705473751812, + "bewear": 2.292868926803062, + "tsareena": 3.808899954270708, + "comfey": 4.533723725386941, + "oranguru": 2.635685856664905, + "passimian": 3.0975034204638066, + "palossand": 2.8564136393048187, + "pyukumuku": 53.21422380644568, + "togedemaru": 1.9979870728819704, + "mimikyu-disguised": 3.711177146998467, + "greedent": 2.1469346029636682, + "orbeetle": 2.5425643967739266, + "thievul": 3.4110924798538815, + "eldegoss": 4.924296724885149, + "dubwool": 2.9364554676084538, + "drednaw": 1.6356713827320852, + "boltund": 3.900552906433348, + "carkol": 3.7333863841638593, + "coalossal": 3.588405290295738, + "sandaconda": 4.3420811342423065, + "cramorant": 5.707414358608338, + "barraskewda": 5.016892504321696, + "toxtricity-amped": 2.629646312960335, + "centiskorch": 2.6529890290930966, + "grapploct": 2.5424229647896137, + "polteageist": 2.5049885926648807, + "hatterene": 2.51202444406234, + "grimmsnarl": 3.95666310474965, + "obstagoon": 2.3794752768925926, + "perrserker": 3.112334715149821, + "alcremie": 1.8128969090394451, + "falinks": 4.657082434918873, + "pincurchin": 2.90241047379204, + "frosmoth": 3.6645288107095597, + "indeedee-male": 3.1890760741099653, + "morpeko": 2.0502179131918936, + "copperajah": 2.438964009904138, + "duraludon": 1.4459445208961788, + "drakloak": 4.463113118890727 }, "skarmory": { - "ivysaur": 4.516226989374748, - "charmeleon": 3.2461923765671896, - "wartortle": 2.5049075861293852, - "butterfree": 6.584858173090182, - "raichu": 4.088373253517295, - "raichu-alola": 3.8235090668756415, - "sandslash": 2.178233808210495, - "sandslash-alola": 1.9086646513951226, - "nidoqueen": 2.976487537472013, - "nidoking": 1.847415717555764, - "clefairy": 11.217824063062512, - "clefable": 2.83439872564015, - "jigglypuff": 36.49895136012634, - "wigglytuff": 2.7256421495591345, - "gloom": 7.717206201351937, - "vileplume": 3.9924441303834, - "dugtrio": 4.119096270197762, - "dugtrio-alola": 3.3232293246203213, - "persian": 4.637850721976312, - "persian-alola": 4.635031508172524, - "golduck": 3.015766504843808, - "poliwrath": 2.4058020868897936, - "kadabra": 5.180415765773767, - "machoke": 4.731933566611016, - "tentacruel": 2.432262251184996, - "slowbro": 1.809663008990078, - "magneton": 2.3786406960006596, - "haunter": 4.913836133770972, - "kingler": 2.30617531679637, - "exeggutor": 3.014543373915743, - "marowak": 3.2065473967443916, - "marowak-alola": 2.0121618727610016, - "hitmonlee": 3.306790913361308, - "hitmonchan": 2.692903694400694, - "lickitung": 1.7449814090375089, - "weezing": 1.3255426594938944, - "weezing-galar": 2.869843318216036, - "rhydon": 2.584834070127604, - "chansey": 31.1181726848301, - "tangela": 5.647280309813977, - "kangaskhan": 1.9965149780515612, - "seadra": 3.710861688090123, - "seaking": 2.679671192389952, - "starmie": 1.6059627946831383, - "mr-mime": 9.894675912915037, - "mr-mime-galar": 4.516517962681783, - "scyther": 3.515124782664575, - "jynx": 6.020382400255512, - "electabuzz": 1.9112195000823284, - "magmar": 1.3963395751663814, - "tauros": 2.071005719336127, - "ditto": 2.027765668154281, - "vaporeon": 3.2070883406429083, - "jolteon": 1.6807935727305692, - "flareon": 1.9608802084402437, - "porygon": 2.617828199669053, - "dragonair": 1.861676070210895, - "noctowl": 6.604233023020274, - "lanturn": 1.5652035530285917, - "togetic": 6.332360632759528, - "xatu": 4.1238365868393, - "bellossom": 3.1176455862314767, - "azumarill": 2.329299664179083, - "sudowoodo": 2.9898705845187825, - "politoed": 2.7723530874817257, - "quagsire": 4.143025927170427, - "slowking": 2.962931765921378, - "dunsparce": 3.2350852908173344, - "qwilfish": 3.391730958516508, - "sneasel": 2.8335786179227638, - "piloswine": 1.8060559552091768, - "octillery": 2.363668364731777, - "mantine": 2.5487942535798735, - "hitmontop": 3.547613420058294, - "miltank": 3.6906524384220596, - "grovyle": 11.09566313372795, - "sceptile": 1.9807850170448695, - "combusken": 3.6986809189922365, - "blaziken": 1.8234022721551484, - "marshtomp": 2.502153226873583, - "swampert": 1.2150956309276904, - "linoone": 5.569801796809747, - "linoone-galar": 4.9933449296962955, - "pelipper": 6.010323973541118, - "ninjask": 10.309619642194832, - "exploud": 1.588244092965933, - "lairon": 2.238037232368832, - "manectric": 1.4545493244168841, - "roselia": 5.692740294134049, - "sharpedo": 5.856917257962788, - "wailmer": 6.433127444499503, - "torkoal": 1.297683542180692, - "flygon": 2.6103876114206734, - "altaria": 1.4667339529281158, - "whiscash": 1.979424274608148, - "crawdaunt": 2.0562665117936794, - "claydol": 3.801770336989598, - "cradily": 2.9756550901497922, - "armaldo": 2.4153342399849684, - "dusclops": 3.58603397218314, - "absol": 2.1117720971930263, - "glalie": 5.227743755621436, - "sealeo": 3.017500039956345, - "relicanth": 1.79448460176472, - "metang": 3.060096462273712, - "luxray": 3.0768399615621065, - "vespiquen": 3.5577468311693057, - "cherrim": 7.843851981745301, - "gastrodon": 2.286416255386273, - "drifblim": 4.076863835355233, - "lopunny": 3.961605561044345, - "skuntank": 1.3275046988890922, - "bronzong": 3.613556788571386, - "munchlax": 2.4957216091199705, - "drapion": 2.4272736155939145, - "abomasnow": 4.223024876980964, - "froslass": 3.515603192888928, - "rotom": 3.3276458365371173, - "stoutland": 2.6110259476875886, - "liepard": 8.235086008237825, - "musharna": 1.853757961894778, - "unfezant": 6.4285735710407, - "boldore": 3.5981387760841264, - "swoobat": 5.901968484619941, - "audino": 2.1998056710305276, - "gurdurr": 2.59832982272453, - "palpitoad": 3.8930640268877124, - "seismitoad": 7.020575030707342, - "scolipede": 4.024412688749423, - "whimsicott": 4.169305725774353, - "lilligant": 4.110299121537284, - "basculin-red-striped": 2.805892516752758, - "basculin-blue-striped": 3.4522720106854714, - "krookodile": 3.29591203141801, - "maractus": 2.96557256244062, - "crustle": 2.453478577927327, - "sigilyph": 2.506073068607939, - "cofagrigus": 2.517867115668089, - "garbodor": 1.9834227811012681, - "cinccino": 4.804558040167413, - "vanillish": 2.6068754995648407, - "emolga": 2.1459363476835964, - "escavalier": 1.927410460063865, - "amoonguss": 3.6028745169513687, - "jellicent": 1.7602002523549056, - "galvantula": 1.2899367129941692, - "klang": 2.119555077739213, - "klinklang": 3.0657097890491323, - "beheeyem": 2.060514070809325, - "lampent": 2.054945218837335, - "fraxure": 1.6349781662345522, - "beartic": 2.005793818109164, - "cryogonal": 2.3670231691695554, - "accelgor": 4.502161969138683, - "stunfisk": 1.1231857841311246, - "stunfisk-galar": 2.1251646320518827, - "mienshao": 4.178598594515939, - "druddigon": 1.958590469701131, - "golurk": 2.0337367648976006, - "bisharp": 2.2975320490807793, - "bouffalant": 1.356525941578285, - "heatmor": 1.6268925336579136, - "durant": 2.74555213973954, - "diggersby": 3.538434436249249, - "talonflame": 2.6213849442208783, - "pangoro": 2.1715317665781675, - "doublade": 2.211387846928133, - "malamar": 3.8913691473450953, - "barbaracle": 1.4318624339043347, - "heliolisk": 3.1826689836545823, - "tyrantrum": 1.8136865665207729, - "aurorus": 3.7423454661659488, - "hawlucha": 4.377285470801057, - "dedenne": 2.7736525248742567, - "klefki": 3.148759508160948, - "trevenant": 4.065201893477621, - "gourgeist-average": 5.310324924101404, - "charjabug": 3.7392670618417965, - "vikavolt": 1.8757361587115047, - "ribombee": 6.5925438326552595, - "lycanroc-midday": 4.18201546425995, - "lycanroc-midnight": 2.9440163144584046, - "mudsdale": 1.6018729999489016, - "araquanid": 3.4099275956626256, - "lurantis": 3.2129259660449225, - "shiinotic": 6.047460808316483, - "salazzle": 2.8020478758279745, - "bewear": 2.220304419396255, - "tsareena": 4.209104283570285, - "comfey": 6.23063226073552, - "oranguru": 3.3019201607811555, - "passimian": 2.7302624277743757, - "palossand": 2.049310776303637, - "pyukumuku": 45.9953006682055, - "togedemaru": 1.8771365000030797, - "mimikyu-disguised": 5.789030614333543, - "greedent": 2.2474870622926577, - "orbeetle": 2.4350278494163433, - "thievul": 1.9197610662542006, - "eldegoss": 5.451641276807883, - "dubwool": 3.12084805341638, - "drednaw": 1.2783687968394357, - "boltund": 3.7895687223023344, - "carkol": 2.066917104658354, - "coalossal": 1.6252732044043299, - "sandaconda": 3.234455986827508, - "cramorant": 5.761808286496402, - "barraskewda": 4.617553629966554, - "toxtricity-amped": 2.1676856153186432, - "centiskorch": 2.5643227864971676, - "grapploct": 1.938642330396985, - "polteageist": 3.268937922639857, - "hatterene": 3.3735864901390586, - "grimmsnarl": 4.801680424921734, - "obstagoon": 2.663214773753472, - "perrserker": 2.608760530862936, - "alcremie": 2.0080267801705496, - "falinks": 3.7120980922264972, - "pincurchin": 2.3246461478673566, - "frosmoth": 3.8248195596358276, - "indeedee-male": 3.555426818138126, - "morpeko": 2.753422164162519, - "copperajah": 2.1507829257592674, - "duraludon": 1.2342143870104896, - "drakloak": 4.798086910381757, - "skarmory": 1.752984790135515 + "ivysaur": 4.535020512477925, + "charmeleon": 3.2367539370524607, + "wartortle": 2.5031489787789107, + "butterfree": 6.608245241706481, + "raichu": 4.078154340466981, + "raichu-alola": 3.822813061581277, + "sandslash": 2.182816245207376, + "sandslash-alola": 1.9085542022795101, + "nidoqueen": 2.9832272719430364, + "nidoking": 1.8493016881052449, + "clefairy": 11.2172218665869, + "clefable": 2.8390052210033385, + "jigglypuff": 36.579896611260196, + "wigglytuff": 2.7309617136256534, + "gloom": 7.744302007374875, + "vileplume": 4.006575968914264, + "dugtrio": 4.133759514684136, + "dugtrio-alola": 3.329886715884662, + "persian": 4.648336322771612, + "persian-alola": 4.64038180604902, + "golduck": 3.017025629972589, + "poliwrath": 2.4091540413472274, + "kadabra": 5.200266784722268, + "machoke": 4.738790895402939, + "tentacruel": 2.43374171600876, + "slowbro": 1.8103158270879445, + "magneton": 2.3709311602570393, + "haunter": 4.923777549746354, + "kingler": 2.3075312160839756, + "exeggutor": 3.0282786607817744, + "marowak": 3.214419747202176, + "marowak-alola": 2.012892676478654, + "hitmonlee": 3.3124991913235737, + "hitmonchan": 2.6948326316857947, + "lickitung": 1.7431103314596106, + "weezing": 1.32534691570839, + "weezing-galar": 2.869852765484771, + "rhydon": 2.589002192661882, + "chansey": 31.201841632292243, + "tangela": 5.66310474422513, + "kangaskhan": 2.001629064955462, + "seadra": 3.7075516546686593, + "seaking": 2.6869776936494474, + "starmie": 1.6086765466518256, + "mr-mime": 9.925069574093618, + "mr-mime-galar": 4.527220430654873, + "scyther": 3.5242118801772078, + "jynx": 6.037643635030772, + "electabuzz": 1.9054272483777284, + "magmar": 1.393226004481226, + "tauros": 2.0753174525348976, + "ditto": 2.017141468755531, + "vaporeon": 3.208454939059365, + "jolteon": 1.6768960735108922, + "flareon": 1.9578144671208142, + "porygon": 2.616458303012494, + "dragonair": 1.862428195986463, + "noctowl": 6.619707209785581, + "lanturn": 1.5619074620132372, + "togetic": 6.3299558781413605, + "xatu": 4.1323238981301875, + "bellossom": 3.1282221514459767, + "azumarill": 2.3350326087522677, + "sudowoodo": 2.995540283893094, + "politoed": 2.7786027018048802, + "quagsire": 4.138936033574436, + "slowking": 2.970412823916635, + "dunsparce": 3.2382557424563263, + "qwilfish": 3.396474528801307, + "sneasel": 2.839383136348636, + "piloswine": 1.808490896493236, + "octillery": 2.3659148000276913, + "mantine": 2.5511210900269363, + "skarmory": 1.752984790135515, + "hitmontop": 3.5564095030742946, + "miltank": 3.6980433465435985, + "grovyle": 11.138259879503659, + "sceptile": 1.9893070653118712, + "combusken": 3.693306785890904, + "blaziken": 1.8213540825579995, + "marshtomp": 2.5050083430343277, + "swampert": 1.2162145174769086, + "linoone": 5.582704085754257, + "linoone-galar": 4.9972241350636795, + "pelipper": 6.015402141183863, + "ninjask": 10.346739214209585, + "exploud": 1.589155188056817, + "lairon": 2.2381919311045757, + "manectric": 1.450693594360969, + "roselia": 5.711935506895655, + "sharpedo": 5.866699446532151, + "wailmer": 6.436899878915844, + "torkoal": 1.2931583634322759, + "flygon": 2.618151045442783, + "altaria": 1.466296564554927, + "whiscash": 1.980910966580885, + "crawdaunt": 2.057237318000218, + "claydol": 3.8100019634631184, + "cradily": 2.985445136502812, + "armaldo": 2.42373677935033, + "dusclops": 3.5926145257604185, + "absol": 2.113020009486231, + "glalie": 5.238489658720824, + "sealeo": 3.0168212110299106, + "relicanth": 1.7948192766753317, + "metang": 3.064729758076152, + "luxray": 3.0694303597175865, + "vespiquen": 3.567713909642838, + "cherrim": 7.8707576984281955, + "gastrodon": 2.290671871235876, + "drifblim": 4.072891410350067, + "lopunny": 3.9711163185459153, + "skuntank": 1.3286502140295307, + "bronzong": 3.6248437561874525, + "munchlax": 2.500812414470019, + "drapion": 2.4322895446745263, + "abomasnow": 4.2373277895607, + "froslass": 3.520405785037589, + "rotom": 3.320906379927515, + "stoutland": 2.6168085463990627, + "liepard": 8.254989829535116, + "musharna": 1.8600678331946838, + "unfezant": 6.441291122216841, + "boldore": 3.603363823993726, + "swoobat": 5.914207892333142, + "audino": 2.198398444293572, + "gurdurr": 2.6026392042491375, + "palpitoad": 3.8989852192613563, + "seismitoad": 7.038169117651918, + "scolipede": 4.035242483221876, + "whimsicott": 4.183357036023735, + "lilligant": 4.126235737361443, + "basculin-red-striped": 2.8089275018771866, + "basculin-blue-striped": 3.452496775961083, + "krookodile": 3.3043452310818107, + "maractus": 2.9770862920681274, + "crustle": 2.4593106820075277, + "sigilyph": 2.511201222305439, + "cofagrigus": 2.519283783658472, + "garbodor": 1.9898809305653569, + "cinccino": 4.813144229449852, + "vanillish": 2.6082742280936495, + "emolga": 2.1397739484907143, + "escavalier": 1.9321185225350894, + "amoonguss": 3.6186293621296555, + "jellicent": 1.7635791043279667, + "galvantula": 1.2866239855483266, + "klang": 2.1146667992747106, + "klinklang": 3.0696173244683767, + "beheeyem": 2.0646043732035935, + "lampent": 2.051038602835984, + "fraxure": 1.6391289410520309, + "beartic": 2.006875722085565, + "cryogonal": 2.3710631824052206, + "accelgor": 4.519854724969122, + "stunfisk": 1.1218743625416476, + "stunfisk-galar": 2.1280520045167473, + "mienshao": 4.1837491139185605, + "druddigon": 1.96425176669073, + "golurk": 2.038792263530171, + "bisharp": 2.299890182340739, + "bouffalant": 1.359809490788655, + "heatmor": 1.6238517221369229, + "durant": 2.746669624700669, + "diggersby": 3.5491786393073674, + "talonflame": 2.617574954194204, + "pangoro": 2.1754218214843037, + "doublade": 2.2136786428397977, + "malamar": 3.895576798925389, + "barbaracle": 1.4331176622685406, + "heliolisk": 3.1790346467476676, + "tyrantrum": 1.8166469358851447, + "aurorus": 3.742667551298643, + "hawlucha": 4.385300834283559, + "dedenne": 2.7680352640704613, + "klefki": 3.1536478193142714, + "trevenant": 4.08232228616809, + "gourgeist-average": 5.309450411009916, + "charjabug": 3.73941401386605, + "vikavolt": 1.8792901695595154, + "ribombee": 6.614386325186292, + "lycanroc-midday": 4.189837764662285, + "lycanroc-midnight": 2.9493624950304036, + "mudsdale": 1.6047874706047893, + "araquanid": 3.4222959013662324, + "lurantis": 3.224335280177405, + "shiinotic": 6.0643268933369185, + "salazzle": 2.794547606938347, + "bewear": 2.224490782290302, + "tsareena": 4.226898869736396, + "comfey": 6.249200679186046, + "oranguru": 3.3129883611409046, + "passimian": 2.7344627835542763, + "palossand": 2.05241894602808, + "pyukumuku": 46.044596836940734, + "togedemaru": 1.8762724658667502, + "mimikyu-disguised": 5.806208339546815, + "greedent": 2.2526116119740487, + "orbeetle": 2.443072197784815, + "thievul": 1.9207323740889701, + "eldegoss": 5.472578810170509, + "dubwool": 3.1274350964072246, + "drednaw": 1.2796054571898485, + "boltund": 3.7812587353150517, + "carkol": 2.060281447309827, + "coalossal": 1.6203749385400301, + "sandaconda": 3.242904077747701, + "cramorant": 5.7681541802079135, + "barraskewda": 4.622767694287807, + "toxtricity-amped": 2.1599402410051853, + "centiskorch": 2.5654191465869696, + "grapploct": 1.9395650362544434, + "polteageist": 3.2812889443106616, + "hatterene": 3.383883467123357, + "grimmsnarl": 4.806469896766718, + "obstagoon": 2.6636155943368616, + "perrserker": 2.6062677675058374, + "alcremie": 2.0102178275196243, + "falinks": 3.719052585106929, + "pincurchin": 2.3165351846953497, + "frosmoth": 3.836230483222387, + "indeedee-male": 3.5592432631407895, + "morpeko": 2.749384804844482, + "copperajah": 2.1525805987827713, + "duraludon": 1.2320976823733365, + "drakloak": 4.807063518023231 }, "hitmontop": { - "ivysaur": 3.6122356249972425, - "charmeleon": 4.601339647322481, - "wartortle": 2.6454050122679633, - "butterfree": 5.51942712505457, - "raichu": 6.355995151640713, - "raichu-alola": 4.073247047895141, - "sandslash": 2.165952820701297, - "sandslash-alola": 3.0669513343324812, - "nidoqueen": 3.260726621982603, - "nidoking": 2.1338361242879325, - "clefairy": 8.915042610339025, - "clefable": 1.7007109155461566, - "jigglypuff": 23.17363095437493, - "wigglytuff": 1.6788215553793737, - "gloom": 5.7975009732647536, - "vileplume": 3.378881952832516, - "dugtrio": 4.382669274310302, - "dugtrio-alola": 4.440289866422867, - "persian": 5.029775781114128, - "persian-alola": 5.850995601951578, - "golduck": 2.9323997654793046, - "poliwrath": 1.7786829073079637, - "kadabra": 3.4556298828513685, - "machoke": 3.81766912643504, - "tentacruel": 3.0283037208526995, - "slowbro": 1.4071274693365834, - "magneton": 4.794430299597508, - "haunter": 3.9524118442336755, - "kingler": 2.1260722118724487, - "exeggutor": 1.938019808496497, - "marowak": 3.2010141736075397, - "marowak-alola": 2.208397749705963, - "hitmonlee": 2.483501316735495, - "hitmonchan": 2.1192556329805865, - "lickitung": 2.3768615874402754, - "weezing": 1.6764034263617535, - "weezing-galar": 2.571910210034285, - "rhydon": 2.356203462880787, - "chansey": 38.85332120747027, - "tangela": 4.489487156612061, - "kangaskhan": 2.2718097395804153, - "seadra": 3.699948243400914, - "seaking": 2.30533825569612, - "starmie": 1.2297298553835176, - "mr-mime": 5.861270555834706, - "mr-mime-galar": 3.435782460324541, - "scyther": 2.8203370179020117, - "jynx": 4.499428844394078, - "electabuzz": 3.178823900824648, - "magmar": 2.081350305491637, - "tauros": 2.34885643084744, - "ditto": 2.6443370512144058, - "vaporeon": 3.2606052506581986, - "jolteon": 2.436001415383253, - "flareon": 3.049186090258817, - "porygon": 3.5544767416281142, - "dragonair": 2.0527348287435907, - "noctowl": 6.30438521024802, - "lanturn": 2.388607940967433, - "togetic": 5.565062264199803, - "xatu": 3.6080005765649483, - "bellossom": 2.285765496343731, - "azumarill": 1.8283831413108156, - "sudowoodo": 2.8640744144578103, - "politoed": 2.5392743266486257, - "quagsire": 4.332750312328779, - "slowking": 2.2002808120526867, - "dunsparce": 3.88742084200961, - "qwilfish": 3.5781739838500406, - "sneasel": 4.137580220423181, - "piloswine": 1.8427857135471735, - "octillery": 2.312149720026057, - "mantine": 2.1833895751626624, - "skarmory": 1.7168586271152004, - "miltank": 3.7444034661581256, - "grovyle": 9.03708851964249, - "sceptile": 1.6184019378959607, - "combusken": 3.8329741255956473, - "blaziken": 1.8487798341877446, - "marshtomp": 2.3684208341081003, - "swampert": 1.219111998346981, - "linoone": 6.4040224706576145, - "linoone-galar": 8.68266846652639, - "pelipper": 4.788460098010432, - "ninjask": 8.779592651411079, - "exploud": 2.062285362859836, - "lairon": 3.3500656477957778, - "manectric": 2.013881271769455, - "roselia": 4.533079519205735, - "sharpedo": 6.321546782169164, - "wailmer": 5.986358652038124, - "torkoal": 1.9050618346407475, - "flygon": 3.594532539309471, - "altaria": 2.3373406003927313, - "whiscash": 1.8608401513439412, - "crawdaunt": 2.3382710111741725, - "claydol": 3.4686419769345584, - "cradily": 2.885374431535075, - "armaldo": 1.8255576665903632, - "dusclops": 3.18423698875299, - "absol": 2.4872903362499184, - "glalie": 5.0991945715345235, - "sealeo": 3.881618899158723, - "relicanth": 2.078838529390639, - "metang": 2.978947262363974, - "luxray": 4.343789855308942, - "vespiquen": 2.8344144106110583, - "cherrim": 6.419676023120326, - "gastrodon": 2.1617572150344184, - "drifblim": 4.48283178381079, - "lopunny": 4.357139515847982, - "skuntank": 1.7350848897694193, - "bronzong": 2.6476019145831717, - "munchlax": 3.1215643296412274, - "drapion": 2.7413098560698965, - "abomasnow": 3.80222416279795, - "froslass": 2.65098243963058, - "rotom": 3.244842165336334, - "stoutland": 2.903794011041491, - "liepard": 8.271603070398129, - "musharna": 1.297480854148263, - "unfezant": 5.489988445440536, - "boldore": 3.440954882222813, - "swoobat": 5.149852627012535, - "audino": 2.7192917184005436, - "gurdurr": 1.979733141596966, - "palpitoad": 3.571681861532298, - "seismitoad": 6.120337665330326, - "scolipede": 3.0618640105349124, - "whimsicott": 3.0444740335472398, - "lilligant": 3.4099622366353914, - "basculin-red-striped": 2.5068708692282753, - "basculin-blue-striped": 3.499582734124711, - "krookodile": 3.528358877812982, - "maractus": 2.4488999271026546, - "crustle": 1.9514246642197954, - "sigilyph": 2.2641597079554137, - "cofagrigus": 2.1652809585014374, - "garbodor": 2.1074515044974707, - "cinccino": 5.549189344985322, - "vanillish": 2.6930102089634884, - "emolga": 3.2288342110057835, - "escavalier": 1.7748407828469752, - "amoonguss": 2.8280388321206797, - "jellicent": 1.3531118941084497, - "galvantula": 1.517765555419257, - "klang": 3.498674975700014, - "klinklang": 3.876419042523545, - "beheeyem": 1.7084158077399043, - "lampent": 3.021920433712267, - "fraxure": 1.6067824883983053, - "beartic": 2.1083850971080285, - "cryogonal": 2.495063081742509, - "accelgor": 3.11769889650156, - "stunfisk": 1.5636326436580585, - "stunfisk-galar": 2.850576274470905, - "mienshao": 3.3002136140890688, - "druddigon": 1.9366134704084206, - "golurk": 2.0152438507860047, - "bisharp": 3.841288556046789, - "bouffalant": 1.6256684849742908, - "heatmor": 2.1985681634803784, - "durant": 2.639840631522354, - "diggersby": 3.9391793321044837, - "talonflame": 2.45424598549828, - "pangoro": 2.164684652797871, - "doublade": 2.0988798471119594, - "malamar": 2.6121163763128115, - "barbaracle": 1.6640324997218319, - "heliolisk": 5.017963934050432, - "tyrantrum": 1.707041564712224, - "aurorus": 4.164899644567221, - "hawlucha": 3.7627813482033785, - "dedenne": 3.0308671714139193, - "klefki": 3.2709115596289413, - "trevenant": 3.2814353557053106, - "gourgeist-average": 5.172808361411162, - "charjabug": 3.581564631264362, - "vikavolt": 1.6568339772844245, - "ribombee": 4.1583845654909215, - "lycanroc-midday": 4.293746740909816, - "lycanroc-midnight": 2.9952370645845834, - "mudsdale": 1.6787093992220088, - "araquanid": 1.998615087203307, - "lurantis": 2.6604791158949532, - "shiinotic": 4.471505462234553, - "salazzle": 5.0279460593144645, - "bewear": 2.044066117135121, - "tsareena": 3.1066103127308975, - "comfey": 3.9723262678580404, - "oranguru": 2.280313595387852, - "passimian": 2.051296794256661, - "palossand": 2.076105587897173, - "pyukumuku": 39.59777790136316, - "togedemaru": 3.7621131816158004, - "mimikyu-disguised": 3.787687348069657, - "greedent": 2.3246875397954274, - "orbeetle": 1.5818355337461996, - "thievul": 2.5943492846948613, - "eldegoss": 4.412780235347214, - "dubwool": 3.4632208625907612, - "drednaw": 1.5432058344862898, - "boltund": 5.613348119375338, - "carkol": 3.5756160497679845, - "coalossal": 2.8431953630640754, - "sandaconda": 3.140911273596227, - "cramorant": 5.255810601413058, - "barraskewda": 4.387914862858466, - "toxtricity-amped": 4.3006712358644235, - "centiskorch": 1.94840391391114, - "grapploct": 1.5986515567016641, - "polteageist": 2.539491506315536, - "hatterene": 2.016754946758682, - "grimmsnarl": 3.961633323707523, - "obstagoon": 4.19378632227818, - "perrserker": 3.746212215960826, - "alcremie": 1.2688072886671544, - "falinks": 2.8499500601117393, - "pincurchin": 3.338557522070888, - "frosmoth": 2.7317496516058615, - "indeedee-male": 3.0718040062927425, - "morpeko": 3.424099207944267, - "copperajah": 2.977465167553252, - "duraludon": 1.6641662378798134, - "drakloak": 5.057485477454755, - "hitmontop": 2.5903329608034023 + "ivysaur": 3.6171920398211603, + "charmeleon": 4.607589130672888, + "wartortle": 2.646530625406879, + "butterfree": 5.524328139491699, + "raichu": 6.370086701969196, + "raichu-alola": 4.072476664544754, + "sandslash": 2.1681974014573635, + "sandslash-alola": 3.0738338886572514, + "nidoqueen": 3.2663329699276527, + "nidoking": 2.1372646089013525, + "clefairy": 8.922003601817023, + "clefable": 1.6999373158111482, + "jigglypuff": 23.141580282028556, + "wigglytuff": 1.6772171712863435, + "gloom": 5.79492751327361, + "vileplume": 3.385094478263987, + "dugtrio": 4.393535377580984, + "dugtrio-alola": 4.453887748550921, + "persian": 5.030849600781409, + "persian-alola": 5.868372384647143, + "golduck": 2.9320986671372515, + "poliwrath": 1.778361002598503, + "kadabra": 3.4492115365989546, + "machoke": 3.8231277340242187, + "tentacruel": 3.0315910157714088, + "slowbro": 1.4025574690593436, + "magneton": 4.806465778272069, + "haunter": 3.9462403773172685, + "kingler": 2.123832526020549, + "exeggutor": 1.9359070880709746, + "marowak": 3.205184379319931, + "marowak-alola": 2.207632881787258, + "hitmonlee": 2.487363808356143, + "hitmonchan": 2.1213632338631507, + "lickitung": 2.38056338094307, + "weezing": 1.6774721495599165, + "weezing-galar": 2.5692756471535256, + "rhydon": 2.3582369740262665, + "chansey": 38.928034733160075, + "tangela": 4.485656838644595, + "kangaskhan": 2.275183409711495, + "seadra": 3.6965778855308518, + "seaking": 2.3044931376727056, + "starmie": 1.2274156276156485, + "mr-mime": 5.845884068491859, + "mr-mime-galar": 3.429058082620271, + "scyther": 2.81757864365848, + "jynx": 4.4990603395003985, + "electabuzz": 3.1846278132201054, + "magmar": 2.084610223610153, + "tauros": 2.3519421686057367, + "ditto": 2.6276701856122857, + "vaporeon": 3.263245538414788, + "jolteon": 2.4412107262953273, + "flareon": 3.054333364568132, + "porygon": 3.5613612053071395, + "dragonair": 2.0558290947494875, + "noctowl": 6.301499860200794, + "lanturn": 2.3931102360480434, + "togetic": 5.5590162861775685, + "xatu": 3.597848240802427, + "bellossom": 2.2861585194832967, + "azumarill": 1.8260189753331462, + "sudowoodo": 2.8694867564371913, + "politoed": 2.5403856226692993, + "quagsire": 4.334697468570603, + "slowking": 2.1965211819504153, + "dunsparce": 3.891955347338799, + "qwilfish": 3.5767300530095127, + "sneasel": 4.150858488118865, + "piloswine": 1.8447729079543502, + "octillery": 2.313345808820417, + "mantine": 2.1806263348761905, + "skarmory": 1.7154278918726327, + "hitmontop": 2.5903329608034023, + "miltank": 3.741573322073016, + "grovyle": 9.050695773064792, + "sceptile": 1.6211154460938053, + "combusken": 3.837615268010669, + "blaziken": 1.8508298396459346, + "marshtomp": 2.3698467300304658, + "swampert": 1.2203326750981067, + "linoone": 6.413383920982534, + "linoone-galar": 8.717107119515028, + "pelipper": 4.77351988558246, + "ninjask": 8.789283297144323, + "exploud": 2.0657562563334277, + "lairon": 3.3589590713986457, + "manectric": 2.0161034994242266, + "roselia": 4.536836304218969, + "sharpedo": 6.331065028104987, + "wailmer": 5.981702685028468, + "torkoal": 1.905585025875764, + "flygon": 3.6025589915482508, + "altaria": 2.3399966710424147, + "whiscash": 1.8588483595687184, + "crawdaunt": 2.3409426452631363, + "claydol": 3.4649123992885853, + "cradily": 2.89400394042329, + "armaldo": 1.8281430370005896, + "dusclops": 3.183850949383735, + "absol": 2.4927454313016915, + "glalie": 5.105813577067613, + "sealeo": 3.884600197596643, + "relicanth": 2.081058818987356, + "metang": 2.976931658740178, + "luxray": 4.3484472616369505, + "vespiquen": 2.8317594858821535, + "cherrim": 6.426633836932753, + "gastrodon": 2.164539343407901, + "drifblim": 4.475880933290126, + "lopunny": 4.359604149102986, + "skuntank": 1.7401833318382054, + "bronzong": 2.6401258656144284, + "munchlax": 3.126351231203204, + "drapion": 2.7478649462906315, + "abomasnow": 3.804002647285683, + "froslass": 2.6478398126977636, + "rotom": 3.241053577733371, + "stoutland": 2.905961700863485, + "liepard": 8.278353250230735, + "musharna": 1.2945006986584249, + "unfezant": 5.4767663689044, + "boldore": 3.445459165768793, + "swoobat": 5.135166378303784, + "audino": 2.721831277086363, + "gurdurr": 1.9794631469954709, + "palpitoad": 3.572914497746946, + "seismitoad": 6.12166031246134, + "scolipede": 3.0637161236863104, + "whimsicott": 3.0406008282827113, + "lilligant": 3.415655867261436, + "basculin-red-striped": 2.5040519947182722, + "basculin-blue-striped": 3.500886500326188, + "krookodile": 3.539504225406275, + "maractus": 2.4530734799897065, + "crustle": 1.9534108240445769, + "sigilyph": 2.259038418272814, + "cofagrigus": 2.1608859030531296, + "garbodor": 2.1087809689167902, + "cinccino": 5.555122770117777, + "vanillish": 2.695869470354973, + "emolga": 3.2270534338019212, + "escavalier": 1.7763139438851274, + "amoonguss": 2.83118352256792, + "jellicent": 1.3510529346101896, + "galvantula": 1.5186913740967931, + "klang": 3.5084394203425022, + "klinklang": 3.881924831584448, + "beheeyem": 1.7078599648379669, + "lampent": 3.024242828886204, + "fraxure": 1.6084517820052888, + "beartic": 2.110470090813291, + "cryogonal": 2.498238155177507, + "accelgor": 3.1213417505368715, + "stunfisk": 1.567554801914019, + "stunfisk-galar": 2.8593613682526673, + "mienshao": 3.3036819604805268, + "druddigon": 1.939151073996147, + "golurk": 2.0163201289604746, + "bisharp": 3.8492246852383625, + "bouffalant": 1.6289567624720611, + "heatmor": 2.201817012228287, + "durant": 2.6391568647757104, + "diggersby": 3.949002695418981, + "talonflame": 2.449595827889004, + "pangoro": 2.1691166623502007, + "doublade": 2.0950656842283375, + "malamar": 2.611260595740884, + "barbaracle": 1.6648927382962122, + "heliolisk": 5.033836185439614, + "tyrantrum": 1.7104398019182294, + "aurorus": 4.176784350510394, + "hawlucha": 3.764099552346414, + "dedenne": 3.0312958621299337, + "klefki": 3.2706064160505863, + "trevenant": 3.281813783245952, + "gourgeist-average": 5.1707695003767675, + "charjabug": 3.5800514302687594, + "vikavolt": 1.6564793102852367, + "ribombee": 4.154424445904195, + "lycanroc-midday": 4.308539852966916, + "lycanroc-midnight": 3.004837082533033, + "mudsdale": 1.681439440721923, + "araquanid": 1.9979236214668372, + "lurantis": 2.664031414964087, + "shiinotic": 4.465830558660801, + "salazzle": 5.0355729757936665, + "bewear": 2.045463769128702, + "tsareena": 3.1056741660006866, + "comfey": 3.9690953615621027, + "oranguru": 2.275234163494365, + "passimian": 2.0506422516078895, + "palossand": 2.0766191001314045, + "pyukumuku": 39.57210675079776, + "togedemaru": 3.772144802387163, + "mimikyu-disguised": 3.7856915676526333, + "greedent": 2.3239097074669672, + "orbeetle": 1.5768580548270403, + "thievul": 2.6029194956225026, + "eldegoss": 4.418620562594902, + "dubwool": 3.4662157842801546, + "drednaw": 1.54579322583482, + "boltund": 5.6260290508475155, + "carkol": 3.5851514219682894, + "coalossal": 2.850567556361428, + "sandaconda": 3.1440169099926623, + "cramorant": 5.2557031382187915, + "barraskewda": 4.388367064722008, + "toxtricity-amped": 4.307374209495457, + "centiskorch": 1.9477788665933249, + "grapploct": 1.599657929272328, + "polteageist": 2.5374903929405996, + "hatterene": 2.0104056627416678, + "grimmsnarl": 3.970423034501759, + "obstagoon": 4.204431215937128, + "perrserker": 3.754216591037657, + "alcremie": 1.2686250037309272, + "falinks": 2.8505668718558117, + "pincurchin": 3.343400545368126, + "frosmoth": 2.7282630949717275, + "indeedee-male": 3.0715085128325947, + "morpeko": 3.4329618771123975, + "copperajah": 2.9841180495038677, + "duraludon": 1.6670330415949417, + "drakloak": 5.062664911626813 }, "miltank": { - "ivysaur": 3.3214596252638655, - "charmeleon": 4.028617667543804, - "wartortle": 2.695060690122972, - "butterfree": 4.863507830388315, - "raichu": 5.181865765025162, - "raichu-alola": 3.7704298300327808, - "sandslash": 2.090737235770475, - "sandslash-alola": 1.7154178015009447, - "nidoqueen": 2.9312289996569474, - "nidoking": 1.9484696529764052, - "clefairy": 9.797405045452633, - "clefable": 2.16563526737419, - "jigglypuff": 28.215051211644923, - "wigglytuff": 2.0645869415999893, - "gloom": 5.784342431539617, - "vileplume": 3.0132055758605647, - "dugtrio": 4.0826459508160315, - "dugtrio-alola": 3.080690536418814, - "persian": 4.531931063657622, - "persian-alola": 4.757877904735599, - "golduck": 3.203829560453963, - "poliwrath": 2.0638271348431694, - "kadabra": 4.432872131843301, - "machoke": 4.137923128252286, - "tentacruel": 2.652053742035422, - "slowbro": 1.7324412933837263, - "magneton": 2.5693329121597364, - "haunter": 3.728906751931232, - "kingler": 2.258119281385115, - "exeggutor": 1.9621122179340276, - "marowak": 3.11311469347108, - "marowak-alola": 1.6841594062909988, - "hitmonlee": 2.812987455923322, - "hitmonchan": 2.510950321398152, - "lickitung": 1.9363291107502005, - "weezing": 1.4755583789944766, - "weezing-galar": 2.4428432171043504, - "rhydon": 2.030288793932646, - "chansey": 30.92250550388384, - "tangela": 4.563449531139808, - "kangaskhan": 1.9600795775183026, - "seadra": 3.82348183726629, - "seaking": 2.6762617717234347, - "starmie": 1.472865378245777, - "mr-mime": 7.489623386294447, - "mr-mime-galar": 3.828371826592652, - "scyther": 2.8582164322561274, - "jynx": 4.908896497951902, - "electabuzz": 2.7518361653196726, - "magmar": 1.8075394048255038, - "tauros": 1.9875934744023567, - "ditto": 5.117529469663246, - "vaporeon": 3.463719340225863, - "jolteon": 2.175384600290186, - "flareon": 2.764121327591682, - "porygon": 2.8821062291353834, - "dragonair": 2.1228393760855364, - "noctowl": 6.539902274814198, - "lanturn": 2.0525041085643663, - "togetic": 5.6785167320367735, - "xatu": 3.8673629069564326, - "bellossom": 2.3747830756885886, - "azumarill": 2.405536725345443, - "sudowoodo": 2.210533644311172, - "politoed": 2.750957499192163, - "quagsire": 4.284590448006115, - "slowking": 2.682529147323533, - "dunsparce": 3.503867909255294, - "qwilfish": 3.4132029222765192, - "sneasel": 2.5859298249905307, - "piloswine": 1.536007092305265, - "octillery": 2.407965899418095, - "mantine": 2.772193025094409, - "skarmory": 1.643110874135865, - "hitmontop": 2.982142217092056, - "grovyle": 8.220575626551021, - "sceptile": 1.5143749696945945, - "combusken": 3.1705634750406793, - "blaziken": 1.6301464540837958, - "marshtomp": 2.6149391733044443, - "swampert": 1.2755515004159519, - "linoone": 5.728548370611987, - "linoone-galar": 5.116766854770562, - "pelipper": 6.000215409425532, - "ninjask": 7.966105496700819, - "exploud": 1.6268709904031922, - "lairon": 1.9318771175701586, - "manectric": 1.8123116362423826, - "roselia": 4.3300938319268765, - "sharpedo": 5.732555028373654, - "wailmer": 6.810678490690358, - "torkoal": 1.7276140123780543, - "flygon": 2.664159097657733, - "altaria": 1.7850307168166588, - "whiscash": 2.1162594516310262, - "crawdaunt": 2.0853735494772665, - "claydol": 3.4038278330034197, - "cradily": 2.0420565476055224, - "armaldo": 1.6951398561291355, - "dusclops": 3.4226185604663737, - "absol": 2.1917526135763756, - "glalie": 4.3847484563463075, - "sealeo": 3.249406707723838, - "relicanth": 1.6879809916224895, - "metang": 2.5101969154649746, - "luxray": 3.9443897517161157, - "vespiquen": 2.8059051941390294, - "cherrim": 5.947641385509689, - "gastrodon": 2.3545935053538107, - "drifblim": 3.8251235966425785, - "lopunny": 3.8294810268934807, - "skuntank": 1.4985024696254827, - "bronzong": 2.7433750510020776, - "munchlax": 2.6507401293780273, - "drapion": 2.4262026832569124, - "abomasnow": 3.3565589470173847, - "froslass": 2.781049197558608, - "rotom": 3.513213093035341, - "stoutland": 2.5379245425274437, - "liepard": 7.994576175941294, - "musharna": 1.592622550287329, - "unfezant": 6.326603818233375, - "boldore": 2.748462042791567, - "swoobat": 5.5287179741326185, - "audino": 2.265392065975907, - "gurdurr": 2.14802086024983, - "palpitoad": 3.8890747797579426, - "seismitoad": 6.422059758920936, - "scolipede": 3.2519489379394324, - "whimsicott": 3.165689255633451, - "lilligant": 3.070538952020632, - "basculin-red-striped": 2.9310797370961876, - "basculin-blue-striped": 3.7174753515621304, - "krookodile": 3.085614222924442, - "maractus": 2.2504802194697007, - "crustle": 1.76835468836809, - "sigilyph": 2.3446513470459953, - "cofagrigus": 2.4310540861845293, - "garbodor": 1.8800002755148704, - "cinccino": 4.811957104663049, - "vanillish": 2.2133621417572416, - "emolga": 3.1246700306717274, - "escavalier": 1.6061855371429379, - "amoonguss": 2.603660808417137, - "jellicent": 1.4407556409014006, - "galvantula": 1.6100077698608393, - "klang": 2.286331349298541, - "klinklang": 2.8482949533302433, - "beheeyem": 1.8842272574476495, - "lampent": 1.939347093125296, - "fraxure": 1.6953618271252762, - "beartic": 1.7318190803840925, - "cryogonal": 1.9816131419141685, - "accelgor": 3.267644871122601, - "stunfisk": 1.3332784320147981, - "stunfisk-galar": 1.937238374312108, - "mienshao": 3.573401311030336, - "druddigon": 2.0899436869894354, - "golurk": 1.7056728040628433, - "bisharp": 2.167453813553934, - "bouffalant": 1.3337859284265305, - "heatmor": 1.963147518170386, - "durant": 2.453560604591978, - "diggersby": 3.408477421849135, - "talonflame": 2.98568596019794, - "pangoro": 2.5339273720389075, - "doublade": 1.6657234068219922, - "malamar": 3.036134433160285, - "barbaracle": 1.325164878980183, - "heliolisk": 3.9618722377667455, - "tyrantrum": 1.5602594880009568, - "aurorus": 2.2957023394474456, - "hawlucha": 3.7063146265671936, - "dedenne": 3.0383670853781544, - "klefki": 2.5716121758070045, - "trevenant": 2.6825227745739966, - "gourgeist-average": 4.7481588123091285, - "charjabug": 4.047731613362612, - "vikavolt": 1.8468471649733558, - "ribombee": 4.8174058438510325, - "lycanroc-midday": 3.1148663313053873, - "lycanroc-midnight": 2.1501831732052596, - "mudsdale": 1.5377459138351626, - "araquanid": 2.642489772144099, - "lurantis": 2.446534500378087, - "shiinotic": 4.587039982636333, - "salazzle": 3.26082332156862, - "bewear": 1.9274716996406567, - "tsareena": 3.268600591432202, - "comfey": 4.668098368049305, - "oranguru": 2.8655904193848127, - "passimian": 2.355748598354005, - "palossand": 1.8323647105452698, - "pyukumuku": 42.819025016558356, - "togedemaru": 1.976912690379649, - "mimikyu-disguised": 4.146297155052192, - "greedent": 2.1875483299996543, - "orbeetle": 1.852081529413887, - "thievul": 2.149073725717451, - "eldegoss": 4.079625376088027, - "dubwool": 2.9707897572191566, - "drednaw": 1.1813395553756156, - "boltund": 4.882695715901511, - "carkol": 2.0882647931929452, - "coalossal": 1.6622091741268967, - "sandaconda": 2.988211005319037, - "cramorant": 6.271372249632652, - "barraskewda": 4.789597653153044, - "toxtricity-amped": 2.684366173914851, - "centiskorch": 2.1899382616620686, - "grapploct": 1.7039722886138122, - "polteageist": 2.556011544870752, - "hatterene": 2.6159235784722576, - "grimmsnarl": 4.2223507450287645, - "obstagoon": 2.7423781354529595, - "perrserker": 2.671052073130602, - "alcremie": 1.581725247027788, - "falinks": 3.1204861446414727, - "pincurchin": 2.947505442316228, - "frosmoth": 2.7897276678560123, - "indeedee-male": 3.6370457542181818, - "morpeko": 3.055179586982387, - "copperajah": 1.9796241216043593, - "duraludon": 1.289727193610516, - "drakloak": 5.487075456266227, - "miltank": 3.594759370305982 + "ivysaur": 3.3192367532001894, + "charmeleon": 4.0263902137720375, + "wartortle": 2.6929685661903005, + "butterfree": 4.861415983083765, + "raichu": 5.17640450832498, + "raichu-alola": 3.768917753986794, + "sandslash": 2.09040908953156, + "sandslash-alola": 1.7121300848263596, + "nidoqueen": 2.931575230587727, + "nidoking": 1.9491130983767473, + "clefairy": 9.80017622918323, + "clefable": 2.1658258685803355, + "jigglypuff": 28.21253311907673, + "wigglytuff": 2.063668810539898, + "gloom": 5.778881678679476, + "vileplume": 3.010827608240162, + "dugtrio": 4.086227329833467, + "dugtrio-alola": 3.0790151997317627, + "persian": 4.531646361767713, + "persian-alola": 4.761757315023583, + "golduck": 3.204041468792161, + "poliwrath": 2.0649565251933337, + "kadabra": 4.433486752072935, + "machoke": 4.1396541087441925, + "tentacruel": 2.6523437259284166, + "slowbro": 1.7312531699078564, + "magneton": 2.563955650848279, + "haunter": 3.7254407635171436, + "kingler": 2.2559716329421864, + "exeggutor": 1.9610019409268156, + "marowak": 3.113803935768944, + "marowak-alola": 1.6827169630169265, + "hitmonlee": 2.8147358851397564, + "hitmonchan": 2.5142841324604293, + "lickitung": 1.9350209185101304, + "weezing": 1.4735834818656526, + "weezing-galar": 2.440166153348329, + "rhydon": 2.027478919880164, + "chansey": 30.923109163076468, + "tangela": 4.560184780015019, + "kangaskhan": 1.9607995566314587, + "seadra": 3.8180278496596047, + "seaking": 2.6786668408966876, + "starmie": 1.472633474147346, + "mr-mime": 7.489548546722491, + "mr-mime-galar": 3.8256581019876457, + "scyther": 2.8592168453726785, + "jynx": 4.90809269841747, + "electabuzz": 2.7510686249212983, + "magmar": 1.8067601813265288, + "tauros": 1.986820428133619, + "ditto": 5.085943410501435, + "vaporeon": 3.4639495449172086, + "jolteon": 2.1775417648031055, + "flareon": 2.7670993594766453, + "porygon": 2.8810028999751665, + "dragonair": 2.1247416805688504, + "noctowl": 6.542889628912894, + "lanturn": 2.0529532606201415, + "togetic": 5.681670908983252, + "xatu": 3.865268513937923, + "bellossom": 2.373607454368123, + "azumarill": 2.4095386555499703, + "sudowoodo": 2.207559983701988, + "politoed": 2.751795652217946, + "quagsire": 4.27722634363307, + "slowking": 2.683426300008782, + "dunsparce": 3.5069966643187733, + "qwilfish": 3.4126897832091387, + "sneasel": 2.5883626215607456, + "piloswine": 1.5348903104588272, + "octillery": 2.407351074646138, + "mantine": 2.7744652295496897, + "skarmory": 1.6416860557950135, + "hitmontop": 2.9844101040381563, + "miltank": 3.594759370305982, + "grovyle": 8.215891140100844, + "sceptile": 1.5143067731089674, + "combusken": 3.165934949534001, + "blaziken": 1.6296387438372668, + "marshtomp": 2.6159877775979075, + "swampert": 1.2752711547331121, + "linoone": 5.7347861365699, + "linoone-galar": 5.11963001989791, + "pelipper": 5.9981401664263725, + "ninjask": 7.968017404325744, + "exploud": 1.6246635525928697, + "lairon": 1.928021127607701, + "manectric": 1.8121946922728749, + "roselia": 4.327900537497747, + "sharpedo": 5.739344404953494, + "wailmer": 6.811507107778642, + "torkoal": 1.7258028727337753, + "flygon": 2.666313806234731, + "altaria": 1.7858218500134384, + "whiscash": 2.116146103570719, + "crawdaunt": 2.086125186459513, + "claydol": 3.4013997004749683, + "cradily": 2.0392379216789527, + "armaldo": 1.694437782504087, + "dusclops": 3.4265447362584487, + "absol": 2.193779970207146, + "glalie": 4.38603750888298, + "sealeo": 3.248263983167658, + "relicanth": 1.6862488636627606, + "metang": 2.5078961329663354, + "luxray": 3.943592933150893, + "vespiquen": 2.8057345050414373, + "cherrim": 5.94391109731165, + "gastrodon": 2.3562286040593707, + "drifblim": 3.817710374643803, + "lopunny": 3.828902882640767, + "skuntank": 1.4994037551771942, + "bronzong": 2.741799497906804, + "munchlax": 2.65358782322701, + "drapion": 2.4275834460375245, + "abomasnow": 3.355784607053847, + "froslass": 2.78028162038756, + "rotom": 3.5136309273733586, + "stoutland": 2.5375503084205944, + "liepard": 8.005126313565558, + "musharna": 1.5920827537963422, + "unfezant": 6.329090089672139, + "boldore": 2.744073673534479, + "swoobat": 5.525560770029719, + "audino": 2.263940665003062, + "gurdurr": 2.1464137645590506, + "palpitoad": 3.888444751267717, + "seismitoad": 6.415633699962372, + "scolipede": 3.2517581164183182, + "whimsicott": 3.1650454005116524, + "lilligant": 3.068692523577655, + "basculin-red-striped": 2.9323956018051747, + "basculin-blue-striped": 3.7177437540266793, + "krookodile": 3.0878225006491107, + "maractus": 2.2501218662336737, + "crustle": 1.766072667578615, + "sigilyph": 2.343274001836482, + "cofagrigus": 2.4310187735275957, + "garbodor": 1.8786291990995816, + "cinccino": 4.812092979360495, + "vanillish": 2.2118164617358884, + "emolga": 3.1251627768094794, + "escavalier": 1.605301498534435, + "amoonguss": 2.6013168495632044, + "jellicent": 1.4392720121026574, + "galvantula": 1.6092130495662618, + "klang": 2.282477513760818, + "klinklang": 2.845348942019732, + "beheeyem": 1.8833709864026704, + "lampent": 1.934905657603782, + "fraxure": 1.6967975195143228, + "beartic": 1.7301426199545575, + "cryogonal": 1.9819227910178303, + "accelgor": 3.266403224453783, + "stunfisk": 1.3328540937098916, + "stunfisk-galar": 1.9345357094448627, + "mienshao": 3.572934561371175, + "druddigon": 2.0932615531615433, + "golurk": 1.7038818228850783, + "bisharp": 2.166187234842716, + "bouffalant": 1.333948076941104, + "heatmor": 1.963105112070276, + "durant": 2.450199325869252, + "diggersby": 3.4101043814851484, + "talonflame": 2.984509263135131, + "pangoro": 2.5373787857712804, + "doublade": 1.6612030673771718, + "malamar": 3.0368643480939936, + "barbaracle": 1.3236706163604213, + "heliolisk": 3.961722056093334, + "tyrantrum": 1.5591743187095461, + "aurorus": 2.292600780782453, + "hawlucha": 3.7072980298905307, + "dedenne": 3.0381630804757256, + "klefki": 2.569332592631097, + "trevenant": 2.6781512374482146, + "gourgeist-average": 4.747063348885445, + "charjabug": 4.049648232539008, + "vikavolt": 1.8466583249847566, + "ribombee": 4.815825461183459, + "lycanroc-midday": 3.1133985420219483, + "lycanroc-midnight": 2.1482101719399114, + "mudsdale": 1.5366979963807814, + "araquanid": 2.645601467111083, + "lurantis": 2.4452797789131533, + "shiinotic": 4.584964548763947, + "salazzle": 3.2588158831582437, + "bewear": 1.9284995585407478, + "tsareena": 3.270175595645818, + "comfey": 4.668466584044428, + "oranguru": 2.8650507071946363, + "passimian": 2.355926009625379, + "palossand": 1.8309979355428343, + "pyukumuku": 42.76884905477973, + "togedemaru": 1.9751793334467482, + "mimikyu-disguised": 4.150598771821371, + "greedent": 2.1876574893216496, + "orbeetle": 1.850580647045405, + "thievul": 2.1517004742006405, + "eldegoss": 4.077929674654371, + "dubwool": 2.9691731449255987, + "drednaw": 1.1804331467756055, + "boltund": 4.883235858506671, + "carkol": 2.0848029785957465, + "coalossal": 1.6587245180835923, + "sandaconda": 2.9866798381208843, + "cramorant": 6.278596043626594, + "barraskewda": 4.791284513028206, + "toxtricity-amped": 2.6811983238523847, + "centiskorch": 2.18916041955777, + "grapploct": 1.7020403718088755, + "polteageist": 2.5533999282764954, + "hatterene": 2.616121630207009, + "grimmsnarl": 4.223984814042282, + "obstagoon": 2.743339240512222, + "perrserker": 2.6678375038807203, + "alcremie": 1.5823155988605095, + "falinks": 3.1198179617773922, + "pincurchin": 2.9460219935728666, + "frosmoth": 2.78736829227171, + "indeedee-male": 3.640143176336437, + "morpeko": 3.0576530306818466, + "copperajah": 1.976192491294678, + "duraludon": 1.2883956633529492, + "drakloak": 5.494285677769042 }, "grovyle": { - "ivysaur": 2.247788160136268, - "charmeleon": 2.650964002686159, - "wartortle": 3.445037362816975, - "butterfree": 2.85150100649222, - "raichu": 4.882824541754275, - "raichu-alola": 3.165393201567443, - "sandslash": 2.73310323032182, - "sandslash-alola": 1.7401484205703388, - "nidoqueen": 2.507574858097545, - "nidoking": 1.5466852428267832, - "clefairy": 7.828023685087059, - "clefable": 1.8128917852834654, - "jigglypuff": 24.606810331776032, - "wigglytuff": 1.8043872506459129, - "gloom": 3.5796598687834043, - "vileplume": 2.0332046568169986, - "dugtrio": 4.151156578840483, - "dugtrio-alola": 3.1295662774998254, - "persian": 3.681446259179369, - "persian-alola": 3.753110994563711, - "golduck": 3.910516060603458, - "poliwrath": 2.3264099801552915, - "kadabra": 3.2155885545915046, - "machoke": 3.474594792561959, - "tentacruel": 1.9575827473219696, - "slowbro": 2.123747186470292, - "magneton": 2.804896451225743, - "haunter": 3.5209327387868004, - "kingler": 3.6434857578003257, - "exeggutor": 1.6062741734064971, - "marowak": 3.9216754356919203, - "marowak-alola": 1.352483420170993, - "hitmonlee": 1.7852620382308093, - "hitmonchan": 1.6163253504383421, - "lickitung": 1.707981236733643, - "weezing": 1.0612356473404012, - "weezing-galar": 1.8880527079063256, - "rhydon": 4.551539783024236, - "chansey": 25.944517725365333, - "tangela": 4.331096836728983, - "kangaskhan": 1.6094101496256883, - "seadra": 6.2133347036083, - "seaking": 2.626886173494645, - "starmie": 1.617452035103244, - "mr-mime": 5.801336138913459, - "mr-mime-galar": 2.7460179750269704, - "scyther": 1.5508865366602063, - "jynx": 3.2733425042725965, - "electabuzz": 2.515188405084573, - "magmar": 1.0775337380777277, - "tauros": 1.8744037393867958, - "ditto": 6.6983805950384365, - "vaporeon": 3.859841169511166, - "jolteon": 1.7464564038270667, - "flareon": 1.5105063244919958, - "porygon": 2.4842149816832775, - "dragonair": 1.2812149318001516, - "noctowl": 3.850720375010529, - "lanturn": 2.607287968587717, - "togetic": 3.5962916417687047, - "xatu": 2.7238076022742987, - "bellossom": 1.9043547887133072, - "azumarill": 1.3693562374886477, - "sudowoodo": 3.3128634312429934, - "politoed": 3.178222679597462, - "quagsire": 9.705563305508266, - "slowking": 2.615007165490323, - "dunsparce": 2.4943998598369834, - "qwilfish": 2.9713713355173375, - "sneasel": 2.3416279168621035, - "piloswine": 1.6840781917812433, - "octillery": 2.696107220374858, - "mantine": 1.9896650748650897, - "skarmory": 1.1654366277181119, - "hitmontop": 2.2046562760040205, - "miltank": 3.228625266846112, - "sceptile": 1.1141339088507434, - "combusken": 2.39781402785666, - "blaziken": 1.0667088075224431, - "marshtomp": 4.4935818732798865, - "swampert": 2.1815117870904803, - "linoone": 4.092712885783605, - "linoone-galar": 4.938415772936713, - "pelipper": 5.012423130020885, - "ninjask": 4.077151353181977, - "exploud": 1.3360221691827427, - "lairon": 2.2655458805908806, - "manectric": 1.6008475247020262, - "roselia": 3.0143331224306507, - "sharpedo": 5.922164489853844, - "wailmer": 7.671766151208519, - "torkoal": 1.2136629840699966, - "flygon": 2.0258097499593473, - "altaria": 1.011610040390111, - "whiscash": 3.735827188994415, - "crawdaunt": 2.727987016909389, - "claydol": 3.8809490302161427, - "cradily": 2.076832082392741, - "armaldo": 1.5408496400872753, - "dusclops": 2.7693539296026675, - "absol": 1.6032586396833766, - "glalie": 3.195316469275012, - "sealeo": 3.695099818273718, - "relicanth": 3.7338889247397153, - "metang": 2.1917435836124706, - "luxray": 3.6261928611606664, - "vespiquen": 1.5052915774862772, - "cherrim": 4.922491837391971, - "gastrodon": 3.433434855889617, - "drifblim": 3.409349049687254, - "lopunny": 2.938830623497887, - "skuntank": 0.9917059822457837, - "bronzong": 2.227042637871978, - "munchlax": 1.815800485513648, - "drapion": 1.6431976240247508, - "abomasnow": 2.5625824588477104, - "froslass": 2.273692154636187, - "rotom": 3.6774599773920853, - "stoutland": 2.0511694441984503, - "liepard": 6.090582967838445, - "musharna": 1.422095603428493, - "unfezant": 3.807120610647278, - "boldore": 4.529087326509229, - "swoobat": 3.8975113805142554, - "audino": 1.9334718673002722, - "gurdurr": 2.1482940192904514, - "palpitoad": 7.109035805461616, - "seismitoad": 9.981647393698859, - "scolipede": 1.817843824775623, - "whimsicott": 2.4063609832671498, - "lilligant": 2.3808247641888522, - "basculin-red-striped": 3.4190838796481495, - "basculin-blue-striped": 4.845998946492283, - "krookodile": 3.4970088867974605, - "maractus": 1.8756226091605108, - "crustle": 1.7162414739489626, - "sigilyph": 1.6895605428106004, - "cofagrigus": 2.5284543751449577, - "garbodor": 1.2282148335817102, - "cinccino": 3.5990264306857895, - "vanillish": 1.6675916491193374, - "emolga": 2.360215449359629, - "escavalier": 1.2769316446946974, - "amoonguss": 1.6359327513162278, - "jellicent": 1.635326245407084, - "galvantula": 1.286951543789924, - "klang": 2.504762220264442, - "klinklang": 2.5858774320321, - "beheeyem": 1.6251548099851971, - "lampent": 1.4881580361004292, - "fraxure": 1.081945525245945, - "beartic": 1.3575634535142136, - "cryogonal": 1.404907725991184, - "accelgor": 1.8217405237528512, - "stunfisk": 1.6978933414705526, - "stunfisk-galar": 2.2672712968531004, - "mienshao": 2.9971787231780844, - "druddigon": 1.2783365049574844, - "golurk": 2.2274165125385164, - "bisharp": 2.191060016254711, - "bouffalant": 1.0492932747282857, - "heatmor": 1.2526729831194277, - "durant": 1.8244395718553879, - "diggersby": 3.9285664958832367, - "talonflame": 1.7602880110370962, - "pangoro": 1.5344834115432777, - "doublade": 1.7328896402100764, - "malamar": 2.6631201437610548, - "barbaracle": 2.3959992096913028, - "heliolisk": 3.6419063402791485, - "tyrantrum": 1.4802587668284741, - "aurorus": 2.5119338575969685, - "hawlucha": 2.3954156950108016, - "dedenne": 2.695248527794397, - "klefki": 2.2466542821541835, - "trevenant": 2.3568341526537484, - "gourgeist-average": 3.6990858473027495, - "charjabug": 3.3742866718398723, - "vikavolt": 1.263521386154221, - "ribombee": 3.1571652822022642, - "lycanroc-midday": 3.787179505958002, - "lycanroc-midnight": 2.6368882082968006, - "mudsdale": 1.892717356598407, - "araquanid": 1.7202141129517274, - "lurantis": 1.774699941485023, - "shiinotic": 3.4041786938898606, - "salazzle": 1.9564164122777317, - "bewear": 1.5470765186279611, - "tsareena": 2.2535530745505574, - "comfey": 4.2873474595490615, - "oranguru": 2.326512323477337, - "passimian": 1.996340046901768, - "palossand": 2.8147275193007175, - "pyukumuku": 47.38343571834781, - "togedemaru": 1.9211166860941238, - "mimikyu-disguised": 3.317618787824212, - "greedent": 1.8638453654083986, - "orbeetle": 1.2619539631688474, - "thievul": 1.5358505134288611, - "eldegoss": 3.3353992308251392, - "dubwool": 2.6465596920499737, - "drednaw": 2.119713585355721, - "boltund": 4.460685607712437, - "carkol": 1.9903567542656644, - "coalossal": 1.774370602723232, - "sandaconda": 3.796896710456152, - "cramorant": 4.74234591728775, - "barraskewda": 5.717038354347714, - "toxtricity-amped": 2.1087684377192764, - "centiskorch": 1.306622609794289, - "grapploct": 1.6406846830708495, - "polteageist": 2.3313461726670544, - "hatterene": 2.2317917496675888, - "grimmsnarl": 3.4472510411995607, - "obstagoon": 2.5833181281132322, - "perrserker": 2.559798574025438, - "alcremie": 1.2129626068951183, - "falinks": 2.63031616726774, - "pincurchin": 3.0884733576489936, - "frosmoth": 1.6870845905433873, - "indeedee-male": 2.608893810067939, - "morpeko": 2.5224751954493705, - "copperajah": 1.9983474005890574, - "duraludon": 1.160480100478429, - "drakloak": 3.256831780565168, - "grovyle": 6.559911023744457 + "ivysaur": 2.238501345741612, + "charmeleon": 2.6366212573448093, + "wartortle": 3.443869745784662, + "butterfree": 2.8319918942187403, + "raichu": 4.87928374560388, + "raichu-alola": 3.1580819963842663, + "sandslash": 2.727067369558549, + "sandslash-alola": 1.7327035478656576, + "nidoqueen": 2.5001611410526863, + "nidoking": 1.5403176777402925, + "clefairy": 7.802390490866236, + "clefable": 1.8091406635167537, + "jigglypuff": 24.5568107262021, + "wigglytuff": 1.800312706689085, + "gloom": 3.5573802543298374, + "vileplume": 2.0237622495686534, + "dugtrio": 4.150348324071206, + "dugtrio-alola": 3.1246815517629516, + "persian": 3.669527320514498, + "persian-alola": 3.744354771197763, + "golduck": 3.90931701032285, + "poliwrath": 2.3235594360507985, + "kadabra": 3.2032169582271757, + "machoke": 3.464101918423112, + "tentacruel": 1.9510843912427869, + "slowbro": 2.118476879271228, + "magneton": 2.8012733558527287, + "haunter": 3.5108274893222413, + "kingler": 3.643579036307953, + "exeggutor": 1.601275382951342, + "marowak": 3.9179480193679526, + "marowak-alola": 1.3436752593384957, + "hitmonlee": 1.777163515069806, + "hitmonchan": 1.608140493253479, + "lickitung": 1.7051111513641974, + "weezing": 1.0548524544560067, + "weezing-galar": 1.8781399926177662, + "rhydon": 4.553201564443718, + "chansey": 25.87933663200353, + "tangela": 4.320770917516425, + "kangaskhan": 1.6047832276839462, + "seadra": 6.21411842961162, + "seaking": 2.6198064017796465, + "starmie": 1.61396587415223, + "mr-mime": 5.782617633425532, + "mr-mime-galar": 2.735324423701401, + "scyther": 1.5381161033244826, + "jynx": 3.257099842837837, + "electabuzz": 2.5131128386900303, + "magmar": 1.0714688333567468, + "tauros": 1.8701848514527128, + "ditto": 6.635541077389904, + "vaporeon": 3.8604301071851914, + "jolteon": 1.7441353623943714, + "flareon": 1.503954498838877, + "porygon": 2.4780081880129536, + "dragonair": 1.2757422337949613, + "noctowl": 3.826800425694487, + "lanturn": 2.61163180218153, + "togetic": 3.5758437136256767, + "xatu": 2.708880587348612, + "bellossom": 1.900998687257404, + "azumarill": 1.3564145348898307, + "sudowoodo": 3.310299255432504, + "politoed": 3.179056912308891, + "quagsire": 9.723834864790263, + "slowking": 2.60754875431059, + "dunsparce": 2.4816967944822608, + "qwilfish": 2.958277625254931, + "sneasel": 2.332566911359452, + "piloswine": 1.6791521725707301, + "octillery": 2.689859861933643, + "mantine": 1.9831187112692745, + "skarmory": 1.1575553041209932, + "hitmontop": 2.1961420415903015, + "miltank": 3.2181232381360987, + "grovyle": 6.559911023744457, + "sceptile": 1.110712864820472, + "combusken": 2.387230575139788, + "blaziken": 1.0604492245765906, + "marshtomp": 4.494506976149027, + "swampert": 2.184346298582189, + "linoone": 4.07367743367175, + "linoone-galar": 4.930435554011802, + "pelipper": 4.985804130317836, + "ninjask": 4.04032462679476, + "exploud": 1.3324730043592172, + "lairon": 2.261137587840289, + "manectric": 1.5961573208072757, + "roselia": 3.005230209741394, + "sharpedo": 5.91438312672684, + "wailmer": 7.65738827269678, + "torkoal": 1.2074872531883856, + "flygon": 2.018045791676534, + "altaria": 1.0065507286735143, + "whiscash": 3.732290882861339, + "crawdaunt": 2.725336945625415, + "claydol": 3.874429070126616, + "cradily": 2.072843769160568, + "armaldo": 1.5339086475345545, + "dusclops": 2.755778976988535, + "absol": 1.597246021255064, + "glalie": 3.1791705564341077, + "sealeo": 3.690118500742552, + "relicanth": 3.7346297441060394, + "metang": 2.1835505056264184, + "luxray": 3.619300176690575, + "vespiquen": 1.492155325218663, + "cherrim": 4.913115425861568, + "gastrodon": 3.4285474112906673, + "drifblim": 3.398938939045171, + "lopunny": 2.9265872998052322, + "skuntank": 0.9870564244832554, + "bronzong": 2.2177516356069313, + "munchlax": 1.8073245644611284, + "drapion": 1.6343666655460565, + "abomasnow": 2.5508222293761404, + "froslass": 2.260759162707714, + "rotom": 3.6727419364901897, + "stoutland": 2.0437928973907877, + "liepard": 6.073480707068413, + "musharna": 1.4185262634529685, + "unfezant": 3.778422492448393, + "boldore": 4.526204445988247, + "swoobat": 3.8761660691042668, + "audino": 1.927891352754545, + "gurdurr": 2.1433545345445935, + "palpitoad": 7.115089295634254, + "seismitoad": 9.953250148397712, + "scolipede": 1.8033367313793387, + "whimsicott": 2.3968997505894603, + "lilligant": 2.3729165810118253, + "basculin-red-striped": 3.413190294039352, + "basculin-blue-striped": 4.8462095467334025, + "krookodile": 3.4952955062798035, + "maractus": 1.873056885528203, + "crustle": 1.7078493057325523, + "sigilyph": 1.680893773666555, + "cofagrigus": 2.5221607781024167, + "garbodor": 1.2181344814459005, + "cinccino": 3.5819712286941514, + "vanillish": 1.6602121032769857, + "emolga": 2.3504825235227385, + "escavalier": 1.2712842768908557, + "amoonguss": 1.6263930165568068, + "jellicent": 1.632570441938839, + "galvantula": 1.2825389552535191, + "klang": 2.501974870451206, + "klinklang": 2.5762315134470777, + "beheeyem": 1.6205424964070303, + "lampent": 1.4789067853097295, + "fraxure": 1.0756371323826748, + "beartic": 1.352871427159029, + "cryogonal": 1.3997222338347939, + "accelgor": 1.8087156937598117, + "stunfisk": 1.7000619372927646, + "stunfisk-galar": 2.2660044786190925, + "mienshao": 2.9883025662391245, + "druddigon": 1.2722512101761716, + "golurk": 2.2233574089082877, + "bisharp": 2.1826711141400126, + "bouffalant": 1.0435050438368512, + "heatmor": 1.2457156438849937, + "durant": 1.812480346366553, + "diggersby": 3.92748311739744, + "talonflame": 1.7484051257749988, + "pangoro": 1.5302338212003732, + "doublade": 1.723893312219461, + "malamar": 2.6566459757077077, + "barbaracle": 2.3911545816319077, + "heliolisk": 3.6407169516199485, + "tyrantrum": 1.4758628198291284, + "aurorus": 2.5062996967444366, + "hawlucha": 2.3811671345149477, + "dedenne": 2.69197847472606, + "klefki": 2.239377443200364, + "trevenant": 2.3490698241571284, + "gourgeist-average": 3.6786749380717714, + "charjabug": 3.3681781601195855, + "vikavolt": 1.2564601719943544, + "ribombee": 3.1382354771404386, + "lycanroc-midday": 3.7813724586438573, + "lycanroc-midnight": 2.6322021600366847, + "mudsdale": 1.889955334271085, + "araquanid": 1.7103366960412085, + "lurantis": 1.7668068305455589, + "shiinotic": 3.3916471772964685, + "salazzle": 1.9399406757440345, + "bewear": 1.541361790042703, + "tsareena": 2.243435786230093, + "comfey": 4.282283472658754, + "oranguru": 2.3193791825412027, + "passimian": 1.98820689982717, + "palossand": 2.8143247541444536, + "pyukumuku": 47.29238819845562, + "togedemaru": 1.9129565650301843, + "mimikyu-disguised": 3.3032634330702293, + "greedent": 1.8575320749292157, + "orbeetle": 1.255809544213362, + "thievul": 1.53191489644014, + "eldegoss": 3.330018607787162, + "dubwool": 2.6395665394138943, + "drednaw": 2.1176035861665286, + "boltund": 4.4529912374607425, + "carkol": 1.9821584816506304, + "coalossal": 1.769412990004184, + "sandaconda": 3.786944713290973, + "cramorant": 4.729329139795999, + "barraskewda": 5.708758764141335, + "toxtricity-amped": 2.103485619865848, + "centiskorch": 1.298707712833768, + "grapploct": 1.637186757300237, + "polteageist": 2.32486664095463, + "hatterene": 2.2245694225881323, + "grimmsnarl": 3.4391967754458905, + "obstagoon": 2.5786061105680824, + "perrserker": 2.552621278885187, + "alcremie": 1.2093919267439581, + "falinks": 2.617769950733414, + "pincurchin": 3.0892796983502806, + "frosmoth": 1.6768858070527668, + "indeedee-male": 2.5993614005472043, + "morpeko": 2.518015861944444, + "copperajah": 1.992854387287053, + "duraludon": 1.1572074999770412, + "drakloak": 3.2411433382625217 }, "sceptile": { - "ivysaur": 2.9157122317497306, - "charmeleon": 3.172530291305349, - "wartortle": 4.476345105591453, - "butterfree": 3.721535840641838, - "raichu": 5.849359892704002, - "raichu-alola": 4.307546632040736, - "sandslash": 3.773617704593084, - "sandslash-alola": 1.7980362427343675, - "nidoqueen": 3.097485010165685, - "nidoking": 1.975009429843173, - "clefairy": 9.683466017438978, - "clefable": 2.302164965146067, - "jigglypuff": 30.068376922345777, - "wigglytuff": 2.2824295963775287, - "gloom": 4.6949140837040835, - "vileplume": 2.6015593192831226, - "dugtrio": 5.420799146731672, - "dugtrio-alola": 3.8534072603228817, - "persian": 4.623403648687967, - "persian-alola": 4.805841728949721, - "golduck": 5.1110256573116235, - "poliwrath": 3.1125098958591417, - "kadabra": 4.814772073497554, - "machoke": 4.402427111170755, - "tentacruel": 2.3985292915336505, - "slowbro": 2.8505009220182487, - "magneton": 3.0891979606569038, - "haunter": 4.1315929283265325, - "kingler": 4.922975333396012, - "exeggutor": 2.8224761475665914, - "marowak": 5.225293901983099, - "marowak-alola": 1.7073476740057056, - "hitmonlee": 2.2278057563953055, - "hitmonchan": 2.0692961139408284, - "lickitung": 2.136718680720974, - "weezing": 1.3261458761646054, - "weezing-galar": 2.312135062588138, - "rhydon": 6.401120410864568, - "chansey": 25.972363136157483, - "tangela": 5.171532097049108, - "kangaskhan": 2.038605116449492, - "seadra": 8.275896560335132, - "seaking": 3.5406913282770494, - "starmie": 2.156069266733395, - "mr-mime": 6.980820307895032, - "mr-mime-galar": 3.681211471349926, - "scyther": 2.002719302414188, - "jynx": 4.984157813100136, - "electabuzz": 3.0029011784796005, - "magmar": 1.315257601789416, - "tauros": 2.383932186050499, - "ditto": 1.9486642385786683, - "vaporeon": 4.9026515815046094, - "jolteon": 2.1137107542233666, - "flareon": 1.856134394375928, - "porygon": 3.045674447705753, - "dragonair": 1.799429820631421, - "noctowl": 4.658332015300488, - "lanturn": 3.3258817489893744, - "togetic": 4.323940314460246, - "xatu": 3.2616725299948017, - "bellossom": 2.673700209548389, - "azumarill": 1.6382120436075376, - "sudowoodo": 4.427783811471128, - "politoed": 4.0480917565856585, - "quagsire": 13.314707334560891, - "slowking": 3.4323084891109175, - "dunsparce": 3.255422242740553, - "qwilfish": 3.91307105818241, - "sneasel": 2.3845304886587573, - "piloswine": 2.323497743953895, - "octillery": 3.619180181585113, - "mantine": 2.4130979390599387, - "skarmory": 1.4313772322020877, - "hitmontop": 2.7899635096429147, - "miltank": 4.17946687803811, - "grovyle": 9.590967987683591, - "combusken": 2.8646222602543236, - "blaziken": 1.312053336197672, - "marshtomp": 6.308860692090732, - "swampert": 3.066967826445673, - "linoone": 5.328154743027442, - "linoone-galar": 5.179757157431178, - "pelipper": 6.5715559230400995, - "ninjask": 5.382194244199163, - "exploud": 1.664275518082861, - "lairon": 3.026680895224417, - "manectric": 2.008701786196903, - "roselia": 3.9418986761247985, - "sharpedo": 7.9132690923220395, - "wailmer": 10.30095319173428, - "torkoal": 1.5532648327233514, - "flygon": 2.569596888596495, - "altaria": 1.562669175991904, - "whiscash": 5.3297769091165375, - "crawdaunt": 3.656477198120059, - "claydol": 4.9973053342347225, - "cradily": 2.5575413379362546, - "armaldo": 1.9931395113438235, - "dusclops": 3.5918107548600156, - "absol": 2.0593864000176465, - "glalie": 4.114487922520539, - "sealeo": 4.834059394459526, - "relicanth": 5.293605164875295, - "metang": 2.660113061284486, - "luxray": 4.4945553151813495, - "vespiquen": 1.9595196604810723, - "cherrim": 6.851122429633505, - "gastrodon": 4.900266079891924, - "drifblim": 3.9548413179916735, - "lopunny": 3.723481424805547, - "skuntank": 1.2169148143742416, - "bronzong": 2.7382872324852308, - "munchlax": 2.035850772686447, - "drapion": 2.070210220610098, - "abomasnow": 3.273252632782528, - "froslass": 2.9408789124752075, - "rotom": 4.585803223021641, - "stoutland": 2.617914253547224, - "liepard": 7.751576112734207, - "musharna": 1.784388711847152, - "unfezant": 4.872771787901572, - "boldore": 6.133085213236361, - "swoobat": 4.666498553198847, - "audino": 2.4628560014848704, - "gurdurr": 2.7328666870256137, - "palpitoad": 9.855099604715345, - "seismitoad": 14.369380770614121, - "scolipede": 2.2992031829113486, - "whimsicott": 2.845223959603368, - "lilligant": 3.324296506267202, - "basculin-red-striped": 4.627057762391802, - "basculin-blue-striped": 6.367114753005936, - "krookodile": 4.581112977881089, - "maractus": 2.592959177336977, - "crustle": 2.260134051225151, - "sigilyph": 2.0146227207079503, - "cofagrigus": 3.191055608450333, - "garbodor": 1.490720363777874, - "cinccino": 4.683475948026757, - "vanillish": 2.10116169961198, - "emolga": 2.8106519142054767, - "escavalier": 1.3856348292743692, - "amoonguss": 2.1486218625382647, - "jellicent": 2.2475871318349867, - "galvantula": 1.500629169270976, - "klang": 2.6274427370886695, - "klinklang": 2.9926825713870766, - "beheeyem": 2.080541486922805, - "lampent": 1.903644683896595, - "fraxure": 1.4304455248875696, - "beartic": 1.7313187929116216, - "cryogonal": 1.513112056211813, - "accelgor": 2.384622478801785, - "stunfisk": 2.1196047180284388, - "stunfisk-galar": 2.7810732831472844, - "mienshao": 3.7596974272418855, - "druddigon": 1.7652772799672303, - "golurk": 2.979919056737046, - "bisharp": 2.0757200562640294, - "bouffalant": 1.104865283281791, - "heatmor": 1.5367384408151712, - "durant": 2.2272448163101384, - "diggersby": 5.110174337318472, - "talonflame": 2.212426229245615, - "pangoro": 1.9474628422150602, - "doublade": 2.2305094114709787, - "malamar": 4.0724076435688605, - "barbaracle": 3.4284662400562342, - "heliolisk": 3.9428939182138283, - "tyrantrum": 1.918530631334252, - "aurorus": 3.142581725641596, - "hawlucha": 2.9587478085019034, - "dedenne": 3.3916109469474334, - "klefki": 2.7265341794782825, - "trevenant": 2.8098724778116067, - "gourgeist-average": 4.551192780939264, - "charjabug": 3.8712093127403593, - "vikavolt": 1.5516392816765678, - "ribombee": 3.7987573314543166, - "lycanroc-midday": 4.984318292999452, - "lycanroc-midnight": 3.488513277073862, - "mudsdale": 2.5238370116951545, - "araquanid": 2.2351772270956314, - "lurantis": 2.5384775806354805, - "shiinotic": 4.073147069720623, - "salazzle": 2.4211081162366224, - "bewear": 1.9997151415485317, - "tsareena": 3.2395133553488193, - "comfey": 5.164582102620699, - "oranguru": 3.0589957122130755, - "passimian": 2.597267531201816, - "palossand": 3.7092723032451147, - "pyukumuku": 60.26374468248653, - "togedemaru": 1.9619809572076683, - "mimikyu-disguised": 4.264448095791907, - "greedent": 2.402644173913851, - "orbeetle": 1.8453712959067607, - "thievul": 2.0072803420985625, - "eldegoss": 4.758971577633714, - "dubwool": 3.327506040255301, - "drednaw": 3.0669783981713516, - "boltund": 5.523480505582319, - "carkol": 2.534014286541642, - "coalossal": 2.183847638354547, - "sandaconda": 5.237098725000617, - "cramorant": 5.772781194001248, - "barraskewda": 7.708874514338557, - "toxtricity-amped": 2.5114455539335268, - "centiskorch": 1.6748257039442906, - "grapploct": 2.010327628796252, - "polteageist": 2.847235140186966, - "hatterene": 2.781550329111647, - "grimmsnarl": 4.273547713191345, - "obstagoon": 2.8964378468124643, - "perrserker": 3.0551770761752715, - "alcremie": 1.5086046287029928, - "falinks": 3.4718153457407483, - "pincurchin": 3.670054333689097, - "frosmoth": 2.1158300160958836, - "indeedee-male": 3.647835545220881, - "morpeko": 3.1555633247353736, - "copperajah": 2.107358098851928, - "duraludon": 1.2524845972478504, - "drakloak": 4.534935407908899, - "sceptile": 1.6286827240688118 + "ivysaur": 2.9147895771842967, + "charmeleon": 3.1670917391216564, + "wartortle": 4.496075176275392, + "butterfree": 3.710451077811831, + "raichu": 5.86908268983231, + "raichu-alola": 4.319392818176908, + "sandslash": 3.7859033340459285, + "sandslash-alola": 1.79443425310577, + "nidoqueen": 3.1017019081358352, + "nidoking": 1.9764897735947127, + "clefairy": 9.688768518950173, + "clefable": 2.305401131637381, + "jigglypuff": 30.10511577060322, + "wigglytuff": 2.2850519608065785, + "gloom": 4.685050517601116, + "vileplume": 2.5994471386601163, + "dugtrio": 5.444830080302138, + "dugtrio-alola": 3.860136976683358, + "persian": 4.627745147617821, + "persian-alola": 4.816325951684935, + "golduck": 5.134412005298817, + "poliwrath": 3.124182536623673, + "kadabra": 4.822271323252139, + "machoke": 4.408620739121597, + "tentacruel": 2.4014631785731564, + "slowbro": 2.859770628586042, + "magneton": 3.0921983206454837, + "haunter": 4.13682951083598, + "kingler": 4.947850201986482, + "exeggutor": 2.828602855516759, + "marowak": 5.246811206806517, + "marowak-alola": 1.7046805822165063, + "hitmonlee": 2.22747196674252, + "hitmonchan": 2.068425952905085, + "lickitung": 2.1408716627550834, + "weezing": 1.3237129138871657, + "weezing-galar": 2.3082899381811064, + "rhydon": 6.436500590588674, + "chansey": 25.96410293462818, + "tangela": 5.180709187844345, + "kangaskhan": 2.0413302889189717, + "seadra": 8.31651443024307, + "seaking": 3.5505379092598934, + "starmie": 2.163716335080578, + "mr-mime": 6.987319303805005, + "mr-mime-galar": 3.6838847549958773, + "scyther": 1.9947588771783542, + "jynx": 4.984005284656421, + "electabuzz": 3.012390396954437, + "magmar": 1.3124259140078995, + "tauros": 2.388655105929665, + "ditto": 1.9415771875607286, + "vaporeon": 4.926068854759636, + "jolteon": 2.119776162546577, + "flareon": 1.8537907475176267, + "porygon": 3.0495043000119098, + "dragonair": 1.8001803151435511, + "noctowl": 4.64694490390965, + "lanturn": 3.3463304412350956, + "togetic": 4.313685464847723, + "xatu": 3.258455565644004, + "bellossom": 2.679381251722458, + "azumarill": 1.6133265091883053, + "sudowoodo": 4.445440242383388, + "politoed": 4.067766468708739, + "quagsire": 13.40434582188912, + "slowking": 3.4432418603386044, + "dunsparce": 3.2536276694560176, + "qwilfish": 3.9160006747405753, + "sneasel": 2.3840697569549842, + "piloswine": 2.3283638495675874, + "octillery": 3.629908094609522, + "mantine": 2.4158154621652215, + "skarmory": 1.4266767179532462, + "hitmontop": 2.7916389436001237, + "miltank": 4.1845488048689, + "grovyle": 9.611187500050185, + "sceptile": 1.6286827240688118, + "combusken": 2.861700466181319, + "blaziken": 1.3093392695264834, + "marshtomp": 6.344472764058294, + "swampert": 3.085975867256894, + "linoone": 5.327670275499129, + "linoone-galar": 5.188808849581539, + "pelipper": 6.5699055031903795, + "ninjask": 5.357294159613334, + "exploud": 1.6660543200691322, + "lairon": 3.031152979274839, + "manectric": 2.0124592563705668, + "roselia": 3.944439885341055, + "sharpedo": 7.944793332606828, + "wailmer": 10.336078629888117, + "torkoal": 1.551095627971721, + "flygon": 2.5735021809012193, + "altaria": 1.561318385379351, + "whiscash": 5.354760670927718, + "crawdaunt": 3.672125913368644, + "claydol": 5.016469494890584, + "cradily": 2.56333281284253, + "armaldo": 1.9941801812349638, + "dusclops": 3.5941035287704426, + "absol": 2.061838726011006, + "glalie": 4.111835944708511, + "sealeo": 4.849111533443727, + "relicanth": 5.3225445005161705, + "metang": 2.660856035400956, + "luxray": 4.506121698880559, + "vespiquen": 1.9508608096917184, + "cherrim": 6.865426049300951, + "gastrodon": 4.921769338173055, + "drifblim": 3.9578845693730207, + "lopunny": 3.7242070287984266, + "skuntank": 1.2166784211384387, + "bronzong": 2.7384118952892877, + "munchlax": 2.0348464422743366, + "drapion": 2.068952475415359, + "abomasnow": 3.270665755329812, + "froslass": 2.9399356656691307, + "rotom": 4.602577853900948, + "stoutland": 2.6197549876944004, + "liepard": 7.767573013305659, + "musharna": 1.7892451581663726, + "unfezant": 4.85766933884884, + "boldore": 6.159110464540682, + "swoobat": 4.661947378165774, + "audino": 2.4651096138836897, + "gurdurr": 2.7386198174045777, + "palpitoad": 9.914583963346708, + "seismitoad": 14.411306932638038, + "scolipede": 2.2907841403627884, + "whimsicott": 2.844149163350317, + "lilligant": 3.327647686956431, + "basculin-red-striped": 4.643848053002525, + "basculin-blue-striped": 6.398295483092696, + "krookodile": 4.601472680051083, + "maractus": 2.6000293612938257, + "crustle": 2.2607517229001943, + "sigilyph": 2.013230778742834, + "cofagrigus": 3.1987408451334, + "garbodor": 1.4860668312203513, + "cinccino": 4.682561014266575, + "vanillish": 2.0997956383752934, + "emolga": 2.810985336539508, + "escavalier": 1.3833293274189669, + "amoonguss": 2.1448657985461024, + "jellicent": 2.2559158948278144, + "galvantula": 1.5018677432186158, + "klang": 2.6300251625276703, + "klinklang": 2.990706437374439, + "beheeyem": 2.0855049371840435, + "lampent": 1.9003905428180634, + "fraxure": 1.4296180808684258, + "beartic": 1.7318149245790941, + "cryogonal": 1.5121333353097768, + "accelgor": 2.3785866621953793, + "stunfisk": 2.1311369823628303, + "stunfisk-galar": 2.787873082021527, + "mienshao": 3.764727417074997, + "druddigon": 1.7656807998153243, + "golurk": 2.990910226326287, + "bisharp": 2.0728766456320424, + "bouffalant": 1.0978782947253487, + "heatmor": 1.5343586911194929, + "durant": 2.2205524225788067, + "diggersby": 5.131281591678832, + "talonflame": 2.2053001418784213, + "pangoro": 1.9503009273995815, + "doublade": 2.2295718872715677, + "malamar": 4.085012054325197, + "barbaracle": 3.4408670778243065, + "heliolisk": 3.954255014536983, + "tyrantrum": 1.9221427801040547, + "aurorus": 3.146708147478029, + "hawlucha": 2.9535781648814874, + "dedenne": 3.3991854589351655, + "klefki": 2.725584250045215, + "trevenant": 2.8141712478062795, + "gourgeist-average": 4.548908508729115, + "charjabug": 3.879400017182773, + "vikavolt": 1.5504005354717783, + "ribombee": 3.789513657594216, + "lycanroc-midday": 4.999794387012468, + "lycanroc-midnight": 3.4988157803413182, + "mudsdale": 2.533186025520665, + "araquanid": 2.2351595801275206, + "lurantis": 2.5391145117010083, + "shiinotic": 4.071705311901751, + "salazzle": 2.4104634096116992, + "bewear": 2.000688786993308, + "tsareena": 3.2405050076177346, + "comfey": 5.175919614205229, + "oranguru": 3.065021949446481, + "passimian": 2.59901965013873, + "palossand": 3.7271769066473883, + "pyukumuku": 60.39224091190745, + "togedemaru": 1.9592290275203612, + "mimikyu-disguised": 4.265916019079579, + "greedent": 2.4051409652387177, + "orbeetle": 1.8453614414751063, + "thievul": 2.010030517821856, + "eldegoss": 4.769964729921828, + "dubwool": 3.33232213194274, + "drednaw": 3.0804159927271213, + "boltund": 5.538592242446281, + "carkol": 2.5331136014295117, + "coalossal": 2.1853568447815523, + "sandaconda": 5.252050514683889, + "cramorant": 5.782338291767852, + "barraskewda": 7.738461379912819, + "toxtricity-amped": 2.5135748329958574, + "centiskorch": 1.6708145457320618, + "grapploct": 2.0143830354471874, + "polteageist": 2.853686512973767, + "hatterene": 2.785049838889342, + "grimmsnarl": 4.280317729011656, + "obstagoon": 2.901734342297103, + "perrserker": 3.055955503744568, + "alcremie": 1.5094917506699927, + "falinks": 3.4723201779699684, + "pincurchin": 3.6851342578156965, + "frosmoth": 2.110587502142225, + "indeedee-male": 3.652733197895307, + "morpeko": 3.1645083732526476, + "copperajah": 2.1068406216969193, + "duraludon": 1.252165378822377, + "drakloak": 4.538009812302652 }, "combusken": { - "ivysaur": 4.0104953941664805, - "charmeleon": 3.719908243409693, - "wartortle": 2.1815821200848187, - "butterfree": 5.655124391058449, - "raichu": 4.6108794246621985, - "raichu-alola": 2.7601444810933575, - "sandslash": 2.128495408530157, - "sandslash-alola": 4.208117817647215, - "nidoqueen": 2.3852280058268045, - "nidoking": 1.6753813102247137, - "clefairy": 9.226304037801732, - "clefable": 1.817113770110164, - "jigglypuff": 24.75178553282928, - "wigglytuff": 1.7416411378796786, - "gloom": 6.83274269410596, - "vileplume": 4.137526944224104, - "dugtrio": 3.0197612758399304, - "dugtrio-alola": 4.07491116082735, - "persian": 4.690452369523465, - "persian-alola": 5.312161092473714, - "golduck": 2.3272572097838955, - "poliwrath": 1.5414413132213225, - "kadabra": 3.0464698002278254, - "machoke": 3.8547062242730514, - "tentacruel": 1.5611831939078176, - "slowbro": 1.2638949682072056, - "magneton": 4.4715854510869155, - "haunter": 4.140087758337646, - "kingler": 2.110456397982478, - "exeggutor": 2.196687618781975, - "marowak": 2.9081695513155132, - "marowak-alola": 1.7556169068829404, - "hitmonlee": 2.268071041445, - "hitmonchan": 2.0508052554107943, - "lickitung": 2.050625686877237, - "weezing": 1.7032270632771773, - "weezing-galar": 2.7226672121208058, - "rhydon": 2.6957110786232485, - "chansey": 32.83737136682933, - "tangela": 7.825788930153679, - "kangaskhan": 2.035836534757027, - "seadra": 3.616522840569114, - "seaking": 1.8182475972982024, - "starmie": 1.141249474643634, - "mr-mime": 4.751240603899376, - "mr-mime-galar": 3.9961877625333884, - "scyther": 3.2116035426146645, - "jynx": 6.080283178269509, - "electabuzz": 2.266620675787777, - "magmar": 1.6482143068453972, - "tauros": 2.3303273624891165, - "ditto": 3.4432964552991967, - "vaporeon": 2.4768149745927204, - "jolteon": 1.7161789609295748, - "flareon": 2.3612925040610664, - "porygon": 3.263622145712607, - "dragonair": 1.6858136023377277, - "noctowl": 4.696961400725055, - "lanturn": 1.472237501515826, - "togetic": 5.11843111155102, - "xatu": 2.9246595726877285, - "bellossom": 2.8811044632120293, - "azumarill": 1.4644415634751453, - "sudowoodo": 2.9795237947864086, - "politoed": 1.9147217459308599, - "quagsire": 3.7586993159665436, - "slowking": 1.6804307585914167, - "dunsparce": 3.816586689589734, - "qwilfish": 2.5139980589076045, - "sneasel": 3.68580754212822, - "piloswine": 2.000637042482854, - "octillery": 2.0301344084285615, - "mantine": 1.5490112238248517, - "skarmory": 3.1433242674126376, - "hitmontop": 2.394194849495268, - "miltank": 4.32807338224615, - "grovyle": 9.675233227514338, - "sceptile": 1.7758113178179453, - "blaziken": 1.5465282731396919, - "marshtomp": 1.9166152293762493, - "swampert": 1.0541996781095995, - "linoone": 6.095260655851696, - "linoone-galar": 8.197817006147309, - "pelipper": 4.4597507221819495, - "ninjask": 10.054506794033545, - "exploud": 1.8780520679206778, - "lairon": 4.977564707050247, - "manectric": 1.6570648003710509, - "roselia": 4.3258820167594285, - "sharpedo": 5.52910404269597, - "wailmer": 5.039055914036053, - "torkoal": 2.012437730534913, - "flygon": 2.164725220976317, - "altaria": 1.2997237094464542, - "whiscash": 1.4042003926940523, - "crawdaunt": 2.161296527499448, - "claydol": 2.7239577527987455, - "cradily": 2.604642648723062, - "armaldo": 1.8069600907599377, - "dusclops": 3.3133588688056124, - "absol": 2.4536209997103025, - "glalie": 5.578566128543768, - "sealeo": 3.3000800472533474, - "relicanth": 2.1799184201518713, - "metang": 3.6693340018634997, - "luxray": 3.5344929139479775, - "vespiquen": 3.2647606977743218, - "cherrim": 7.4107927276037096, - "gastrodon": 1.7895240162084565, - "drifblim": 3.4693724207862693, - "lopunny": 3.821680998008203, - "skuntank": 1.535149296879418, - "bronzong": 3.606941430090502, - "munchlax": 2.7418450331340547, - "drapion": 2.744371460942766, - "abomasnow": 5.529393475937619, - "froslass": 3.865970305753463, - "rotom": 3.4893347264406698, - "stoutland": 2.6699478570881294, - "liepard": 8.453035088848269, - "musharna": 1.2381148389425638, - "unfezant": 5.189201328787016, - "boldore": 4.04157097571774, - "swoobat": 4.183429672965464, - "audino": 2.524917433225172, - "gurdurr": 2.121069940291317, - "palpitoad": 2.8485757388407924, - "seismitoad": 5.563390609640686, - "scolipede": 4.765987388202456, - "whimsicott": 3.887292060388898, - "lilligant": 4.223925507444163, - "basculin-red-striped": 2.1776792262095306, - "basculin-blue-striped": 2.9228808469773213, - "krookodile": 3.2019497157404304, - "maractus": 3.036271172968271, - "crustle": 2.1979722559082213, - "sigilyph": 1.8933041455411437, - "cofagrigus": 2.321549454428418, - "garbodor": 1.7566663685808872, - "cinccino": 5.342638601843916, - "vanillish": 2.7063980723704315, - "emolga": 2.689454543570312, - "escavalier": 3.156541816563668, - "amoonguss": 3.1594211340686535, - "jellicent": 1.1333729674045667, - "galvantula": 2.0402010798898242, - "klang": 3.7389713632482424, - "klinklang": 4.820783293594662, - "beheeyem": 1.5433822058300908, - "lampent": 1.7508101868882395, - "fraxure": 1.4515108749863388, - "beartic": 2.1976715613984616, - "cryogonal": 2.380554503705082, - "accelgor": 4.149526700682298, - "stunfisk": 1.0165441661713186, - "stunfisk-galar": 2.8308186174189673, - "mienshao": 3.161383492470156, - "druddigon": 1.5634080062598863, - "golurk": 1.6669611620764018, - "bisharp": 4.2717300774758815, - "bouffalant": 1.5495443446974368, - "heatmor": 1.895565793968208, - "durant": 7.810517980034831, - "diggersby": 3.22254827712419, - "talonflame": 2.281552268445429, - "pangoro": 2.148265489164139, - "doublade": 3.8296116274366225, - "malamar": 2.6039471081852796, - "barbaracle": 1.668396888190327, - "heliolisk": 4.061213197086609, - "tyrantrum": 1.997387831772245, - "aurorus": 3.5851622298978514, - "hawlucha": 3.465137403122071, - "dedenne": 2.601347794907496, - "klefki": 4.2497693662192795, - "trevenant": 3.952247465296024, - "gourgeist-average": 7.515919627085426, - "charjabug": 5.032029008172932, - "vikavolt": 2.5226958853067556, - "ribombee": 6.202123934407206, - "lycanroc-midday": 3.7351845416722256, - "lycanroc-midnight": 2.715161369547876, - "mudsdale": 1.4741943614705704, - "araquanid": 2.0217131704226423, - "lurantis": 3.182252874999524, - "shiinotic": 5.117108163089656, - "salazzle": 2.723160450517402, - "bewear": 2.103215752378083, - "tsareena": 3.713305277688789, - "comfey": 4.295815753964334, - "oranguru": 1.953878803319438, - "passimian": 2.1793081384877695, - "palossand": 1.8233784961034893, - "pyukumuku": 40.016008849819954, - "togedemaru": 2.821333804866447, - "mimikyu-disguised": 3.592833088895907, - "greedent": 2.382476696202188, - "orbeetle": 2.0742314940034774, - "thievul": 2.354910559252648, - "eldegoss": 4.8172688978414175, - "dubwool": 3.7384689792338577, - "drednaw": 1.4512464369037659, - "boltund": 4.654192697636711, - "carkol": 2.875233823799432, - "coalossal": 2.2407955627305878, - "sandaconda": 3.0556109166125625, - "cramorant": 3.949633163500361, - "barraskewda": 3.9668906121660985, - "toxtricity-amped": 2.400979910218285, - "centiskorch": 1.824347143783879, - "grapploct": 1.4674791029494805, - "polteageist": 2.2571190580582847, - "hatterene": 2.0391640076861277, - "grimmsnarl": 3.8226449877826747, - "obstagoon": 4.346391768395333, - "perrserker": 4.993566826392648, - "alcremie": 1.2980558234480637, - "falinks": 3.394996407731616, - "pincurchin": 2.6734101343645356, - "frosmoth": 4.1957843891361915, - "indeedee-male": 2.6877458375806937, - "morpeko": 3.2394818638967697, - "copperajah": 3.2739646682182597, - "duraludon": 2.2483948802294798, - "drakloak": 3.5420390610821624, - "combusken": 3.098541087313108 + "ivysaur": 4.0136452351021, + "charmeleon": 3.72234344084723, + "wartortle": 2.1755796426892275, + "butterfree": 5.658986322564999, + "raichu": 4.609141150837324, + "raichu-alola": 2.7489139046820474, + "sandslash": 2.126879245671732, + "sandslash-alola": 4.230485996595747, + "nidoqueen": 2.377927743119052, + "nidoking": 1.6722322028446523, + "clefairy": 9.233092867260908, + "clefable": 1.8148721988245802, + "jigglypuff": 24.74443190600759, + "wigglytuff": 1.7388067737792001, + "gloom": 6.827634262288023, + "vileplume": 4.14720440119699, + "dugtrio": 3.0112969833206744, + "dugtrio-alola": 4.082867830078029, + "persian": 4.69339890036849, + "persian-alola": 5.328229608733639, + "golduck": 2.3184357670998033, + "poliwrath": 1.53753007255531, + "kadabra": 3.032882409205331, + "machoke": 3.8567318059695053, + "tentacruel": 1.5531557286883322, + "slowbro": 1.2579348905934307, + "magneton": 4.486987495592793, + "haunter": 4.130439451111216, + "kingler": 2.1041866606434274, + "exeggutor": 2.192019513557125, + "marowak": 2.9057920062046545, + "marowak-alola": 1.752489457143017, + "hitmonlee": 2.2679368394531423, + "hitmonchan": 2.052217656366648, + "lickitung": 2.051897472429567, + "weezing": 1.7027346721322587, + "weezing-galar": 2.720239910050278, + "rhydon": 2.6934399166126965, + "chansey": 32.79761023547721, + "tangela": 7.84432292196402, + "kangaskhan": 2.0372002998476697, + "seadra": 3.606107015403917, + "seaking": 1.811300252856702, + "starmie": 1.1374704906676767, + "mr-mime": 4.721484783368093, + "mr-mime-galar": 3.9866304200168408, + "scyther": 3.2072244566936297, + "jynx": 6.086993948521145, + "electabuzz": 2.2645390465117416, + "magmar": 1.6487517874179756, + "tauros": 2.3320102118771113, + "ditto": 3.414932554081145, + "vaporeon": 2.4680365120055594, + "jolteon": 1.7148416178170163, + "flareon": 2.358581746333169, + "porygon": 3.269987838939201, + "dragonair": 1.6843734586684302, + "noctowl": 4.682881965511438, + "lanturn": 1.4678409491202535, + "togetic": 5.113852721867252, + "xatu": 2.9079390351813523, + "bellossom": 2.8855790660083898, + "azumarill": 1.4589525566041064, + "sudowoodo": 2.979168605479704, + "politoed": 1.9073150649220443, + "quagsire": 3.747370858485056, + "slowking": 1.6719671482449714, + "dunsparce": 3.8230610688236846, + "qwilfish": 2.5044310403496164, + "sneasel": 3.7048307901668274, + "piloswine": 2.0052879712439218, + "octillery": 2.026942600635612, + "mantine": 1.5401364916234384, + "skarmory": 3.150021352765105, + "hitmontop": 2.392250345276213, + "miltank": 4.3323779691955115, + "grovyle": 9.690256524474933, + "sceptile": 1.7797714618577583, + "combusken": 3.098541087313108, + "blaziken": 1.5475030127559886, + "marshtomp": 1.9100889192946573, + "swampert": 1.0507033606932845, + "linoone": 6.106031085726661, + "linoone-galar": 8.238645254273095, + "pelipper": 4.441241120739128, + "ninjask": 10.06735904029047, + "exploud": 1.8804725909108106, + "lairon": 4.998143954237923, + "manectric": 1.656570633455014, + "roselia": 4.320902640777635, + "sharpedo": 5.529834590780798, + "wailmer": 5.021642313040143, + "torkoal": 2.014845073869725, + "flygon": 2.163292181405605, + "altaria": 1.2971317858827016, + "whiscash": 1.398960045622784, + "crawdaunt": 2.1622396440255773, + "claydol": 2.7130982961093872, + "cradily": 2.6095122801327393, + "armaldo": 1.8068377585721103, + "dusclops": 3.3080623770490307, + "absol": 2.4607696447916636, + "glalie": 5.600186314359692, + "sealeo": 3.2973478354080643, + "relicanth": 2.177503401671708, + "metang": 3.669052253647867, + "luxray": 3.531718372496033, + "vespiquen": 3.2612378935911384, + "cherrim": 7.421550480471586, + "gastrodon": 1.7857960312404768, + "drifblim": 3.4526339495488307, + "lopunny": 3.8220251455169727, + "skuntank": 1.5384035855268658, + "bronzong": 3.6027033957044643, + "munchlax": 2.743692312070092, + "drapion": 2.7526169164809997, + "abomasnow": 5.547221895606565, + "froslass": 3.866836725731818, + "rotom": 3.4814209073602678, + "stoutland": 2.671126136441907, + "liepard": 8.474127773321461, + "musharna": 1.2328981808561514, + "unfezant": 5.1730581087575125, + "boldore": 4.041379691987669, + "swoobat": 4.159494754457191, + "audino": 2.5294370083130167, + "gurdurr": 2.119170047278114, + "palpitoad": 2.837571352540686, + "seismitoad": 5.553691916750536, + "scolipede": 4.777045940315743, + "whimsicott": 3.88525565580372, + "lilligant": 4.236299793250148, + "basculin-red-striped": 2.1697322102638634, + "basculin-blue-striped": 2.914066033771846, + "krookodile": 3.205010425951742, + "maractus": 3.044741787961181, + "crustle": 2.200694769183704, + "sigilyph": 1.8844377746055256, + "cofagrigus": 2.3123219631330367, + "garbodor": 1.7535762103374575, + "cinccino": 5.351204815756564, + "vanillish": 2.714666586425662, + "emolga": 2.6826889379545906, + "escavalier": 3.15579541343155, + "amoonguss": 3.159788258645165, + "jellicent": 1.1285193655615458, + "galvantula": 2.0410819179232287, + "klang": 3.751610211940273, + "klinklang": 4.838676096488796, + "beheeyem": 1.5387110610603911, + "lampent": 1.7442048162174753, + "fraxure": 1.4507168085245932, + "beartic": 2.2020367523564603, + "cryogonal": 2.387785339108045, + "accelgor": 4.157624476922945, + "stunfisk": 1.0137987684519607, + "stunfisk-galar": 2.8350795551393397, + "mienshao": 3.1601344151919624, + "druddigon": 1.561208409891822, + "golurk": 1.661611071662072, + "bisharp": 4.286623431636444, + "bouffalant": 1.5533307013868973, + "heatmor": 1.8963228928335494, + "durant": 7.841214611993648, + "diggersby": 3.219825026645731, + "talonflame": 2.276026711610705, + "pangoro": 2.1539454545654295, + "doublade": 3.829534632255714, + "malamar": 2.60040262078648, + "barbaracle": 1.6657738306460013, + "heliolisk": 4.064740914814509, + "tyrantrum": 1.9982581962546155, + "aurorus": 3.595065142961718, + "hawlucha": 3.4626856287498606, + "dedenne": 2.597819665839988, + "klefki": 4.259201528077696, + "trevenant": 3.9532261430013476, + "gourgeist-average": 7.518223578630569, + "charjabug": 5.024288249227869, + "vikavolt": 2.5248003811075943, + "ribombee": 6.208548949427588, + "lycanroc-midday": 3.737854372629333, + "lycanroc-midnight": 2.7186394944188503, + "mudsdale": 1.4732989322422652, + "araquanid": 2.0174701418490897, + "lurantis": 3.1881834708947165, + "shiinotic": 5.112368582594609, + "salazzle": 2.7208156185639965, + "bewear": 2.1052627686940966, + "tsareena": 3.713921665183423, + "comfey": 4.294461904702418, + "oranguru": 1.9448374875179297, + "passimian": 2.1773668562058166, + "palossand": 1.8164951468624473, + "pyukumuku": 40.011272809606524, + "togedemaru": 2.8299012557171457, + "mimikyu-disguised": 3.5825818563007, + "greedent": 2.382798095372591, + "orbeetle": 2.0659273010445407, + "thievul": 2.3624567605350095, + "eldegoss": 4.824523634955916, + "dubwool": 3.746412003829927, + "drednaw": 1.4509971440831144, + "boltund": 4.657441511229428, + "carkol": 2.8790088275540233, + "coalossal": 2.2408207699480007, + "sandaconda": 3.0534877130575433, + "cramorant": 3.934882125730107, + "barraskewda": 3.9592673856645524, + "toxtricity-amped": 2.3963733817309025, + "centiskorch": 1.8208252396690976, + "grapploct": 1.466274473778698, + "polteageist": 2.2495851987791817, + "hatterene": 2.0301227490558302, + "grimmsnarl": 3.827532861937571, + "obstagoon": 4.360762706156696, + "perrserker": 5.015933915842619, + "alcremie": 1.2976070200024727, + "falinks": 3.400270358370677, + "pincurchin": 2.6674684451437667, + "frosmoth": 4.193663926374505, + "indeedee-male": 2.681769749550098, + "morpeko": 3.2461739637840363, + "copperajah": 3.2875825049036616, + "duraludon": 2.25533789671722, + "drakloak": 3.530486105938983 }, "blaziken": { - "ivysaur": 5.343925892489532, - "charmeleon": 4.689234347031537, - "wartortle": 2.747832470308892, - "butterfree": 8.079999970343213, - "raichu": 6.488429346258743, - "raichu-alola": 3.796261554202113, - "sandslash": 2.454500431246874, - "sandslash-alola": 5.112707302603821, - "nidoqueen": 2.8024458870543922, - "nidoking": 1.9457683054456085, - "clefairy": 11.532543099175992, - "clefable": 2.32483288639459, - "jigglypuff": 32.97625051425969, - "wigglytuff": 2.3137245083965365, - "gloom": 8.628002737287353, - "vileplume": 5.008565027733747, - "dugtrio": 4.195958918979418, - "dugtrio-alola": 5.949983130940918, - "persian": 6.513750640516432, - "persian-alola": 7.558710969728078, - "golduck": 2.975567846910801, - "poliwrath": 1.9112511936448815, - "kadabra": 4.493544286025028, - "machoke": 4.58434562787779, - "tentacruel": 2.0684661349172684, - "slowbro": 1.4571419988869656, - "magneton": 5.512233843933828, - "haunter": 5.236680727972169, - "kingler": 2.1979273039327945, - "exeggutor": 2.606899983259674, - "marowak": 3.4212651424843648, - "marowak-alola": 1.9300907687592426, - "hitmonlee": 3.2440295135944233, - "hitmonchan": 2.777878943395036, - "lickitung": 2.8819837907397368, - "weezing": 1.9429255836901316, - "weezing-galar": 3.1255115283219084, - "rhydon": 2.493697491045409, - "chansey": 50.86325104815212, - "tangela": 9.256815649948814, - "kangaskhan": 2.7279388078528184, - "seadra": 3.81448447043553, - "seaking": 2.425466733214826, - "starmie": 1.3321907693752553, - "mr-mime": 6.924027265011274, - "mr-mime-galar": 5.512717864411911, - "scyther": 3.8968551796629227, - "jynx": 12.515167525746595, - "electabuzz": 3.2247067580249373, - "magmar": 2.191706422850398, - "tauros": 2.7420047883465895, - "ditto": 2.430327973792812, - "vaporeon": 3.4037325610376286, - "jolteon": 2.481528268981748, - "flareon": 3.2243575423610418, - "porygon": 4.467409343979945, - "dragonair": 2.185841274293743, - "noctowl": 6.883034605831408, - "lanturn": 2.0210932367165153, - "togetic": 6.2799326568805185, - "xatu": 3.5222915021499417, - "bellossom": 3.569296152285461, - "azumarill": 1.8130876337545756, - "sudowoodo": 3.1387468119429673, - "politoed": 2.580023916053757, - "quagsire": 4.3887595847122585, - "slowking": 2.117979710590772, - "dunsparce": 4.9485949791167805, - "qwilfish": 2.881114033332207, - "sneasel": 5.904287769142093, - "piloswine": 2.3862552095917766, - "octillery": 2.529359074185127, - "mantine": 2.082368574709192, - "skarmory": 3.786909129150395, - "hitmontop": 3.120978149440643, - "miltank": 4.861013498886274, - "grovyle": 13.372853193171311, - "sceptile": 2.3555561563114304, - "combusken": 3.792481914846223, - "marshtomp": 2.4254152066162957, - "swampert": 1.315166841334428, - "linoone": 8.137774826834068, - "linoone-galar": 12.147604713421638, - "pelipper": 5.116070204884342, - "ninjask": 12.327614734951405, - "exploud": 2.6993272052250257, - "lairon": 4.258311413505883, - "manectric": 2.0935093215188116, - "roselia": 6.715400073356557, - "sharpedo": 7.421487002766411, - "wailmer": 6.401789650027922, - "torkoal": 2.056960771391399, - "flygon": 2.665851538882681, - "altaria": 1.5686866875311145, - "whiscash": 1.8290831727171664, - "crawdaunt": 2.5518574256660944, - "claydol": 3.344047039469524, - "cradily": 3.568364725552942, - "armaldo": 2.1324534745078765, - "dusclops": 3.857316597278861, - "absol": 3.32839726201849, - "glalie": 7.189803096856744, - "sealeo": 4.414253434428908, - "relicanth": 2.204564719449822, - "metang": 4.415197453670496, - "luxray": 4.437243575271771, - "vespiquen": 3.94290681626154, - "cherrim": 9.299796243730917, - "gastrodon": 2.3371234994218324, - "drifblim": 4.430455198125873, - "lopunny": 5.426523088827235, - "skuntank": 1.8503408482965777, - "bronzong": 4.553692061411374, - "munchlax": 4.132217103664859, - "drapion": 3.1511004873328594, - "abomasnow": 7.279592367678063, - "froslass": 4.657963728753273, - "rotom": 4.159206202892987, - "stoutland": 3.5802080740379485, - "liepard": 11.319903407698371, - "musharna": 1.5225622229143143, - "unfezant": 6.2534013915647275, - "boldore": 3.691754034514676, - "swoobat": 5.040041289656635, - "audino": 3.554532619333319, - "gurdurr": 2.4565235849531053, - "palpitoad": 3.6230367608677065, - "seismitoad": 6.918414489431278, - "scolipede": 5.4853341829145235, - "whimsicott": 4.592847041345956, - "lilligant": 4.981328187597994, - "basculin-red-striped": 2.6444730019840135, - "basculin-blue-striped": 3.5270378195534935, - "krookodile": 4.008085651103135, - "maractus": 3.613947904947395, - "crustle": 2.4819801070747225, - "sigilyph": 2.2555923814526952, - "cofagrigus": 2.7332448406036978, - "garbodor": 2.022874422451352, - "cinccino": 7.129657632215664, - "vanillish": 3.7827332254041224, - "emolga": 3.207173148793166, - "escavalier": 4.12360150601126, - "amoonguss": 4.056552006417757, - "jellicent": 1.4274492718688512, - "galvantula": 2.4852191097251115, - "klang": 4.814159234139807, - "klinklang": 5.95845934448292, - "beheeyem": 1.9408864350223034, - "lampent": 1.8137272123970463, - "fraxure": 1.655348430608206, - "beartic": 2.8831237037671276, - "cryogonal": 3.8007611422417433, - "accelgor": 5.804895583172662, - "stunfisk": 1.3607375571359872, - "stunfisk-galar": 3.6154003386306752, - "mienshao": 3.9335992802566917, - "druddigon": 1.9500162867770203, - "golurk": 1.9626295443228434, - "bisharp": 5.100442468837214, - "bouffalant": 2.1042379996042753, - "heatmor": 2.34033925204651, - "durant": 9.540170688036579, - "diggersby": 4.325491908031124, - "talonflame": 2.6542882142264697, - "pangoro": 2.7602357713416046, - "doublade": 4.68559476962087, - "malamar": 3.1193307009049587, - "barbaracle": 1.947399513474077, - "heliolisk": 6.7825817339808285, - "tyrantrum": 1.9853957642718316, - "aurorus": 5.50354666247539, - "hawlucha": 3.9255439887096637, - "dedenne": 3.276707919430952, - "klefki": 5.107683980865216, - "trevenant": 4.951528102137907, - "gourgeist-average": 8.90939654344903, - "charjabug": 5.969750013410507, - "vikavolt": 2.9781699981851437, - "ribombee": 7.944290868264503, - "lycanroc-midday": 4.8940479574145535, - "lycanroc-midnight": 3.5626634814191833, - "mudsdale": 1.7618078402903374, - "araquanid": 2.6828739283355336, - "lurantis": 3.7918716126141616, - "shiinotic": 6.869321209250149, - "salazzle": 3.0884832038625305, - "bewear": 2.488237082202253, - "tsareena": 4.4990714543007275, - "comfey": 5.285324564666283, - "oranguru": 2.7525721009036186, - "passimian": 2.5549403103255117, - "palossand": 2.131401320870863, - "pyukumuku": 48.75233785693241, - "togedemaru": 4.062510037217355, - "mimikyu-disguised": 4.691125302277857, - "greedent": 2.9045233388233713, - "orbeetle": 2.6306482172417014, - "thievul": 3.5481283783196322, - "eldegoss": 6.4900480214153795, - "dubwool": 4.742755506461385, - "drednaw": 1.7497615824151125, - "boltund": 5.770894737625759, - "carkol": 3.5082268820545535, - "coalossal": 2.6046795386738952, - "sandaconda": 3.5107745988794914, - "cramorant": 5.0999658017793825, - "barraskewda": 4.720254645546349, - "toxtricity-amped": 2.8604099006965003, - "centiskorch": 2.325659025711092, - "grapploct": 1.7950343686477972, - "polteageist": 3.203724531442882, - "hatterene": 2.4975051266730244, - "grimmsnarl": 4.947901568240857, - "obstagoon": 5.555686249427859, - "perrserker": 5.913792327844687, - "alcremie": 1.7723582227044519, - "falinks": 3.8359521189702024, - "pincurchin": 3.2377268109571027, - "frosmoth": 6.525086084866744, - "indeedee-male": 3.8356334242534427, - "morpeko": 4.341764246327428, - "copperajah": 4.3975288203689615, - "duraludon": 2.23188592230996, - "drakloak": 4.004388691773802, - "blaziken": 1.8879948863286822 + "ivysaur": 5.366054305234051, + "charmeleon": 4.700820805465817, + "wartortle": 2.746708725424048, + "butterfree": 8.112345867728436, + "raichu": 6.506382412710194, + "raichu-alola": 3.7945653547317617, + "sandslash": 2.4571629769616, + "sandslash-alola": 5.148630270699755, + "nidoqueen": 2.8023950169328815, + "nidoking": 1.9477554719308043, + "clefairy": 11.573490084992102, + "clefable": 2.3289080866268543, + "jigglypuff": 33.061443520301864, + "wigglytuff": 2.3168839678175477, + "gloom": 8.65199372505218, + "vileplume": 5.035248903555476, + "dugtrio": 4.198204459427036, + "dugtrio-alola": 5.979419227871283, + "persian": 6.532411323057841, + "persian-alola": 7.593404192840545, + "golduck": 2.97169821880553, + "poliwrath": 1.910649914349221, + "kadabra": 4.490946525668105, + "machoke": 4.597548622913584, + "tentacruel": 2.0646173505410887, + "slowbro": 1.453503202789549, + "magneton": 5.544174868923742, + "haunter": 5.24153353275112, + "kingler": 2.1943856794800745, + "exeggutor": 2.6101666003719832, + "marowak": 3.426398859893346, + "marowak-alola": 1.930349409357668, + "hitmonlee": 3.254628036690348, + "hitmonchan": 2.7876116589172653, + "lickitung": 2.889335893119014, + "weezing": 1.9465342529232648, + "weezing-galar": 3.1299003754627917, + "rhydon": 2.4931315580120037, + "chansey": 51.01172289120271, + "tangela": 9.292799451053645, + "kangaskhan": 2.735688146923836, + "seadra": 3.8091313341777058, + "seaking": 2.422781138881687, + "starmie": 1.330944014902789, + "mr-mime": 6.907415679932372, + "mr-mime-galar": 5.5205841352116956, + "scyther": 3.9049202506745004, + "jynx": 12.576621069762513, + "electabuzz": 3.232027025612928, + "magmar": 2.1972168867253337, + "tauros": 2.7492430324288706, + "ditto": 2.420094457788943, + "vaporeon": 3.401870332930594, + "jolteon": 2.487798428253563, + "flareon": 3.223833209594212, + "porygon": 4.4835993385514215, + "dragonair": 2.1885720168589824, + "noctowl": 6.887696111111575, + "lanturn": 2.0206762521799706, + "togetic": 6.292249249102827, + "xatu": 3.51363375535591, + "bellossom": 3.585945300625756, + "azumarill": 1.811475661464565, + "sudowoodo": 3.1417996071717287, + "politoed": 2.5772815994051292, + "quagsire": 4.384467175705286, + "slowking": 2.1134095565626296, + "dunsparce": 4.9655229350935866, + "qwilfish": 2.8762468986509253, + "sneasel": 5.942371741639099, + "piloswine": 2.395233417566101, + "octillery": 2.53090051782009, + "mantine": 2.0775910465300242, + "skarmory": 3.8032657588047822, + "hitmontop": 3.1273842357863018, + "miltank": 4.874478227234093, + "grovyle": 13.438042211905586, + "sceptile": 2.368268338305316, + "combusken": 3.799852341547206, + "blaziken": 1.8879948863286822, + "marshtomp": 2.4230252765613525, + "swampert": 1.314060515871199, + "linoone": 8.16640211168795, + "linoone-galar": 12.213630081082574, + "pelipper": 5.1057969933121115, + "ninjask": 12.380744951619615, + "exploud": 2.7081823963392413, + "lairon": 4.276907731876219, + "manectric": 2.098832399118147, + "roselia": 6.733278126119396, + "sharpedo": 7.43491496177256, + "wailmer": 6.395280375855831, + "torkoal": 2.061200272352203, + "flygon": 2.669472386925099, + "altaria": 1.5692371553181914, + "whiscash": 1.8263134187397618, + "crawdaunt": 2.5554815697576996, + "claydol": 3.3413621002516374, + "cradily": 3.5814323509248664, + "armaldo": 2.137282451872717, + "dusclops": 3.8622113844820376, + "absol": 3.343304162707909, + "glalie": 7.235334698999708, + "sealeo": 4.4185703644394145, + "relicanth": 2.2037718178624166, + "metang": 4.429431366815977, + "luxray": 4.446264979779098, + "vespiquen": 3.9519344935968492, + "cherrim": 9.34320306681448, + "gastrodon": 2.3379942705885215, + "drifblim": 4.424221929811639, + "lopunny": 5.439823539475993, + "skuntank": 1.8586594597523147, + "bronzong": 4.565986649198957, + "munchlax": 4.144025278541668, + "drapion": 3.1661768933913574, + "abomasnow": 7.327899752413552, + "froslass": 4.6745226923919, + "rotom": 4.16320932445613, + "stoutland": 3.589659639217018, + "liepard": 11.366287290843953, + "musharna": 1.5210989899012963, + "unfezant": 6.2501797464014315, + "boldore": 3.693932833394472, + "swoobat": 5.027643193350655, + "audino": 3.5668600792632446, + "gurdurr": 2.4594505260198085, + "palpitoad": 3.6180186603715634, + "seismitoad": 6.921404918903404, + "scolipede": 5.512700413219791, + "whimsicott": 4.605726891823796, + "lilligant": 5.010411744699201, + "basculin-red-striped": 2.6408357493486054, + "basculin-blue-striped": 3.52412828635582, + "krookodile": 4.0198429322361156, + "maractus": 3.6349965864076372, + "crustle": 2.4893724442015515, + "sigilyph": 2.2521382377354326, + "cofagrigus": 2.7305755587891474, + "garbodor": 2.0254603054463685, + "cinccino": 7.1538010375375345, + "vanillish": 3.804339654891736, + "emolga": 3.209289629532167, + "escavalier": 4.13999932882617, + "amoonguss": 4.070906403809782, + "jellicent": 1.4253208555493133, + "galvantula": 2.4948030516304645, + "klang": 4.843487356423179, + "klinklang": 5.994520037683451, + "beheeyem": 1.9412654458457048, + "lampent": 1.8047738942704097, + "fraxure": 1.6571303188657283, + "beartic": 2.8969393528509033, + "cryogonal": 3.825310976776916, + "accelgor": 5.834877017131252, + "stunfisk": 1.3612963026095097, + "stunfisk-galar": 3.6307711893535757, + "mienshao": 3.9426289829596124, + "druddigon": 1.9515011271217375, + "golurk": 1.9622766920478831, + "bisharp": 5.125532849446356, + "bouffalant": 2.1128225542565167, + "heatmor": 2.3415462112292884, + "durant": 9.597861854525435, + "diggersby": 4.332033447225678, + "talonflame": 2.6538536358302656, + "pangoro": 2.7716587090754077, + "doublade": 4.697256589668909, + "malamar": 3.1231092960459854, + "barbaracle": 1.9470512709614964, + "heliolisk": 6.811650059477072, + "tyrantrum": 1.9873666662016154, + "aurorus": 5.525189495188323, + "hawlucha": 3.9326199559699155, + "dedenne": 3.282323962081225, + "klefki": 5.136735508513938, + "trevenant": 4.969435533670232, + "gourgeist-average": 8.937443194596991, + "charjabug": 5.981348765655166, + "vikavolt": 2.9902360311235046, + "ribombee": 7.97835035090806, + "lycanroc-midday": 4.904594312672631, + "lycanroc-midnight": 3.5719619153805944, + "mudsdale": 1.7651550970693957, + "araquanid": 2.6862287091921795, + "lurantis": 3.8106936059407674, + "shiinotic": 6.887465349784742, + "salazzle": 3.0919702206645736, + "bewear": 2.4952738790897726, + "tsareena": 4.514944824949455, + "comfey": 5.2991133155302546, + "oranguru": 2.749503135045726, + "passimian": 2.558379180237453, + "palossand": 2.129430750981539, + "pyukumuku": 48.81759571013007, + "togedemaru": 4.086275192858361, + "mimikyu-disguised": 4.6934162448445385, + "greedent": 2.910890152461368, + "orbeetle": 2.6303756326689833, + "thievul": 3.565411962078691, + "eldegoss": 6.5210450032402125, + "dubwool": 4.765944053982846, + "drednaw": 1.7513211741830332, + "boltund": 5.789877445995658, + "carkol": 3.513761886763978, + "coalossal": 2.6074982242111266, + "sandaconda": 3.5151713256781916, + "cramorant": 5.0961658639759815, + "barraskewda": 4.720762585158207, + "toxtricity-amped": 2.8631452863026565, + "centiskorch": 2.328454076290427, + "grapploct": 1.7981481276737241, + "polteageist": 3.2043964008854666, + "hatterene": 2.4946081810589127, + "grimmsnarl": 4.967217446439239, + "obstagoon": 5.5781130061639645, + "perrserker": 5.951485573346981, + "alcremie": 1.777287731515854, + "falinks": 3.848417263369953, + "pincurchin": 3.240300077914931, + "frosmoth": 6.547713019038056, + "indeedee-male": 3.8403317495464675, + "morpeko": 4.358158997488879, + "copperajah": 4.427300483326059, + "duraludon": 2.2413709807803404, + "drakloak": 4.000822703623418 }, "marshtomp": { - "ivysaur": 2.62038684307418, - "charmeleon": 5.496623973807731, - "wartortle": 2.518837480152926, - "butterfree": 4.4850974647376045, - "raichu": 7.343412026499938, - "raichu-alola": 4.81911894463981, - "sandslash": 2.741050184953605, - "sandslash-alola": 2.2440739935971385, - "nidoqueen": 3.623277537714306, - "nidoking": 2.4844436051012524, - "clefairy": 7.9502930456097705, - "clefable": 2.093161526018054, - "jigglypuff": 27.03306637259935, - "wigglytuff": 1.9599253098851221, - "gloom": 6.368305430501085, - "vileplume": 2.413954364392564, - "dugtrio": 5.258550172748085, - "dugtrio-alola": 4.764426275982288, - "persian": 4.163340539070815, - "persian-alola": 4.1398839582218345, - "golduck": 2.821896485181699, - "poliwrath": 1.7314952937933352, - "kadabra": 4.180899010548145, - "machoke": 3.8269064391759553, - "tentacruel": 3.2295489143548837, - "slowbro": 1.6132712787676957, - "magneton": 5.816867945948157, - "haunter": 3.7317419043408644, - "kingler": 2.110143209904323, - "exeggutor": 1.665499503158496, - "marowak": 3.7354687211277775, - "marowak-alola": 2.6611940427462093, - "hitmonlee": 2.631416066169199, - "hitmonchan": 2.3523254426651294, - "lickitung": 1.9029199492915674, - "weezing": 1.8429831422237983, - "weezing-galar": 2.968172251310991, - "rhydon": 4.188853847551187, - "chansey": 29.430989342342762, - "tangela": 3.115583708840055, - "kangaskhan": 1.7804827151072202, - "seadra": 3.572072637627987, - "seaking": 2.351246576766661, - "starmie": 1.3468010723203216, - "mr-mime": 7.165495265252382, - "mr-mime-galar": 3.6550197969719718, - "scyther": 2.845105315074248, - "jynx": 4.44108677961607, - "electabuzz": 3.990401537680497, - "magmar": 2.5635526660847026, - "tauros": 1.8752830857655844, - "ditto": 2.8967723115710537, - "vaporeon": 3.1109343325750727, - "jolteon": 2.662833601597888, - "flareon": 3.7614125417409245, - "porygon": 2.861433259134812, - "dragonair": 2.053494391257443, - "noctowl": 6.801157975058544, - "lanturn": 2.638129104587642, - "togetic": 6.189763775481554, - "xatu": 4.055917339591326, - "bellossom": 2.0295126089826105, - "azumarill": 2.044536820335705, - "sudowoodo": 3.2152638021071085, - "politoed": 2.435310004555281, - "quagsire": 4.3654538095225535, - "slowking": 2.3570354637907096, - "dunsparce": 3.1462697543649694, - "qwilfish": 3.91008044854084, - "sneasel": 2.2747705235323945, - "piloswine": 1.8988763307989762, - "octillery": 2.2470834649488234, - "mantine": 2.27907939533383, - "skarmory": 2.013766896491054, - "hitmontop": 2.661446119697527, - "miltank": 3.3256269372566543, - "grovyle": 6.529792172227362, - "sceptile": 1.2348600776322463, - "combusken": 4.439732951550588, - "blaziken": 2.2024045166100104, - "swampert": 1.225491678097387, - "linoone": 5.0006203608075595, - "linoone-galar": 4.499960398180676, - "pelipper": 5.0492445116232245, - "ninjask": 7.991258472289914, - "exploud": 1.5973977901864225, - "lairon": 3.612751950147297, - "manectric": 2.251794754963373, - "roselia": 3.5412816093192268, - "sharpedo": 4.617201566501345, - "wailmer": 6.149379664215869, - "torkoal": 2.617949865036064, - "flygon": 3.5612069288397774, - "altaria": 2.531725718850936, - "whiscash": 1.9896632527265572, - "crawdaunt": 1.7485515494149741, - "claydol": 4.3740546520066195, - "cradily": 2.0558866102171067, - "armaldo": 2.309159198209078, - "dusclops": 3.2828651336148402, - "absol": 1.9471068920063859, - "glalie": 4.084089365338058, - "sealeo": 2.936571856279352, - "relicanth": 2.0590455790267943, - "metang": 3.613325965078112, - "luxray": 5.037074336594271, - "vespiquen": 2.8670462611149166, - "cherrim": 4.568930621474187, - "gastrodon": 2.1837024480227876, - "drifblim": 5.230506541612501, - "lopunny": 3.605026455752485, - "skuntank": 1.7983108075366125, - "bronzong": 3.171633875066777, - "munchlax": 2.6344790092346457, - "drapion": 2.749768939722532, - "abomasnow": 2.2955492174310628, - "froslass": 2.8240539167541288, - "rotom": 4.021920950189979, - "stoutland": 2.3123887766847564, - "liepard": 6.8249940548408645, - "musharna": 1.3121760291254028, - "unfezant": 6.334646673022382, - "boldore": 4.348423456886202, - "swoobat": 5.804266002437993, - "audino": 2.1957230392718694, - "gurdurr": 2.1014529487475455, - "palpitoad": 3.707766571846765, - "seismitoad": 6.561497062146946, - "scolipede": 3.009372217157769, - "whimsicott": 2.6838509447315335, - "lilligant": 2.3825603172462397, - "basculin-red-striped": 2.5354993318463492, - "basculin-blue-striped": 3.2856908061587866, - "krookodile": 3.474272113444104, - "maractus": 1.6386968025126651, - "crustle": 2.565178752354554, - "sigilyph": 2.5215534184542765, - "cofagrigus": 2.39495611909077, - "garbodor": 2.317981101209667, - "cinccino": 4.422669796743934, - "vanillish": 2.112270463731478, - "emolga": 3.913161015157297, - "escavalier": 1.7757660478079447, - "amoonguss": 2.3234931754978363, - "jellicent": 1.4988823499841453, - "galvantula": 1.821437659388171, - "klang": 3.717703208601969, - "klinklang": 3.97873406312109, - "beheeyem": 1.8434932061944604, - "lampent": 3.760178981648786, - "fraxure": 1.5649423588596503, - "beartic": 1.6788493700501186, - "cryogonal": 1.7473573473570465, - "accelgor": 3.151924827675484, - "stunfisk": 1.7718998119398433, - "stunfisk-galar": 2.8715504543941197, - "mienshao": 3.3663084078462613, - "druddigon": 2.0077902215045813, - "golurk": 2.4043354755550985, - "bisharp": 2.7323918969845606, - "bouffalant": 1.2773254335154893, - "heatmor": 2.382648923618061, - "durant": 3.1538712825129553, - "diggersby": 4.135006018233162, - "talonflame": 3.9590683458357763, - "pangoro": 1.706930033137095, - "doublade": 2.5106732538243532, - "malamar": 2.8162380520474604, - "barbaracle": 1.621806612688326, - "heliolisk": 5.192612886484445, - "tyrantrum": 1.6902889467066218, - "aurorus": 3.3159819603311878, - "hawlucha": 3.717244075257462, - "dedenne": 3.7771208408862718, - "klefki": 3.8909420768376517, - "trevenant": 2.455449470610417, - "gourgeist-average": 5.243147403488565, - "charjabug": 4.1553293265953455, - "vikavolt": 1.8436111739867713, - "ribombee": 4.599346429885332, - "lycanroc-midday": 4.501972260330918, - "lycanroc-midnight": 3.058217979945109, - "mudsdale": 1.9245218826168613, - "araquanid": 1.9425558749941934, - "lurantis": 2.040339814731944, - "shiinotic": 4.807304364590044, - "salazzle": 5.678290392518241, - "bewear": 1.6376335555231774, - "tsareena": 2.4398062193136463, - "comfey": 3.5356776052308088, - "oranguru": 2.7064844896210216, - "passimian": 2.220233668317826, - "palossand": 2.4219701150591115, - "pyukumuku": 42.45955615408054, - "togedemaru": 4.5996411704016404, - "mimikyu-disguised": 4.08856407289566, - "greedent": 2.0368936156029225, - "orbeetle": 1.774146796022415, - "thievul": 1.9548637616378748, - "eldegoss": 3.060073699161011, - "dubwool": 2.4450307952868124, - "drednaw": 1.4936311090218368, - "boltund": 6.127901355166552, - "carkol": 4.347020975877164, - "coalossal": 3.397603869188159, - "sandaconda": 3.7981214291248175, - "cramorant": 4.997836637126166, - "barraskewda": 4.1385430527313165, - "toxtricity-amped": 4.752407434296379, - "centiskorch": 2.921093216340396, - "grapploct": 1.6143987170905834, - "polteageist": 2.3248547615316397, - "hatterene": 2.458052978618123, - "grimmsnarl": 3.8247727292747107, - "obstagoon": 2.483815221365923, - "perrserker": 3.804517105299727, - "alcremie": 1.4032304191778453, - "falinks": 3.0039646734861316, - "pincurchin": 3.744820548067545, - "frosmoth": 2.6610739657560787, - "indeedee-male": 3.410160019644204, - "morpeko": 3.6247001379177126, - "copperajah": 3.0533322562442846, - "duraludon": 1.7106261424057663, - "drakloak": 4.876056759972232, - "marshtomp": 2.420969211962106 + "ivysaur": 2.607351656991746, + "charmeleon": 5.516601652685722, + "wartortle": 2.5164034764638625, + "butterfree": 4.474633243347804, + "raichu": 7.370882349250545, + "raichu-alola": 4.830286061754155, + "sandslash": 2.7473071790521324, + "sandslash-alola": 2.2450804221061733, + "nidoqueen": 3.6359162874087576, + "nidoking": 2.495209095527401, + "clefairy": 7.9340926708506005, + "clefable": 2.096372765645239, + "jigglypuff": 27.0520004274271, + "wigglytuff": 1.9606750972322198, + "gloom": 6.373176824197918, + "vileplume": 2.402404665693262, + "dugtrio": 5.27576199849178, + "dugtrio-alola": 4.780797310172518, + "persian": 4.162558141185945, + "persian-alola": 4.1409847030117, + "golduck": 2.818227210615177, + "poliwrath": 1.7254666649652497, + "kadabra": 4.182102813265926, + "machoke": 3.8310203171034756, + "tentacruel": 3.231577449660757, + "slowbro": 1.6115796820904396, + "magneton": 5.841121041017679, + "haunter": 3.720298651000082, + "kingler": 2.1069506092103616, + "exeggutor": 1.658587715809568, + "marowak": 3.7459390284237672, + "marowak-alola": 2.6716220205103864, + "hitmonlee": 2.6353590292075575, + "hitmonchan": 2.3575913992593245, + "lickitung": 1.9049609109667216, + "weezing": 1.8467462189729342, + "weezing-galar": 2.9735737040060073, + "rhydon": 4.20442429806258, + "chansey": 29.43666639272904, + "tangela": 3.092735126647413, + "kangaskhan": 1.780511844710622, + "seadra": 3.5653295376688954, + "seaking": 2.350037963488754, + "starmie": 1.345920441747342, + "mr-mime": 7.169628759262946, + "mr-mime-galar": 3.6530099179549804, + "scyther": 2.8453163374800488, + "jynx": 4.423532645301673, + "electabuzz": 4.00743689160188, + "magmar": 2.5733243966524575, + "tauros": 1.8755272596503407, + "ditto": 2.88345318100995, + "vaporeon": 3.101050221327727, + "jolteon": 2.671019447234248, + "flareon": 3.773327313032036, + "porygon": 2.8643388050406386, + "dragonair": 2.0551782525704767, + "noctowl": 6.804977740956176, + "lanturn": 2.6423758196737963, + "togetic": 6.20131199673093, + "xatu": 4.056834475575867, + "bellossom": 2.0184358080952616, + "azumarill": 2.0444697283950912, + "sudowoodo": 3.223954688283784, + "politoed": 2.432974260048809, + "quagsire": 4.366879145946926, + "slowking": 2.3542833664864014, + "dunsparce": 3.1472369439989456, + "qwilfish": 3.9114419934194666, + "sneasel": 2.273439170216308, + "piloswine": 1.9023912185165557, + "octillery": 2.2460516676810283, + "mantine": 2.271654895033116, + "skarmory": 2.0152570766011415, + "hitmontop": 2.6632652244704014, + "miltank": 3.3247867900943335, + "grovyle": 6.494303220794156, + "sceptile": 1.2267584140218837, + "combusken": 4.453201982210622, + "blaziken": 2.21015236151665, + "marshtomp": 2.420969211962106, + "swampert": 1.2262533937434177, + "linoone": 5.000244377479924, + "linoone-galar": 4.499481388036065, + "pelipper": 5.039347371991651, + "ninjask": 7.991935022005556, + "exploud": 1.5975122056610487, + "lairon": 3.6261732559517257, + "manectric": 2.2586306052389173, + "roselia": 3.5258767081619657, + "sharpedo": 4.610910921437512, + "wailmer": 6.14516261508053, + "torkoal": 2.6267781657470786, + "flygon": 3.566688708839418, + "altaria": 2.534268219182545, + "whiscash": 1.9905860599280212, + "crawdaunt": 1.7457564491157116, + "claydol": 4.382565123576971, + "cradily": 2.0511924674638853, + "armaldo": 2.314702449358517, + "dusclops": 3.2855040680006917, + "absol": 1.9483698389206459, + "glalie": 4.08379774586753, + "sealeo": 2.931906465732652, + "relicanth": 2.060221184337038, + "metang": 3.621911967927238, + "luxray": 5.052120454488969, + "vespiquen": 2.8675486890148902, + "cherrim": 4.541898642987274, + "gastrodon": 2.1853396250140844, + "drifblim": 5.24477178669533, + "lopunny": 3.6056230936257565, + "skuntank": 1.801720258935595, + "bronzong": 3.1729276974155116, + "munchlax": 2.639509565356395, + "drapion": 2.7540896539066733, + "abomasnow": 2.28314191537964, + "froslass": 2.8245619888248656, + "rotom": 4.032523477494646, + "stoutland": 2.311425638680066, + "liepard": 6.8273390126767115, + "musharna": 1.3089347515781111, + "unfezant": 6.3378633323508, + "boldore": 4.358975197556928, + "swoobat": 5.805600507213326, + "audino": 2.1973419933727407, + "gurdurr": 2.101925123475687, + "palpitoad": 3.7096839445561303, + "seismitoad": 6.568293559542714, + "scolipede": 3.0106037230285763, + "whimsicott": 2.6733707043917425, + "lilligant": 2.368976223541507, + "basculin-red-striped": 2.532280570124203, + "basculin-blue-striped": 3.2817205350547383, + "krookodile": 3.482167807704858, + "maractus": 1.6251728765423392, + "crustle": 2.570991503440048, + "sigilyph": 2.5232347188720263, + "cofagrigus": 2.396281650801843, + "garbodor": 2.3234712735842105, + "cinccino": 4.422369632137756, + "vanillish": 2.111347089275161, + "emolga": 3.927730849134409, + "escavalier": 1.7765096148866866, + "amoonguss": 2.316239592170203, + "jellicent": 1.4947535330897126, + "galvantula": 1.8277661154799358, + "klang": 3.7317939659238553, + "klinklang": 3.985359410892176, + "beheeyem": 1.8445420369141232, + "lampent": 3.7775187364397813, + "fraxure": 1.5641535780961733, + "beartic": 1.6783066288270185, + "cryogonal": 1.7427800109678306, + "accelgor": 3.1526889937790306, + "stunfisk": 1.7797251807765866, + "stunfisk-galar": 2.879266259023127, + "mienshao": 3.369310400285068, + "druddigon": 2.009467256804624, + "golurk": 2.411113796475176, + "bisharp": 2.7346874993029924, + "bouffalant": 1.2785452192011422, + "heatmor": 2.3871358953149198, + "durant": 3.1581455771462235, + "diggersby": 4.14622666423584, + "talonflame": 3.9700661554528542, + "pangoro": 1.708028894780283, + "doublade": 2.5146830838146736, + "malamar": 2.8185218303923714, + "barbaracle": 1.621731459429824, + "heliolisk": 5.18983501265235, + "tyrantrum": 1.692248466524402, + "aurorus": 3.3253656788677843, + "hawlucha": 3.7204501720728937, + "dedenne": 3.7888992136100708, + "klefki": 3.8995177172865585, + "trevenant": 2.443475844730258, + "gourgeist-average": 5.244501312185472, + "charjabug": 4.168495597523759, + "vikavolt": 1.845428713532403, + "ribombee": 4.599330189815841, + "lycanroc-midday": 4.518813879624212, + "lycanroc-midnight": 3.067232407083342, + "mudsdale": 1.9291877208122838, + "araquanid": 1.9353159858071618, + "lurantis": 2.0311909450389485, + "shiinotic": 4.804988473820892, + "salazzle": 5.702933734122418, + "bewear": 1.6367423628575906, + "tsareena": 2.4264408648544804, + "comfey": 3.5237462144805938, + "oranguru": 2.70680574445901, + "passimian": 2.2221494191810134, + "palossand": 2.4280815934942828, + "pyukumuku": 42.442588971848565, + "togedemaru": 4.618092586731239, + "mimikyu-disguised": 4.092725701784353, + "greedent": 2.0374323279761084, + "orbeetle": 1.7732728400329942, + "thievul": 1.9566977022451153, + "eldegoss": 3.041156053596123, + "dubwool": 2.438527397010665, + "drednaw": 1.4948853642292994, + "boltund": 6.145986432431362, + "carkol": 4.372540587819826, + "coalossal": 3.4153755665035157, + "sandaconda": 3.805124068171052, + "cramorant": 4.991937829449049, + "barraskewda": 4.132838617068367, + "toxtricity-amped": 4.767746723296912, + "centiskorch": 2.928645599605278, + "grapploct": 1.6151579504484892, + "polteageist": 2.3192686273386665, + "hatterene": 2.4591222421773633, + "grimmsnarl": 3.8277054083962265, + "obstagoon": 2.4847321906279527, + "perrserker": 3.81303462074957, + "alcremie": 1.4021884409258707, + "falinks": 3.005444611835292, + "pincurchin": 3.7569982663031807, + "frosmoth": 2.658310632992238, + "indeedee-male": 3.413345000859475, + "morpeko": 3.636664382915156, + "copperajah": 3.060287854284602, + "duraludon": 1.7140685512857825, + "drakloak": 4.877821448691691 }, "swampert": { - "ivysaur": 2.850732103725977, - "charmeleon": 5.607656986645592, - "wartortle": 2.882847468112251, - "butterfree": 4.424207660751975, - "raichu": 7.329475019405303, - "raichu-alola": 4.600954440757002, - "sandslash": 3.3696539240732513, - "sandslash-alola": 3.204521874215038, - "nidoqueen": 3.944904111053325, - "nidoking": 2.6777537985141238, - "clefairy": 8.249862312216651, - "clefable": 2.1933285289463353, - "jigglypuff": 27.62336603154349, - "wigglytuff": 2.1169585829660407, - "gloom": 6.697591866326981, - "vileplume": 2.774004764842353, - "dugtrio": 4.86717092643336, - "dugtrio-alola": 4.820672732889869, - "persian": 4.442636675062531, - "persian-alola": 4.4617985662993345, - "golduck": 3.227421663018876, - "poliwrath": 2.018687588390946, - "kadabra": 3.765472151828854, - "machoke": 4.265689941609332, - "tentacruel": 2.9843546522912, - "slowbro": 1.980883714455747, - "magneton": 8.252700243385142, - "haunter": 3.9647107108681254, - "kingler": 2.9123850588573537, - "exeggutor": 1.9736972512155315, - "marowak": 4.496555397123233, - "marowak-alola": 3.289379813134225, - "hitmonlee": 2.3291438090327374, - "hitmonchan": 2.274496752976183, - "lickitung": 2.066347265900258, - "weezing": 2.649190867203803, - "weezing-galar": 4.301661765620994, - "rhydon": 5.2787965270585016, - "chansey": 20.214187266387057, - "tangela": 5.084269487414768, - "kangaskhan": 1.9377342491775136, - "seadra": 4.869216806108033, - "seaking": 2.5445085556591014, - "starmie": 1.5401991762861058, - "mr-mime": 6.579789846117857, - "mr-mime-galar": 3.7194904476804656, - "scyther": 3.100441878182628, - "jynx": 4.1058769419243015, - "electabuzz": 3.877001839532798, - "magmar": 2.324312206927046, - "tauros": 2.212087528265111, - "ditto": 1.9436403435944705, - "vaporeon": 3.1605123315986194, - "jolteon": 2.6106370065564795, - "flareon": 3.185616977428747, - "porygon": 2.993966776261026, - "dragonair": 2.1982424880197478, - "noctowl": 6.046582834981615, - "lanturn": 2.780277204994707, - "togetic": 6.173041301089896, - "xatu": 4.425008934715857, - "bellossom": 2.321743034780921, - "azumarill": 2.3875469602965884, - "sudowoodo": 3.9627086951417683, - "politoed": 2.5934147938419256, - "quagsire": 5.072444183517995, - "slowking": 2.487775812010406, - "dunsparce": 3.469301085011698, - "qwilfish": 5.475004412842766, - "sneasel": 2.273523378330061, - "piloswine": 2.254086895745259, - "octillery": 2.555035380613035, - "mantine": 2.1200485093840338, - "skarmory": 2.4016800797000997, - "hitmontop": 2.7617081432226978, - "miltank": 3.9841739443615953, - "grovyle": 6.8864981758535295, - "sceptile": 1.3118986003483837, - "combusken": 4.775445259300621, - "blaziken": 2.3533681233925305, - "marshtomp": 2.619676958039631, - "linoone": 5.44440108145395, - "linoone-galar": 4.904923842404768, - "pelipper": 5.890253842800587, - "ninjask": 8.476052213830084, - "exploud": 1.6761706574677724, - "lairon": 6.8190121407279305, - "manectric": 2.6542296011980433, - "roselia": 3.4683688946074906, - "sharpedo": 5.295347625257149, - "wailmer": 7.0160098567889095, - "torkoal": 3.28900241713302, - "flygon": 3.9018563818083485, - "altaria": 2.579323620228723, - "whiscash": 2.2131716086173867, - "crawdaunt": 2.2512726413883843, - "claydol": 4.424795578066844, - "cradily": 2.267273414768174, - "armaldo": 2.671223255539915, - "dusclops": 3.5675043415762344, - "absol": 2.0968895603682713, - "glalie": 4.391724917746595, - "sealeo": 3.3440592002468668, - "relicanth": 2.979028521959337, - "metang": 4.636842210625691, - "luxray": 5.841893779031471, - "vespiquen": 3.1168679945403848, - "cherrim": 5.201377243766682, - "gastrodon": 2.2431714166260033, - "drifblim": 5.199921460132019, - "lopunny": 3.7732232731655726, - "skuntank": 2.2032913020173885, - "bronzong": 3.367783475638114, - "munchlax": 2.2997666225738262, - "drapion": 3.849789062039198, - "abomasnow": 2.5657266481279777, - "froslass": 3.057590618035361, - "rotom": 4.183335958460611, - "stoutland": 2.530912005069797, - "liepard": 7.383749252072324, - "musharna": 1.4362662081401376, - "unfezant": 7.7366425136584045, - "boldore": 5.420901145059219, - "swoobat": 6.332726804214811, - "audino": 2.4267611388749515, - "gurdurr": 2.5044936964301003, - "palpitoad": 4.010826445159337, - "seismitoad": 7.034105383605111, - "scolipede": 3.4855260489184277, - "whimsicott": 3.202795038282813, - "lilligant": 2.8067582771289814, - "basculin-red-striped": 3.0363662777757154, - "basculin-blue-striped": 3.9298967720257267, - "krookodile": 3.896708033082289, - "maractus": 1.9551453575137518, - "crustle": 3.126713838854847, - "sigilyph": 2.7339982192953167, - "cofagrigus": 2.8829472184715836, - "garbodor": 2.6793861403093966, - "cinccino": 4.8156773201255945, - "vanillish": 2.2432929120014427, - "emolga": 4.074426885791233, - "escavalier": 1.9256048791078835, - "amoonguss": 2.5426757218304377, - "jellicent": 1.572326205757303, - "galvantula": 1.8811306041116447, - "klang": 4.495609036991693, - "klinklang": 5.352365458184954, - "beheeyem": 1.8710539251190994, - "lampent": 4.044920139787385, - "fraxure": 1.9227228998506625, - "beartic": 1.8296450046017836, - "cryogonal": 1.535720694464759, - "accelgor": 3.0745994188355397, - "stunfisk": 1.7776348767236505, - "stunfisk-galar": 3.3445232971597942, - "mienshao": 3.6193464547239755, - "druddigon": 2.1680836045577516, - "golurk": 2.5649444125685887, - "bisharp": 3.7264577788376765, - "bouffalant": 1.3817097997065448, - "heatmor": 2.616726153963922, - "durant": 3.7529270971439095, - "diggersby": 4.378199480341004, - "talonflame": 4.206830028506069, - "pangoro": 1.8848856335585507, - "doublade": 4.512255611111486, - "malamar": 3.1366147329069074, - "barbaracle": 2.1053417055579873, - "heliolisk": 4.804657333423948, - "tyrantrum": 2.5336640695812047, - "aurorus": 3.229564823301679, - "hawlucha": 4.253557075220865, - "dedenne": 4.291219882642585, - "klefki": 4.750053992937394, - "trevenant": 2.804386421651701, - "gourgeist-average": 6.681166955171501, - "charjabug": 4.601875097298811, - "vikavolt": 2.0466266645162707, - "ribombee": 4.727906321372149, - "lycanroc-midday": 4.769346803554436, - "lycanroc-midnight": 3.2779369684872277, - "mudsdale": 2.1865311419995526, - "araquanid": 2.014746934374093, - "lurantis": 2.3592088435819702, - "shiinotic": 4.886057642892759, - "salazzle": 6.761412874301813, - "bewear": 1.9271259611391467, - "tsareena": 2.858144256559407, - "comfey": 3.8338448542324506, - "oranguru": 2.7028771779989653, - "passimian": 2.6151687355975604, - "palossand": 3.0007712884342057, - "pyukumuku": 46.86478325897593, - "togedemaru": 5.0644297268995455, - "mimikyu-disguised": 4.079100531824208, - "greedent": 2.349925058595927, - "orbeetle": 1.8687513155598232, - "thievul": 1.8655151144218767, - "eldegoss": 3.3135630853114977, - "dubwool": 2.83124638029841, - "drednaw": 1.913043787821317, - "boltund": 7.116425150173084, - "carkol": 5.27891700647025, - "coalossal": 4.226748353428656, - "sandaconda": 4.688891915365365, - "cramorant": 4.853692813512922, - "barraskewda": 4.979329025513859, - "toxtricity-amped": 5.964212491425819, - "centiskorch": 2.7079339086052334, - "grapploct": 1.7994966236882193, - "polteageist": 2.246420327090643, - "hatterene": 2.610606422892957, - "grimmsnarl": 3.9773189224404546, - "obstagoon": 2.814979371268012, - "perrserker": 5.484087358738865, - "alcremie": 1.3744512771622475, - "falinks": 3.561759204848041, - "pincurchin": 4.490340726575699, - "frosmoth": 2.644855074161817, - "indeedee-male": 3.1944382006331047, - "morpeko": 4.171580982707296, - "copperajah": 3.591589010323851, - "duraludon": 2.966374412964358, - "drakloak": 5.34859661832053, - "swampert": 1.3285973363252035 + "ivysaur": 2.8426600519071537, + "charmeleon": 5.630717678948771, + "wartortle": 2.8849065189114675, + "butterfree": 4.415810173569735, + "raichu": 7.359117985865275, + "raichu-alola": 4.613033632284253, + "sandslash": 3.383352056665599, + "sandslash-alola": 3.21389695475787, + "nidoqueen": 3.9624091834745694, + "nidoking": 2.691352835812908, + "clefairy": 8.242791258971314, + "clefable": 2.197676190745733, + "jigglypuff": 27.661699893238307, + "wigglytuff": 2.1198921700388205, + "gloom": 6.711357105636242, + "vileplume": 2.767609885138871, + "dugtrio": 4.881898982850961, + "dugtrio-alola": 4.839997945885878, + "persian": 4.446904419431506, + "persian-alola": 4.467156795060978, + "golduck": 3.228798904695111, + "poliwrath": 2.017586631854154, + "kadabra": 3.7653244257891636, + "machoke": 4.275812815124694, + "tentacruel": 2.9890997025176858, + "slowbro": 1.9829797547800188, + "magneton": 8.30142886428585, + "haunter": 3.9558515499821962, + "kingler": 2.9167087982683393, + "exeggutor": 1.9699136683557148, + "marowak": 4.513393980615538, + "marowak-alola": 3.3059548919294484, + "hitmonlee": 2.331639670371966, + "hitmonchan": 2.2798341198113112, + "lickitung": 2.070546990593065, + "weezing": 2.660689558663962, + "weezing-galar": 4.319656811728871, + "rhydon": 5.307320280990783, + "chansey": 20.16422767511039, + "tangela": 5.068094187252256, + "kangaskhan": 1.9402227997258814, + "seadra": 4.874413002970259, + "seaking": 2.5463954352042775, + "starmie": 1.5415198836438835, + "mr-mime": 6.583226872523703, + "mr-mime-galar": 3.7197483396162596, + "scyther": 3.102608613879875, + "jynx": 4.097442774256151, + "electabuzz": 3.893698834327137, + "magmar": 2.3329960883849177, + "tauros": 2.216382621062335, + "ditto": 1.9374988991751374, + "vaporeon": 3.157300233051569, + "jolteon": 2.619462509672943, + "flareon": 3.1948568955971317, + "porygon": 2.999293715644617, + "dragonair": 2.202928593532925, + "noctowl": 6.046767683711716, + "lanturn": 2.7884927858113966, + "togetic": 6.183559776669194, + "xatu": 4.42858967985992, + "bellossom": 2.3141967019367784, + "azumarill": 2.391553206146141, + "sudowoodo": 3.9808326943207075, + "politoed": 2.5941037245975385, + "quagsire": 5.082555363022673, + "slowking": 2.4877271870969997, + "dunsparce": 3.474934560284404, + "qwilfish": 5.49147971045919, + "sneasel": 2.2738006657199277, + "piloswine": 2.2600360523751855, + "octillery": 2.557837890667943, + "mantine": 2.1156292182000316, + "skarmory": 2.4062437523336486, + "hitmontop": 2.765992750135936, + "miltank": 3.991399490782999, + "grovyle": 6.860536324392509, + "sceptile": 1.3062356323514275, + "combusken": 4.793887432286098, + "blaziken": 2.363297000034741, + "marshtomp": 2.623982366886838, + "swampert": 1.3285973363252035, + "linoone": 5.450926987923893, + "linoone-galar": 4.909864206830935, + "pelipper": 5.887148025727967, + "ninjask": 8.480729066669678, + "exploud": 1.677926443814642, + "lairon": 6.859939425223342, + "manectric": 2.665379225322816, + "roselia": 3.4583295018236235, + "sharpedo": 5.29726611214568, + "wailmer": 7.022413554518449, + "torkoal": 3.3062550196396296, + "flygon": 3.9106164363717326, + "altaria": 2.5836875220880255, + "whiscash": 2.216724507406584, + "crawdaunt": 2.2530430320943395, + "claydol": 4.432415816105473, + "cradily": 2.265823529630713, + "armaldo": 2.679505859147093, + "dusclops": 3.5745745198910095, + "absol": 2.100544234568406, + "glalie": 4.396223195219727, + "sealeo": 3.3443861468645704, + "relicanth": 2.9884425642947194, + "metang": 4.655248980427061, + "luxray": 5.865878779246541, + "vespiquen": 3.119262759508647, + "cherrim": 5.181590511377539, + "gastrodon": 2.2465633708371415, + "drifblim": 5.2123379574075175, + "lopunny": 3.777458277722559, + "skuntank": 2.2110909896729165, + "bronzong": 3.369709401419551, + "munchlax": 2.3028879176624875, + "drapion": 3.8641964854035518, + "abomasnow": 2.556655030438204, + "froslass": 3.0616969041728064, + "rotom": 4.193318390396735, + "stoutland": 2.533294301104989, + "liepard": 7.394753592866245, + "musharna": 1.4349619522718426, + "unfezant": 7.748722304809756, + "boldore": 5.448055722206138, + "swoobat": 6.337834883265467, + "audino": 2.4309539463327425, + "gurdurr": 2.510496429451935, + "palpitoad": 4.017550121967753, + "seismitoad": 7.048396500672668, + "scolipede": 3.492793695836923, + "whimsicott": 3.197536380693906, + "lilligant": 2.7972850834875373, + "basculin-red-striped": 3.03861457643977, + "basculin-blue-striped": 3.9329586347276155, + "krookodile": 3.908452515126232, + "maractus": 1.9453732167183788, + "crustle": 3.137479092401364, + "sigilyph": 2.737132828543439, + "cofagrigus": 2.8899262062336195, + "garbodor": 2.6893657986950545, + "cinccino": 4.821497074219975, + "vanillish": 2.2443773915489205, + "emolga": 4.088344193425291, + "escavalier": 1.9286090100121478, + "amoonguss": 2.539981436004312, + "jellicent": 1.5714820668902814, + "galvantula": 1.8884010665515856, + "klang": 4.517359844498385, + "klinklang": 5.371617270131512, + "beheeyem": 1.873346586707527, + "lampent": 4.06561723217675, + "fraxure": 1.9264540701586244, + "beartic": 1.831140038234829, + "cryogonal": 1.5313579645100068, + "accelgor": 3.075718319158006, + "stunfisk": 1.785934222716254, + "stunfisk-galar": 3.357250638613017, + "mienshao": 3.6264977264786222, + "druddigon": 2.173083241563676, + "golurk": 2.573445422380717, + "bisharp": 3.737664600544194, + "bouffalant": 1.3845866027817095, + "heatmor": 2.6246751381486195, + "durant": 3.7661786518707348, + "diggersby": 4.391936394459978, + "talonflame": 4.217078885421064, + "pangoro": 1.888449885990079, + "doublade": 4.533243722726316, + "malamar": 3.1431015499599666, + "barbaracle": 2.1099063377858314, + "heliolisk": 4.811336881717498, + "tyrantrum": 2.544109948973942, + "aurorus": 3.239221959540724, + "hawlucha": 4.260369355088813, + "dedenne": 4.308078090382825, + "klefki": 4.7676074615952935, + "trevenant": 2.7966497632849023, + "gourgeist-average": 6.696134512845464, + "charjabug": 4.62048221959599, + "vikavolt": 2.0494857140180947, + "ribombee": 4.730654651912669, + "lycanroc-midday": 4.789901986673158, + "lycanroc-midnight": 3.2902029562305874, + "mudsdale": 2.1935706672581716, + "araquanid": 2.0114554293903635, + "lurantis": 2.3536813604297073, + "shiinotic": 4.888168655745857, + "salazzle": 6.7976355046537815, + "bewear": 1.9297688009999636, + "tsareena": 2.8489618213095182, + "comfey": 3.827028679820512, + "oranguru": 2.7047742182348338, + "passimian": 2.6221359773846755, + "palossand": 3.011855121279188, + "pyukumuku": 46.89214714762534, + "togedemaru": 5.091068437195619, + "mimikyu-disguised": 4.085823615905023, + "greedent": 2.354384562298847, + "orbeetle": 1.8692085383997497, + "thievul": 1.8669888090268276, + "eldegoss": 3.299202228974827, + "dubwool": 2.829355482328043, + "drednaw": 1.9183604820994107, + "boltund": 7.145472486341075, + "carkol": 5.312915212841601, + "coalossal": 4.252175632833828, + "sandaconda": 4.705524725968006, + "cramorant": 4.848491733273926, + "barraskewda": 4.982682873206727, + "toxtricity-amped": 5.99306808455021, + "centiskorch": 2.714470615248188, + "grapploct": 1.802874144513725, + "polteageist": 2.2427629200764634, + "hatterene": 2.614428347186756, + "grimmsnarl": 3.9836825171084467, + "obstagoon": 2.8200766329436404, + "perrserker": 5.507774857782076, + "alcremie": 1.3741266709761017, + "falinks": 3.570904580278952, + "pincurchin": 4.510503830136475, + "frosmoth": 2.6429908669183644, + "indeedee-male": 3.1973921003760686, + "morpeko": 4.18945133200256, + "copperajah": 3.604495005160306, + "duraludon": 2.981257649475557, + "drakloak": 5.359715465743388 }, "linoone": { - "ivysaur": 2.9111820819705923, - "charmeleon": 3.5444214002640972, - "wartortle": 2.3656865557667777, - "butterfree": 4.265596736439717, - "raichu": 4.452358862483636, - "raichu-alola": 3.6304065557279044, - "sandslash": 1.7952566612447978, - "sandslash-alola": 1.5442474165783544, - "nidoqueen": 2.616292126913736, - "nidoking": 1.6434483540519897, - "clefairy": 8.555254751569628, - "clefable": 1.8585916882441378, - "jigglypuff": 24.71377086030737, - "wigglytuff": 1.7862859809294842, - "gloom": 5.086559859341619, - "vileplume": 2.6569307477940853, - "dugtrio": 3.4172588312970094, - "dugtrio-alola": 2.8142859296989915, - "persian": 3.822194876630662, - "persian-alola": 3.9522311936272745, - "golduck": 2.7354720529553216, - "poliwrath": 1.571388588405381, - "kadabra": 4.202100745684527, - "machoke": 3.2001229217229943, - "tentacruel": 2.261361034753465, - "slowbro": 1.6553403739459935, - "magneton": 2.4637328243796386, - "haunter": 5.00598200881408, - "kingler": 1.8970281356674659, - "exeggutor": 2.1994448794585146, - "marowak": 2.652826554336049, - "marowak-alola": 2.0375293287347174, - "hitmonlee": 2.0504462555738128, - "hitmonchan": 1.9181202075786428, - "lickitung": 1.7024856357709877, - "weezing": 1.3157379282546766, - "weezing-galar": 2.1818167904109758, - "rhydon": 1.8272256536645122, - "chansey": 26.344772900050618, - "tangela": 4.048980884428641, - "kangaskhan": 1.6386514622035326, - "seadra": 3.429382277142629, - "seaking": 2.2315388467835415, - "starmie": 1.4101334784307724, - "mr-mime": 7.172101813863444, - "mr-mime-galar": 3.667784732867573, - "scyther": 2.4149791991458756, - "jynx": 4.733764984405792, - "electabuzz": 2.3776325256867987, - "magmar": 1.572954621489456, - "tauros": 1.6513693299246175, - "ditto": 6.219923738321386, - "vaporeon": 2.9959651170822665, - "jolteon": 1.893231594624147, - "flareon": 2.3668605017755695, - "porygon": 2.51843296718582, - "dragonair": 1.6632266957908066, - "noctowl": 5.544263549296815, - "lanturn": 1.7756225144120044, - "togetic": 4.888155953441229, - "xatu": 3.7093532742436146, - "bellossom": 2.1709670464020965, - "azumarill": 1.9722375845126365, - "sudowoodo": 1.9423765466002563, - "politoed": 2.357526312457975, - "quagsire": 3.7742745738650543, - "slowking": 2.5112309896574114, - "dunsparce": 3.0570995962666268, - "qwilfish": 2.876889598399151, - "sneasel": 2.185712694480023, - "piloswine": 1.3210000554732102, - "octillery": 2.095631783618333, - "mantine": 2.3730494154724617, - "skarmory": 1.5035036634779786, - "hitmontop": 2.2774549994238558, - "miltank": 3.0394725349377625, - "grovyle": 7.256702101110001, - "sceptile": 1.36788875116578, - "combusken": 2.695853918946682, - "blaziken": 1.3616202346020723, - "marshtomp": 2.223553229640397, - "swampert": 1.1272564090658301, - "linoone-galar": 4.321302806535639, - "pelipper": 5.184369828271791, - "ninjask": 6.748730385842708, - "exploud": 1.4206712579384615, - "lairon": 1.8128777564576979, - "manectric": 1.5769979528568734, - "roselia": 3.761302417824706, - "sharpedo": 4.64932894995707, - "wailmer": 5.86412078341707, - "torkoal": 1.5289251735456748, - "flygon": 2.11615769093938, - "altaria": 1.447809913067027, - "whiscash": 1.812917886399894, - "crawdaunt": 1.7594732821115127, - "claydol": 3.2867558504837113, - "cradily": 2.1323373340906353, - "armaldo": 1.501662506811754, - "dusclops": 3.844385545805589, - "absol": 1.8378889887527663, - "glalie": 3.7278767280892637, - "sealeo": 2.8538700876004346, - "relicanth": 1.5071073135485948, - "metang": 2.729778812382844, - "luxray": 3.380851068661579, - "vespiquen": 2.3478911495582997, - "cherrim": 5.455628614595428, - "gastrodon": 1.9609862793193074, - "drifblim": 4.2609261126581846, - "lopunny": 3.143384854540951, - "skuntank": 1.2841893276836742, - "bronzong": 3.0757363127469173, - "munchlax": 2.177050857352157, - "drapion": 2.039386545400169, - "abomasnow": 2.983718548739433, - "froslass": 3.0398821218759293, - "rotom": 4.043688102142183, - "stoutland": 2.128009677215963, - "liepard": 6.522406431990051, - "musharna": 1.5204048741214344, - "unfezant": 5.413418732633666, - "boldore": 2.427450641094045, - "swoobat": 5.299995206892965, - "audino": 1.975396974492956, - "gurdurr": 1.655616470603269, - "palpitoad": 3.405804357650255, - "seismitoad": 5.64003584740875, - "scolipede": 2.744988686280788, - "whimsicott": 2.7687424419757827, - "lilligant": 2.822463037946439, - "basculin-red-striped": 2.461124920027517, - "basculin-blue-striped": 3.19059357416635, - "krookodile": 2.598973104637471, - "maractus": 2.0482233980881874, - "crustle": 1.5436825045539693, - "sigilyph": 2.24836344232671, - "cofagrigus": 2.725687472901916, - "garbodor": 1.6070442285502218, - "cinccino": 4.068784393633787, - "vanillish": 1.9477459550278566, - "emolga": 2.6933957463663916, - "escavalier": 1.4681476654943892, - "amoonguss": 2.285502930256431, - "jellicent": 1.6125144725606186, - "galvantula": 1.413678142973004, - "klang": 2.1953474462329146, - "klinklang": 2.588561259659241, - "beheeyem": 1.8179783083989696, - "lampent": 2.4642046166164064, - "fraxure": 1.3206751605100895, - "beartic": 1.5043202589696898, - "cryogonal": 1.716678966995813, - "accelgor": 2.8326012936072105, - "stunfisk": 1.1774311141435367, - "stunfisk-galar": 1.8394138800180575, - "mienshao": 2.8252051451714433, - "druddigon": 1.6298132099354876, - "golurk": 1.8124474075623382, - "bisharp": 1.8551673792939551, - "bouffalant": 1.0894964316547875, - "heatmor": 1.7032543042308284, - "durant": 2.235184322839095, - "diggersby": 2.895163750490063, - "talonflame": 2.6116185438485564, - "pangoro": 1.4336806624998757, - "doublade": 1.8264882583381734, - "malamar": 3.239181257252774, - "barbaracle": 1.1975252589787428, - "heliolisk": 3.4261847991268723, - "tyrantrum": 1.1640350945272138, - "aurorus": 2.1047385208584064, - "hawlucha": 2.8588309461264085, - "dedenne": 2.610573420616454, - "klefki": 2.409639096767826, - "trevenant": 2.7724081437244994, - "gourgeist-average": 5.248560541931975, - "charjabug": 3.495419034131107, - "vikavolt": 1.5968602697226255, - "ribombee": 4.223617024763451, - "lycanroc-midday": 2.787439478321909, - "lycanroc-midnight": 1.8764510721066527, - "mudsdale": 1.2644072135405988, - "araquanid": 2.1787543200984207, - "lurantis": 2.215368180982489, - "shiinotic": 4.0328655228406705, - "salazzle": 2.889596504764807, - "bewear": 1.5193066159674506, - "tsareena": 2.8732733285972247, - "comfey": 4.089025992964192, - "oranguru": 2.582235110936764, - "passimian": 1.8390672255559077, - "palossand": 2.0180307940793485, - "pyukumuku": 38.475155387669986, - "togedemaru": 1.8399537307747647, - "mimikyu-disguised": 4.689034216812294, - "greedent": 1.836977574940867, - "orbeetle": 1.783964569730888, - "thievul": 1.799031216276327, - "eldegoss": 3.7406769466926337, - "dubwool": 2.45680417981721, - "drednaw": 1.037531271037397, - "boltund": 4.189668553465042, - "carkol": 1.9468226417475663, - "coalossal": 1.6012866543333257, - "sandaconda": 2.604150983306046, - "cramorant": 5.194819253215556, - "barraskewda": 4.016927695241442, - "toxtricity-amped": 2.328532509306179, - "centiskorch": 1.898793278729462, - "grapploct": 1.3564252403046435, - "polteageist": 2.8484035257710563, - "hatterene": 2.4592275674648203, - "grimmsnarl": 3.3060407973347457, - "obstagoon": 2.2882563126298234, - "perrserker": 2.4636465397067386, - "alcremie": 1.359327656324679, - "falinks": 2.440073409347387, - "pincurchin": 2.6280135123610804, - "frosmoth": 2.4500714450979943, - "indeedee-male": 3.3515549828876323, - "morpeko": 2.538906912114186, - "copperajah": 1.8096078105069628, - "duraludon": 1.1317279720135736, - "drakloak": 4.7240752111228765, - "linoone": 4.8951155788383005 + "ivysaur": 2.9081525018754952, + "charmeleon": 3.5398587393455627, + "wartortle": 2.3617748979914603, + "butterfree": 4.258724845488702, + "raichu": 4.443865082750846, + "raichu-alola": 3.63113060248597, + "sandslash": 1.7917488792225857, + "sandslash-alola": 1.5386233514464105, + "nidoqueen": 2.615085271712654, + "nidoking": 1.6412076307929304, + "clefairy": 8.548376265867066, + "clefable": 1.8568342479247786, + "jigglypuff": 24.667468865857316, + "wigglytuff": 1.7822253352447937, + "gloom": 5.079651401473253, + "vileplume": 2.653773487597765, + "dugtrio": 3.4151608867334637, + "dugtrio-alola": 2.809066301841465, + "persian": 3.8131651326949267, + "persian-alola": 3.9490555893334403, + "golduck": 2.73174483690856, + "poliwrath": 1.567039788491304, + "kadabra": 4.20412717999239, + "machoke": 3.1913377146718456, + "tentacruel": 2.2592985167155146, + "slowbro": 1.6543656534125422, + "magneton": 2.4575512747409762, + "haunter": 5.008886768908963, + "kingler": 1.8909952255323006, + "exeggutor": 2.1999686675263526, + "marowak": 2.6487767019834534, + "marowak-alola": 2.0366763480182355, + "hitmonlee": 2.044307685938048, + "hitmonchan": 1.9147077550308633, + "lickitung": 1.6988810872471953, + "weezing": 1.3128939260599757, + "weezing-galar": 2.177359254162581, + "rhydon": 1.821832559267961, + "chansey": 26.304530587553607, + "tangela": 4.040548257516934, + "kangaskhan": 1.6350809655300402, + "seadra": 3.4213921029472303, + "seaking": 2.2295166022956363, + "starmie": 1.4101790065373345, + "mr-mime": 7.171931191072765, + "mr-mime-galar": 3.6669481642945874, + "scyther": 2.410575640193368, + "jynx": 4.735923326421048, + "electabuzz": 2.375198049214798, + "magmar": 1.5711610366358886, + "tauros": 1.6462229496174143, + "ditto": 6.187397294438998, + "vaporeon": 2.9938545048783514, + "jolteon": 1.8940867967684538, + "flareon": 2.3679757566757607, + "porygon": 2.513379320751786, + "dragonair": 1.6611203391892495, + "noctowl": 5.533370914710713, + "lanturn": 1.7748305949200764, + "togetic": 4.882368127130571, + "xatu": 3.7067227689131528, + "bellossom": 2.1698045905380177, + "azumarill": 1.9712665928371804, + "sudowoodo": 1.9362836709874747, + "politoed": 2.355399955332804, + "quagsire": 3.7643477460248795, + "slowking": 2.511821135182063, + "dunsparce": 3.054445337005375, + "qwilfish": 2.871028575066743, + "sneasel": 2.1832390535271102, + "piloswine": 1.3175559039445912, + "octillery": 2.0928839676454265, + "mantine": 2.3716891791309873, + "skarmory": 1.4997089825721446, + "hitmontop": 2.271877454507049, + "miltank": 3.031635371079714, + "grovyle": 7.247696089938257, + "sceptile": 1.3673266627215261, + "combusken": 2.68668509188041, + "blaziken": 1.3579947698607469, + "marshtomp": 2.221113790821425, + "swampert": 1.1262011230964153, + "linoone": 4.8951155788383005, + "linoone-galar": 4.3151784159485995, + "pelipper": 5.17302038851099, + "ninjask": 6.736625331373659, + "exploud": 1.416476294372825, + "lairon": 1.8071080693910515, + "manectric": 1.5754242530200062, + "roselia": 3.7581539474617007, + "sharpedo": 4.64445611880123, + "wailmer": 5.857652349304796, + "torkoal": 1.5258750471213194, + "flygon": 2.113270227240053, + "altaria": 1.4457449751944247, + "whiscash": 1.8106849534015828, + "crawdaunt": 1.7568676621099109, + "claydol": 3.286078746555656, + "cradily": 2.1300626700502074, + "armaldo": 1.4987794727035642, + "dusclops": 3.850656063187979, + "absol": 1.8362739569761994, + "glalie": 3.722395756346974, + "sealeo": 2.8499078835869556, + "relicanth": 1.5031055022590865, + "metang": 2.726695511831162, + "luxray": 3.3758564648387317, + "vespiquen": 2.3422264322949493, + "cherrim": 5.451683440491875, + "gastrodon": 1.9588199383153775, + "drifblim": 4.253326661240312, + "lopunny": 3.1341058600977014, + "skuntank": 1.2826657858289747, + "bronzong": 3.073911506942986, + "munchlax": 2.1737442890889724, + "drapion": 2.036184611273633, + "abomasnow": 2.9801576765554882, + "froslass": 3.0394937497860823, + "rotom": 4.047300483032669, + "stoutland": 2.122453154272473, + "liepard": 6.5172625374865785, + "musharna": 1.5203048129563257, + "unfezant": 5.401661347960617, + "boldore": 2.419192368041339, + "swoobat": 5.296121583966167, + "audino": 1.9713973967396279, + "gurdurr": 1.6487557936391068, + "palpitoad": 3.402218030507, + "seismitoad": 5.6297278389658585, + "scolipede": 2.7398215927705256, + "whimsicott": 2.765156897454077, + "lilligant": 2.820442430359323, + "basculin-red-striped": 2.4576286788114317, + "basculin-blue-striped": 3.186273962958599, + "krookodile": 2.5965003199070615, + "maractus": 2.0474359752835234, + "crustle": 1.5388653749513304, + "sigilyph": 2.246637029939285, + "cofagrigus": 2.7274948095610005, + "garbodor": 1.6027210410264408, + "cinccino": 4.059587953347954, + "vanillish": 1.9448858681685892, + "emolga": 2.689985160512882, + "escavalier": 1.4653345559545066, + "amoonguss": 2.2825061558499486, + "jellicent": 1.6112666026378282, + "galvantula": 1.4118482304699502, + "klang": 2.190827273898483, + "klinklang": 2.5820200906562167, + "beheeyem": 1.8181076207918374, + "lampent": 2.461258532931353, + "fraxure": 1.3182363999683377, + "beartic": 1.5008539495480067, + "cryogonal": 1.7157553176806521, + "accelgor": 2.829333818795442, + "stunfisk": 1.1761923127837366, + "stunfisk-galar": 1.8357637489345815, + "mienshao": 2.817506053833013, + "druddigon": 1.6283221044821385, + "golurk": 1.8098309517121758, + "bisharp": 1.8504035628872213, + "bouffalant": 1.0865311535139068, + "heatmor": 1.7015020727504635, + "durant": 2.2286905995479764, + "diggersby": 2.8898958224892257, + "talonflame": 2.607579671346933, + "pangoro": 1.4294883280355335, + "doublade": 1.8203580875727972, + "malamar": 3.2393246918965106, + "barbaracle": 1.194201512458501, + "heliolisk": 3.4208160238098575, + "tyrantrum": 1.159985474330504, + "aurorus": 2.099974809748302, + "hawlucha": 2.849833807492131, + "dedenne": 2.6075952398181066, + "klefki": 2.405002746653147, + "trevenant": 2.766155291751617, + "gourgeist-average": 5.252187354413124, + "charjabug": 3.4908862399301466, + "vikavolt": 1.5948755188253776, + "ribombee": 4.217378267810627, + "lycanroc-midday": 2.7824945618220163, + "lycanroc-midnight": 1.8714497618144872, + "mudsdale": 1.2607142520497243, + "araquanid": 2.177363806520087, + "lurantis": 2.2133022257293535, + "shiinotic": 4.02791790022116, + "salazzle": 2.884720766943214, + "bewear": 1.5146951200041785, + "tsareena": 2.871609189677738, + "comfey": 4.084798883210607, + "oranguru": 2.5791454309251725, + "passimian": 1.8333961675105375, + "palossand": 2.017612434123009, + "pyukumuku": 38.41097505937945, + "togedemaru": 1.836002910225032, + "mimikyu-disguised": 4.694485565850943, + "greedent": 1.8324025536594664, + "orbeetle": 1.7833109363777004, + "thievul": 1.7987608218148279, + "eldegoss": 3.738934207566709, + "dubwool": 2.448625680442345, + "drednaw": 1.035077600241237, + "boltund": 4.184893179873034, + "carkol": 1.9422646254086162, + "coalossal": 1.5972053348016526, + "sandaconda": 2.599061562981528, + "cramorant": 5.189364505436435, + "barraskewda": 4.010753714960186, + "toxtricity-amped": 2.3240561190392595, + "centiskorch": 1.8962367933173612, + "grapploct": 1.3509262857171254, + "polteageist": 2.8456135385584975, + "hatterene": 2.458167269389684, + "grimmsnarl": 3.2989600533784893, + "obstagoon": 2.2839217600827237, + "perrserker": 2.4576568293559395, + "alcremie": 1.358381484679279, + "falinks": 2.431770918437283, + "pincurchin": 2.6245250751339375, + "frosmoth": 2.446044117865517, + "indeedee-male": 3.3526207947026245, + "morpeko": 2.5366824261156333, + "copperajah": 1.804198257338328, + "duraludon": 1.128773256941424, + "drakloak": 4.723432354735166 }, "linoone-galar": { - "ivysaur": 2.9952866370198743, - "charmeleon": 3.643139626570015, - "wartortle": 2.284370533408554, - "butterfree": 3.992297625417132, - "raichu": 4.041827525756353, - "raichu-alola": 4.837828473750616, - "sandslash": 1.7912500119400683, - "sandslash-alola": 1.5866609986883145, - "nidoqueen": 2.680779314231354, - "nidoking": 1.686420684408967, - "clefairy": 7.414133764580189, - "clefable": 1.3066366412981103, - "jigglypuff": 18.544552998612897, - "wigglytuff": 1.3756019077618515, - "gloom": 4.7605024318612985, - "vileplume": 2.522813676273782, - "dugtrio": 3.5160202585295517, - "dugtrio-alola": 3.278368440184907, - "persian": 3.7330224770671756, - "persian-alola": 3.7742061237772573, - "golduck": 2.8103575125647016, - "poliwrath": 1.229509712402502, - "kadabra": 4.857052502786498, - "machoke": 2.5525048359970035, - "tentacruel": 2.3361184889112714, - "slowbro": 2.2799451227438166, - "magneton": 2.7636852078399565, - "haunter": 6.515024104642611, - "kingler": 1.8027021382455466, - "exeggutor": 2.287167204270041, - "marowak": 2.789906947044905, - "marowak-alola": 2.4600464145085112, - "hitmonlee": 1.4230290038149116, - "hitmonchan": 1.551119952736753, - "lickitung": 1.7464851527209786, - "weezing": 1.3733442915793532, - "weezing-galar": 1.8064699503407962, - "rhydon": 2.0374205077639154, - "chansey": 27.676851742648395, - "tangela": 4.326477241204737, - "kangaskhan": 1.7166349307554576, - "seadra": 3.597375269441808, - "seaking": 2.296665459754492, - "starmie": 1.59274783248412, - "mr-mime": 8.436484419828933, - "mr-mime-galar": 4.758279309422819, - "scyther": 2.4095413651358655, - "jynx": 5.541643995665879, - "electabuzz": 2.451922127293428, - "magmar": 1.6200822533119528, - "tauros": 1.5603312659191, - "ditto": 5.334432224991245, - "vaporeon": 3.0899951383495248, - "jolteon": 1.9556548891983025, - "flareon": 2.4411675732628257, - "porygon": 2.63844453144028, - "dragonair": 1.7109516233923183, - "noctowl": 5.736735891933579, - "lanturn": 1.834890584505283, - "togetic": 3.922320916315096, - "xatu": 4.982451044637585, - "bellossom": 1.8528119099752183, - "azumarill": 1.5638374692520247, - "sudowoodo": 1.9415183877091993, - "politoed": 2.4275665304648397, - "quagsire": 3.427867326579264, - "slowking": 3.277153083873663, - "dunsparce": 2.9906058198779344, - "qwilfish": 2.945341041221102, - "sneasel": 2.0182857583366762, - "piloswine": 1.2547555287126164, - "octillery": 2.0616097578326364, - "mantine": 2.454683799812646, - "skarmory": 1.6801251662746666, - "hitmontop": 1.7603191603894692, - "miltank": 2.8830124008852827, - "grovyle": 6.4851615313332385, - "sceptile": 1.3193796318582707, - "combusken": 1.9788904424775697, - "blaziken": 1.0622138760968967, - "marshtomp": 2.283720625094323, - "swampert": 1.1581509909883219, - "linoone": 4.731180887452602, - "pelipper": 5.302988707276433, - "ninjask": 5.90447721364704, - "exploud": 1.3767286556845555, - "lairon": 2.0950578573463563, - "manectric": 1.6674360801776866, - "roselia": 4.107590498675923, - "sharpedo": 4.139195597448773, - "wailmer": 6.027593596258374, - "torkoal": 1.5995966603121952, - "flygon": 2.074105420148692, - "altaria": 1.3637902766287469, - "whiscash": 1.9393297479396487, - "crawdaunt": 1.5797440191792393, - "claydol": 4.364887704304419, - "cradily": 2.1060233132487807, - "armaldo": 1.5385356283412153, - "dusclops": 4.429791766895236, - "absol": 1.6085151497983703, - "glalie": 3.958220288642395, - "sealeo": 2.9252295894493043, - "relicanth": 1.657901908329529, - "metang": 3.562204578447467, - "luxray": 3.479547455323339, - "vespiquen": 2.081382122132258, - "cherrim": 5.393212370768134, - "gastrodon": 1.9381345441296838, - "drifblim": 5.847878467243396, - "lopunny": 2.9291577965467894, - "skuntank": 1.1761102070142029, - "bronzong": 4.413518991715534, - "munchlax": 2.2472270062253963, - "drapion": 1.7710250260594882, - "abomasnow": 2.953671040637354, - "froslass": 3.6886197642814187, - "rotom": 5.083832168040316, - "stoutland": 2.180080481407963, - "liepard": 5.372522470987969, - "musharna": 2.1450518917763644, - "unfezant": 5.542917345920445, - "boldore": 2.533296374705813, - "swoobat": 7.132855905045507, - "audino": 1.9709514764659648, - "gurdurr": 1.209984826746147, - "palpitoad": 3.498723678197009, - "seismitoad": 5.791598724653799, - "scolipede": 2.607860876506407, - "whimsicott": 2.3168826358882697, - "lilligant": 2.613083273792231, - "basculin-red-striped": 2.647705312752901, - "basculin-blue-striped": 3.370994859918661, - "krookodile": 2.384618852262809, - "maractus": 2.0581978832921513, - "crustle": 1.4496203957706941, - "sigilyph": 2.9389070021363626, - "cofagrigus": 3.6593522599069948, - "garbodor": 1.5434787088112079, - "cinccino": 4.179913890962155, - "vanillish": 1.9965291466200392, - "emolga": 2.772570962577187, - "escavalier": 1.576052799972917, - "amoonguss": 2.3467131205727068, - "jellicent": 1.8141378771897005, - "galvantula": 1.3934023154660122, - "klang": 2.4908000251323603, - "klinklang": 2.913461949054302, - "beheeyem": 2.432193456103114, - "lampent": 3.000131739164064, - "fraxure": 1.3149676450794647, - "beartic": 1.4472618291504848, - "cryogonal": 1.7715252482773665, - "accelgor": 2.4179616717449095, - "stunfisk": 1.2091427444083687, - "stunfisk-galar": 2.139933853310004, - "mienshao": 2.2129338214716756, - "druddigon": 1.7204738925753666, - "golurk": 1.924151867032292, - "bisharp": 2.052254620241091, - "bouffalant": 1.0390278172552723, - "heatmor": 1.7510580178963946, - "durant": 2.355821794674615, - "diggersby": 2.9655576267773984, - "talonflame": 2.6802989367375027, - "pangoro": 1.0520111423091596, - "doublade": 2.3203360335322083, - "malamar": 2.864574149440168, - "barbaracle": 1.3081138917997461, - "heliolisk": 3.540856488321693, - "tyrantrum": 1.1852181096142285, - "aurorus": 2.29584155897461, - "hawlucha": 2.303825813771985, - "dedenne": 1.8888413860104505, - "klefki": 2.1038372191352575, - "trevenant": 3.029610952587548, - "gourgeist-average": 6.240715109983143, - "charjabug": 3.553547507023729, - "vikavolt": 1.4897090634145411, - "ribombee": 3.0886224859666704, - "lycanroc-midday": 3.084098364841293, - "lycanroc-midnight": 1.9580770340187676, - "mudsdale": 1.132428224548697, - "araquanid": 2.0895929137340303, - "lurantis": 2.0747283166591144, - "shiinotic": 3.1085594157714738, - "salazzle": 2.963346448440131, - "bewear": 1.3864870809950616, - "tsareena": 2.838810261695292, - "comfey": 3.241918364484734, - "oranguru": 4.164404384487655, - "passimian": 1.4362123502414263, - "palossand": 2.4063851074947986, - "pyukumuku": 37.629052246062045, - "togedemaru": 2.0948783246576737, - "mimikyu-disguised": 4.34621095329069, - "greedent": 2.008536261740786, - "orbeetle": 2.122696751360072, - "thievul": 1.6116110368106935, - "eldegoss": 3.699477587748329, - "dubwool": 2.271603529978511, - "drednaw": 1.1058131996022655, - "boltund": 4.517688402961654, - "carkol": 2.135691081142216, - "coalossal": 1.7501008462476446, - "sandaconda": 2.520124325212726, - "cramorant": 5.631822936507799, - "barraskewda": 4.2589439412885755, - "toxtricity-amped": 2.391114781444708, - "centiskorch": 1.95269618361252, - "grapploct": 1.021761340909956, - "polteageist": 4.00023024595596, - "hatterene": 2.4009819422684764, - "grimmsnarl": 2.5056583061119335, - "obstagoon": 2.0840720713011525, - "perrserker": 2.8650388440894554, - "alcremie": 0.9928867753163989, - "falinks": 1.836142931876719, - "pincurchin": 2.6978133050174384, - "frosmoth": 2.1789265101268303, - "indeedee-male": 4.765209399249002, - "morpeko": 2.2080930874200875, - "copperajah": 1.873469266413365, - "duraludon": 1.327501341172185, - "drakloak": 6.001858633962216, - "linoone-galar": 4.190673222904978 + "ivysaur": 2.9901493860038597, + "charmeleon": 3.6375353466186526, + "wartortle": 2.2767603613894996, + "butterfree": 3.977363780360938, + "raichu": 4.021746706246634, + "raichu-alola": 4.843997774314426, + "sandslash": 1.7862563596819858, + "sandslash-alola": 1.579067520514648, + "nidoqueen": 2.679065117644535, + "nidoking": 1.6838488826004405, + "clefairy": 7.39611794962744, + "clefable": 1.3012432296678247, + "jigglypuff": 18.444091634789004, + "wigglytuff": 1.3709129725948341, + "gloom": 4.743163922234903, + "vileplume": 2.514766053481197, + "dugtrio": 3.5113001387844918, + "dugtrio-alola": 3.2749476740574037, + "persian": 3.7210000240507286, + "persian-alola": 3.769088097730264, + "golduck": 2.8049638884700405, + "poliwrath": 1.2218710905279833, + "kadabra": 4.858723070670067, + "machoke": 2.5373096363890646, + "tentacruel": 2.3327993052087614, + "slowbro": 2.286497019544882, + "magneton": 2.75851916434938, + "haunter": 6.535349030447532, + "kingler": 1.7935814131648997, + "exeggutor": 2.288105557814741, + "marowak": 2.786353399746108, + "marowak-alola": 2.4641251268809956, + "hitmonlee": 1.4113045547532477, + "hitmonchan": 1.5437483174412807, + "lickitung": 1.742979829161309, + "weezing": 1.3712270927359067, + "weezing-galar": 1.7984350719384548, + "rhydon": 2.032622344747877, + "chansey": 27.625007003020038, + "tangela": 4.316730480560014, + "kangaskhan": 1.7137827325317614, + "seadra": 3.589003020089539, + "seaking": 2.293016278647501, + "starmie": 1.5928735309245239, + "mr-mime": 8.463147853001235, + "mr-mime-galar": 4.767616211150052, + "scyther": 2.403547046238825, + "jynx": 5.534946117534256, + "electabuzz": 2.447406337091394, + "magmar": 1.6175993020446156, + "tauros": 1.5536664655559407, + "ditto": 5.296429226693189, + "vaporeon": 3.084962536577544, + "jolteon": 1.954797524218815, + "flareon": 2.4410278855658385, + "porygon": 2.634383990823945, + "dragonair": 1.7076801100067676, + "noctowl": 5.727201804604201, + "lanturn": 1.832558852322225, + "togetic": 3.9062958930703733, + "xatu": 4.992245642276078, + "bellossom": 1.8475248565258133, + "azumarill": 1.5585084934582942, + "sudowoodo": 1.9329914141607398, + "politoed": 2.4236188392306905, + "quagsire": 3.4104354196657374, + "slowking": 3.281407373306437, + "dunsparce": 2.9856435151146203, + "qwilfish": 2.939528703094119, + "sneasel": 2.0147430523342242, + "piloswine": 1.2484729409103719, + "octillery": 2.056106359125566, + "mantine": 2.451857252126788, + "skarmory": 1.676846471839331, + "hitmontop": 1.7494776805442565, + "miltank": 2.8725439444985383, + "grovyle": 6.455988917909762, + "sceptile": 1.3161771290422182, + "combusken": 1.963744212326422, + "blaziken": 1.0558116891607439, + "marshtomp": 2.2799700868422903, + "swampert": 1.1564782597746155, + "linoone": 4.721128065830401, + "linoone-galar": 4.190673222904978, + "pelipper": 5.291487744582495, + "ninjask": 5.8756218560415, + "exploud": 1.3705379619532136, + "lairon": 2.0907991224291385, + "manectric": 1.6660086459388697, + "roselia": 4.1051596478741645, + "sharpedo": 4.129417093905816, + "wailmer": 6.017440060782464, + "torkoal": 1.5968940393788327, + "flygon": 2.068286344148837, + "altaria": 1.360290313363099, + "whiscash": 1.9380983894082329, + "crawdaunt": 1.5758920331193929, + "claydol": 4.372055071668322, + "cradily": 2.1021212781703595, + "armaldo": 1.5336642126306836, + "dusclops": 4.4385406722633505, + "absol": 1.6048609658937378, + "glalie": 3.953375206401793, + "sealeo": 2.919710761726636, + "relicanth": 1.6542535584226075, + "metang": 3.5673415150855545, + "luxray": 3.4725756780647776, + "vespiquen": 2.070750026888183, + "cherrim": 5.3825006899687615, + "gastrodon": 1.933250452834517, + "drifblim": 5.85980708093523, + "lopunny": 2.91568684502065, + "skuntank": 1.174529923519503, + "bronzong": 4.428236819667159, + "munchlax": 2.243338272075561, + "drapion": 1.7654257787945933, + "abomasnow": 2.9469028266942505, + "froslass": 3.694117354911449, + "rotom": 5.09741350227706, + "stoutland": 2.174612634941516, + "liepard": 5.3533568070386135, + "musharna": 2.151503542709623, + "unfezant": 5.534240836202429, + "boldore": 2.5223920964981295, + "swoobat": 7.146780679612826, + "audino": 1.96576668613318, + "gurdurr": 1.19958417553872, + "palpitoad": 3.4930886679965325, + "seismitoad": 5.777898509950788, + "scolipede": 2.599249871951823, + "whimsicott": 2.3074639490509696, + "lilligant": 2.6049283133192995, + "basculin-red-striped": 2.6452017199441276, + "basculin-blue-striped": 3.3668377164292895, + "krookodile": 2.380486166707317, + "maractus": 2.0555162085433007, + "crustle": 1.441691275801701, + "sigilyph": 2.9428435666387625, + "cofagrigus": 3.677477126894029, + "garbodor": 1.536245410355932, + "cinccino": 4.170972871434177, + "vanillish": 1.9924907751181662, + "emolga": 2.7684142429213585, + "escavalier": 1.5720973545020267, + "amoonguss": 2.342165043697271, + "jellicent": 1.8133537491890825, + "galvantula": 1.3891853019158535, + "klang": 2.4870114056030994, + "klinklang": 2.9079766589474296, + "beheeyem": 2.4364859634186775, + "lampent": 3.000816805226557, + "fraxure": 1.3110018675912816, + "beartic": 1.4409139727388491, + "cryogonal": 1.7688571516552347, + "accelgor": 2.4069510462104695, + "stunfisk": 1.2071399052461738, + "stunfisk-galar": 2.1382660269956646, + "mienshao": 2.199179039374798, + "druddigon": 1.7187928409713358, + "golurk": 1.9196014270270705, + "bisharp": 2.0501605713040094, + "bouffalant": 1.0349459625344297, + "heatmor": 1.7489086896584103, + "durant": 2.347445545286921, + "diggersby": 2.960484325463253, + "talonflame": 2.6761779854082115, + "pangoro": 1.0446827223536668, + "doublade": 2.3144145723343046, + "malamar": 2.865337644388372, + "barbaracle": 1.3047874392695848, + "heliolisk": 3.5348363637130458, + "tyrantrum": 1.179713822209428, + "aurorus": 2.2906866940044512, + "hawlucha": 2.2899904779029647, + "dedenne": 1.8810888916462543, + "klefki": 2.094789063115746, + "trevenant": 3.02029769651144, + "gourgeist-average": 6.2554532696279095, + "charjabug": 3.5473624353884237, + "vikavolt": 1.484542302886311, + "ribombee": 3.069579694417421, + "lycanroc-midday": 3.078860497028355, + "lycanroc-midnight": 1.9509032704773213, + "mudsdale": 1.126069386490853, + "araquanid": 2.0836882535562813, + "lurantis": 2.068295228954356, + "shiinotic": 3.091690724480026, + "salazzle": 2.958324787409833, + "bewear": 1.3818461704891596, + "tsareena": 2.8338834127414922, + "comfey": 3.2280055246740034, + "oranguru": 4.183413417013867, + "passimian": 1.426686890430192, + "palossand": 2.410382719000655, + "pyukumuku": 37.4979391935329, + "togedemaru": 2.091201326539562, + "mimikyu-disguised": 4.35125083224885, + "greedent": 2.0065538265746934, + "orbeetle": 2.1259148024089534, + "thievul": 1.609660698274722, + "eldegoss": 3.6927870831548084, + "dubwool": 2.2603949448924086, + "drednaw": 1.1026764561077942, + "boltund": 4.51416985814111, + "carkol": 2.1318612180253043, + "coalossal": 1.746594941904253, + "sandaconda": 2.5120092921624395, + "cramorant": 5.628683570710919, + "barraskewda": 4.253214440063615, + "toxtricity-amped": 2.3860804797688795, + "centiskorch": 1.9494180446855989, + "grapploct": 1.0120850427989907, + "polteageist": 4.010398074409175, + "hatterene": 2.3985761242876604, + "grimmsnarl": 2.4922741870917164, + "obstagoon": 2.0786011587893545, + "perrserker": 2.862429054635358, + "alcremie": 0.9891809826734459, + "falinks": 1.822349692410435, + "pincurchin": 2.692963078895156, + "frosmoth": 2.1715323369512927, + "indeedee-male": 4.779739406583761, + "morpeko": 2.202340083857897, + "copperajah": 1.8655315932174483, + "duraludon": 1.3253693249864797, + "drakloak": 6.014221456190734 }, "pelipper": { - "ivysaur": 3.1288153720762164, - "charmeleon": 3.482305822827678, - "wartortle": 2.458556756292933, - "butterfree": 4.819340613075417, - "raichu": 3.100795365380936, - "raichu-alola": 2.1765743004014495, - "sandslash": 2.0403124077286394, - "sandslash-alola": 2.3259569048691517, - "nidoqueen": 2.4911213766042777, - "nidoking": 1.5698916338517122, - "clefairy": 7.994678967981706, - "clefable": 2.0465209242997164, - "jigglypuff": 22.11636499467107, - "wigglytuff": 2.076956569536582, - "gloom": 5.446714500257437, - "vileplume": 2.974598953101114, - "dugtrio": 4.638353305557391, - "dugtrio-alola": 2.918357426848141, - "persian": 3.6607981444157796, - "persian-alola": 4.616651404563893, - "golduck": 2.7993104500476873, - "poliwrath": 2.024226445048214, - "kadabra": 4.210475629319429, - "machoke": 3.7949051938522262, - "tentacruel": 2.1822970038125913, - "slowbro": 1.5513884199691979, - "magneton": 1.8644292123532145, - "haunter": 3.5863803691348357, - "kingler": 2.51475482032666, - "exeggutor": 1.9208387106269122, - "marowak": 2.9841034322823736, - "marowak-alola": 1.7572904997217336, - "hitmonlee": 2.8737046745175454, - "hitmonchan": 2.094748384431445, - "lickitung": 2.244176846153054, - "weezing": 1.6305965996164256, - "weezing-galar": 2.2861337443680827, - "rhydon": 2.018404196558144, - "chansey": 22.621269991650625, - "tangela": 4.620800277073348, - "kangaskhan": 1.656681240825538, - "seadra": 3.7881826100133447, - "seaking": 2.280334947002001, - "starmie": 2.059432748166216, - "mr-mime": 5.717843603932796, - "mr-mime-galar": 4.0932875689852075, - "scyther": 2.7719953530078953, - "jynx": 3.816402838719652, - "electabuzz": 1.6364813984133095, - "magmar": 1.9212501044953438, - "tauros": 1.897376452015893, - "ditto": 5.790156415658515, - "vaporeon": 2.8254141042104015, - "jolteon": 1.3642891968108866, - "flareon": 2.556161754897453, - "porygon": 2.0421802290751927, - "dragonair": 2.3028967646562277, - "noctowl": 5.021037185307428, - "lanturn": 1.309896828382834, - "togetic": 4.738000800301958, - "xatu": 3.1777448065539478, - "bellossom": 2.561424984795764, - "azumarill": 1.9655664179015393, - "sudowoodo": 2.0785482532387247, - "politoed": 2.3998477889132888, - "quagsire": 4.299604673910792, - "slowking": 2.187741293711453, - "dunsparce": 2.834299387123516, - "qwilfish": 3.177559971038602, - "sneasel": 2.6142683355773624, - "piloswine": 1.7574605960686795, - "octillery": 2.150626440479495, - "mantine": 2.2081628793445045, - "skarmory": 1.6318447483431013, - "hitmontop": 2.991888729306513, - "miltank": 3.1657811038276504, - "grovyle": 8.21263353209211, - "sceptile": 1.5356857990814183, - "combusken": 3.5741326204713264, - "blaziken": 1.758241338053507, - "marshtomp": 2.3496069174635226, - "swampert": 1.5464997409036048, - "linoone": 4.627328045564369, - "linoone-galar": 5.282146764466145, - "ninjask": 8.33409290731082, - "exploud": 1.6607985959580793, - "lairon": 2.614397524222088, - "manectric": 1.4329064204543531, - "roselia": 4.064877427845519, - "sharpedo": 4.513852444894066, - "wailmer": 5.970971727281466, - "torkoal": 2.1494775874848995, - "flygon": 2.201216601100103, - "altaria": 2.6375449194792377, - "whiscash": 2.2189643896956546, - "crawdaunt": 2.259840310765367, - "claydol": 2.625169115897462, - "cradily": 1.754482689760104, - "armaldo": 1.606320128839048, - "dusclops": 2.8299077044474585, - "absol": 2.1273471192455884, - "glalie": 3.722136281277632, - "sealeo": 2.8408428257192218, - "relicanth": 1.4994211900222243, - "metang": 2.04685694923826, - "luxray": 2.3218436129875215, - "vespiquen": 2.8869488122733236, - "cherrim": 5.615668153866642, - "gastrodon": 1.9055934244651889, - "drifblim": 2.633327965954572, - "lopunny": 3.2637389036786177, - "skuntank": 1.4604643421565515, - "bronzong": 2.432448933389635, - "munchlax": 1.865292870901642, - "drapion": 2.218070252994645, - "abomasnow": 3.1857417798501446, - "froslass": 2.3746547288164255, - "rotom": 1.935129185838162, - "stoutland": 2.0783033231202688, - "liepard": 6.143451724891047, - "musharna": 1.2890175494481917, - "unfezant": 5.557976983440446, - "boldore": 2.69202105054045, - "swoobat": 4.542459038694733, - "audino": 2.67531692556427, - "gurdurr": 2.3165549506672907, - "palpitoad": 3.5679320397520398, - "seismitoad": 5.2225612374310915, - "scolipede": 3.272491251836409, - "whimsicott": 3.0045025013751925, - "lilligant": 3.010329779525149, - "basculin-red-striped": 2.588713580037839, - "basculin-blue-striped": 3.343055548559983, - "krookodile": 2.6552629564065695, - "maractus": 2.128763829123395, - "crustle": 1.694758671731087, - "sigilyph": 1.9801510235688804, - "cofagrigus": 1.9890195820986727, - "garbodor": 1.9922190841386946, - "cinccino": 3.9448839338132635, - "vanillish": 3.65871877811821, - "emolga": 2.026612425478157, - "escavalier": 1.7184462654620933, - "amoonguss": 2.4527710842587114, - "jellicent": 2.3179030702767185, - "galvantula": 1.0129946242532872, - "klang": 1.606013018034497, - "klinklang": 2.6911606800007926, - "beheeyem": 1.4334740851421985, - "lampent": 2.84687055870898, - "fraxure": 1.6887155106025908, - "beartic": 2.022040801012532, - "cryogonal": 1.9352139821266299, - "accelgor": 3.599673433241545, - "stunfisk": 1.1086607505696888, - "stunfisk-galar": 1.9109122981268833, - "mienshao": 3.323711737941127, - "druddigon": 1.683419312342345, - "golurk": 1.6746575360186045, - "bisharp": 1.896575341597819, - "bouffalant": 1.1618241129928206, - "heatmor": 1.7160397947899977, - "durant": 2.2599452667067563, - "diggersby": 2.999431175329736, - "talonflame": 2.603865260373165, - "pangoro": 1.8319713090378218, - "doublade": 1.7260639298933032, - "malamar": 2.0958116213900695, - "barbaracle": 1.7176413085999391, - "heliolisk": 2.232130544220875, - "tyrantrum": 1.2444509594075117, - "aurorus": 1.5769749716532495, - "hawlucha": 3.549845316642725, - "dedenne": 2.128494887502529, - "klefki": 2.3330328451061413, - "trevenant": 3.1591172158801406, - "gourgeist-average": 4.977991613157373, - "charjabug": 3.1286039974282587, - "vikavolt": 1.5154609662797687, - "ribombee": 4.835730173625268, - "lycanroc-midday": 2.3786415344130196, - "lycanroc-midnight": 1.8092093448269349, - "mudsdale": 1.490874044008733, - "araquanid": 2.6773893839229377, - "lurantis": 2.365167266463561, - "shiinotic": 4.331681461294091, - "salazzle": 3.6244747682203196, - "bewear": 1.7120168755475107, - "tsareena": 3.116047790683252, - "comfey": 3.6648030353425924, - "oranguru": 2.256934517499788, - "passimian": 2.204705374872722, - "palossand": 1.6902736188839846, - "pyukumuku": 51.13542746103154, - "togedemaru": 1.9388164514488324, - "mimikyu-disguised": 3.4181513366014937, - "greedent": 1.9067187621533108, - "orbeetle": 1.9706242071578175, - "thievul": 3.2591837694368646, - "eldegoss": 3.8577834933310022, - "dubwool": 2.6546584354770513, - "drednaw": 1.5245979178603515, - "boltund": 2.995495436354421, - "carkol": 2.8565338831255658, - "coalossal": 1.5186062945472756, - "sandaconda": 3.0605431556167213, - "cramorant": 5.053006431546283, - "barraskewda": 4.155271073066632, - "toxtricity-amped": 1.9009854567677746, - "centiskorch": 2.2505638203646567, - "grapploct": 2.0847384494674985, - "polteageist": 2.286963189296552, - "hatterene": 2.1095779558128203, - "grimmsnarl": 3.2823292629007, - "obstagoon": 1.9483231311837477, - "perrserker": 2.2415222195757702, - "alcremie": 1.6257302495130035, - "falinks": 3.1880923650083077, - "pincurchin": 2.108516321780102, - "frosmoth": 3.0344951217216574, - "indeedee-male": 2.777388783862894, - "morpeko": 1.7468943770224405, - "copperajah": 1.9492727316785734, - "duraludon": 1.1836508282345233, - "drakloak": 3.667468164581611, - "pelipper": 5.2225931592989925 + "ivysaur": 3.1253887505535856, + "charmeleon": 3.4808092732012454, + "wartortle": 2.4578194980984254, + "butterfree": 4.817801438640586, + "raichu": 3.0793257664084104, + "raichu-alola": 2.1613334821933234, + "sandslash": 2.039543560858504, + "sandslash-alola": 2.318992697890342, + "nidoqueen": 2.489823926666036, + "nidoking": 1.5677436042703996, + "clefairy": 7.990222142043294, + "clefable": 2.0398731013566698, + "jigglypuff": 22.07328398842359, + "wigglytuff": 2.071514530606113, + "gloom": 5.4394032894156155, + "vileplume": 2.9736854884768267, + "dugtrio": 4.638317937023113, + "dugtrio-alola": 2.9181741243002186, + "persian": 3.6540365759680773, + "persian-alola": 4.607025019424266, + "golduck": 2.7985620080167504, + "poliwrath": 2.026561691631102, + "kadabra": 4.199692023587276, + "machoke": 3.793767338125334, + "tentacruel": 2.1822286617798707, + "slowbro": 1.54899196024645, + "magneton": 1.850921351103234, + "haunter": 3.576538420889002, + "kingler": 2.517436062310672, + "exeggutor": 1.9196162542662845, + "marowak": 2.9866145561078437, + "marowak-alola": 1.7558653784672509, + "hitmonlee": 2.87967241568112, + "hitmonchan": 2.092012231512006, + "lickitung": 2.2342996758415246, + "weezing": 1.627084666103062, + "weezing-galar": 2.2831424714982336, + "rhydon": 2.0152274578727325, + "chansey": 22.560850687623848, + "tangela": 4.616849716240152, + "kangaskhan": 1.6554461056425733, + "seadra": 3.782471683488368, + "seaking": 2.281529749063716, + "starmie": 2.053061839493616, + "mr-mime": 5.705680684800733, + "mr-mime-galar": 4.081534456419955, + "scyther": 2.772321509983719, + "jynx": 3.8075695774124467, + "electabuzz": 1.6225025014519692, + "magmar": 1.9193724431209052, + "tauros": 1.8977735700241478, + "ditto": 5.745218986731713, + "vaporeon": 2.8234422568042046, + "jolteon": 1.3543429610074416, + "flareon": 2.5532534418502566, + "porygon": 2.0329264707533516, + "dragonair": 2.2935960441899823, + "noctowl": 5.0127968148507005, + "lanturn": 1.3035609623903683, + "togetic": 4.737268482075548, + "xatu": 3.1706922647785842, + "bellossom": 2.557425205128746, + "azumarill": 1.9671990700165005, + "sudowoodo": 2.0742477425794377, + "politoed": 2.40123014573001, + "quagsire": 4.2996644684653855, + "slowking": 2.1855983784151176, + "dunsparce": 2.83072033699748, + "qwilfish": 3.1773757389716595, + "sneasel": 2.60902980673165, + "piloswine": 1.75405084906049, + "octillery": 2.150217849274355, + "mantine": 2.2074111888785652, + "skarmory": 1.6303384057746113, + "hitmontop": 2.9972938031405714, + "miltank": 3.1610483495158945, + "grovyle": 8.21022863017399, + "sceptile": 1.5344452595425793, + "combusken": 3.5788776861114884, + "blaziken": 1.7610865754974974, + "marshtomp": 2.3510789941837658, + "swampert": 1.5465861843842117, + "linoone": 4.62294321257961, + "linoone-galar": 5.270480418110628, + "pelipper": 5.2225931592989925, + "ninjask": 8.347287459337885, + "exploud": 1.6567629206382193, + "lairon": 2.6056640592084257, + "manectric": 1.4255655460404095, + "roselia": 4.060686642643188, + "sharpedo": 4.510501479766567, + "wailmer": 5.970174488908622, + "torkoal": 2.148385668049919, + "flygon": 2.201137432126189, + "altaria": 2.632593489055267, + "whiscash": 2.2161913699824614, + "crawdaunt": 2.2566010538884793, + "claydol": 2.6163558500088673, + "cradily": 1.7478008547583483, + "armaldo": 1.6047882436613794, + "dusclops": 2.8244629664201315, + "absol": 2.1240113870833848, + "glalie": 3.718532314720064, + "sealeo": 2.838233638804571, + "relicanth": 1.4947405294362162, + "metang": 2.038860244177644, + "luxray": 2.304198673297143, + "vespiquen": 2.889520112013721, + "cherrim": 5.607775460890457, + "gastrodon": 1.9041180596269554, + "drifblim": 2.613420276798154, + "lopunny": 3.2611680755767267, + "skuntank": 1.4588570060629975, + "bronzong": 2.4286943163367645, + "munchlax": 1.860305400325109, + "drapion": 2.218586535956211, + "abomasnow": 3.182635483834079, + "froslass": 2.368481755331552, + "rotom": 1.919222136471137, + "stoutland": 2.0744063649278712, + "liepard": 6.136904990067968, + "musharna": 1.2863226782807056, + "unfezant": 5.553226227958134, + "boldore": 2.686405734934085, + "swoobat": 4.532301396660822, + "audino": 2.669691918032136, + "gurdurr": 2.320897114406982, + "palpitoad": 3.5696935214364047, + "seismitoad": 5.208206318443761, + "scolipede": 3.275447018417911, + "whimsicott": 3.001988522332058, + "lilligant": 3.008430242635365, + "basculin-red-striped": 2.5884680811644887, + "basculin-blue-striped": 3.342711587570374, + "krookodile": 2.655565137724758, + "maractus": 2.126937651062933, + "crustle": 1.6920877762826647, + "sigilyph": 1.9767038424073395, + "cofagrigus": 1.982515315148678, + "garbodor": 1.9892763411253795, + "cinccino": 3.938330682870218, + "vanillish": 3.648536931127033, + "emolga": 2.011451567530663, + "escavalier": 1.720286525512007, + "amoonguss": 2.449569872363975, + "jellicent": 2.312574654744243, + "galvantula": 1.0053995609092614, + "klang": 1.5948865190703585, + "klinklang": 2.6877163184020496, + "beheeyem": 1.4290565231424797, + "lampent": 2.8438549754105136, + "fraxure": 1.6862268973512422, + "beartic": 2.0186912751585004, + "cryogonal": 1.930594495436479, + "accelgor": 3.6010422617628777, + "stunfisk": 1.1031381651008383, + "stunfisk-galar": 1.9098487941859983, + "mienshao": 3.3218508119047807, + "druddigon": 1.6839935677387032, + "golurk": 1.6737129212384696, + "bisharp": 1.892279496092135, + "bouffalant": 1.1616858574463453, + "heatmor": 1.7163954748288148, + "durant": 2.2532511239177913, + "diggersby": 2.9995640020163314, + "talonflame": 2.6027978545872115, + "pangoro": 1.8335335466393508, + "doublade": 1.7230847993258958, + "malamar": 2.0861787826986413, + "barbaracle": 1.7130941390426466, + "heliolisk": 2.2173734642143828, + "tyrantrum": 1.2411031101542247, + "aurorus": 1.5659788792087705, + "hawlucha": 3.551250308581912, + "dedenne": 2.113874263340809, + "klefki": 2.329861014355686, + "trevenant": 3.1590648778681, + "gourgeist-average": 4.974445708130165, + "charjabug": 3.112454123224379, + "vikavolt": 1.5125652884810301, + "ribombee": 4.836324257461991, + "lycanroc-midday": 2.368128470933641, + "lycanroc-midnight": 1.8037422481893706, + "mudsdale": 1.4917467640919502, + "araquanid": 2.6818749268828146, + "lurantis": 2.36318317628007, + "shiinotic": 4.32617846279451, + "salazzle": 3.621401569470667, + "bewear": 1.7105511448686572, + "tsareena": 3.115525888088078, + "comfey": 3.6584077696630297, + "oranguru": 2.2521827888994856, + "passimian": 2.2041835678594826, + "palossand": 1.6874395256326284, + "pyukumuku": 51.03303415971378, + "togedemaru": 1.9277449125867208, + "mimikyu-disguised": 3.4117785906499476, + "greedent": 1.9048224870501556, + "orbeetle": 1.9682223463838833, + "thievul": 3.25494363521604, + "eldegoss": 3.8529317954340154, + "dubwool": 2.652278393801419, + "drednaw": 1.5206887089514975, + "boltund": 2.975391480245185, + "carkol": 2.848692919646373, + "coalossal": 1.513786349376459, + "sandaconda": 3.062301184040857, + "cramorant": 5.052693140122045, + "barraskewda": 4.152831863732562, + "toxtricity-amped": 1.8856736462065662, + "centiskorch": 2.2527382063670682, + "grapploct": 2.086455482640456, + "polteageist": 2.2820826424527363, + "hatterene": 2.106111216304478, + "grimmsnarl": 3.278721694617367, + "obstagoon": 1.9400932375852862, + "perrserker": 2.232316291247072, + "alcremie": 1.6234157852377624, + "falinks": 3.192129294247195, + "pincurchin": 2.093024147762348, + "frosmoth": 3.031031636336585, + "indeedee-male": 2.7729015965991413, + "morpeko": 1.7348854751732383, + "copperajah": 1.9479840070038088, + "duraludon": 1.1769320386300737, + "drakloak": 3.6586070307548475 }, "ninjask": { - "ivysaur": 3.2889118437816047, - "charmeleon": 2.578984262668341, - "wartortle": 2.3703269364266166, - "butterfree": 4.025293692342626, - "raichu": 4.475533446486436, - "raichu-alola": 3.9193163034598157, - "sandslash": 1.6178717464706274, - "sandslash-alola": 1.0675504665145883, - "nidoqueen": 2.363054677848626, - "nidoking": 1.3093040024957747, - "clefairy": 6.7714429185971925, - "clefable": 1.2841980487063838, - "jigglypuff": 20.60543084512927, - "wigglytuff": 1.4548401168387184, - "gloom": 5.023918790131001, - "vileplume": 3.112421821732568, - "dugtrio": 2.4837706400893236, - "dugtrio-alola": 2.8587938598224323, - "persian": 3.691148133719037, - "persian-alola": 4.756518101327412, - "golduck": 2.663319686288397, - "poliwrath": 1.469307170768148, - "kadabra": 4.980573903862565, - "machoke": 2.481018807932664, - "tentacruel": 1.832703921840488, - "slowbro": 1.7629026429362278, - "magneton": 2.628020748745546, - "haunter": 3.172900750114925, - "kingler": 2.1775165519890516, - "exeggutor": 3.279724906637372, - "marowak": 2.8579385126290813, - "marowak-alola": 1.3884551588239171, - "hitmonlee": 2.0305469914551697, - "hitmonchan": 1.409979313995586, - "lickitung": 1.4606026206155367, - "weezing": 1.0865910217992791, - "weezing-galar": 1.9067167663900757, - "rhydon": 1.6938724806205065, - "chansey": 26.522016646622205, - "tangela": 5.2449732240837115, - "kangaskhan": 1.6464413402915181, - "seadra": 3.328269541820359, - "seaking": 2.210008455476988, - "starmie": 1.376524565434951, - "mr-mime": 6.460972685454971, - "mr-mime-galar": 3.5228956835204968, - "scyther": 1.8942412098798012, - "jynx": 5.026021715787715, - "electabuzz": 1.8688455858454858, - "magmar": 1.0656840842829656, - "tauros": 1.8910966264843405, - "ditto": 7.336639033503961, - "vaporeon": 2.978177400997564, - "jolteon": 1.6543046655912275, - "flareon": 1.4698917533976683, - "porygon": 2.1901743709833656, - "dragonair": 1.4385862927588509, - "noctowl": 3.9858235271492237, - "lanturn": 1.6276756603314646, - "togetic": 3.2568941699109843, - "xatu": 3.0253362924061253, - "bellossom": 2.8037638654958243, - "azumarill": 1.504680999311454, - "sudowoodo": 1.7520588905355678, - "politoed": 2.5233370091881833, - "quagsire": 4.258964725753689, - "slowking": 2.7461626667940533, - "dunsparce": 2.589012727407323, - "qwilfish": 2.5877884531217368, - "sneasel": 2.479025673959112, - "piloswine": 1.0893969929170852, - "octillery": 2.117858019748226, - "mantine": 1.7352200708874943, - "skarmory": 1.2007267121753316, - "hitmontop": 2.1694593996996248, - "miltank": 2.899475983384745, - "grovyle": 11.589424147465973, - "sceptile": 1.8892731831210714, - "combusken": 2.593536212681607, - "blaziken": 1.1382239165534207, - "marshtomp": 2.1778718998345283, - "swampert": 1.0576094310201831, - "linoone": 4.597442179869632, - "linoone-galar": 5.102669398089451, - "pelipper": 3.890536910075185, - "exploud": 1.3128900977074571, - "lairon": 1.4276481598754986, - "manectric": 1.4047320033277861, - "roselia": 4.152476390236294, - "sharpedo": 5.597618025003056, - "wailmer": 5.377016500485119, - "torkoal": 1.146561172981879, - "flygon": 2.2014392338909494, - "altaria": 1.0662467732008813, - "whiscash": 1.677058110122279, - "crawdaunt": 2.041166913833878, - "claydol": 3.2557009884538006, - "cradily": 2.262721630392135, - "armaldo": 1.4232891675381083, - "dusclops": 2.541827552066591, - "absol": 1.992657295920821, - "glalie": 3.22681230232379, - "sealeo": 2.541824358149566, - "relicanth": 1.1548783538064606, - "metang": 2.2696449928611173, - "luxray": 2.889937617658426, - "vespiquen": 2.042072799897173, - "cherrim": 7.601252268257166, - "gastrodon": 1.6986442535336321, - "drifblim": 2.5343890480288684, - "lopunny": 3.1831200403281232, - "skuntank": 1.160431900165718, - "bronzong": 2.717103591675926, - "munchlax": 1.9049157483455579, - "drapion": 2.046322766413294, - "abomasnow": 3.4390220631089834, - "froslass": 1.860795761191194, - "rotom": 2.3633341823610574, - "stoutland": 2.039701733711377, - "liepard": 7.894714628039662, - "musharna": 1.8571258886674396, - "unfezant": 3.6790221601238633, - "boldore": 2.242401694094187, - "swoobat": 4.334044597507702, - "audino": 1.8057542546542331, - "gurdurr": 1.9935115921291033, - "palpitoad": 3.5256256649325026, - "seismitoad": 5.528875104125772, - "scolipede": 2.452264840531223, - "whimsicott": 2.742012075673715, - "lilligant": 4.094701721106599, - "basculin-red-striped": 2.264063408046515, - "basculin-blue-striped": 3.10582149448129, - "krookodile": 3.3781305214502275, - "maractus": 2.952319635656684, - "crustle": 1.4717680595606044, - "sigilyph": 1.8775376422436567, - "cofagrigus": 1.8347780017929916, - "garbodor": 1.4970546219757086, - "cinccino": 3.5903081271937882, - "vanillish": 1.5842242684799175, - "emolga": 1.7375504203621888, - "escavalier": 1.5195773828611852, - "amoonguss": 2.4475308460572744, - "jellicent": 1.0243744639236039, - "galvantula": 1.1923083469959719, - "klang": 1.6608776084688364, - "klinklang": 2.498024004543189, - "beheeyem": 1.8570131828310934, - "lampent": 1.4430652353760065, - "fraxure": 1.2856151673685072, - "beartic": 1.2980340370066352, - "cryogonal": 1.3906593545120791, - "accelgor": 3.188313785280659, - "stunfisk": 1.1598392421038524, - "stunfisk-galar": 1.9561604632662606, - "mienshao": 2.18935380307566, - "druddigon": 1.569465230464555, - "golurk": 1.555602163278779, - "bisharp": 1.9825817762125875, - "bouffalant": 1.1685234824758335, - "heatmor": 1.2731322487051289, - "durant": 2.051694749287385, - "diggersby": 2.7311207947505123, - "talonflame": 1.6890156906069431, - "pangoro": 1.6310877765319023, - "doublade": 1.8541666582164371, - "malamar": 4.10507801898849, - "barbaracle": 1.1536163326222986, - "heliolisk": 3.171497769161192, - "tyrantrum": 1.1000869794338246, - "aurorus": 1.572606275747336, - "hawlucha": 2.5195004948380433, - "dedenne": 1.969067202987179, - "klefki": 2.232171612944451, - "trevenant": 3.240768657821258, - "gourgeist-average": 3.859483197337103, - "charjabug": 3.2724828942281197, - "vikavolt": 1.6279047456277889, - "ribombee": 3.803170658296426, - "lycanroc-midday": 1.839043462476158, - "lycanroc-midnight": 1.6103705314740742, - "mudsdale": 1.5680149162726165, - "araquanid": 2.2374662052015406, - "lurantis": 3.020409509884003, - "shiinotic": 3.9887090513757055, - "salazzle": 2.6220714606014486, - "bewear": 1.254748882902928, - "tsareena": 3.5445395653610277, - "comfey": 3.7196417618963062, - "oranguru": 3.1962023073649535, - "passimian": 1.4132711732829921, - "palossand": 1.597717337546428, - "pyukumuku": 41.68310465055534, - "togedemaru": 1.747967395459418, - "mimikyu-disguised": 2.581066155439493, - "greedent": 1.7568153661678023, - "orbeetle": 2.198384242815325, - "thievul": 2.0143289149862893, - "eldegoss": 5.354526927166205, - "dubwool": 2.7908399000028057, - "drednaw": 0.7262185707801234, - "boltund": 3.661055484251405, - "carkol": 1.3667020797184217, - "coalossal": 1.389253775221742, - "sandaconda": 2.872057468834054, - "cramorant": 4.191911273657494, - "barraskewda": 3.8700789886980846, - "toxtricity-amped": 2.067073775119608, - "centiskorch": 1.512888520125727, - "grapploct": 1.3931756398029904, - "polteageist": 2.209825557249972, - "hatterene": 2.2055144179550425, - "grimmsnarl": 3.657072506190242, - "obstagoon": 2.52791875525317, - "perrserker": 2.3471111824907247, - "alcremie": 1.075639145305321, - "falinks": 2.501313602169125, - "pincurchin": 2.375148423019922, - "frosmoth": 2.4427585967954455, - "indeedee-male": 3.7406350181625854, - "morpeko": 2.5922859832715366, - "copperajah": 1.8872600523485124, - "duraludon": 1.1254635902123005, - "drakloak": 3.223790431848865, - "ninjask": 6.53583983164048 + "ivysaur": 3.2886697354244383, + "charmeleon": 2.5630409338047357, + "wartortle": 2.363412931372979, + "butterfree": 4.017632706247107, + "raichu": 4.460987836300047, + "raichu-alola": 3.907696383040072, + "sandslash": 1.6103077874163372, + "sandslash-alola": 1.060432247036539, + "nidoqueen": 2.358786590788495, + "nidoking": 1.3027808956777163, + "clefairy": 6.743486323488696, + "clefable": 1.2754359691184427, + "jigglypuff": 20.531891308827888, + "wigglytuff": 1.4490067889439149, + "gloom": 5.009352530869419, + "vileplume": 3.114467925408105, + "dugtrio": 2.4772125892966246, + "dugtrio-alola": 2.853746079636707, + "persian": 3.6777199470031308, + "persian-alola": 4.750407255449249, + "golduck": 2.654879447856765, + "poliwrath": 1.464699437705435, + "kadabra": 4.974811812983916, + "machoke": 2.464979250821459, + "tentacruel": 1.8262110421834623, + "slowbro": 1.7577269886898566, + "magneton": 2.614645869071385, + "haunter": 3.1622804703788088, + "kingler": 2.174544290204933, + "exeggutor": 3.286245615457042, + "marowak": 2.8546843869520346, + "marowak-alola": 1.380114551257774, + "hitmonlee": 2.0261494164769904, + "hitmonchan": 1.4010170182967312, + "lickitung": 1.4535062682229103, + "weezing": 1.081556046300702, + "weezing-galar": 1.8967400525467484, + "rhydon": 1.684084040670193, + "chansey": 26.45419876685326, + "tangela": 5.245424981084323, + "kangaskhan": 1.641990923041873, + "seadra": 3.3158089177129817, + "seaking": 2.204421513940524, + "starmie": 1.3694980657290814, + "mr-mime": 6.444895358186926, + "mr-mime-galar": 3.5138040102996815, + "scyther": 1.883552420076815, + "jynx": 5.010266013115925, + "electabuzz": 1.8592672901462868, + "magmar": 1.0595167777747183, + "tauros": 1.8891318162852673, + "ditto": 7.2797259293225265, + "vaporeon": 2.970777316645834, + "jolteon": 1.6467584238229511, + "flareon": 1.4630833413100903, + "porygon": 2.179000592435102, + "dragonair": 1.4318560653495076, + "noctowl": 3.960938764185046, + "lanturn": 1.6219245946528642, + "togetic": 3.23547503453203, + "xatu": 3.0103752825304744, + "bellossom": 2.8064325839092596, + "azumarill": 1.498412012491788, + "sudowoodo": 1.74124412681451, + "politoed": 2.520611506360202, + "quagsire": 4.252640338205028, + "slowking": 2.7392390155665733, + "dunsparce": 2.5772642973368, + "qwilfish": 2.5767828779091677, + "sneasel": 2.470624073116161, + "piloswine": 1.082946869475944, + "octillery": 2.1127151125093384, + "mantine": 1.7260393582980327, + "skarmory": 1.1935802334066783, + "hitmontop": 2.1641231206333686, + "miltank": 2.8882168118486624, + "grovyle": 11.623382414590806, + "sceptile": 1.892966924035286, + "combusken": 2.5844697630663864, + "blaziken": 1.1321537658834984, + "marshtomp": 2.171790174334161, + "swampert": 1.0559429047250701, + "linoone": 4.584088008122079, + "linoone-galar": 5.094338554496854, + "pelipper": 3.8643317854324994, + "ninjask": 6.53583983164048, + "exploud": 1.3088466602166227, + "lairon": 1.4192359950708684, + "manectric": 1.3973479965351698, + "roselia": 4.150319018564403, + "sharpedo": 5.587349576877385, + "wailmer": 5.355385074324537, + "torkoal": 1.139888011192514, + "flygon": 2.1967928010710724, + "altaria": 1.0609637829726792, + "whiscash": 1.670864693059702, + "crawdaunt": 2.037026052311562, + "claydol": 3.2413023848520766, + "cradily": 2.2542807579684068, + "armaldo": 1.4164380445192681, + "dusclops": 2.533385692771815, + "absol": 1.986853649583586, + "glalie": 3.21015952464527, + "sealeo": 2.5299918991303647, + "relicanth": 1.1452132061273568, + "metang": 2.2601460246962928, + "luxray": 2.874487915045618, + "vespiquen": 2.0331367401142297, + "cherrim": 7.6091306841868835, + "gastrodon": 1.6901006379317332, + "drifblim": 2.516411025102845, + "lopunny": 3.17245117046202, + "skuntank": 1.1568952799960766, + "bronzong": 2.709018710217672, + "munchlax": 1.89585453632886, + "drapion": 2.04188450542481, + "abomasnow": 3.4307049045227203, + "froslass": 1.8488022849176553, + "rotom": 2.3494374375544433, + "stoutland": 2.0316365532546063, + "liepard": 7.8828750185392575, + "musharna": 1.856150943996886, + "unfezant": 3.650352282782269, + "boldore": 2.2278783353768494, + "swoobat": 4.312693729744189, + "audino": 1.7982753572408532, + "gurdurr": 1.994071152925255, + "palpitoad": 3.5195531342671824, + "seismitoad": 5.509722486706155, + "scolipede": 2.444575742351887, + "whimsicott": 2.7344954934804733, + "lilligant": 4.103228540449868, + "basculin-red-striped": 2.2546665370623877, + "basculin-blue-striped": 3.096248396649709, + "krookodile": 3.3788425784980802, + "maractus": 2.9582333251165447, + "crustle": 1.463592666002068, + "sigilyph": 1.868917171124305, + "cofagrigus": 1.8271926765479405, + "garbodor": 1.492221319702865, + "cinccino": 3.572091037429841, + "vanillish": 1.575426184585031, + "emolga": 1.7246638145748694, + "escavalier": 1.5174833492526894, + "amoonguss": 2.4442091549882186, + "jellicent": 1.0201799001191958, + "galvantula": 1.18632392359777, + "klang": 1.6483643675123445, + "klinklang": 2.4874259958632132, + "beheeyem": 1.8500044537320075, + "lampent": 1.434688041401675, + "fraxure": 1.2813736992876197, + "beartic": 1.2928078884116352, + "cryogonal": 1.3848005813547148, + "accelgor": 3.1857965001568287, + "stunfisk": 1.1569750629519326, + "stunfisk-galar": 1.9530930325108047, + "mienshao": 2.1753058667188916, + "druddigon": 1.5647736752951462, + "golurk": 1.553331165859551, + "bisharp": 1.976104154392583, + "bouffalant": 1.1660838578825685, + "heatmor": 1.265905020183717, + "durant": 2.041752447047635, + "diggersby": 2.7216207939438233, + "talonflame": 1.6762083392640843, + "pangoro": 1.6286420973505493, + "doublade": 1.846574216248919, + "malamar": 4.100010037085963, + "barbaracle": 1.1485487161306835, + "heliolisk": 3.1597440903467593, + "tyrantrum": 1.093470656285238, + "aurorus": 1.5591302761443369, + "hawlucha": 2.509678375567432, + "dedenne": 1.9585515369479087, + "klefki": 2.223186386292888, + "trevenant": 3.2452308545656434, + "gourgeist-average": 3.8412146049619764, + "charjabug": 3.2569368830897405, + "vikavolt": 1.6240526200147847, + "ribombee": 3.793393063356785, + "lycanroc-midday": 1.8206883930593332, + "lycanroc-midnight": 1.599190097938387, + "mudsdale": 1.568161440235106, + "araquanid": 2.2333541681354983, + "lurantis": 3.0221369056475464, + "shiinotic": 3.977280368841803, + "salazzle": 2.605123395248998, + "bewear": 1.2482075079934378, + "tsareena": 3.540968244059047, + "comfey": 3.7131523574959084, + "oranguru": 3.191645839986448, + "passimian": 1.403431259258534, + "palossand": 1.5942082662357242, + "pyukumuku": 41.65022984983963, + "togedemaru": 1.7395618157954447, + "mimikyu-disguised": 2.5678573442347616, + "greedent": 1.7501180259616733, + "orbeetle": 2.195811240202217, + "thievul": 2.0105917818666565, + "eldegoss": 5.363308084678461, + "dubwool": 2.7867605041591132, + "drednaw": 0.7223300727888426, + "boltund": 3.6437882828461423, + "carkol": 1.3570663574403907, + "coalossal": 1.3785324919735369, + "sandaconda": 2.869339193994009, + "cramorant": 4.174500160013698, + "barraskewda": 3.8567718234484736, + "toxtricity-amped": 2.055187212946637, + "centiskorch": 1.5059114999836862, + "grapploct": 1.3919285503711758, + "polteageist": 2.2050258879742453, + "hatterene": 2.1991954055956215, + "grimmsnarl": 3.652077911729239, + "obstagoon": 2.5197460854463705, + "perrserker": 2.335958722340001, + "alcremie": 1.0716835152365252, + "falinks": 2.4958401740127005, + "pincurchin": 2.3624072974896153, + "frosmoth": 2.432277527168271, + "indeedee-male": 3.7326130470886687, + "morpeko": 2.5807247565962785, + "copperajah": 1.882128841796083, + "duraludon": 1.1195459575246742, + "drakloak": 3.2101574194564186 }, "exploud": { - "ivysaur": 3.5496796848632655, - "charmeleon": 4.049810642391453, - "wartortle": 2.802960078246599, - "butterfree": 4.864398888170344, - "raichu": 4.854522373810932, - "raichu-alola": 3.401228604053442, - "sandslash": 2.730453530823521, - "sandslash-alola": 3.082633568819933, - "nidoqueen": 3.370837052443931, - "nidoking": 2.1060231867831627, - "clefairy": 9.333039991156499, - "clefable": 2.1253868751295517, - "jigglypuff": 27.693511809277233, - "wigglytuff": 2.093906397963586, - "gloom": 6.502749180804251, - "vileplume": 3.4051685266334317, - "dugtrio": 3.9727322882048237, - "dugtrio-alola": 3.562555263491608, - "persian": 4.605505275085656, - "persian-alola": 4.651080361403352, - "golduck": 3.176229786446844, - "poliwrath": 1.8643617799140098, - "kadabra": 3.6997705869572313, - "machoke": 3.861191332921636, - "tentacruel": 2.2603258689441055, - "slowbro": 1.931384162574068, - "magneton": 3.5863977896625405, - "haunter": 4.373720503034457, - "kingler": 2.7120126683480494, - "exeggutor": 2.225170445691354, - "marowak": 3.6665639581496956, - "marowak-alola": 1.7283336557898314, - "hitmonlee": 2.0001376932504864, - "hitmonchan": 2.0373989835644295, - "lickitung": 2.136197233404406, - "weezing": 1.7918339286913505, - "weezing-galar": 2.978930601087042, - "rhydon": 2.9048985547790105, - "chansey": 20.306933098849406, - "tangela": 6.517950481165995, - "kangaskhan": 2.0029044540779957, - "seadra": 4.865959172637515, - "seaking": 2.447585142318106, - "starmie": 1.509739904925158, - "mr-mime": 6.540641525646487, - "mr-mime-galar": 3.6728169477230335, - "scyther": 3.0386153676694034, - "jynx": 4.054372893641416, - "electabuzz": 2.552477008401394, - "magmar": 1.677650936694043, - "tauros": 2.2088110082750805, - "ditto": 2.5841293396002465, - "vaporeon": 3.139158442412091, - "jolteon": 1.9660347082005705, - "flareon": 2.394471999121288, - "porygon": 3.048378108866915, - "dragonair": 2.128128149973419, - "noctowl": 5.967337415070831, - "lanturn": 1.9669715351213464, - "togetic": 5.937100954969598, - "xatu": 4.432261415377402, - "bellossom": 2.678023647407537, - "azumarill": 2.349681025110776, - "sudowoodo": 2.778970325253111, - "politoed": 2.558452014034838, - "quagsire": 4.809422611676615, - "slowking": 2.4413222081070747, - "dunsparce": 3.7953797792641306, - "qwilfish": 3.742237378825422, - "sneasel": 2.8882439187260918, - "piloswine": 1.743613845614019, - "octillery": 2.46253359175095, - "mantine": 2.312187481585568, - "skarmory": 2.011280136776844, - "hitmontop": 2.5443805064571983, - "miltank": 4.155972240699106, - "grovyle": 8.185754827223194, - "sceptile": 1.5540960298556667, - "combusken": 3.205580602165862, - "blaziken": 1.5895032866307077, - "marshtomp": 2.5753813841802646, - "swampert": 1.3209509945547115, - "linoone": 5.950004842943712, - "linoone-galar": 6.545634326272943, - "pelipper": 6.600076613370564, - "ninjask": 8.327937905812917, - "lairon": 4.1298642756729755, - "manectric": 1.8635400573540108, - "roselia": 4.206143610490459, - "sharpedo": 5.484445350919524, - "wailmer": 6.854674937219212, - "torkoal": 2.169156593194077, - "flygon": 3.834817252241889, - "altaria": 2.512599113685786, - "whiscash": 2.162149018249102, - "crawdaunt": 2.368697038270776, - "claydol": 3.7387538194086725, - "cradily": 2.5858893798115385, - "armaldo": 1.7463670476010864, - "dusclops": 3.4847989262780485, - "absol": 2.179602093270332, - "glalie": 4.479177355560315, - "sealeo": 3.50835921371745, - "relicanth": 2.170332412803138, - "metang": 2.61562429448576, - "luxray": 3.966455549576253, - "vespiquen": 2.9619745712776995, - "cherrim": 6.573449921570078, - "gastrodon": 2.1600364357181965, - "drifblim": 4.855700225691436, - "lopunny": 3.717862366198119, - "skuntank": 1.5435328291443402, - "bronzong": 2.7504886914169355, - "munchlax": 2.1932839099439088, - "drapion": 2.6508098239818034, - "abomasnow": 3.3512022221033444, - "froslass": 2.4664777586814357, - "rotom": 3.698400736745562, - "stoutland": 2.61559636884812, - "liepard": 7.6764516943797165, - "musharna": 1.5781607188588134, - "unfezant": 7.650822272561564, - "boldore": 3.742354957335264, - "swoobat": 6.3398942784226655, - "audino": 2.5064576316978595, - "gurdurr": 2.2089489094304664, - "palpitoad": 3.9915647400540832, - "seismitoad": 6.676126403896639, - "scolipede": 3.3783706639627518, - "whimsicott": 3.6826794077588265, - "lilligant": 3.509793263902541, - "basculin-red-striped": 2.968665087418815, - "basculin-blue-striped": 3.8752960593054295, - "krookodile": 3.330012752817724, - "maractus": 2.5563377820347353, - "crustle": 1.9069031510299044, - "sigilyph": 2.6876437613843533, - "cofagrigus": 2.7430257781489438, - "garbodor": 1.8591398872899734, - "cinccino": 5.006413307921747, - "vanillish": 2.3377798801214293, - "emolga": 3.5795894277660842, - "escavalier": 1.6040184716177897, - "amoonguss": 2.8735746921666787, - "jellicent": 1.1855350232112616, - "galvantula": 1.6709874366733817, - "klang": 3.0644264221406985, - "klinklang": 3.7279672746682815, - "beheeyem": 1.8334099990125412, - "lampent": 2.007063277505449, - "fraxure": 1.8834220092814493, - "beartic": 1.8560744375253455, - "cryogonal": 1.679056936205348, - "accelgor": 3.0540727749861882, - "stunfisk": 1.4474523982805714, - "stunfisk-galar": 2.52776899079854, - "mienshao": 3.327993129933193, - "druddigon": 2.0919470140672676, - "golurk": 2.1486989383428954, - "bisharp": 3.77304556998531, - "bouffalant": 1.3572796431571716, - "heatmor": 1.9939871404214937, - "durant": 2.8629549765834144, - "diggersby": 3.6782916556764156, - "talonflame": 3.078269772975777, - "pangoro": 1.8101783922756294, - "doublade": 1.8616270210337393, - "malamar": 2.9941698627566966, - "barbaracle": 1.6053804457737537, - "heliolisk": 3.670574158110276, - "tyrantrum": 1.9401488938901807, - "aurorus": 3.109373294649187, - "hawlucha": 3.8654790136819237, - "dedenne": 3.0216352246890357, - "klefki": 2.7132394576063454, - "trevenant": 3.230206230964973, - "gourgeist-average": 7.213834063118752, - "charjabug": 4.267618455152892, - "vikavolt": 1.9768009520211112, - "ribombee": 4.79205005995221, - "lycanroc-midday": 3.520107989470822, - "lycanroc-midnight": 2.3775812934496785, - "mudsdale": 1.6927956259287709, - "araquanid": 2.290256362830803, - "lurantis": 2.742660472698279, - "shiinotic": 4.912362899364429, - "salazzle": 3.31579045670646, - "bewear": 1.9967364166584414, - "tsareena": 3.4899148466629706, - "comfey": 4.562345231517457, - "oranguru": 2.6697527061489446, - "passimian": 2.3627737443436, - "palossand": 2.690999861339731, - "pyukumuku": 44.234415419426526, - "togedemaru": 2.344573572215892, - "mimikyu-disguised": 3.930612732177991, - "greedent": 2.396624039751052, - "orbeetle": 1.875907217527054, - "thievul": 1.8896434303285738, - "eldegoss": 4.272039233488752, - "dubwool": 3.084719186697275, - "drednaw": 1.3851485848646459, - "boltund": 4.901647095437806, - "carkol": 2.6016443505449858, - "coalossal": 2.162574792232921, - "sandaconda": 3.889778733334482, - "cramorant": 5.224066192611453, - "barraskewda": 4.866859149366815, - "toxtricity-amped": 2.797652028151175, - "centiskorch": 2.046692930585757, - "grapploct": 1.6501110194869346, - "polteageist": 2.301087724900169, - "hatterene": 2.5813101117758075, - "grimmsnarl": 3.7634391222135473, - "obstagoon": 3.687242808537434, - "perrserker": 3.751559134532953, - "alcremie": 1.428872570758639, - "falinks": 3.2210730742682174, - "pincurchin": 3.147607552436539, - "frosmoth": 2.6311493801927295, - "indeedee-male": 3.2545867035375498, - "morpeko": 3.0215635441018542, - "copperajah": 2.441456127830931, - "duraludon": 1.9593811498926383, - "drakloak": 5.612401813061256, - "exploud": 1.7224375604726103 + "ivysaur": 3.554023232019895, + "charmeleon": 4.053696039015334, + "wartortle": 2.804606896547811, + "butterfree": 4.8658709159066635, + "raichu": 4.854502214014373, + "raichu-alola": 3.400391078717295, + "sandslash": 2.7370388264905365, + "sandslash-alola": 3.0862811456796226, + "nidoqueen": 3.379334250511178, + "nidoking": 2.1090355692639857, + "clefairy": 9.342196920406106, + "clefable": 2.127389525150546, + "jigglypuff": 27.72915081486076, + "wigglytuff": 2.0963701601269014, + "gloom": 6.511311380389024, + "vileplume": 3.4102776536938064, + "dugtrio": 3.978019483384057, + "dugtrio-alola": 3.566025893794283, + "persian": 4.610783133095971, + "persian-alola": 4.658457109279793, + "golduck": 3.177960024552201, + "poliwrath": 1.8635617185449478, + "kadabra": 3.6969583063677716, + "machoke": 3.8618261706286994, + "tentacruel": 2.259744685588565, + "slowbro": 1.9324530852400248, + "magneton": 3.5912900575504176, + "haunter": 4.374173247486051, + "kingler": 2.7135079015983776, + "exeggutor": 2.227235281612381, + "marowak": 3.673867163978009, + "marowak-alola": 1.7260694031923298, + "hitmonlee": 1.9960366592890981, + "hitmonchan": 2.0372382324165255, + "lickitung": 2.140130618524392, + "weezing": 1.7946874330056017, + "weezing-galar": 2.9836849102581704, + "rhydon": 2.9102660547766646, + "chansey": 20.257064668317042, + "tangela": 6.534522950572027, + "kangaskhan": 2.0056828748328646, + "seadra": 4.873523931552143, + "seaking": 2.448502977582528, + "starmie": 1.5102135570131079, + "mr-mime": 6.5390494402039, + "mr-mime-galar": 3.6722063125809905, + "scyther": 3.040624481143154, + "jynx": 4.050741546490164, + "electabuzz": 2.553903523196235, + "magmar": 1.67836727762223, + "tauros": 2.211615327332396, + "ditto": 2.5682202951865882, + "vaporeon": 3.140374408646771, + "jolteon": 1.969338389562758, + "flareon": 2.3973482573273412, + "porygon": 3.053196673001154, + "dragonair": 2.131467385091064, + "noctowl": 5.97086887782492, + "lanturn": 1.9692089653891731, + "togetic": 5.944589300768019, + "xatu": 4.4377395227300305, + "bellossom": 2.682607579940102, + "azumarill": 2.3527737446751833, + "sudowoodo": 2.780855719460196, + "politoed": 2.5594913165368363, + "quagsire": 4.812980966965654, + "slowking": 2.440422937645953, + "dunsparce": 3.8061478756519618, + "qwilfish": 3.7445389497783843, + "sneasel": 2.891794349419392, + "piloswine": 1.7448723376276272, + "octillery": 2.464467580073665, + "mantine": 2.312656855092301, + "skarmory": 2.0146553778373404, + "hitmontop": 2.543690592288222, + "miltank": 4.164169672605377, + "grovyle": 8.1877804870695, + "sceptile": 1.556058750573459, + "combusken": 3.2035513556034143, + "blaziken": 1.5891881084754482, + "marshtomp": 2.578316031182883, + "swampert": 1.3229991794434826, + "linoone": 5.964330157783277, + "linoone-galar": 6.5607483217438425, + "pelipper": 6.605579889697495, + "ninjask": 8.332596088830362, + "exploud": 1.7224375604726103, + "lairon": 4.138980603598448, + "manectric": 1.8665158948643217, + "roselia": 4.209030084472377, + "sharpedo": 5.490560563350096, + "wailmer": 6.8607151404463576, + "torkoal": 2.1733268393970677, + "flygon": 3.843422047620124, + "altaria": 2.517889558899785, + "whiscash": 2.1645661074490694, + "crawdaunt": 2.3730044512101336, + "claydol": 3.742360449150909, + "cradily": 2.589681324334843, + "armaldo": 1.746868676062413, + "dusclops": 3.487613928441533, + "absol": 2.1834728986392777, + "glalie": 4.483351075279336, + "sealeo": 3.512259002437933, + "relicanth": 2.1721537331785563, + "metang": 2.615419136833098, + "luxray": 3.970276208800459, + "vespiquen": 2.9623156056437963, + "cherrim": 6.58300135216974, + "gastrodon": 2.161337281963089, + "drifblim": 4.852824153648273, + "lopunny": 3.7191624252755062, + "skuntank": 1.5462715606355548, + "bronzong": 2.750347952956248, + "munchlax": 2.1932738105026117, + "drapion": 2.656092060129599, + "abomasnow": 3.3532944283126676, + "froslass": 2.46302573873949, + "rotom": 3.699969597181468, + "stoutland": 2.6183640826435086, + "liepard": 7.689587476946703, + "musharna": 1.5787775931796086, + "unfezant": 7.669131486555157, + "boldore": 3.7466774159212575, + "swoobat": 6.347636053392121, + "audino": 2.5110912790663393, + "gurdurr": 2.2082615430255244, + "palpitoad": 3.997243570088546, + "seismitoad": 6.681523654461701, + "scolipede": 3.380179385037261, + "whimsicott": 3.688672801214589, + "lilligant": 3.5159455341963466, + "basculin-red-striped": 2.970864489996936, + "basculin-blue-striped": 3.8789893026680287, + "krookodile": 3.338521453141434, + "maractus": 2.5615320893903357, + "crustle": 1.9065182099245506, + "sigilyph": 2.690831009028349, + "cofagrigus": 2.7448691439150616, + "garbodor": 1.8586149144267918, + "cinccino": 5.013517018620132, + "vanillish": 2.3400531114769376, + "emolga": 3.5862521878601217, + "escavalier": 1.6038099665496, + "amoonguss": 2.877102935624114, + "jellicent": 1.1824824700195946, + "galvantula": 1.6724908040193855, + "klang": 3.0687318406748796, + "klinklang": 3.7316355527806344, + "beheeyem": 1.8339747228682772, + "lampent": 2.0027688325525954, + "fraxure": 1.8869405245446425, + "beartic": 1.8568757488824, + "cryogonal": 1.678838680958302, + "accelgor": 3.0543624689302127, + "stunfisk": 1.4498231650537758, + "stunfisk-galar": 2.531854629214623, + "mienshao": 3.328331981978712, + "druddigon": 2.095841474360406, + "golurk": 2.147639425438672, + "bisharp": 3.780891132429392, + "bouffalant": 1.3587787680472854, + "heatmor": 1.9966801062701878, + "durant": 2.8646438446472757, + "diggersby": 3.6863652080976896, + "talonflame": 3.0815288407450554, + "pangoro": 1.8111843794506512, + "doublade": 1.8561507166827733, + "malamar": 2.99714311472156, + "barbaracle": 1.6055197977951254, + "heliolisk": 3.674611808660355, + "tyrantrum": 1.9428812889584055, + "aurorus": 3.1116364896418593, + "hawlucha": 3.8664467756615792, + "dedenne": 3.0245766045549556, + "klefki": 2.7147505197426947, + "trevenant": 3.2246259040547876, + "gourgeist-average": 7.228190566566907, + "charjabug": 4.271965672648115, + "vikavolt": 1.9792156888716959, + "ribombee": 4.794282538337195, + "lycanroc-midday": 3.5229053571803446, + "lycanroc-midnight": 2.3774394193025956, + "mudsdale": 1.6933994773704053, + "araquanid": 2.2898740166399243, + "lurantis": 2.7466338422572933, + "shiinotic": 4.917428263182977, + "salazzle": 3.3172169784598102, + "bewear": 1.9996151732396688, + "tsareena": 3.4949919109501018, + "comfey": 4.566698000247292, + "oranguru": 2.670685750325127, + "passimian": 2.36370875888621, + "palossand": 2.6946801508619957, + "pyukumuku": 44.23575741294057, + "togedemaru": 2.3455052776868883, + "mimikyu-disguised": 3.931328055386773, + "greedent": 2.4005931412499524, + "orbeetle": 1.8759885931556826, + "thievul": 1.8914579198084192, + "eldegoss": 4.277209343618232, + "dubwool": 3.0862113118147456, + "drednaw": 1.385630309874521, + "boltund": 4.907802572738539, + "carkol": 2.603782207971215, + "coalossal": 2.164337404976532, + "sandaconda": 3.898845491214211, + "cramorant": 5.223045508330567, + "barraskewda": 4.8701167159443415, + "toxtricity-amped": 2.7992126821348995, + "centiskorch": 2.046569542075158, + "grapploct": 1.648753274563073, + "polteageist": 2.2964920707386116, + "hatterene": 2.5824473670631867, + "grimmsnarl": 3.764796750250053, + "obstagoon": 3.6958828689669723, + "perrserker": 3.757487804021731, + "alcremie": 1.4297104525586128, + "falinks": 3.222113139994245, + "pincurchin": 3.152620750529331, + "frosmoth": 2.6298885379446837, + "indeedee-male": 3.2585806902359655, + "morpeko": 3.0270916068641114, + "copperajah": 2.441699637625617, + "duraludon": 1.96491798871851, + "drakloak": 5.615773774909533 }, "lairon": { - "ivysaur": 3.2990499635532338, - "charmeleon": 4.93334424039499, - "wartortle": 1.9835313572616156, - "butterfree": 9.695268533210875, - "raichu": 3.8258000621501616, - "raichu-alola": 3.6542260535243, - "sandslash": 1.9696820250796705, - "sandslash-alola": 1.972647724616979, - "nidoqueen": 2.1222286376442225, - "nidoking": 1.7772796104191708, - "clefairy": 12.461741227505435, - "clefable": 3.1203036991435185, - "jigglypuff": 40.524409071234075, - "wigglytuff": 2.987664977734944, - "gloom": 6.512624672180628, - "vileplume": 2.9018533609796644, - "dugtrio": 3.525611618515565, - "dugtrio-alola": 2.7208591703791, - "persian": 5.084908462613864, - "persian-alola": 4.125821287706228, - "golduck": 2.6829458579563417, - "poliwrath": 1.4637265707125309, - "kadabra": 4.733643512090004, - "machoke": 3.6515039928843014, - "tentacruel": 2.104207332493343, - "slowbro": 1.7084362404443176, - "magneton": 2.2844880324153207, - "haunter": 4.414366299313446, - "kingler": 1.8729817448859278, - "exeggutor": 1.8400363622464893, - "marowak": 2.7429984678201986, - "marowak-alola": 2.6925252815574945, - "hitmonlee": 2.285891146322019, - "hitmonchan": 2.2796696829098915, - "lickitung": 1.70321510438635, - "weezing": 1.470752726709364, - "weezing-galar": 3.2587393634907893, - "rhydon": 2.297744554061296, - "chansey": 35.400632519779926, - "tangela": 4.708874631784109, - "kangaskhan": 1.9653789728616755, - "seadra": 3.283159752326963, - "seaking": 2.421523512654204, - "starmie": 1.5023167653490601, - "mr-mime": 10.920213659506814, - "mr-mime-galar": 5.245355871077537, - "scyther": 5.626006136108158, - "jynx": 7.096687545039169, - "electabuzz": 2.469604883908939, - "magmar": 2.2356158520852896, - "tauros": 1.7931933063701335, - "ditto": 2.645117607167901, - "vaporeon": 2.815811601011321, - "jolteon": 2.03102520474976, - "flareon": 3.181519932173286, - "porygon": 2.944195895580099, - "dragonair": 2.0697361248612616, - "noctowl": 9.750576103459098, - "lanturn": 1.5741209606126305, - "togetic": 7.587626744630683, - "xatu": 5.2797910442272675, - "bellossom": 2.348052203054313, - "azumarill": 2.3696609729157756, - "sudowoodo": 2.731422931840955, - "politoed": 2.023172599765823, - "quagsire": 2.504762310809684, - "slowking": 2.595556974633241, - "dunsparce": 3.4295933517344115, - "qwilfish": 3.3463752236239666, - "sneasel": 3.1433256861318957, - "piloswine": 1.9572968516991922, - "octillery": 2.065741276856367, - "mantine": 3.40096603013045, - "skarmory": 1.989358189928313, - "hitmontop": 2.405321919803926, - "miltank": 3.9847548821935437, - "grovyle": 7.344281816550792, - "sceptile": 1.4834216185029159, - "combusken": 2.381409402949707, - "blaziken": 1.4482241852478301, - "marshtomp": 1.8351756223992588, - "swampert": 0.8143489276968723, - "linoone": 5.947286048413254, - "linoone-galar": 4.5193381843077765, - "pelipper": 8.42356627363641, - "ninjask": 14.110504263761463, - "exploud": 1.5435531016620836, - "manectric": 1.7754234154212725, - "roselia": 4.23480234224732, - "sharpedo": 5.177058198122479, - "wailmer": 5.7044621862638, - "torkoal": 1.929200482297232, - "flygon": 2.2519833083074623, - "altaria": 2.0884644033487807, - "whiscash": 1.3534841226025716, - "crawdaunt": 1.541505348872834, - "claydol": 3.6239733635218374, - "cradily": 3.08499719938653, - "armaldo": 2.377964325314987, - "dusclops": 3.4791570783207018, - "absol": 2.088803007465831, - "glalie": 5.901417743608308, - "sealeo": 3.627395379506239, - "relicanth": 1.853701628912083, - "metang": 2.589644384144738, - "luxray": 3.8007988038374325, - "vespiquen": 5.229084664478629, - "cherrim": 5.78278430997015, - "gastrodon": 1.9752901440869732, - "drifblim": 5.7051303189121825, - "lopunny": 3.889932496681222, - "skuntank": 1.4841209284320855, - "bronzong": 2.8913973287579386, - "munchlax": 2.869471710611112, - "drapion": 2.504456225561158, - "abomasnow": 4.55716061941925, - "froslass": 4.007916322164848, - "rotom": 3.354005008674557, - "stoutland": 2.883269405847427, - "liepard": 7.767634189245751, - "musharna": 1.60708534173948, - "unfezant": 8.765480784879845, - "boldore": 3.2600311073425066, - "swoobat": 7.568567913479733, - "audino": 2.475978785542881, - "gurdurr": 1.658418928610454, - "palpitoad": 2.286141199885553, - "seismitoad": 6.460454857568256, - "scolipede": 4.293853526249242, - "whimsicott": 4.188621773595959, - "lilligant": 2.9249920545935257, - "basculin-red-striped": 2.7651048743570863, - "basculin-blue-striped": 3.0810867579634262, - "krookodile": 2.182989082814939, - "maractus": 2.090395501651457, - "crustle": 2.477754110572019, - "sigilyph": 3.062469428568159, - "cofagrigus": 2.396897614064695, - "garbodor": 1.972031565048802, - "cinccino": 5.354009565052996, - "vanillish": 3.113426447682839, - "emolga": 3.8304716263031677, - "escavalier": 1.6743407138756994, - "amoonguss": 2.7839575553118237, - "jellicent": 1.6997359698491503, - "galvantula": 1.9407704865884339, - "klang": 2.135098642249952, - "klinklang": 2.988325852353377, - "beheeyem": 1.9191352221938258, - "lampent": 3.1026448851820527, - "fraxure": 1.7313663296165587, - "beartic": 2.1271516846018885, - "cryogonal": 2.7786475908106074, - "accelgor": 4.537323360087766, - "stunfisk": 0.7755307294323787, - "stunfisk-galar": 1.4016589553110526, - "mienshao": 2.779820578207526, - "druddigon": 1.8710336393703237, - "golurk": 1.5001715011978793, - "bisharp": 2.218326295936495, - "bouffalant": 1.311641201306135, - "heatmor": 2.408282719692448, - "durant": 2.871491850823153, - "diggersby": 2.9474731579237776, - "talonflame": 5.6760366500768065, - "pangoro": 1.6146370600511486, - "doublade": 1.6996095111620315, - "malamar": 2.8249464014308656, - "barbaracle": 1.5126248348537157, - "heliolisk": 3.366500873700022, - "tyrantrum": 1.850928277973496, - "aurorus": 4.643633834289225, - "hawlucha": 3.3323372265224855, - "dedenne": 3.0462376833433766, - "klefki": 3.147268207644705, - "trevenant": 2.911409304868592, - "gourgeist-average": 4.83054717728333, - "charjabug": 4.777756827744998, - "vikavolt": 2.182028320001356, - "ribombee": 6.769313312312466, - "lycanroc-midday": 4.905473537679733, - "lycanroc-midnight": 3.088689522414323, - "mudsdale": 1.320216704749818, - "araquanid": 3.5843068990125797, - "lurantis": 2.473313100874727, - "shiinotic": 6.526676783486655, - "salazzle": 4.105418670175589, - "bewear": 2.0057818894612858, - "tsareena": 3.4185079967686303, - "comfey": 6.237530815541697, - "oranguru": 3.0204990293890237, - "passimian": 2.1161028726658957, - "palossand": 1.407665761662792, - "pyukumuku": 43.47230712918859, - "togedemaru": 1.9334346377829004, - "mimikyu-disguised": 6.72420820291112, - "greedent": 2.3713421278372855, - "orbeetle": 2.443590747601801, - "thievul": 1.8277817772528357, - "eldegoss": 3.910841971894038, - "dubwool": 2.931773946120998, - "drednaw": 1.3498575975675604, - "boltund": 4.561929505726052, - "carkol": 2.9292614894840847, - "coalossal": 2.0754246569462653, - "sandaconda": 2.3339689467765306, - "cramorant": 7.960240952345536, - "barraskewda": 4.622177539402818, - "toxtricity-amped": 2.783335017144703, - "centiskorch": 3.651502973253987, - "grapploct": 1.1737847694936254, - "polteageist": 3.000361210351291, - "hatterene": 3.7146864113553217, - "grimmsnarl": 4.7595789829439905, - "obstagoon": 2.6376434081440063, - "perrserker": 2.626437591823846, - "alcremie": 2.196383960095369, - "falinks": 2.777462764738833, - "pincurchin": 2.505045293670012, - "frosmoth": 5.524311565327148, - "indeedee-male": 3.3386174267067843, - "morpeko": 2.6903109671411585, - "copperajah": 1.7948415164571205, - "duraludon": 1.2590498699773205, - "drakloak": 4.737873129455827, - "lairon": 2.386420018966194 + "ivysaur": 3.2976524523756376, + "charmeleon": 4.929454241168077, + "wartortle": 1.9708060650446055, + "butterfree": 9.715671377513093, + "raichu": 3.800988794287349, + "raichu-alola": 3.6498509614587817, + "sandslash": 1.9662385877482222, + "sandslash-alola": 1.9703736623711712, + "nidoqueen": 2.109702663314972, + "nidoking": 1.7743240839040224, + "clefairy": 12.457656489072068, + "clefable": 3.126285348039338, + "jigglypuff": 40.60163909876573, + "wigglytuff": 2.9933398824987423, + "gloom": 6.524882754205164, + "vileplume": 2.898514056981093, + "dugtrio": 3.510548571808621, + "dugtrio-alola": 2.711811037686366, + "persian": 5.096742998170264, + "persian-alola": 4.124271121453591, + "golduck": 2.6734382593825234, + "poliwrath": 1.458618112393724, + "kadabra": 4.741083496684178, + "machoke": 3.644204751111909, + "tentacruel": 2.0957726892373327, + "slowbro": 1.706428653307747, + "magneton": 2.274383408450659, + "haunter": 4.409281358741559, + "kingler": 1.8642728918479092, + "exeggutor": 1.8366662867573567, + "marowak": 2.7355512100426314, + "marowak-alola": 2.6963667665435684, + "hitmonlee": 2.278484754356546, + "hitmonchan": 2.2785022235854093, + "lickitung": 1.700053585517386, + "weezing": 1.4707839379004952, + "weezing-galar": 3.2619180657028304, + "rhydon": 2.292434042537116, + "chansey": 35.496602805584004, + "tangela": 4.708607678275012, + "kangaskhan": 1.9661441486824298, + "seadra": 3.268536813160093, + "seaking": 2.418309770470244, + "starmie": 1.502486498073603, + "mr-mime": 10.941088625008817, + "mr-mime-galar": 5.255371298832172, + "scyther": 5.648529222262653, + "jynx": 7.117275946496515, + "electabuzz": 2.4650264549029686, + "magmar": 2.2356326230868726, + "tauros": 1.7888970643075353, + "ditto": 2.6292501124862184, + "vaporeon": 2.8044614743507665, + "jolteon": 2.0270977099583707, + "flareon": 3.180319405599951, + "porygon": 2.9442157772477904, + "dragonair": 2.071139787188997, + "noctowl": 9.788104595360869, + "lanturn": 1.5659463217959784, + "togetic": 7.603366265610388, + "xatu": 5.289537388120361, + "bellossom": 2.3450296618860595, + "azumarill": 2.3726166964976128, + "sudowoodo": 2.7268859909463314, + "politoed": 2.011970650771289, + "quagsire": 2.481799623234413, + "slowking": 2.5941299473120893, + "dunsparce": 3.431004768059391, + "qwilfish": 3.3450651448139874, + "sneasel": 3.1508574699978604, + "piloswine": 1.9567942003079413, + "octillery": 2.058724989375227, + "mantine": 3.3977715790173697, + "skarmory": 1.9910709496873422, + "hitmontop": 2.397385698723335, + "miltank": 3.992999577070875, + "grovyle": 7.324219322868079, + "sceptile": 1.4817932032713395, + "combusken": 2.365631066759285, + "blaziken": 1.444194472924687, + "marshtomp": 1.8271350116603169, + "swampert": 0.8071256049962869, + "linoone": 5.958308576275696, + "linoone-galar": 4.51649357924347, + "pelipper": 8.444918064120854, + "ninjask": 14.128951758013576, + "exploud": 1.5384397973486648, + "lairon": 2.386420018966194, + "manectric": 1.7729009134313058, + "roselia": 4.23246537159812, + "sharpedo": 5.1748617291913614, + "wailmer": 5.684706129001201, + "torkoal": 1.9269563749953118, + "flygon": 2.246590108146452, + "altaria": 2.0897544358623215, + "whiscash": 1.349195824948376, + "crawdaunt": 1.5377306678203086, + "claydol": 3.624116156225856, + "cradily": 3.0876874571827697, + "armaldo": 2.381358200026752, + "dusclops": 3.4797746786963075, + "absol": 2.0897486982937408, + "glalie": 5.918657107291809, + "sealeo": 3.62074856830547, + "relicanth": 1.8532145919440448, + "metang": 2.5888670610402427, + "luxray": 3.796558061055592, + "vespiquen": 5.241500880651399, + "cherrim": 5.775853214912174, + "gastrodon": 1.9741879838682403, + "drifblim": 5.706166576990725, + "lopunny": 3.890437669398256, + "skuntank": 1.48555112388097, + "bronzong": 2.8927991477007353, + "munchlax": 2.8772246138136435, + "drapion": 2.5074811169432456, + "abomasnow": 4.569829307868404, + "froslass": 4.015771031046198, + "rotom": 3.3461388482231493, + "stoutland": 2.8905560343071524, + "liepard": 7.778229340036702, + "musharna": 1.6067795388084565, + "unfezant": 8.796415364386556, + "boldore": 3.253388657824396, + "swoobat": 7.5826752722432555, + "audino": 2.475415881456187, + "gurdurr": 1.6493477352907626, + "palpitoad": 2.2684939759944642, + "seismitoad": 6.469222333926595, + "scolipede": 4.3035238966709075, + "whimsicott": 4.193185325990499, + "lilligant": 2.920417559250121, + "basculin-red-striped": 2.7625428180317986, + "basculin-blue-striped": 3.0696249366518646, + "krookodile": 2.1706530347584048, + "maractus": 2.0870002200912374, + "crustle": 2.4805160744502692, + "sigilyph": 3.0651099756255, + "cofagrigus": 2.393743584776077, + "garbodor": 1.9737938662950727, + "cinccino": 5.3660515266860465, + "vanillish": 3.1204170134492664, + "emolga": 3.830301026157753, + "escavalier": 1.6706363581565364, + "amoonguss": 2.7862747653246895, + "jellicent": 1.6997496288538114, + "galvantula": 1.9385214261352404, + "klang": 2.128649019451663, + "klinklang": 2.988119270360723, + "beheeyem": 1.918891977746898, + "lampent": 3.1017233061922385, + "fraxure": 1.7347861271440894, + "beartic": 2.1250099205190596, + "cryogonal": 2.784866970143896, + "accelgor": 4.545669695501041, + "stunfisk": 0.7691660775099524, + "stunfisk-galar": 1.3912784292314035, + "mienshao": 2.766623125451585, + "druddigon": 1.8710512879887247, + "golurk": 1.4928662642857022, + "bisharp": 2.2187669354072117, + "bouffalant": 1.3113139938454927, + "heatmor": 2.4075834353705536, + "durant": 2.871707305274132, + "diggersby": 2.939017330770624, + "talonflame": 5.68559686669261, + "pangoro": 1.6105342605918214, + "doublade": 1.6951015879105469, + "malamar": 2.8230500677251382, + "barbaracle": 1.513027664197541, + "heliolisk": 3.355355854859085, + "tyrantrum": 1.8514064235604895, + "aurorus": 4.654329465579298, + "hawlucha": 3.327967353070214, + "dedenne": 3.044354630701575, + "klefki": 3.146690675960074, + "trevenant": 2.908101674955407, + "gourgeist-average": 4.826761478221112, + "charjabug": 4.7723494922196075, + "vikavolt": 2.1790963676795165, + "ribombee": 6.7851377082462525, + "lycanroc-midday": 4.920387353091279, + "lycanroc-midnight": 3.090586158009062, + "mudsdale": 1.3149232622200073, + "araquanid": 3.5909274149489594, + "lurantis": 2.4725549601557395, + "shiinotic": 6.538528912509051, + "salazzle": 4.105218025238406, + "bewear": 2.0087793472116164, + "tsareena": 3.4233624360483326, + "comfey": 6.241539761044479, + "oranguru": 3.0230523280781454, + "passimian": 2.1118666031909807, + "palossand": 1.398317725719414, + "pyukumuku": 43.34344355872713, + "togedemaru": 1.931757770326039, + "mimikyu-disguised": 6.74681058810542, + "greedent": 2.3754395859116335, + "orbeetle": 2.445907958131198, + "thievul": 1.8268194172548922, + "eldegoss": 3.9059313237333146, + "dubwool": 2.929346409071726, + "drednaw": 1.3498544742480572, + "boltund": 4.55549251335813, + "carkol": 2.9281911969732937, + "coalossal": 2.071018757138614, + "sandaconda": 2.321242877755588, + "cramorant": 7.9646225069880074, + "barraskewda": 4.61959590118423, + "toxtricity-amped": 2.7785337797507905, + "centiskorch": 3.6463379920534127, + "grapploct": 1.164866464125514, + "polteageist": 3.002331322406041, + "hatterene": 3.723078820622554, + "grimmsnarl": 4.7521771622917175, + "obstagoon": 2.637857399439902, + "perrserker": 2.622329710837919, + "alcremie": 2.1980861238818568, + "falinks": 2.77063100374605, + "pincurchin": 2.492428981812738, + "frosmoth": 5.543898711230444, + "indeedee-male": 3.3355719127615755, + "morpeko": 2.6869165224671674, + "copperajah": 1.7883693581112687, + "duraludon": 1.2566784133641233, + "drakloak": 4.739874469922841 }, "manectric": { - "ivysaur": 3.70692387274686, - "charmeleon": 3.7684674977131527, - "wartortle": 3.587114134883815, - "butterfree": 5.324948677051645, - "raichu": 5.656475201075445, - "raichu-alola": 3.535493328117922, - "sandslash": 2.0607764898978447, - "sandslash-alola": 4.046932787061106, - "nidoqueen": 2.5916286160561253, - "nidoking": 1.8514547465367135, - "clefairy": 8.798826343597625, - "clefable": 1.9335391424023403, - "jigglypuff": 26.151808107934144, - "wigglytuff": 1.9251929060535615, - "gloom": 6.814860577149863, - "vileplume": 3.5775704453435173, - "dugtrio": 3.0375582870858198, - "dugtrio-alola": 3.9717335318358042, - "persian": 4.112706422557295, - "persian-alola": 4.079915071251305, - "golduck": 3.9848453804133523, - "poliwrath": 2.519126728448456, - "kadabra": 3.4333433737701693, - "machoke": 3.940145494483165, - "tentacruel": 2.7194501823951978, - "slowbro": 2.4327038170870448, - "magneton": 5.3238060415212605, - "haunter": 4.807861588863748, - "kingler": 3.670398481053623, - "exeggutor": 2.2478672745439017, - "marowak": 2.8326944631487017, - "marowak-alola": 2.1613705902612335, - "hitmonlee": 2.7215922599855955, - "hitmonchan": 2.49153027710154, - "lickitung": 1.95777903022679, - "weezing": 1.6763351016888648, - "weezing-galar": 2.798483807604321, - "rhydon": 1.8808612395458213, - "chansey": 24.013933324972108, - "tangela": 7.159939961986511, - "kangaskhan": 1.7399010340460954, - "seadra": 6.310263215247894, - "seaking": 2.971148743278591, - "starmie": 1.8544587410202746, - "mr-mime": 6.1061859147654225, - "mr-mime-galar": 4.048001242505869, - "scyther": 3.608807186179665, - "jynx": 5.719116191972004, - "electabuzz": 3.3345827126115086, - "magmar": 1.5484932602814896, - "tauros": 1.972401976565678, - "ditto": 2.160928482277927, - "vaporeon": 3.811411348719801, - "jolteon": 1.922837633011278, - "flareon": 2.101961798643071, - "porygon": 2.941974561764237, - "dragonair": 1.620000689455472, - "noctowl": 6.8893309761244925, - "lanturn": 1.8466367340060612, - "togetic": 6.694393062320778, - "xatu": 5.177766831739223, - "bellossom": 2.7683377501422886, - "azumarill": 3.2329471273924884, - "sudowoodo": 2.5467281741738543, - "politoed": 2.94068160410574, - "quagsire": 4.038763767937303, - "slowking": 2.9610968611519506, - "dunsparce": 3.3287234997494055, - "qwilfish": 4.990240025917503, - "sneasel": 2.5387884148264694, - "piloswine": 1.5335987004078797, - "octillery": 3.1607971869035483, - "mantine": 4.183977021776658, - "skarmory": 3.52196106771666, - "hitmontop": 2.632511250640518, - "miltank": 3.728914327838937, - "grovyle": 8.990414899770208, - "sceptile": 1.642848191909008, - "combusken": 3.4121822253695515, - "blaziken": 1.6556702605872982, - "marshtomp": 2.0147674440764822, - "swampert": 1.0140457907569638, - "linoone": 5.062459082931278, - "linoone-galar": 4.54088591298322, - "pelipper": 13.596957301369322, - "ninjask": 9.25759102802153, - "exploud": 1.5512212733536426, - "lairon": 2.785187867974777, - "roselia": 4.452990164666566, - "sharpedo": 6.508443182825638, - "wailmer": 9.069494734311759, - "torkoal": 1.9889546953354416, - "flygon": 1.9907286306933258, - "altaria": 1.5095580112979352, - "whiscash": 1.743179941149654, - "crawdaunt": 2.806125194314494, - "claydol": 3.041783027297507, - "cradily": 2.093435725263597, - "armaldo": 1.788110223645941, - "dusclops": 3.3388650375200104, - "absol": 1.950420814268362, - "glalie": 5.041364213036183, - "sealeo": 4.072673900739811, - "relicanth": 2.711361121684692, - "metang": 4.3382651505184535, - "luxray": 4.3891640824561335, - "vespiquen": 3.6287710354127363, - "cherrim": 6.860675244482264, - "gastrodon": 1.818228618318114, - "drifblim": 6.459120140671581, - "lopunny": 3.5936111844142617, - "skuntank": 1.4717816292880737, - "bronzong": 4.143334544173444, - "munchlax": 2.153984937632315, - "drapion": 2.6178879690001695, - "abomasnow": 5.04436607582986, - "froslass": 3.5902847709280494, - "rotom": 4.170393434904367, - "stoutland": 2.333451628268451, - "liepard": 6.933765970638515, - "musharna": 1.4823171587935629, - "unfezant": 9.831933944273606, - "boldore": 3.4090683254775094, - "swoobat": 7.415787093229693, - "audino": 2.1582912322499763, - "gurdurr": 2.248359995372198, - "palpitoad": 3.0545459457114443, - "seismitoad": 5.339315877375275, - "scolipede": 4.135993407993362, - "whimsicott": 4.02223345783606, - "lilligant": 3.681299254561835, - "basculin-red-striped": 3.8120051032139735, - "basculin-blue-striped": 4.942099431343998, - "krookodile": 2.5161958578366286, - "maractus": 2.7091421359029626, - "crustle": 2.1696986381304613, - "sigilyph": 3.190573619274645, - "cofagrigus": 2.7027386869392585, - "garbodor": 1.9054613742260411, - "cinccino": 4.477179453849256, - "vanillish": 2.4798659587923852, - "emolga": 4.285340400168627, - "escavalier": 3.1940472071398953, - "amoonguss": 3.003261051631783, - "jellicent": 1.9052743127320246, - "galvantula": 2.6423418077095624, - "klang": 4.254847459056333, - "klinklang": 4.7676223514456115, - "beheeyem": 1.7134696271086396, - "lampent": 2.4755130252259647, - "fraxure": 1.3349304538413564, - "beartic": 2.063127164420365, - "cryogonal": 1.7215500179786152, - "accelgor": 3.4438410879976122, - "stunfisk": 1.220810138585728, - "stunfisk-galar": 2.7324760150544853, - "mienshao": 3.422071126028041, - "druddigon": 1.5611982235961166, - "golurk": 1.6755961886191728, - "bisharp": 3.1959886909564, - "bouffalant": 1.2989574574453262, - "heatmor": 1.8746066767100578, - "durant": 7.794519315025003, - "diggersby": 2.7144845190150777, - "talonflame": 4.112409747319044, - "pangoro": 1.7793934671915044, - "doublade": 4.1153368109052435, - "malamar": 3.0733298471772628, - "barbaracle": 1.9518865126314795, - "heliolisk": 4.44496912037031, - "tyrantrum": 1.3549201183668278, - "aurorus": 2.536291310908398, - "hawlucha": 4.710309692758188, - "dedenne": 2.95427372540364, - "klefki": 4.229225151934152, - "trevenant": 3.688369275366575, - "gourgeist-average": 7.132786105329417, - "charjabug": 5.830368630221947, - "vikavolt": 2.475998139090364, - "ribombee": 5.555033020681799, - "lycanroc-midday": 3.259137483523605, - "lycanroc-midnight": 2.294125766255889, - "mudsdale": 1.4368440928902781, - "araquanid": 2.8657177404601133, - "lurantis": 2.880812415701071, - "shiinotic": 5.112942837795858, - "salazzle": 3.2793563816829465, - "bewear": 1.7847065427926823, - "tsareena": 3.875036449048635, - "comfey": 4.286357128876745, - "oranguru": 2.5078894752090974, - "passimian": 2.4923332293698577, - "palossand": 1.8344494175197323, - "pyukumuku": 58.01192857687177, - "togedemaru": 3.3022199748320644, - "mimikyu-disguised": 3.803331701188715, - "greedent": 2.2065585165033106, - "orbeetle": 2.1312703586927118, - "thievul": 1.6861251817109941, - "eldegoss": 4.428218038968507, - "dubwool": 3.6116730079355452, - "drednaw": 1.7042799302582734, - "boltund": 5.263110578687217, - "carkol": 2.3782499998725384, - "coalossal": 1.9666169277000163, - "sandaconda": 2.9103037954136024, - "cramorant": 9.204981185744494, - "barraskewda": 6.249212202338759, - "toxtricity-amped": 3.023865287439042, - "centiskorch": 1.8465443684766472, - "grapploct": 1.6918398330496716, - "polteageist": 2.432030822979324, - "hatterene": 2.4358323859970983, - "grimmsnarl": 3.733870708227, - "obstagoon": 2.732373558249811, - "perrserker": 5.0760596265176865, - "alcremie": 1.3157970454450918, - "falinks": 3.3794119052618576, - "pincurchin": 3.3153914417362635, - "frosmoth": 4.026113240042056, - "indeedee-male": 2.911659718262509, - "morpeko": 3.2049358993761867, - "copperajah": 3.2414529807993944, - "duraludon": 1.8674200124284583, - "drakloak": 3.6710745725736214, - "manectric": 1.805333034913606 + "ivysaur": 3.7117168221249583, + "charmeleon": 3.768301881695636, + "wartortle": 3.5901115509076815, + "butterfree": 5.33036580683984, + "raichu": 5.673320660006647, + "raichu-alola": 3.540396644560735, + "sandslash": 2.057535865140687, + "sandslash-alola": 4.0563399300321805, + "nidoqueen": 2.5878829149937506, + "nidoking": 1.8516341083733732, + "clefairy": 8.806257218674245, + "clefable": 1.9352177456390611, + "jigglypuff": 26.17000234514427, + "wigglytuff": 1.9260444754682573, + "gloom": 6.823130590152307, + "vileplume": 3.5826169684658224, + "dugtrio": 3.0285232010393743, + "dugtrio-alola": 3.9684008955530694, + "persian": 4.111846277240933, + "persian-alola": 4.078143018739764, + "golduck": 3.9866330236348118, + "poliwrath": 2.5222791611000663, + "kadabra": 3.428809314254618, + "machoke": 3.9464634142480106, + "tentacruel": 2.722512736080924, + "slowbro": 2.433694580462401, + "magneton": 5.35391372997618, + "haunter": 4.813488511870812, + "kingler": 3.6723226037710157, + "exeggutor": 2.2463101555028757, + "marowak": 2.828269019136603, + "marowak-alola": 2.161989173199932, + "hitmonlee": 2.723850416879703, + "hitmonchan": 2.49822809807843, + "lickitung": 1.9614552669911636, + "weezing": 1.6789504464267588, + "weezing-galar": 2.803754350631147, + "rhydon": 1.8747439364814067, + "chansey": 23.957807620243962, + "tangela": 7.169369615467, + "kangaskhan": 1.7390052142117358, + "seadra": 6.315217506785083, + "seaking": 2.9711339608741065, + "starmie": 1.855097448865525, + "mr-mime": 6.101552213899111, + "mr-mime-galar": 4.047955541131884, + "scyther": 3.6176337256925364, + "jynx": 5.720968797336029, + "electabuzz": 3.3542384458835413, + "magmar": 1.547873783591708, + "tauros": 1.9720324026951734, + "ditto": 2.1512720378307337, + "vaporeon": 3.8126430086497427, + "jolteon": 1.9262745532970333, + "flareon": 2.098614722428022, + "porygon": 2.947040858259702, + "dragonair": 1.6207099767663673, + "noctowl": 6.898844897803698, + "lanturn": 1.8463531459517508, + "togetic": 6.703525184192028, + "xatu": 5.1863333960049225, + "bellossom": 2.7703847688709273, + "azumarill": 3.2397768885234193, + "sudowoodo": 2.5439063439874965, + "politoed": 2.938263002217637, + "quagsire": 4.0336234436355305, + "slowking": 2.960533788038653, + "dunsparce": 3.3321212931678077, + "qwilfish": 4.998447474264344, + "sneasel": 2.537840567490809, + "piloswine": 1.5328087491299982, + "octillery": 3.1642348846275796, + "mantine": 4.193219403963398, + "skarmory": 3.5370554500802878, + "hitmontop": 2.6330364448801853, + "miltank": 3.730986177934837, + "grovyle": 8.994858530984448, + "sceptile": 1.643516912786649, + "combusken": 3.415256889686794, + "blaziken": 1.6571749132770646, + "marshtomp": 2.0101924674893885, + "swampert": 1.0113003395912246, + "linoone": 5.062725273667821, + "linoone-galar": 4.538092880424628, + "pelipper": 13.627422303589412, + "ninjask": 9.26817960109862, + "exploud": 1.5511674387227545, + "lairon": 2.7897670469286826, + "manectric": 1.805333034913606, + "roselia": 4.4573835560995185, + "sharpedo": 6.5075643773138285, + "wailmer": 9.085470505429313, + "torkoal": 1.9902892046777843, + "flygon": 1.9869944109907773, + "altaria": 1.5090261178966982, + "whiscash": 1.7412403682731825, + "crawdaunt": 2.807084570800672, + "claydol": 3.0366065508930413, + "cradily": 2.091762507893905, + "armaldo": 1.787018933894867, + "dusclops": 3.339424133732906, + "absol": 1.9497860780410825, + "glalie": 5.047929085930534, + "sealeo": 4.074504978817615, + "relicanth": 2.711990365583656, + "metang": 4.3543024208890975, + "luxray": 4.406524746239477, + "vespiquen": 3.63795934037318, + "cherrim": 6.8634762933552675, + "gastrodon": 1.815167702219084, + "drifblim": 6.48617514488318, + "lopunny": 3.5954539177307208, + "skuntank": 1.4724374213478444, + "bronzong": 4.1507189565363865, + "munchlax": 2.154922622573342, + "drapion": 2.621379272749806, + "abomasnow": 5.049434045555184, + "froslass": 3.5939338464149886, + "rotom": 4.185325075441528, + "stoutland": 2.332656531339348, + "liepard": 6.932297130941569, + "musharna": 1.4818195383453108, + "unfezant": 9.869758322955356, + "boldore": 3.406011383843076, + "swoobat": 7.428109938440574, + "audino": 2.1589825516880734, + "gurdurr": 2.2501020870169683, + "palpitoad": 3.047184330331015, + "seismitoad": 5.327693689808344, + "scolipede": 4.145597555406862, + "whimsicott": 4.028288638866259, + "lilligant": 3.6836941951566256, + "basculin-red-striped": 3.8148124765667424, + "basculin-blue-striped": 4.94609330956721, + "krookodile": 2.5094182506631317, + "maractus": 2.7118758034456096, + "crustle": 2.1710337063550025, + "sigilyph": 3.1967198346566925, + "cofagrigus": 2.703689217310215, + "garbodor": 1.9075958200235799, + "cinccino": 4.477442973517606, + "vanillish": 2.481649028614444, + "emolga": 4.317272444945745, + "escavalier": 3.1967412373524122, + "amoonguss": 3.0067622449097553, + "jellicent": 1.906537018735652, + "galvantula": 2.6597787625250255, + "klang": 4.275860100453068, + "klinklang": 4.779639965154716, + "beheeyem": 1.7126207175007955, + "lampent": 2.47186506657295, + "fraxure": 1.3337770131493338, + "beartic": 2.065276368814923, + "cryogonal": 1.7215281225260122, + "accelgor": 3.4461414465331517, + "stunfisk": 1.2207645859034995, + "stunfisk-galar": 2.7290520419746835, + "mienshao": 3.4262804628810866, + "druddigon": 1.560703191278479, + "golurk": 1.6723940838434537, + "bisharp": 3.1989108593428925, + "bouffalant": 1.3004240346139961, + "heatmor": 1.8728053488975862, + "durant": 7.832658554558559, + "diggersby": 2.7070654701936494, + "talonflame": 4.121331166886194, + "pangoro": 1.7798693034923512, + "doublade": 4.130682210478857, + "malamar": 3.0769839954358726, + "barbaracle": 1.9509399524962279, + "heliolisk": 4.456466049524617, + "tyrantrum": 1.3528367767681335, + "aurorus": 2.538312772662584, + "hawlucha": 4.718808085464348, + "dedenne": 2.964401672958147, + "klefki": 4.240666199160394, + "trevenant": 3.690812225293989, + "gourgeist-average": 7.13985650703559, + "charjabug": 5.85555514364846, + "vikavolt": 2.480908498650569, + "ribombee": 5.561614238328294, + "lycanroc-midday": 3.257345908289783, + "lycanroc-midnight": 2.2927534113479244, + "mudsdale": 1.4348842055451523, + "araquanid": 2.8686704817301703, + "lurantis": 2.881984849563481, + "shiinotic": 5.114919520502284, + "salazzle": 3.2810995425200495, + "bewear": 1.7857499795429481, + "tsareena": 3.880785013166281, + "comfey": 4.289448793270308, + "oranguru": 2.5061219577273297, + "passimian": 2.4979930603742675, + "palossand": 1.8297206464236548, + "pyukumuku": 58.079050469815286, + "togedemaru": 3.313901983564885, + "mimikyu-disguised": 3.803364461802408, + "greedent": 2.208277172809992, + "orbeetle": 2.1319965884551864, + "thievul": 1.6847994319338935, + "eldegoss": 4.429426750053779, + "dubwool": 3.61525144844476, + "drednaw": 1.704886572789893, + "boltund": 5.282119665348292, + "carkol": 2.374886537109286, + "coalossal": 1.9646870661915004, + "sandaconda": 2.905019533810531, + "cramorant": 9.215262838148226, + "barraskewda": 6.253229008019037, + "toxtricity-amped": 3.0367421741740235, + "centiskorch": 1.8452246834708297, + "grapploct": 1.6943797762402717, + "polteageist": 2.431736550744937, + "hatterene": 2.4359435368333973, + "grimmsnarl": 3.7334598000844412, + "obstagoon": 2.7344505523013583, + "perrserker": 5.096281789806952, + "alcremie": 1.3165350569368393, + "falinks": 3.386180064887772, + "pincurchin": 3.3296326273215335, + "frosmoth": 4.033238837555528, + "indeedee-male": 2.909393585074336, + "morpeko": 3.2165529511957427, + "copperajah": 3.2503014849345817, + "duraludon": 1.8745573311602883, + "drakloak": 3.666021654239284 }, "roselia": { - "ivysaur": 3.8053779509642682, - "charmeleon": 3.063512161427136, - "wartortle": 4.288072646501681, - "butterfree": 4.061760625805362, - "raichu": 5.806559581319352, - "raichu-alola": 3.293594350292438, - "sandslash": 3.340689761061552, - "sandslash-alola": 1.5967296589285542, - "nidoqueen": 3.1528464881189384, - "nidoking": 1.7469422496004552, - "clefairy": 9.238773077551127, - "clefable": 2.419067435314836, - "jigglypuff": 30.816983636453713, - "wigglytuff": 2.233343839466766, - "gloom": 6.6016000738299, - "vileplume": 3.5945352524617578, - "dugtrio": 4.566005050828021, - "dugtrio-alola": 3.268499237238884, - "persian": 4.272464002747286, - "persian-alola": 4.281514050227555, - "golduck": 4.666970994841878, - "poliwrath": 2.907280422308482, - "kadabra": 3.5352439466752505, - "machoke": 4.356008289837616, - "tentacruel": 2.5019688247941083, - "slowbro": 2.2559653796910384, - "magneton": 2.9448655268058594, - "haunter": 5.173356389100897, - "kingler": 4.515611341656261, - "exeggutor": 1.5682750647615058, - "marowak": 4.396912099488451, - "marowak-alola": 1.53312761870798, - "hitmonlee": 2.2381778986913243, - "hitmonchan": 1.9241370352975968, - "lickitung": 2.0000526974609123, - "weezing": 1.7747145634667454, - "weezing-galar": 3.2157833854002336, - "rhydon": 5.373172764074152, - "chansey": 18.8227008127945, - "tangela": 5.237073682983235, - "kangaskhan": 1.7559546865283107, - "seadra": 7.771994885800434, - "seaking": 3.16780871212841, - "starmie": 1.972247709747288, - "mr-mime": 5.490301588885822, - "mr-mime-galar": 2.9715854879743597, - "scyther": 1.9694379894941414, - "jynx": 3.733469103793071, - "electabuzz": 2.8684596962980446, - "magmar": 1.2358092185585972, - "tauros": 2.1252734951434005, - "ditto": 4.23099364113856, - "vaporeon": 4.6512346552787385, - "jolteon": 2.0061187206476716, - "flareon": 1.6453867904491082, - "porygon": 2.850826078756553, - "dragonair": 1.450328417850312, - "noctowl": 3.9658829517766465, - "lanturn": 3.17131415539004, - "togetic": 4.334616065178052, - "xatu": 2.784190606137969, - "bellossom": 2.4080071339166196, - "azumarill": 1.9246879256600866, - "sudowoodo": 3.9463552704919245, - "politoed": 3.6561111440215117, - "quagsire": 13.015097744497481, - "slowking": 2.8790571185957137, - "dunsparce": 3.0296698958013213, - "qwilfish": 4.033448342021227, - "sneasel": 2.0225557371228993, - "piloswine": 2.112579084831495, - "octillery": 3.5943413579126084, - "mantine": 2.2633081840281615, - "skarmory": 1.3428158845084268, - "hitmontop": 2.6095139489707595, - "miltank": 3.8685399533619744, - "grovyle": 7.739551732467648, - "sceptile": 1.28627163993351, - "combusken": 3.681279014658509, - "blaziken": 1.5782228085757601, - "marshtomp": 5.444996543061427, - "swampert": 2.770991079600339, - "linoone": 4.941931328558951, - "linoone-galar": 4.708987381450516, - "pelipper": 5.725536535196329, - "ninjask": 5.999080798416832, - "exploud": 1.5687419089565668, - "lairon": 2.6027800393509386, - "manectric": 1.7994785727861742, - "sharpedo": 7.003753015427363, - "wailmer": 9.183211656712055, - "torkoal": 1.4655727006241093, - "flygon": 2.3773572186160585, - "altaria": 1.3276584990341092, - "whiscash": 4.542153379707816, - "crawdaunt": 3.314335066574358, - "claydol": 4.268477609116943, - "cradily": 2.539518957217883, - "armaldo": 1.861186622587986, - "dusclops": 3.432970433845163, - "absol": 1.8538634524430977, - "glalie": 3.5319529407013848, - "sealeo": 4.486500752464666, - "relicanth": 4.681000794520748, - "metang": 2.146806724746134, - "luxray": 4.108617973172398, - "vespiquen": 2.0465716244350514, - "cherrim": 5.708333639803926, - "gastrodon": 4.50619936973963, - "drifblim": 3.524193406019185, - "lopunny": 3.3439999829791636, - "skuntank": 1.1282804867380323, - "bronzong": 2.0250994290835207, - "munchlax": 1.8594715208004478, - "drapion": 1.9385314731077856, - "abomasnow": 2.5585076950399053, - "froslass": 2.616250477171107, - "rotom": 4.347554306876673, - "stoutland": 2.303852399055144, - "liepard": 7.270002016212944, - "musharna": 1.3936835713584466, - "unfezant": 4.274327769659102, - "boldore": 5.4413424352214665, - "swoobat": 3.977848528915108, - "audino": 2.3118282973060857, - "gurdurr": 2.768453960601828, - "palpitoad": 8.733167716846891, - "seismitoad": 14.811033383310543, - "scolipede": 3.3327752454832806, - "whimsicott": 2.927169623210717, - "lilligant": 3.0198294732457653, - "basculin-red-striped": 3.8168415504467053, - "basculin-blue-striped": 5.82377020890503, - "krookodile": 4.014805399685009, - "maractus": 2.2027516717153013, - "crustle": 2.2336679525097525, - "sigilyph": 1.756666315664754, - "cofagrigus": 2.7634471424553535, - "garbodor": 2.0448377575693617, - "cinccino": 4.044775874286268, - "vanillish": 1.9327522204545, - "emolga": 2.6823975871507124, - "escavalier": 1.3105708630125603, - "amoonguss": 2.9550900020298085, - "jellicent": 2.1784253760313854, - "galvantula": 1.5466863166501774, - "klang": 2.50891415431295, - "klinklang": 2.6324854554184585, - "beheeyem": 1.7375168790939166, - "lampent": 1.826509656126685, - "fraxure": 1.2700553198877134, - "beartic": 1.6195506276309448, - "cryogonal": 1.3634901841886302, - "accelgor": 2.6221539590759253, - "stunfisk": 1.9708536551782632, - "stunfisk-galar": 2.511074323425616, - "mienshao": 3.695224044262347, - "druddigon": 1.3830325460199582, - "golurk": 2.7573776697067007, - "bisharp": 1.7944664661381915, - "bouffalant": 1.061857007244988, - "heatmor": 1.446849015115237, - "durant": 2.2410550991527254, - "diggersby": 4.259339143027699, - "talonflame": 2.244640879301238, - "pangoro": 1.8283628498145688, - "doublade": 2.009204623610973, - "malamar": 2.835755573099181, - "barbaracle": 3.164367925312142, - "heliolisk": 3.6963145917940228, - "tyrantrum": 1.7475594742080802, - "aurorus": 2.7919450244788964, - "hawlucha": 3.8320451014389745, - "dedenne": 3.5326015620085496, - "klefki": 2.689591342237033, - "trevenant": 2.9067375660784576, - "gourgeist-average": 4.306843743128887, - "charjabug": 3.667112513141904, - "vikavolt": 1.6635990417291744, - "ribombee": 4.273728917434681, - "lycanroc-midday": 4.446776559547715, - "lycanroc-midnight": 3.1843529093969694, - "mudsdale": 2.3260909491966886, - "araquanid": 2.2589055876976047, - "lurantis": 2.2135323505460476, - "shiinotic": 4.159965518867688, - "salazzle": 3.238931733041438, - "bewear": 1.8409607588771415, - "tsareena": 2.587901217623176, - "comfey": 5.32926682144322, - "oranguru": 2.138849415372621, - "passimian": 2.531158571534254, - "palossand": 3.358843289613089, - "pyukumuku": 64.75194428741162, - "togedemaru": 1.873383781220681, - "mimikyu-disguised": 3.7406671952757335, - "greedent": 1.9275875358741088, - "orbeetle": 1.4130051181088819, - "thievul": 1.6674608763175938, - "eldegoss": 3.8054301674649715, - "dubwool": 3.147181418216328, - "drednaw": 2.736302531472219, - "boltund": 5.067417611589511, - "carkol": 2.2724696457281537, - "coalossal": 2.053172070534602, - "sandaconda": 4.860972159678349, - "cramorant": 5.207727277471708, - "barraskewda": 6.816977294149519, - "toxtricity-amped": 3.05979371951734, - "centiskorch": 1.6078516213165885, - "grapploct": 2.11688053335512, - "polteageist": 2.4101211873674084, - "hatterene": 2.427459804735779, - "grimmsnarl": 4.131501825335736, - "obstagoon": 2.587855827026923, - "perrserker": 2.735929771203257, - "alcremie": 1.5542092887819714, - "falinks": 3.647665764425108, - "pincurchin": 3.5602145712859965, - "frosmoth": 2.1687856767974467, - "indeedee-male": 2.7555319196769155, - "morpeko": 2.863708138723962, - "copperajah": 2.0011925695473334, - "duraludon": 1.1487265359563748, - "drakloak": 3.713439406114988, - "roselia": 4.151978671765308 + "ivysaur": 3.810849866354225, + "charmeleon": 3.0541398168044553, + "wartortle": 4.297494220219839, + "butterfree": 4.055981951707364, + "raichu": 5.817786272863046, + "raichu-alola": 3.2865942888012465, + "sandslash": 3.3406553625014754, + "sandslash-alola": 1.5902047785448372, + "nidoqueen": 3.155862831063412, + "nidoking": 1.7431308225203606, + "clefairy": 9.234652148326127, + "clefable": 2.42247347257147, + "jigglypuff": 30.86778448488809, + "wigglytuff": 2.2324939023255927, + "gloom": 6.60390783459261, + "vileplume": 3.59930142126839, + "dugtrio": 4.5641799622015, + "dugtrio-alola": 3.260801858854627, + "persian": 4.2660985816451475, + "persian-alola": 4.272922134347672, + "golduck": 4.673555611142157, + "poliwrath": 2.912907599730775, + "kadabra": 3.519622909523727, + "machoke": 4.358132664367416, + "tentacruel": 2.504058192095493, + "slowbro": 2.249720041621984, + "magneton": 2.943623868123288, + "haunter": 5.1756271137303695, + "kingler": 4.52626514071879, + "exeggutor": 1.5629827822218796, + "marowak": 4.395653852264459, + "marowak-alola": 1.52633661093412, + "hitmonlee": 2.235370377114153, + "hitmonchan": 1.9190700644977452, + "lickitung": 1.9999889199352987, + "weezing": 1.7746083220337234, + "weezing-galar": 3.2178596555967798, + "rhydon": 5.376793109425204, + "chansey": 18.742647562659606, + "tangela": 5.243572886849724, + "kangaskhan": 1.7519521091372718, + "seadra": 7.792538141353946, + "seaking": 3.16540050293849, + "starmie": 1.9694709213778885, + "mr-mime": 5.465944612256212, + "mr-mime-galar": 2.9591629335199685, + "scyther": 1.9591549833855408, + "jynx": 3.720688766406162, + "electabuzz": 2.87126418191567, + "magmar": 1.2317381802979153, + "tauros": 2.123504848348679, + "ditto": 4.205780807225612, + "vaporeon": 4.660520636109805, + "jolteon": 2.007135114251143, + "flareon": 1.640535845742193, + "porygon": 2.848136284002604, + "dragonair": 1.44672417990758, + "noctowl": 3.9448430768502165, + "lanturn": 3.182610977859347, + "togetic": 4.325411468128241, + "xatu": 2.7711802430685504, + "bellossom": 2.4119356020372003, + "azumarill": 1.910828821423502, + "sudowoodo": 3.9485645394156923, + "politoed": 3.6608483282756046, + "quagsire": 13.07571102490941, + "slowking": 2.8721617954880845, + "dunsparce": 3.0216082596411344, + "qwilfish": 4.036164966660219, + "sneasel": 2.012345249265221, + "piloswine": 2.1111632477902944, + "octillery": 3.599612906783282, + "mantine": 2.260475274950218, + "skarmory": 1.3368069698711424, + "hitmontop": 2.605701229636897, + "miltank": 3.8654512983983933, + "grovyle": 7.74736308738654, + "sceptile": 1.2864143911886416, + "combusken": 3.6809580847288412, + "blaziken": 1.5745168484688503, + "marshtomp": 5.450927097676831, + "swampert": 2.7779632966974193, + "linoone": 4.930393372237328, + "linoone-galar": 4.698138819471264, + "pelipper": 5.7084252452975885, + "ninjask": 5.9775723344056875, + "exploud": 1.5676330037935222, + "lairon": 2.598883261867854, + "manectric": 1.7965493472132557, + "roselia": 4.151978671765308, + "sharpedo": 6.998443964256293, + "wailmer": 9.182195122220897, + "torkoal": 1.4623736855585057, + "flygon": 2.3740927058722656, + "altaria": 1.324901510068047, + "whiscash": 4.539235657389559, + "crawdaunt": 3.314066309939132, + "claydol": 4.263005028272664, + "cradily": 2.541578234620414, + "armaldo": 1.8580610225682124, + "dusclops": 3.428238966655994, + "absol": 1.8479535193570333, + "glalie": 3.51749808754347, + "sealeo": 4.488232411043843, + "relicanth": 4.687900303324807, + "metang": 2.1365663846153895, + "luxray": 4.108254486370099, + "vespiquen": 2.0370992844175095, + "cherrim": 5.712361352461776, + "gastrodon": 4.51075879891345, + "drifblim": 3.514936283081248, + "lopunny": 3.334877524357854, + "skuntank": 1.1246023111742771, + "bronzong": 2.0120487823119753, + "munchlax": 1.852647239105727, + "drapion": 1.9323665262342837, + "abomasnow": 2.5492327298507105, + "froslass": 2.6071755663739054, + "rotom": 4.353302309633328, + "stoutland": 2.2981269426411868, + "liepard": 7.259493905136944, + "musharna": 1.3890503422417688, + "unfezant": 4.250347852740468, + "boldore": 5.445871792336764, + "swoobat": 3.959179317337024, + "audino": 2.3099373903457767, + "gurdurr": 2.773424918219182, + "palpitoad": 8.750136865489205, + "seismitoad": 14.836656788989476, + "scolipede": 3.325462515480454, + "whimsicott": 2.926574291698212, + "lilligant": 3.0226521132679802, + "basculin-red-striped": 3.812316196770478, + "basculin-blue-striped": 5.8345638331243865, + "krookodile": 4.0133991998274, + "maractus": 2.205782073533575, + "crustle": 2.232069501011078, + "sigilyph": 1.749552742214954, + "cofagrigus": 2.759890100860339, + "garbodor": 2.0429595765088058, + "cinccino": 4.030135373436304, + "vanillish": 1.9272668611163577, + "emolga": 2.677522300263931, + "escavalier": 1.3062450615189447, + "amoonguss": 2.9566938436197683, + "jellicent": 2.1807189031884993, + "galvantula": 1.547633433069143, + "klang": 2.507686620421689, + "klinklang": 2.623459086227423, + "beheeyem": 1.7338201628450973, + "lampent": 1.8208668546599922, + "fraxure": 1.266444638169236, + "beartic": 1.6173511498151154, + "cryogonal": 1.3590856522390846, + "accelgor": 2.6179489664373, + "stunfisk": 1.9754282713166718, + "stunfisk-galar": 2.5099419905654514, + "mienshao": 3.6960213919324563, + "druddigon": 1.3780140399863952, + "golurk": 2.7593205512152137, + "bisharp": 1.7850124930831917, + "bouffalant": 1.0559689925364388, + "heatmor": 1.4421003488270676, + "durant": 2.2340465051410345, + "diggersby": 4.256722871128133, + "talonflame": 2.2358467035547425, + "pangoro": 1.8257992055988688, + "doublade": 2.0035663190513135, + "malamar": 2.8288179058023237, + "barbaracle": 3.1656426276246403, + "heliolisk": 3.6965001649984512, + "tyrantrum": 1.74601322781818, + "aurorus": 2.786186565228018, + "hawlucha": 3.829141024748124, + "dedenne": 3.540581701435554, + "klefki": 2.6880184581971487, + "trevenant": 2.9082875869484974, + "gourgeist-average": 4.2937630420649455, + "charjabug": 3.664999131457606, + "vikavolt": 1.6626811691712868, + "ribombee": 4.272587233041685, + "lycanroc-midday": 4.444622290387182, + "lycanroc-midnight": 3.1836935667332398, + "mudsdale": 2.3282240128804155, + "araquanid": 2.2561408106393888, + "lurantis": 2.2120707417889913, + "shiinotic": 4.160392027272548, + "salazzle": 3.2283808613099128, + "bewear": 1.8379824268605907, + "tsareena": 2.582062342526238, + "comfey": 5.344299588503283, + "oranguru": 2.127765618156221, + "passimian": 2.530168165670511, + "palossand": 3.363868319221017, + "pyukumuku": 64.84424556541668, + "togedemaru": 1.8676495976682534, + "mimikyu-disguised": 3.7315042223154267, + "greedent": 1.9208043294685404, + "orbeetle": 1.4064496340289487, + "thievul": 1.663498730918692, + "eldegoss": 3.808463643407583, + "dubwool": 3.1459365276807594, + "drednaw": 2.739303341158526, + "boltund": 5.068067574841253, + "carkol": 2.266934289332657, + "coalossal": 2.051186897381579, + "sandaconda": 4.863055299626682, + "cramorant": 5.201176399985774, + "barraskewda": 6.818589964439353, + "toxtricity-amped": 3.0624725531390826, + "centiskorch": 1.6022174799740951, + "grapploct": 2.1225816976213183, + "polteageist": 2.4043380227390685, + "hatterene": 2.4223898465293754, + "grimmsnarl": 4.129983501210059, + "obstagoon": 2.5818126621999573, + "perrserker": 2.7299719719903224, + "alcremie": 1.5547089713289548, + "falinks": 3.649518456381168, + "pincurchin": 3.569052135010317, + "frosmoth": 2.1611995031238584, + "indeedee-male": 2.745853565693925, + "morpeko": 2.8598797653210366, + "copperajah": 1.997484331729178, + "duraludon": 1.1463779418930669, + "drakloak": 3.7035260361411892 }, "sharpedo": { - "ivysaur": 2.537192907159591, - "charmeleon": 4.765298484694695, - "wartortle": 2.657596397090108, - "butterfree": 3.597464277543085, - "raichu": 3.98774339588142, - "raichu-alola": 4.606998044863336, - "sandslash": 1.9236594750931357, - "sandslash-alola": 1.653128462536681, - "nidoqueen": 3.0819622249728598, - "nidoking": 1.9842633437128285, - "clefairy": 7.8469952966121905, - "clefable": 1.2845956008015564, - "jigglypuff": 19.507915562994015, - "wigglytuff": 1.3864557152241255, - "gloom": 4.567245674036567, - "vileplume": 2.150824648258827, - "dugtrio": 4.159321289614977, - "dugtrio-alola": 4.183001602253726, - "persian": 3.6088843312966854, - "persian-alola": 4.146618740246465, - "golduck": 3.061316661716423, - "poliwrath": 1.4297067896329114, - "kadabra": 4.8968744032092735, - "machoke": 3.0784419878273606, - "tentacruel": 2.5953649747103, - "slowbro": 2.5827966872268027, - "magneton": 2.57991577842291, - "haunter": 6.049036254530629, - "kingler": 1.9410278882063263, - "exeggutor": 2.155856634340312, - "marowak": 3.345900869429307, - "marowak-alola": 2.731612048784277, - "hitmonlee": 1.9467833735841262, - "hitmonchan": 1.8113053055094477, - "lickitung": 1.8314396946659302, - "weezing": 1.4348421501213555, - "weezing-galar": 1.9019537889709892, - "rhydon": 2.675057145819695, - "chansey": 28.334215438343993, - "tangela": 3.2109585629594415, - "kangaskhan": 1.6981847544100424, - "seadra": 3.608050423147335, - "seaking": 2.4051058864532213, - "starmie": 1.6601774562012195, - "mr-mime": 9.27826785952866, - "mr-mime-galar": 5.586573896465866, - "scyther": 2.3468040052047088, - "jynx": 6.110801892948423, - "electabuzz": 1.8993272189099888, - "magmar": 2.176680838826303, - "tauros": 1.6645944736023401, - "ditto": 5.258336024741061, - "vaporeon": 3.397803507274177, - "jolteon": 1.7528579163205222, - "flareon": 3.2519550672848236, - "porygon": 2.5091196916302274, - "dragonair": 1.8511500793045643, - "noctowl": 5.756905907935288, - "lanturn": 1.8257481127341662, - "togetic": 4.421770025197587, - "xatu": 5.34755532631319, - "bellossom": 1.579128675152623, - "azumarill": 1.5959567766836078, - "sudowoodo": 2.315355223566368, - "politoed": 2.560591923575635, - "quagsire": 4.02108991394695, - "slowking": 3.855801054564571, - "dunsparce": 2.9670119489266935, - "qwilfish": 3.1444263349920907, - "sneasel": 2.2838519857393758, - "piloswine": 1.6445906066440035, - "octillery": 2.1880084330036818, - "mantine": 2.685091703270805, - "skarmory": 1.6516442119362609, - "hitmontop": 2.2022041143575133, - "miltank": 2.7374092108575487, - "grovyle": 6.080921534111445, - "sceptile": 1.1608644970210316, - "combusken": 3.29884283299071, - "blaziken": 1.7356731606214009, - "marshtomp": 2.516325443087066, - "swampert": 1.2662064141913314, - "linoone": 4.478608079762483, - "linoone-galar": 4.579966407420688, - "pelipper": 5.18263444279107, - "ninjask": 5.551300354838716, - "exploud": 1.5149365731858477, - "lairon": 2.181180053457644, - "manectric": 1.6230429031674891, - "roselia": 3.6290327680526504, - "wailmer": 6.61327909165451, - "torkoal": 1.9916129598108139, - "flygon": 2.2429290976645144, - "altaria": 1.4909344435162375, - "whiscash": 2.152416579357526, - "crawdaunt": 1.7133137939409158, - "claydol": 4.651043994267571, - "cradily": 1.8713631222251057, - "armaldo": 1.7306372836602035, - "dusclops": 4.304852948657549, - "absol": 1.8789472804581266, - "glalie": 4.311230517973173, - "sealeo": 3.3174259941095627, - "relicanth": 1.6417921626279646, - "metang": 3.7133384861920216, - "luxray": 2.9760572416264663, - "vespiquen": 2.10523785340295, - "cherrim": 4.546641198173681, - "gastrodon": 1.988773424227959, - "drifblim": 5.518557960293533, - "lopunny": 3.131078690787129, - "skuntank": 1.3857614475950464, - "bronzong": 5.162363031054113, - "munchlax": 2.186724161609156, - "drapion": 1.9641150664835179, - "abomasnow": 2.726357128234775, - "froslass": 4.095243061556413, - "rotom": 4.539461352817916, - "stoutland": 2.12656458645732, - "liepard": 5.725475181832068, - "musharna": 2.155729553748288, - "unfezant": 5.488187452217302, - "boldore": 2.789203870617788, - "swoobat": 7.671440938183528, - "audino": 1.9206744346832636, - "gurdurr": 1.5056595398250274, - "palpitoad": 3.6348141894680115, - "seismitoad": 5.682194965823472, - "scolipede": 2.5401679118826896, - "whimsicott": 1.9802083447567904, - "lilligant": 2.1874202953568784, - "basculin-red-striped": 2.9865255312975405, - "basculin-blue-striped": 3.7255063681683005, - "krookodile": 3.205539872811158, - "maractus": 1.69157965459141, - "crustle": 1.7153348418002063, - "sigilyph": 3.239072820299913, - "cofagrigus": 3.71680188598564, - "garbodor": 1.6536526201255541, - "cinccino": 4.320909252584974, - "vanillish": 2.1424389325772006, - "emolga": 2.224835760268938, - "escavalier": 1.605502259569882, - "amoonguss": 2.089869923890734, - "jellicent": 1.9423551572376727, - "galvantula": 1.1325381999551134, - "klang": 2.3532543808345783, - "klinklang": 3.1294003635780054, - "beheeyem": 2.6095535743068226, - "lampent": 3.577637851745747, - "fraxure": 1.368956529206991, - "beartic": 1.6750122078261893, - "cryogonal": 1.9223054646322213, - "accelgor": 2.2444730994328994, - "stunfisk": 1.40949014762407, - "stunfisk-galar": 2.521011501286852, - "mienshao": 2.6301223844074633, - "druddigon": 1.9486292262452012, - "golurk": 2.1883571248070215, - "bisharp": 2.2329223433862584, - "bouffalant": 1.1504026003325674, - "heatmor": 2.194719745303365, - "durant": 2.0754880992396156, - "diggersby": 3.4494505614732134, - "talonflame": 3.428892658745801, - "pangoro": 1.4221357538924022, - "doublade": 2.2489021432870744, - "malamar": 2.7121482060823974, - "barbaracle": 1.3754825618443445, - "heliolisk": 3.170077262614252, - "tyrantrum": 1.280604748864559, - "aurorus": 2.5183550413698366, - "hawlucha": 2.7598556591356322, - "dedenne": 1.769785815783982, - "klefki": 2.391613666345928, - "trevenant": 3.0613494937810826, - "gourgeist-average": 6.540953041865081, - "charjabug": 3.184530000099045, - "vikavolt": 1.3598327903702225, - "ribombee": 3.152080841674832, - "lycanroc-midday": 3.5642890259800417, - "lycanroc-midnight": 2.447414131348701, - "mudsdale": 1.5045786301047177, - "araquanid": 2.1507912960224744, - "lurantis": 1.8109605605588155, - "shiinotic": 2.853212531174906, - "salazzle": 3.78171761229804, - "bewear": 1.453993393035156, - "tsareena": 2.4143245595538345, - "comfey": 3.1034594906593487, - "oranguru": 4.7255726355954515, - "passimian": 1.7016497331447475, - "palossand": 2.396864596780326, - "pyukumuku": 42.66502267927647, - "togedemaru": 1.9429028203018603, - "mimikyu-disguised": 4.1752227016681065, - "greedent": 2.085564601337958, - "orbeetle": 2.155156275710102, - "thievul": 1.880420377084085, - "eldegoss": 3.07463804001235, - "dubwool": 2.274172465202968, - "drednaw": 1.10684278424255, - "boltund": 3.9967695767058937, - "carkol": 3.444068310641308, - "coalossal": 2.9056350421659873, - "sandaconda": 2.737285081745445, - "cramorant": 6.202386054250371, - "barraskewda": 4.464198575062119, - "toxtricity-amped": 2.067709183892459, - "centiskorch": 2.4446134263748154, - "grapploct": 1.31860540562605, - "polteageist": 3.9363891605841026, - "hatterene": 2.412953372369414, - "grimmsnarl": 3.350844801032191, - "obstagoon": 2.0738801968626053, - "perrserker": 2.8547422172859176, - "alcremie": 1.002121248284408, - "falinks": 2.148270032233839, - "pincurchin": 2.5345951172069032, - "frosmoth": 2.0070555152638376, - "indeedee-male": 5.2644341691185526, - "morpeko": 2.0901014452806734, - "copperajah": 2.22230649504116, - "duraludon": 1.1891265860398956, - "drakloak": 6.169795901662428, - "sharpedo": 4.391343645361468 + "ivysaur": 2.524672341330165, + "charmeleon": 4.769521800654083, + "wartortle": 2.6549885951524548, + "butterfree": 3.5787804689659315, + "raichu": 3.968151414311497, + "raichu-alola": 4.601435381131064, + "sandslash": 1.9174585159948956, + "sandslash-alola": 1.6474408771021583, + "nidoqueen": 3.079948862367162, + "nidoking": 1.9821431389895896, + "clefairy": 7.819491004100689, + "clefable": 1.2789656281831463, + "jigglypuff": 19.384620303999316, + "wigglytuff": 1.3813258558397212, + "gloom": 4.545951016988098, + "vileplume": 2.1376311309600253, + "dugtrio": 4.157230279551506, + "dugtrio-alola": 4.184147105261702, + "persian": 3.5954475295089043, + "persian-alola": 4.144949239894722, + "golduck": 3.0589601860925804, + "poliwrath": 1.4229226038637888, + "kadabra": 4.8982696740528375, + "machoke": 3.067522757074781, + "tentacruel": 2.59591647890673, + "slowbro": 2.5915857399639535, + "magneton": 2.5703252199984963, + "haunter": 6.046597360551404, + "kingler": 1.9337782335288847, + "exeggutor": 2.1505783940433902, + "marowak": 3.345173231700775, + "marowak-alola": 2.7380697538821868, + "hitmonlee": 1.9389266383378274, + "hitmonchan": 1.8059094321244542, + "lickitung": 1.8265962817215242, + "weezing": 1.4325043257961352, + "weezing-galar": 1.8921753216348862, + "rhydon": 2.6711313959789997, + "chansey": 28.307063931549557, + "tangela": 3.188905240488756, + "kangaskhan": 1.6949540291126373, + "seadra": 3.5991511790425457, + "seaking": 2.4023464671068675, + "starmie": 1.6591774753918558, + "mr-mime": 9.315647387804708, + "mr-mime-galar": 5.605565007217999, + "scyther": 2.339881971280776, + "jynx": 6.098942641856892, + "electabuzz": 1.8910860589306977, + "magmar": 2.1787611266294817, + "tauros": 1.6592132481684752, + "ditto": 5.220122070261036, + "vaporeon": 3.39367044914087, + "jolteon": 1.7473235953541602, + "flareon": 3.2573384469585864, + "porygon": 2.5029320070814416, + "dragonair": 1.8469493173151885, + "noctowl": 5.748715393368124, + "lanturn": 1.8223817298848566, + "togetic": 4.404654604078324, + "xatu": 5.35643907354458, + "bellossom": 1.5706545548324935, + "azumarill": 1.5899126858435912, + "sudowoodo": 2.308277780453966, + "politoed": 2.5579424158095, + "quagsire": 4.011511529395455, + "slowking": 3.8660810797758747, + "dunsparce": 2.961466182764359, + "qwilfish": 3.140161558982638, + "sneasel": 2.283373605262053, + "piloswine": 1.6410585687106396, + "octillery": 2.183595441278797, + "mantine": 2.6827944848022947, + "skarmory": 1.6473388777359186, + "hitmontop": 2.1951876571165756, + "miltank": 2.7247360087828114, + "grovyle": 6.046251926700325, + "sceptile": 1.1536663321453404, + "combusken": 3.288242116086063, + "blaziken": 1.732658923541019, + "marshtomp": 2.5167309243999405, + "swampert": 1.2660020928289395, + "linoone": 4.464693555313883, + "linoone-galar": 4.578710801701557, + "pelipper": 5.166470500588655, + "ninjask": 5.51967950132617, + "exploud": 1.5104205501189294, + "lairon": 2.178200789910306, + "manectric": 1.6203916828756642, + "roselia": 3.617428013664886, + "sharpedo": 4.391343645361468, + "wailmer": 6.610823417230298, + "torkoal": 1.9918103049573874, + "flygon": 2.2385910500085724, + "altaria": 1.488334001660484, + "whiscash": 2.1540603146296995, + "crawdaunt": 1.7101199470722956, + "claydol": 4.659691347706902, + "cradily": 1.8640516417594513, + "armaldo": 1.7249783974884005, + "dusclops": 4.3025478136343525, + "absol": 1.87753071340929, + "glalie": 4.312977899175889, + "sealeo": 3.317867509643579, + "relicanth": 1.6380139916070762, + "metang": 3.7131911281192043, + "luxray": 2.9621066577074497, + "vespiquen": 2.095104008144652, + "cherrim": 4.522680553785454, + "gastrodon": 1.9848058011046472, + "drifblim": 5.513616340915072, + "lopunny": 3.120599528696051, + "skuntank": 1.3858080233772276, + "bronzong": 5.183620063849865, + "munchlax": 2.182330083566342, + "drapion": 1.9594179755981638, + "abomasnow": 2.715426612703153, + "froslass": 4.102611838995065, + "rotom": 4.532110938052375, + "stoutland": 2.120287897728712, + "liepard": 5.706282495859216, + "musharna": 2.158554508129631, + "unfezant": 5.477524091887982, + "boldore": 2.7795367274535776, + "swoobat": 7.6844388001475386, + "audino": 1.9165787067568285, + "gurdurr": 1.4969525424027048, + "palpitoad": 3.63140071828131, + "seismitoad": 5.666777452361039, + "scolipede": 2.5304538430379084, + "whimsicott": 1.9660109833886432, + "lilligant": 2.1735036668346552, + "basculin-red-striped": 2.989218924039064, + "basculin-blue-striped": 3.726195342097485, + "krookodile": 3.2043619756433417, + "maractus": 1.6814915852047048, + "crustle": 1.7075067946140257, + "sigilyph": 3.2442109634217062, + "cofagrigus": 3.7278499615466036, + "garbodor": 1.6476977945435691, + "cinccino": 4.31423119832273, + "vanillish": 2.141830218832437, + "emolga": 2.216084628087922, + "escavalier": 1.601144488788492, + "amoonguss": 2.0807916001564446, + "jellicent": 1.9403840180335494, + "galvantula": 1.125748837436106, + "klang": 2.3458359760221317, + "klinklang": 3.125566297915385, + "beheeyem": 2.6134625192740613, + "lampent": 3.584444330530765, + "fraxure": 1.3644553955447472, + "beartic": 1.6722035644949083, + "cryogonal": 1.9216138157750313, + "accelgor": 2.2336936399274316, + "stunfisk": 1.4058552962116124, + "stunfisk-galar": 2.518839603765983, + "mienshao": 2.6193500857627687, + "druddigon": 1.9490342613071254, + "golurk": 2.186110470353692, + "bisharp": 2.231199160123591, + "bouffalant": 1.1479394651103159, + "heatmor": 2.195262739953266, + "durant": 2.0636931490535924, + "diggersby": 3.4450567084157497, + "talonflame": 3.430643822490882, + "pangoro": 1.4170498185276361, + "doublade": 2.24361200089765, + "malamar": 2.709478288855025, + "barbaracle": 1.3725379721055182, + "heliolisk": 3.153031249936486, + "tyrantrum": 1.2761759381809559, + "aurorus": 2.512265595044244, + "hawlucha": 2.7496148795239947, + "dedenne": 1.7590867062252955, + "klefki": 2.3814307656909097, + "trevenant": 3.047048310110635, + "gourgeist-average": 6.547256889472781, + "charjabug": 3.1680907336450863, + "vikavolt": 1.353027830905495, + "ribombee": 3.1286846880298964, + "lycanroc-midday": 3.5598186435525196, + "lycanroc-midnight": 2.4430905648684584, + "mudsdale": 1.5002195255025175, + "araquanid": 2.14292572160287, + "lurantis": 1.8006248414006747, + "shiinotic": 2.832602933144504, + "salazzle": 3.7836128645764124, + "bewear": 1.4491082959006594, + "tsareena": 2.402339380855345, + "comfey": 3.0822478771407376, + "oranguru": 4.751682585403195, + "passimian": 1.6939495971960108, + "palossand": 2.397461430975876, + "pyukumuku": 42.62117748723874, + "togedemaru": 1.9377505071911552, + "mimikyu-disguised": 4.171330811252915, + "greedent": 2.0846586951733066, + "orbeetle": 2.1578909041096885, + "thievul": 1.8805131095403418, + "eldegoss": 3.0583322539861157, + "dubwool": 2.263132923543516, + "drednaw": 1.1042723357554673, + "boltund": 3.984467726681746, + "carkol": 3.447473689164923, + "coalossal": 2.907569226229902, + "sandaconda": 2.727282066792716, + "cramorant": 6.208225661330918, + "barraskewda": 4.459853949647521, + "toxtricity-amped": 2.058081295018707, + "centiskorch": 2.444322368531255, + "grapploct": 1.311204496125542, + "polteageist": 3.937725835020869, + "hatterene": 2.4082051204886996, + "grimmsnarl": 3.339697301794164, + "obstagoon": 2.066500345847233, + "perrserker": 2.849732053407207, + "alcremie": 0.9978100960891273, + "falinks": 2.136166808413444, + "pincurchin": 2.524253187113652, + "frosmoth": 2.00003049168065, + "indeedee-male": 5.282505135388403, + "morpeko": 2.080653040271363, + "copperajah": 2.218488108131398, + "duraludon": 1.1848335704320223, + "drakloak": 6.176283081823803 }, "wailmer": { - "ivysaur": 2.6263857668998254, - "charmeleon": 4.536868658444587, - "wartortle": 2.35840026036455, - "butterfree": 4.119233087560562, - "raichu": 3.8000998523999705, - "raichu-alola": 2.607527182967801, - "sandslash": 2.608212791979941, - "sandslash-alola": 1.9179805910243668, - "nidoqueen": 3.0226475352319566, - "nidoking": 2.0136209435404564, - "clefairy": 8.791904420381215, - "clefable": 1.936153191367254, - "jigglypuff": 26.530737793620062, - "wigglytuff": 1.8773608698433302, - "gloom": 5.217332352163235, - "vileplume": 2.434969452357791, - "dugtrio": 3.773164899503504, - "dugtrio-alola": 3.823362036823032, - "persian": 3.6264965119883135, - "persian-alola": 3.5968564238192355, - "golduck": 2.601143103476311, - "poliwrath": 1.7980681978315303, - "kadabra": 3.3045310486416604, - "machoke": 3.6156164779604936, - "tentacruel": 2.075609333549101, - "slowbro": 1.4254916934343362, - "magneton": 2.685254727036442, - "haunter": 3.471075807228349, - "kingler": 2.06330054406931, - "exeggutor": 1.6189625888606007, - "marowak": 3.618065440176008, - "marowak-alola": 2.588889125663858, - "hitmonlee": 2.4726874431760306, - "hitmonchan": 2.054115886883074, - "lickitung": 1.7433275438499352, - "weezing": 1.5224105559636354, - "weezing-galar": 2.4761892344670073, - "rhydon": 3.984372439586063, - "chansey": 22.572971980894422, - "tangela": 3.4890521443024083, - "kangaskhan": 1.583094835533929, - "seadra": 3.4499310435838213, - "seaking": 2.0152960945964855, - "starmie": 1.1807256041459764, - "mr-mime": 6.780847804698532, - "mr-mime-galar": 3.7935533769925924, - "scyther": 2.50521920246067, - "jynx": 4.613294612928801, - "electabuzz": 1.7175625684375273, - "magmar": 1.880986528184208, - "tauros": 1.8000632870216031, - "ditto": 9.666591002500706, - "vaporeon": 2.741712732764942, - "jolteon": 1.460912848387224, - "flareon": 2.554216455522229, - "porygon": 2.3340614945395934, - "dragonair": 1.4786446206704142, - "noctowl": 4.903679228325164, - "lanturn": 1.3761887276690037, - "togetic": 5.464216892754479, - "xatu": 3.312156150241827, - "bellossom": 1.9577606659613749, - "azumarill": 1.8037984922626213, - "sudowoodo": 3.0142931561466026, - "politoed": 2.129025559522746, - "quagsire": 4.443468610787431, - "slowking": 2.1280044921089036, - "dunsparce": 2.9396326800562953, - "qwilfish": 2.7906148281866683, - "sneasel": 2.243253658245694, - "piloswine": 1.9102308406730422, - "octillery": 1.984859025035737, - "mantine": 2.128498290153444, - "skarmory": 1.9621441779321669, - "hitmontop": 2.615282814385762, - "miltank": 3.21467451030572, - "grovyle": 6.6798476033974215, - "sceptile": 1.2204576815361843, - "combusken": 3.805117496728036, - "blaziken": 1.8939781572670031, - "marshtomp": 2.34867142110171, - "swampert": 1.1840818898599805, - "linoone": 4.452060353207162, - "linoone-galar": 4.042956796510504, - "pelipper": 4.690227724965828, - "ninjask": 6.989266681172106, - "exploud": 1.4491910153789442, - "lairon": 3.1240767670957412, - "manectric": 1.488179445149797, - "roselia": 3.4843839537393406, - "sharpedo": 4.091890704092343, - "torkoal": 2.5630708666571627, - "flygon": 2.100694514084517, - "altaria": 1.3366987268240216, - "whiscash": 1.9366617574457519, - "crawdaunt": 1.6630487110474104, - "claydol": 3.495362682086194, - "cradily": 1.9852296617257765, - "armaldo": 2.090314283376743, - "dusclops": 2.904680608127145, - "absol": 1.8124514499275393, - "glalie": 4.202235916917322, - "sealeo": 2.8661990277625122, - "relicanth": 1.8318075011002874, - "metang": 2.53116869106902, - "luxray": 2.905871645545144, - "vespiquen": 2.530059898629801, - "cherrim": 4.732756025794604, - "gastrodon": 1.898965692540187, - "drifblim": 3.2269211058708116, - "lopunny": 3.11088265918384, - "skuntank": 1.3217051809639098, - "bronzong": 2.8071704085548133, - "munchlax": 1.86250224992461, - "drapion": 2.236723318360373, - "abomasnow": 2.848129392514304, - "froslass": 2.95653870503463, - "rotom": 2.8577740567711354, - "stoutland": 2.053203324607554, - "liepard": 6.097158197628447, - "musharna": 1.2406810548873328, - "unfezant": 5.706876681150044, - "boldore": 4.072769147395926, - "swoobat": 4.7410307243202405, - "audino": 1.9425869015334922, - "gurdurr": 2.0403025983390117, - "palpitoad": 3.4266938610367057, - "seismitoad": 5.45997181268013, - "scolipede": 2.9392645390491197, - "whimsicott": 2.65744589341727, - "lilligant": 2.4502828784785846, - "basculin-red-striped": 2.392758284114364, - "basculin-blue-striped": 3.0758098029557583, - "krookodile": 3.1309805003476976, - "maractus": 1.7306101616321024, - "crustle": 2.4240633767692046, - "sigilyph": 2.064755861087052, - "cofagrigus": 2.3163754687599694, - "garbodor": 1.6257126779421767, - "cinccino": 4.10100116689752, - "vanillish": 2.205325704572501, - "emolga": 2.188946750350551, - "escavalier": 1.6305017611129011, - "amoonguss": 2.1529425006901546, - "jellicent": 1.2852542546288732, - "galvantula": 1.1651728249291922, - "klang": 2.3113545169882204, - "klinklang": 3.1788596664370434, - "beheeyem": 1.5243605237329527, - "lampent": 3.1803258194263737, - "fraxure": 1.1922140236733751, - "beartic": 1.8080231074539779, - "cryogonal": 1.882433056963384, - "accelgor": 2.896772033079374, - "stunfisk": 1.347937758128561, - "stunfisk-galar": 2.628590366268625, - "mienshao": 3.1472721627292417, - "druddigon": 1.4909511914635254, - "golurk": 2.0414849990191195, - "bisharp": 2.16595192680904, - "bouffalant": 1.1318713835251764, - "heatmor": 2.183275430116061, - "durant": 2.7560979538406194, - "diggersby": 3.4857306772733745, - "talonflame": 3.443853066459911, - "pangoro": 1.651523756007991, - "doublade": 2.431116637101212, - "malamar": 2.3631909253011867, - "barbaracle": 1.3985948159656447, - "heliolisk": 2.3725841781230534, - "tyrantrum": 1.4616593979205237, - "aurorus": 2.8537507188022797, - "hawlucha": 3.221007324648631, - "dedenne": 2.247398461092055, - "klefki": 2.79635113333599, - "trevenant": 2.471426854711805, - "gourgeist-average": 4.636851088824985, - "charjabug": 3.2736849242481467, - "vikavolt": 1.5391094258839018, - "ribombee": 4.465583115127698, - "lycanroc-midday": 3.600640353074975, - "lycanroc-midnight": 2.5341070006813906, - "mudsdale": 1.7481648290949185, - "araquanid": 2.3589528530290624, - "lurantis": 1.9980982409933228, - "shiinotic": 4.217344689529535, - "salazzle": 3.715852567726855, - "bewear": 1.593397798665376, - "tsareena": 2.5089645373322185, - "comfey": 3.942945470176845, - "oranguru": 2.2510912310305518, - "passimian": 2.1141051602451104, - "palossand": 2.356508893595645, - "pyukumuku": 37.778632198804885, - "togedemaru": 1.7950999031779329, - "mimikyu-disguised": 3.930731617849417, - "greedent": 1.9249705862739575, - "orbeetle": 1.686848001541386, - "thievul": 1.615418176926734, - "eldegoss": 3.1993340246694117, - "dubwool": 2.4332194926869324, - "drednaw": 1.177060090360202, - "boltund": 3.6638320689655774, - "carkol": 3.820805035903806, - "coalossal": 3.2444114664275636, - "sandaconda": 3.693917742278015, - "cramorant": 4.698234944664647, - "barraskewda": 3.7227327356427455, - "toxtricity-amped": 2.0519121369188955, - "centiskorch": 2.191346895635055, - "grapploct": 1.6390356794381713, - "polteageist": 2.06720113258448, - "hatterene": 2.3899706329960573, - "grimmsnarl": 3.7128289628480213, - "obstagoon": 2.1375687713818317, - "perrserker": 2.9412937142626383, - "alcremie": 1.3894864947093524, - "falinks": 2.923219059729157, - "pincurchin": 2.481102853084379, - "frosmoth": 2.519835699198027, - "indeedee-male": 2.7897593239941108, - "morpeko": 2.121648738335354, - "copperajah": 2.2229174199676636, - "duraludon": 1.1640798482112493, - "drakloak": 3.4928170444684277, - "wailmer": 5.5838802114418105 + "ivysaur": 2.6128520770218993, + "charmeleon": 4.5369591900834685, + "wartortle": 2.354871219688908, + "butterfree": 4.103364310823356, + "raichu": 3.781007113821659, + "raichu-alola": 2.5937477983986756, + "sandslash": 2.6050018926508725, + "sandslash-alola": 1.9147490360410093, + "nidoqueen": 3.0177998147729905, + "nidoking": 2.010840433749984, + "clefairy": 8.768027489027794, + "clefable": 1.9320571528855521, + "jigglypuff": 26.47286683888944, + "wigglytuff": 1.8722741406016223, + "gloom": 5.201973555336123, + "vileplume": 2.4232126039203923, + "dugtrio": 3.7675004612568515, + "dugtrio-alola": 3.819995746516558, + "persian": 3.614176053278933, + "persian-alola": 3.5867957397265493, + "golduck": 2.5955957092297477, + "poliwrath": 1.7929178738318012, + "kadabra": 3.293206723060529, + "machoke": 3.6084668031989278, + "tentacruel": 2.0718641806664975, + "slowbro": 1.4210979912360011, + "magneton": 2.675270479283941, + "haunter": 3.4572313713332763, + "kingler": 2.0584988329677536, + "exeggutor": 1.6116343135088895, + "marowak": 3.6152693151986597, + "marowak-alola": 2.589981105516488, + "hitmonlee": 2.4690725310801636, + "hitmonchan": 2.049841643931057, + "lickitung": 1.7376465560980896, + "weezing": 1.5191481688288029, + "weezing-galar": 2.472165948100985, + "rhydon": 3.985750199317443, + "chansey": 22.488550456150385, + "tangela": 3.468409352577174, + "kangaskhan": 1.5781811578699627, + "seadra": 3.4403809966143957, + "seaking": 2.010026372604903, + "starmie": 1.1770854420471402, + "mr-mime": 6.762240062515596, + "mr-mime-galar": 3.7852203620674523, + "scyther": 2.49887767485382, + "jynx": 4.600560462371406, + "electabuzz": 1.7074696379665593, + "magmar": 1.880254667021577, + "tauros": 1.7952986878819943, + "ditto": 9.592991783969492, + "vaporeon": 2.733602531721968, + "jolteon": 1.4531098928961206, + "flareon": 2.5517104794245267, + "porygon": 2.325878391546955, + "dragonair": 1.4723771899958495, + "noctowl": 4.888339164028403, + "lanturn": 1.3708445968350538, + "togetic": 5.4583718564242085, + "xatu": 3.302575286128959, + "bellossom": 1.9483817568606765, + "azumarill": 1.8009418502369074, + "sudowoodo": 3.010714776219303, + "politoed": 2.123540967777897, + "quagsire": 4.438266696268462, + "slowking": 2.123319477477356, + "dunsparce": 2.9334135119836127, + "qwilfish": 2.7843517540072313, + "sneasel": 2.238128429981101, + "piloswine": 1.9095207789570867, + "octillery": 1.9805596708664295, + "mantine": 2.122790117622532, + "skarmory": 1.9592902346038779, + "hitmontop": 2.6116984590903423, + "miltank": 3.205208125379275, + "grovyle": 6.646600440567262, + "sceptile": 1.2136719617995102, + "combusken": 3.804122949238752, + "blaziken": 1.8944904253457469, + "marshtomp": 2.346380767080948, + "swampert": 1.1826165793370802, + "linoone": 4.4379520996066155, + "linoone-galar": 4.031365442118233, + "pelipper": 4.672695730685858, + "ninjask": 6.971305039085429, + "exploud": 1.4451816668341069, + "lairon": 3.124385663023273, + "manectric": 1.4829248070116265, + "roselia": 3.4677413996630837, + "sharpedo": 4.079439155454518, + "wailmer": 5.5838802114418105, + "torkoal": 2.5648586394611024, + "flygon": 2.0954806665170937, + "altaria": 1.3327738029243101, + "whiscash": 1.9330064106443265, + "crawdaunt": 1.6580011298095, + "claydol": 3.4880912423892223, + "cradily": 1.9768161859678917, + "armaldo": 2.087528973307902, + "dusclops": 2.897250065812533, + "absol": 1.8086873160119628, + "glalie": 4.1966559351488515, + "sealeo": 2.8626447162456268, + "relicanth": 1.8281267607199023, + "metang": 2.5234896123223107, + "luxray": 2.8902837556455667, + "vespiquen": 2.5240370761624176, + "cherrim": 4.7075896264569845, + "gastrodon": 1.8948161368850371, + "drifblim": 3.211517714579423, + "lopunny": 3.1014101690810003, + "skuntank": 1.3189914114907548, + "bronzong": 2.8015777084603144, + "munchlax": 1.8556347149064047, + "drapion": 2.232920724557082, + "abomasnow": 2.836720609617506, + "froslass": 2.953452485669259, + "rotom": 2.8451155244205504, + "stoutland": 2.0459243718094124, + "liepard": 6.080700585460244, + "musharna": 1.2356087974109895, + "unfezant": 5.694427722987447, + "boldore": 4.0687678484019525, + "swoobat": 4.727356589163197, + "audino": 1.9383625726908866, + "gurdurr": 2.0361921913890586, + "palpitoad": 3.4201791291899513, + "seismitoad": 5.441450017087367, + "scolipede": 2.9331822186261136, + "whimsicott": 2.6464568787764757, + "lilligant": 2.4375302499375646, + "basculin-red-striped": 2.388396023281495, + "basculin-blue-striped": 3.0698943381939516, + "krookodile": 3.126370688800428, + "maractus": 1.719657302747534, + "crustle": 2.4212399989821964, + "sigilyph": 2.0597706396237907, + "cofagrigus": 2.310630146567884, + "garbodor": 1.6209314889504491, + "cinccino": 4.091177715573329, + "vanillish": 2.2026326890110255, + "emolga": 2.1781725228418463, + "escavalier": 1.6275886868135387, + "amoonguss": 2.1431717833848163, + "jellicent": 1.2817059068668173, + "galvantula": 1.158842167741648, + "klang": 2.3033677494613864, + "klinklang": 3.174102975009964, + "beheeyem": 1.5195828298555902, + "lampent": 3.1831061300333423, + "fraxure": 1.1875797157066108, + "beartic": 1.806123271158596, + "cryogonal": 1.8786824607960337, + "accelgor": 2.8891806496968466, + "stunfisk": 1.3438157806122024, + "stunfisk-galar": 2.625352041399951, + "mienshao": 3.1401556654836362, + "druddigon": 1.4870284959476723, + "golurk": 2.038722825512471, + "bisharp": 2.1598676291971515, + "bouffalant": 1.1292643341834128, + "heatmor": 2.1825174288744336, + "durant": 2.748403077616408, + "diggersby": 3.480314012598755, + "talonflame": 3.4436646663148407, + "pangoro": 1.6484227047551832, + "doublade": 2.429061730753432, + "malamar": 2.353961396332787, + "barbaracle": 1.3952076617543048, + "heliolisk": 2.3554779293278143, + "tyrantrum": 1.4577525971226253, + "aurorus": 2.8463636562753747, + "hawlucha": 3.213696863347235, + "dedenne": 2.237026334815934, + "klefki": 2.7925881151709326, + "trevenant": 2.459913191964063, + "gourgeist-average": 4.628669579286042, + "charjabug": 3.257171182005663, + "vikavolt": 1.533764413932836, + "ribombee": 4.45518198181585, + "lycanroc-midday": 3.5947411562252256, + "lycanroc-midnight": 2.5298249732210083, + "mudsdale": 1.7457493774181227, + "araquanid": 2.3531164136496323, + "lurantis": 1.9886716806042268, + "shiinotic": 4.205434853052296, + "salazzle": 3.7156317243824395, + "bewear": 1.588589577273173, + "tsareena": 2.496543103492313, + "comfey": 3.9269807289124055, + "oranguru": 2.2438353290771627, + "passimian": 2.109978464752615, + "palossand": 2.353517311813223, + "pyukumuku": 37.71955395441332, + "togedemaru": 1.788754913298661, + "mimikyu-disguised": 3.920931855544887, + "greedent": 1.9200709169943138, + "orbeetle": 1.6822464254227136, + "thievul": 1.6118751217769542, + "eldegoss": 3.181899434408943, + "dubwool": 2.423404151039761, + "drednaw": 1.1748049387903485, + "boltund": 3.6463480790380327, + "carkol": 3.8253237239157407, + "coalossal": 3.247850762084311, + "sandaconda": 3.688867299026083, + "cramorant": 4.687428102300624, + "barraskewda": 3.7119703974027427, + "toxtricity-amped": 2.0407848492036713, + "centiskorch": 2.1895808022369705, + "grapploct": 1.6363141729632076, + "polteageist": 2.058504902412272, + "hatterene": 2.383817124045952, + "grimmsnarl": 3.7042080986816286, + "obstagoon": 2.129017671466329, + "perrserker": 2.9339865867664994, + "alcremie": 1.385963282056598, + "falinks": 2.9182244098443886, + "pincurchin": 2.469983336764863, + "frosmoth": 2.5125730542758573, + "indeedee-male": 2.782723939751228, + "morpeko": 2.111047072009242, + "copperajah": 2.220336881136606, + "duraludon": 1.1594642966404867, + "drakloak": 3.4807636453341892 }, "torkoal": { - "ivysaur": 4.050894571319169, - "charmeleon": 3.440870581467758, - "wartortle": 2.035721220455395, - "butterfree": 5.539591010009927, - "raichu": 4.710174536853211, - "raichu-alola": 3.1238989244532935, - "sandslash": 2.3396390464621524, - "sandslash-alola": 4.279590847410641, - "nidoqueen": 2.483524770210857, - "nidoking": 1.900711940562486, - "clefairy": 9.334759840565068, - "clefable": 2.0502188699221913, - "jigglypuff": 27.515134044336946, - "wigglytuff": 2.0561155557479527, - "gloom": 7.327108098590086, - "vileplume": 4.037594776149696, - "dugtrio": 3.2870364057327857, - "dugtrio-alola": 4.508240382311815, - "persian": 4.384454320072979, - "persian-alola": 4.134991394916889, - "golduck": 2.3458161227848233, - "poliwrath": 1.6065171946735148, - "kadabra": 3.7099288333265283, - "machoke": 4.016919627719046, - "tentacruel": 1.8124833555134967, - "slowbro": 1.5508988412772335, - "magneton": 4.500923145812197, - "haunter": 4.376964670253648, - "kingler": 2.1765970010223716, - "exeggutor": 2.5297699152239597, - "marowak": 3.237488632243519, - "marowak-alola": 1.904130859750892, - "hitmonlee": 2.3228396879394415, - "hitmonchan": 2.217946985852178, - "lickitung": 1.7590633842704482, - "weezing": 1.7026657829800718, - "weezing-galar": 2.8955406647959894, - "rhydon": 2.0823197730143965, - "chansey": 22.975316666954164, - "tangela": 8.330624921521476, - "kangaskhan": 1.8973545637839786, - "seadra": 3.2768794916984554, - "seaking": 2.0611676630836713, - "starmie": 1.2560896095701701, - "mr-mime": 6.007097791426351, - "mr-mime-galar": 4.483402490695552, - "scyther": 3.6722315358224176, - "jynx": 6.2940942874344135, - "electabuzz": 2.3221587350181174, - "magmar": 1.5457943843568192, - "tauros": 2.1397526337718995, - "ditto": 2.1450047249294237, - "vaporeon": 2.381822805842024, - "jolteon": 1.7377663127381795, - "flareon": 2.251340186671216, - "porygon": 2.7615773151456224, - "dragonair": 1.6603957746929936, - "noctowl": 5.32667905451303, - "lanturn": 1.40839412274403, - "togetic": 5.553473469884739, - "xatu": 3.6636594018493294, - "bellossom": 3.200305901987506, - "azumarill": 1.8188749617700988, - "sudowoodo": 2.220846539563391, - "politoed": 1.9839025240948684, - "quagsire": 3.4731678817866833, - "slowking": 2.132851161508605, - "dunsparce": 3.426201427994283, - "qwilfish": 2.9654825853255957, - "sneasel": 2.758107423928652, - "piloswine": 1.7043853551414645, - "octillery": 1.8743806851896254, - "mantine": 1.9510968867325005, - "skarmory": 3.4600286782671525, - "hitmontop": 2.7070645515519667, - "miltank": 4.045762849088856, - "grovyle": 10.03572988029471, - "sceptile": 1.8307609057173995, - "combusken": 2.897062002582861, - "blaziken": 1.4737454973779758, - "marshtomp": 1.9745040149639093, - "swampert": 0.979007635912005, - "linoone": 5.526399362198838, - "linoone-galar": 4.615029492734236, - "pelipper": 5.308188065604758, - "ninjask": 10.010594156983029, - "exploud": 1.59445792952082, - "lairon": 2.6883042062759994, - "manectric": 1.7601955319234714, - "roselia": 4.682006680461413, - "sharpedo": 4.33917980076385, - "wailmer": 5.086345816457052, - "flygon": 2.0601536255174584, - "altaria": 1.446351539578425, - "whiscash": 1.458870895454147, - "crawdaunt": 1.5436380437642732, - "claydol": 2.9848542038034305, - "cradily": 2.1057940182376718, - "armaldo": 1.9176305264298645, - "dusclops": 3.4740118047347477, - "absol": 2.0771690936337146, - "glalie": 5.7097590849411946, - "sealeo": 2.5489576598243504, - "relicanth": 1.488816249647047, - "metang": 4.34568052351453, - "luxray": 3.794726326883029, - "vespiquen": 3.7287315989655743, - "cherrim": 7.494434440835776, - "gastrodon": 1.8492631442029666, - "drifblim": 3.979875923044035, - "lopunny": 3.7692116402194094, - "skuntank": 1.5343217372597282, - "bronzong": 4.562432538710002, - "munchlax": 2.16156856564574, - "drapion": 2.76443195270112, - "abomasnow": 5.749050643574415, - "froslass": 3.956609732383697, - "rotom": 3.576724370785361, - "stoutland": 2.488265960171149, - "liepard": 7.528402093109418, - "musharna": 1.5187983858153418, - "unfezant": 6.847593273362115, - "boldore": 2.9071350416157875, - "swoobat": 5.2410395997499135, - "audino": 2.1956684200475207, - "gurdurr": 2.4140487445420282, - "palpitoad": 2.7807825727860846, - "seismitoad": 5.150214535200763, - "scolipede": 4.742665968276196, - "whimsicott": 4.354854558027439, - "lilligant": 4.150071936600755, - "basculin-red-striped": 2.388433095352495, - "basculin-blue-striped": 2.831530295148966, - "krookodile": 2.7111674591990313, - "maractus": 3.0366360666615924, - "crustle": 2.2570596672824275, - "sigilyph": 2.2757442647932176, - "cofagrigus": 2.6102625673562665, - "garbodor": 1.8691929610223257, - "cinccino": 4.796934873298933, - "vanillish": 2.745629736433047, - "emolga": 2.9674780366782616, - "escavalier": 3.6074237839742427, - "amoonguss": 3.2074223363602754, - "jellicent": 1.3086254299873463, - "galvantula": 2.0484706270911297, - "klang": 3.5984388581648807, - "klinklang": 5.189107544129111, - "beheeyem": 1.6169718842007952, - "lampent": 1.795823864264999, - "fraxure": 1.4242737138395816, - "beartic": 2.2606653892686555, - "cryogonal": 1.9845726098736103, - "accelgor": 3.9163711163366353, - "stunfisk": 1.0663943721196845, - "stunfisk-galar": 2.8849870558805826, - "mienshao": 3.3282373485817245, - "druddigon": 1.6083693616269126, - "golurk": 1.8372911158737426, - "bisharp": 3.57350033413148, - "bouffalant": 1.372915419124206, - "heatmor": 1.719762037854184, - "durant": 8.022980216217784, - "diggersby": 3.089973332396455, - "talonflame": 2.555702066551622, - "pangoro": 1.8726848031752696, - "doublade": 4.337595674424339, - "malamar": 2.857520768538164, - "barbaracle": 1.2035512746706467, - "heliolisk": 3.9208765298772845, - "tyrantrum": 1.2813357509524779, - "aurorus": 2.245157308944935, - "hawlucha": 3.7421688128872317, - "dedenne": 2.9976018707378786, - "klefki": 4.628591873036502, - "trevenant": 4.241156404599045, - "gourgeist-average": 7.937357890576774, - "charjabug": 5.5310639118337175, - "vikavolt": 2.567315267473874, - "ribombee": 6.280696816594923, - "lycanroc-midday": 2.7307641791362998, - "lycanroc-midnight": 2.025605800760065, - "mudsdale": 1.632711410646687, - "araquanid": 2.284647436326883, - "lurantis": 3.2057021087139397, - "shiinotic": 5.6096927975396795, - "salazzle": 2.8151246177339635, - "bewear": 1.9248379375389946, - "tsareena": 4.305925621838204, - "comfey": 4.59714287328814, - "oranguru": 2.527113784258355, - "passimian": 2.47623378485598, - "palossand": 1.8922249196925969, - "pyukumuku": 35.43541246392577, - "togedemaru": 2.97146580342185, - "mimikyu-disguised": 4.063203576539632, - "greedent": 2.3348209119271437, - "orbeetle": 2.3073099943518605, - "thievul": 1.757007463660312, - "eldegoss": 4.879079806094971, - "dubwool": 4.116566340103007, - "drednaw": 1.0036805484637026, - "boltund": 4.710387277010245, - "carkol": 1.864656134073636, - "coalossal": 1.4259046356814733, - "sandaconda": 3.2160645476976653, - "cramorant": 4.786229930452427, - "barraskewda": 3.970959980336062, - "toxtricity-amped": 2.5098908883980733, - "centiskorch": 1.9217461085888774, - "grapploct": 1.5573899844665666, - "polteageist": 2.575601927889031, - "hatterene": 2.515964095878036, - "grimmsnarl": 3.7195328930901583, - "obstagoon": 2.667177882078991, - "perrserker": 5.059208730539031, - "alcremie": 1.4726547904809462, - "falinks": 3.5930292711320186, - "pincurchin": 2.7405404654802323, - "frosmoth": 4.329722609778413, - "indeedee-male": 2.9458803546514236, - "morpeko": 2.778499725588878, - "copperajah": 3.411043947332455, - "duraludon": 1.8730429280993293, - "drakloak": 3.7894669534771745, - "torkoal": 1.7921286540170884 + "ivysaur": 4.058321857504964, + "charmeleon": 3.439246786342804, + "wartortle": 2.0285657985802708, + "butterfree": 5.547548678975179, + "raichu": 4.706656467367322, + "raichu-alola": 3.118807839823661, + "sandslash": 2.3405723223141046, + "sandslash-alola": 4.297666060894772, + "nidoqueen": 2.4782911445322044, + "nidoking": 1.9023480191857627, + "clefairy": 9.346488191440463, + "clefable": 2.0487502555388097, + "jigglypuff": 27.54091655637958, + "wigglytuff": 2.0557128603190464, + "gloom": 7.3379576785666885, + "vileplume": 4.048586810887783, + "dugtrio": 3.2823582584612288, + "dugtrio-alola": 4.517277270901567, + "persian": 4.38564815094217, + "persian-alola": 4.134709831252641, + "golduck": 2.3380867668458896, + "poliwrath": 1.604753400231791, + "kadabra": 3.7076189687427696, + "machoke": 4.019195069672047, + "tentacruel": 1.8054719308331615, + "slowbro": 1.549054015459312, + "magneton": 4.509820611708435, + "haunter": 4.375647369897481, + "kingler": 2.1738198664742665, + "exeggutor": 2.533275370413069, + "marowak": 3.2392511012184624, + "marowak-alola": 1.9050781096794032, + "hitmonlee": 2.3250673284163215, + "hitmonchan": 2.221332032192157, + "lickitung": 1.7565390657876678, + "weezing": 1.7025783158744625, + "weezing-galar": 2.8991758378654664, + "rhydon": 2.0786579731800945, + "chansey": 22.91097428844833, + "tangela": 8.364330969399447, + "kangaskhan": 1.8980984218787724, + "seadra": 3.2649052598793706, + "seaking": 2.0580606031486566, + "starmie": 1.2538262283724368, + "mr-mime": 5.998806402103315, + "mr-mime-galar": 4.485763118609825, + "scyther": 3.681690942784124, + "jynx": 6.3086234676506425, + "electabuzz": 2.3191528321529398, + "magmar": 1.5447709743920006, + "tauros": 2.1411140453994006, + "ditto": 2.1341891195603964, + "vaporeon": 2.3719476049229318, + "jolteon": 1.735737565137684, + "flareon": 2.2459258225554586, + "porygon": 2.76077847827675, + "dragonair": 1.6592124409726732, + "noctowl": 5.323352652837979, + "lanturn": 1.403097409317418, + "togetic": 5.562688593356658, + "xatu": 3.660088650186123, + "bellossom": 3.2084380099487992, + "azumarill": 1.8186691508619817, + "sudowoodo": 2.21710994407347, + "politoed": 1.9773311267381246, + "quagsire": 3.4601846891012187, + "slowking": 2.1293385917546512, + "dunsparce": 3.4292023218185985, + "qwilfish": 2.962568046663055, + "sneasel": 2.7631028133108355, + "piloswine": 1.706079039835831, + "octillery": 1.8697505779509747, + "mantine": 1.9450522592963588, + "skarmory": 3.47502878548124, + "hitmontop": 2.709024564969264, + "miltank": 4.051707410224681, + "grovyle": 10.05806748924358, + "sceptile": 1.8354073602224834, + "combusken": 2.8954959180140736, + "blaziken": 1.474413896696542, + "marshtomp": 1.9697467946214058, + "swampert": 0.9751578430623606, + "linoone": 5.5322132024095465, + "linoone-galar": 4.614565416436713, + "pelipper": 5.302029352382922, + "ninjask": 10.035141121333815, + "exploud": 1.5931247180739838, + "lairon": 2.6909341862747413, + "manectric": 1.7608780741928898, + "roselia": 4.687367520514191, + "sharpedo": 4.334362693938157, + "wailmer": 5.071915080799768, + "torkoal": 1.7921286540170884, + "flygon": 2.058242198622729, + "altaria": 1.444824342611281, + "whiscash": 1.4551137748743619, + "crawdaunt": 1.5405846740921616, + "claydol": 2.9784177009854034, + "cradily": 2.1022195131540125, + "armaldo": 1.917865221989996, + "dusclops": 3.4749470849742847, + "absol": 2.0793518920786793, + "glalie": 5.726676360425225, + "sealeo": 2.5421096635907974, + "relicanth": 1.484304791754055, + "metang": 4.359851911232771, + "luxray": 3.7937810254535282, + "vespiquen": 3.7394193213356344, + "cherrim": 7.506872801138702, + "gastrodon": 1.846845082046901, + "drifblim": 3.9738878097627035, + "lopunny": 3.771932558348298, + "skuntank": 1.5362811572265356, + "bronzong": 4.577116038058449, + "munchlax": 2.1613307518538263, + "drapion": 2.7710631996733186, + "abomasnow": 5.771054988965007, + "froslass": 3.9649319597336112, + "rotom": 3.5740605579243754, + "stoutland": 2.4885855367637637, + "liepard": 7.539505601195952, + "musharna": 1.5184397215478234, + "unfezant": 6.856648106989137, + "boldore": 2.9026616383568897, + "swoobat": 5.235921578209705, + "audino": 2.19555556625821, + "gurdurr": 2.41621192170118, + "palpitoad": 2.76992237312462, + "seismitoad": 5.136763326328474, + "scolipede": 4.7598982876763944, + "whimsicott": 4.366461915281453, + "lilligant": 4.1608415448569955, + "basculin-red-striped": 2.3853393020498, + "basculin-blue-striped": 2.8232139704233514, + "krookodile": 2.7081825681057046, + "maractus": 3.0452656287645867, + "crustle": 2.2590746298916624, + "sigilyph": 2.2744898524978834, + "cofagrigus": 2.6080869938108027, + "garbodor": 1.870082772056142, + "cinccino": 4.800139196293952, + "vanillish": 2.750134944096322, + "emolga": 2.9676221234223505, + "escavalier": 3.619079952076254, + "amoonguss": 3.2114780541592314, + "jellicent": 1.3067720517457835, + "galvantula": 2.0511768974958082, + "klang": 3.601309207406165, + "klinklang": 5.207953972873485, + "beheeyem": 1.6137861056388698, + "lampent": 1.788750407870285, + "fraxure": 1.4243176912722468, + "beartic": 2.2634956324779036, + "cryogonal": 1.9874737912437284, + "accelgor": 3.923357939730323, + "stunfisk": 1.063389089964768, + "stunfisk-galar": 2.8852770162094368, + "mienshao": 3.327485042569874, + "druddigon": 1.608147532039141, + "golurk": 1.8364059393039, + "bisharp": 3.583368372667803, + "bouffalant": 1.3749404565006973, + "heatmor": 1.717014936859759, + "durant": 8.069880401219603, + "diggersby": 3.087399709957621, + "talonflame": 2.5546664303581403, + "pangoro": 1.87510981382956, + "doublade": 4.356985760569504, + "malamar": 2.8565749385244232, + "barbaracle": 1.2006444876126947, + "heliolisk": 3.9190284761235272, + "tyrantrum": 1.278974170590017, + "aurorus": 2.2401922461373602, + "hawlucha": 3.74626664323306, + "dedenne": 2.998345602805764, + "klefki": 4.646665123025066, + "trevenant": 4.254454330411039, + "gourgeist-average": 7.961209845844023, + "charjabug": 5.5429915743367175, + "vikavolt": 2.5729655024514413, + "ribombee": 6.297345768621131, + "lycanroc-midday": 2.723963236032737, + "lycanroc-midnight": 2.0225489305457165, + "mudsdale": 1.6337708724849436, + "araquanid": 2.2857126601644824, + "lurantis": 3.2122283198592365, + "shiinotic": 5.619201827546368, + "salazzle": 2.814978200772488, + "bewear": 1.9262289679287299, + "tsareena": 4.319771216625499, + "comfey": 4.603335963953343, + "oranguru": 2.5248196452298868, + "passimian": 2.4783278500921933, + "palossand": 1.8881178892467299, + "pyukumuku": 35.36568942415598, + "togedemaru": 2.9790406696784464, + "mimikyu-disguised": 4.065031492174429, + "greedent": 2.3375992551019795, + "orbeetle": 2.3087361244332807, + "thievul": 1.7571313443130028, + "eldegoss": 4.887259200331501, + "dubwool": 4.127451858125891, + "drednaw": 1.00129243051373, + "boltund": 4.710992637862416, + "carkol": 1.8589970269009173, + "coalossal": 1.419810004383165, + "sandaconda": 3.214728483341749, + "cramorant": 4.7793592003350795, + "barraskewda": 3.9666632523339946, + "toxtricity-amped": 2.5070103913331447, + "centiskorch": 1.9203112350415636, + "grapploct": 1.5566489817336366, + "polteageist": 2.575586829519032, + "hatterene": 2.5167181945084742, + "grimmsnarl": 3.7190336592925943, + "obstagoon": 2.667704460506826, + "perrserker": 5.075854863272415, + "alcremie": 1.4743723459597424, + "falinks": 3.600366648907189, + "pincurchin": 2.7343335665035093, + "frosmoth": 4.337780622387481, + "indeedee-male": 2.9433737788131573, + "morpeko": 2.7792087350574635, + "copperajah": 3.421882521468267, + "duraludon": 1.8763151204082364, + "drakloak": 3.7841940704255377 }, "flygon": { - "ivysaur": 3.552170825889356, - "charmeleon": 4.2888762375930565, - "wartortle": 2.61673421684538, - "butterfree": 5.160290406760513, - "raichu": 6.357723203525703, - "raichu-alola": 4.230104094944373, - "sandslash": 2.240735037817659, - "sandslash-alola": 2.0437771077005715, - "nidoqueen": 3.2962402823904275, - "nidoking": 2.012246948642624, - "clefairy": 11.36051804413933, - "clefable": 2.039588496483563, - "jigglypuff": 27.530631545756147, - "wigglytuff": 1.9975114702242158, - "gloom": 5.782323703254682, - "vileplume": 3.1304701624493383, - "dugtrio": 4.603868014894868, - "dugtrio-alola": 3.704049860828439, - "persian": 4.336925442985153, - "persian-alola": 4.617577018058752, - "golduck": 3.2331597557429337, - "poliwrath": 1.9767791024871828, - "kadabra": 4.132124378980765, - "machoke": 4.105936814915729, - "tentacruel": 2.8035406173310764, - "slowbro": 2.0894967378425253, - "magneton": 4.990298982282346, - "haunter": 4.969988909241861, - "kingler": 2.503385618943333, - "exeggutor": 2.9742369714479615, - "marowak": 3.2848019472678756, - "marowak-alola": 2.374624136623966, - "hitmonlee": 2.8573302269357206, - "hitmonchan": 2.232765916443163, - "lickitung": 1.7028144866149368, - "weezing": 1.9084691409386152, - "weezing-galar": 2.895256380422394, - "rhydon": 2.8475113035802515, - "chansey": 32.393278510023, - "tangela": 6.252402738249808, - "kangaskhan": 1.8849165139186614, - "seadra": 3.836264413579463, - "seaking": 2.812134269726333, - "starmie": 1.3178222458409516, - "mr-mime": 8.376061559279316, - "mr-mime-galar": 3.025794786449244, - "scyther": 2.8166216547720886, - "jynx": 4.240700248842373, - "electabuzz": 3.452003107417366, - "magmar": 2.0463632515163046, - "tauros": 2.1042538529317074, - "ditto": 4.151501350826305, - "vaporeon": 3.5986944023359473, - "jolteon": 2.326499918393881, - "flareon": 2.983008904969978, - "porygon": 2.729504053622604, - "dragonair": 2.136768076961004, - "noctowl": 6.667515994454288, - "lanturn": 2.281553814110415, - "togetic": 5.9820948006033605, - "xatu": 4.0072074626962, - "bellossom": 2.2508974485521103, - "azumarill": 1.8647834793629552, - "sudowoodo": 3.069371433784317, - "politoed": 2.972307233986241, - "quagsire": 4.6992437348153215, - "slowking": 2.4002223757015355, - "dunsparce": 2.9959744876654106, - "qwilfish": 3.937562216123959, - "sneasel": 2.3263621999893527, - "piloswine": 1.2809618205092497, - "octillery": 2.504231874491439, - "mantine": 2.8843551060966703, - "skarmory": 1.5975738624354738, - "hitmontop": 2.6349975008571445, - "miltank": 3.3131464393538805, - "grovyle": 8.712057131857364, - "sceptile": 1.4768066122605805, - "combusken": 3.7468236736034943, - "blaziken": 1.8537321646060883, - "marshtomp": 2.464121708039463, - "swampert": 1.1179734088759647, - "linoone": 5.410161727076094, - "linoone-galar": 5.079093470852714, - "pelipper": 6.027503563389601, - "ninjask": 8.06010013406211, - "exploud": 1.3944299568886331, - "lairon": 4.062205366222594, - "manectric": 2.055762130312263, - "roselia": 4.519003293686445, - "sharpedo": 5.28217876754559, - "wailmer": 6.921367976967481, - "torkoal": 2.3201898483435435, - "altaria": 2.1816211863598887, - "whiscash": 2.1728357156101525, - "crawdaunt": 2.361421874499709, - "claydol": 3.6466477814442384, - "cradily": 2.673753778081837, - "armaldo": 2.1192070770098606, - "dusclops": 3.5695498579513645, - "absol": 1.868216629406328, - "glalie": 3.7491599514925085, - "sealeo": 2.7728390032749033, - "relicanth": 2.1378117487432844, - "metang": 3.2623798149308993, - "luxray": 4.592601704734087, - "vespiquen": 2.8352855936659505, - "cherrim": 6.259294135040502, - "gastrodon": 2.3654502155958417, - "drifblim": 5.069608388333178, - "lopunny": 3.90124122639529, - "skuntank": 1.6716395401302968, - "bronzong": 2.775989273486215, - "munchlax": 2.841645905734803, - "drapion": 2.7135101111780715, - "abomasnow": 2.992838590198355, - "froslass": 2.498820821377375, - "rotom": 4.338137779075501, - "stoutland": 2.508350595349883, - "liepard": 7.220985033627101, - "musharna": 1.6590103527251416, - "unfezant": 6.259306961553783, - "boldore": 4.0969355239890755, - "swoobat": 5.733833405164646, - "audino": 2.3379131376127167, - "gurdurr": 2.253142721031166, - "palpitoad": 4.258766084130382, - "seismitoad": 7.061105648319316, - "scolipede": 3.202878859041364, - "whimsicott": 3.2377344842393856, - "lilligant": 3.334759437464543, - "basculin-red-striped": 2.6450922610712926, - "basculin-blue-striped": 3.741724589887177, - "krookodile": 3.3664570373832223, - "maractus": 2.433346187337845, - "crustle": 2.142125104651718, - "sigilyph": 2.432781908332921, - "cofagrigus": 2.583126465685859, - "garbodor": 2.1100106443406834, - "cinccino": 4.0633768686653875, - "vanillish": 1.7455241215180524, - "emolga": 3.7623097839863586, - "escavalier": 1.7001129589881205, - "amoonguss": 2.84795742222615, - "jellicent": 1.337519582943652, - "galvantula": 1.9275007803717448, - "klang": 3.1293336687908067, - "klinklang": 3.564510268827007, - "beheeyem": 1.9942905835365807, - "lampent": 3.094748230187335, - "fraxure": 1.8225573736996088, - "beartic": 1.3702545690496293, - "cryogonal": 1.486698432106678, - "accelgor": 3.440634381835908, - "stunfisk": 1.515553004886039, - "stunfisk-galar": 2.55818636795306, - "mienshao": 3.628501565382714, - "druddigon": 2.6960093763509088, - "golurk": 2.0234231086532586, - "bisharp": 2.700180730870481, - "bouffalant": 1.3610321587880119, - "heatmor": 2.2137718289690476, - "durant": 2.8614164549252186, - "diggersby": 3.7751381321011923, - "talonflame": 3.1673618224663693, - "pangoro": 1.8127198947134784, - "doublade": 2.8462722520283674, - "malamar": 4.531619167625784, - "barbaracle": 1.4103876699739488, - "heliolisk": 4.619492328339458, - "tyrantrum": 1.8709983524869869, - "aurorus": 3.232340623637869, - "hawlucha": 3.6636744976318814, - "dedenne": 2.6675050767351327, - "klefki": 2.9666290974886556, - "trevenant": 3.2068000953254536, - "gourgeist-average": 5.203479003963311, - "charjabug": 4.5995446120239185, - "vikavolt": 2.0319282860754897, - "ribombee": 5.013098859833444, - "lycanroc-midday": 3.9185049380718198, - "lycanroc-midnight": 2.6772035909546794, - "mudsdale": 1.663219418745678, - "araquanid": 2.675994645627207, - "lurantis": 2.6205379633605417, - "shiinotic": 4.547069609360774, - "salazzle": 4.517542757187422, - "bewear": 1.7683304783822504, - "tsareena": 3.3825195891855495, - "comfey": 4.815310337962224, - "oranguru": 2.9358033453732006, - "passimian": 2.344224788964433, - "palossand": 2.12785347486955, - "pyukumuku": 47.47538239602705, - "togedemaru": 3.243577750914417, - "mimikyu-disguised": 4.802557952597243, - "greedent": 2.1449821734750656, - "orbeetle": 1.9591479851067062, - "thievul": 2.1099628100529944, - "eldegoss": 4.235845493202929, - "dubwool": 3.0247771105078245, - "drednaw": 1.4566057077364234, - "boltund": 5.576908664076987, - "carkol": 3.505850830446173, - "coalossal": 2.822214086252781, - "sandaconda": 2.99875854988404, - "cramorant": 6.241700787364698, - "barraskewda": 4.4724525241900315, - "toxtricity-amped": 3.8389199652293584, - "centiskorch": 2.444548278579932, - "grapploct": 1.739522489847114, - "polteageist": 3.113309219206088, - "hatterene": 2.656386459422376, - "grimmsnarl": 4.4199099142110025, - "obstagoon": 2.956701531772998, - "perrserker": 3.6673122692747295, - "alcremie": 1.5639682217939759, - "falinks": 3.023551737754807, - "pincurchin": 3.489545882292661, - "frosmoth": 3.048192454029127, - "indeedee-male": 3.69104280631059, - "morpeko": 3.1144292332318964, - "copperajah": 2.441009503042611, - "duraludon": 1.7287267507322595, - "drakloak": 6.237378634236977, - "flygon": 3.231041974808596 + "ivysaur": 3.557006510110354, + "charmeleon": 4.292211230987268, + "wartortle": 2.613455795507947, + "butterfree": 5.161896029787531, + "raichu": 6.377797938075583, + "raichu-alola": 4.240283261131433, + "sandslash": 2.2452577067217243, + "sandslash-alola": 2.0374883310165104, + "nidoqueen": 3.304695891440528, + "nidoking": 2.014210585524754, + "clefairy": 11.373494411687897, + "clefable": 2.037642175724243, + "jigglypuff": 27.462056657915014, + "wigglytuff": 1.9946773547605479, + "gloom": 5.781504375688945, + "vileplume": 3.13291633968488, + "dugtrio": 4.621907676445393, + "dugtrio-alola": 3.708735452008543, + "persian": 4.334607530219582, + "persian-alola": 4.623934350800382, + "golduck": 3.2340912417275347, + "poliwrath": 1.976807259920209, + "kadabra": 4.132848733047949, + "machoke": 4.110036349021993, + "tentacruel": 2.8067405680133684, + "slowbro": 2.0924603534922106, + "magneton": 5.000398368150251, + "haunter": 4.972945039287192, + "kingler": 2.5059607849176047, + "exeggutor": 2.981354313288374, + "marowak": 3.2915867470987856, + "marowak-alola": 2.377613506296264, + "hitmonlee": 2.8613117922448668, + "hitmonchan": 2.23174923674459, + "lickitung": 1.7017168895441226, + "weezing": 1.9120337389969868, + "weezing-galar": 2.8938093055430536, + "rhydon": 2.854664259628138, + "chansey": 32.40143836170569, + "tangela": 6.258485417409791, + "kangaskhan": 1.884969806761155, + "seadra": 3.832345809990784, + "seaking": 2.8171440766057367, + "starmie": 1.3171049145615994, + "mr-mime": 8.376974278257078, + "mr-mime-galar": 3.0222127483295105, + "scyther": 2.8159499851495142, + "jynx": 4.227842642128339, + "electabuzz": 3.4643528642354164, + "magmar": 2.0502588488919757, + "tauros": 2.107372102696882, + "ditto": 4.134242623683672, + "vaporeon": 3.600334163144462, + "jolteon": 2.33241614744761, + "flareon": 2.986921570795028, + "porygon": 2.726705209314358, + "dragonair": 2.134828722131296, + "noctowl": 6.669392462652808, + "lanturn": 2.2868754127020567, + "togetic": 5.976707021066803, + "xatu": 4.00833073327049, + "bellossom": 2.251272865668478, + "azumarill": 1.8623860913454566, + "sudowoodo": 3.0785787387500623, + "politoed": 2.977277619357097, + "quagsire": 4.701487827717292, + "slowking": 2.396993701709441, + "dunsparce": 2.991032283214678, + "qwilfish": 3.9411793609327432, + "sneasel": 2.3229771541703395, + "piloswine": 1.2785929816322894, + "octillery": 2.5057091247592354, + "mantine": 2.885635145908467, + "skarmory": 1.5952262575955076, + "hitmontop": 2.632216886270225, + "miltank": 3.3102338861223295, + "grovyle": 8.723328377736983, + "sceptile": 1.4780229270535334, + "combusken": 3.7505803251541145, + "blaziken": 1.8563758017357657, + "marshtomp": 2.4625119036791387, + "swampert": 1.1178556968291837, + "linoone": 5.412090368882243, + "linoone-galar": 5.084324096806315, + "pelipper": 6.022748917687784, + "ninjask": 8.061533698956302, + "exploud": 1.3926723838246067, + "lairon": 4.067352308581343, + "manectric": 2.0613297281319007, + "roselia": 4.522732410227507, + "sharpedo": 5.282638341953312, + "wailmer": 6.925017821125722, + "torkoal": 2.3240735785470563, + "flygon": 3.231041974808596, + "altaria": 2.1803826586095, + "whiscash": 2.1738978349869003, + "crawdaunt": 2.3638025914761602, + "claydol": 3.6510343516522368, + "cradily": 2.681294760759441, + "armaldo": 2.1250734756433345, + "dusclops": 3.5721136580431745, + "absol": 1.8688900175154646, + "glalie": 3.7393443016491843, + "sealeo": 2.764880759433222, + "relicanth": 2.1392291355424256, + "metang": 3.2661146915986596, + "luxray": 4.604740973732819, + "vespiquen": 2.8348386756008406, + "cherrim": 6.265883635872221, + "gastrodon": 2.3671585560949255, + "drifblim": 5.079245917516495, + "lopunny": 3.903372403867155, + "skuntank": 1.6752182620442735, + "bronzong": 2.7749895153708346, + "munchlax": 2.8484761234753435, + "drapion": 2.717435144367007, + "abomasnow": 2.986793850561635, + "froslass": 2.4899515986958187, + "rotom": 4.347577346885121, + "stoutland": 2.508514037773625, + "liepard": 7.222296166698245, + "musharna": 1.661110479150893, + "unfezant": 6.259466299793173, + "boldore": 4.108826372397582, + "swoobat": 5.735454889967571, + "audino": 2.338846149326811, + "gurdurr": 2.255607968814313, + "palpitoad": 4.266470227782987, + "seismitoad": 7.068247654204949, + "scolipede": 3.203444665968532, + "whimsicott": 3.234505436153726, + "lilligant": 3.3386425489140903, + "basculin-red-striped": 2.641595544111767, + "basculin-blue-striped": 3.7433231311967607, + "krookodile": 3.375476413094704, + "maractus": 2.4370252263851313, + "crustle": 2.1457853654770638, + "sigilyph": 2.4333948397485985, + "cofagrigus": 2.5841824708093775, + "garbodor": 2.114383534413726, + "cinccino": 4.052556683080495, + "vanillish": 1.7381600549585605, + "emolga": 3.771806231258303, + "escavalier": 1.7012701966259938, + "amoonguss": 2.852683007359328, + "jellicent": 1.3349641501021088, + "galvantula": 1.9335559321338534, + "klang": 3.134971240340054, + "klinklang": 3.5635448247733628, + "beheeyem": 1.9974934705690433, + "lampent": 3.101788651763215, + "fraxure": 1.8214927450230982, + "beartic": 1.366610021766585, + "cryogonal": 1.4815891071609721, + "accelgor": 3.443263323746799, + "stunfisk": 1.5207362191774936, + "stunfisk-galar": 2.56153360901119, + "mienshao": 3.6315798760224443, + "druddigon": 2.703079553487851, + "golurk": 2.0261703601114784, + "bisharp": 2.7018985860018034, + "bouffalant": 1.3623769649744328, + "heatmor": 2.218497238183791, + "durant": 2.8615881351219095, + "diggersby": 3.7867827901815785, + "talonflame": 3.1683789385378605, + "pangoro": 1.814131806051789, + "doublade": 2.846638790843622, + "malamar": 4.5447955698960865, + "barbaracle": 1.409581823813558, + "heliolisk": 4.633079494231669, + "tyrantrum": 1.8738764627069802, + "aurorus": 3.2314439659491185, + "hawlucha": 3.664340588324773, + "dedenne": 2.6662562370158334, + "klefki": 2.961124694675608, + "trevenant": 3.2101719495230396, + "gourgeist-average": 5.2110052774059525, + "charjabug": 4.619322059037392, + "vikavolt": 2.035509377296959, + "ribombee": 5.0052972673721285, + "lycanroc-midday": 3.929871167928437, + "lycanroc-midnight": 2.6831422272218166, + "mudsdale": 1.6657180837574992, + "araquanid": 2.678542192858757, + "lurantis": 2.623081711591742, + "shiinotic": 4.536925996743572, + "salazzle": 4.528792095916714, + "bewear": 1.767556896164621, + "tsareena": 3.3867657635533455, + "comfey": 4.808869764891298, + "oranguru": 2.93915696063294, + "passimian": 2.3461201943715952, + "palossand": 2.131441015798596, + "pyukumuku": 47.51138789415711, + "togedemaru": 3.2494628845983513, + "mimikyu-disguised": 4.8020412741775385, + "greedent": 2.1456329258618663, + "orbeetle": 1.960760027261755, + "thievul": 2.1133415482508413, + "eldegoss": 4.2404389617004155, + "dubwool": 3.025778964387974, + "drednaw": 1.458084502570522, + "boltund": 5.591261838944976, + "carkol": 3.5148026061431166, + "coalossal": 2.8279320145879376, + "sandaconda": 3.000274758087512, + "cramorant": 6.241970588038086, + "barraskewda": 4.469086687668808, + "toxtricity-amped": 3.8486405944514432, + "centiskorch": 2.4489292413485044, + "grapploct": 1.7403381805797022, + "polteageist": 3.116822662331901, + "hatterene": 2.6535380978711607, + "grimmsnarl": 4.421853827516401, + "obstagoon": 2.961414300721911, + "perrserker": 3.6698970586599504, + "alcremie": 1.563142650455204, + "falinks": 3.02361477996591, + "pincurchin": 3.4997550762955383, + "frosmoth": 3.049849698329938, + "indeedee-male": 3.6974983952450224, + "morpeko": 3.1200598558007924, + "copperajah": 2.440789564418581, + "duraludon": 1.730287599728383, + "drakloak": 6.239422827397302 }, "altaria": { - "ivysaur": 3.582762378755275, - "charmeleon": 3.867250374777859, - "wartortle": 2.623823238997245, - "butterfree": 4.945200573636278, - "raichu": 4.999287692470148, - "raichu-alola": 3.2619548680419017, - "sandslash": 2.340124554800947, - "sandslash-alola": 2.6567807822026808, - "nidoqueen": 2.8977415145497343, - "nidoking": 1.7456507141055737, - "clefairy": 8.675890529952166, - "clefable": 1.5292223165379575, - "jigglypuff": 20.96579518438857, - "wigglytuff": 1.597069088107388, - "gloom": 5.685899422155806, - "vileplume": 3.4906982377349554, - "dugtrio": 3.3962520145100212, - "dugtrio-alola": 3.816087499530236, - "persian": 3.9559042013265087, - "persian-alola": 4.50924317653578, - "golduck": 3.159678363910264, - "poliwrath": 2.147007641495116, - "kadabra": 3.2828986409095724, - "machoke": 4.1354314479477905, - "tentacruel": 2.2715232709466244, - "slowbro": 1.8496925365221717, - "magneton": 3.6016131514088032, - "haunter": 4.522123699495351, - "kingler": 2.911268811751404, - "exeggutor": 2.242893815163412, - "marowak": 3.2995632367012773, - "marowak-alola": 2.14109095940352, - "hitmonlee": 2.4656403262343014, - "hitmonchan": 1.9999786184577255, - "lickitung": 1.6664074633891754, - "weezing": 1.7318134016363615, - "weezing-galar": 2.3527007472484867, - "rhydon": 2.476915196408811, - "chansey": 19.670508692445004, - "tangela": 6.54339737590881, - "kangaskhan": 1.7476673916619274, - "seadra": 4.461683500637905, - "seaking": 2.481854668595545, - "starmie": 1.19025290098755, - "mr-mime": 5.758273212432828, - "mr-mime-galar": 2.867007794432524, - "scyther": 2.905564483728303, - "jynx": 4.07012541838984, - "electabuzz": 2.439556453729195, - "magmar": 1.7080166771751175, - "tauros": 2.1574597100246486, - "ditto": 2.3295338123780334, - "vaporeon": 3.0981349163448293, - "jolteon": 1.8105574006097198, - "flareon": 2.3802257231745987, - "porygon": 2.4881237110780674, - "dragonair": 1.8666084764411048, - "noctowl": 5.254445964554495, - "lanturn": 1.9334544399796876, - "togetic": 4.465716062807974, - "xatu": 3.787528186700891, - "bellossom": 2.362948644626385, - "azumarill": 1.8650741402798383, - "sudowoodo": 2.6365845221552053, - "politoed": 2.639513497586116, - "quagsire": 5.079264933274298, - "slowking": 2.132513391708355, - "dunsparce": 2.951794033233112, - "qwilfish": 3.6169709360472933, - "sneasel": 2.0918883850542853, - "piloswine": 1.2549461168676888, - "octillery": 2.4340525276565383, - "mantine": 2.2991882551318996, - "skarmory": 2.49467042643732, - "hitmontop": 2.6176746863827356, - "miltank": 3.42837248588054, - "grovyle": 8.903484295172303, - "sceptile": 1.4894296107537672, - "combusken": 3.5291702455874336, - "blaziken": 1.7069094564846932, - "marshtomp": 2.382516059749199, - "swampert": 1.0974405015813158, - "linoone": 5.120923566264356, - "linoone-galar": 4.946003327203552, - "pelipper": 6.159935230389827, - "ninjask": 8.538941094395597, - "exploud": 1.3243520585935733, - "lairon": 2.0594656636975324, - "manectric": 1.7753343334538085, - "roselia": 4.22294805155997, - "sharpedo": 5.188234199715783, - "wailmer": 6.675552456336099, - "torkoal": 2.188576422899708, - "flygon": 2.9116878682413985, - "whiscash": 2.1900574761136116, - "crawdaunt": 2.3915026077884347, - "claydol": 3.1354450538268486, - "cradily": 2.2212350585939147, - "armaldo": 1.90003719269257, - "dusclops": 3.374823113530772, - "absol": 1.8487703571080665, - "glalie": 3.6294132648527153, - "sealeo": 2.780995046884101, - "relicanth": 1.8525642504919948, - "metang": 3.214407121922404, - "luxray": 3.7346299625287376, - "vespiquen": 3.017478079812188, - "cherrim": 6.639253724677077, - "gastrodon": 2.078996576628793, - "drifblim": 4.11105821075111, - "lopunny": 3.5607096314144693, - "skuntank": 1.4767038618675454, - "bronzong": 3.3844209656746624, - "munchlax": 2.049320699432457, - "drapion": 2.5139272208086334, - "abomasnow": 3.7389087183802903, - "froslass": 2.456714803806051, - "rotom": 3.6667538830782522, - "stoutland": 2.3344073339399287, - "liepard": 6.930709788140634, - "musharna": 1.541785669928939, - "unfezant": 6.356842586666305, - "boldore": 3.4994073144715285, - "swoobat": 5.412912817606012, - "audino": 2.2367549681188796, - "gurdurr": 2.776376563660926, - "palpitoad": 4.054553503304129, - "seismitoad": 6.301007397049609, - "scolipede": 3.647482152418675, - "whimsicott": 3.392667528060504, - "lilligant": 3.6144934460895946, - "basculin-red-striped": 2.6732406847247763, - "basculin-blue-striped": 3.831957662844762, - "krookodile": 3.2038980745402936, - "maractus": 2.5967226941342036, - "crustle": 2.1189661484200264, - "sigilyph": 2.3029111050850832, - "cofagrigus": 2.6664121086630557, - "garbodor": 1.8207422720573838, - "cinccino": 3.801652516469394, - "vanillish": 1.7308689210309467, - "emolga": 3.0024507662406617, - "escavalier": 2.9914400213478487, - "amoonguss": 2.816495717758311, - "jellicent": 1.1532787081912854, - "galvantula": 1.7550617475576362, - "klang": 2.9752233035080593, - "klinklang": 3.744744952992271, - "beheeyem": 1.6976779202579269, - "lampent": 2.772926521463087, - "fraxure": 1.8674239961812327, - "beartic": 1.430003038025681, - "cryogonal": 1.197489687292969, - "accelgor": 3.414157878464021, - "stunfisk": 1.3458754214070092, - "stunfisk-galar": 2.720228336341918, - "mienshao": 3.523345594455865, - "druddigon": 2.366810503038478, - "golurk": 1.9169830963329244, - "bisharp": 2.7110906304134197, - "bouffalant": 1.277495752110947, - "heatmor": 2.021776954797312, - "durant": 5.400744860551692, - "diggersby": 3.3000071531869524, - "talonflame": 2.9756719483935017, - "pangoro": 2.5999849961029904, - "doublade": 3.0980200672442315, - "malamar": 3.0690391824659327, - "barbaracle": 1.3459412731320428, - "heliolisk": 3.682143011489292, - "tyrantrum": 2.0765216637687782, - "aurorus": 1.9499500092039157, - "hawlucha": 3.8873223709666767, - "dedenne": 2.264626731611335, - "klefki": 3.132608428544624, - "trevenant": 3.507473003413142, - "gourgeist-average": 6.163505829301821, - "charjabug": 4.585312685887142, - "vikavolt": 2.165506422801993, - "ribombee": 4.891563481608911, - "lycanroc-midday": 2.91300904139884, - "lycanroc-midnight": 2.1913264045472225, - "mudsdale": 1.6686269332945383, - "araquanid": 2.312886969295456, - "lurantis": 2.756874908827334, - "shiinotic": 4.219963760040534, - "salazzle": 3.216732629236976, - "bewear": 1.9263040279446153, - "tsareena": 3.521101680558359, - "comfey": 3.829987476091727, - "oranguru": 2.5474608627148836, - "passimian": 2.567606598787637, - "palossand": 2.2006698870906587, - "pyukumuku": 41.43560857392731, - "togedemaru": 2.3524570587638807, - "mimikyu-disguised": 3.348850534060677, - "greedent": 2.115615325355456, - "orbeetle": 2.018673414299554, - "thievul": 1.9076852637343733, - "eldegoss": 4.373453733399188, - "dubwool": 3.3342197854239615, - "drednaw": 1.2008866208893103, - "boltund": 4.599368855353347, - "carkol": 2.257640825114749, - "coalossal": 2.0003803927068304, - "sandaconda": 3.3174382585205127, - "cramorant": 5.188032825175286, - "barraskewda": 4.458895023237595, - "toxtricity-amped": 2.6622351449367625, - "centiskorch": 2.0624346135404132, - "grapploct": 1.9608198477644267, - "polteageist": 2.5492846181361926, - "hatterene": 2.07210248638164, - "grimmsnarl": 4.140059284034479, - "obstagoon": 2.741744056796504, - "perrserker": 3.760748385081672, - "alcremie": 1.145376822421254, - "falinks": 3.7190436824614648, - "pincurchin": 3.006187561048472, - "frosmoth": 3.616228196726941, - "indeedee-male": 3.0436650381524952, - "morpeko": 2.706852820310373, - "copperajah": 2.6251469852300615, - "duraludon": 1.5645973818541221, - "drakloak": 5.464297256333259, - "altaria": 1.8726016851581986 + "ivysaur": 3.590646272673896, + "charmeleon": 3.867671168201965, + "wartortle": 2.6232227119708127, + "butterfree": 4.953557171146144, + "raichu": 5.004290637190021, + "raichu-alola": 3.2605446060236067, + "sandslash": 2.343916246323406, + "sandslash-alola": 2.6527961195868244, + "nidoqueen": 2.901658131927035, + "nidoking": 1.74486484879796, + "clefairy": 8.685251671468013, + "clefable": 1.5249589245986876, + "jigglypuff": 20.901162255400166, + "wigglytuff": 1.5939356720777864, + "gloom": 5.682634047196855, + "vileplume": 3.5007523485341783, + "dugtrio": 3.399956961321074, + "dugtrio-alola": 3.8218390942806097, + "persian": 3.9516727582978945, + "persian-alola": 4.512686178433773, + "golduck": 3.1627165905602403, + "poliwrath": 2.1511982521890944, + "kadabra": 3.277355929031825, + "machoke": 4.1395430746692785, + "tentacruel": 2.2721420760856144, + "slowbro": 1.8509586870340802, + "magneton": 3.6048168051160663, + "haunter": 4.5287479113062865, + "kingler": 2.919293507983852, + "exeggutor": 2.2477224188774088, + "marowak": 3.305981788994318, + "marowak-alola": 2.143066251324984, + "hitmonlee": 2.4698666510248373, + "hitmonchan": 1.9981918321976484, + "lickitung": 1.6645964199708103, + "weezing": 1.733808727854433, + "weezing-galar": 2.349602373114225, + "rhydon": 2.478232511909911, + "chansey": 19.611908522026415, + "tangela": 6.5678672372136155, + "kangaskhan": 1.7467962159430424, + "seadra": 4.463847628513973, + "seaking": 2.4847046268242283, + "starmie": 1.1874802076500566, + "mr-mime": 5.750027181750987, + "mr-mime-galar": 2.8607354702181436, + "scyther": 2.908417421043989, + "jynx": 4.05563995688255, + "electabuzz": 2.439373527181327, + "magmar": 1.7088592980616863, + "tauros": 2.1613466720955268, + "ditto": 2.318541828248816, + "vaporeon": 3.0999057991189636, + "jolteon": 1.810660483586449, + "flareon": 2.3783512219956577, + "porygon": 2.4841067446538068, + "dragonair": 1.8639159503735536, + "noctowl": 5.25113463872122, + "lanturn": 1.93607215139783, + "togetic": 4.458873332111851, + "xatu": 3.7890616695582655, + "bellossom": 2.365768048355479, + "azumarill": 1.863021236546117, + "sudowoodo": 2.637589985111953, + "politoed": 2.6435599907569074, + "quagsire": 5.089888861362535, + "slowking": 2.1277223575476585, + "dunsparce": 2.948024361954646, + "qwilfish": 3.6192720544801116, + "sneasel": 2.087174920769751, + "piloswine": 1.2517816522955556, + "octillery": 2.4366815226742737, + "mantine": 2.3002683057377085, + "skarmory": 2.499176024524459, + "hitmontop": 2.617139743795174, + "miltank": 3.4256091433461084, + "grovyle": 8.926833145255355, + "sceptile": 1.492491715194586, + "combusken": 3.5355244182356707, + "blaziken": 1.709878976981731, + "marshtomp": 2.3818780843485174, + "swampert": 1.0976903340480901, + "linoone": 5.122214027998352, + "linoone-galar": 4.948699915060992, + "pelipper": 6.160119729685677, + "ninjask": 8.558781224380011, + "exploud": 1.3227257316228855, + "lairon": 2.057114393104121, + "manectric": 1.777608676505945, + "roselia": 4.228965574657156, + "sharpedo": 5.188028010227589, + "wailmer": 6.681345006057493, + "torkoal": 2.192221010529028, + "flygon": 2.914459766528151, + "altaria": 1.8726016851581986, + "whiscash": 2.191575187324264, + "crawdaunt": 2.3949381651973516, + "claydol": 3.133645205980728, + "cradily": 2.2218022432690177, + "armaldo": 1.90207771792618, + "dusclops": 3.378912859897441, + "absol": 1.8487770092386868, + "glalie": 3.6188593765055233, + "sealeo": 2.774368786517607, + "relicanth": 1.8502162862375109, + "metang": 3.2158616758014515, + "luxray": 3.7354706049253936, + "vespiquen": 3.022622027892033, + "cherrim": 6.655009600278833, + "gastrodon": 2.078944188064942, + "drifblim": 4.112970626208387, + "lopunny": 3.561456432387133, + "skuntank": 1.4784147221799933, + "bronzong": 3.385976243991349, + "munchlax": 2.0476400991164785, + "drapion": 2.5178524981824886, + "abomasnow": 3.7344713053332037, + "froslass": 2.4490886362547144, + "rotom": 3.672052376335275, + "stoutland": 2.333481020702676, + "liepard": 6.927918057938749, + "musharna": 1.5429056872311673, + "unfezant": 6.36201069867332, + "boldore": 3.501738304389012, + "swoobat": 5.4150318519047715, + "audino": 2.23729288403409, + "gurdurr": 2.786849768563371, + "palpitoad": 4.062442865178063, + "seismitoad": 6.299796629029798, + "scolipede": 3.6538099409901523, + "whimsicott": 3.3929137933984554, + "lilligant": 3.625893868658858, + "basculin-red-striped": 2.671102642276201, + "basculin-blue-striped": 3.836930039211248, + "krookodile": 3.210855663183942, + "maractus": 2.6050371287221648, + "crustle": 2.1208531007518796, + "sigilyph": 2.303844058444214, + "cofagrigus": 2.6697811361509194, + "garbodor": 1.82142627765966, + "cinccino": 3.790155811491945, + "vanillish": 1.723820981635615, + "emolga": 3.0047815643270543, + "escavalier": 3.0032209429724217, + "amoonguss": 2.8210304596768716, + "jellicent": 1.1510659773020038, + "galvantula": 1.7582281104229769, + "klang": 2.9760060519375386, + "klinklang": 3.746558603153731, + "beheeyem": 1.6968567475292564, + "lampent": 2.775706998959511, + "fraxure": 1.867569658062449, + "beartic": 1.4270495041189846, + "cryogonal": 1.1921809486729942, + "accelgor": 3.420522362010722, + "stunfisk": 1.3483434997913526, + "stunfisk-galar": 2.7261995607754335, + "mienshao": 3.525888435753348, + "druddigon": 2.3723871692287797, + "golurk": 1.920524523165036, + "bisharp": 2.713326776342501, + "bouffalant": 1.2784391929661196, + "heatmor": 2.0237816489048646, + "durant": 5.416166467122902, + "diggersby": 3.304120854586666, + "talonflame": 2.977178554948256, + "pangoro": 2.6069240346863722, + "doublade": 3.105269997451952, + "malamar": 3.0720319218940046, + "barbaracle": 1.344518407511262, + "heliolisk": 3.6856505393227894, + "tyrantrum": 2.0780834650913578, + "aurorus": 1.9418625442622994, + "hawlucha": 3.8938966243197717, + "dedenne": 2.260352785646689, + "klefki": 3.1291720825214533, + "trevenant": 3.5193658459965507, + "gourgeist-average": 6.179928901226202, + "charjabug": 4.596915985089877, + "vikavolt": 2.1716760371477575, + "ribombee": 4.890861860160593, + "lycanroc-midday": 2.9062428299740493, + "lycanroc-midnight": 2.1889046286711547, + "mudsdale": 1.6719737246111706, + "araquanid": 2.3158265468232337, + "lurantis": 2.7631889719916987, + "shiinotic": 4.211811949314273, + "salazzle": 3.2184699872272846, + "bewear": 1.9275108069299134, + "tsareena": 3.529442966468186, + "comfey": 3.8260352952998575, + "oranguru": 2.5468119640799287, + "passimian": 2.57142298453108, + "palossand": 2.2060494566082522, + "pyukumuku": 41.422084576167784, + "togedemaru": 2.352501315555674, + "mimikyu-disguised": 3.344779544454076, + "greedent": 2.1158423186251083, + "orbeetle": 2.0208457723348348, + "thievul": 1.9094212565359436, + "eldegoss": 4.383654345142994, + "dubwool": 3.3402223222354808, + "drednaw": 1.2003062731165897, + "boltund": 4.6014506423215575, + "carkol": 2.2558497323315585, + "coalossal": 1.999818198208183, + "sandaconda": 3.321957752548346, + "cramorant": 5.188275506428437, + "barraskewda": 4.456529540518856, + "toxtricity-amped": 2.6619166885038177, + "centiskorch": 2.0642317336371545, + "grapploct": 1.9665823763052983, + "polteageist": 2.5519420894894695, + "hatterene": 2.067632082298953, + "grimmsnarl": 4.1429002263798544, + "obstagoon": 2.7435076354591255, + "perrserker": 3.7646028993537497, + "alcremie": 1.1439762119596932, + "falinks": 3.7289018900447948, + "pincurchin": 3.0105734991540642, + "frosmoth": 3.621728636598975, + "indeedee-male": 3.0441231480904563, + "morpeko": 2.7056642289727453, + "copperajah": 2.6277337268539567, + "duraludon": 1.5663904951392882, + "drakloak": 5.46786030504404 }, "whiscash": { - "ivysaur": 2.798665287428456, - "charmeleon": 5.1520024961922175, - "wartortle": 2.4304856188838735, - "butterfree": 4.410836281197058, - "raichu": 5.303170258793957, - "raichu-alola": 3.462890217667184, - "sandslash": 3.13334887918517, - "sandslash-alola": 2.2327785726491345, - "nidoqueen": 3.6104638427958893, - "nidoking": 2.4608816782568113, - "clefairy": 7.642956982143181, - "clefable": 2.0358965340167456, - "jigglypuff": 25.962991325688243, - "wigglytuff": 1.9636736688712007, - "gloom": 6.418451108562937, - "vileplume": 2.5742215536996413, - "dugtrio": 4.584583052299254, - "dugtrio-alola": 4.420362843487897, - "persian": 4.163183740841058, - "persian-alola": 4.168993903624997, - "golduck": 2.734639948329023, - "poliwrath": 2.0454028296690385, - "kadabra": 3.7155072822455653, - "machoke": 4.220490503649521, - "tentacruel": 2.8920339378717133, - "slowbro": 1.5752257544657504, - "magneton": 3.6511237391255795, - "haunter": 4.3763149462715845, - "kingler": 2.2136864565273244, - "exeggutor": 1.6796816556749992, - "marowak": 4.199800465023181, - "marowak-alola": 2.9907042251554206, - "hitmonlee": 2.9459714396356222, - "hitmonchan": 2.5906073898708106, - "lickitung": 1.9320518501958666, - "weezing": 1.7820120953502745, - "weezing-galar": 2.8727090207199892, - "rhydon": 4.855135856763344, - "chansey": 25.786350071260248, - "tangela": 3.8314094302943467, - "kangaskhan": 1.8160342543570094, - "seadra": 3.7005639878909404, - "seaking": 2.2561339019403963, - "starmie": 1.2895558160344218, - "mr-mime": 6.357864897475781, - "mr-mime-galar": 3.502947215869379, - "scyther": 2.832445853477203, - "jynx": 4.088955727189089, - "electabuzz": 2.8610567409106706, - "magmar": 2.1471843192847344, - "tauros": 2.065695989643422, - "ditto": 3.1945356457689673, - "vaporeon": 2.9580468613467756, - "jolteon": 1.9018506522155656, - "flareon": 2.937385133442631, - "porygon": 2.834696121567267, - "dragonair": 1.7034116941872854, - "noctowl": 5.475430727626121, - "lanturn": 1.84773458955031, - "togetic": 5.301674961316904, - "xatu": 3.766133567785182, - "bellossom": 2.04505543943745, - "azumarill": 2.0943086668080912, - "sudowoodo": 3.6275839055612487, - "politoed": 2.3393720521512975, - "quagsire": 4.733222023938547, - "slowking": 2.2057723850203157, - "dunsparce": 3.247889726252761, - "qwilfish": 3.6136631839677014, - "sneasel": 2.1649142066439704, - "piloswine": 2.1012292568141775, - "octillery": 2.1597688922709652, - "mantine": 2.3249777960486004, - "skarmory": 2.257234764994283, - "hitmontop": 2.9695071858661164, - "miltank": 3.714217403456091, - "grovyle": 6.598757470339108, - "sceptile": 1.2323066153070743, - "combusken": 4.371161805455424, - "blaziken": 2.159648265683158, - "marshtomp": 2.454880090949457, - "swampert": 1.240595381732041, - "linoone": 5.103637821168411, - "linoone-galar": 4.612192457742807, - "pelipper": 5.2442597406932006, - "ninjask": 7.891092098222208, - "exploud": 1.5682173979790415, - "lairon": 3.9647337270315366, - "manectric": 1.8405934312951582, - "roselia": 3.757742540207766, - "sharpedo": 4.425205385887362, - "wailmer": 5.924277989343489, - "torkoal": 2.9782959986037647, - "flygon": 2.3848495243871985, - "altaria": 1.507927966894755, - "crawdaunt": 1.7541725618706365, - "claydol": 4.140273608371236, - "cradily": 1.9250357415049981, - "armaldo": 2.4963574405135573, - "dusclops": 3.3257221056991346, - "absol": 1.968719080538449, - "glalie": 4.145429916296253, - "sealeo": 2.856435531781533, - "relicanth": 2.0834389219771596, - "metang": 3.171436202917198, - "luxray": 4.130308166858881, - "vespiquen": 2.851172051007329, - "cherrim": 4.656946787527347, - "gastrodon": 2.1097241468983707, - "drifblim": 4.43299856537689, - "lopunny": 3.5471404924288743, - "skuntank": 1.5054563582441984, - "bronzong": 3.1896863292319453, - "munchlax": 2.3124323980300105, - "drapion": 2.5599501481020424, - "abomasnow": 2.7862325942965853, - "froslass": 2.8587689764354347, - "rotom": 3.9623509945955058, - "stoutland": 2.3684808433567417, - "liepard": 6.937422101921296, - "musharna": 1.3327294219785524, - "unfezant": 6.483389868071118, - "boldore": 4.936861633493969, - "swoobat": 5.387240623299279, - "audino": 2.2583015050287534, - "gurdurr": 2.33399920838974, - "palpitoad": 3.753047983605894, - "seismitoad": 6.60409404217261, - "scolipede": 3.3396779188324555, - "whimsicott": 3.0800695518544856, - "lilligant": 2.4273841474638624, - "basculin-red-striped": 2.468395688767486, - "basculin-blue-striped": 3.193330879698202, - "krookodile": 3.643972298596934, - "maractus": 1.6769586179279057, - "crustle": 2.9135007408694067, - "sigilyph": 2.3313563646652615, - "cofagrigus": 2.6683700879400347, - "garbodor": 2.0876921528432666, - "cinccino": 4.5106067760019855, - "vanillish": 2.101640622176265, - "emolga": 3.4615149732992423, - "escavalier": 1.7989818713931367, - "amoonguss": 2.436337915464332, - "jellicent": 1.4358769439598986, - "galvantula": 1.7800645274925548, - "klang": 3.092948553610612, - "klinklang": 3.59936241078897, - "beheeyem": 1.7605935258065701, - "lampent": 3.674562201052928, - "fraxure": 1.3359270659180822, - "beartic": 1.716110896004502, - "cryogonal": 1.6035040650784085, - "accelgor": 3.3439975665773236, - "stunfisk": 1.638294522124161, - "stunfisk-galar": 3.0700882563680874, - "mienshao": 3.731354152674662, - "druddigon": 1.657838129436795, - "golurk": 2.390085324697412, - "bisharp": 2.5488599547902115, - "bouffalant": 1.2919195119292857, - "heatmor": 2.375963193491546, - "durant": 3.4878087501751187, - "diggersby": 4.10944551777545, - "talonflame": 3.9319433648771693, - "pangoro": 1.8593853351497351, - "doublade": 2.798390528808251, - "malamar": 2.953118623825894, - "barbaracle": 1.5092697533295112, - "heliolisk": 3.646262610018101, - "tyrantrum": 1.718676772668199, - "aurorus": 3.0292527711056865, - "hawlucha": 3.7676377969418446, - "dedenne": 2.9893630721788536, - "klefki": 3.165617116326569, - "trevenant": 2.47815317498599, - "gourgeist-average": 5.066425506857675, - "charjabug": 4.3467296506146695, - "vikavolt": 1.9375618349944066, - "ribombee": 4.946351750282397, - "lycanroc-midday": 4.415654018641263, - "lycanroc-midnight": 3.027318359098287, - "mudsdale": 2.041841349843135, - "araquanid": 2.585880071594984, - "lurantis": 2.053630652171023, - "shiinotic": 4.831680734233299, - "salazzle": 4.228285325100716, - "bewear": 1.827590869707418, - "tsareena": 2.4953596057304863, - "comfey": 3.52634543717677, - "oranguru": 2.5458045648067147, - "passimian": 2.4458741566693494, - "palossand": 2.7777604244197684, - "pyukumuku": 40.651310595735076, - "togedemaru": 2.4278322563150168, - "mimikyu-disguised": 3.8094029632766366, - "greedent": 2.198694770611215, - "orbeetle": 1.9157458357563588, - "thievul": 1.777313659480415, - "eldegoss": 3.123000145022997, - "dubwool": 2.632603335047759, - "drednaw": 1.375735820440255, - "boltund": 5.024118138985149, - "carkol": 4.746927027743863, - "coalossal": 3.797035799278442, - "sandaconda": 4.353882650619206, - "cramorant": 5.13631791876465, - "barraskewda": 4.034449392302051, - "toxtricity-amped": 3.085287830576531, - "centiskorch": 2.5440372931042603, - "grapploct": 1.7894097428375404, - "polteageist": 2.122085112087049, - "hatterene": 2.444162513127279, - "grimmsnarl": 3.726646648811287, - "obstagoon": 2.652120321364073, - "perrserker": 3.630748229896393, - "alcremie": 1.2847591206391387, - "falinks": 3.3242401521632985, - "pincurchin": 3.1522311871026476, - "frosmoth": 2.831286783263411, - "indeedee-male": 3.06149756712077, - "morpeko": 2.982049236583041, - "copperajah": 2.4827988073738534, - "duraludon": 1.4584286262079837, - "drakloak": 3.953499675375826, - "whiscash": 2.0576831656914107 + "ivysaur": 2.787582432444393, + "charmeleon": 5.163101199513739, + "wartortle": 2.4287842737135676, + "butterfree": 4.400958268798915, + "raichu": 5.31262106763918, + "raichu-alola": 3.463239836131599, + "sandslash": 3.138098351459054, + "sandslash-alola": 2.232789996711081, + "nidoqueen": 3.617429608496444, + "nidoking": 2.4674188552321903, + "clefairy": 7.624814849880476, + "clefable": 2.0371681543099847, + "jigglypuff": 25.96287697545602, + "wigglytuff": 1.9632119154479386, + "gloom": 6.424947564566333, + "vileplume": 2.5645308286177197, + "dugtrio": 4.591187744892656, + "dugtrio-alola": 4.425946066916353, + "persian": 4.160680204649232, + "persian-alola": 4.164814177837366, + "golduck": 2.7320486258062293, + "poliwrath": 2.044232942617879, + "kadabra": 3.7114522708548905, + "machoke": 4.227133729871007, + "tentacruel": 2.894880084644319, + "slowbro": 1.5735749972400987, + "magneton": 3.6583979865828917, + "haunter": 4.368306214350296, + "kingler": 2.2117956273214245, + "exeggutor": 1.6732509296338816, + "marowak": 4.206110778734309, + "marowak-alola": 2.998386396248154, + "hitmonlee": 2.9512875003530006, + "hitmonchan": 2.5969474339729444, + "lickitung": 1.932873069186244, + "weezing": 1.7851478519337987, + "weezing-galar": 2.877304799678708, + "rhydon": 4.8689807949862525, + "chansey": 25.760389121711896, + "tangela": 3.8085795560378504, + "kangaskhan": 1.8153849022208757, + "seadra": 3.6958885717488297, + "seaking": 2.255448150412213, + "starmie": 1.2884511351868575, + "mr-mime": 6.3529841634373625, + "mr-mime-galar": 3.4989727623250575, + "scyther": 2.832521174502997, + "jynx": 4.079077998891677, + "electabuzz": 2.8672608709219283, + "magmar": 2.1517371586285288, + "tauros": 2.065578352339333, + "ditto": 3.1772500469700313, + "vaporeon": 2.953165560279774, + "jolteon": 1.904087269167519, + "flareon": 2.941717748271378, + "porygon": 2.8358561982021895, + "dragonair": 1.703018402351207, + "noctowl": 5.473453718857424, + "lanturn": 1.8487872584139118, + "togetic": 5.306776039297181, + "xatu": 3.763700459979944, + "bellossom": 2.035332534485956, + "azumarill": 2.094952779054633, + "sudowoodo": 3.6338411584799437, + "politoed": 2.3377226503730713, + "quagsire": 4.733229922038479, + "slowking": 2.2027903381727407, + "dunsparce": 3.2475459997723046, + "qwilfish": 3.6163827431921067, + "sneasel": 2.1620080379015603, + "piloswine": 2.10404873619975, + "octillery": 2.159183587644939, + "mantine": 2.322356564978867, + "skarmory": 2.2587175565868076, + "hitmontop": 2.9731388470825664, + "miltank": 3.7130974787439444, + "grovyle": 6.566774550043219, + "sceptile": 1.2253396870720814, + "combusken": 4.3824222355245634, + "blaziken": 2.166090198715106, + "marshtomp": 2.4548290462898823, + "swampert": 1.2406658270730375, + "linoone": 5.101401922267616, + "linoone-galar": 4.6071392371996875, + "pelipper": 5.238102181633725, + "ninjask": 7.890957591354466, + "exploud": 1.5674746319063495, + "lairon": 3.9747416208988997, + "manectric": 1.8433140849005576, + "roselia": 3.7448844637420837, + "sharpedo": 4.417317552945407, + "wailmer": 5.921549007224753, + "torkoal": 2.985933329046161, + "flygon": 2.3850420118116653, + "altaria": 1.5071042039254836, + "whiscash": 2.0576831656914107, + "crawdaunt": 1.7510553157268087, + "claydol": 4.142615994135756, + "cradily": 1.9193521228380144, + "armaldo": 2.5002219753591226, + "dusclops": 3.3263509648458296, + "absol": 1.9676466489434878, + "glalie": 4.144951753690724, + "sealeo": 2.853609870089359, + "relicanth": 2.084071200749179, + "metang": 3.1741748381790105, + "luxray": 4.136373562056681, + "vespiquen": 2.851506149140265, + "cherrim": 4.632532495968635, + "gastrodon": 2.1099312626268816, + "drifblim": 4.440010359093658, + "lopunny": 3.545985385879095, + "skuntank": 1.5056114371193288, + "bronzong": 3.1896379785535625, + "munchlax": 2.3150593706633513, + "drapion": 2.5602950871164323, + "abomasnow": 2.775384248026183, + "froslass": 2.858849507086833, + "rotom": 3.970343387352056, + "stoutland": 2.3667638785884115, + "liepard": 6.931981972090224, + "musharna": 1.3288073165312277, + "unfezant": 6.484696984989069, + "boldore": 4.946240094425972, + "swoobat": 5.383744077316475, + "audino": 2.258567646366404, + "gurdurr": 2.336220784139142, + "palpitoad": 3.7529886353850017, + "seismitoad": 6.606746126100598, + "scolipede": 3.3431633411600923, + "whimsicott": 3.0703170354087748, + "lilligant": 2.4152089965237233, + "basculin-red-striped": 2.466227958811383, + "basculin-blue-striped": 3.1906146098700976, + "krookodile": 3.645735297312123, + "maractus": 1.6657776688727632, + "crustle": 2.918384695568972, + "sigilyph": 2.33070384731887, + "cofagrigus": 2.668788488951839, + "garbodor": 2.0916870704163038, + "cinccino": 4.508601218984824, + "vanillish": 2.100397980697055, + "emolga": 3.4695683951931144, + "escavalier": 1.7987099281672754, + "amoonguss": 2.4307583244903657, + "jellicent": 1.4340867333433123, + "galvantula": 1.7842687305318368, + "klang": 3.0991598266578313, + "klinklang": 3.6012561038508757, + "beheeyem": 1.759741437051957, + "lampent": 3.68532544049264, + "fraxure": 1.3343915224278808, + "beartic": 1.715456425423072, + "cryogonal": 1.600049840742102, + "accelgor": 3.3449600394852084, + "stunfisk": 1.6413579557548483, + "stunfisk-galar": 3.0729045733307743, + "mienshao": 3.736522935585369, + "druddigon": 1.6575909019904473, + "golurk": 2.393031122395403, + "bisharp": 2.547979517300662, + "bouffalant": 1.2924068214286013, + "heatmor": 2.3778033925720474, + "durant": 3.492108774656467, + "diggersby": 4.114529819488072, + "talonflame": 3.940154949657481, + "pangoro": 1.85932912019336, + "doublade": 2.8015917918512363, + "malamar": 2.9525213251231524, + "barbaracle": 1.5085419012346966, + "heliolisk": 3.643191760585885, + "tyrantrum": 1.7189832737359623, + "aurorus": 3.0334215774022755, + "hawlucha": 3.7726642195611735, + "dedenne": 2.9935675017258605, + "klefki": 3.167876704474188, + "trevenant": 2.4676602345169005, + "gourgeist-average": 5.0677973477905205, + "charjabug": 4.3567046508702525, + "vikavolt": 1.9394959744960465, + "ribombee": 4.947349033142881, + "lycanroc-midday": 4.424550915090875, + "lycanroc-midnight": 3.031535978470129, + "mudsdale": 2.0440660720931265, + "araquanid": 2.5847454123336306, + "lurantis": 2.0456482723448985, + "shiinotic": 4.829923578840355, + "salazzle": 4.241470790324633, + "bewear": 1.8280712569536477, + "tsareena": 2.483633113349694, + "comfey": 3.5140923753467828, + "oranguru": 2.5434790839791392, + "passimian": 2.4494107693414597, + "palossand": 2.7810841067601597, + "pyukumuku": 40.6405548326819, + "togedemaru": 2.4315204177490153, + "mimikyu-disguised": 3.810281791598884, + "greedent": 2.198701867846148, + "orbeetle": 1.9147550434497886, + "thievul": 1.7760826448985203, + "eldegoss": 3.105807389663994, + "dubwool": 2.625968305394829, + "drednaw": 1.3760288504937128, + "boltund": 5.031355508109035, + "carkol": 4.763539647588024, + "coalossal": 3.8084484285154545, + "sandaconda": 4.358357408177875, + "cramorant": 5.1333298646126195, + "barraskewda": 4.030544537722571, + "toxtricity-amped": 3.091336311494241, + "centiskorch": 2.548966326684284, + "grapploct": 1.7913022803881966, + "polteageist": 2.115964399876361, + "hatterene": 2.443057618327208, + "grimmsnarl": 3.7241645919319053, + "obstagoon": 2.6509409406133946, + "perrserker": 3.634992113963058, + "alcremie": 1.2829666909715574, + "falinks": 3.3281249857191524, + "pincurchin": 3.1577104189306575, + "frosmoth": 2.829926383351591, + "indeedee-male": 3.0602471999653877, + "morpeko": 2.9850391057806482, + "copperajah": 2.4846661659077522, + "duraludon": 1.4594704967839074, + "drakloak": 3.951172672365641 }, "crawdaunt": { - "ivysaur": 2.9172239352104015, - "charmeleon": 5.1510194917053305, - "wartortle": 2.953015275696089, - "butterfree": 4.152594930318238, - "raichu": 4.646929141688867, - "raichu-alola": 5.380227407515617, - "sandslash": 3.113307466846199, - "sandslash-alola": 2.1539932401888677, - "nidoqueen": 3.5277014016714654, - "nidoking": 2.445713461887711, - "clefairy": 8.125223449821153, - "clefable": 1.4244701450192963, - "jigglypuff": 20.970738005721277, - "wigglytuff": 1.5629500840101853, - "gloom": 5.215118083048708, - "vileplume": 2.483060563342017, - "dugtrio": 4.496226133009815, - "dugtrio-alola": 4.705027383996512, - "persian": 4.407766796456763, - "persian-alola": 4.493498382597728, - "golduck": 3.521286863521884, - "poliwrath": 1.716221698779281, - "kadabra": 5.850289517746574, - "machoke": 3.825534790581145, - "tentacruel": 2.975405715087915, - "slowbro": 2.8370546020729814, - "magneton": 2.9298448232688825, - "haunter": 7.11495088409621, - "kingler": 2.3222444564707336, - "exeggutor": 2.5072735697409363, - "marowak": 4.5011378130306055, - "marowak-alola": 3.260844274408141, - "hitmonlee": 2.2245109127044795, - "hitmonchan": 2.0169481933047395, - "lickitung": 2.0454454219648808, - "weezing": 1.707934326990162, - "weezing-galar": 2.4783402882796457, - "rhydon": 5.093927503088763, - "chansey": 32.380411460969825, - "tangela": 4.013732122986608, - "kangaskhan": 2.040440797178246, - "seadra": 3.969910464671897, - "seaking": 2.8597821529639136, - "starmie": 1.9293148665599356, - "mr-mime": 10.00226458141696, - "mr-mime-galar": 6.27471801701126, - "scyther": 2.849948475800864, - "jynx": 7.1100366017307195, - "electabuzz": 2.23331558922006, - "magmar": 2.105915427493107, - "tauros": 2.0404762940717847, - "ditto": 2.155969211340534, - "vaporeon": 3.8135329246324208, - "jolteon": 2.0154937620065865, - "flareon": 3.045412476448071, - "porygon": 2.8558979220858154, - "dragonair": 2.018587804993759, - "noctowl": 6.7570068355705395, - "lanturn": 2.0789009558295213, - "togetic": 4.929917828688617, - "xatu": 6.031679716352606, - "bellossom": 1.8414772287604528, - "azumarill": 2.04941955261318, - "sudowoodo": 3.5293004185971535, - "politoed": 2.9110579781170425, - "quagsire": 4.486498527663836, - "slowking": 4.455516465062164, - "dunsparce": 3.480933571568208, - "qwilfish": 3.6707964490113962, - "sneasel": 2.3471783834636133, - "piloswine": 2.1715206394378117, - "octillery": 2.532884633777892, - "mantine": 3.0414694743648916, - "skarmory": 2.27914812701525, - "hitmontop": 2.5310042969801962, - "miltank": 3.5255034163845194, - "grovyle": 7.250657657867407, - "sceptile": 1.3673934249748514, - "combusken": 3.941603719377606, - "blaziken": 2.1093301336225903, - "marshtomp": 2.8854563407150646, - "swampert": 1.3981181238490308, - "linoone": 5.490026786974303, - "linoone-galar": 4.99895919687544, - "pelipper": 6.032045157127056, - "ninjask": 7.077363463575574, - "exploud": 1.704587132610678, - "lairon": 3.9070469840125814, - "manectric": 1.8291495987177067, - "roselia": 4.153992909996499, - "sharpedo": 5.021874274516428, - "wailmer": 7.520772483005464, - "torkoal": 3.0183245218860675, - "flygon": 2.426289110269312, - "altaria": 1.5649873375308783, - "whiscash": 2.4155797476734153, - "claydol": 5.2641633780552715, - "cradily": 2.119679162381715, - "armaldo": 2.382446114681013, - "dusclops": 5.272025119068031, - "absol": 2.078620814305359, - "glalie": 4.884601293435315, - "sealeo": 3.6597811913107092, - "relicanth": 2.1132844310939314, - "metang": 4.485003030202065, - "luxray": 3.514191346684079, - "vespiquen": 2.6476185893082587, - "cherrim": 5.195431440637271, - "gastrodon": 2.4174783853640447, - "drifblim": 6.4491822639578515, - "lopunny": 3.8764762541448796, - "skuntank": 1.5650878492132254, - "bronzong": 5.866840107539685, - "munchlax": 2.7087229275225044, - "drapion": 2.592984790895427, - "abomasnow": 3.266410870836748, - "froslass": 4.708975771542981, - "rotom": 5.376247721846804, - "stoutland": 2.5653153855718296, - "liepard": 6.830857267690939, - "musharna": 2.4452003395759485, - "unfezant": 6.617135321077724, - "boldore": 4.83949478466505, - "swoobat": 8.655694584799203, - "audino": 2.190212790672783, - "gurdurr": 2.1372552036244232, - "palpitoad": 4.092007129655112, - "seismitoad": 6.400052036355397, - "scolipede": 3.1393422060416496, - "whimsicott": 2.412363428143956, - "lilligant": 2.519128480081883, - "basculin-red-striped": 3.3670066032044517, - "basculin-blue-striped": 4.1857344610131655, - "krookodile": 3.8715859553700156, - "maractus": 1.9495103970238006, - "crustle": 2.687129948286233, - "sigilyph": 3.656935428483327, - "cofagrigus": 4.162810525536614, - "garbodor": 1.9384814389219163, - "cinccino": 5.056747770862214, - "vanillish": 2.3831348278636453, - "emolga": 2.621110012291921, - "escavalier": 1.9650340583024226, - "amoonguss": 2.385707294398699, - "jellicent": 2.3632465240423475, - "galvantula": 1.3148880992988934, - "klang": 2.66684469186995, - "klinklang": 3.6996480233383715, - "beheeyem": 2.966356591447701, - "lampent": 4.205356369452982, - "fraxure": 1.568620027855314, - "beartic": 1.9024801446368538, - "cryogonal": 2.1620135912918803, - "accelgor": 2.6344494912063943, - "stunfisk": 1.5069394107251939, - "stunfisk-galar": 3.137070240783575, - "mienshao": 3.043757767997345, - "druddigon": 2.102797618169606, - "golurk": 2.7227883111847335, - "bisharp": 2.790079972886833, - "bouffalant": 1.4061843462523127, - "heatmor": 2.525247100264464, - "durant": 3.07318944150726, - "diggersby": 4.188558861132362, - "talonflame": 3.9580889479042503, - "pangoro": 1.7344093476741933, - "doublade": 2.7788956545774575, - "malamar": 3.032895071116974, - "barbaracle": 1.5700516182504067, - "heliolisk": 3.6631829289410254, - "tyrantrum": 1.6502434388100737, - "aurorus": 2.662086035499458, - "hawlucha": 3.462467701520448, - "dedenne": 1.9887417864596362, - "klefki": 2.9416559891971255, - "trevenant": 4.089495200278183, - "gourgeist-average": 7.490007045104438, - "charjabug": 3.8498735968332305, - "vikavolt": 1.6181904613433542, - "ribombee": 3.460931323024079, - "lycanroc-midday": 4.269576282150634, - "lycanroc-midnight": 2.991929170887531, - "mudsdale": 2.00906692596779, - "araquanid": 2.6691458632921474, - "lurantis": 2.1453717879051126, - "shiinotic": 3.380759369466457, - "salazzle": 4.284031835005355, - "bewear": 1.852130782803934, - "tsareena": 3.030041879450348, - "comfey": 3.342058856522775, - "oranguru": 5.214395537029185, - "passimian": 2.2907947083912426, - "palossand": 2.8507847222439633, - "pyukumuku": 44.947155324524864, - "togedemaru": 2.301666299244304, - "mimikyu-disguised": 4.971257811654045, - "greedent": 2.4100214307610246, - "orbeetle": 2.4935447781645856, - "thievul": 1.916352459680872, - "eldegoss": 3.529656050374356, - "dubwool": 2.860453183606357, - "drednaw": 1.3295224108790986, - "boltund": 4.604146412942999, - "carkol": 4.756565037566053, - "coalossal": 3.8658730095137654, - "sandaconda": 4.214901528829483, - "cramorant": 7.1554233170041375, - "barraskewda": 5.209396362657497, - "toxtricity-amped": 2.3931434593747842, - "centiskorch": 2.4955410652167513, - "grapploct": 1.5654198509569408, - "polteageist": 4.645106847176877, - "hatterene": 2.8671308819808643, - "grimmsnarl": 3.728267863662014, - "obstagoon": 2.502166514926923, - "perrserker": 3.5051838558404085, - "alcremie": 1.0791265236908623, - "falinks": 3.0283115980703976, - "pincurchin": 2.837221922029208, - "frosmoth": 2.323114321796145, - "indeedee-male": 5.936852523892368, - "morpeko": 2.4569070502074077, - "copperajah": 2.629079806642359, - "duraludon": 1.4151593685635029, - "drakloak": 7.454900740236999, - "crawdaunt": 1.8979311869343518 + "ivysaur": 2.9072373310606943, + "charmeleon": 5.162357903012515, + "wartortle": 2.953746366780585, + "butterfree": 4.137010235994599, + "raichu": 4.631191925147843, + "raichu-alola": 5.380286478169614, + "sandslash": 3.1157851113679387, + "sandslash-alola": 2.1538123562530584, + "nidoqueen": 3.5309011440267417, + "nidoking": 2.4504189334544364, + "clefairy": 8.116247764449337, + "clefable": 1.421427069373369, + "jigglypuff": 20.892721126830565, + "wigglytuff": 1.5607982181026832, + "gloom": 5.198772577017261, + "vileplume": 2.4719120607935268, + "dugtrio": 4.5046154932089255, + "dugtrio-alola": 4.717892030589946, + "persian": 4.4041058147333825, + "persian-alola": 4.498991410353254, + "golduck": 3.525341119349277, + "poliwrath": 1.7123412366959614, + "kadabra": 5.856842917730413, + "machoke": 3.8240036130022252, + "tentacruel": 2.980181936530727, + "slowbro": 2.8488841332528536, + "magneton": 2.924688875516033, + "haunter": 7.116686666940971, + "kingler": 2.3211195594047136, + "exeggutor": 2.5054528235318214, + "marowak": 4.512954765438392, + "marowak-alola": 3.2750264020284137, + "hitmonlee": 2.221833928277217, + "hitmonchan": 2.0164647039530177, + "lickitung": 2.0433396580720418, + "weezing": 1.7084197950992852, + "weezing-galar": 2.473088059422295, + "rhydon": 5.106145244987117, + "chansey": 32.35916602255543, + "tangela": 4.001709267348245, + "kangaskhan": 2.0424348404070405, + "seadra": 3.96654225691538, + "seaking": 2.863409332124655, + "starmie": 1.930491451561841, + "mr-mime": 10.054888140867227, + "mr-mime-galar": 6.3001381653431, + "scyther": 2.8502488283042298, + "jynx": 7.107160762576566, + "electabuzz": 2.2265213521031386, + "magmar": 2.110292451782497, + "tauros": 2.040859731473633, + "ditto": 2.143656146072155, + "vaporeon": 3.81312049919564, + "jolteon": 2.0118487815917727, + "flareon": 3.0537712233018204, + "porygon": 2.853695233802171, + "dragonair": 2.016672743914562, + "noctowl": 6.758793950221662, + "lanturn": 2.0777774008965104, + "togetic": 4.928054998615011, + "xatu": 6.048430396666365, + "bellossom": 1.8341419640336123, + "azumarill": 2.050539992051417, + "sudowoodo": 3.531165504933247, + "politoed": 2.912281304748179, + "quagsire": 4.4836299828011015, + "slowking": 4.473529065050945, + "dunsparce": 3.483095951838755, + "qwilfish": 3.675189832858086, + "sneasel": 2.3503264136216355, + "piloswine": 2.1740123880701265, + "octillery": 2.5327973791061242, + "mantine": 3.0428925860673455, + "skarmory": 2.2814720253551712, + "hitmontop": 2.5301947519681725, + "miltank": 3.522346145716914, + "grovyle": 7.224183423309569, + "sceptile": 1.3618374406345473, + "combusken": 3.938069369784065, + "blaziken": 2.1114692239817003, + "marshtomp": 2.8918734544482847, + "swampert": 1.3997445153552541, + "linoone": 5.49019726235415, + "linoone-galar": 5.005271225748793, + "pelipper": 6.027371017400685, + "ninjask": 7.0616850387644226, + "exploud": 1.7021532917830562, + "lairon": 3.9155729387064535, + "manectric": 1.8290063696381704, + "roselia": 4.14614622206851, + "sharpedo": 5.025338879042959, + "wailmer": 7.530808349312804, + "torkoal": 3.0258992951223247, + "flygon": 2.4249849779287596, + "altaria": 1.5627783220308502, + "whiscash": 2.4210188473521272, + "crawdaunt": 1.8979311869343518, + "claydol": 5.280232665765019, + "cradily": 2.1138426239611805, + "armaldo": 2.3826567000459535, + "dusclops": 5.278783646192132, + "absol": 2.0811532139551137, + "glalie": 4.896143978951736, + "sealeo": 3.6646995510207563, + "relicanth": 2.114438460172019, + "metang": 4.496724961623644, + "luxray": 3.5056124785730702, + "vespiquen": 2.6441021041412434, + "cherrim": 5.176016662107704, + "gastrodon": 2.419512713119758, + "drifblim": 6.4478297125578745, + "lopunny": 3.875655866711767, + "skuntank": 1.5680416718754364, + "bronzong": 5.897658611470337, + "munchlax": 2.7103304841243254, + "drapion": 2.5950280344856242, + "abomasnow": 3.261898972774138, + "froslass": 4.721140785671153, + "rotom": 5.372245834150969, + "stoutland": 2.565064398643326, + "liepard": 6.828404459306555, + "musharna": 2.4511359762153564, + "unfezant": 6.624023006749137, + "boldore": 4.8424941622425415, + "swoobat": 8.679994276604388, + "audino": 2.188613153303006, + "gurdurr": 2.133404797881817, + "palpitoad": 4.094805707570487, + "seismitoad": 6.392676579928795, + "scolipede": 3.138440073955301, + "whimsicott": 2.4031418528853936, + "lilligant": 2.5073151119916917, + "basculin-red-striped": 3.3759134292383566, + "basculin-blue-striped": 4.193351746782387, + "krookodile": 3.877675072749331, + "maractus": 1.9406582729533577, + "crustle": 2.6854365457576286, + "sigilyph": 3.6668963352370487, + "cofagrigus": 4.1775206925569695, + "garbodor": 1.9376402085336446, + "cinccino": 5.06096743864212, + "vanillish": 2.3851119048516427, + "emolga": 2.615885441575368, + "escavalier": 1.9658459023059067, + "amoonguss": 2.378917158140296, + "jellicent": 2.3621306256006234, + "galvantula": 1.309431225583575, + "klang": 2.663154429576151, + "klinklang": 3.705785532015658, + "beheeyem": 2.97388540952898, + "lampent": 4.218189105499795, + "fraxure": 1.5673697179440427, + "beartic": 1.9033196245547503, + "cryogonal": 2.1628300309845665, + "accelgor": 2.6253736454529433, + "stunfisk": 1.5055450394708374, + "stunfisk-galar": 3.140889888682504, + "mienshao": 3.038414336010035, + "druddigon": 2.1061938037549175, + "golurk": 2.726387084239107, + "bisharp": 2.7947607504160916, + "bouffalant": 1.4075110430011626, + "heatmor": 2.530239424873142, + "durant": 3.06910582409309, + "diggersby": 4.195370331784345, + "talonflame": 3.9665351188713704, + "pangoro": 1.733418639351922, + "doublade": 2.7827098473827707, + "malamar": 3.0352665915738952, + "barbaracle": 1.5706283137132542, + "heliolisk": 3.6493984891960074, + "tyrantrum": 1.6491265415843777, + "aurorus": 2.6589486751050018, + "hawlucha": 3.4607679189111193, + "dedenne": 1.9816831413486884, + "klefki": 2.93958442842728, + "trevenant": 4.082454270613802, + "gourgeist-average": 7.5048917572045575, + "charjabug": 3.8452926423979825, + "vikavolt": 1.614214528052952, + "ribombee": 3.444642565050339, + "lycanroc-midday": 4.274169242656286, + "lycanroc-midnight": 2.994728802364807, + "mudsdale": 2.0103395686954286, + "araquanid": 2.6671294659641243, + "lurantis": 2.137842289429694, + "shiinotic": 3.3652901869872207, + "salazzle": 4.294308571474247, + "bewear": 1.8518116728548395, + "tsareena": 3.025035322236235, + "comfey": 3.3282026460799203, + "oranguru": 5.245023156008674, + "passimian": 2.2886790721152597, + "palossand": 2.855553902015532, + "pyukumuku": 44.91140399198602, + "togedemaru": 2.301380271758715, + "mimikyu-disguised": 4.978304492882446, + "greedent": 2.415054523384275, + "orbeetle": 2.499232046921551, + "thievul": 1.9188878302894583, + "eldegoss": 3.516217960610616, + "dubwool": 2.856824287786503, + "drednaw": 1.3297935217610481, + "boltund": 4.598801302503915, + "carkol": 4.770125563781115, + "coalossal": 3.874387645829555, + "sandaconda": 4.214516726712561, + "cramorant": 7.174096160109142, + "barraskewda": 5.216661951504641, + "toxtricity-amped": 2.385945156558824, + "centiskorch": 2.4993254782855843, + "grapploct": 1.561279003177065, + "polteageist": 4.648859606733153, + "hatterene": 2.871770274326269, + "grimmsnarl": 3.727498559009441, + "obstagoon": 2.499401041132618, + "perrserker": 3.5079350039509984, + "alcremie": 1.076838654916124, + "falinks": 3.0231598719259063, + "pincurchin": 2.8311111746329702, + "frosmoth": 2.317653968214665, + "indeedee-male": 5.960982435746939, + "morpeko": 2.452155476267958, + "copperajah": 2.631212380264654, + "duraludon": 1.413019064228462, + "drakloak": 7.46764755727553 }, "claydol": { - "ivysaur": 3.6400045798230343, - "charmeleon": 3.9313171932213677, - "wartortle": 2.4757898573998496, - "butterfree": 4.918359143968406, - "raichu": 5.494525999754776, - "raichu-alola": 3.3269129457100175, - "sandslash": 2.3636225544310783, - "sandslash-alola": 1.8517932799974872, - "nidoqueen": 3.6911374883438404, - "nidoking": 2.458767684536026, - "clefairy": 8.337350353025048, - "clefable": 2.074051645636275, - "jigglypuff": 25.79587119978655, - "wigglytuff": 2.0247141249582787, - "gloom": 7.411343157414503, - "vileplume": 3.3067937748978338, - "dugtrio": 3.9276241758163963, - "dugtrio-alola": 2.8963475224392377, - "persian": 4.1506326399859255, - "persian-alola": 3.267150139517427, - "golduck": 2.737829395742585, - "poliwrath": 2.3546512289923838, - "kadabra": 3.440380292540703, - "machoke": 5.114064060328376, - "tentacruel": 2.5152045756955435, - "slowbro": 1.7339791314778865, - "magneton": 2.9151021283112195, - "haunter": 5.234690235212669, - "kingler": 2.643549832566707, - "exeggutor": 1.7768739843137995, - "marowak": 3.1825811834555564, - "marowak-alola": 2.0481434475139846, - "hitmonlee": 2.7916791845386353, - "hitmonchan": 2.584457457095298, - "lickitung": 1.7509549722673674, - "weezing": 2.273583425626928, - "weezing-galar": 3.8264684882985005, - "rhydon": 2.6800631800891788, - "chansey": 19.736742253708123, - "tangela": 4.825493957095002, - "kangaskhan": 1.791313651454896, - "seadra": 4.2647491383310605, - "seaking": 2.3293770828706197, - "starmie": 1.281700468982598, - "mr-mime": 6.219444739404253, - "mr-mime-galar": 3.328122402643843, - "scyther": 3.1829850198809453, - "jynx": 3.7236051548571902, - "electabuzz": 2.8634484647521026, - "magmar": 1.65511478486725, - "tauros": 2.1140172461405102, - "ditto": 3.4827429079446652, - "vaporeon": 2.740447949394679, - "jolteon": 1.8545739113411466, - "flareon": 2.201162305286711, - "porygon": 2.6726917290384513, - "dragonair": 1.7734185145874721, - "noctowl": 5.390479729876647, - "lanturn": 1.7869576867426784, - "togetic": 5.211278022352298, - "xatu": 3.9969249778133102, - "bellossom": 2.2074596036457743, - "azumarill": 2.0235104396973442, - "sudowoodo": 2.928684304976821, - "politoed": 2.39959849182953, - "quagsire": 4.524336522067059, - "slowking": 2.002092563458832, - "dunsparce": 2.936008173791614, - "qwilfish": 4.523770515706267, - "sneasel": 1.9432074915942432, - "piloswine": 1.5137629287584664, - "octillery": 2.1641561909089733, - "mantine": 2.0986951395198536, - "skarmory": 1.6719906374634794, - "hitmontop": 3.385296189250548, - "miltank": 3.6792409772583987, - "grovyle": 7.065725873246384, - "sceptile": 1.25435670175208, - "combusken": 4.4627578063734425, - "blaziken": 2.1215157877621436, - "marshtomp": 2.2731672665058733, - "swampert": 1.183825080174, - "linoone": 4.633004399916151, - "linoone-galar": 3.6325430874640077, - "pelipper": 6.38580691109396, - "ninjask": 8.327353324245415, - "exploud": 1.5043528951469443, - "lairon": 2.3134849482152564, - "manectric": 1.8389371758206097, - "roselia": 4.344756504327327, - "sharpedo": 4.012955092516991, - "wailmer": 6.047828287722235, - "torkoal": 2.095463688845168, - "flygon": 2.3162204997683107, - "altaria": 1.610492810365339, - "whiscash": 1.8737690809640621, - "crawdaunt": 1.6447221850991216, - "cradily": 2.1913769068188715, - "armaldo": 1.9113355723766854, - "dusclops": 2.8912105919917157, - "absol": 1.6201592121030304, - "glalie": 3.69459640711825, - "sealeo": 2.8344777968482395, - "relicanth": 1.9633530658921956, - "metang": 2.444793791012879, - "luxray": 4.109644177960583, - "vespiquen": 3.2691749799279144, - "cherrim": 5.20760101449006, - "gastrodon": 1.9239147363018374, - "drifblim": 4.7333417890889296, - "lopunny": 3.5957544474347, - "skuntank": 1.2134160168478179, - "bronzong": 2.522243955034419, - "munchlax": 2.1419413600081776, - "drapion": 1.9743365622934141, - "abomasnow": 2.810780580857717, - "froslass": 2.580007421129179, - "rotom": 3.685923967068239, - "stoutland": 2.3573199229784816, - "liepard": 5.751970062208844, - "musharna": 1.3955869642119023, - "unfezant": 6.557783833003102, - "boldore": 3.8975418978793135, - "swoobat": 5.723233544376384, - "audino": 2.254700195897815, - "gurdurr": 3.3890988920768645, - "palpitoad": 3.7950472443279706, - "seismitoad": 6.647105894494036, - "scolipede": 3.714533934915849, - "whimsicott": 2.9841154595084616, - "lilligant": 2.6682583731338467, - "basculin-red-striped": 2.553323692853902, - "basculin-blue-striped": 3.1971481499090517, - "krookodile": 2.478058879274145, - "maractus": 1.9298809867165756, - "crustle": 2.1526036857171036, - "sigilyph": 2.4102505283108333, - "cofagrigus": 2.560174608912768, - "garbodor": 2.4874693744779863, - "cinccino": 4.253395504734288, - "vanillish": 1.9626615361378819, - "emolga": 3.529173818233139, - "escavalier": 1.4612566126824174, - "amoonguss": 3.1056768050516093, - "jellicent": 1.3497844794932647, - "galvantula": 1.7628181009003945, - "klang": 2.516145735656858, - "klinklang": 2.8028534815428543, - "beheeyem": 1.614717419612414, - "lampent": 2.5787043610828317, - "fraxure": 1.5490014220839132, - "beartic": 1.5875981750322974, - "cryogonal": 1.389139176600024, - "accelgor": 2.623652138084724, - "stunfisk": 1.2754962090036197, - "stunfisk-galar": 1.9730427279924285, - "mienshao": 4.485931288892026, - "druddigon": 1.7706804180993476, - "golurk": 1.8204317876437868, - "bisharp": 1.8911798193716673, - "bouffalant": 1.2475550914768914, - "heatmor": 1.8808949783991018, - "durant": 2.5967821908768984, - "diggersby": 3.511712760246918, - "talonflame": 3.8505405201375593, - "pangoro": 1.5240303508156623, - "doublade": 2.1378407811423994, - "malamar": 2.564827466257487, - "barbaracle": 1.3980888461724508, - "heliolisk": 3.6732039379362935, - "tyrantrum": 1.7409998530118513, - "aurorus": 2.425067158841018, - "hawlucha": 4.5437069827483665, - "dedenne": 3.0271073968437126, - "klefki": 2.505116248957557, - "trevenant": 2.7354232900413353, - "gourgeist-average": 4.972129727599883, - "charjabug": 4.563399286768283, - "vikavolt": 1.9007397448547199, - "ribombee": 4.279294437786245, - "lycanroc-midday": 3.493055486973248, - "lycanroc-midnight": 2.3253439877016846, - "mudsdale": 1.6117902377080564, - "araquanid": 2.028155485154482, - "lurantis": 2.1538942322459906, - "shiinotic": 4.249660148122585, - "salazzle": 4.083978315638946, - "bewear": 2.2619179195101284, - "tsareena": 2.763238868979891, - "comfey": 4.053862606895153, - "oranguru": 2.5403915537977686, - "passimian": 3.3145952861730983, - "palossand": 2.090110465691147, - "pyukumuku": 42.426734151911035, - "togedemaru": 2.0127018652981645, - "mimikyu-disguised": 3.4400551628043203, - "greedent": 2.190333397493009, - "orbeetle": 1.7516415956736786, - "thievul": 1.4548879768338572, - "eldegoss": 3.4016983007671917, - "dubwool": 2.8640298306720426, - "drednaw": 1.2809610644085383, - "boltund": 4.615135513512353, - "carkol": 2.5891550012717763, - "coalossal": 2.0259952617477373, - "sandaconda": 3.258804175449954, - "cramorant": 4.46081115327878, - "barraskewda": 4.167490735316162, - "toxtricity-amped": 3.673494814821928, - "centiskorch": 2.607630616074579, - "grapploct": 2.146581973958496, - "polteageist": 2.33159493212292, - "hatterene": 2.3065022906315495, - "grimmsnarl": 3.1618126456278377, - "obstagoon": 2.2375444469444803, - "perrserker": 2.6842838480819315, - "alcremie": 1.3453816038485202, - "falinks": 4.206106598641488, - "pincurchin": 3.0173395722989484, - "frosmoth": 2.831598482307882, - "indeedee-male": 2.743720291430341, - "morpeko": 2.5315565195265153, - "copperajah": 2.0126337536412287, - "duraludon": 1.416604256343173, - "drakloak": 4.078378439131064, - "claydol": 3.1403390894194483 + "ivysaur": 3.6393203552986595, + "charmeleon": 3.934887701825339, + "wartortle": 2.4724252205968327, + "butterfree": 4.913299372614042, + "raichu": 5.509249852479243, + "raichu-alola": 3.3292600635642495, + "sandslash": 2.366079258230888, + "sandslash-alola": 1.849906806490731, + "nidoqueen": 3.6986813677250634, + "nidoking": 2.4643737668025762, + "clefairy": 8.330795600829845, + "clefable": 2.0757580245337977, + "jigglypuff": 25.793999633972994, + "wigglytuff": 2.025825454986311, + "gloom": 7.4256249081513825, + "vileplume": 3.303317088917122, + "dugtrio": 3.9364521576036324, + "dugtrio-alola": 2.8933982599080927, + "persian": 4.148626238790539, + "persian-alola": 3.255276454831378, + "golduck": 2.7327353087704243, + "poliwrath": 2.355483792500938, + "kadabra": 3.437180709118987, + "machoke": 5.12197110918169, + "tentacruel": 2.513645831520037, + "slowbro": 1.7353112856171897, + "magneton": 2.916761196368202, + "haunter": 5.231395916393463, + "kingler": 2.6454312704559246, + "exeggutor": 1.7754036823632635, + "marowak": 3.184074972983774, + "marowak-alola": 2.0478695181311304, + "hitmonlee": 2.7958665067100354, + "hitmonchan": 2.5872541049511772, + "lickitung": 1.7502200036535356, + "weezing": 2.2786225879854003, + "weezing-galar": 3.8365669269042444, + "rhydon": 2.6842014524791313, + "chansey": 19.677296284121677, + "tangela": 4.8187364982517735, + "kangaskhan": 1.7906539264654127, + "seadra": 4.262991570946282, + "seaking": 2.328984528694971, + "starmie": 1.2814070364767187, + "mr-mime": 6.2216708156220655, + "mr-mime-galar": 3.325341857575628, + "scyther": 3.1821649008929977, + "jynx": 3.71410604743325, + "electabuzz": 2.869974033100174, + "magmar": 1.6561514427743158, + "tauros": 2.1160664969839877, + "ditto": 3.4606029397987843, + "vaporeon": 2.7353759188958597, + "jolteon": 1.8553023508288324, + "flareon": 2.199317547942312, + "porygon": 2.6711214118073894, + "dragonair": 1.7734801092143035, + "noctowl": 5.3888567724056955, + "lanturn": 1.7864834255515283, + "togetic": 5.214892477472125, + "xatu": 4.000332792223919, + "bellossom": 2.20434319993022, + "azumarill": 2.0228347486365132, + "sudowoodo": 2.935271068561401, + "politoed": 2.3985224554460682, + "quagsire": 4.521346381574148, + "slowking": 1.9970502692520566, + "dunsparce": 2.9309132276193433, + "qwilfish": 4.527365815624542, + "sneasel": 1.9354340257897276, + "piloswine": 1.5136001638832062, + "octillery": 2.1614050262749527, + "mantine": 2.0961117714815454, + "skarmory": 1.6700227971068533, + "hitmontop": 3.3907555808650467, + "miltank": 3.6798175621594242, + "grovyle": 7.054910088669587, + "sceptile": 1.251257394373812, + "combusken": 4.474106704121896, + "blaziken": 2.1260366314444976, + "marshtomp": 2.269704593920509, + "swampert": 1.183567730921752, + "linoone": 4.623599914166741, + "linoone-galar": 3.617632556054665, + "pelipper": 6.391256258149763, + "ninjask": 8.317581239911075, + "exploud": 1.503751659693916, + "lairon": 2.31232500390363, + "manectric": 1.8422961816623395, + "roselia": 4.3431280054867045, + "sharpedo": 3.9984019754695526, + "wailmer": 6.041117666923183, + "torkoal": 2.0993020283881534, + "flygon": 2.3150602306358854, + "altaria": 1.6113962630195418, + "whiscash": 1.8724636414978428, + "crawdaunt": 1.6396043793535573, + "claydol": 3.1403390894194483, + "cradily": 2.190051621917644, + "armaldo": 1.9124533011556226, + "dusclops": 2.8830452949788308, + "absol": 1.615533188025839, + "glalie": 3.6871405379953086, + "sealeo": 2.829024324088958, + "relicanth": 1.9627137624306745, + "metang": 2.4438111278321486, + "luxray": 4.1171235378727955, + "vespiquen": 3.2698750653300923, + "cherrim": 5.197895098026032, + "gastrodon": 1.9203191330218394, + "drifblim": 4.7453618048770725, + "lopunny": 3.5960146431567166, + "skuntank": 1.2101534139178174, + "bronzong": 2.5203068322808866, + "munchlax": 2.142156826479201, + "drapion": 1.9687017714921207, + "abomasnow": 2.8039417375416447, + "froslass": 2.574381953870362, + "rotom": 3.68710476026488, + "stoutland": 2.3560128683525603, + "liepard": 5.734891590190914, + "musharna": 1.3949486990856783, + "unfezant": 6.565112648244327, + "boldore": 3.90752967022095, + "swoobat": 5.728277565911037, + "audino": 2.2547894986674866, + "gurdurr": 3.4015153162166394, + "palpitoad": 3.795836849380838, + "seismitoad": 6.650664693363421, + "scolipede": 3.7126450479573165, + "whimsicott": 2.982075186541686, + "lilligant": 2.6621960961375235, + "basculin-red-striped": 2.549058658209045, + "basculin-blue-striped": 3.1899826140365986, + "krookodile": 2.4725565105309, + "maractus": 1.925945828525876, + "crustle": 2.1537740301446333, + "sigilyph": 2.4118805505038843, + "cofagrigus": 2.5582856747658855, + "garbodor": 2.494924464721651, + "cinccino": 4.247758179837458, + "vanillish": 1.9593949802365345, + "emolga": 3.540726523520286, + "escavalier": 1.4587430866105806, + "amoonguss": 3.108132014282811, + "jellicent": 1.3474260824488322, + "galvantula": 1.7667040011633477, + "klang": 2.5179842041837714, + "klinklang": 2.799286407600888, + "beheeyem": 1.6135541969579696, + "lampent": 2.5801953301634803, + "fraxure": 1.5482966344325235, + "beartic": 1.5860375583681297, + "cryogonal": 1.3851309728245018, + "accelgor": 2.618830790502437, + "stunfisk": 1.2773071861062624, + "stunfisk-galar": 1.9713770056193956, + "mienshao": 4.495084845743415, + "druddigon": 1.7707964358004444, + "golurk": 1.8193819036305907, + "bisharp": 1.886049386535451, + "bouffalant": 1.2475101924762007, + "heatmor": 1.882350978642486, + "durant": 2.5942995148031724, + "diggersby": 3.518536832247377, + "talonflame": 3.8579312142849407, + "pangoro": 1.5207523048401235, + "doublade": 2.1375072573830005, + "malamar": 2.5610086780722607, + "barbaracle": 1.3958605628194543, + "heliolisk": 3.6788614437933447, + "tyrantrum": 1.742888781429856, + "aurorus": 2.4240512042540736, + "hawlucha": 4.549675569538015, + "dedenne": 3.032515995786127, + "klefki": 2.5031753647291435, + "trevenant": 2.731212353474067, + "gourgeist-average": 4.9651735411740185, + "charjabug": 4.583364063443518, + "vikavolt": 1.9029130071495872, + "ribombee": 4.275107098456112, + "lycanroc-midday": 3.496554029005369, + "lycanroc-midnight": 2.3248617866424954, + "mudsdale": 1.6127313352886654, + "araquanid": 2.0249906464744134, + "lurantis": 2.1496801917009045, + "shiinotic": 4.248648125479917, + "salazzle": 4.093587079332808, + "bewear": 2.262173110045899, + "tsareena": 2.7582488278218857, + "comfey": 4.050262961945211, + "oranguru": 2.541608656067872, + "passimian": 3.3234888496383164, + "palossand": 2.0898178874763005, + "pyukumuku": 42.39652308453051, + "togedemaru": 2.0125669370633728, + "mimikyu-disguised": 3.4318016685386117, + "greedent": 2.1912368471585393, + "orbeetle": 1.751744561265892, + "thievul": 1.449932879383839, + "eldegoss": 3.394478451583071, + "dubwool": 2.862405410681789, + "drednaw": 1.279132297435523, + "boltund": 4.615768593475025, + "carkol": 2.59184100280702, + "coalossal": 2.0266451436294517, + "sandaconda": 3.2595633796463472, + "cramorant": 4.448640572900498, + "barraskewda": 4.1599281400297965, + "toxtricity-amped": 3.684193205716778, + "centiskorch": 2.6131299452416883, + "grapploct": 2.1507078533824524, + "polteageist": 2.327754399768307, + "hatterene": 2.306996410327249, + "grimmsnarl": 3.154051719092596, + "obstagoon": 2.2323754801045856, + "perrserker": 2.6805780424795183, + "alcremie": 1.3446850046946348, + "falinks": 4.210322724079533, + "pincurchin": 3.020474596402458, + "frosmoth": 2.8301581495567447, + "indeedee-male": 2.740192651274695, + "morpeko": 2.529980968610815, + "copperajah": 2.011142506689871, + "duraludon": 1.4175947879161224, + "drakloak": 4.070749384824995 }, "cradily": { - "ivysaur": 3.024396572860227, - "charmeleon": 4.7511454837161065, - "wartortle": 3.6138550331309114, - "butterfree": 6.501968845905751, - "raichu": 5.071249047242091, - "raichu-alola": 3.575139094656505, - "sandslash": 3.2669468568410376, - "sandslash-alola": 1.9667789455359093, - "nidoqueen": 2.907985547922614, - "nidoking": 1.8850449615725116, - "clefairy": 9.659724011774172, - "clefable": 2.2477027315414606, - "jigglypuff": 28.7293323032604, - "wigglytuff": 2.2369858240028795, - "gloom": 5.486712950547855, - "vileplume": 2.727069389170401, - "dugtrio": 4.686346574058997, - "dugtrio-alola": 3.3274044638301787, - "persian": 4.659537341381425, - "persian-alola": 4.469697666280595, - "golduck": 4.3094610035967005, - "poliwrath": 2.5687560368260933, - "kadabra": 3.805876941185696, - "machoke": 3.911306162916495, - "tentacruel": 2.275599434549007, - "slowbro": 2.5704831553823593, - "magneton": 2.719094867875415, - "haunter": 4.266086865124764, - "kingler": 3.793487794830858, - "exeggutor": 2.1145742051852214, - "marowak": 4.252787930677171, - "marowak-alola": 2.6333562552737035, - "hitmonlee": 2.0650955925205463, - "hitmonchan": 2.0347662338756147, - "lickitung": 1.9549929546420635, - "weezing": 1.6387622806359725, - "weezing-galar": 2.706613966194543, - "rhydon": 4.934939472322966, - "chansey": 21.880627633033775, - "tangela": 6.052061929101285, - "kangaskhan": 1.957483545484159, - "seadra": 6.794425159771977, - "seaking": 3.214249418088776, - "starmie": 1.9010421539400517, - "mr-mime": 6.797190157136014, - "mr-mime-galar": 3.8453308147054335, - "scyther": 4.4332650571028935, - "jynx": 4.3332268025362595, - "electabuzz": 2.7980204798032773, - "magmar": 1.9683624124672066, - "tauros": 2.141084028582794, - "ditto": 3.136659433335746, - "vaporeon": 4.1586379686575095, - "jolteon": 2.022189671196624, - "flareon": 2.7232822217861, - "porygon": 2.910973596913289, - "dragonair": 1.735809939238257, - "noctowl": 6.561264683483193, - "lanturn": 2.672866547260302, - "togetic": 6.321722788838607, - "xatu": 4.702523430232905, - "bellossom": 2.5235315959092084, - "azumarill": 2.4328158727910907, - "sudowoodo": 3.644155720083325, - "politoed": 3.3813965243710378, - "quagsire": 9.757978191235516, - "slowking": 3.022979238725605, - "dunsparce": 3.2177816221529167, - "qwilfish": 3.6775511511687276, - "sneasel": 2.475385168296804, - "piloswine": 2.0217485402582827, - "octillery": 3.0577939549409923, - "mantine": 2.6782008933784365, - "skarmory": 1.9821926769083715, - "hitmontop": 2.496025652127676, - "miltank": 4.106111386075047, - "grovyle": 7.778024410859753, - "sceptile": 1.4374213155615918, - "combusken": 3.020717602599502, - "blaziken": 1.4983874875575633, - "marshtomp": 4.922624866692493, - "swampert": 2.4319702164539185, - "linoone": 5.315904899449173, - "linoone-galar": 4.87228866915226, - "pelipper": 8.231511895747712, - "ninjask": 10.99776168186336, - "exploud": 1.5826003814771896, - "lairon": 2.6659140795849794, - "manectric": 1.936216453335583, - "roselia": 3.7066818463797597, - "sharpedo": 6.831750481402631, - "wailmer": 8.843514046134851, - "torkoal": 2.671617026400086, - "flygon": 2.329223779692315, - "altaria": 1.9435515698008698, - "whiscash": 4.287724881517669, - "crawdaunt": 3.0410082844222086, - "claydol": 4.48050780317795, - "armaldo": 2.2177966025553717, - "dusclops": 3.3830215397716894, - "absol": 1.990937831974465, - "glalie": 4.5869518171117, - "sealeo": 4.084968770661759, - "relicanth": 4.240532190746, - "metang": 2.4589316195035362, - "luxray": 4.290756479487461, - "vespiquen": 4.204068406379403, - "cherrim": 6.2812917432879525, - "gastrodon": 4.1088501153986, - "drifblim": 5.322697042442108, - "lopunny": 3.7134895647527024, - "skuntank": 1.419651550800152, - "bronzong": 2.5583587197831172, - "munchlax": 2.218734503987171, - "drapion": 2.253972470997785, - "abomasnow": 3.5631741050071435, - "froslass": 3.314526927510487, - "rotom": 4.059857706614502, - "stoutland": 2.7123130056693094, - "liepard": 7.276091336067446, - "musharna": 1.584759187131408, - "unfezant": 8.181984547335436, - "boldore": 4.9861328383425425, - "swoobat": 6.724437662481641, - "audino": 2.554556161255313, - "gurdurr": 2.249254369850406, - "palpitoad": 7.869664515163157, - "seismitoad": 13.457592948966823, - "scolipede": 3.704058992830185, - "whimsicott": 4.5668142188842, - "lilligant": 3.124024013940354, - "basculin-red-striped": 3.8869595127818553, - "basculin-blue-striped": 5.187328114621598, - "krookodile": 3.9122577212956235, - "maractus": 2.370594150516272, - "crustle": 2.4993884957284607, - "sigilyph": 2.7680379784850935, - "cofagrigus": 2.861945753387893, - "garbodor": 1.7272544323608225, - "cinccino": 4.73150424771515, - "vanillish": 2.4033952642525316, - "emolga": 4.0548539682822025, - "escavalier": 1.6865396814911966, - "amoonguss": 2.432500994147139, - "jellicent": 1.961175770852249, - "galvantula": 2.024077999895, - "klang": 2.3718955718030084, - "klinklang": 2.7741386728380184, - "beheeyem": 1.8635074849761861, - "lampent": 3.2181774046319864, - "fraxure": 1.5388655880737334, - "beartic": 1.8758510640596633, - "cryogonal": 1.6195486548375713, - "accelgor": 3.135106804633205, - "stunfisk": 1.7301508390755576, - "stunfisk-galar": 2.4853993365218314, - "mienshao": 3.4493517326896193, - "druddigon": 1.6956710640160046, - "golurk": 2.4448902102443593, - "bisharp": 2.1606866996328544, - "bouffalant": 1.1975587068188587, - "heatmor": 2.3629764602553442, - "durant": 2.910197109400352, - "diggersby": 4.371421333247467, - "talonflame": 5.0395503056153075, - "pangoro": 1.6993697564853625, - "doublade": 2.0082182346165385, - "malamar": 3.051932598597584, - "barbaracle": 2.9395439466258653, - "heliolisk": 3.721230809584573, - "tyrantrum": 1.7450656534672746, - "aurorus": 2.9001280110133694, - "hawlucha": 3.274182764485459, - "dedenne": 3.2604012337672414, - "klefki": 2.4644813776911842, - "trevenant": 2.729820694199689, - "gourgeist-average": 5.284387202064159, - "charjabug": 5.193656554840226, - "vikavolt": 2.261995618430858, - "ribombee": 5.219490270857998, - "lycanroc-midday": 4.482407635954811, - "lycanroc-midnight": 3.0295323835686068, - "mudsdale": 2.053949721544928, - "araquanid": 2.580061620693472, - "lurantis": 2.5188990699328837, - "shiinotic": 6.118653677182305, - "salazzle": 3.8540472757892243, - "bewear": 2.0272566073901537, - "tsareena": 3.2783689005933567, - "comfey": 4.737142676809369, - "oranguru": 2.688508718379234, - "passimian": 2.3933815651399613, - "palossand": 3.0731742443971655, - "pyukumuku": 56.04398872754665, - "togedemaru": 1.8966081622090676, - "mimikyu-disguised": 4.1314583537902925, - "greedent": 2.262228949226952, - "orbeetle": 2.0470425909897028, - "thievul": 1.817764231459169, - "eldegoss": 4.0936718065309705, - "dubwool": 3.0631878519452265, - "drednaw": 2.511591438300593, - "boltund": 5.076068151796893, - "carkol": 2.9708845986188823, - "coalossal": 2.4588937860774545, - "sandaconda": 4.5054379725608085, - "cramorant": 6.094545025157203, - "barraskewda": 6.550002724276868, - "toxtricity-amped": 2.903836622164925, - "centiskorch": 3.331458577969838, - "grapploct": 1.6715357269952489, - "polteageist": 2.588106600245355, - "hatterene": 2.694156492689375, - "grimmsnarl": 3.9483750919256555, - "obstagoon": 2.8144185157661856, - "perrserker": 2.7806220404636175, - "alcremie": 1.499806347899386, - "falinks": 3.0285965520597165, - "pincurchin": 3.2044667559579625, - "frosmoth": 3.659577963116969, - "indeedee-male": 3.129044448760729, - "morpeko": 2.9085780331457425, - "copperajah": 1.8075097884434224, - "duraludon": 1.3232637284664288, - "drakloak": 4.344767344450484, - "cradily": 2.3396734599699607 + "ivysaur": 3.024651411112812, + "charmeleon": 4.759006848716545, + "wartortle": 3.6196719501571595, + "butterfree": 6.503763689839804, + "raichu": 5.0762630846062065, + "raichu-alola": 3.5794864269304436, + "sandslash": 3.2727870711404794, + "sandslash-alola": 1.9633851090848418, + "nidoqueen": 2.9088746500365392, + "nidoking": 1.885046978795585, + "clefairy": 9.681834281271595, + "clefable": 2.252877764352964, + "jigglypuff": 28.792609375417452, + "wigglytuff": 2.242773093667987, + "gloom": 5.487452096201143, + "vileplume": 2.7250720334721636, + "dugtrio": 4.692566077256738, + "dugtrio-alola": 3.323296834020759, + "persian": 4.668490889723053, + "persian-alola": 4.475140431867002, + "golduck": 4.320849803216521, + "poliwrath": 2.572334149090107, + "kadabra": 3.8066396958248863, + "machoke": 3.911681667521081, + "tentacruel": 2.2762812056394024, + "slowbro": 2.5769975529818208, + "magneton": 2.71518474680708, + "haunter": 4.267594209578121, + "kingler": 3.802042087138082, + "exeggutor": 2.117409022053682, + "marowak": 4.257304058653989, + "marowak-alola": 2.636629833889014, + "hitmonlee": 2.0615307095042965, + "hitmonchan": 2.033946973055465, + "lickitung": 1.9575723022132565, + "weezing": 1.6400942217968695, + "weezing-galar": 2.711030858438832, + "rhydon": 4.945823646810486, + "chansey": 21.861125986124343, + "tangela": 6.068225050919727, + "kangaskhan": 1.9603664852824965, + "seadra": 6.817056686892347, + "seaking": 3.220797357251457, + "starmie": 1.9044898983756293, + "mr-mime": 6.805824872722748, + "mr-mime-galar": 3.845769988921881, + "scyther": 4.439784621427236, + "jynx": 4.330228548755599, + "electabuzz": 2.8043043627957442, + "magmar": 1.9711192771085828, + "tauros": 2.1437856999676637, + "ditto": 3.1227616093688138, + "vaporeon": 4.168578216488114, + "jolteon": 2.026070962038112, + "flareon": 2.7262269298683215, + "porygon": 2.914414025635346, + "dragonair": 1.7361536442177947, + "noctowl": 6.569259382707552, + "lanturn": 2.681121503160227, + "togetic": 6.336323180365795, + "xatu": 4.70943292412845, + "bellossom": 2.527094056705539, + "azumarill": 2.4297147347566366, + "sudowoodo": 3.6502647150968315, + "politoed": 3.389300877345371, + "quagsire": 9.78092668494028, + "slowking": 3.0257465740842755, + "dunsparce": 3.218094636323819, + "qwilfish": 3.6808675265386386, + "sneasel": 2.4754534876408743, + "piloswine": 2.022320661192776, + "octillery": 3.0610266015069225, + "mantine": 2.682233439015558, + "skarmory": 1.979829804749471, + "hitmontop": 2.4936606405742343, + "miltank": 4.116065893005785, + "grovyle": 7.779568937508731, + "sceptile": 1.4382806405663657, + "combusken": 3.0189943889913256, + "blaziken": 1.498197007877633, + "marshtomp": 4.934003190028978, + "swampert": 2.4382603870351476, + "linoone": 5.319594214051362, + "linoone-galar": 4.876281445910875, + "pelipper": 8.256981922179772, + "ninjask": 10.992978169324303, + "exploud": 1.5834363911976401, + "lairon": 2.663377954737522, + "manectric": 1.9409118346623355, + "roselia": 3.706464092035462, + "sharpedo": 6.845379447597839, + "wailmer": 8.860186370981628, + "torkoal": 2.6790787707220884, + "flygon": 2.326998718937559, + "altaria": 1.9456404815977484, + "whiscash": 4.299686167511732, + "crawdaunt": 3.049914164207231, + "claydol": 4.487748209759468, + "cradily": 2.3396734599699607, + "armaldo": 2.219509712788133, + "dusclops": 3.3843155614344598, + "absol": 1.9932179755632315, + "glalie": 4.586780326015639, + "sealeo": 4.092035111063843, + "relicanth": 4.254365913437823, + "metang": 2.454845288460466, + "luxray": 4.302541076239984, + "vespiquen": 4.205560100815859, + "cherrim": 6.291509959975747, + "gastrodon": 4.118205963608724, + "drifblim": 5.332371631022044, + "lopunny": 3.71638187566775, + "skuntank": 1.4205471662886733, + "bronzong": 2.5536107987745313, + "munchlax": 2.2206944406325753, + "drapion": 2.2524512332156963, + "abomasnow": 3.564803523330878, + "froslass": 3.3154458366748685, + "rotom": 4.070036435845469, + "stoutland": 2.7187032354954637, + "liepard": 7.28474887946393, + "musharna": 1.5863472574155322, + "unfezant": 8.198426986521447, + "boldore": 4.996363089387709, + "swoobat": 6.734239389544076, + "audino": 2.55924443241389, + "gurdurr": 2.2485835136273087, + "palpitoad": 7.895034702985992, + "seismitoad": 13.49958342775766, + "scolipede": 3.700884239484462, + "whimsicott": 4.580413504094036, + "lilligant": 3.125795715765693, + "basculin-red-striped": 3.89416420858651, + "basculin-blue-striped": 5.200401717867968, + "krookodile": 3.9188344196587233, + "maractus": 2.3747124419675374, + "crustle": 2.500600498811301, + "sigilyph": 2.7702400521146515, + "cofagrigus": 2.866811737592821, + "garbodor": 1.7261840824030124, + "cinccino": 4.735426198534869, + "vanillish": 2.4032275738621167, + "emolga": 4.066290547255752, + "escavalier": 1.6842472780442495, + "amoonguss": 2.432623527892095, + "jellicent": 1.9640678710297466, + "galvantula": 2.0276931737772266, + "klang": 2.3693563737607493, + "klinklang": 2.76842745407174, + "beheeyem": 1.8656329539970642, + "lampent": 3.223067060709403, + "fraxure": 1.5395175187652692, + "beartic": 1.875611462180753, + "cryogonal": 1.6174819995531582, + "accelgor": 3.1315380862293347, + "stunfisk": 1.7336251507345732, + "stunfisk-galar": 2.486366860565554, + "mienshao": 3.451066223906958, + "druddigon": 1.6956586079281597, + "golurk": 2.4464544480176063, + "bisharp": 2.158697516324179, + "bouffalant": 1.1947683654837584, + "heatmor": 2.367772617865792, + "durant": 2.9049997992008163, + "diggersby": 4.3788787484431495, + "talonflame": 5.049429753991773, + "pangoro": 1.698308755827315, + "doublade": 2.005003456557546, + "malamar": 3.0565529650656065, + "barbaracle": 2.9478726041898193, + "heliolisk": 3.7280904208518386, + "tyrantrum": 1.746775454019981, + "aurorus": 2.9022032707295224, + "hawlucha": 3.2732137881613674, + "dedenne": 3.270371219221775, + "klefki": 2.4602611742832585, + "trevenant": 2.7293865678253324, + "gourgeist-average": 5.2923818996331, + "charjabug": 5.207838456842679, + "vikavolt": 2.264204414794177, + "ribombee": 5.2229615230724615, + "lycanroc-midday": 4.491211627669852, + "lycanroc-midnight": 3.032793237530143, + "mudsdale": 2.05491940955355, + "araquanid": 2.581773167064978, + "lurantis": 2.5211121496595625, + "shiinotic": 6.135764701837813, + "salazzle": 3.8576815306864383, + "bewear": 2.0311165610114332, + "tsareena": 3.2827164182255766, + "comfey": 4.748316297343506, + "oranguru": 2.6900988288090186, + "passimian": 2.3941457367128836, + "palossand": 3.080420033343991, + "pyukumuku": 56.08524676059109, + "togedemaru": 1.8927518345573198, + "mimikyu-disguised": 4.139298893107899, + "greedent": 2.2647348899786603, + "orbeetle": 2.047848094211489, + "thievul": 1.8188906251439234, + "eldegoss": 4.099138250121928, + "dubwool": 3.0657323364732827, + "drednaw": 2.516192249148388, + "boltund": 5.086850334727963, + "carkol": 2.9760446182510445, + "coalossal": 2.4631831352805964, + "sandaconda": 4.5105435715084665, + "cramorant": 6.102171775352533, + "barraskewda": 6.565226217768404, + "toxtricity-amped": 2.9080601804162844, + "centiskorch": 3.339270091627933, + "grapploct": 1.6702699855079381, + "polteageist": 2.589729349364629, + "hatterene": 2.7000205683833, + "grimmsnarl": 3.954440476592869, + "obstagoon": 2.819553530889899, + "perrserker": 2.7769480413577883, + "alcremie": 1.5026691078142698, + "falinks": 3.0250430073683923, + "pincurchin": 3.212576873853413, + "frosmoth": 3.6625044879457587, + "indeedee-male": 3.130589817390507, + "morpeko": 2.9133396722419693, + "copperajah": 1.8015053968366397, + "duraludon": 1.321430570626217, + "drakloak": 4.346522832282674 }, "armaldo": { - "ivysaur": 3.8263363247510216, - "charmeleon": 5.323175446152094, - "wartortle": 2.8073214086930656, - "butterfree": 9.85822847903086, - "raichu": 7.104974097137127, - "raichu-alola": 6.16644093680278, - "sandslash": 2.186772465273728, - "sandslash-alola": 2.1239490828736276, - "nidoqueen": 3.566632040370476, - "nidoking": 2.3767970664341975, - "clefairy": 9.68325179344485, - "clefable": 2.0629180191960135, - "jigglypuff": 28.102036125091708, - "wigglytuff": 2.0833045761362525, - "gloom": 6.745449326924857, - "vileplume": 3.3577017116191903, - "dugtrio": 4.15067754963597, - "dugtrio-alola": 4.437870830788406, - "persian": 5.311369137534076, - "persian-alola": 6.879648760335414, - "golduck": 3.240117173937791, - "poliwrath": 1.8110377545542198, - "kadabra": 7.330888307900631, - "machoke": 3.674680923701938, - "tentacruel": 3.124246416135716, - "slowbro": 2.545730234044668, - "magneton": 5.02019325265472, - "haunter": 4.705662238135533, - "kingler": 2.343422913373349, - "exeggutor": 4.339780488641935, - "marowak": 3.223784548743228, - "marowak-alola": 2.587455751882051, - "hitmonlee": 2.6289267787731134, - "hitmonchan": 2.240504855937335, - "lickitung": 2.037388701400292, - "weezing": 1.846592480201097, - "weezing-galar": 3.038416498105062, - "rhydon": 2.2473734980450404, - "chansey": 39.127116259628885, - "tangela": 6.169242339747841, - "kangaskhan": 2.18760974182687, - "seadra": 3.9298813745910137, - "seaking": 2.835450542267367, - "starmie": 2.1861629152394433, - "mr-mime": 8.509194712936145, - "mr-mime-galar": 5.808034395950147, - "scyther": 5.31081734505646, - "jynx": 8.06613809245205, - "electabuzz": 3.5707250949615195, - "magmar": 2.4610989924133087, - "tauros": 2.2647843556869116, - "ditto": 2.860174608157636, - "vaporeon": 3.6566987206619697, - "jolteon": 2.828301725750118, - "flareon": 3.628781751101081, - "porygon": 3.2537589474127233, - "dragonair": 2.173810751557323, - "noctowl": 9.221474322363388, - "lanturn": 2.411043737230743, - "togetic": 7.527962885862342, - "xatu": 5.0254360964078675, - "bellossom": 3.6206920569051704, - "azumarill": 2.1747203154583454, - "sudowoodo": 2.7589581822399323, - "politoed": 2.9571034857988803, - "quagsire": 4.567964853338632, - "slowking": 3.961208065465327, - "dunsparce": 3.681994487950538, - "qwilfish": 3.8653065861011906, - "sneasel": 3.571492090367645, - "piloswine": 1.6749484918817812, - "octillery": 2.429607976289947, - "mantine": 3.5399682413695994, - "skarmory": 1.8055055483891387, - "hitmontop": 2.7307083172359743, - "miltank": 4.056180230480145, - "grovyle": 13.350460734535517, - "sceptile": 2.3465407573200765, - "combusken": 4.266053252242559, - "blaziken": 2.093604538545067, - "marshtomp": 2.6457031195611216, - "swampert": 1.3641203533939104, - "linoone": 6.195564178612242, - "linoone-galar": 7.111538653621308, - "pelipper": 7.933547525804004, - "ninjask": 14.874863021903755, - "exploud": 1.931550310259873, - "lairon": 2.850151973984862, - "manectric": 2.3662496775492405, - "roselia": 4.967676228818055, - "sharpedo": 7.746850734566211, - "wailmer": 6.7742088855103075, - "torkoal": 2.169676960575451, - "flygon": 2.6418629643839244, - "altaria": 2.1880678655675005, - "whiscash": 2.0359151048520814, - "crawdaunt": 2.5852945599405808, - "claydol": 5.153543441607361, - "cradily": 3.416720946448933, - "dusclops": 3.4573412719084673, - "absol": 3.1659461465518084, - "glalie": 5.360537313636121, - "sealeo": 3.8386252993744243, - "relicanth": 1.8987317835597235, - "metang": 3.457587700091536, - "luxray": 5.063484971037238, - "vespiquen": 5.273203070971362, - "cherrim": 9.429293206426307, - "gastrodon": 2.432630275129401, - "drifblim": 6.016019497767443, - "lopunny": 4.492147156328784, - "skuntank": 1.896367642208781, - "bronzong": 3.549073132290272, - "munchlax": 3.075320758136944, - "drapion": 2.8425107164623817, - "abomasnow": 4.954131365416934, - "froslass": 3.9150048612601234, - "rotom": 3.7631497336872357, - "stoutland": 3.0195952438758176, - "liepard": 11.311984283124332, - "musharna": 2.4554735194922164, - "unfezant": 7.956237206811112, - "boldore": 3.301558465500939, - "swoobat": 7.1959776139028, - "audino": 2.7396443132706088, - "gurdurr": 2.082473694320385, - "palpitoad": 4.137642180714309, - "seismitoad": 7.902080642903284, - "scolipede": 4.0183556999259915, - "whimsicott": 3.477847851518363, - "lilligant": 4.6842113864984345, - "basculin-red-striped": 2.9360127772562015, - "basculin-blue-striped": 3.6724366683982694, - "krookodile": 4.2748256890595435, - "maractus": 3.4826110413475755, - "crustle": 2.3892231425193766, - "sigilyph": 2.9253459274372844, - "cofagrigus": 2.479756094978117, - "garbodor": 2.4914119325048416, - "cinccino": 5.555687220761348, - "vanillish": 2.9450571464404462, - "emolga": 4.157209382643937, - "escavalier": 1.8046042053868732, - "amoonguss": 3.062894841953254, - "jellicent": 1.6470236801921017, - "galvantula": 2.122694373794361, - "klang": 3.1605312996653145, - "klinklang": 3.9038844914473394, - "beheeyem": 2.8983123609178447, - "lampent": 3.5097103917247168, - "fraxure": 1.7319824164027713, - "beartic": 2.195296610339439, - "cryogonal": 2.6674258526704353, - "accelgor": 4.4083635472842735, - "stunfisk": 1.5416457168321616, - "stunfisk-galar": 2.8628745779605396, - "mienshao": 3.3098644948732345, - "druddigon": 2.043965337369692, - "golurk": 1.8481786594722416, - "bisharp": 2.986066230553074, - "bouffalant": 1.5047516415228848, - "heatmor": 2.5838956406581977, - "durant": 2.6210176618876275, - "diggersby": 3.6352613960823867, - "talonflame": 5.620969247262762, - "pangoro": 1.949322680823034, - "doublade": 2.321006664941424, - "malamar": 6.4164600114433865, - "barbaracle": 1.7200664590169628, - "heliolisk": 5.321121725257425, - "tyrantrum": 1.7297463041412924, - "aurorus": 3.0004809783148163, - "hawlucha": 3.6036511914966676, - "dedenne": 3.8855588039820983, - "klefki": 3.7636901235432916, - "trevenant": 3.5591631944364206, - "gourgeist-average": 5.451763567735681, - "charjabug": 5.168586326881776, - "vikavolt": 2.4391927798263433, - "ribombee": 6.405559752921958, - "lycanroc-midday": 3.849354823452827, - "lycanroc-midnight": 2.8201600179196302, - "mudsdale": 1.7601385388812298, - "araquanid": 3.401690988424417, - "lurantis": 3.8088238049545913, - "shiinotic": 5.245622045700826, - "salazzle": 5.916551035521287, - "bewear": 1.8290379119074327, - "tsareena": 4.8741605120715645, - "comfey": 4.633938769461141, - "oranguru": 4.495157601315781, - "passimian": 2.128125598115984, - "palossand": 1.882686204253015, - "pyukumuku": 51.611079443771814, - "togedemaru": 4.341913302329442, - "mimikyu-disguised": 4.504873979629426, - "greedent": 2.352904109747209, - "orbeetle": 2.8132270636375534, - "thievul": 3.136706452753768, - "eldegoss": 6.51283982440183, - "dubwool": 3.4433573155571384, - "drednaw": 1.3512102756667104, - "boltund": 6.07322962928042, - "carkol": 3.6072422020931487, - "coalossal": 2.8496085673597387, - "sandaconda": 3.210529196654626, - "cramorant": 7.817711667812244, - "barraskewda": 4.9449108208722485, - "toxtricity-amped": 5.332174844686219, - "centiskorch": 4.49456327919244, - "grapploct": 1.5190550241930654, - "polteageist": 2.977751280711261, - "hatterene": 2.8986583200697886, - "grimmsnarl": 4.521029145991698, - "obstagoon": 3.8253811913346683, - "perrserker": 3.614162674747332, - "alcremie": 1.5645946419966288, - "falinks": 2.807046836226899, - "pincurchin": 3.5009896809136634, - "frosmoth": 5.324976479090601, - "indeedee-male": 5.561692215105335, - "morpeko": 4.364903252008473, - "copperajah": 2.8001229521299464, - "duraludon": 1.6909039830887682, - "drakloak": 4.634272496456889, - "armaldo": 2.2998869903722596 + "ivysaur": 3.833940893193254, + "charmeleon": 5.335909680762368, + "wartortle": 2.80593575567648, + "butterfree": 9.877150002867563, + "raichu": 7.1244706068439205, + "raichu-alola": 6.1860278623233445, + "sandslash": 2.1868237123825045, + "sandslash-alola": 2.1243697823788326, + "nidoqueen": 3.5713682531178756, + "nidoking": 2.380544749603452, + "clefairy": 9.694991213173434, + "clefable": 2.0630491128237045, + "jigglypuff": 28.129366397892344, + "wigglytuff": 2.0854671430948417, + "gloom": 6.758864734118605, + "vileplume": 3.3618495613352484, + "dugtrio": 4.154749048977283, + "dugtrio-alola": 4.440570780379814, + "persian": 5.325168774331791, + "persian-alola": 6.897041860937224, + "golduck": 3.23928893580586, + "poliwrath": 1.8103905989442555, + "kadabra": 7.352610500527386, + "machoke": 3.6733669168731593, + "tentacruel": 3.1254894995035603, + "slowbro": 2.549762075703674, + "magneton": 5.019605797012506, + "haunter": 4.703544906968243, + "kingler": 2.34214489930015, + "exeggutor": 4.351508319802703, + "marowak": 3.2239920340075834, + "marowak-alola": 2.592353796525824, + "hitmonlee": 2.632568384559176, + "hitmonchan": 2.2425950734217794, + "lickitung": 2.0388137880855783, + "weezing": 1.8494514159956352, + "weezing-galar": 3.041345467181082, + "rhydon": 2.244403312476468, + "chansey": 39.27733061099205, + "tangela": 6.176233987470575, + "kangaskhan": 2.1920880279918755, + "seadra": 3.925120277560239, + "seaking": 2.8393999317426193, + "starmie": 2.1888968138313842, + "mr-mime": 8.524530131349533, + "mr-mime-galar": 5.822119974434633, + "scyther": 5.32265224227151, + "jynx": 8.09464394762715, + "electabuzz": 3.5803675805712167, + "magmar": 2.4688087658328053, + "tauros": 2.268847575868065, + "ditto": 2.8515163751654717, + "vaporeon": 3.6581976703361088, + "jolteon": 2.8366133332524672, + "flareon": 3.6402356949738954, + "porygon": 3.258629130084495, + "dragonair": 2.1771009226170324, + "noctowl": 9.239989912370842, + "lanturn": 2.4131676720871207, + "togetic": 7.534527155980854, + "xatu": 5.030181455489575, + "bellossom": 3.6266887894591187, + "azumarill": 2.1766377514996247, + "sudowoodo": 2.7603376737383294, + "politoed": 2.9603104651090373, + "quagsire": 4.5619383236253634, + "slowking": 3.9670928846717093, + "dunsparce": 3.686940873749469, + "qwilfish": 3.866117723684842, + "sneasel": 3.5819473113745928, + "piloswine": 1.6760512564657422, + "octillery": 2.428162193550608, + "mantine": 3.5392655560911734, + "skarmory": 1.8029077409686294, + "hitmontop": 2.732829012703718, + "miltank": 4.06395959602639, + "grovyle": 13.379654675325522, + "sceptile": 2.351205920021204, + "combusken": 4.2719214502409555, + "blaziken": 2.097034472068781, + "marshtomp": 2.644691516677125, + "swampert": 1.3638304474237835, + "linoone": 6.208620070651877, + "linoone-galar": 7.126099199362951, + "pelipper": 7.9431397742336, + "ninjask": 14.903205880035856, + "exploud": 1.9354959864310755, + "lairon": 2.8467560980669386, + "manectric": 2.3725796418377496, + "roselia": 4.97761885369742, + "sharpedo": 7.759035307568167, + "wailmer": 6.7707143655098, + "torkoal": 2.173480077975727, + "flygon": 2.6400196424255338, + "altaria": 2.189235472299067, + "whiscash": 2.035438288105122, + "crawdaunt": 2.5881663181896197, + "claydol": 5.155707420439299, + "cradily": 3.4212475067316737, + "armaldo": 2.2998869903722596, + "dusclops": 3.4613953554060215, + "absol": 3.1746182913975804, + "glalie": 5.3693282568981395, + "sealeo": 3.839210405033965, + "relicanth": 1.8968894585013074, + "metang": 3.460565778399209, + "luxray": 5.0771707740674845, + "vespiquen": 5.284183545888769, + "cherrim": 9.449036574098837, + "gastrodon": 2.433200933033816, + "drifblim": 6.017955854585795, + "lopunny": 4.50345835724088, + "skuntank": 1.902177893820618, + "bronzong": 3.5479529519994357, + "munchlax": 3.0855852131342774, + "drapion": 2.84736814599956, + "abomasnow": 4.967086392651929, + "froslass": 3.9214925576298834, + "rotom": 3.7631521311034404, + "stoutland": 3.028256848706419, + "liepard": 11.341861617765073, + "musharna": 2.4604868802988342, + "unfezant": 7.963538989423397, + "boldore": 3.3013058018788985, + "swoobat": 7.202727566301808, + "audino": 2.7442627930823544, + "gurdurr": 2.0824695796449166, + "palpitoad": 4.137838361479719, + "seismitoad": 7.919113069871848, + "scolipede": 4.022906182980033, + "whimsicott": 3.480490589687485, + "lilligant": 4.691399721701174, + "basculin-red-striped": 2.935881342873471, + "basculin-blue-striped": 3.670030889534808, + "krookodile": 4.28274806249893, + "maractus": 3.4893369395965093, + "crustle": 2.391619426699169, + "sigilyph": 2.925566793861897, + "cofagrigus": 2.4805922732724337, + "garbodor": 2.4989582503206274, + "cinccino": 5.569034236717243, + "vanillish": 2.950860721758378, + "emolga": 4.161030056984954, + "escavalier": 1.805538718950071, + "amoonguss": 3.069644028083051, + "jellicent": 1.6488940681118534, + "galvantula": 2.1266980705402245, + "klang": 3.1578081817125927, + "klinklang": 3.9037876666530513, + "beheeyem": 2.903105592490192, + "lampent": 3.5191666453990225, + "fraxure": 1.7345413565947165, + "beartic": 2.1977624298273115, + "cryogonal": 2.672034082019663, + "accelgor": 4.416611124991449, + "stunfisk": 1.5431481273620475, + "stunfisk-galar": 2.8655063136627983, + "mienshao": 3.309962177245361, + "druddigon": 2.0465057143210394, + "golurk": 1.8493394567022783, + "bisharp": 2.992171451088131, + "bouffalant": 1.507655550281675, + "heatmor": 2.5911752838170656, + "durant": 2.618866356160237, + "diggersby": 3.6382395439055286, + "talonflame": 5.627075815793056, + "pangoro": 1.9507270391113334, + "doublade": 2.319219933525732, + "malamar": 6.433598961024533, + "barbaracle": 1.722010287778231, + "heliolisk": 5.338589236332467, + "tyrantrum": 1.7313460860286893, + "aurorus": 3.003443659293763, + "hawlucha": 3.602989031091128, + "dedenne": 3.8923835422423902, + "klefki": 3.7629710950293114, + "trevenant": 3.5654577457249497, + "gourgeist-average": 5.455894487510364, + "charjabug": 5.180901848017765, + "vikavolt": 2.4429059668559527, + "ribombee": 6.411772264062695, + "lycanroc-midday": 3.85103771994096, + "lycanroc-midnight": 2.823498953671411, + "mudsdale": 1.762115245236989, + "araquanid": 3.4082444579730766, + "lurantis": 3.8167297332309413, + "shiinotic": 5.251805690333409, + "salazzle": 5.935902197755297, + "bewear": 1.8308256426742568, + "tsareena": 4.885011492565945, + "comfey": 4.638766794110899, + "oranguru": 4.504933976010184, + "passimian": 2.1270250429700717, + "palossand": 1.8824876373373374, + "pyukumuku": 51.70515635704963, + "togedemaru": 4.3490042224368795, + "mimikyu-disguised": 4.513594729951829, + "greedent": 2.3553487854349804, + "orbeetle": 2.8188918943210126, + "thievul": 3.1437135686178275, + "eldegoss": 6.526983730214757, + "dubwool": 3.4501595173514463, + "drednaw": 1.3506946403745799, + "boltund": 6.087497381776275, + "carkol": 3.6135903242445506, + "coalossal": 2.8508777570620074, + "sandaconda": 3.211123140532829, + "cramorant": 7.818840883173133, + "barraskewda": 4.947151740029687, + "toxtricity-amped": 5.345915446962305, + "centiskorch": 4.50870137361136, + "grapploct": 1.5183020859523566, + "polteageist": 2.9833022282646366, + "hatterene": 2.9031374061132995, + "grimmsnarl": 4.5293754257417564, + "obstagoon": 3.834123388884522, + "perrserker": 3.613879474711668, + "alcremie": 1.5667837052580342, + "falinks": 2.8043595816267572, + "pincurchin": 3.5026907275941856, + "frosmoth": 5.3373662454811415, + "indeedee-male": 5.574791704717333, + "morpeko": 4.377887038553991, + "copperajah": 2.7982124784475735, + "duraludon": 1.690345407539526, + "drakloak": 4.639825923311021 }, "dusclops": { - "ivysaur": 2.9204989418871774, - "charmeleon": 3.5277769582676775, - "wartortle": 2.552158541161953, - "butterfree": 4.395877706002629, - "raichu": 4.8882491971966875, - "raichu-alola": 4.023006258655352, - "sandslash": 2.205370634247202, - "sandslash-alola": 2.0192299061973342, - "nidoqueen": 2.4788118736690743, - "nidoking": 1.6794028013654974, - "clefairy": 8.222637168942892, - "clefable": 1.8623422536650405, - "jigglypuff": 20.850141315705333, - "wigglytuff": 1.6142643450127334, - "gloom": 5.327317237323087, - "vileplume": 2.769473802849057, - "dugtrio": 3.331454051678978, - "dugtrio-alola": 2.9681201844589404, - "persian": 4.245946354029815, - "persian-alola": 3.7756885709297814, - "golduck": 2.933453564813565, - "poliwrath": 1.9120976441348334, - "kadabra": 4.667606308054698, - "machoke": 3.669308773480206, - "tentacruel": 2.2138897322057645, - "slowbro": 2.083833161122651, - "magneton": 2.9425801273634757, - "haunter": 4.681804917300417, - "kingler": 2.567693648494092, - "exeggutor": 2.5040660816754787, - "marowak": 2.773089888299981, - "marowak-alola": 2.345539709372204, - "hitmonlee": 2.488084366230443, - "hitmonchan": 1.996739180345894, - "lickitung": 1.694639565088599, - "weezing": 1.5181996274618956, - "weezing-galar": 2.546064945284866, - "rhydon": 2.2805083366553855, - "chansey": 29.10283894027193, - "tangela": 5.10928162638357, - "kangaskhan": 1.619987955685529, - "seadra": 4.252974188641704, - "seaking": 2.221423223487723, - "starmie": 1.6161690476204431, - "mr-mime": 7.756281063700838, - "mr-mime-galar": 3.9687503676854567, - "scyther": 2.495591917939541, - "jynx": 5.273129586998594, - "electabuzz": 2.3858794169262065, - "magmar": 1.567005844917356, - "tauros": 1.7963931470756018, - "ditto": 3.2796047759046565, - "vaporeon": 3.048962392157278, - "jolteon": 1.824386724478564, - "flareon": 2.169747036297978, - "porygon": 2.47022263988051, - "dragonair": 1.6828610296976203, - "noctowl": 5.0375520483055265, - "lanturn": 1.707967927995786, - "togetic": 4.767363202804384, - "xatu": 4.275035197805405, - "bellossom": 2.396348500809292, - "azumarill": 1.9796222114389501, - "sudowoodo": 2.5635622935869002, - "politoed": 2.38911488738184, - "quagsire": 4.594254549314818, - "slowking": 2.6953254935502393, - "dunsparce": 2.731683870951376, - "qwilfish": 3.3280314569583673, - "sneasel": 2.155419053327381, - "piloswine": 1.5281281384716188, - "octillery": 2.2019746157200086, - "mantine": 2.250994031884162, - "skarmory": 1.94714127772049, - "hitmontop": 2.5603552916534813, - "miltank": 3.311412446579793, - "grovyle": 8.821032694818374, - "sceptile": 1.5009068799980885, - "combusken": 3.34007133669318, - "blaziken": 1.5655732188430234, - "marshtomp": 2.2628637116540258, - "swampert": 1.1481529612220212, - "linoone": 4.651529271964541, - "linoone-galar": 4.041891854179425, - "pelipper": 6.2969240092691425, - "ninjask": 7.27806171973428, - "exploud": 1.5523197854631392, - "lairon": 2.407451903073337, - "manectric": 1.7013782814708365, - "roselia": 3.739889200630638, - "sharpedo": 4.803508550895676, - "wailmer": 5.964397561632751, - "torkoal": 1.8722403677937787, - "flygon": 2.2030083936360434, - "altaria": 1.4435699127018522, - "whiscash": 1.8984204217238791, - "crawdaunt": 1.9030435379891477, - "claydol": 3.798515558749017, - "cradily": 2.3707071505976387, - "armaldo": 1.7847074059943968, - "absol": 1.9792349732670982, - "glalie": 3.6056720930056243, - "sealeo": 2.9154104002598222, - "relicanth": 1.852044288875153, - "metang": 3.41606880125756, - "luxray": 3.724154319706545, - "vespiquen": 2.6624810524674616, - "cherrim": 6.2895374446869035, - "gastrodon": 2.0391009325387937, - "drifblim": 4.6776515114052915, - "lopunny": 3.6287021508393904, - "skuntank": 1.1432832580861603, - "bronzong": 3.6028202903199604, - "munchlax": 2.2142542961704286, - "drapion": 1.8824360036371766, - "abomasnow": 3.3710100082640473, - "froslass": 3.102014620344587, - "rotom": 3.985157025569399, - "stoutland": 2.509861426352276, - "liepard": 6.601662373864317, - "musharna": 1.6927159696840852, - "unfezant": 4.780155881003292, - "boldore": 3.3739325333953207, - "swoobat": 6.117837883825269, - "audino": 2.2901110896119556, - "gurdurr": 2.3810125014922985, - "palpitoad": 3.532330627564871, - "seismitoad": 6.599875653613672, - "scolipede": 2.9407825864464057, - "whimsicott": 2.8891752279043805, - "lilligant": 3.1719788777210156, - "basculin-red-striped": 2.5976401967963003, - "basculin-blue-striped": 3.225199706964248, - "krookodile": 2.6083471377846754, - "maractus": 2.1877145433585037, - "crustle": 2.112349424757439, - "sigilyph": 2.598535956197302, - "cofagrigus": 2.8822906515210494, - "garbodor": 1.7966723009589196, - "cinccino": 4.398013497145788, - "vanillish": 2.1059081598567255, - "emolga": 2.748209851872205, - "escavalier": 1.687135238283994, - "amoonguss": 2.383372183557456, - "jellicent": 1.7643885915268613, - "galvantula": 1.4646688274642194, - "klang": 2.524139150219268, - "klinklang": 3.320402334797243, - "beheeyem": 1.9596708554931797, - "lampent": 2.93693702498531, - "fraxure": 1.5048923969289856, - "beartic": 1.6430425974794982, - "cryogonal": 1.6699869346603595, - "accelgor": 3.0372712467923635, - "stunfisk": 1.1618831494813633, - "stunfisk-galar": 2.080720782137636, - "mienshao": 3.454411713464891, - "druddigon": 1.5946960416054095, - "golurk": 2.0970120177367564, - "bisharp": 1.9174009775752292, - "bouffalant": 1.1647996232168631, - "heatmor": 1.7258160853403024, - "durant": 3.04237233169158, - "diggersby": 2.872081892468442, - "talonflame": 2.671864455669925, - "pangoro": 1.4997922849416225, - "doublade": 3.416122142125423, - "malamar": 3.381285189296988, - "barbaracle": 1.4542081075693976, - "heliolisk": 3.453415016854021, - "tyrantrum": 1.653078429249701, - "aurorus": 2.2444999732483017, - "hawlucha": 3.3278464888438384, - "dedenne": 2.6153896300128556, - "klefki": 2.759211126264731, - "trevenant": 3.536859566132873, - "gourgeist-average": 5.866267851133257, - "charjabug": 3.6972623648425644, - "vikavolt": 1.7828469694093938, - "ribombee": 4.3623665241822955, - "lycanroc-midday": 3.1394625910183134, - "lycanroc-midnight": 2.1476921071776833, - "mudsdale": 1.5009440727352048, - "araquanid": 2.2025165467842895, - "lurantis": 2.616656353968134, - "shiinotic": 4.1477003199299345, - "salazzle": 2.9517577476100074, - "bewear": 1.5451516175253341, - "tsareena": 3.136029040245929, - "comfey": 3.987578355902385, - "oranguru": 2.8404664499643024, - "passimian": 2.346520293986193, - "palossand": 2.3354026588210277, - "pyukumuku": 40.59202494011626, - "togedemaru": 2.0243290658693978, - "mimikyu-disguised": 4.338424636619324, - "greedent": 1.9353907951444267, - "orbeetle": 2.088146927192161, - "thievul": 1.7912246713530284, - "eldegoss": 4.26508294418354, - "dubwool": 2.8683676287337234, - "drednaw": 1.2154427637195517, - "boltund": 3.9802977835684294, - "carkol": 2.2398922982296274, - "coalossal": 1.8497250874762519, - "sandaconda": 3.071389869895036, - "cramorant": 4.661410360255481, - "barraskewda": 4.061206938833001, - "toxtricity-amped": 2.860841912862763, - "centiskorch": 1.9467753500582692, - "grapploct": 1.6816042818241876, - "polteageist": 2.985003911921468, - "hatterene": 2.7945826744468367, - "grimmsnarl": 3.138619341342662, - "obstagoon": 2.493613490321822, - "perrserker": 2.9013577512308784, - "alcremie": 1.3211231603868163, - "falinks": 3.2490265351729137, - "pincurchin": 2.7137905111210765, - "frosmoth": 2.6722047930217094, - "indeedee-male": 3.333015690239228, - "morpeko": 2.6914448332651055, - "copperajah": 2.236418298132772, - "duraludon": 1.548029856014093, - "drakloak": 4.712910469480258, - "dusclops": 3.541686843642687 + "ivysaur": 2.920504880905736, + "charmeleon": 3.5254863978812594, + "wartortle": 2.55261886286425, + "butterfree": 4.39580065095393, + "raichu": 4.893421875070486, + "raichu-alola": 4.029913449571724, + "sandslash": 2.2065485778045972, + "sandslash-alola": 2.0195221954783875, + "nidoqueen": 2.475949461573552, + "nidoking": 1.6784529169748987, + "clefairy": 8.218581288767943, + "clefable": 1.8613216919741102, + "jigglypuff": 20.793500552461946, + "wigglytuff": 1.6111488872068498, + "gloom": 5.328231075068048, + "vileplume": 2.7700243579229546, + "dugtrio": 3.330497547947031, + "dugtrio-alola": 2.9644872674584652, + "persian": 4.247693108235326, + "persian-alola": 3.766578148229568, + "golduck": 2.934736744391943, + "poliwrath": 1.9146800205825283, + "kadabra": 4.6764069764713145, + "machoke": 3.668707087865683, + "tentacruel": 2.2135714259602635, + "slowbro": 2.086174767509826, + "magneton": 2.940441385988748, + "haunter": 4.680808819374691, + "kingler": 2.5694382080635907, + "exeggutor": 2.5092277906884086, + "marowak": 2.769546349273174, + "marowak-alola": 2.3458757647595543, + "hitmonlee": 2.4928179764228906, + "hitmonchan": 1.9968318178907647, + "lickitung": 1.6923422672613095, + "weezing": 1.5173758433566449, + "weezing-galar": 2.545517478639802, + "rhydon": 2.278501426049659, + "chansey": 29.148708690124828, + "tangela": 5.111232776562344, + "kangaskhan": 1.616967459304092, + "seadra": 4.253342675559585, + "seaking": 2.2212671319027883, + "starmie": 1.6182787331259787, + "mr-mime": 7.762847753019785, + "mr-mime-galar": 3.971516280878407, + "scyther": 2.493489316566809, + "jynx": 5.2826402215608965, + "electabuzz": 2.386282643240114, + "magmar": 1.5669748939617274, + "tauros": 1.794619868988688, + "ditto": 3.2746995455689616, + "vaporeon": 3.051427393845893, + "jolteon": 1.8231572750142306, + "flareon": 2.1668311440025803, + "porygon": 2.465716386477461, + "dragonair": 1.681773599305017, + "noctowl": 5.032031490582161, + "lanturn": 1.7078291879818717, + "togetic": 4.764121601533327, + "xatu": 4.2780989481474565, + "bellossom": 2.3965645662806425, + "azumarill": 1.9798962201445378, + "sudowoodo": 2.5645387859622635, + "politoed": 2.3899963012859224, + "quagsire": 4.59776243848527, + "slowking": 2.6985502229900242, + "dunsparce": 2.724708928549801, + "qwilfish": 3.3278417842698347, + "sneasel": 2.149586297730389, + "piloswine": 1.5288793815614403, + "octillery": 2.2019945566970844, + "mantine": 2.249901544097436, + "skarmory": 1.9461872873151196, + "hitmontop": 2.5620983887450155, + "miltank": 3.310218101583243, + "grovyle": 8.832145341110783, + "sceptile": 1.5015270213863745, + "combusken": 3.3443326473916954, + "blaziken": 1.5664206564052, + "marshtomp": 2.2619188163210193, + "swampert": 1.147833749149556, + "linoone": 4.6445496056069455, + "linoone-galar": 4.026217932652404, + "pelipper": 6.3034772177046445, + "ninjask": 7.280484683069706, + "exploud": 1.55302807897962, + "lairon": 2.405629813159149, + "manectric": 1.7019128294650177, + "roselia": 3.7402609144368606, + "sharpedo": 4.7945464602565195, + "wailmer": 5.961826921420345, + "torkoal": 1.8725612568905639, + "flygon": 2.202393107894958, + "altaria": 1.4422241419191417, + "whiscash": 1.8975189439914266, + "crawdaunt": 1.9004346598851134, + "claydol": 3.805912229518708, + "cradily": 2.371702702767089, + "armaldo": 1.7851027906255057, + "dusclops": 3.541686843642687, + "absol": 1.9774300591975453, + "glalie": 3.599015630894574, + "sealeo": 2.9134528817945453, + "relicanth": 1.8507292300860119, + "metang": 3.41964501958832, + "luxray": 3.727184327029711, + "vespiquen": 2.663640513212737, + "cherrim": 6.295725680507217, + "gastrodon": 2.0403083483885185, + "drifblim": 4.680301570877444, + "lopunny": 3.630738315497605, + "skuntank": 1.1400947432685498, + "bronzong": 3.607707476436464, + "munchlax": 2.2133981426144955, + "drapion": 1.8786119607887977, + "abomasnow": 3.3718814411783855, + "froslass": 3.101358712116112, + "rotom": 3.9848861375960767, + "stoutland": 2.5134740549338703, + "liepard": 6.588395686118191, + "musharna": 1.6947507074030161, + "unfezant": 4.7671064304269954, + "boldore": 3.3751121396497283, + "swoobat": 6.122263897311123, + "audino": 2.288444373209157, + "gurdurr": 2.3854917077453104, + "palpitoad": 3.5323829224810224, + "seismitoad": 6.611164780497305, + "scolipede": 2.9382381950696095, + "whimsicott": 2.887716382354447, + "lilligant": 3.1738000564401108, + "basculin-red-striped": 2.5962683462491194, + "basculin-blue-striped": 3.220964248637442, + "krookodile": 2.602714749973387, + "maractus": 2.1873078419636633, + "crustle": 2.114681464538844, + "sigilyph": 2.600376678359224, + "cofagrigus": 2.880452074439003, + "garbodor": 1.7992529172878204, + "cinccino": 4.397645600943582, + "vanillish": 2.1055799563559736, + "emolga": 2.746659952730691, + "escavalier": 1.687096652194105, + "amoonguss": 2.3841421996386924, + "jellicent": 1.7667226411619774, + "galvantula": 1.4645818017410361, + "klang": 2.5228270950632776, + "klinklang": 3.3225386488866913, + "beheeyem": 1.9617264063263273, + "lampent": 2.941286012251136, + "fraxure": 1.5052650444385993, + "beartic": 1.643052329775835, + "cryogonal": 1.6690667002742887, + "accelgor": 3.0401149419711837, + "stunfisk": 1.161257292785332, + "stunfisk-galar": 2.0789274390161676, + "mienshao": 3.460337808292069, + "druddigon": 1.593035179101502, + "golurk": 2.0990655997788874, + "bisharp": 1.912849934583583, + "bouffalant": 1.163882095001789, + "heatmor": 1.725232793354318, + "durant": 3.0427367087835444, + "diggersby": 2.86791366502095, + "talonflame": 2.6697991983904554, + "pangoro": 1.4978854128113253, + "doublade": 3.4242214251293612, + "malamar": 3.37963833919878, + "barbaracle": 1.4548545646464683, + "heliolisk": 3.4512689385123245, + "tyrantrum": 1.6547064781852632, + "aurorus": 2.241824020585393, + "hawlucha": 3.32673351635368, + "dedenne": 2.613840559049933, + "klefki": 2.7581553121252433, + "trevenant": 3.5454896687319475, + "gourgeist-average": 5.8645113379916465, + "charjabug": 3.6959531340431235, + "vikavolt": 1.7841574128142532, + "ribombee": 4.362517649749698, + "lycanroc-midday": 3.1392436028786768, + "lycanroc-midnight": 2.1461837310763805, + "mudsdale": 1.5013181598332115, + "araquanid": 2.2041933930859345, + "lurantis": 2.6203016934286705, + "shiinotic": 4.148634709712195, + "salazzle": 2.9507393002053552, + "bewear": 1.5439175704900931, + "tsareena": 3.1364733592077467, + "comfey": 3.9854911804672817, + "oranguru": 2.8370418113104865, + "passimian": 2.348701142082712, + "palossand": 2.335943020764579, + "pyukumuku": 40.57048244205272, + "togedemaru": 2.0234559058719457, + "mimikyu-disguised": 4.339178757895118, + "greedent": 1.9335696959170288, + "orbeetle": 2.090938162977327, + "thievul": 1.787417128932307, + "eldegoss": 4.268826640050314, + "dubwool": 2.869201516601331, + "drednaw": 1.214780459399564, + "boltund": 3.9731516363184607, + "carkol": 2.2379619384143474, + "coalossal": 1.8480312398885412, + "sandaconda": 3.071238231170685, + "cramorant": 4.6516022082928385, + "barraskewda": 4.0549662335310295, + "toxtricity-amped": 2.8621098800751126, + "centiskorch": 1.9471386650917006, + "grapploct": 1.6847243603202617, + "polteageist": 2.9865088991672915, + "hatterene": 2.7973620888161026, + "grimmsnarl": 3.1317447081208636, + "obstagoon": 2.4892245611947788, + "perrserker": 2.8967903979476413, + "alcremie": 1.3204611842208176, + "falinks": 3.252762079579897, + "pincurchin": 2.712823894886367, + "frosmoth": 2.6728857974883256, + "indeedee-male": 3.327186798678264, + "morpeko": 2.6881565415312547, + "copperajah": 2.237038736854842, + "duraludon": 1.5476563039244677, + "drakloak": 4.709333157688162 }, "absol": { - "ivysaur": 3.408514705766626, - "charmeleon": 4.144082702556514, - "wartortle": 2.743381399871797, - "butterfree": 4.499884574463901, - "raichu": 5.305540903053016, - "raichu-alola": 6.023688791796768, - "sandslash": 2.292810792049275, - "sandslash-alola": 3.050312130755339, - "nidoqueen": 2.9353891954289906, - "nidoking": 1.9008494037889467, - "clefairy": 8.758174229032335, - "clefable": 1.48911567882116, - "jigglypuff": 21.532407631988693, - "wigglytuff": 1.5717842331358365, - "gloom": 5.35495323590539, - "vileplume": 2.843690943708829, - "dugtrio": 3.9957718834761424, - "dugtrio-alola": 3.7622963519263894, - "persian": 4.195760965001659, - "persian-alola": 4.351157925755015, - "golduck": 3.179027097635219, - "poliwrath": 1.580605998778005, - "kadabra": 5.995371721585312, - "machoke": 3.300920765925458, - "tentacruel": 2.72042997022052, - "slowbro": 2.7439008201807544, - "magneton": 3.4565746679356715, - "haunter": 7.880049912657983, - "kingler": 2.0927586542770222, - "exeggutor": 2.7143396646967135, - "marowak": 3.3417372734073467, - "marowak-alola": 2.8980587496579764, - "hitmonlee": 2.0738974529646863, - "hitmonchan": 1.9422111942175206, - "lickitung": 1.9576136695769533, - "weezing": 1.509271124986601, - "weezing-galar": 2.1114996288690158, - "rhydon": 2.550413468507821, - "chansey": 32.9076813853137, - "tangela": 5.866076045633278, - "kangaskhan": 1.9337711746841646, - "seadra": 3.8233578020796237, - "seaking": 2.622638515867413, - "starmie": 1.9077908100057206, - "mr-mime": 9.990883346803406, - "mr-mime-galar": 5.741793984313464, - "scyther": 2.7091109334011847, - "jynx": 6.837256882121686, - "electabuzz": 2.8069333449095915, - "magmar": 1.8527686541184405, - "tauros": 1.905297083469335, - "ditto": 2.1333219141486737, - "vaporeon": 3.5891086727898474, - "jolteon": 2.2171800508050667, - "flareon": 2.7431027598071998, - "porygon": 2.9522067088912167, - "dragonair": 1.9362382260993631, - "noctowl": 6.636183426315556, - "lanturn": 2.135795593988587, - "togetic": 4.795540152422129, - "xatu": 6.07890506650658, - "bellossom": 2.0488786761225715, - "azumarill": 1.8893867985551827, - "sudowoodo": 2.2893314080364284, - "politoed": 2.7779620499428566, - "quagsire": 4.300502209678573, - "slowking": 4.037485431372885, - "dunsparce": 3.2727007411201043, - "qwilfish": 3.2824571381275236, - "sneasel": 2.388086434632081, - "piloswine": 1.4875615374028333, - "octillery": 2.3232047690729525, - "mantine": 2.877454371956703, - "skarmory": 2.3568059282355764, - "hitmontop": 2.2936175845731492, - "miltank": 3.1664406868358372, - "grovyle": 8.121433781817428, - "sceptile": 1.4916433439440118, - "combusken": 2.7103310402816065, - "blaziken": 1.3727415758227228, - "marshtomp": 2.581944470617004, - "swampert": 1.30618253353749, - "linoone": 5.156694882853058, - "linoone-galar": 4.758408303389723, - "pelipper": 5.877462234820889, - "ninjask": 6.546494139416652, - "exploud": 1.6442611339680613, - "lairon": 2.18744468018721, - "manectric": 1.909001580745878, - "roselia": 4.755325260505405, - "sharpedo": 4.754375020963359, - "wailmer": 6.843283929059133, - "torkoal": 1.6986561478070863, - "flygon": 3.1117218346300812, - "altaria": 1.906219664172987, - "whiscash": 2.1772169386814526, - "crawdaunt": 1.7607970587209967, - "claydol": 5.316671829193227, - "cradily": 2.3575078754208088, - "armaldo": 1.7010206954503047, - "dusclops": 5.07744332283889, - "glalie": 4.4615585941902705, - "sealeo": 3.275310014473342, - "relicanth": 1.7516075751340292, - "metang": 4.353179340837614, - "luxray": 3.93698710304869, - "vespiquen": 2.4751354153966765, - "cherrim": 6.059581750299417, - "gastrodon": 2.1990069617156753, - "drifblim": 7.339581996432327, - "lopunny": 3.6271892422960437, - "skuntank": 1.376557833374301, - "bronzong": 5.544890482884641, - "munchlax": 2.608650098332559, - "drapion": 2.0487206815595043, - "abomasnow": 4.121024603899052, - "froslass": 4.359611657904644, - "rotom": 6.097581070948696, - "stoutland": 2.444885531496608, - "liepard": 6.137391627077112, - "musharna": 2.6403695563986718, - "unfezant": 6.764814922425559, - "boldore": 2.8244762250532913, - "swoobat": 8.722464852734452, - "audino": 2.1917151720416115, - "gurdurr": 1.7169399752530834, - "palpitoad": 3.9606635700076347, - "seismitoad": 6.52337206437026, - "scolipede": 3.142504551747893, - "whimsicott": 3.0905011287720265, - "lilligant": 2.940723040140192, - "basculin-red-striped": 2.9887984390583906, - "basculin-blue-striped": 3.8004251525600665, - "krookodile": 3.1024233861292805, - "maractus": 2.3517855606013036, - "crustle": 1.7132049953203472, - "sigilyph": 3.5756842573804923, - "cofagrigus": 4.180588822415829, - "garbodor": 1.8751522483621668, - "cinccino": 4.705486967312008, - "vanillish": 2.216319594902087, - "emolga": 3.1594091948631564, - "escavalier": 2.5269515703783227, - "amoonguss": 2.656315722915837, - "jellicent": 2.268846564852172, - "galvantula": 1.592705122081938, - "klang": 2.9541790483553347, - "klinklang": 3.6639948820780925, - "beheeyem": 2.9946362235678, - "lampent": 3.715028376590773, - "fraxure": 1.5918090978815873, - "beartic": 1.7192899088160747, - "cryogonal": 2.0300874172007792, - "accelgor": 2.7167164018437076, - "stunfisk": 1.3627576743513239, - "stunfisk-galar": 2.5338932213405827, - "mienshao": 2.8443379771100004, - "druddigon": 1.9535061011873402, - "golurk": 2.599495844281363, - "bisharp": 2.983117671109639, - "bouffalant": 1.2977342284157312, - "heatmor": 1.997801540835602, - "durant": 4.810291463521811, - "diggersby": 3.3168916095360172, - "talonflame": 3.02879793363626, - "pangoro": 1.4970522530438535, - "doublade": 2.854146390503316, - "malamar": 3.2126220394201312, - "barbaracle": 1.4345746939817807, - "heliolisk": 4.108263707165402, - "tyrantrum": 1.664097829725249, - "aurorus": 2.5334346919119204, - "hawlucha": 3.477845782621934, - "dedenne": 2.17050794402696, - "klefki": 2.978393041196129, - "trevenant": 4.184847410023567, - "gourgeist-average": 7.068456965984856, - "charjabug": 4.337284573458591, - "vikavolt": 1.7786752232490133, - "ribombee": 3.885190003373534, - "lycanroc-midday": 3.4415522676674124, - "lycanroc-midnight": 2.3750774221374575, - "mudsdale": 1.5116476285520744, - "araquanid": 2.404557440967926, - "lurantis": 2.332251378774253, - "shiinotic": 3.802521034485962, - "salazzle": 3.3533426421713926, - "bewear": 1.5596715984492322, - "tsareena": 3.2084544906580064, - "comfey": 3.771116354689932, - "oranguru": 5.206914329625905, - "passimian": 1.8678790755281554, - "palossand": 2.770163847866609, - "pyukumuku": 45.080527254418925, - "togedemaru": 2.3975311044562013, - "mimikyu-disguised": 4.763937867085113, - "greedent": 2.247707248106976, - "orbeetle": 2.5394500854579647, - "thievul": 1.8642396778923458, - "eldegoss": 4.1789645302897185, - "dubwool": 2.882277657030003, - "drednaw": 1.2087539108567111, - "boltund": 5.147825612700746, - "carkol": 2.3417211925522867, - "coalossal": 1.914288827779043, - "sandaconda": 3.1780497399710868, - "cramorant": 6.540018750406195, - "barraskewda": 4.797908018092075, - "toxtricity-amped": 2.674530740276829, - "centiskorch": 2.224358389989611, - "grapploct": 1.3592969888747735, - "polteageist": 5.1244081221025235, - "hatterene": 2.732394347303143, - "grimmsnarl": 3.5943133704750725, - "obstagoon": 2.3279911467182854, - "perrserker": 3.858409218633893, - "alcremie": 1.155939055910744, - "falinks": 2.3767407084569268, - "pincurchin": 3.0552521187506763, - "frosmoth": 2.756384713128621, - "indeedee-male": 5.760763220269874, - "morpeko": 2.5362284537354354, - "copperajah": 2.3801189829559846, - "duraludon": 1.418935037047972, - "drakloak": 7.22798169396834, - "absol": 1.8455559126967953 + "ivysaur": 3.4133336302871693, + "charmeleon": 4.143262829395805, + "wartortle": 2.7407565182675526, + "butterfree": 4.494875962760156, + "raichu": 5.301501537606326, + "raichu-alola": 6.038653875231002, + "sandslash": 2.292243914265618, + "sandslash-alola": 3.04998360185036, + "nidoqueen": 2.9394667974513315, + "nidoking": 1.9029139218547182, + "clefairy": 8.760214425758962, + "clefable": 1.4869242605477657, + "jigglypuff": 21.46990494929839, + "wigglytuff": 1.5707208971094415, + "gloom": 5.352219453063844, + "vileplume": 2.8435655594267497, + "dugtrio": 4.000139174483923, + "dugtrio-alola": 3.7671543727901593, + "persian": 4.189958282064299, + "persian-alola": 4.3566629387388645, + "golduck": 3.176951503670411, + "poliwrath": 1.5765804830215067, + "kadabra": 6.004774298546874, + "machoke": 3.2972020511033264, + "tentacruel": 2.72044560366874, + "slowbro": 2.753779866365099, + "magneton": 3.457481186566003, + "haunter": 7.900238684957111, + "kingler": 2.088219400638646, + "exeggutor": 2.7211795022668084, + "marowak": 3.3461872309899974, + "marowak-alola": 2.9003976504018842, + "hitmonlee": 2.0684528305212107, + "hitmonchan": 1.9401751020534443, + "lickitung": 1.9574939719874864, + "weezing": 1.5101850281359521, + "weezing-galar": 2.1077820038846795, + "rhydon": 2.548666489010813, + "chansey": 32.90175616906662, + "tangela": 5.873027171016289, + "kangaskhan": 1.934311096939786, + "seadra": 3.8184124293452966, + "seaking": 2.621991327432818, + "starmie": 1.9091420926070135, + "mr-mime": 10.046085797633694, + "mr-mime-galar": 5.761854537078625, + "scyther": 2.7106506386078815, + "jynx": 6.840504133507183, + "electabuzz": 2.807243882418563, + "magmar": 1.8525048015532959, + "tauros": 1.9041734596015774, + "ditto": 2.1223735342508436, + "vaporeon": 3.5883760797763506, + "jolteon": 2.2192950397966986, + "flareon": 2.743737397680018, + "porygon": 2.9528114250194317, + "dragonair": 1.9369403742378546, + "noctowl": 6.640320541303913, + "lanturn": 2.1362197307270057, + "togetic": 4.7903785580096185, + "xatu": 6.101290637636732, + "bellossom": 2.049416058701334, + "azumarill": 1.8870546877710888, + "sudowoodo": 2.285296131801936, + "politoed": 2.7771374864788254, + "quagsire": 4.294186499905298, + "slowking": 4.045818343675924, + "dunsparce": 3.2720508895842713, + "qwilfish": 3.2799661810826533, + "sneasel": 2.389749514979357, + "piloswine": 1.4854149145817073, + "octillery": 2.31982010727694, + "mantine": 2.878957007796529, + "skarmory": 2.358498808267652, + "hitmontop": 2.289912526360777, + "miltank": 3.160924038033203, + "grovyle": 8.122753737311175, + "sceptile": 1.492351403327403, + "combusken": 2.702179814964967, + "blaziken": 1.3696767424029468, + "marshtomp": 2.5818551800551877, + "swampert": 1.3063752467361232, + "linoone": 5.152635422432242, + "linoone-galar": 4.764540115146467, + "pelipper": 5.87364769004583, + "ninjask": 6.533385022279831, + "exploud": 1.6424950241739364, + "lairon": 2.1852452492206655, + "manectric": 1.9115626011079776, + "roselia": 4.766627261663442, + "sharpedo": 4.751655314814409, + "wailmer": 6.841117401969571, + "torkoal": 1.6976266028556826, + "flygon": 3.1115494085038184, + "altaria": 1.9066513643458833, + "whiscash": 2.1795965042236904, + "crawdaunt": 1.759477637630919, + "claydol": 5.333715280381192, + "cradily": 2.357646446122859, + "armaldo": 1.698062501062914, + "dusclops": 5.081543066250146, + "absol": 1.8455559126967953, + "glalie": 4.466054223666805, + "sealeo": 3.2723615526246097, + "relicanth": 1.7483299722474168, + "metang": 4.364991502353506, + "luxray": 3.9369089829265085, + "vespiquen": 2.472412481817763, + "cherrim": 6.0662485486111795, + "gastrodon": 2.196843681912352, + "drifblim": 7.3621291247127925, + "lopunny": 3.6231285952571213, + "skuntank": 1.378840357786531, + "bronzong": 5.570609026682728, + "munchlax": 2.607860810850206, + "drapion": 2.0482164027635794, + "abomasnow": 4.123906283166367, + "froslass": 4.3664959084514186, + "rotom": 6.109744998226042, + "stoutland": 2.443288669207738, + "liepard": 6.130675721685753, + "musharna": 2.651862933183594, + "unfezant": 6.77262321365192, + "boldore": 2.819409753604527, + "swoobat": 8.754873816381483, + "audino": 2.190132981165575, + "gurdurr": 1.7122562351504031, + "palpitoad": 3.9607778030928023, + "seismitoad": 6.517989335929285, + "scolipede": 3.1404108495457796, + "whimsicott": 3.0895593222264064, + "lilligant": 2.9406274910291, + "basculin-red-striped": 2.9899869995356374, + "basculin-blue-striped": 3.8007521894533465, + "krookodile": 3.106726224687412, + "maractus": 2.3566625349522425, + "crustle": 1.7087789030006082, + "sigilyph": 3.5863632117025084, + "cofagrigus": 4.197154344591293, + "garbodor": 1.8732874626809082, + "cinccino": 4.704554225706831, + "vanillish": 2.216647620321004, + "emolga": 3.163694100301558, + "escavalier": 2.5275773738221203, + "amoonguss": 2.6596724839364665, + "jellicent": 2.26764977528474, + "galvantula": 1.5922111006952124, + "klang": 2.9559970259028363, + "klinklang": 3.6649387804838693, + "beheeyem": 3.0035861551710106, + "lampent": 3.7133099016800526, + "fraxure": 1.5905937184948598, + "beartic": 1.7181816330924369, + "cryogonal": 2.0309758641924245, + "accelgor": 2.710893648155957, + "stunfisk": 1.363775004321373, + "stunfisk-galar": 2.537481175618413, + "mienshao": 2.839453244574888, + "druddigon": 1.9560948014522703, + "golurk": 2.6003543677860392, + "bisharp": 2.9887836927096365, + "bouffalant": 1.2974534284859858, + "heatmor": 1.9964997957251698, + "durant": 4.8077288371029425, + "diggersby": 3.319357342575548, + "talonflame": 3.0290447655695787, + "pangoro": 1.4945994659399506, + "doublade": 2.8551575320004536, + "malamar": 3.2201044299655552, + "barbaracle": 1.4315313678805768, + "heliolisk": 4.1114214321495535, + "tyrantrum": 1.6616659773014173, + "aurorus": 2.530056034479722, + "hawlucha": 3.4756956699898454, + "dedenne": 2.167580131183012, + "klefki": 2.973840158091, + "trevenant": 4.186377291608584, + "gourgeist-average": 7.091017413576035, + "charjabug": 4.341839567268467, + "vikavolt": 1.7774032888480562, + "ribombee": 3.8729973568087885, + "lycanroc-midday": 3.4394201516752902, + "lycanroc-midnight": 2.3725949423087638, + "mudsdale": 1.5109972989264557, + "araquanid": 2.4015879646596736, + "lurantis": 2.332150886313518, + "shiinotic": 3.7950210775608073, + "salazzle": 3.3518334220910018, + "bewear": 1.5583074515250743, + "tsareena": 3.2129700753883386, + "comfey": 3.764235618040069, + "oranguru": 5.238580882232459, + "passimian": 1.8646431663308964, + "palossand": 2.7754238755703673, + "pyukumuku": 45.0557541663744, + "togedemaru": 2.3980383489418884, + "mimikyu-disguised": 4.768087954786006, + "greedent": 2.250091017596251, + "orbeetle": 2.5475897159676384, + "thievul": 1.8656111933597672, + "eldegoss": 4.1834446913401555, + "dubwool": 2.8803414442354476, + "drednaw": 1.2058827654955695, + "boltund": 5.154774654013658, + "carkol": 2.337884648546534, + "coalossal": 1.9113374600736082, + "sandaconda": 3.1756899501851583, + "cramorant": 6.547603203919818, + "barraskewda": 4.797772527158593, + "toxtricity-amped": 2.6742879755467923, + "centiskorch": 2.22422083158399, + "grapploct": 1.3551290060161245, + "polteageist": 5.140011281294929, + "hatterene": 2.735137722942084, + "grimmsnarl": 3.5932407979572214, + "obstagoon": 2.327298158875519, + "perrserker": 3.863835828776367, + "alcremie": 1.1545600542810228, + "falinks": 2.369474790204535, + "pincurchin": 3.055809799199045, + "frosmoth": 2.754588919059339, + "indeedee-male": 5.781649489553747, + "morpeko": 2.536120992204289, + "copperajah": 2.3789904263115407, + "duraludon": 1.419711773016598, + "drakloak": 7.2423897058331725 }, "glalie": { - "ivysaur": 4.0147351572091114, - "charmeleon": 3.1559309655270247, - "wartortle": 2.3989771027866897, - "butterfree": 5.861440070844381, - "raichu": 4.8057514787294915, - "raichu-alola": 4.077803589579879, - "sandslash": 2.214969571079476, - "sandslash-alola": 1.5752829157280828, - "nidoqueen": 3.3370199143829122, - "nidoking": 2.184462475590076, - "clefairy": 9.446140945367947, - "clefable": 2.166271762618204, - "jigglypuff": 29.201630161409717, - "wigglytuff": 2.1387292253190306, - "gloom": 6.9430948665561525, - "vileplume": 3.614400182442565, - "dugtrio": 4.297682232210105, - "dugtrio-alola": 3.1318145904041597, - "persian": 4.080012573374157, - "persian-alola": 4.076042922187572, - "golduck": 2.7208354193201263, - "poliwrath": 1.4519619677566893, - "kadabra": 4.761144445322143, - "machoke": 3.2841181701792763, - "tentacruel": 2.2223758370863456, - "slowbro": 1.7514825794129263, - "magneton": 2.460982639034807, - "haunter": 5.17416478697201, - "kingler": 1.926366811132925, - "exeggutor": 2.234858517373623, - "marowak": 3.33261069206518, - "marowak-alola": 1.927795029497476, - "hitmonlee": 2.1576615138368878, - "hitmonchan": 2.013994012980868, - "lickitung": 1.8817099020571801, - "weezing": 1.2893773362837349, - "weezing-galar": 2.4080432671365783, - "rhydon": 2.120297367440547, - "chansey": 28.152432889780282, - "tangela": 4.903155235771211, - "kangaskhan": 1.7456058029993309, - "seadra": 3.4558081191789034, - "seaking": 2.2099475060814404, - "starmie": 1.5680533030200796, - "mr-mime": 7.799129013174399, - "mr-mime-galar": 4.449292731869096, - "scyther": 3.2164520641077257, - "jynx": 5.653122651136191, - "electabuzz": 2.5562051201458322, - "magmar": 1.366634731578257, - "tauros": 1.7672109490388446, - "ditto": 5.533391850396145, - "vaporeon": 2.953551313565173, - "jolteon": 1.9397443160975094, - "flareon": 1.9480468473719856, - "porygon": 2.7289007634728573, - "dragonair": 2.3684629891618205, - "noctowl": 7.8392051331490205, - "lanturn": 1.7446206531006219, - "togetic": 6.270033904955801, - "xatu": 4.597759091878345, - "bellossom": 2.822461920414854, - "azumarill": 1.8682652328221243, - "sudowoodo": 2.2315431451987253, - "politoed": 2.33236644994636, - "quagsire": 4.043015051786684, - "slowking": 2.8635445107557915, - "dunsparce": 3.1504034604785387, - "qwilfish": 2.809028537424067, - "sneasel": 2.375020021146517, - "piloswine": 1.560676985529322, - "octillery": 1.997572721734525, - "mantine": 2.5292419323956405, - "skarmory": 1.6549652037082725, - "hitmontop": 2.4985728210877562, - "miltank": 3.2283874856926777, - "grovyle": 9.639925434831135, - "sceptile": 1.7815303704888017, - "combusken": 2.382718501968066, - "blaziken": 1.157327406195643, - "marshtomp": 2.4026000227099296, - "swampert": 1.2438937773346068, - "linoone": 4.900956668210082, - "linoone-galar": 4.437186371411851, - "pelipper": 5.491769520923552, - "ninjask": 9.04645202309286, - "exploud": 1.5869591980449944, - "lairon": 1.6410046710446353, - "manectric": 1.6200649389450952, - "roselia": 5.298242801703532, - "sharpedo": 4.123943956008918, - "wailmer": 5.647001208884767, - "torkoal": 1.314803676044973, - "flygon": 3.9839940801146065, - "altaria": 2.6750669371850577, - "whiscash": 1.951761614369855, - "crawdaunt": 1.6043497440843513, - "claydol": 3.9096959314505186, - "cradily": 2.6188955987840434, - "armaldo": 1.7948170495732114, - "dusclops": 3.71177933325091, - "absol": 1.8890299796668049, - "sealeo": 2.975628492739167, - "relicanth": 1.511776337093612, - "metang": 2.8720642322754895, - "luxray": 3.6068776919560643, - "vespiquen": 3.1408419583062566, - "cherrim": 7.080280158344497, - "gastrodon": 2.027285671506531, - "drifblim": 5.42096463342276, - "lopunny": 3.3743402623587158, - "skuntank": 1.2887324778930587, - "bronzong": 3.293124434590811, - "munchlax": 2.0991866195374698, - "drapion": 2.0735270831754713, - "abomasnow": 3.431541786452381, - "froslass": 3.397029234049157, - "rotom": 4.134726738693647, - "stoutland": 2.274130947712171, - "liepard": 6.669200016046492, - "musharna": 1.6930791551329507, - "unfezant": 7.125290765365434, - "boldore": 2.7235035050656893, - "swoobat": 6.577780531165837, - "audino": 2.05422983143766, - "gurdurr": 1.7869913512545899, - "palpitoad": 3.6172304233044468, - "seismitoad": 6.022356010382545, - "scolipede": 2.8484730950413013, - "whimsicott": 3.6946076924060973, - "lilligant": 3.6483183278377207, - "basculin-red-striped": 2.4923259165341545, - "basculin-blue-striped": 3.177492892326465, - "krookodile": 3.3089262412475478, - "maractus": 2.6717569356577853, - "crustle": 1.8281911592328892, - "sigilyph": 2.6838574211622963, - "cofagrigus": 2.691995956073479, - "garbodor": 1.7004460703758921, - "cinccino": 4.470282562992196, - "vanillish": 2.4089275711631952, - "emolga": 3.7484580999164234, - "escavalier": 1.6043619631333372, - "amoonguss": 3.134186887336662, - "jellicent": 1.9390179667342728, - "galvantula": 1.5055471165912446, - "klang": 2.177278242454883, - "klinklang": 2.5556687707241976, - "beheeyem": 1.9625366048436248, - "lampent": 2.373824055634543, - "fraxure": 1.7782829785739325, - "beartic": 1.856206366729646, - "cryogonal": 2.2045641669305445, - "accelgor": 3.0402952819070825, - "stunfisk": 1.5955763261465297, - "stunfisk-galar": 2.1275844180628, - "mienshao": 2.9181002446083424, - "druddigon": 2.1326698887322952, - "golurk": 2.1399474922763773, - "bisharp": 1.914694599865832, - "bouffalant": 1.1358282119372214, - "heatmor": 1.5048552865371023, - "durant": 2.293888960444572, - "diggersby": 3.7244794363823535, - "talonflame": 2.5271970475764345, - "pangoro": 1.5048145689577117, - "doublade": 1.8993675970200454, - "malamar": 2.639879791965613, - "barbaracle": 1.326300162756287, - "heliolisk": 3.665045799312219, - "tyrantrum": 1.5395127453903696, - "aurorus": 3.0436569279852024, - "hawlucha": 3.863575545492172, - "dedenne": 2.8236783704051724, - "klefki": 2.3871379086880453, - "trevenant": 3.5393387491337647, - "gourgeist-average": 5.3941569278427774, - "charjabug": 3.669560691754757, - "vikavolt": 1.7007799237181682, - "ribombee": 4.9993034568456265, - "lycanroc-midday": 3.1016754638763575, - "lycanroc-midnight": 2.225126438727793, - "mudsdale": 1.7053989084747343, - "araquanid": 2.1453033902711365, - "lurantis": 2.8676107588392306, - "shiinotic": 5.525745310836484, - "salazzle": 2.6418039277397223, - "bewear": 1.6192150813767379, - "tsareena": 3.7001654675658227, - "comfey": 4.85166638758373, - "oranguru": 3.0452410686850166, - "passimian": 1.897307951957674, - "palossand": 2.278173558759107, - "pyukumuku": 36.73532523322652, - "togedemaru": 1.9098502397662354, - "mimikyu-disguised": 4.467152209621018, - "greedent": 1.8734938076897114, - "orbeetle": 1.984518810845548, - "thievul": 1.7201117899942369, - "eldegoss": 4.902890262600062, - "dubwool": 2.6338755064675716, - "drednaw": 1.0075189790381756, - "boltund": 4.458042459558948, - "carkol": 1.814460454416869, - "coalossal": 1.557681119949402, - "sandaconda": 3.3521317050165336, - "cramorant": 5.5367032201110895, - "barraskewda": 4.0076343625111175, - "toxtricity-amped": 2.5162454211302636, - "centiskorch": 1.7741086827321975, - "grapploct": 1.4598552270088268, - "polteageist": 3.2475977335129786, - "hatterene": 2.659661131126799, - "grimmsnarl": 3.9600465646856913, - "obstagoon": 2.3513282770717403, - "perrserker": 2.5082392094510606, - "alcremie": 1.5954418294168078, - "falinks": 2.5116657364769006, - "pincurchin": 2.764406855849483, - "frosmoth": 2.8470594436421384, - "indeedee-male": 3.5832059980665747, - "morpeko": 2.6372352083430366, - "copperajah": 1.792737808879339, - "duraludon": 1.2579648136980706, - "drakloak": 5.601815333097845, - "glalie": 4.304254816462452 + "ivysaur": 4.016074289137952, + "charmeleon": 3.145557735947162, + "wartortle": 2.3952432826218524, + "butterfree": 5.862243065812113, + "raichu": 4.79845089589722, + "raichu-alola": 4.078075596838733, + "sandslash": 2.2122455521303945, + "sandslash-alola": 1.5703961822645742, + "nidoqueen": 3.337499506847422, + "nidoking": 2.184533428725458, + "clefairy": 9.426916817857206, + "clefable": 2.162663914107405, + "jigglypuff": 29.174606901360388, + "wigglytuff": 2.136186730569884, + "gloom": 6.943389865583464, + "vileplume": 3.615147835612241, + "dugtrio": 4.297045361084845, + "dugtrio-alola": 3.126715003863632, + "persian": 4.074651337397131, + "persian-alola": 4.070435759395252, + "golduck": 2.716385241570673, + "poliwrath": 1.4472349978372419, + "kadabra": 4.762401493738134, + "machoke": 3.2737294524604925, + "tentacruel": 2.2202447552920574, + "slowbro": 1.748533838727509, + "magneton": 2.45266677799251, + "haunter": 5.17821459186124, + "kingler": 1.920467721996571, + "exeggutor": 2.235196409694877, + "marowak": 3.329294831870878, + "marowak-alola": 1.9237024576875317, + "hitmonlee": 2.1507065261060596, + "hitmonchan": 2.0101587784311876, + "lickitung": 1.8803189934409739, + "weezing": 1.2866964502286398, + "weezing-galar": 2.402629383703066, + "rhydon": 2.1143484986635954, + "chansey": 28.13561120620134, + "tangela": 4.897521136885183, + "kangaskhan": 1.7436071335500771, + "seadra": 3.447716440482537, + "seaking": 2.2071607112265355, + "starmie": 1.5664428363889114, + "mr-mime": 7.79602893450207, + "mr-mime-galar": 4.4493602422371215, + "scyther": 3.2161639117910643, + "jynx": 5.657476183986024, + "electabuzz": 2.554239300436959, + "magmar": 1.3625054919278903, + "tauros": 1.7636786257985908, + "ditto": 5.498570166136193, + "vaporeon": 2.9501510696285216, + "jolteon": 1.9386960996764855, + "flareon": 1.9437126074801394, + "porygon": 2.727163715118172, + "dragonair": 2.36944552951974, + "noctowl": 7.843066237032032, + "lanturn": 1.7429418806325403, + "togetic": 6.262907748441837, + "xatu": 4.600743956768032, + "bellossom": 2.822788457778276, + "azumarill": 1.8659017178744746, + "sudowoodo": 2.224741683873841, + "politoed": 2.3293938492746484, + "quagsire": 4.034402684952429, + "slowking": 2.8639155817188615, + "dunsparce": 3.148951859657088, + "qwilfish": 2.8024953536500514, + "sneasel": 2.372113499478985, + "piloswine": 1.5572443694429619, + "octillery": 1.9927683195969388, + "mantine": 2.529217081731055, + "skarmory": 1.6517370503067645, + "hitmontop": 2.4943536591888034, + "miltank": 3.223325189339588, + "grovyle": 9.635075003515949, + "sceptile": 1.7820233064742061, + "combusken": 2.3719706534503953, + "blaziken": 1.1521367594733052, + "marshtomp": 2.4015197364961622, + "swampert": 1.2435419197581692, + "linoone": 4.894851004463653, + "linoone-galar": 4.430187918092705, + "pelipper": 5.483395697576986, + "ninjask": 9.045778230042423, + "exploud": 1.5846355909712908, + "lairon": 1.6331591727914736, + "manectric": 1.6172697970559404, + "roselia": 5.300939083010946, + "sharpedo": 4.114328389357068, + "wailmer": 5.635621061759558, + "torkoal": 1.3097805891291685, + "flygon": 3.985665426245588, + "altaria": 2.6765805525168513, + "whiscash": 1.9498862063001021, + "crawdaunt": 1.600224919256563, + "claydol": 3.908969092564586, + "cradily": 2.6166849798741447, + "armaldo": 1.791778459217631, + "dusclops": 3.7132249612112336, + "absol": 1.8857593214508095, + "glalie": 4.304254816462452, + "sealeo": 2.9719753281658594, + "relicanth": 1.5065470436873203, + "metang": 2.867123185408416, + "luxray": 3.602799888191975, + "vespiquen": 3.1389373599234673, + "cherrim": 7.0798204548552555, + "gastrodon": 2.024455003677044, + "drifblim": 5.426735727125905, + "lopunny": 3.368218032051772, + "skuntank": 1.2867871079494893, + "bronzong": 3.2895328954348546, + "munchlax": 2.095313625975167, + "drapion": 2.068984267524109, + "abomasnow": 3.4295203919906623, + "froslass": 3.4001132835046626, + "rotom": 4.137581726718577, + "stoutland": 2.2706554435946673, + "liepard": 6.660594887003638, + "musharna": 1.6929376562732144, + "unfezant": 7.125650136052769, + "boldore": 2.7143480413464527, + "swoobat": 6.581950418120469, + "audino": 2.049942859825032, + "gurdurr": 1.7806551082339626, + "palpitoad": 3.6144973264628835, + "seismitoad": 6.013647351998467, + "scolipede": 2.8439040042426766, + "whimsicott": 3.693893159214797, + "lilligant": 3.648374583921258, + "basculin-red-striped": 2.488990254039572, + "basculin-blue-striped": 3.1724069235691355, + "krookodile": 3.3079741101255067, + "maractus": 2.6725302848654913, + "crustle": 1.8232036991097416, + "sigilyph": 2.6834237638522858, + "cofagrigus": 2.6920159123039746, + "garbodor": 1.6974520360349785, + "cinccino": 4.4674986117662066, + "vanillish": 2.4086508181346664, + "emolga": 3.7500229008928203, + "escavalier": 1.6024531592930256, + "amoonguss": 3.134491425426797, + "jellicent": 1.9410221761384223, + "galvantula": 1.504112970539555, + "klang": 2.170391046124574, + "klinklang": 2.54641235115369, + "beheeyem": 1.961285861408121, + "lampent": 2.3696214563454903, + "fraxure": 1.7775671713635477, + "beartic": 1.853946018628379, + "cryogonal": 2.2058696608837827, + "accelgor": 3.037668089333137, + "stunfisk": 1.5960479445943774, + "stunfisk-galar": 2.1259277386249886, + "mienshao": 2.9091327138102008, + "druddigon": 2.1316778542257455, + "golurk": 2.139887738327789, + "bisharp": 1.9100639505740455, + "bouffalant": 1.133390991067661, + "heatmor": 1.5000774384481872, + "durant": 2.286823068553385, + "diggersby": 3.722490366500991, + "talonflame": 2.520885657370817, + "pangoro": 1.4999479672511655, + "doublade": 1.893635746164196, + "malamar": 2.6364670285334233, + "barbaracle": 1.323661807294818, + "heliolisk": 3.6630719844731927, + "tyrantrum": 1.5361655850476328, + "aurorus": 3.0389000364642356, + "hawlucha": 3.857989440898712, + "dedenne": 2.820780447397812, + "klefki": 2.3798205741909584, + "trevenant": 3.540053237612235, + "gourgeist-average": 5.390599707251719, + "charjabug": 3.6660391206274134, + "vikavolt": 1.699236709198511, + "ribombee": 4.994063381898229, + "lycanroc-midday": 3.0924949758689797, + "lycanroc-midnight": 2.2192551251690005, + "mudsdale": 1.703148641221387, + "araquanid": 2.142955059530834, + "lurantis": 2.867135703935059, + "shiinotic": 5.5248521161941095, + "salazzle": 2.632741308666603, + "bewear": 1.6158506249960087, + "tsareena": 3.7006396939466715, + "comfey": 4.848350914930787, + "oranguru": 3.0452284588879506, + "passimian": 1.890995369869405, + "palossand": 2.279522148308484, + "pyukumuku": 36.635309513925904, + "togedemaru": 1.904509692354496, + "mimikyu-disguised": 4.466058864852233, + "greedent": 1.8692207405685302, + "orbeetle": 1.983845961995231, + "thievul": 1.717244545360253, + "eldegoss": 4.903833080220605, + "dubwool": 2.628108063597134, + "drednaw": 1.004213151072032, + "boltund": 4.454302436476202, + "carkol": 1.8069934533005578, + "coalossal": 1.551749515591181, + "sandaconda": 3.3503762993314794, + "cramorant": 5.5343202371008555, + "barraskewda": 4.000602993933368, + "toxtricity-amped": 2.5130906023684476, + "centiskorch": 1.7697863741985547, + "grapploct": 1.4548033661412836, + "polteageist": 3.250820545495513, + "hatterene": 2.657993224292806, + "grimmsnarl": 3.9525442841610072, + "obstagoon": 2.3468320350297005, + "perrserker": 2.5009351351069076, + "alcremie": 1.5933284611714438, + "falinks": 2.5024820233684677, + "pincurchin": 2.7617820936166693, + "frosmoth": 2.8426836132957196, + "indeedee-male": 3.5812680329037647, + "morpeko": 2.6343571611051066, + "copperajah": 1.7853473538398505, + "duraludon": 1.254820295909337, + "drakloak": 5.607925158733906 }, "sealeo": { - "ivysaur": 3.464793422962644, - "charmeleon": 4.837700681709812, - "wartortle": 2.3934020991210287, - "butterfree": 4.960247549021467, - "raichu": 4.219025893042659, - "raichu-alola": 3.1042185012691155, - "sandslash": 2.970501284694711, - "sandslash-alola": 1.8517467887254069, - "nidoqueen": 3.5230955472020726, - "nidoking": 2.377607147736413, - "clefairy": 8.567136187456772, - "clefable": 1.889991595029067, - "jigglypuff": 25.7717256886899, - "wigglytuff": 1.9360184472461326, - "gloom": 7.080234408454478, - "vileplume": 3.3940343884269435, - "dugtrio": 4.074748855100423, - "dugtrio-alola": 4.009478352824829, - "persian": 4.108139367418872, - "persian-alola": 4.104276489945086, - "golduck": 2.696591949530325, - "poliwrath": 1.5355882743366933, - "kadabra": 3.7761128985858274, - "machoke": 3.490991788438583, - "tentacruel": 2.0496974123774407, - "slowbro": 1.54976892336896, - "magneton": 2.8097399382323784, - "haunter": 4.022854591005911, - "kingler": 2.143006927270789, - "exeggutor": 2.299439023837472, - "marowak": 4.107683987366738, - "marowak-alola": 2.7275633324853814, - "hitmonlee": 2.1054481095258253, - "hitmonchan": 2.0076732634356675, - "lickitung": 2.0140372344865076, - "weezing": 1.7265665093609832, - "weezing-galar": 2.812095189714081, - "rhydon": 4.059762973622603, - "chansey": 25.32185886024503, - "tangela": 6.561303578183612, - "kangaskhan": 1.7936041439053345, - "seadra": 3.8084766943512296, - "seaking": 2.0578034813157, - "starmie": 1.2339625345096563, - "mr-mime": 6.510071189672704, - "mr-mime-galar": 3.85090144734704, - "scyther": 3.3652453469890946, - "jynx": 3.8114491546146567, - "electabuzz": 2.0825722415646775, - "magmar": 2.13506225210826, - "tauros": 1.956586868651126, - "ditto": 4.037771380180301, - "vaporeon": 2.6821042415618903, - "jolteon": 1.7389627169369577, - "flareon": 3.085840022846885, - "porygon": 2.7004032121812838, - "dragonair": 2.436527228399921, - "noctowl": 6.466734041461127, - "lanturn": 1.527940137668787, - "togetic": 6.825778554335192, - "xatu": 4.824176371294886, - "bellossom": 2.7225111629063075, - "azumarill": 1.8449499707537838, - "sudowoodo": 2.9490556267463575, - "politoed": 2.1619437767846104, - "quagsire": 4.64995026056841, - "slowking": 2.1913624600776114, - "dunsparce": 3.358705152795217, - "qwilfish": 3.0167129032531728, - "sneasel": 2.1818253134761028, - "piloswine": 2.009739861527679, - "octillery": 2.0152031684065075, - "mantine": 2.289659398781548, - "skarmory": 2.1946857682583696, - "hitmontop": 2.5200758624996253, - "miltank": 3.6639802085964672, - "grovyle": 8.052839406426848, - "sceptile": 1.5682798213772462, - "combusken": 3.7203357023013113, - "blaziken": 1.9044390406000198, - "marshtomp": 2.6378232975746694, - "swampert": 1.3539680033356034, - "linoone": 5.038838496242564, - "linoone-galar": 4.550553476495095, - "pelipper": 6.167670268977759, - "ninjask": 9.170583795472817, - "exploud": 1.6286065442109494, - "lairon": 2.914866538873545, - "manectric": 1.6990889585023163, - "roselia": 4.145907742303537, - "sharpedo": 4.293350018338874, - "wailmer": 5.687422055167674, - "torkoal": 2.7629055223281256, - "flygon": 4.430347400485331, - "altaria": 2.9746487196906424, - "whiscash": 2.182332529585901, - "crawdaunt": 1.8287690923473487, - "claydol": 3.888642456340637, - "cradily": 2.4727854298327916, - "armaldo": 2.1662681090906775, - "dusclops": 3.2980555970149776, - "absol": 2.0665952300084927, - "glalie": 4.165274208344867, - "relicanth": 1.8185797331875904, - "metang": 2.6575023939061087, - "luxray": 3.3739081133387376, - "vespiquen": 3.2807421667337966, - "cherrim": 6.421170571018684, - "gastrodon": 2.052980519466134, - "drifblim": 4.883748961845435, - "lopunny": 3.3474487298529, - "skuntank": 1.4886125237718908, - "bronzong": 2.9215046776878264, - "munchlax": 2.08077463618865, - "drapion": 2.485927733467493, - "abomasnow": 3.0119569124721766, - "froslass": 2.9850994461953677, - "rotom": 3.3485440701839813, - "stoutland": 2.334740102930053, - "liepard": 6.861741664202775, - "musharna": 1.4143408760354343, - "unfezant": 8.60692992222239, - "boldore": 3.998290293591265, - "swoobat": 6.906032050681189, - "audino": 2.22796944025548, - "gurdurr": 2.0762295949139524, - "palpitoad": 3.8339606273617113, - "seismitoad": 6.1931119572039, - "scolipede": 3.190921557733202, - "whimsicott": 3.8098950145489363, - "lilligant": 3.453830254330856, - "basculin-red-striped": 2.5600832042975927, - "basculin-blue-striped": 3.248391166040806, - "krookodile": 3.6319856776235273, - "maractus": 2.479329013095199, - "crustle": 2.4134437449006265, - "sigilyph": 2.9298121139755064, - "cofagrigus": 2.657040327839276, - "garbodor": 1.7541210610050766, - "cinccino": 4.719474976008922, - "vanillish": 2.258576559667649, - "emolga": 3.4456142568692476, - "escavalier": 1.7463123316114944, - "amoonguss": 2.9186194938204917, - "jellicent": 1.323388795917444, - "galvantula": 1.3663176691442591, - "klang": 2.355084077449535, - "klinklang": 3.2120156443254246, - "beheeyem": 1.6582666746374626, - "lampent": 3.4187762680291076, - "fraxure": 2.1291710573779694, - "beartic": 1.8105751330059792, - "cryogonal": 1.9098830272015075, - "accelgor": 2.917087972882319, - "stunfisk": 1.561581148913169, - "stunfisk-galar": 2.863676334576448, - "mienshao": 2.9886256436896597, - "druddigon": 2.3433060244513033, - "golurk": 2.2441028917865697, - "bisharp": 2.344195094951259, - "bouffalant": 1.2049890088578927, - "heatmor": 2.348861903498733, - "durant": 2.932354533788452, - "diggersby": 3.891345420204489, - "talonflame": 3.6110935452227944, - "pangoro": 1.6160067297425793, - "doublade": 2.399427929436757, - "malamar": 2.6955908805440405, - "barbaracle": 1.512535263597007, - "heliolisk": 3.03272959949242, - "tyrantrum": 2.076287961957324, - "aurorus": 2.586941086943428, - "hawlucha": 4.320790684792604, - "dedenne": 2.635769596894976, - "klefki": 2.862115646227015, - "trevenant": 3.296638964856356, - "gourgeist-average": 7.606257254867583, - "charjabug": 3.728042161703774, - "vikavolt": 1.7725740713877078, - "ribombee": 4.454109909080121, - "lycanroc-midday": 3.447048094993419, - "lycanroc-midnight": 2.475043903488309, - "mudsdale": 1.8882877596682057, - "araquanid": 1.9321460657510658, - "lurantis": 2.7995391660997377, - "shiinotic": 5.320787268754022, - "salazzle": 3.9095388358159617, - "bewear": 1.7759074222303852, - "tsareena": 3.5137792801965384, - "comfey": 3.931822873773924, - "oranguru": 2.5514048879255875, - "passimian": 2.1417499439639673, - "palossand": 2.7835455494976618, - "pyukumuku": 35.088123900987966, - "togedemaru": 1.9078863547407559, - "mimikyu-disguised": 3.8057684978078044, - "greedent": 2.128610964201374, - "orbeetle": 1.7538474207237642, - "thievul": 1.8249243944460494, - "eldegoss": 4.107511879974837, - "dubwool": 2.6540947151502063, - "drednaw": 1.133091780054458, - "boltund": 4.232336212658211, - "carkol": 3.7597530083520354, - "coalossal": 3.3127952242569956, - "sandaconda": 4.352967583446102, - "cramorant": 5.22489947835434, - "barraskewda": 3.9813559249789536, - "toxtricity-amped": 2.414092519271395, - "centiskorch": 2.4606617267033686, - "grapploct": 1.5941265055051732, - "polteageist": 2.4044180172766514, - "hatterene": 2.4214656073281704, - "grimmsnarl": 3.521353971310991, - "obstagoon": 2.43739000263273, - "perrserker": 3.082659417904061, - "alcremie": 1.3727261038613539, - "falinks": 3.031633212587357, - "pincurchin": 2.8059994403567563, - "frosmoth": 2.4717960520187403, - "indeedee-male": 3.1330965606182453, - "morpeko": 2.4769405361694092, - "copperajah": 2.111576107256408, - "duraludon": 1.6695653427178128, - "drakloak": 5.938119511839885, - "sealeo": 2.934743349853984 + "ivysaur": 3.4584244654403475, + "charmeleon": 4.8474474827477785, + "wartortle": 2.3923782823440263, + "butterfree": 4.956081553779337, + "raichu": 4.207044599326842, + "raichu-alola": 3.097264032129864, + "sandslash": 2.9757787519616015, + "sandslash-alola": 1.8490562547464506, + "nidoqueen": 3.5303983178394693, + "nidoking": 2.3836915014446456, + "clefairy": 8.564287918875795, + "clefable": 1.8883435846064116, + "jigglypuff": 25.770791848694177, + "wigglytuff": 1.9356072205840518, + "gloom": 7.081440162342513, + "vileplume": 3.3894171522993144, + "dugtrio": 4.079297010469556, + "dugtrio-alola": 4.014998400634241, + "persian": 4.105425176377487, + "persian-alola": 4.103160749455227, + "golduck": 2.6949621619154684, + "poliwrath": 1.5297269016666042, + "kadabra": 3.772059784498654, + "machoke": 3.4848703358447692, + "tentacruel": 2.048400446190578, + "slowbro": 1.5478751920125544, + "magneton": 2.8041507038684017, + "haunter": 4.019559008272996, + "kingler": 2.1398330705931095, + "exeggutor": 2.297018269359539, + "marowak": 4.117125144576082, + "marowak-alola": 2.7332425632395405, + "hitmonlee": 2.10094039800489, + "hitmonchan": 2.0066469838066454, + "lickitung": 2.0137279519961435, + "weezing": 1.7278732231840581, + "weezing-galar": 2.8153205115615068, + "rhydon": 4.067967372738642, + "chansey": 25.267561049325124, + "tangela": 6.552656162591996, + "kangaskhan": 1.7929691925127842, + "seadra": 3.805674255863325, + "seaking": 2.0555616833998878, + "starmie": 1.2313332388839848, + "mr-mime": 6.505926158374914, + "mr-mime-galar": 3.8499770821121224, + "scyther": 3.367570773120997, + "jynx": 3.8004891646491847, + "electabuzz": 2.076846466582839, + "magmar": 2.138673957798675, + "tauros": 1.955213334926624, + "ditto": 4.012995090508632, + "vaporeon": 2.675256753377358, + "jolteon": 1.7354169464745834, + "flareon": 3.089602683355235, + "porygon": 2.6994143455194215, + "dragonair": 2.436674960288679, + "noctowl": 6.468033696234571, + "lanturn": 1.5254090988481122, + "togetic": 6.839659724469258, + "xatu": 4.828134466041542, + "bellossom": 2.7185248565975835, + "azumarill": 1.84522557651936, + "sudowoodo": 2.9475029599161635, + "politoed": 2.159527767708683, + "quagsire": 4.650182894688797, + "slowking": 2.1902039095775914, + "dunsparce": 3.3615486728094526, + "qwilfish": 3.0148007840737527, + "sneasel": 2.1808875049044016, + "piloswine": 2.0105101600237396, + "octillery": 2.013004158998997, + "mantine": 2.286022630923357, + "skarmory": 2.197332619724758, + "hitmontop": 2.519174330270177, + "miltank": 3.6636087434592186, + "grovyle": 8.031323757589053, + "sceptile": 1.5648922098338902, + "combusken": 3.7190375673482414, + "blaziken": 1.9058278323365574, + "marshtomp": 2.6423342123042115, + "swampert": 1.3560518644431694, + "linoone": 5.036598896505172, + "linoone-galar": 4.548500263930066, + "pelipper": 6.162787618563104, + "ninjask": 9.175697875160164, + "exploud": 1.6275438938044342, + "lairon": 2.9146816080179745, + "manectric": 1.6985158219841878, + "roselia": 4.138201928943596, + "sharpedo": 4.287527385471975, + "wailmer": 5.683422957614023, + "torkoal": 2.76995108705947, + "flygon": 4.438955154182571, + "altaria": 2.9804793878721156, + "whiscash": 2.183759543509353, + "crawdaunt": 1.826780010861412, + "claydol": 3.8915057999859615, + "cradily": 2.469054923179372, + "armaldo": 2.1672017894963793, + "dusclops": 3.299003254034397, + "absol": 2.0681542179794477, + "glalie": 4.167048142125136, + "sealeo": 2.934743349853984, + "relicanth": 1.8158215105285287, + "metang": 2.6540423736338137, + "luxray": 3.366929543739018, + "vespiquen": 3.2812605246977107, + "cherrim": 6.408723439164191, + "gastrodon": 2.0523871340853166, + "drifblim": 4.880519360671894, + "lopunny": 3.3431916004156124, + "skuntank": 1.4897990169170043, + "bronzong": 2.920541683795931, + "munchlax": 2.0773740126482574, + "drapion": 2.487646948880896, + "abomasnow": 3.0066852326428677, + "froslass": 2.9894346500153954, + "rotom": 3.345748010161265, + "stoutland": 2.332998134393745, + "liepard": 6.861288974068656, + "musharna": 1.4125499475795333, + "unfezant": 8.620364862036398, + "boldore": 3.997047413920942, + "swoobat": 6.911675387649245, + "audino": 2.228608162968794, + "gurdurr": 2.072947060538211, + "palpitoad": 3.836503071540184, + "seismitoad": 6.189299384840164, + "scolipede": 3.1911972095359964, + "whimsicott": 3.8074672842806363, + "lilligant": 3.4481412605660156, + "basculin-red-striped": 2.5602139567590516, + "basculin-blue-striped": 3.2473475674783843, + "krookodile": 3.639472934774375, + "maractus": 2.472225692522061, + "crustle": 2.412932086839992, + "sigilyph": 2.9321564358739955, + "cofagrigus": 2.6584543892996213, + "garbodor": 1.7524424783097208, + "cinccino": 4.722791321261681, + "vanillish": 2.261334203657671, + "emolga": 3.4434728668054633, + "escavalier": 1.7466713968539445, + "amoonguss": 2.9151438885026932, + "jellicent": 1.3206660230299776, + "galvantula": 1.3632475560532953, + "klang": 2.349743641072835, + "klinklang": 3.210492890935843, + "beheeyem": 1.6562901141197797, + "lampent": 3.428590209019456, + "fraxure": 2.130195131380281, + "beartic": 1.8109463209947814, + "cryogonal": 1.9105632258684782, + "accelgor": 2.9151787402737956, + "stunfisk": 1.56302367131343, + "stunfisk-galar": 2.8688468774311167, + "mienshao": 2.982948219843889, + "druddigon": 2.344948503987219, + "golurk": 2.24679269409782, + "bisharp": 2.3429749004949874, + "bouffalant": 1.2041230394547493, + "heatmor": 2.353091817899154, + "durant": 2.929537040464438, + "diggersby": 3.8962613426292756, + "talonflame": 3.6185860568176555, + "pangoro": 1.613980207553384, + "doublade": 2.3987683713175665, + "malamar": 2.6926750386186775, + "barbaracle": 1.51222999260908, + "heliolisk": 3.0176829660561357, + "tyrantrum": 2.0758227743284348, + "aurorus": 2.583566507859418, + "hawlucha": 4.320661832242027, + "dedenne": 2.631987648712032, + "klefki": 2.8621192972145213, + "trevenant": 3.289848704811152, + "gourgeist-average": 7.619890477732703, + "charjabug": 3.7214160695996146, + "vikavolt": 1.771837866055773, + "ribombee": 4.453018528470186, + "lycanroc-midday": 3.442612325986161, + "lycanroc-midnight": 2.4726651867610663, + "mudsdale": 1.8897401243502712, + "araquanid": 1.9265487520522884, + "lurantis": 2.796063411483064, + "shiinotic": 5.320791668374199, + "salazzle": 3.9168779174818438, + "bewear": 1.7750531616859857, + "tsareena": 3.5085640515153176, + "comfey": 3.926416083030215, + "oranguru": 2.5496990534782196, + "passimian": 2.1384452524933977, + "palossand": 2.790683393238828, + "pyukumuku": 35.00028073402177, + "togedemaru": 1.9044192040635073, + "mimikyu-disguised": 3.806059721258909, + "greedent": 2.128049759517589, + "orbeetle": 1.7527387823773275, + "thievul": 1.8253983865209613, + "eldegoss": 4.098201035975252, + "dubwool": 2.6486814558812943, + "drednaw": 1.1316044459839072, + "boltund": 4.225829218570742, + "carkol": 3.7680239084742513, + "coalossal": 3.3195115879457617, + "sandaconda": 4.363198158836557, + "cramorant": 5.223390546666133, + "barraskewda": 3.977029565564708, + "toxtricity-amped": 2.408711782770532, + "centiskorch": 2.463284324821792, + "grapploct": 1.5911212643241068, + "polteageist": 2.4012415951569652, + "hatterene": 2.421276257184732, + "grimmsnarl": 3.5184702063123385, + "obstagoon": 2.4344806473000853, + "perrserker": 3.080285369247629, + "alcremie": 1.3722704267792178, + "falinks": 3.0287935011398375, + "pincurchin": 2.802822869855003, + "frosmoth": 2.467686840046147, + "indeedee-male": 3.13251798449895, + "morpeko": 2.472990935207957, + "copperajah": 2.108746313196901, + "duraludon": 1.6682728690814312, + "drakloak": 5.942283841966593 }, "relicanth": { - "ivysaur": 2.7720615422425547, - "charmeleon": 6.720147061288523, - "wartortle": 2.9816670283206026, - "butterfree": 10.284160219472987, - "raichu": 5.232013393323524, - "raichu-alola": 3.913725321367057, - "sandslash": 2.649032958709348, - "sandslash-alola": 2.1642494082444528, - "nidoqueen": 3.5981849875901157, - "nidoking": 2.5997334734209794, - "clefairy": 9.444932641454926, - "clefable": 2.3770089522512663, - "jigglypuff": 31.30434494606548, - "wigglytuff": 2.306839454379751, - "gloom": 6.560013492395217, - "vileplume": 2.547897388892796, - "dugtrio": 5.417034825874522, - "dugtrio-alola": 5.0880744063505405, - "persian": 5.341056157868021, - "persian-alola": 4.9032466058004776, - "golduck": 3.6087231292947846, - "poliwrath": 1.7760032155727274, - "kadabra": 4.988606923682726, - "machoke": 4.029347698227024, - "tentacruel": 3.003366385991085, - "slowbro": 1.940161509335185, - "magneton": 2.8374854640857015, - "haunter": 4.396871272511658, - "kingler": 2.4397412963537994, - "exeggutor": 1.7930454131154234, - "marowak": 3.986135250191521, - "marowak-alola": 3.3053486023098957, - "hitmonlee": 2.7656153166021373, - "hitmonchan": 2.4351827843557663, - "lickitung": 2.155793600922261, - "weezing": 1.756651426663107, - "weezing-galar": 2.796105490171514, - "rhydon": 3.3253037391359337, - "chansey": 38.203426039145874, - "tangela": 4.042256783171645, - "kangaskhan": 2.196242744674726, - "seadra": 4.172590489562169, - "seaking": 3.000197682172793, - "starmie": 1.6453676019303236, - "mr-mime": 8.29078851200508, - "mr-mime-galar": 6.033488932921308, - "scyther": 6.728762471194282, - "jynx": 8.179672165667883, - "electabuzz": 2.6128485350405475, - "magmar": 3.2224874637141054, - "tauros": 2.1965520603461925, - "ditto": 2.9398604637152053, - "vaporeon": 3.9677098082017794, - "jolteon": 2.2758440122828087, - "flareon": 4.852041141507163, - "porygon": 3.1703844841240416, - "dragonair": 2.2137053754039098, - "noctowl": 11.331476452023214, - "lanturn": 2.137800124953131, - "togetic": 9.501921040650622, - "xatu": 5.972055344267512, - "bellossom": 2.141973147824176, - "azumarill": 2.7813981781873975, - "sudowoodo": 3.075216808503496, - "politoed": 2.9420122990483724, - "quagsire": 4.31324783593144, - "slowking": 3.0195576932360804, - "dunsparce": 3.8130510418135826, - "qwilfish": 3.8807166997246103, - "sneasel": 3.614102129060849, - "piloswine": 2.1194993631995693, - "octillery": 2.6691521471321824, - "mantine": 4.721354791537811, - "skarmory": 2.1780096793720296, - "hitmontop": 2.8513489632772053, - "miltank": 4.124410535239193, - "grovyle": 6.889982461866083, - "sceptile": 1.3291848157994233, - "combusken": 4.485333645938294, - "blaziken": 2.3749523616879795, - "marshtomp": 2.655850863534363, - "swampert": 1.2791498663543912, - "linoone": 6.322031703469294, - "linoone-galar": 5.24825952522488, - "pelipper": 9.469080125398685, - "ninjask": 18.155228075987246, - "exploud": 1.9176571426694182, - "lairon": 2.842085616567558, - "manectric": 2.0374152802121337, - "roselia": 3.788618418899783, - "sharpedo": 5.992278190024519, - "wailmer": 7.633303735395634, - "torkoal": 2.8403849264377454, - "flygon": 2.511438067314824, - "altaria": 2.6816045754963644, - "whiscash": 2.1775610223833355, - "crawdaunt": 2.1560362892935587, - "claydol": 4.654297398188458, - "cradily": 2.1032867685299155, - "armaldo": 2.7630450543543232, - "dusclops": 3.932062885170427, - "absol": 2.392166970498959, - "glalie": 6.677944887159823, - "sealeo": 4.983290675685234, - "metang": 3.0267602013100143, - "luxray": 4.025128130010458, - "vespiquen": 6.541913499685624, - "cherrim": 4.947195215426266, - "gastrodon": 2.4757839615933372, - "drifblim": 6.440860241880844, - "lopunny": 4.487618361000541, - "skuntank": 1.7646315090171847, - "bronzong": 3.4983415688198782, - "munchlax": 3.095317475718433, - "drapion": 2.712685418013484, - "abomasnow": 4.523513369882249, - "froslass": 4.769012294426969, - "rotom": 3.871237897697664, - "stoutland": 3.0323392661834805, - "liepard": 8.341467028754533, - "musharna": 1.5270668780162842, - "unfezant": 9.907521186442889, - "boldore": 3.6624219461667002, - "swoobat": 8.561813551185685, - "audino": 2.770672703939315, - "gurdurr": 2.069760319734541, - "palpitoad": 3.7735590244562682, - "seismitoad": 7.159448202295502, - "scolipede": 4.896788334983906, - "whimsicott": 2.923344516476144, - "lilligant": 2.518683149333409, - "basculin-red-striped": 3.3071707600797566, - "basculin-blue-striped": 4.1042531953902515, - "krookodile": 3.6144062697231703, - "maractus": 1.7536432293861344, - "crustle": 2.853694515889618, - "sigilyph": 3.585248365948365, - "cofagrigus": 2.713740728481944, - "garbodor": 2.168289691134115, - "cinccino": 5.720063595873977, - "vanillish": 3.6143309714099194, - "emolga": 4.26990915227905, - "escavalier": 2.113120497340394, - "amoonguss": 2.4354820005121196, - "jellicent": 2.0051050998807174, - "galvantula": 2.1560073893293272, - "klang": 2.6120738204909304, - "klinklang": 3.609364074129574, - "beheeyem": 2.085901390412882, - "lampent": 4.805745610685842, - "fraxure": 1.785571777569312, - "beartic": 2.7082580475446374, - "cryogonal": 3.128775873206472, - "accelgor": 5.125969472961749, - "stunfisk": 1.64445775272932, - "stunfisk-galar": 2.959262239616714, - "mienshao": 3.4642824465652042, - "druddigon": 2.1574121173863867, - "golurk": 2.528517033583637, - "bisharp": 2.5711163981826055, - "bouffalant": 1.5363822863650227, - "heatmor": 2.951728245930031, - "durant": 3.021738502266101, - "diggersby": 4.411309340593968, - "talonflame": 7.5942729328196865, - "pangoro": 1.8234479162668211, - "doublade": 2.139492772035839, - "malamar": 2.9697652913265618, - "barbaracle": 1.6770775251115508, - "heliolisk": 4.1036162165742525, - "tyrantrum": 1.6429223795879393, - "aurorus": 3.5031710961382645, - "hawlucha": 3.9399819334516635, - "dedenne": 3.1595267809824783, - "klefki": 3.2578556494519653, - "trevenant": 2.9887732748828846, - "gourgeist-average": 5.7394852248824355, - "charjabug": 5.703350753448406, - "vikavolt": 2.7091908181290063, - "ribombee": 7.359423462096621, - "lycanroc-midday": 4.742770826846259, - "lycanroc-midnight": 3.262051857053391, - "mudsdale": 2.0523263673945267, - "araquanid": 4.393590646450467, - "lurantis": 2.2322465493273747, - "shiinotic": 5.1027922582145075, - "salazzle": 5.256825175601317, - "bewear": 1.97484222198427, - "tsareena": 3.1022731092061693, - "comfey": 4.132775106936988, - "oranguru": 3.152137370114863, - "passimian": 2.33544347858813, - "palossand": 2.4162997960606676, - "pyukumuku": 50.096053010298505, - "togedemaru": 2.3195769320967887, - "mimikyu-disguised": 5.27267783283269, - "greedent": 2.501044108214392, - "orbeetle": 2.7275581536321214, - "thievul": 2.3146418719043607, - "eldegoss": 3.2956220357477726, - "dubwool": 3.1502321336304986, - "drednaw": 1.4480535548461506, - "boltund": 4.958795746564283, - "carkol": 4.654112700823283, - "coalossal": 3.559487743606064, - "sandaconda": 3.640283159638628, - "cramorant": 10.226029112027312, - "barraskewda": 5.355682224771687, - "toxtricity-amped": 2.955518010484962, - "centiskorch": 5.51150172594318, - "grapploct": 1.624665902948995, - "polteageist": 2.8234733197178277, - "hatterene": 2.889136818650103, - "grimmsnarl": 4.3494940129590995, - "obstagoon": 2.7762580330524926, - "perrserker": 3.1270130264005367, - "alcremie": 1.6524720678894198, - "falinks": 3.0654103148923895, - "pincurchin": 2.995953278724249, - "frosmoth": 6.519084514493053, - "indeedee-male": 3.935222955548765, - "morpeko": 2.930390368488889, - "copperajah": 2.478284341277334, - "duraludon": 1.270168102470607, - "drakloak": 5.3237437561411465, - "relicanth": 2.0083069979511476 + "ivysaur": 2.7612817943263623, + "charmeleon": 6.756511053848325, + "wartortle": 2.9834739498708203, + "butterfree": 10.292743078863396, + "raichu": 5.22842605816204, + "raichu-alola": 3.9153138724827956, + "sandslash": 2.653354290031837, + "sandslash-alola": 2.167025469343841, + "nidoqueen": 3.600505000750599, + "nidoking": 2.6063057968524026, + "clefairy": 9.43444508181885, + "clefable": 2.379887078640719, + "jigglypuff": 31.34253952982894, + "wigglytuff": 2.3096200727891762, + "gloom": 6.569003602156357, + "vileplume": 2.5382426051687177, + "dugtrio": 5.426981881666073, + "dugtrio-alola": 5.09812026719771, + "persian": 5.3586754014151365, + "persian-alola": 4.914125352355233, + "golduck": 3.615262244703361, + "poliwrath": 1.774752622007711, + "kadabra": 5.00200907352556, + "machoke": 4.0340347597580255, + "tentacruel": 3.010101009967026, + "slowbro": 1.9422383465530588, + "magneton": 2.8325422046414754, + "haunter": 4.392464740869949, + "kingler": 2.4401718352881825, + "exeggutor": 1.7883729128337722, + "marowak": 3.9930244212920103, + "marowak-alola": 3.3237302980282317, + "hitmonlee": 2.770953182103958, + "hitmonchan": 2.4405633527169313, + "lickitung": 2.15799720075246, + "weezing": 1.7604538687660016, + "weezing-galar": 2.8000101048892043, + "rhydon": 3.3302254006245056, + "chansey": 38.36189733108863, + "tangela": 4.029094006325887, + "kangaskhan": 2.2021521220854257, + "seadra": 4.172061128115301, + "seaking": 3.0077137797955125, + "starmie": 1.6475364123351408, + "mr-mime": 8.30046883990272, + "mr-mime-galar": 6.0491910969092935, + "scyther": 6.763345695740092, + "jynx": 8.197164059882464, + "electabuzz": 2.6122855830923495, + "magmar": 3.2424694170128254, + "tauros": 2.2002221491948557, + "ditto": 2.927750304447682, + "vaporeon": 3.969738087014675, + "jolteon": 2.2772139584902478, + "flareon": 4.879362182783822, + "porygon": 3.1753020686972135, + "dragonair": 2.2177838068401425, + "noctowl": 11.388753061456413, + "lanturn": 2.1385330746709137, + "togetic": 9.543888338748964, + "xatu": 5.989385948489295, + "bellossom": 2.1330540365058868, + "azumarill": 2.7891406428766716, + "sudowoodo": 3.080373432999413, + "politoed": 2.944775050465063, + "quagsire": 4.309319808751139, + "slowking": 3.025738160581255, + "dunsparce": 3.823027230425028, + "qwilfish": 3.8894858539863306, + "sneasel": 3.6273877967950705, + "piloswine": 2.1254821056960407, + "octillery": 2.6722715677867654, + "mantine": 4.734691402335238, + "skarmory": 2.1835502943717646, + "hitmontop": 2.854915919139252, + "miltank": 4.135783262991337, + "grovyle": 6.861908808371413, + "sceptile": 1.322778360769631, + "combusken": 4.494799816322834, + "blaziken": 2.3843428636613244, + "marshtomp": 2.6596963892269216, + "swampert": 1.2788367140114585, + "linoone": 6.3416297145288585, + "linoone-galar": 5.257655461491481, + "pelipper": 9.50311809895204, + "ninjask": 18.227346975786766, + "exploud": 1.9209653021574113, + "lairon": 2.8456423908628588, + "manectric": 2.0413095853676504, + "roselia": 3.777341416225309, + "sharpedo": 6.004914365059735, + "wailmer": 7.646922655534536, + "torkoal": 2.854729671573973, + "flygon": 2.5150641203364694, + "altaria": 2.6896906728263925, + "whiscash": 2.1806114153716605, + "crawdaunt": 2.158732756056703, + "claydol": 4.661905899821755, + "cradily": 2.0988474390825083, + "armaldo": 2.773667264052923, + "dusclops": 3.9422528814263087, + "absol": 2.400276713021592, + "glalie": 6.704461815347046, + "sealeo": 4.996868526948525, + "relicanth": 2.0083069979511476, + "metang": 3.02983046221465, + "luxray": 4.026275029541839, + "vespiquen": 6.571676895276251, + "cherrim": 4.926213053637391, + "gastrodon": 2.4819913068821267, + "drifblim": 6.447567704658704, + "lopunny": 4.501431982465329, + "skuntank": 1.7709747615893061, + "bronzong": 3.505681402998033, + "munchlax": 3.1082477635340626, + "drapion": 2.7204056166873762, + "abomasnow": 4.52719779322616, + "froslass": 4.787324620207601, + "rotom": 3.8737132929434077, + "stoutland": 3.0430070185631055, + "liepard": 8.365152892633802, + "musharna": 1.5255420015743606, + "unfezant": 9.953240514647227, + "boldore": 3.6666364208664834, + "swoobat": 8.586736270172679, + "audino": 2.7783166192805275, + "gurdurr": 2.0689287456842536, + "palpitoad": 3.773497967318742, + "seismitoad": 7.173218253894419, + "scolipede": 4.9140952296721245, + "whimsicott": 2.915213002831922, + "lilligant": 2.50749218863465, + "basculin-red-striped": 3.3147706279799514, + "basculin-blue-striped": 4.110267232578559, + "krookodile": 3.6175872208638715, + "maractus": 1.7429216290554548, + "crustle": 2.8634344508676053, + "sigilyph": 3.59475320896008, + "cofagrigus": 2.7168138268200144, + "garbodor": 2.1748447242644917, + "cinccino": 5.740623596054318, + "vanillish": 3.627883982743053, + "emolga": 4.275498441189372, + "escavalier": 2.117791693691135, + "amoonguss": 2.4301412373311777, + "jellicent": 2.0076695712486554, + "galvantula": 2.1561716004348384, + "klang": 2.6095898507250777, + "klinklang": 3.616325403558238, + "beheeyem": 2.089235812744079, + "lampent": 4.837163915067139, + "fraxure": 1.7903409483921617, + "beartic": 2.715848101828689, + "cryogonal": 3.1353080996286904, + "accelgor": 5.13969407093934, + "stunfisk": 1.643114873599585, + "stunfisk-galar": 2.9600920407860993, + "mienshao": 3.4663183406494813, + "druddigon": 2.1639105126351694, + "golurk": 2.532301352784148, + "bisharp": 2.5751608479979, + "bouffalant": 1.5409461009372167, + "heatmor": 2.9627362227946645, + "durant": 3.024780039021719, + "diggersby": 4.419769142614459, + "talonflame": 7.640182196026141, + "pangoro": 1.8253667789138228, + "doublade": 2.1407392627895505, + "malamar": 2.9710270552855125, + "barbaracle": 1.681159905316043, + "heliolisk": 4.094563526750129, + "tyrantrum": 1.6460838980944508, + "aurorus": 3.5109963650437646, + "hawlucha": 3.948306712555329, + "dedenne": 3.158182323933407, + "klefki": 3.2614072893573103, + "trevenant": 2.98530881661787, + "gourgeist-average": 5.7518649047640125, + "charjabug": 5.713127877153335, + "vikavolt": 2.714694977084256, + "ribombee": 7.372834728513592, + "lycanroc-midday": 4.75939828629752, + "lycanroc-midnight": 3.2716956159311215, + "mudsdale": 2.055291457769923, + "araquanid": 4.407991579455404, + "lurantis": 2.2264198843396725, + "shiinotic": 5.104575479832367, + "salazzle": 5.287936473468336, + "bewear": 1.9793004562864875, + "tsareena": 3.0990747303088346, + "comfey": 4.121407364592067, + "oranguru": 3.1575915043975655, + "passimian": 2.3379226502917247, + "palossand": 2.416712249055911, + "pyukumuku": 50.13957149669622, + "togedemaru": 2.321935767637755, + "mimikyu-disguised": 5.2906923660660325, + "greedent": 2.5080949768401997, + "orbeetle": 2.7325383868371924, + "thievul": 2.321690833755313, + "eldegoss": 3.280700528238275, + "dubwool": 3.152406873707167, + "drednaw": 1.4508993757452118, + "boltund": 4.961199312554535, + "carkol": 4.679699843590351, + "coalossal": 3.5741469848095697, + "sandaconda": 3.6415845393685577, + "cramorant": 10.266731591962394, + "barraskewda": 5.366484587996553, + "toxtricity-amped": 2.9545710496808084, + "centiskorch": 5.539998015671756, + "grapploct": 1.6235248915865532, + "polteageist": 2.8223709488301836, + "hatterene": 2.8930199767317717, + "grimmsnarl": 4.353624445488188, + "obstagoon": 2.7795434318748358, + "perrserker": 3.127897248464013, + "alcremie": 1.652498666026872, + "falinks": 3.0670154058671866, + "pincurchin": 2.9939362920273793, + "frosmoth": 6.54467065491963, + "indeedee-male": 3.9447066871033964, + "morpeko": 2.9323536231930625, + "copperajah": 2.480050925001522, + "duraludon": 1.2688739381488199, + "drakloak": 5.338929916055252 }, "metang": { - "ivysaur": 4.4421582699145885, - "charmeleon": 3.3244901440866097, - "wartortle": 2.8843454745906607, - "butterfree": 5.3358757283083476, - "raichu": 4.983022244340887, - "raichu-alola": 3.1945218664661876, - "sandslash": 1.9145394626006853, - "sandslash-alola": 1.983296406876753, - "nidoqueen": 3.0498325705676352, - "nidoking": 2.0823313950640796, - "clefairy": 11.63699988126719, - "clefable": 3.063458271214797, - "jigglypuff": 38.02578908821126, - "wigglytuff": 2.895675874096397, - "gloom": 7.869343674745956, - "vileplume": 3.708673540873747, - "dugtrio": 3.6550548388112087, - "dugtrio-alola": 2.6970237286800547, - "persian": 4.598453851858564, - "persian-alola": 3.430841812952984, - "golduck": 3.321408711127618, - "poliwrath": 2.338718660324821, - "kadabra": 4.65760630704306, - "machoke": 4.513387674472593, - "tentacruel": 3.3156961162464578, - "slowbro": 1.8439614404960283, - "magneton": 2.5439247435876604, - "haunter": 5.54812737810959, - "kingler": 2.2644019589920767, - "exeggutor": 1.9370620303966022, - "marowak": 2.6605018319414073, - "marowak-alola": 1.690073220918964, - "hitmonlee": 3.1879373537693434, - "hitmonchan": 2.7097384993398412, - "lickitung": 1.9122280262371039, - "weezing": 1.5908100517215553, - "weezing-galar": 2.991247718073129, - "rhydon": 2.3236638908238465, - "chansey": 31.83001202639231, - "tangela": 4.643517490032212, - "kangaskhan": 1.7885795846861163, - "seadra": 4.084773269714399, - "seaking": 2.7172848130723564, - "starmie": 1.6603252031293498, - "mr-mime": 10.996275583771187, - "mr-mime-galar": 5.252119441806734, - "scyther": 2.866834185132422, - "jynx": 6.68429023299389, - "electabuzz": 2.513936776941148, - "magmar": 1.4398138635396158, - "tauros": 1.8197559632348477, - "ditto": 2.970328816269342, - "vaporeon": 3.693073753121009, - "jolteon": 1.8944125976408417, - "flareon": 1.9516336518436121, - "porygon": 2.7466818509492703, - "dragonair": 1.9867359696883826, - "noctowl": 7.307891642654006, - "lanturn": 1.8413606809774028, - "togetic": 6.596730162937506, - "xatu": 4.451054837444132, - "bellossom": 2.496517280019655, - "azumarill": 2.535797320519036, - "sudowoodo": 2.8362844715252793, - "politoed": 2.6940051276519092, - "quagsire": 4.18014131713388, - "slowking": 2.9201292999622552, - "dunsparce": 3.101790863340849, - "qwilfish": 4.155289744677698, - "sneasel": 2.6348615134293487, - "piloswine": 1.9729450791817102, - "octillery": 2.5784144519797154, - "mantine": 4.267135609478088, - "skarmory": 1.9660734240667046, - "hitmontop": 3.264876648592576, - "miltank": 3.629153704083235, - "grovyle": 8.450561349909847, - "sceptile": 1.5148565580877928, - "combusken": 3.7433270711421, - "blaziken": 1.7859175378843661, - "marshtomp": 2.3086149256889748, - "swampert": 1.1594905030270337, - "linoone": 4.998556619144837, - "linoone-galar": 3.751058482822263, - "pelipper": 8.691823266592772, - "ninjask": 7.803492552621621, - "exploud": 1.7054245395974514, - "lairon": 2.3141608343764752, - "manectric": 1.6575104131004217, - "roselia": 5.7434307608495345, - "sharpedo": 5.130324642456971, - "wailmer": 7.1553987244157815, - "torkoal": 1.3347431037854878, - "flygon": 2.3472866846290743, - "altaria": 1.5067116214256366, - "whiscash": 1.9999082025618242, - "crawdaunt": 1.9059910755112697, - "claydol": 3.6337204205478577, - "cradily": 3.1392921990430156, - "armaldo": 2.194259728942268, - "dusclops": 2.8978472685819217, - "absol": 1.866770496710272, - "glalie": 5.078186260417828, - "sealeo": 3.4256868427930156, - "relicanth": 1.9224949087023577, - "luxray": 3.693849275674018, - "vespiquen": 2.954673023384574, - "cherrim": 6.138079353430728, - "gastrodon": 2.1758195345227107, - "drifblim": 4.894194000632508, - "lopunny": 3.8734712154068607, - "skuntank": 1.2399514285538278, - "bronzong": 3.054921031732185, - "munchlax": 2.489066431452823, - "drapion": 2.1424418605383515, - "abomasnow": 4.25588333530184, - "froslass": 3.5775465171264647, - "rotom": 3.1011163682907554, - "stoutland": 2.5756205725457155, - "liepard": 6.555129732350523, - "musharna": 1.7028783476671565, - "unfezant": 6.8199501281555115, - "boldore": 3.3979947079968102, - "swoobat": 6.38494253449111, - "audino": 2.251281514791959, - "gurdurr": 2.354751722671545, - "palpitoad": 3.3928875164031838, - "seismitoad": 7.024631610226256, - "scolipede": 3.5398885419953356, - "whimsicott": 4.119755577594562, - "lilligant": 3.0683012970644308, - "basculin-red-striped": 3.0616695714339865, - "basculin-blue-striped": 3.586481007371728, - "krookodile": 2.3427818086384034, - "maractus": 2.212504609379099, - "crustle": 2.395583991457316, - "sigilyph": 2.69175161408669, - "cofagrigus": 2.229690592347657, - "garbodor": 2.472435706415714, - "cinccino": 4.873225448862151, - "vanillish": 2.9627096049860127, - "emolga": 2.8596158568746683, - "escavalier": 1.5037713606601377, - "amoonguss": 3.581564777561889, - "jellicent": 1.957257693015261, - "galvantula": 1.4621802287770989, - "klang": 2.436517879668862, - "klinklang": 3.0625999074881785, - "beheeyem": 1.8431128154721064, - "lampent": 1.9272083805852571, - "fraxure": 1.5759898741376768, - "beartic": 2.2532509835682895, - "cryogonal": 2.739444967639195, - "accelgor": 3.1023460639994385, - "stunfisk": 1.1610776578579296, - "stunfisk-galar": 1.6504164627422149, - "mienshao": 4.257413286946151, - "druddigon": 1.7306691286867708, - "golurk": 1.6480221738398675, - "bisharp": 2.0706691583692978, - "bouffalant": 1.2745590114316232, - "heatmor": 1.6039368418437818, - "durant": 2.4622515851301614, - "diggersby": 2.992512601793187, - "talonflame": 2.9775058563523937, - "pangoro": 1.617958753145706, - "doublade": 1.8996773990735472, - "malamar": 2.6233673852311927, - "barbaracle": 1.5852461415261259, - "heliolisk": 3.592682898384804, - "tyrantrum": 1.8402938191784441, - "aurorus": 4.345887630293621, - "hawlucha": 4.064363952836092, - "dedenne": 3.095576441105668, - "klefki": 3.2125509002711157, - "trevenant": 3.125294041334516, - "gourgeist-average": 4.031284771225808, - "charjabug": 3.530685777211509, - "vikavolt": 1.6648044399656916, - "ribombee": 6.125745652003736, - "lycanroc-midday": 4.4538146220459245, - "lycanroc-midnight": 2.885079895881252, - "mudsdale": 1.4014033727140875, - "araquanid": 2.7704439756658803, - "lurantis": 2.460751784396398, - "shiinotic": 6.1796762067749995, - "salazzle": 3.6117749504251275, - "bewear": 2.1094901431257775, - "tsareena": 3.276721534447623, - "comfey": 6.3610155529153785, - "oranguru": 3.103019193206836, - "passimian": 2.718394989467866, - "palossand": 1.6009754849409719, - "pyukumuku": 49.73918248007861, - "togedemaru": 1.9299188833143197, - "mimikyu-disguised": 5.27165522656479, - "greedent": 2.2374928311854365, - "orbeetle": 1.8808864059612045, - "thievul": 1.5423749099832835, - "eldegoss": 4.218251911214471, - "dubwool": 3.0209910175290347, - "drednaw": 1.3799183514691875, - "boltund": 4.1004383492762075, - "carkol": 2.170606616132517, - "coalossal": 1.7258053810096516, - "sandaconda": 2.6883250975967767, - "cramorant": 8.310760988018917, - "barraskewda": 4.669920899185455, - "toxtricity-amped": 3.3993790358308615, - "centiskorch": 1.8735979560873008, - "grapploct": 1.9546366411996194, - "polteageist": 2.9588192235284825, - "hatterene": 3.599620365649294, - "grimmsnarl": 4.439354713286302, - "obstagoon": 2.3189172096283297, - "perrserker": 2.563706107048006, - "alcremie": 2.1052619182942287, - "falinks": 3.502986349716764, - "pincurchin": 2.719224208510039, - "frosmoth": 3.4673813637833515, - "indeedee-male": 3.097613403036127, - "morpeko": 2.190196326859465, - "copperajah": 2.1767596483137237, - "duraludon": 1.2502516227410463, - "drakloak": 4.060416916257372, - "metang": 2.678402960815758 + "ivysaur": 4.45689548246981, + "charmeleon": 3.3166431165125267, + "wartortle": 2.8856897885994983, + "butterfree": 5.346024277698629, + "raichu": 4.976186728884423, + "raichu-alola": 3.193319359874828, + "sandslash": 1.9119548055714601, + "sandslash-alola": 1.9838394002955677, + "nidoqueen": 3.0464403580911554, + "nidoking": 2.0814749660343024, + "clefairy": 11.64310020822922, + "clefable": 3.0730865069795197, + "jigglypuff": 38.1341853865851, + "wigglytuff": 2.9045311882529665, + "gloom": 7.896995879192019, + "vileplume": 3.7143977513571027, + "dugtrio": 3.6497782035288946, + "dugtrio-alola": 2.6898014043369822, + "persian": 4.606582170096794, + "persian-alola": 3.4203670543257902, + "golduck": 3.3236645499591555, + "poliwrath": 2.343026745240023, + "kadabra": 4.66771044366613, + "machoke": 4.5177159367449455, + "tentacruel": 3.324700847365228, + "slowbro": 1.8440417903653576, + "magneton": 2.53998631190893, + "haunter": 5.553371997940538, + "kingler": 2.262238046560611, + "exeggutor": 1.9364196310442443, + "marowak": 2.654619725468674, + "marowak-alola": 1.6868426657062907, + "hitmonlee": 3.1928992997540226, + "hitmonchan": 2.713624969455492, + "lickitung": 1.9131937447324172, + "weezing": 1.5914243700852688, + "weezing-galar": 2.9962558827919583, + "rhydon": 2.320940063227775, + "chansey": 31.91654433226023, + "tangela": 4.645197456133108, + "kangaskhan": 1.7885591537063992, + "seadra": 4.084064381807035, + "seaking": 2.720215888402476, + "starmie": 1.6631233442824525, + "mr-mime": 11.040161790845913, + "mr-mime-galar": 5.266071429212589, + "scyther": 2.869152374308581, + "jynx": 6.701613232095566, + "electabuzz": 2.5125053924157554, + "magmar": 1.4373497832278008, + "tauros": 1.8182698730685045, + "ditto": 2.9528803004671222, + "vaporeon": 3.697519656671305, + "jolteon": 1.8898192428831755, + "flareon": 1.947484390670955, + "porygon": 2.747095420862948, + "dragonair": 1.9890338783967125, + "noctowl": 7.331507898343226, + "lanturn": 1.8372611878965484, + "togetic": 6.60384255153131, + "xatu": 4.46132939946154, + "bellossom": 2.4996245444611844, + "azumarill": 2.543938625224081, + "sudowoodo": 2.8376135470053523, + "politoed": 2.6933902340645535, + "quagsire": 4.173514717157055, + "slowking": 2.9243503729929454, + "dunsparce": 3.1013635695112316, + "qwilfish": 4.165885392070901, + "sneasel": 2.6312506026034077, + "piloswine": 1.9758643687978192, + "octillery": 2.581035139214796, + "mantine": 4.279105294566308, + "skarmory": 1.9664723342200263, + "hitmontop": 3.2689449603572314, + "miltank": 3.6341941424282767, + "grovyle": 8.460671336730048, + "sceptile": 1.5168578029584203, + "combusken": 3.7413090813863383, + "blaziken": 1.78441179405255, + "marshtomp": 2.3054835201070345, + "swampert": 1.1568677796140954, + "linoone": 4.99753687481154, + "linoone-galar": 3.736965993715107, + "pelipper": 8.713834893865533, + "ninjask": 7.805545400276843, + "exploud": 1.7074093128296997, + "lairon": 2.3148799450737494, + "manectric": 1.6540040829553448, + "roselia": 5.76120713456959, + "sharpedo": 5.123052265509518, + "wailmer": 7.1628684711982515, + "torkoal": 1.330608382180978, + "flygon": 2.346612124681304, + "altaria": 1.5070618904792719, + "whiscash": 1.9998264343882517, + "crawdaunt": 1.9021004927240575, + "claydol": 3.6369473377219097, + "cradily": 3.148216770046548, + "armaldo": 2.195957823640465, + "dusclops": 2.8930469405128765, + "absol": 1.8627924611130702, + "glalie": 5.082306650967321, + "sealeo": 3.429557902961317, + "relicanth": 1.9240761421064074, + "metang": 2.678402960815758, + "luxray": 3.692414445777454, + "vespiquen": 2.9587394266431657, + "cherrim": 6.1450686804074035, + "gastrodon": 2.1756065043849357, + "drifblim": 4.9052072878681425, + "lopunny": 3.879729013846582, + "skuntank": 1.2369687399672493, + "bronzong": 3.0599168003450403, + "munchlax": 2.4930963063834217, + "drapion": 2.1391670172006045, + "abomasnow": 4.2647396681514245, + "froslass": 3.5805393632914444, + "rotom": 3.0941177466797836, + "stoutland": 2.5798222022721404, + "liepard": 6.544749152651731, + "musharna": 1.7063352237263985, + "unfezant": 6.8359863790335424, + "boldore": 3.397938761101677, + "swoobat": 6.400055508596601, + "audino": 2.250203715151665, + "gurdurr": 2.3548924311042874, + "palpitoad": 3.3857151218659283, + "seismitoad": 7.036136175583021, + "scolipede": 3.5407470528861618, + "whimsicott": 4.129374230229687, + "lilligant": 3.0697239599775905, + "basculin-red-striped": 3.065482858680225, + "basculin-blue-striped": 3.583916530251792, + "krookodile": 2.3326560514532098, + "maractus": 2.213930897913591, + "crustle": 2.398650366583149, + "sigilyph": 2.69764984215817, + "cofagrigus": 2.2269661021259166, + "garbodor": 2.4827411273654905, + "cinccino": 4.881939970280552, + "vanillish": 2.9696218897296482, + "emolga": 2.8601241476212556, + "escavalier": 1.501458086550351, + "amoonguss": 3.595052020707539, + "jellicent": 1.9624806056609039, + "galvantula": 1.4603175742889887, + "klang": 2.436273593937841, + "klinklang": 3.06487613355927, + "beheeyem": 1.8432710872346685, + "lampent": 1.923118524070483, + "fraxure": 1.5774972738447763, + "beartic": 2.256880585909942, + "cryogonal": 2.7483729549075386, + "accelgor": 3.103931381367272, + "stunfisk": 1.1579313372713398, + "stunfisk-galar": 1.6437854634658517, + "mienshao": 4.266495317401309, + "druddigon": 1.7300584982844902, + "golurk": 1.6448672480562279, + "bisharp": 2.067588087971841, + "bouffalant": 1.2755952206645977, + "heatmor": 1.6006685690091622, + "durant": 2.4596321602835975, + "diggersby": 2.988338532518923, + "talonflame": 2.977047563690496, + "pangoro": 1.6153678309156967, + "doublade": 1.8993350469694374, + "malamar": 2.618746439257324, + "barbaracle": 1.5876491426065127, + "heliolisk": 3.5904824979036087, + "tyrantrum": 1.8428377434719276, + "aurorus": 4.357243309739074, + "hawlucha": 4.070283754881552, + "dedenne": 3.0979529721433328, + "klefki": 3.2193666241381287, + "trevenant": 3.1301977542057715, + "gourgeist-average": 4.018412496065531, + "charjabug": 3.524788281666404, + "vikavolt": 1.6630341709390417, + "ribombee": 6.135164318798948, + "lycanroc-midday": 4.466224468050962, + "lycanroc-midnight": 2.8879352288376614, + "mudsdale": 1.398896233538422, + "araquanid": 2.7758633465849565, + "lurantis": 2.4624307350898693, + "shiinotic": 6.194672160434012, + "salazzle": 3.60838670666402, + "bewear": 2.1121238894064547, + "tsareena": 3.282085330372099, + "comfey": 6.381405909644345, + "oranguru": 3.110859367773937, + "passimian": 2.7235602809221007, + "palossand": 1.5954764566709079, + "pyukumuku": 49.765814181794056, + "togedemaru": 1.9297857626940722, + "mimikyu-disguised": 5.275615913891375, + "greedent": 2.241761743278224, + "orbeetle": 1.8829757631423867, + "thievul": 1.5374592159862321, + "eldegoss": 4.224352665321966, + "dubwool": 3.0244726959417516, + "drednaw": 1.3813937995168106, + "boltund": 4.091501482671451, + "carkol": 2.1657387874814735, + "coalossal": 1.7228835451289453, + "sandaconda": 2.682938286128105, + "cramorant": 8.316481218271784, + "barraskewda": 4.66880548160155, + "toxtricity-amped": 3.4005951150445215, + "centiskorch": 1.8708417309895666, + "grapploct": 1.9565302371461262, + "polteageist": 2.9659973601203005, + "hatterene": 3.6112633287726723, + "grimmsnarl": 4.4317724790731825, + "obstagoon": 2.3139429517199126, + "perrserker": 2.5592753644681014, + "alcremie": 2.108994361091808, + "falinks": 3.5067755848226305, + "pincurchin": 2.7158803228718957, + "frosmoth": 3.4724104474588526, + "indeedee-male": 3.0937232494978533, + "morpeko": 2.1839153789421433, + "copperajah": 2.17787238951301, + "duraludon": 1.249221638826822, + "drakloak": 4.055440397132815 }, "luxray": { - "ivysaur": 3.0886065826456974, - "charmeleon": 3.873673672708331, - "wartortle": 3.629162984684809, - "butterfree": 5.380632764992687, - "raichu": 5.349407808879423, - "raichu-alola": 3.6298726619005093, - "sandslash": 1.79556575334797, - "sandslash-alola": 2.177867921829546, - "nidoqueen": 2.4575919531166006, - "nidoking": 1.67228180558665, - "clefairy": 9.050494795462981, - "clefable": 2.021247013907026, - "jigglypuff": 26.388680703119057, - "wigglytuff": 1.9923790892021407, - "gloom": 5.3930340722185415, - "vileplume": 2.811808451104472, - "dugtrio": 3.3851225400419453, - "dugtrio-alola": 2.711640166519037, - "persian": 4.219496248613197, - "persian-alola": 4.213683950689477, - "golduck": 4.04743567235483, - "poliwrath": 2.554279383246572, - "kadabra": 4.059187279623398, - "machoke": 3.9934917311648324, - "tentacruel": 2.770319853549302, - "slowbro": 2.4639536678224, - "magneton": 2.953677036876612, - "haunter": 4.42213446750331, - "kingler": 3.7208240563704154, - "exeggutor": 1.7529769774019885, - "marowak": 2.6788879403433645, - "marowak-alola": 2.1985024862362645, - "hitmonlee": 2.4712257690169457, - "hitmonchan": 2.155544405134066, - "lickitung": 1.9428041203349262, - "weezing": 1.7028219475098494, - "weezing-galar": 2.8280052005953324, - "rhydon": 1.775700731154169, - "chansey": 28.117239052368568, - "tangela": 4.503057808414278, - "kangaskhan": 1.7932951659566772, - "seadra": 6.376729270496062, - "seaking": 3.035291103376106, - "starmie": 1.8874938645820993, - "mr-mime": 6.899525391315493, - "mr-mime-galar": 3.588901232009499, - "scyther": 3.588817229620359, - "jynx": 4.55649505844567, - "electabuzz": 2.7827400705685017, - "magmar": 1.6755215290640086, - "tauros": 2.025190661475607, - "ditto": 4.8587131895199684, - "vaporeon": 3.8811013558834215, - "jolteon": 1.9930694319073123, - "flareon": 2.4280747237044196, - "porygon": 2.7992692498472014, - "dragonair": 1.7936506639292074, - "noctowl": 6.958882447133833, - "lanturn": 1.9501733569160526, - "togetic": 6.7699455890147675, - "xatu": 5.1999334952480964, - "bellossom": 2.2253598424278316, - "azumarill": 3.2338764872145536, - "sudowoodo": 2.6331894328453345, - "politoed": 3.0311446525968893, - "quagsire": 4.263068672128316, - "slowking": 3.0170558796312132, - "dunsparce": 3.3697181202092334, - "qwilfish": 5.026165553745766, - "sneasel": 2.215731799576123, - "piloswine": 1.4503213017131626, - "octillery": 3.1896394111153934, - "mantine": 4.152782309262948, - "skarmory": 3.4168871191285675, - "hitmontop": 2.523065010682707, - "miltank": 3.7819332622354502, - "grovyle": 7.812215666228726, - "sceptile": 1.3867849976076763, - "combusken": 3.3635680138958377, - "blaziken": 1.632338311736795, - "marshtomp": 2.270795143057495, - "swampert": 1.143701395550129, - "linoone": 5.1764944758039135, - "linoone-galar": 4.660877264388429, - "pelipper": 13.427146453188493, - "ninjask": 9.317628925724492, - "exploud": 1.592529957251326, - "lairon": 2.8177210688211183, - "manectric": 1.7075930305578726, - "roselia": 4.00540637561118, - "sharpedo": 6.603866736731447, - "wailmer": 9.06986913939274, - "torkoal": 2.0615548721765546, - "flygon": 2.232256451034873, - "altaria": 1.574252542138264, - "whiscash": 1.9694540147968758, - "crawdaunt": 2.863458554426982, - "claydol": 3.1870833774958705, - "cradily": 1.924030119065744, - "armaldo": 1.836476624731187, - "dusclops": 3.397162683888503, - "absol": 1.98186027261694, - "glalie": 4.20396730061079, - "sealeo": 4.131128769376756, - "relicanth": 2.737726175460149, - "metang": 3.186853427823893, - "vespiquen": 3.6077828609675557, - "cherrim": 5.562931551723485, - "gastrodon": 2.083080718596864, - "drifblim": 5.750979937459174, - "lopunny": 3.660918250536528, - "skuntank": 1.4853603035126186, - "bronzong": 3.2630065617341035, - "munchlax": 2.3638157117646426, - "drapion": 2.6270940014932176, - "abomasnow": 3.050915079905912, - "froslass": 2.9170211782632145, - "rotom": 3.154459650082788, - "stoutland": 2.3998897082183746, - "liepard": 7.043894184058688, - "musharna": 1.5176779355966343, - "unfezant": 9.663356962923718, - "boldore": 3.515221530663065, - "swoobat": 7.442186592799358, - "audino": 2.2459595081708805, - "gurdurr": 2.2959791226712905, - "palpitoad": 3.4492326146169336, - "seismitoad": 6.0001612400616935, - "scolipede": 3.322349977111971, - "whimsicott": 2.9837205253349053, - "lilligant": 2.8791685047202202, - "basculin-red-striped": 3.8589558539188387, - "basculin-blue-striped": 4.997102013371165, - "krookodile": 2.5005654541107116, - "maractus": 2.0862224700688694, - "crustle": 2.196523473259719, - "sigilyph": 3.1968631412522512, - "cofagrigus": 2.7402223202679545, - "garbodor": 1.8547853362583977, - "cinccino": 4.578499441727919, - "vanillish": 2.122657651459297, - "emolga": 3.36582605377151, - "escavalier": 1.7365854569058803, - "amoonguss": 2.4257037058479285, - "jellicent": 1.9645526498827772, - "galvantula": 1.6066792507148846, - "klang": 3.0179944820218734, - "klinklang": 3.696552652279346, - "beheeyem": 1.7580695222185456, - "lampent": 2.5676270716597323, - "fraxure": 1.4045677848618516, - "beartic": 1.738555101299338, - "cryogonal": 1.8354253345892153, - "accelgor": 3.030609254517907, - "stunfisk": 1.2208784662171368, - "stunfisk-galar": 1.6854017012313616, - "mienshao": 3.3885329825896626, - "druddigon": 1.7403581555666952, - "golurk": 1.2156402539575732, - "bisharp": 2.5457158917219136, - "bouffalant": 1.317872526301358, - "heatmor": 1.9159162704870714, - "durant": 3.526211641029388, - "diggersby": 2.80385281858676, - "talonflame": 4.099193338735793, - "pangoro": 1.8019891841463296, - "doublade": 2.968155721591055, - "malamar": 2.947148158348, - "barbaracle": 1.9762194397514203, - "heliolisk": 3.6956225039254305, - "tyrantrum": 1.4078625581051196, - "aurorus": 2.429485161474576, - "hawlucha": 4.767721923101581, - "dedenne": 2.8942009142051277, - "klefki": 3.2563999730393034, - "trevenant": 2.495000175015128, - "gourgeist-average": 4.4969049258228715, - "charjabug": 3.643319782541017, - "vikavolt": 1.683524683714338, - "ribombee": 4.578001943671463, - "lycanroc-midday": 3.3486428797829118, - "lycanroc-midnight": 2.359475498617729, - "mudsdale": 1.4087370436928794, - "araquanid": 2.915752488964742, - "lurantis": 2.262935124707032, - "shiinotic": 4.274745475337233, - "salazzle": 3.1958690107561925, - "bewear": 1.8282678840460593, - "tsareena": 3.0071236831090715, - "comfey": 4.361766010839932, - "oranguru": 2.6288695194227536, - "passimian": 2.504813425914043, - "palossand": 1.2737999477393047, - "pyukumuku": 56.4425250665668, - "togedemaru": 1.9846989616195228, - "mimikyu-disguised": 3.880260196631739, - "greedent": 2.2402763389662605, - "orbeetle": 1.797124562453376, - "thievul": 1.8090738145308065, - "eldegoss": 3.8060211950400156, - "dubwool": 2.98085370881489, - "drednaw": 1.734421039132068, - "boltund": 4.63523610407989, - "carkol": 2.45256531293577, - "coalossal": 2.020767718807302, - "sandaconda": 2.5960909919832367, - "cramorant": 9.22499743320519, - "barraskewda": 6.329911204388608, - "toxtricity-amped": 2.5953419049552195, - "centiskorch": 1.9462886444482248, - "grapploct": 1.7177458230354723, - "polteageist": 2.4898107313241953, - "hatterene": 2.486093764401908, - "grimmsnarl": 3.793192777859971, - "obstagoon": 2.646544080194559, - "perrserker": 3.680744982744765, - "alcremie": 1.4581654433320321, - "falinks": 3.4044828911759577, - "pincurchin": 2.8536404309179515, - "frosmoth": 2.6787283829929724, - "indeedee-male": 3.214052803752569, - "morpeko": 2.7305906620004565, - "copperajah": 2.5480483359450776, - "duraludon": 1.4523094868275064, - "drakloak": 3.720791808692642, - "luxray": 3.775858839708406 + "ivysaur": 3.0855941002892258, + "charmeleon": 3.872901359832891, + "wartortle": 3.6326422357444077, + "butterfree": 5.381346058588143, + "raichu": 5.345082931131794, + "raichu-alola": 3.6278325359485883, + "sandslash": 1.789947192732269, + "sandslash-alola": 2.1766521410866675, + "nidoqueen": 2.4505993226683653, + "nidoking": 1.668599554852492, + "clefairy": 9.050764630863885, + "clefable": 2.021110636561659, + "jigglypuff": 26.38090153238332, + "wigglytuff": 1.991448384437327, + "gloom": 5.386698329508841, + "vileplume": 2.8090055642612164, + "dugtrio": 3.374478936084058, + "dugtrio-alola": 2.703372243450291, + "persian": 4.215791848555983, + "persian-alola": 4.211402047359998, + "golduck": 4.050019184297932, + "poliwrath": 2.556521750680202, + "kadabra": 4.055807127220991, + "machoke": 3.9933155064199206, + "tentacruel": 2.772269614766662, + "slowbro": 2.4657233202365183, + "magneton": 2.9539936724228726, + "haunter": 4.417565956561065, + "kingler": 3.7228989580201666, + "exeggutor": 1.7492057811703712, + "marowak": 2.671655921480342, + "marowak-alola": 2.1978943876810866, + "hitmonlee": 2.470974511570798, + "hitmonchan": 2.156075819196125, + "lickitung": 1.942501708069647, + "weezing": 1.7024905629183382, + "weezing-galar": 2.828165016361678, + "rhydon": 1.7687887738911716, + "chansey": 28.079030484005862, + "tangela": 4.496536791649877, + "kangaskhan": 1.7912311955139835, + "seadra": 6.3816478045972715, + "seaking": 3.0362230564476764, + "starmie": 1.8888957935194408, + "mr-mime": 6.895735658175509, + "mr-mime-galar": 3.5853554700039285, + "scyther": 3.5927730856639695, + "jynx": 4.552527840123652, + "electabuzz": 2.7833994093394603, + "magmar": 1.6749525270902792, + "tauros": 2.0230636494488143, + "ditto": 4.827686922226197, + "vaporeon": 3.88357673984122, + "jolteon": 1.9907664162797905, + "flareon": 2.427308674741523, + "porygon": 2.798142493934473, + "dragonair": 1.7922220375209816, + "noctowl": 6.966854213197976, + "lanturn": 1.9465351776434934, + "togetic": 6.776884419287981, + "xatu": 5.207212667679874, + "bellossom": 2.222899814293945, + "azumarill": 3.240529376322044, + "sudowoodo": 2.629851063468981, + "politoed": 3.0300928552108646, + "quagsire": 4.25557675296905, + "slowking": 3.018376835148425, + "dunsparce": 3.369916571211327, + "qwilfish": 5.032168344502191, + "sneasel": 2.213622533191691, + "piloswine": 1.4477686735838398, + "octillery": 3.1933529920291868, + "mantine": 4.163930654069826, + "skarmory": 3.4249151845306676, + "hitmontop": 2.520581509249592, + "miltank": 3.779820745479093, + "grovyle": 7.804718216034333, + "sceptile": 1.385312417710664, + "combusken": 3.3635049422781327, + "blaziken": 1.632348699186168, + "marshtomp": 2.265583316391867, + "swampert": 1.14068399298563, + "linoone": 5.172787351433396, + "linoone-galar": 4.657472588726485, + "pelipper": 13.461344118291041, + "ninjask": 9.317793831791015, + "exploud": 1.5914314436244201, + "lairon": 2.818857086069064, + "manectric": 1.7046897044682927, + "roselia": 4.001567998964186, + "sharpedo": 6.607480650242355, + "wailmer": 9.08476926434414, + "torkoal": 2.0616335347341033, + "flygon": 2.227874370194181, + "altaria": 1.5735416517330671, + "whiscash": 1.966633962405647, + "crawdaunt": 2.865576996999465, + "claydol": 3.1808875914177133, + "cradily": 1.920355359069776, + "armaldo": 1.833851637418881, + "dusclops": 3.3935266920842904, + "absol": 1.9810231655559132, + "glalie": 4.202569409866235, + "sealeo": 4.133630517994266, + "relicanth": 2.739281990250827, + "metang": 3.188479572212438, + "luxray": 3.775858839708406, + "vespiquen": 3.6120830734217133, + "cherrim": 5.555806653708648, + "gastrodon": 2.0796864336099725, + "drifblim": 5.755466215841825, + "lopunny": 3.660108717710388, + "skuntank": 1.4855033563722773, + "bronzong": 3.2632208865923626, + "munchlax": 2.363321373119091, + "drapion": 2.6285733278919556, + "abomasnow": 3.046100565374009, + "froslass": 2.9136829478596296, + "rotom": 3.1507462150397485, + "stoutland": 2.3974809396487387, + "liepard": 7.041281260051163, + "musharna": 1.5167446833999247, + "unfezant": 9.690433189940808, + "boldore": 3.5112397802436623, + "swoobat": 7.452469228284798, + "audino": 2.244703372993974, + "gurdurr": 2.2941734061982824, + "palpitoad": 3.440885023109621, + "seismitoad": 5.986725236301281, + "scolipede": 3.3221333928672676, + "whimsicott": 2.9818666731936085, + "lilligant": 2.8757842200414823, + "basculin-red-striped": 3.8621486349387135, + "basculin-blue-striped": 5.001490023828866, + "krookodile": 2.493418065176921, + "maractus": 2.084312514788703, + "crustle": 2.195478807609754, + "sigilyph": 3.2021013698539926, + "cofagrigus": 2.737846189677531, + "garbodor": 1.8541837362316231, + "cinccino": 4.575255511162286, + "vanillish": 2.1209905930481776, + "emolga": 3.3715943143069227, + "escavalier": 1.7338607871515301, + "amoonguss": 2.422903632675737, + "jellicent": 1.9650553470491148, + "galvantula": 1.606960154315033, + "klang": 3.0205544289718946, + "klinklang": 3.698214047225994, + "beheeyem": 1.7569238203237003, + "lampent": 2.5658954206960862, + "fraxure": 1.4025917250215842, + "beartic": 1.7375663275796478, + "cryogonal": 1.8343699354761038, + "accelgor": 3.028479358859734, + "stunfisk": 1.2182678297191036, + "stunfisk-galar": 1.6785244697415131, + "mienshao": 3.3876001683534716, + "druddigon": 1.7392659979147527, + "golurk": 1.210330507425608, + "bisharp": 2.544021215958611, + "bouffalant": 1.3180827814496858, + "heatmor": 1.9162465835567841, + "durant": 3.528370421809097, + "diggersby": 2.79463726445709, + "talonflame": 4.107453434969376, + "pangoro": 1.8019545025385497, + "doublade": 2.9718458562328207, + "malamar": 2.9464981040712654, + "barbaracle": 1.9761906305115344, + "heliolisk": 3.692822161089191, + "tyrantrum": 1.4054736420920848, + "aurorus": 2.4269329011955483, + "hawlucha": 4.771920752004305, + "dedenne": 2.894196198227287, + "klefki": 3.258485922131884, + "trevenant": 2.4896454711628406, + "gourgeist-average": 4.488402598259653, + "charjabug": 3.639799172018784, + "vikavolt": 1.6817361949334342, + "ribombee": 4.576069477388122, + "lycanroc-midday": 3.345990221515035, + "lycanroc-midnight": 2.3575485710558297, + "mudsdale": 1.4054499213354923, + "araquanid": 2.918218463121443, + "lurantis": 2.259858284931899, + "shiinotic": 4.269704947903298, + "salazzle": 3.195027479103011, + "bewear": 1.8267129548488599, + "tsareena": 3.005652730234144, + "comfey": 4.361453929385982, + "oranguru": 2.626879609754419, + "passimian": 2.5059807640196565, + "palossand": 1.2673666329335336, + "pyukumuku": 56.47088528258268, + "togedemaru": 1.9836860865402097, + "mimikyu-disguised": 3.87496978792253, + "greedent": 2.239789487965573, + "orbeetle": 1.795597651029114, + "thievul": 1.8073455117969557, + "eldegoss": 3.8015941021083313, + "dubwool": 2.978885826283412, + "drednaw": 1.7354595376500561, + "boltund": 4.634651603551187, + "carkol": 2.4507491832550325, + "coalossal": 2.0190411689389043, + "sandaconda": 2.5877016055621556, + "cramorant": 9.240676429248701, + "barraskewda": 6.334568808167057, + "toxtricity-amped": 2.5943509003060212, + "centiskorch": 1.9441371375337266, + "grapploct": 1.7175856451934322, + "polteageist": 2.4862156509062387, + "hatterene": 2.485220965373121, + "grimmsnarl": 3.7926247362853642, + "obstagoon": 2.645262819836894, + "perrserker": 3.6835229024437153, + "alcremie": 1.4581205284767045, + "falinks": 3.4052838089062956, + "pincurchin": 2.853589556370237, + "frosmoth": 2.6773432869494265, + "indeedee-male": 3.2121437854798485, + "morpeko": 2.7304272980319144, + "copperajah": 2.5498228613844107, + "duraludon": 1.4523577001520134, + "drakloak": 3.7121378814303223 }, "vespiquen": { - "ivysaur": 4.195121625687504, - "charmeleon": 3.372232376500433, - "wartortle": 2.7619435982369303, - "butterfree": 6.107125438097938, - "raichu": 5.325521440932096, - "raichu-alola": 4.8158116590165, - "sandslash": 1.9495987432868431, - "sandslash-alola": 1.7720929741949576, - "nidoqueen": 2.7496283073049614, - "nidoking": 1.657242114447217, - "clefairy": 8.667367420190352, - "clefable": 1.8201673416278532, - "jigglypuff": 25.530142236097983, - "wigglytuff": 1.9119194839824263, - "gloom": 6.7325581220128745, - "vileplume": 3.867775112811207, - "dugtrio": 3.324549385737937, - "dugtrio-alola": 3.6229379186691197, - "persian": 4.397360139168489, - "persian-alola": 5.790350067209995, - "golduck": 3.1409373999718753, - "poliwrath": 2.3036166425251943, - "kadabra": 6.041781874103863, - "machoke": 4.102721195206387, - "tentacruel": 2.369342735589184, - "slowbro": 2.1232440707530946, - "magneton": 2.755985609351361, - "haunter": 4.48270820656941, - "kingler": 2.4182485370601627, - "exeggutor": 3.7181483961397586, - "marowak": 3.1897227564265895, - "marowak-alola": 1.7274997186739225, - "hitmonlee": 3.3038230714516996, - "hitmonchan": 2.4522059467622803, - "lickitung": 1.812019527649895, - "weezing": 1.2953743136123201, - "weezing-galar": 2.1993011563149567, - "rhydon": 1.9745948816096424, - "chansey": 30.69742599923547, - "tangela": 5.784225612125936, - "kangaskhan": 1.9259885178888527, - "seadra": 3.878229028133707, - "seaking": 2.5934856158763755, - "starmie": 1.735267123327861, - "mr-mime": 7.529594427864314, - "mr-mime-galar": 4.512349340903443, - "scyther": 3.032189020169114, - "jynx": 6.184196884209603, - "electabuzz": 2.421918967256828, - "magmar": 1.473487822889338, - "tauros": 2.112639360120867, - "ditto": 3.794209815171838, - "vaporeon": 3.477802526870203, - "jolteon": 2.011625448320722, - "flareon": 2.119141013105129, - "porygon": 2.6863512431114995, - "dragonair": 1.802882294474595, - "noctowl": 5.399738580422602, - "lanturn": 1.9598858453154921, - "togetic": 4.763475973449497, - "xatu": 3.6544791329658395, - "bellossom": 3.272623943758779, - "azumarill": 2.014860441574552, - "sudowoodo": 2.1909619794000914, - "politoed": 2.857106907941868, - "quagsire": 4.762417335648397, - "slowking": 3.352668477176251, - "dunsparce": 3.1283179187948367, - "qwilfish": 3.0335124123242805, - "sneasel": 2.9358267311971007, - "piloswine": 1.3747842689941399, - "octillery": 2.4462696874295884, - "mantine": 2.323216897673823, - "skarmory": 1.520693908746137, - "hitmontop": 3.363921921542186, - "miltank": 3.443359340895907, - "grovyle": 12.465887574658948, - "sceptile": 2.101270534644167, - "combusken": 3.9786038538138504, - "blaziken": 1.8301897031855858, - "marshtomp": 2.550273413195706, - "swampert": 1.250976860399658, - "linoone": 5.386375699067603, - "linoone-galar": 6.076301410839582, - "pelipper": 5.10424099100161, - "ninjask": 9.585833248665825, - "exploud": 1.5996759819065778, - "lairon": 1.8546063947733455, - "manectric": 1.7034469442201792, - "roselia": 5.430722261332541, - "sharpedo": 6.705883574095547, - "wailmer": 6.446481173701477, - "torkoal": 1.41090495843254, - "flygon": 2.530831126074374, - "altaria": 1.438954620747075, - "whiscash": 2.0695405777673135, - "crawdaunt": 2.464683972628123, - "claydol": 4.060113682981741, - "cradily": 2.7789329233347444, - "armaldo": 1.7340209553855093, - "dusclops": 3.2177732388155516, - "absol": 2.4587861144589866, - "glalie": 3.9584383105223875, - "sealeo": 3.05636653396865, - "relicanth": 1.4939703946855232, - "metang": 2.7682058109901817, - "luxray": 3.579060571321649, - "cherrim": 8.435853682221286, - "gastrodon": 2.1121584401806834, - "drifblim": 3.76830861704293, - "lopunny": 3.7838999329157708, - "skuntank": 1.3997246189523849, - "bronzong": 3.2226211209735656, - "munchlax": 2.3760412666787145, - "drapion": 2.3815034374804234, - "abomasnow": 4.093202489726914, - "froslass": 2.488982407851242, - "rotom": 2.8616552708349374, - "stoutland": 2.449174804716063, - "liepard": 9.370481509893324, - "musharna": 2.1517005188619827, - "unfezant": 4.979107024724334, - "boldore": 2.6735209568017915, - "swoobat": 5.226273878902625, - "audino": 2.2319060609448944, - "gurdurr": 2.6901025530592335, - "palpitoad": 4.0102714869549825, - "seismitoad": 6.487205497547173, - "scolipede": 3.713159656673397, - "whimsicott": 3.615510617559533, - "lilligant": 4.448115762612358, - "basculin-red-striped": 2.737109543698374, - "basculin-blue-striped": 3.6409363503530274, - "krookodile": 3.820908223550735, - "maractus": 3.2365255849326426, - "crustle": 1.8169660592216452, - "sigilyph": 2.253579006366588, - "cofagrigus": 2.3177263857788653, - "garbodor": 1.7555853933769534, - "cinccino": 4.422912956775056, - "vanillish": 2.0149108582813136, - "emolga": 2.2274195461109976, - "escavalier": 1.838591370526939, - "amoonguss": 3.187476391508409, - "jellicent": 1.4432462777602224, - "galvantula": 1.4765166595902652, - "klang": 2.2804011483662454, - "klinklang": 3.120230324443867, - "beheeyem": 2.3072391402901813, - "lampent": 2.054573985988366, - "fraxure": 1.5352923247810173, - "beartic": 1.6160109174078068, - "cryogonal": 1.775456721084654, - "accelgor": 4.172583720256934, - "stunfisk": 1.3446744177837524, - "stunfisk-galar": 2.3427791350439273, - "mienshao": 3.673625479745068, - "druddigon": 1.8582224842635946, - "golurk": 1.8719378371525588, - "bisharp": 2.8387649265348047, - "bouffalant": 1.3589994553855995, - "heatmor": 1.6398215026569654, - "durant": 2.5260093299065787, - "diggersby": 3.232222287915712, - "talonflame": 2.468522150416184, - "pangoro": 2.1161164885248267, - "doublade": 1.6995748546058538, - "malamar": 5.002576881650523, - "barbaracle": 1.3808738321108893, - "heliolisk": 3.820184762939545, - "tyrantrum": 1.3490177332416708, - "aurorus": 2.430870751212553, - "hawlucha": 4.148008274607735, - "dedenne": 2.417056664993139, - "klefki": 2.46081772592454, - "trevenant": 4.034595363903055, - "gourgeist-average": 5.287778280723402, - "charjabug": 3.8086288202756364, - "vikavolt": 1.8829168287655487, - "ribombee": 5.902710408436007, - "lycanroc-midday": 2.555888341193682, - "lycanroc-midnight": 2.07927823287043, - "mudsdale": 1.7095697491351851, - "araquanid": 3.071318540685054, - "lurantis": 3.39355939417101, - "shiinotic": 5.3558571327156095, - "salazzle": 2.791577278843813, - "bewear": 1.9644443305171178, - "tsareena": 4.145080787300817, - "comfey": 4.51280002774839, - "oranguru": 3.7853686253197214, - "passimian": 2.302211020678909, - "palossand": 1.909787504615029, - "pyukumuku": 43.1273912339465, - "togedemaru": 2.083487775505951, - "mimikyu-disguised": 3.868984046619528, - "greedent": 2.09643864273465, - "orbeetle": 2.533971620851605, - "thievul": 2.5161386998909148, - "eldegoss": 5.904188810532673, - "dubwool": 3.146997766033711, - "drednaw": 1.0072603200346397, - "boltund": 4.47691529417924, - "carkol": 1.719952680537121, - "coalossal": 1.5644689771919515, - "sandaconda": 3.1696574975290277, - "cramorant": 5.435944769391457, - "barraskewda": 4.593929793229605, - "toxtricity-amped": 2.170757102304237, - "centiskorch": 2.469943365885732, - "grapploct": 2.0537242551793082, - "polteageist": 2.8000915792280203, - "hatterene": 2.5879115593897684, - "grimmsnarl": 4.142814910637152, - "obstagoon": 3.0683927188225892, - "perrserker": 2.849668688062936, - "alcremie": 1.4337395565190483, - "falinks": 3.5800667786585967, - "pincurchin": 2.7856004328540527, - "frosmoth": 3.287089594193697, - "indeedee-male": 4.507796842524065, - "morpeko": 3.300758728441544, - "copperajah": 2.389040878499121, - "duraludon": 1.3122488650681845, - "drakloak": 4.184274704240082, - "vespiquen": 3.16764697196934 + "ivysaur": 4.20918216791374, + "charmeleon": 3.3672942259988377, + "wartortle": 2.764072017940939, + "butterfree": 6.121355188405445, + "raichu": 5.326443171107457, + "raichu-alola": 4.816306073105658, + "sandslash": 1.948175637834964, + "sandslash-alola": 1.7688612594035833, + "nidoqueen": 2.7522690372441483, + "nidoking": 1.655922792253894, + "clefairy": 8.666700864466712, + "clefable": 1.8160898967665475, + "jigglypuff": 25.538096195926244, + "wigglytuff": 1.9121932053806145, + "gloom": 6.742109240652654, + "vileplume": 3.881780570443847, + "dugtrio": 3.327330347182103, + "dugtrio-alola": 3.629811431269042, + "persian": 4.401890836539664, + "persian-alola": 5.803017953410045, + "golduck": 3.1432580378952135, + "poliwrath": 2.3081464959511924, + "kadabra": 6.053493836389382, + "machoke": 4.101088833313248, + "tentacruel": 2.3705880639051, + "slowbro": 2.123865858937342, + "magneton": 2.7514318481157987, + "haunter": 4.485541379555842, + "kingler": 2.421194147058161, + "exeggutor": 3.733466844293382, + "marowak": 3.195123987400519, + "marowak-alola": 1.7241125987547403, + "hitmonlee": 3.313763051104674, + "hitmonchan": 2.4523859507154717, + "lickitung": 1.811683553523193, + "weezing": 1.2935473662062278, + "weezing-galar": 2.195258957514077, + "rhydon": 1.9703840114924942, + "chansey": 30.764188505624578, + "tangela": 5.7994998826041115, + "kangaskhan": 1.9291905179959068, + "seadra": 3.876896801874709, + "seaking": 2.5971164598311534, + "starmie": 1.733394062179054, + "mr-mime": 7.536116509692135, + "mr-mime-galar": 4.514636221954939, + "scyther": 3.031847001982694, + "jynx": 6.18878570410468, + "electabuzz": 2.418387685532209, + "magmar": 1.4717986706555777, + "tauros": 2.117677456162652, + "ditto": 3.7735659937185204, + "vaporeon": 3.4827945259625483, + "jolteon": 2.010399843763094, + "flareon": 2.118388592516051, + "porygon": 2.686164795970956, + "dragonair": 1.8022614887090147, + "noctowl": 5.395300795056381, + "lanturn": 1.959988897087345, + "togetic": 4.755743012157847, + "xatu": 3.650603885084179, + "bellossom": 3.2851180555935233, + "azumarill": 2.015804297280094, + "sudowoodo": 2.1868849446072067, + "politoed": 2.863532249403459, + "quagsire": 4.769095303179181, + "slowking": 3.3559937219055405, + "dunsparce": 3.129043740659899, + "qwilfish": 3.0315722234729314, + "sneasel": 2.9412303637756967, + "piloswine": 1.373317262220204, + "octillery": 2.4490380766736166, + "mantine": 2.3221599806560755, + "skarmory": 1.5183160962692712, + "hitmontop": 3.3720796388696455, + "miltank": 3.445001930298264, + "grovyle": 12.531540482475911, + "sceptile": 2.1112442179181543, + "combusken": 3.984239451522609, + "blaziken": 1.8308369286088246, + "marshtomp": 2.552846996921578, + "swampert": 1.2528436219400447, + "linoone": 5.394341991600143, + "linoone-galar": 6.092083543233757, + "pelipper": 5.093284049810704, + "ninjask": 9.608475726163153, + "exploud": 1.601516183813229, + "lairon": 1.8496140709930944, + "manectric": 1.7013739862986557, + "roselia": 5.448561335588616, + "sharpedo": 6.719841484327279, + "wailmer": 6.447343357247286, + "torkoal": 1.4075958664653936, + "flygon": 2.534754776838615, + "altaria": 1.4377257146327427, + "whiscash": 2.069925980509462, + "crawdaunt": 2.468435213865451, + "claydol": 4.057650396290006, + "cradily": 2.7801471248581433, + "armaldo": 1.733061088242187, + "dusclops": 3.21824287136371, + "absol": 2.4617788753154746, + "glalie": 3.957430781701003, + "sealeo": 3.0563034536752802, + "relicanth": 1.4885435290817368, + "metang": 2.7667187569522196, + "luxray": 3.573686397056611, + "vespiquen": 3.16764697196934, + "cherrim": 8.46930723248843, + "gastrodon": 2.1115469656462316, + "drifblim": 3.7600966170646295, + "lopunny": 3.7888705096851614, + "skuntank": 1.4008265344368258, + "bronzong": 3.224908864489043, + "munchlax": 2.3781954050589746, + "drapion": 2.3844731567730335, + "abomasnow": 4.101679044978562, + "froslass": 2.4837808178472907, + "rotom": 2.8553261617191783, + "stoutland": 2.4510932518868738, + "liepard": 9.391611694140352, + "musharna": 2.1562735358814735, + "unfezant": 4.966577255092837, + "boldore": 2.6671221755669086, + "swoobat": 5.220697572787024, + "audino": 2.232436689429957, + "gurdurr": 2.699009565411574, + "palpitoad": 4.016649157035465, + "seismitoad": 6.489167036816076, + "scolipede": 3.7181148862952442, + "whimsicott": 3.6209011428178135, + "lilligant": 4.468425153407719, + "basculin-red-striped": 2.7373690007423557, + "basculin-blue-striped": 3.643402255209003, + "krookodile": 3.8326449397183566, + "maractus": 3.2517537990946352, + "crustle": 1.8147322964425556, + "sigilyph": 2.2518056906395296, + "cofagrigus": 2.3161190528661786, + "garbodor": 1.7563216951179133, + "cinccino": 4.423014540561522, + "vanillish": 2.013042583230861, + "emolga": 2.2203055662183417, + "escavalier": 1.8424353459528573, + "amoonguss": 3.1953674576215194, + "jellicent": 1.4428132943702778, + "galvantula": 1.4750441518650972, + "klang": 2.2748397975801855, + "klinklang": 3.1201379253611954, + "beheeyem": 2.3070764974123534, + "lampent": 2.0503462446473955, + "fraxure": 1.5361924435283774, + "beartic": 1.6161237249146856, + "cryogonal": 1.7766004964916886, + "accelgor": 4.185219656333428, + "stunfisk": 1.345213774956433, + "stunfisk-galar": 2.346749177754593, + "mienshao": 3.672689178265168, + "druddigon": 1.8601057340278784, + "golurk": 1.8743182309828945, + "bisharp": 2.8428128836723277, + "bouffalant": 1.3621294254355973, + "heatmor": 1.6382133173086864, + "durant": 2.523949868658785, + "diggersby": 3.235408648323541, + "talonflame": 2.462640947965548, + "pangoro": 2.122742338230698, + "doublade": 1.695874933702623, + "malamar": 5.011161700199801, + "barbaracle": 1.3801074711073273, + "heliolisk": 3.8226728552623914, + "tyrantrum": 1.3466375902937573, + "aurorus": 2.424103694106058, + "hawlucha": 4.153502383498428, + "dedenne": 2.412314320551398, + "klefki": 2.4596663632740805, + "trevenant": 4.050930354154085, + "gourgeist-average": 5.286689623997432, + "charjabug": 3.8066244105151847, + "vikavolt": 1.8849893361025334, + "ribombee": 5.913851415715396, + "lycanroc-midday": 2.544491303953091, + "lycanroc-midnight": 2.0751001986722724, + "mudsdale": 1.7139135104767336, + "araquanid": 3.079811926296939, + "lurantis": 3.406186362098815, + "shiinotic": 5.364125623577381, + "salazzle": 2.7851302486722354, + "bewear": 1.9659050650749, + "tsareena": 4.156970623678447, + "comfey": 4.519102965187313, + "oranguru": 3.7922804563197094, + "passimian": 2.299993443744458, + "palossand": 1.9106466433465363, + "pyukumuku": 43.15088323659361, + "togedemaru": 2.081854754462439, + "mimikyu-disguised": 3.86719250377375, + "greedent": 2.097964688442869, + "orbeetle": 2.5397429148520203, + "thievul": 2.521404416090495, + "eldegoss": 5.930559746006054, + "dubwool": 3.1538153421268547, + "drednaw": 1.0055515037366658, + "boltund": 4.472427641967197, + "carkol": 1.713846221582711, + "coalossal": 1.5587475957594998, + "sandaconda": 3.174670611914678, + "cramorant": 5.4376770584453284, + "barraskewda": 4.5963733031215055, + "toxtricity-amped": 2.164452953090235, + "centiskorch": 2.4717447414776252, + "grapploct": 2.0598280634405626, + "polteageist": 2.8036810332505064, + "hatterene": 2.5892377811338214, + "grimmsnarl": 4.1508529920312105, + "obstagoon": 3.0731308046408894, + "perrserker": 2.847879476006814, + "alcremie": 1.434159237425578, + "falinks": 3.5871270827353148, + "pincurchin": 2.7817555033150185, + "frosmoth": 3.2892873074808993, + "indeedee-male": 4.5141049537462745, + "morpeko": 3.299962201719263, + "copperajah": 2.391795206697245, + "duraludon": 1.3106390633863994, + "drakloak": 4.182941281525391 }, "cherrim": { - "ivysaur": 2.595419027470076, - "charmeleon": 2.8921878825925242, - "wartortle": 3.6029992476635933, - "butterfree": 3.357070013823497, - "raichu": 5.0799258558714495, - "raichu-alola": 3.329478298847577, - "sandslash": 3.0495173718428266, - "sandslash-alola": 1.6628826069513494, - "nidoqueen": 2.6662255813858073, - "nidoking": 1.7418807960478047, - "clefairy": 8.350264347583156, - "clefable": 1.9664754364309731, - "jigglypuff": 25.870106226267346, - "wigglytuff": 1.9419090904843102, - "gloom": 4.280618991793087, - "vileplume": 2.39021140610948, - "dugtrio": 4.524681612073416, - "dugtrio-alola": 3.3814816176360902, - "persian": 4.074344575801582, - "persian-alola": 4.0845446552146845, - "golduck": 4.171184736385181, - "poliwrath": 2.5465101408950446, - "kadabra": 3.4859554952227576, - "machoke": 3.8537795558266454, - "tentacruel": 2.1403282560070767, - "slowbro": 2.2933519478533957, - "magneton": 2.7653663354661067, - "haunter": 3.6981214597374876, - "kingler": 3.911539637488146, - "exeggutor": 1.7321148961734265, - "marowak": 4.264099006115638, - "marowak-alola": 1.5646702410319633, - "hitmonlee": 2.030679712360692, - "hitmonchan": 1.8598157195157143, - "lickitung": 1.8312033011640987, - "weezing": 1.1801307306792697, - "weezing-galar": 2.063255588622683, - "rhydon": 4.911363030654963, - "chansey": 19.03309303738798, - "tangela": 4.716653925036134, - "kangaskhan": 1.8008082920327095, - "seadra": 6.4744776078068345, - "seaking": 2.9461842356367947, - "starmie": 1.742925272945178, - "mr-mime": 6.153747587907206, - "mr-mime-galar": 3.0353780558693786, - "scyther": 2.000048791631409, - "jynx": 3.5318097727504547, - "electabuzz": 2.6218295732694346, - "magmar": 1.1705694397909632, - "tauros": 2.07453990216342, - "ditto": 6.144057397416265, - "vaporeon": 4.008605216722711, - "jolteon": 1.839093194969642, - "flareon": 1.619459451446641, - "porygon": 2.665994626428633, - "dragonair": 1.4442853953112804, - "noctowl": 4.158942832776622, - "lanturn": 2.667410458599864, - "togetic": 3.9941765611296955, - "xatu": 2.967976687153509, - "bellossom": 2.029825933768121, - "azumarill": 1.7859394775902797, - "sudowoodo": 3.6072421690727854, - "politoed": 3.3267008583756645, - "quagsire": 9.976528063870937, - "slowking": 2.880540927128872, - "dunsparce": 2.841820623268319, - "qwilfish": 3.378881336376286, - "sneasel": 2.0470298190021703, - "piloswine": 1.8784715130874967, - "octillery": 2.940619884413474, - "mantine": 2.129945282262498, - "skarmory": 1.3596880430123668, - "hitmontop": 2.4822637711819233, - "miltank": 3.633756783548324, - "grovyle": 6.875289263002953, - "sceptile": 1.1924634683573707, - "combusken": 2.6266253981248413, - "blaziken": 1.2192483712643587, - "marshtomp": 4.848937064259795, - "swampert": 2.301595177097485, - "linoone": 4.723154364316302, - "linoone-galar": 4.525375675364005, - "pelipper": 5.701904648803179, - "ninjask": 5.301854968331238, - "exploud": 1.4331497941745233, - "lairon": 2.590707661412275, - "manectric": 1.7104244960409551, - "roselia": 3.332590450716099, - "sharpedo": 6.524562033593972, - "wailmer": 8.402185235522472, - "torkoal": 1.3778689831050759, - "flygon": 2.2441818328535255, - "altaria": 1.2113376669768023, - "whiscash": 4.057603482688165, - "crawdaunt": 2.93358662450398, - "claydol": 4.1003291735425895, - "cradily": 2.1806572690291643, - "armaldo": 1.7560990279605457, - "dusclops": 3.1155587732287704, - "absol": 1.772510519758285, - "glalie": 3.694711064338886, - "sealeo": 3.941068309490337, - "relicanth": 4.055170111721814, - "metang": 2.4382402689813607, - "luxray": 3.9072901229417285, - "vespiquen": 1.959069512038072, - "gastrodon": 3.8263153342234477, - "drifblim": 3.5779527020195907, - "lopunny": 3.3229526970053214, - "skuntank": 1.1055538649005276, - "bronzong": 2.500616570534432, - "munchlax": 1.8604460213660299, - "drapion": 1.9044017555271595, - "abomasnow": 2.5830208721334698, - "froslass": 2.5536094074157782, - "rotom": 3.8361519778223343, - "stoutland": 2.3100376660208384, - "liepard": 6.792037522660819, - "musharna": 1.5174431170741167, - "unfezant": 4.542610139290579, - "boldore": 4.923979810938507, - "swoobat": 4.24421312846846, - "audino": 2.108543676444202, - "gurdurr": 2.3565513991582625, - "palpitoad": 7.491753359675333, - "seismitoad": 10.864843775499729, - "scolipede": 2.3817034617078026, - "whimsicott": 2.6183358959295355, - "lilligant": 2.544139842260707, - "basculin-red-striped": 3.7758574936567886, - "basculin-blue-striped": 5.145771999040165, - "krookodile": 3.7655127236786514, - "maractus": 1.9772599873154213, - "crustle": 1.9728890550808162, - "sigilyph": 1.8345460788752763, - "cofagrigus": 2.6758320637019373, - "garbodor": 1.3823390245730311, - "cinccino": 4.134171464218989, - "vanillish": 1.8231458155951095, - "emolga": 2.575447523969256, - "escavalier": 1.3318348250701852, - "amoonguss": 1.9401791466331173, - "jellicent": 1.7853767397530405, - "galvantula": 1.3617965740233002, - "klang": 2.359160273791181, - "klinklang": 2.734185825690803, - "beheeyem": 1.7234713436508735, - "lampent": 1.6875392286006465, - "fraxure": 1.2552771158000104, - "beartic": 1.5028796057493397, - "cryogonal": 1.3201688316126163, - "accelgor": 2.0553298435519487, - "stunfisk": 1.735979704985076, - "stunfisk-galar": 2.4137366514462464, - "mienshao": 3.285265364935687, - "druddigon": 1.45748933719229, - "golurk": 2.434792000839116, - "bisharp": 1.9139182737045004, - "bouffalant": 1.0411767910906866, - "heatmor": 1.4109718030854235, - "durant": 2.1232814131038857, - "diggersby": 4.235806660631457, - "talonflame": 2.1531014105049406, - "pangoro": 1.7132699393447735, - "doublade": 1.974789449854926, - "malamar": 2.8702781329517855, - "barbaracle": 2.6363693005267788, - "heliolisk": 3.468066897426853, - "tyrantrum": 1.656919114468427, - "aurorus": 2.6885946027510803, - "hawlucha": 2.7654031769907057, - "dedenne": 2.8821095190567516, - "klefki": 2.4513790313865833, - "trevenant": 2.55695028380396, - "gourgeist-average": 4.094224449148778, - "charjabug": 3.559962510705138, - "vikavolt": 1.4097731497172141, - "ribombee": 3.4624867404458928, - "lycanroc-midday": 4.152817326813516, - "lycanroc-midnight": 2.9184457486605, - "mudsdale": 2.0764249481691204, - "araquanid": 1.9964376438924605, - "lurantis": 1.9683679544019732, - "shiinotic": 3.6372651315357745, - "salazzle": 2.3636072158823827, - "bewear": 1.754499078397875, - "tsareena": 2.5424195616946643, - "comfey": 4.463706309393346, - "oranguru": 2.512728803226694, - "passimian": 2.2612948629817073, - "palossand": 2.9287298706880733, - "pyukumuku": 49.18204420689242, - "togedemaru": 1.8147935096693302, - "mimikyu-disguised": 3.729559723918438, - "greedent": 2.1045237976305353, - "orbeetle": 1.3873460630836816, - "thievul": 1.587939008404451, - "eldegoss": 3.4367871362345634, - "dubwool": 2.9404752185571383, - "drednaw": 2.3792491070990534, - "boltund": 4.796128537126441, - "carkol": 2.2165637657208936, - "coalossal": 1.8950543282756864, - "sandaconda": 4.242509601803297, - "cramorant": 5.17798671132277, - "barraskewda": 6.279193724214199, - "toxtricity-amped": 2.282397436830647, - "centiskorch": 1.5472456000919141, - "grapploct": 1.7391135584073623, - "polteageist": 2.50831421577386, - "hatterene": 2.4200356697310617, - "grimmsnarl": 3.7003698802324543, - "obstagoon": 2.5577319984749733, - "perrserker": 2.7576455043735866, - "alcremie": 1.3089184700475354, - "falinks": 3.019165675667681, - "pincurchin": 3.14663306244746, - "frosmoth": 1.859281158805488, - "indeedee-male": 2.80187034014275, - "morpeko": 2.7356781101049434, - "copperajah": 1.9219553179515043, - "duraludon": 1.1727360310339134, - "drakloak": 3.60238499834826, - "cherrim": 5.129232425074271 + "ivysaur": 2.588716275423465, + "charmeleon": 2.8800176013678693, + "wartortle": 3.6041488760531406, + "butterfree": 3.340855840364226, + "raichu": 5.078269972817973, + "raichu-alola": 3.3248665493244993, + "sandslash": 3.0488605184734574, + "sandslash-alola": 1.6569667044837915, + "nidoqueen": 2.661647199234902, + "nidoking": 1.7386279738983017, + "clefairy": 8.33279722143453, + "clefable": 1.9641893211901584, + "jigglypuff": 25.83354697019457, + "wigglytuff": 1.938960269595421, + "gloom": 4.2622912445901635, + "vileplume": 2.3832632117662307, + "dugtrio": 4.527850547338828, + "dugtrio-alola": 3.3781034939521444, + "persian": 4.065523618591716, + "persian-alola": 4.077685457223113, + "golduck": 4.174362698796795, + "poliwrath": 2.547319810518472, + "kadabra": 3.4772101358981056, + "machoke": 3.8490343254215205, + "tentacruel": 2.1365734092037703, + "slowbro": 2.290959133872807, + "magneton": 2.7614646402671177, + "haunter": 3.6908769986872194, + "kingler": 3.9173171728798764, + "exeggutor": 1.729479367066734, + "marowak": 4.266617393522401, + "marowak-alola": 1.5582581443136294, + "hitmonlee": 2.02497106786468, + "hitmonchan": 1.8542234148041956, + "lickitung": 1.828497800203654, + "weezing": 1.1752027636630433, + "weezing-galar": 2.0564149450283473, + "rhydon": 4.918994086979115, + "chansey": 18.955407631496154, + "tangela": 4.714207003905168, + "kangaskhan": 1.797897375012913, + "seadra": 6.480454990867784, + "seaking": 2.9435012958646647, + "starmie": 1.741459911541123, + "mr-mime": 6.141492950845546, + "mr-mime-galar": 3.0260555906926596, + "scyther": 1.9902825642585542, + "jynx": 3.5174815162731585, + "electabuzz": 2.6206862787615472, + "magmar": 1.1650665372794757, + "tauros": 2.072614549659175, + "ditto": 6.098600223603966, + "vaporeon": 4.0106513612850865, + "jolteon": 1.8374842613764963, + "flareon": 1.6132239625434814, + "porygon": 2.6607798039019364, + "dragonair": 1.4401753858471478, + "noctowl": 4.139545082305613, + "lanturn": 2.67231332022234, + "togetic": 3.979592295506335, + "xatu": 2.9568740934985156, + "bellossom": 2.0275231548217527, + "azumarill": 1.7764903413224673, + "sudowoodo": 3.6084784287748244, + "politoed": 3.3296594722563713, + "quagsire": 9.999626869648665, + "slowking": 2.8772843778041355, + "dunsparce": 2.831253776382516, + "qwilfish": 3.3723061996467996, + "sneasel": 2.040169638743514, + "piloswine": 1.8756402751657464, + "octillery": 2.9377333694040084, + "mantine": 2.1253279088923196, + "skarmory": 1.3537890718019492, + "hitmontop": 2.4773372465484664, + "miltank": 3.627798144109583, + "grovyle": 6.866592901357965, + "sceptile": 1.1902417839288515, + "combusken": 2.6185065391089424, + "blaziken": 1.2144934009088764, + "marshtomp": 4.856177451068875, + "swampert": 2.3056145334330433, + "linoone": 4.708844733176527, + "linoone-galar": 4.517270090669722, + "pelipper": 5.684993319431807, + "ninjask": 5.27196266701878, + "exploud": 1.4296760278926184, + "lairon": 2.587139556175746, + "manectric": 1.7074271413557702, + "roselia": 3.3263342031076126, + "sharpedo": 6.523430436538092, + "wailmer": 8.398576943467235, + "torkoal": 1.3729476852680214, + "flygon": 2.2391702878545616, + "altaria": 1.2071672446829802, + "whiscash": 4.059556496218991, + "crawdaunt": 2.934367216940215, + "claydol": 4.097747142210689, + "cradily": 2.176578983335203, + "armaldo": 1.7516086733920986, + "dusclops": 3.1065834014394684, + "absol": 1.7677121014305004, + "glalie": 3.6825269938378127, + "sealeo": 3.937836180313208, + "relicanth": 4.0609597399015005, + "metang": 2.4330585588929625, + "luxray": 3.904692244523163, + "vespiquen": 1.9487091974671884, + "cherrim": 5.129232425074271, + "gastrodon": 3.8275068468608247, + "drifblim": 3.5702338022186506, + "lopunny": 3.313850194645914, + "skuntank": 1.1022673921827426, + "bronzong": 2.49423339034238, + "munchlax": 1.853589184148435, + "drapion": 1.8987847722196753, + "abomasnow": 2.57417624874079, + "froslass": 2.543924096427246, + "rotom": 3.8341737143018597, + "stoutland": 2.304751916199944, + "liepard": 6.781044103642336, + "musharna": 1.5156284072993336, + "unfezant": 4.520597878838142, + "boldore": 4.926829551512471, + "swoobat": 4.228306855663266, + "audino": 2.103229599090123, + "gurdurr": 2.3553303563982073, + "palpitoad": 7.50434388044222, + "seismitoad": 10.846103029457213, + "scolipede": 2.370967499770789, + "whimsicott": 2.6125258929870556, + "lilligant": 2.538233851222534, + "basculin-red-striped": 3.7757301194318105, + "basculin-blue-striped": 5.151384692747963, + "krookodile": 3.7670001766968593, + "maractus": 1.9761502258364425, + "crustle": 1.9674597614659008, + "sigilyph": 1.8282540813750734, + "cofagrigus": 2.671888791251325, + "garbodor": 1.3751928466218812, + "cinccino": 4.120873723504652, + "vanillish": 1.816015222758723, + "emolga": 2.5699690025928303, + "escavalier": 1.3280081080813244, + "amoonguss": 1.9324791792992753, + "jellicent": 1.7839629928138248, + "galvantula": 1.3590090410756772, + "klang": 2.3557264458192364, + "klinklang": 2.7269344994079363, + "beheeyem": 1.7205380763822287, + "lampent": 1.6792956614160293, + "fraxure": 1.2510384587698171, + "beartic": 1.4986729389095284, + "cryogonal": 1.314843157105934, + "accelgor": 2.0438532766782025, + "stunfisk": 1.7386495545608742, + "stunfisk-galar": 2.4131020865877923, + "mienshao": 3.280450227860256, + "druddigon": 1.453497780747031, + "golurk": 2.4342486297106496, + "bisharp": 1.907078747098675, + "bouffalant": 1.036648994019877, + "heatmor": 1.4054889402212771, + "durant": 2.1146561005169002, + "diggersby": 4.238280022310423, + "talonflame": 2.1432505836921183, + "pangoro": 1.710738242545554, + "doublade": 1.9690040749040891, + "malamar": 2.867027688578645, + "barbaracle": 2.6351621139003765, + "heliolisk": 3.4652964595465114, + "tyrantrum": 1.6543881100391515, + "aurorus": 2.683015298632635, + "hawlucha": 2.756187961457995, + "dedenne": 2.880936384953702, + "klefki": 2.446151252032305, + "trevenant": 2.552654913947225, + "gourgeist-average": 4.078911216700492, + "charjabug": 3.5591829861157995, + "vikavolt": 1.40480114410494, + "ribombee": 3.4480494620051494, + "lycanroc-midday": 4.150309351873332, + "lycanroc-midnight": 2.9164595345082684, + "mudsdale": 2.07678223306959, + "araquanid": 1.9899682018804488, + "lurantis": 1.9628441340239235, + "shiinotic": 3.6285109290399618, + "salazzle": 2.3503008970294395, + "bewear": 1.750910057832974, + "tsareena": 2.5360094910836546, + "comfey": 4.462316216467926, + "oranguru": 2.507748303711069, + "passimian": 2.2570009048197317, + "palossand": 2.9303191533151707, + "pyukumuku": 49.100350456255235, + "togedemaru": 1.8087173409345765, + "mimikyu-disguised": 3.7211113186791707, + "greedent": 2.100637296208189, + "orbeetle": 1.382754570208955, + "thievul": 1.5843705190035116, + "eldegoss": 3.4329937715130323, + "dubwool": 2.9365175413589597, + "drednaw": 2.3800438993994266, + "boltund": 4.793610433733935, + "carkol": 2.2090062946310445, + "coalossal": 1.8905872839725406, + "sandaconda": 4.239699382901074, + "cramorant": 5.172151387976305, + "barraskewda": 6.280214881009645, + "toxtricity-amped": 2.279039892279083, + "centiskorch": 1.54086557785853, + "grapploct": 1.7377232572160013, + "polteageist": 2.5048139905888744, + "hatterene": 2.416462841062463, + "grimmsnarl": 3.69560436407866, + "obstagoon": 2.553900538256981, + "perrserker": 2.7525490955254215, + "alcremie": 1.3064051867516708, + "falinks": 3.0119322371161807, + "pincurchin": 3.148896375712746, + "frosmoth": 1.8499922932068782, + "indeedee-male": 2.7939721364632653, + "morpeko": 2.7328261303180255, + "copperajah": 1.9171908091923742, + "duraludon": 1.1702504097698232, + "drakloak": 3.5913727789884895 }, "gastrodon": { - "ivysaur": 2.414671211425958, - "charmeleon": 5.676165267529387, - "wartortle": 2.533174084467264, - "butterfree": 6.152691829337552, - "raichu": 6.0636091067074585, - "raichu-alola": 4.312086546954365, - "sandslash": 2.504031775166732, - "sandslash-alola": 1.9786321667498736, - "nidoqueen": 3.7983738178699493, - "nidoking": 2.5357529689428473, - "clefairy": 8.759114881182601, - "clefable": 2.272537923395797, - "jigglypuff": 28.525598957084448, - "wigglytuff": 2.1212044562956294, - "gloom": 5.463742888015433, - "vileplume": 2.2397998210390178, - "dugtrio": 5.388215331331451, - "dugtrio-alola": 4.886322084446688, - "persian": 4.363880698379781, - "persian-alola": 4.651690519166646, - "golduck": 2.810725266105533, - "poliwrath": 1.7054608892236098, - "kadabra": 4.723708364515533, - "machoke": 3.9393926001459825, - "tentacruel": 2.3716092739955394, - "slowbro": 1.8550694312034937, - "magneton": 3.4747057787534334, - "haunter": 4.161995488522589, - "kingler": 2.0694060523512547, - "exeggutor": 2.296747332153926, - "marowak": 3.843593516557187, - "marowak-alola": 2.7167425029895838, - "hitmonlee": 2.7052427869672404, - "hitmonchan": 2.3993009611216056, - "lickitung": 2.020857926099157, - "weezing": 1.6085641513967577, - "weezing-galar": 2.5907824269622655, - "rhydon": 3.2685341605092457, - "chansey": 31.25671831616056, - "tangela": 3.3344441649384486, - "kangaskhan": 1.8504509355969492, - "seadra": 3.6124006498342336, - "seaking": 2.298613152627058, - "starmie": 1.5751003911519315, - "mr-mime": 7.602592905166208, - "mr-mime-galar": 4.113909657402493, - "scyther": 3.601078958558655, - "jynx": 5.278858453549235, - "electabuzz": 3.273475734732017, - "magmar": 2.645606220348374, - "tauros": 1.9460683684914106, - "ditto": 3.5400601259364253, - "vaporeon": 3.102816849670941, - "jolteon": 2.239246521281065, - "flareon": 3.936460567286346, - "porygon": 2.9892574793178213, - "dragonair": 1.7498168912649672, - "noctowl": 6.6015818712299215, - "lanturn": 1.9254918192747255, - "togetic": 5.936782590542865, - "xatu": 4.033285229512087, - "bellossom": 2.203883611069927, - "azumarill": 1.9770858892461307, - "sudowoodo": 3.050025505658701, - "politoed": 2.418344207276113, - "quagsire": 4.6220255705307025, - "slowking": 2.750582028425617, - "dunsparce": 3.2997762626796536, - "qwilfish": 3.070098937222896, - "sneasel": 2.456918169302047, - "piloswine": 1.9784497102475522, - "octillery": 2.233239453381919, - "mantine": 2.8539731435495677, - "skarmory": 1.8801055984024808, - "hitmontop": 2.7527660503022857, - "miltank": 3.409481706156377, - "grovyle": 7.102150251375511, - "sceptile": 1.3172771086070836, - "combusken": 4.596866985904207, - "blaziken": 2.2522370702529386, - "marshtomp": 2.519840984982634, - "swampert": 1.2973666139276705, - "linoone": 5.2012553415581575, - "linoone-galar": 4.981860649196186, - "pelipper": 5.991012441732352, - "ninjask": 10.178447617333255, - "exploud": 1.703369912839662, - "lairon": 2.826429362695361, - "manectric": 1.9109835058359028, - "roselia": 3.1932317043059104, - "sharpedo": 5.3179234609232875, - "wailmer": 6.10995083045812, - "torkoal": 2.3761504861630165, - "flygon": 2.4585378784235195, - "altaria": 1.7944063807932458, - "whiscash": 2.133943508763632, - "crawdaunt": 2.031526651785176, - "claydol": 4.602658720188445, - "cradily": 2.189778547512056, - "armaldo": 2.3706583604247564, - "dusclops": 3.440653169475801, - "absol": 2.1322679887238953, - "glalie": 4.317255437622629, - "sealeo": 3.322852714730882, - "relicanth": 1.820601890447547, - "metang": 3.0542964098820735, - "luxray": 4.228964556386865, - "vespiquen": 3.6257159731319626, - "cherrim": 5.0301048864712, - "drifblim": 5.00690873881574, - "lopunny": 3.7425637210515568, - "skuntank": 1.5152234401796627, - "bronzong": 3.269388683672741, - "munchlax": 2.6832845637709513, - "drapion": 2.3486535199038965, - "abomasnow": 2.8568656875047838, - "froslass": 3.047087481902527, - "rotom": 4.143146265364297, - "stoutland": 2.423238728950118, - "liepard": 7.434323034162507, - "musharna": 1.5170892466183559, - "unfezant": 6.175062739980727, - "boldore": 3.645531962497449, - "swoobat": 5.768504379337457, - "audino": 2.3734751411100996, - "gurdurr": 2.0894847153048124, - "palpitoad": 3.910041611707615, - "seismitoad": 6.886009046886064, - "scolipede": 3.192407759821252, - "whimsicott": 2.4662012376869615, - "lilligant": 2.6204104512323183, - "basculin-red-striped": 2.5061130204562208, - "basculin-blue-striped": 3.2748526705789818, - "krookodile": 3.613413820917227, - "maractus": 1.8136146510442495, - "crustle": 2.4772827956574632, - "sigilyph": 2.4928163678111255, - "cofagrigus": 2.5505056375388895, - "garbodor": 1.9468732443070702, - "cinccino": 4.624402820249124, - "vanillish": 2.3254649080320067, - "emolga": 3.6561154463562815, - "escavalier": 1.8395737904364782, - "amoonguss": 2.0989232576458, - "jellicent": 1.4106553100534476, - "galvantula": 1.8865397963122668, - "klang": 3.1081231704993977, - "klinklang": 3.3827929916698953, - "beheeyem": 2.0513446830225575, - "lampent": 3.894035326916164, - "fraxure": 1.3532891382395298, - "beartic": 1.826109524420938, - "cryogonal": 1.9609805100035538, - "accelgor": 3.460413365417307, - "stunfisk": 1.8443340237346768, - "stunfisk-galar": 3.011272682671958, - "mienshao": 3.5007345743487144, - "druddigon": 1.6876587185909515, - "golurk": 2.493712105928339, - "bisharp": 2.369802747933507, - "bouffalant": 1.3205186983561235, - "heatmor": 2.521119253604115, - "durant": 2.8610337035753646, - "diggersby": 4.251390830432893, - "talonflame": 4.247060434197569, - "pangoro": 1.7635633619583668, - "doublade": 2.0745412224330755, - "malamar": 4.0027701715942845, - "barbaracle": 1.4473211681391676, - "heliolisk": 3.7991306182612625, - "tyrantrum": 1.4770591879607557, - "aurorus": 3.3802803752856767, - "hawlucha": 3.516988596493733, - "dedenne": 3.2798477843688527, - "klefki": 3.222747326672777, - "trevenant": 2.0640460154364435, - "gourgeist-average": 4.4070349491968965, - "charjabug": 4.293037102758795, - "vikavolt": 1.9728520723348026, - "ribombee": 5.017751564565518, - "lycanroc-midday": 4.588555959280848, - "lycanroc-midnight": 3.130237926947908, - "mudsdale": 1.986841338893048, - "araquanid": 2.609732819186834, - "lurantis": 2.1934328435569665, - "shiinotic": 4.164786018800862, - "salazzle": 4.4226236013635845, - "bewear": 1.7087958129883336, - "tsareena": 2.548422536378449, - "comfey": 3.9728512519593395, - "oranguru": 3.0146710302636976, - "passimian": 2.2591850007447265, - "palossand": 2.5299582565606347, - "pyukumuku": 41.65342293557044, - "togedemaru": 2.591629941093149, - "mimikyu-disguised": 4.249251882653425, - "greedent": 2.111339716301792, - "orbeetle": 1.9867634565599501, - "thievul": 2.167695545776149, - "eldegoss": 3.383518021121451, - "dubwool": 2.6007477789240396, - "drednaw": 1.3176538946543883, - "boltund": 5.145018745894848, - "carkol": 4.427714059708095, - "coalossal": 3.5024877871895312, - "sandaconda": 3.6303607916575564, - "cramorant": 6.078959227892347, - "barraskewda": 4.095366585052782, - "toxtricity-amped": 2.9412945004312423, - "centiskorch": 3.139079465676055, - "grapploct": 1.6948894056291253, - "polteageist": 2.571968387045863, - "hatterene": 2.5843761214815286, - "grimmsnarl": 4.018876682097103, - "obstagoon": 2.677267515024158, - "perrserker": 3.226672287029233, - "alcremie": 1.5387885102103391, - "falinks": 2.9892346983776443, - "pincurchin": 3.1650426116678174, - "frosmoth": 3.814139560049752, - "indeedee-male": 3.7897051863077498, - "morpeko": 3.2267050447246404, - "copperajah": 2.5607242766412512, - "duraludon": 1.2677584079641202, - "drakloak": 3.8465400797559424, - "gastrodon": 2.2600282807216505 + "ivysaur": 2.4069743275463433, + "charmeleon": 5.697456262446911, + "wartortle": 2.535420827535323, + "butterfree": 6.155305218842989, + "raichu": 6.087487132579152, + "raichu-alola": 4.327124812994098, + "sandslash": 2.5065746447574617, + "sandslash-alola": 1.9783474349463765, + "nidoqueen": 3.806740004100302, + "nidoking": 2.5420988240749964, + "clefairy": 8.753923165925194, + "clefable": 2.2771815196775926, + "jigglypuff": 28.566596484207373, + "wigglytuff": 2.1235969243005424, + "gloom": 5.470817447204324, + "vileplume": 2.232794755055952, + "dugtrio": 5.4022324927018825, + "dugtrio-alola": 4.895607751818966, + "persian": 4.366704377078126, + "persian-alola": 4.6593153194469865, + "golduck": 2.811766808117134, + "poliwrath": 1.7024254371821537, + "kadabra": 4.734580776339329, + "machoke": 3.942664891950689, + "tentacruel": 2.3753201174064538, + "slowbro": 1.8569751427792824, + "magneton": 3.4832421675848764, + "haunter": 4.15354351865365, + "kingler": 2.067954077176333, + "exeggutor": 2.293955132527353, + "marowak": 3.8497577291661536, + "marowak-alola": 2.7233038209949907, + "hitmonlee": 2.709787876162796, + "hitmonchan": 2.4042920761407327, + "lickitung": 2.0246303073239584, + "weezing": 1.6110869854687373, + "weezing-galar": 2.5940754009851767, + "rhydon": 3.2738194743727336, + "chansey": 31.327494691258487, + "tangela": 3.3143223574868896, + "kangaskhan": 1.851604129603263, + "seadra": 3.610804571732017, + "seaking": 2.3008478321699344, + "starmie": 1.577536052968756, + "mr-mime": 7.618031998926963, + "mr-mime-galar": 4.122555409003834, + "scyther": 3.606780932568452, + "jynx": 5.281579305003972, + "electabuzz": 3.2874587589182, + "magmar": 2.6565664155781477, + "tauros": 1.9469859193251864, + "ditto": 3.5245482959809955, + "vaporeon": 3.102235235310971, + "jolteon": 2.247146297340297, + "flareon": 3.9512805517534484, + "porygon": 2.9947042442932457, + "dragonair": 1.7516988645288207, + "noctowl": 6.614798473219494, + "lanturn": 1.9307298357449545, + "togetic": 5.951824852106055, + "xatu": 4.040216508657874, + "bellossom": 2.197627723607729, + "azumarill": 1.9794326481110995, + "sudowoodo": 3.0543466058533286, + "politoed": 2.420571281609541, + "quagsire": 4.625947135618847, + "slowking": 2.753997682468883, + "dunsparce": 3.3032871664206094, + "qwilfish": 3.0710960509800156, + "sneasel": 2.460869672092951, + "piloswine": 1.9820304815020833, + "octillery": 2.235826224687222, + "mantine": 2.855823083355391, + "skarmory": 1.8806970562652325, + "hitmontop": 2.7546239887203328, + "miltank": 3.409697345972969, + "grovyle": 7.082455829499397, + "sceptile": 1.3126463049778758, + "combusken": 4.608389720662477, + "blaziken": 2.258389578244723, + "marshtomp": 2.521955433797321, + "swampert": 1.2990334082839459, + "linoone": 5.204121993348904, + "linoone-galar": 4.98761670594126, + "pelipper": 5.991524229309631, + "ninjask": 10.195721539410805, + "exploud": 1.7055200062986717, + "lairon": 2.829857909593105, + "manectric": 1.9167971085184397, + "roselia": 3.1853486252619154, + "sharpedo": 5.321794216946632, + "wailmer": 6.115621203429284, + "torkoal": 2.3824806859047407, + "flygon": 2.4610614767861607, + "altaria": 1.7969703483978445, + "whiscash": 2.1357961624370025, + "crawdaunt": 2.032164401269207, + "claydol": 4.614589715480205, + "cradily": 2.1875745975282728, + "armaldo": 2.3756828032267876, + "dusclops": 3.441439377821807, + "absol": 2.1362769248214355, + "glalie": 4.322879155507283, + "sealeo": 3.326153667096963, + "relicanth": 1.820646558719774, + "metang": 3.059318776069499, + "luxray": 4.240633358761704, + "vespiquen": 3.631777849453739, + "cherrim": 5.013776163946485, + "gastrodon": 2.2600282807216505, + "drifblim": 5.0194223777523455, + "lopunny": 3.745750468960943, + "skuntank": 1.518208891065337, + "bronzong": 3.2733405423217548, + "munchlax": 2.6916401414273263, + "drapion": 2.3517493363592434, + "abomasnow": 2.8499757906532226, + "froslass": 3.0495536547298765, + "rotom": 4.153262273481252, + "stoutland": 2.424048427024039, + "liepard": 7.445436535010868, + "musharna": 1.516658304733391, + "unfezant": 6.18074963458321, + "boldore": 3.6490262822282054, + "swoobat": 5.77841657467716, + "audino": 2.377188007510619, + "gurdurr": 2.0892170773106704, + "palpitoad": 3.914537319055662, + "seismitoad": 6.896928245107988, + "scolipede": 3.1955933305035282, + "whimsicott": 2.4603011128869303, + "lilligant": 2.6123127229200467, + "basculin-red-striped": 2.506270377783578, + "basculin-blue-striped": 3.2758042679380197, + "krookodile": 3.620507969462671, + "maractus": 1.8049354566369593, + "crustle": 2.4816323938495928, + "sigilyph": 2.497949797107023, + "cofagrigus": 2.5508160074547943, + "garbodor": 1.9508182932413431, + "cinccino": 4.627474187159562, + "vanillish": 2.3290186838515803, + "emolga": 3.670698813297893, + "escavalier": 1.8405985493387256, + "amoonguss": 2.0953860119481083, + "jellicent": 1.4081867108612345, + "galvantula": 1.8946151263852835, + "klang": 3.116600835268227, + "klinklang": 3.3851033756570588, + "beheeyem": 2.056057197448823, + "lampent": 3.9076863017954313, + "fraxure": 1.3528297715598472, + "beartic": 1.8286535034584155, + "cryogonal": 1.9631065257348577, + "accelgor": 3.4687842096874073, + "stunfisk": 1.8503410085362126, + "stunfisk-galar": 3.0151785576612014, + "mienshao": 3.5040198874151365, + "druddigon": 1.6892929622645783, + "golurk": 2.4963360909199945, + "bisharp": 2.3704281543733297, + "bouffalant": 1.3224456508533113, + "heatmor": 2.5269083015752436, + "durant": 2.8629878565287576, + "diggersby": 4.259199148863292, + "talonflame": 4.2644407042626495, + "pangoro": 1.7649855551978924, + "doublade": 2.0736152613618284, + "malamar": 4.0133567749833565, + "barbaracle": 1.447105136337869, + "heliolisk": 3.8004056550141323, + "tyrantrum": 1.4769101945874996, + "aurorus": 3.389745299074957, + "hawlucha": 3.519391988576934, + "dedenne": 3.2894767675648295, + "klefki": 3.2268532563731043, + "trevenant": 2.05426995837189, + "gourgeist-average": 4.4054604227846, + "charjabug": 4.30854390411829, + "vikavolt": 1.9783360451442098, + "ribombee": 5.026497263362566, + "lycanroc-midday": 4.601179885990116, + "lycanroc-midnight": 3.1365744924233336, + "mudsdale": 1.9896953218943971, + "araquanid": 2.611271301763177, + "lurantis": 2.188716015107726, + "shiinotic": 4.167422145143035, + "salazzle": 4.439125523375596, + "bewear": 1.7077433830586042, + "tsareena": 2.5388976392599902, + "comfey": 3.9658633926742466, + "oranguru": 3.020321913076281, + "passimian": 2.2602835085523454, + "palossand": 2.5322507077857526, + "pyukumuku": 41.69331972374926, + "togedemaru": 2.5980969964385094, + "mimikyu-disguised": 4.249925180825973, + "greedent": 2.1127022924241574, + "orbeetle": 1.9908296586237402, + "thievul": 2.1732380878355477, + "eldegoss": 3.3720836298856725, + "dubwool": 2.596069900955174, + "drednaw": 1.318364303409684, + "boltund": 5.15911927314243, + "carkol": 4.445081551053396, + "coalossal": 3.51474202985875, + "sandaconda": 3.633430450464032, + "cramorant": 6.086384371908294, + "barraskewda": 4.095205868685422, + "toxtricity-amped": 2.9485449562634143, + "centiskorch": 3.1523196445849697, + "grapploct": 1.695855836478609, + "polteageist": 2.567120435564527, + "hatterene": 2.5878189234428812, + "grimmsnarl": 4.025786543766163, + "obstagoon": 2.6806172960655523, + "perrserker": 3.229976883291638, + "alcremie": 1.5396162711573471, + "falinks": 2.989547071061825, + "pincurchin": 3.1749118957103626, + "frosmoth": 3.822300003815923, + "indeedee-male": 3.8003197661218886, + "morpeko": 3.2386514009038736, + "copperajah": 2.5646121519463243, + "duraludon": 1.2682966757324257, + "drakloak": 3.8438084018752 }, "drifblim": { - "ivysaur": 3.8500720712490786, - "charmeleon": 3.593719429812099, - "wartortle": 3.1664663498314662, - "butterfree": 5.405789463045515, - "raichu": 4.457731855859079, - "raichu-alola": 2.6813720627492357, - "sandslash": 2.288105658399452, - "sandslash-alola": 1.7495293696696619, - "nidoqueen": 3.3602473895694986, - "nidoking": 2.06370155858599, - "clefairy": 8.582090399946765, - "clefable": 1.8196081797030232, - "jigglypuff": 24.866352929347734, - "wigglytuff": 1.9201026406874786, - "gloom": 6.786923009293174, - "vileplume": 3.7601327337267265, - "dugtrio": 3.1752764140981307, - "dugtrio-alola": 2.742724576955121, - "persian": 4.495509716889645, - "persian-alola": 3.3589827426655785, - "golduck": 3.727713064265004, - "poliwrath": 2.438126842185805, - "kadabra": 3.4851562585348406, - "machoke": 4.393565687750595, - "tentacruel": 2.5288343746411517, - "slowbro": 2.143765802410027, - "magneton": 2.387318324934019, - "haunter": 4.9835345104547795, - "kingler": 3.535016001324788, - "exeggutor": 1.7641077558702938, - "marowak": 2.9423670867524994, - "marowak-alola": 1.800655561133323, - "hitmonlee": 2.747630001379881, - "hitmonchan": 2.177222342072968, - "lickitung": 1.68178809764591, - "weezing": 2.0286435519547377, - "weezing-galar": 3.4265981185126284, - "rhydon": 2.31684874515015, - "chansey": 23.372086317683817, - "tangela": 5.552849963953964, - "kangaskhan": 1.7598103608950126, - "seadra": 5.716424143378349, - "seaking": 2.8523876772864334, - "starmie": 1.557039990777112, - "mr-mime": 5.93399551080465, - "mr-mime-galar": 2.987835448029892, - "scyther": 3.0790299141510435, - "jynx": 3.6162950921380275, - "electabuzz": 2.0264329115338477, - "magmar": 1.5500006258714514, - "tauros": 2.1238208929544964, - "ditto": 8.556070462111158, - "vaporeon": 3.6653584801335715, - "jolteon": 1.6832177350019393, - "flareon": 2.059627186197076, - "porygon": 2.4013192223090405, - "dragonair": 1.5706758622879082, - "noctowl": 6.470722432710941, - "lanturn": 1.6362571930463212, - "togetic": 5.932936837810612, - "xatu": 4.424115780478176, - "bellossom": 2.2486709376402496, - "azumarill": 2.651302974777363, - "sudowoodo": 2.505626980558404, - "politoed": 3.0853013820517337, - "quagsire": 4.720715322280691, - "slowking": 2.5336478637936932, - "dunsparce": 2.8728970616843323, - "qwilfish": 4.327623032937375, - "sneasel": 1.7837472407194972, - "piloswine": 1.3722440260669932, - "octillery": 2.8405372586254938, - "mantine": 3.385308063786943, - "skarmory": 2.676472448189346, - "hitmontop": 3.1664176774035595, - "miltank": 3.820739422567917, - "grovyle": 7.943055630616241, - "sceptile": 1.348334325797872, - "combusken": 4.279275830163275, - "blaziken": 1.9821070577519948, - "marshtomp": 2.2729429808940473, - "swampert": 1.1358176635892876, - "linoone": 5.00121485037459, - "linoone-galar": 3.6728618572904823, - "pelipper": 11.684554599292989, - "ninjask": 9.589035147554117, - "exploud": 1.5074406387215495, - "lairon": 2.10179883426997, - "manectric": 1.6740366905893793, - "roselia": 4.532671662952934, - "sharpedo": 5.277965446109683, - "wailmer": 7.592052359243333, - "torkoal": 1.9199685606649317, - "flygon": 2.284276118136878, - "altaria": 1.4690073963297818, - "whiscash": 1.918452464720882, - "crawdaunt": 2.4180206491340166, - "claydol": 2.734548324556604, - "cradily": 2.1014202796230994, - "armaldo": 1.8099569726171136, - "dusclops": 2.837783852352544, - "absol": 1.692220980991844, - "glalie": 3.3047933141242463, - "sealeo": 3.4245674528630294, - "relicanth": 2.161107512049378, - "metang": 2.558063495002162, - "luxray": 3.4684977634528034, - "vespiquen": 3.3495915194255566, - "cherrim": 5.99785982368938, - "gastrodon": 1.9860402914665052, - "lopunny": 3.8124589088306853, - "skuntank": 1.2431675293706492, - "bronzong": 2.821249741941849, - "munchlax": 1.9785654090515612, - "drapion": 2.184088514244714, - "abomasnow": 2.9078615937176115, - "froslass": 2.2979778293541697, - "rotom": 2.935438603849965, - "stoutland": 2.726058518934374, - "liepard": 5.831178920338452, - "musharna": 1.4359293886452824, - "unfezant": 7.61301254543627, - "boldore": 3.30648889488309, - "swoobat": 6.342960967410955, - "audino": 2.484310975850764, - "gurdurr": 3.2973351484546756, - "palpitoad": 3.815942723402599, - "seismitoad": 6.756689938501912, - "scolipede": 3.806326213504258, - "whimsicott": 3.015541144011147, - "lilligant": 3.1202712760511595, - "basculin-red-striped": 3.170744850523786, - "basculin-blue-striped": 4.082787422075185, - "krookodile": 1.9187192699616609, - "maractus": 2.1047665246050262, - "crustle": 2.0482809433983213, - "sigilyph": 2.6832830546069637, - "cofagrigus": 2.269749427029727, - "garbodor": 2.309412315030535, - "cinccino": 4.376139335233508, - "vanillish": 1.8927964178168475, - "emolga": 2.46525724175907, - "escavalier": 1.825342610424474, - "amoonguss": 3.1270360416071155, - "jellicent": 1.6051101770418854, - "galvantula": 1.3396158314183397, - "klang": 2.351414293703529, - "klinklang": 3.3513985322135564, - "beheeyem": 1.5775857050191502, - "lampent": 2.373132492495579, - "fraxure": 1.5145558025274235, - "beartic": 1.4819168834096583, - "cryogonal": 1.3142802390018837, - "accelgor": 3.1689229086153614, - "stunfisk": 1.1817192299868091, - "stunfisk-galar": 1.9041057205025078, - "mienshao": 4.155300057717581, - "druddigon": 1.6250072997400464, - "golurk": 1.7349192939844678, - "bisharp": 2.149699843913923, - "bouffalant": 1.245339355225859, - "heatmor": 1.773352227701949, - "durant": 2.9858017370507106, - "diggersby": 3.2316726447858484, - "talonflame": 3.4076771514070505, - "pangoro": 1.6055889035769078, - "doublade": 2.5344093969211174, - "malamar": 2.379779020027986, - "barbaracle": 1.738974083654421, - "heliolisk": 3.2021488254552106, - "tyrantrum": 1.5871875511460196, - "aurorus": 1.932572484264272, - "hawlucha": 4.197114421430236, - "dedenne": 2.531136336840821, - "klefki": 2.7946946941088084, - "trevenant": 3.0385677987753876, - "gourgeist-average": 4.555237101907844, - "charjabug": 3.5984076330915666, - "vikavolt": 1.8153596908042797, - "ribombee": 4.582470620150138, - "lycanroc-midday": 2.738861031627187, - "lycanroc-midnight": 1.9813474629116834, - "mudsdale": 1.5612819058290537, - "araquanid": 2.7050362840145663, - "lurantis": 2.524623939251774, - "shiinotic": 4.209483933129892, - "salazzle": 3.7403275879642486, - "bewear": 2.3822221933237806, - "tsareena": 2.9698759795939855, - "comfey": 4.211196898144615, - "oranguru": 2.4000857693309285, - "passimian": 2.8880156268856707, - "palossand": 1.9876925321101289, - "pyukumuku": 56.136148746208654, - "togedemaru": 1.658811574184483, - "mimikyu-disguised": 3.3395490912739447, - "greedent": 2.1479621110860045, - "orbeetle": 1.7993210469939025, - "thievul": 1.459484876014034, - "eldegoss": 3.9193778853920955, - "dubwool": 3.2184934263250673, - "drednaw": 1.3526491233549751, - "boltund": 3.700365011176901, - "carkol": 2.031806524954229, - "coalossal": 1.7953402362043342, - "sandaconda": 3.3393859919988733, - "cramorant": 7.0578343890522, - "barraskewda": 5.084986135334547, - "toxtricity-amped": 3.411659524081646, - "centiskorch": 2.0158489370980286, - "grapploct": 2.164801620866208, - "polteageist": 2.2756041469908146, - "hatterene": 2.2769509824108294, - "grimmsnarl": 3.3205502933593554, - "obstagoon": 2.2742003532501265, - "perrserker": 2.8045577784547193, - "alcremie": 1.2971845341583317, - "falinks": 4.299882723086937, - "pincurchin": 2.6024357482541234, - "frosmoth": 2.7385185692610228, - "indeedee-male": 2.702170251590738, - "morpeko": 1.8745048596743406, - "copperajah": 2.274236139658572, - "duraludon": 1.2180400511307967, - "drakloak": 3.704723893747821, - "drifblim": 4.484625523192346 + "ivysaur": 3.856642439071274, + "charmeleon": 3.592331368117106, + "wartortle": 3.168560554482581, + "butterfree": 5.416375617460671, + "raichu": 4.446235604830849, + "raichu-alola": 2.6728362205775467, + "sandslash": 2.288683623548293, + "sandslash-alola": 1.745943738655728, + "nidoqueen": 3.3624892173147316, + "nidoking": 2.0621602490997297, + "clefairy": 8.585506666298224, + "clefable": 1.817302193505329, + "jigglypuff": 24.861496566246004, + "wigglytuff": 1.920944199539176, + "gloom": 6.793209244558815, + "vileplume": 3.76886975379064, + "dugtrio": 3.173068591520421, + "dugtrio-alola": 2.7367281813471562, + "persian": 4.503611033565504, + "persian-alola": 3.3465522607734073, + "golduck": 3.732985719515634, + "poliwrath": 2.4466096908869215, + "kadabra": 3.480194016703609, + "machoke": 4.39336531763869, + "tentacruel": 2.5317558917046616, + "slowbro": 2.1442067439242756, + "magneton": 2.380251713828857, + "haunter": 4.984422037240378, + "kingler": 3.545638131181498, + "exeggutor": 1.7636429786109353, + "marowak": 2.9386820360035095, + "marowak-alola": 1.7984488328380346, + "hitmonlee": 2.75407042297545, + "hitmonchan": 2.1749193232785453, + "lickitung": 1.6797663569061139, + "weezing": 2.0313657917156966, + "weezing-galar": 3.4328940622913158, + "rhydon": 2.313764700058885, + "chansey": 23.387961163640696, + "tangela": 5.5617527731687835, + "kangaskhan": 1.7596264185454489, + "seadra": 5.727367262763169, + "seaking": 2.8559117372332183, + "starmie": 1.5550476507836195, + "mr-mime": 5.9248401114856275, + "mr-mime-galar": 2.97987571089583, + "scyther": 3.0799810449528513, + "jynx": 3.6059802205664964, + "electabuzz": 2.0204767119964773, + "magmar": 1.549906232814478, + "tauros": 2.12769759028295, + "ditto": 8.50362524367231, + "vaporeon": 3.6704303003607364, + "jolteon": 1.6761469085883536, + "flareon": 2.0561742001423426, + "porygon": 2.3963322779994938, + "dragonair": 1.566440379047842, + "noctowl": 6.47823376242536, + "lanturn": 1.6303863060040609, + "togetic": 5.936155548826758, + "xatu": 4.424452722579941, + "bellossom": 2.2486187819842685, + "azumarill": 2.6544780575794507, + "sudowoodo": 2.5056047204776433, + "politoed": 3.091704606169709, + "quagsire": 4.720920633177546, + "slowking": 2.5297245005660614, + "dunsparce": 2.8683922081119193, + "qwilfish": 4.337268780626339, + "sneasel": 1.7739678521314501, + "piloswine": 1.3688426480086562, + "octillery": 2.8441842431665973, + "mantine": 3.389555365143261, + "skarmory": 2.678849164400232, + "hitmontop": 3.1715783166505287, + "miltank": 3.8272081029468055, + "grovyle": 7.95098666645581, + "sceptile": 1.348689945756291, + "combusken": 4.291850207882722, + "blaziken": 1.9859928080940412, + "marshtomp": 2.2690297739978766, + "swampert": 1.134919616189948, + "linoone": 5.001381794029885, + "linoone-galar": 3.655858830947036, + "pelipper": 11.72850152758173, + "ninjask": 9.616750177255968, + "exploud": 1.5089359453896658, + "lairon": 2.0978640993665416, + "manectric": 1.6698471032864763, + "roselia": 4.537829712343409, + "sharpedo": 5.265810731432482, + "wailmer": 7.596038999220925, + "torkoal": 1.9221275942380323, + "flygon": 2.2821291051193695, + "altaria": 1.4680109743720506, + "whiscash": 1.9152239771132362, + "crawdaunt": 2.415679323887959, + "claydol": 2.727708632840088, + "cradily": 2.0991372656466285, + "armaldo": 1.8106455568504443, + "dusclops": 2.832618612190465, + "absol": 1.6875390737813136, + "glalie": 3.292744031812643, + "sealeo": 3.421547278665731, + "relicanth": 2.1588539538991585, + "metang": 2.552072343848686, + "luxray": 3.4631868929843193, + "vespiquen": 3.3563949644238935, + "cherrim": 6.004759919517555, + "gastrodon": 1.9831789886431919, + "drifblim": 4.484625523192346, + "lopunny": 3.8198570106058582, + "skuntank": 1.2388354260767185, + "bronzong": 2.8173087164050847, + "munchlax": 1.9764592866344055, + "drapion": 2.179405937273941, + "abomasnow": 2.902780031715558, + "froslass": 2.2906651945081045, + "rotom": 2.9262306820296544, + "stoutland": 2.734805212709103, + "liepard": 5.810075045226467, + "musharna": 1.4345678043384507, + "unfezant": 7.619370848764767, + "boldore": 3.3072884182070044, + "swoobat": 6.343613683951915, + "audino": 2.4868372348014347, + "gurdurr": 3.313369075384309, + "palpitoad": 3.816670763702148, + "seismitoad": 6.761908130173863, + "scolipede": 3.809185201847084, + "whimsicott": 3.0146531977922932, + "lilligant": 3.1233752389551395, + "basculin-red-striped": 3.1694276260744836, + "basculin-blue-striped": 4.080841218884448, + "krookodile": 1.9099158124911777, + "maractus": 2.104316168579274, + "crustle": 2.0493762122005683, + "sigilyph": 2.6833702906713714, + "cofagrigus": 2.2663869766183784, + "garbodor": 2.3157886707887694, + "cinccino": 4.3753707690623225, + "vanillish": 1.8882339942404607, + "emolga": 2.460051536466234, + "escavalier": 1.8275001939895, + "amoonguss": 3.132477731510722, + "jellicent": 1.6049962011348171, + "galvantula": 1.3364075933710529, + "klang": 2.345868821166022, + "klinklang": 3.352814790467246, + "beheeyem": 1.5741726225948174, + "lampent": 2.374474128364892, + "fraxure": 1.5142173897538589, + "beartic": 1.4797397366151275, + "cryogonal": 1.3099349551845032, + "accelgor": 3.1738318188630736, + "stunfisk": 1.1798150654280906, + "stunfisk-galar": 1.90101678570405, + "mienshao": 4.1631877069790875, + "druddigon": 1.6225062989476842, + "golurk": 1.7331092459522515, + "bisharp": 2.1437738567446223, + "bouffalant": 1.2461351004832908, + "heatmor": 1.7736097101888744, + "durant": 2.984789963012336, + "diggersby": 3.2318953937998467, + "talonflame": 3.410204082595439, + "pangoro": 1.6027739072603662, + "doublade": 2.5373854071228186, + "malamar": 2.3706878876033763, + "barbaracle": 1.7407798949075746, + "heliolisk": 3.19828902547908, + "tyrantrum": 1.5866704693147744, + "aurorus": 1.9243270441664828, + "hawlucha": 4.204819605758628, + "dedenne": 2.525250230167367, + "klefki": 2.7931871568977216, + "trevenant": 3.043035416073284, + "gourgeist-average": 4.545686175731392, + "charjabug": 3.590728017254344, + "vikavolt": 1.815958975678682, + "ribombee": 4.586995581997067, + "lycanroc-midday": 2.7306276989710048, + "lycanroc-midnight": 1.9762982143000003, + "mudsdale": 1.5609909232255723, + "araquanid": 2.709009583492412, + "lurantis": 2.528240342687605, + "shiinotic": 4.2084686770721955, + "salazzle": 3.7445666303537455, + "bewear": 2.388606957464547, + "tsareena": 2.9692094239131093, + "comfey": 4.21331733529296, + "oranguru": 2.3960906050233532, + "passimian": 2.8921249830376548, + "palossand": 1.986547841323328, + "pyukumuku": 56.27178086344844, + "togedemaru": 1.6539411044223784, + "mimikyu-disguised": 3.3340267664246617, + "greedent": 2.1495043193886256, + "orbeetle": 1.7981202125447986, + "thievul": 1.4533307538561404, + "eldegoss": 3.92291188336936, + "dubwool": 3.226774977005743, + "drednaw": 1.3519899918479443, + "boltund": 3.685675263692879, + "carkol": 2.0288658305310587, + "coalossal": 1.7928905767882104, + "sandaconda": 3.341483887413255, + "cramorant": 7.052529428831972, + "barraskewda": 5.080359641069892, + "toxtricity-amped": 3.4094955207573276, + "centiskorch": 2.01795938081538, + "grapploct": 2.1724042396362564, + "polteageist": 2.273362751020155, + "hatterene": 2.27418523789843, + "grimmsnarl": 3.312375855121489, + "obstagoon": 2.267629985399804, + "perrserker": 2.797661719613141, + "alcremie": 1.2968337834207402, + "falinks": 4.31331447414296, + "pincurchin": 2.595822338170539, + "frosmoth": 2.7396946534345323, + "indeedee-male": 2.6955983299886257, + "morpeko": 1.8639534114863783, + "copperajah": 2.2742786529000574, + "duraludon": 1.2153215886010749, + "drakloak": 3.6939821052090323 }, "lopunny": { - "ivysaur": 3.4721455854154817, - "charmeleon": 4.007621693717835, - "wartortle": 2.6872475914019587, - "butterfree": 5.085881861658707, - "raichu": 5.161786768532205, - "raichu-alola": 3.755301110397328, - "sandslash": 1.951621227570043, - "sandslash-alola": 2.1847381045911654, - "nidoqueen": 2.9118844538451314, - "nidoking": 1.8166545413751245, - "clefairy": 9.714098713359995, - "clefable": 2.1641283932322564, - "jigglypuff": 27.80461642647417, - "wigglytuff": 2.060444455380329, - "gloom": 6.034885069783389, - "vileplume": 3.144231045170077, - "dugtrio": 3.8107149394896496, - "dugtrio-alola": 3.429407169136221, - "persian": 4.329971355616609, - "persian-alola": 4.365102993642213, - "golduck": 3.062906142573955, - "poliwrath": 1.8406662069471857, - "kadabra": 4.3578647726103865, - "machoke": 3.713456070314038, - "tentacruel": 2.5813266905514416, - "slowbro": 1.7045472808023496, - "magneton": 3.0061468213407165, - "haunter": 4.088662884545112, - "kingler": 2.075754260041996, - "exeggutor": 1.9727362302609386, - "marowak": 2.9039104413850794, - "marowak-alola": 1.7297341549566891, - "hitmonlee": 2.470636736236049, - "hitmonchan": 2.2560132121358816, - "lickitung": 1.9601860456121898, - "weezing": 1.474161788629805, - "weezing-galar": 2.437414119155125, - "rhydon": 2.0324845396305182, - "chansey": 30.861800630831013, - "tangela": 4.389657901260048, - "kangaskhan": 1.8407983912856536, - "seadra": 3.8233259003120015, - "seaking": 2.4860991127720213, - "starmie": 1.4540379151490943, - "mr-mime": 7.432814473376961, - "mr-mime-galar": 3.8203270489184025, - "scyther": 2.777729729493208, - "jynx": 4.88436594062679, - "electabuzz": 2.74141525309098, - "magmar": 1.7994408698793922, - "tauros": 1.849670778399441, - "ditto": 4.114207644272035, - "vaporeon": 3.4391063318748145, - "jolteon": 2.1596256717209625, - "flareon": 2.7205338920422877, - "porygon": 2.8732808684337643, - "dragonair": 1.87656148165821, - "noctowl": 6.271302262231802, - "lanturn": 2.0392653584476226, - "togetic": 5.478835226229082, - "xatu": 3.8563500179130514, - "bellossom": 2.4764831881305227, - "azumarill": 2.2304656731767625, - "sudowoodo": 2.2400024329063193, - "politoed": 2.6593952821018823, - "quagsire": 4.278094840650327, - "slowking": 2.556504382447083, - "dunsparce": 3.4186811564664152, - "qwilfish": 3.168442790106276, - "sneasel": 2.90977786714556, - "piloswine": 1.4843379102018186, - "octillery": 2.36318051487595, - "mantine": 2.7171269025110902, - "skarmory": 1.5501299541537967, - "hitmontop": 2.66741480691815, - "miltank": 3.376503189916108, - "grovyle": 8.282595969678509, - "sceptile": 1.537311605298651, - "combusken": 3.218536178702087, - "blaziken": 1.5983093736127356, - "marshtomp": 2.473647155405071, - "swampert": 1.2707048532085574, - "linoone": 5.461527976653834, - "linoone-galar": 5.851433755250596, - "pelipper": 5.734329823591516, - "ninjask": 7.8066311738049174, - "exploud": 1.648035643630602, - "lairon": 2.477953767808855, - "manectric": 1.787429983123666, - "roselia": 4.54107122183977, - "sharpedo": 5.029079830245717, - "wailmer": 6.567691333962722, - "torkoal": 1.7117569245755493, - "flygon": 2.364358485109012, - "altaria": 1.6545607655610073, - "whiscash": 2.064230815005809, - "crawdaunt": 1.921611489791899, - "claydol": 3.3927373240899774, - "cradily": 2.283540201385703, - "armaldo": 1.580381719495219, - "dusclops": 3.1559444174925817, - "absol": 2.0017399379276632, - "glalie": 4.141681465048661, - "sealeo": 3.2305524407190047, - "relicanth": 1.714107767369524, - "metang": 2.3609205713529935, - "luxray": 3.8008645285404885, - "vespiquen": 2.7071958506239957, - "cherrim": 6.194457113477545, - "gastrodon": 2.183643017180073, - "drifblim": 3.6335235748398844, - "skuntank": 1.4416710082697606, - "bronzong": 2.5827705283371243, - "munchlax": 2.4894086675744673, - "drapion": 2.2544229919415777, - "abomasnow": 3.3452174930724183, - "froslass": 2.581639832750433, - "rotom": 2.905893912296126, - "stoutland": 2.4030285618822615, - "liepard": 7.036083299166096, - "musharna": 1.5640963645712824, - "unfezant": 5.91728509897033, - "boldore": 2.7545297068603016, - "swoobat": 5.5074207693539785, - "audino": 2.2975828274758356, - "gurdurr": 1.9087665187195433, - "palpitoad": 3.832007579459973, - "seismitoad": 6.394262983872585, - "scolipede": 3.1575985466442793, - "whimsicott": 3.2240416385062884, - "lilligant": 3.1997141359306225, - "basculin-red-striped": 2.7222910773909073, - "basculin-blue-striped": 3.552319645638398, - "krookodile": 2.8076785639740844, - "maractus": 2.321802367278626, - "crustle": 1.6306736005745255, - "sigilyph": 2.339235706331453, - "cofagrigus": 2.3145470030093342, - "garbodor": 1.7831716817332501, - "cinccino": 4.590950038143072, - "vanillish": 2.2423929264322067, - "emolga": 3.063674379402828, - "escavalier": 1.5618245659653465, - "amoonguss": 2.720140309957281, - "jellicent": 1.3379819947868874, - "galvantula": 1.6042189811725738, - "klang": 2.7165336289339104, - "klinklang": 3.1143306811646956, - "beheeyem": 1.8789917942985976, - "lampent": 2.1093885696086865, - "fraxure": 1.4635324433966577, - "beartic": 1.7153722100330846, - "cryogonal": 2.0055699592575476, - "accelgor": 3.423356721055111, - "stunfisk": 1.3282339572741144, - "stunfisk-galar": 2.226798007988995, - "mienshao": 3.345397088487509, - "druddigon": 1.8075541656601923, - "golurk": 1.5454146523338381, - "bisharp": 2.8792795875577744, - "bouffalant": 1.2395109395013295, - "heatmor": 1.9122942438919959, - "durant": 2.3584691286737685, - "diggersby": 3.2239250108328426, - "talonflame": 2.928764659457041, - "pangoro": 1.6915145614292748, - "doublade": 1.515956775494831, - "malamar": 2.7632739293184647, - "barbaracle": 1.39318034783579, - "heliolisk": 4.0020747305853925, - "tyrantrum": 1.3490357368138046, - "aurorus": 3.0640680414382326, - "hawlucha": 3.3188708898328154, - "dedenne": 3.0325390389040754, - "klefki": 2.5091322844501, - "trevenant": 2.8396024439238685, - "gourgeist-average": 5.285677066759634, - "charjabug": 3.8213332610736974, - "vikavolt": 1.7957014295939686, - "ribombee": 5.037552790674302, - "lycanroc-midday": 3.2772469616837245, - "lycanroc-midnight": 2.214239931675249, - "mudsdale": 1.404007130524978, - "araquanid": 2.586657936188279, - "lurantis": 2.5022796405223104, - "shiinotic": 4.790964024917009, - "salazzle": 3.188632017908809, - "bewear": 1.7645187541256449, - "tsareena": 3.184887206836059, - "comfey": 4.63680478959502, - "oranguru": 2.7950100905153823, - "passimian": 2.1160360734626185, - "palossand": 1.7561645931929282, - "pyukumuku": 40.38719770214477, - "togedemaru": 2.2505596584130254, - "mimikyu-disguised": 3.7575210864220088, - "greedent": 2.0520477655842053, - "orbeetle": 1.9305360643104574, - "thievul": 1.985549257844855, - "eldegoss": 4.257282347051459, - "dubwool": 2.7565873820834685, - "drednaw": 1.207121246741135, - "boltund": 4.698860678366712, - "carkol": 2.2813406977429653, - "coalossal": 1.884266263574717, - "sandaconda": 2.853548080683914, - "cramorant": 5.82086479066213, - "barraskewda": 4.443675313503849, - "toxtricity-amped": 2.6853890721181415, - "centiskorch": 2.2520417087835787, - "grapploct": 1.6027722634683512, - "polteageist": 2.336798170976366, - "hatterene": 2.532900690820024, - "grimmsnarl": 3.7504676040691134, - "obstagoon": 3.035108710381029, - "perrserker": 2.9428744962109086, - "alcremie": 1.5767740074842909, - "falinks": 2.7986635031574267, - "pincurchin": 2.9271491799102027, - "frosmoth": 2.9102299393230924, - "indeedee-male": 3.6093256252817487, - "morpeko": 2.771714202236141, - "copperajah": 2.2363375895362916, - "duraludon": 1.3568696678662584, - "drakloak": 3.9084890688822878, - "lopunny": 3.553938276221384 + "ivysaur": 3.472563818993712, + "charmeleon": 4.008364024970264, + "wartortle": 2.686076983212355, + "butterfree": 5.084718279664621, + "raichu": 5.1577061284870975, + "raichu-alola": 3.753176112708574, + "sandslash": 1.9492746768780762, + "sandslash-alola": 2.182630556279431, + "nidoqueen": 2.913214014285802, + "nidoking": 1.8155281002756198, + "clefairy": 9.716207917655115, + "clefable": 2.1642119880338457, + "jigglypuff": 27.807835938267253, + "wigglytuff": 2.060284546316722, + "gloom": 6.033737969689982, + "vileplume": 3.1441364484329206, + "dugtrio": 3.8111742257850225, + "dugtrio-alola": 3.4289306925923198, + "persian": 4.32950837676257, + "persian-alola": 4.366589364982416, + "golduck": 3.061602660798612, + "poliwrath": 1.8384741359931454, + "kadabra": 4.3564488543939115, + "machoke": 3.7089013989539437, + "tentacruel": 2.5815794630720745, + "slowbro": 1.7028507712537586, + "magneton": 3.004492882427667, + "haunter": 4.08606435674378, + "kingler": 2.070945737898602, + "exeggutor": 1.971095846113564, + "marowak": 2.9016175110166365, + "marowak-alola": 1.7270552721296877, + "hitmonlee": 2.4674951424383336, + "hitmonchan": 2.2554983369071406, + "lickitung": 1.9608885810327148, + "weezing": 1.4726818832545767, + "weezing-galar": 2.4351562002210967, + "rhydon": 2.028586536054236, + "chansey": 30.89783978815876, + "tangela": 4.382875447667386, + "kangaskhan": 1.8406787914532492, + "seadra": 3.818986402862401, + "seaking": 2.485719872579474, + "starmie": 1.4532096762545945, + "mr-mime": 7.430811581442958, + "mr-mime-galar": 3.818811661605537, + "scyther": 2.7753653770063664, + "jynx": 4.885456467376679, + "electabuzz": 2.74120059876034, + "magmar": 1.8000788339968306, + "tauros": 1.8477445421835716, + "ditto": 4.082842666830422, + "vaporeon": 3.4405651326698443, + "jolteon": 2.1621912081935624, + "flareon": 2.724933810074255, + "porygon": 2.87443705475018, + "dragonair": 1.875926156985199, + "noctowl": 6.272005928434834, + "lanturn": 2.0402228611067765, + "togetic": 5.477131098331329, + "xatu": 3.853562186258671, + "bellossom": 2.4769449801617207, + "azumarill": 2.2309194395865255, + "sudowoodo": 2.2357276066603866, + "politoed": 2.6595764519218603, + "quagsire": 4.2723523804473835, + "slowking": 2.5550127961542586, + "dunsparce": 3.4227559833952634, + "qwilfish": 3.164433398573094, + "sneasel": 2.91274368250268, + "piloswine": 1.482737985729396, + "octillery": 2.3626495190693717, + "mantine": 2.718291409291151, + "skarmory": 1.5475435277659055, + "hitmontop": 2.66504085275943, + "miltank": 3.3743682491635694, + "grovyle": 8.278020858904952, + "sceptile": 1.5377711009014297, + "combusken": 3.2143595698201293, + "blaziken": 1.5969753478199145, + "marshtomp": 2.4730039119101104, + "swampert": 1.270897579820414, + "linoone": 5.466619720435524, + "linoone-galar": 5.857342665315368, + "pelipper": 5.726942922915768, + "ninjask": 7.800452663185883, + "exploud": 1.6476369615540207, + "lairon": 2.4759278176247754, + "manectric": 1.7872746781038986, + "roselia": 4.54258860944856, + "sharpedo": 5.02919747938353, + "wailmer": 6.5665536699531, + "torkoal": 1.7104693860923899, + "flygon": 2.3633107302319507, + "altaria": 1.654007621341362, + "whiscash": 2.0635265370992735, + "crawdaunt": 1.9209198758259982, + "claydol": 3.390420765693749, + "cradily": 2.2832823626823275, + "armaldo": 1.5782164797047655, + "dusclops": 3.1558824945438273, + "absol": 2.00241182793562, + "glalie": 4.14122142439567, + "sealeo": 3.231498863196453, + "relicanth": 1.7114938103939528, + "metang": 2.357002093355656, + "luxray": 3.7983402482436026, + "vespiquen": 2.7034115916026478, + "cherrim": 6.1948562105379015, + "gastrodon": 2.1829046520806923, + "drifblim": 3.624399067055304, + "lopunny": 3.553938276221384, + "skuntank": 1.4417173424357013, + "bronzong": 2.579600242890052, + "munchlax": 2.491470391634148, + "drapion": 2.253306560215938, + "abomasnow": 3.345036905943699, + "froslass": 2.5781588058653693, + "rotom": 2.902296232473976, + "stoutland": 2.402057239850925, + "liepard": 7.037762512486569, + "musharna": 1.563111585348607, + "unfezant": 5.913690567721444, + "boldore": 2.74838217987892, + "swoobat": 5.5032202207295935, + "audino": 2.298419079582262, + "gurdurr": 1.9038172048451265, + "palpitoad": 3.8320127484266147, + "seismitoad": 6.3901996742297005, + "scolipede": 3.1547352107978055, + "whimsicott": 3.2231866540344143, + "lilligant": 3.2000669018221686, + "basculin-red-striped": 2.7205324281637364, + "basculin-blue-striped": 3.5507286633373205, + "krookodile": 2.8081814433784054, + "maractus": 2.3225977651889296, + "crustle": 1.6266366740093257, + "sigilyph": 2.3374452641141876, + "cofagrigus": 2.3132479435802002, + "garbodor": 1.7802110648367186, + "cinccino": 4.5906384473827675, + "vanillish": 2.243016826211334, + "emolga": 3.062213375802674, + "escavalier": 1.5603526363470015, + "amoonguss": 2.7198083377484688, + "jellicent": 1.3351136853364671, + "galvantula": 1.6034786791616025, + "klang": 2.7165975069152037, + "klinklang": 3.1116747313031317, + "beheeyem": 1.8781766413148842, + "lampent": 2.104892919713691, + "fraxure": 1.4620243531737263, + "beartic": 1.714315749630078, + "cryogonal": 2.0081853325434755, + "accelgor": 3.423407433193845, + "stunfisk": 1.328072933136169, + "stunfisk-galar": 2.2264135463827834, + "mienshao": 3.3423376295730445, + "druddigon": 1.807245165351413, + "golurk": 1.5414521611503997, + "bisharp": 2.880207341975497, + "bouffalant": 1.2389895736904148, + "heatmor": 1.9128657099265038, + "durant": 2.3537208041465894, + "diggersby": 3.224428000905167, + "talonflame": 2.927717104490446, + "pangoro": 1.690236306628318, + "doublade": 1.509252436167954, + "malamar": 2.761384022705329, + "barbaracle": 1.3911292113498201, + "heliolisk": 4.006033212085377, + "tyrantrum": 1.3460664942273182, + "aurorus": 3.0652000497306258, + "hawlucha": 3.3130365304599327, + "dedenne": 3.0316880942035604, + "klefki": 2.5071470560155467, + "trevenant": 2.8315109533873466, + "gourgeist-average": 5.28601477481422, + "charjabug": 3.817886175473065, + "vikavolt": 1.7946691772627483, + "ribombee": 5.036943263338838, + "lycanroc-midday": 3.2755349394222613, + "lycanroc-midnight": 2.211207564319592, + "mudsdale": 1.4011634618307913, + "araquanid": 2.5869121396525445, + "lurantis": 2.5018387978412746, + "shiinotic": 4.790646195708788, + "salazzle": 3.187015093835284, + "bewear": 1.763776175778387, + "tsareena": 3.1843584222640087, + "comfey": 4.636932447953462, + "oranguru": 2.7943475266328512, + "passimian": 2.1126831165930113, + "palossand": 1.7541093006097381, + "pyukumuku": 40.309734435091535, + "togedemaru": 2.249546392650187, + "mimikyu-disguised": 3.75605041834213, + "greedent": 2.051107066876318, + "orbeetle": 1.929389622453784, + "thievul": 1.987496603063303, + "eldegoss": 4.258585699812569, + "dubwool": 2.7531926842756054, + "drednaw": 1.2057077526122786, + "boltund": 4.6970870683119, + "carkol": 2.279796906951576, + "coalossal": 1.882873469527425, + "sandaconda": 2.8504636468990867, + "cramorant": 5.818965494247889, + "barraskewda": 4.440304657280167, + "toxtricity-amped": 2.6827708535484702, + "centiskorch": 2.25225250615307, + "grapploct": 1.5993647529652826, + "polteageist": 2.331560168742125, + "hatterene": 2.5311738335399365, + "grimmsnarl": 3.7477096984884932, + "obstagoon": 3.0367544716628756, + "perrserker": 2.940713386984845, + "alcremie": 1.5773022571305937, + "falinks": 2.7933179704329865, + "pincurchin": 2.9262416421476503, + "frosmoth": 2.9097875505324113, + "indeedee-male": 3.613597588936837, + "morpeko": 2.7722875565100047, + "copperajah": 2.2340238072569205, + "duraludon": 1.355701358174947, + "drakloak": 3.902318159422279 }, "skuntank": { - "ivysaur": 3.6271404520932995, - "charmeleon": 4.01727327318221, - "wartortle": 2.7631122515318456, - "butterfree": 5.080242295557859, - "raichu": 5.519597930823103, - "raichu-alola": 5.513663811137052, - "sandslash": 1.9023749304075888, - "sandslash-alola": 2.972282538470565, - "nidoqueen": 2.746484995470049, - "nidoking": 1.7746852322077245, - "clefairy": 8.984972547263048, - "clefable": 1.9506743194433116, - "jigglypuff": 25.70745660159036, - "wigglytuff": 1.9814371930260268, - "gloom": 6.040854239888935, - "vileplume": 3.160654791906455, - "dugtrio": 3.66193275031001, - "dugtrio-alola": 3.4347095517025963, - "persian": 4.376289650515771, - "persian-alola": 4.025230483419927, - "golduck": 3.12261188629137, - "poliwrath": 1.5999891285267074, - "kadabra": 6.376795778662823, - "machoke": 3.4415744477265537, - "tentacruel": 2.683633451257121, - "slowbro": 2.515877631627378, - "magneton": 3.3172018004357375, - "haunter": 7.3893965120894665, - "kingler": 2.179463444109989, - "exeggutor": 2.5545575092577923, - "marowak": 2.8631279174613944, - "marowak-alola": 2.7212193487130873, - "hitmonlee": 2.1826353471924134, - "hitmonchan": 1.8879211593439478, - "lickitung": 1.926104916281488, - "weezing": 1.541805060011272, - "weezing-galar": 2.336365558001086, - "rhydon": 1.9578722654352163, - "chansey": 31.323042898121734, - "tangela": 6.034197348477946, - "kangaskhan": 1.854617809134134, - "seadra": 3.8023036616860093, - "seaking": 2.5159869874256646, - "starmie": 1.962709137931177, - "mr-mime": 9.123382522561393, - "mr-mime-galar": 5.370145678101628, - "scyther": 2.7912729393127216, - "jynx": 6.651472460915164, - "electabuzz": 2.739086618946792, - "magmar": 1.8151687290054859, - "tauros": 1.918425581872508, - "ditto": 1.92176126225741, - "vaporeon": 3.458732344069481, - "jolteon": 2.1302427691023365, - "flareon": 2.679489706607117, - "porygon": 2.8944162992046123, - "dragonair": 1.9126090506231543, - "noctowl": 6.430585770709399, - "lanturn": 2.0484239674347062, - "togetic": 5.075371187901338, - "xatu": 5.582804558660168, - "bellossom": 2.443421376324194, - "azumarill": 2.204600030367019, - "sudowoodo": 2.3191010584355913, - "politoed": 2.5543619296376203, - "quagsire": 4.536047810698288, - "slowking": 3.743549644158114, - "dunsparce": 3.357380999111286, - "qwilfish": 3.379980155521128, - "sneasel": 2.323908054242433, - "piloswine": 1.5377458034059135, - "octillery": 2.409229670902598, - "mantine": 2.753447642614759, - "skarmory": 2.3505965717245156, - "hitmontop": 2.219145347187575, - "miltank": 3.43594191908705, - "grovyle": 8.890567624346868, - "sceptile": 1.554578194058687, - "combusken": 2.837283668767798, - "blaziken": 1.3837940338200272, - "marshtomp": 2.4457669060061313, - "swampert": 1.2180992224961624, - "linoone": 5.403680382921723, - "linoone-galar": 4.432181396164677, - "pelipper": 5.840096812360266, - "ninjask": 7.518700610688436, - "exploud": 1.661912414903452, - "lairon": 2.2203812929198214, - "manectric": 1.8371840500334975, - "roselia": 4.775030746555474, - "sharpedo": 4.455197378584344, - "wailmer": 6.680042534530346, - "torkoal": 1.705760305211978, - "flygon": 2.350787938112914, - "altaria": 1.6505025306376657, - "whiscash": 2.1595214106353353, - "crawdaunt": 1.7601093128786953, - "claydol": 4.903422628979631, - "cradily": 2.4488462973485605, - "armaldo": 1.7576235676955982, - "dusclops": 5.005657733240959, - "absol": 1.7187234805766587, - "glalie": 4.3388866549243925, - "sealeo": 3.2122007490076605, - "relicanth": 1.7676439240621948, - "metang": 4.0586295574312, - "luxray": 3.8655194561708264, - "vespiquen": 2.7585832794090797, - "cherrim": 6.288388657646921, - "gastrodon": 2.2579056190109434, - "drifblim": 6.661840924348599, - "lopunny": 3.7936144465272585, - "bronzong": 5.011466587787348, - "munchlax": 2.590059467074516, - "drapion": 2.165752667347287, - "abomasnow": 4.087384503412328, - "froslass": 4.057125068157136, - "rotom": 5.559671781910117, - "stoutland": 2.435161897630323, - "liepard": 6.285399452795035, - "musharna": 2.4607790446782185, - "unfezant": 6.106306691932801, - "boldore": 2.8329980588345034, - "swoobat": 8.002559298456834, - "audino": 2.2489519620842247, - "gurdurr": 1.9001519426674087, - "palpitoad": 3.6354923881637493, - "seismitoad": 6.801851862754011, - "scolipede": 3.4183940047804553, - "whimsicott": 4.184486023759153, - "lilligant": 3.2387383080147734, - "basculin-red-striped": 2.920316429202182, - "basculin-blue-striped": 3.7095647199079034, - "krookodile": 2.413573807828606, - "maractus": 2.4290613737660727, - "crustle": 1.9470746800008296, - "sigilyph": 3.307710896593884, - "cofagrigus": 3.7984851853323005, - "garbodor": 1.977347800661494, - "cinccino": 4.650102310192392, - "vanillish": 2.19775464725872, - "emolga": 3.0862549935902077, - "escavalier": 2.387510035711256, - "amoonguss": 2.8501129074620133, - "jellicent": 2.417426122264977, - "galvantula": 1.6029393030391437, - "klang": 2.8374794910757233, - "klinklang": 3.5581724533919843, - "beheeyem": 2.744220511009978, - "lampent": 3.5524574668425437, - "fraxure": 1.509758933413425, - "beartic": 1.7449977634067457, - "cryogonal": 1.9996438018589706, - "accelgor": 3.285547708608562, - "stunfisk": 1.2723341477820953, - "stunfisk-galar": 2.2738023758866683, - "mienshao": 2.8723342868301565, - "druddigon": 1.8466664516800662, - "golurk": 2.535508926525031, - "bisharp": 2.8944387277642347, - "bouffalant": 1.342806894736988, - "heatmor": 1.9703044844952853, - "durant": 4.851604154958048, - "diggersby": 3.0133920485426184, - "talonflame": 2.9531357834413607, - "pangoro": 1.5570008559799584, - "doublade": 2.849202490968592, - "malamar": 3.090206111112567, - "barbaracle": 1.446601038590292, - "heliolisk": 3.849679591554199, - "tyrantrum": 1.4571133259233449, - "aurorus": 2.503015862916061, - "hawlucha": 3.1867225895977755, - "dedenne": 2.761264275471562, - "klefki": 3.1654909526096704, - "trevenant": 4.435300551727328, - "gourgeist-average": 6.635328898470304, - "charjabug": 4.030730630493167, - "vikavolt": 1.882796663872396, - "ribombee": 4.589315361161749, - "lycanroc-midday": 3.395150410687794, - "lycanroc-midnight": 2.4518710373649437, - "mudsdale": 1.5430473023804798, - "araquanid": 2.5852429588881867, - "lurantis": 2.5026032919508894, - "shiinotic": 5.310385357371825, - "salazzle": 3.300719042716241, - "bewear": 1.5627899444505133, - "tsareena": 3.3068461422477866, - "comfey": 4.425759396465441, - "oranguru": 4.6214276557359835, - "passimian": 2.043723943390614, - "palossand": 2.42820245603607, - "pyukumuku": 47.54657722149903, - "togedemaru": 2.368868806029804, - "mimikyu-disguised": 4.5614713170265215, - "greedent": 2.205560224380785, - "orbeetle": 2.6676209447889128, - "thievul": 1.718521035497154, - "eldegoss": 4.350513627168027, - "dubwool": 3.086188096247473, - "drednaw": 1.251520997283731, - "boltund": 4.976101054797646, - "carkol": 2.3364219828880772, - "coalossal": 1.8930583672019856, - "sandaconda": 2.737397264677341, - "cramorant": 6.287086094434176, - "barraskewda": 4.7123295227162885, - "toxtricity-amped": 2.6629581226150973, - "centiskorch": 2.1192229603196906, - "grapploct": 1.4422639628283451, - "polteageist": 4.780961608745626, - "hatterene": 2.865717232184249, - "grimmsnarl": 3.920111668700353, - "obstagoon": 2.2931642764603977, - "perrserker": 3.6621995195200006, - "alcremie": 1.3457469016715315, - "falinks": 2.759134710534049, - "pincurchin": 2.9511700843888677, - "frosmoth": 3.1152983938683585, - "indeedee-male": 5.215990571141861, - "morpeko": 2.373074976285611, - "copperajah": 2.424297378789389, - "duraludon": 1.4016223629644546, - "drakloak": 6.671576512473214, - "skuntank": 1.2884960521138251 + "ivysaur": 3.6388937474736065, + "charmeleon": 4.0201524507873545, + "wartortle": 2.7649137273894033, + "butterfree": 5.089433923662757, + "raichu": 5.527019241296427, + "raichu-alola": 5.53467314472223, + "sandslash": 1.9009860430736754, + "sandslash-alola": 2.9772357547840542, + "nidoqueen": 2.746674386244507, + "nidoking": 1.774195592989448, + "clefairy": 8.99724733779818, + "clefable": 1.9516747342053486, + "jigglypuff": 25.719955723471738, + "wigglytuff": 1.983508052751867, + "gloom": 6.0538195918217586, + "vileplume": 3.1682718882008762, + "dugtrio": 3.658767813155892, + "dugtrio-alola": 3.4367085122541163, + "persian": 4.378222010922769, + "persian-alola": 4.029048243354916, + "golduck": 3.1241132271246745, + "poliwrath": 1.5989659292189264, + "kadabra": 6.403174896686201, + "machoke": 3.4428844734206203, + "tentacruel": 2.6872252415359394, + "slowbro": 2.5274344348804405, + "magneton": 3.319935639959611, + "haunter": 7.427974313939431, + "kingler": 2.1787379793863955, + "exeggutor": 2.5634751377843212, + "marowak": 2.862186621038236, + "marowak-alola": 2.729553728555924, + "hitmonlee": 2.1826593211857284, + "hitmonchan": 1.8877160194047782, + "lickitung": 1.927075273632314, + "weezing": 1.5443498921175893, + "weezing-galar": 2.336938284806945, + "rhydon": 1.953391152619417, + "chansey": 31.34476801674985, + "tangela": 6.052291231012068, + "kangaskhan": 1.8555439044710675, + "seadra": 3.801332211620986, + "seaking": 2.5172672427027667, + "starmie": 1.9688476967867752, + "mr-mime": 9.17443402253228, + "mr-mime-galar": 5.3943240662073775, + "scyther": 2.795681097729109, + "jynx": 6.671133519135209, + "electabuzz": 2.7411534827167823, + "magmar": 1.8169660764819322, + "tauros": 1.9191065900055255, + "ditto": 1.9131705097148464, + "vaporeon": 3.4616119126941447, + "jolteon": 2.133521156624581, + "flareon": 2.6825190898731206, + "porygon": 2.897035731433703, + "dragonair": 1.9136429261830803, + "noctowl": 6.437131907063004, + "lanturn": 2.0508610977055035, + "togetic": 5.078184776315993, + "xatu": 5.606419941050089, + "bellossom": 2.450044365326189, + "azumarill": 2.207448381529334, + "sudowoodo": 2.317188023271261, + "politoed": 2.553503504806673, + "quagsire": 4.536849655588123, + "slowking": 3.757459457304818, + "dunsparce": 3.3617546380360555, + "qwilfish": 3.3827766208459864, + "sneasel": 2.325885060432215, + "piloswine": 1.5384845143013317, + "octillery": 2.4109032799728225, + "mantine": 2.7570546073902147, + "skarmory": 2.354866955568541, + "hitmontop": 2.217026325529953, + "miltank": 3.437662255221815, + "grovyle": 8.916823466273467, + "sceptile": 1.5591998138636196, + "combusken": 2.835785835386738, + "blaziken": 1.383218472572181, + "marshtomp": 2.445222033636493, + "swampert": 1.217149298776929, + "linoone": 5.409814091391821, + "linoone-galar": 4.43637329122693, + "pelipper": 5.840816283076022, + "ninjask": 7.524221076730521, + "exploud": 1.6627127943073219, + "lairon": 2.2195604639015385, + "manectric": 1.8404295150510903, + "roselia": 4.791197188544344, + "sharpedo": 4.454488329429628, + "wailmer": 6.684752500603607, + "torkoal": 1.7063619108279195, + "flygon": 2.3500111204245604, + "altaria": 1.6513357516428793, + "whiscash": 2.162443996730737, + "crawdaunt": 1.7596038592199004, + "claydol": 4.921744936591958, + "cradily": 2.4531505199054644, + "armaldo": 1.7573092319676005, + "dusclops": 5.026237217390014, + "absol": 1.7190364600334498, + "glalie": 4.34654276363332, + "sealeo": 3.213134271944739, + "relicanth": 1.7664952626454489, + "metang": 4.075211539580535, + "luxray": 3.868263910487559, + "vespiquen": 2.762132459817507, + "cherrim": 6.305298518858753, + "gastrodon": 2.259050382838392, + "drifblim": 6.691188513187157, + "lopunny": 3.7967113750350547, + "skuntank": 1.2884960521138251, + "bronzong": 5.040741861036505, + "munchlax": 2.5934007962155885, + "drapion": 2.166826326339469, + "abomasnow": 4.096873373608285, + "froslass": 4.071774397918604, + "rotom": 5.5821080819499596, + "stoutland": 2.4358214520746113, + "liepard": 6.289225697714233, + "musharna": 2.475076979416202, + "unfezant": 6.113307076834656, + "boldore": 2.8298606924376735, + "swoobat": 8.036580189279823, + "audino": 2.250193958837654, + "gurdurr": 1.8985245957250156, + "palpitoad": 3.632718341594581, + "seismitoad": 6.807653122452816, + "scolipede": 3.4242553961660613, + "whimsicott": 4.194453335592706, + "lilligant": 3.247835739810416, + "basculin-red-striped": 2.924395552465657, + "basculin-blue-striped": 3.7134652771994854, + "krookodile": 2.411014001279634, + "maractus": 2.438460878255505, + "crustle": 1.9479988624116513, + "sigilyph": 3.319865985377565, + "cofagrigus": 3.818315791760367, + "garbodor": 1.9815262328875516, + "cinccino": 4.652869165856579, + "vanillish": 2.19951790947689, + "emolga": 3.0901508830681994, + "escavalier": 2.390350413873215, + "amoonguss": 2.8590230373289485, + "jellicent": 2.42536218423356, + "galvantula": 1.6051583353921859, + "klang": 2.8409874305992933, + "klinklang": 3.5620787028489245, + "beheeyem": 2.7555536820233906, + "lampent": 3.561185465441316, + "fraxure": 1.510228845105893, + "beartic": 1.7467755076979352, + "cryogonal": 2.002656070614718, + "accelgor": 3.29014858782209, + "stunfisk": 1.2714388106980161, + "stunfisk-galar": 2.2744815029328933, + "mienshao": 2.8713372399654897, + "druddigon": 1.8480662372630836, + "golurk": 2.5420600172108956, + "bisharp": 2.901186671973697, + "bouffalant": 1.3449594428539238, + "heatmor": 1.9719262593352276, + "durant": 4.860465822794939, + "diggersby": 3.010356023162549, + "talonflame": 2.955280162404769, + "pangoro": 1.5566187214931406, + "doublade": 2.8571362054697667, + "malamar": 3.097878223928831, + "barbaracle": 1.4461063626596178, + "heliolisk": 3.8529472616857765, + "tyrantrum": 1.4564424936779903, + "aurorus": 2.5023997697585516, + "hawlucha": 3.189176489507987, + "dedenne": 2.762406013071425, + "klefki": 3.167227777660263, + "trevenant": 4.456104311688845, + "gourgeist-average": 6.663392146390127, + "charjabug": 4.033601401188365, + "vikavolt": 1.8855024027160923, + "ribombee": 4.592442482502377, + "lycanroc-midday": 3.3962139560747, + "lycanroc-midnight": 2.453800444916043, + "mudsdale": 1.5437225493400386, + "araquanid": 2.589929871565327, + "lurantis": 2.5082632240860057, + "shiinotic": 5.3166190038457675, + "salazzle": 3.303601486648734, + "bewear": 1.5618390249789784, + "tsareena": 3.3168990742103563, + "comfey": 4.431634650135833, + "oranguru": 4.651911894227933, + "passimian": 2.0436845963446917, + "palossand": 2.4316147525391396, + "pyukumuku": 47.63439755400479, + "togedemaru": 2.372771688349145, + "mimikyu-disguised": 4.5739303179514685, + "greedent": 2.2091180203472676, + "orbeetle": 2.681721046734358, + "thievul": 1.719859970468717, + "eldegoss": 4.363065358491339, + "dubwool": 3.091012309877182, + "drednaw": 1.2510710434481187, + "boltund": 4.985163369478364, + "carkol": 2.3352426370198103, + "coalossal": 1.8921046976318037, + "sandaconda": 2.734719078307713, + "cramorant": 6.298965604597637, + "barraskewda": 4.717289530339256, + "toxtricity-amped": 2.6633988935319577, + "centiskorch": 2.1201932000862582, + "grapploct": 1.4419363354399997, + "polteageist": 4.809275957291167, + "hatterene": 2.8765400893329724, + "grimmsnarl": 3.9242187312211265, + "obstagoon": 2.29265681234231, + "perrserker": 3.6690928934749456, + "alcremie": 1.346884918345979, + "falinks": 2.758298044854185, + "pincurchin": 2.9535943126623327, + "frosmoth": 3.118616700975971, + "indeedee-male": 5.2406797618478596, + "morpeko": 2.3728997865398314, + "copperajah": 2.427671614900266, + "duraludon": 1.4022765021991737, + "drakloak": 6.6955715794103146 }, "bronzong": { - "ivysaur": 5.0113630693092475, - "charmeleon": 3.8495915663258304, - "wartortle": 2.885724092090614, - "butterfree": 5.365020275425407, - "raichu": 5.669211996068401, - "raichu-alola": 3.442229409152489, - "sandslash": 2.2383051221429593, - "sandslash-alola": 2.0054419971372166, - "nidoqueen": 3.9928328492552, - "nidoking": 2.5843748409467686, - "clefairy": 12.358227312850214, - "clefable": 3.170307059554183, - "jigglypuff": 38.72180140177212, - "wigglytuff": 2.977128846656572, - "gloom": 8.801978892939752, - "vileplume": 4.256261101579629, - "dugtrio": 4.516059317622817, - "dugtrio-alola": 3.2099089577853737, - "persian": 4.938503041120856, - "persian-alola": 3.5731308494210605, - "golduck": 3.2781936468670283, - "poliwrath": 2.632931950943675, - "kadabra": 4.771236884282184, - "machoke": 5.0759604505512375, - "tentacruel": 3.8671993710593338, - "slowbro": 1.602183380000825, - "magneton": 2.762748867716932, - "haunter": 6.640399044109827, - "kingler": 2.369201232926909, - "exeggutor": 2.103964599766873, - "marowak": 3.209994789647771, - "marowak-alola": 1.868049461772745, - "hitmonlee": 3.6613905631477155, - "hitmonchan": 3.080502771433208, - "lickitung": 2.1145289593288954, - "weezing": 1.8652916838487696, - "weezing-galar": 3.361237146730235, - "rhydon": 2.653372870939825, - "chansey": 35.15373815257019, - "tangela": 4.861088841833324, - "kangaskhan": 2.026898932360724, - "seadra": 4.11816669269061, - "seaking": 2.823242206744627, - "starmie": 1.3947919433536686, - "mr-mime": 10.462543499301104, - "mr-mime-galar": 5.12670122694172, - "scyther": 2.8486256038083417, - "jynx": 6.510570905463837, - "electabuzz": 2.882662102580638, - "magmar": 1.697838829937403, - "tauros": 2.100193783195967, - "ditto": 3.3860216540642973, - "vaporeon": 3.6594248656045285, - "jolteon": 2.1681323762016036, - "flareon": 2.372391152275873, - "porygon": 3.0001512183901413, - "dragonair": 2.1533833577435653, - "noctowl": 7.189802658518532, - "lanturn": 2.10259204272588, - "togetic": 6.958193484975203, - "xatu": 4.178655231951196, - "bellossom": 2.7178521058235874, - "azumarill": 2.4740815904603934, - "sudowoodo": 3.09302443577898, - "politoed": 2.95620563294405, - "quagsire": 4.67485640792993, - "slowking": 2.3837243962564427, - "dunsparce": 3.4145815919734255, - "qwilfish": 4.606963004307907, - "sneasel": 2.5329153822160317, - "piloswine": 2.000097639995836, - "octillery": 2.5478136480653397, - "mantine": 2.899684139084169, - "skarmory": 1.647616187876972, - "hitmontop": 3.986532338423027, - "miltank": 3.845602632443305, - "grovyle": 9.155388529519795, - "sceptile": 1.6284232281253916, - "combusken": 4.381025719343787, - "blaziken": 2.0689714258921406, - "marshtomp": 2.709371934972473, - "swampert": 1.4040335822589776, - "linoone": 5.412871121598888, - "linoone-galar": 3.8815654468738794, - "pelipper": 6.467089588734131, - "ninjask": 8.09140303424169, - "exploud": 1.8668715495806183, - "lairon": 2.342417439963011, - "manectric": 1.8673572299840275, - "roselia": 6.567823835794378, - "sharpedo": 4.04706394965261, - "wailmer": 7.061547407855625, - "torkoal": 1.5664343606037683, - "flygon": 2.68829610547549, - "altaria": 1.7120419486601404, - "whiscash": 2.2543170242025696, - "crawdaunt": 1.5993089985633042, - "claydol": 3.700722960839994, - "cradily": 3.1757144331058154, - "armaldo": 2.397821101036379, - "dusclops": 3.266268104023096, - "absol": 1.8419651140518802, - "glalie": 5.179807736551038, - "sealeo": 3.4495011000435856, - "relicanth": 1.9096655979380144, - "metang": 2.576361554911592, - "luxray": 4.106992552279646, - "vespiquen": 2.9225332886623874, - "cherrim": 6.651714593614026, - "gastrodon": 2.37270733181456, - "drifblim": 4.9049068184068485, - "lopunny": 4.148131617608243, - "skuntank": 1.2379269252794107, - "munchlax": 2.7042526940379297, - "drapion": 2.098764426592349, - "abomasnow": 4.294139891548037, - "froslass": 3.7480888285280187, - "rotom": 3.6364970252014714, - "stoutland": 2.758222900542738, - "liepard": 6.409853691824, - "musharna": 1.7242235926929301, - "unfezant": 6.693580412333424, - "boldore": 3.718128527762917, - "swoobat": 5.993026808616127, - "audino": 2.5176901246578787, - "gurdurr": 2.811542002858068, - "palpitoad": 4.250439729166831, - "seismitoad": 7.573307774089583, - "scolipede": 3.9921429674063758, - "whimsicott": 4.179086670061726, - "lilligant": 3.353836014258362, - "basculin-red-striped": 2.9759071008262574, - "basculin-blue-striped": 3.570905935369051, - "krookodile": 2.5978333317617266, - "maractus": 2.404915872036719, - "crustle": 2.4266182138704497, - "sigilyph": 2.5328636076589124, - "cofagrigus": 2.523930173860394, - "garbodor": 2.7338993784576546, - "cinccino": 5.219445920710368, - "vanillish": 3.045222471003407, - "emolga": 3.2333164366791767, - "escavalier": 1.6683869856781115, - "amoonguss": 4.000513709120133, - "jellicent": 1.9106167642031617, - "galvantula": 1.6555293975229501, - "klang": 2.488000913197741, - "klinklang": 3.043859013383032, - "beheeyem": 1.926898634912296, - "lampent": 2.3249214544547376, - "fraxure": 1.6809099624418078, - "beartic": 2.3156368270212915, - "cryogonal": 2.80591167723416, - "accelgor": 3.492613860518029, - "stunfisk": 1.4193488389236615, - "stunfisk-galar": 2.0182537186384755, - "mienshao": 4.823225435983453, - "druddigon": 1.9803816441135886, - "golurk": 1.9176592509260182, - "bisharp": 1.972369743761739, - "bouffalant": 1.3797881334418445, - "heatmor": 1.8279112351435347, - "durant": 2.4806549963090614, - "diggersby": 3.7727611607931615, - "talonflame": 2.99600696037706, - "pangoro": 1.586605089856, - "doublade": 1.9011077896457564, - "malamar": 2.6038392607616236, - "barbaracle": 1.570748002127313, - "heliolisk": 4.298859754031598, - "tyrantrum": 1.8560581005958485, - "aurorus": 4.197001906652371, - "hawlucha": 4.568515849839002, - "dedenne": 3.457247841154739, - "klefki": 3.261273554537169, - "trevenant": 3.356574783993696, - "gourgeist-average": 4.506598139181977, - "charjabug": 4.111014407330958, - "vikavolt": 1.9451158034330716, - "ribombee": 6.382892779100773, - "lycanroc-midday": 4.477417002803127, - "lycanroc-midnight": 2.94058495370097, - "mudsdale": 1.6052232305777254, - "araquanid": 2.6651526516233828, - "lurantis": 2.661985263228215, - "shiinotic": 6.312787660977582, - "salazzle": 4.170779497443329, - "bewear": 2.3505064818878387, - "tsareena": 3.476850192091163, - "comfey": 6.475348533943187, - "oranguru": 3.1241979056953957, - "passimian": 3.00976666345744, - "palossand": 2.0264019604060746, - "pyukumuku": 47.46509749622406, - "togedemaru": 2.064649423194083, - "mimikyu-disguised": 5.436077350202595, - "greedent": 2.372110167660385, - "orbeetle": 1.9481010306787911, - "thievul": 1.5865226614797254, - "eldegoss": 4.577629522437396, - "dubwool": 3.219538586308578, - "drednaw": 1.3682535636817845, - "boltund": 4.605288027296194, - "carkol": 2.388726952207759, - "coalossal": 1.9168355211349282, - "sandaconda": 3.24253953443642, - "cramorant": 5.776037184518606, - "barraskewda": 4.586777053177429, - "toxtricity-amped": 3.9594870698907547, - "centiskorch": 2.263729322589405, - "grapploct": 2.237768898398298, - "polteageist": 3.240101450287466, - "hatterene": 3.442793751102133, - "grimmsnarl": 4.384249806521058, - "obstagoon": 2.3068866210055896, - "perrserker": 2.6101048644614484, - "alcremie": 2.201855190951874, - "falinks": 3.8855779465217437, - "pincurchin": 3.018889654643819, - "frosmoth": 3.6494294760484536, - "indeedee-male": 3.3145388908470674, - "morpeko": 2.2365168243094935, - "copperajah": 2.1824694923977144, - "duraludon": 1.321353021180335, - "drakloak": 4.557691741998097, - "bronzong": 2.89213065053986 + "ivysaur": 5.026165644728596, + "charmeleon": 3.8425466764405876, + "wartortle": 2.8851899961625227, + "butterfree": 5.367795255246056, + "raichu": 5.668616584536519, + "raichu-alola": 3.44063416313213, + "sandslash": 2.239612091102916, + "sandslash-alola": 2.0043066694748672, + "nidoqueen": 4.000818818656709, + "nidoking": 2.5885446345339838, + "clefairy": 12.35272434237034, + "clefable": 3.1753101288980696, + "jigglypuff": 38.766893847108186, + "wigglytuff": 2.9816192302023383, + "gloom": 8.829161785946535, + "vileplume": 4.263362723380833, + "dugtrio": 4.526068802463322, + "dugtrio-alola": 3.2088520952922126, + "persian": 4.942070450264475, + "persian-alola": 3.558835456272702, + "golduck": 3.2773707360585185, + "poliwrath": 2.635820754563883, + "kadabra": 4.774690072413947, + "machoke": 5.078471181999948, + "tentacruel": 3.8755080835394145, + "slowbro": 1.6005153659632405, + "magneton": 2.7598019005446415, + "haunter": 6.646474961761857, + "kingler": 2.3678699725367096, + "exeggutor": 2.1049425735970466, + "marowak": 3.210169625844749, + "marowak-alola": 1.8640682211549606, + "hitmonlee": 3.664532031969075, + "hitmonchan": 3.083063337362753, + "lickitung": 2.1145803080687218, + "weezing": 1.8663122359220834, + "weezing-galar": 3.3648708494229664, + "rhydon": 2.6558438101366755, + "chansey": 35.19840522267033, + "tangela": 4.861096706044711, + "kangaskhan": 2.02708435178622, + "seadra": 4.115914659735488, + "seaking": 2.826710442344804, + "starmie": 1.3948763872636976, + "mr-mime": 10.482135987926199, + "mr-mime-galar": 5.132063795125346, + "scyther": 2.846744306965144, + "jynx": 6.516448114519308, + "electabuzz": 2.882145849567835, + "magmar": 1.695428317807869, + "tauros": 2.099900462744469, + "ditto": 3.3647452318838607, + "vaporeon": 3.6604181433366536, + "jolteon": 2.1662633556867408, + "flareon": 2.367801124014544, + "porygon": 2.9984323042538397, + "dragonair": 2.154651739882724, + "noctowl": 7.198768079964424, + "lanturn": 2.1022653569292054, + "togetic": 6.955002222338211, + "xatu": 4.1808396799698615, + "bellossom": 2.7201593554257264, + "azumarill": 2.476386692818109, + "sudowoodo": 3.0959127027603817, + "politoed": 2.9590923331642207, + "quagsire": 4.671777836120288, + "slowking": 2.3826858912450515, + "dunsparce": 3.4125048156726097, + "qwilfish": 4.615164284997032, + "sneasel": 2.5259185978153007, + "piloswine": 2.001364957358817, + "octillery": 2.5481217018864104, + "mantine": 2.901794182027168, + "skarmory": 1.645293200901373, + "hitmontop": 3.9958759054830333, + "miltank": 3.8473863062510985, + "grovyle": 9.160946792011387, + "sceptile": 1.6296982797118487, + "combusken": 4.381212808003719, + "blaziken": 2.067992453448855, + "marshtomp": 2.710536134880854, + "swampert": 1.4055236459246006, + "linoone": 5.407075918462106, + "linoone-galar": 3.864038339843745, + "pelipper": 6.470068726143886, + "ninjask": 8.08803224227315, + "exploud": 1.8678315672259325, + "lairon": 2.341399988715544, + "manectric": 1.8660664449518527, + "roselia": 6.586153889024896, + "sharpedo": 4.033274159786404, + "wailmer": 7.062234786562735, + "torkoal": 1.5625041056102194, + "flygon": 2.6903096408132914, + "altaria": 1.711584310668084, + "whiscash": 2.2552263193704523, + "crawdaunt": 1.5936450152069974, + "claydol": 3.7027294664138504, + "cradily": 3.1811463259269135, + "armaldo": 2.4002498684536904, + "dusclops": 3.2593923244025076, + "absol": 1.8363665219558083, + "glalie": 5.177270870633732, + "sealeo": 3.4492367743206547, + "relicanth": 1.909114310961363, + "metang": 2.5744290881545266, + "luxray": 4.106468063402932, + "vespiquen": 2.9220911883021863, + "cherrim": 6.656571573701138, + "gastrodon": 2.3729471045325923, + "drifblim": 4.908250970905799, + "lopunny": 4.150208090344893, + "skuntank": 1.2334612117543902, + "bronzong": 2.89213065053986, + "munchlax": 2.7050280385884973, + "drapion": 2.0929832929863275, + "abomasnow": 4.2981901420903315, + "froslass": 3.74756350791957, + "rotom": 3.631032113296736, + "stoutland": 2.7599366106686825, + "liepard": 6.391480065837743, + "musharna": 1.7256230242978674, + "unfezant": 6.69810500709594, + "boldore": 3.720577865217261, + "swoobat": 5.996381300738867, + "audino": 2.5158364260610937, + "gurdurr": 2.8148406663416146, + "palpitoad": 4.254597341623679, + "seismitoad": 7.586444013854539, + "scolipede": 3.991730602290147, + "whimsicott": 4.184219631194821, + "lilligant": 3.354799473434527, + "basculin-red-striped": 2.975981305419016, + "basculin-blue-striped": 3.5655984882338014, + "krookodile": 2.5913106681495712, + "maractus": 2.4054696462967797, + "crustle": 2.426780613444614, + "sigilyph": 2.534043075248846, + "cofagrigus": 2.5207521706169875, + "garbodor": 2.7426908260208416, + "cinccino": 5.223339335850217, + "vanillish": 3.0485403342544437, + "emolga": 3.2333611233277635, + "escavalier": 1.667696742221196, + "amoonguss": 4.013599105406653, + "jellicent": 1.9128157026821975, + "galvantula": 1.6544290177884766, + "klang": 2.486478304902456, + "klinklang": 3.043101324565722, + "beheeyem": 1.92573944060684, + "lampent": 2.3204798643062796, + "fraxure": 1.681399593786371, + "beartic": 2.316762428676156, + "cryogonal": 2.81055652948972, + "accelgor": 3.4922815869531254, + "stunfisk": 1.420160479413136, + "stunfisk-galar": 2.0159918475989502, + "mienshao": 4.831477674640114, + "druddigon": 1.9807835998444538, + "golurk": 1.9161499408097549, + "bisharp": 1.967520320143973, + "bouffalant": 1.3794580102103913, + "heatmor": 1.8245762620727628, + "durant": 2.476669527039669, + "diggersby": 3.7794946130921536, + "talonflame": 2.9938871960862583, + "pangoro": 1.5821790723938691, + "doublade": 1.8995209741643309, + "malamar": 2.5969516631706164, + "barbaracle": 1.5710570312296732, + "heliolisk": 4.302172704365644, + "tyrantrum": 1.8568024651311088, + "aurorus": 4.201298681304874, + "hawlucha": 4.5706489050795, + "dedenne": 3.4586551320452874, + "klefki": 3.2633573284617787, + "trevenant": 3.3589758637836398, + "gourgeist-average": 4.493148525552034, + "charjabug": 4.112109502390126, + "vikavolt": 1.945558124903861, + "ribombee": 6.385614703300802, + "lycanroc-midday": 4.482978804948098, + "lycanroc-midnight": 2.93959697030172, + "mudsdale": 1.604135394147948, + "araquanid": 2.6663424515524383, + "lurantis": 2.662820634247395, + "shiinotic": 6.321240300453953, + "salazzle": 4.170513449020447, + "bewear": 2.3523955588113576, + "tsareena": 3.4799519915172548, + "comfey": 6.486224916193171, + "oranguru": 3.127645783023268, + "passimian": 3.013909753874338, + "palossand": 2.0254135908125113, + "pyukumuku": 47.41802849709826, + "togedemaru": 2.0642222261808945, + "mimikyu-disguised": 5.43096123469149, + "greedent": 2.374150976464895, + "orbeetle": 1.9484696786056377, + "thievul": 1.5795469025030273, + "eldegoss": 4.582191419799198, + "dubwool": 3.2202469255535497, + "drednaw": 1.3678896197662223, + "boltund": 4.596918156889487, + "carkol": 2.3839701225115713, + "coalossal": 1.913981048327794, + "sandaconda": 3.2440947894939245, + "cramorant": 5.767667983177587, + "barraskewda": 4.5809529994781775, + "toxtricity-amped": 3.9636331475209197, + "centiskorch": 2.263617535282168, + "grapploct": 2.2395518150313123, + "polteageist": 3.2435105165696614, + "hatterene": 3.4474461159934826, + "grimmsnarl": 4.372108634427508, + "obstagoon": 2.3000492445515226, + "perrserker": 2.6042953958207646, + "alcremie": 2.2030814266675893, + "falinks": 3.8882652695082593, + "pincurchin": 3.017169711980012, + "frosmoth": 3.6508861546504656, + "indeedee-male": 3.3088446441202333, + "morpeko": 2.229862456698309, + "copperajah": 2.181550121344478, + "duraludon": 1.320166896209987, + "drakloak": 4.5510772978650245 }, "munchlax": { - "ivysaur": 3.824310489694093, - "charmeleon": 4.413576229991964, - "wartortle": 3.149903953130565, - "butterfree": 5.5967404357283, - "raichu": 5.544085321008826, - "raichu-alola": 3.9841400841347716, - "sandslash": 1.9060633227163701, - "sandslash-alola": 2.445462683122366, - "nidoqueen": 3.047177882343653, - "nidoking": 1.8551545034824777, - "clefairy": 11.296577215803655, - "clefable": 2.4972961010703196, - "jigglypuff": 31.495273925719584, - "wigglytuff": 2.3560179890270208, - "gloom": 6.6493519746751355, - "vileplume": 3.45534670804377, - "dugtrio": 3.7551222457566467, - "dugtrio-alola": 3.7448263148510663, - "persian": 4.257518903707319, - "persian-alola": 4.464522227947381, - "golduck": 3.3767131139922686, - "poliwrath": 1.858958203239857, - "kadabra": 4.571394797469999, - "machoke": 3.4523397913538827, - "tentacruel": 2.959040129340111, - "slowbro": 1.9339685583166495, - "magneton": 3.498128863302236, - "haunter": 4.535842595627356, - "kingler": 2.1447104921995317, - "exeggutor": 2.1277779238026966, - "marowak": 2.8440887930107097, - "marowak-alola": 1.8813660956270781, - "hitmonlee": 2.3002120000683144, - "hitmonchan": 2.196027404172396, - "lickitung": 2.1071187303892294, - "weezing": 1.6101663898952423, - "weezing-galar": 2.619275360648369, - "rhydon": 1.818829798837297, - "chansey": 32.59507440955952, - "tangela": 4.489169943277256, - "kangaskhan": 1.770597788785645, - "seadra": 4.3312679234923, - "seaking": 2.666486366050818, - "starmie": 1.6759298743914925, - "mr-mime": 8.445187267563696, - "mr-mime-galar": 4.628190728692774, - "scyther": 2.8109664321360457, - "jynx": 8.2397537913659, - "electabuzz": 2.9309617519347553, - "magmar": 2.0162588348985864, - "tauros": 1.7707353798343335, - "ditto": 4.364086841407521, - "vaporeon": 4.043274181652689, - "jolteon": 2.2774124214056135, - "flareon": 3.0451979140836967, - "porygon": 2.9800832982389536, - "dragonair": 1.9350868784961646, - "noctowl": 7.064349555562963, - "lanturn": 2.1638575669448077, - "togetic": 6.5264881053347175, - "xatu": 4.420839080344079, - "bellossom": 2.8321881003539446, - "azumarill": 2.5457436228434704, - "sudowoodo": 2.0035964844586482, - "politoed": 2.9867566897854045, - "quagsire": 4.581172822604604, - "slowking": 2.8871413069759466, - "dunsparce": 3.4506654951595515, - "qwilfish": 3.34968139864635, - "sneasel": 2.5425204281771983, - "piloswine": 1.540191407861607, - "octillery": 2.676650833879957, - "mantine": 4.611538934221722, - "skarmory": 1.9097348146303779, - "hitmontop": 2.5376886580989133, - "miltank": 3.2565304392202385, - "grovyle": 9.105699537642119, - "sceptile": 1.6860389678952001, - "combusken": 3.2335680704066547, - "blaziken": 1.57548917899899, - "marshtomp": 2.5194026926659427, - "swampert": 1.380888113136343, - "linoone": 5.308297644392194, - "linoone-galar": 4.772643567221694, - "pelipper": 8.356221468682662, - "ninjask": 7.986197423541469, - "exploud": 1.7852715116902407, - "lairon": 1.8650038768688832, - "manectric": 1.8938078439076835, - "roselia": 5.020282851856007, - "sharpedo": 5.27602476327943, - "wailmer": 7.304875102312783, - "torkoal": 1.9278801613610934, - "flygon": 2.3814125385361664, - "altaria": 1.8196709721177247, - "whiscash": 2.1545653343208504, - "crawdaunt": 2.0868280745404473, - "claydol": 3.59865071401214, - "cradily": 2.2104109556774336, - "armaldo": 1.56072319818862, - "dusclops": 3.3383709253632676, - "absol": 2.063858386184468, - "glalie": 4.524862432233489, - "sealeo": 3.6675519161246353, - "relicanth": 1.7873994121457173, - "metang": 2.9661588250258086, - "luxray": 3.884056799897906, - "vespiquen": 2.7314624263440037, - "cherrim": 7.0428356321898296, - "gastrodon": 2.138516450276678, - "drifblim": 5.1698711629178975, - "lopunny": 3.407657335702841, - "skuntank": 1.4948519291877405, - "bronzong": 3.3837275339711215, - "drapion": 2.2062627988691186, - "abomasnow": 4.676621879326521, - "froslass": 3.5994441406536404, - "rotom": 3.6569381630186175, - "stoutland": 2.3396031734808345, - "liepard": 6.81000464447195, - "musharna": 1.624485926669498, - "unfezant": 6.29620287092772, - "boldore": 2.491765851131399, - "swoobat": 6.31929601271824, - "audino": 2.4704735004955, - "gurdurr": 1.7659700645560705, - "palpitoad": 4.001794255468612, - "seismitoad": 6.819663147962983, - "scolipede": 3.1987146603393493, - "whimsicott": 4.448981246727028, - "lilligant": 3.618270838945991, - "basculin-red-striped": 2.9447633871944143, - "basculin-blue-striped": 3.8860507868663463, - "krookodile": 2.791859135757778, - "maractus": 2.5951802695254917, - "crustle": 1.5968862756434268, - "sigilyph": 2.6834489591652435, - "cofagrigus": 2.5152605163707236, - "garbodor": 1.7811538503975761, - "cinccino": 4.680601150651744, - "vanillish": 2.677333652648878, - "emolga": 3.196937573947135, - "escavalier": 2.7305250020005922, - "amoonguss": 2.9979042120974047, - "jellicent": 2.0525873058452913, - "galvantula": 1.8513849226866472, - "klang": 3.1842440168968773, - "klinklang": 3.357201470872977, - "beheeyem": 1.9877135543551332, - "lampent": 2.5507644752373633, - "fraxure": 1.4249476101169511, - "beartic": 1.9862076081381863, - "cryogonal": 2.45275809660106, - "accelgor": 3.807426176616331, - "stunfisk": 1.4041649654252502, - "stunfisk-galar": 2.510366245210756, - "mienshao": 3.250562338254632, - "druddigon": 1.769929303221645, - "golurk": 1.616781866282503, - "bisharp": 2.4021967505515116, - "bouffalant": 1.184498049945167, - "heatmor": 2.086559318414335, - "durant": 3.5945557758824798, - "diggersby": 3.123430415751703, - "talonflame": 3.37711962017986, - "pangoro": 1.5459934182612103, - "doublade": 1.948774011011264, - "malamar": 2.826609944504214, - "barbaracle": 1.526328427430945, - "heliolisk": 4.62331891677826, - "tyrantrum": 1.1556510920185263, - "aurorus": 2.3982246076951546, - "hawlucha": 3.3379890292141585, - "dedenne": 3.4885060554982523, - "klefki": 3.441271125289319, - "trevenant": 3.032087341071082, - "gourgeist-average": 6.0777504977747085, - "charjabug": 4.112669425301073, - "vikavolt": 2.012202837238292, - "ribombee": 5.749045708243768, - "lycanroc-midday": 2.9375230185829553, - "lycanroc-midnight": 1.9511281489909778, - "mudsdale": 1.359455546797062, - "araquanid": 2.6516027721036775, - "lurantis": 2.768234768706245, - "shiinotic": 6.992595686752857, - "salazzle": 3.36202784471588, - "bewear": 1.6265336256791065, - "tsareena": 3.337723775516413, - "comfey": 5.223112906147168, - "oranguru": 2.894460589831911, - "passimian": 1.9680293763207852, - "palossand": 1.9087806719754385, - "pyukumuku": 48.438158121301534, - "togedemaru": 2.512584273712096, - "mimikyu-disguised": 4.10970262680471, - "greedent": 1.974763193451122, - "orbeetle": 2.1264519676993596, - "thievul": 2.084914185170281, - "eldegoss": 4.8439779371451905, - "dubwool": 2.856825469439523, - "drednaw": 1.269327238140578, - "boltund": 4.782261622898, - "carkol": 2.156240508270424, - "coalossal": 1.8610609798431637, - "sandaconda": 2.8626168055893153, - "cramorant": 9.037740901747652, - "barraskewda": 4.715874554781571, - "toxtricity-amped": 2.89445798828252, - "centiskorch": 2.2682877235747636, - "grapploct": 1.571916411692635, - "polteageist": 2.5507127558087452, - "hatterene": 2.7477737317971984, - "grimmsnarl": 4.075055619136808, - "obstagoon": 2.4155086090218667, - "perrserker": 3.2035968353456803, - "alcremie": 1.8312491477688986, - "falinks": 2.6031699670489026, - "pincurchin": 3.0640682009305857, - "frosmoth": 4.364957472029665, - "indeedee-male": 3.842182320676484, - "morpeko": 2.816920251154171, - "copperajah": 2.5004215001095864, - "duraludon": 1.2102544902502843, - "drakloak": 3.593419854085746, - "munchlax": 2.454279130079789 + "ivysaur": 3.835411697995743, + "charmeleon": 4.42746101285361, + "wartortle": 3.1581449764021663, + "butterfree": 5.617995760213035, + "raichu": 5.549495307887823, + "raichu-alola": 3.9929136305429527, + "sandslash": 1.9029247831789338, + "sandslash-alola": 2.4444463097109, + "nidoqueen": 3.0518868359799365, + "nidoking": 1.855056499045716, + "clefairy": 11.350565490676113, + "clefable": 2.506910954398852, + "jigglypuff": 31.612091153492536, + "wigglytuff": 2.363987033851702, + "gloom": 6.6664231974972505, + "vileplume": 3.4645621242734554, + "dugtrio": 3.7550709452648654, + "dugtrio-alola": 3.7421706646852178, + "persian": 4.259390750262279, + "persian-alola": 4.469717786192649, + "golduck": 3.381331576604609, + "poliwrath": 1.8579061135957482, + "kadabra": 4.58131898977668, + "machoke": 3.449229430244791, + "tentacruel": 2.966397950507093, + "slowbro": 1.937380207790527, + "magneton": 3.5013558163737075, + "haunter": 4.545712083094973, + "kingler": 2.141131137478449, + "exeggutor": 2.131010896055511, + "marowak": 2.8407213138155742, + "marowak-alola": 1.8824436929340238, + "hitmonlee": 2.299254413967123, + "hitmonchan": 2.1986869639638336, + "lickitung": 2.112174255925895, + "weezing": 1.6124983774846409, + "weezing-galar": 2.6249233544595367, + "rhydon": 1.8128450336060213, + "chansey": 32.70745215823442, + "tangela": 4.486515890916726, + "kangaskhan": 1.770658701527428, + "seadra": 4.336992777988275, + "seaking": 2.6693513823122403, + "starmie": 1.679478412774582, + "mr-mime": 8.479339014654464, + "mr-mime-galar": 4.642447650428537, + "scyther": 2.814513708088649, + "jynx": 8.278084775726708, + "electabuzz": 2.9378286617982377, + "magmar": 2.023056528129123, + "tauros": 1.7688083586515007, + "ditto": 4.345670381920424, + "vaporeon": 4.0571930894472965, + "jolteon": 2.283234492020579, + "flareon": 3.0545859639481154, + "porygon": 2.986088563442383, + "dragonair": 1.9362143714939268, + "noctowl": 7.083238699018615, + "lanturn": 2.1662691328734827, + "togetic": 6.553383008225596, + "xatu": 4.433109559014396, + "bellossom": 2.841317916459273, + "azumarill": 2.5536975002524436, + "sudowoodo": 1.9982130963157696, + "politoed": 2.993319887364896, + "quagsire": 4.579658210851672, + "slowking": 2.893070628666635, + "dunsparce": 3.458381535637259, + "qwilfish": 3.3486201989684705, + "sneasel": 2.5459778791189063, + "piloswine": 1.538169187428242, + "octillery": 2.6823464962026833, + "mantine": 4.630032960561776, + "skarmory": 1.9097924245043068, + "hitmontop": 2.5376746567182344, + "miltank": 3.2546386115510284, + "grovyle": 9.12348245905555, + "sceptile": 1.691066134954653, + "combusken": 3.2343846336203645, + "blaziken": 1.5760269282256845, + "marshtomp": 2.518764332973226, + "swampert": 1.38252609474848, + "linoone": 5.314787757902842, + "linoone-galar": 4.775306548254848, + "pelipper": 8.368322246373866, + "ninjask": 7.998948455744859, + "exploud": 1.788804772949201, + "lairon": 1.86006276132744, + "manectric": 1.8966370628471303, + "roselia": 5.036558566702496, + "sharpedo": 5.2783717869781235, + "wailmer": 7.318256586128503, + "torkoal": 1.930992929526017, + "flygon": 2.379755586958208, + "altaria": 1.824078217565241, + "whiscash": 2.153794416611567, + "crawdaunt": 2.087632459481185, + "claydol": 3.6017376858410604, + "cradily": 2.2128558585386795, + "armaldo": 1.5591862200396842, + "dusclops": 3.34501984304757, + "absol": 2.066731529242862, + "glalie": 4.531733361671859, + "sealeo": 3.676258138900784, + "relicanth": 1.7845353292435024, + "metang": 2.9645191072112835, + "luxray": 3.8874108021980045, + "vespiquen": 2.7332517558155827, + "cherrim": 7.065635598681039, + "gastrodon": 2.1361329193168617, + "drifblim": 5.178722495702337, + "lopunny": 3.4053929918858197, + "skuntank": 1.496544455610941, + "bronzong": 3.383844034579396, + "munchlax": 2.454279130079789, + "drapion": 2.2059544065288343, + "abomasnow": 4.6883221309648775, + "froslass": 3.609882168140267, + "rotom": 3.6643581910767717, + "stoutland": 2.339430632302682, + "liepard": 6.812982133096362, + "musharna": 1.6273261397623129, + "unfezant": 6.301653047062892, + "boldore": 2.484262772614676, + "swoobat": 6.336742439037325, + "audino": 2.476559744919032, + "gurdurr": 1.7614883496666995, + "palpitoad": 4.003909952996768, + "seismitoad": 6.821639020258566, + "scolipede": 3.1992514950907496, + "whimsicott": 4.464435295639188, + "lilligant": 3.629736505473407, + "basculin-red-striped": 2.9471377704058184, + "basculin-blue-striped": 3.8908284263042474, + "krookodile": 2.7909881897830258, + "maractus": 2.6034091116081415, + "crustle": 1.5932208430420278, + "sigilyph": 2.690800717366617, + "cofagrigus": 2.5202160570914653, + "garbodor": 1.780033894909361, + "cinccino": 4.686080550799962, + "vanillish": 2.6867643440829285, + "emolga": 3.2037147271728283, + "escavalier": 2.7331107401871804, + "amoonguss": 3.0058472365725764, + "jellicent": 2.0561746999390946, + "galvantula": 1.8563607115553427, + "klang": 3.1898121555022225, + "klinklang": 3.354797415951243, + "beheeyem": 1.9924470952351747, + "lampent": 2.5517370373292225, + "fraxure": 1.423433599306399, + "beartic": 1.989329166962074, + "cryogonal": 2.4643498234883476, + "accelgor": 3.8198499487584194, + "stunfisk": 1.405850368585, + "stunfisk-galar": 2.5107138491799157, + "mienshao": 3.2516605469958906, + "druddigon": 1.7697450877040666, + "golurk": 1.613583483203985, + "bisharp": 2.4001331488428583, + "bouffalant": 1.1840761090698098, + "heatmor": 2.091270260919581, + "durant": 3.593614668072006, + "diggersby": 3.120843334668124, + "talonflame": 3.3864458848347985, + "pangoro": 1.544170401792812, + "doublade": 1.9437010844512317, + "malamar": 2.8290709445731403, + "barbaracle": 1.5243884422201832, + "heliolisk": 4.638937990929567, + "tyrantrum": 1.1514461744520865, + "aurorus": 2.3994515725226515, + "hawlucha": 3.336118110505044, + "dedenne": 3.5004492438442663, + "klefki": 3.4453976828744874, + "trevenant": 3.0282740149836966, + "gourgeist-average": 6.096987930221713, + "charjabug": 4.115115621338651, + "vikavolt": 2.0160355457787937, + "ribombee": 5.772265118021088, + "lycanroc-midday": 2.93475570987189, + "lycanroc-midnight": 1.9470250144415076, + "mudsdale": 1.3559370150326102, + "araquanid": 2.6565110674440353, + "lurantis": 2.774943928697474, + "shiinotic": 7.023587341426278, + "salazzle": 3.367652348340307, + "bewear": 1.6252765686994308, + "tsareena": 3.3422637825621573, + "comfey": 5.243413142848556, + "oranguru": 2.89965990185031, + "passimian": 1.9652523611121948, + "palossand": 1.9092454143296926, + "pyukumuku": 48.509972656224846, + "togedemaru": 2.511624570369179, + "mimikyu-disguised": 4.120233630904904, + "greedent": 1.9739642886508721, + "orbeetle": 2.1318176833244564, + "thievul": 2.0893160462202163, + "eldegoss": 4.860914248839508, + "dubwool": 2.8549719552386335, + "drednaw": 1.2678229260788227, + "boltund": 4.787460884337986, + "carkol": 2.1558515768292086, + "coalossal": 1.861784030689015, + "sandaconda": 2.859712266188854, + "cramorant": 9.056096128264013, + "barraskewda": 4.71741580360626, + "toxtricity-amped": 2.8978326384124324, + "centiskorch": 2.2741725880280694, + "grapploct": 1.5702936751826417, + "polteageist": 2.5521867302654675, + "hatterene": 2.7547562328670305, + "grimmsnarl": 4.083120771907582, + "obstagoon": 2.414936926372348, + "perrserker": 3.202588625219289, + "alcremie": 1.83978802197624, + "falinks": 2.5984888572441625, + "pincurchin": 3.069992448988871, + "frosmoth": 4.378780611740698, + "indeedee-male": 3.857224390136227, + "morpeko": 2.8201946331282914, + "copperajah": 2.4994568616663626, + "duraludon": 1.2083811825875026, + "drakloak": 3.5899661743757725 }, "drapion": { - "ivysaur": 3.5755121072199394, - "charmeleon": 3.94737951341843, - "wartortle": 2.7148285208878082, - "butterfree": 4.9977124326643185, - "raichu": 5.415501970214423, - "raichu-alola": 5.398323550855858, - "sandslash": 1.964435543257761, - "sandslash-alola": 1.9509875236513001, - "nidoqueen": 2.6960131151688325, - "nidoking": 1.8272358913111035, - "clefairy": 11.205470615016992, - "clefable": 2.3507739515835624, - "jigglypuff": 31.07747520562109, - "wigglytuff": 2.319995448181934, - "gloom": 5.942526404400255, - "vileplume": 3.112501671546176, - "dugtrio": 3.7543943791416012, - "dugtrio-alola": 3.532716364177963, - "persian": 4.430175528460554, - "persian-alola": 5.3463753082112975, - "golduck": 3.1370965294609254, - "poliwrath": 1.6429040815437452, - "kadabra": 6.227093096745662, - "machoke": 3.6364129031863577, - "tentacruel": 2.648713916240399, - "slowbro": 2.4790738434385604, - "magneton": 2.986316128570203, - "haunter": 7.247330197688122, - "kingler": 2.2451769927061274, - "exeggutor": 2.9427224378956223, - "marowak": 2.945588915920247, - "marowak-alola": 2.755557792997263, - "hitmonlee": 2.405088746211191, - "hitmonchan": 2.0676142792881658, - "lickitung": 1.8897419319706152, - "weezing": 1.5198251534037261, - "weezing-galar": 2.681492214244263, - "rhydon": 2.14214681444335, - "chansey": 30.460456971699813, - "tangela": 5.086544403077296, - "kangaskhan": 1.9029113401218654, - "seadra": 3.741823477732228, - "seaking": 2.5778427397907144, - "starmie": 1.921776740006167, - "mr-mime": 10.135089008636795, - "mr-mime-galar": 5.256427807704721, - "scyther": 2.848933017170267, - "jynx": 6.49284348812973, - "electabuzz": 2.6817415005938496, - "magmar": 1.7813918014180699, - "tauros": 1.9720499101728597, - "ditto": 2.6394634390759295, - "vaporeon": 3.387095798090514, - "jolteon": 2.089387265027331, - "flareon": 2.6358678894089906, - "porygon": 2.858863806726254, - "dragonair": 1.924145352469458, - "noctowl": 6.4209922046321, - "lanturn": 2.0085598568464724, - "togetic": 6.2089630728722875, - "xatu": 5.484384027832682, - "bellossom": 2.6689092549950892, - "azumarill": 2.029586385309129, - "sudowoodo": 2.571926695231864, - "politoed": 2.5389103426524446, - "quagsire": 4.458641261665351, - "slowking": 3.7669307407378434, - "dunsparce": 3.3623233670715367, - "qwilfish": 3.442832857073484, - "sneasel": 2.7630423242437265, - "piloswine": 1.6805191199495506, - "octillery": 2.3886955828657985, - "mantine": 2.7167283154947794, - "skarmory": 1.9241222483278189, - "hitmontop": 2.436736421877298, - "miltank": 3.51988552385868, - "grovyle": 9.928146805752679, - "sceptile": 1.7411763388113108, - "combusken": 2.8282147505266444, - "blaziken": 1.4016727037298948, - "marshtomp": 2.487484816889002, - "swampert": 1.1948900992044256, - "linoone": 5.5064275248219445, - "linoone-galar": 5.70095473085836, - "pelipper": 5.877156821611852, - "ninjask": 7.634218618815145, - "exploud": 1.6311001615687202, - "lairon": 2.2037921149420545, - "manectric": 1.8065650295071123, - "roselia": 4.703394255092642, - "sharpedo": 6.018638579703245, - "wailmer": 6.669608957553029, - "torkoal": 1.685935961759358, - "flygon": 2.361584686044856, - "altaria": 1.6177661197752156, - "whiscash": 2.1312301040293593, - "crawdaunt": 2.1511627141790206, - "claydol": 4.8110052489977075, - "cradily": 2.6768329583206816, - "armaldo": 1.9781186478978612, - "dusclops": 4.997791595117894, - "absol": 2.27620807106667, - "glalie": 4.8266310104826236, - "sealeo": 3.182880110985167, - "relicanth": 1.81022480613126, - "metang": 4.0956182527175855, - "luxray": 3.8649556039015103, - "vespiquen": 2.8196817571121637, - "cherrim": 6.8972697348331025, - "gastrodon": 2.3074725157070626, - "drifblim": 6.527867203080188, - "lopunny": 3.8777137243137383, - "skuntank": 1.3644522247512358, - "bronzong": 4.9907491020383175, - "munchlax": 2.636423969063318, - "abomasnow": 3.7148627154162135, - "froslass": 4.028366813149713, - "rotom": 5.437030227225753, - "stoutland": 2.4806969092093927, - "liepard": 8.466261405131853, - "musharna": 2.423630390752986, - "unfezant": 6.213919364757661, - "boldore": 3.1153498342619765, - "swoobat": 7.860432885887944, - "audino": 2.2009497819766066, - "gurdurr": 1.8975254417162923, - "palpitoad": 3.5808460240153472, - "seismitoad": 6.680767839897067, - "scolipede": 3.260344233956416, - "whimsicott": 3.539796629832452, - "lilligant": 3.547435949865031, - "basculin-red-striped": 2.969626693988986, - "basculin-blue-striped": 3.7163898744014854, - "krookodile": 3.0501751729039723, - "maractus": 2.686649865324253, - "crustle": 2.1610865417769256, - "sigilyph": 3.2468378384845042, - "cofagrigus": 3.738084008507763, - "garbodor": 1.978604695085742, - "cinccino": 4.714209574060851, - "vanillish": 2.367674928096256, - "emolga": 3.0532912635025173, - "escavalier": 1.8226464867051066, - "amoonguss": 2.809498183628831, - "jellicent": 2.3672277270666684, - "galvantula": 1.5755381556268069, - "klang": 2.7034425678425946, - "klinklang": 3.3279868328890396, - "beheeyem": 2.692406957514195, - "lampent": 3.474775508440301, - "fraxure": 1.5503421621160285, - "beartic": 1.8886888721468251, - "cryogonal": 2.193623312110759, - "accelgor": 3.2198807893989425, - "stunfisk": 1.247831098467451, - "stunfisk-galar": 2.1445487109193664, - "mienshao": 3.088033873844709, - "druddigon": 1.8887078876964565, - "golurk": 2.5358828547275563, - "bisharp": 2.391190388816213, - "bouffalant": 1.3701233519157996, - "heatmor": 1.960636143605141, - "durant": 2.764340521971112, - "diggersby": 3.109498016418697, - "talonflame": 2.927869013835743, - "pangoro": 1.6709936144764383, - "doublade": 2.602223181555609, - "malamar": 4.594068139720872, - "barbaracle": 1.458364803508677, - "heliolisk": 3.769819022920899, - "tyrantrum": 1.6126460825663291, - "aurorus": 3.5838467232532363, - "hawlucha": 3.342299405872786, - "dedenne": 2.5926990283092985, - "klefki": 2.71896823584394, - "trevenant": 4.468424376641238, - "gourgeist-average": 6.582603454326485, - "charjabug": 3.8471568618565954, - "vikavolt": 1.780379587115722, - "ribombee": 5.254174853568688, - "lycanroc-midday": 3.769111322985929, - "lycanroc-midnight": 2.729141502795757, - "mudsdale": 1.5792770585186586, - "araquanid": 2.631013011512872, - "lurantis": 2.7682299795546013, - "shiinotic": 4.985967617395131, - "salazzle": 3.267810308941482, - "bewear": 1.6247457358194581, - "tsareena": 3.717195087988959, - "comfey": 5.340595563346962, - "oranguru": 4.554395713271693, - "passimian": 2.0708345446031853, - "palossand": 2.374607652119263, - "pyukumuku": 45.80455710226724, - "togedemaru": 2.3802171550654663, - "mimikyu-disguised": 5.221302190722275, - "greedent": 2.242096607809197, - "orbeetle": 2.618382359992893, - "thievul": 2.3249282771929236, - "eldegoss": 4.793866732032552, - "dubwool": 3.0714316384841247, - "drednaw": 1.2851327552230516, - "boltund": 4.9425976089985735, - "carkol": 2.350293278157527, - "coalossal": 1.8639319957531832, - "sandaconda": 2.7523789054413736, - "cramorant": 6.366655217297351, - "barraskewda": 4.80164764247165, - "toxtricity-amped": 2.607621151897476, - "centiskorch": 2.100021341549014, - "grapploct": 1.4995540737737691, - "polteageist": 4.7121289716327945, - "hatterene": 3.1951183004415133, - "grimmsnarl": 4.714947818314837, - "obstagoon": 2.8606016352824826, - "perrserker": 3.178098629151827, - "alcremie": 1.7590665917492148, - "falinks": 2.7487553450735955, - "pincurchin": 2.9058285012383136, - "frosmoth": 2.9864384745390224, - "indeedee-male": 5.1167851127188735, - "morpeko": 3.182475063472072, - "copperajah": 2.4336956080645935, - "duraludon": 1.4257731794434672, - "drakloak": 6.680045832458795, - "drapion": 2.204438967752918 + "ivysaur": 3.5830429763510367, + "charmeleon": 3.945007011571843, + "wartortle": 2.7140419616462594, + "butterfree": 5.000062617035299, + "raichu": 5.417051577987081, + "raichu-alola": 5.413974810305225, + "sandslash": 1.9628496586111808, + "sandslash-alola": 1.9504805244987655, + "nidoqueen": 2.6938291731827015, + "nidoking": 1.826830783292246, + "clefairy": 11.220061681878382, + "clefable": 2.35157968093311, + "jigglypuff": 31.084769255613487, + "wigglytuff": 2.3217765122679648, + "gloom": 5.947249620957761, + "vileplume": 3.1157712431571882, + "dugtrio": 3.7528333728910326, + "dugtrio-alola": 3.5319000949887815, + "persian": 4.431368531103454, + "persian-alola": 5.357548614784731, + "golduck": 3.1370744770685004, + "poliwrath": 1.6416080473301164, + "kadabra": 6.249948111669028, + "machoke": 3.637206434662131, + "tentacruel": 2.649955318189449, + "slowbro": 2.48804365649218, + "magneton": 2.982281738558723, + "haunter": 7.2720403805321325, + "kingler": 2.2433066084829543, + "exeggutor": 2.9515202882324427, + "marowak": 2.9449734458698544, + "marowak-alola": 2.7602486847744503, + "hitmonlee": 2.406693082790179, + "hitmonchan": 2.0681384571753005, + "lickitung": 1.8890964677319109, + "weezing": 1.5203799834775527, + "weezing-galar": 2.680619640059926, + "rhydon": 2.1393409385833406, + "chansey": 30.48495112803218, + "tangela": 5.0924593100608195, + "kangaskhan": 1.9039112709032135, + "seadra": 3.735871975968703, + "seaking": 2.579168368646137, + "starmie": 1.9260252411256245, + "mr-mime": 10.192690116868697, + "mr-mime-galar": 5.278114424605107, + "scyther": 2.850572119751313, + "jynx": 6.508961453178761, + "electabuzz": 2.6810339830474685, + "magmar": 1.7810237553453805, + "tauros": 1.9723287447069477, + "ditto": 2.626556571214198, + "vaporeon": 3.387271743302112, + "jolteon": 2.090533241843888, + "flareon": 2.637244235104472, + "porygon": 2.8595322641073007, + "dragonair": 1.9250973985975848, + "noctowl": 6.424102391575909, + "lanturn": 2.008690622352688, + "togetic": 6.212059745076795, + "xatu": 5.499611877011574, + "bellossom": 2.6733452467747734, + "azumarill": 2.031312832254896, + "sudowoodo": 2.572277896517578, + "politoed": 2.5366306513682817, + "quagsire": 4.456038156734756, + "slowking": 3.7800284029144207, + "dunsparce": 3.3649966220832317, + "qwilfish": 3.4438857604714945, + "sneasel": 2.769853375418176, + "piloswine": 1.6822072162914075, + "octillery": 2.388537733577619, + "mantine": 2.7174080230899005, + "skarmory": 1.924182141228651, + "hitmontop": 2.435148904905069, + "miltank": 3.520340222389601, + "grovyle": 9.95363382203451, + "sceptile": 1.745523162890318, + "combusken": 2.824094518999315, + "blaziken": 1.400237951179555, + "marshtomp": 2.486982810571854, + "swampert": 1.1931263357537623, + "linoone": 5.5121576173230515, + "linoone-galar": 5.7122391058962325, + "pelipper": 5.871768131206565, + "ninjask": 7.631985980644421, + "exploud": 1.63069102572201, + "lairon": 2.2020789629696633, + "manectric": 1.8074182054271701, + "roselia": 4.715453870527321, + "sharpedo": 6.026287094840718, + "wailmer": 6.670206954273173, + "torkoal": 1.683967867251149, + "flygon": 2.3612178834778543, + "altaria": 1.6171383005947821, + "whiscash": 2.133101841730994, + "crawdaunt": 2.1520875684362033, + "claydol": 4.82619166485178, + "cradily": 2.6834711758686938, + "armaldo": 1.979466597850834, + "dusclops": 5.011347835124666, + "absol": 2.279137131724434, + "glalie": 4.835382242097978, + "sealeo": 3.1826700859692343, + "relicanth": 1.8097639539345916, + "metang": 4.106299490411924, + "luxray": 3.8641433716332374, + "vespiquen": 2.820554845441458, + "cherrim": 6.909178554051394, + "gastrodon": 2.3091116121701396, + "drifblim": 6.544633936364965, + "lopunny": 3.8811441012107815, + "skuntank": 1.3666254338506407, + "bronzong": 5.011340962496625, + "munchlax": 2.6414579504882294, + "drapion": 2.204438967752918, + "abomasnow": 3.7220358569976186, + "froslass": 4.037803600528367, + "rotom": 5.446716384361184, + "stoutland": 2.481059740442543, + "liepard": 8.482786199188755, + "musharna": 2.4360068713303535, + "unfezant": 6.215825120957476, + "boldore": 3.1142088936044607, + "swoobat": 7.882424424457492, + "audino": 2.200307885836858, + "gurdurr": 1.895194377955464, + "palpitoad": 3.575948310134409, + "seismitoad": 6.681982607999088, + "scolipede": 3.262533859079542, + "whimsicott": 3.5436489561325386, + "lilligant": 3.553492953583878, + "basculin-red-striped": 2.972804925804195, + "basculin-blue-striped": 3.7179211246970443, + "krookodile": 3.050213040087324, + "maractus": 2.6941960069247424, + "crustle": 2.1632468034031045, + "sigilyph": 3.253998954677559, + "cofagrigus": 3.750658307887019, + "garbodor": 1.981718865747728, + "cinccino": 4.716029543193876, + "vanillish": 2.368451291213195, + "emolga": 3.052387367951635, + "escavalier": 1.821820403289306, + "amoonguss": 2.8147711791017245, + "jellicent": 2.3709598976525132, + "galvantula": 1.5747253106707184, + "klang": 2.701546240795415, + "klinklang": 3.3275851018958207, + "beheeyem": 2.701630566280585, + "lampent": 3.478196856418019, + "fraxure": 1.5509729081534005, + "beartic": 1.8897878161388992, + "cryogonal": 2.1975289889170124, + "accelgor": 3.2210343455506267, + "stunfisk": 1.2458364380407358, + "stunfisk-galar": 2.141350074815556, + "mienshao": 3.0863827719100994, + "druddigon": 1.8906421865165326, + "golurk": 2.5394541604980576, + "bisharp": 2.394749705494707, + "bouffalant": 1.3721652255781722, + "heatmor": 1.9612513662978464, + "durant": 2.7625928520208984, + "diggersby": 3.107573095204157, + "talonflame": 2.9258498996830733, + "pangoro": 1.6717646330607754, + "doublade": 2.6035931632987825, + "malamar": 4.610374706157469, + "barbaracle": 1.4584970322340576, + "heliolisk": 3.7677947740632796, + "tyrantrum": 1.6135911059123265, + "aurorus": 3.5883882756148866, + "hawlucha": 3.3433465263073767, + "dedenne": 2.590543583030868, + "klefki": 2.717908650667307, + "trevenant": 4.482988619868925, + "gourgeist-average": 6.595149914123219, + "charjabug": 3.845311557766263, + "vikavolt": 1.7795928477644596, + "ribombee": 5.253465788993472, + "lycanroc-midday": 3.774234681841586, + "lycanroc-midnight": 2.7343299967503785, + "mudsdale": 1.5802020285383414, + "araquanid": 2.6349213427268756, + "lurantis": 2.7720198492548223, + "shiinotic": 4.9865955121089875, + "salazzle": 3.266992408931136, + "bewear": 1.6235486200343145, + "tsareena": 3.7264889730220285, + "comfey": 5.346668682376045, + "oranguru": 4.581850050956938, + "passimian": 2.070048664117537, + "palossand": 2.3738068663117167, + "pyukumuku": 45.82643779959638, + "togedemaru": 2.3809912361191836, + "mimikyu-disguised": 5.235382699854726, + "greedent": 2.244935609151539, + "orbeetle": 2.6291987575283233, + "thievul": 2.3300286571091116, + "eldegoss": 4.80424316650231, + "dubwool": 3.073975982100171, + "drednaw": 1.28537866608995, + "boltund": 4.946407053737053, + "carkol": 2.349012660457134, + "coalossal": 1.8619348169481171, + "sandaconda": 2.7482279989267786, + "cramorant": 6.375257729827078, + "barraskewda": 4.8052746190173465, + "toxtricity-amped": 2.604383069948053, + "centiskorch": 2.0982819413436715, + "grapploct": 1.498519751758118, + "polteageist": 4.733083876558184, + "hatterene": 3.2067730684431703, + "grimmsnarl": 4.723860535241625, + "obstagoon": 2.862725781026234, + "perrserker": 3.1789309291504635, + "alcremie": 1.7608123685215435, + "falinks": 2.7467190721776804, + "pincurchin": 2.90424945426072, + "frosmoth": 2.9869683229012596, + "indeedee-male": 5.138217244748576, + "morpeko": 3.1848183970528354, + "copperajah": 2.4335501544384313, + "duraludon": 1.4248370586786554, + "drakloak": 6.6969910018626155 }, "abomasnow": { - "ivysaur": 4.203109163025668, - "charmeleon": 2.644819138241806, - "wartortle": 3.721375175649089, - "butterfree": 5.652117486436243, - "raichu": 5.421200127422059, - "raichu-alola": 3.9022750634344296, - "sandslash": 2.3302944669245194, - "sandslash-alola": 1.487159664024304, - "nidoqueen": 3.417404605105632, - "nidoking": 2.164337232391805, - "clefairy": 8.246131730837153, - "clefable": 2.1131778207854923, - "jigglypuff": 28.048528594273343, - "wigglytuff": 2.0782603784308424, - "gloom": 6.751831007588453, - "vileplume": 3.7017479849350483, - "dugtrio": 4.817525825759972, - "dugtrio-alola": 3.411958960249962, - "persian": 4.313037625540995, - "persian-alola": 4.348725817831999, - "golduck": 4.301446424617193, - "poliwrath": 2.4155868546891925, - "kadabra": 4.387341071180355, - "machoke": 3.4454743260905114, - "tentacruel": 2.6077934365962285, - "slowbro": 1.9535397717915295, - "magneton": 2.4845430033152436, - "haunter": 4.684774430382582, - "kingler": 2.7264814071207715, - "exeggutor": 2.4112573865943223, - "marowak": 3.6785220481069953, - "marowak-alola": 1.3311550313538012, - "hitmonlee": 2.154193773560246, - "hitmonchan": 1.9766157171910663, - "lickitung": 2.029992562388476, - "weezing": 1.1415871322205076, - "weezing-galar": 2.0753628563925246, - "rhydon": 2.9484941349576266, - "chansey": 30.680589592688367, - "tangela": 5.3300543482586615, - "kangaskhan": 1.8587176046401495, - "seadra": 4.972146564023376, - "seaking": 3.3032615110103105, - "starmie": 1.8579565090346466, - "mr-mime": 7.480126417161322, - "mr-mime-galar": 3.856228423995905, - "scyther": 3.0158926046175516, - "jynx": 4.91336127792981, - "electabuzz": 2.9892404906711807, - "magmar": 1.0719914933775536, - "tauros": 1.8841850972571477, - "ditto": 4.44155259640048, - "vaporeon": 4.989621242666384, - "jolteon": 2.1524273580336777, - "flareon": 1.5171796175474896, - "porygon": 2.8931271062896706, - "dragonair": 2.4083379380696064, - "noctowl": 7.557404525489744, - "lanturn": 3.0418340839033036, - "togetic": 5.8167290588506315, - "xatu": 4.501401248356704, - "bellossom": 3.0474585610856866, - "azumarill": 1.9291317430637847, - "sudowoodo": 2.702505888389231, - "politoed": 3.8129570592795154, - "quagsire": 8.35650921532994, - "slowking": 3.5199038477561677, - "dunsparce": 3.0361968600644, - "qwilfish": 3.048948545861954, - "sneasel": 2.3312974065158336, - "piloswine": 1.8351434342540938, - "octillery": 2.935965188571362, - "mantine": 2.673952823531992, - "skarmory": 1.5660442670053345, - "hitmontop": 2.628841868046417, - "miltank": 3.3738602717238857, - "grovyle": 10.493733056814474, - "sceptile": 1.8773033619283788, - "combusken": 2.3885322971300873, - "blaziken": 1.0866658677477725, - "marshtomp": 5.1374331634600185, - "swampert": 2.557751780299437, - "linoone": 4.9209215141748, - "linoone-galar": 4.692664073557625, - "pelipper": 5.405945731529921, - "ninjask": 8.232669642540653, - "exploud": 1.63723123306836, - "lairon": 1.7627343420712132, - "manectric": 1.6630612694207376, - "roselia": 5.788645444211868, - "sharpedo": 6.708702399792705, - "wailmer": 8.41189899457931, - "torkoal": 1.1981917439164294, - "flygon": 4.069201462555837, - "altaria": 2.5182487418803214, - "whiscash": 4.152202598812492, - "crawdaunt": 2.550823400834303, - "claydol": 4.295974745259901, - "cradily": 2.726374340469574, - "armaldo": 1.6484648938945115, - "dusclops": 3.2400299196776405, - "absol": 1.871804024145317, - "glalie": 4.024555582651305, - "sealeo": 4.3317757530971495, - "relicanth": 2.7337144348081956, - "metang": 2.2673759894295107, - "luxray": 4.009820201937657, - "vespiquen": 2.8826682882913985, - "cherrim": 7.74847457786281, - "gastrodon": 4.23662484110479, - "drifblim": 5.875680405349486, - "lopunny": 3.4351897572886827, - "skuntank": 1.1941379064610187, - "bronzong": 2.4510860088942223, - "munchlax": 2.195466362217998, - "drapion": 2.0208438632564913, - "froslass": 2.9301738796062144, - "rotom": 3.9223391818360778, - "stoutland": 2.3959506572291454, - "liepard": 7.006026844170829, - "musharna": 1.6067830072421336, - "unfezant": 6.394625964750096, - "boldore": 3.231433829547308, - "swoobat": 6.442664552677748, - "audino": 2.0850922274623227, - "gurdurr": 1.8972576909873722, - "palpitoad": 7.666493758419744, - "seismitoad": 11.3680293343936, - "scolipede": 2.6660780342640917, - "whimsicott": 3.8039180664721313, - "lilligant": 3.7887198551421473, - "basculin-red-striped": 3.753916495620895, - "basculin-blue-striped": 4.922879651304733, - "krookodile": 3.6600397756994916, - "maractus": 2.9534480967196943, - "crustle": 1.6613543622940448, - "sigilyph": 2.6832748822583525, - "cofagrigus": 2.5087106644299295, - "garbodor": 1.6030174819564371, - "cinccino": 4.572992704331277, - "vanillish": 2.2318588553788885, - "emolga": 4.029855421538462, - "escavalier": 1.4948483993702162, - "amoonguss": 3.0982702995639757, - "jellicent": 2.4261679710427626, - "galvantula": 1.6034562231296, - "klang": 2.1701253911990053, - "klinklang": 2.431654158929515, - "beheeyem": 1.8331384852922994, - "lampent": 1.4073395044638537, - "fraxure": 1.783612700112453, - "beartic": 1.7267299339127309, - "cryogonal": 2.0101596541186, - "accelgor": 2.6956047730878865, - "stunfisk": 1.8843886575584694, - "stunfisk-galar": 2.3216105406673835, - "mienshao": 3.1000258401319067, - "druddigon": 2.1525024846518868, - "golurk": 2.3548304559049065, - "bisharp": 1.8808943443790453, - "bouffalant": 1.1614588273858317, - "heatmor": 1.2716953805402342, - "durant": 2.167251752211607, - "diggersby": 4.1766829739095765, - "talonflame": 2.284144201799455, - "pangoro": 1.5787080876315407, - "doublade": 1.4991673376817136, - "malamar": 2.839128246075789, - "barbaracle": 2.4518029028095665, - "heliolisk": 4.15253509345791, - "tyrantrum": 1.5749877502289444, - "aurorus": 3.0539916263036644, - "hawlucha": 3.8061941021541017, - "dedenne": 3.1385706096868673, - "klefki": 2.3379022533556624, - "trevenant": 3.823121388593516, - "gourgeist-average": 5.067577940137113, - "charjabug": 3.9352200593952196, - "vikavolt": 1.635292256712522, - "ribombee": 4.283952466285719, - "lycanroc-midday": 3.8067417242319297, - "lycanroc-midnight": 2.7256251875229407, - "mudsdale": 1.8588646891469476, - "araquanid": 2.3158213363085287, - "lurantis": 2.938818596046327, - "shiinotic": 5.788308475394254, - "salazzle": 2.276748779920922, - "bewear": 1.6913441349785763, - "tsareena": 3.779359451550458, - "comfey": 4.83522142507502, - "oranguru": 2.8174878976335416, - "passimian": 1.9135036451829501, - "palossand": 2.559321850146614, - "pyukumuku": 49.682738496501045, - "togedemaru": 1.8227505205226722, - "mimikyu-disguised": 4.202836178944891, - "greedent": 1.962271989315554, - "orbeetle": 1.6712193978604621, - "thievul": 1.6607977636416993, - "eldegoss": 5.417707512754537, - "dubwool": 2.8142976961272717, - "drednaw": 1.9186431712226037, - "boltund": 4.916104718376868, - "carkol": 1.8134940577450123, - "coalossal": 1.5978198741571943, - "sandaconda": 3.4866309951747043, - "cramorant": 6.120341753194758, - "barraskewda": 6.008279044449502, - "toxtricity-amped": 2.7110847045780284, - "centiskorch": 1.5126901529843892, - "grapploct": 1.5971022127060819, - "polteageist": 3.0284103586985576, - "hatterene": 2.5524180159039123, - "grimmsnarl": 3.7883633386475952, - "obstagoon": 2.501031035749838, - "perrserker": 2.435517645601046, - "alcremie": 1.4789113863358456, - "falinks": 2.50158405099345, - "pincurchin": 3.09346008822055, - "frosmoth": 2.079235195297782, - "indeedee-male": 3.0892900361484177, - "morpeko": 2.894098835483157, - "copperajah": 1.7169348666602695, - "duraludon": 1.3086182684804553, - "drakloak": 5.80643025949194, - "abomasnow": 3.2295489688053722 + "ivysaur": 4.207134541339975, + "charmeleon": 2.6309704588075697, + "wartortle": 3.7280215426658367, + "butterfree": 5.646724970695315, + "raichu": 5.426191606927858, + "raichu-alola": 3.90709078386638, + "sandslash": 2.331506258935763, + "sandslash-alola": 1.4820627464037077, + "nidoqueen": 3.421342749739774, + "nidoking": 2.1651539073093216, + "clefairy": 8.230051467885751, + "clefable": 2.1136430393446553, + "jigglypuff": 28.073561133158947, + "wigglytuff": 2.07966463380304, + "gloom": 6.746942027560886, + "vileplume": 3.703527989655173, + "dugtrio": 4.83032615476832, + "dugtrio-alola": 3.4116514648322998, + "persian": 4.312969831257245, + "persian-alola": 4.350368892258677, + "golduck": 4.310304990143392, + "poliwrath": 2.4166933417505536, + "kadabra": 4.389810188174344, + "machoke": 3.440345651182897, + "tentacruel": 2.6092695615797465, + "slowbro": 1.9508404354816644, + "magneton": 2.479470831134808, + "haunter": 4.687838269904542, + "kingler": 2.72761001628732, + "exeggutor": 2.4142346788594673, + "marowak": 3.6842134346750157, + "marowak-alola": 1.3238068434298764, + "hitmonlee": 2.1482800784965916, + "hitmonchan": 1.973325895563797, + "lickitung": 2.0324328897279478, + "weezing": 1.13806244030178, + "weezing-galar": 2.069425737783449, + "rhydon": 2.948657725877548, + "chansey": 30.69827647492182, + "tangela": 5.336184581967206, + "kangaskhan": 1.8593650819854468, + "seadra": 4.978295667188785, + "seaking": 3.3060788654238373, + "starmie": 1.858478055489178, + "mr-mime": 7.487097490904844, + "mr-mime-galar": 3.8551060841770113, + "scyther": 3.0113688651884942, + "jynx": 4.913736377633765, + "electabuzz": 2.995240428961243, + "magmar": 1.0666178957091441, + "tauros": 1.8835922359916135, + "ditto": 4.415315339635559, + "vaporeon": 5.002306903408668, + "jolteon": 2.1562687374218257, + "flareon": 1.512253593124293, + "porygon": 2.895247690623478, + "dragonair": 2.4111249715966316, + "noctowl": 7.554011088769018, + "lanturn": 3.0522833769871127, + "togetic": 5.803880088383369, + "xatu": 4.499740969401596, + "bellossom": 3.053181535193482, + "azumarill": 1.921580019199074, + "sudowoodo": 2.699667308014046, + "politoed": 3.8226104086478103, + "quagsire": 8.37560086256258, + "slowking": 3.5256452305333217, + "dunsparce": 3.0334561308046717, + "qwilfish": 3.044956770720698, + "sneasel": 2.3300274672798738, + "piloswine": 1.8337712513013655, + "octillery": 2.935403692860284, + "mantine": 2.67659541774248, + "skarmory": 1.5612879840318308, + "hitmontop": 2.628681217559274, + "miltank": 3.3731440481166572, + "grovyle": 10.50533310314363, + "sceptile": 1.8801646472825877, + "combusken": 2.3779949277474213, + "blaziken": 1.0807117275168627, + "marshtomp": 5.156743986514252, + "swampert": 2.567838869833855, + "linoone": 4.916473827653297, + "linoone-galar": 4.692811277064826, + "pelipper": 5.398731258171068, + "ninjask": 8.215390272673122, + "exploud": 1.636887343213263, + "lairon": 1.7556139537508417, + "manectric": 1.6608521728193821, + "roselia": 5.799538066451847, + "sharpedo": 6.716816438076888, + "wailmer": 8.41562877880899, + "torkoal": 1.1923867611505785, + "flygon": 4.073182529191547, + "altaria": 2.518432244032887, + "whiscash": 4.160971979992556, + "crawdaunt": 2.5533951924024603, + "claydol": 4.302006945065764, + "cradily": 2.7268101411215158, + "armaldo": 1.6455656128341236, + "dusclops": 3.2375152332580317, + "absol": 1.8694307297892971, + "glalie": 4.020708577813661, + "sealeo": 4.338692778996348, + "relicanth": 2.7340996012904926, + "metang": 2.262301359585808, + "luxray": 4.014866999211888, + "vespiquen": 2.8758553327992438, + "cherrim": 7.762355688162579, + "gastrodon": 4.243488400278448, + "drifblim": 5.884012703758344, + "lopunny": 3.430864647042548, + "skuntank": 1.1925334196609096, + "bronzong": 2.445974382117173, + "munchlax": 2.1904456713621263, + "drapion": 2.017392942098595, + "abomasnow": 3.2295489688053722, + "froslass": 2.9288419761982962, + "rotom": 3.9280278525583476, + "stoutland": 2.395359160803139, + "liepard": 7.00843924482124, + "musharna": 1.6081405925185686, + "unfezant": 6.383115764320799, + "boldore": 3.2269639801282057, + "swoobat": 6.44022424394489, + "audino": 2.080626438073268, + "gurdurr": 1.8944265872583914, + "palpitoad": 7.69109572166292, + "seismitoad": 11.370518059808067, + "scolipede": 2.65882962319194, + "whimsicott": 3.8069661033185485, + "lilligant": 3.791872613087852, + "basculin-red-striped": 3.7606351358838417, + "basculin-blue-striped": 4.9332690400082235, + "krookodile": 3.6692749125820114, + "maractus": 2.960613099996711, + "crustle": 1.6563549121001477, + "sigilyph": 2.681269193272417, + "cofagrigus": 2.5086181629052424, + "garbodor": 1.5978577814048753, + "cinccino": 4.573292994443453, + "vanillish": 2.2314090940636837, + "emolga": 4.034845214183095, + "escavalier": 1.4928184195827066, + "amoonguss": 3.0970940399255777, + "jellicent": 2.431123883030688, + "galvantula": 1.6038118648583124, + "klang": 2.1657461032850627, + "klinklang": 2.4234844563209568, + "beheeyem": 1.8330843553522163, + "lampent": 1.3993464372534894, + "fraxure": 1.7830280829304488, + "beartic": 1.7255286731772157, + "cryogonal": 2.011475049981409, + "accelgor": 2.688451618970607, + "stunfisk": 1.8920616500327363, + "stunfisk-galar": 2.3238351618361226, + "mienshao": 3.096223742554244, + "druddigon": 2.152040359558022, + "golurk": 2.3573321674500245, + "bisharp": 1.8762920317437048, + "bouffalant": 1.1575431743755835, + "heatmor": 1.2650554891496955, + "durant": 2.1590576529178254, + "diggersby": 4.185773526460453, + "talonflame": 2.2743880043217706, + "pangoro": 1.576528990625691, + "doublade": 1.4919316748800182, + "malamar": 2.840501109049233, + "barbaracle": 2.4538656624094974, + "heliolisk": 4.160577083377057, + "tyrantrum": 1.5728677774282693, + "aurorus": 3.053176506529799, + "hawlucha": 3.801411884544595, + "dedenne": 3.144177138822325, + "klefki": 2.3332632623059686, + "trevenant": 3.8250332781205096, + "gourgeist-average": 5.053117257917507, + "charjabug": 3.9410172258886127, + "vikavolt": 1.6332290078031249, + "ribombee": 4.27733428065736, + "lycanroc-midday": 3.802048793628892, + "lycanroc-midnight": 2.7230217756200688, + "mudsdale": 1.8605106659292943, + "araquanid": 2.3133775982990534, + "lurantis": 2.939956293801273, + "shiinotic": 5.794399841955277, + "salazzle": 2.2617629388256226, + "bewear": 1.6905927356287886, + "tsareena": 3.781688682464053, + "comfey": 4.844366664907737, + "oranguru": 2.818693740151879, + "passimian": 1.9091600556125212, + "palossand": 2.565079632135496, + "pyukumuku": 49.62523724108759, + "togedemaru": 1.817281346112264, + "mimikyu-disguised": 4.204152502340734, + "greedent": 1.9603369336181098, + "orbeetle": 1.6694528735327054, + "thievul": 1.6589567684739515, + "eldegoss": 5.429617410231815, + "dubwool": 2.8126423852684694, + "drednaw": 1.9183242444625859, + "boltund": 4.922926399274112, + "carkol": 1.803570221604277, + "coalossal": 1.5914486187495793, + "sandaconda": 3.4899894197307577, + "cramorant": 6.129922076691084, + "barraskewda": 6.016023436734942, + "toxtricity-amped": 2.712821495006733, + "centiskorch": 1.5065245798649027, + "grapploct": 1.5949518028481513, + "polteageist": 3.032830221273226, + "hatterene": 2.55409752681586, + "grimmsnarl": 3.788520787059495, + "obstagoon": 2.5010997451118557, + "perrserker": 2.430006109649696, + "alcremie": 1.4779555449061754, + "falinks": 2.494649039534961, + "pincurchin": 3.100615881790944, + "frosmoth": 2.0725676363904073, + "indeedee-male": 3.0848285982777774, + "morpeko": 2.8983401468436423, + "copperajah": 1.7105352614110656, + "duraludon": 1.3065745446762018, + "drakloak": 5.809369683750529 }, "froslass": { - "ivysaur": 3.9929748972915444, - "charmeleon": 3.2751173907362503, - "wartortle": 2.760777548828222, - "butterfree": 6.073652139672454, - "raichu": 5.386946019463306, - "raichu-alola": 4.034470082767921, - "sandslash": 2.742352196924414, - "sandslash-alola": 1.9802662998768856, - "nidoqueen": 3.3024463988209805, - "nidoking": 2.209729748481828, - "clefairy": 8.199793730510256, - "clefable": 1.9000955386071934, - "jigglypuff": 25.814389278152735, - "wigglytuff": 1.9698662045264603, - "gloom": 7.2677847851751345, - "vileplume": 3.7629506422907633, - "dugtrio": 4.097952563991528, - "dugtrio-alola": 2.9999231130088995, - "persian": 4.791445744807172, - "persian-alola": 3.339168756054055, - "golduck": 3.1186552114953345, - "poliwrath": 2.0669034070901917, - "kadabra": 4.359874390659819, - "machoke": 3.6980477228839526, - "tentacruel": 2.146751591078279, - "slowbro": 2.2156350355936483, - "magneton": 2.8422758733742484, - "haunter": 5.17769033791695, - "kingler": 2.7992022842175146, - "exeggutor": 2.4824798327598665, - "marowak": 3.4077322800847627, - "marowak-alola": 2.3781821122369946, - "hitmonlee": 2.635033878419896, - "hitmonchan": 2.1043520316263757, - "lickitung": 1.945273432098531, - "weezing": 1.4756549908639265, - "weezing-galar": 2.5975922287269753, - "rhydon": 2.577439466564953, - "chansey": 34.597727722452824, - "tangela": 6.73414919064346, - "kangaskhan": 1.7849383864276014, - "seadra": 4.596623767144758, - "seaking": 2.32480181961846, - "starmie": 1.7835230631195311, - "mr-mime": 7.535466947742462, - "mr-mime-galar": 4.471402661726426, - "scyther": 3.2767231295078507, - "jynx": 4.944108642940811, - "electabuzz": 2.5549759235582146, - "magmar": 1.351757136828018, - "tauros": 2.0702184788566083, - "ditto": 4.318178528488409, - "vaporeon": 3.091245916535717, - "jolteon": 1.975309521669078, - "flareon": 1.748095187902405, - "porygon": 2.75359945068185, - "dragonair": 2.366799848181025, - "noctowl": 8.40611553178718, - "lanturn": 1.7822790635296577, - "togetic": 5.9942869129237755, - "xatu": 4.845916848936994, - "bellossom": 2.809520575741213, - "azumarill": 2.1482771965375305, - "sudowoodo": 2.5423641147645175, - "politoed": 2.4776925582761393, - "quagsire": 4.94928531117327, - "slowking": 2.926362876935937, - "dunsparce": 3.0892773018810384, - "qwilfish": 3.4839376696621045, - "sneasel": 1.7420307986918144, - "piloswine": 1.6843040536759504, - "octillery": 2.211137247631541, - "mantine": 2.441358887482953, - "skarmory": 2.007999866030257, - "hitmontop": 2.891339050124542, - "miltank": 3.8912424825308127, - "grovyle": 10.36837399376947, - "sceptile": 1.7463209250613798, - "combusken": 3.358975715332374, - "blaziken": 1.499023207187212, - "marshtomp": 2.4690558394571345, - "swampert": 1.2838802007039314, - "linoone": 5.166665418858008, - "linoone-galar": 3.6419107848536023, - "pelipper": 6.827447367079833, - "ninjask": 9.80891568042885, - "exploud": 1.8201435119491096, - "lairon": 2.082988671476561, - "manectric": 1.787073134927247, - "roselia": 5.294303595116276, - "sharpedo": 3.8165963038482777, - "wailmer": 6.0901612906083145, - "torkoal": 1.653926438288049, - "flygon": 4.139385002671071, - "altaria": 2.5879874703637964, - "whiscash": 1.9989459355858161, - "crawdaunt": 1.6407511529897252, - "claydol": 4.1823857794745365, - "cradily": 2.6214222717998865, - "armaldo": 1.7949143111687316, - "dusclops": 3.9087724618178257, - "absol": 1.8507717905440093, - "glalie": 3.749425769977808, - "sealeo": 3.174157074682685, - "relicanth": 1.8068663063779222, - "metang": 3.589901708542217, - "luxray": 4.064149811977055, - "vespiquen": 3.549083321703968, - "cherrim": 7.468842889927549, - "gastrodon": 2.151147195009268, - "drifblim": 5.496011068240537, - "lopunny": 4.083798156873343, - "skuntank": 1.2022170234135605, - "bronzong": 3.8320213306139967, - "munchlax": 1.9711021151249377, - "drapion": 2.077407165104985, - "abomasnow": 3.3273876493303973, - "rotom": 4.469711561174326, - "stoutland": 2.8978614766077726, - "liepard": 6.038579812812179, - "musharna": 1.8565917872890054, - "unfezant": 7.83016770663494, - "boldore": 3.3757046107399047, - "swoobat": 6.9509869612616715, - "audino": 2.4606000947463924, - "gurdurr": 2.6200713911462064, - "palpitoad": 3.8059143392108266, - "seismitoad": 7.2541390551966, - "scolipede": 3.0217399380922343, - "whimsicott": 3.822453235896157, - "lilligant": 3.8060033130526354, - "basculin-red-striped": 2.7946844470990886, - "basculin-blue-striped": 3.3752907552630886, - "krookodile": 3.0989523190718007, - "maractus": 2.6168901762685643, - "crustle": 2.1514214222967785, - "sigilyph": 2.8049284924659017, - "cofagrigus": 3.211093925585547, - "garbodor": 1.9929347101032096, - "cinccino": 5.194738499932639, - "vanillish": 2.3877589761590388, - "emolga": 3.796884018329647, - "escavalier": 1.7956044613696016, - "amoonguss": 3.266054904355806, - "jellicent": 1.9189334386455323, - "galvantula": 1.5781677551866653, - "klang": 2.405723389985478, - "klinklang": 3.1898908225872677, - "beheeyem": 2.029041806988564, - "lampent": 2.7122454366910347, - "fraxure": 2.012437556259432, - "beartic": 1.8557673753838093, - "cryogonal": 1.6872178679516434, - "accelgor": 3.314289420767979, - "stunfisk": 1.558906878956726, - "stunfisk-galar": 2.1802564655796464, - "mienshao": 3.598331779239002, - "druddigon": 2.0384908810068607, - "golurk": 2.405428908326483, - "bisharp": 1.892417448427914, - "bouffalant": 1.2634786585183315, - "heatmor": 1.6081514518460587, - "durant": 3.1306510090715163, - "diggersby": 3.8734983453159146, - "talonflame": 2.5679096344813983, - "pangoro": 1.6133874767327727, - "doublade": 3.7462581891724303, - "malamar": 2.5518134933239986, - "barbaracle": 1.591162920720665, - "heliolisk": 3.852510677621571, - "tyrantrum": 2.0498168051931223, - "aurorus": 2.2085499417690184, - "hawlucha": 4.438558922611708, - "dedenne": 2.8137537341106875, - "klefki": 2.715478468612213, - "trevenant": 4.176152842148555, - "gourgeist-average": 6.163394988061622, - "charjabug": 3.9811987785404623, - "vikavolt": 1.9183446716183217, - "ribombee": 4.784510044201323, - "lycanroc-midday": 2.906096042069152, - "lycanroc-midnight": 2.105512792503638, - "mudsdale": 1.9912487787724311, - "araquanid": 2.266294021572224, - "lurantis": 3.1704003362107125, - "shiinotic": 5.644907850033268, - "salazzle": 2.8933387250237983, - "bewear": 1.9389502564106933, - "tsareena": 3.737751396168526, - "comfey": 4.343022391172134, - "oranguru": 2.5489510318230426, - "passimian": 2.4128101477180266, - "palossand": 2.617019472503719, - "pyukumuku": 46.12436247437731, - "togedemaru": 2.0186611433698256, - "mimikyu-disguised": 4.700625804885446, - "greedent": 2.093626742868615, - "orbeetle": 2.2986328558123077, - "thievul": 1.460527161620289, - "eldegoss": 4.9758677734739525, - "dubwool": 3.270804008184747, - "drednaw": 1.1098377108019017, - "boltund": 4.198761937127441, - "carkol": 1.9594712760628075, - "coalossal": 1.7101299725472332, - "sandaconda": 3.9559465815343575, - "cramorant": 4.908981232592958, - "barraskewda": 4.239848125010872, - "toxtricity-amped": 3.1345784517810715, - "centiskorch": 1.8693039318580018, - "grapploct": 1.8247112291866165, - "polteageist": 2.936454446135596, - "hatterene": 3.0930702662183736, - "grimmsnarl": 3.3908429076111677, - "obstagoon": 2.3843242139680365, - "perrserker": 2.883990891255647, - "alcremie": 1.3548394872238605, - "falinks": 3.339432952688373, - "pincurchin": 2.9190678637638277, - "frosmoth": 2.6991963385500464, - "indeedee-male": 2.808411922910607, - "morpeko": 2.5139933079604617, - "copperajah": 2.0925863865543493, - "duraludon": 1.6109895479028125, - "drakloak": 5.358813850180834, - "froslass": 3.618517065631334 + "ivysaur": 4.00261941451369, + "charmeleon": 3.2651268091217798, + "wartortle": 2.7616033208574393, + "butterfree": 6.089795145879352, + "raichu": 5.39780351157644, + "raichu-alola": 4.038856551934135, + "sandslash": 2.7482030300391407, + "sandslash-alola": 1.979572499383031, + "nidoqueen": 3.306978704133095, + "nidoking": 2.213433578786898, + "clefairy": 8.191403414457495, + "clefable": 1.8991866358806258, + "jigglypuff": 25.800398701732533, + "wigglytuff": 1.9702435126632376, + "gloom": 7.287080189542172, + "vileplume": 3.7729200711045436, + "dugtrio": 4.10271777240882, + "dugtrio-alola": 2.9955276299340117, + "persian": 4.801375677059946, + "persian-alola": 3.3309291495598634, + "golduck": 3.1192873375392316, + "poliwrath": 2.0703321058174353, + "kadabra": 4.364873420616178, + "machoke": 3.6974724784316404, + "tentacruel": 2.1456017914801366, + "slowbro": 2.213899818033349, + "magneton": 2.835014256145681, + "haunter": 5.177745275657717, + "kingler": 2.801562542235862, + "exeggutor": 2.4888908784618975, + "marowak": 3.4075407266416367, + "marowak-alola": 2.3728767566552915, + "hitmonlee": 2.6406984396029047, + "hitmonchan": 2.1055422371315875, + "lickitung": 1.9460812102213394, + "weezing": 1.4752975706765834, + "weezing-galar": 2.5975433669153, + "rhydon": 2.5754011760731754, + "chansey": 34.71427112131641, + "tangela": 6.750494471734558, + "kangaskhan": 1.7836049683338382, + "seadra": 4.597065244525023, + "seaking": 2.3235673206454734, + "starmie": 1.7824612691819337, + "mr-mime": 7.540907072830686, + "mr-mime-galar": 4.471677925823284, + "scyther": 3.2822193743818113, + "jynx": 4.94948924794434, + "electabuzz": 2.557236721391952, + "magmar": 1.348542954263181, + "tauros": 2.0712052927300744, + "ditto": 4.308527079476292, + "vaporeon": 3.0924167620017764, + "jolteon": 1.9747224193149306, + "flareon": 1.7428629152945518, + "porygon": 2.752587295924787, + "dragonair": 2.3717211283322084, + "noctowl": 8.431223612055401, + "lanturn": 1.781155989382559, + "togetic": 5.998169470423906, + "xatu": 4.857518942172523, + "bellossom": 2.814418197895943, + "azumarill": 2.1486660801082498, + "sudowoodo": 2.541783777676931, + "politoed": 2.477515685551233, + "quagsire": 4.958365907373134, + "slowking": 2.926919025515772, + "dunsparce": 3.0861029010639087, + "qwilfish": 3.4822449213160604, + "sneasel": 1.7349860156811356, + "piloswine": 1.685370571010105, + "octillery": 2.2081973208172148, + "mantine": 2.4423223361989415, + "skarmory": 2.0076988007891625, + "hitmontop": 2.8986161972908837, + "miltank": 3.896442686930717, + "grovyle": 10.398549530432248, + "sceptile": 1.7496488822186547, + "combusken": 3.359992895427964, + "blaziken": 1.4970199546707081, + "marshtomp": 2.470690807810869, + "swampert": 1.2849639351589577, + "linoone": 5.16537273712613, + "linoone-galar": 3.627026854871022, + "pelipper": 6.844276940356851, + "ninjask": 9.840214759260311, + "exploud": 1.8251990655347312, + "lairon": 2.0762022160165925, + "manectric": 1.7868116172358102, + "roselia": 5.306618309260814, + "sharpedo": 3.8037282048462386, + "wailmer": 6.081435507711925, + "torkoal": 1.6508636628785585, + "flygon": 4.1518252912868014, + "altaria": 2.5950904299226107, + "whiscash": 1.9995254244205134, + "crawdaunt": 1.6368382840055489, + "claydol": 4.1919373571855765, + "cradily": 2.6237675510045437, + "armaldo": 1.7948822904410426, + "dusclops": 3.9067130738425897, + "absol": 1.848132023421824, + "glalie": 3.741014141439635, + "sealeo": 3.170815776395919, + "relicanth": 1.8025311688977608, + "metang": 3.586364438315272, + "luxray": 4.07164003587731, + "vespiquen": 3.560611694603048, + "cherrim": 7.489437170330227, + "gastrodon": 2.152612148112003, + "drifblim": 5.51092063167388, + "lopunny": 4.093076396625082, + "skuntank": 1.1994007096205541, + "bronzong": 3.8295796123060413, + "munchlax": 1.9680437117518295, + "drapion": 2.0736827663611854, + "abomasnow": 3.330499340285283, + "froslass": 3.618517065631334, + "rotom": 4.469912622441948, + "stoutland": 2.9079210351879183, + "liepard": 6.025537234700778, + "musharna": 1.8578695998057082, + "unfezant": 7.838880385326965, + "boldore": 3.375006508851352, + "swoobat": 6.967810485064112, + "audino": 2.458737263762766, + "gurdurr": 2.6292252998084065, + "palpitoad": 3.8090435104754077, + "seismitoad": 7.275203849339297, + "scolipede": 3.020407539157379, + "whimsicott": 3.8294085104755906, + "lilligant": 3.814648646052272, + "basculin-red-striped": 2.7932053538615413, + "basculin-blue-striped": 3.3691569849215472, + "krookodile": 3.096945439792365, + "maractus": 2.6204583885595287, + "crustle": 2.15346760901097, + "sigilyph": 2.809033796233214, + "cofagrigus": 3.2093418383731844, + "garbodor": 1.9987496666773321, + "cinccino": 5.207354829524972, + "vanillish": 2.390557546237325, + "emolga": 3.805565595234236, + "escavalier": 1.7956112783785625, + "amoonguss": 3.275233742560193, + "jellicent": 1.9210934707497076, + "galvantula": 1.5793106817886646, + "klang": 2.399479616720552, + "klinklang": 3.185199154444213, + "beheeyem": 2.0284063488592743, + "lampent": 2.709306396529149, + "fraxure": 2.018032817663067, + "beartic": 1.8574832549527933, + "cryogonal": 1.6870221431574182, + "accelgor": 3.3203883319344767, + "stunfisk": 1.5616643383915751, + "stunfisk-galar": 2.1802628151204515, + "mienshao": 3.6056609201209557, + "druddigon": 2.039073082596736, + "golurk": 2.4126908292456677, + "bisharp": 1.8872840872807137, + "bouffalant": 1.263312651912043, + "heatmor": 1.6036801903557136, + "durant": 3.1283184212728887, + "diggersby": 3.876514072347, + "talonflame": 2.5638588785760743, + "pangoro": 1.6119800631345977, + "doublade": 3.749406757150429, + "malamar": 2.547733734132154, + "barbaracle": 1.5922745780624485, + "heliolisk": 3.8552519325217105, + "tyrantrum": 2.0548990896492874, + "aurorus": 2.2034119126561085, + "hawlucha": 4.449686864427687, + "dedenne": 2.8153340293334272, + "klefki": 2.710484095860791, + "trevenant": 4.194966905266574, + "gourgeist-average": 6.164039864508448, + "charjabug": 3.9830786150340365, + "vikavolt": 1.9217071001179518, + "ribombee": 4.790550583458499, + "lycanroc-midday": 2.9001977637581238, + "lycanroc-midnight": 2.1022564987628933, + "mudsdale": 1.9966128632265985, + "araquanid": 2.2669366095604784, + "lurantis": 3.1807674672382773, + "shiinotic": 5.660325930785696, + "salazzle": 2.8857149457340214, + "bewear": 1.9415691707412055, + "tsareena": 3.744322718369017, + "comfey": 4.3454601320537245, + "oranguru": 2.545703562802053, + "passimian": 2.4157010996843953, + "palossand": 2.622485034226885, + "pyukumuku": 46.15527198747435, + "togedemaru": 2.014386637423922, + "mimikyu-disguised": 4.703217723174893, + "greedent": 2.092328160084163, + "orbeetle": 2.300721643198761, + "thievul": 1.4557334673293298, + "eldegoss": 4.988377990101482, + "dubwool": 3.2771631562038923, + "drednaw": 1.1072018950152627, + "boltund": 4.193167996974966, + "carkol": 1.9523963007204226, + "coalossal": 1.7045032872741221, + "sandaconda": 3.9651780554435256, + "cramorant": 4.901777575704684, + "barraskewda": 4.231040147797888, + "toxtricity-amped": 3.1397995488482895, + "centiskorch": 1.8668705200972808, + "grapploct": 1.8310694056119519, + "polteageist": 2.9382796815867502, + "hatterene": 3.096243233306463, + "grimmsnarl": 3.386137117290623, + "obstagoon": 2.380313554600006, + "perrserker": 2.8756056302929753, + "alcremie": 1.3542114293950775, + "falinks": 3.3439264401923117, + "pincurchin": 2.9199662376248985, + "frosmoth": 2.698816399141005, + "indeedee-male": 2.800197110450822, + "morpeko": 2.51144120272149, + "copperajah": 2.0879813049159317, + "duraludon": 1.6105395626225816, + "drakloak": 5.364437517019354 }, "rotom": { - "ivysaur": 3.030076547742439, - "charmeleon": 3.6815542420269463, - "wartortle": 3.5487015827289334, - "butterfree": 5.49012316512265, - "raichu": 5.429727322421332, - "raichu-alola": 4.22778223637335, - "sandslash": 2.5687529161831364, - "sandslash-alola": 2.1397244211160564, - "nidoqueen": 2.7854684079489, - "nidoking": 1.93195199899519, - "clefairy": 8.500153784208504, - "clefable": 1.8775012868142418, - "jigglypuff": 25.412529960776816, - "wigglytuff": 1.9536512610665904, - "gloom": 5.620517992933042, - "vileplume": 2.918480187710697, - "dugtrio": 3.7038814932544644, - "dugtrio-alola": 3.458898412264926, - "persian": 4.813982820064304, - "persian-alola": 3.2758274463019976, - "golduck": 4.088304599257441, - "poliwrath": 2.7465963573515797, - "kadabra": 4.264670471062181, - "machoke": 3.88770200107362, - "tentacruel": 2.7027215407334504, - "slowbro": 2.324299727762894, - "magneton": 3.486912727563717, - "haunter": 5.167261137786755, - "kingler": 4.044404058204461, - "exeggutor": 2.5790853128157494, - "marowak": 3.2188238405554688, - "marowak-alola": 2.6921308058495814, - "hitmonlee": 2.4375952205438, - "hitmonchan": 2.099689383553603, - "lickitung": 1.9013345759540368, - "weezing": 1.613513345472139, - "weezing-galar": 2.742855934656163, - "rhydon": 2.681925829281467, - "chansey": 23.704414901349093, - "tangela": 5.550868045630951, - "kangaskhan": 1.8642733754065677, - "seadra": 6.317095309991419, - "seaking": 3.2171282353061867, - "starmie": 1.775932981959344, - "mr-mime": 7.519729913478199, - "mr-mime-galar": 4.112046474941491, - "scyther": 3.4584184847919444, - "jynx": 4.67234717128532, - "electabuzz": 2.6714750300194026, - "magmar": 1.5727885843331388, - "tauros": 2.292289415918125, - "ditto": 4.745575138927951, - "vaporeon": 3.9638486845511594, - "jolteon": 1.8998143252042263, - "flareon": 2.0270727461017164, - "porygon": 2.811963397778609, - "dragonair": 1.7647632022532385, - "noctowl": 7.481332078946828, - "lanturn": 1.8443197632337043, - "togetic": 6.438170738156753, - "xatu": 4.95214587490641, - "bellossom": 2.1889517025904066, - "azumarill": 3.055456605775553, - "sudowoodo": 2.9080361051535055, - "politoed": 3.4268554565011833, - "quagsire": 4.958196956843045, - "slowking": 2.845569686105065, - "dunsparce": 3.11801858732743, - "qwilfish": 4.953251797811258, - "sneasel": 1.8595327509885955, - "piloswine": 1.6193584043867517, - "octillery": 3.138633421339507, - "mantine": 3.950997395947793, - "skarmory": 3.2026374804653113, - "hitmontop": 2.8978100401766076, - "miltank": 4.134269854245486, - "grovyle": 7.720956200611133, - "sceptile": 1.3284479276676904, - "combusken": 3.623888015107955, - "blaziken": 1.6727937529534547, - "marshtomp": 2.483739443537381, - "swampert": 1.2674201957821052, - "linoone": 5.211419690509782, - "linoone-galar": 3.6069390440745783, - "pelipper": 14.571181339797175, - "ninjask": 10.1297578065354, - "exploud": 1.7093857387593783, - "lairon": 2.655658612545662, - "manectric": 1.8860421481046843, - "roselia": 3.6559832321780794, - "sharpedo": 5.758120584190318, - "wailmer": 8.666171172877814, - "torkoal": 1.9876157780206567, - "flygon": 2.447977939674119, - "altaria": 1.4774501066667194, - "whiscash": 1.9790913292568482, - "crawdaunt": 2.6215407412126277, - "claydol": 4.21195839776911, - "cradily": 2.181917620058403, - "armaldo": 2.004419099978964, - "dusclops": 3.8913640273316537, - "absol": 1.8474451271382215, - "glalie": 3.727257213923922, - "sealeo": 3.910630540378997, - "relicanth": 2.589249772853021, - "metang": 4.135255779668183, - "luxray": 4.280121592080096, - "vespiquen": 3.7651959922156726, - "cherrim": 5.8351174878717025, - "gastrodon": 2.1547583449616443, - "drifblim": 5.4711285534925285, - "lopunny": 4.193470002002521, - "skuntank": 1.2991374066097319, - "bronzong": 4.221839458842726, - "munchlax": 2.2146973962677974, - "drapion": 2.366231468653269, - "abomasnow": 3.1114883869874843, - "froslass": 3.4098066626946695, - "stoutland": 2.9505434339550196, - "liepard": 6.0548928377814, - "musharna": 1.8558015806069705, - "unfezant": 9.336019903340985, - "boldore": 3.8722791663392795, - "swoobat": 7.100540417544288, - "audino": 2.621946200298823, - "gurdurr": 2.8056576143517047, - "palpitoad": 4.10143054694443, - "seismitoad": 7.156578677863081, - "scolipede": 3.132571376816739, - "whimsicott": 3.1040264013400307, - "lilligant": 2.9963984212742645, - "basculin-red-striped": 3.6375809280620772, - "basculin-blue-striped": 4.463743389543922, - "krookodile": 2.235406342440342, - "maractus": 2.0337836608901925, - "crustle": 2.2939367373143975, - "sigilyph": 3.0496443376033686, - "cofagrigus": 3.199030542430992, - "garbodor": 1.9653648670676467, - "cinccino": 5.0397547314037485, - "vanillish": 2.18121430396672, - "emolga": 3.245685031913064, - "escavalier": 1.928935362981901, - "amoonguss": 2.511669454379649, - "jellicent": 1.822646114938265, - "galvantula": 1.6830364495639136, - "klang": 2.89562924740218, - "klinklang": 3.8907111014310045, - "beheeyem": 2.1050189095519785, - "lampent": 3.2875617837877256, - "fraxure": 1.60405792627905, - "beartic": 1.6978275985230862, - "cryogonal": 1.4746025845424484, - "accelgor": 3.118633621479237, - "stunfisk": 1.3056197338978555, - "stunfisk-galar": 2.4478175191760583, - "mienshao": 3.763198367563702, - "druddigon": 1.8062996355762426, - "golurk": 2.4450901356390675, - "bisharp": 2.2742261881861205, - "bouffalant": 1.3637227670495897, - "heatmor": 1.8209639651621152, - "durant": 3.5361392931137527, - "diggersby": 2.5921846276303357, - "talonflame": 3.921738414879992, - "pangoro": 1.7230283615436224, - "doublade": 4.436713264781224, - "malamar": 2.581911270701624, - "barbaracle": 1.9994115225471543, - "heliolisk": 3.3024090665104415, - "tyrantrum": 1.8031891201783186, - "aurorus": 2.321575484211727, - "hawlucha": 4.669883973311219, - "dedenne": 2.7771382187048257, - "klefki": 3.1092518319879687, - "trevenant": 4.035391172954974, - "gourgeist-average": 6.580683240111691, - "charjabug": 4.4287552397694405, - "vikavolt": 2.0311129373063284, - "ribombee": 4.614475625306099, - "lycanroc-midday": 3.2816551069643216, - "lycanroc-midnight": 2.2214133267813025, - "mudsdale": 1.665699801607929, - "araquanid": 2.937919779340495, - "lurantis": 2.5043951410108347, - "shiinotic": 4.3229240617766695, - "salazzle": 3.1512517704950476, - "bewear": 2.026487477943407, - "tsareena": 3.0475009158145503, - "comfey": 4.152912236419914, - "oranguru": 2.4426668694336486, - "passimian": 2.620591054765346, - "palossand": 2.829969579732585, - "pyukumuku": 59.81240878017263, - "togedemaru": 2.3199818299128308, - "mimikyu-disguised": 4.6917871709641545, - "greedent": 2.370290208966276, - "orbeetle": 2.2993472438156277, - "thievul": 1.4584552952371515, - "eldegoss": 3.763851215057321, - "dubwool": 3.356048282107328, - "drednaw": 1.655094537668473, - "boltund": 4.2846504885300165, - "carkol": 2.3197430484680455, - "coalossal": 1.9221781864540988, - "sandaconda": 3.541425004683882, - "cramorant": 7.9843419247547285, - "barraskewda": 5.609843222480697, - "toxtricity-amped": 3.254427011738182, - "centiskorch": 2.0999002719248727, - "grapploct": 1.8172587244529486, - "polteageist": 2.931057927499583, - "hatterene": 3.094739483746171, - "grimmsnarl": 3.3535456311794194, - "obstagoon": 2.504876256964367, - "perrserker": 3.248806148487242, - "alcremie": 1.280468036573644, - "falinks": 3.6657993121365977, - "pincurchin": 3.031711928907062, - "frosmoth": 2.7733243552754656, - "indeedee-male": 2.6858826137748846, - "morpeko": 2.233496047365515, - "copperajah": 2.603137547960562, - "duraludon": 1.781697174329824, - "drakloak": 5.201903301406504, - "rotom": 4.674639547268125 + "ivysaur": 3.026010076198946, + "charmeleon": 3.677386120480446, + "wartortle": 3.5510352193898744, + "butterfree": 5.49228274132807, + "raichu": 5.430611480003298, + "raichu-alola": 4.228596147151104, + "sandslash": 2.5714100826570836, + "sandslash-alola": 2.1410092509919236, + "nidoqueen": 2.7820079590374913, + "nidoking": 1.9316243033969518, + "clefairy": 8.49126772918357, + "clefable": 1.8756581606786673, + "jigglypuff": 25.358321130235765, + "wigglytuff": 1.95128306593831, + "gloom": 5.615213151872863, + "vileplume": 2.9157832083424986, + "dugtrio": 3.7058153231428497, + "dugtrio-alola": 3.4565857464391523, + "persian": 4.818256708842828, + "persian-alola": 3.262918063945257, + "golduck": 4.092331023965018, + "poliwrath": 2.753635314208115, + "kadabra": 4.262515629665789, + "machoke": 3.8864943824904845, + "tentacruel": 2.7022728375739744, + "slowbro": 2.326193837628527, + "magneton": 3.489562242146545, + "haunter": 5.159373152402472, + "kingler": 4.056368475608458, + "exeggutor": 2.5807911477670236, + "marowak": 3.2159498054788838, + "marowak-alola": 2.691612067403334, + "hitmonlee": 2.441140927924921, + "hitmonchan": 2.0996658500883822, + "lickitung": 1.8999139552471935, + "weezing": 1.6126967724026797, + "weezing-galar": 2.7430064915589876, + "rhydon": 2.6827574289001292, + "chansey": 23.711383503981978, + "tangela": 5.5498465323251525, + "kangaskhan": 1.8618216823381855, + "seadra": 6.32455036934715, + "seaking": 3.222004051904587, + "starmie": 1.7770396443933225, + "mr-mime": 7.512429802506633, + "mr-mime-galar": 4.107764861100852, + "scyther": 3.4602084463977762, + "jynx": 4.669305637477789, + "electabuzz": 2.6727689217978186, + "magmar": 1.5718279259851444, + "tauros": 2.293936784848393, + "ditto": 4.733578621535088, + "vaporeon": 3.967276472416649, + "jolteon": 1.8947857478500643, + "flareon": 2.0219124204163132, + "porygon": 2.8083741776546347, + "dragonair": 1.7619647028689989, + "noctowl": 7.493703153346724, + "lanturn": 1.8393604369163838, + "togetic": 6.438144316002378, + "xatu": 4.959217400262585, + "bellossom": 2.1851273938274103, + "azumarill": 3.0587553039633546, + "sudowoodo": 2.912915041597338, + "politoed": 3.4340730707135467, + "quagsire": 4.95592154296489, + "slowking": 2.8455283459444907, + "dunsparce": 3.1106494979851993, + "qwilfish": 4.959820435438405, + "sneasel": 1.850521605648502, + "piloswine": 1.618239028113528, + "octillery": 3.1417549302706744, + "mantine": 3.956324278012099, + "skarmory": 3.2088743643250366, + "hitmontop": 2.9031992796452575, + "miltank": 4.13658736369063, + "grovyle": 7.715100273161034, + "sceptile": 1.3260865016321883, + "combusken": 3.629992498409134, + "blaziken": 1.6738623907836325, + "marshtomp": 2.480500828036741, + "swampert": 1.2668018218236112, + "linoone": 5.203568156245494, + "linoone-galar": 3.5874561363833695, + "pelipper": 14.639632268778215, + "ninjask": 10.1487263355129, + "exploud": 1.7108833432010628, + "lairon": 2.6578882317307357, + "manectric": 1.8834622154946326, + "roselia": 3.650050335076462, + "sharpedo": 5.744620025618134, + "wailmer": 8.673880582767032, + "torkoal": 1.9888350784945523, + "flygon": 2.4457663078379968, + "altaria": 1.4752860229197315, + "whiscash": 1.9755197962997395, + "crawdaunt": 2.618858213448113, + "claydol": 4.210793392905233, + "cradily": 2.17869472011571, + "armaldo": 2.0066668503625182, + "dusclops": 3.8841079557525005, + "absol": 1.8431110776229365, + "glalie": 3.718015482226527, + "sealeo": 3.909271921149494, + "relicanth": 2.5896714301163706, + "metang": 4.141694268775754, + "luxray": 4.286182004936236, + "vespiquen": 3.773781116353582, + "cherrim": 5.830970272938364, + "gastrodon": 2.1524412824847063, + "drifblim": 5.479701329540184, + "lopunny": 4.2005123564992175, + "skuntank": 1.294591396379725, + "bronzong": 4.225834373958483, + "munchlax": 2.2134487961366114, + "drapion": 2.3624211319013346, + "abomasnow": 3.107043744450711, + "froslass": 3.40547814751194, + "rotom": 4.674639547268125, + "stoutland": 2.9578248350617784, + "liepard": 6.033101013521469, + "musharna": 1.8548300492959509, + "unfezant": 9.350564899057531, + "boldore": 3.87982677113704, + "swoobat": 7.110833273843891, + "audino": 2.620610574289227, + "gurdurr": 2.8171690851385875, + "palpitoad": 4.102620483390342, + "seismitoad": 7.160593413278974, + "scolipede": 3.1299548022003383, + "whimsicott": 3.100563900921986, + "lilligant": 2.992903902596451, + "basculin-red-striped": 3.6372832908706085, + "basculin-blue-striped": 4.458967029927454, + "krookodile": 2.2266836842228974, + "maractus": 2.0292619020134874, + "crustle": 2.2970685362029215, + "sigilyph": 3.0548191352901632, + "cofagrigus": 3.193668405588123, + "garbodor": 1.9685941993288387, + "cinccino": 5.041491342983768, + "vanillish": 2.17952242818022, + "emolga": 3.2496977433023737, + "escavalier": 1.9316524386985188, + "amoonguss": 2.5095857431222166, + "jellicent": 1.824445367243954, + "galvantula": 1.6836787916957223, + "klang": 2.8981293201171803, + "klinklang": 3.900642493604087, + "beheeyem": 2.1031454030167733, + "lampent": 3.2905706953024496, + "fraxure": 1.6031113534933539, + "beartic": 1.6971272540679823, + "cryogonal": 1.4710999214134737, + "accelgor": 3.1194284697146264, + "stunfisk": 1.3056572075633324, + "stunfisk-galar": 2.4475053230812884, + "mienshao": 3.771025610595764, + "druddigon": 1.8048480280445296, + "golurk": 2.445320373854881, + "bisharp": 2.268482971352192, + "bouffalant": 1.3635236983704204, + "heatmor": 1.819713728803871, + "durant": 3.543130166462852, + "diggersby": 2.5892715790906164, + "talonflame": 3.9267537431178297, + "pangoro": 1.7209354027529995, + "doublade": 4.4560534604358875, + "malamar": 2.5755927231191276, + "barbaracle": 2.002141494199533, + "heliolisk": 3.302146405284887, + "tyrantrum": 1.804467216055087, + "aurorus": 2.317905008900243, + "hawlucha": 4.673205264264575, + "dedenne": 2.775321396684114, + "klefki": 3.111081391816025, + "trevenant": 4.040280412700014, + "gourgeist-average": 6.5695791782599, + "charjabug": 4.435897203895067, + "vikavolt": 2.0333070164602733, + "ribombee": 4.613523446057581, + "lycanroc-midday": 3.279662195286189, + "lycanroc-midnight": 2.218255615436121, + "mudsdale": 1.6652688158043079, + "araquanid": 2.940467055652462, + "lurantis": 2.504127161925809, + "shiinotic": 4.318755966799535, + "salazzle": 3.1496656176018547, + "bewear": 2.0274372746494214, + "tsareena": 3.044430966300391, + "comfey": 4.14846706281685, + "oranguru": 2.4357449978400627, + "passimian": 2.6255885442706424, + "palossand": 2.8302017779672504, + "pyukumuku": 59.88861267736674, + "togedemaru": 2.32073250303711, + "mimikyu-disguised": 4.686828339281782, + "greedent": 2.370633253486371, + "orbeetle": 2.298853366245778, + "thievul": 1.4528946617292458, + "eldegoss": 3.759562910225167, + "dubwool": 3.359435471753775, + "drednaw": 1.6559157519959236, + "boltund": 4.2737515360715435, + "carkol": 2.3173518261223536, + "coalossal": 1.9199710150619278, + "sandaconda": 3.5422518127523865, + "cramorant": 7.973997669433215, + "barraskewda": 5.602335467675177, + "toxtricity-amped": 3.2588377393871752, + "centiskorch": 2.101385930457915, + "grapploct": 1.8215924182350314, + "polteageist": 2.927769961176434, + "hatterene": 3.093996957510873, + "grimmsnarl": 3.343445044189341, + "obstagoon": 2.499117879801469, + "perrserker": 3.246737956751913, + "alcremie": 1.2787468735631995, + "falinks": 3.674483344827944, + "pincurchin": 3.0305665028686493, + "frosmoth": 2.7746224837334257, + "indeedee-male": 2.675459150034346, + "morpeko": 2.2280216024813635, + "copperajah": 2.60821981802182, + "duraludon": 1.7833153647498676, + "drakloak": 5.188681311301822 }, "stoutland": { - "ivysaur": 3.7199565783254407, - "charmeleon": 4.499395625554755, - "wartortle": 3.0156008742686202, - "butterfree": 5.447343588460662, - "raichu": 5.899226769475679, - "raichu-alola": 4.246239970416819, - "sandslash": 2.172847931471915, - "sandslash-alola": 1.722034297944218, - "nidoqueen": 3.238548987669272, - "nidoking": 2.065198413530119, - "clefairy": 11.01593093732822, - "clefable": 2.457248495709714, - "jigglypuff": 31.550409725901126, - "wigglytuff": 2.3302315847195043, - "gloom": 6.455680713988338, - "vileplume": 3.3579300462176276, - "dugtrio": 4.358979489052391, - "dugtrio-alola": 3.177960692632188, - "persian": 4.868954660529531, - "persian-alola": 4.866771894656448, - "golduck": 3.475863820156832, - "poliwrath": 2.022917508090853, - "kadabra": 4.97328056196298, - "machoke": 4.061755293071458, - "tentacruel": 2.963993770407072, - "slowbro": 1.8889415993696899, - "magneton": 2.7664679118854405, - "haunter": 3.151467629532047, - "kingler": 2.328530307110337, - "exeggutor": 2.108333429048545, - "marowak": 3.265910033291487, - "marowak-alola": 1.447339093787667, - "hitmonlee": 2.756391807499919, - "hitmonchan": 2.475157487746522, - "lickitung": 2.158395333519253, - "weezing": 1.6259902051541666, - "weezing-galar": 2.693217728232854, - "rhydon": 1.9864536085508862, - "chansey": 35.35610930107925, - "tangela": 4.692834388737181, - "kangaskhan": 2.0718642445224056, - "seadra": 4.19359897531442, - "seaking": 2.8550953251466007, - "starmie": 1.6218419628586191, - "mr-mime": 8.476069083831156, - "mr-mime-galar": 4.259371991290961, - "scyther": 3.010822368237392, - "jynx": 5.521725640630086, - "electabuzz": 3.1118435838639726, - "magmar": 2.0331264728291467, - "tauros": 2.078176043512113, - "ditto": 3.608760683243904, - "vaporeon": 3.926577954521524, - "jolteon": 2.4516260459661545, - "flareon": 3.104407327335762, - "porygon": 3.162045544632761, - "dragonair": 2.138585167983014, - "noctowl": 7.212263087772717, - "lanturn": 2.3274855673025394, - "togetic": 6.224002816749444, - "xatu": 4.299054970439828, - "bellossom": 2.6439686532305897, - "azumarill": 2.6122969036922568, - "sudowoodo": 2.1567429642079365, - "politoed": 3.0270910879866486, - "quagsire": 4.770053799284384, - "slowking": 2.9070513980990986, - "dunsparce": 3.7814142296189495, - "qwilfish": 3.5880188451832975, - "sneasel": 2.5867748527808203, - "piloswine": 1.6398907701848675, - "octillery": 2.6601618399058387, - "mantine": 3.1244221435929256, - "skarmory": 1.6765777594983118, - "hitmontop": 2.928190392576398, - "miltank": 3.763325123391355, - "grovyle": 8.990182915939151, - "sceptile": 1.652450687401089, - "combusken": 3.4877640591624335, - "blaziken": 1.7429944922198732, - "marshtomp": 2.808229533846804, - "swampert": 1.4185380906072897, - "linoone": 6.096653508949399, - "linoone-galar": 5.196010543194089, - "pelipper": 6.426587280628681, - "ninjask": 8.463769398088079, - "exploud": 1.8254730679220454, - "lairon": 1.87302795268111, - "manectric": 2.0174774403386024, - "roselia": 4.887174273476743, - "sharpedo": 5.6621067501975535, - "wailmer": 7.43314801434821, - "torkoal": 1.886515726370201, - "flygon": 2.680684603049686, - "altaria": 1.858456879178071, - "whiscash": 2.331121450670305, - "crawdaunt": 2.1149488862754806, - "claydol": 3.7872909246998185, - "cradily": 2.105186765645942, - "armaldo": 1.6639150311713973, - "dusclops": 2.550304264749129, - "absol": 2.221418266979854, - "glalie": 4.612103406005045, - "sealeo": 3.560371749540287, - "relicanth": 1.652169639140955, - "metang": 2.570700745937854, - "luxray": 4.310326558183087, - "vespiquen": 2.9450057819987157, - "cherrim": 6.614367157455314, - "gastrodon": 2.5067562126520997, - "drifblim": 2.9059367127864983, - "lopunny": 4.04102486200717, - "skuntank": 1.6380700311087548, - "bronzong": 2.8352800878525395, - "munchlax": 2.85167512519614, - "drapion": 2.5682110803305553, - "abomasnow": 3.5578849019149787, - "froslass": 2.136958859682651, - "rotom": 2.5516000471615725, - "liepard": 7.906781925582425, - "musharna": 1.756240657816653, - "unfezant": 6.6674092898111, - "boldore": 2.6800566700043063, - "swoobat": 6.145690072446818, - "audino": 2.5377139616842466, - "gurdurr": 2.0907951000805367, - "palpitoad": 4.3023362503361255, - "seismitoad": 7.174902288928363, - "scolipede": 3.422980631979538, - "whimsicott": 3.450160614450071, - "lilligant": 3.4082390914434253, - "basculin-red-striped": 3.0978935940807717, - "basculin-blue-striped": 4.009941807557406, - "krookodile": 3.1026818112156187, - "maractus": 2.4861355816979374, - "crustle": 1.7241059261241514, - "sigilyph": 2.607716586458843, - "cofagrigus": 1.9114548498882875, - "garbodor": 2.023392055277422, - "cinccino": 5.15149172270988, - "vanillish": 2.460893310034266, - "emolga": 3.472488964042398, - "escavalier": 1.6540964606795878, - "amoonguss": 2.9114034694358883, - "jellicent": 1.0277344234291579, - "galvantula": 1.799227946442156, - "klang": 2.473645800506082, - "klinklang": 2.913802108252468, - "beheeyem": 2.1071747152887252, - "lampent": 1.6878599192511246, - "fraxure": 1.6660951907238184, - "beartic": 1.8911122187774687, - "cryogonal": 2.237266645391, - "accelgor": 3.6837289680931393, - "stunfisk": 1.4832979793109802, - "stunfisk-galar": 2.0294785236936232, - "mienshao": 3.626991648987169, - "druddigon": 2.064846875976199, - "golurk": 1.285569376990189, - "bisharp": 2.123855125961629, - "bouffalant": 1.413208645456776, - "heatmor": 2.159735219415864, - "durant": 2.482783307740526, - "diggersby": 3.599074674707115, - "talonflame": 3.2868657646837023, - "pangoro": 1.8316369049131063, - "doublade": 1.4572288267594868, - "malamar": 3.0839087740823246, - "barbaracle": 1.3184142897694524, - "heliolisk": 4.494802614071306, - "tyrantrum": 1.3012955545828804, - "aurorus": 2.323731480797516, - "hawlucha": 3.632218104917813, - "dedenne": 3.4465633303400995, - "klefki": 2.73418721950506, - "trevenant": 1.9569057871649993, - "gourgeist-average": 3.8440263322436294, - "charjabug": 4.3031189055322265, - "vikavolt": 2.026296272771371, - "ribombee": 5.397861362590865, - "lycanroc-midday": 3.084243983926971, - "lycanroc-midnight": 2.102623094740579, - "mudsdale": 1.6058658542862838, - "araquanid": 2.8414820422687246, - "lurantis": 2.6803507384502643, - "shiinotic": 5.126546944598959, - "salazzle": 3.5540485428088666, - "bewear": 1.8938401392182533, - "tsareena": 3.4513432460374576, - "comfey": 5.239664921520355, - "oranguru": 3.162568460104377, - "passimian": 2.3062130252072763, - "palossand": 1.4814783462272545, - "pyukumuku": 45.97800186190378, - "togedemaru": 2.070417978261805, - "mimikyu-disguised": 2.920024255175086, - "greedent": 2.298361303328456, - "orbeetle": 2.0564516017083116, - "thievul": 2.1971400271964594, - "eldegoss": 4.55131130428736, - "dubwool": 3.106101773635096, - "drednaw": 1.1539346702703104, - "boltund": 5.327134730839891, - "carkol": 2.159280970569198, - "coalossal": 1.7651151299777754, - "sandaconda": 3.165906116260678, - "cramorant": 6.74145195901059, - "barraskewda": 5.058872733262927, - "toxtricity-amped": 3.017597645815827, - "centiskorch": 2.4225072053721863, - "grapploct": 1.7326629617626712, - "polteageist": 1.8052321605742856, - "hatterene": 2.8679169614557485, - "grimmsnarl": 4.294247529922102, - "obstagoon": 2.7279145761391512, - "perrserker": 2.7562786896619773, - "alcremie": 1.7975074796264092, - "falinks": 3.0488578340182384, - "pincurchin": 3.2602946613388655, - "frosmoth": 3.10829959745986, - "indeedee-male": 4.060171922429016, - "morpeko": 3.09082007028902, - "copperajah": 2.073010630077132, - "duraludon": 1.274514828663471, - "drakloak": 3.165639340338864, - "stoutland": 2.7035737039773453 + "ivysaur": 3.7244294735465164, + "charmeleon": 4.505331412134581, + "wartortle": 3.017897469631948, + "butterfree": 5.452514210841354, + "raichu": 5.902495908275082, + "raichu-alola": 4.250627792355627, + "sandslash": 2.173936084142034, + "sandslash-alola": 1.7187996192431152, + "nidoqueen": 3.2447630129441434, + "nidoking": 2.0677818707994486, + "clefairy": 11.03487303270851, + "clefable": 2.461025008641988, + "jigglypuff": 31.591253219217343, + "wigglytuff": 2.332768154349173, + "gloom": 6.461760641594935, + "vileplume": 3.361595154774089, + "dugtrio": 4.3654128506804675, + "dugtrio-alola": 3.176943026834874, + "persian": 4.872193805199162, + "persian-alola": 4.871573112571039, + "golduck": 3.4792866941856717, + "poliwrath": 2.023253956457939, + "kadabra": 4.979107084668193, + "machoke": 4.062237462356958, + "tentacruel": 2.9689029895651244, + "slowbro": 1.8901223420877753, + "magneton": 2.7641697287294376, + "haunter": 3.1450308206991027, + "kingler": 2.3275751645677016, + "exeggutor": 2.1092365264573862, + "marowak": 3.2685700221139387, + "marowak-alola": 1.4439921583806634, + "hitmonlee": 2.7561949125764214, + "hitmonchan": 2.4774225825294884, + "lickitung": 2.160212157092518, + "weezing": 1.6270647697665708, + "weezing-galar": 2.6956562291234114, + "rhydon": 1.9833012155646874, + "chansey": 35.39522173096929, + "tangela": 4.6926930327211025, + "kangaskhan": 2.0735790928183424, + "seadra": 4.194692338410514, + "seaking": 2.8589403385029217, + "starmie": 1.6234873544216772, + "mr-mime": 8.487808967119374, + "mr-mime-galar": 4.262086887102833, + "scyther": 3.0131473347771736, + "jynx": 5.528019067899852, + "electabuzz": 3.1155596236672656, + "magmar": 2.0359851857795688, + "tauros": 2.0783187640008745, + "ditto": 3.5880269503703444, + "vaporeon": 3.9324746062955267, + "jolteon": 2.4575231203360675, + "flareon": 3.112533362940069, + "porygon": 3.1645017904263364, + "dragonair": 2.140870809092559, + "noctowl": 7.22181328950236, + "lanturn": 2.331702227454749, + "togetic": 6.233589241805474, + "xatu": 4.303051765727801, + "bellossom": 2.6464783186097836, + "azumarill": 2.6183234769679355, + "sudowoodo": 2.1531246678510403, + "politoed": 3.0311186691918413, + "quagsire": 4.769837321421901, + "slowking": 2.9102372215008097, + "dunsparce": 3.7883589780148723, + "qwilfish": 3.590808881816351, + "sneasel": 2.588518600239351, + "piloswine": 1.6397867555722012, + "octillery": 2.66293448366521, + "mantine": 3.130462022060229, + "skarmory": 1.675586047942546, + "hitmontop": 2.929247722622988, + "miltank": 3.7650365181789534, + "grovyle": 8.993658724086394, + "sceptile": 1.654305608943321, + "combusken": 3.48689569995373, + "blaziken": 1.7436242573580243, + "marshtomp": 2.8115799815752727, + "swampert": 1.4203953793770396, + "linoone": 6.10694468488172, + "linoone-galar": 5.199399834858843, + "pelipper": 6.430062907899775, + "ninjask": 8.470362545744255, + "exploud": 1.8258768295211474, + "lairon": 1.8686668683078742, + "manectric": 2.0202607034288302, + "roselia": 4.893776572998574, + "sharpedo": 5.667195224859683, + "wailmer": 7.4418948400193194, + "torkoal": 1.8878473108553084, + "flygon": 2.683314841957361, + "altaria": 1.8605967899583526, + "whiscash": 2.3334750022171127, + "crawdaunt": 2.1161653337400734, + "claydol": 3.790242729285465, + "cradily": 2.1035936286916046, + "armaldo": 1.6627205289587748, + "dusclops": 2.5474329542176433, + "absol": 2.2237727202414628, + "glalie": 4.6155286874108885, + "sealeo": 3.5634471412302506, + "relicanth": 1.6500035367239008, + "metang": 2.5688643390802515, + "luxray": 4.314212036509606, + "vespiquen": 2.9458585244819973, + "cherrim": 6.61986998604557, + "gastrodon": 2.5097094483837217, + "drifblim": 2.8953821921747265, + "lopunny": 4.04178738945288, + "skuntank": 1.6405890344753462, + "bronzong": 2.83432175907915, + "munchlax": 2.855697981111675, + "drapion": 2.5714089045744464, + "abomasnow": 3.559253670312824, + "froslass": 2.1321428144753245, + "rotom": 2.546652737862897, + "stoutland": 2.7035737039773453, + "liepard": 7.915358447357708, + "musharna": 1.757871857469806, + "unfezant": 6.6741363815053685, + "boldore": 2.6750978553997955, + "swoobat": 6.15119995423677, + "audino": 2.5398420943676543, + "gurdurr": 2.0886694118597657, + "palpitoad": 4.307600148568612, + "seismitoad": 7.17899609622189, + "scolipede": 3.42582930005621, + "whimsicott": 3.4536083339366623, + "lilligant": 3.411293297148613, + "basculin-red-striped": 3.1008874082958533, + "basculin-blue-striped": 4.013983242115216, + "krookodile": 3.105575514318039, + "maractus": 2.48912149231243, + "crustle": 1.7212841817239484, + "sigilyph": 2.610039438533989, + "cofagrigus": 1.90833226700618, + "garbodor": 2.0240618263941195, + "cinccino": 5.155309799587122, + "vanillish": 2.4626224569856636, + "emolga": 3.477413019951858, + "escavalier": 1.653526158349888, + "amoonguss": 2.91428988275796, + "jellicent": 1.0242111693052112, + "galvantula": 1.80118792275443, + "klang": 2.472539196871187, + "klinklang": 2.911393898354884, + "beheeyem": 2.1093098933350323, + "lampent": 1.6823362901358943, + "fraxure": 1.6672500219567579, + "beartic": 1.8912572043653189, + "cryogonal": 2.2404626749462384, + "accelgor": 3.6876806435169076, + "stunfisk": 1.4850063320681879, + "stunfisk-galar": 2.0280402963035318, + "mienshao": 3.6275721407946504, + "druddigon": 2.067694782085637, + "golurk": 1.2813468051506063, + "bisharp": 2.1219864312963677, + "bouffalant": 1.4139794540563906, + "heatmor": 2.163171333141922, + "durant": 2.4799813271357527, + "diggersby": 3.60265059639573, + "talonflame": 3.2909615847448093, + "pangoro": 1.8315778557740636, + "doublade": 1.451129528399727, + "malamar": 3.0859203069643857, + "barbaracle": 1.3165701079401897, + "heliolisk": 4.501168466970433, + "tyrantrum": 1.2988443880477527, + "aurorus": 2.3210869271326002, + "hawlucha": 3.6319484826559645, + "dedenne": 3.451581780637634, + "klefki": 2.7339604391272907, + "trevenant": 1.948489391408625, + "gourgeist-average": 3.8376609859526254, + "charjabug": 4.307772319589511, + "vikavolt": 2.028693176187974, + "ribombee": 5.404176843461755, + "lycanroc-midday": 3.082198876792548, + "lycanroc-midnight": 2.0997764762032576, + "mudsdale": 1.6053922189999201, + "araquanid": 2.845995458959358, + "lurantis": 2.6822998074810673, + "shiinotic": 5.131741630719114, + "salazzle": 3.5579655442969944, + "bewear": 1.894441230520486, + "tsareena": 3.4547355120433423, + "comfey": 5.2477954474735, + "oranguru": 3.1656107633814803, + "passimian": 2.3058791231452536, + "palossand": 1.4783702602841329, + "pyukumuku": 45.95873419286072, + "togedemaru": 2.069282746132478, + "mimikyu-disguised": 2.9152795713542172, + "greedent": 2.29963497458134, + "orbeetle": 2.0577820008393304, + "thievul": 2.1994075575446006, + "eldegoss": 4.55592347954599, + "dubwool": 3.105516331487232, + "drednaw": 1.1526356902257695, + "boltund": 5.333401517479956, + "carkol": 2.1573155522976637, + "coalossal": 1.7632558751668328, + "sandaconda": 3.1674224748022084, + "cramorant": 6.751475930160135, + "barraskewda": 5.0632583005560114, + "toxtricity-amped": 3.0198021467890137, + "centiskorch": 2.425495521804799, + "grapploct": 1.7311396517220168, + "polteageist": 1.7990468228374004, + "hatterene": 2.8713280452418095, + "grimmsnarl": 4.297076144372871, + "obstagoon": 2.7289255699159627, + "perrserker": 2.7542793448389604, + "alcremie": 1.8007157220183183, + "falinks": 3.047596890972774, + "pincurchin": 3.263877580594139, + "frosmoth": 3.1098604513916843, + "indeedee-male": 4.068886080090172, + "morpeko": 3.094091045319944, + "copperajah": 2.07052303487196, + "duraludon": 1.2735444615997826, + "drakloak": 3.157815332375277 }, "liepard": { - "ivysaur": 2.818692914463143, - "charmeleon": 3.435977870518946, - "wartortle": 2.2731098827159193, - "butterfree": 3.6759136359564355, - "raichu": 4.272933403447244, - "raichu-alola": 4.63089148262046, - "sandslash": 1.635542042991196, - "sandslash-alola": 1.5642364686762222, - "nidoqueen": 2.4676348706849462, - "nidoking": 1.5913780481294633, - "clefairy": 7.8754352558890215, - "clefable": 1.2881437199323988, - "jigglypuff": 19.060692141684925, - "wigglytuff": 1.3800949209905564, - "gloom": 4.387465100600284, - "vileplume": 2.3354363667391276, - "dugtrio": 3.3018696362019915, - "dugtrio-alola": 3.1043017007027123, - "persian": 3.4557128295670863, - "persian-alola": 4.938362392887958, - "golduck": 2.637727060875802, - "poliwrath": 1.7669346993662445, - "kadabra": 4.449319489859428, - "machoke": 3.6742272471683317, - "tentacruel": 2.1976625185781056, - "slowbro": 2.2327178380186137, - "magneton": 2.596024452150866, - "haunter": 5.933949458462137, - "kingler": 1.7957332122379293, - "exeggutor": 2.180085815919559, - "marowak": 2.6467778891158247, - "marowak-alola": 2.2609953729261743, - "hitmonlee": 2.3628721012503346, - "hitmonchan": 2.2046390755825387, - "lickitung": 1.628306392627004, - "weezing": 1.2860240119153565, - "weezing-galar": 1.6659585011416254, - "rhydon": 1.8286784856298923, - "chansey": 26.04067137940162, - "tangela": 3.77511518334451, - "kangaskhan": 1.6169620752936558, - "seadra": 3.279504160925563, - "seaking": 2.161209908876547, - "starmie": 1.4749275941314632, - "mr-mime": 8.411520663540493, - "mr-mime-galar": 4.511845503124811, - "scyther": 2.2534750119022386, - "jynx": 5.165830849063353, - "electabuzz": 2.2774200832021663, - "magmar": 1.5150729381921328, - "tauros": 1.6039239950219433, - "ditto": 7.818695936544994, - "vaporeon": 2.9010080714877264, - "jolteon": 1.7977429368890085, - "flareon": 2.2075569055861544, - "porygon": 2.4792419959922114, - "dragonair": 1.8941143173216197, - "noctowl": 5.393694350322676, - "lanturn": 1.7249578886347128, - "togetic": 4.059287710133669, - "xatu": 4.815303287971176, - "bellossom": 1.6710558358895962, - "azumarill": 1.6623068573273814, - "sudowoodo": 1.972812499457298, - "politoed": 2.2828673170529976, - "quagsire": 3.599793879357479, - "slowking": 3.1391416394764824, - "dunsparce": 2.733911830832512, - "qwilfish": 2.7670239902732643, - "sneasel": 2.5752763508366314, - "piloswine": 1.2606919726543284, - "octillery": 1.9175705295524728, - "mantine": 2.3130324669107987, - "skarmory": 1.5258187343345666, - "hitmontop": 2.5759935434056254, - "miltank": 2.6611882560849813, - "grovyle": 6.690071274950935, - "sceptile": 1.2416573096005115, - "combusken": 2.4219884658363897, - "blaziken": 1.233124440462963, - "marshtomp": 2.1510973099854978, - "swampert": 1.0903544077597478, - "linoone": 4.280602923416147, - "linoone-galar": 5.342953174329843, - "pelipper": 4.979972670110778, - "ninjask": 5.379049049684733, - "exploud": 1.355226238256618, - "lairon": 1.8109542791968087, - "manectric": 1.5789527487033546, - "roselia": 3.9111339007009205, - "sharpedo": 5.356996680617657, - "wailmer": 5.681106788112041, - "torkoal": 1.4487517964450873, - "flygon": 2.2723180500814038, - "altaria": 1.4747885771136668, - "whiscash": 1.8064130391244484, - "crawdaunt": 1.9329650239544576, - "claydol": 4.202792470868433, - "cradily": 1.9838718229243444, - "armaldo": 1.427000588198055, - "dusclops": 3.8809731633860194, - "absol": 2.081174782973111, - "glalie": 3.7632289989417655, - "sealeo": 2.7555915006694782, - "relicanth": 1.5308536740682808, - "metang": 3.4092114960926145, - "luxray": 3.261452100699308, - "vespiquen": 2.04028692261587, - "cherrim": 5.073214351881563, - "gastrodon": 1.8051451494937467, - "drifblim": 5.63729933380566, - "lopunny": 2.992961160918762, - "skuntank": 1.251507824239861, - "bronzong": 4.305616978796293, - "munchlax": 2.1083888630341985, - "drapion": 1.8294193831097783, - "abomasnow": 2.7782644410062423, - "froslass": 3.3800019511377735, - "rotom": 4.583771851961479, - "stoutland": 2.0344981956198236, - "musharna": 2.0990678730823533, - "unfezant": 5.245008760251348, - "boldore": 2.437174181836183, - "swoobat": 6.899996634375393, - "audino": 1.8049072977614784, - "gurdurr": 1.7840199674312576, - "palpitoad": 3.2981857813028688, - "seismitoad": 5.416707344395227, - "scolipede": 2.4133566360614473, - "whimsicott": 2.360166566748771, - "lilligant": 2.42368995783277, - "basculin-red-striped": 2.5160024437821553, - "basculin-blue-striped": 3.1934675518968696, - "krookodile": 3.024889263657988, - "maractus": 1.9465946408553783, - "crustle": 1.4483284246243655, - "sigilyph": 2.8192711147492595, - "cofagrigus": 3.3221995396606245, - "garbodor": 1.5640709717287253, - "cinccino": 3.918499955875264, - "vanillish": 1.852924945570289, - "emolga": 2.5920650801502214, - "escavalier": 1.465629114714075, - "amoonguss": 2.2042866251162136, - "jellicent": 1.6337297641474136, - "galvantula": 1.2962761575229886, - "klang": 2.3440549571617155, - "klinklang": 2.73362300414227, - "beheeyem": 2.342427172568972, - "lampent": 2.775021951272338, - "fraxure": 1.4266718406792531, - "beartic": 1.429435385988317, - "cryogonal": 1.6505393596249278, - "accelgor": 2.166567187914584, - "stunfisk": 1.1376799077055266, - "stunfisk-galar": 2.0247526995128693, - "mienshao": 3.17327326070361, - "druddigon": 1.9303762504682025, - "golurk": 1.9908169563854323, - "bisharp": 2.16257267323054, - "bouffalant": 1.0658440416311388, - "heatmor": 1.6553103779428842, - "durant": 2.0753868870440595, - "diggersby": 2.7994573334949164, - "talonflame": 2.5294826271747275, - "pangoro": 2.2948804759189083, - "doublade": 1.988509362351064, - "malamar": 3.2068073445085137, - "barbaracle": 1.2337131374369907, - "heliolisk": 3.320393766090336, - "tyrantrum": 1.3347449044714657, - "aurorus": 2.163408032972585, - "hawlucha": 3.2916485536665743, - "dedenne": 1.885318852682997, - "klefki": 1.9402119654611818, - "trevenant": 3.17312326453303, - "gourgeist-average": 5.635650949932238, - "charjabug": 3.391491191492874, - "vikavolt": 1.371048500791634, - "ribombee": 3.114623756338117, - "lycanroc-midday": 2.915284411913281, - "lycanroc-midnight": 2.0061104685609497, - "mudsdale": 1.2335317361780933, - "araquanid": 1.9325816429915945, - "lurantis": 1.9242571791016039, - "shiinotic": 3.1511981821418376, - "salazzle": 2.8398159778774223, - "bewear": 1.716119046690237, - "tsareena": 2.676810187939021, - "comfey": 3.355754232801162, - "oranguru": 4.154151434807012, - "passimian": 2.0160172274181365, - "palossand": 2.190064618355821, - "pyukumuku": 38.94174716142022, - "togedemaru": 1.9763320243363354, - "mimikyu-disguised": 3.859251669792535, - "greedent": 1.9099423835960263, - "orbeetle": 1.9832171152200242, - "thievul": 2.1530732184098165, - "eldegoss": 3.4807480849860495, - "dubwool": 2.332778193131836, - "drednaw": 1.0281615492200216, - "boltund": 4.2994210116129015, - "carkol": 2.007036627741398, - "coalossal": 1.6530516035959493, - "sandaconda": 2.3160330215501084, - "cramorant": 5.361633805052161, - "barraskewda": 4.02965153369389, - "toxtricity-amped": 2.1975107424028124, - "centiskorch": 1.8382045436514796, - "grapploct": 1.5041163363791237, - "polteageist": 3.8611426953891637, - "hatterene": 2.2756083879398465, - "grimmsnarl": 4.110345584909853, - "obstagoon": 2.5721420855620827, - "perrserker": 2.7207417175956055, - "alcremie": 1.004729087827586, - "falinks": 2.473312859811208, - "pincurchin": 2.5735177158859432, - "frosmoth": 1.961967731056287, - "indeedee-male": 4.468414475783825, - "morpeko": 2.8601059641242994, - "copperajah": 1.919371360073208, - "duraludon": 1.1759506626096945, - "drakloak": 5.49634260691355, - "liepard": 6.850729485720049 + "ivysaur": 2.8103121909664335, + "charmeleon": 3.426326435309326, + "wartortle": 2.2658599830913735, + "butterfree": 3.6585046192827924, + "raichu": 4.257599039643704, + "raichu-alola": 4.632738022008124, + "sandslash": 1.628617558758521, + "sandslash-alola": 1.5570156678812743, + "nidoqueen": 2.461534336599895, + "nidoking": 1.586851258758692, + "clefairy": 7.856041276770525, + "clefable": 1.282799856203174, + "jigglypuff": 18.949035661214886, + "wigglytuff": 1.3753176759043455, + "gloom": 4.3644934200814, + "vileplume": 2.3243471582517023, + "dugtrio": 3.2953443820618324, + "dugtrio-alola": 3.097358050036428, + "persian": 3.4408378748272916, + "persian-alola": 4.937633055831357, + "golduck": 2.6302031421728436, + "poliwrath": 1.7605153932198663, + "kadabra": 4.447412590347731, + "machoke": 3.663119521734104, + "tentacruel": 2.192030911472516, + "slowbro": 2.236973003881864, + "magneton": 2.587215476219696, + "haunter": 5.93729545381948, + "kingler": 1.7872948517553944, + "exeggutor": 2.1781371362858373, + "marowak": 2.640839097781898, + "marowak-alola": 2.258834791993178, + "hitmonlee": 2.3534237619674667, + "hitmonchan": 2.1990428742013943, + "lickitung": 1.623562693381675, + "weezing": 1.282056307250515, + "weezing-galar": 1.6561657559762817, + "rhydon": 1.821739404166721, + "chansey": 25.987997756439654, + "tangela": 3.76048963390018, + "kangaskhan": 1.6128216675930946, + "seadra": 3.2672270073959515, + "seaking": 2.156053378046264, + "starmie": 1.4731361790886548, + "mr-mime": 8.442491943092994, + "mr-mime-galar": 4.517677881792906, + "scyther": 2.2455833486450385, + "jynx": 5.153809245006832, + "electabuzz": 2.271665092299696, + "magmar": 1.511015734160599, + "tauros": 1.5979282958866734, + "ditto": 7.760799278934845, + "vaporeon": 2.894318077782888, + "jolteon": 1.7947796805033511, + "flareon": 2.2039519084165375, + "porygon": 2.4731791883646217, + "dragonair": 1.8906557916439561, + "noctowl": 5.381484963088813, + "lanturn": 1.7214910999915947, + "togetic": 4.04116610474801, + "xatu": 4.819945755451016, + "bellossom": 1.6648801540055116, + "azumarill": 1.6561520870130173, + "sudowoodo": 1.9647709285544912, + "politoed": 2.2773943994771293, + "quagsire": 3.5847602322937435, + "slowking": 3.140119877063138, + "dunsparce": 2.725336962105898, + "qwilfish": 2.757216380647966, + "sneasel": 2.573326396192705, + "piloswine": 1.2554607966102622, + "octillery": 1.910401609051395, + "mantine": 2.309164501847866, + "skarmory": 1.5199966626595063, + "hitmontop": 2.567552300766175, + "miltank": 2.647816514686829, + "grovyle": 6.6662205908403855, + "sceptile": 1.2374613308847255, + "combusken": 2.4094148176325816, + "blaziken": 1.227751473078756, + "marshtomp": 2.1456530256984157, + "swampert": 1.0878422193564505, + "linoone": 4.264692216983231, + "linoone-galar": 5.342936678053036, + "pelipper": 4.963522919914179, + "ninjask": 5.345955914432956, + "exploud": 1.3498801201239052, + "lairon": 1.8040839182151298, + "manectric": 1.5763951861954455, + "roselia": 3.905075621111035, + "sharpedo": 5.349320806591047, + "wailmer": 5.666687933709895, + "torkoal": 1.443998967678429, + "flygon": 2.2655854012923036, + "altaria": 1.471166387606708, + "whiscash": 1.804180199959434, + "crawdaunt": 1.929587445521454, + "claydol": 4.205452514938042, + "cradily": 1.9784909436538722, + "armaldo": 1.4207304423007634, + "dusclops": 3.8770922051166052, + "absol": 2.0783741911080496, + "glalie": 3.755721128058818, + "sealeo": 2.747908541262757, + "relicanth": 1.5255123149081644, + "metang": 3.4082272678346843, + "luxray": 3.2517896385495844, + "vespiquen": 2.029574325948587, + "cherrim": 5.058760294952595, + "gastrodon": 1.7988690527851932, + "drifblim": 5.643613291116794, + "lopunny": 2.9811505003795666, + "skuntank": 1.2498497414755212, + "bronzong": 4.314478879751112, + "munchlax": 2.1034818468185925, + "drapion": 1.8227109410244167, + "abomasnow": 2.7693991897112658, + "froslass": 3.378109266977666, + "rotom": 4.584735005738728, + "stoutland": 2.027288074668493, + "liepard": 6.850729485720049, + "musharna": 2.1039274585022025, + "unfezant": 5.231496738825481, + "boldore": 2.426572721207136, + "swoobat": 6.906749237721543, + "audino": 1.7984986399967258, + "gurdurr": 1.7749313985789814, + "palpitoad": 3.2900129687769186, + "seismitoad": 5.398529340950778, + "scolipede": 2.4013248200778086, + "whimsicott": 2.3492650066947065, + "lilligant": 2.4134164362351074, + "basculin-red-striped": 2.511529887188584, + "basculin-blue-striped": 3.1867174856303597, + "krookodile": 3.0224366301258865, + "maractus": 1.9424488289360977, + "crustle": 1.4403108258106316, + "sigilyph": 2.8198167232228926, + "cofagrigus": 3.3294972443607724, + "garbodor": 1.5569299309262576, + "cinccino": 3.906370221669606, + "vanillish": 1.8477272388880455, + "emolga": 2.5860240318167786, + "escavalier": 1.459691001700068, + "amoonguss": 2.1970953144836147, + "jellicent": 1.6311355888654608, + "galvantula": 1.290865471756304, + "klang": 2.337156670875216, + "klinklang": 2.7242167242506974, + "beheeyem": 2.3443784391635796, + "lampent": 2.770709623607095, + "fraxure": 1.4218349583410537, + "beartic": 1.4240249708859274, + "cryogonal": 1.6473476963875582, + "accelgor": 2.1546303094108032, + "stunfisk": 1.1348776166239722, + "stunfisk-galar": 2.0203997583136832, + "mienshao": 3.1620073163333715, + "druddigon": 1.9287681021524476, + "golurk": 1.9866871538620403, + "bisharp": 2.1602479957532648, + "bouffalant": 1.062381139230077, + "heatmor": 1.6511395739264585, + "durant": 2.06372665337517, + "diggersby": 2.792225000012705, + "talonflame": 2.522250761731822, + "pangoro": 2.290339428155251, + "doublade": 1.981366523806966, + "malamar": 3.2087942554056674, + "barbaracle": 1.2291222968454059, + "heliolisk": 3.3125764413429253, + "tyrantrum": 1.3297897544333697, + "aurorus": 2.156763140082063, + "hawlucha": 3.2812232785869533, + "dedenne": 1.8774416292156864, + "klefki": 1.9294416164385928, + "trevenant": 3.165045806478375, + "gourgeist-average": 5.633286284036817, + "charjabug": 3.3819761602113436, + "vikavolt": 1.3645167689814808, + "ribombee": 3.093355417385772, + "lycanroc-midday": 2.907864925022019, + "lycanroc-midnight": 2.000076650587082, + "mudsdale": 1.2285311667027425, + "araquanid": 1.9252922300928135, + "lurantis": 1.9161218900394188, + "shiinotic": 3.132248771106533, + "salazzle": 2.8305117957148505, + "bewear": 1.7112928583401776, + "tsareena": 2.6697592618601824, + "comfey": 3.340009533623002, + "oranguru": 4.17255573175682, + "passimian": 2.008137903076748, + "palossand": 2.1882644879569026, + "pyukumuku": 38.862021101500545, + "togedemaru": 1.9702156364003005, + "mimikyu-disguised": 3.8562797626673917, + "greedent": 1.906379355469495, + "orbeetle": 1.9843687512289323, + "thievul": 2.1530501341527786, + "eldegoss": 3.4716942470638013, + "dubwool": 2.322663263322795, + "drednaw": 1.0240773366788103, + "boltund": 4.293016685790963, + "carkol": 2.000884118601002, + "coalossal": 1.6474887663442366, + "sandaconda": 2.305234177635038, + "cramorant": 5.356262209286302, + "barraskewda": 4.020584271664348, + "toxtricity-amped": 2.1900616448195946, + "centiskorch": 1.8328684525729289, + "grapploct": 1.4964197109247817, + "polteageist": 3.8682609185071968, + "hatterene": 2.27159843258385, + "grimmsnarl": 4.103171935893258, + "obstagoon": 2.5670606530645523, + "perrserker": 2.714264268781132, + "alcremie": 1.0010058709273173, + "falinks": 2.459915895284694, + "pincurchin": 2.5661187971840924, + "frosmoth": 1.9538022277904659, + "indeedee-male": 4.475961042640718, + "morpeko": 2.8551448153630092, + "copperajah": 1.911603214267715, + "duraludon": 1.1723142450711956, + "drakloak": 5.500435728140484 }, "musharna": { - "ivysaur": 4.808066993115854, - "charmeleon": 4.4046005980325935, - "wartortle": 3.5684890590771845, - "butterfree": 4.7416996780552045, - "raichu": 5.914954245651219, - "raichu-alola": 3.426405426563166, - "sandslash": 2.9856716850937155, - "sandslash-alola": 1.9973149138875121, - "nidoqueen": 4.1121205855170135, - "nidoking": 2.7952299379575796, - "clefairy": 10.360568590076038, - "clefable": 2.394800215734424, - "jigglypuff": 30.23988688143653, - "wigglytuff": 2.3417408540662095, - "gloom": 8.65798129865535, - "vileplume": 4.304581143657971, - "dugtrio": 4.4072671555721765, - "dugtrio-alola": 3.2550512635814632, - "persian": 4.76773041134749, - "persian-alola": 3.7567801168086756, - "golduck": 3.928147897374898, - "poliwrath": 3.010226589894937, - "kadabra": 3.844509979536758, - "machoke": 6.038059740856987, - "tentacruel": 3.5463014291963075, - "slowbro": 2.510194913554618, - "magneton": 2.993414735207015, - "haunter": 6.956206198497393, - "kingler": 3.7326416152128785, - "exeggutor": 1.8616543860943993, - "marowak": 3.9587153258343566, - "marowak-alola": 2.3312813122865386, - "hitmonlee": 3.6954741323993816, - "hitmonchan": 3.223044725805604, - "lickitung": 2.176363258225437, - "weezing": 2.718112329077411, - "weezing-galar": 4.607831212097307, - "rhydon": 4.622928623555977, - "chansey": 29.729587387780665, - "tangela": 6.303681865410407, - "kangaskhan": 1.999380790644446, - "seadra": 6.176255383209007, - "seaking": 3.0070291629776884, - "starmie": 1.8697359586195499, - "mr-mime": 6.874054416987097, - "mr-mime-galar": 3.7189049508685246, - "scyther": 2.814119096711848, - "jynx": 4.152432927949284, - "electabuzz": 2.899450457731146, - "magmar": 1.8932113493808802, - "tauros": 2.342746304027618, - "ditto": 2.581883490925801, - "vaporeon": 3.811712910767401, - "jolteon": 2.111395550848942, - "flareon": 2.618708763096958, - "porygon": 3.0829260378117267, - "dragonair": 2.1094983605089883, - "noctowl": 6.362104906046135, - "lanturn": 2.427705885202653, - "togetic": 5.927368399108387, - "xatu": 3.6750481165974813, - "bellossom": 2.6512959465937866, - "azumarill": 2.5766952161687824, - "sudowoodo": 3.5650685180967017, - "politoed": 3.1161238773247915, - "quagsire": 9.420410537933531, - "slowking": 3.0139277277044787, - "dunsparce": 3.4937389215817096, - "qwilfish": 5.788769377207724, - "sneasel": 2.0326017781678813, - "piloswine": 2.1214326526565355, - "octillery": 2.9519535737380966, - "mantine": 2.7005798435859214, - "skarmory": 1.8630785096522193, - "hitmontop": 4.105568663155494, - "miltank": 4.249411546283298, - "grovyle": 8.93099416823329, - "sceptile": 1.5419901330764325, - "combusken": 5.304158724348023, - "blaziken": 2.5285969800718457, - "marshtomp": 4.586755320178339, - "swampert": 2.33443280145893, - "linoone": 5.360801184624735, - "linoone-galar": 4.144252503640434, - "pelipper": 7.168473593598822, - "ninjask": 7.4225863272297605, - "exploud": 1.8428528929123207, - "lairon": 2.69249066857639, - "manectric": 2.0312597785017292, - "roselia": 6.018633338586233, - "sharpedo": 6.072704932908275, - "wailmer": 8.463527368849494, - "torkoal": 2.3810059501403993, - "flygon": 2.5939797456565894, - "altaria": 1.8205347543217136, - "whiscash": 3.955474865394503, - "crawdaunt": 2.6934638492748717, - "claydol": 4.259554600071295, - "cradily": 2.526498722834206, - "armaldo": 2.02406002799586, - "dusclops": 3.3920616276427564, - "absol": 1.9116956776631482, - "glalie": 4.373762400994639, - "sealeo": 4.03330644968483, - "relicanth": 3.8339335178270844, - "metang": 2.5529912664183274, - "luxray": 4.304135896530246, - "vespiquen": 2.8781158761976355, - "cherrim": 6.500665090270787, - "gastrodon": 3.678588497347186, - "drifblim": 4.970619971386576, - "lopunny": 4.124598926914751, - "skuntank": 1.1619811495050443, - "bronzong": 2.7402850162486523, - "munchlax": 2.4568834739890546, - "drapion": 1.9019891001723375, - "abomasnow": 3.478883156200992, - "froslass": 3.138038628600671, - "rotom": 4.045110087383998, - "stoutland": 2.6908196057965, - "liepard": 6.545069711151045, - "unfezant": 7.391499506017958, - "boldore": 4.840931682511757, - "swoobat": 5.263670891302038, - "audino": 2.5791383756301736, - "gurdurr": 3.9320482931671807, - "palpitoad": 7.080904069964836, - "seismitoad": 11.862703196995056, - "scolipede": 4.587766812318973, - "whimsicott": 3.577089500762912, - "lilligant": 3.2847909736021115, - "basculin-red-striped": 3.768902346851223, - "basculin-blue-striped": 4.648575518488813, - "krookodile": 3.4091371435538624, - "maractus": 2.4316267593762833, - "crustle": 2.3753358797261526, - "sigilyph": 2.2178186449154946, - "cofagrigus": 2.995231915556433, - "garbodor": 2.842328704456139, - "cinccino": 5.126909017043769, - "vanillish": 2.432346963373635, - "emolga": 3.4783008239426363, - "escavalier": 1.5901269036073633, - "amoonguss": 3.848807499436938, - "jellicent": 1.9399855174882086, - "galvantula": 1.7582883103085698, - "klang": 2.564622145122967, - "klinklang": 3.1178517274686657, - "beheeyem": 1.7638374041854452, - "lampent": 2.917356293810549, - "fraxure": 1.8053467289021152, - "beartic": 1.972961240563955, - "cryogonal": 1.9870293553688074, - "accelgor": 3.059514878449969, - "stunfisk": 1.595122227978948, - "stunfisk-galar": 2.2762799509854608, - "mienshao": 5.244087358486615, - "druddigon": 1.9748509063616149, - "golurk": 2.330519607000836, - "bisharp": 2.0349705076770253, - "bouffalant": 1.4378659970753538, - "heatmor": 2.1489259556967655, - "durant": 2.781341962916275, - "diggersby": 4.0388988924006615, - "talonflame": 3.3163213713384074, - "pangoro": 1.7217425963310227, - "doublade": 2.422901048091777, - "malamar": 2.797901596463619, - "barbaracle": 2.7237778512987187, - "heliolisk": 4.0129605264783965, - "tyrantrum": 1.969328419917896, - "aurorus": 2.8592722836258164, - "hawlucha": 5.391918211414264, - "dedenne": 3.374528770311098, - "klefki": 2.7807765070503483, - "trevenant": 3.4376641993317945, - "gourgeist-average": 5.880503945150098, - "charjabug": 4.554864509435221, - "vikavolt": 2.022748645657143, - "ribombee": 4.884038440406439, - "lycanroc-midday": 4.1674402663350705, - "lycanroc-midnight": 2.8711031663676483, - "mudsdale": 2.028286014367617, - "araquanid": 2.4695113864060003, - "lurantis": 2.589959010531624, - "shiinotic": 4.925057587928595, - "salazzle": 4.750847061728192, - "bewear": 2.753027393339634, - "tsareena": 3.4238432528995073, - "comfey": 5.0174097272259095, - "oranguru": 2.7827533091456735, - "passimian": 3.922336450339868, - "palossand": 2.672858487899167, - "pyukumuku": 53.94960540703653, - "togedemaru": 2.039475370809583, - "mimikyu-disguised": 4.158861910517424, - "greedent": 2.5091114642553025, - "orbeetle": 1.6497540431091515, - "thievul": 1.6404514633716305, - "eldegoss": 4.327628693497603, - "dubwool": 3.3820637791663657, - "drednaw": 2.3317167613119203, - "boltund": 4.9884134700699185, - "carkol": 2.73485990230187, - "coalossal": 2.2569391596139368, - "sandaconda": 4.181925495914574, - "cramorant": 5.649140953025979, - "barraskewda": 5.844549466133286, - "toxtricity-amped": 4.1773581990206665, - "centiskorch": 2.277206652109178, - "grapploct": 2.711344402276649, - "polteageist": 2.979636835613234, - "hatterene": 2.576899820989289, - "grimmsnarl": 3.578975096662738, - "obstagoon": 2.460449919290482, - "perrserker": 2.9376445732747376, - "alcremie": 1.646446477162702, - "falinks": 5.147411421539479, - "pincurchin": 3.36270681945238, - "frosmoth": 2.698081208579684, - "indeedee-male": 3.0275861210189983, - "morpeko": 2.675308307785807, - "copperajah": 2.206855036555894, - "duraludon": 1.5574406585422207, - "drakloak": 4.778924877324984, - "musharna": 1.6053724145052306 + "ivysaur": 4.826066873683425, + "charmeleon": 4.4141798489566995, + "wartortle": 3.581812973480797, + "butterfree": 4.742147738693394, + "raichu": 5.9345031624378715, + "raichu-alola": 3.4298191537647047, + "sandslash": 2.9938893141200222, + "sandslash-alola": 1.9986696494332672, + "nidoqueen": 4.126997183548327, + "nidoking": 2.8071524731254316, + "clefairy": 10.390771806482952, + "clefable": 2.4014719129528426, + "jigglypuff": 30.317549058706007, + "wigglytuff": 2.348518939082577, + "gloom": 8.689284908024465, + "vileplume": 4.316455424141078, + "dugtrio": 4.420767042201618, + "dugtrio-alola": 3.2567350531565875, + "persian": 4.776808902706097, + "persian-alola": 3.7467968867863073, + "golduck": 3.9404015267673658, + "poliwrath": 3.0265815000474885, + "kadabra": 3.8478158808945486, + "machoke": 6.0625527422918974, + "tentacruel": 3.5618322861277782, + "slowbro": 2.5179558601214733, + "magneton": 2.9955036301743947, + "haunter": 6.982452291473699, + "kingler": 3.7476283520336766, + "exeggutor": 1.8621766077738025, + "marowak": 3.9684763845886657, + "marowak-alola": 2.3348570265519877, + "hitmonlee": 3.713964983597609, + "hitmonchan": 3.237398259664615, + "lickitung": 2.1814426767868564, + "weezing": 2.7270387555940987, + "weezing-galar": 4.626473302787495, + "rhydon": 4.639644660722881, + "chansey": 29.755942411440238, + "tangela": 6.314604316717443, + "kangaskhan": 2.0024068705259035, + "seadra": 6.197762127231478, + "seaking": 3.016464526190708, + "starmie": 1.8741675046719104, + "mr-mime": 6.888207750494071, + "mr-mime-galar": 3.7229021103387585, + "scyther": 2.8141084075486704, + "jynx": 4.152850605834105, + "electabuzz": 2.906040606042015, + "magmar": 1.8969806679630012, + "tauros": 2.3480894875173415, + "ditto": 2.5709809315054173, + "vaporeon": 3.8244102597774825, + "jolteon": 2.115095782212274, + "flareon": 2.6215606156417013, + "porygon": 3.0887558949104053, + "dragonair": 2.113372054704369, + "noctowl": 6.372561946367435, + "lanturn": 2.43711585013613, + "togetic": 5.940191401584288, + "xatu": 3.6785789399943503, + "bellossom": 2.656085604382671, + "azumarill": 2.576382391993077, + "sudowoodo": 3.577787184377691, + "politoed": 3.1259891349001583, + "quagsire": 9.465061271643316, + "slowking": 3.0198584536576645, + "dunsparce": 3.4981599242161696, + "qwilfish": 5.8123633134895645, + "sneasel": 2.026828097899406, + "piloswine": 2.1291050599595827, + "octillery": 2.959879250554531, + "mantine": 2.707712445105571, + "skarmory": 1.8623731565473072, + "hitmontop": 4.125115714498495, + "miltank": 4.258627636917149, + "grovyle": 8.950227046787191, + "sceptile": 1.5439822460344863, + "combusken": 5.330253710767776, + "blaziken": 2.5401248523486375, + "marshtomp": 4.605045614499572, + "swampert": 2.344411504427971, + "linoone": 5.363492890457879, + "linoone-galar": 4.131574659770303, + "pelipper": 7.184889016336317, + "ninjask": 7.415599286328296, + "exploud": 1.8475036508356601, + "lairon": 2.695833836593321, + "manectric": 2.037703815146556, + "roselia": 6.043083138889253, + "sharpedo": 6.069422803142524, + "wailmer": 8.491954891136457, + "torkoal": 2.3864702719849293, + "flygon": 2.598426428504087, + "altaria": 1.8235838695628537, + "whiscash": 3.972464847996598, + "crawdaunt": 2.6930895916939157, + "claydol": 4.269372244851164, + "cradily": 2.531995276927049, + "armaldo": 2.02676486887161, + "dusclops": 3.3937053868768445, + "absol": 1.9086765316822802, + "glalie": 4.377872224629408, + "sealeo": 4.045419621674636, + "relicanth": 3.8483680291734554, + "metang": 2.5528249898107127, + "luxray": 4.314256353930261, + "vespiquen": 2.879262310691347, + "cherrim": 6.511562892444411, + "gastrodon": 3.690213390275616, + "drifblim": 4.984619123558035, + "lopunny": 4.1345270155839495, + "skuntank": 1.1585182675901127, + "bronzong": 2.7416204541329217, + "munchlax": 2.461474785731626, + "drapion": 1.8962523194375307, + "abomasnow": 3.4822630787111857, + "froslass": 3.1436922334257673, + "rotom": 4.054688634304501, + "stoutland": 2.695605658284875, + "liepard": 6.53205479494295, + "musharna": 1.6053724145052306, + "unfezant": 7.406554682561458, + "boldore": 4.859017720506657, + "swoobat": 5.268894671979464, + "audino": 2.585065414603496, + "gurdurr": 3.952214392963957, + "palpitoad": 7.110400860900569, + "seismitoad": 11.905828150731137, + "scolipede": 4.593751639740857, + "whimsicott": 3.584066796400423, + "lilligant": 3.2880799176230187, + "basculin-red-striped": 3.782205470904871, + "basculin-blue-striped": 4.660553164932406, + "krookodile": 3.4071550217552513, + "maractus": 2.4356517118167638, + "crustle": 2.379569132177509, + "sigilyph": 2.2196091957369504, + "cofagrigus": 3.0017210984522844, + "garbodor": 2.8543851289581017, + "cinccino": 5.137516608290921, + "vanillish": 2.437008357457934, + "emolga": 3.4864703782728563, + "escavalier": 1.5892099602587395, + "amoonguss": 3.8626742007682084, + "jellicent": 1.9477579518863888, + "galvantula": 1.7606538936353147, + "klang": 2.566818396819845, + "klinklang": 3.119313481195169, + "beheeyem": 1.7649116127482738, + "lampent": 2.9245606250246734, + "fraxure": 1.8075000081440131, + "beartic": 1.977691620078124, + "cryogonal": 1.99047693220137, + "accelgor": 3.0588733974571256, + "stunfisk": 1.6001344771758998, + "stunfisk-galar": 2.278171835446048, + "mienshao": 5.268532270665471, + "druddigon": 1.9775357246503724, + "golurk": 2.337414858817154, + "bisharp": 2.03036923030258, + "bouffalant": 1.438122889401436, + "heatmor": 2.154232707402, + "durant": 2.7788796749554407, + "diggersby": 4.050752970373692, + "talonflame": 3.322674955621875, + "pangoro": 1.719985844700915, + "doublade": 2.427263922720571, + "malamar": 2.7942612062435686, + "barbaracle": 2.732876386875509, + "heliolisk": 4.02234713507255, + "tyrantrum": 1.9746956844644914, + "aurorus": 2.864774151255043, + "hawlucha": 5.409476527548993, + "dedenne": 3.3840582556451015, + "klefki": 2.783886162559359, + "trevenant": 3.4468063727397253, + "gourgeist-average": 5.885906095787787, + "charjabug": 4.56393458779357, + "vikavolt": 2.0248911420023012, + "ribombee": 4.88684546152516, + "lycanroc-midday": 4.1795083067043475, + "lycanroc-midnight": 2.878000799958996, + "mudsdale": 2.034586068327875, + "araquanid": 2.4731626369874276, + "lurantis": 2.592231119763241, + "shiinotic": 4.933729727559517, + "salazzle": 4.768512801999295, + "bewear": 2.7612591577558603, + "tsareena": 3.4295282562923495, + "comfey": 5.031543512374328, + "oranguru": 2.788218944077521, + "passimian": 3.941132105648256, + "palossand": 2.6801351041651307, + "pyukumuku": 54.080148490288195, + "togedemaru": 2.0400329879615224, + "mimikyu-disguised": 4.163782567003372, + "greedent": 2.5154045515935812, + "orbeetle": 1.65018188452114, + "thievul": 1.6368467013790085, + "eldegoss": 4.3349127026270535, + "dubwool": 3.3900160282930303, + "drednaw": 2.33882146944606, + "boltund": 4.995088109582671, + "carkol": 2.740825863755594, + "coalossal": 2.2617307569731033, + "sandaconda": 4.192077358990921, + "cramorant": 5.6545990887711, + "barraskewda": 5.857947324938349, + "toxtricity-amped": 4.192663592504676, + "centiskorch": 2.2808685494473853, + "grapploct": 2.7257749050775155, + "polteageist": 2.987911205478503, + "hatterene": 2.5815108483713054, + "grimmsnarl": 3.5732680297132076, + "obstagoon": 2.4556972197851006, + "perrserker": 2.9371927247045218, + "alcremie": 1.6509267467196511, + "falinks": 5.1658833349757876, + "pincurchin": 3.371964794908129, + "frosmoth": 2.6985337051077734, + "indeedee-male": 3.028956498409044, + "morpeko": 2.672285833472899, + "copperajah": 2.2090845247190054, + "duraludon": 1.5586472765403316, + "drakloak": 4.783114151211772 }, "unfezant": { - "ivysaur": 4.483017045239309, - "charmeleon": 3.7880253982490535, - "wartortle": 2.49734925310293, - "butterfree": 6.625501160617465, - "raichu": 3.7648617165882765, - "raichu-alola": 2.6681340669264264, - "sandslash": 2.055417659118559, - "sandslash-alola": 1.466537396545151, - "nidoqueen": 3.058743876622068, - "nidoking": 1.8265892956296175, - "clefairy": 9.653299677093955, - "clefable": 1.8958004496464542, - "jigglypuff": 26.65116704813304, - "wigglytuff": 1.9070067756823375, - "gloom": 7.1811930013622085, - "vileplume": 4.171840126629645, - "dugtrio": 3.80503473375442, - "dugtrio-alola": 3.126919765556658, - "persian": 4.2539273030349305, - "persian-alola": 4.12476919239599, - "golduck": 3.013569435026552, - "poliwrath": 2.4987695774379155, - "kadabra": 4.122869515674755, - "machoke": 4.773823047104763, - "tentacruel": 2.4893941518278853, - "slowbro": 1.6298586046264427, - "magneton": 1.9931771827523934, - "haunter": 5.168840381954279, - "kingler": 2.3024152544980674, - "exeggutor": 2.517728748907991, - "marowak": 3.168006002488997, - "marowak-alola": 2.0807746471809385, - "hitmonlee": 3.656060160365559, - "hitmonchan": 2.805780298634289, - "lickitung": 1.6183773237557504, - "weezing": 1.3832009118229625, - "weezing-galar": 2.297658236926597, - "rhydon": 1.9302570684828524, - "chansey": 28.932038747906837, - "tangela": 5.567958187062331, - "kangaskhan": 1.901441785967393, - "seadra": 3.582402778466056, - "seaking": 2.6353017494225197, - "starmie": 1.2646870316891863, - "mr-mime": 7.014498223090065, - "mr-mime-galar": 3.069141493407704, - "scyther": 3.5710603022370293, - "jynx": 4.1487338359868815, - "electabuzz": 1.7282669752326645, - "magmar": 1.6885084268627735, - "tauros": 2.0255976251620447, - "ditto": 7.726766168943865, - "vaporeon": 3.2360241043541396, - "jolteon": 1.5457433561239173, - "flareon": 2.5783676088637173, - "porygon": 2.4286908251527133, - "dragonair": 1.669851866725546, - "noctowl": 6.149880747857437, - "lanturn": 1.4441771262661471, - "togetic": 5.37013844558285, - "xatu": 3.632031177878372, - "bellossom": 3.004833715919899, - "azumarill": 2.2733228947061024, - "sudowoodo": 2.0599286856111303, - "politoed": 2.792210344590954, - "quagsire": 4.274884838899856, - "slowking": 2.4274250258295487, - "dunsparce": 3.2054179870740254, - "qwilfish": 3.223325977143192, - "sneasel": 2.242212043457865, - "piloswine": 1.294028563487625, - "octillery": 2.3007763968050092, - "mantine": 2.603567537081881, - "skarmory": 1.5915578943910595, - "hitmontop": 3.6480607184898686, - "miltank": 3.388241742691962, - "grovyle": 11.468419168902832, - "sceptile": 2.026539910828851, - "combusken": 4.275992802180027, - "blaziken": 2.1215638709431044, - "marshtomp": 2.4807807717698087, - "swampert": 1.1522031282960967, - "linoone": 5.616995044044514, - "linoone-galar": 4.5098772136251295, - "pelipper": 5.641797991691265, - "ninjask": 10.878716191750486, - "exploud": 1.413254609032294, - "lairon": 1.5902714572302803, - "manectric": 1.346364747473157, - "roselia": 5.858256105569226, - "sharpedo": 5.052254788989751, - "wailmer": 6.424351637510296, - "torkoal": 1.608503923626086, - "flygon": 2.4849842241179667, - "altaria": 1.543546563634338, - "whiscash": 1.960477230542152, - "crawdaunt": 1.8351143769512048, - "claydol": 3.0365085603008084, - "cradily": 2.1315281268710837, - "armaldo": 1.8640109722373548, - "dusclops": 3.985974169500902, - "absol": 1.7927472713767014, - "glalie": 3.8743190818452096, - "sealeo": 2.813668632686855, - "relicanth": 1.4549724866190359, - "metang": 2.2792300481946706, - "luxray": 2.7467600912217205, - "vespiquen": 3.651183232199431, - "cherrim": 7.870146960461552, - "gastrodon": 2.1920178816147855, - "drifblim": 3.7658511462301107, - "lopunny": 3.7383718709540257, - "skuntank": 1.4168817311959683, - "bronzong": 2.598262910671563, - "munchlax": 2.4081403378613464, - "drapion": 2.352206690288382, - "abomasnow": 3.9221066174163024, - "froslass": 2.7178490293657767, - "rotom": 2.8541924473625997, - "stoutland": 2.3795735890233916, - "liepard": 7.065081218864812, - "musharna": 1.5397526775042165, - "boldore": 2.5680944398523167, - "swoobat": 5.193490042738254, - "audino": 2.089178544490826, - "gurdurr": 2.7480265326329034, - "palpitoad": 3.9640344056683263, - "seismitoad": 5.9943405761925845, - "scolipede": 4.1664142799746235, - "whimsicott": 4.0437528216555645, - "lilligant": 4.193472309628798, - "basculin-red-striped": 2.6859710604706417, - "basculin-blue-striped": 3.50681568506864, - "krookodile": 2.973229078468593, - "maractus": 3.0495408190690076, - "crustle": 1.8921777336269638, - "sigilyph": 2.1998339583145947, - "cofagrigus": 2.677770936863272, - "garbodor": 1.8383922776451724, - "cinccino": 4.270725829623155, - "vanillish": 1.7689544599292737, - "emolga": 2.0406541626499752, - "escavalier": 2.0048587215181657, - "amoonguss": 3.3928616318051494, - "jellicent": 1.4474137212374685, - "galvantula": 1.3197057011210478, - "klang": 1.8998126519739609, - "klinklang": 2.6931581699542546, - "beheeyem": 1.6910579145146674, - "lampent": 2.4341624353335654, - "fraxure": 1.5107090800062284, - "beartic": 1.4160601452162416, - "cryogonal": 1.5503558228695908, - "accelgor": 4.6058417220015855, - "stunfisk": 1.0546664096603942, - "stunfisk-galar": 1.9922583737072808, - "mienshao": 4.201769424071818, - "druddigon": 1.90205357568294, - "golurk": 2.072874236952842, - "bisharp": 1.9760588297690418, - "bouffalant": 1.299744142816599, - "heatmor": 1.8933985833075289, - "durant": 2.6537942600162214, - "diggersby": 3.4239681049682944, - "talonflame": 2.8146054787779438, - "pangoro": 2.2673943890359722, - "doublade": 1.737976095257268, - "malamar": 2.5461072899768986, - "barbaracle": 1.145402051564115, - "heliolisk": 2.819388322567568, - "tyrantrum": 1.2153891030775674, - "aurorus": 1.765698540700137, - "hawlucha": 4.452193798626732, - "dedenne": 2.1436191440099104, - "klefki": 2.4282775008119337, - "trevenant": 4.327720156034413, - "gourgeist-average": 6.68396675967794, - "charjabug": 3.762666931513647, - "vikavolt": 1.83058776404322, - "ribombee": 6.458091560483341, - "lycanroc-midday": 2.536036809455108, - "lycanroc-midnight": 1.898356957928562, - "mudsdale": 1.5999656255434307, - "araquanid": 3.544252236167838, - "lurantis": 3.206206348280174, - "shiinotic": 5.7202900131217485, - "salazzle": 3.1210365633891044, - "bewear": 2.1781118878439463, - "tsareena": 4.243091109013801, - "comfey": 4.627499571781469, - "oranguru": 2.6897280713701077, - "passimian": 2.70683115704926, - "palossand": 2.183347647623057, - "pyukumuku": 42.959705367930475, - "togedemaru": 1.5388484030832577, - "mimikyu-disguised": 4.749269991092749, - "greedent": 2.0616142602499377, - "orbeetle": 2.3908534231507703, - "thievul": 1.847316387299565, - "eldegoss": 5.4966910675409775, - "dubwool": 2.972275810480091, - "drednaw": 0.9935883115945704, - "boltund": 3.466391422676544, - "carkol": 1.8043649269928719, - "coalossal": 1.4780161893212351, - "sandaconda": 3.150715077815054, - "cramorant": 5.928430300767668, - "barraskewda": 4.522653893320925, - "toxtricity-amped": 1.9099542022281013, - "centiskorch": 2.8763144818094593, - "grapploct": 2.097435057473989, - "polteageist": 2.9781202475916757, - "hatterene": 2.4605437097325913, - "grimmsnarl": 3.808304664975076, - "obstagoon": 2.320559037065022, - "perrserker": 2.417674987518126, - "alcremie": 1.4904030115429467, - "falinks": 3.790438563001427, - "pincurchin": 2.1656226809507793, - "frosmoth": 3.6544757968526893, - "indeedee-male": 3.4589393985212125, - "morpeko": 1.982869882329025, - "copperajah": 1.932400738832548, - "duraludon": 1.1061975430178281, - "drakloak": 4.843630958647523, - "unfezant": 6.012015410284588 + "ivysaur": 4.487538238788736, + "charmeleon": 3.781193341142295, + "wartortle": 2.4906605084160063, + "butterfree": 6.632552311591637, + "raichu": 3.746519047920766, + "raichu-alola": 2.655014106208469, + "sandslash": 2.0537553655649536, + "sandslash-alola": 1.4603575383897793, + "nidoqueen": 3.0617785721310575, + "nidoking": 1.8247670065065678, + "clefairy": 9.648171279899923, + "clefable": 1.8907773344739718, + "jigglypuff": 26.60581486855601, + "wigglytuff": 1.9029296894751555, + "gloom": 7.176225531694623, + "vileplume": 4.178803799668956, + "dugtrio": 3.8074492920782284, + "dugtrio-alola": 3.1253319097243155, + "persian": 4.246498320805067, + "persian-alola": 4.118548011649137, + "golduck": 3.008723592840579, + "poliwrath": 2.5000347290537146, + "kadabra": 4.116313676270474, + "machoke": 4.772351101238341, + "tentacruel": 2.48637161359109, + "slowbro": 1.6262198478000511, + "magneton": 1.9812948018188425, + "haunter": 5.176896372401071, + "kingler": 2.300305721463615, + "exeggutor": 2.519748593784475, + "marowak": 3.168763429542648, + "marowak-alola": 2.0815841119544873, + "hitmonlee": 3.6608867891275096, + "hitmonchan": 2.8042823496541356, + "lickitung": 1.6118831938493472, + "weezing": 1.3796336785469228, + "weezing-galar": 2.2923143413541736, + "rhydon": 1.925687521211794, + "chansey": 28.8789512413568, + "tangela": 5.570936116642999, + "kangaskhan": 1.900150180257836, + "seadra": 3.5715584300181824, + "seaking": 2.6355083811337385, + "starmie": 1.260453540323705, + "mr-mime": 7.00202364244023, + "mr-mime-galar": 3.0587361246412312, + "scyther": 3.573540389840338, + "jynx": 4.133186820401453, + "electabuzz": 1.718445523106981, + "magmar": 1.6856575358683605, + "tauros": 2.024787018598013, + "ditto": 7.680862582448602, + "vaporeon": 3.2302527646301566, + "jolteon": 1.539685033943044, + "flareon": 2.5787265495647915, + "porygon": 2.4190080176886735, + "dragonair": 1.6645838477692136, + "noctowl": 6.141968290939667, + "lanturn": 1.4381545554274906, + "togetic": 5.3643511248345686, + "xatu": 3.6241501745986784, + "bellossom": 3.006850396407284, + "azumarill": 2.2730940396874253, + "sudowoodo": 2.0543346775874607, + "politoed": 2.7924816190834383, + "quagsire": 4.265788056086123, + "slowking": 2.4224260815502143, + "dunsparce": 3.2011387072068676, + "qwilfish": 3.21891733689203, + "sneasel": 2.237129899348115, + "piloswine": 1.289759043565797, + "octillery": 2.2970649306633413, + "mantine": 2.6008286725051617, + "skarmory": 1.5886984990237942, + "hitmontop": 3.6513316587128735, + "miltank": 3.382632502250062, + "grovyle": 11.485094484601866, + "sceptile": 2.0299685799261176, + "combusken": 4.27614700098243, + "blaziken": 2.12263903476303, + "marshtomp": 2.478123707343631, + "swampert": 1.1509452973819423, + "linoone": 5.618306427046884, + "linoone-galar": 4.502520001105893, + "pelipper": 5.630363580587346, + "ninjask": 10.903434242393654, + "exploud": 1.4089425105469708, + "lairon": 1.58349411563497, + "manectric": 1.3406459230488865, + "roselia": 5.8631981270013185, + "sharpedo": 5.0461890346930245, + "wailmer": 6.414676383723393, + "torkoal": 1.6050737778227542, + "flygon": 2.4841196328585244, + "altaria": 1.5405218824362512, + "whiscash": 1.9574188953864264, + "crawdaunt": 1.8316905797914145, + "claydol": 3.0268301645500975, + "cradily": 2.126229211194622, + "armaldo": 1.86317781075178, + "dusclops": 3.996615610057359, + "absol": 1.7890008010087473, + "glalie": 3.864531152592716, + "sealeo": 2.803816536421258, + "relicanth": 1.4492402104662725, + "metang": 2.272356437974651, + "luxray": 2.7324370969396288, + "vespiquen": 3.6553535374872412, + "cherrim": 7.875283521743858, + "gastrodon": 2.189443818201724, + "drifblim": 3.7518042568132035, + "lopunny": 3.734379256037027, + "skuntank": 1.4154056286211307, + "bronzong": 2.5933477796542737, + "munchlax": 2.4048766582464265, + "drapion": 2.3510094218824276, + "abomasnow": 3.918941612547272, + "froslass": 2.7119117301208195, + "rotom": 2.84604915176923, + "stoutland": 2.3752209843929597, + "liepard": 7.058041130299978, + "musharna": 1.5376043488170912, + "unfezant": 6.012015410284588, + "boldore": 2.560578863479517, + "swoobat": 5.182060244548403, + "audino": 2.084591042801643, + "gurdurr": 2.75090059189618, + "palpitoad": 3.9632242656741914, + "seismitoad": 5.9781531255469496, + "scolipede": 4.171365878208531, + "whimsicott": 4.046069461488317, + "lilligant": 4.199607177133582, + "basculin-red-striped": 2.6813044444930396, + "basculin-blue-striped": 3.501436663722424, + "krookodile": 2.973693680607937, + "maractus": 3.0541468861551957, + "crustle": 1.8891101990663601, + "sigilyph": 2.194934748157559, + "cofagrigus": 2.679224533916707, + "garbodor": 1.8358740777947586, + "cinccino": 4.259177939080069, + "vanillish": 1.7606720266067963, + "emolga": 2.0305215776469008, + "escavalier": 2.0071277510374195, + "amoonguss": 3.3935875506474513, + "jellicent": 1.4450343581831722, + "galvantula": 1.3142512831703423, + "klang": 1.8896782672415018, + "klinklang": 2.686698305364538, + "beheeyem": 1.6861448909060628, + "lampent": 2.43190790247932, + "fraxure": 1.5089401307707804, + "beartic": 1.4108436228770058, + "cryogonal": 1.54490786307319, + "accelgor": 4.611585413603614, + "stunfisk": 1.0513863481840178, + "stunfisk-galar": 1.9901676971268834, + "mienshao": 4.199029085745114, + "druddigon": 1.9019189756030648, + "golurk": 2.0758784420378236, + "bisharp": 1.9713147926549708, + "bouffalant": 1.29863883430879, + "heatmor": 1.891882609406648, + "durant": 2.649260795645225, + "diggersby": 3.424592909474943, + "talonflame": 2.8100220339204443, + "pangoro": 2.2685004471299006, + "doublade": 1.7339027293966691, + "malamar": 2.5384377175630988, + "barbaracle": 1.1414687944332635, + "heliolisk": 2.807335973935346, + "tyrantrum": 1.2112293644151335, + "aurorus": 1.7549402816929993, + "hawlucha": 4.453781075227405, + "dedenne": 2.133418211821991, + "klefki": 2.4225613453766535, + "trevenant": 4.336407355196879, + "gourgeist-average": 6.696069262321447, + "charjabug": 3.7549239054101378, + "vikavolt": 1.829301339824137, + "ribombee": 6.463147069728304, + "lycanroc-midday": 2.524863494457276, + "lycanroc-midnight": 1.8920571405502289, + "mudsdale": 1.599568289069448, + "araquanid": 3.550231059631418, + "lurantis": 3.2085899093838153, + "shiinotic": 5.716955910074635, + "salazzle": 3.1158213345188193, + "bewear": 2.1773612293379596, + "tsareena": 4.249767528936799, + "comfey": 4.624761093163661, + "oranguru": 2.6848014628057406, + "passimian": 2.7057226908985106, + "palossand": 2.1869186195506054, + "pyukumuku": 42.90448348418828, + "togedemaru": 1.5323925451717164, + "mimikyu-disguised": 4.7576526732486215, + "greedent": 2.0584656572731195, + "orbeetle": 2.3898467178965865, + "thievul": 1.8442973246866845, + "eldegoss": 5.502486002878007, + "dubwool": 2.9695129465395933, + "drednaw": 0.99058581427207, + "boltund": 3.450430394608291, + "carkol": 1.797803466168613, + "coalossal": 1.4713680390675419, + "sandaconda": 3.1515832260964585, + "cramorant": 5.925036846376948, + "barraskewda": 4.517007289357089, + "toxtricity-amped": 1.8991022741056103, + "centiskorch": 2.8785779320060767, + "grapploct": 2.0975089743615123, + "polteageist": 2.9783004058326505, + "hatterene": 2.456678905315453, + "grimmsnarl": 3.802859713499303, + "obstagoon": 2.3140943459009433, + "perrserker": 2.409505017152898, + "alcremie": 1.4891539936640996, + "falinks": 3.7925113954141043, + "pincurchin": 2.1534619017229932, + "frosmoth": 3.6534760858606683, + "indeedee-male": 3.4567855970468506, + "morpeko": 1.9727284743018754, + "copperajah": 1.9275801217646684, + "duraludon": 1.1014438764376413, + "drakloak": 4.8458040434748 }, "boldore": { - "ivysaur": 2.7163256150156228, - "charmeleon": 5.651730417190903, - "wartortle": 2.1352041506571715, - "butterfree": 9.103143217663971, - "raichu": 5.271234990841208, - "raichu-alola": 3.997925211237367, - "sandslash": 1.8729828881724941, - "sandslash-alola": 2.571936465820457, - "nidoqueen": 2.704111189687026, - "nidoking": 2.152115300051421, - "clefairy": 8.83430133000939, - "clefable": 1.899631745427551, - "jigglypuff": 26.91108372230334, - "wigglytuff": 1.8949120720806913, - "gloom": 5.714042865256209, - "vileplume": 2.42397256515093, - "dugtrio": 3.3954816137152197, - "dugtrio-alola": 3.9573955388195854, - "persian": 5.110073298190416, - "persian-alola": 4.3377082657533785, - "golduck": 2.7424446142649046, - "poliwrath": 1.665843209350867, - "kadabra": 4.20216213716299, - "machoke": 3.5034033988385316, - "tentacruel": 2.453804309591871, - "slowbro": 1.68077332270316, - "magneton": 3.8277877389207307, - "haunter": 4.021952989035144, - "kingler": 2.0990399186911644, - "exeggutor": 1.7107292003642112, - "marowak": 2.600983693409739, - "marowak-alola": 2.8976805555487504, - "hitmonlee": 2.3244710583556696, - "hitmonchan": 2.126408948753017, - "lickitung": 1.681923198713322, - "weezing": 1.666741691059152, - "weezing-galar": 2.6596222669927245, - "rhydon": 2.140920092166744, - "chansey": 35.62057574888067, - "tangela": 4.220565957685242, - "kangaskhan": 2.1011427107592278, - "seadra": 3.165822154806909, - "seaking": 2.61027874568993, - "starmie": 1.3682828724707807, - "mr-mime": 6.982705342103249, - "mr-mime-galar": 4.6012845001061775, - "scyther": 6.06549306501789, - "jynx": 6.558580757204528, - "electabuzz": 2.8638276036443857, - "magmar": 2.6901654932050834, - "tauros": 2.076658978037445, - "ditto": 3.7524975421148685, - "vaporeon": 2.8721277731755057, - "jolteon": 2.3371601094993757, - "flareon": 3.91706737459553, - "porygon": 2.932767988938726, - "dragonair": 1.9127336948517106, - "noctowl": 10.136142821992756, - "lanturn": 1.8573432296313133, - "togetic": 8.280983096714348, - "xatu": 5.116384666464721, - "bellossom": 1.9341864892497003, - "azumarill": 2.3618681377471615, - "sudowoodo": 2.597545488407423, - "politoed": 2.391475202786719, - "quagsire": 2.9913385715802923, - "slowking": 2.5229235261779257, - "dunsparce": 3.4176000340889816, - "qwilfish": 3.631574262040364, - "sneasel": 3.406388287596841, - "piloswine": 1.5358995718460422, - "octillery": 1.9473038683315744, - "mantine": 3.6065229630702467, - "skarmory": 1.9350055287679104, - "hitmontop": 2.4034676018760406, - "miltank": 4.002822904348227, - "grovyle": 6.722039837452968, - "sceptile": 1.2952369547904679, - "combusken": 3.4021694501373125, - "blaziken": 1.9057847914456922, - "marshtomp": 2.0154621681881455, - "swampert": 0.9167701343986272, - "linoone": 6.0974862482715135, - "linoone-galar": 6.254264512734679, - "pelipper": 8.594326545579742, - "ninjask": 15.824995910794291, - "exploud": 1.6122308907332767, - "lairon": 2.9633814468722406, - "manectric": 2.0791321770065965, - "roselia": 3.5874088643486415, - "sharpedo": 5.482024328731464, - "wailmer": 5.745872881681951, - "torkoal": 2.3647589713975266, - "flygon": 1.907398950136096, - "altaria": 2.187314186074592, - "whiscash": 1.3936178212031742, - "crawdaunt": 1.6182099143481143, - "claydol": 2.684028474242293, - "cradily": 2.0567633187696726, - "armaldo": 2.492182830509775, - "dusclops": 3.4818800236642047, - "absol": 2.1390144206490644, - "glalie": 5.7923120940719555, - "sealeo": 3.662336876326937, - "relicanth": 1.9294036505841423, - "metang": 3.234198956741035, - "luxray": 4.356128398169828, - "vespiquen": 5.844511076510901, - "cherrim": 4.861490952748067, - "gastrodon": 2.053595715605037, - "drifblim": 5.8066817930509425, - "lopunny": 4.315747052690161, - "skuntank": 1.7608374146041343, - "bronzong": 2.726537144640443, - "munchlax": 3.0701061944595285, - "drapion": 2.6611224721045144, - "abomasnow": 4.271839374828863, - "froslass": 3.9307889307158774, - "rotom": 3.5412279415620396, - "stoutland": 2.930323751747168, - "liepard": 8.005377404614837, - "musharna": 1.393801771484282, - "unfezant": 9.19794480384334, - "swoobat": 7.338865617477155, - "audino": 2.466482206738248, - "gurdurr": 1.7819491132480798, - "palpitoad": 2.778212931146383, - "seismitoad": 6.04825606160074, - "scolipede": 4.352178001605253, - "whimsicott": 2.8113338650747894, - "lilligant": 2.4208985071089675, - "basculin-red-striped": 2.775574369968325, - "basculin-blue-striped": 3.1616778510728336, - "krookodile": 2.632991743735327, - "maractus": 1.7431797988271902, - "crustle": 2.583181169586834, - "sigilyph": 2.8476945905930204, - "cofagrigus": 2.29563384635807, - "garbodor": 2.2304575284420975, - "cinccino": 5.369182891780459, - "vanillish": 2.7903427878903733, - "emolga": 4.1208882722971065, - "escavalier": 1.8326600458619426, - "amoonguss": 2.320260011544285, - "jellicent": 1.5392976419723385, - "galvantula": 2.033288920692538, - "klang": 2.62158799051422, - "klinklang": 3.6800938159448604, - "beheeyem": 1.7789749480774997, - "lampent": 3.9216829419531294, - "fraxure": 1.6389924735722317, - "beartic": 2.0354313748587702, - "cryogonal": 2.434193613024357, - "accelgor": 4.1866243564992, - "stunfisk": 1.146416086116541, - "stunfisk-galar": 2.255906747489572, - "mienshao": 2.8485939293753595, - "druddigon": 1.904191688120943, - "golurk": 1.5484770387723903, - "bisharp": 3.5177698764489937, - "bouffalant": 1.42589319195734, - "heatmor": 2.6646171332022073, - "durant": 2.742695998074681, - "diggersby": 3.3709489546000975, - "talonflame": 6.34729336007587, - "pangoro": 1.7872050659935794, - "doublade": 2.150714581399157, - "malamar": 2.7190539456123517, - "barbaracle": 1.5755118312775696, - "heliolisk": 4.248145455238541, - "tyrantrum": 1.6545733692372915, - "aurorus": 3.3007269498350444, - "hawlucha": 3.6068606621973007, - "dedenne": 3.032506354739388, - "klefki": 3.09313062424807, - "trevenant": 2.952235441448612, - "gourgeist-average": 5.184538771388377, - "charjabug": 5.417550560282766, - "vikavolt": 2.3380792765585383, - "ribombee": 6.146117070068193, - "lycanroc-midday": 4.006120936417767, - "lycanroc-midnight": 2.737979926065894, - "mudsdale": 1.3545146679410047, - "araquanid": 3.741325535292728, - "lurantis": 2.1442126770159238, - "shiinotic": 4.392105347494016, - "salazzle": 5.420812658256155, - "bewear": 2.028081735320865, - "tsareena": 3.157832265992632, - "comfey": 3.8750077162112495, - "oranguru": 2.717299470543791, - "passimian": 2.0512420480184033, - "palossand": 1.4549679142231677, - "pyukumuku": 46.76869895298566, - "togedemaru": 3.7737535315285804, - "mimikyu-disguised": 4.834352722096774, - "greedent": 2.318858186015971, - "orbeetle": 2.2546062384788597, - "thievul": 2.052689132658437, - "eldegoss": 3.253642358353438, - "dubwool": 3.135418391788727, - "drednaw": 1.3924834632327578, - "boltund": 5.290391456093621, - "carkol": 3.6231665617769986, - "coalossal": 2.5088712424843886, - "sandaconda": 2.400135536147773, - "cramorant": 8.590660938869444, - "barraskewda": 4.675019340361626, - "toxtricity-amped": 4.2661734784272385, - "centiskorch": 4.585283208981792, - "grapploct": 1.185017546561813, - "polteageist": 2.66856459861017, - "hatterene": 2.5169427596362564, - "grimmsnarl": 3.7427829508456583, - "obstagoon": 3.5607769413947947, - "perrserker": 3.3245984640959607, - "alcremie": 1.4025359139760223, - "falinks": 2.5861576514317814, - "pincurchin": 2.879969155615231, - "frosmoth": 5.312022243523475, - "indeedee-male": 3.331648497057155, - "morpeko": 3.1007715273856147, - "copperajah": 2.303389441354137, - "duraludon": 1.5490379284657045, - "drakloak": 4.71371442006776, - "boldore": 3.1326008882610017 + "ivysaur": 2.705209664950004, + "charmeleon": 5.663306568099014, + "wartortle": 2.1253334359208784, + "butterfree": 9.088463431676631, + "raichu": 5.261392576631972, + "raichu-alola": 3.9942871126480473, + "sandslash": 1.8712931472363403, + "sandslash-alola": 2.576764595964722, + "nidoqueen": 2.695942497041587, + "nidoking": 2.15329368927814, + "clefairy": 8.817114756669813, + "clefable": 1.8975478746094765, + "jigglypuff": 26.89078355942588, + "wigglytuff": 1.8935845992542688, + "gloom": 5.708184321664047, + "vileplume": 2.4131031708799746, + "dugtrio": 3.3914077401428564, + "dugtrio-alola": 3.9592846360882645, + "persian": 5.12315462304179, + "persian-alola": 4.342186562707795, + "golduck": 2.7351976236778457, + "poliwrath": 1.66403331785623, + "kadabra": 4.201213120917127, + "machoke": 3.5018222786062174, + "tentacruel": 2.447272992045346, + "slowbro": 1.6782084756525402, + "magneton": 3.817221652683756, + "haunter": 4.003376530467232, + "kingler": 2.0944330840144127, + "exeggutor": 1.7044675874571276, + "marowak": 2.596715548415898, + "marowak-alola": 2.9044446693503287, + "hitmonlee": 2.3245982410460635, + "hitmonchan": 2.1282975225361667, + "lickitung": 1.6798519614179281, + "weezing": 1.6666100107280308, + "weezing-galar": 2.65818819358096, + "rhydon": 2.137642731515508, + "chansey": 35.727180719838444, + "tangela": 4.2106794450317295, + "kangaskhan": 2.1052635062166667, + "seadra": 3.1512723793049284, + "seaking": 2.6116670800854855, + "starmie": 1.3664237022850545, + "mr-mime": 6.969551484459472, + "mr-mime-galar": 4.597102205540038, + "scyther": 6.0836052994369965, + "jynx": 6.559474480372623, + "electabuzz": 2.863785982125515, + "magmar": 2.6983983258310884, + "tauros": 2.0781589467898955, + "ditto": 3.728823754071273, + "vaporeon": 2.8632582073496895, + "jolteon": 2.3370984389773612, + "flareon": 3.9267489449128763, + "porygon": 2.933488744339776, + "dragonair": 1.9125960370038215, + "noctowl": 10.162364860555297, + "lanturn": 1.8521946977221517, + "togetic": 8.292516567735666, + "xatu": 5.111808124033055, + "bellossom": 1.9256352790056683, + "azumarill": 2.3637739098281645, + "sudowoodo": 2.5987228090718206, + "politoed": 2.38636314950769, + "quagsire": 2.972702924571987, + "slowking": 2.5199302131233488, + "dunsparce": 3.419705996016785, + "qwilfish": 3.6315763196941844, + "sneasel": 3.4178175462836795, + "piloswine": 1.5361350072758961, + "octillery": 1.9397723345193516, + "mantine": 3.6010864292806226, + "skarmory": 1.9345594877698429, + "hitmontop": 2.4015131642888963, + "miltank": 4.011930781559005, + "grovyle": 6.6929523926739005, + "sceptile": 1.2890454768984538, + "combusken": 3.3983554279944013, + "blaziken": 1.9089407725250611, + "marshtomp": 2.010151022421743, + "swampert": 0.9119224082883737, + "linoone": 6.112887868737091, + "linoone-galar": 6.26499540526978, + "pelipper": 8.607050098741196, + "ninjask": 15.843286085838118, + "exploud": 1.6109554661812417, + "lairon": 2.965741267072503, + "manectric": 2.08145815890074, + "roselia": 3.5741003608686164, + "sharpedo": 5.488123126528905, + "wailmer": 5.729669055393797, + "torkoal": 2.3698545358861165, + "flygon": 1.901253234601866, + "altaria": 2.1850585136396066, + "whiscash": 1.3904585969150447, + "crawdaunt": 1.6169167703750675, + "claydol": 2.6742394229396482, + "cradily": 2.052139742587711, + "armaldo": 2.495496572033602, + "dusclops": 3.4796980113599076, + "absol": 2.142948159454444, + "glalie": 5.804404652195416, + "sealeo": 3.6560325530156437, + "relicanth": 1.930041975120187, + "metang": 3.2349467229534623, + "luxray": 4.358712206174468, + "vespiquen": 5.857381139948609, + "cherrim": 4.8401324077025, + "gastrodon": 2.053746498062741, + "drifblim": 5.795491528005265, + "lopunny": 4.32630695273824, + "skuntank": 1.7651299066463013, + "bronzong": 2.7235716482492256, + "munchlax": 3.083053527883467, + "drapion": 2.6644613603429224, + "abomasnow": 4.275101065795708, + "froslass": 3.9297778600262396, + "rotom": 3.5304988716095247, + "stoutland": 2.9389895177118577, + "liepard": 8.022817322565544, + "musharna": 1.3895675469866364, + "unfezant": 9.224596184029824, + "boldore": 3.1326008882610017, + "swoobat": 7.332461367439187, + "audino": 2.4689122131653685, + "gurdurr": 1.777832600643149, + "palpitoad": 2.7660123424160536, + "seismitoad": 6.04694675213009, + "scolipede": 4.356715977437518, + "whimsicott": 2.8028300456033053, + "lilligant": 2.408887050133462, + "basculin-red-striped": 2.7742568100349994, + "basculin-blue-striped": 3.152937057039714, + "krookodile": 2.6282358321687784, + "maractus": 1.73467882340067, + "crustle": 2.5857239932939837, + "sigilyph": 2.840498433953856, + "cofagrigus": 2.289207163956364, + "garbodor": 2.2339276256974996, + "cinccino": 5.382300830206842, + "vanillish": 2.79105046052877, + "emolga": 4.120249224687697, + "escavalier": 1.8325443663759375, + "amoonguss": 2.3136484242586923, + "jellicent": 1.5375548599037518, + "galvantula": 2.030658580619864, + "klang": 2.6159262460089416, + "klinklang": 3.6831529805094894, + "beheeyem": 1.77578642893297, + "lampent": 3.932252326741096, + "fraxure": 1.6407198575567017, + "beartic": 2.033406705312401, + "cryogonal": 2.4321365248539437, + "accelgor": 4.182488071592642, + "stunfisk": 1.1422247823112714, + "stunfisk-galar": 2.252067544070723, + "mienshao": 2.8430075214899, + "druddigon": 1.9052942089995262, + "golurk": 1.5440740056401796, + "bisharp": 3.5291773429154416, + "bouffalant": 1.428250731840756, + "heatmor": 2.6695674786334176, + "durant": 2.741206243069206, + "diggersby": 3.3715347352951137, + "talonflame": 6.358912136043711, + "pangoro": 1.7870121258502953, + "doublade": 2.147286433327883, + "malamar": 2.715854482761794, + "barbaracle": 1.5770985400226973, + "heliolisk": 4.251086287257431, + "tyrantrum": 1.6565671066623457, + "aurorus": 3.3067067038288194, + "hawlucha": 3.604038345557148, + "dedenne": 3.030662831995016, + "klefki": 3.0873735096712096, + "trevenant": 2.946133239276066, + "gourgeist-average": 5.182296174539749, + "charjabug": 5.422169524034517, + "vikavolt": 2.3347344248488597, + "ribombee": 6.136603659594364, + "lycanroc-midday": 4.016715347245649, + "lycanroc-midnight": 2.743443855614971, + "mudsdale": 1.352658361765593, + "araquanid": 3.7460939421833874, + "lurantis": 2.1375112851483986, + "shiinotic": 4.383597666240834, + "salazzle": 5.441047184523835, + "bewear": 2.0321666124593127, + "tsareena": 3.1564748309996506, + "comfey": 3.861295515353243, + "oranguru": 2.7146123365500303, + "passimian": 2.0502521656643315, + "palossand": 1.447763167167751, + "pyukumuku": 46.77693673447099, + "togedemaru": 3.7808901395353747, + "mimikyu-disguised": 4.842478933770678, + "greedent": 2.322171648226144, + "orbeetle": 2.2500127962522543, + "thievul": 2.0557153318245938, + "eldegoss": 3.2386458476796474, + "dubwool": 3.137821245458115, + "drednaw": 1.3931925644804877, + "boltund": 5.2931605974114095, + "carkol": 3.635650396857871, + "coalossal": 2.509552839452291, + "sandaconda": 2.3924205088809054, + "cramorant": 8.593755987599796, + "barraskewda": 4.675124570497244, + "toxtricity-amped": 4.266978464097353, + "centiskorch": 4.591516752839507, + "grapploct": 1.1801362922257361, + "polteageist": 2.662110911785434, + "hatterene": 2.5140171703317415, + "grimmsnarl": 3.7390679306669194, + "obstagoon": 3.56817595843464, + "perrserker": 3.3252563393789383, + "alcremie": 1.4006142971098874, + "falinks": 2.5814458480515565, + "pincurchin": 2.8703292528533617, + "frosmoth": 5.318625858855614, + "indeedee-male": 3.3294311786274173, + "morpeko": 3.1046455788884186, + "copperajah": 2.298628480252355, + "duraludon": 1.5483395461612548, + "drakloak": 4.7114553870427285 }, "swoobat": { - "ivysaur": 3.916614781559921, - "charmeleon": 3.5471176206874735, - "wartortle": 2.4676793533605483, - "butterfree": 4.901838770406988, - "raichu": 4.24524106152318, - "raichu-alola": 2.4869925713959393, - "sandslash": 2.1982206751126774, - "sandslash-alola": 1.43625450005373, - "nidoqueen": 3.3944561495235486, - "nidoking": 2.1843683635359, - "clefairy": 8.621223265027206, - "clefable": 1.7016811948201132, - "jigglypuff": 24.289187497519308, - "wigglytuff": 1.8176600541089316, - "gloom": 6.658290232616684, - "vileplume": 3.735361014725191, - "dugtrio": 3.1593885236002537, - "dugtrio-alola": 2.7188227125477127, - "persian": 3.824727714374898, - "persian-alola": 2.958789118001924, - "golduck": 2.790859843740391, - "poliwrath": 2.4463749826140333, - "kadabra": 3.3015188033873546, - "machoke": 4.552411310707894, - "tentacruel": 2.516922358056949, - "slowbro": 1.7949732334984048, - "magneton": 2.2277726507190962, - "haunter": 5.180054732488547, - "kingler": 2.798355711214178, - "exeggutor": 2.499291978916451, - "marowak": 3.016035943361965, - "marowak-alola": 1.8332476165192135, - "hitmonlee": 2.8287169947927326, - "hitmonchan": 2.2338357661933435, - "lickitung": 1.5429876395505624, - "weezing": 2.0324033147561176, - "weezing-galar": 3.5316696145849322, - "rhydon": 2.3710550725479944, - "chansey": 18.00211538940162, - "tangela": 7.28884373163229, - "kangaskhan": 1.6583065896033555, - "seadra": 4.174490052944012, - "seaking": 2.307288079135253, - "starmie": 1.192529301097311, - "mr-mime": 6.366278448328934, - "mr-mime-galar": 2.7805542466366218, - "scyther": 2.9094101128795753, - "jynx": 3.1773478970855624, - "electabuzz": 1.792882274680753, - "magmar": 1.4621526459261172, - "tauros": 2.040941783823781, - "ditto": 6.0847369059256735, - "vaporeon": 2.7337602783794734, - "jolteon": 1.4679921722789704, - "flareon": 1.876817624054409, - "porygon": 2.2091695120285824, - "dragonair": 1.5101086704218876, - "noctowl": 4.882989573974603, - "lanturn": 1.5802262303237637, - "togetic": 4.771780772558782, - "xatu": 3.6331448944603206, - "bellossom": 2.718636503529402, - "azumarill": 2.0627209094141596, - "sudowoodo": 2.5450554097218365, - "politoed": 2.4424224431868957, - "quagsire": 4.713906892382606, - "slowking": 2.0893632528179364, - "dunsparce": 2.700804553046824, - "qwilfish": 4.476494204013469, - "sneasel": 1.6856896610596972, - "piloswine": 1.314856070854705, - "octillery": 2.149155484967525, - "mantine": 2.043052666324586, - "skarmory": 1.5612744774958196, - "hitmontop": 3.332890629518115, - "miltank": 3.4230635037101527, - "grovyle": 9.693872913054681, - "sceptile": 1.6461499427265787, - "combusken": 4.46921783868094, - "blaziken": 2.082156054808797, - "marshtomp": 2.2952692348250885, - "swampert": 1.106931237445675, - "linoone": 4.401446179312831, - "linoone-galar": 3.3331414350630295, - "pelipper": 5.766500324090959, - "ninjask": 8.557689111857304, - "exploud": 1.3318303654607437, - "lairon": 1.6907985046453395, - "manectric": 1.5712689202234877, - "roselia": 4.673554779821778, - "sharpedo": 4.104867470058231, - "wailmer": 6.03553014156141, - "torkoal": 1.845754881573854, - "flygon": 2.2445155772643988, - "altaria": 1.4195781888740702, - "whiscash": 1.8933945532565024, - "crawdaunt": 1.7497930137085524, - "claydol": 2.921998257481519, - "cradily": 2.0056873800372106, - "armaldo": 1.7426110122431666, - "dusclops": 2.6679767432471326, - "absol": 1.5529217570275482, - "glalie": 3.2233520243670712, - "sealeo": 2.6699864402452764, - "relicanth": 1.7079505031693198, - "metang": 2.1852872100984357, - "luxray": 3.067961941419309, - "vespiquen": 3.187450629008841, - "cherrim": 6.99892545601398, - "gastrodon": 1.8447407993668237, - "drifblim": 3.5868657438664178, - "lopunny": 3.434439848601315, - "skuntank": 1.1968353723115837, - "bronzong": 2.5352046352821116, - "munchlax": 1.7867158886701209, - "drapion": 2.075275189264471, - "abomasnow": 3.322703177694306, - "froslass": 2.1891608083109295, - "rotom": 2.780501356218865, - "stoutland": 2.1674285079177595, - "liepard": 5.643624435891665, - "musharna": 1.5313082050729863, - "unfezant": 6.065085598541025, - "boldore": 3.3833128570079127, - "audino": 1.99827460582698, - "gurdurr": 3.5648997690372624, - "palpitoad": 3.808126593295184, - "seismitoad": 5.7640344305371, - "scolipede": 3.718809626600991, - "whimsicott": 3.853175939838386, - "lilligant": 3.7394533802332783, - "basculin-red-striped": 2.586474081827836, - "basculin-blue-striped": 3.1997157592452714, - "krookodile": 2.468453911321887, - "maractus": 2.68834070334424, - "crustle": 1.958087784907589, - "sigilyph": 2.1733901476027246, - "cofagrigus": 2.287597490643418, - "garbodor": 2.348075158449782, - "cinccino": 3.844424463687173, - "vanillish": 1.6276795700497013, - "emolga": 2.3190489924585505, - "escavalier": 1.7674551731981665, - "amoonguss": 3.0789261044222007, - "jellicent": 1.197477219017597, - "galvantula": 1.2320761886762215, - "klang": 1.8626632340122637, - "klinklang": 2.5900851588604397, - "beheeyem": 1.4806596361644022, - "lampent": 2.2997892147259154, - "fraxure": 1.4700167594423692, - "beartic": 1.3719922594871294, - "cryogonal": 1.1788095890275954, - "accelgor": 3.2363684714043144, - "stunfisk": 1.1582292567131804, - "stunfisk-galar": 1.8735111641689615, - "mienshao": 4.035890558667452, - "druddigon": 1.6498594227748478, - "golurk": 1.7440728145281472, - "bisharp": 1.7699447138437354, - "bouffalant": 1.17363016488218, - "heatmor": 1.7967115165271461, - "durant": 2.7979650985552755, - "diggersby": 3.200370302339093, - "talonflame": 2.7051645918255742, - "pangoro": 2.018614719978548, - "doublade": 2.0549994080092726, - "malamar": 2.324290908229894, - "barbaracle": 1.3053227149885642, - "heliolisk": 2.8537571368119483, - "tyrantrum": 1.542518793968911, - "aurorus": 1.7973840444639513, - "hawlucha": 4.2671043075812, - "dedenne": 2.376560040922615, - "klefki": 2.3100865626013785, - "trevenant": 3.9754095666953035, - "gourgeist-average": 5.986467069797582, - "charjabug": 3.6643313830297375, - "vikavolt": 1.6929535429822118, - "ribombee": 5.232924184038028, - "lycanroc-midday": 2.6267314787113376, - "lycanroc-midnight": 1.941751160056642, - "mudsdale": 1.5764176965403456, - "araquanid": 2.5510640205340716, - "lurantis": 2.854500461040508, - "shiinotic": 4.843498228525886, - "salazzle": 3.8743487504303404, - "bewear": 2.094647487294277, - "tsareena": 3.790362893830335, - "comfey": 4.227829345098959, - "oranguru": 2.611243900746712, - "passimian": 3.0460831385892853, - "palossand": 1.919798682568073, - "pyukumuku": 41.532757847482685, - "togedemaru": 1.5526548386217518, - "mimikyu-disguised": 3.0883553924727223, - "greedent": 2.059850799376903, - "orbeetle": 2.1431183886898353, - "thievul": 1.3565664157032176, - "eldegoss": 4.582989544674812, - "dubwool": 2.9461551744960968, - "drednaw": 1.0533962574500242, - "boltund": 3.5354992120242392, - "carkol": 1.975586608337613, - "coalossal": 1.7367571537479554, - "sandaconda": 3.3061512673565367, - "cramorant": 4.236878716409286, - "barraskewda": 4.008513350528729, - "toxtricity-amped": 2.83381473379801, - "centiskorch": 2.3230384297376467, - "grapploct": 2.2612932964430845, - "polteageist": 2.3838043315565356, - "hatterene": 2.373602367204199, - "grimmsnarl": 3.085325694677816, - "obstagoon": 2.025697692275655, - "perrserker": 2.260992274249364, - "alcremie": 1.25001485651664, - "falinks": 4.362606893284486, - "pincurchin": 2.5532376292097476, - "frosmoth": 2.7047855120473057, - "indeedee-male": 2.6490025577616327, - "morpeko": 1.7116703918661587, - "copperajah": 1.9014516190810784, - "duraludon": 1.190791548705318, - "drakloak": 3.6306551779161786, - "swoobat": 5.202013185011804 + "ivysaur": 3.922078555549975, + "charmeleon": 3.541369546492026, + "wartortle": 2.4631480367331964, + "butterfree": 4.896317832504974, + "raichu": 4.230960379202832, + "raichu-alola": 2.47479535034231, + "sandslash": 2.1968662578457554, + "sandslash-alola": 1.4302780705018285, + "nidoqueen": 3.3941605647048014, + "nidoking": 2.1831920435905987, + "clefairy": 8.616482937707222, + "clefable": 1.6972576522010039, + "jigglypuff": 24.248498396799157, + "wigglytuff": 1.8153475596981763, + "gloom": 6.657897972129112, + "vileplume": 3.7407667718365913, + "dugtrio": 3.1590038258797346, + "dugtrio-alola": 2.712461274472168, + "persian": 3.815439826031893, + "persian-alola": 2.942035343943602, + "golduck": 2.7855163605034576, + "poliwrath": 2.4499733570306876, + "kadabra": 3.2932534617938893, + "machoke": 4.5507558000400605, + "tentacruel": 2.514098141150413, + "slowbro": 1.7938508654127592, + "magneton": 2.2162713520895636, + "haunter": 5.17477194055115, + "kingler": 2.8019352020948003, + "exeggutor": 2.501226728278168, + "marowak": 3.0137188569975395, + "marowak-alola": 1.8293263672460944, + "hitmonlee": 2.834572807409426, + "hitmonchan": 2.2308174279404156, + "lickitung": 1.5372367542686338, + "weezing": 2.0303862336522163, + "weezing-galar": 3.5325291259252545, + "rhydon": 2.367803859815595, + "chansey": 17.915294022382014, + "tangela": 7.300762163285641, + "kangaskhan": 1.654594172618913, + "seadra": 4.168859251338518, + "seaking": 2.305522916099627, + "starmie": 1.188352299011974, + "mr-mime": 6.361501283307467, + "mr-mime-galar": 2.7717847955426995, + "scyther": 2.903633588458443, + "jynx": 3.1595188487951162, + "electabuzz": 1.783382213163663, + "magmar": 1.4591613787401867, + "tauros": 2.040479666767236, + "ditto": 6.043193803884355, + "vaporeon": 2.72758660048435, + "jolteon": 1.4593936859185865, + "flareon": 1.8701763155584223, + "porygon": 2.199440097090015, + "dragonair": 1.5048468820321381, + "noctowl": 4.870275779430479, + "lanturn": 1.5746775104816941, + "togetic": 4.764528593746569, + "xatu": 3.6280807697651363, + "bellossom": 2.7198927976558274, + "azumarill": 2.0615941512128684, + "sudowoodo": 2.541609545323907, + "politoed": 2.441231147467948, + "quagsire": 4.71374018045012, + "slowking": 2.082684760829255, + "dunsparce": 2.691019167885666, + "qwilfish": 4.47581294747541, + "sneasel": 1.6735641862459552, + "piloswine": 1.3113234580955813, + "octillery": 2.1452444915705176, + "mantine": 2.0386597961337714, + "skarmory": 1.5567533270385892, + "hitmontop": 3.3383257380324416, + "miltank": 3.417243600352176, + "grovyle": 9.708004361806742, + "sceptile": 1.6468127688789345, + "combusken": 4.481094443108938, + "blaziken": 2.0860090739761175, + "marshtomp": 2.2918627432419783, + "swampert": 1.106235830145916, + "linoone": 4.38675508817871, + "linoone-galar": 3.3122885770436286, + "pelipper": 5.7568163347275885, + "ninjask": 8.551641631814194, + "exploud": 1.328740264329539, + "lairon": 1.6840464908939146, + "manectric": 1.5665382893937712, + "roselia": 4.67920735446748, + "sharpedo": 4.084843964836939, + "wailmer": 6.025951968093658, + "torkoal": 1.844590872755136, + "flygon": 2.241689919051659, + "altaria": 1.416915483853045, + "whiscash": 1.8914923939850539, + "crawdaunt": 1.7417566206683892, + "claydol": 2.9136244170241055, + "cradily": 2.0008731491142457, + "armaldo": 1.7400645254262344, + "dusclops": 2.657323930873826, + "absol": 1.5449793610633638, + "glalie": 3.207763988832853, + "sealeo": 2.660733808000489, + "relicanth": 1.701824018388875, + "metang": 2.1769769430746866, + "luxray": 3.053681374032035, + "vespiquen": 3.186548022896162, + "cherrim": 7.001073230231035, + "gastrodon": 1.8396575427077853, + "drifblim": 3.5763903447017937, + "lopunny": 3.4302398595428416, + "skuntank": 1.1904864689449732, + "bronzong": 2.5303319868926737, + "munchlax": 1.7801678856856191, + "drapion": 2.066614360441526, + "abomasnow": 3.3151370382955268, + "froslass": 2.1783498221063446, + "rotom": 2.7661588755300297, + "stoutland": 2.1619459963476793, + "liepard": 5.615421808752224, + "musharna": 1.5307686940412646, + "unfezant": 6.0590127990018985, + "boldore": 3.379438723474318, + "swoobat": 5.202013185011804, + "audino": 1.9946572006647325, + "gurdurr": 3.582908431221891, + "palpitoad": 3.808500343605804, + "seismitoad": 5.750382922402418, + "scolipede": 3.716002805826138, + "whimsicott": 3.8542789189755116, + "lilligant": 3.741416251305479, + "basculin-red-striped": 2.5816205661662304, + "basculin-blue-striped": 3.191211687860639, + "krookodile": 2.4592249497783554, + "maractus": 2.689463105563929, + "crustle": 1.9550690433894529, + "sigilyph": 2.169680287440223, + "cofagrigus": 2.2816302397671038, + "garbodor": 2.3485719731827475, + "cinccino": 3.8307837144826205, + "vanillish": 1.6200015138987829, + "emolga": 2.309432606481038, + "escavalier": 1.766535317980678, + "amoonguss": 3.0812649356615425, + "jellicent": 1.1947658701083128, + "galvantula": 1.2267098784588872, + "klang": 1.8529570558004615, + "klinklang": 2.5821887987811474, + "beheeyem": 1.474823702859756, + "lampent": 2.298050708074226, + "fraxure": 1.46750021016729, + "beartic": 1.3678537513541922, + "cryogonal": 1.1729988432634975, + "accelgor": 3.2314490562628437, + "stunfisk": 1.1555020224530421, + "stunfisk-galar": 1.8698550128616618, + "mienshao": 4.036925526152975, + "druddigon": 1.6470119835209007, + "golurk": 1.7423718999681415, + "bisharp": 1.7609976242888274, + "bouffalant": 1.1716898864944436, + "heatmor": 1.795484675118563, + "durant": 2.790512778122376, + "diggersby": 3.1998249314888114, + "talonflame": 2.701349591638393, + "pangoro": 2.0146293853926047, + "doublade": 2.053346198082164, + "malamar": 2.312575148177665, + "barbaracle": 1.3011959177671915, + "heliolisk": 2.8419410486182386, + "tyrantrum": 1.5393495918468538, + "aurorus": 1.785984732168055, + "hawlucha": 4.268054608790983, + "dedenne": 2.3672751407240424, + "klefki": 2.304009447016766, + "trevenant": 3.9845877146119886, + "gourgeist-average": 5.9748123028603555, + "charjabug": 3.6544939434537103, + "vikavolt": 1.6901223461647188, + "ribombee": 5.227678619708437, + "lycanroc-midday": 2.6137525290080594, + "lycanroc-midnight": 1.9336992799891817, + "mudsdale": 1.5763631817798305, + "araquanid": 2.5484834244189036, + "lurantis": 2.8538334593468493, + "shiinotic": 4.837538554551255, + "salazzle": 3.872371922402657, + "bewear": 2.0926789973527784, + "tsareena": 3.792758138726128, + "comfey": 4.225786682415984, + "oranguru": 2.609623035840551, + "passimian": 3.050003338260711, + "palossand": 1.9172926808938202, + "pyukumuku": 41.494137782197996, + "togedemaru": 1.545080408087325, + "mimikyu-disguised": 3.0757640680466416, + "greedent": 2.0572873284702506, + "orbeetle": 2.142920372543342, + "thievul": 1.3495021509315812, + "eldegoss": 4.5846831130224075, + "dubwool": 2.9448966692413947, + "drednaw": 1.0500406509147675, + "boltund": 3.5158141153306692, + "carkol": 1.9699167522455738, + "coalossal": 1.731010966867002, + "sandaconda": 3.3072138156617585, + "cramorant": 4.219718020530531, + "barraskewda": 3.9966942759358526, + "toxtricity-amped": 2.8240667375996047, + "centiskorch": 2.322416359872374, + "grapploct": 2.2686971976394537, + "polteageist": 2.3812600036324154, + "hatterene": 2.3708615178240384, + "grimmsnarl": 3.070951685555263, + "obstagoon": 2.0140771025236752, + "perrserker": 2.2501911634703617, + "alcremie": 1.2484410096640295, + "falinks": 4.3716736567164105, + "pincurchin": 2.5416236655936357, + "frosmoth": 2.699430152940252, + "indeedee-male": 2.6401535027074807, + "morpeko": 1.6987664196255374, + "copperajah": 1.8974096236159568, + "duraludon": 1.1865219560000209, + "drakloak": 3.6171235314466332 }, "audino": { - "ivysaur": 3.224618760397413, - "charmeleon": 3.723081482423816, - "wartortle": 2.573068692169768, - "butterfree": 4.491506789952995, - "raichu": 4.498290273094505, - "raichu-alola": 3.1919403850973835, - "sandslash": 2.23284171571065, - "sandslash-alola": 2.985159199716766, - "nidoqueen": 2.7822136210591264, - "nidoking": 1.77481083014652, - "clefairy": 8.56792380941166, - "clefable": 1.9750954540877168, - "jigglypuff": 25.269802862571723, - "wigglytuff": 1.9300029007927744, - "gloom": 5.872151184423081, - "vileplume": 3.075450558495239, - "dugtrio": 3.446014511307657, - "dugtrio-alola": 3.528065905303893, - "persian": 4.076851792904934, - "persian-alola": 4.115589833564547, - "golduck": 2.9491687127398523, - "poliwrath": 1.7638881490861684, - "kadabra": 3.530794126990058, - "machoke": 3.6426223498924797, - "tentacruel": 2.123070110497517, - "slowbro": 1.7712040993183398, - "magneton": 3.4602528967450104, - "haunter": 4.054747850545436, - "kingler": 2.494249216410539, - "exeggutor": 2.0454725628716766, - "marowak": 3.058361593051992, - "marowak-alola": 1.681408632242083, - "hitmonlee": 1.9626991444205792, - "hitmonchan": 1.9504223472058986, - "lickitung": 1.855434638298267, - "weezing": 1.6150448376833106, - "weezing-galar": 2.669292735802834, - "rhydon": 2.093638824667662, - "chansey": 19.675717300801402, - "tangela": 5.824313610383252, - "kangaskhan": 1.7750891343320634, - "seadra": 4.364721182752173, - "seaking": 2.3018294673338433, - "starmie": 1.4001395939539034, - "mr-mime": 6.117892860506251, - "mr-mime-galar": 3.7022948864824605, - "scyther": 2.81504647847857, - "jynx": 4.886401919770754, - "electabuzz": 2.3818647548264247, - "magmar": 1.5668430917286842, - "tauros": 1.9366010105825189, - "ditto": 3.2644249799789566, - "vaporeon": 2.9085837629539357, - "jolteon": 1.822022001171502, - "flareon": 2.261102364151329, - "porygon": 2.685606968000053, - "dragonair": 1.7990755571995285, - "noctowl": 5.202021825963384, - "lanturn": 1.795760942041011, - "togetic": 4.994211433375249, - "xatu": 3.6921966074609895, - "bellossom": 2.447603119555426, - "azumarill": 2.126441701805181, - "sudowoodo": 2.1754249385819895, - "politoed": 2.3885970169620947, - "quagsire": 4.391692027707325, - "slowking": 2.3056661173729562, - "dunsparce": 3.2893348180575663, - "qwilfish": 3.4372719664334577, - "sneasel": 2.2637190708368515, - "piloswine": 1.5256858736339436, - "octillery": 2.2680624345527045, - "mantine": 2.1697017402076573, - "skarmory": 2.381050184154574, - "hitmontop": 2.43076593051907, - "miltank": 3.603539285765798, - "grovyle": 7.607511412529675, - "sceptile": 1.4312744705742384, - "combusken": 2.9832534968653657, - "blaziken": 1.490479409815888, - "marshtomp": 2.396400902649702, - "swampert": 1.2147299620147491, - "linoone": 5.209907780660404, - "linoone-galar": 4.548566710719462, - "pelipper": 6.067645905807593, - "ninjask": 7.7021892285147855, - "exploud": 1.5084661857264758, - "lairon": 2.3064278889031096, - "manectric": 1.7000781122815702, - "roselia": 3.8680506843504983, - "sharpedo": 4.86679715456881, - "wailmer": 6.315782487689947, - "torkoal": 1.9628396771337209, - "flygon": 2.303764686859128, - "altaria": 1.5391427554714974, - "whiscash": 2.012876758057522, - "crawdaunt": 2.0495232710985705, - "claydol": 3.1660580708526664, - "cradily": 1.9993212708477652, - "armaldo": 1.665021541344745, - "dusclops": 3.249499947017696, - "absol": 1.9116252333994805, - "glalie": 4.322365578099623, - "sealeo": 3.0749470641487058, - "relicanth": 1.6930353777951976, - "metang": 3.1544533449558747, - "luxray": 3.6665346269874837, - "vespiquen": 2.760537767837574, - "cherrim": 5.979022758253162, - "gastrodon": 2.0354567049391483, - "drifblim": 3.6414279633310973, - "lopunny": 3.3463211944017663, - "skuntank": 1.4086027945867006, - "bronzong": 3.324354060387983, - "munchlax": 2.013555284731022, - "drapion": 2.420308234198483, - "abomasnow": 4.084001478883568, - "froslass": 3.202386886442583, - "rotom": 3.392465946444174, - "stoutland": 2.319210388673913, - "liepard": 6.792489564596282, - "musharna": 1.467299394235908, - "unfezant": 6.279838597404723, - "boldore": 2.844893761321705, - "swoobat": 5.271941973576123, - "gurdurr": 2.0785464631407775, - "palpitoad": 3.6668285885608465, - "seismitoad": 6.136240932390384, - "scolipede": 3.431930394487863, - "whimsicott": 3.3315830638310535, - "lilligant": 3.179073012887984, - "basculin-red-striped": 2.7588279571939824, - "basculin-blue-striped": 3.5711847116858966, - "krookodile": 2.7854553309964984, - "maractus": 2.3083536826270405, - "crustle": 1.8176781439926166, - "sigilyph": 2.2407897227296036, - "cofagrigus": 2.520392283958629, - "garbodor": 1.7194687159632034, - "cinccino": 4.408378193894373, - "vanillish": 2.231204137549221, - "emolga": 2.927183564436948, - "escavalier": 2.591034492198421, - "amoonguss": 2.602373902968952, - "jellicent": 1.220248521437513, - "galvantula": 1.6672779933696575, - "klang": 2.959691199443339, - "klinklang": 3.672075343325502, - "beheeyem": 1.7044577221774015, - "lampent": 1.881305229414131, - "fraxure": 1.5610782359754722, - "beartic": 1.7785703977681773, - "cryogonal": 1.6362221438420907, - "accelgor": 3.0676767977606234, - "stunfisk": 1.224420957625037, - "stunfisk-galar": 2.487754894078958, - "mienshao": 3.1187284708304626, - "druddigon": 1.7668438253765197, - "golurk": 1.6213507295401457, - "bisharp": 2.660680824903789, - "bouffalant": 1.1956274518067502, - "heatmor": 1.8294363390523567, - "durant": 4.986720897883579, - "diggersby": 3.107884512223769, - "talonflame": 2.8288084275986956, - "pangoro": 1.983609010961145, - "doublade": 2.8242465316798273, - "malamar": 2.7910266140673174, - "barbaracle": 1.2794947163487622, - "heliolisk": 3.4963734935690893, - "tyrantrum": 1.5441591025018544, - "aurorus": 2.1915527421494643, - "hawlucha": 3.2829442916879046, - "dedenne": 2.7844515134605095, - "klefki": 3.2725503200252772, - "trevenant": 2.9742599883572023, - "gourgeist-average": 6.27679354491776, - "charjabug": 4.287581884723864, - "vikavolt": 1.982017671492162, - "ribombee": 4.782253639569676, - "lycanroc-midday": 2.857363834654538, - "lycanroc-midnight": 1.9516522396201756, - "mudsdale": 1.4436042001775293, - "araquanid": 2.1570647505254485, - "lurantis": 2.503661444757526, - "shiinotic": 4.478446208589932, - "salazzle": 3.0480036410173588, - "bewear": 1.7644244264822215, - "tsareena": 3.2250486053464673, - "comfey": 4.190978000017414, - "oranguru": 2.505139696093009, - "passimian": 2.21674473889264, - "palossand": 1.9220900395996217, - "pyukumuku": 39.88080820182857, - "togedemaru": 2.302505915960059, - "mimikyu-disguised": 3.690873924155465, - "greedent": 2.099114926318327, - "orbeetle": 1.884465478011597, - "thievul": 1.711813497106526, - "eldegoss": 3.922035039752412, - "dubwool": 2.996705367167261, - "drednaw": 1.1168770919968476, - "boltund": 4.5207515814533625, - "carkol": 2.0793835990194243, - "coalossal": 1.7087755032574488, - "sandaconda": 3.179833098574842, - "cramorant": 4.969385158270513, - "barraskewda": 4.521760373488118, - "toxtricity-amped": 2.589653914930783, - "centiskorch": 1.9128689855058232, - "grapploct": 1.5456813401857747, - "polteageist": 2.207835509562517, - "hatterene": 2.3902988529732294, - "grimmsnarl": 3.5168528939791512, - "obstagoon": 2.5178590200178483, - "perrserker": 3.657329020051979, - "alcremie": 1.3364333023261183, - "falinks": 3.0184545313329596, - "pincurchin": 2.858374042766733, - "frosmoth": 3.285257619720142, - "indeedee-male": 3.044004924152551, - "morpeko": 2.6524640318416495, - "copperajah": 2.410420931039982, - "duraludon": 1.4559709196318482, - "drakloak": 4.443863531173869, - "audino": 2.1888168596390143 + "ivysaur": 3.225838083900345, + "charmeleon": 3.721797024658617, + "wartortle": 2.5716696647297783, + "butterfree": 4.491074385265894, + "raichu": 4.4937004231178665, + "raichu-alola": 3.1893964589780266, + "sandslash": 2.2346686024189344, + "sandslash-alola": 2.9886389755433815, + "nidoqueen": 2.7844852983592876, + "nidoking": 1.7751298793967096, + "clefairy": 8.56974174645811, + "clefable": 1.975435913745721, + "jigglypuff": 25.269875739312646, + "wigglytuff": 1.929926413877997, + "gloom": 5.8747161365584315, + "vileplume": 3.0773477421793394, + "dugtrio": 3.445944747460838, + "dugtrio-alola": 3.5292726161547945, + "persian": 4.075249496256451, + "persian-alola": 4.116766532290343, + "golduck": 2.948093497289361, + "poliwrath": 1.762756002426869, + "kadabra": 3.5268881038458924, + "machoke": 3.642311899362052, + "tentacruel": 2.1211472383554355, + "slowbro": 1.7710135673025051, + "magneton": 3.4623269385760933, + "haunter": 4.055743790545051, + "kingler": 2.493531083020695, + "exeggutor": 2.046435799116419, + "marowak": 3.059920636669419, + "marowak-alola": 1.6803974480883639, + "hitmonlee": 1.9589852558675556, + "hitmonchan": 1.9499605506613156, + "lickitung": 1.8552898698236717, + "weezing": 1.6158262115736917, + "weezing-galar": 2.6711992552104036, + "rhydon": 2.092119291659251, + "chansey": 19.617309400086164, + "tangela": 5.834060287899099, + "kangaskhan": 1.7749307196470145, + "seadra": 4.3655364191805734, + "seaking": 2.3010711383449713, + "starmie": 1.3997622478286074, + "mr-mime": 6.113946765703343, + "mr-mime-galar": 3.7018501233635797, + "scyther": 2.816714051970898, + "jynx": 4.887328657591292, + "electabuzz": 2.3807356775693584, + "magmar": 1.5657274374993309, + "tauros": 1.936096610790369, + "ditto": 3.24572732486411, + "vaporeon": 2.906565092624886, + "jolteon": 1.8230118691616601, + "flareon": 2.2599459398300743, + "porygon": 2.6854878538036155, + "dragonair": 1.7991100387790864, + "noctowl": 5.198139748885552, + "lanturn": 1.7956319861330003, + "togetic": 4.995215101405388, + "xatu": 3.692237196708806, + "bellossom": 2.449211261353696, + "azumarill": 2.1281162420868345, + "sudowoodo": 2.172780434578861, + "politoed": 2.3874475139782794, + "quagsire": 4.388021288273814, + "slowking": 2.3040272954256, + "dunsparce": 3.2925523093723026, + "qwilfish": 3.437072304829047, + "sneasel": 2.264224774894309, + "piloswine": 1.5250767906554146, + "octillery": 2.2674272718244914, + "mantine": 2.1682001147165626, + "skarmory": 2.3846720413644347, + "hitmontop": 2.429778083451278, + "miltank": 3.6045779335349337, + "grovyle": 7.604156572377544, + "sceptile": 1.4318685631093593, + "combusken": 2.978928328668032, + "blaziken": 1.4891868709253857, + "marshtomp": 2.3961236057183344, + "swampert": 1.2147308390069171, + "linoone": 5.213658865659715, + "linoone-galar": 4.549147517204782, + "pelipper": 6.066798981983196, + "ninjask": 7.7054464594082415, + "exploud": 1.5070781820889945, + "lairon": 2.305430129524174, + "manectric": 1.7007722547594435, + "roselia": 3.867787915513206, + "sharpedo": 4.8667837767683295, + "wailmer": 6.314811478738486, + "torkoal": 1.963579754662925, + "flygon": 2.3039637197810703, + "altaria": 1.539051070385732, + "whiscash": 2.012350670027495, + "crawdaunt": 2.0504208000839874, + "claydol": 3.1651243804733995, + "cradily": 1.9977480738624853, + "armaldo": 1.6646390066767403, + "dusclops": 3.2538498352077534, + "absol": 1.912613808297916, + "glalie": 4.324796116908951, + "sealeo": 3.0737414694703284, + "relicanth": 1.691356124179848, + "metang": 3.1562896431985834, + "luxray": 3.6664382942457356, + "vespiquen": 2.760932401310197, + "cherrim": 5.98158028057393, + "gastrodon": 2.0345710602531017, + "drifblim": 3.636735816655115, + "lopunny": 3.3432103592558775, + "skuntank": 1.4096021792766296, + "bronzong": 3.326385290271258, + "munchlax": 2.0113516448479016, + "drapion": 2.422701960817368, + "abomasnow": 4.0883236408071655, + "froslass": 3.2059360886243313, + "rotom": 3.395470174755604, + "stoutland": 2.318220906039305, + "liepard": 6.796161960300196, + "musharna": 1.4670349723262848, + "unfezant": 6.284390425509063, + "boldore": 2.8422214521910916, + "swoobat": 5.271822323413958, + "audino": 2.1888168596390143, + "gurdurr": 2.0775591096730706, + "palpitoad": 3.666495550322411, + "seismitoad": 6.131978952580966, + "scolipede": 3.4351995460914466, + "whimsicott": 3.3350334248521016, + "lilligant": 3.1812911417100604, + "basculin-red-striped": 2.758602553623125, + "basculin-blue-striped": 3.571038129479077, + "krookodile": 2.7873173499330077, + "maractus": 2.310579200606735, + "crustle": 1.8164561832085186, + "sigilyph": 2.2407357372095884, + "cofagrigus": 2.523234480201689, + "garbodor": 1.7181701699461254, + "cinccino": 4.4076110171032905, + "vanillish": 2.231777403777953, + "emolga": 2.9284773418177035, + "escavalier": 2.5957318861654546, + "amoonguss": 2.603339955630079, + "jellicent": 1.2181851095580662, + "galvantula": 1.6687923773672395, + "klang": 2.9616465198542814, + "klinklang": 3.674373446651169, + "beheeyem": 1.7039134267940725, + "lampent": 1.8759502125416603, + "fraxure": 1.5616661587795133, + "beartic": 1.7784425224866554, + "cryogonal": 1.635282282833895, + "accelgor": 3.0681183965569874, + "stunfisk": 1.2243862300992983, + "stunfisk-galar": 2.489877235606619, + "mienshao": 3.117686857320823, + "druddigon": 1.7676153890862145, + "golurk": 1.6199893387278212, + "bisharp": 2.662792612009489, + "bouffalant": 1.1951857042122183, + "heatmor": 1.8281379626748957, + "durant": 4.998242410041433, + "diggersby": 3.1082453425410694, + "talonflame": 2.8282980956847723, + "pangoro": 1.9843858054599088, + "doublade": 2.82546999624421, + "malamar": 2.792213468250735, + "barbaracle": 1.2775435623018265, + "heliolisk": 3.4965145095991517, + "tyrantrum": 1.5429547586975714, + "aurorus": 2.188694257566776, + "hawlucha": 3.2822122303814316, + "dedenne": 2.7849481763795625, + "klefki": 3.275649056604708, + "trevenant": 2.971838984668029, + "gourgeist-average": 6.290655632782052, + "charjabug": 4.293477422384061, + "vikavolt": 1.9847053685328706, + "ribombee": 4.785561550450193, + "lycanroc-midday": 2.8545280723024185, + "lycanroc-midnight": 1.948449019524308, + "mudsdale": 1.4424125088599142, + "araquanid": 2.156790248746755, + "lurantis": 2.5050102676335886, + "shiinotic": 4.480190455354256, + "salazzle": 3.0467119669185547, + "bewear": 1.7650225981975003, + "tsareena": 3.227575999834244, + "comfey": 4.1919024586776095, + "oranguru": 2.503865725912191, + "passimian": 2.217036641829157, + "palossand": 1.9231805643051496, + "pyukumuku": 39.820321813421074, + "togedemaru": 2.3027668796971446, + "mimikyu-disguised": 3.693728148885266, + "greedent": 2.0992674575019827, + "orbeetle": 1.885067835347209, + "thievul": 1.7121480986133935, + "eldegoss": 3.923074303633234, + "dubwool": 2.9963774426586474, + "drednaw": 1.1154162144005801, + "boltund": 4.5217755348223605, + "carkol": 2.0760109611155926, + "coalossal": 1.7065727569801843, + "sandaconda": 3.1818977182798927, + "cramorant": 4.965672211513689, + "barraskewda": 4.521074690157388, + "toxtricity-amped": 2.5886252439977824, + "centiskorch": 1.9121089730337824, + "grapploct": 1.5440038227517712, + "polteageist": 2.2050084873495948, + "hatterene": 2.3905578886507906, + "grimmsnarl": 3.5164400077036087, + "obstagoon": 2.5185247509645032, + "perrserker": 3.6611376742516235, + "alcremie": 1.336328994179639, + "falinks": 3.018671197430204, + "pincurchin": 2.8594378932449107, + "frosmoth": 3.2874275927742977, + "indeedee-male": 3.044714246471771, + "morpeko": 2.653830128862528, + "copperajah": 2.409814219077215, + "duraludon": 1.4571529762842683, + "drakloak": 4.4451387756491165 }, "gurdurr": { - "ivysaur": 2.909013389835951, - "charmeleon": 4.570631415978083, - "wartortle": 2.729599835828379, - "butterfree": 3.662040108361677, - "raichu": 6.368857888559113, - "raichu-alola": 3.942485333616931, - "sandslash": 2.1763587898999335, - "sandslash-alola": 3.7601640917500587, - "nidoqueen": 3.134949406637348, - "nidoking": 2.2614203438240663, - "clefairy": 8.575326027160141, - "clefable": 1.491511839032615, - "jigglypuff": 23.728883049237247, - "wigglytuff": 1.626794723622028, - "gloom": 4.580664956452763, - "vileplume": 2.775755835078436, - "dugtrio": 4.341145441884933, - "dugtrio-alola": 5.391551266893904, - "persian": 5.932074258379475, - "persian-alola": 6.75259990474594, - "golduck": 3.202655825403887, - "poliwrath": 2.0324364047659893, - "kadabra": 3.188097901798628, - "machoke": 4.301761240390903, - "tentacruel": 3.1171601683203463, - "slowbro": 1.348602625201824, - "magneton": 4.839222748609378, - "haunter": 2.5812735509364, - "kingler": 2.3597736612402738, - "exeggutor": 1.5848128872908511, - "marowak": 3.2159109404777038, - "marowak-alola": 2.4148916061014725, - "hitmonlee": 2.8863814625207835, - "hitmonchan": 2.4366735424284087, - "lickitung": 2.556396694866689, - "weezing": 1.6457106452541852, - "weezing-galar": 2.471979020479311, - "rhydon": 2.652759253122839, - "chansey": 44.850469180002, - "tangela": 4.555710202634488, - "kangaskhan": 2.725349433453991, - "seadra": 3.702290318768698, - "seaking": 2.659287436799268, - "starmie": 1.1829555826105589, - "mr-mime": 5.34250122762635, - "mr-mime-galar": 3.4066478422513153, - "scyther": 2.144362161496499, - "jynx": 4.614802929323274, - "electabuzz": 3.122670404560796, - "magmar": 2.0547960979215074, - "tauros": 2.784834943472225, - "ditto": 2.973092417839217, - "vaporeon": 3.422739649302178, - "jolteon": 2.419096211224475, - "flareon": 3.0147800256882094, - "porygon": 3.908952528820545, - "dragonair": 1.9709616729240846, - "noctowl": 6.112057304922338, - "lanturn": 2.3863603915445677, - "togetic": 3.8292550723576495, - "xatu": 2.316376992764851, - "bellossom": 1.9715601918580812, - "azumarill": 1.9998413796474859, - "sudowoodo": 3.3112182448001697, - "politoed": 2.7508052341705698, - "quagsire": 4.450385670246689, - "slowking": 2.2138602205688316, - "dunsparce": 4.41908345073576, - "qwilfish": 3.901896123307422, - "sneasel": 5.153184937112711, - "piloswine": 2.0681245175226275, - "octillery": 2.418280315640777, - "mantine": 1.9839494450203712, - "skarmory": 1.9450765877022211, - "hitmontop": 2.9571699054973415, - "miltank": 4.472812017038853, - "grovyle": 8.489248015338006, - "sceptile": 1.5365460820754122, - "combusken": 3.9099877959975, - "blaziken": 1.9592413879424042, - "marshtomp": 2.6376697273864567, - "swampert": 1.2585217341916035, - "linoone": 7.696935668561673, - "linoone-galar": 10.644873161334994, - "pelipper": 4.732501699534561, - "ninjask": 6.444198125353896, - "exploud": 2.2313096282214273, - "lairon": 4.0507548024248266, - "manectric": 2.038566265470247, - "roselia": 3.5516979694607245, - "sharpedo": 7.572873846036005, - "wailmer": 6.548893411005174, - "torkoal": 1.8594129623980613, - "flygon": 2.558272998241016, - "altaria": 1.201970065152257, - "whiscash": 1.9669491199537052, - "crawdaunt": 2.5786211438307842, - "claydol": 2.5477462100760278, - "cradily": 3.1461889684781132, - "armaldo": 2.0416358950944486, - "dusclops": 3.2080896672919357, - "absol": 2.8243734595278274, - "glalie": 6.027961724817484, - "sealeo": 4.281876543767506, - "relicanth": 2.382648740977011, - "metang": 3.2852884517880927, - "luxray": 4.495556010852966, - "vespiquen": 2.1572361927687957, - "cherrim": 5.843215401020721, - "gastrodon": 2.4736831963238917, - "drifblim": 2.3741247021510103, - "lopunny": 5.280997202500593, - "skuntank": 1.8028466948874027, - "bronzong": 3.108803182318734, - "munchlax": 3.8441519759023315, - "drapion": 2.970951404979683, - "abomasnow": 4.381392342168628, - "froslass": 2.6641483382452513, - "rotom": 2.138595917176993, - "stoutland": 3.428253346980716, - "liepard": 9.981495525196923, - "musharna": 1.2265361490245354, - "unfezant": 5.638667136469058, - "boldore": 3.9241105471113107, - "swoobat": 3.3125638519567278, - "audino": 2.856503745760986, - "palpitoad": 3.7691671549306864, - "seismitoad": 6.266876099202333, - "scolipede": 3.1767728392323793, - "whimsicott": 2.376063928906092, - "lilligant": 3.131646346057642, - "basculin-red-striped": 2.866323039534385, - "basculin-blue-striped": 3.804302020035209, - "krookodile": 3.9993986818278433, - "maractus": 2.2557826104528784, - "crustle": 2.162519233199994, - "sigilyph": 1.4643625685508588, - "cofagrigus": 2.005954352682351, - "garbodor": 2.247542081598268, - "cinccino": 6.520266994748284, - "vanillish": 2.864890042291302, - "emolga": 2.4223898649478803, - "escavalier": 2.0320431318150125, - "amoonguss": 2.280845237510743, - "jellicent": 1.2782838050603773, - "galvantula": 1.4462682455043936, - "klang": 3.8457023313456506, - "klinklang": 4.664977394731506, - "beheeyem": 1.6006895239608192, - "lampent": 2.991026169915523, - "fraxure": 1.6213358141213408, - "beartic": 2.28422872295622, - "cryogonal": 2.7264371598544077, - "accelgor": 2.913784850357556, - "stunfisk": 1.5007094272395016, - "stunfisk-galar": 3.190922569254188, - "mienshao": 3.61442967440677, - "druddigon": 1.94947880805089, - "golurk": 1.7643184141838155, - "bisharp": 4.828153649623648, - "bouffalant": 1.9666890434978754, - "heatmor": 2.256935333043299, - "durant": 2.9368727893713498, - "diggersby": 4.690885205074956, - "talonflame": 2.2578432294933872, - "pangoro": 2.5783098057630234, - "doublade": 2.2821903729168573, - "malamar": 2.6858379409556408, - "barbaracle": 1.8889676387031584, - "heliolisk": 5.549115288745389, - "tyrantrum": 1.9846061993203, - "aurorus": 4.888316984065993, - "hawlucha": 3.1453092287583657, - "dedenne": 2.8164698851667174, - "klefki": 3.483175149743501, - "trevenant": 2.4742126292027136, - "gourgeist-average": 3.9436030784539513, - "charjabug": 3.7337844457328897, - "vikavolt": 1.5989245499222249, - "ribombee": 3.5275169333866456, - "lycanroc-midday": 4.974186866646965, - "lycanroc-midnight": 3.526409385742411, - "mudsdale": 1.6838024832812564, - "araquanid": 2.210913880505931, - "lurantis": 2.463336414908701, - "shiinotic": 3.192437480764286, - "salazzle": 5.3395391714565275, - "bewear": 2.425617878828531, - "tsareena": 3.1509420833693786, - "comfey": 3.7096865048036274, - "oranguru": 2.348786024904633, - "passimian": 2.3108746413658956, - "palossand": 1.7023258895302065, - "pyukumuku": 46.310057562663665, - "togedemaru": 4.10563221963193, - "mimikyu-disguised": 4.016038285601006, - "greedent": 2.7907648570758297, - "orbeetle": 1.333675423945436, - "thievul": 2.9817956900250575, - "eldegoss": 4.010454254964901, - "dubwool": 4.125097599986892, - "drednaw": 1.8019398463777885, - "boltund": 5.801899045410307, - "carkol": 3.766936874094542, - "coalossal": 2.8823873990877766, - "sandaconda": 3.045109484516077, - "cramorant": 5.303841731423709, - "barraskewda": 4.978383253883348, - "toxtricity-amped": 4.246869783920099, - "centiskorch": 1.9332262387550587, - "grapploct": 1.6985252197438676, - "polteageist": 2.5154115382658935, - "hatterene": 1.9492630741602046, - "grimmsnarl": 4.365538947820781, - "obstagoon": 5.0776090996937056, - "perrserker": 4.355070935478253, - "alcremie": 1.1351917262380686, - "falinks": 3.184415389087886, - "pincurchin": 3.3646578951619666, - "frosmoth": 2.7666931752027457, - "indeedee-male": 3.117059405985141, - "morpeko": 3.954334902136953, - "copperajah": 3.4624497753039063, - "duraludon": 1.9416301302333365, - "drakloak": 4.295381758935015, - "gurdurr": 2.2205239906966696 + "ivysaur": 2.9067784422745673, + "charmeleon": 4.578613620481876, + "wartortle": 2.731939746371892, + "butterfree": 3.652567539604222, + "raichu": 6.383253175244063, + "raichu-alola": 3.936243303016533, + "sandslash": 2.180087298964626, + "sandslash-alola": 3.7818693202245695, + "nidoqueen": 3.134593695008691, + "nidoking": 2.2652415829141757, + "clefairy": 8.574633089798015, + "clefable": 1.489477710673647, + "jigglypuff": 23.692012153223647, + "wigglytuff": 1.6247726015582606, + "gloom": 4.5671512309420415, + "vileplume": 2.7755679551853714, + "dugtrio": 4.354508640985636, + "dugtrio-alola": 5.423832485839984, + "persian": 5.947811477374955, + "persian-alola": 6.786219200800019, + "golduck": 3.207174798940382, + "poliwrath": 2.0369277261850733, + "kadabra": 3.180726646215462, + "machoke": 4.314954966259424, + "tentacruel": 3.120852946326973, + "slowbro": 1.3434921277028957, + "magneton": 4.85644958726599, + "haunter": 2.566081179802269, + "kingler": 2.361971978171815, + "exeggutor": 1.5810455271548403, + "marowak": 3.2225380805499806, + "marowak-alola": 2.415427320349295, + "hitmonlee": 2.8963753384679993, + "hitmonchan": 2.4436154350732004, + "lickitung": 2.562477197214645, + "weezing": 1.6452026554034158, + "weezing-galar": 2.465172874046477, + "rhydon": 2.6594646693900073, + "chansey": 45.00754579138028, + "tangela": 4.554919240581075, + "kangaskhan": 2.7370067889651795, + "seadra": 3.6989604039448385, + "seaking": 2.665000267732302, + "starmie": 1.1809614867031164, + "mr-mime": 5.316276095612405, + "mr-mime-galar": 3.3999488658209285, + "scyther": 2.1390653438222635, + "jynx": 4.61589998458828, + "electabuzz": 3.1281849638351904, + "magmar": 2.0589622497881335, + "tauros": 2.795964001705066, + "ditto": 2.950031510248795, + "vaporeon": 3.4277007779949535, + "jolteon": 2.4240420887837946, + "flareon": 3.022664570553731, + "porygon": 3.920772095540495, + "dragonair": 1.9740508634406049, + "noctowl": 6.109336097800497, + "lanturn": 2.3920975947739427, + "togetic": 3.815552788255875, + "xatu": 2.3001787455731293, + "bellossom": 1.9695212492550587, + "azumarill": 2.000932081561134, + "sudowoodo": 3.325661895228439, + "politoed": 2.7555860819205944, + "quagsire": 4.451947179978274, + "slowking": 2.210707697181393, + "dunsparce": 4.432115402002444, + "qwilfish": 3.9058356267193988, + "sneasel": 5.187094708384312, + "piloswine": 2.0754789046575883, + "octillery": 2.4211643949886614, + "mantine": 1.978755120905574, + "skarmory": 1.9466388542010113, + "hitmontop": 2.9649056861500607, + "miltank": 4.4822217384637835, + "grovyle": 8.497345859444987, + "sceptile": 1.5379332597241528, + "combusken": 3.918242327981687, + "blaziken": 1.964672117198524, + "marshtomp": 2.642771165994561, + "swampert": 1.2596783027977172, + "linoone": 7.729846829916266, + "linoone-galar": 10.716586097970552, + "pelipper": 4.717831620099346, + "ninjask": 6.4383133695984895, + "exploud": 2.2368349434089883, + "lairon": 4.074968946327056, + "manectric": 2.0415782943717318, + "roselia": 3.5460483227681294, + "sharpedo": 7.60824484772246, + "wailmer": 6.553920288856116, + "torkoal": 1.8609949690928986, + "flygon": 2.560711860216679, + "altaria": 1.1983298860478317, + "whiscash": 1.9671929927714484, + "crawdaunt": 2.5871469218807848, + "claydol": 2.537632334419715, + "cradily": 3.1561037792234146, + "armaldo": 2.047714221882126, + "dusclops": 3.2037653283754635, + "absol": 2.8359950723329725, + "glalie": 6.053990062610514, + "sealeo": 4.293532722482484, + "relicanth": 2.3916203928698563, + "metang": 3.291078828062452, + "luxray": 4.50368259689471, + "vespiquen": 2.1520067079116587, + "cherrim": 5.842739367909151, + "gastrodon": 2.4813005125804657, + "drifblim": 2.3568386915262005, + "lopunny": 5.299552073265259, + "skuntank": 1.809993424579321, + "bronzong": 3.1082096346764474, + "munchlax": 3.8634363419253703, + "drapion": 2.9830199682044407, + "abomasnow": 4.392850825049242, + "froslass": 2.6585171560149887, + "rotom": 2.1271329291467964, + "stoutland": 3.43938506188622, + "liepard": 10.018419460089316, + "musharna": 1.222457769235747, + "unfezant": 5.630088149256974, + "boldore": 3.9383399854298258, + "swoobat": 3.289426801433306, + "audino": 2.861469880991857, + "gurdurr": 2.2205239906966696, + "palpitoad": 3.771669922532463, + "seismitoad": 6.266952141769714, + "scolipede": 3.179190852915597, + "whimsicott": 2.368892724381931, + "lilligant": 3.133562593788388, + "basculin-red-striped": 2.8700179309931855, + "basculin-blue-striped": 3.8111776695322988, + "krookodile": 4.0159538215978765, + "maractus": 2.2574603295506552, + "crustle": 2.1679352582895786, + "sigilyph": 1.4550350708133168, + "cofagrigus": 1.9967236574813598, + "garbodor": 2.2498331109362537, + "cinccino": 6.542752743075365, + "vanillish": 2.87133670409433, + "emolga": 2.416782236170116, + "escavalier": 2.038580479822815, + "amoonguss": 2.2784234894171362, + "jellicent": 1.2747230302799244, + "galvantula": 1.4456837293217784, + "klang": 3.8622870449333124, + "klinklang": 4.68726031979666, + "beheeyem": 1.598093600661663, + "lampent": 2.990172207503358, + "fraxure": 1.6244157597892142, + "beartic": 2.2902944753091257, + "cryogonal": 2.7338778672657207, + "accelgor": 2.914822946120925, + "stunfisk": 1.5030245695480882, + "stunfisk-galar": 3.2054946424392297, + "mienshao": 3.621870848918336, + "druddigon": 1.9538091393212602, + "golurk": 1.7619727154762614, + "bisharp": 4.857190070049468, + "bouffalant": 1.976266146916736, + "heatmor": 2.2625923308650577, + "durant": 2.9420125378100845, + "diggersby": 4.711496881435595, + "talonflame": 2.250750666566198, + "pangoro": 2.5905172894043007, + "doublade": 2.279597554324463, + "malamar": 2.6849434480363614, + "barbaracle": 1.8952001096671984, + "heliolisk": 5.5723716485386525, + "tyrantrum": 1.9923013838972023, + "aurorus": 4.915678604652952, + "hawlucha": 3.1442255976801396, + "dedenne": 2.814104682355885, + "klefki": 3.4891258540227597, + "trevenant": 2.469182053869102, + "gourgeist-average": 3.931708008603004, + "charjabug": 3.7355473596185895, + "vikavolt": 1.5979304179707396, + "ribombee": 3.5168262596711988, + "lycanroc-midday": 5.002569364096119, + "lycanroc-midnight": 3.5468967129522495, + "mudsdale": 1.687828406083159, + "araquanid": 2.2135307546027785, + "lurantis": 2.464441213241807, + "shiinotic": 3.179230637655018, + "salazzle": 5.347632872665834, + "bewear": 2.433873455761397, + "tsareena": 3.152666306191129, + "comfey": 3.7017793184256353, + "oranguru": 2.3436711249389957, + "passimian": 2.314129198467116, + "palossand": 1.6972320547584858, + "pyukumuku": 46.4053856491638, + "togedemaru": 4.128768072963018, + "mimikyu-disguised": 4.012232464347562, + "greedent": 2.7979011922985992, + "orbeetle": 1.3260059778921875, + "thievul": 2.9966462130277844, + "eldegoss": 4.011098251582445, + "dubwool": 4.1400447300131145, + "drednaw": 1.8102490426754834, + "boltund": 5.818897289324577, + "carkol": 3.7824850499950835, + "coalossal": 2.8928976999018836, + "sandaconda": 3.0480869138277797, + "cramorant": 5.306538352883676, + "barraskewda": 4.990235295034092, + "toxtricity-amped": 4.249687695914029, + "centiskorch": 1.9325564709556802, + "grapploct": 1.7008338888076673, + "polteageist": 2.509015159496414, + "hatterene": 1.9407491511840467, + "grimmsnarl": 4.379500072941613, + "obstagoon": 5.105701440788462, + "perrserker": 4.376234541317729, + "alcremie": 1.1338308294034027, + "falinks": 3.1902530609224913, + "pincurchin": 3.3686852547982493, + "frosmoth": 2.7631309348845083, + "indeedee-male": 3.1154808725265313, + "morpeko": 3.9728307893531714, + "copperajah": 3.4790778355401883, + "duraludon": 1.9490618800431223, + "drakloak": 4.289667880801893 }, "palpitoad": { - "ivysaur": 2.199658894777425, - "charmeleon": 4.741829830468842, - "wartortle": 2.444333934192866, - "butterfree": 3.743983185600208, - "raichu": 6.344823098097727, - "raichu-alola": 3.9372040516108644, - "sandslash": 2.7595572726537583, - "sandslash-alola": 2.6614633979481352, - "nidoqueen": 3.2733387275370234, - "nidoking": 2.256613386965169, - "clefairy": 6.618038284994383, - "clefable": 1.7956466223855712, - "jigglypuff": 23.685493676323333, - "wigglytuff": 1.735502810670055, - "gloom": 5.631465976471795, - "vileplume": 2.0665859355080163, - "dugtrio": 4.127003138175497, - "dugtrio-alola": 4.003298433746568, - "persian": 3.7340435545508757, - "persian-alola": 3.7044177731061896, - "golduck": 2.7191796632904293, - "poliwrath": 1.7828660693633214, - "kadabra": 3.3056956297216935, - "machoke": 3.7853196964140077, - "tentacruel": 2.4980004754342655, - "slowbro": 1.6869466632722245, - "magneton": 6.850739906060509, - "haunter": 3.0911324386234043, - "kingler": 2.4303450570361624, - "exeggutor": 1.4142537651207787, - "marowak": 3.7257525844678305, - "marowak-alola": 2.727583480300459, - "hitmonlee": 2.4324822226127867, - "hitmonchan": 2.2476552242876515, - "lickitung": 1.7492598190969249, - "weezing": 2.2025484586735433, - "weezing-galar": 3.5424118505363613, - "rhydon": 4.277756645983252, - "chansey": 21.746539360395936, - "tangela": 2.775463026784837, - "kangaskhan": 1.6324920145038035, - "seadra": 4.033131251757403, - "seaking": 2.1803228888213737, - "starmie": 1.3115411724592865, - "mr-mime": 5.728264569020514, - "mr-mime-galar": 3.1419657756795907, - "scyther": 2.5130159604648865, - "jynx": 3.7494230206471935, - "electabuzz": 3.446212457957475, - "magmar": 1.9831227405452805, - "tauros": 1.8612374468247488, - "ditto": 4.233926470701713, - "vaporeon": 2.6804384539145967, - "jolteon": 2.1976099036175993, - "flareon": 2.6580351629658807, - "porygon": 2.6125634554952253, - "dragonair": 1.678163005088642, - "noctowl": 4.85254261150238, - "lanturn": 2.331485525436178, - "togetic": 4.861463248588757, - "xatu": 3.3772184424212415, - "bellossom": 1.6865840591818326, - "azumarill": 1.9843472479123023, - "sudowoodo": 3.304163286848153, - "politoed": 2.2056530680439277, - "quagsire": 4.293895704517169, - "slowking": 2.1257957806124557, - "dunsparce": 2.940277640963986, - "qwilfish": 4.49430985786355, - "sneasel": 1.9957382695839905, - "piloswine": 1.8589671034910924, - "octillery": 2.1887882584575875, - "mantine": 1.9856867119918582, - "skarmory": 2.015133392372724, - "hitmontop": 2.5607405315938694, - "miltank": 3.3294431381889833, - "grovyle": 5.350955448439196, - "sceptile": 1.0203507880795097, - "combusken": 3.982045688747041, - "blaziken": 1.9822111745692135, - "marshtomp": 2.222069570916824, - "swampert": 1.1268384758336945, - "linoone": 4.585274388317104, - "linoone-galar": 4.149834601601871, - "pelipper": 4.723577108239912, - "ninjask": 6.9958925210131175, - "exploud": 1.4125410942864622, - "lairon": 5.447967630074742, - "manectric": 2.221798283480353, - "roselia": 2.8914044957386285, - "sharpedo": 4.47204261760194, - "wailmer": 5.986825564085459, - "torkoal": 2.7049490718479214, - "flygon": 2.143784306700642, - "altaria": 1.3243818289782858, - "whiscash": 1.8214709297075684, - "crawdaunt": 1.8603639654884763, - "claydol": 3.6849821204230593, - "cradily": 1.6630322987353456, - "armaldo": 2.22045844013382, - "dusclops": 2.99948671295492, - "absol": 1.7945173241344303, - "glalie": 3.7834827445998136, - "sealeo": 2.848960404237345, - "relicanth": 2.4756548637242393, - "metang": 3.8870610399155363, - "luxray": 4.978599556727286, - "vespiquen": 2.536737640184207, - "cherrim": 3.7755238382092524, - "gastrodon": 1.9160619238735501, - "drifblim": 4.105036848800545, - "lopunny": 3.200034730009442, - "skuntank": 1.8254002028868233, - "bronzong": 2.866583392399958, - "munchlax": 2.1109618907493672, - "drapion": 3.124386566542322, - "abomasnow": 2.3252438273791944, - "froslass": 2.590811556972448, - "rotom": 3.646734335829792, - "stoutland": 2.11589150333661, - "liepard": 6.276582788701646, - "musharna": 1.1533196112581487, - "unfezant": 5.81625601300383, - "boldore": 4.485129418815436, - "swoobat": 4.83140917862874, - "audino": 2.0037658650517804, - "gurdurr": 2.1121048613296964, - "seismitoad": 6.061075294014882, - "scolipede": 2.9899481632162974, - "whimsicott": 2.250196124155484, - "lilligant": 1.9733612409288377, - "basculin-red-striped": 2.553117040906937, - "basculin-blue-striped": 3.311382266565267, - "krookodile": 3.2208400664604464, - "maractus": 1.3415489330987669, - "crustle": 2.5841267605749785, - "sigilyph": 2.1052876645269505, - "cofagrigus": 2.400346935949252, - "garbodor": 2.296811322269439, - "cinccino": 4.054400006610745, - "vanillish": 1.8790695837691307, - "emolga": 3.273731658070438, - "escavalier": 1.623712714147805, - "amoonguss": 1.9902226803399041, - "jellicent": 1.2897670322945958, - "galvantula": 1.7085984661098546, - "klang": 3.8707387348524676, - "klinklang": 4.397377750785916, - "beheeyem": 1.6041935477406788, - "lampent": 3.350600748702197, - "fraxure": 1.4251089949096583, - "beartic": 1.5463055489514803, - "cryogonal": 1.3519670033886286, - "accelgor": 2.9249983809489857, - "stunfisk": 1.5015327900207147, - "stunfisk-galar": 2.7664045179012486, - "mienshao": 3.2794921225916447, - "druddigon": 1.6808065950879567, - "golurk": 2.1036271895009957, - "bisharp": 3.0429879045511083, - "bouffalant": 1.1697069744621085, - "heatmor": 2.1095197745732293, - "durant": 3.213589879008827, - "diggersby": 3.6629770343745527, - "talonflame": 3.5450734521535248, - "pangoro": 1.6745338065890865, - "doublade": 3.6271820827527934, - "malamar": 2.7124620597716955, - "barbaracle": 1.7464074496302247, - "heliolisk": 4.111984039641661, - "tyrantrum": 2.0653514079127593, - "aurorus": 2.830842252942676, - "hawlucha": 3.336972445922304, - "dedenne": 3.469070571117552, - "klefki": 3.896193319986085, - "trevenant": 2.0047965994838335, - "gourgeist-average": 4.613477929066859, - "charjabug": 4.147402282608963, - "vikavolt": 1.759307409771817, - "ribombee": 4.36937709351621, - "lycanroc-midday": 4.097521665480562, - "lycanroc-midnight": 2.7672502280052678, - "mudsdale": 1.8001589479243634, - "araquanid": 2.275893375826528, - "lurantis": 1.702604989294314, - "shiinotic": 4.058123792491055, - "salazzle": 5.667049961401911, - "bewear": 1.6210968273113346, - "tsareena": 2.029692671277852, - "comfey": 2.9855266299330747, - "oranguru": 2.3028124784082378, - "passimian": 2.2377878740053063, - "palossand": 2.4333855972521836, - "pyukumuku": 42.84376699439973, - "togedemaru": 4.267200749230987, - "mimikyu-disguised": 3.4236053702476643, - "greedent": 1.9872790870435453, - "orbeetle": 1.6902881406675914, - "thievul": 1.6291389031025396, - "eldegoss": 2.5106123548452013, - "dubwool": 2.2704110076550483, - "drednaw": 1.6031692563079865, - "boltund": 6.057264835671026, - "carkol": 4.356602126048927, - "coalossal": 3.4680606767468647, - "sandaconda": 3.81050914898215, - "cramorant": 4.406390124472747, - "barraskewda": 4.1790379311314245, - "toxtricity-amped": 4.652821079237061, - "centiskorch": 2.293366468140271, - "grapploct": 1.5858671913534694, - "polteageist": 1.793375427637728, - "hatterene": 2.2075471282843395, - "grimmsnarl": 3.377398344937599, - "obstagoon": 2.422714266706903, - "perrserker": 4.5430807462813485, - "alcremie": 1.1152340961332783, - "falinks": 3.023988574454754, - "pincurchin": 3.892353769312613, - "frosmoth": 2.473432532427543, - "indeedee-male": 2.7937925869919127, - "morpeko": 3.5957841341972254, - "copperajah": 3.0004801265501406, - "duraludon": 2.3827691774177273, - "drakloak": 3.9914421310142663, - "palpitoad": 3.4022343812430393 + "ivysaur": 2.18447326068301, + "charmeleon": 4.752757490015585, + "wartortle": 2.44093418035124, + "butterfree": 3.7249196666130473, + "raichu": 6.359804409530051, + "raichu-alola": 3.93935480111252, + "sandslash": 2.761958894251493, + "sandslash-alola": 2.66350425151134, + "nidoqueen": 3.277888736389614, + "nidoking": 2.261826062795059, + "clefairy": 6.5906215680113185, + "clefable": 1.795453689050583, + "jigglypuff": 23.663448813759068, + "wigglytuff": 1.733423172501445, + "gloom": 5.6286868161025705, + "vileplume": 2.05326551848694, + "dugtrio": 4.128402711051745, + "dugtrio-alola": 4.008750788291092, + "persian": 3.7274232132278313, + "persian-alola": 3.699911808338948, + "golduck": 2.7143406144497106, + "poliwrath": 1.7789306297842247, + "kadabra": 3.2980912218195098, + "machoke": 3.786409365003776, + "tentacruel": 2.497110156085594, + "slowbro": 1.6852625835678134, + "magneton": 6.8825628912847, + "haunter": 3.0722882059826695, + "kingler": 2.4283434316891617, + "exeggutor": 1.406022569803142, + "marowak": 3.7284657477267125, + "marowak-alola": 2.7352262017377837, + "hitmonlee": 2.4313837847384794, + "hitmonchan": 2.249652071395727, + "lickitung": 1.748854483967417, + "weezing": 2.207265588220875, + "weezing-galar": 3.5490822763123733, + "rhydon": 4.289390667868827, + "chansey": 21.66820067188441, + "tangela": 2.7529755516752568, + "kangaskhan": 1.630164851214425, + "seadra": 4.027655562626652, + "seaking": 2.1776989259740884, + "starmie": 1.3102089172367095, + "mr-mime": 5.7178473896150575, + "mr-mime-galar": 3.1357877586672203, + "scyther": 2.5077349649626917, + "jynx": 3.7358386830602583, + "electabuzz": 3.4562529063533485, + "magmar": 1.9871835539009375, + "tauros": 1.8597485372175977, + "ditto": 4.208569208617806, + "vaporeon": 2.6726408928773613, + "jolteon": 2.200762247135938, + "flareon": 2.6607436988413635, + "porygon": 2.611766158331336, + "dragonair": 1.6767411617009413, + "noctowl": 4.838888134057907, + "lanturn": 2.3341520475719357, + "togetic": 4.856892435044264, + "xatu": 3.369176350847924, + "bellossom": 1.6741136366629237, + "azumarill": 1.9835359535336488, + "sudowoodo": 3.3107167048247046, + "politoed": 2.2016655706782537, + "quagsire": 4.291158522071179, + "slowking": 2.1214072783936357, + "dunsparce": 2.9373635145914903, + "qwilfish": 4.498859649130766, + "sneasel": 1.9917314567680355, + "piloswine": 1.8599751489091898, + "octillery": 2.18695019852089, + "mantine": 1.9783962599773353, + "skarmory": 2.0132139623927947, + "hitmontop": 2.559276462201637, + "miltank": 3.3259997282524676, + "grovyle": 5.309886664365001, + "sceptile": 1.0112325269983518, + "combusken": 3.9902303457761517, + "blaziken": 1.9873381892804922, + "marshtomp": 2.2199739193537207, + "swampert": 1.1259703140916701, + "linoone": 4.578361928261187, + "linoone-galar": 4.144038432311973, + "pelipper": 4.708564490649308, + "ninjask": 6.98072480007678, + "exploud": 1.4102840386232685, + "lairon": 5.4710689811443425, + "manectric": 2.226664853347425, + "roselia": 2.8720593322855077, + "sharpedo": 4.463897645070327, + "wailmer": 5.980410880650261, + "torkoal": 2.7141472418201316, + "flygon": 2.139593566506205, + "altaria": 1.3208818318719764, + "whiscash": 1.8198936416431613, + "crawdaunt": 1.8577109389572102, + "claydol": 3.6809090258041275, + "cradily": 1.655003707923437, + "armaldo": 2.2217786827444512, + "dusclops": 2.996226532012341, + "absol": 1.7931912799575964, + "glalie": 3.779575669218788, + "sealeo": 2.8439913257452805, + "relicanth": 2.4778990287243925, + "metang": 3.895018477612696, + "luxray": 4.989466159025628, + "vespiquen": 2.531735199030685, + "cherrim": 3.745567667867073, + "gastrodon": 1.9142426577852456, + "drifblim": 4.103259010756763, + "lopunny": 3.1953240068109223, + "skuntank": 1.8275095108531798, + "bronzong": 2.8619820414951844, + "munchlax": 2.1108971610407044, + "drapion": 3.1284063354952942, + "abomasnow": 2.3102991768578764, + "froslass": 2.5876542837431167, + "rotom": 3.6466520645005245, + "stoutland": 2.1119056969946186, + "liepard": 6.270021182318166, + "musharna": 1.1484082911214666, + "unfezant": 5.806667927707975, + "boldore": 4.495778123052051, + "swoobat": 4.819927171409353, + "audino": 2.0026455892637496, + "gurdurr": 2.1118908524677193, + "palpitoad": 3.4022343812430393, + "seismitoad": 6.059334472521312, + "scolipede": 2.989023908928344, + "whimsicott": 2.237542393996114, + "lilligant": 1.9582787919723348, + "basculin-red-striped": 2.5493254259653906, + "basculin-blue-striped": 3.306710819292457, + "krookodile": 3.220684177308156, + "maractus": 1.3289972939755594, + "crustle": 2.5864067584225987, + "sigilyph": 2.1012718037923808, + "cofagrigus": 2.398296021441909, + "garbodor": 2.3004684183446185, + "cinccino": 4.048301966561552, + "vanillish": 1.8760312918883044, + "emolga": 3.2772739326920766, + "escavalier": 1.6223637422396924, + "amoonguss": 1.9806243828767531, + "jellicent": 1.286450881318785, + "galvantula": 1.7126293436233144, + "klang": 3.884008452264043, + "klinklang": 4.403350914847166, + "beheeyem": 1.6022884523313858, + "lampent": 3.361204822905491, + "fraxure": 1.422770976157546, + "beartic": 1.5442981814941859, + "cryogonal": 1.3451398449462204, + "accelgor": 2.9207440286144672, + "stunfisk": 1.50454349171739, + "stunfisk-galar": 2.7697706814326777, + "mienshao": 3.2789874468926534, + "druddigon": 1.6795696653053445, + "golurk": 2.1033681914634856, + "bisharp": 3.04477328548738, + "bouffalant": 1.1691303826012667, + "heatmor": 2.1105811359504076, + "durant": 3.218188058947434, + "diggersby": 3.663916135826752, + "talonflame": 3.5467746356948284, + "pangoro": 1.6740661886701287, + "doublade": 3.6350943565484712, + "malamar": 2.7118650945470724, + "barbaracle": 1.745696720179566, + "heliolisk": 4.110274858733662, + "tyrantrum": 2.066775253232224, + "aurorus": 2.8341951222814084, + "hawlucha": 3.333040488537665, + "dedenne": 3.4761987156117016, + "klefki": 3.9020239633752603, + "trevenant": 1.990193734046979, + "gourgeist-average": 4.6083450311119005, + "charjabug": 4.1575997992788425, + "vikavolt": 1.757974086416671, + "ribombee": 4.36280453901786, + "lycanroc-midday": 4.106270462576407, + "lycanroc-midnight": 2.7706788615021294, + "mudsdale": 1.800312881820953, + "araquanid": 2.2709221480530317, + "lurantis": 1.6917902800338593, + "shiinotic": 4.0490717123464925, + "salazzle": 5.688851566036263, + "bewear": 1.6190104509048702, + "tsareena": 2.0147296725744788, + "comfey": 2.9693479228579562, + "oranguru": 2.298678691249601, + "passimian": 2.238746821342594, + "palossand": 2.4335219263958763, + "pyukumuku": 42.83912853903208, + "togedemaru": 4.283513035737717, + "mimikyu-disguised": 3.418944273016238, + "greedent": 1.9857710003986642, + "orbeetle": 1.6871506752565129, + "thievul": 1.627879541039201, + "eldegoss": 2.489585995848336, + "dubwool": 2.261142574067619, + "drednaw": 1.6040499905733856, + "boltund": 6.070296352425946, + "carkol": 4.377069046847106, + "coalossal": 3.481973773164225, + "sandaconda": 3.811340465254008, + "cramorant": 4.392880902792522, + "barraskewda": 4.172441774785854, + "toxtricity-amped": 4.667304626860043, + "centiskorch": 2.2953706433619447, + "grapploct": 1.5851833440465364, + "polteageist": 1.7837127340130219, + "hatterene": 2.2050446615760118, + "grimmsnarl": 3.374386988055923, + "obstagoon": 2.421306933356427, + "perrserker": 4.553582367775734, + "alcremie": 1.111793786376625, + "falinks": 3.024531122651366, + "pincurchin": 3.902740481353324, + "frosmoth": 2.4678608000087063, + "indeedee-male": 2.7902904757059837, + "morpeko": 3.605001407545195, + "copperajah": 3.0051700328737994, + "duraludon": 2.3896026195221864, + "drakloak": 3.9845354202930565 }, "seismitoad": { - "ivysaur": 2.151536203623617, - "charmeleon": 3.6098851861792127, - "wartortle": 2.41000727115503, - "butterfree": 3.5028015023713417, - "raichu": 4.7854411100128935, - "raichu-alola": 3.179180206366733, - "sandslash": 1.9379821454471728, - "sandslash-alola": 1.7034332855956316, - "nidoqueen": 2.3799783735890587, - "nidoking": 1.6158045259613965, - "clefairy": 8.247316767063458, - "clefable": 2.2119392650119574, - "jigglypuff": 28.04829054978923, - "wigglytuff": 2.1349475969557257, - "gloom": 5.144976524367507, - "vileplume": 2.0681316357112656, - "dugtrio": 3.1931022267044824, - "dugtrio-alola": 2.653194692812453, - "persian": 3.7415931585024076, - "persian-alola": 3.758652703090158, - "golduck": 2.697334673638802, - "poliwrath": 1.67402133697085, - "kadabra": 3.301316515445796, - "machoke": 3.5685806444681685, - "tentacruel": 1.9293100107832912, - "slowbro": 1.6488907185587787, - "magneton": 2.712818595772527, - "haunter": 2.6685024626080347, - "kingler": 2.3452751860869796, - "exeggutor": 1.7896717724894815, - "marowak": 2.7021942274885147, - "marowak-alola": 1.6852121014589385, - "hitmonlee": 2.0361869048894166, - "hitmonchan": 1.9578932339603083, - "lickitung": 1.7398989634763664, - "weezing": 1.4662511383836583, - "weezing-galar": 2.5100042501671096, - "rhydon": 2.0014291072899613, - "chansey": 19.024756377190407, - "tangela": 4.442179555561019, - "kangaskhan": 1.6264221797067533, - "seadra": 3.92637128392301, - "seaking": 2.15146381215048, - "starmie": 1.3024662252043724, - "mr-mime": 6.635018331563221, - "mr-mime-galar": 3.23197710178865, - "scyther": 2.401413927736274, - "jynx": 3.6693110647382827, - "electabuzz": 2.5988079730161906, - "magmar": 1.5631535377597618, - "tauros": 1.8274916346888115, - "ditto": 8.509642905015768, - "vaporeon": 2.678764176887884, - "jolteon": 1.7220804845142625, - "flareon": 2.172815362897806, - "porygon": 2.5409964781099665, - "dragonair": 1.6683342232862401, - "noctowl": 4.842615560895531, - "lanturn": 1.7334318647642721, - "togetic": 5.720046391364397, - "xatu": 3.3889912934177366, - "bellossom": 2.10028204499817, - "azumarill": 2.436220929375958, - "sudowoodo": 2.185992929323309, - "politoed": 2.199868378460754, - "quagsire": 3.9785068737522478, - "slowking": 2.134883234815887, - "dunsparce": 2.905139491189595, - "qwilfish": 3.046796943486372, - "sneasel": 2.0002850003315604, - "piloswine": 1.3788438669560714, - "octillery": 2.140427393554205, - "mantine": 2.0136416562584714, - "skarmory": 1.559928865880028, - "hitmontop": 2.3414001091040615, - "miltank": 3.2732452982180096, - "grovyle": 6.212293936946489, - "sceptile": 1.1906402330769827, - "combusken": 3.0333757420385954, - "blaziken": 1.4991015375222325, - "marshtomp": 2.0869603070884253, - "swampert": 1.0581279756413533, - "linoone": 4.568357295933247, - "linoone-galar": 4.18546070882387, - "pelipper": 5.517573686066683, - "ninjask": 6.600689779808689, - "exploud": 1.418639033164702, - "lairon": 2.019110525225966, - "manectric": 1.6353725186390373, - "roselia": 2.69053596234487, - "sharpedo": 4.443821522799292, - "wailmer": 5.865338757284231, - "torkoal": 1.918033717970716, - "flygon": 2.0299533321079872, - "altaria": 1.4561474748508316, - "whiscash": 1.7520797589834052, - "crawdaunt": 1.849844432974672, - "claydol": 2.8473960710077533, - "cradily": 1.7485979219390808, - "armaldo": 1.5292648459457023, - "dusclops": 2.5914909650664653, - "absol": 1.7669962870161986, - "glalie": 3.75571980732001, - "sealeo": 2.8330166833724393, - "relicanth": 1.6477505650109463, - "metang": 2.363928225429149, - "luxray": 3.6855914741520586, - "vespiquen": 2.419824422119796, - "cherrim": 4.667259698956472, - "gastrodon": 1.810700864757149, - "drifblim": 3.5525506897345474, - "lopunny": 3.1959035133028983, - "skuntank": 1.2484992268619854, - "bronzong": 2.3714294204330963, - "munchlax": 2.017563593715289, - "drapion": 2.0842457079884995, - "abomasnow": 2.7816250653413768, - "froslass": 2.2802708924943444, - "rotom": 2.993356391021088, - "stoutland": 2.122220041012402, - "liepard": 6.2073161219246975, - "musharna": 1.203621170067891, - "unfezant": 5.71515331968013, - "boldore": 2.8406329407777324, - "swoobat": 4.844804388080227, - "audino": 2.034889017607415, - "gurdurr": 2.053321584445145, - "palpitoad": 3.1938652028240653, - "scolipede": 2.7344395864465714, - "whimsicott": 3.8813903145109876, - "lilligant": 2.5108067179117883, - "basculin-red-striped": 2.5136322299493976, - "basculin-blue-striped": 3.2552539431386642, - "krookodile": 2.4287060034978096, - "maractus": 1.7324541500271744, - "crustle": 1.7145006308459838, - "sigilyph": 2.0984083390876167, - "cofagrigus": 2.0242806837066243, - "garbodor": 1.6028093074379988, - "cinccino": 4.03994348302908, - "vanillish": 1.9233888970775546, - "emolga": 3.068484158496476, - "escavalier": 1.3661786008970098, - "amoonguss": 1.921830810214652, - "jellicent": 1.1594241538961598, - "galvantula": 1.5900598152977188, - "klang": 2.316694247162479, - "klinklang": 2.6409415214307104, - "beheeyem": 1.5996846554914779, - "lampent": 2.1301890121992715, - "fraxure": 1.4040978729492974, - "beartic": 1.5606162236812806, - "cryogonal": 1.3734790834453374, - "accelgor": 2.6587727060165562, - "stunfisk": 1.1263369786023099, - "stunfisk-galar": 1.7368973873062552, - "mienshao": 3.043842111618389, - "druddigon": 1.6401120041394395, - "golurk": 1.3625930760686873, - "bisharp": 1.9088458612421864, - "bouffalant": 1.1453981257302868, - "heatmor": 1.6172715815601029, - "durant": 2.4737315846561003, - "diggersby": 2.781229881133833, - "talonflame": 2.712589435098721, - "pangoro": 1.5800889608537636, - "doublade": 1.5628981554325108, - "malamar": 2.6497750683111128, - "barbaracle": 1.2246568180554265, - "heliolisk": 3.2446808781331598, - "tyrantrum": 1.3221803676345605, - "aurorus": 2.189679590319236, - "hawlucha": 3.205877142050282, - "dedenne": 3.2576050849392604, - "klefki": 2.301950389817339, - "trevenant": 2.0541286965324375, - "gourgeist-average": 4.833621703411199, - "charjabug": 3.847913389051768, - "vikavolt": 1.7099131950192077, - "ribombee": 4.843098098041192, - "lycanroc-midday": 2.8833411907733333, - "lycanroc-midnight": 1.9738961718103205, - "mudsdale": 1.3384594213580225, - "araquanid": 2.015379228449885, - "lurantis": 2.1262896113356264, - "shiinotic": 5.921735819733215, - "salazzle": 2.8313484965903752, - "bewear": 1.5994312495694518, - "tsareena": 2.566279940588805, - "comfey": 3.8125795468837342, - "oranguru": 2.3183866312423835, - "passimian": 2.162232517481853, - "palossand": 1.4875807650154789, - "pyukumuku": 40.14589098523247, - "togedemaru": 1.8885064620242238, - "mimikyu-disguised": 3.3765756842932992, - "greedent": 1.9515188285195482, - "orbeetle": 1.6128065738020454, - "thievul": 1.6184799345500651, - "eldegoss": 2.9827221831001225, - "dubwool": 2.3548213983774966, - "drednaw": 1.116557307979823, - "boltund": 4.4796118884705205, - "carkol": 2.137844598356722, - "coalossal": 1.7137889387247611, - "sandaconda": 2.723249272233363, - "cramorant": 4.6084998091058775, - "barraskewda": 4.117980619524815, - "toxtricity-amped": 2.391110125880246, - "centiskorch": 1.8465509381770087, - "grapploct": 1.506416198275363, - "polteageist": 1.6952200548285874, - "hatterene": 2.6437587219082443, - "grimmsnarl": 4.0309382940996885, - "obstagoon": 2.3808974136505894, - "perrserker": 2.609172891514654, - "alcremie": 1.376735586173361, - "falinks": 2.928228061022775, - "pincurchin": 2.8058172175161866, - "frosmoth": 2.3350933603446635, - "indeedee-male": 2.779617266378954, - "morpeko": 2.672665943996078, - "copperajah": 1.8778723889530489, - "duraludon": 1.2485138911816407, - "drakloak": 3.4339268199536894, - "seismitoad": 5.620310260416038 + "ivysaur": 2.139288649662211, + "charmeleon": 3.6102102067368103, + "wartortle": 2.407791175570293, + "butterfree": 3.489213088608487, + "raichu": 4.789000987441723, + "raichu-alola": 3.1776249126677913, + "sandslash": 1.9361431875992148, + "sandslash-alola": 1.6998120448188598, + "nidoqueen": 2.376429196009188, + "nidoking": 1.61446789792284, + "clefairy": 8.227798266604944, + "clefable": 2.213410649139325, + "jigglypuff": 28.04992722390463, + "wigglytuff": 2.134822035373217, + "gloom": 5.141912056543559, + "vileplume": 2.0572965332364013, + "dugtrio": 3.1890716851333663, + "dugtrio-alola": 2.6473134534939087, + "persian": 3.735583971661473, + "persian-alola": 3.753841291555408, + "golduck": 2.6940438044761543, + "poliwrath": 1.6723492933516022, + "kadabra": 3.2943892787241102, + "machoke": 3.567609799209321, + "tentacruel": 1.9262227251525479, + "slowbro": 1.6479575028967508, + "magneton": 2.7119769668927587, + "haunter": 2.6526785808337046, + "kingler": 2.344520346018353, + "exeggutor": 1.784342381447416, + "marowak": 2.6993807113733888, + "marowak-alola": 1.6834529934740365, + "hitmonlee": 2.0339961238698, + "hitmonchan": 1.9579460165407996, + "lickitung": 1.739045982681514, + "weezing": 1.4660718554161607, + "weezing-galar": 2.511168117567846, + "rhydon": 1.9984735464030354, + "chansey": 18.95768357606243, + "tangela": 4.4226742308071465, + "kangaskhan": 1.6242778742613888, + "seadra": 3.923418608239191, + "seaking": 2.1496931079631167, + "starmie": 1.301593101793568, + "mr-mime": 6.630658261953719, + "mr-mime-galar": 3.226238000506532, + "scyther": 2.398327044190657, + "jynx": 3.6613279969706856, + "electabuzz": 2.6017656797504163, + "magmar": 1.5630599195694255, + "tauros": 1.8259859154625984, + "ditto": 8.439759008311498, + "vaporeon": 2.674824159185893, + "jolteon": 1.7222318867427808, + "flareon": 2.17101711759868, + "porygon": 2.5393267257709153, + "dragonair": 1.6673713595747044, + "noctowl": 4.8339106663245115, + "lanturn": 1.7337908596965874, + "togetic": 5.725587904938973, + "xatu": 3.3849077870171684, + "bellossom": 2.0910911894870705, + "azumarill": 2.4391357067747723, + "sudowoodo": 2.1835849923501014, + "politoed": 2.197024463289896, + "quagsire": 3.9728119727853493, + "slowking": 2.1316992108801616, + "dunsparce": 2.9022361784537543, + "qwilfish": 3.044891287214403, + "sneasel": 1.9969550103364613, + "piloswine": 1.3772286688167692, + "octillery": 2.1393386038643536, + "mantine": 2.0108392629316256, + "skarmory": 1.5568471130599926, + "hitmontop": 2.339135483919176, + "miltank": 3.2699518577021083, + "grovyle": 6.1819477181149765, + "sceptile": 1.184032305132534, + "combusken": 3.0325694374672767, + "blaziken": 1.49928414171848, + "marshtomp": 2.0835694506592803, + "swampert": 1.0565438226452963, + "linoone": 4.561937421443437, + "linoone-galar": 4.179791063040202, + "pelipper": 5.512038291080305, + "ninjask": 6.591356211744216, + "exploud": 1.416551754718647, + "lairon": 2.016171652912921, + "manectric": 1.6364635449804648, + "roselia": 2.675471843214716, + "sharpedo": 4.438230894501376, + "wailmer": 5.861141628149263, + "torkoal": 1.919695688180267, + "flygon": 2.026896849924085, + "altaria": 1.4547567666330736, + "whiscash": 1.7491668098771946, + "crawdaunt": 1.8481642928627902, + "claydol": 2.842544917652752, + "cradily": 1.7414700530132428, + "armaldo": 1.5269811989596331, + "dusclops": 2.5851973288022045, + "absol": 1.7655782765286516, + "glalie": 3.751919369530399, + "sealeo": 2.8296126167165543, + "relicanth": 1.645676419354109, + "metang": 2.360677919486712, + "luxray": 3.6880309245682437, + "vespiquen": 2.4169404884377843, + "cherrim": 4.644270978521067, + "gastrodon": 1.80778864392449, + "drifblim": 3.5491166334683815, + "lopunny": 3.191514145174705, + "skuntank": 1.247437030542363, + "bronzong": 2.3659205658033935, + "munchlax": 2.016747898576824, + "drapion": 2.0826447331984146, + "abomasnow": 2.7712251483761756, + "froslass": 2.274890480200819, + "rotom": 2.9915904048605086, + "stoutland": 2.118671596522467, + "liepard": 6.200696283650956, + "musharna": 1.1993831175553153, + "unfezant": 5.712024592688292, + "boldore": 2.8380163971342975, + "swoobat": 4.838922701501055, + "audino": 2.0332726313823657, + "gurdurr": 2.0523622383640774, + "palpitoad": 3.1887638156925897, + "seismitoad": 5.620310260416038, + "scolipede": 2.7306861581815243, + "whimsicott": 3.8764861804211916, + "lilligant": 2.49942769382809, + "basculin-red-striped": 2.511223627500039, + "basculin-blue-striped": 3.2522905184568374, + "krookodile": 2.424882424191314, + "maractus": 1.7235766272132307, + "crustle": 1.7122162364776108, + "sigilyph": 2.0966457214952543, + "cofagrigus": 2.019597809148744, + "garbodor": 1.602053103769362, + "cinccino": 4.034290960684396, + "vanillish": 1.920483496545295, + "emolga": 3.07304694147492, + "escavalier": 1.3624556251745537, + "amoonguss": 1.9143113756104597, + "jellicent": 1.1566314101522313, + "galvantula": 1.5922587751465205, + "klang": 2.315751859421647, + "klinklang": 2.6358301341506216, + "beheeyem": 1.5978496798049062, + "lampent": 2.1285202474214353, + "fraxure": 1.402648213724571, + "beartic": 1.558689117627077, + "cryogonal": 1.3684114682101627, + "accelgor": 2.655016864012805, + "stunfisk": 1.1256741737282459, + "stunfisk-galar": 1.7321150611273928, + "mienshao": 3.0419501096317108, + "druddigon": 1.6394171100481594, + "golurk": 1.3587410398439868, + "bisharp": 1.9043217005104118, + "bouffalant": 1.144664523262903, + "heatmor": 1.6152594835764258, + "durant": 2.470353342923903, + "diggersby": 2.777493334476195, + "talonflame": 2.712828398431446, + "pangoro": 1.5790061077209232, + "doublade": 1.558532424603634, + "malamar": 2.648681638321314, + "barbaracle": 1.2220792459107876, + "heliolisk": 3.244026184218929, + "tyrantrum": 1.3202075165442877, + "aurorus": 2.1873295347532755, + "hawlucha": 3.2043487883481894, + "dedenne": 3.263143530653359, + "klefki": 2.297553948248435, + "trevenant": 2.042418609205675, + "gourgeist-average": 4.830655593444078, + "charjabug": 3.85354035904484, + "vikavolt": 1.710162172586002, + "ribombee": 4.842454442699147, + "lycanroc-midday": 2.8810564808687555, + "lycanroc-midnight": 1.9710925090518543, + "mudsdale": 1.336465805367956, + "araquanid": 2.013560101338407, + "lurantis": 2.118950902679223, + "shiinotic": 5.92776143393924, + "salazzle": 2.831257637961545, + "bewear": 1.5972179822481851, + "tsareena": 2.555158918281582, + "comfey": 3.7997239904805435, + "oranguru": 2.314610838485831, + "passimian": 2.1620037154899343, + "palossand": 1.483333015962012, + "pyukumuku": 40.12200459317326, + "togedemaru": 1.887231152329785, + "mimikyu-disguised": 3.370833499476816, + "greedent": 1.9499404137613299, + "orbeetle": 1.6103299797669075, + "thievul": 1.6164129055434702, + "eldegoss": 2.966476570050321, + "dubwool": 2.3468700621651744, + "drednaw": 1.1149617171338777, + "boltund": 4.482412733120081, + "carkol": 2.1367943857196625, + "coalossal": 1.7121671334597592, + "sandaconda": 2.7193540431226575, + "cramorant": 4.60151582102522, + "barraskewda": 4.113727258408475, + "toxtricity-amped": 2.3906245461464923, + "centiskorch": 1.8455953176916364, + "grapploct": 1.5052222182609, + "polteageist": 1.6856743065923463, + "hatterene": 2.643962394099445, + "grimmsnarl": 4.031864100716016, + "obstagoon": 2.3793268329169734, + "perrserker": 2.6056703945968076, + "alcremie": 1.3745195746629513, + "falinks": 2.927453289570874, + "pincurchin": 2.808709982894099, + "frosmoth": 2.3304254800744237, + "indeedee-male": 2.776184200307154, + "morpeko": 2.675133457371815, + "copperajah": 1.8747646582708923, + "duraludon": 1.2474553118186602, + "drakloak": 3.4254711274326946 }, "scolipede": { - "ivysaur": 4.0162534050015575, - "charmeleon": 3.0859621016679997, - "wartortle": 2.9566559636272505, - "butterfree": 4.877150875715504, - "raichu": 6.148709765403646, - "raichu-alola": 5.1158008571842775, - "sandslash": 2.0682232389724624, - "sandslash-alola": 1.6569037995765712, - "nidoqueen": 2.561515184875888, - "nidoking": 1.6571189160134048, - "clefairy": 9.982136718439202, - "clefable": 2.4003657745858114, - "jigglypuff": 32.22123084558592, - "wigglytuff": 2.240830065381444, - "gloom": 6.7114258629934795, - "vileplume": 3.601517044907843, - "dugtrio": 3.843817164923369, - "dugtrio-alola": 3.2139783414037186, - "persian": 4.749144211359521, - "persian-alola": 6.248548321090341, - "golduck": 3.30151675217204, - "poliwrath": 1.739963421276796, - "kadabra": 6.63862663832149, - "machoke": 3.5618868246830298, - "tentacruel": 2.3240115651841036, - "slowbro": 1.9703458539681127, - "magneton": 2.661736557471862, - "haunter": 5.552188021474636, - "kingler": 2.467985331278494, - "exeggutor": 3.954062954984064, - "marowak": 3.167450883146466, - "marowak-alola": 2.119322248407241, - "hitmonlee": 2.5489715330131153, - "hitmonchan": 2.0402911667435726, - "lickitung": 1.993612581377024, - "weezing": 1.235000590807207, - "weezing-galar": 2.4661542616460057, - "rhydon": 2.1475844616843, - "chansey": 32.337575263825315, - "tangela": 6.320833416509502, - "kangaskhan": 2.003325267907165, - "seadra": 3.88310992229114, - "seaking": 2.738691067889719, - "starmie": 2.0447369001738998, - "mr-mime": 7.142642942434234, - "mr-mime-galar": 4.90249238668188, - "scyther": 2.428105834267634, - "jynx": 7.4161168185665876, - "electabuzz": 2.858666348618546, - "magmar": 1.3354505326312172, - "tauros": 2.166700608902916, - "ditto": 3.3351430375162376, - "vaporeon": 3.6466418513556516, - "jolteon": 2.2008443273643166, - "flareon": 1.881330668662318, - "porygon": 2.9626322174380713, - "dragonair": 2.026339378205748, - "noctowl": 5.226841942288593, - "lanturn": 2.163219264307809, - "togetic": 5.402758767494937, - "xatu": 3.5415132266495233, - "bellossom": 3.853908588863211, - "azumarill": 2.056579153287662, - "sudowoodo": 2.596688231900611, - "politoed": 2.8624522547793547, - "quagsire": 4.947634389544675, - "slowking": 3.5851458294432614, - "dunsparce": 3.392123799829121, - "qwilfish": 3.0779164916700825, - "sneasel": 3.3543840875689668, - "piloswine": 1.7174691925868926, - "octillery": 2.5770311297321795, - "mantine": 2.1768896007038685, - "skarmory": 1.6448827029017625, - "hitmontop": 2.6629438009240687, - "miltank": 3.7649222187134876, - "grovyle": 14.283930541903935, - "sceptile": 2.389505586868908, - "combusken": 2.6571301919518864, - "blaziken": 1.2232210260985454, - "marshtomp": 2.6971206984004814, - "swampert": 1.3240314858371436, - "linoone": 5.776916116629085, - "linoone-galar": 6.566255373692753, - "pelipper": 4.891715176390909, - "ninjask": 7.592515363300242, - "exploud": 1.7714277608663314, - "lairon": 1.7685470027754655, - "manectric": 1.7740169278678852, - "roselia": 4.66030882155459, - "sharpedo": 7.5248728666134035, - "wailmer": 6.748681273736237, - "torkoal": 1.2453962557967877, - "flygon": 2.6192029239913004, - "altaria": 1.3791683031467779, - "whiscash": 2.0506518237000844, - "crawdaunt": 2.633459782830725, - "claydol": 4.183686309520825, - "cradily": 3.337058656400714, - "armaldo": 2.0524915388067666, - "dusclops": 4.017982817314682, - "absol": 2.821463373589415, - "glalie": 4.781954869642668, - "sealeo": 3.3484574373051625, - "relicanth": 1.717035663500964, - "metang": 3.0709186336444363, - "luxray": 4.059161182460599, - "vespiquen": 2.5506585449191017, - "cherrim": 9.368279104446666, - "gastrodon": 2.3913047643225074, - "drifblim": 4.514456559642134, - "lopunny": 4.053753025699544, - "skuntank": 1.4701986086696572, - "bronzong": 3.350377642943733, - "munchlax": 2.7086401449600976, - "drapion": 2.5531605427429636, - "abomasnow": 4.76871667811155, - "froslass": 3.374517856988347, - "rotom": 4.307457290746567, - "stoutland": 2.5856274938893518, - "liepard": 10.941823645201723, - "musharna": 2.050590662502691, - "unfezant": 4.860518467718651, - "boldore": 3.119376462877108, - "swoobat": 5.066889297631501, - "audino": 2.238943294485332, - "gurdurr": 2.141307834933265, - "palpitoad": 3.93983471449343, - "seismitoad": 7.1109137179482955, - "whimsicott": 3.632699727507334, - "lilligant": 4.97754024226671, - "basculin-red-striped": 2.8845251093966593, - "basculin-blue-striped": 3.823977078250129, - "krookodile": 3.978710062371088, - "maractus": 3.666840295004768, - "crustle": 2.216889038474396, - "sigilyph": 2.2338020416348754, - "cofagrigus": 2.535275589929231, - "garbodor": 1.8506753118387118, - "cinccino": 4.922221718449578, - "vanillish": 2.418615731665068, - "emolga": 2.593859649286725, - "escavalier": 1.7170227589699003, - "amoonguss": 3.1019362474112415, - "jellicent": 2.075495258447579, - "galvantula": 1.7129687228189843, - "klang": 2.283302000785931, - "klinklang": 2.9278467967745296, - "beheeyem": 2.42775702107144, - "lampent": 2.3693148934106953, - "fraxure": 1.6321973721064156, - "beartic": 1.9693683427830035, - "cryogonal": 2.2882463452468844, - "accelgor": 3.853213137141797, - "stunfisk": 1.3843668220948149, - "stunfisk-galar": 2.000275847526526, - "mienshao": 3.1256919227574578, - "druddigon": 1.9274219386601452, - "golurk": 2.2676332430246564, - "bisharp": 2.4271326069943475, - "bouffalant": 1.4695408587740237, - "heatmor": 1.543703666255617, - "durant": 2.5802017962553063, - "diggersby": 3.36910029803932, - "talonflame": 2.2700467743086734, - "pangoro": 1.9908337490308115, - "doublade": 2.2300531824868157, - "malamar": 5.488111977940065, - "barbaracle": 1.513660666943754, - "heliolisk": 4.15941531297069, - "tyrantrum": 1.6027295470338707, - "aurorus": 3.223347027873749, - "hawlucha": 3.2971704756611984, - "dedenne": 2.8984573065584667, - "klefki": 2.720901935630322, - "trevenant": 4.058673308181554, - "gourgeist-average": 5.014768535272722, - "charjabug": 4.221648809326069, - "vikavolt": 2.0445034741716364, - "ribombee": 5.604589868591808, - "lycanroc-midday": 3.4095259262820905, - "lycanroc-midnight": 2.6197621295777687, - "mudsdale": 1.772248261030571, - "araquanid": 2.9040015732123354, - "lurantis": 3.7552427025455604, - "shiinotic": 5.551646094488996, - "salazzle": 2.696095810516193, - "bewear": 1.5848522926692716, - "tsareena": 4.641064473756129, - "comfey": 5.571321726855658, - "oranguru": 3.4483333281029194, - "passimian": 1.9948960301898424, - "palossand": 2.1020565684068586, - "pyukumuku": 50.069685103895, - "togedemaru": 2.103154568236756, - "mimikyu-disguised": 4.759013098574199, - "greedent": 2.104050371038255, - "orbeetle": 2.4525183562263977, - "thievul": 2.6723063475905207, - "eldegoss": 6.593882661337852, - "dubwool": 3.372467807971882, - "drednaw": 1.2101215359588293, - "boltund": 5.058575137822688, - "carkol": 1.799871480164894, - "coalossal": 1.505478472907455, - "sandaconda": 3.1119988940307386, - "cramorant": 5.341864185154649, - "barraskewda": 4.895890578190237, - "toxtricity-amped": 2.3007124076960976, - "centiskorch": 1.7968662907625554, - "grapploct": 1.6200304779375656, - "polteageist": 3.413075287809736, - "hatterene": 2.6941607922787516, - "grimmsnarl": 4.732856013615169, - "obstagoon": 3.4591607934877313, - "perrserker": 2.7407818585526584, - "alcremie": 1.7815557162813835, - "falinks": 2.9549557226027945, - "pincurchin": 3.097064164888926, - "frosmoth": 3.1280685858195403, - "indeedee-male": 4.465977898729245, - "morpeko": 4.045936600772379, - "copperajah": 2.2171125643829357, - "duraludon": 1.2621544158063456, - "drakloak": 5.280533725471933, - "scolipede": 3.0089115990827064 + "ivysaur": 4.026288309876639, + "charmeleon": 3.0742441852165516, + "wartortle": 2.956575693864648, + "butterfree": 4.881281096662721, + "raichu": 6.155440420474985, + "raichu-alola": 5.113965698586069, + "sandslash": 2.0659415289207295, + "sandslash-alola": 1.6540473374490707, + "nidoqueen": 2.5587325350631946, + "nidoking": 1.6547836454767424, + "clefairy": 9.962162134550905, + "clefable": 2.3966110806476837, + "jigglypuff": 32.22245222487439, + "wigglytuff": 2.235573404811089, + "gloom": 6.7207380270706585, + "vileplume": 3.6094200974783757, + "dugtrio": 3.842646341032795, + "dugtrio-alola": 3.2121760775915082, + "persian": 4.748325095639936, + "persian-alola": 6.252408839056201, + "golduck": 3.3001142839436737, + "poliwrath": 1.7388246233539935, + "kadabra": 6.642455997999126, + "machoke": 3.557251823929632, + "tentacruel": 2.3231625231299913, + "slowbro": 1.9653348807168052, + "magneton": 2.656154218148515, + "haunter": 5.553007214314341, + "kingler": 2.4681364891569904, + "exeggutor": 3.962116782471486, + "marowak": 3.166492844194148, + "marowak-alola": 2.1161756892290313, + "hitmonlee": 2.5500101967796382, + "hitmonchan": 2.037663776749921, + "lickitung": 1.9916779783340068, + "weezing": 1.2325146587839972, + "weezing-galar": 2.460340315610406, + "rhydon": 2.1426606622285727, + "chansey": 32.3202216478013, + "tangela": 6.333365292331514, + "kangaskhan": 2.0028932900558956, + "seadra": 3.875809755522998, + "seaking": 2.7391550530756668, + "starmie": 2.044255551641898, + "mr-mime": 7.116986327954216, + "mr-mime-galar": 4.895907197177425, + "scyther": 2.423519077051638, + "jynx": 7.430185739635013, + "electabuzz": 2.8571387477474577, + "magmar": 1.3312159586033603, + "tauros": 2.167624307688576, + "ditto": 3.315162539509738, + "vaporeon": 3.6458292466781734, + "jolteon": 2.200152524614086, + "flareon": 1.8771222560735121, + "porygon": 2.9601326408532858, + "dragonair": 2.0256819033274676, + "noctowl": 5.213572757329029, + "lanturn": 2.1632241502844822, + "togetic": 5.388183070278828, + "xatu": 3.5296961042038806, + "bellossom": 3.866488870770051, + "azumarill": 2.055732008941449, + "sudowoodo": 2.5938023584633045, + "politoed": 2.862174689217505, + "quagsire": 4.948556667504149, + "slowking": 3.5862658589368177, + "dunsparce": 3.3895452376018445, + "qwilfish": 3.0757587073367514, + "sneasel": 3.3566987680032696, + "piloswine": 1.7171837753566006, + "octillery": 2.57704632025979, + "mantine": 2.1721712945319687, + "skarmory": 1.6414775380472704, + "hitmontop": 2.662836448880727, + "miltank": 3.7647156718840264, + "grovyle": 14.34332346661524, + "sceptile": 2.3980272838928736, + "combusken": 2.6510533826421616, + "blaziken": 1.2192112291712296, + "marshtomp": 2.6970211024837054, + "swampert": 1.3233895290012698, + "linoone": 5.778041186114184, + "linoone-galar": 6.5688536873882075, + "pelipper": 4.8758877423359275, + "ninjask": 7.595203804959126, + "exploud": 1.771050021011089, + "lairon": 1.7631156294549224, + "manectric": 1.7702039531086258, + "roselia": 4.661190705004174, + "sharpedo": 7.530838400226074, + "wailmer": 6.741192103102701, + "torkoal": 1.2401582958364652, + "flygon": 2.619420716802194, + "altaria": 1.376349198870289, + "whiscash": 2.0471454232426747, + "crawdaunt": 2.6337768518506, + "claydol": 4.176509730282953, + "cradily": 3.340333728869215, + "armaldo": 2.0518226088430263, + "dusclops": 4.020152960583444, + "absol": 2.8210526491793138, + "glalie": 4.781215684352763, + "sealeo": 3.3460692215600556, + "relicanth": 1.7129089130348203, + "metang": 3.069430334971198, + "luxray": 4.056419853753352, + "vespiquen": 2.5481784161663583, + "cherrim": 9.391221166219488, + "gastrodon": 2.391015976282776, + "drifblim": 4.502208274482279, + "lopunny": 4.053486740529534, + "skuntank": 1.4693438916128263, + "bronzong": 3.34756101025783, + "munchlax": 2.7092048639142785, + "drapion": 2.5534127419032124, + "abomasnow": 4.776406190230316, + "froslass": 3.3739140061842514, + "rotom": 4.3071748797082545, + "stoutland": 2.583662321070254, + "liepard": 10.961155562513282, + "musharna": 2.0491920428375896, + "unfezant": 4.842349575604806, + "boldore": 3.114438941499383, + "swoobat": 5.049921404362729, + "audino": 2.2351568859566435, + "gurdurr": 2.142002357787508, + "palpitoad": 3.9362005974214256, + "seismitoad": 7.110800714364823, + "scolipede": 3.0089115990827064, + "whimsicott": 3.6327714329372034, + "lilligant": 4.9939176210052665, + "basculin-red-striped": 2.8819598776800666, + "basculin-blue-striped": 3.8224789654656934, + "krookodile": 3.980825631094867, + "maractus": 3.679767989858231, + "crustle": 2.21674726157592, + "sigilyph": 2.227758703198893, + "cofagrigus": 2.529329443570446, + "garbodor": 1.852748056178102, + "cinccino": 4.919617911478593, + "vanillish": 2.4164511174725205, + "emolga": 2.5882564492702302, + "escavalier": 1.7168239002325403, + "amoonguss": 3.1080478474231628, + "jellicent": 2.078372491572299, + "galvantula": 1.7126925409165255, + "klang": 2.27761850905773, + "klinklang": 2.9241026528218064, + "beheeyem": 2.4254750160227228, + "lampent": 2.3637530566414093, + "fraxure": 1.6319365200947966, + "beartic": 1.9692447227513035, + "cryogonal": 2.2895683893921306, + "accelgor": 3.859262569154975, + "stunfisk": 1.3835664703575783, + "stunfisk-galar": 1.9972923507497102, + "mienshao": 3.1211668633343637, + "druddigon": 1.9266158616191562, + "golurk": 2.2704829504047863, + "bisharp": 2.424084058890183, + "bouffalant": 1.470910933682552, + "heatmor": 1.539316439298414, + "durant": 2.577747882342155, + "diggersby": 3.366739384151909, + "talonflame": 2.2601018247193463, + "pangoro": 1.9919129384404575, + "doublade": 2.2280062607438174, + "malamar": 5.489467779633117, + "barbaracle": 1.5126454884793474, + "heliolisk": 4.158020955493264, + "tyrantrum": 1.6011217162772222, + "aurorus": 3.21704083774177, + "hawlucha": 3.2953812874177983, + "dedenne": 2.8958835254881716, + "klefki": 2.7176860611192106, + "trevenant": 4.075187945812662, + "gourgeist-average": 5.008570003970945, + "charjabug": 4.221522139882554, + "vikavolt": 2.0462856472044946, + "ribombee": 5.606609315990234, + "lycanroc-midday": 3.4015145040235124, + "lycanroc-midnight": 2.6178749107505714, + "mudsdale": 1.7744819348961496, + "araquanid": 2.9089897439965275, + "lurantis": 3.7637342698630327, + "shiinotic": 5.554615303095362, + "salazzle": 2.685580626736185, + "bewear": 1.581349163175104, + "tsareena": 4.648925704216372, + "comfey": 5.578351994755726, + "oranguru": 3.441480201895528, + "passimian": 1.990719459274751, + "palossand": 2.1001233647250324, + "pyukumuku": 50.11683726107107, + "togedemaru": 2.102137193090971, + "mimikyu-disguised": 4.755644701235254, + "greedent": 2.1006867075190367, + "orbeetle": 2.4481422235249575, + "thievul": 2.6721694529372337, + "eldegoss": 6.613322564258079, + "dubwool": 3.3761148193123782, + "drednaw": 1.208701674114828, + "boltund": 5.057268081007747, + "carkol": 1.791684626844628, + "coalossal": 1.498677812440938, + "sandaconda": 3.1105710035423195, + "cramorant": 5.339231925294285, + "barraskewda": 4.894704816988558, + "toxtricity-amped": 2.2959220585650337, + "centiskorch": 1.7926400770876048, + "grapploct": 1.6207829315953508, + "polteageist": 3.4142708243362874, + "hatterene": 2.6893013016288982, + "grimmsnarl": 4.733098661273861, + "obstagoon": 3.4593446869828623, + "perrserker": 2.736919575316916, + "alcremie": 1.780226414077123, + "falinks": 2.9544084364553536, + "pincurchin": 3.09445839797681, + "frosmoth": 3.121968725197088, + "indeedee-male": 4.461478342632383, + "morpeko": 4.048196078466954, + "copperajah": 2.2163030324533515, + "duraludon": 1.260006240514112, + "drakloak": 5.280822220106947 }, "whimsicott": { - "ivysaur": 2.8517787262876646, - "charmeleon": 3.0700976775335125, - "wartortle": 3.5513430343773393, - "butterfree": 4.018019308728188, - "raichu": 5.416390161652851, - "raichu-alola": 3.513430198774177, - "sandslash": 3.178286843299938, - "sandslash-alola": 1.715223777380043, - "nidoqueen": 2.306915971582632, - "nidoking": 1.7566374844717072, - "clefairy": 8.299939981866368, - "clefable": 1.9175796350782226, - "jigglypuff": 25.396452754342885, - "wigglytuff": 1.8756547514320827, - "gloom": 4.528120284897881, - "vileplume": 3.231885831765493, - "dugtrio": 4.54052386063068, - "dugtrio-alola": 3.246629041523878, - "persian": 4.064238963844339, - "persian-alola": 5.585351286250812, - "golduck": 4.1346537086447475, - "poliwrath": 2.6276693031065745, - "kadabra": 3.9031394071476533, - "machoke": 4.761116931167381, - "tentacruel": 1.926162398976163, - "slowbro": 2.220798914799642, - "magneton": 2.430818413317608, - "haunter": 3.8482148291972713, - "kingler": 4.028767786571288, - "exeggutor": 2.162218759334541, - "marowak": 4.159209353371333, - "marowak-alola": 1.643500335263766, - "hitmonlee": 3.297421405318129, - "hitmonchan": 2.5784966180427276, - "lickitung": 1.7730943075445973, - "weezing": 1.0847342369362598, - "weezing-galar": 1.9523551286292697, - "rhydon": 4.6856058629935085, - "chansey": 26.960436813449718, - "tangela": 6.468504349949559, - "kangaskhan": 1.9626837651589941, - "seadra": 6.719605142838471, - "seaking": 2.75199093921285, - "starmie": 1.6913095413334038, - "mr-mime": 6.647751390038037, - "mr-mime-galar": 2.995505802369829, - "scyther": 2.746111116395591, - "jynx": 3.994292930064123, - "electabuzz": 2.705521740254654, - "magmar": 1.138006392457733, - "tauros": 2.1752219595787663, - "ditto": 3.6921721993420222, - "vaporeon": 3.899966264669776, - "jolteon": 1.9252137539424128, - "flareon": 1.645797025022107, - "porygon": 2.6386536015091586, - "dragonair": 2.3693255926811387, - "noctowl": 5.272011261652749, - "lanturn": 2.6080490706655612, - "togetic": 4.610977571725591, - "xatu": 3.207003054224937, - "bellossom": 2.494322392855047, - "azumarill": 2.113485821369337, - "sudowoodo": 3.6898872334541513, - "politoed": 3.27198796737526, - "quagsire": 9.999686664546047, - "slowking": 2.8575811133835147, - "dunsparce": 2.906998880730949, - "qwilfish": 2.9294080653415033, - "sneasel": 2.758489777696144, - "piloswine": 1.8706355009368054, - "octillery": 2.703026712460775, - "mantine": 2.3711153476712807, - "skarmory": 1.451835643247726, - "hitmontop": 3.2874220147950153, - "miltank": 3.657015691354644, - "grovyle": 8.667175787470583, - "sceptile": 1.5917507516613212, - "combusken": 3.489709665437933, - "blaziken": 1.6148611640610504, - "marshtomp": 4.812632031227428, - "swampert": 2.2211838618939717, - "linoone": 5.014603436102498, - "linoone-galar": 5.938815526496499, - "pelipper": 5.675901604425501, - "ninjask": 7.8837660497594655, - "exploud": 1.4013772595770684, - "lairon": 2.43358478504567, - "manectric": 1.6671360779135966, - "roselia": 4.032225113503074, - "sharpedo": 7.187415333312538, - "wailmer": 8.073624982680947, - "torkoal": 1.408177313768483, - "flygon": 2.9288168626342888, - "altaria": 1.8211416737172965, - "whiscash": 3.8735864904700605, - "crawdaunt": 2.9844610901934336, - "claydol": 3.9642768078469475, - "cradily": 1.9321976543750554, - "armaldo": 1.901239490367507, - "dusclops": 3.258390160047219, - "absol": 2.1546328841762805, - "glalie": 3.7474544849645772, - "sealeo": 3.819295721170129, - "relicanth": 4.176807494074026, - "metang": 2.2912296475689806, - "luxray": 3.8805352293843365, - "vespiquen": 2.7608726961116603, - "cherrim": 6.3323875275385895, - "gastrodon": 3.96644021566548, - "drifblim": 4.147159494654169, - "lopunny": 3.435941071377071, - "skuntank": 1.214266795556464, - "bronzong": 2.3779134000802573, - "munchlax": 1.9967952177788078, - "drapion": 2.14093971422293, - "abomasnow": 3.1629404743390346, - "froslass": 2.507416091438813, - "rotom": 3.733779236598145, - "stoutland": 2.314446978596003, - "liepard": 8.707864409145643, - "musharna": 1.489110610825381, - "unfezant": 4.910375367356014, - "boldore": 5.02510498918778, - "swoobat": 4.5878938329419645, - "audino": 2.0279001743728426, - "gurdurr": 2.8005684896399137, - "palpitoad": 7.333975006657882, - "seismitoad": 8.425434563070494, - "scolipede": 3.5096637181110797, - "lilligant": 3.376848900677717, - "basculin-red-striped": 3.78120359016627, - "basculin-blue-striped": 5.246641858004324, - "krookodile": 3.9469561944958436, - "maractus": 2.5550912251525717, - "crustle": 2.177312741995442, - "sigilyph": 1.8996601627441345, - "cofagrigus": 2.588137746896169, - "garbodor": 1.2415457845485158, - "cinccino": 4.14536209153605, - "vanillish": 1.7483468130295736, - "emolga": 2.9015828496628924, - "escavalier": 1.6786963529975791, - "amoonguss": 1.9909778843457289, - "jellicent": 1.716822895125036, - "galvantula": 1.5678764591116123, - "klang": 2.1436719238248045, - "klinklang": 2.4801422721675284, - "beheeyem": 1.7398856711818742, - "lampent": 1.7510412545858351, - "fraxure": 2.031899132249599, - "beartic": 1.4708800787910872, - "cryogonal": 1.499961372389986, - "accelgor": 2.8091623327337283, - "stunfisk": 1.702685344401818, - "stunfisk-galar": 2.444872405601255, - "mienshao": 4.1091883418833115, - "druddigon": 2.0821665922199077, - "golurk": 2.513335292896859, - "bisharp": 1.9313263264082337, - "bouffalant": 1.2075456348320328, - "heatmor": 1.467082568795674, - "durant": 2.716038653559001, - "diggersby": 4.236492007580242, - "talonflame": 2.1451446780561985, - "pangoro": 3.0066691922516604, - "doublade": 1.8949729011664396, - "malamar": 3.3812237929444917, - "barbaracle": 2.470293184414192, - "heliolisk": 3.739325035679859, - "tyrantrum": 1.7907600840238507, - "aurorus": 2.678365256421847, - "hawlucha": 3.677671396785543, - "dedenne": 2.8009319634216374, - "klefki": 2.2166458509998215, - "trevenant": 3.478056878757331, - "gourgeist-average": 5.539952895110612, - "charjabug": 3.858930001894021, - "vikavolt": 1.5739892270070495, - "ribombee": 4.77773973222212, - "lycanroc-midday": 4.143857491409177, - "lycanroc-midnight": 3.0672033657929054, - "mudsdale": 2.228731836667233, - "araquanid": 2.1845484653721554, - "lurantis": 2.6092172224547605, - "shiinotic": 4.449954504533581, - "salazzle": 2.275808516887982, - "bewear": 2.008741497956313, - "tsareena": 3.2606853497026593, - "comfey": 4.405585494497075, - "oranguru": 2.5482660547941585, - "passimian": 2.615794453473499, - "palossand": 2.838967818944724, - "pyukumuku": 39.67758569887157, - "togedemaru": 1.6264419430633086, - "mimikyu-disguised": 3.8556151701177557, - "greedent": 2.024420292930359, - "orbeetle": 1.854894389601156, - "thievul": 2.2672613886402355, - "eldegoss": 4.173052236093583, - "dubwool": 3.0401416846235265, - "drednaw": 2.3863541485389606, - "boltund": 4.994124524732869, - "carkol": 2.1843617835389777, - "coalossal": 1.8354225090671772, - "sandaconda": 4.753290568822124, - "cramorant": 5.939069879291084, - "barraskewda": 6.920075824658767, - "toxtricity-amped": 2.2020234431631023, - "centiskorch": 1.7866446408119985, - "grapploct": 2.1141247924271975, - "polteageist": 2.8027193212613746, - "hatterene": 2.384015429838473, - "grimmsnarl": 5.133420914456602, - "obstagoon": 2.9947087013998868, - "perrserker": 2.6668413412098366, - "alcremie": 1.3663665858599496, - "falinks": 3.524785110041365, - "pincurchin": 3.0628673165939206, - "frosmoth": 2.4381561254006607, - "indeedee-male": 2.943672430678521, - "morpeko": 3.3815442113180754, - "copperajah": 1.715497347932913, - "duraludon": 1.4006731165767836, - "drakloak": 6.030309699335465, - "whimsicott": 3.3343879735128783 + "ivysaur": 2.842346802542212, + "charmeleon": 3.0613544801912385, + "wartortle": 3.557098802909601, + "butterfree": 4.006244243362099, + "raichu": 5.4250387380498175, + "raichu-alola": 3.51219071051828, + "sandslash": 3.1847435943111515, + "sandslash-alola": 1.711478202111505, + "nidoqueen": 2.299375303627538, + "nidoking": 1.755594931350101, + "clefairy": 8.292668033302984, + "clefable": 1.9177645661319171, + "jigglypuff": 25.393947981205645, + "wigglytuff": 1.8750229252631256, + "gloom": 4.5023803131716935, + "vileplume": 3.232038088196809, + "dugtrio": 4.550830819681852, + "dugtrio-alola": 3.244218259389866, + "persian": 4.06193853508467, + "persian-alola": 5.597898927215889, + "golduck": 4.143625273007265, + "poliwrath": 2.637939634943308, + "kadabra": 3.8998044129609974, + "machoke": 4.775774919935132, + "tentacruel": 1.9213379389325786, + "slowbro": 2.220455077815112, + "magneton": 2.423048824904763, + "haunter": 3.8471074952993947, + "kingler": 4.042912450367824, + "exeggutor": 2.1634833861730876, + "marowak": 4.165523352873575, + "marowak-alola": 1.639527970052016, + "hitmonlee": 3.3038055536524578, + "hitmonchan": 2.5801922249263933, + "lickitung": 1.7723200614268046, + "weezing": 1.077746517559358, + "weezing-galar": 1.9439354353080827, + "rhydon": 4.694091410267969, + "chansey": 26.909418084326298, + "tangela": 6.479990801763009, + "kangaskhan": 1.9660638236872299, + "seadra": 6.740765992343426, + "seaking": 2.75053852305781, + "starmie": 1.6917187783143164, + "mr-mime": 6.643468948661788, + "mr-mime-galar": 2.9891530020275257, + "scyther": 2.742984923151151, + "jynx": 3.982839210914409, + "electabuzz": 2.7072004417384727, + "magmar": 1.1324448388343993, + "tauros": 2.178583466878117, + "ditto": 3.6741521611096593, + "vaporeon": 3.9068084540651538, + "jolteon": 1.9256524322625128, + "flareon": 1.6409372261736792, + "porygon": 2.637280077869182, + "dragonair": 2.374292647400052, + "noctowl": 5.258584440485873, + "lanturn": 2.615558951346099, + "togetic": 4.601259719966816, + "xatu": 3.19856219548521, + "bellossom": 2.4963710128122245, + "azumarill": 2.106542999036816, + "sudowoodo": 3.697574635294629, + "politoed": 3.2791702685621926, + "quagsire": 10.038085705246269, + "slowking": 2.858573455953249, + "dunsparce": 2.902079154716224, + "qwilfish": 2.919668915931271, + "sneasel": 2.7595106127764875, + "piloswine": 1.8711358285234865, + "octillery": 2.7004961712813618, + "mantine": 2.3695819624952383, + "skarmory": 1.4475344517306818, + "hitmontop": 3.2935669627814237, + "miltank": 3.6569228801969254, + "grovyle": 8.681187914788167, + "sceptile": 1.5943313770137069, + "combusken": 3.489633144093818, + "blaziken": 1.6133650824034, + "marshtomp": 4.826495806876981, + "swampert": 2.22696338266869, + "linoone": 5.013254944884073, + "linoone-galar": 5.952212816481088, + "pelipper": 5.667323477148699, + "ninjask": 7.8816400418629415, + "exploud": 1.3999953031049257, + "lairon": 2.4280403573394955, + "manectric": 1.6656742763539172, + "roselia": 4.0309239015020895, + "sharpedo": 7.2177679671200465, + "wailmer": 8.077268830504618, + "torkoal": 1.4040124213830572, + "flygon": 2.933538457001495, + "altaria": 1.8221594152019498, + "whiscash": 3.878316200792919, + "crawdaunt": 2.9934902053018186, + "claydol": 3.9652278587984777, + "cradily": 1.927589686294895, + "armaldo": 1.9026958295966696, + "dusclops": 3.259786919128249, + "absol": 2.154829962759718, + "glalie": 3.741444444816895, + "sealeo": 3.8196325155056243, + "relicanth": 4.190786937782065, + "metang": 2.2859322518092346, + "luxray": 3.8824333371438664, + "vespiquen": 2.757899252739998, + "cherrim": 6.336925764201714, + "gastrodon": 3.976897496371043, + "drifblim": 4.147341609499369, + "lopunny": 3.4343267242775646, + "skuntank": 1.2127187182721206, + "bronzong": 2.3722550076710323, + "munchlax": 1.991198527360683, + "drapion": 2.1403329278567074, + "abomasnow": 3.1589133303884713, + "froslass": 2.502713626501766, + "rotom": 3.738282905798212, + "stoutland": 2.312931430334979, + "liepard": 8.724742170872215, + "musharna": 1.489192523087082, + "unfezant": 4.895751838756345, + "boldore": 5.036361784297364, + "swoobat": 4.575824377033601, + "audino": 2.0247573380853994, + "gurdurr": 2.8110905846387535, + "palpitoad": 7.3544908879675095, + "seismitoad": 8.389075492382933, + "scolipede": 3.507971183686747, + "whimsicott": 3.3343879735128783, + "lilligant": 3.3799315951271574, + "basculin-red-striped": 3.7871776864030644, + "basculin-blue-striped": 5.262703116688706, + "krookodile": 3.9608257181535285, + "maractus": 2.5602204252134015, + "crustle": 2.179231795584409, + "sigilyph": 1.8937859806720394, + "cofagrigus": 2.5888044037929934, + "garbodor": 1.2318151532767112, + "cinccino": 4.13901820826056, + "vanillish": 1.7429300766049107, + "emolga": 2.899567769004413, + "escavalier": 1.6788669295329202, + "amoonguss": 1.9793952089654916, + "jellicent": 1.7186743177768962, + "galvantula": 1.5686473716919962, + "klang": 2.1387074505408794, + "klinklang": 2.4715217490754418, + "beheeyem": 1.739650955335444, + "lampent": 1.7460244432373337, + "fraxure": 2.0377509136566845, + "beartic": 1.4686927084953383, + "cryogonal": 1.495870548549004, + "accelgor": 2.8022889515209766, + "stunfisk": 1.7066908682093551, + "stunfisk-galar": 2.447311817734766, + "mienshao": 4.118045881109359, + "druddigon": 2.0817724228281103, + "golurk": 2.519631256788694, + "bisharp": 1.9256370727903684, + "bouffalant": 1.204715506865154, + "heatmor": 1.4628146231153467, + "durant": 2.7114680800216817, + "diggersby": 4.245217677067156, + "talonflame": 2.1353902078376903, + "pangoro": 3.0164921778514557, + "doublade": 1.8908614327079556, + "malamar": 3.386811910429091, + "barbaracle": 2.4687047063024607, + "heliolisk": 3.74059421620582, + "tyrantrum": 1.794316630986929, + "aurorus": 2.67563996183285, + "hawlucha": 3.675613335285118, + "dedenne": 2.8025179736020576, + "klefki": 2.2102048898335207, + "trevenant": 3.486504401898695, + "gourgeist-average": 5.535530108994099, + "charjabug": 3.8648635704998617, + "vikavolt": 1.571805363721618, + "ribombee": 4.776513317782486, + "lycanroc-midday": 4.146968548393349, + "lycanroc-midnight": 3.0724879679115107, + "mudsdale": 2.235691360249976, + "araquanid": 2.1829601801440743, + "lurantis": 2.6101993891147375, + "shiinotic": 4.44774304556883, + "salazzle": 2.260101633926946, + "bewear": 2.0114225939512798, + "tsareena": 3.2607478375411096, + "comfey": 4.40973811480468, + "oranguru": 2.546624481407581, + "passimian": 2.6206283987694485, + "palossand": 2.844373057858225, + "pyukumuku": 39.603252581257635, + "togedemaru": 1.6176514860470346, + "mimikyu-disguised": 3.8572978825104256, + "greedent": 2.0223097614700216, + "orbeetle": 1.8535815493908752, + "thievul": 2.2700694918545326, + "eldegoss": 4.176751012292333, + "dubwool": 3.042492324365437, + "drednaw": 2.3902550434316736, + "boltund": 5.002214205216482, + "carkol": 2.1777545247053594, + "coalossal": 1.8315701168168061, + "sandaconda": 4.767905223738555, + "cramorant": 5.949729485265765, + "barraskewda": 6.946319059641954, + "toxtricity-amped": 2.199258106822789, + "centiskorch": 1.7801306066849123, + "grapploct": 2.121540031539727, + "polteageist": 2.8065658939862015, + "hatterene": 2.383807678711838, + "grimmsnarl": 5.148279560321111, + "obstagoon": 2.9991495842945817, + "perrserker": 2.6627268003807725, + "alcremie": 1.3655381219254177, + "falinks": 3.529749197210001, + "pincurchin": 3.067256001798788, + "frosmoth": 2.4319137685672447, + "indeedee-male": 2.9388685953216815, + "morpeko": 3.3864405834731834, + "copperajah": 1.7094158230663075, + "duraludon": 1.399542044575547, + "drakloak": 6.046753319035661 }, "lilligant": { - "ivysaur": 2.9121314711530317, - "charmeleon": 3.130598949623728, - "wartortle": 4.542012509899093, - "butterfree": 3.268734572130951, - "raichu": 5.895915426645841, - "raichu-alola": 3.947962488624194, - "sandslash": 3.992651915298374, - "sandslash-alola": 1.8752344687433526, - "nidoqueen": 3.1027718104349225, - "nidoking": 2.0680338879487574, - "clefairy": 9.685959746401899, - "clefable": 2.2903754933858904, - "jigglypuff": 30.266224904789723, - "wigglytuff": 2.2777218416207647, - "gloom": 4.827090804469785, - "vileplume": 2.6998203906011153, - "dugtrio": 5.674286697952661, - "dugtrio-alola": 4.013180553312393, - "persian": 4.784603683593993, - "persian-alola": 5.0250423820707955, - "golduck": 5.309913177137052, - "poliwrath": 3.2756946682793697, - "kadabra": 4.0716635574624185, - "machoke": 4.598198827765451, - "tentacruel": 2.4631943207534786, - "slowbro": 2.900328500908934, - "magneton": 3.0901844965409846, - "haunter": 4.115200008709734, - "kingler": 5.177658109186162, - "exeggutor": 3.4542091346097834, - "marowak": 5.491738256002172, - "marowak-alola": 1.787577232509328, - "hitmonlee": 2.327000052180116, - "hitmonchan": 2.171247395254781, - "lickitung": 2.1340967172858916, - "weezing": 1.3067008623312262, - "weezing-galar": 2.2907452427497224, - "rhydon": 6.772402143958844, - "chansey": 19.894631015444535, - "tangela": 7.538727768334692, - "kangaskhan": 2.1307716896032263, - "seadra": 8.42635534526803, - "seaking": 3.7370469669957393, - "starmie": 2.184111503330965, - "mr-mime": 6.979201221454483, - "mr-mime-galar": 3.5623476570401555, - "scyther": 1.9899644426292862, - "jynx": 4.003841185279793, - "electabuzz": 3.0219358185771656, - "magmar": 1.2528252260119737, - "tauros": 2.490579589637088, - "ditto": 4.338294604187311, - "vaporeon": 4.981048685962649, - "jolteon": 2.1213118472645465, - "flareon": 1.7269386277233747, - "porygon": 3.0964321075475727, - "dragonair": 1.6487198609553406, - "noctowl": 4.492747741108353, - "lanturn": 3.39911805586841, - "togetic": 4.347834226174215, - "xatu": 3.3255214237707698, - "bellossom": 2.865950024910271, - "azumarill": 1.7572665663966482, - "sudowoodo": 4.654788949747193, - "politoed": 4.157203871099215, - "quagsire": 13.684155359501041, - "slowking": 3.563247435778312, - "dunsparce": 3.344287874158033, - "qwilfish": 4.117744222234231, - "sneasel": 2.426955661274814, - "piloswine": 2.390692117068472, - "octillery": 3.721368419898845, - "mantine": 2.420035704032938, - "skarmory": 1.4932659981135559, - "hitmontop": 2.9175153164883243, - "miltank": 4.3818883166195235, - "grovyle": 9.48664130948774, - "sceptile": 1.6644597770663754, - "combusken": 2.8710534136991948, - "blaziken": 1.3444162524977146, - "marshtomp": 6.651389562305091, - "swampert": 3.123164835562937, - "linoone": 5.6021855715881825, - "linoone-galar": 5.510467163444671, - "pelipper": 6.827078987788226, - "ninjask": 5.285264788208532, - "exploud": 1.6539304814097293, - "lairon": 3.1898489437953006, - "manectric": 2.027258243362798, - "roselia": 3.6915107910280947, - "sharpedo": 8.325346244330728, - "wailmer": 10.751875494784342, - "torkoal": 1.532493000297235, - "flygon": 2.6394188367845297, - "altaria": 1.1748291739488876, - "whiscash": 5.547787520928841, - "crawdaunt": 3.7962094490552847, - "claydol": 5.045986163242253, - "cradily": 2.6268526392132046, - "armaldo": 2.0921186578544506, - "dusclops": 3.725203094341471, - "absol": 2.191891034797848, - "glalie": 4.319811218735067, - "sealeo": 4.902889528049533, - "relicanth": 5.611034831478024, - "metang": 2.875199405535775, - "luxray": 4.624129997265435, - "vespiquen": 1.9496037214209998, - "cherrim": 7.231247871598191, - "gastrodon": 5.211973296152337, - "drifblim": 3.9356236200409063, - "lopunny": 3.905404407022502, - "skuntank": 1.2807386660314237, - "bronzong": 2.951606940837662, - "munchlax": 2.1350923727898863, - "drapion": 2.265189629539438, - "abomasnow": 3.514042284275979, - "froslass": 3.006723010070319, - "rotom": 4.638458074188359, - "stoutland": 2.7240310717636427, - "liepard": 8.49755671520163, - "musharna": 1.8516204530702631, - "unfezant": 5.116661943998844, - "boldore": 6.4566979363020245, - "swoobat": 4.760255134003407, - "audino": 2.4473014883048174, - "gurdurr": 2.8536786802505394, - "palpitoad": 10.229861001988354, - "seismitoad": 14.512179930447974, - "scolipede": 2.3600960517382874, - "whimsicott": 2.974303463648953, - "basculin-red-striped": 4.879092247016745, - "basculin-blue-striped": 6.622202449572862, - "krookodile": 4.769897195274192, - "maractus": 2.885101722468561, - "crustle": 2.379709415513368, - "sigilyph": 2.055776024964521, - "cofagrigus": 3.2120212741182432, - "garbodor": 1.5285707215266777, - "cinccino": 4.88784809625791, - "vanillish": 2.0737104240008994, - "emolga": 2.8619509371411347, - "escavalier": 1.457856352760572, - "amoonguss": 2.1823292937442655, - "jellicent": 2.263730071066943, - "galvantula": 1.5472159259691503, - "klang": 2.62722047691245, - "klinklang": 3.1157755465797425, - "beheeyem": 2.0765309887807932, - "lampent": 1.8766757331647015, - "fraxure": 1.4774049562810156, - "beartic": 1.7250027894053237, - "cryogonal": 1.4413402040216592, - "accelgor": 2.268745607719282, - "stunfisk": 2.160949300474449, - "stunfisk-galar": 2.8835220304934364, - "mienshao": 3.8746752048461355, - "druddigon": 1.681397693180012, - "golurk": 3.1262029723662375, - "bisharp": 2.258314230540824, - "bouffalant": 1.2164097269115857, - "heatmor": 1.5548351556108782, - "durant": 2.3856000663748964, - "diggersby": 5.349068466708198, - "talonflame": 2.0462974445928013, - "pangoro": 2.0354007096294873, - "doublade": 2.338592608607764, - "malamar": 5.109564889003634, - "barbaracle": 3.579973141927444, - "heliolisk": 3.9626873249476926, - "tyrantrum": 2.011757568224809, - "aurorus": 3.2240404382836174, - "hawlucha": 3.084740307710353, - "dedenne": 3.3917504188790697, - "klefki": 2.779205488856138, - "trevenant": 2.960751777258154, - "gourgeist-average": 4.825528253303874, - "charjabug": 4.121298943189352, - "vikavolt": 1.6261866609094575, - "ribombee": 3.7461283321680776, - "lycanroc-midday": 5.209090480270355, - "lycanroc-midnight": 3.6673647024776357, - "mudsdale": 2.6550367811583575, - "araquanid": 2.3527674690424893, - "lurantis": 2.8271030723328563, - "shiinotic": 4.046288658041846, - "salazzle": 2.266147149572129, - "bewear": 2.097958601082974, - "tsareena": 3.6752913976569275, - "comfey": 5.204027544575599, - "oranguru": 3.025374163435849, - "passimian": 2.727370066383309, - "palossand": 3.7770244609661763, - "pyukumuku": 62.15495460002449, - "togedemaru": 2.0191562524667717, - "mimikyu-disguised": 4.466953148602462, - "greedent": 2.5185617152128517, - "orbeetle": 1.9304167723708505, - "thievul": 1.8958992563488755, - "eldegoss": 4.724942521960808, - "dubwool": 3.471539239174271, - "drednaw": 3.268028637010596, - "boltund": 5.688597140646111, - "carkol": 2.582642421069873, - "coalossal": 2.182264593101275, - "sandaconda": 5.512039598044403, - "cramorant": 5.9899679496592775, - "barraskewda": 8.120565377622384, - "toxtricity-amped": 2.489664874616004, - "centiskorch": 1.5101196837446524, - "grapploct": 2.054299870718496, - "polteageist": 2.9181971504051534, - "hatterene": 2.837182241093043, - "grimmsnarl": 4.341168404928654, - "obstagoon": 3.1770684159272413, - "perrserker": 3.160938110971105, - "alcremie": 1.5010939168926618, - "falinks": 3.6569451788140164, - "pincurchin": 3.727569736525124, - "frosmoth": 2.0097236556229654, - "indeedee-male": 3.305795881833439, - "morpeko": 3.4054942014992653, - "copperajah": 2.1507971276595477, - "duraludon": 1.33535433419026, - "drakloak": 4.0595168468183775, - "lilligant": 3.6268510889163332 + "ivysaur": 2.9078556772159176, + "charmeleon": 3.1199168648359716, + "wartortle": 4.552099231098541, + "butterfree": 3.2532826035054763, + "raichu": 5.904011610327087, + "raichu-alola": 3.951508088805957, + "sandslash": 4.001092819388193, + "sandslash-alola": 1.8713742347376114, + "nidoqueen": 3.101299197418521, + "nidoking": 2.0675125735225635, + "clefairy": 9.67745266890783, + "clefable": 2.29054446579012, + "jigglypuff": 30.263002405930344, + "wigglytuff": 2.2771930425577613, + "gloom": 4.8119113232952415, + "vileplume": 2.6951074375707074, + "dugtrio": 5.68990969394644, + "dugtrio-alola": 4.016295153834663, + "persian": 4.783602451364555, + "persian-alola": 5.030496050727541, + "golduck": 5.325086842671872, + "poliwrath": 3.282867656286332, + "kadabra": 4.070477077324971, + "machoke": 4.600009049609885, + "tentacruel": 2.462173642275355, + "slowbro": 2.9050788155629585, + "magneton": 3.0898414858294507, + "haunter": 4.112718398400771, + "kingler": 5.197232837486528, + "exeggutor": 3.4621495996127667, + "marowak": 5.507085933887133, + "marowak-alola": 1.7834741137845858, + "hitmonlee": 2.32372693833849, + "hitmonchan": 2.1680522630681893, + "lickitung": 2.134624928992371, + "weezing": 1.3025281314890598, + "weezing-galar": 2.2845699369918235, + "rhydon": 6.7987867933989445, + "chansey": 19.82550843775183, + "tangela": 7.558365882737641, + "kangaskhan": 2.1316998462239996, + "seadra": 8.45124116380814, + "seaking": 3.7419203515780737, + "starmie": 2.188018255365569, + "mr-mime": 6.975559390623443, + "mr-mime-galar": 3.559172776008675, + "scyther": 1.9814572552773355, + "jynx": 3.9944503364502593, + "electabuzz": 3.025561601596662, + "magmar": 1.2478193325715332, + "tauros": 2.4936318478881727, + "ditto": 4.318374626084672, + "vaporeon": 4.992774472128014, + "jolteon": 2.1229242943753057, + "flareon": 1.7216167607266448, + "porygon": 3.0957589421408285, + "dragonair": 1.6468648988273213, + "noctowl": 4.475852189050389, + "lanturn": 3.4120325203332795, + "togetic": 4.334478406010925, + "xatu": 3.31770891419239, + "bellossom": 2.869810413871205, + "azumarill": 1.7408890172721514, + "sudowoodo": 4.667790865434791, + "politoed": 4.1689358012009246, + "quagsire": 13.741889543140031, + "slowking": 3.568581755034944, + "dunsparce": 3.3384108173561087, + "qwilfish": 4.117045847356208, + "sneasel": 2.424812276168346, + "piloswine": 2.3922856899440763, + "octillery": 3.725291113566337, + "mantine": 2.417432208912003, + "skarmory": 1.4883423589323876, + "hitmontop": 2.9162306938311344, + "miltank": 4.384376720693463, + "grovyle": 9.498100243253845, + "sceptile": 1.6655849308188704, + "combusken": 2.86400912709479, + "blaziken": 1.3402674362178457, + "marshtomp": 6.675526670860663, + "swampert": 3.1344310680488325, + "linoone": 5.597073363737823, + "linoone-galar": 5.515398171229004, + "pelipper": 6.817771983419377, + "ninjask": 5.258755287379016, + "exploud": 1.6526558380140566, + "lairon": 3.1924173532102804, + "manectric": 2.0275346049203873, + "roselia": 3.688348930300264, + "sharpedo": 8.348238248178331, + "wailmer": 10.770919337665688, + "torkoal": 1.528650801191122, + "flygon": 2.638645175979965, + "altaria": 1.1710842029999393, + "whiscash": 5.562151950166536, + "crawdaunt": 3.808469416201298, + "claydol": 5.055001570103062, + "cradily": 2.628980535877591, + "armaldo": 2.0917926141695355, + "dusclops": 3.7223158614007934, + "absol": 2.1920862361726727, + "glalie": 4.314033623402253, + "sealeo": 4.908121538213733, + "relicanth": 5.632125702387426, + "metang": 2.8757196456085587, + "luxray": 4.6301203398131765, + "vespiquen": 1.9404675619967064, + "cherrim": 7.239983380631404, + "gastrodon": 5.225091408330096, + "drifblim": 3.9318797067989184, + "lopunny": 3.9025805365837654, + "skuntank": 1.2792867394649567, + "bronzong": 2.950815778351118, + "munchlax": 2.1311360234527346, + "drapion": 2.2633102902800735, + "abomasnow": 3.5105199140125096, + "froslass": 3.001134943225444, + "rotom": 4.645548276589618, + "stoutland": 2.723257514520724, + "liepard": 8.50897483147186, + "musharna": 1.8542111425293757, + "unfezant": 5.098783652306042, + "boldore": 6.476800631401028, + "swoobat": 4.749116430246254, + "audino": 2.4452807375534102, + "gurdurr": 2.857003185749038, + "palpitoad": 10.26772690124671, + "seismitoad": 14.514127826648604, + "scolipede": 2.351167455679448, + "whimsicott": 2.9723688163302846, + "lilligant": 3.6268510889163332, + "basculin-red-striped": 4.89005045956005, + "basculin-blue-striped": 6.643691439747107, + "krookodile": 4.785036851278704, + "maractus": 2.891208076158035, + "crustle": 2.379179154404942, + "sigilyph": 2.0515820726054015, + "cofagrigus": 3.2136286387952095, + "garbodor": 1.5224860983573643, + "cinccino": 4.882200065169563, + "vanillish": 2.0687071031730944, + "emolga": 2.8591316812898815, + "escavalier": 1.4552538531738166, + "amoonguss": 2.1761116240884397, + "jellicent": 2.26646401579186, + "galvantula": 1.546384874225364, + "klang": 2.626684911349207, + "klinklang": 3.112647391759455, + "beheeyem": 2.0780409762358167, + "lampent": 1.8702295537926354, + "fraxure": 1.4755189711586159, + "beartic": 1.7229919046207685, + "cryogonal": 1.4371110223275982, + "accelgor": 2.258906811441364, + "stunfisk": 2.1682600227230955, + "stunfisk-galar": 2.8876009168162238, + "mienshao": 3.874765834900069, + "druddigon": 1.6799804134968803, + "golurk": 3.132502200761479, + "bisharp": 2.255511537233958, + "bouffalant": 1.211246815731437, + "heatmor": 1.550458685805501, + "durant": 2.3794284259983254, + "diggersby": 5.363537059271971, + "talonflame": 2.0367553322065124, + "pangoro": 2.036583608687159, + "doublade": 2.3365522182131073, + "malamar": 5.122642964384887, + "barbaracle": 3.5865566891942997, + "heliolisk": 3.96557846079918, + "tyrantrum": 2.0138793993746904, + "aurorus": 3.2236878009479195, + "hawlucha": 3.0773931886082235, + "dedenne": 3.3948024644851156, + "klefki": 2.7763587730908554, + "trevenant": 2.9630330217100416, + "gourgeist-average": 4.820223980019387, + "charjabug": 4.127948215902979, + "vikavolt": 1.623204518466533, + "ribombee": 3.733285266539796, + "lycanroc-midday": 5.217933757112776, + "lycanroc-midnight": 3.6734586087046517, + "mudsdale": 2.6613082357555227, + "araquanid": 2.3499413362056263, + "lurantis": 2.8266566866847, + "shiinotic": 4.0417927522497274, + "salazzle": 2.253448855442715, + "bewear": 2.0971670648448164, + "tsareena": 3.6763089730712943, + "comfey": 5.208743088850552, + "oranguru": 3.0268529939145754, + "passimian": 2.7268495871875613, + "palossand": 3.786735388184584, + "pyukumuku": 62.17338035731821, + "togedemaru": 2.0153618408126657, + "mimikyu-disguised": 4.46534696402521, + "greedent": 2.519333692324033, + "orbeetle": 1.9285620805238648, + "thievul": 1.8962660022935731, + "eldegoss": 4.730798313851519, + "dubwool": 3.473754923248281, + "drednaw": 3.276808537418848, + "boltund": 5.696931103190983, + "carkol": 2.5777599061140952, + "coalossal": 2.1802338276945874, + "sandaconda": 5.520849354945653, + "cramorant": 5.991631545769523, + "barraskewda": 8.140383276695825, + "toxtricity-amped": 2.488251855400403, + "centiskorch": 1.5042714525605252, + "grapploct": 2.055642302576527, + "polteageist": 2.9194404099900115, + "hatterene": 2.8381881163695755, + "grimmsnarl": 4.343457988336834, + "obstagoon": 3.1813965122937997, + "perrserker": 3.1604530484659152, + "alcremie": 1.4998886137671472, + "falinks": 3.6545736819648917, + "pincurchin": 3.7371314232349127, + "frosmoth": 2.001627071975854, + "indeedee-male": 3.3038154469613223, + "morpeko": 3.411610345644565, + "copperajah": 2.148506993372334, + "duraludon": 1.3347312441052606, + "drakloak": 4.055004800578883 }, "basculin-red-striped": { - "ivysaur": 3.0834034937112422, - "charmeleon": 5.60532189012252, - "wartortle": 2.569208503216127, - "butterfree": 4.558502586474064, - "raichu": 4.675960861664994, - "raichu-alola": 3.265539764734752, - "sandslash": 2.4371998265240524, - "sandslash-alola": 1.8877987217146415, - "nidoqueen": 3.529421487342599, - "nidoking": 2.4200292046344023, - "clefairy": 9.075130754661563, - "clefable": 1.998628778789068, - "jigglypuff": 27.045292215032227, - "wigglytuff": 1.9214746791750663, - "gloom": 6.0992626272020205, - "vileplume": 2.835209003530623, - "dugtrio": 5.13975684410549, - "dugtrio-alola": 4.953381651678416, - "persian": 4.200391213769604, - "persian-alola": 4.110589000632707, - "golduck": 2.8757640324240112, - "poliwrath": 2.1617951511301152, - "kadabra": 4.149448839042292, - "machoke": 4.1883490256972795, - "tentacruel": 3.0982312288099165, - "slowbro": 1.4376289591624865, - "magneton": 2.7606945440908994, - "haunter": 4.741306880781872, - "kingler": 2.0870528903590775, - "exeggutor": 1.7747403161957283, - "marowak": 3.850012328344714, - "marowak-alola": 2.7608367229031, - "hitmonlee": 3.051500120069306, - "hitmonchan": 2.498694191940417, - "lickitung": 1.9348246459991505, - "weezing": 1.6185043518612328, - "weezing-galar": 2.6332101498819727, - "rhydon": 3.2111308430063006, - "chansey": 29.491400706406836, - "tangela": 3.7771720711878967, - "kangaskhan": 1.810550200664097, - "seadra": 3.4648948408761404, - "seaking": 2.27856615677302, - "starmie": 1.2076490830998885, - "mr-mime": 7.129072547795932, - "mr-mime-galar": 3.9201838568770473, - "scyther": 2.773593687416824, - "jynx": 3.754225443172672, - "electabuzz": 2.111209893098045, - "magmar": 2.5882043324869013, - "tauros": 1.903856700871259, - "ditto": 3.150606950563973, - "vaporeon": 3.0871306220267023, - "jolteon": 1.8443213331089183, - "flareon": 3.8265211578123077, - "porygon": 2.6340045055836945, - "dragonair": 1.939966098899498, - "noctowl": 6.515328938045397, - "lanturn": 1.675382293604191, - "togetic": 5.99976820354487, - "xatu": 3.843766934788759, - "bellossom": 2.1408664099027197, - "azumarill": 2.0359323959955025, - "sudowoodo": 2.9370324873916047, - "politoed": 2.3747477328940403, - "quagsire": 4.616287004268017, - "slowking": 2.215906752622158, - "dunsparce": 3.253177967837239, - "qwilfish": 3.7144694477729705, - "sneasel": 2.351046936938655, - "piloswine": 2.043955955645805, - "octillery": 2.1765315777277046, - "mantine": 2.4203418761618773, - "skarmory": 1.8532114148994907, - "hitmontop": 3.1126152699950946, - "miltank": 3.3097487962308456, - "grovyle": 7.411686047247864, - "sceptile": 1.3593015148477408, - "combusken": 4.533013897739108, - "blaziken": 2.2741250994391358, - "marshtomp": 2.655719895876559, - "swampert": 1.3171568804772424, - "linoone": 5.086727726739404, - "linoone-galar": 4.4857068020710145, - "pelipper": 5.041010131991678, - "ninjask": 7.766765512278912, - "exploud": 1.6676307239633383, - "lairon": 2.6000456766538997, - "manectric": 1.676511725831256, - "roselia": 4.151232700734568, - "sharpedo": 4.276879045128792, - "wailmer": 6.161724988582295, - "torkoal": 2.3149874539706303, - "flygon": 3.396769256794186, - "altaria": 2.372380424412473, - "whiscash": 2.165565543413098, - "crawdaunt": 1.6863132783678345, - "claydol": 4.28248543016836, - "cradily": 2.1115975631448305, - "armaldo": 2.315153335188566, - "dusclops": 3.3128518519693566, - "absol": 2.045099021265079, - "glalie": 4.346919477253143, - "sealeo": 3.081305183818465, - "relicanth": 1.7687155580509815, - "metang": 2.7479782871000715, - "luxray": 3.2665881107507317, - "vespiquen": 2.795411618221629, - "cherrim": 5.173118762648995, - "gastrodon": 2.2692511194715, - "drifblim": 4.026063999701332, - "lopunny": 3.670328882094746, - "skuntank": 1.477670605486816, - "bronzong": 3.246186986752609, - "munchlax": 2.4092484845246815, - "drapion": 2.320616574701985, - "abomasnow": 2.7100022309600442, - "froslass": 3.022616641638148, - "rotom": 3.2532950007338997, - "stoutland": 2.3363272809776063, - "liepard": 6.956905153035859, - "musharna": 1.418402445325231, - "unfezant": 6.187050790342778, - "boldore": 3.490891597863624, - "swoobat": 5.503870458427948, - "audino": 2.150174212729327, - "gurdurr": 2.2362151620169874, - "palpitoad": 3.832237388427244, - "seismitoad": 6.0530373876718695, - "scolipede": 3.373759525393703, - "whimsicott": 2.877490531064324, - "lilligant": 2.678267998851661, - "basculin-blue-striped": 3.3593935555661565, - "krookodile": 3.544586137642053, - "maractus": 1.909898697942583, - "crustle": 2.4053910950792123, - "sigilyph": 2.397532518055992, - "cofagrigus": 2.368490436298175, - "garbodor": 2.0510808730505667, - "cinccino": 4.637445623775875, - "vanillish": 2.263402059774646, - "emolga": 2.5943710721190905, - "escavalier": 1.8745854531245745, - "amoonguss": 2.5195738617431003, - "jellicent": 1.4727922258910038, - "galvantula": 1.2987168406988336, - "klang": 2.514892125171282, - "klinklang": 3.3561888056846816, - "beheeyem": 1.786772600612382, - "lampent": 3.848956391802522, - "fraxure": 1.5197947807893457, - "beartic": 1.8475795934510217, - "cryogonal": 2.0219991917530975, - "accelgor": 3.0710421982383576, - "stunfisk": 1.6816111255321844, - "stunfisk-galar": 2.910982881637834, - "mienshao": 3.6765659257453858, - "druddigon": 1.9532293129245233, - "golurk": 2.475561131606999, - "bisharp": 2.266901802057428, - "bouffalant": 1.3034397647236082, - "heatmor": 2.61126181585602, - "durant": 2.554166504969929, - "diggersby": 4.181261198518888, - "talonflame": 4.036066112709021, - "pangoro": 1.7389553326226528, - "doublade": 2.0432726045063503, - "malamar": 2.5353883021764196, - "barbaracle": 1.4611401447629198, - "heliolisk": 2.9716362821521196, - "tyrantrum": 1.460252020343133, - "aurorus": 2.97330693932774, - "hawlucha": 3.722292114672273, - "dedenne": 2.628879883547065, - "klefki": 3.1766341967973237, - "trevenant": 2.843196359173798, - "gourgeist-average": 5.12266586892512, - "charjabug": 3.520984690273651, - "vikavolt": 1.6675361714040773, - "ribombee": 4.569330084803947, - "lycanroc-midday": 4.287787724775882, - "lycanroc-midnight": 3.0308544472406935, - "mudsdale": 1.9842816282228148, - "araquanid": 2.2318773368957046, - "lurantis": 2.1994898125819944, - "shiinotic": 4.564276001595239, - "salazzle": 4.394725057910303, - "bewear": 1.8238304298308545, - "tsareena": 2.843847821817271, - "comfey": 4.033745052032842, - "oranguru": 2.7011476502903076, - "passimian": 2.383531214414154, - "palossand": 2.394574332642606, - "pyukumuku": 38.59798913040449, - "togedemaru": 2.1156127597378713, - "mimikyu-disguised": 4.189608540614393, - "greedent": 2.069705754130895, - "orbeetle": 1.7462265898807037, - "thievul": 1.954366456584391, - "eldegoss": 3.5107588288822473, - "dubwool": 2.7070425961051736, - "drednaw": 1.25021699043918, - "boltund": 4.130425104850801, - "carkol": 4.25072235777076, - "coalossal": 3.465172423876063, - "sandaconda": 3.5323503587200316, - "cramorant": 5.3692029750281325, - "barraskewda": 4.105998903745174, - "toxtricity-amped": 2.5344838695333016, - "centiskorch": 2.9282783447259044, - "grapploct": 1.8748736096512912, - "polteageist": 2.6356398417583087, - "hatterene": 2.4642287061622645, - "grimmsnarl": 3.8348675174551894, - "obstagoon": 2.281252430632124, - "perrserker": 2.918489761525595, - "alcremie": 1.4614202694170997, - "falinks": 3.209118759040363, - "pincurchin": 2.6823026419188833, - "frosmoth": 2.603201675258117, - "indeedee-male": 3.3988166245299345, - "morpeko": 2.4075035974048418, - "copperajah": 2.5348848191270275, - "duraludon": 1.1316346024789257, - "drakloak": 4.678696989515439, - "basculin-red-striped": 2.631060078932681 + "ivysaur": 3.077066816625572, + "charmeleon": 5.620547837099229, + "wartortle": 2.570047244063896, + "butterfree": 4.55464903734488, + "raichu": 4.668693381986124, + "raichu-alola": 3.258067730872341, + "sandslash": 2.4395399924686165, + "sandslash-alola": 1.8865593934280818, + "nidoqueen": 3.5370216118991875, + "nidoking": 2.4271557960835946, + "clefairy": 9.075880419493092, + "clefable": 1.9998140528591999, + "jigglypuff": 27.05472667021767, + "wigglytuff": 1.9211775153774053, + "gloom": 6.0991757444315216, + "vileplume": 2.8297458884542355, + "dugtrio": 5.153644101301709, + "dugtrio-alola": 4.965730552986955, + "persian": 4.198725242929424, + "persian-alola": 4.107108398758663, + "golduck": 2.8757144706546094, + "poliwrath": 2.159090473680454, + "kadabra": 4.148687355134511, + "machoke": 4.192736923680517, + "tentacruel": 3.1037920374707078, + "slowbro": 1.434548002614962, + "magneton": 2.754613810986194, + "haunter": 4.74132609511232, + "kingler": 2.0847232864063727, + "exeggutor": 1.7695961656359729, + "marowak": 3.858229546741896, + "marowak-alola": 2.7686645570510686, + "hitmonlee": 3.0595913009064857, + "hitmonchan": 2.5027428660857645, + "lickitung": 1.933215717563403, + "weezing": 1.6186045151224135, + "weezing-galar": 2.6347179631632835, + "rhydon": 3.2167729795200124, + "chansey": 29.50995129325451, + "tangela": 3.761043164852175, + "kangaskhan": 1.8103740851544021, + "seadra": 3.458420416636402, + "seaking": 2.2783276050508525, + "starmie": 1.2054868602954967, + "mr-mime": 7.1278485122436965, + "mr-mime-galar": 3.9179570607726855, + "scyther": 2.7748134371991737, + "jynx": 3.7345890738869825, + "electabuzz": 2.1060830733944678, + "magmar": 2.5955353818519464, + "tauros": 1.9034414013765875, + "ditto": 3.1329601670623353, + "vaporeon": 3.0796018476527562, + "jolteon": 1.841229994359134, + "flareon": 3.836796802316108, + "porygon": 2.6314756437783853, + "dragonair": 1.9380713577610988, + "noctowl": 6.523145482086956, + "lanturn": 1.6735492548324054, + "togetic": 6.014248853112427, + "xatu": 3.8424746071636697, + "bellossom": 2.1348790883830495, + "azumarill": 2.0381937017948784, + "sudowoodo": 2.939376081831396, + "politoed": 2.3738973333481366, + "quagsire": 4.619995596983934, + "slowking": 2.2145606376399014, + "dunsparce": 3.254715866457854, + "qwilfish": 3.716470460441432, + "sneasel": 2.3494486062197373, + "piloswine": 2.047643392986345, + "octillery": 2.176081416747869, + "mantine": 2.416233057595272, + "skarmory": 1.8535473865992107, + "hitmontop": 3.1188584047541834, + "miltank": 3.3072820876716715, + "grovyle": 7.392611409215056, + "sceptile": 1.3549283644515318, + "combusken": 4.545508596873917, + "blaziken": 2.2820005367849943, + "marshtomp": 2.660667605665064, + "swampert": 1.3188232745920254, + "linoone": 5.0858056482078196, + "linoone-galar": 4.480595117358707, + "pelipper": 5.0320865753263355, + "ninjask": 7.770376593354306, + "exploud": 1.6675309818920927, + "lairon": 2.601853800487003, + "manectric": 1.6755601599467647, + "roselia": 4.145555661379275, + "sharpedo": 4.26884727699278, + "wailmer": 6.163235006072962, + "torkoal": 2.319435258408859, + "flygon": 3.401797849988391, + "altaria": 2.3743771795191377, + "whiscash": 2.167441202329972, + "crawdaunt": 1.682415420532784, + "claydol": 4.28622879106347, + "cradily": 2.108510718578372, + "armaldo": 2.3182963391508764, + "dusclops": 3.3143840187657236, + "absol": 2.0448997613320192, + "glalie": 4.350471318231448, + "sealeo": 3.0819577569000147, + "relicanth": 1.7675254130219322, + "metang": 2.74498544575638, + "luxray": 3.258437468988989, + "vespiquen": 2.796939430394363, + "cherrim": 5.156243861333328, + "gastrodon": 2.271863469442752, + "drifblim": 4.021362355719663, + "lopunny": 3.670904402810484, + "skuntank": 1.47757663017823, + "bronzong": 3.247307624341659, + "munchlax": 2.409538195353427, + "drapion": 2.3202961839425313, + "abomasnow": 2.703516773131112, + "froslass": 3.0259534121378504, + "rotom": 3.2493091670359817, + "stoutland": 2.3348203600775976, + "liepard": 6.952596931548408, + "musharna": 1.4157671771426659, + "unfezant": 6.1908739065435565, + "boldore": 3.491696799960554, + "swoobat": 5.502089017845048, + "audino": 2.150722231094183, + "gurdurr": 2.2371582571705786, + "palpitoad": 3.8349375675306314, + "seismitoad": 6.047277777812992, + "scolipede": 3.3765553045354713, + "whimsicott": 2.871391961292621, + "lilligant": 2.669709614359273, + "basculin-red-striped": 2.631060078932681, + "basculin-blue-striped": 3.359417552075645, + "krookodile": 3.5481057634101947, + "maractus": 1.9000071536574823, + "crustle": 2.4076364257727327, + "sigilyph": 2.3979162652597137, + "cofagrigus": 2.367530468787825, + "garbodor": 2.0526305897958843, + "cinccino": 4.6393410369397685, + "vanillish": 2.2650557135686356, + "emolga": 2.59092961861033, + "escavalier": 1.8756019939506778, + "amoonguss": 2.515702905354936, + "jellicent": 1.4697914763401951, + "galvantula": 1.2949859089736195, + "klang": 2.5108309287406323, + "klinklang": 3.357725562453262, + "beheeyem": 1.7853700469629081, + "lampent": 3.863035826864581, + "fraxure": 1.518593532796658, + "beartic": 1.8491782737447577, + "cryogonal": 2.02375639215838, + "accelgor": 3.0707397195152817, + "stunfisk": 1.682444689001085, + "stunfisk-galar": 2.9138817790840728, + "mienshao": 3.6796542550898392, + "druddigon": 1.9546354481270818, + "golurk": 2.4813876332135445, + "bisharp": 2.2638323771408895, + "bouffalant": 1.3045482006387927, + "heatmor": 2.617229741777422, + "durant": 2.5495194854201677, + "diggersby": 4.189585017627534, + "talonflame": 4.046860364604716, + "pangoro": 1.738320901115773, + "doublade": 2.042679792801011, + "malamar": 2.5290647552793137, + "barbaracle": 1.4605819939110356, + "heliolisk": 2.952129850554237, + "tyrantrum": 1.4596356201802203, + "aurorus": 2.972615757247969, + "hawlucha": 3.727078538258276, + "dedenne": 2.625042439537668, + "klefki": 3.1799689321272964, + "trevenant": 2.838454657185771, + "gourgeist-average": 5.123928192150835, + "charjabug": 3.5129459678270365, + "vikavolt": 1.666039438057841, + "ribombee": 4.568646835715863, + "lycanroc-midday": 4.293944111073251, + "lycanroc-midnight": 3.035322171123455, + "mudsdale": 1.9880977871572765, + "araquanid": 2.2263530276556374, + "lurantis": 2.1937805193576088, + "shiinotic": 4.561159208923136, + "salazzle": 4.4087409546453245, + "bewear": 1.8235318595914025, + "tsareena": 2.8372761060070797, + "comfey": 4.028028125374652, + "oranguru": 2.699439971328454, + "passimian": 2.3851647570294094, + "palossand": 2.3974439826958474, + "pyukumuku": 38.561852142849105, + "togedemaru": 2.113967206414447, + "mimikyu-disguised": 4.194328670242868, + "greedent": 2.0696692653041646, + "orbeetle": 1.7441121632649543, + "thievul": 1.9541173904195137, + "eldegoss": 3.499285006749247, + "dubwool": 2.703562174820873, + "drednaw": 1.2504042815980463, + "boltund": 4.1227812136856725, + "carkol": 4.265540421587861, + "coalossal": 3.4758691925525436, + "sandaconda": 3.5352324139728797, + "cramorant": 5.3739718411830975, + "barraskewda": 4.102833999496333, + "toxtricity-amped": 2.529316426871084, + "centiskorch": 2.934236484636185, + "grapploct": 1.8770450366742488, + "polteageist": 2.6347681235746663, + "hatterene": 2.4632374678677644, + "grimmsnarl": 3.832723418204663, + "obstagoon": 2.275494754090904, + "perrserker": 2.9154745755214098, + "alcremie": 1.4622125296818242, + "falinks": 3.2114028462909716, + "pincurchin": 2.6769224868496786, + "frosmoth": 2.6004100994881423, + "indeedee-male": 3.3995786810491135, + "morpeko": 2.400580201425486, + "copperajah": 2.537892660166465, + "duraludon": 1.1285047674169477, + "drakloak": 4.678897439979371 }, "basculin-blue-striped": { - "ivysaur": 2.4144382235563184, - "charmeleon": 5.349401786328091, - "wartortle": 2.5565116504080247, - "butterfree": 4.135534335510782, - "raichu": 4.4443420989240146, - "raichu-alola": 3.6389508410787723, - "sandslash": 2.993424164010162, - "sandslash-alola": 2.1018731544831484, - "nidoqueen": 3.4390378096400758, - "nidoking": 2.3574282905689588, - "clefairy": 8.655841573325642, - "clefable": 1.9157911329232074, - "jigglypuff": 26.027873608742, - "wigglytuff": 1.8641983855252349, - "gloom": 4.82730754681306, - "vileplume": 2.247095607943526, - "dugtrio": 4.773574304456965, - "dugtrio-alola": 4.693546625882772, - "persian": 4.089250203592126, - "persian-alola": 3.994902875524395, - "golduck": 2.8615939837689934, - "poliwrath": 1.4968974694620127, - "kadabra": 4.639226991219353, - "machoke": 3.7709431478209057, - "tentacruel": 2.3470511935619074, - "slowbro": 1.8336976615587672, - "magneton": 2.8776931537924613, - "haunter": 4.7004916351037815, - "kingler": 2.210107694896825, - "exeggutor": 1.8542281048673868, - "marowak": 4.100679996066482, - "marowak-alola": 2.9556145695836857, - "hitmonlee": 2.4975512061239944, - "hitmonchan": 2.1228635901354735, - "lickitung": 1.8963716762419087, - "weezing": 1.6396366498550283, - "weezing-galar": 2.669755087467096, - "rhydon": 4.691017236152711, - "chansey": 27.812086951324414, - "tangela": 3.700027342712689, - "kangaskhan": 1.7759548076527651, - "seadra": 3.604975540073201, - "seaking": 2.266917670077147, - "starmie": 1.5800532427245249, - "mr-mime": 6.756392178660787, - "mr-mime-galar": 4.299120767681416, - "scyther": 2.604134981927665, - "jynx": 5.5274296015725035, - "electabuzz": 2.004419536490489, - "magmar": 2.374313058331161, - "tauros": 1.9797617022904674, - "ditto": 4.001289333506555, - "vaporeon": 3.067294415460596, - "jolteon": 1.7473274092973687, - "flareon": 3.4195158862125354, - "porygon": 2.567502082529689, - "dragonair": 1.624884593446823, - "noctowl": 5.844038868990058, - "lanturn": 1.665915021889532, - "togetic": 5.472974479675441, - "xatu": 4.033259804611939, - "bellossom": 1.8202477876610068, - "azumarill": 1.835210086380993, - "sudowoodo": 3.4273485745561247, - "politoed": 2.3625610773570966, - "quagsire": 4.7414855906186055, - "slowking": 2.9732620564009995, - "dunsparce": 3.209947779180396, - "qwilfish": 3.0071330574082373, - "sneasel": 2.257218879389081, - "piloswine": 2.1371673060568486, - "octillery": 2.165866923647459, - "mantine": 2.40481328753651, - "skarmory": 2.192845567031583, - "hitmontop": 2.702277223517539, - "miltank": 3.537655377297746, - "grovyle": 6.202057804878987, - "sceptile": 1.1431911008116822, - "combusken": 4.399023870288028, - "blaziken": 2.2063392426514814, - "marshtomp": 2.6020725135333866, - "swampert": 1.290481353601216, - "linoone": 4.988939539566827, - "linoone-galar": 4.4019315249317135, - "pelipper": 5.021008386841766, - "ninjask": 7.224831016304757, - "exploud": 1.613079470003095, - "lairon": 3.6083393165519704, - "manectric": 1.6404047323560764, - "roselia": 3.1928319270316425, - "sharpedo": 4.224596941487761, - "wailmer": 6.130719184435867, - "torkoal": 2.888957152823555, - "flygon": 2.325248847704916, - "altaria": 1.4446500093702785, - "whiscash": 2.125815094223966, - "crawdaunt": 1.7552548499490235, - "claydol": 4.091325001384587, - "cradily": 1.9635645980391097, - "armaldo": 2.3702640696620367, - "dusclops": 3.694274973672025, - "absol": 2.0032732656578847, - "glalie": 4.2678894706616965, - "sealeo": 3.066444703412974, - "relicanth": 2.0018578596335717, - "metang": 3.031108831263502, - "luxray": 3.2043557075717226, - "vespiquen": 2.6255554094751496, - "cherrim": 4.3720712277099665, - "gastrodon": 2.186568430068224, - "drifblim": 4.256066025677175, - "lopunny": 3.5561758797280314, - "skuntank": 1.4566953679828647, - "bronzong": 3.6267333994355226, - "munchlax": 2.283791625475053, - "drapion": 2.476421804567285, - "abomasnow": 2.7003777252226397, - "froslass": 3.341419665294689, - "rotom": 3.6706243492637345, - "stoutland": 2.2923749063190497, - "liepard": 6.8185114912219955, - "musharna": 1.5646823010076942, - "unfezant": 6.246713972306159, - "boldore": 4.671546738893634, - "swoobat": 5.7762082492111215, - "audino": 2.107026716610221, - "gurdurr": 2.250164764831834, - "palpitoad": 3.755840907062284, - "seismitoad": 5.937267859132488, - "scolipede": 3.1302067372476, - "whimsicott": 2.306918364195676, - "lilligant": 2.274494680824019, - "basculin-red-striped": 2.6177698195174606, - "krookodile": 3.507137812162644, - "maractus": 1.6085132994639408, - "crustle": 2.7677052276516143, - "sigilyph": 2.5160397890146617, - "cofagrigus": 2.6168956027248704, - "garbodor": 1.8014839809301473, - "cinccino": 4.547275336323829, - "vanillish": 2.193327419972379, - "emolga": 2.409451237845432, - "escavalier": 1.8334920019591985, - "amoonguss": 1.9860587156969334, - "jellicent": 1.9470826000179273, - "galvantula": 1.2724457148403507, - "klang": 2.48868441901349, - "klinklang": 3.498079136511186, - "beheeyem": 1.976316764232909, - "lampent": 3.711185047725601, - "fraxure": 1.2947912839721787, - "beartic": 1.8131960598555392, - "cryogonal": 1.9171003745196935, - "accelgor": 2.9168151373568567, - "stunfisk": 1.5975047003191198, - "stunfisk-galar": 2.914758666575716, - "mienshao": 3.244932439606833, - "druddigon": 1.640411914004561, - "golurk": 2.3993721465234428, - "bisharp": 2.3897485467056416, - "bouffalant": 1.2762907827150767, - "heatmor": 2.5289241447389674, - "durant": 3.0846359319426844, - "diggersby": 4.064596459872339, - "talonflame": 3.9311600540525733, - "pangoro": 1.7195842620243802, - "doublade": 2.7366050950605514, - "malamar": 2.5300054247247856, - "barbaracle": 1.507337019718546, - "heliolisk": 2.953450968925585, - "tyrantrum": 1.616805927003495, - "aurorus": 2.8273022835185975, - "hawlucha": 3.3797380898724523, - "dedenne": 2.5327906560549334, - "klefki": 3.1189495630126824, - "trevenant": 3.0071497461994303, - "gourgeist-average": 5.373163232931457, - "charjabug": 3.5922605431220536, - "vikavolt": 1.673540334405313, - "ribombee": 4.4194596010839895, - "lycanroc-midday": 4.168890330044292, - "lycanroc-midnight": 2.947027535589174, - "mudsdale": 1.9796947929798927, - "araquanid": 2.217930877655821, - "lurantis": 1.869567182578816, - "shiinotic": 3.511933038732539, - "salazzle": 4.263161357656859, - "bewear": 1.7120703697518382, - "tsareena": 2.4189174298234044, - "comfey": 3.8827919439689866, - "oranguru": 2.993629883304517, - "passimian": 2.3142253049089025, - "palossand": 2.625503698848184, - "pyukumuku": 38.409230329888814, - "togedemaru": 2.039948781387194, - "mimikyu-disguised": 3.9786728799318247, - "greedent": 2.109640328757057, - "orbeetle": 1.9165201678740234, - "thievul": 1.8374366914077314, - "eldegoss": 2.9454591069536393, - "dubwool": 2.683337356098632, - "drednaw": 1.2819411781214565, - "boltund": 4.049991261387673, - "carkol": 4.43348441437076, - "coalossal": 3.696535762027823, - "sandaconda": 4.183983901759209, - "cramorant": 5.342213177841963, - "barraskewda": 4.086615762867936, - "toxtricity-amped": 2.2320153436448833, - "centiskorch": 2.725858436929397, - "grapploct": 1.6803050575760614, - "polteageist": 2.984281769131985, - "hatterene": 2.3967637215409714, - "grimmsnarl": 3.7053272631188108, - "obstagoon": 2.3126953494472895, - "perrserker": 3.232774612076292, - "alcremie": 1.3662368353246932, - "falinks": 3.2159501186063046, - "pincurchin": 2.65762669756233, - "frosmoth": 2.4901554719881673, - "indeedee-male": 3.782794779795344, - "morpeko": 2.36116132707069, - "copperajah": 2.4773292486793177, - "duraludon": 1.2573031356948436, - "drakloak": 4.965679455210239, - "basculin-blue-striped": 3.341920117338079 + "ivysaur": 2.403316927479092, + "charmeleon": 5.360130957132598, + "wartortle": 2.555995587131765, + "butterfree": 4.124027067414058, + "raichu": 4.43121872299507, + "raichu-alola": 3.6303311113707064, + "sandslash": 2.9956256577112415, + "sandslash-alola": 2.1019049805763754, + "nidoqueen": 3.4398603653464015, + "nidoking": 2.3598466295149687, + "clefairy": 8.64093327629834, + "clefable": 1.9136873737092333, + "jigglypuff": 25.993445793872368, + "wigglytuff": 1.8610527136429178, + "gloom": 4.815513767490171, + "vileplume": 2.237398946386426, + "dugtrio": 4.778190166572838, + "dugtrio-alola": 4.701985079749624, + "persian": 4.083562378800458, + "persian-alola": 3.9893939420145745, + "golduck": 2.859994220315574, + "poliwrath": 1.4908586908582078, + "kadabra": 4.637199386959212, + "machoke": 3.7679508539868207, + "tentacruel": 2.34679385278573, + "slowbro": 1.8319964964079132, + "magneton": 2.871918155564686, + "haunter": 4.694799223191918, + "kingler": 2.208075616091492, + "exeggutor": 1.8487996903795505, + "marowak": 4.106228305281903, + "marowak-alola": 2.9651700570028865, + "hitmonlee": 2.4967667389466124, + "hitmonchan": 2.1209917249718724, + "lickitung": 1.893104491910175, + "weezing": 1.638280463908014, + "weezing-galar": 2.6679736115055945, + "rhydon": 4.701211159952024, + "chansey": 27.76045236466367, + "tangela": 3.682608289188328, + "kangaskhan": 1.7742058359176744, + "seadra": 3.59853700531815, + "seaking": 2.2651567024703883, + "starmie": 1.5789592943605704, + "mr-mime": 6.747979802899516, + "mr-mime-galar": 4.2985111846794055, + "scyther": 2.6016155373263454, + "jynx": 5.517718782753205, + "electabuzz": 1.9967540169643263, + "magmar": 2.37850369779889, + "tauros": 1.9783648488026833, + "ditto": 3.976846746672848, + "vaporeon": 3.059498671757252, + "jolteon": 1.741779027205943, + "flareon": 3.4242473212213507, + "porygon": 2.5625233031789536, + "dragonair": 1.6205822433940709, + "noctowl": 5.837969895654286, + "lanturn": 1.6627615218643739, + "togetic": 5.4737458527187375, + "xatu": 4.030862109233606, + "bellossom": 1.8123408812272785, + "azumarill": 1.8346449183506892, + "sudowoodo": 3.4302113304439588, + "politoed": 2.3600096163984685, + "quagsire": 4.742664284653992, + "slowking": 2.9743797889928025, + "dunsparce": 3.2088610634386816, + "qwilfish": 3.0051898708173788, + "sneasel": 2.2548408164669365, + "piloswine": 2.1406799585157374, + "octillery": 2.1642719691718035, + "mantine": 2.3995895858730236, + "skarmory": 2.194075218458151, + "hitmontop": 2.701612245618682, + "miltank": 3.5338046773508243, + "grovyle": 6.175133876411719, + "sceptile": 1.1375601210194783, + "combusken": 4.404311430657657, + "blaziken": 2.210556662391903, + "marshtomp": 2.604557726950505, + "swampert": 1.2909538360353028, + "linoone": 4.983571287387377, + "linoone-galar": 4.39512165947139, + "pelipper": 5.009214513366006, + "ninjask": 7.21712525053465, + "exploud": 1.6112668964851902, + "lairon": 3.614974122368174, + "manectric": 1.6378762122015793, + "roselia": 3.179522877258678, + "sharpedo": 4.2165586170332086, + "wailmer": 6.128853221263414, + "torkoal": 2.8956092710343446, + "flygon": 2.3238242412824133, + "altaria": 1.442200091981979, + "whiscash": 2.1257844010171607, + "crawdaunt": 1.751797241565635, + "claydol": 4.093029597423882, + "cradily": 1.957687601027679, + "armaldo": 2.372348436235295, + "dusclops": 3.695234276606411, + "absol": 2.0021961239867085, + "glalie": 4.269152550921908, + "sealeo": 3.066382791010966, + "relicanth": 2.001179337356539, + "metang": 3.0311270627526725, + "luxray": 3.193393659784845, + "vespiquen": 2.6233183051956424, + "cherrim": 4.35085808975102, + "gastrodon": 2.1866250655799284, + "drifblim": 4.246855420371851, + "lopunny": 3.5530202234882537, + "skuntank": 1.4560469783358543, + "bronzong": 3.6313970282977848, + "munchlax": 2.281095354039289, + "drapion": 2.47615858709218, + "abomasnow": 2.6917592491789604, + "froslass": 3.3457424005143404, + "rotom": 3.6650472830890166, + "stoutland": 2.2888740418145694, + "liepard": 6.81126651485619, + "musharna": 1.562165515203365, + "unfezant": 6.244388970848317, + "boldore": 4.675478711698062, + "swoobat": 5.772817940552505, + "audino": 2.105695342727002, + "gurdurr": 2.2484017348381213, + "palpitoad": 3.7550553482537605, + "seismitoad": 5.92626098234388, + "scolipede": 3.1287376087620826, + "whimsicott": 2.2974188059821907, + "lilligant": 2.2637952753125754, + "basculin-red-striped": 2.617298461477231, + "basculin-blue-striped": 3.341920117338079, + "krookodile": 3.5081416021611016, + "maractus": 1.5975260324947582, + "crustle": 2.770065163681944, + "sigilyph": 2.515795499393966, + "cofagrigus": 2.6163268634444723, + "garbodor": 1.7998318958075195, + "cinccino": 4.545060727799, + "vanillish": 2.1934524629237817, + "emolga": 2.402414072402738, + "escavalier": 1.8342283532627346, + "amoonguss": 1.9781068632670455, + "jellicent": 1.9459938108338535, + "galvantula": 1.2675953929072517, + "klang": 2.4846019082035733, + "klinklang": 3.5003811316347515, + "beheeyem": 1.9750601653040878, + "lampent": 3.7251420926423187, + "fraxure": 1.292022950578414, + "beartic": 1.8138174845488502, + "cryogonal": 1.9161024554614698, + "accelgor": 2.912595426105077, + "stunfisk": 1.595889336256172, + "stunfisk-galar": 2.916922000710242, + "mienshao": 3.240951651041815, + "druddigon": 1.6389511813198978, + "golurk": 2.403383460433294, + "bisharp": 2.3872223889701623, + "bouffalant": 1.2761626046619476, + "heatmor": 2.5332546068993076, + "durant": 3.08162346070372, + "diggersby": 4.067665869399483, + "talonflame": 3.9386894685698457, + "pangoro": 1.7180426816715688, + "doublade": 2.740556095708382, + "malamar": 2.5240527318200705, + "barbaracle": 1.5064903693020697, + "heliolisk": 2.933873367677931, + "tyrantrum": 1.6154282422586996, + "aurorus": 2.824433680157295, + "hawlucha": 3.3761479547122737, + "dedenne": 2.5248642728355, + "klefki": 3.120363656356718, + "trevenant": 3.0001197336642527, + "gourgeist-average": 5.3729643497413635, + "charjabug": 3.5818527276239798, + "vikavolt": 1.670829227820676, + "ribombee": 4.411903656211449, + "lycanroc-midday": 4.171683407400963, + "lycanroc-midnight": 2.949119344245238, + "mudsdale": 1.981502236146426, + "araquanid": 2.212149552770879, + "lurantis": 1.861895078765591, + "shiinotic": 3.5011902063740905, + "salazzle": 4.271623022430924, + "bewear": 1.7090863864272117, + "tsareena": 2.40968562438556, + "comfey": 3.8707967683381415, + "oranguru": 2.9919896772796886, + "passimian": 2.3125409904759286, + "palossand": 2.6279826362189125, + "pyukumuku": 38.35391340454259, + "togedemaru": 2.0377522428389447, + "mimikyu-disguised": 3.977501599674559, + "greedent": 2.1083689580219107, + "orbeetle": 1.9147472399589718, + "thievul": 1.8355393914252338, + "eldegoss": 2.9308153985090244, + "dubwool": 2.677950303587634, + "drednaw": 1.2818569690399506, + "boltund": 4.038709154280985, + "carkol": 4.4481666501642545, + "coalossal": 3.70748215561961, + "sandaconda": 4.185834990732598, + "cramorant": 5.339890549867403, + "barraskewda": 4.081785066620763, + "toxtricity-amped": 2.2237783398724362, + "centiskorch": 2.7287891231125743, + "grapploct": 1.6790829748233658, + "polteageist": 2.9809544214988977, + "hatterene": 2.394495488478714, + "grimmsnarl": 3.700081919500681, + "obstagoon": 2.3065264565592187, + "perrserker": 3.2308485018321553, + "alcremie": 1.3641946939817817, + "falinks": 3.214301391553829, + "pincurchin": 2.650228559948819, + "frosmoth": 2.4852880670450777, + "indeedee-male": 3.783345672548759, + "morpeko": 2.353316055013214, + "copperajah": 2.4798966031402436, + "duraludon": 1.25424929355083, + "drakloak": 4.962512178631787 }, "krookodile": { - "ivysaur": 3.3920809079917467, - "charmeleon": 4.66122271405659, - "wartortle": 2.6317619922517377, - "butterfree": 4.83427181413284, - "raichu": 6.365311140490311, - "raichu-alola": 6.920125782244538, - "sandslash": 2.2109518006691014, - "sandslash-alola": 2.6454732838960044, - "nidoqueen": 3.535743741214085, - "nidoking": 2.2762774866360385, - "clefairy": 8.01314730313927, - "clefable": 1.622882788977042, - "jigglypuff": 22.121093456530556, - "wigglytuff": 1.6920845719006077, - "gloom": 6.119730566779282, - "vileplume": 2.8565555228104165, - "dugtrio": 4.575449021450442, - "dugtrio-alola": 4.229319037935351, - "persian": 4.6787237708036, - "persian-alola": 4.441740845089752, - "golduck": 3.111209536229408, - "poliwrath": 1.65561868849866, - "kadabra": 6.667495562323252, - "machoke": 3.774792676857136, - "tentacruel": 2.6886704815680385, - "slowbro": 2.8347642078088056, - "magneton": 6.650877971056084, - "haunter": 7.820718869543355, - "kingler": 2.3558611876670676, - "exeggutor": 2.7335931322776204, - "marowak": 3.34690420049031, - "marowak-alola": 3.1324334477155347, - "hitmonlee": 2.143621874097899, - "hitmonchan": 1.97236685700671, - "lickitung": 1.9111394658294143, - "weezing": 2.2277864536966705, - "weezing-galar": 3.3786921698116803, - "rhydon": 3.1685174120909787, - "chansey": 35.544353246586894, - "tangela": 4.213975107798737, - "kangaskhan": 2.1130711998476297, - "seadra": 3.993373011230001, - "seaking": 2.761514001217825, - "starmie": 2.0211306733660415, - "mr-mime": 10.129028739939372, - "mr-mime-galar": 5.398411661729254, - "scyther": 2.963647289553006, - "jynx": 6.902851168973299, - "electabuzz": 3.686944463416265, - "magmar": 2.0208760754266275, - "tauros": 2.1086294921774673, - "ditto": 4.113955315055628, - "vaporeon": 3.4985805138271937, - "jolteon": 2.5390725334867357, - "flareon": 3.006340424599831, - "porygon": 3.1877807189344605, - "dragonair": 2.052169867177835, - "noctowl": 7.222696328886693, - "lanturn": 2.2090748591115545, - "togetic": 4.6226378667590495, - "xatu": 6.378994180341996, - "bellossom": 2.1728950419605786, - "azumarill": 1.904484105897239, - "sudowoodo": 3.3746666666800964, - "politoed": 2.8363634697670754, - "quagsire": 4.299532738997007, - "slowking": 3.9299617231767368, - "dunsparce": 3.420805787220851, - "qwilfish": 4.40784097940444, - "sneasel": 2.1821383953484244, - "piloswine": 1.4960082828376162, - "octillery": 2.4210945310459246, - "mantine": 2.8597240275048588, - "skarmory": 2.003347349917596, - "hitmontop": 2.319929225260263, - "miltank": 3.565826555698284, - "grovyle": 8.104216698462194, - "sceptile": 1.5007570141999969, - "combusken": 3.7460100568332133, - "blaziken": 1.8963208002374954, - "marshtomp": 2.517338276713183, - "swampert": 1.256495206664041, - "linoone": 5.7210364658939845, - "linoone-galar": 4.91273109265833, - "pelipper": 6.413744188462987, - "ninjask": 7.503280577541888, - "exploud": 1.6600529236720416, - "lairon": 5.554159843288075, - "manectric": 2.3263780637217115, - "roselia": 4.6214653153595, - "sharpedo": 4.781990117607371, - "wailmer": 6.821668183704168, - "torkoal": 2.5930977263725223, - "flygon": 2.5709366769589925, - "altaria": 1.6996993798095699, - "whiscash": 2.066229792092392, - "crawdaunt": 1.849735941213137, - "claydol": 5.729974725692308, - "cradily": 2.4757753428595626, - "armaldo": 1.9375698482699433, - "dusclops": 5.538861128227952, - "absol": 1.820624168003599, - "glalie": 4.453257294188748, - "sealeo": 3.0501442864062094, - "relicanth": 2.502080596667482, - "metang": 4.873561748389854, - "luxray": 5.208318556306245, - "vespiquen": 2.777423394202671, - "cherrim": 5.887331208775572, - "gastrodon": 2.3490738657794874, - "drifblim": 8.52378171340212, - "lopunny": 4.0464712585232405, - "skuntank": 1.9415009850102967, - "bronzong": 5.8131961376240815, - "munchlax": 3.0238449165654315, - "drapion": 3.2449436520436388, - "abomasnow": 3.18948060050416, - "froslass": 4.260879588603338, - "rotom": 7.1429319161097595, - "stoutland": 2.6984593269815367, - "liepard": 6.615728910882549, - "musharna": 2.5999731078376187, - "unfezant": 6.7134998936920365, - "boldore": 4.591052806933601, - "swoobat": 9.15127237939359, - "audino": 2.426398617303775, - "gurdurr": 2.0657230310258585, - "palpitoad": 4.040502145383726, - "seismitoad": 7.484914130179771, - "scolipede": 3.2437589425919517, - "whimsicott": 2.521870368456084, - "lilligant": 2.8980759616420446, - "basculin-red-striped": 2.8734874095779563, - "basculin-blue-striped": 3.6703300480613534, - "maractus": 2.2022142856286404, - "crustle": 1.9766585245546453, - "sigilyph": 3.7804124419065444, - "cofagrigus": 4.3291516845815785, - "garbodor": 2.3163261678505864, - "cinccino": 4.884614802781436, - "vanillish": 2.140628174977329, - "emolga": 4.0310026893065904, - "escavalier": 1.9035865724347836, - "amoonguss": 2.8114383677466614, - "jellicent": 2.3617726523215867, - "galvantula": 1.9654008028057497, - "klang": 3.822576322202621, - "klinklang": 4.455986419599853, - "beheeyem": 3.2134819380279827, - "lampent": 4.093994644722864, - "fraxure": 1.635134054832704, - "beartic": 1.6236435250450951, - "cryogonal": 1.8600717566738196, - "accelgor": 3.1157358741367736, - "stunfisk": 1.4590160741470273, - "stunfisk-galar": 2.9904968776316485, - "mienshao": 3.1228824640785176, - "druddigon": 2.1172438107325315, - "golurk": 2.8692057431540885, - "bisharp": 3.54990125046335, - "bouffalant": 1.4393382515790036, - "heatmor": 2.2759347357777178, - "durant": 3.0859539496805146, - "diggersby": 3.674369270872474, - "talonflame": 3.2627732110351393, - "pangoro": 1.6562310278908643, - "doublade": 3.5779773666990264, - "malamar": 3.531487792151882, - "barbaracle": 1.7148272145773977, - "heliolisk": 4.809972084498064, - "tyrantrum": 2.1359390594090124, - "aurorus": 2.7910146100449102, - "hawlucha": 3.1201974501904006, - "dedenne": 3.1510284930856916, - "klefki": 3.6891588068238166, - "trevenant": 4.317178425724068, - "gourgeist-average": 7.520003119553462, - "charjabug": 4.626862672583162, - "vikavolt": 1.9313569677105478, - "ribombee": 3.6457690598182433, - "lycanroc-midday": 4.279740367168283, - "lycanroc-midnight": 2.8983786156416387, - "mudsdale": 1.6375050558956503, - "araquanid": 2.59569794037243, - "lurantis": 2.385812202519129, - "shiinotic": 3.623889313136294, - "salazzle": 5.58812587855077, - "bewear": 1.7836561584452637, - "tsareena": 3.1749040444579264, - "comfey": 3.5712754504451656, - "oranguru": 5.288574427287782, - "passimian": 2.2488568140180405, - "palossand": 2.9543738230877334, - "pyukumuku": 50.052206040038186, - "togedemaru": 4.251993391440115, - "mimikyu-disguised": 5.134960689843688, - "greedent": 2.423387729424227, - "orbeetle": 2.763634377156821, - "thievul": 1.835191099102333, - "eldegoss": 4.0160684684269885, - "dubwool": 2.9984737447978427, - "drednaw": 1.5982638753235858, - "boltund": 6.583588710786765, - "carkol": 4.380021890293705, - "coalossal": 3.357893426581281, - "sandaconda": 3.0295755536950617, - "cramorant": 6.5356733934327504, - "barraskewda": 4.928655663780173, - "toxtricity-amped": 4.970856291432376, - "centiskorch": 2.437067768040885, - "grapploct": 1.4210108919497877, - "polteageist": 5.037198258881685, - "hatterene": 2.9586250376092194, - "grimmsnarl": 3.6620147045310256, - "obstagoon": 2.688552778668654, - "perrserker": 4.783640968528171, - "alcremie": 1.1689715855270553, - "falinks": 2.8733831393569247, - "pincurchin": 3.769676399571126, - "frosmoth": 2.7034401697059525, - "indeedee-male": 6.026963660160553, - "morpeko": 3.6889398141298835, - "copperajah": 2.8526497226333274, - "duraludon": 2.488455865130005, - "drakloak": 7.78735542873147, - "krookodile": 2.8922873083999994 + "ivysaur": 3.3879203664348214, + "charmeleon": 4.667772563940908, + "wartortle": 2.6256520469989892, + "butterfree": 4.821337694992216, + "raichu": 6.379292154581851, + "raichu-alola": 6.954624605601899, + "sandslash": 2.211192195852668, + "sandslash-alola": 2.6454150874038085, + "nidoqueen": 3.543561540806583, + "nidoking": 2.280255922217594, + "clefairy": 8.000965355983851, + "clefable": 1.620547326378792, + "jigglypuff": 22.058232137254144, + "wigglytuff": 1.6902527516239927, + "gloom": 6.115752997789746, + "vileplume": 2.8494105266702587, + "dugtrio": 4.581424719831759, + "dugtrio-alola": 4.2385683995012515, + "persian": 4.675623315838201, + "persian-alola": 4.445344173346825, + "golduck": 3.1059944420970584, + "poliwrath": 1.6518294732945729, + "kadabra": 6.680134001278256, + "machoke": 3.7734905966425214, + "tentacruel": 2.6876238497589817, + "slowbro": 2.845844039253164, + "magneton": 6.67800934584131, + "haunter": 7.831199385882042, + "kingler": 2.352248051412783, + "exeggutor": 2.7346022776427583, + "marowak": 3.3501758255020446, + "marowak-alola": 3.143828385424187, + "hitmonlee": 2.1392533136146805, + "hitmonchan": 1.9707844588844847, + "lickitung": 1.91018080080761, + "weezing": 2.233658994864773, + "weezing-galar": 3.378848962376056, + "rhydon": 3.173227209067348, + "chansey": 35.54432902989306, + "tangela": 4.202361644555579, + "kangaskhan": 2.1145832639188633, + "seadra": 3.9870546149274215, + "seaking": 2.7616182218896843, + "starmie": 2.02407678162452, + "mr-mime": 10.173495780852686, + "mr-mime-galar": 5.408248278362596, + "scyther": 2.961066573711832, + "jynx": 6.8967531253806955, + "electabuzz": 3.7017323775029203, + "magmar": 2.0238387213582634, + "tauros": 2.108708150556215, + "ditto": 4.094532574545519, + "vaporeon": 3.493262345388172, + "jolteon": 2.548048089745305, + "flareon": 3.011857860525782, + "porygon": 3.1890301979934117, + "dragonair": 2.0531903355799965, + "noctowl": 7.221777296588579, + "lanturn": 2.2110157456261597, + "togetic": 4.610904432455962, + "xatu": 6.3952521941032145, + "bellossom": 2.166802511861996, + "azumarill": 1.9016434752573266, + "sudowoodo": 3.379442917932093, + "politoed": 2.8345649551894985, + "quagsire": 4.289479892662165, + "slowking": 3.9337138691122973, + "dunsparce": 3.418517733457433, + "qwilfish": 4.411417133806758, + "sneasel": 2.180526720650265, + "piloswine": 1.493988064703705, + "octillery": 2.4179303020938785, + "mantine": 2.855791518977573, + "skarmory": 2.001550584296167, + "hitmontop": 2.3154049925480495, + "miltank": 3.562761005776432, + "grovyle": 8.083143456252227, + "sceptile": 1.49669147817327, + "combusken": 3.7430145544368862, + "blaziken": 1.8963762372763795, + "marshtomp": 2.513646165410192, + "swampert": 1.2550784668443242, + "linoone": 5.720308896775762, + "linoone-galar": 4.9169927684388135, + "pelipper": 6.407475046432198, + "ninjask": 7.48167969091959, + "exploud": 1.6578314304679767, + "lairon": 5.5725397366590395, + "manectric": 2.3340849156253474, + "roselia": 4.6189661282660675, + "sharpedo": 4.778273024079804, + "wailmer": 6.814621266306947, + "torkoal": 2.597221777657586, + "flygon": 2.5673279437810352, + "altaria": 1.697325693335754, + "whiscash": 2.0663349934021005, + "crawdaunt": 1.8481691413787744, + "claydol": 5.745832261802105, + "cradily": 2.474954951742399, + "armaldo": 1.9373824697928441, + "dusclops": 5.551118220121375, + "absol": 1.8198175541813153, + "glalie": 4.451486442081842, + "sealeo": 3.042405215550559, + "relicanth": 2.5043309502841793, + "metang": 4.897105163014123, + "luxray": 5.225988260737952, + "vespiquen": 2.771500515629903, + "cherrim": 5.873250121483741, + "gastrodon": 2.3473462013980844, + "drifblim": 8.565982274071239, + "lopunny": 4.045066781515443, + "skuntank": 1.9465198817750307, + "bronzong": 5.834808663287429, + "munchlax": 3.0291078682040293, + "drapion": 3.248762062870836, + "abomasnow": 3.1813047368546004, + "froslass": 4.262886079730138, + "rotom": 7.172478603032163, + "stoutland": 2.698293315822373, + "liepard": 6.610544750334785, + "musharna": 2.607753383992, + "unfezant": 6.711042461543559, + "boldore": 4.598123034282988, + "swoobat": 9.174745027251818, + "audino": 2.424970152934706, + "gurdurr": 2.06181217150076, + "palpitoad": 4.038249047380466, + "seismitoad": 7.491633534884505, + "scolipede": 3.2419726026513205, + "whimsicott": 2.513789050046869, + "lilligant": 2.8889793723884107, + "basculin-red-striped": 2.870799584217152, + "basculin-blue-striped": 3.666114975464578, + "krookodile": 2.8922873083999994, + "maractus": 2.1974586191372634, + "crustle": 1.9750520161233314, + "sigilyph": 3.788000435198373, + "cofagrigus": 4.34761159219433, + "garbodor": 2.3208869634988103, + "cinccino": 4.880681794101543, + "vanillish": 2.1359355036475796, + "emolga": 4.040188578914213, + "escavalier": 1.9021583354202445, + "amoonguss": 2.8106653538780115, + "jellicent": 2.361475386787223, + "galvantula": 1.9689080058460604, + "klang": 3.835671947079555, + "klinklang": 4.463526185165152, + "beheeyem": 3.2247387461110177, + "lampent": 4.104876051946059, + "fraxure": 1.6347255646062706, + "beartic": 1.6196876113045378, + "cryogonal": 1.8550617451702311, + "accelgor": 3.1081304648574686, + "stunfisk": 1.461485639448747, + "stunfisk-galar": 2.9966853022719375, + "mienshao": 3.1193949023017877, + "druddigon": 2.120031805452046, + "golurk": 2.8733533930829696, + "bisharp": 3.561338397880891, + "bouffalant": 1.4398722488484048, + "heatmor": 2.2788080315081656, + "durant": 3.086029227797549, + "diggersby": 3.6777160437944465, + "talonflame": 3.261657273149736, + "pangoro": 1.6541103073648844, + "doublade": 3.5860036424725363, + "malamar": 3.542442886934851, + "barbaracle": 1.7144040449712608, + "heliolisk": 4.822932538873543, + "tyrantrum": 2.1383145021478396, + "aurorus": 2.7933272345362194, + "hawlucha": 3.1145295850391888, + "dedenne": 3.15343189635292, + "klefki": 3.6891106565046057, + "trevenant": 4.314093968107637, + "gourgeist-average": 7.535096680052963, + "charjabug": 4.640384444395744, + "vikavolt": 1.928735910797207, + "ribombee": 3.630802072078753, + "lycanroc-midday": 4.291065917268062, + "lycanroc-midnight": 2.9035218270424616, + "mudsdale": 1.6369828096825505, + "araquanid": 2.5922577791141004, + "lurantis": 2.379937254175058, + "shiinotic": 3.6109900778293254, + "salazzle": 5.6046054138176, + "bewear": 1.7827463499211156, + "tsareena": 3.1697615740494514, + "comfey": 3.560193092114817, + "oranguru": 5.317074827629891, + "passimian": 2.2470803103731125, + "palossand": 2.960743282604525, + "pyukumuku": 50.07433659107703, + "togedemaru": 4.2696582788691835, + "mimikyu-disguised": 5.145213108684824, + "greedent": 2.4264407094598335, + "orbeetle": 2.770425690786846, + "thievul": 1.8359707391331108, + "eldegoss": 4.0063533100033295, + "dubwool": 2.994656610143281, + "drednaw": 1.5984161030436024, + "boltund": 6.611251272517191, + "carkol": 4.3922716922053056, + "coalossal": 3.363862835212208, + "sandaconda": 3.0274252873812393, + "cramorant": 6.531513594136982, + "barraskewda": 4.928293211587199, + "toxtricity-amped": 4.990540427310745, + "centiskorch": 2.4389478195422187, + "grapploct": 1.4169216794504969, + "polteageist": 5.049227135006122, + "hatterene": 2.9623113977310567, + "grimmsnarl": 3.6600970899070093, + "obstagoon": 2.690375619741504, + "perrserker": 4.799321600798695, + "alcremie": 1.1664824292356522, + "falinks": 2.867199950963621, + "pincurchin": 3.77665260432631, + "frosmoth": 2.698840841164386, + "indeedee-male": 6.048679154082906, + "morpeko": 3.6986824019142626, + "copperajah": 2.855354391767288, + "duraludon": 2.4966152108734896, + "drakloak": 7.810302739692201 }, "maractus": { - "ivysaur": 2.7721263032770764, - "charmeleon": 3.064588664355936, - "wartortle": 4.962856597524652, - "butterfree": 3.6597844777437594, - "raichu": 5.743051290031241, - "raichu-alola": 4.050148752191912, - "sandslash": 3.8336663262394484, - "sandslash-alola": 1.826238502160996, - "nidoqueen": 3.007564694007497, - "nidoking": 2.00442751627396, - "clefairy": 9.437799094910423, - "clefable": 2.211410986983025, - "jigglypuff": 29.46994339123576, - "wigglytuff": 2.201317655037929, - "gloom": 4.420524732705196, - "vileplume": 2.4700557576844826, - "dugtrio": 5.483488876037628, - "dugtrio-alola": 3.8994352365014704, - "persian": 4.641485101711071, - "persian-alola": 4.6230979378188195, - "golduck": 6.022943290770694, - "poliwrath": 3.438898765302424, - "kadabra": 4.515400612335511, - "machoke": 4.463213376355459, - "tentacruel": 2.7847949580923705, - "slowbro": 2.7845541288853433, - "magneton": 3.0182303065691047, - "haunter": 5.121706630817165, - "kingler": 5.491174192487872, - "exeggutor": 2.0588384992872077, - "marowak": 5.294194624516703, - "marowak-alola": 1.8845247088145978, - "hitmonlee": 2.2628138639691375, - "hitmonchan": 2.1047464005852503, - "lickitung": 2.2352443321789757, - "weezing": 1.2639587969378447, - "weezing-galar": 2.2229166684667456, - "rhydon": 6.487602336948573, - "chansey": 24.62449122563661, - "tangela": 5.227194841929093, - "kangaskhan": 2.068163908482007, - "seadra": 8.968696174377184, - "seaking": 3.8667310916418254, - "starmie": 2.0977685319174446, - "mr-mime": 6.791694612607962, - "mr-mime-galar": 3.4465770354879703, - "scyther": 2.0808156585354984, - "jynx": 4.618078989574259, - "electabuzz": 2.944336470854411, - "magmar": 1.267935668420746, - "tauros": 2.416339407751072, - "ditto": 2.650311029836744, - "vaporeon": 5.564958657753943, - "jolteon": 2.0622090079484314, - "flareon": 1.8115726731578268, - "porygon": 2.9788236941989634, - "dragonair": 1.5509604777048174, - "noctowl": 4.784599482602882, - "lanturn": 3.815377219564491, - "togetic": 4.252685071409608, - "xatu": 3.6467431873292884, - "bellossom": 2.1466257595636478, - "azumarill": 1.8175194076400507, - "sudowoodo": 4.48641180760373, - "politoed": 4.40711220287815, - "quagsire": 14.90577948783002, - "slowking": 3.7008310193718956, - "dunsparce": 3.228174739461193, - "qwilfish": 4.3679388479195005, - "sneasel": 2.268685036331997, - "piloswine": 2.2895949393960726, - "octillery": 3.860424181544629, - "mantine": 2.619660433244519, - "skarmory": 1.4635120022245411, - "hitmontop": 2.831954748604268, - "miltank": 4.243983235440731, - "grovyle": 7.552781224623108, - "sceptile": 1.301874407181769, - "combusken": 2.798996053917141, - "blaziken": 1.3082072982700872, - "marshtomp": 7.156959618963669, - "swampert": 3.1189222562671146, - "linoone": 5.422822584759491, - "linoone-galar": 5.098515672348906, - "pelipper": 6.592029462753899, - "ninjask": 5.596032872048618, - "exploud": 1.5979072683719722, - "lairon": 3.07763003711469, - "manectric": 1.9628853383979354, - "roselia": 3.7700513832494744, - "sharpedo": 8.563671782516192, - "wailmer": 11.489139412569095, - "torkoal": 1.4781771352125035, - "flygon": 2.5564723987674745, - "altaria": 1.2650020208101989, - "whiscash": 6.433246690453482, - "crawdaunt": 4.243325867004179, - "claydol": 4.865582797217787, - "cradily": 2.4274292807827176, - "armaldo": 2.0258871111871266, - "dusclops": 3.5964283415609346, - "absol": 2.008415506343301, - "glalie": 4.187080358629318, - "sealeo": 5.276835949702672, - "relicanth": 5.758233231749234, - "metang": 2.9959420835468205, - "luxray": 4.4946468373445825, - "vespiquen": 2.03733718004736, - "cherrim": 5.489803894225532, - "gastrodon": 5.35751405675606, - "drifblim": 4.808892329414207, - "lopunny": 3.785976134853504, - "skuntank": 1.1967238255119208, - "bronzong": 3.318894937590307, - "munchlax": 2.072071163665805, - "drapion": 2.105656233358327, - "abomasnow": 2.752303778186633, - "froslass": 2.9008860285655373, - "rotom": 4.489229336075093, - "stoutland": 2.640305394907584, - "liepard": 7.817796093542409, - "musharna": 1.727166049784811, - "unfezant": 4.968174277855198, - "boldore": 6.214960959452078, - "swoobat": 5.2209262147325886, - "audino": 2.3679908429639784, - "gurdurr": 2.768044537725694, - "palpitoad": 10.49112643967171, - "seismitoad": 13.791801606315737, - "scolipede": 2.380018995070478, - "whimsicott": 2.8043661659049244, - "lilligant": 2.693639858403223, - "basculin-red-striped": 5.3175583850841655, - "basculin-blue-striped": 7.494206637186853, - "krookodile": 4.608752016273256, - "crustle": 2.2996386385453054, - "sigilyph": 2.2590457026675033, - "cofagrigus": 3.103207672615179, - "garbodor": 1.4908425760753232, - "cinccino": 4.727615686208539, - "vanillish": 2.000268697665658, - "emolga": 2.7950506250531535, - "escavalier": 1.6572258788991863, - "amoonguss": 2.0259568898134876, - "jellicent": 2.2336312051444285, - "galvantula": 1.459114833323543, - "klang": 2.566316726496213, - "klinklang": 3.0350319832795254, - "beheeyem": 1.9859201690371773, - "lampent": 2.1650922420952305, - "fraxure": 1.3800256398642028, - "beartic": 1.7017029175053129, - "cryogonal": 1.4206671841538814, - "accelgor": 2.2200769220356804, - "stunfisk": 2.31666514517541, - "stunfisk-galar": 2.7661083223870833, - "mienshao": 3.7602141024502758, - "druddigon": 1.5809057186685043, - "golurk": 3.0083240725771097, - "bisharp": 2.110311195678238, - "bouffalant": 1.09533160984443, - "heatmor": 1.5113245388948235, - "durant": 2.2626805786711, - "diggersby": 5.171724803340762, - "talonflame": 2.1875679392295457, - "pangoro": 1.9762181009288367, - "doublade": 2.2644116495912723, - "malamar": 3.2689094733420423, - "barbaracle": 3.576161271278547, - "heliolisk": 3.8622734309211437, - "tyrantrum": 1.9475973116950887, - "aurorus": 3.117033465135176, - "hawlucha": 3.005763069467407, - "dedenne": 3.280524952199692, - "klefki": 2.70766521542138, - "trevenant": 3.3767350710811392, - "gourgeist-average": 4.696620142767634, - "charjabug": 3.90126899384452, - "vikavolt": 1.5155550515026257, - "ribombee": 3.6440953656518666, - "lycanroc-midday": 5.027789225181817, - "lycanroc-midnight": 3.538768704920746, - "mudsdale": 2.5588990798688402, - "araquanid": 2.451335324945939, - "lurantis": 2.0995252687390535, - "shiinotic": 3.845444594181987, - "salazzle": 2.430909073041489, - "bewear": 2.0314765363415166, - "tsareena": 2.7368337947094963, - "comfey": 5.065890650796698, - "oranguru": 2.9487311866003183, - "passimian": 2.6388362616646663, - "palossand": 3.6312603822389695, - "pyukumuku": 61.177537678800235, - "togedemaru": 1.9969903364151338, - "mimikyu-disguised": 4.3250534580511975, - "greedent": 2.4400998766292195, - "orbeetle": 1.7138314150188259, - "thievul": 1.7415088562323096, - "eldegoss": 3.7282935215152024, - "dubwool": 3.3732268691349145, - "drednaw": 3.2554554957724324, - "boltund": 5.531298919184995, - "carkol": 2.499500550726589, - "coalossal": 2.213002646469407, - "sandaconda": 5.290380690745414, - "cramorant": 6.516904060317637, - "barraskewda": 8.432903048016763, - "toxtricity-amped": 2.4248886100973333, - "centiskorch": 1.6688061841559927, - "grapploct": 2.1831911247746776, - "polteageist": 3.215202841306385, - "hatterene": 2.7579145187421075, - "grimmsnarl": 4.216695979284172, - "obstagoon": 2.925761006108451, - "perrserker": 3.080755509688375, - "alcremie": 1.4529952099713914, - "falinks": 3.532220485869125, - "pincurchin": 3.892653763110489, - "frosmoth": 1.9694854961326618, - "indeedee-male": 3.3983424617207234, - "morpeko": 3.132957273515821, - "copperajah": 2.0983960180344945, - "duraludon": 1.2633774787768877, - "drakloak": 4.734724601585624, - "maractus": 2.128933714900974 + "ivysaur": 2.767447449345325, + "charmeleon": 3.0563329834411626, + "wartortle": 4.994191295225587, + "butterfree": 3.6451751212471963, + "raichu": 5.7563862018975716, + "raichu-alola": 4.056733696580466, + "sandslash": 3.8470361072229444, + "sandslash-alola": 1.8232931483118067, + "nidoqueen": 3.0096352705189577, + "nidoking": 2.0062680824596364, + "clefairy": 9.439288190171713, + "clefable": 2.213774110279833, + "jigglypuff": 29.49708777576263, + "wigglytuff": 2.202935855703589, + "gloom": 4.404716035480441, + "vileplume": 2.464707501398156, + "dugtrio": 5.506752864125454, + "dugtrio-alola": 3.9077223926201596, + "persian": 4.643841677456421, + "persian-alola": 4.62605881110282, + "golduck": 6.0703998726558, + "poliwrath": 3.45810064150459, + "kadabra": 4.518057665143276, + "machoke": 4.468983896751935, + "tentacruel": 2.7960548694980103, + "slowbro": 2.7918181431692797, + "magneton": 3.0201209009371137, + "haunter": 5.129490803125905, + "kingler": 5.531463220955201, + "exeggutor": 2.0601591262749124, + "marowak": 5.316535660079601, + "marowak-alola": 1.8833624736764523, + "hitmonlee": 2.2614778412034995, + "hitmonchan": 2.103341825190123, + "lickitung": 2.239279239363997, + "weezing": 1.2605446052398206, + "weezing-galar": 2.2182622117452038, + "rhydon": 6.5257864229904445, + "chansey": 24.578564626415755, + "tangela": 5.23370097470599, + "kangaskhan": 2.0705265616154387, + "seadra": 9.027213902187631, + "seaking": 3.8828947100350337, + "starmie": 2.1039062274204388, + "mr-mime": 6.794593297917476, + "mr-mime-galar": 3.4452253018186214, + "scyther": 2.0727339632093797, + "jynx": 4.611396682336745, + "electabuzz": 2.950565994254741, + "magmar": 1.2639325816255587, + "tauros": 2.420893979977918, + "ditto": 2.6388621382520605, + "vaporeon": 5.604255205939197, + "jolteon": 2.0657381887460065, + "flareon": 1.807876625690609, + "porygon": 2.979834469105381, + "dragonair": 1.5494307864308139, + "noctowl": 4.771324140118138, + "lanturn": 3.8491830573185246, + "togetic": 4.242688589239604, + "xatu": 3.6409334025295994, + "bellossom": 2.1474418754314852, + "azumarill": 1.7924456852763249, + "sudowoodo": 4.505016259997694, + "politoed": 4.434936124246231, + "quagsire": 15.042764789927936, + "slowking": 3.716514104574901, + "dunsparce": 3.22449615918479, + "qwilfish": 4.38026356150641, + "sneasel": 2.2655977872754125, + "piloswine": 2.294156935448491, + "octillery": 3.87571980184689, + "mantine": 2.6261660631082657, + "skarmory": 1.4596089000465398, + "hitmontop": 2.83309239364216, + "miltank": 4.249004741033991, + "grovyle": 7.5562718284592165, + "sceptile": 1.3016386716299913, + "combusken": 2.793826211217013, + "blaziken": 1.3049191986700444, + "marshtomp": 7.215982726893223, + "swampert": 3.141060721220608, + "linoone": 5.42150912133948, + "linoone-galar": 5.100699882810153, + "pelipper": 6.590415320538922, + "ninjask": 5.57046317832882, + "exploud": 1.5978287147096562, + "lairon": 3.0834421338690845, + "manectric": 1.964656313733439, + "roselia": 3.767497108087725, + "sharpedo": 8.602938994271796, + "wailmer": 11.55062780183069, + "torkoal": 1.4752440764629984, + "flygon": 2.557491421741924, + "altaria": 1.2617595692073063, + "whiscash": 6.474793526813345, + "crawdaunt": 4.265363449984071, + "claydol": 4.8800012025934905, + "cradily": 2.4288739474464043, + "armaldo": 2.0267678291925058, + "dusclops": 3.6007628945365537, + "absol": 2.007535316224748, + "glalie": 4.183913448714137, + "sealeo": 5.301263102965111, + "relicanth": 5.800065161076553, + "metang": 2.998613611457327, + "luxray": 4.504000447842476, + "vespiquen": 2.028556289373551, + "cherrim": 5.491371707747162, + "gastrodon": 5.389935614696618, + "drifblim": 4.814132799759074, + "lopunny": 3.785907570559379, + "skuntank": 1.1949997873884275, + "bronzong": 3.3210372974733575, + "munchlax": 2.0700568150018723, + "drapion": 2.1030630288085237, + "abomasnow": 2.746759670705785, + "froslass": 2.9007187357143067, + "rotom": 4.506370575880519, + "stoutland": 2.6413508449408507, + "liepard": 7.824605196579661, + "musharna": 1.7304134224933443, + "unfezant": 4.953654759353986, + "boldore": 6.2428052624324195, + "swoobat": 5.212690971166005, + "audino": 2.3677931102799685, + "gurdurr": 2.773850783772091, + "palpitoad": 10.56745028924602, + "seismitoad": 13.821236164929978, + "scolipede": 2.371525559782834, + "whimsicott": 2.8015805415646633, + "lilligant": 2.6912626262777115, + "basculin-red-striped": 5.3509650874247345, + "basculin-blue-striped": 7.556110030829358, + "krookodile": 4.6258039707505265, + "maractus": 2.128933714900974, + "crustle": 2.300320796165847, + "sigilyph": 2.25622207250738, + "cofagrigus": 3.11048350550536, + "garbodor": 1.4858187479684477, + "cinccino": 4.725267936670612, + "vanillish": 1.996652699901503, + "emolga": 2.7946738143368193, + "escavalier": 1.6574152375897264, + "amoonguss": 2.01943747150619, + "jellicent": 2.244685594356825, + "galvantula": 1.4584771940465953, + "klang": 2.56794302721067, + "klinklang": 3.034212762531494, + "beheeyem": 1.9884004993273365, + "lampent": 2.161818290594055, + "fraxure": 1.3781383616464633, + "beartic": 1.7017110062948277, + "cryogonal": 1.4177068830662067, + "accelgor": 2.211032458455773, + "stunfisk": 2.3305573143436558, + "stunfisk-galar": 2.7730000404870485, + "mienshao": 3.763616001634232, + "druddigon": 1.5797058956358454, + "golurk": 3.021324127305278, + "bisharp": 2.106796471513336, + "bouffalant": 1.0873501852532044, + "heatmor": 1.5081809093846816, + "durant": 2.2567295447709803, + "diggersby": 5.193046307218385, + "talonflame": 2.1791825086135654, + "pangoro": 1.9779121599729854, + "doublade": 2.265794685612831, + "malamar": 3.273404954314498, + "barbaracle": 3.5942014551502415, + "heliolisk": 3.868852112036289, + "tyrantrum": 1.9506844097662892, + "aurorus": 3.1201048889652796, + "hawlucha": 3.000356968552333, + "dedenne": 3.286936887970466, + "klefki": 2.707263944834409, + "trevenant": 3.382568506325763, + "gourgeist-average": 4.693392476938999, + "charjabug": 3.9079169510575547, + "vikavolt": 1.512736125461779, + "ribombee": 3.632748190811803, + "lycanroc-midday": 5.042994576323902, + "lycanroc-midnight": 3.5493202224894773, + "mudsdale": 2.5685523752908552, + "araquanid": 2.4538313664367335, + "lurantis": 2.0969551170207312, + "shiinotic": 3.8404580650004676, + "salazzle": 2.4190358014373223, + "bewear": 2.0324082166662647, + "tsareena": 2.7347180205609796, + "comfey": 5.075597201742404, + "oranguru": 2.9518708550665806, + "passimian": 2.6406288269258757, + "palossand": 3.6486426655209097, + "pyukumuku": 61.30663843828458, + "togedemaru": 1.9948738615507202, + "mimikyu-disguised": 4.330955459605841, + "greedent": 2.4424155457477643, + "orbeetle": 1.7117548566713257, + "thievul": 1.7405771871322155, + "eldegoss": 3.7298910634089824, + "dubwool": 3.3776085662064217, + "drednaw": 3.2745518614113216, + "boltund": 5.5438338401827085, + "carkol": 2.4971704267415236, + "coalossal": 2.2149512600532555, + "sandaconda": 5.306019519009347, + "cramorant": 6.5426175340080315, + "barraskewda": 8.478907917440697, + "toxtricity-amped": 2.425380508455604, + "centiskorch": 1.6634850913004366, + "grapploct": 2.18840076579011, + "polteageist": 3.22355413082388, + "hatterene": 2.7611321259696937, + "grimmsnarl": 4.220243381672389, + "obstagoon": 2.928178773185958, + "perrserker": 3.082427072282399, + "alcremie": 1.45319914999501, + "falinks": 3.5329381660310264, + "pincurchin": 3.91372306081702, + "frosmoth": 1.9619136631566427, + "indeedee-male": 3.3985719705496082, + "morpeko": 3.1371117128869077, + "copperajah": 2.097948548301841, + "duraludon": 1.2628942929437406, + "drakloak": 4.737021180695324 }, "crustle": { - "ivysaur": 3.5503936268000458, - "charmeleon": 5.117801756208834, - "wartortle": 2.5883350961910887, - "butterfree": 9.391797864399022, - "raichu": 5.749920247645864, - "raichu-alola": 5.552005979717187, - "sandslash": 2.1390903746509795, - "sandslash-alola": 2.6028692544884278, - "nidoqueen": 2.448093545616863, - "nidoking": 1.6852808311388643, - "clefairy": 9.376851589316018, - "clefable": 1.977306945063266, - "jigglypuff": 27.490632949931104, - "wigglytuff": 2.027966891738025, - "gloom": 6.2797886422861495, - "vileplume": 3.1191168433632006, - "dugtrio": 4.013138402364533, - "dugtrio-alola": 4.007030932947618, - "persian": 5.4214053669257805, - "persian-alola": 6.268256193809792, - "golduck": 3.0522069881906684, - "poliwrath": 1.7393113024262448, - "kadabra": 6.60724745929571, - "machoke": 3.538788911311941, - "tentacruel": 2.2951106732772057, - "slowbro": 2.3412692061283766, - "magneton": 3.005065489669129, - "haunter": 4.540207088574047, - "kingler": 2.306764098522697, - "exeggutor": 3.933577876921677, - "marowak": 3.141578340811253, - "marowak-alola": 2.5893586538936235, - "hitmonlee": 2.480440417075562, - "hitmonchan": 2.1303549222853837, - "lickitung": 2.0180134015889477, - "weezing": 1.4719259412680004, - "weezing-galar": 2.412805226306062, - "rhydon": 2.1769335825382887, - "chansey": 39.25179730747355, - "tangela": 5.909139100422099, - "kangaskhan": 2.254165643490759, - "seadra": 3.673311851509344, - "seaking": 2.732118999405502, - "starmie": 1.9892650198702766, - "mr-mime": 7.827219642602798, - "mr-mime-galar": 5.254302942051471, - "scyther": 5.242189147519706, - "jynx": 7.2606310687654165, - "electabuzz": 2.8997282291597797, - "magmar": 2.362299160163103, - "tauros": 2.330975184675248, - "ditto": 2.8781908435393655, - "vaporeon": 3.339591024623293, - "jolteon": 2.287610101747072, - "flareon": 3.4721977266961477, - "porygon": 3.2828983038122974, - "dragonair": 2.056879599574157, - "noctowl": 9.0149162700204, - "lanturn": 1.9233239624041212, - "togetic": 7.336730209581397, - "xatu": 4.830920170217706, - "bellossom": 3.274291583144991, - "azumarill": 2.191838458377847, - "sudowoodo": 2.613003305851785, - "politoed": 2.801078546424275, - "quagsire": 4.2349322128628195, - "slowking": 3.6826774164229894, - "dunsparce": 3.7188949434848846, - "qwilfish": 3.1740611834145733, - "sneasel": 3.6600709258828408, - "piloswine": 1.7005712262550468, - "octillery": 2.2536926525822443, - "mantine": 3.402089848850143, - "skarmory": 1.8351087343061372, - "hitmontop": 2.605291219457786, - "miltank": 4.164565575497823, - "grovyle": 12.168085421896851, - "sceptile": 2.1526633900245735, - "combusken": 3.3464627091502717, - "blaziken": 1.6670951740270419, - "marshtomp": 2.5270896663897995, - "swampert": 1.2639833751831235, - "linoone": 6.375072251776636, - "linoone-galar": 7.205739658359526, - "pelipper": 7.813857379114403, - "ninjask": 14.626634880438463, - "exploud": 1.9269398031658664, - "lairon": 2.636410439060537, - "manectric": 1.9545986191132885, - "roselia": 4.582340205206521, - "sharpedo": 7.302661324054304, - "wailmer": 6.354144141484925, - "torkoal": 2.0946124743984873, - "flygon": 2.518171970092086, - "altaria": 2.094034755333932, - "whiscash": 1.8848993205588198, - "crawdaunt": 2.3654141378305384, - "claydol": 4.66201760752336, - "cradily": 3.0933493216373638, - "armaldo": 2.3008735269838665, - "dusclops": 3.4204641189171827, - "absol": 2.9063594708629896, - "glalie": 5.414398305807144, - "sealeo": 3.761055294862734, - "relicanth": 1.8205295018747423, - "metang": 2.9938671958238583, - "luxray": 4.228074966909255, - "vespiquen": 5.210164586889861, - "cherrim": 8.554155245823614, - "gastrodon": 2.353449065834266, - "drifblim": 5.763141846479564, - "lopunny": 4.620110392456327, - "skuntank": 1.584065416021701, - "bronzong": 3.4065691689158273, - "munchlax": 3.1663857701182954, - "drapion": 2.461795055425428, - "abomasnow": 4.651962806006507, - "froslass": 3.8104795217555973, - "rotom": 3.630980201725225, - "stoutland": 3.0836439451189257, - "liepard": 10.591779778010267, - "musharna": 2.2396200618389894, - "unfezant": 7.911678504102591, - "boldore": 3.1578183822937618, - "swoobat": 6.917231934898259, - "audino": 2.730932847476238, - "gurdurr": 2.014104546963748, - "palpitoad": 3.8479152343849217, - "seismitoad": 7.38145124122444, - "scolipede": 4.021401530586312, - "whimsicott": 3.2808835575500543, - "lilligant": 4.248008108905036, - "basculin-red-striped": 2.8608678526624196, - "basculin-blue-striped": 3.488033562701129, - "krookodile": 3.972284497895874, - "maractus": 3.1686484627860496, - "sigilyph": 2.802767464905391, - "cofagrigus": 2.4037891010493406, - "garbodor": 1.9509397647828906, - "cinccino": 5.678823057745364, - "vanillish": 2.8646222329317887, - "emolga": 4.011089526734819, - "escavalier": 1.8356777259948287, - "amoonguss": 2.8504061873419415, - "jellicent": 1.5985606121525557, - "galvantula": 2.038608640175186, - "klang": 2.7168148969500914, - "klinklang": 3.5673859736567635, - "beheeyem": 2.613913061218657, - "lampent": 3.3680199340780876, - "fraxure": 1.6755387686629863, - "beartic": 2.1417706337687843, - "cryogonal": 2.583732422864597, - "accelgor": 4.219499201818193, - "stunfisk": 1.272963987839522, - "stunfisk-galar": 2.561090211672623, - "mienshao": 3.127879458457052, - "druddigon": 1.9750822097070988, - "golurk": 1.6739135337279478, - "bisharp": 3.7207608695231693, - "bouffalant": 1.5562815267493417, - "heatmor": 2.511686151295584, - "durant": 2.673041521089816, - "diggersby": 3.750525402076508, - "talonflame": 5.419819326831094, - "pangoro": 2.0148373652162865, - "doublade": 1.7125365530322771, - "malamar": 5.7761451671083055, - "barbaracle": 1.5992309298862857, - "heliolisk": 4.654343699079467, - "tyrantrum": 1.634429298277509, - "aurorus": 3.4172800036930564, - "hawlucha": 3.612139907804254, - "dedenne": 2.8930003381330254, - "klefki": 2.514893602587481, - "trevenant": 3.411795755089577, - "gourgeist-average": 5.194873082901998, - "charjabug": 5.121683070727065, - "vikavolt": 2.3675124047502303, - "ribombee": 6.147480753179695, - "lycanroc-midday": 3.596648213196893, - "lycanroc-midnight": 2.634081186725341, - "mudsdale": 1.7023578906334316, - "araquanid": 3.394689259727576, - "lurantis": 3.4965975665206304, - "shiinotic": 4.871187485212332, - "salazzle": 4.168948016020894, - "bewear": 2.1103143047979556, - "tsareena": 4.583000811327608, - "comfey": 4.487453835418057, - "oranguru": 4.095008858926162, - "passimian": 2.060457827608639, - "palossand": 1.6819943123370833, - "pyukumuku": 48.46620853844588, - "togedemaru": 2.598746092625796, - "mimikyu-disguised": 4.500032586285328, - "greedent": 2.4315085557891445, - "orbeetle": 2.551292807521472, - "thievul": 2.8520238051350066, - "eldegoss": 5.895193708628767, - "dubwool": 3.5409450594845095, - "drednaw": 1.2899500363023524, - "boltund": 5.09777631220555, - "carkol": 2.73415515432625, - "coalossal": 2.094671130560057, - "sandaconda": 3.0897381098078407, - "cramorant": 7.815439228868751, - "barraskewda": 4.803448297999248, - "toxtricity-amped": 2.808869243307516, - "centiskorch": 4.310011261878783, - "grapploct": 1.415187468506056, - "polteageist": 2.9208638749172398, - "hatterene": 2.7274110344005824, - "grimmsnarl": 4.221860362982251, - "obstagoon": 3.913618150324913, - "perrserker": 3.2936086787487495, - "alcremie": 1.5065230085511565, - "falinks": 2.728845858449291, - "pincurchin": 2.9056210173140773, - "frosmoth": 5.064287486430362, - "indeedee-male": 5.001763443108885, - "morpeko": 4.022440864956601, - "copperajah": 2.461126618139218, - "duraludon": 1.5468470020104796, - "drakloak": 4.592639283704232, - "crustle": 2.4024909744051794 + "ivysaur": 3.553935962747154, + "charmeleon": 5.123738764034791, + "wartortle": 2.5856040290776567, + "butterfree": 9.40709685686738, + "raichu": 5.75876928287145, + "raichu-alola": 5.560784180226613, + "sandslash": 2.139786481355466, + "sandslash-alola": 2.6076938553790887, + "nidoqueen": 2.4463839386299897, + "nidoking": 1.6856727818173547, + "clefairy": 9.378474162609999, + "clefable": 1.9753265804177453, + "jigglypuff": 27.507206032469647, + "wigglytuff": 2.0293223697703375, + "gloom": 6.286250555621725, + "vileplume": 3.1198348637617315, + "dugtrio": 4.0179880383010635, + "dugtrio-alola": 4.0119346372307625, + "persian": 5.440887290095596, + "persian-alola": 6.288281865582159, + "golduck": 3.0509379543240476, + "poliwrath": 1.7394167303422061, + "kadabra": 6.622761506656987, + "machoke": 3.5388350433582465, + "tentacruel": 2.2917415573934377, + "slowbro": 2.343292133582098, + "magneton": 3.0005164323279723, + "haunter": 4.535976956500889, + "kingler": 2.3063780781537595, + "exeggutor": 3.943539676985816, + "marowak": 3.142853506103852, + "marowak-alola": 2.590846765724019, + "hitmonlee": 2.4847065805632105, + "hitmonchan": 2.1330291544435704, + "lickitung": 2.020380490624165, + "weezing": 1.4716917372888685, + "weezing-galar": 2.410272738828195, + "rhydon": 2.174979851174212, + "chansey": 39.434364240504436, + "tangela": 5.918263566348784, + "kangaskhan": 2.2614397639691877, + "seadra": 3.66679326569034, + "seaking": 2.7369143404983225, + "starmie": 1.9902803360354464, + "mr-mime": 7.830520137475467, + "mr-mime-galar": 5.264546795828471, + "scyther": 5.255845637339442, + "jynx": 7.2833155964424785, + "electabuzz": 2.9040766873496078, + "magmar": 2.3667753832172425, + "tauros": 2.337747459213981, + "ditto": 2.8637755301334575, + "vaporeon": 3.339220256756154, + "jolteon": 2.291567293663715, + "flareon": 3.47886299324111, + "porygon": 3.2903813847123358, + "dragonair": 2.059916846707382, + "noctowl": 9.041420686938974, + "lanturn": 1.9225307570642043, + "togetic": 7.343771499616653, + "xatu": 4.833756750241152, + "bellossom": 3.2792481361560277, + "azumarill": 2.193145497936411, + "sudowoodo": 2.6153961313200913, + "politoed": 2.8042163050436018, + "quagsire": 4.226996988721207, + "slowking": 3.6870680532422444, + "dunsparce": 3.7268103095641036, + "qwilfish": 3.1718302602064847, + "sneasel": 3.6780911389560855, + "piloswine": 1.7033645950964953, + "octillery": 2.251343784192822, + "mantine": 3.4018718055533594, + "skarmory": 1.8350848174044812, + "hitmontop": 2.6081040024475635, + "miltank": 4.176885285464925, + "grovyle": 12.195741311925826, + "sceptile": 2.1570707912456215, + "combusken": 3.347454484241579, + "blaziken": 1.6685119313580885, + "marshtomp": 2.5263690258360625, + "swampert": 1.2630620703004314, + "linoone": 6.395886456739387, + "linoone-galar": 7.233753207661063, + "pelipper": 7.826132432151948, + "ninjask": 14.659480623242448, + "exploud": 1.9319380931321515, + "lairon": 2.635002866475639, + "manectric": 1.9577018051208113, + "roselia": 4.586765896506435, + "sharpedo": 7.322417780167205, + "wailmer": 6.349485508538436, + "torkoal": 2.0961551289050817, + "flygon": 2.5189693001245224, + "altaria": 2.095057162272508, + "whiscash": 1.884073552151719, + "crawdaunt": 2.3692943144086716, + "claydol": 4.662866651279279, + "cradily": 3.098107448592942, + "armaldo": 2.304827260563675, + "dusclops": 3.4199438908430224, + "absol": 2.916341767365438, + "glalie": 5.428991253909882, + "sealeo": 3.763448383565488, + "relicanth": 1.819699345805163, + "metang": 2.995159994694631, + "luxray": 4.235172875143219, + "vespiquen": 5.222951954004658, + "cherrim": 8.571020482360257, + "gastrodon": 2.3549781960021106, + "drifblim": 5.762296259820776, + "lopunny": 4.6370576396169465, + "skuntank": 1.5877822437919964, + "bronzong": 3.4103428844126262, + "munchlax": 3.1809506184354808, + "drapion": 2.4650052841176406, + "abomasnow": 4.669235136984081, + "froslass": 3.8126578958127446, + "rotom": 3.6289138336123234, + "stoutland": 3.095497969550356, + "liepard": 10.630497810312349, + "musharna": 2.242551147648558, + "unfezant": 7.926824277888845, + "boldore": 3.1588148162524257, + "swoobat": 6.921314074727249, + "audino": 2.736955677185887, + "gurdurr": 2.014673499333235, + "palpitoad": 3.8465071194640785, + "seismitoad": 7.394684159443767, + "scolipede": 4.024914693519339, + "whimsicott": 3.2824030464587812, + "lilligant": 4.253807009912416, + "basculin-red-striped": 2.861994634597214, + "basculin-blue-striped": 3.485545729872209, + "krookodile": 3.982234483806751, + "maractus": 3.1746850758346805, + "crustle": 2.4024909744051794, + "sigilyph": 2.8018215746391206, + "cofagrigus": 2.400656084126223, + "garbodor": 1.9542032953042643, + "cinccino": 5.698240675807185, + "vanillish": 2.8712638297617863, + "emolga": 4.0155737346259075, + "escavalier": 1.837362263530184, + "amoonguss": 2.853955219801385, + "jellicent": 1.597798455022626, + "galvantula": 2.0404925531973213, + "klang": 2.7136306845216644, + "klinklang": 3.5694432143274057, + "beheeyem": 2.615855927335514, + "lampent": 3.369879431149937, + "fraxure": 1.6784836621253723, + "beartic": 2.145090364715509, + "cryogonal": 2.591646352929618, + "accelgor": 4.225214910237683, + "stunfisk": 1.272557732711519, + "stunfisk-galar": 2.563859310566234, + "mienshao": 3.1281846173418426, + "druddigon": 1.9782370835209475, + "golurk": 1.6728581351007068, + "bisharp": 3.734139968290199, + "bouffalant": 1.5613012339357928, + "heatmor": 2.516204142489391, + "durant": 2.6719696511393027, + "diggersby": 3.7581878150935384, + "talonflame": 5.426242779191215, + "pangoro": 2.0188571481466466, + "doublade": 1.708160696869229, + "malamar": 5.7903869120176195, + "barbaracle": 1.6015027970791016, + "heliolisk": 4.669011866535296, + "tyrantrum": 1.6365751772307058, + "aurorus": 3.4234683761375475, + "hawlucha": 3.614306690857008, + "dedenne": 2.892755917673507, + "klefki": 2.511415073612529, + "trevenant": 3.416426003638955, + "gourgeist-average": 5.195303279327131, + "charjabug": 5.132754234046171, + "vikavolt": 2.3712911994748245, + "ribombee": 6.1492260051473355, + "lycanroc-midday": 3.600099133788773, + "lycanroc-midnight": 2.638513498981095, + "mudsdale": 1.7047091059982922, + "araquanid": 3.4021863500698846, + "lurantis": 3.5040653530085213, + "shiinotic": 4.874477306270734, + "salazzle": 4.173178516684093, + "bewear": 2.1151116034101984, + "tsareena": 4.595729882949174, + "comfey": 4.487468843252386, + "oranguru": 4.1027507170251, + "passimian": 2.0601330008220384, + "palossand": 1.6790087114987347, + "pyukumuku": 48.54068386142974, + "togedemaru": 2.6018542873038957, + "mimikyu-disguised": 4.503590779468431, + "greedent": 2.4369747125823906, + "orbeetle": 2.5545114526781525, + "thievul": 2.861142361507467, + "eldegoss": 5.907328965526585, + "dubwool": 3.5518229666040178, + "drednaw": 1.290156323153096, + "boltund": 5.105229558110936, + "carkol": 2.7364903713327657, + "coalossal": 2.092811630327189, + "sandaconda": 3.090303097378727, + "cramorant": 7.8233489998768855, + "barraskewda": 4.807476036519318, + "toxtricity-amped": 2.8085546753700044, + "centiskorch": 4.321055843185237, + "grapploct": 1.4142820204682034, + "polteageist": 2.92163144583514, + "hatterene": 2.728857972160016, + "grimmsnarl": 4.228605164072947, + "obstagoon": 3.929727689834495, + "perrserker": 3.294710697536553, + "alcremie": 1.5070202513514048, + "falinks": 2.7272944541582955, + "pincurchin": 2.903133478023121, + "frosmoth": 5.075197990062733, + "indeedee-male": 5.011211060739166, + "morpeko": 4.0344183844764325, + "copperajah": 2.459883957487012, + "duraludon": 1.5468214240512026, + "drakloak": 4.592329614878301 }, "sigilyph": { - "ivysaur": 4.6339073224535285, - "charmeleon": 4.1145896240238455, - "wartortle": 2.884712434919459, - "butterfree": 5.764060693097036, - "raichu": 4.986665084045489, - "raichu-alola": 2.812723488227305, - "sandslash": 2.5750168007832235, - "sandslash-alola": 1.7911822116548952, - "nidoqueen": 4.093555753275089, - "nidoking": 2.654435865470959, - "clefairy": 10.793758605473538, - "clefable": 2.2637097806835866, - "jigglypuff": 30.79854961681529, - "wigglytuff": 2.3741636204602123, - "gloom": 8.075993560756498, - "vileplume": 4.4494955940914975, - "dugtrio": 3.6664616180804477, - "dugtrio-alola": 3.0306707667656694, - "persian": 4.469506528438194, - "persian-alola": 3.6323491618766512, - "golduck": 3.261674584228963, - "poliwrath": 2.946388153159465, - "kadabra": 3.755043313918847, - "machoke": 5.5985757095930975, - "tentacruel": 3.011828581121461, - "slowbro": 2.045489426819161, - "magneton": 2.599249348634127, - "haunter": 6.434211755079009, - "kingler": 3.2314484736383413, - "exeggutor": 2.9032503112378865, - "marowak": 3.4937504342610235, - "marowak-alola": 2.2012493357231353, - "hitmonlee": 3.236189369543765, - "hitmonchan": 2.721869725318637, - "lickitung": 1.8590576979055933, - "weezing": 2.5423768613504913, - "weezing-galar": 4.360799756479491, - "rhydon": 3.014479758602044, - "chansey": 19.7264196667845, - "tangela": 8.785811410715391, - "kangaskhan": 1.9412595603771086, - "seadra": 4.971935626955141, - "seaking": 2.6411415404092686, - "starmie": 1.4063461741841747, - "mr-mime": 7.845486439493024, - "mr-mime-galar": 3.627730131905917, - "scyther": 3.528149801771302, - "jynx": 3.960867629314363, - "electabuzz": 2.1923613347057485, - "magmar": 1.69562599753568, - "tauros": 2.3580420742730412, - "ditto": 3.0295425968700416, - "vaporeon": 3.169290635182038, - "jolteon": 1.7535290397588943, - "flareon": 2.227120839569427, - "porygon": 2.6481981020404444, - "dragonair": 1.820554902112815, - "noctowl": 5.591578079181006, - "lanturn": 1.8826634417667425, - "togetic": 6.035540262199605, - "xatu": 4.13557890387815, - "bellossom": 3.264431562592317, - "azumarill": 2.4550754182634202, - "sudowoodo": 3.267670301506876, - "politoed": 2.773344306671902, - "quagsire": 5.421941613944137, - "slowking": 2.4034032115929627, - "dunsparce": 3.2251471897846633, - "qwilfish": 5.536993087754527, - "sneasel": 2.1585612081779058, - "piloswine": 1.7363620468563798, - "octillery": 2.5127373554328907, - "mantine": 2.340485141269492, - "skarmory": 1.8163003326799774, - "hitmontop": 3.9420421757720994, - "miltank": 4.036248143234121, - "grovyle": 11.114060909223005, - "sceptile": 1.91923928661312, - "combusken": 5.267518995736459, - "blaziken": 2.4796087258975517, - "marshtomp": 2.668595595246856, - "swampert": 1.3008366884517866, - "linoone": 5.218840516762944, - "linoone-galar": 4.032723102560807, - "pelipper": 6.781120508767627, - "ninjask": 10.178243720432565, - "exploud": 1.5828829800995974, - "lairon": 2.1786172207749868, - "manectric": 1.8575291910902672, - "roselia": 5.458348587613525, - "sharpedo": 4.86282937654359, - "wailmer": 7.03212291245454, - "torkoal": 2.220395750286404, - "flygon": 2.6000353250208708, - "altaria": 1.6656424046659675, - "whiscash": 2.2413213175935347, - "crawdaunt": 2.099414590771322, - "claydol": 3.361655817847203, - "cradily": 2.5314240675722237, - "armaldo": 2.2382026989226906, - "dusclops": 3.234200070067149, - "absol": 1.8498902245358932, - "glalie": 4.201550414761362, - "sealeo": 3.1510539496579915, - "relicanth": 2.0381178158052884, - "metang": 2.4869639129112886, - "luxray": 3.6958146411303563, - "vespiquen": 3.778310208776066, - "cherrim": 8.221670306167146, - "gastrodon": 2.1641228824340275, - "drifblim": 4.244799316188287, - "lopunny": 3.940308537333762, - "skuntank": 1.4300761702141567, - "bronzong": 2.8129817090773055, - "munchlax": 2.07111009749396, - "drapion": 2.499487339306037, - "abomasnow": 3.9566238786669112, - "froslass": 2.9405915534244946, - "rotom": 3.454718660500121, - "stoutland": 2.5434583972917117, - "liepard": 6.682494081880867, - "musharna": 1.7138352722608392, - "unfezant": 7.075212597968556, - "boldore": 4.417923113789243, - "swoobat": 5.9300246251802315, - "audino": 2.377819117116292, - "gurdurr": 4.15494742841801, - "palpitoad": 4.339335554658197, - "seismitoad": 6.759250854242775, - "scolipede": 4.620921419531026, - "whimsicott": 4.589281112863388, - "lilligant": 4.409930054864768, - "basculin-red-striped": 3.045448154848777, - "basculin-blue-striped": 3.8032488899798294, - "krookodile": 2.8750339721263756, - "maractus": 3.1972114008916273, - "crustle": 2.562538518988956, - "cofagrigus": 2.764821323379066, - "garbodor": 2.7847296821677188, - "cinccino": 4.5740440053705935, - "vanillish": 2.135934944364449, - "emolga": 2.848044254174204, - "escavalier": 2.017593691234379, - "amoonguss": 3.687600498049414, - "jellicent": 1.4566745278064523, - "galvantula": 1.4967824145317372, - "klang": 2.1781611947692925, - "klinklang": 2.961726651960349, - "beheeyem": 1.7280217780919203, - "lampent": 2.753339322356475, - "fraxure": 1.7475324957971405, - "beartic": 1.7925797149771237, - "cryogonal": 1.484073307952551, - "accelgor": 3.910824220088763, - "stunfisk": 1.336206969952698, - "stunfisk-galar": 2.09322908446555, - "mienshao": 4.89716245646109, - "druddigon": 1.929965187777622, - "golurk": 2.0227125543336966, - "bisharp": 2.033450874138465, - "bouffalant": 1.3788241904743814, - "heatmor": 2.0803436592043827, - "durant": 3.370237738597498, - "diggersby": 3.6218377747577817, - "talonflame": 3.145940798710228, - "pangoro": 2.4467309151446885, - "doublade": 2.3578485883607856, - "malamar": 2.7530665952223696, - "barbaracle": 1.5324868070027358, - "heliolisk": 3.3481360561833178, - "tyrantrum": 2.03876777855671, - "aurorus": 2.9744489066842625, - "hawlucha": 5.209732199525346, - "dedenne": 2.887014882522676, - "klefki": 2.8402105001985762, - "trevenant": 4.637324243661166, - "gourgeist-average": 7.511259222418656, - "charjabug": 4.272884595530094, - "vikavolt": 2.00453227708873, - "ribombee": 6.300788331734735, - "lycanroc-midday": 3.417414027851962, - "lycanroc-midnight": 2.500789790647519, - "mudsdale": 1.7999056783355958, - "araquanid": 3.0680169099029726, - "lurantis": 3.3966890309626283, - "shiinotic": 5.789837258836401, - "salazzle": 4.594146564952366, - "bewear": 2.5991622135694037, - "tsareena": 4.455117519189841, - "comfey": 5.309460129102421, - "oranguru": 2.907008732381065, - "passimian": 3.7045074676773204, - "palossand": 2.2681981295831934, - "pyukumuku": 45.494092526145685, - "togedemaru": 1.7822267377168834, - "mimikyu-disguised": 4.137549395623941, - "greedent": 2.401706841057707, - "orbeetle": 2.5355641876394803, - "thievul": 1.6056987828426283, - "eldegoss": 5.331387698351259, - "dubwool": 3.3630711913415476, - "drednaw": 1.2661713147263085, - "boltund": 4.314500674479424, - "carkol": 2.356412923306096, - "coalossal": 2.032588770236962, - "sandaconda": 3.810926976862299, - "cramorant": 4.979465258050963, - "barraskewda": 4.785683887580818, - "toxtricity-amped": 3.604272140116936, - "centiskorch": 2.7388501230696054, - "grapploct": 2.6778094168270092, - "polteageist": 2.7268774937240563, - "hatterene": 3.0636781368506423, - "grimmsnarl": 4.136480293298097, - "obstagoon": 2.4178823367992797, - "perrserker": 2.662950924724696, - "alcremie": 1.592046144539752, - "falinks": 5.271289653487967, - "pincurchin": 3.006730567288458, - "frosmoth": 3.2278843342552346, - "indeedee-male": 3.0315086395076296, - "morpeko": 2.0105285835918796, - "copperajah": 2.1300187706285394, - "duraludon": 1.4112743904137037, - "drakloak": 4.413972664541204, - "sigilyph": 2.488339220946572 + "ivysaur": 4.650943441102038, + "charmeleon": 4.1175532514327005, + "wartortle": 2.8863125511396186, + "butterfree": 5.771229110959359, + "raichu": 4.981892520012282, + "raichu-alola": 2.8053977451890137, + "sandslash": 2.580922949127515, + "sandslash-alola": 1.7892497005564678, + "nidoqueen": 4.103202237973729, + "nidoking": 2.659808916085417, + "clefairy": 10.82254753389352, + "clefable": 2.2658138276403013, + "jigglypuff": 30.850288950819177, + "wigglytuff": 2.3793128836624176, + "gloom": 8.096714870189166, + "vileplume": 4.466299491845248, + "dugtrio": 3.673943028062287, + "dugtrio-alola": 3.03019688356472, + "persian": 4.471441187790864, + "persian-alola": 3.621779484628857, + "golduck": 3.2632199328369866, + "poliwrath": 2.956809521356128, + "kadabra": 3.753917983703999, + "machoke": 5.612181595510467, + "tentacruel": 3.014830618570489, + "slowbro": 2.0482562354645166, + "magneton": 2.5921046268041623, + "haunter": 6.445517601250911, + "kingler": 3.242228723308334, + "exeggutor": 2.911255497074916, + "marowak": 3.50067376231121, + "marowak-alola": 2.2026264142778658, + "hitmonlee": 3.248920946457913, + "hitmonchan": 2.7257166140052815, + "lickitung": 1.8578090808393712, + "weezing": 2.5469946440118165, + "weezing-galar": 4.376357646230698, + "rhydon": 3.020732919957954, + "chansey": 19.66566358457692, + "tangela": 8.820837240254797, + "kangaskhan": 1.942517464177727, + "seadra": 4.978034467480824, + "seaking": 2.6446635246603596, + "starmie": 1.4047691217919112, + "mr-mime": 7.861572484334955, + "mr-mime-galar": 3.627319797931138, + "scyther": 3.5307557394740003, + "jynx": 3.9512894420221047, + "electabuzz": 2.186202789016693, + "magmar": 1.695963645999798, + "tauros": 2.3638112734489507, + "ditto": 3.0156291784488016, + "vaporeon": 3.16931118492995, + "jolteon": 1.7481891806480085, + "flareon": 2.2244962628256015, + "porygon": 2.644956472287018, + "dragonair": 1.8197976349815814, + "noctowl": 5.591261318274825, + "lanturn": 1.8803926600183534, + "togetic": 6.046742926204383, + "xatu": 4.140033620882096, + "bellossom": 3.272970795677573, + "azumarill": 2.461227912685642, + "sudowoodo": 3.2747040841091906, + "politoed": 2.777457064396879, + "quagsire": 5.433201687832511, + "slowking": 2.4010388365657924, + "dunsparce": 3.223620461599711, + "qwilfish": 5.548722580491912, + "sneasel": 2.151155499357226, + "piloswine": 1.738117676961504, + "octillery": 2.5141888016208234, + "mantine": 2.34036222788354, + "skarmory": 1.816162365166094, + "hitmontop": 3.957358445916829, + "miltank": 4.041389076025701, + "grovyle": 11.150954797452357, + "sceptile": 1.9241870564685195, + "combusken": 5.291116763796599, + "blaziken": 2.4891846580297132, + "marshtomp": 2.6708640421311607, + "swampert": 1.3027170587661625, + "linoone": 5.217369936373064, + "linoone-galar": 4.018858652134507, + "pelipper": 6.7862003808574105, + "ninjask": 10.196024938896695, + "exploud": 1.583530963343449, + "lairon": 2.1767884390077663, + "manectric": 1.8566997996505958, + "roselia": 5.476807752931663, + "sharpedo": 4.851183957434468, + "wailmer": 7.0375255549436275, + "torkoal": 2.2243391129809114, + "flygon": 2.603858598729797, + "altaria": 1.666941124264546, + "whiscash": 2.243886325362773, + "crawdaunt": 2.095097971060355, + "claydol": 3.3610238673674946, + "cradily": 2.5340567495935513, + "armaldo": 2.2429624747408092, + "dusclops": 3.23213926527613, + "absol": 1.8459275714449732, + "glalie": 4.197250580453852, + "sealeo": 3.1495156087740783, + "relicanth": 2.037060486577792, + "metang": 2.483662394400051, + "luxray": 3.68854595795304, + "vespiquen": 3.7862436571547273, + "cherrim": 8.24246800594466, + "gastrodon": 2.163534869963798, + "drifblim": 4.245396118666649, + "lopunny": 3.945650075450531, + "skuntank": 1.4272000076650253, + "bronzong": 2.8134335492038547, + "munchlax": 2.069172044341203, + "drapion": 2.4970058262405725, + "abomasnow": 3.9599728052796443, + "froslass": 2.93814219219663, + "rotom": 3.4472574083733534, + "stoutland": 2.544433818800354, + "liepard": 6.668659503339987, + "musharna": 1.7169806182344498, + "unfezant": 7.08800099444802, + "boldore": 4.428949510014045, + "swoobat": 5.936665482203873, + "audino": 2.379865463015161, + "gurdurr": 4.183123898722854, + "palpitoad": 4.348469180252931, + "seismitoad": 6.759795239325688, + "scolipede": 4.630829189012092, + "whimsicott": 4.6046491779030045, + "lilligant": 4.42220209379428, + "basculin-red-striped": 3.047301768900919, + "basculin-blue-striped": 3.8030801836536146, + "krookodile": 2.87219085117981, + "maractus": 3.2060072178014734, + "crustle": 2.5682338313753794, + "sigilyph": 2.488339220946572, + "cofagrigus": 2.7668379655832585, + "garbodor": 2.79220073942919, + "cinccino": 4.572010785005104, + "vanillish": 2.1335754290954143, + "emolga": 2.843588002887743, + "escavalier": 2.0206250195076, + "amoonguss": 3.6994302356278217, + "jellicent": 1.456746939119148, + "galvantula": 1.4945071757196926, + "klang": 2.1729775304955914, + "klinklang": 2.9602579560986113, + "beheeyem": 1.7261247299184206, + "lampent": 2.7577736733890554, + "fraxure": 1.7499135512198907, + "beartic": 1.7933182939726624, + "cryogonal": 1.4812645270844325, + "accelgor": 3.9148327569499433, + "stunfisk": 1.335974369477852, + "stunfisk-galar": 2.093811449373778, + "mienshao": 4.911331674106317, + "druddigon": 1.9321413838862573, + "golurk": 2.0264173949259616, + "bisharp": 2.0282938228371425, + "bouffalant": 1.3805811605334264, + "heatmor": 2.083649133660731, + "durant": 3.3704295809901, + "diggersby": 3.6298590469593828, + "talonflame": 3.1489197713191857, + "pangoro": 2.448123874563788, + "doublade": 2.362156869045043, + "malamar": 2.7472874687913436, + "barbaracle": 1.531982042110967, + "heliolisk": 3.3421852301659434, + "tyrantrum": 2.042314222034193, + "aurorus": 2.9690581385468366, + "hawlucha": 5.224871718732901, + "dedenne": 2.8843135370861317, + "klefki": 2.8417954787845625, + "trevenant": 4.657213784732221, + "gourgeist-average": 7.519025214948712, + "charjabug": 4.2730088550704215, + "vikavolt": 2.0062624956885293, + "ribombee": 6.314987968024035, + "lycanroc-midday": 3.4135015769648356, + "lycanroc-midnight": 2.4996361237419973, + "mudsdale": 1.8043864491522532, + "araquanid": 3.071596378322566, + "lurantis": 3.4040837931076435, + "shiinotic": 5.800978698296548, + "salazzle": 4.602112199963787, + "bewear": 2.6042938427344167, + "tsareena": 4.467747120475416, + "comfey": 5.324033893313756, + "oranguru": 2.9113133737481727, + "passimian": 3.718768250286409, + "palossand": 2.2722098131416186, + "pyukumuku": 45.50379342549104, + "togedemaru": 1.7774301213779253, + "mimikyu-disguised": 4.137415517210538, + "greedent": 2.4054889097990193, + "orbeetle": 2.540710380548446, + "thievul": 1.6015214395411044, + "eldegoss": 5.344632596759096, + "dubwool": 3.3700116769479878, + "drednaw": 1.2655932516799095, + "boltund": 4.302716991754267, + "carkol": 2.356008723387478, + "coalossal": 2.031752796328626, + "sandaconda": 3.822252231463983, + "cramorant": 4.97179970361427, + "barraskewda": 4.784367644033958, + "toxtricity-amped": 3.600797897187748, + "centiskorch": 2.7437287561652806, + "grapploct": 2.691870859500206, + "polteageist": 2.7309784453893613, + "hatterene": 3.0702305365819473, + "grimmsnarl": 4.133020502521997, + "obstagoon": 2.411342083437505, + "perrserker": 2.6581006802267755, + "alcremie": 1.5950626550439146, + "falinks": 5.295037670707154, + "pincurchin": 3.0017129627861867, + "frosmoth": 3.2309199678110385, + "indeedee-male": 3.029121070249155, + "morpeko": 2.000826598659673, + "copperajah": 2.1302454592759146, + "duraludon": 1.410500489292777, + "drakloak": 4.412504495952107 }, "cofagrigus": { - "ivysaur": 3.71129284692539, - "charmeleon": 4.052573947018391, - "wartortle": 2.948824183463297, - "butterfree": 4.748222496830106, - "raichu": 5.469717788257006, - "raichu-alola": 4.473199049447243, - "sandslash": 2.673620491807888, - "sandslash-alola": 2.4304312686933973, - "nidoqueen": 3.227500986164177, - "nidoking": 2.271785360427457, - "clefairy": 9.321340456982618, - "clefable": 2.1296833307759213, - "jigglypuff": 24.963383401571836, - "wigglytuff": 1.950293600759741, - "gloom": 6.912728661206131, - "vileplume": 3.59213896036497, - "dugtrio": 3.8352759002788193, - "dugtrio-alola": 3.5808642251553904, - "persian": 4.652915912879905, - "persian-alola": 3.2538928567128163, - "golduck": 3.4233093103443917, - "poliwrath": 2.571899002875921, - "kadabra": 4.794549991040602, - "machoke": 4.991502275691918, - "tentacruel": 2.6041134466741664, - "slowbro": 2.647836786088771, - "magneton": 3.4759454092082644, - "haunter": 5.962776601176927, - "kingler": 3.1490348199611313, - "exeggutor": 2.80033465772223, - "marowak": 3.370187637953727, - "marowak-alola": 3.175948817727704, - "hitmonlee": 2.84467547122712, - "hitmonchan": 2.55473588401407, - "lickitung": 1.859979528807282, - "weezing": 2.080605247944422, - "weezing-galar": 3.5107804874304036, - "rhydon": 2.7323202285619375, - "chansey": 23.26992920069349, - "tangela": 6.2883512684214935, - "kangaskhan": 1.8424540444443118, - "seadra": 5.0656919832598195, - "seaking": 2.626064548155325, - "starmie": 2.0154107876409215, - "mr-mime": 8.403459102797965, - "mr-mime-galar": 4.635419681583615, - "scyther": 2.9483361328163813, - "jynx": 5.099221928068029, - "electabuzz": 2.630819642471983, - "magmar": 1.724081887583233, - "tauros": 2.1467949885314233, - "ditto": 4.060251734215693, - "vaporeon": 3.33227427572303, - "jolteon": 1.9895644318240864, - "flareon": 2.2789459824406526, - "porygon": 2.7376626468013425, - "dragonair": 1.9937801260015813, - "noctowl": 5.654656135833294, - "lanturn": 1.9613527608438637, - "togetic": 5.519945639472806, - "xatu": 5.314805127441206, - "bellossom": 2.437420659427353, - "azumarill": 2.4780771984231036, - "sudowoodo": 3.0642698513170554, - "politoed": 2.730778130886036, - "quagsire": 5.367066729525799, - "slowking": 3.262475816117851, - "dunsparce": 3.074066888910859, - "qwilfish": 4.697410777056998, - "sneasel": 1.8764151163740237, - "piloswine": 1.7864642392649654, - "octillery": 2.555042536973097, - "mantine": 2.333579673575178, - "skarmory": 2.473560228460721, - "hitmontop": 3.3648651440265516, - "miltank": 4.003643562032357, - "grovyle": 8.320109715530226, - "sceptile": 1.4631599615664452, - "combusken": 4.368405969690917, - "blaziken": 2.068032976005442, - "marshtomp": 2.6867542062013836, - "swampert": 1.322296252076947, - "linoone": 5.272708079124674, - "linoone-galar": 3.000550654080109, - "pelipper": 7.509086020562098, - "ninjask": 8.437141701328683, - "exploud": 1.6601444632371263, - "lairon": 3.002523814574318, - "manectric": 1.9999339967997223, - "roselia": 4.41274920580057, - "sharpedo": 4.358312402036786, - "wailmer": 7.034262318502297, - "torkoal": 2.228684761062554, - "flygon": 2.604809982242207, - "altaria": 1.6474318230466116, - "whiscash": 2.21925732763974, - "crawdaunt": 1.8375050042818368, - "claydol": 4.654462815159565, - "cradily": 2.379275770299156, - "armaldo": 2.1281045917080146, - "dusclops": 4.61782756287944, - "absol": 1.7410616032439603, - "glalie": 4.289640839738265, - "sealeo": 3.3576855912059216, - "relicanth": 2.2329185101378553, - "metang": 4.554502627912574, - "luxray": 4.318769034725863, - "vespiquen": 3.101243783707791, - "cherrim": 6.308333958934737, - "gastrodon": 2.3966565330911087, - "drifblim": 5.855701133656352, - "lopunny": 3.925714101542983, - "skuntank": 1.227212575219625, - "bronzong": 4.795727802527685, - "munchlax": 2.1789628017135563, - "drapion": 2.1641692343945067, - "abomasnow": 3.4706606324038383, - "froslass": 3.943439587634651, - "rotom": 5.1878700258842025, - "stoutland": 2.7615687326662615, - "liepard": 5.987732140691024, - "musharna": 2.103572475490168, - "unfezant": 6.364194274100546, - "boldore": 4.09790875712392, - "swoobat": 7.6209092672003225, - "audino": 2.517100204225672, - "gurdurr": 3.261410202253404, - "palpitoad": 4.106305971173415, - "seismitoad": 7.619780547657405, - "scolipede": 4.068789144282713, - "whimsicott": 3.37640477133363, - "lilligant": 3.271754050151228, - "basculin-red-striped": 3.146140203129792, - "basculin-blue-striped": 3.879373533981725, - "krookodile": 2.4179683288969795, - "maractus": 2.286269165992481, - "crustle": 2.5285344620095858, - "sigilyph": 3.226745792554607, - "garbodor": 2.383810335095714, - "cinccino": 4.918479340048772, - "vanillish": 2.374788699090071, - "emolga": 3.241926345364693, - "escavalier": 2.032984331518389, - "amoonguss": 3.0755188165214853, - "jellicent": 2.1102659973953655, - "galvantula": 1.6993623897216223, - "klang": 2.9686581336524984, - "klinklang": 4.0475848938645935, - "beheeyem": 2.3686380083212617, - "lampent": 3.7785211948110584, - "fraxure": 1.83952397321578, - "beartic": 1.8631433295626507, - "cryogonal": 1.6181000554497404, - "accelgor": 3.360937705035373, - "stunfisk": 1.318817778925133, - "stunfisk-galar": 2.524546803913171, - "mienshao": 4.562744842007256, - "druddigon": 1.9303713335668449, - "golurk": 2.719136555028615, - "bisharp": 2.1779149703109018, - "bouffalant": 1.3252083145298297, - "heatmor": 2.028451788124501, - "durant": 3.79511104166788, - "diggersby": 3.2315090600284506, - "talonflame": 3.114028243718946, - "pangoro": 1.6089676481675135, - "doublade": 4.778955216592885, - "malamar": 2.9202584681718093, - "barbaracle": 1.6879937742818023, - "heliolisk": 3.4079460370169983, - "tyrantrum": 1.9967881371118765, - "aurorus": 2.4820976273111652, - "hawlucha": 4.529632621701227, - "dedenne": 3.0295515546444483, - "klefki": 3.3528538368768723, - "trevenant": 4.565812775024808, - "gourgeist-average": 7.885815639903081, - "charjabug": 4.456577338287673, - "vikavolt": 2.1209533916930927, - "ribombee": 5.015356906534353, - "lycanroc-midday": 3.6780523766786994, - "lycanroc-midnight": 2.5311014072981015, - "mudsdale": 1.7844007760338894, - "araquanid": 2.5277888431144437, - "lurantis": 2.715029695311835, - "shiinotic": 4.6862641677299255, - "salazzle": 3.8391127700991445, - "bewear": 2.5065049247162525, - "tsareena": 3.3513835666940905, - "comfey": 4.567501750512262, - "oranguru": 2.1993719255527924, - "passimian": 3.2145840443721507, - "palossand": 2.9978946360043395, - "pyukumuku": 47.86313003949639, - "togedemaru": 2.388584155531521, - "mimikyu-disguised": 5.6049018277215925, - "greedent": 2.2791856930376495, - "orbeetle": 2.5560904434443046, - "thievul": 1.4378706482204, - "eldegoss": 4.075232747322421, - "dubwool": 3.236829324405572, - "drednaw": 1.4479003192735664, - "boltund": 4.7740033916140705, - "carkol": 2.615566907217893, - "coalossal": 2.1082300938648313, - "sandaconda": 3.6768685306674262, - "cramorant": 5.237326208190674, - "barraskewda": 4.9719713995206805, - "toxtricity-amped": 3.747150058325963, - "centiskorch": 2.1655847904771868, - "grapploct": 2.2094818409317343, - "polteageist": 3.3937308477622485, - "hatterene": 3.5408303478246803, - "grimmsnarl": 3.121025398765034, - "obstagoon": 1.9052316913734098, - "perrserker": 3.6305361617118725, - "alcremie": 1.430075913845008, - "falinks": 4.471318814807777, - "pincurchin": 3.1591801610924186, - "frosmoth": 2.890491097114766, - "indeedee-male": 2.4569373446135616, - "morpeko": 2.358156892453967, - "copperajah": 2.651483379838865, - "duraludon": 1.982969262027538, - "drakloak": 6.244258969953568, - "cofagrigus": 3.7266945359662103 + "ivysaur": 3.716154716083025, + "charmeleon": 4.053355916739069, + "wartortle": 2.9512364953333323, + "butterfree": 4.750354968545513, + "raichu": 5.476833660026635, + "raichu-alola": 4.475933160816979, + "sandslash": 2.680096414461204, + "sandslash-alola": 2.4341888982484603, + "nidoqueen": 3.2299048668770975, + "nidoking": 2.2765469628185673, + "clefairy": 9.323446308507725, + "clefable": 2.1301684386726762, + "jigglypuff": 24.92962328878683, + "wigglytuff": 1.9492333890135307, + "gloom": 6.924470913272721, + "vileplume": 3.5983700241448187, + "dugtrio": 3.837736466752233, + "dugtrio-alola": 3.580883398067089, + "persian": 4.659158974372298, + "persian-alola": 3.2426585943432213, + "golduck": 3.427706655247599, + "poliwrath": 2.581417681589569, + "kadabra": 4.798041277630805, + "machoke": 5.0041198006151575, + "tentacruel": 2.6068629570885467, + "slowbro": 2.650967874641575, + "magneton": 3.475824356114586, + "haunter": 5.96902368893654, + "kingler": 3.1574399690238595, + "exeggutor": 2.804628118229907, + "marowak": 3.372215913592636, + "marowak-alola": 3.1823330270299266, + "hitmonlee": 2.8534496806513294, + "hitmonchan": 2.5602193586268402, + "lickitung": 1.8588401958437015, + "weezing": 2.084468184927422, + "weezing-galar": 3.518974334671432, + "rhydon": 2.7356068517703056, + "chansey": 23.275097584820305, + "tangela": 6.302700640641034, + "kangaskhan": 1.8417192982835662, + "seadra": 5.07290837246632, + "seaking": 2.6288457967334873, + "starmie": 2.017529973647764, + "mr-mime": 8.404773979208926, + "mr-mime-galar": 4.635348201605892, + "scyther": 2.9508119757432727, + "jynx": 5.100424650928037, + "electabuzz": 2.6317060088500743, + "magmar": 1.7249312317290468, + "tauros": 2.148228963141298, + "ditto": 4.056866873768164, + "vaporeon": 3.3352066926962687, + "jolteon": 1.9883040195849488, + "flareon": 2.2764022132946775, + "porygon": 2.735747273286016, + "dragonair": 1.9946525076604629, + "noctowl": 5.655603796577768, + "lanturn": 1.9618391674577673, + "togetic": 5.523371858210158, + "xatu": 5.318887295091486, + "bellossom": 2.437477720959066, + "azumarill": 2.482943976752109, + "sudowoodo": 3.0707007159161943, + "politoed": 2.733539366642008, + "quagsire": 5.376292293438465, + "slowking": 3.265136764129008, + "dunsparce": 3.0694484959935595, + "qwilfish": 4.711274865957646, + "sneasel": 1.8702471349308902, + "piloswine": 1.7895611125031035, + "octillery": 2.556914634343257, + "mantine": 2.3330641096334745, + "skarmory": 2.4771298402069055, + "hitmontop": 3.37459541892905, + "miltank": 4.008748865205223, + "grovyle": 8.326324000164941, + "sceptile": 1.463415390853894, + "combusken": 4.382997144424246, + "blaziken": 2.0738786147099573, + "marshtomp": 2.688939369177512, + "swampert": 1.3227754424986746, + "linoone": 5.272124136292087, + "linoone-galar": 2.9845176199193326, + "pelipper": 7.529607001178751, + "ninjask": 8.450759945337515, + "exploud": 1.6618862539170798, + "lairon": 3.0057687970806732, + "manectric": 2.0022101266733396, + "roselia": 4.416834443184802, + "sharpedo": 4.348204832737911, + "wailmer": 7.038412623852244, + "torkoal": 2.232481651097265, + "flygon": 2.6073687576476, + "altaria": 1.6473984672622792, + "whiscash": 2.2205213751485746, + "crawdaunt": 1.8343314427004738, + "claydol": 4.660865176660039, + "cradily": 2.379925885919504, + "armaldo": 2.131756195767425, + "dusclops": 4.619696920163072, + "absol": 1.7379368619301312, + "glalie": 4.2883081624757, + "sealeo": 3.3580660308476267, + "relicanth": 2.235697599905023, + "metang": 4.562661665928084, + "luxray": 4.32524389317877, + "vespiquen": 3.1070750319176637, + "cherrim": 6.313681178707592, + "gastrodon": 2.4005577158611735, + "drifblim": 5.86240396623289, + "lopunny": 3.931194548871539, + "skuntank": 1.22421166155481, + "bronzong": 4.804236281195445, + "munchlax": 2.178934314991266, + "drapion": 2.1611846526724996, + "abomasnow": 3.47313295736706, + "froslass": 3.945831505406198, + "rotom": 5.190022453541664, + "stoutland": 2.7677479940052576, + "liepard": 5.973077431923219, + "musharna": 2.105161138324334, + "unfezant": 6.362905148193613, + "boldore": 4.107662020095664, + "swoobat": 7.626902904129796, + "audino": 2.5172005447028196, + "gurdurr": 3.276159093090749, + "palpitoad": 4.109597332292772, + "seismitoad": 7.637994038652982, + "scolipede": 4.07716089689851, + "whimsicott": 3.378251939020891, + "lilligant": 3.273623473008085, + "basculin-red-striped": 3.149546236375476, + "basculin-blue-striped": 3.879886228572467, + "krookodile": 2.411648034258003, + "maractus": 2.2863539278403873, + "crustle": 2.5353785864852885, + "sigilyph": 3.229145097126389, + "cofagrigus": 3.7266945359662103, + "garbodor": 2.3923691443354986, + "cinccino": 4.92359250046722, + "vanillish": 2.375565321788209, + "emolga": 3.244236517983821, + "escavalier": 2.0352359833341134, + "amoonguss": 3.0809616940465943, + "jellicent": 2.1137013115060452, + "galvantula": 1.700385585813544, + "klang": 2.9687171567698547, + "klinklang": 4.0553141391782646, + "beheeyem": 2.369287752426705, + "lampent": 3.786947969998743, + "fraxure": 1.8431271477478774, + "beartic": 1.8643043325127684, + "cryogonal": 1.616186852178981, + "accelgor": 3.364849663127748, + "stunfisk": 1.3187487837240692, + "stunfisk-galar": 2.5256718441539245, + "mienshao": 4.580515373094526, + "druddigon": 1.9314072675729248, + "golurk": 2.725101254159759, + "bisharp": 2.174199441889635, + "bouffalant": 1.3259710410871395, + "heatmor": 2.03020121687941, + "durant": 3.802094122820811, + "diggersby": 3.2312252394292056, + "talonflame": 3.115689996909766, + "pangoro": 1.607363297569679, + "doublade": 4.797778432310275, + "malamar": 2.9154452331747955, + "barbaracle": 1.6908989766695615, + "heliolisk": 3.4060728895126156, + "tyrantrum": 2.0023870262577916, + "aurorus": 2.4805912001614496, + "hawlucha": 4.541125268357245, + "dedenne": 3.0303121356406684, + "klefki": 3.3551245029631485, + "trevenant": 4.5806445905491895, + "gourgeist-average": 7.895568504224608, + "charjabug": 4.4625092956405465, + "vikavolt": 2.124867038339232, + "ribombee": 5.01980895778827, + "lycanroc-midday": 3.6824687348025544, + "lycanroc-midnight": 2.532814914197221, + "mudsdale": 1.7874520694495923, + "araquanid": 2.5316662471160747, + "lurantis": 2.719166090477609, + "shiinotic": 4.689385632098675, + "salazzle": 3.845914430423627, + "bewear": 2.512845375245387, + "tsareena": 3.3543650080583545, + "comfey": 4.568648887821895, + "oranguru": 2.193845597833787, + "passimian": 3.2263206709173122, + "palossand": 3.0013372956564623, + "pyukumuku": 47.89226253767697, + "togedemaru": 2.3898349827453704, + "mimikyu-disguised": 5.613297293715442, + "greedent": 2.2806019316966877, + "orbeetle": 2.558099214429798, + "thievul": 1.4332705855075951, + "eldegoss": 4.077086488465078, + "dubwool": 3.241411694832018, + "drednaw": 1.4493876826392145, + "boltund": 4.771659197374371, + "carkol": 2.6167043996592554, + "coalossal": 2.1085402904929254, + "sandaconda": 3.6826518875888437, + "cramorant": 5.233310859930676, + "barraskewda": 4.9732398737630845, + "toxtricity-amped": 3.755960621530093, + "centiskorch": 2.1672917210172393, + "grapploct": 2.218079497975112, + "polteageist": 3.3968169162634485, + "hatterene": 3.5450144442413514, + "grimmsnarl": 3.111814798477871, + "obstagoon": 1.8991533067298558, + "perrserker": 3.6308676289236854, + "alcremie": 1.429955128545024, + "falinks": 4.488834443504029, + "pincurchin": 3.160436331057479, + "frosmoth": 2.89172014158885, + "indeedee-male": 2.4482826151423014, + "morpeko": 2.3527191650800607, + "copperajah": 2.6541492077440547, + "duraludon": 1.9857156132296219, + "drakloak": 6.2468656478280105 }, "garbodor": { - "ivysaur": 3.5897747384044045, - "charmeleon": 3.9902566042158796, - "wartortle": 2.7850400262839203, - "butterfree": 5.2758707902013615, - "raichu": 5.613392926578188, - "raichu-alola": 3.4936551279072994, - "sandslash": 1.7335037005090705, - "sandslash-alola": 2.504134840857273, - "nidoqueen": 2.090881514163306, - "nidoking": 1.363559847971274, - "clefairy": 13.578465695949347, - "clefable": 3.2223906837756373, - "jigglypuff": 40.036451151113155, - "wigglytuff": 2.8560947523611393, - "gloom": 6.269600721357941, - "vileplume": 3.2556013241924653, - "dugtrio": 3.110955674431642, - "dugtrio-alola": 3.5121810020138247, - "persian": 4.638413732193516, - "persian-alola": 4.541853423966618, - "golduck": 3.0833873383240067, - "poliwrath": 1.9396724710270052, - "kadabra": 4.351592783711784, - "machoke": 3.9595127374096872, - "tentacruel": 2.1459869367026627, - "slowbro": 1.5198868625932391, - "magneton": 3.17923197235804, - "haunter": 3.345700375897697, - "kingler": 2.366637043176029, - "exeggutor": 2.290831443427506, - "marowak": 2.451306403836693, - "marowak-alola": 1.6547514450869945, - "hitmonlee": 2.812621598923027, - "hitmonchan": 2.2910978283140615, - "lickitung": 2.0222934939906763, - "weezing": 1.3153888492415127, - "weezing-galar": 2.5866338518859058, - "rhydon": 2.0028823016547372, - "chansey": 31.986079807429874, - "tangela": 6.561609219018381, - "kangaskhan": 1.8859264181258184, - "seadra": 3.976214892458856, - "seaking": 2.4696702833633806, - "starmie": 1.4683969208493672, - "mr-mime": 8.704135806948536, - "mr-mime-galar": 3.5602667393956753, - "scyther": 2.75674104048236, - "jynx": 4.954262864382676, - "electabuzz": 2.7313217346644647, - "magmar": 1.808078244963575, - "tauros": 1.9942317738763913, - "ditto": 2.1399520003354957, - "vaporeon": 3.427078235044384, - "jolteon": 2.077760457190753, - "flareon": 2.6160213500926224, - "porygon": 2.9624446746675672, - "dragonair": 1.8955354577268766, - "noctowl": 6.285701212052977, - "lanturn": 2.027229693421453, - "togetic": 7.652728118165536, - "xatu": 3.529707623789241, - "bellossom": 3.4002029392779827, - "azumarill": 3.268470048892003, - "sudowoodo": 2.4329562538088876, - "politoed": 2.5305018754358195, - "quagsire": 4.076137873994073, - "slowking": 2.430907024107059, - "dunsparce": 3.4770100886027753, - "qwilfish": 2.851333599415221, - "sneasel": 3.2022426189596653, - "piloswine": 1.6229722502421637, - "octillery": 2.434835628732207, - "mantine": 2.716822056128314, - "skarmory": 1.6401238502213467, - "hitmontop": 2.701837719903006, - "miltank": 3.6590239622919865, - "grovyle": 11.93811792499517, - "sceptile": 2.047490894873874, - "combusken": 3.5301203080540775, - "blaziken": 1.6817926221822677, - "marshtomp": 2.0939580696813316, - "swampert": 1.0562814358122241, - "linoone": 5.576578091136266, - "linoone-galar": 6.415671433851513, - "pelipper": 5.777561782457308, - "ninjask": 7.99096103509817, - "exploud": 1.767274335165271, - "lairon": 2.696176893408576, - "manectric": 1.7476183606951325, - "roselia": 4.280375612943153, - "sharpedo": 5.289915294938524, - "wailmer": 6.598233150818077, - "torkoal": 1.7829948766483659, - "flygon": 2.0610869000877807, - "altaria": 1.715068328087112, - "whiscash": 1.751427526673381, - "crawdaunt": 1.9907334662484923, - "claydol": 2.6447236503682356, - "cradily": 2.549002630842236, - "armaldo": 1.5799015178021625, - "dusclops": 2.8682698288426236, - "absol": 2.0840688592118, - "glalie": 4.34099319406231, - "sealeo": 3.3422858959356807, - "relicanth": 1.8138950025246783, - "metang": 2.3149849856561566, - "luxray": 3.8108607239704826, - "vespiquen": 2.8684638374569205, - "cherrim": 8.149446464711655, - "gastrodon": 1.943817071190188, - "drifblim": 3.347247129370454, - "lopunny": 4.017296691566894, - "skuntank": 1.2560985291200109, - "bronzong": 2.4257839966216466, - "munchlax": 2.689517840832689, - "drapion": 2.042230195251374, - "abomasnow": 4.20176805326607, - "froslass": 2.4479958424848847, - "rotom": 3.0245742981773445, - "stoutland": 2.5249806440314977, - "liepard": 7.67157408834751, - "musharna": 1.420105208601076, - "unfezant": 6.000558248823323, - "boldore": 2.9589311148198045, - "swoobat": 5.041679578572785, - "audino": 2.3970672180709416, - "gurdurr": 2.114755341066514, - "palpitoad": 3.141789965869938, - "seismitoad": 5.8601767980989825, - "scolipede": 2.751833100068134, - "whimsicott": 6.1721195769251445, - "lilligant": 4.298869331219843, - "basculin-red-striped": 2.6605089158582134, - "basculin-blue-striped": 3.5774334454381944, - "krookodile": 2.764234940255938, - "maractus": 3.108875740530476, - "crustle": 1.8155406223039345, - "sigilyph": 2.183335241871148, - "cofagrigus": 1.947463259678348, - "cinccino": 4.805076491271874, - "vanillish": 2.308110281440479, - "emolga": 3.06735047454298, - "escavalier": 1.529803288897794, - "amoonguss": 2.8241994019243073, - "jellicent": 1.4191277108274667, - "galvantula": 1.6279660773080076, - "klang": 2.893279078695563, - "klinklang": 3.3722993979999334, - "beheeyem": 1.7621239089511698, - "lampent": 2.1267937293181314, - "fraxure": 1.5078835610698222, - "beartic": 1.848711765188718, - "cryogonal": 2.103994432821957, - "accelgor": 3.5916186659425557, - "stunfisk": 1.1045112346651773, - "stunfisk-galar": 2.2103735672210005, - "mienshao": 3.488873560946238, - "druddigon": 1.7759524522000674, - "golurk": 1.4072671315104646, - "bisharp": 3.1192961280293257, - "bouffalant": 1.3982886925719344, - "heatmor": 1.946174953328771, - "durant": 2.480087167115795, - "diggersby": 3.1126568179018417, - "talonflame": 2.9288193611258846, - "pangoro": 1.8847726651342986, - "doublade": 1.52430350643961, - "malamar": 2.621998793881329, - "barbaracle": 1.495268989954254, - "heliolisk": 4.047842506580078, - "tyrantrum": 1.530694678482173, - "aurorus": 3.3396498034760684, - "hawlucha": 3.62063997918563, - "dedenne": 4.458697249678263, - "klefki": 2.70516204949963, - "trevenant": 3.301612076445181, - "gourgeist-average": 4.8357399270343295, - "charjabug": 3.7305769286257613, - "vikavolt": 1.857210468152754, - "ribombee": 6.941168897550096, - "lycanroc-midday": 3.507459183087371, - "lycanroc-midnight": 2.519594629777533, - "mudsdale": 1.3611680036272595, - "araquanid": 2.6189703199082914, - "lurantis": 3.297611997933343, - "shiinotic": 9.526106335237298, - "salazzle": 2.7715449055196952, - "bewear": 1.7778859173123007, - "tsareena": 4.218030403564537, - "comfey": 6.76760575861101, - "oranguru": 2.3923715801839913, - "passimian": 2.2832422098365495, - "palossand": 1.406163747192459, - "pyukumuku": 46.007593067528134, - "togedemaru": 2.4715827470855762, - "mimikyu-disguised": 4.234871379431976, - "greedent": 2.0489377666699937, - "orbeetle": 1.7630630950505464, - "thievul": 2.0558758839799163, - "eldegoss": 5.668955530039023, - "dubwool": 3.18401316100896, - "drednaw": 1.3044169022009555, - "boltund": 4.7251179737571585, - "carkol": 2.4137448457910686, - "coalossal": 1.968655965112708, - "sandaconda": 2.509274974851964, - "cramorant": 5.89838448292393, - "barraskewda": 4.510314523703357, - "toxtricity-amped": 2.250246412478223, - "centiskorch": 2.1032920659143075, - "grapploct": 1.7397213902407165, - "polteageist": 2.272532157586174, - "hatterene": 3.1736423432221468, - "grimmsnarl": 5.414142769163988, - "obstagoon": 3.332770608659649, - "perrserker": 3.1561544364626704, - "alcremie": 2.359695183300678, - "falinks": 3.091993558463945, - "pincurchin": 2.926817082379202, - "frosmoth": 2.9637867116708243, - "indeedee-male": 3.200266891315239, - "morpeko": 2.889353573558496, - "copperajah": 2.590451347224522, - "duraludon": 1.4571828092532675, - "drakloak": 3.7273522110399915, - "garbodor": 1.6595604174492686 + "ivysaur": 3.598460261642656, + "charmeleon": 3.9953139867683998, + "wartortle": 2.789198258808762, + "butterfree": 5.285852269102106, + "raichu": 5.625504522506624, + "raichu-alola": 3.4905366332548295, + "sandslash": 1.7308696616795323, + "sandslash-alola": 2.5056163969849194, + "nidoqueen": 2.085388677805682, + "nidoking": 1.359783795582872, + "clefairy": 13.629462353212258, + "clefable": 3.235177535377307, + "jigglypuff": 40.214655897155716, + "wigglytuff": 2.8637003116086994, + "gloom": 6.283740799069182, + "vileplume": 3.2632652594161176, + "dugtrio": 3.1049886471222896, + "dugtrio-alola": 3.5068705190723657, + "persian": 4.646572510172792, + "persian-alola": 4.549489377908188, + "golduck": 3.0862299257381753, + "poliwrath": 1.9428477949943135, + "kadabra": 4.348946396269042, + "machoke": 3.9666733235467992, + "tentacruel": 2.1458420818688126, + "slowbro": 1.5170378926087116, + "magneton": 3.1760977097796834, + "haunter": 3.338676746855551, + "kingler": 2.3680428892609013, + "exeggutor": 2.2931151148170805, + "marowak": 2.4467362109585826, + "marowak-alola": 1.6528905586456735, + "hitmonlee": 2.820585417630447, + "hitmonchan": 2.2949959694806443, + "lickitung": 2.025411267614076, + "weezing": 1.31502110399232, + "weezing-galar": 2.590956891434015, + "rhydon": 1.9978094914666389, + "chansey": 32.033791833576316, + "tangela": 6.584222637427385, + "kangaskhan": 1.8877909582990187, + "seadra": 3.9777587583870266, + "seaking": 2.4717642554640253, + "starmie": 1.4683982497439987, + "mr-mime": 8.700278547928251, + "mr-mime-galar": 3.5552467804945835, + "scyther": 2.758095548883059, + "jynx": 4.960221956502659, + "electabuzz": 2.73422540140096, + "magmar": 1.8108080257915824, + "tauros": 1.9966668290278293, + "ditto": 2.1242924576974285, + "vaporeon": 3.4319040788648327, + "jolteon": 2.080516708513927, + "flareon": 2.6197889990270755, + "porygon": 2.9669619455594303, + "dragonair": 1.8974045775334214, + "noctowl": 6.292428504477957, + "lanturn": 2.030833438355462, + "togetic": 7.679825537111292, + "xatu": 3.5249717564212855, + "bellossom": 3.4152143655100415, + "azumarill": 3.2833761367029197, + "sudowoodo": 2.43216229821944, + "politoed": 2.5310143177249333, + "quagsire": 4.076448349578533, + "slowking": 2.4294196899903526, + "dunsparce": 3.4844202629097283, + "qwilfish": 2.849944633258925, + "sneasel": 3.209103117382339, + "piloswine": 1.6243155471508244, + "octillery": 2.4387023855912853, + "mantine": 2.7202683383147077, + "skarmory": 1.6374069590637932, + "hitmontop": 2.704591275979209, + "miltank": 3.6657021362194815, + "grovyle": 11.991835856890528, + "sceptile": 2.0562508130316863, + "combusken": 3.5382476649916246, + "blaziken": 1.6850602445096574, + "marshtomp": 2.0918276076751905, + "swampert": 1.05482997978148, + "linoone": 5.587221343761804, + "linoone-galar": 6.429758558584271, + "pelipper": 5.778646655062797, + "ninjask": 8.0001658084582, + "exploud": 1.7707308862071494, + "lairon": 2.6951490430442018, + "manectric": 1.7489829636029028, + "roselia": 4.283285353013406, + "sharpedo": 5.298246105316533, + "wailmer": 6.60581172451257, + "torkoal": 1.7846028405447645, + "flygon": 2.0596823109816813, + "altaria": 1.71684203107313, + "whiscash": 1.749209491438926, + "crawdaunt": 1.9932645250141197, + "claydol": 2.63741961743328, + "cradily": 2.5558592011824732, + "armaldo": 1.5788179305351477, + "dusclops": 2.8660242414181, + "absol": 2.087691049995115, + "glalie": 4.346842019129774, + "sealeo": 3.3473416820318906, + "relicanth": 1.8132301993838542, + "metang": 2.307593426485564, + "luxray": 3.8139809941889515, + "vespiquen": 2.8720285930731757, + "cherrim": 8.179653031730293, + "gastrodon": 1.9437593675820328, + "drifblim": 3.337661872335958, + "lopunny": 4.025777639637245, + "skuntank": 1.256444559884415, + "bronzong": 2.416661256839086, + "munchlax": 2.696171595806284, + "drapion": 2.042709674645301, + "abomasnow": 4.215256950056065, + "froslass": 2.444821696244306, + "rotom": 3.021850234198908, + "stoutland": 2.527843149276075, + "liepard": 7.690830457159256, + "musharna": 1.4181123753664369, + "unfezant": 6.007052444649414, + "boldore": 2.9569995917607823, + "swoobat": 5.034761745230492, + "audino": 2.401576630154368, + "gurdurr": 2.1174188221865147, + "palpitoad": 3.1375195713406114, + "seismitoad": 5.861055956377051, + "scolipede": 2.750694589547799, + "whimsicott": 6.209272277913454, + "lilligant": 4.317811575180971, + "basculin-red-striped": 2.661133932130203, + "basculin-blue-striped": 3.581023976830107, + "krookodile": 2.7622569800734587, + "maractus": 3.122673091907223, + "crustle": 1.8162986335868574, + "sigilyph": 2.1811063362406693, + "cofagrigus": 1.942267579144373, + "garbodor": 1.6595604174492686, + "cinccino": 4.811816849311388, + "vanillish": 2.311124694308658, + "emolga": 3.0703689907629848, + "escavalier": 1.5262765700961092, + "amoonguss": 2.830669433539213, + "jellicent": 1.4188614462743179, + "galvantula": 1.6298014131235021, + "klang": 2.8917278399090423, + "klinklang": 3.3689960992211105, + "beheeyem": 1.760913536446232, + "lampent": 2.12551618257005, + "fraxure": 1.5094702721241942, + "beartic": 1.8519980777169591, + "cryogonal": 2.1089177446265666, + "accelgor": 3.5998279741382433, + "stunfisk": 1.102828471093849, + "stunfisk-galar": 2.2060098822770655, + "mienshao": 3.494611047112663, + "druddigon": 1.7771895410181515, + "golurk": 1.4039786305534638, + "bisharp": 3.119271592440279, + "bouffalant": 1.401832373811707, + "heatmor": 1.9499213755271272, + "durant": 2.475832574914034, + "diggersby": 3.1090803081374556, + "talonflame": 2.9311965985235577, + "pangoro": 1.889417366034008, + "doublade": 1.5192796987176496, + "malamar": 2.6206688115229806, + "barbaracle": 1.495220588141106, + "heliolisk": 4.054435227252274, + "tyrantrum": 1.5310937381562026, + "aurorus": 3.3431865489446073, + "hawlucha": 3.6265850106369797, + "dedenne": 4.475430171663092, + "klefki": 2.7031257730038956, + "trevenant": 3.308858858208055, + "gourgeist-average": 4.8377806349235355, + "charjabug": 3.729482814466703, + "vikavolt": 1.8598387268806926, + "ribombee": 6.970430631641051, + "lycanroc-midday": 3.509089006726788, + "lycanroc-midnight": 2.5216609584189604, + "mudsdale": 1.3606610635061345, + "araquanid": 2.6243288999148593, + "lurantis": 3.3099020004747874, + "shiinotic": 9.579324579520833, + "salazzle": 2.7706148356007776, + "bewear": 1.779580480794929, + "tsareena": 4.234269206190492, + "comfey": 6.799346457819013, + "oranguru": 2.3874552666283018, + "passimian": 2.287251708904417, + "palossand": 1.4009809043424455, + "pyukumuku": 46.09080546653429, + "togedemaru": 2.4712632251096798, + "mimikyu-disguised": 4.23774114482647, + "greedent": 2.0495152143191255, + "orbeetle": 1.7593825895997646, + "thievul": 2.059678949286753, + "eldegoss": 5.690993291261291, + "dubwool": 3.191051489634809, + "drednaw": 1.3046964381433253, + "boltund": 4.730608166268953, + "carkol": 2.414074788912833, + "coalossal": 1.9686080459346207, + "sandaconda": 2.5055515133854698, + "cramorant": 5.9031877974447085, + "barraskewda": 4.514177761554359, + "toxtricity-amped": 2.2473052498088415, + "centiskorch": 2.1038885413099, + "grapploct": 1.7438927806915077, + "polteageist": 2.2689314623827785, + "hatterene": 3.1779689759263645, + "grimmsnarl": 5.434349877698866, + "obstagoon": 3.3389879022793805, + "perrserker": 3.1531959591304664, + "alcremie": 2.369633218409666, + "falinks": 3.0979490901722255, + "pincurchin": 2.9300129801698955, + "frosmoth": 2.9663920468793328, + "indeedee-male": 3.1994315611689226, + "morpeko": 2.89440767475632, + "copperajah": 2.590385673650124, + "duraludon": 1.4555662979690522, + "drakloak": 3.7226328736500793 }, "cinccino": { - "ivysaur": 3.410839964411304, - "charmeleon": 3.586334848310063, - "wartortle": 2.388991573840391, - "butterfree": 4.981552192396679, - "raichu": 4.502453718066196, - "raichu-alola": 3.3246579673331667, - "sandslash": 2.0050815361152194, - "sandslash-alola": 1.5106898185237174, - "nidoqueen": 3.035657201012466, - "nidoking": 1.903372451711884, - "clefairy": 8.67601743047433, - "clefable": 1.8768518125340128, - "jigglypuff": 25.039607723066574, - "wigglytuff": 1.8033199485986686, - "gloom": 5.914906581395337, - "vileplume": 3.085523532457927, - "dugtrio": 4.010552789466426, - "dugtrio-alola": 2.9327249008761127, - "persian": 3.8560382884932594, - "persian-alola": 3.83278970646672, - "golduck": 2.7644533898548285, - "poliwrath": 1.5832283684076391, - "kadabra": 3.835697358924053, - "machoke": 3.221362743894608, - "tentacruel": 2.2953847529164983, - "slowbro": 1.5421099276868473, - "magneton": 2.3521961318432885, - "haunter": 4.240025193994073, - "kingler": 2.014445564980689, - "exeggutor": 1.937518055858117, - "marowak": 3.0137483359644817, - "marowak-alola": 1.5749205239502295, - "hitmonlee": 2.07004576583513, - "hitmonchan": 1.9379311122910892, - "lickitung": 1.7179645230077791, - "weezing": 1.3531026078782453, - "weezing-galar": 2.2464679707299062, - "rhydon": 2.064282724351399, - "chansey": 26.812112748902468, - "tangela": 4.505039608038704, - "kangaskhan": 1.6525762081396658, - "seadra": 3.6025403245751164, - "seaking": 2.25951584019999, - "starmie": 1.3067389383878463, - "mr-mime": 6.579624734022893, - "mr-mime-galar": 3.3983696568146713, - "scyther": 2.7666521351141027, - "jynx": 4.3422127643516815, - "electabuzz": 2.407300877635598, - "magmar": 1.5935929151764587, - "tauros": 1.659830648049254, - "ditto": 5.105363095318564, - "vaporeon": 3.0407056255897578, - "jolteon": 1.9248194947131483, - "flareon": 2.4023825317259266, - "porygon": 2.520590557256173, - "dragonair": 1.9500622954111193, - "noctowl": 6.598122548020157, - "lanturn": 1.8031932846220151, - "togetic": 5.747449553404131, - "xatu": 3.947468428617576, - "bellossom": 2.407473644172474, - "azumarill": 2.0049012439844547, - "sudowoodo": 1.9786471620404675, - "politoed": 2.387459145229892, - "quagsire": 3.7970212410482533, - "slowking": 2.3109725961836514, - "dunsparce": 3.0916138697857445, - "qwilfish": 2.918027190282956, - "sneasel": 2.133928825478352, - "piloswine": 1.3300424148043999, - "octillery": 2.117904806874247, - "mantine": 2.410307521407943, - "skarmory": 1.5506366958971953, - "hitmontop": 2.2954911758951564, - "miltank": 3.070734185290272, - "grovyle": 8.13302839453146, - "sceptile": 1.5332981720100989, - "combusken": 2.7143957931716836, - "blaziken": 1.372797966013013, - "marshtomp": 2.2469923966251804, - "swampert": 1.1396086833952566, - "linoone": 4.956013633458701, - "linoone-galar": 4.20387625997407, - "pelipper": 5.218836572837391, - "ninjask": 7.772083047255093, - "exploud": 1.4331702884724988, - "lairon": 1.7346658634591796, - "manectric": 1.5974877799573473, - "roselia": 4.464342756125086, - "sharpedo": 4.526393277532861, - "wailmer": 5.934533143350503, - "torkoal": 1.5998369911550576, - "flygon": 3.363857669208757, - "altaria": 2.345063670003705, - "whiscash": 1.8281011877506472, - "crawdaunt": 1.721642873687173, - "claydol": 3.47192590469754, - "cradily": 2.364174252895645, - "armaldo": 1.54271640224131, - "dusclops": 3.3157944105937087, - "absol": 1.7873310514331637, - "glalie": 3.760632572002955, - "sealeo": 2.8823993810313397, - "relicanth": 1.4818493201038065, - "metang": 2.1797116549490716, - "luxray": 3.414448128956008, - "vespiquen": 2.6825962921846216, - "cherrim": 6.0738251896061115, - "gastrodon": 1.9830705040806418, - "drifblim": 4.589567352067097, - "lopunny": 3.166434335596304, - "skuntank": 1.3007285016139973, - "bronzong": 2.3712575992735943, - "munchlax": 2.2081234015554903, - "drapion": 2.0594606972211027, - "abomasnow": 2.9090207295860395, - "froslass": 2.3369834942814127, - "rotom": 3.4234925098619233, - "stoutland": 2.1438307646281984, - "liepard": 6.3465223958415, - "musharna": 1.4027804137246944, - "unfezant": 6.180612250993992, - "boldore": 2.50158987170817, - "swoobat": 5.644191054365818, - "audino": 1.9890617446626053, - "gurdurr": 1.6898079276383349, - "palpitoad": 3.44307871629525, - "seismitoad": 5.690710922075741, - "scolipede": 2.766466059443198, - "whimsicott": 3.179693990170134, - "lilligant": 3.131731216571529, - "basculin-red-striped": 2.4855238205647945, - "basculin-blue-striped": 3.222795103327835, - "krookodile": 2.8661418163957277, - "maractus": 2.286796818091207, - "crustle": 1.576027447340831, - "sigilyph": 2.3914374541888286, - "cofagrigus": 2.37734744670298, - "garbodor": 1.6254197492805844, - "vanillish": 1.9648257244237297, - "emolga": 3.1747335268391668, - "escavalier": 1.3950330542205231, - "amoonguss": 2.6639877483526537, - "jellicent": 1.1385644434358302, - "galvantula": 1.430112942958032, - "klang": 2.087638041639779, - "klinklang": 2.4663388232389485, - "beheeyem": 1.6736626753551307, - "lampent": 1.8223341625123748, - "fraxure": 1.5209961364877538, - "beartic": 1.514938566476737, - "cryogonal": 1.740737685973646, - "accelgor": 2.8673376128626966, - "stunfisk": 1.368945168605693, - "stunfisk-galar": 1.883337811749603, - "mienshao": 2.846151365697093, - "druddigon": 1.8992256235153366, - "golurk": 1.9405477008134742, - "bisharp": 1.8190377773001793, - "bouffalant": 1.0983626144535525, - "heatmor": 1.7242708814659808, - "durant": 2.2257211035481523, - "diggersby": 3.3236584918083283, - "talonflame": 2.637967360550193, - "pangoro": 1.4425236526531227, - "doublade": 1.4773866647923342, - "malamar": 2.5062678431299132, - "barbaracle": 1.1497477621079655, - "heliolisk": 3.472085951816604, - "tyrantrum": 1.3834317897024209, - "aurorus": 2.0198296387402856, - "hawlucha": 3.270026483772253, - "dedenne": 2.639526035324686, - "klefki": 2.277215190283174, - "trevenant": 2.966640867734151, - "gourgeist-average": 5.599833531637175, - "charjabug": 3.535870660317424, - "vikavolt": 1.6127539420917887, - "ribombee": 4.2706308771695, - "lycanroc-midday": 2.866616670131207, - "lycanroc-midnight": 1.9252855706680267, - "mudsdale": 1.4413391518038638, - "araquanid": 2.209612203951483, - "lurantis": 2.454367920285679, - "shiinotic": 4.700283919846452, - "salazzle": 2.926712315306136, - "bewear": 1.527669632583836, - "tsareena": 3.1837168959273585, - "comfey": 4.139274406230477, - "oranguru": 2.504916624439193, - "passimian": 1.8530082808396642, - "palossand": 2.151220604648678, - "pyukumuku": 39.03111077520444, - "togedemaru": 1.7502007414514376, - "mimikyu-disguised": 3.9658014324135493, - "greedent": 1.8493608151152092, - "orbeetle": 1.651274912101563, - "thievul": 1.7289866925999546, - "eldegoss": 4.18092565818218, - "dubwool": 2.468922438666974, - "drednaw": 0.9947686755640636, - "boltund": 4.235971829133031, - "carkol": 1.8746046743069935, - "coalossal": 1.543228988636633, - "sandaconda": 2.9190343361759545, - "cramorant": 5.2657057268250185, - "barraskewda": 4.055988208550822, - "toxtricity-amped": 2.3461300670016922, - "centiskorch": 1.9213202363379258, - "grapploct": 1.364654913111555, - "polteageist": 2.383528266786585, - "hatterene": 2.275883616121871, - "grimmsnarl": 3.338971613769103, - "obstagoon": 2.227596687730095, - "perrserker": 2.380740743359686, - "alcremie": 1.3768661266727482, - "falinks": 2.4890897177451663, - "pincurchin": 2.6601686712205925, - "frosmoth": 2.470917011725112, - "indeedee-male": 3.257628741348733, - "morpeko": 2.468406330831071, - "copperajah": 1.7151643641779284, - "duraludon": 1.1804977815100917, - "drakloak": 5.115500164688314, - "cinccino": 4.099393579527784 + "ivysaur": 3.4121393194002154, + "charmeleon": 3.582390235723426, + "wartortle": 2.3846651311826954, + "butterfree": 4.981810703769302, + "raichu": 4.495254921282324, + "raichu-alola": 3.3214841544374423, + "sandslash": 2.0040175386623993, + "sandslash-alola": 1.50468964189049, + "nidoqueen": 3.039788121109438, + "nidoking": 1.904199787794962, + "clefairy": 8.675692477771596, + "clefable": 1.8765631315067852, + "jigglypuff": 25.030268319725153, + "wigglytuff": 1.8019083766858293, + "gloom": 5.915387773994628, + "vileplume": 3.086317494582064, + "dugtrio": 4.013567531883771, + "dugtrio-alola": 2.9287149599400584, + "persian": 3.850840531437711, + "persian-alola": 3.8294814201056733, + "golduck": 2.760246368922468, + "poliwrath": 1.5791654474924295, + "kadabra": 3.8327765423654006, + "machoke": 3.214914300937769, + "tentacruel": 2.29345243213713, + "slowbro": 1.5393490819298126, + "magneton": 2.345799440590837, + "haunter": 4.23949795033321, + "kingler": 2.0086212518239437, + "exeggutor": 1.9363681896812306, + "marowak": 3.0133626960548865, + "marowak-alola": 1.5716477337270196, + "hitmonlee": 2.0650784161625553, + "hitmonchan": 1.935791455989694, + "lickitung": 1.7161077734314634, + "weezing": 1.3514756922212199, + "weezing-galar": 2.244429554826501, + "rhydon": 2.0602082045925885, + "chansey": 26.79473054034804, + "tangela": 4.499957829723744, + "kangaskhan": 1.6506701363632754, + "seadra": 3.5950255252206826, + "seaking": 2.25694398171791, + "starmie": 1.3049174452750563, + "mr-mime": 6.576250094887599, + "mr-mime-galar": 3.3924619295929355, + "scyther": 2.766179099434734, + "jynx": 4.336138789852825, + "electabuzz": 2.4055838862999046, + "magmar": 1.5919295562506801, + "tauros": 1.6563919869709225, + "ditto": 5.069240469280144, + "vaporeon": 3.037473762978941, + "jolteon": 1.9263391045636638, + "flareon": 2.4037269051670114, + "porygon": 2.5177121287298574, + "dragonair": 1.950319617680004, + "noctowl": 6.601676773937882, + "lanturn": 1.8018839171501733, + "togetic": 5.752001904243882, + "xatu": 3.9474561975778935, + "bellossom": 2.4078233236776994, + "azumarill": 2.0045021712706994, + "sudowoodo": 1.9727064241692271, + "politoed": 2.3846606351959014, + "quagsire": 3.788752172570124, + "slowking": 2.3077284662338, + "dunsparce": 3.092248575319487, + "qwilfish": 2.9133273992684288, + "sneasel": 2.1301366924397316, + "piloswine": 1.3265154975456674, + "octillery": 2.1148111503011107, + "mantine": 2.4106027187250207, + "skarmory": 1.5479548092262845, + "hitmontop": 2.2914510285280936, + "miltank": 3.0661116568420983, + "grovyle": 8.127753274871639, + "sceptile": 1.533616514807668, + "combusken": 2.7061576392069853, + "blaziken": 1.3696688080649992, + "marshtomp": 2.24544777218442, + "swampert": 1.1390103335735988, + "linoone": 4.956099261840691, + "linoone-galar": 4.198880003153736, + "pelipper": 5.211581533408184, + "ninjask": 7.771095890766377, + "exploud": 1.430360193157036, + "lairon": 1.7286202074669283, + "manectric": 1.5966065921802353, + "roselia": 4.466755636574052, + "sharpedo": 4.519085725966367, + "wailmer": 5.927174366005445, + "torkoal": 1.5975344005740295, + "flygon": 3.3679726647121138, + "altaria": 2.3485809620349816, + "whiscash": 1.8266283091577877, + "crawdaunt": 1.7184832793305294, + "claydol": 3.4712875601814654, + "cradily": 2.3625781141393487, + "armaldo": 1.539923589722974, + "dusclops": 3.318224736050613, + "absol": 1.785680649664996, + "glalie": 3.7545935403622748, + "sealeo": 2.8768983556928562, + "relicanth": 1.477441163044103, + "metang": 2.174019753570496, + "luxray": 3.4108066426800865, + "vespiquen": 2.6804982147010232, + "cherrim": 6.07343920384565, + "gastrodon": 1.9815835725522133, + "drifblim": 4.584520912585852, + "lopunny": 3.1602188953242347, + "skuntank": 1.3002429256909631, + "bronzong": 2.3659444496835516, + "munchlax": 2.205511801584195, + "drapion": 2.0580103434709396, + "abomasnow": 2.9045839080942146, + "froslass": 2.3323406602243844, + "rotom": 3.42328780913671, + "stoutland": 2.140403512036406, + "liepard": 6.341336865762921, + "musharna": 1.401327203805886, + "unfezant": 6.181736034549793, + "boldore": 2.49366604027301, + "swoobat": 5.644107127171733, + "audino": 1.9871176546292362, + "gurdurr": 1.684147582680434, + "palpitoad": 3.4408810513639394, + "seismitoad": 5.682541078526626, + "scolipede": 2.7635937199604204, + "whimsicott": 3.1800117690601866, + "lilligant": 3.1316438250214196, + "basculin-red-striped": 2.4818126081100322, + "basculin-blue-striped": 3.2182059149554334, + "krookodile": 2.866112370520837, + "maractus": 2.2875410363258815, + "crustle": 1.571323254271951, + "sigilyph": 2.3912738621442964, + "cofagrigus": 2.3768167662688713, + "garbodor": 1.6223278959024965, + "cinccino": 4.099393579527784, + "vanillish": 1.961583402107499, + "emolga": 3.1766694933164716, + "escavalier": 1.3919474187877845, + "amoonguss": 2.6643064601107764, + "jellicent": 1.1351764522624468, + "galvantula": 1.4288623931845303, + "klang": 2.0827891389168545, + "klinklang": 2.4595763706832487, + "beheeyem": 1.6720596576737123, + "lampent": 1.8168243141444922, + "fraxure": 1.5204035863840373, + "beartic": 1.5112170837719514, + "cryogonal": 1.738992568173638, + "accelgor": 2.864909802795207, + "stunfisk": 1.3693568480701979, + "stunfisk-galar": 1.880123080448674, + "mienshao": 2.840437486646338, + "druddigon": 1.9001314311350976, + "golurk": 1.9386482105557454, + "bisharp": 1.8139834731801066, + "bouffalant": 1.096595161250899, + "heatmor": 1.7229175535540038, + "durant": 2.2193145214278713, + "diggersby": 3.324106507728504, + "talonflame": 2.636414542547535, + "pangoro": 1.439121940427793, + "doublade": 1.4701975943907484, + "malamar": 2.5029353528845046, + "barbaracle": 1.145946282991177, + "heliolisk": 3.470286783455914, + "tyrantrum": 1.3802013620093103, + "aurorus": 2.0140109340565493, + "hawlucha": 3.2658439510548725, + "dedenne": 2.638675401783459, + "klefki": 2.272733108948183, + "trevenant": 2.9602854899037543, + "gourgeist-average": 5.604678038087029, + "charjabug": 3.5330034926371097, + "vikavolt": 1.611544206331251, + "ribombee": 4.267480695167185, + "lycanroc-midday": 2.8617404629149066, + "lycanroc-midnight": 1.9202468074979295, + "mudsdale": 1.4390810779293415, + "araquanid": 2.2074840144189167, + "lurantis": 2.4537387494863747, + "shiinotic": 4.700885859563194, + "salazzle": 2.9229496392127468, + "bewear": 1.5250353279782798, + "tsareena": 3.184045768928545, + "comfey": 4.138163666729067, + "oranguru": 2.5024249019230522, + "passimian": 1.8487421201273873, + "palossand": 2.151750913729496, + "pyukumuku": 38.96302059842587, + "togedemaru": 1.7458579046628655, + "mimikyu-disguised": 3.9674574683136905, + "greedent": 1.8466929260820493, + "orbeetle": 1.6491009096107085, + "thievul": 1.7277181298886566, + "eldegoss": 4.1815134812002634, + "dubwool": 2.4630808047984694, + "drednaw": 0.991901271355558, + "boltund": 4.232940392317474, + "carkol": 1.8698602472065549, + "coalossal": 1.539002959659517, + "sandaconda": 2.9174456075820543, + "cramorant": 5.263758513943701, + "barraskewda": 4.049481047281563, + "toxtricity-amped": 2.3435298976443293, + "centiskorch": 1.9189449336354403, + "grapploct": 1.3600734933955227, + "polteageist": 2.378791154458165, + "hatterene": 2.2741716241030083, + "grimmsnarl": 3.334025490945691, + "obstagoon": 2.2239198735909453, + "perrserker": 2.3746632319699685, + "alcremie": 1.3769191174432223, + "falinks": 2.482615875228975, + "pincurchin": 2.6578017841791395, + "frosmoth": 2.466184370158744, + "indeedee-male": 3.2593111363767675, + "morpeko": 2.4661449802043496, + "copperajah": 1.7094992447685948, + "duraludon": 1.1781955975832377, + "drakloak": 5.117424954940381 }, "vanillish": { - "ivysaur": 3.855673429327965, - "charmeleon": 2.899577801025164, - "wartortle": 2.3000976849241037, - "butterfree": 5.179334529123599, - "raichu": 4.3880312210300065, - "raichu-alola": 3.1249003711118135, - "sandslash": 2.8979242354577472, - "sandslash-alola": 1.3731542555805878, - "nidoqueen": 3.536939468725823, - "nidoking": 2.255814371459925, - "clefairy": 7.827162826955197, - "clefable": 1.8191987545726749, - "jigglypuff": 25.411058516619633, - "wigglytuff": 1.888835456439146, - "gloom": 7.091603702653512, - "vileplume": 3.7261752164923188, - "dugtrio": 3.7794198927785896, - "dugtrio-alola": 2.9373725693841806, - "persian": 3.954102597119386, - "persian-alola": 3.963717584750988, - "golduck": 2.556660158318012, - "poliwrath": 1.4639882170498435, - "kadabra": 3.380855020050392, - "machoke": 3.2805968567889625, - "tentacruel": 1.8707495125226337, - "slowbro": 1.4727055952577373, - "magneton": 2.323787647201916, - "haunter": 4.254137710026707, - "kingler": 2.0770224477901587, - "exeggutor": 2.404081328946768, - "marowak": 3.8064057843324663, - "marowak-alola": 1.437338569497046, - "hitmonlee": 1.7080119302230732, - "hitmonchan": 1.8048993559267312, - "lickitung": 1.9144805038388741, - "weezing": 1.4807078240598104, - "weezing-galar": 2.5719249913027116, - "rhydon": 2.821400949161273, - "chansey": 18.38581861269143, - "tangela": 7.286424040779657, - "kangaskhan": 1.7202396372013524, - "seadra": 3.8039359262749644, - "seaking": 1.9887799066157967, - "starmie": 1.2324441522895606, - "mr-mime": 6.009467480461926, - "mr-mime-galar": 3.31089261115883, - "scyther": 3.2829254798917553, - "jynx": 3.687894944833883, - "electabuzz": 2.3234002410566523, - "magmar": 1.1745435256678525, - "tauros": 1.8647949753304285, - "ditto": 2.0408609168744585, - "vaporeon": 2.5713751243858995, - "jolteon": 1.7432731309482303, - "flareon": 1.5822467754916159, - "porygon": 2.7265573547932225, - "dragonair": 2.3939076984888663, - "noctowl": 6.344062409401668, - "lanturn": 1.581546187597037, - "togetic": 5.921034333390807, - "xatu": 4.831914836375604, - "bellossom": 2.878278325429026, - "azumarill": 1.8102299821486945, - "sudowoodo": 2.2614968311017867, - "politoed": 2.0929699559572095, - "quagsire": 4.345142760071995, - "slowking": 2.0752851056128128, - "dunsparce": 3.2363125352450552, - "qwilfish": 2.839739225243755, - "sneasel": 1.9495401589883958, - "piloswine": 1.3588422911317672, - "octillery": 1.8854141494564374, - "mantine": 2.1299767438467794, - "skarmory": 2.0069994083230953, - "hitmontop": 2.362694337344476, - "miltank": 3.5299140077620987, - "grovyle": 8.67519382649366, - "sceptile": 1.6853436420668975, - "combusken": 2.387210316156913, - "blaziken": 1.1404956076657946, - "marshtomp": 2.414964939209707, - "swampert": 1.2786699958906391, - "linoone": 4.829951419329632, - "linoone-galar": 4.4060221024483335, - "pelipper": 5.991729986402235, - "ninjask": 8.964422764872607, - "exploud": 1.5534361959905343, - "lairon": 1.5979933099465276, - "manectric": 1.6393235784802997, - "roselia": 4.505152189541439, - "sharpedo": 4.169598294344023, - "wailmer": 5.307450901682996, - "torkoal": 1.3815956291035376, - "flygon": 4.2212417074534, - "altaria": 2.614037674198592, - "whiscash": 1.9479439692919978, - "crawdaunt": 1.7486786473820826, - "claydol": 3.8530695149755827, - "cradily": 2.6124728947432505, - "armaldo": 1.6944147066722042, - "dusclops": 3.2151121707747463, - "absol": 1.9032660706581535, - "glalie": 3.5332805041128488, - "sealeo": 2.837181252815505, - "relicanth": 1.4586706827335756, - "metang": 2.111976700897867, - "luxray": 3.614476016786241, - "vespiquen": 3.174027732183294, - "cherrim": 7.1062953859645095, - "gastrodon": 1.8938549628268895, - "drifblim": 5.301197084191662, - "lopunny": 3.1686335361701365, - "skuntank": 1.3208751990467562, - "bronzong": 2.2496152919324643, - "munchlax": 1.6610753648165497, - "drapion": 2.2691058708521274, - "abomasnow": 3.0625108122882754, - "froslass": 2.491151588167268, - "rotom": 3.608259615794402, - "stoutland": 2.2365315803024712, - "liepard": 6.617502033581657, - "musharna": 1.4480989884513953, - "unfezant": 8.493418367281485, - "boldore": 3.0289519485963954, - "swoobat": 6.91814164380974, - "audino": 2.0325059175326063, - "gurdurr": 1.9543165065514025, - "palpitoad": 3.6716389916254135, - "seismitoad": 6.082616529120346, - "scolipede": 2.984452616931484, - "whimsicott": 4.04433970354379, - "lilligant": 3.828159460119023, - "basculin-red-striped": 2.418981608956205, - "basculin-blue-striped": 3.1010136645678847, - "krookodile": 3.597091106257508, - "maractus": 2.807060204769578, - "crustle": 1.8415756542356243, - "sigilyph": 2.7914638880740044, - "cofagrigus": 2.636686035104237, - "garbodor": 1.7109844743319722, - "cinccino": 4.482674061792112, - "emolga": 3.9391118443076616, - "escavalier": 1.4211420387377265, - "amoonguss": 3.1267787797187068, - "jellicent": 1.2170512163555511, - "galvantula": 1.5336237716443233, - "klang": 1.9760883720233646, - "klinklang": 2.3165341494507943, - "beheeyem": 1.6174029483342998, - "lampent": 1.620052421795977, - "fraxure": 2.075234903052113, - "beartic": 1.5484963061185366, - "cryogonal": 1.5373553397899118, - "accelgor": 2.783846293334032, - "stunfisk": 1.5716551085953518, - "stunfisk-galar": 2.2730182775587755, - "mienshao": 2.8458772928346674, - "druddigon": 2.164987627982654, - "golurk": 2.177893961786931, - "bisharp": 1.9487376838509303, - "bouffalant": 1.1000482867044132, - "heatmor": 1.3957010233671852, - "durant": 2.332445064952256, - "diggersby": 3.7752605097000753, - "talonflame": 2.51858089288089, - "pangoro": 1.4806271851264858, - "doublade": 1.7298394372548813, - "malamar": 2.743595925087316, - "barbaracle": 1.2517381644953607, - "heliolisk": 3.201594172127937, - "tyrantrum": 1.995570642684934, - "aurorus": 1.953630664083646, - "hawlucha": 4.165542355506263, - "dedenne": 2.717021904444323, - "klefki": 2.1724348331706156, - "trevenant": 3.484830360840428, - "gourgeist-average": 6.804579005262163, - "charjabug": 3.9484757954224503, - "vikavolt": 1.8047380056758908, - "ribombee": 4.397004011878217, - "lycanroc-midday": 2.703868042227718, - "lycanroc-midnight": 1.944121014461508, - "mudsdale": 1.815314130552193, - "araquanid": 1.8541894357135629, - "lurantis": 2.978353432996271, - "shiinotic": 5.314646794480456, - "salazzle": 2.514455697643152, - "bewear": 1.700401845035708, - "tsareena": 3.7917398044337567, - "comfey": 4.199792319969108, - "oranguru": 2.4493455227716123, - "passimian": 2.0171074434971556, - "palossand": 2.8118067507356974, - "pyukumuku": 35.18694678587521, - "togedemaru": 1.6365841832094086, - "mimikyu-disguised": 3.625147689807288, - "greedent": 1.929298101303477, - "orbeetle": 1.718080152516814, - "thievul": 1.5308265518926132, - "eldegoss": 4.600085359283109, - "dubwool": 2.618166558978745, - "drednaw": 0.8908845592103443, - "boltund": 4.485358012634971, - "carkol": 1.615846878894864, - "coalossal": 1.4508057657739017, - "sandaconda": 4.318279338711486, - "cramorant": 4.787045826049209, - "barraskewda": 3.873457941835319, - "toxtricity-amped": 2.51037215387129, - "centiskorch": 1.573019645205166, - "grapploct": 1.482940839598399, - "polteageist": 2.3651611262497, - "hatterene": 2.362925042868688, - "grimmsnarl": 3.4042289257183747, - "obstagoon": 2.4398460551201095, - "perrserker": 2.4120798251394016, - "alcremie": 1.2492505279938557, - "falinks": 2.7291085117910256, - "pincurchin": 2.9320862104086878, - "frosmoth": 2.1953524236442554, - "indeedee-male": 2.7183424532225913, - "morpeko": 2.6552197858119277, - "copperajah": 1.536657035365232, - "duraludon": 1.5940362988748373, - "drakloak": 5.862499221276327, - "vanillish": 1.9753345026744333 + "ivysaur": 3.8601020380050013, + "charmeleon": 2.888496498605253, + "wartortle": 2.296421744023504, + "butterfree": 5.180907657273734, + "raichu": 4.380236661164524, + "raichu-alola": 3.1203844957662863, + "sandslash": 2.90071474118314, + "sandslash-alola": 1.3674550607147609, + "nidoqueen": 3.5424298542889243, + "nidoking": 2.2579066419012146, + "clefairy": 7.812658069398045, + "clefable": 1.8171124607887814, + "jigglypuff": 25.403725146231668, + "wigglytuff": 1.8881548275987137, + "gloom": 7.100213124295265, + "vileplume": 3.7315874012010513, + "dugtrio": 3.7794264007676306, + "dugtrio-alola": 2.9303584125811986, + "persian": 3.948933689096388, + "persian-alola": 3.9609613933730223, + "golduck": 2.5515110335960403, + "poliwrath": 1.4592377164424677, + "kadabra": 3.374222791986159, + "machoke": 3.271847806777161, + "tentacruel": 1.8665109112902765, + "slowbro": 1.4690499504739654, + "magneton": 2.315251248277733, + "haunter": 4.251208461713705, + "kingler": 2.072177298360651, + "exeggutor": 2.4060111670740296, + "marowak": 3.807847636029782, + "marowak-alola": 1.4305687898818449, + "hitmonlee": 1.699982219588456, + "hitmonchan": 1.800865785148059, + "lickitung": 1.9143926979235761, + "weezing": 1.4803638350926605, + "weezing-galar": 2.571175740348327, + "rhydon": 2.8187674866284755, + "chansey": 18.307426740818606, + "tangela": 7.300366941171275, + "kangaskhan": 1.7184378651825274, + "seadra": 3.7997548719921035, + "seaking": 1.9845559527820216, + "starmie": 1.229424713263772, + "mr-mime": 6.002009886000154, + "mr-mime-galar": 3.3052781937865765, + "scyther": 3.2851925707987886, + "jynx": 3.680772277552375, + "electabuzz": 2.3211423710634334, + "magmar": 1.1698453878371746, + "tauros": 1.862246560524041, + "ditto": 2.028012468380913, + "vaporeon": 2.566116065466619, + "jolteon": 1.7417442362117475, + "flareon": 1.5768202171513792, + "porygon": 2.726244596870326, + "dragonair": 2.39727419005096, + "noctowl": 6.3445547319659825, + "lanturn": 1.5793577256987543, + "togetic": 5.919281459952799, + "xatu": 4.838347260426589, + "bellossom": 2.882245163405067, + "azumarill": 1.808740296806006, + "sudowoodo": 2.2550622037080617, + "politoed": 2.0886974854517977, + "quagsire": 4.340646125012238, + "slowking": 2.0714523518356156, + "dunsparce": 3.2370038860003287, + "qwilfish": 2.8336808974988683, + "sneasel": 1.945413458034854, + "piloswine": 1.355005470073238, + "octillery": 1.8803341678540413, + "mantine": 2.1279868903386614, + "skarmory": 2.005583541300555, + "hitmontop": 2.3590714575726226, + "miltank": 3.527929643228714, + "grovyle": 8.671626829157852, + "sceptile": 1.6866957639165427, + "combusken": 2.3766042307890247, + "blaziken": 1.135143294640805, + "marshtomp": 2.414971766610469, + "swampert": 1.279314308937518, + "linoone": 4.824436873471054, + "linoone-galar": 4.40194467446808, + "pelipper": 5.989299666525773, + "ninjask": 8.969399734061476, + "exploud": 1.5514237425614852, + "lairon": 1.5901579059723852, + "manectric": 1.6373056870249645, + "roselia": 4.507674456263266, + "sharpedo": 4.160270543634848, + "wailmer": 5.2947982588735165, + "torkoal": 1.3777816313373532, + "flygon": 4.229153800511455, + "altaria": 2.6198500458540295, + "whiscash": 1.9471918364720393, + "crawdaunt": 1.745879202418654, + "claydol": 3.8529557871898543, + "cradily": 2.6116907666776825, + "armaldo": 1.6912488529726986, + "dusclops": 3.211776881652254, + "absol": 1.9011729556038923, + "glalie": 3.526238549918677, + "sealeo": 2.8317245469639447, + "relicanth": 1.4529748383799523, + "metang": 2.1039598726459965, + "luxray": 3.611975579892501, + "vespiquen": 3.1741347548253875, + "cherrim": 7.113047420979452, + "gastrodon": 1.8904929930886736, + "drifblim": 5.304843321104034, + "lopunny": 3.1616114490949734, + "skuntank": 1.3203686024519188, + "bronzong": 2.2416447306622063, + "munchlax": 1.6545318965701954, + "drapion": 2.2673242137823877, + "abomasnow": 3.060075544099583, + "froslass": 2.4880769822602784, + "rotom": 3.606925271958384, + "stoutland": 2.233301612824329, + "liepard": 6.613095294562221, + "musharna": 1.446995522173443, + "unfezant": 8.509450364325737, + "boldore": 3.02151650668396, + "swoobat": 6.927310199987836, + "audino": 2.0293282477347208, + "gurdurr": 1.9497549286541862, + "palpitoad": 3.671260214253651, + "seismitoad": 6.077418919325222, + "scolipede": 2.9815004521836777, + "whimsicott": 4.050731668375693, + "lilligant": 3.833218212837477, + "basculin-red-striped": 2.4154496245477066, + "basculin-blue-striped": 3.096035508015146, + "krookodile": 3.601958311043539, + "maractus": 2.811560115543938, + "crustle": 1.8369307379130877, + "sigilyph": 2.792483086969852, + "cofagrigus": 2.635594880350511, + "garbodor": 1.7079027820807369, + "cinccino": 4.48165551413305, + "vanillish": 1.9753345026744333, + "emolga": 3.946233148315785, + "escavalier": 1.417985075549625, + "amoonguss": 3.1302972942695497, + "jellicent": 1.2145989044682373, + "galvantula": 1.5332464205185148, + "klang": 1.9685577021400422, + "klinklang": 2.3059449589949415, + "beheeyem": 1.6148021362561282, + "lampent": 1.6132477524362725, + "fraxure": 2.0777444595558325, + "beartic": 1.5455344844581544, + "cryogonal": 1.535548751235723, + "accelgor": 2.780895144670297, + "stunfisk": 1.5736341715355002, + "stunfisk-galar": 2.2727896071317497, + "mienshao": 2.838366564581529, + "druddigon": 2.165548065002938, + "golurk": 2.1765591480690807, + "bisharp": 1.9443089354014897, + "bouffalant": 1.0975671865620757, + "heatmor": 1.3905560314894785, + "durant": 2.325640231192021, + "diggersby": 3.7758035909883683, + "talonflame": 2.5131114235122283, + "pangoro": 1.4766787683557796, + "doublade": 1.7225755120374853, + "malamar": 2.7419841903815656, + "barbaracle": 1.2482612242927331, + "heliolisk": 3.197873904468394, + "tyrantrum": 1.9944341373627688, + "aurorus": 1.9467593132456624, + "hawlucha": 4.164976158506281, + "dedenne": 2.7168934702634617, + "klefki": 2.1652343368585374, + "trevenant": 3.482710250707145, + "gourgeist-average": 6.805428630966535, + "charjabug": 3.9476669543175724, + "vikavolt": 1.8049062454171723, + "ribombee": 4.394983861247746, + "lycanroc-midday": 2.6934175917076413, + "lycanroc-midnight": 1.9372343251939617, + "mudsdale": 1.8145177916531368, + "araquanid": 1.8499394251589003, + "lurantis": 2.9812138242706214, + "shiinotic": 5.319628580326485, + "salazzle": 2.504285225877724, + "bewear": 1.698547251857447, + "tsareena": 3.7954769748441617, + "comfey": 4.199295914309947, + "oranguru": 2.446370469066271, + "passimian": 2.012398401748704, + "palossand": 2.8161864841432878, + "pyukumuku": 35.08986507007639, + "togedemaru": 1.629218989471779, + "mimikyu-disguised": 3.619391067930319, + "greedent": 1.9256568030829881, + "orbeetle": 1.7165232866584668, + "thievul": 1.5284220319634865, + "eldegoss": 4.603732472710281, + "dubwool": 2.612603722092982, + "drednaw": 0.8871294182996216, + "boltund": 4.483818328975387, + "carkol": 1.6080267872757235, + "coalossal": 1.444441623704301, + "sandaconda": 4.3260687278689645, + "cramorant": 4.780309529936959, + "barraskewda": 3.865888480594289, + "toxtricity-amped": 2.509024089597326, + "centiskorch": 1.567715494897803, + "grapploct": 1.4786312900808296, + "polteageist": 2.3615943223265825, + "hatterene": 2.3617645542905636, + "grimmsnarl": 3.3994698788711433, + "obstagoon": 2.437422535197844, + "perrserker": 2.404309467090444, + "alcremie": 1.2474522918220665, + "falinks": 2.7222591574131974, + "pincurchin": 2.931973753718159, + "frosmoth": 2.18944822302411, + "indeedee-male": 2.712345133801092, + "morpeko": 2.6547474236831956, + "copperajah": 1.5282360888047994, + "duraludon": 1.592659884481323, + "drakloak": 5.867486052572426 }, "emolga": { - "ivysaur": 3.760224496425397, - "charmeleon": 3.3796459751353245, - "wartortle": 2.9715514330803554, - "butterfree": 5.55983366409202, - "raichu": 4.02626678230423, - "raichu-alola": 2.6560374260297532, - "sandslash": 1.7898976917188418, - "sandslash-alola": 1.6065419053702765, - "nidoqueen": 2.5549281303035865, - "nidoking": 1.6038123678778282, - "clefairy": 8.451251196961584, - "clefable": 1.6390001431028747, - "jigglypuff": 23.39900775377523, - "wigglytuff": 1.6827384073228275, - "gloom": 6.0190780408143985, - "vileplume": 3.5367952693252582, - "dugtrio": 3.126887101438689, - "dugtrio-alola": 2.919179469175746, - "persian": 3.6388782600373117, - "persian-alola": 3.5955460553202934, - "golduck": 3.3876654848019188, - "poliwrath": 2.219631931893044, - "kadabra": 3.5276510619485286, - "machoke": 3.9257932335254813, - "tentacruel": 2.3546755501514705, - "slowbro": 2.060995958660644, - "magneton": 2.5359955448921223, - "haunter": 4.0380703053395175, - "kingler": 3.4583826294075957, - "exeggutor": 2.138026896480149, - "marowak": 2.876205691059135, - "marowak-alola": 1.9007863501689304, - "hitmonlee": 3.0956216586835557, - "hitmonchan": 2.3182751109977846, - "lickitung": 1.5060954825838104, - "weezing": 1.4523399787289337, - "weezing-galar": 2.4242784209495634, - "rhydon": 1.8032567660343026, - "chansey": 24.565645906152646, - "tangela": 4.746560185619643, - "kangaskhan": 1.6560879687305112, - "seadra": 5.246915955221471, - "seaking": 2.8327411061841996, - "starmie": 1.4393090968158937, - "mr-mime": 6.084417933143906, - "mr-mime-galar": 2.6782692542301474, - "scyther": 3.1594593670014626, - "jynx": 3.6052366692375832, - "electabuzz": 1.900080531285873, - "magmar": 1.4723962135001671, - "tauros": 1.9901063573825275, - "ditto": 2.8650481368262892, - "vaporeon": 3.265775234591123, - "jolteon": 1.4423727792291627, - "flareon": 2.087128302876353, - "porygon": 2.277867975715089, - "dragonair": 1.437771775474007, - "noctowl": 6.03080304030807, - "lanturn": 1.4130211697105102, - "togetic": 5.743567049757296, - "xatu": 4.446020229235331, - "bellossom": 2.5305986895220314, - "azumarill": 2.6797606841017236, - "sudowoodo": 2.3793467545525644, - "politoed": 2.9234483403750975, - "quagsire": 3.98576554088287, - "slowking": 2.4208915692253066, - "dunsparce": 2.8393783098469445, - "qwilfish": 4.176830250473722, - "sneasel": 1.9153501269497402, - "piloswine": 1.1278752070405509, - "octillery": 2.765923558297157, - "mantine": 3.4730771623152643, - "skarmory": 2.939864506710858, - "hitmontop": 3.0315441593668, - "miltank": 3.240142449580267, - "grovyle": 9.825633782079784, - "sceptile": 1.6767252662880188, - "combusken": 3.7932228112902235, - "blaziken": 1.7930415643166109, - "marshtomp": 2.110671834982778, - "swampert": 1.0163173537045858, - "linoone": 4.62264925130971, - "linoone-galar": 4.038684629533192, - "pelipper": 10.92579282755548, - "ninjask": 9.19990603643759, - "exploud": 1.2639566880013928, - "lairon": 2.027493017228948, - "manectric": 1.2861431836160246, - "roselia": 4.8556831605899955, - "sharpedo": 5.537761509689326, - "wailmer": 7.732894576090107, - "torkoal": 1.733259978843225, - "flygon": 2.189515264967377, - "altaria": 1.362435342976768, - "whiscash": 1.7172329899186551, - "crawdaunt": 2.3535601781349893, - "claydol": 2.6882261256311013, - "cradily": 1.8970706254910186, - "armaldo": 1.7348463333737727, - "dusclops": 3.0272789312869617, - "absol": 1.5930468379144482, - "glalie": 3.353794999758117, - "sealeo": 3.1954248091751944, - "relicanth": 2.0892170698060495, - "metang": 2.7099196978489015, - "luxray": 2.821681961688804, - "vespiquen": 3.3435099435434603, - "cherrim": 6.666915811020841, - "gastrodon": 1.8118205451135694, - "drifblim": 4.6086259500571565, - "lopunny": 3.3292684427942714, - "skuntank": 1.2831583587342283, - "bronzong": 2.8338232837247306, - "munchlax": 2.040168826438111, - "drapion": 2.348822728750353, - "abomasnow": 3.1869260431304944, - "froslass": 2.216779956177981, - "rotom": 2.650138306713407, - "stoutland": 2.060692516048244, - "liepard": 6.128120487541635, - "musharna": 1.364033023644646, - "unfezant": 8.374371531811517, - "boldore": 3.150895161281266, - "swoobat": 6.361180044453293, - "audino": 1.895345032362291, - "gurdurr": 2.483593475000167, - "palpitoad": 3.5712538722919733, - "seismitoad": 5.297008675011513, - "scolipede": 3.4555973577020827, - "whimsicott": 3.4782652364807882, - "lilligant": 3.579518539659342, - "basculin-red-striped": 3.0896846701935017, - "basculin-blue-striped": 4.17761875773021, - "krookodile": 2.589151747653437, - "maractus": 2.5568001034437478, - "crustle": 1.9081229018451107, - "sigilyph": 2.7444895091700303, - "cofagrigus": 2.3351709017004394, - "garbodor": 1.6766122232650122, - "cinccino": 3.647105661293051, - "vanillish": 1.5588029939425627, - "escavalier": 1.790151356188269, - "amoonguss": 2.848479236759588, - "jellicent": 1.4546367018820185, - "galvantula": 1.364355900745537, - "klang": 2.3997133768429464, - "klinklang": 3.22198868645686, - "beheeyem": 1.4912117739057091, - "lampent": 2.1872964571510973, - "fraxure": 1.2612509387853272, - "beartic": 1.2949416480559837, - "cryogonal": 1.3279821191701628, - "accelgor": 3.8287924975849883, - "stunfisk": 1.0353674315223118, - "stunfisk-galar": 1.8473198807872542, - "mienshao": 3.4807400521300913, - "druddigon": 1.7158518612312597, - "golurk": 1.7167287574445436, - "bisharp": 2.1878898019240594, - "bouffalant": 1.179410979383143, - "heatmor": 1.7045738873823304, - "durant": 3.1296338174163427, - "diggersby": 2.9637261492917477, - "talonflame": 3.520466832439726, - "pangoro": 1.9401005682100143, - "doublade": 2.654188751789051, - "malamar": 2.504371356470087, - "barbaracle": 1.5672538352108147, - "heliolisk": 2.823217092455751, - "tyrantrum": 1.2043405385356518, - "aurorus": 1.8230368242428745, - "hawlucha": 4.1703616815994815, - "dedenne": 2.084147327479734, - "klefki": 2.8342042394520153, - "trevenant": 3.6366877995911677, - "gourgeist-average": 5.047621109804379, - "charjabug": 3.5573058805264006, - "vikavolt": 1.6552549273753225, - "ribombee": 5.407735477839496, - "lycanroc-midday": 2.50249449905982, - "lycanroc-midnight": 1.9390040778899378, - "mudsdale": 1.4594211030064586, - "araquanid": 2.78287525074259, - "lurantis": 2.7070230587005564, - "shiinotic": 4.79095325648049, - "salazzle": 2.8478871200967175, - "bewear": 1.738636025436279, - "tsareena": 3.6306425135404328, - "comfey": 4.092141607859955, - "oranguru": 2.329371537937681, - "passimian": 2.3296865534859164, - "palossand": 1.7722928535955025, - "pyukumuku": 50.458116385451206, - "togedemaru": 1.7207969624676651, - "mimikyu-disguised": 3.4473795881550204, - "greedent": 1.9405124716983346, - "orbeetle": 2.0282310109814063, - "thievul": 1.6081775312390203, - "eldegoss": 4.644495185735233, - "dubwool": 2.756643502115992, - "drednaw": 1.2957907613738668, - "boltund": 3.505592138114511, - "carkol": 1.875912071178351, - "coalossal": 1.654891188429369, - "sandaconda": 2.79595511888788, - "cramorant": 7.5892356936443175, - "barraskewda": 5.274420958896743, - "toxtricity-amped": 1.9257340855001381, - "centiskorch": 2.3740925075727644, - "grapploct": 1.8489042227136612, - "polteageist": 2.507920817742427, - "hatterene": 2.154369050009893, - "grimmsnarl": 3.432425673768502, - "obstagoon": 2.2504464439855365, - "perrserker": 3.126204010327462, - "alcremie": 1.285501231802595, - "falinks": 3.371314859700756, - "pincurchin": 2.2676514617665444, - "frosmoth": 3.1991574690175106, - "indeedee-male": 2.8467687550943714, - "morpeko": 1.980519733130579, - "copperajah": 2.3331540143923246, - "duraludon": 1.233738958072463, - "drakloak": 3.735948910490849, - "emolga": 2.6858103202575148 + "ivysaur": 3.759947437824839, + "charmeleon": 3.374521494530792, + "wartortle": 2.9702276853594407, + "butterfree": 5.5679923873130495, + "raichu": 4.009644766126393, + "raichu-alola": 2.6458367422238327, + "sandslash": 1.784635331220724, + "sandslash-alola": 1.6010958631661363, + "nidoqueen": 2.55043133680887, + "nidoking": 1.5995237303382626, + "clefairy": 8.448573294170583, + "clefable": 1.6350252701880976, + "jigglypuff": 23.36406994598106, + "wigglytuff": 1.6797818443774484, + "gloom": 6.008104594128979, + "vileplume": 3.5394149641648305, + "dugtrio": 3.1227517528966486, + "dugtrio-alola": 2.915300858632386, + "persian": 3.630280364682031, + "persian-alola": 3.589232419625545, + "golduck": 3.3864904574850856, + "poliwrath": 2.2225545503767585, + "kadabra": 3.519132506111948, + "machoke": 3.921862428855335, + "tentacruel": 2.3535659145892973, + "slowbro": 2.0606665889527664, + "magneton": 2.530459199734666, + "haunter": 4.036838657137026, + "kingler": 3.466048746903856, + "exeggutor": 2.137079982425597, + "marowak": 2.873440693655029, + "marowak-alola": 1.8998623510380692, + "hitmonlee": 3.0987108266102954, + "hitmonchan": 2.3151893438854647, + "lickitung": 1.5019759915046, + "weezing": 1.4502694108337193, + "weezing-galar": 2.4215654197056597, + "rhydon": 1.7968951889384102, + "chansey": 24.486930508339505, + "tangela": 4.744229358798971, + "kangaskhan": 1.653929863865478, + "seadra": 5.2468191695565585, + "seaking": 2.8364496411778646, + "starmie": 1.4366261806816716, + "mr-mime": 6.071865398192562, + "mr-mime-galar": 2.6688743676843156, + "scyther": 3.164123097082942, + "jynx": 3.5890417761305202, + "electabuzz": 1.8932391773349684, + "magmar": 1.469856902348074, + "tauros": 1.9905503719138327, + "ditto": 2.8473047617947413, + "vaporeon": 3.2641584500381686, + "jolteon": 1.4347226157711914, + "flareon": 2.0836571375145825, + "porygon": 2.271109020409765, + "dragonair": 1.4327570388792363, + "noctowl": 6.032121155126721, + "lanturn": 1.4041911535483937, + "togetic": 5.744310718850731, + "xatu": 4.449093160098466, + "bellossom": 2.5298135783460767, + "azumarill": 2.6837237423226465, + "sudowoodo": 2.3755031922366605, + "politoed": 2.9269834890788733, + "quagsire": 3.974870868533002, + "slowking": 2.416796889608886, + "dunsparce": 2.8341928667854033, + "qwilfish": 4.178689449930063, + "sneasel": 1.9081913191053177, + "piloswine": 1.122066993606174, + "octillery": 2.768277913080638, + "mantine": 3.480968016251005, + "skarmory": 2.94794884551425, + "hitmontop": 3.0322560018873754, + "miltank": 3.2340808035183923, + "grovyle": 9.83294552653294, + "sceptile": 1.677351265180055, + "combusken": 3.7963738699580585, + "blaziken": 1.7936030104337215, + "marshtomp": 2.103669867775301, + "swampert": 1.0138176026682952, + "linoone": 4.615671385733458, + "linoone-galar": 4.030734794592222, + "pelipper": 10.951685443968643, + "ninjask": 9.224889594883152, + "exploud": 1.260889527810276, + "lairon": 2.0241115247783803, + "manectric": 1.2790461921053065, + "roselia": 4.8536924441481, + "sharpedo": 5.53540139037031, + "wailmer": 7.740718811018999, + "torkoal": 1.7316280606405035, + "flygon": 2.185232843764715, + "altaria": 1.3600681019775807, + "whiscash": 1.7119523541053305, + "crawdaunt": 2.353507990597256, + "claydol": 2.6754018482524926, + "cradily": 1.8910751277082674, + "armaldo": 1.733714240785634, + "dusclops": 3.0251686645431413, + "absol": 1.5893086465539121, + "glalie": 3.342456425409657, + "sealeo": 3.1890523848420758, + "relicanth": 2.0850986717909246, + "metang": 2.7073841499566758, + "luxray": 2.8115203961465065, + "vespiquen": 3.352186703853044, + "cherrim": 6.664373791358297, + "gastrodon": 1.8047771982137562, + "drifblim": 4.607591940454188, + "lopunny": 3.3262572356533475, + "skuntank": 1.2817166075813007, + "bronzong": 2.8311296993998445, + "munchlax": 2.035700050687023, + "drapion": 2.34944610893554, + "abomasnow": 3.177601344082948, + "froslass": 2.208281427570282, + "rotom": 2.642674744385298, + "stoutland": 2.0555117860893675, + "liepard": 6.118008803200269, + "musharna": 1.362083985333507, + "unfezant": 8.396881635028937, + "boldore": 3.1463663163612727, + "swoobat": 6.365520610494867, + "audino": 1.8919806263206322, + "gurdurr": 2.4895799736073885, + "palpitoad": 3.566531679036892, + "seismitoad": 5.274662395339902, + "scolipede": 3.4578968967730472, + "whimsicott": 3.4778159559388317, + "lilligant": 3.5815866903066005, + "basculin-red-striped": 3.087082860385893, + "basculin-blue-striped": 4.177664388816264, + "krookodile": 2.5844576678740316, + "maractus": 2.557804810165594, + "crustle": 1.9057850708502553, + "sigilyph": 2.7472183415628235, + "cofagrigus": 2.3321659561084633, + "garbodor": 1.6745447011853656, + "cinccino": 3.6341300558931136, + "vanillish": 1.551540639035649, + "emolga": 2.6858103202575148, + "escavalier": 1.7921823012127294, + "amoonguss": 2.84597180350746, + "jellicent": 1.454052393623448, + "galvantula": 1.3615616280158154, + "klang": 2.3950825464964334, + "klinklang": 3.2206259921986686, + "beheeyem": 1.4868484040556615, + "lampent": 2.18645741426998, + "fraxure": 1.2580230177957996, + "beartic": 1.2907624205975923, + "cryogonal": 1.322430760339976, + "accelgor": 3.831496758948641, + "stunfisk": 1.032830222437067, + "stunfisk-galar": 1.8434082342731966, + "mienshao": 3.4764285980127063, + "druddigon": 1.7155014330463803, + "golurk": 1.7141848882904418, + "bisharp": 2.1838491978888337, + "bouffalant": 1.1788415164463293, + "heatmor": 1.7035245720936532, + "durant": 3.1315391588599994, + "diggersby": 2.958176412023769, + "talonflame": 3.5256989231517615, + "pangoro": 1.9411009467436058, + "doublade": 2.658909311656645, + "malamar": 2.4995003662062136, + "barbaracle": 1.5648566702219808, + "heliolisk": 2.8149957565910526, + "tyrantrum": 1.199911028851015, + "aurorus": 1.8131407884283541, + "hawlucha": 4.176129747871131, + "dedenne": 2.077812593359925, + "klefki": 2.833570915300167, + "trevenant": 3.6404681175528415, + "gourgeist-average": 5.0403771675744835, + "charjabug": 3.5540422816885364, + "vikavolt": 1.6541563718649392, + "ribombee": 5.410030359548683, + "lycanroc-midday": 2.490275768372909, + "lycanroc-midnight": 1.9326747842608112, + "mudsdale": 1.4575474959179266, + "araquanid": 2.7866876826793363, + "lurantis": 2.705922549177875, + "shiinotic": 4.7823845045903335, + "salazzle": 2.8431474586657104, + "bewear": 1.7357743336522247, + "tsareena": 3.633096751792152, + "comfey": 4.090975603114121, + "oranguru": 2.3242178768510717, + "passimian": 2.3293263645664934, + "palossand": 1.7688829116791047, + "pyukumuku": 50.50826026804409, + "togedemaru": 1.7161802354725177, + "mimikyu-disguised": 3.4421757820468244, + "greedent": 1.9376790018538403, + "orbeetle": 2.0263332983230518, + "thievul": 1.6054486930113674, + "eldegoss": 4.644171405033933, + "dubwool": 2.7544415831957094, + "drednaw": 1.2947321973681614, + "boltund": 3.4942710899954657, + "carkol": 1.8705774931787178, + "coalossal": 1.6494292264222565, + "sandaconda": 2.791737622443721, + "cramorant": 7.5974809341048335, + "barraskewda": 5.273519553038559, + "toxtricity-amped": 1.9188326496251014, + "centiskorch": 2.373926028743315, + "grapploct": 1.8509732180905154, + "polteageist": 2.5064313434135297, + "hatterene": 2.150711540229847, + "grimmsnarl": 3.4297122235980275, + "obstagoon": 2.245506506093597, + "perrserker": 3.1246582659430175, + "alcremie": 1.2844327525409422, + "falinks": 3.3764060196660113, + "pincurchin": 2.260130866832581, + "frosmoth": 3.199058170694494, + "indeedee-male": 2.840821759921867, + "morpeko": 1.972554485016051, + "copperajah": 2.3345763803599695, + "duraludon": 1.231675525924651, + "drakloak": 3.726601979627758 }, "escavalier": { - "ivysaur": 3.8617676578057756, - "charmeleon": 4.264775942371979, - "wartortle": 2.872154602059565, - "butterfree": 5.460229544970144, - "raichu": 7.623076610797057, - "raichu-alola": 5.4582660237108644, - "sandslash": 2.5593969456294827, - "sandslash-alola": 2.404600579171324, - "nidoqueen": 3.874877188657727, - "nidoking": 2.296262262703094, - "clefairy": 8.48796957060184, - "clefable": 2.4320982620910647, - "jigglypuff": 30.48761017558624, - "wigglytuff": 2.328822454761295, - "gloom": 6.6760456467645, - "vileplume": 3.396385999092371, - "dugtrio": 5.190809566045779, - "dugtrio-alola": 4.967203842655376, - "persian": 4.849436735894672, - "persian-alola": 5.713371870521697, - "golduck": 3.2625570879449897, - "poliwrath": 1.9676823362086329, - "kadabra": 6.4246182511977565, - "machoke": 3.9119634453353505, - "tentacruel": 3.808208586491851, - "slowbro": 2.0467193438949645, - "magneton": 6.14422947608935, - "haunter": 5.026018891454285, - "kingler": 2.288726833973187, - "exeggutor": 3.625434489909675, - "marowak": 3.864483004879888, - "marowak-alola": 2.2545922492842876, - "hitmonlee": 2.4620172962706164, - "hitmonchan": 2.1110546582867, - "lickitung": 2.0721682882009627, - "weezing": 1.6344228486960626, - "weezing-galar": 2.98486317262754, - "rhydon": 3.207916861930797, - "chansey": 34.30734523160348, - "tangela": 5.80801692787187, - "kangaskhan": 1.9997111332854531, - "seadra": 4.097599461560572, - "seaking": 2.6852292767502046, - "starmie": 2.0041768248747616, - "mr-mime": 8.271956634422597, - "mr-mime-galar": 5.3822859742861695, - "scyther": 2.827981610309517, - "jynx": 6.999740785123791, - "electabuzz": 3.841137314200658, - "magmar": 1.827777181300796, - "tauros": 2.0415697110632145, - "ditto": 2.2911549639094138, - "vaporeon": 3.650771355278556, - "jolteon": 3.022123067303092, - "flareon": 2.6248703384178107, - "porygon": 3.0047555141605584, - "dragonair": 2.113194254188423, - "noctowl": 6.6682141061354105, - "lanturn": 2.8593902703959237, - "togetic": 4.7610766541908225, - "xatu": 4.085649572974276, - "bellossom": 3.405382843999295, - "azumarill": 2.3642898254966216, - "sudowoodo": 2.998665429638426, - "politoed": 2.80648202361321, - "quagsire": 4.64433380565673, - "slowking": 3.560432876289403, - "dunsparce": 3.4725286140490024, - "qwilfish": 4.546330985605572, - "sneasel": 3.005426615447524, - "piloswine": 2.044807675642068, - "octillery": 2.581139403195872, - "mantine": 2.2025284378539753, - "skarmory": 1.9278504580970621, - "hitmontop": 2.8531607741852243, - "miltank": 3.7826057167131175, - "grovyle": 11.767835152206509, - "sceptile": 2.091019363786219, - "combusken": 3.9374813240792492, - "blaziken": 1.7713330126510027, - "marshtomp": 2.6110672590807527, - "swampert": 1.3468408130064202, - "linoone": 5.65773438098185, - "linoone-galar": 5.969582202116111, - "pelipper": 5.339543481134276, - "ninjask": 8.213798291123371, - "exploud": 1.8318386632739783, - "lairon": 3.5804084328489783, - "manectric": 2.3104352011607965, - "roselia": 4.878115167690142, - "sharpedo": 6.711975587616587, - "wailmer": 6.900874656521278, - "torkoal": 1.5071501431417693, - "flygon": 2.6104938741999026, - "altaria": 1.2224377177314107, - "whiscash": 2.197123894106725, - "crawdaunt": 2.45215927832302, - "claydol": 4.795172144052585, - "cradily": 3.2244301111990525, - "armaldo": 2.4039253174517814, - "dusclops": 3.5360032586423324, - "absol": 2.5282617612962457, - "glalie": 4.462841579929275, - "sealeo": 3.3863060729032277, - "relicanth": 2.1921589634231617, - "metang": 4.007698376679425, - "luxray": 5.350544945166927, - "vespiquen": 2.849169351180704, - "cherrim": 8.433442978686204, - "gastrodon": 2.3649664075769805, - "drifblim": 4.620055062549444, - "lopunny": 4.000847145561922, - "skuntank": 1.7386534329679801, - "bronzong": 3.506602217922894, - "munchlax": 2.4809311320972096, - "drapion": 3.191697346916764, - "abomasnow": 4.4464572263414865, - "froslass": 3.1143297534306944, - "rotom": 3.78872580000895, - "stoutland": 2.707884944843885, - "liepard": 9.477229188354872, - "musharna": 2.225883305372527, - "unfezant": 6.091661618705691, - "boldore": 3.582604976533723, - "swoobat": 5.84976627069257, - "audino": 2.3094705931469974, - "gurdurr": 2.12295450990729, - "palpitoad": 3.978015741879541, - "seismitoad": 7.575541706857178, - "scolipede": 3.3034939614019416, - "whimsicott": 3.327255595835561, - "lilligant": 4.348103624917408, - "basculin-red-striped": 2.938939407846127, - "basculin-blue-striped": 3.6911862774599533, - "krookodile": 3.6602412461471525, - "maractus": 3.162273740457583, - "crustle": 2.506151947165157, - "sigilyph": 2.5037151873997634, - "cofagrigus": 2.6117184578693573, - "garbodor": 2.7049404871811626, - "cinccino": 5.1256715821762295, - "vanillish": 2.492970210323603, - "emolga": 3.1142569479066315, - "amoonguss": 3.0795989795619167, - "jellicent": 1.8857990964165396, - "galvantula": 1.6715443796109568, - "klang": 3.820906054912479, - "klinklang": 4.645255097765418, - "beheeyem": 2.5641338615695535, - "lampent": 2.424518919270409, - "fraxure": 1.670983107382787, - "beartic": 1.9040039181417732, - "cryogonal": 2.2099713673628805, - "accelgor": 3.6733625623588804, - "stunfisk": 1.768666600977057, - "stunfisk-galar": 3.005058189107625, - "mienshao": 3.556471733368978, - "druddigon": 1.9281894302234537, - "golurk": 2.501192206360259, - "bisharp": 3.2258155006399107, - "bouffalant": 1.391818873392183, - "heatmor": 2.027785014297131, - "durant": 2.879833912014452, - "diggersby": 4.268156315881611, - "talonflame": 3.4039441879317107, - "pangoro": 1.8078842071423773, - "doublade": 2.62496240073207, - "malamar": 5.167954055577345, - "barbaracle": 1.9148721562930373, - "heliolisk": 5.702091048439718, - "tyrantrum": 1.883308393727186, - "aurorus": 3.2635790454161415, - "hawlucha": 3.6280870945426615, - "dedenne": 4.537859456082327, - "klefki": 4.629652744933434, - "trevenant": 3.273032953364944, - "gourgeist-average": 4.164119878084166, - "charjabug": 3.973659277164579, - "vikavolt": 1.9588024487972953, - "ribombee": 5.22877553270944, - "lycanroc-midday": 4.418625795117304, - "lycanroc-midnight": 3.0814987309309525, - "mudsdale": 2.0009359844971426, - "araquanid": 2.6581137904368064, - "lurantis": 3.406434190811128, - "shiinotic": 4.934259110266878, - "salazzle": 5.367850250476995, - "bewear": 1.8671036850217198, - "tsareena": 4.276927831060006, - "comfey": 5.161351691522279, - "oranguru": 4.000547530733356, - "passimian": 2.25014048564679, - "palossand": 2.5241655720107348, - "pyukumuku": 48.92862727336009, - "togedemaru": 4.982423850215385, - "mimikyu-disguised": 4.4595042849050515, - "greedent": 2.3035448656095845, - "orbeetle": 2.584718725003696, - "thievul": 2.1900603434781734, - "eldegoss": 5.8907040840024685, - "dubwool": 3.193067899807481, - "drednaw": 1.6140152807191066, - "boltund": 6.401151825412155, - "carkol": 3.516754609276969, - "coalossal": 2.8617623590222516, - "sandaconda": 3.8047980267834385, - "cramorant": 4.961070667206367, - "barraskewda": 4.7733569166150955, - "toxtricity-amped": 5.76003734747658, - "centiskorch": 2.5935609128919728, - "grapploct": 1.6969716279368634, - "polteageist": 3.227150323550254, - "hatterene": 2.825431815170931, - "grimmsnarl": 4.074588596114996, - "obstagoon": 3.209044455683448, - "perrserker": 4.095739047371933, - "alcremie": 1.6065666275561579, - "falinks": 3.1090022717655468, - "pincurchin": 3.905054949204155, - "frosmoth": 3.066529233302602, - "indeedee-male": 4.229905467893757, - "morpeko": 3.7808405682062993, - "copperajah": 3.4645241677705543, - "duraludon": 1.9554599677898485, - "drakloak": 4.777904477755122, - "escavalier": 1.9143986321558382 + "ivysaur": 3.8756912956813574, + "charmeleon": 4.2575025219594735, + "wartortle": 2.8752118456465476, + "butterfree": 5.470084070175915, + "raichu": 7.64396737231626, + "raichu-alola": 5.479128321522092, + "sandslash": 2.563703626101066, + "sandslash-alola": 2.407890039522679, + "nidoqueen": 3.8882095257794047, + "nidoking": 2.2991481758098855, + "clefairy": 8.475187249966513, + "clefable": 2.437354663312004, + "jigglypuff": 30.56375019763997, + "wigglytuff": 2.33436456049707, + "gloom": 6.696693387873379, + "vileplume": 3.4056585727537416, + "dugtrio": 5.203669805400854, + "dugtrio-alola": 4.984908741306645, + "persian": 4.86158798375461, + "persian-alola": 5.724461425165508, + "golduck": 3.2658335437343355, + "poliwrath": 1.9665156851607808, + "kadabra": 6.449290496149125, + "machoke": 3.9147188233181867, + "tentacruel": 3.8190153136775464, + "slowbro": 2.046129771212326, + "magneton": 6.164253249277364, + "haunter": 5.031358288131208, + "kingler": 2.288075460468275, + "exeggutor": 3.636213451313186, + "marowak": 3.8720365221431132, + "marowak-alola": 2.253485785488942, + "hitmonlee": 2.4615312941043133, + "hitmonchan": 2.1100229071630094, + "lickitung": 2.075726409641351, + "weezing": 1.6355376333235712, + "weezing-galar": 2.984649564270311, + "rhydon": 3.2141469117670773, + "chansey": 34.43462180732364, + "tangela": 5.818746518453734, + "kangaskhan": 2.0035265730045957, + "seadra": 4.099210164201017, + "seaking": 2.6894739678061628, + "starmie": 2.009090231297, + "mr-mime": 8.300204696868555, + "mr-mime-galar": 5.398903457248441, + "scyther": 2.8278028872920205, + "jynx": 7.013267398767622, + "electabuzz": 3.851332161245504, + "magmar": 1.826303987498335, + "tauros": 2.043976003550853, + "ditto": 2.2825686843107613, + "vaporeon": 3.6525975438095672, + "jolteon": 3.0308876048845965, + "flareon": 2.626456121269645, + "porygon": 3.009586342343851, + "dragonair": 2.117146355164628, + "noctowl": 6.672494603382848, + "lanturn": 2.866008538988119, + "togetic": 4.745055418991353, + "xatu": 4.088409039927661, + "bellossom": 3.415090099749225, + "azumarill": 2.368264942962663, + "sudowoodo": 3.0043782309621325, + "politoed": 2.8102034730382206, + "quagsire": 4.648681879589028, + "slowking": 3.5692922227929103, + "dunsparce": 3.4788289585839407, + "qwilfish": 4.556838271413309, + "sneasel": 3.01123444627577, + "piloswine": 2.049408987915531, + "octillery": 2.5856465935287014, + "mantine": 2.1971981364217164, + "skarmory": 1.9278379071159772, + "hitmontop": 2.8572942484863253, + "miltank": 3.7899855616722564, + "grovyle": 11.80019542005186, + "sceptile": 2.0977506047631578, + "combusken": 3.9370968905217185, + "blaziken": 1.768744640114151, + "marshtomp": 2.615098041404603, + "swampert": 1.349132753342206, + "linoone": 5.668828156624436, + "linoone-galar": 5.97780506463258, + "pelipper": 5.334485982647649, + "ninjask": 8.219594730080464, + "exploud": 1.836063092758775, + "lairon": 3.5900121109309353, + "manectric": 2.310727069150392, + "roselia": 4.893431802971451, + "sharpedo": 6.722944706646349, + "wailmer": 6.907677105039533, + "torkoal": 1.5034336571600713, + "flygon": 2.613680630507186, + "altaria": 1.2193898096281917, + "whiscash": 2.2008431135455355, + "crawdaunt": 2.454865035793235, + "claydol": 4.8083770183321235, + "cradily": 3.2356897713005246, + "armaldo": 2.4095288061361457, + "dusclops": 3.5415466035757053, + "absol": 2.5298931861120795, + "glalie": 4.470358286104821, + "sealeo": 3.3897540480030393, + "relicanth": 2.194368156879823, + "metang": 4.020256719295404, + "luxray": 5.364157121603987, + "vespiquen": 2.8493148040854495, + "cherrim": 8.456762565975922, + "gastrodon": 2.369754033787914, + "drifblim": 4.620770283495845, + "lopunny": 4.008460708038348, + "skuntank": 1.7412443139923748, + "bronzong": 3.5137549013133547, + "munchlax": 2.4836246255489205, + "drapion": 3.2007448298438153, + "abomasnow": 4.456738578067274, + "froslass": 3.120128204497962, + "rotom": 3.7889253930994014, + "stoutland": 2.7141600954501603, + "liepard": 9.500601032847934, + "musharna": 2.2338567033341663, + "unfezant": 6.088134677786559, + "boldore": 3.587389896828477, + "swoobat": 5.853750013343103, + "audino": 2.3073325582931314, + "gurdurr": 2.1234201276405864, + "palpitoad": 3.9838666326339323, + "seismitoad": 7.603043249222868, + "scolipede": 3.308261912070456, + "whimsicott": 3.33162418015634, + "lilligant": 4.360727810671395, + "basculin-red-striped": 2.942036442339486, + "basculin-blue-striped": 3.6929264582090013, + "krookodile": 3.6687742407803663, + "maractus": 3.1689787034957932, + "crustle": 2.5110155450759537, + "sigilyph": 2.5058438313149036, + "cofagrigus": 2.615211235669189, + "garbodor": 2.716478363239747, + "cinccino": 5.138401974733794, + "vanillish": 2.4988076188225676, + "emolga": 3.1135116405918115, + "escavalier": 1.9143986321558382, + "amoonguss": 3.0910280821783447, + "jellicent": 1.8874449128722777, + "galvantula": 1.6742655373024307, + "klang": 3.8302609241271752, + "klinklang": 4.6596809947201026, + "beheeyem": 2.571130617441457, + "lampent": 2.421495993683653, + "fraxure": 1.673945988862835, + "beartic": 1.9070644783421926, + "cryogonal": 2.214850550048746, + "accelgor": 3.6830341904647943, + "stunfisk": 1.7738936948416226, + "stunfisk-galar": 3.012671614437341, + "mienshao": 3.5610174452175496, + "druddigon": 1.9306229929218235, + "golurk": 2.50607342733256, + "bisharp": 3.2352308346703187, + "bouffalant": 1.3949025768999546, + "heatmor": 2.024337766598995, + "durant": 2.882675513189577, + "diggersby": 4.277272732770674, + "talonflame": 3.3973995669846078, + "pangoro": 1.8101907391239338, + "doublade": 2.629058862374599, + "malamar": 5.181473086980292, + "barbaracle": 1.9195128222147493, + "heliolisk": 5.709484838177296, + "tyrantrum": 1.8865038025045198, + "aurorus": 3.271894004316537, + "hawlucha": 3.6281855365469866, + "dedenne": 4.550654358882662, + "klefki": 4.646820336782694, + "trevenant": 3.27922755209836, + "gourgeist-average": 4.150835054253187, + "charjabug": 3.9777680787772276, + "vikavolt": 1.9612208776586944, + "ribombee": 5.2382432103467185, + "lycanroc-midday": 4.431295578417577, + "lycanroc-midnight": 3.089599128244063, + "mudsdale": 2.0045709045501017, + "araquanid": 2.6595846946236645, + "lurantis": 3.4153846700338955, + "shiinotic": 4.942102934770023, + "salazzle": 5.3626469619034065, + "bewear": 1.8693703590929476, + "tsareena": 4.286942992499852, + "comfey": 5.177679170823975, + "oranguru": 4.014536407349005, + "passimian": 2.2511117580950293, + "palossand": 2.528359335889804, + "pyukumuku": 48.995265542419716, + "togedemaru": 5.003997362460527, + "mimikyu-disguised": 4.46762551964045, + "greedent": 2.3085712508848455, + "orbeetle": 2.591604047373722, + "thievul": 2.1900188682997612, + "eldegoss": 5.909534094608423, + "dubwool": 3.199400128438927, + "drednaw": 1.6169190209470576, + "boltund": 6.414757644468665, + "carkol": 3.51414295078008, + "coalossal": 2.863545093212266, + "sandaconda": 3.8126242774250283, + "cramorant": 4.956146067662585, + "barraskewda": 4.777320825573904, + "toxtricity-amped": 5.7773989286678775, + "centiskorch": 2.592885065162969, + "grapploct": 1.6981422149028522, + "polteageist": 3.2382521648817155, + "hatterene": 2.833572953693955, + "grimmsnarl": 4.081202522051778, + "obstagoon": 3.214088924443308, + "perrserker": 4.104092357257893, + "alcremie": 1.6070248682426813, + "falinks": 3.1119572965650724, + "pincurchin": 3.9129440708174306, + "frosmoth": 3.069931270657844, + "indeedee-male": 4.232167439223565, + "morpeko": 3.79159316671654, + "copperajah": 3.4753212257031088, + "duraludon": 1.9591414514544747, + "drakloak": 4.78294251562558 }, "amoonguss": { - "ivysaur": 3.154464056954814, - "charmeleon": 3.3322612703654073, - "wartortle": 3.7965000728075866, - "butterfree": 4.275544375114925, - "raichu": 5.392366302603625, - "raichu-alola": 3.2698205541861585, - "sandslash": 3.2271230020348582, - "sandslash-alola": 1.7891506834288404, - "nidoqueen": 2.858278069429389, - "nidoking": 1.7871051489614205, - "clefairy": 10.152234302476536, - "clefable": 2.6338539124082647, - "jigglypuff": 32.69014185592913, - "wigglytuff": 2.4534244052340153, - "gloom": 5.508486247273208, - "vileplume": 2.9570666864794073, - "dugtrio": 4.562279005316384, - "dugtrio-alola": 3.4141946180876728, - "persian": 4.3758717527286715, - "persian-alola": 4.333951480448185, - "golduck": 4.31882281990238, - "poliwrath": 2.7214868126166882, - "kadabra": 3.6701850761825447, - "machoke": 4.142886198929686, - "tentacruel": 2.348228694113735, - "slowbro": 2.203824619462659, - "magneton": 2.8759986909205413, - "haunter": 3.8144785357007374, - "kingler": 4.08389498381197, - "exeggutor": 2.2446556802010065, - "marowak": 4.294756631112055, - "marowak-alola": 1.661415431908342, - "hitmonlee": 2.255305413042076, - "hitmonchan": 1.999392915692893, - "lickitung": 1.9418430621036804, - "weezing": 1.3311495620944784, - "weezing-galar": 2.575117687055668, - "rhydon": 4.944308516719606, - "chansey": 19.887232824373864, - "tangela": 7.232366723603416, - "kangaskhan": 1.861586628332131, - "seadra": 6.734221912034768, - "seaking": 3.137362301767956, - "starmie": 1.86246059711792, - "mr-mime": 6.3476168146191805, - "mr-mime-galar": 3.129556669719519, - "scyther": 2.390030997654371, - "jynx": 3.8220660882058266, - "electabuzz": 2.7179298143206063, - "magmar": 1.3743979884288273, - "tauros": 2.1670713011817027, - "ditto": 3.922082323017881, - "vaporeon": 4.158825143009953, - "jolteon": 1.9207883199573361, - "flareon": 1.893658385820081, - "porygon": 2.787755675706516, - "dragonair": 1.667569528103618, - "noctowl": 4.7056444290937955, - "lanturn": 2.7389668830158875, - "togetic": 5.842571291864107, - "xatu": 3.1826504848008685, - "bellossom": 3.0289576707094774, - "azumarill": 2.841239184246348, - "sudowoodo": 3.7463075287216743, - "politoed": 3.353829804521748, - "quagsire": 10.586200146425647, - "slowking": 2.884627304344826, - "dunsparce": 3.1419898610364507, - "qwilfish": 3.795976327725825, - "sneasel": 2.1444828955815036, - "piloswine": 2.040014605237097, - "octillery": 3.268003910536665, - "mantine": 2.240001699227921, - "skarmory": 1.4947531145118318, - "hitmontop": 2.624893018498174, - "miltank": 3.9356317743442686, - "grovyle": 9.576316385751367, - "sceptile": 1.6622198298852568, - "combusken": 3.121398564280536, - "blaziken": 1.4372293340824558, - "marshtomp": 4.95541536961886, - "swampert": 2.3923224532892684, - "linoone": 5.23618076305801, - "linoone-galar": 4.770744924260795, - "pelipper": 6.0697518639448305, - "ninjask": 6.918698319981878, - "exploud": 1.5500346548479307, - "lairon": 2.749658365416961, - "manectric": 1.7610447482662726, - "roselia": 3.6178962813913467, - "sharpedo": 6.802647553888045, - "wailmer": 8.794892570597977, - "torkoal": 1.6623933272458453, - "flygon": 2.42324132585638, - "altaria": 1.4524573315936828, - "whiscash": 4.188441229043024, - "crawdaunt": 3.0589049116492495, - "claydol": 4.026165675410004, - "cradily": 2.401043082239404, - "armaldo": 1.9306252656875407, - "dusclops": 3.44639493617968, - "absol": 1.8862945236790432, - "glalie": 3.9252920786520953, - "sealeo": 4.139643643597221, - "relicanth": 4.214804599426123, - "metang": 2.412397391811919, - "luxray": 4.055437380145888, - "vespiquen": 2.447131696570473, - "cherrim": 7.159100206716804, - "gastrodon": 4.1410541698393, - "drifblim": 3.4687420557852042, - "lopunny": 3.587961663291566, - "skuntank": 1.1840637066457598, - "bronzong": 2.3815077211604847, - "munchlax": 2.0456017956122237, - "drapion": 2.091347476188153, - "abomasnow": 3.4977203064914226, - "froslass": 2.726492387221806, - "rotom": 3.984185265076756, - "stoutland": 2.4371270742038833, - "liepard": 7.3523598818121, - "musharna": 1.4398079940518984, - "unfezant": 5.32590948770435, - "boldore": 5.104123353184118, - "swoobat": 4.545382101535785, - "audino": 2.2874291634411246, - "gurdurr": 2.5366787368115054, - "palpitoad": 7.5949035705700325, - "seismitoad": 12.714421784032243, - "scolipede": 2.6128722359232763, - "whimsicott": 5.401974708082069, - "lilligant": 3.808599971867916, - "basculin-red-striped": 3.8062876205871468, - "basculin-blue-striped": 5.3172745275864415, - "krookodile": 3.8160016800441605, - "maractus": 2.823921170902372, - "crustle": 2.2568120858593828, - "sigilyph": 1.9894824805601554, - "cofagrigus": 2.649426332475759, - "garbodor": 1.593936567068386, - "cinccino": 4.3939527168081725, - "vanillish": 1.980829747107367, - "emolga": 2.9277065168356016, - "escavalier": 1.4198762322980547, - "jellicent": 2.0138262151602655, - "galvantula": 1.5848726799282384, - "klang": 2.456304219449082, - "klinklang": 2.8796760647246793, - "beheeyem": 1.7180900168757827, - "lampent": 1.8784163016184245, - "fraxure": 1.488511005204898, - "beartic": 1.6412826760625054, - "cryogonal": 1.441176717560607, - "accelgor": 2.803266056423701, - "stunfisk": 1.7501235659539234, - "stunfisk-galar": 2.4072606629658626, - "mienshao": 3.5207883597893748, - "druddigon": 1.6359727160065558, - "golurk": 2.578038374782017, - "bisharp": 2.028915066849262, - "bouffalant": 1.2196410845047467, - "heatmor": 1.6406935712709736, - "durant": 2.4085130997172204, - "diggersby": 4.206227535862499, - "talonflame": 2.506838641089491, - "pangoro": 1.850700961190569, - "doublade": 2.130847126326638, - "malamar": 2.8544467011939227, - "barbaracle": 2.852935849621397, - "heliolisk": 3.552604649005857, - "tyrantrum": 1.7703359658650961, - "aurorus": 2.8471513779423248, - "hawlucha": 3.4034271701896097, - "dedenne": 3.790119244955217, - "klefki": 2.6742666440647267, - "trevenant": 3.037606868356253, - "gourgeist-average": 4.813440046093026, - "charjabug": 3.9231643643459453, - "vikavolt": 1.7811323405696775, - "ribombee": 5.52265192604696, - "lycanroc-midday": 4.334883376693051, - "lycanroc-midnight": 3.101835504395127, - "mudsdale": 2.206302258752765, - "araquanid": 2.3294052826620786, - "lurantis": 2.9193397761986493, - "shiinotic": 7.181712920136176, - "salazzle": 2.4698066312736806, - "bewear": 1.8477146379508818, - "tsareena": 3.620103587790453, - "comfey": 5.593438085369706, - "oranguru": 2.299309464072658, - "passimian": 2.454397315422254, - "palossand": 2.9648003469618414, - "pyukumuku": 58.690486199299386, - "togedemaru": 1.95335091669576, - "mimikyu-disguised": 3.921041524512083, - "greedent": 2.110426117859782, - "orbeetle": 1.5960485729327436, - "thievul": 1.6862591353913507, - "eldegoss": 4.705955402147028, - "dubwool": 3.175619482397599, - "drednaw": 2.5601344599833853, - "boltund": 4.979698608049814, - "carkol": 2.3592312188741467, - "coalossal": 1.9973437087028816, - "sandaconda": 4.584001423414633, - "cramorant": 5.366883803554495, - "barraskewda": 6.542066745452404, - "toxtricity-amped": 2.40503238412312, - "centiskorch": 1.781822201273402, - "grapploct": 1.8727624723696958, - "polteageist": 2.490810630476904, - "hatterene": 2.77070552342834, - "grimmsnarl": 4.531397599503496, - "obstagoon": 2.6743445867797613, - "perrserker": 2.8814459371142327, - "alcremie": 1.6926513588687875, - "falinks": 3.4536839525618652, - "pincurchin": 3.227888866282528, - "frosmoth": 2.3752583105699285, - "indeedee-male": 2.8003969729764897, - "morpeko": 2.8506956930788157, - "copperajah": 2.0614045702215185, - "duraludon": 1.2276969069532775, - "drakloak": 3.7841448219346256, - "amoonguss": 2.4698684384020124 + "ivysaur": 3.1586921214160517, + "charmeleon": 3.3277550873211705, + "wartortle": 3.806535584231015, + "butterfree": 4.274883744570124, + "raichu": 5.404713688860149, + "raichu-alola": 3.2679484003080157, + "sandslash": 3.2321016265393174, + "sandslash-alola": 1.784833844507817, + "nidoqueen": 2.857482273919371, + "nidoking": 1.78477412870919, + "clefairy": 10.173559097188228, + "clefable": 2.643049648181914, + "jigglypuff": 32.80968643264787, + "wigglytuff": 2.4589353300925496, + "gloom": 5.511861624887835, + "vileplume": 2.960981673209282, + "dugtrio": 4.5660463355401415, + "dugtrio-alola": 3.410901487727213, + "persian": 4.378617667773302, + "persian-alola": 4.336632598498649, + "golduck": 4.330540789579786, + "poliwrath": 2.7295302900223914, + "kadabra": 3.6645899967496307, + "machoke": 4.150006454758327, + "tentacruel": 2.349539534765153, + "slowbro": 2.2027391359764112, + "magneton": 2.8732765060510563, + "haunter": 3.8120593094697623, + "kingler": 4.099532509058243, + "exeggutor": 2.247850056910134, + "marowak": 4.300193234012232, + "marowak-alola": 1.6588798414112158, + "hitmonlee": 2.2560759568363293, + "hitmonchan": 1.9986598549637415, + "lickitung": 1.9434908987355861, + "weezing": 1.330003839539216, + "weezing-galar": 2.5778638413301094, + "rhydon": 4.954893985432249, + "chansey": 19.831215619630996, + "tangela": 7.265835260336073, + "kangaskhan": 1.8624313857346313, + "seadra": 6.755587803716791, + "seaking": 3.1422071211551597, + "starmie": 1.863993547173129, + "mr-mime": 6.341463142376835, + "mr-mime-galar": 3.122118550676417, + "scyther": 2.386390884197609, + "jynx": 3.815351898982402, + "electabuzz": 2.722127960827944, + "magmar": 1.3720490149339408, + "tauros": 2.1703497258053215, + "ditto": 3.9008796236263015, + "vaporeon": 4.168859419557116, + "jolteon": 1.9231309665627259, + "flareon": 1.8909257082834832, + "porygon": 2.7886093280573494, + "dragonair": 1.667255927875253, + "noctowl": 4.695294043557009, + "lanturn": 2.7489847680206867, + "togetic": 5.850391346408814, + "xatu": 3.1756209268252706, + "bellossom": 3.040506509790553, + "azumarill": 2.843822089816938, + "sudowoodo": 3.753435267890298, + "politoed": 3.3611556465067776, + "quagsire": 10.630050089931474, + "slowking": 2.8846435640106893, + "dunsparce": 3.1407914682863955, + "qwilfish": 3.7998229353890696, + "sneasel": 2.1419954224093805, + "piloswine": 2.0411677341053736, + "octillery": 3.2759015151473143, + "mantine": 2.240033491530253, + "skarmory": 1.4901917490300376, + "hitmontop": 2.626060066746372, + "miltank": 3.941754106679598, + "grovyle": 9.608912990745345, + "sceptile": 1.6672936638743692, + "combusken": 3.1227327959334157, + "blaziken": 1.4363608359060396, + "marshtomp": 4.967647333157974, + "swampert": 2.3982641419024726, + "linoone": 5.238197112660492, + "linoone-galar": 4.772753248602342, + "pelipper": 6.068531410127719, + "ninjask": 6.914394039163179, + "exploud": 1.5504497507705288, + "lairon": 2.7484066597201178, + "manectric": 1.761556069028486, + "roselia": 3.6170462944720567, + "sharpedo": 6.815740630148167, + "wailmer": 8.810470306326062, + "torkoal": 1.6616351331236754, + "flygon": 2.422809627704768, + "altaria": 1.4516833187285936, + "whiscash": 4.193919429505897, + "crawdaunt": 3.066478294351919, + "claydol": 4.0241238147940805, + "cradily": 2.404995611435936, + "armaldo": 1.9308740051590385, + "dusclops": 3.4471986812787963, + "absol": 1.8860092184422133, + "glalie": 3.9217661875056127, + "sealeo": 4.145195132488203, + "relicanth": 4.227155029318725, + "metang": 2.4060181116925112, + "luxray": 4.0618060138513705, + "vespiquen": 2.4443573545806005, + "cherrim": 7.18146650133278, + "gastrodon": 4.151245601242023, + "drifblim": 3.463166784394007, + "lopunny": 3.588281371937004, + "skuntank": 1.1830177830302242, + "bronzong": 2.372423945035151, + "munchlax": 2.0440381591337915, + "drapion": 2.090685372954318, + "abomasnow": 3.499971235547638, + "froslass": 2.7223872239719826, + "rotom": 3.990396960167349, + "stoutland": 2.4375247490199072, + "liepard": 7.362870298625319, + "musharna": 1.4385671239787161, + "unfezant": 5.3167574634847075, + "boldore": 5.115204895546626, + "swoobat": 4.535239669136596, + "audino": 2.2879508847729904, + "gurdurr": 2.5433654485061172, + "palpitoad": 7.6138862978659265, + "seismitoad": 12.73923175624883, + "scolipede": 2.609339352899867, + "whimsicott": 5.427894802900111, + "lilligant": 3.821370677206607, + "basculin-red-striped": 3.8117108110059554, + "basculin-blue-striped": 5.333584885159013, + "krookodile": 3.8205622848543, + "maractus": 2.835294532877386, + "crustle": 2.2585998147875275, + "sigilyph": 1.9861052183401582, + "cofagrigus": 2.6483431137503333, + "garbodor": 1.5930834387698891, + "cinccino": 4.391147819073257, + "vanillish": 1.9778752090256715, + "emolga": 2.929428055040529, + "escavalier": 1.416894451309509, + "amoonguss": 2.4698684384020124, + "jellicent": 2.016915822302374, + "galvantula": 1.587269638578983, + "klang": 2.453897578589416, + "klinklang": 2.873911818152671, + "beheeyem": 1.7173033373178423, + "lampent": 1.87463586659643, + "fraxure": 1.488937015790458, + "beartic": 1.641008726686312, + "cryogonal": 1.4383171443855525, + "accelgor": 2.8023986831883496, + "stunfisk": 1.753548656205947, + "stunfisk-galar": 2.406010137061436, + "mienshao": 3.525551934052789, + "druddigon": 1.6354325370313616, + "golurk": 2.582025613653105, + "bisharp": 2.0233166446073176, + "bouffalant": 1.2180295736717373, + "heatmor": 1.6393629059209767, + "durant": 2.4033887467516237, + "diggersby": 4.210075845563032, + "talonflame": 2.502690069088813, + "pangoro": 1.8535433261682037, + "doublade": 2.1279736930269393, + "malamar": 2.8551683229531593, + "barbaracle": 2.8585863434773824, + "heliolisk": 3.5557277593291574, + "tyrantrum": 1.7716776393890048, + "aurorus": 2.8456757549577807, + "hawlucha": 3.4063020900386425, + "dedenne": 3.8060046122880475, + "klefki": 2.6721961546273363, + "trevenant": 3.045052346478073, + "gourgeist-average": 4.814037896142635, + "charjabug": 3.9295840347424047, + "vikavolt": 1.7830810377832584, + "ribombee": 5.536329869429669, + "lycanroc-midday": 4.339033521594969, + "lycanroc-midnight": 3.105709403430539, + "mudsdale": 2.210596339418309, + "araquanid": 2.3320414952503863, + "lurantis": 2.926989338965851, + "shiinotic": 7.214984199747085, + "salazzle": 2.462634012752517, + "bewear": 1.8485621762785311, + "tsareena": 3.627666713286866, + "comfey": 5.618795767713493, + "oranguru": 2.2938400848371954, + "passimian": 2.45759566776859, + "palossand": 2.969018417680052, + "pyukumuku": 58.8122970063179, + "togedemaru": 1.9500756611910117, + "mimikyu-disguised": 3.924215826232551, + "greedent": 2.1098605999995383, + "orbeetle": 1.5926522228294062, + "thievul": 1.68561317830754, + "eldegoss": 4.720603120551395, + "dubwool": 3.180634705737781, + "drednaw": 2.5665517884990194, + "boltund": 4.988332236511971, + "carkol": 2.3557746562130353, + "coalossal": 1.9961891157605955, + "sandaconda": 4.590824914481008, + "cramorant": 5.371222827391597, + "barraskewda": 6.557178834576133, + "toxtricity-amped": 2.40452330502596, + "centiskorch": 1.77936908633786, + "grapploct": 1.8777981338044085, + "polteageist": 2.48935869717618, + "hatterene": 2.7748607193672172, + "grimmsnarl": 4.545301650797283, + "obstagoon": 2.6765109930065023, + "perrserker": 2.8776363135904965, + "alcremie": 1.6969961734172565, + "falinks": 3.4601932819510712, + "pincurchin": 3.2370775213631164, + "frosmoth": 2.3708227909822113, + "indeedee-male": 2.795740547174149, + "morpeko": 2.85426444636059, + "copperajah": 2.0585308274913223, + "duraludon": 1.2254949993421997, + "drakloak": 3.781416264550016 }, "jellicent": { - "ivysaur": 3.1126873429485906, - "charmeleon": 4.708000220039302, - "wartortle": 3.0211094366905753, - "butterfree": 4.639675957398735, - "raichu": 4.901321779289558, - "raichu-alola": 3.3532623924723914, - "sandslash": 2.530613100046154, - "sandslash-alola": 1.8439412033450517, - "nidoqueen": 3.1221801604716304, - "nidoking": 2.0076827679900786, - "clefairy": 8.803208475665896, - "clefable": 2.055974448252213, - "jigglypuff": 26.17241341749135, - "wigglytuff": 2.025156334997244, - "gloom": 6.208443091150439, - "vileplume": 3.0206786913351404, - "dugtrio": 4.178669003133546, - "dugtrio-alola": 3.8084083156419615, - "persian": 4.5510594232421315, - "persian-alola": 4.302556036512392, - "golduck": 3.54483117062602, - "poliwrath": 2.682380844342541, - "kadabra": 4.017881468384227, - "machoke": 4.535273117087506, - "tentacruel": 2.33938541014723, - "slowbro": 1.748247350140359, - "magneton": 2.764281114157191, - "haunter": 3.816155778630277, - "kingler": 2.895204782136201, - "exeggutor": 2.0059920965133164, - "marowak": 3.195342758849823, - "marowak-alola": 2.1185795840779527, - "hitmonlee": 2.7665884370117517, - "hitmonchan": 2.342478862179121, - "lickitung": 2.072265818414213, - "weezing": 1.5299779434713057, - "weezing-galar": 2.5166263835358764, - "rhydon": 2.70659997705099, - "chansey": 31.070426388722602, - "tangela": 5.264188442086821, - "kangaskhan": 1.7298244164570846, - "seadra": 4.850779770716955, - "seaking": 2.4205589337043385, - "starmie": 1.3925840662884936, - "mr-mime": 6.728551754629882, - "mr-mime-galar": 3.813122633832635, - "scyther": 2.7729136610242433, - "jynx": 4.151883369832898, - "electabuzz": 2.3025372657799483, - "magmar": 2.2001849166361342, - "tauros": 2.0010660787203243, - "ditto": 2.217267208498682, - "vaporeon": 3.456924065562604, - "jolteon": 1.8828006128670665, - "flareon": 3.1785556828829638, - "porygon": 2.6707516207916746, - "dragonair": 2.123597665475808, - "noctowl": 6.064746270026362, - "lanturn": 1.8962608713511953, - "togetic": 5.606366594821505, - "xatu": 4.096599742656979, - "bellossom": 2.3999619877905465, - "azumarill": 2.2541064504487043, - "sudowoodo": 2.699304459335495, - "politoed": 2.6749470816113297, - "quagsire": 5.33148980133564, - "slowking": 2.4972933291430506, - "dunsparce": 3.0845665166578327, - "qwilfish": 3.292317344118174, - "sneasel": 2.2207770472686614, - "piloswine": 1.804112614802778, - "octillery": 2.4956914183627115, - "mantine": 2.3992065737309143, - "skarmory": 1.8317541754243303, - "hitmontop": 3.181666870365986, - "miltank": 3.7607196413587634, - "grovyle": 7.78830177271188, - "sceptile": 1.3679601738346316, - "combusken": 4.149125558365399, - "blaziken": 1.9717057583734587, - "marshtomp": 2.6727153994236534, - "swampert": 1.305573863169923, - "linoone": 4.984570927872809, - "linoone-galar": 4.605528314939082, - "pelipper": 6.291675373429123, - "ninjask": 8.149089500849769, - "exploud": 1.7542673526767727, - "lairon": 2.308421389650122, - "manectric": 1.7390854794229371, - "roselia": 3.8083846052632673, - "sharpedo": 5.633845841239399, - "wailmer": 6.821248580622756, - "torkoal": 2.107438070168492, - "flygon": 3.3886279843103817, - "altaria": 2.2881848416988753, - "whiscash": 2.37355886154093, - "crawdaunt": 2.7460842368082314, - "claydol": 3.9700317095905646, - "cradily": 2.309734580298771, - "armaldo": 2.001288017882996, - "dusclops": 2.9145390312753356, - "absol": 2.2816966795544324, - "glalie": 3.796979336165434, - "sealeo": 3.5115690663280192, - "relicanth": 2.0010840076986782, - "metang": 2.471683876931631, - "luxray": 3.61557732940493, - "vespiquen": 2.9666070461676624, - "cherrim": 5.896445512657589, - "gastrodon": 2.3366096645819043, - "drifblim": 4.2098915738108005, - "lopunny": 3.884329314052308, - "skuntank": 1.2850096719609723, - "bronzong": 2.8298188762308625, - "munchlax": 2.270330083156012, - "drapion": 2.1968015362332767, - "abomasnow": 2.8846227225413283, - "froslass": 2.7481059725901638, - "rotom": 3.139454985275149, - "stoutland": 2.711068602820224, - "liepard": 7.216067510295076, - "musharna": 1.4308770565953814, - "unfezant": 6.7612101757562755, - "boldore": 3.358436974241204, - "swoobat": 5.864192831213729, - "audino": 2.5596272235672, - "gurdurr": 3.0235755168909657, - "palpitoad": 3.931860667753528, - "seismitoad": 6.825218468877379, - "scolipede": 2.804297159470284, - "whimsicott": 3.2058270341948307, - "lilligant": 3.087830478613307, - "basculin-red-striped": 3.0739651473146985, - "basculin-blue-striped": 3.775636163283691, - "krookodile": 2.9741318410976803, - "maractus": 2.093203144195318, - "crustle": 2.2551169416571675, - "sigilyph": 2.5299910924164672, - "cofagrigus": 2.35553440208776, - "garbodor": 1.7826971492760206, - "cinccino": 4.899634842002425, - "vanillish": 2.3645849538502457, - "emolga": 2.9468308362864652, - "escavalier": 1.789684724330803, - "amoonguss": 2.630081878825222, - "galvantula": 1.4092267904233262, - "klang": 2.4553103172565756, - "klinklang": 3.230615057807885, - "beheeyem": 1.7532383338650985, - "lampent": 3.1857285257256946, - "fraxure": 1.9005663845883305, - "beartic": 1.8677887809421012, - "cryogonal": 1.8737978798677504, - "accelgor": 3.258220144757429, - "stunfisk": 1.5718527872936887, - "stunfisk-galar": 2.4606193942906414, - "mienshao": 4.257383792932467, - "druddigon": 1.998982942777157, - "golurk": 2.05887081917563, - "bisharp": 2.1503026647427776, - "bouffalant": 1.2795440821526807, - "heatmor": 2.1922472593533415, - "durant": 2.5343019660592034, - "diggersby": 3.607393125647268, - "talonflame": 3.403612936568079, - "pangoro": 2.7828487439673317, - "doublade": 2.105077132279235, - "malamar": 2.999597562545138, - "barbaracle": 1.6021727778792787, - "heliolisk": 3.2104496696793743, - "tyrantrum": 2.1001564179289582, - "aurorus": 2.718741576263746, - "hawlucha": 4.115631581714608, - "dedenne": 2.7585214507546176, - "klefki": 2.7882880296818007, - "trevenant": 2.9263908720315905, - "gourgeist-average": 5.442620285807454, - "charjabug": 3.4259112172585624, - "vikavolt": 1.7411177683916366, - "ribombee": 4.669107507499572, - "lycanroc-midday": 3.6653551313101476, - "lycanroc-midnight": 2.506452235950734, - "mudsdale": 1.7440750681076067, - "araquanid": 2.3838219724303586, - "lurantis": 2.5605301112712535, - "shiinotic": 4.759156329555345, - "salazzle": 3.6765336766262133, - "bewear": 2.3167591230972455, - "tsareena": 2.872569455661918, - "comfey": 4.090342460952132, - "oranguru": 2.5889929213727125, - "passimian": 2.9493673941492844, - "palossand": 2.215721187939393, - "pyukumuku": 42.9147032850849, - "togedemaru": 1.9910236731624094, - "mimikyu-disguised": 3.568218339314985, - "greedent": 2.1795774283786575, - "orbeetle": 1.8356187822238592, - "thievul": 1.8680183882579207, - "eldegoss": 3.7985836783786184, - "dubwool": 2.943745618866702, - "drednaw": 1.2878146337909329, - "boltund": 3.878266923778267, - "carkol": 3.321943193671335, - "coalossal": 2.894702798734716, - "sandaconda": 3.567689357431821, - "cramorant": 4.923016675629571, - "barraskewda": 4.380484219746512, - "toxtricity-amped": 2.7266319314409544, - "centiskorch": 2.5885144356898504, - "grapploct": 2.3160035330577764, - "polteageist": 2.3869000955270443, - "hatterene": 2.374081431886174, - "grimmsnarl": 4.236237856932754, - "obstagoon": 2.825068692419687, - "perrserker": 2.598966416183286, - "alcremie": 1.432015394130433, - "falinks": 4.212473341712558, - "pincurchin": 2.8131322911856897, - "frosmoth": 2.8453420137832097, - "indeedee-male": 3.097184252810317, - "morpeko": 2.8309304786177663, - "copperajah": 2.352079509170986, - "duraludon": 1.5435813834879137, - "drakloak": 4.8068063396446155, - "jellicent": 1.5142149467187007 + "ivysaur": 3.1093248585466338, + "charmeleon": 4.714461489982817, + "wartortle": 3.0309695459608177, + "butterfree": 4.6414639790329755, + "raichu": 4.90102214512164, + "raichu-alola": 3.3505069375878347, + "sandslash": 2.535063912147697, + "sandslash-alola": 1.8437384103603258, + "nidoqueen": 3.1245818032804906, + "nidoking": 2.008250526213225, + "clefairy": 8.804853974401851, + "clefable": 2.056849258301517, + "jigglypuff": 26.182438780024725, + "wigglytuff": 2.0271658826699457, + "gloom": 6.213283123186736, + "vileplume": 3.0189607122462854, + "dugtrio": 4.181265156611877, + "dugtrio-alola": 3.8072434540330296, + "persian": 4.559529007048118, + "persian-alola": 4.297334742356393, + "golduck": 3.55917936647919, + "poliwrath": 2.6942332233171675, + "kadabra": 4.017519845875607, + "machoke": 4.539825645786246, + "tentacruel": 2.3448644754550108, + "slowbro": 1.7479386468962974, + "magneton": 2.7614346690775102, + "haunter": 3.809687532960067, + "kingler": 2.9042597528543057, + "exeggutor": 2.004843261785881, + "marowak": 3.195763773481528, + "marowak-alola": 2.1177943759688054, + "hitmonlee": 2.7749760351364334, + "hitmonchan": 2.3445478418705687, + "lickitung": 2.0754149672877062, + "weezing": 1.5306172413428212, + "weezing-galar": 2.5188392092513388, + "rhydon": 2.7094520113609217, + "chansey": 31.134923216710437, + "tangela": 5.257159199321011, + "kangaskhan": 1.728967651920566, + "seadra": 4.86380597201388, + "seaking": 2.4230699838216356, + "starmie": 1.3919600242251202, + "mr-mime": 6.728502218098032, + "mr-mime-galar": 3.8126784660366217, + "scyther": 2.7725450377583987, + "jynx": 4.148366508648893, + "electabuzz": 2.299676002516858, + "magmar": 2.2045209624471305, + "tauros": 2.0026083997693345, + "ditto": 2.206197047498432, + "vaporeon": 3.466630242074126, + "jolteon": 1.8803989253409925, + "flareon": 3.180293683331521, + "porygon": 2.6702036491602463, + "dragonair": 2.124512531366464, + "noctowl": 6.071701014032435, + "lanturn": 1.8990079409880016, + "togetic": 5.613814092515085, + "xatu": 4.09975299511969, + "bellossom": 2.397980195836021, + "azumarill": 2.259689572356588, + "sudowoodo": 2.7017555772413386, + "politoed": 2.6811017060849496, + "quagsire": 5.35386566493966, + "slowking": 2.5004608708323834, + "dunsparce": 3.0843491504118328, + "qwilfish": 3.298713788909752, + "sneasel": 2.2159001687466944, + "piloswine": 1.8072080290539692, + "octillery": 2.500840608864965, + "mantine": 2.4025272377342652, + "skarmory": 1.8314391621676338, + "hitmontop": 3.188793604199266, + "miltank": 3.766520388248851, + "grovyle": 7.784555645171867, + "sceptile": 1.3661818524775404, + "combusken": 4.161506686707614, + "blaziken": 1.976652199026912, + "marshtomp": 2.6801053083017097, + "swampert": 1.308390019288102, + "linoone": 4.984224565037416, + "linoone-galar": 4.5950493001506505, + "pelipper": 6.299150645327195, + "ninjask": 8.159096355327966, + "exploud": 1.758801216444133, + "lairon": 2.308156192612206, + "manectric": 1.7397472256342583, + "roselia": 3.8046591520110704, + "sharpedo": 5.6323707223390285, + "wailmer": 6.833277147013777, + "torkoal": 2.1113370376271146, + "flygon": 3.3968464888706325, + "altaria": 2.2936840805894207, + "whiscash": 2.3774716428729636, + "crawdaunt": 2.7484515891799672, + "claydol": 3.9771254523283734, + "cradily": 2.309641369592869, + "armaldo": 2.0027150587883678, + "dusclops": 2.9104353972605175, + "absol": 2.2828888192791146, + "glalie": 3.7916397782728293, + "sealeo": 3.520575619210804, + "relicanth": 2.0027737610350185, + "metang": 2.4675335032286623, + "luxray": 3.6149088125376165, + "vespiquen": 2.9702359785619175, + "cherrim": 5.893775562714575, + "gastrodon": 2.342665666692969, + "drifblim": 4.208726287338189, + "lopunny": 3.892123479794515, + "skuntank": 1.2827363992837972, + "bronzong": 2.827859266826608, + "munchlax": 2.270045144625976, + "drapion": 2.1955078080210653, + "abomasnow": 2.879964377124062, + "froslass": 2.7476402375047435, + "rotom": 3.135391181113603, + "stoutland": 2.719394640076154, + "liepard": 7.206441558584805, + "musharna": 1.429682695855167, + "unfezant": 6.764428841725289, + "boldore": 3.3614736875658258, + "swoobat": 5.8687845198611095, + "audino": 2.5646159046616397, + "gurdurr": 3.0337311759294545, + "palpitoad": 3.939347670813602, + "seismitoad": 6.839236749928055, + "scolipede": 2.801348885579519, + "whimsicott": 3.2043765224304552, + "lilligant": 3.086171655337857, + "basculin-red-striped": 3.0817546544845724, + "basculin-blue-striped": 3.7809181824431084, + "krookodile": 2.9733300400101452, + "maractus": 2.0887990917662593, + "crustle": 2.258903541081844, + "sigilyph": 2.5327738813523886, + "cofagrigus": 2.3541162369019273, + "garbodor": 1.7850736072879299, + "cinccino": 4.91042985334764, + "vanillish": 2.3676158973364028, + "emolga": 2.9451246674866596, + "escavalier": 1.7916163564769594, + "amoonguss": 2.629547203179781, + "jellicent": 1.5142149467187007, + "galvantula": 1.4077116239055023, + "klang": 2.45333237209862, + "klinklang": 3.234392258569563, + "beheeyem": 1.752960897270595, + "lampent": 3.1921285895460576, + "fraxure": 1.9036431588297722, + "beartic": 1.8713215843771693, + "cryogonal": 1.87388301658456, + "accelgor": 3.2625064907348618, + "stunfisk": 1.573693818775361, + "stunfisk-galar": 2.460688684892369, + "mienshao": 4.269884747867204, + "druddigon": 1.999673227195625, + "golurk": 2.060789586020075, + "bisharp": 2.1464234586670212, + "bouffalant": 1.2810338708036146, + "heatmor": 2.194376725348639, + "durant": 2.531650345382075, + "diggersby": 3.611057693611465, + "talonflame": 3.408214034628244, + "pangoro": 2.787980596265237, + "doublade": 2.1070945734445528, + "malamar": 2.9958760652592598, + "barbaracle": 1.606345658662311, + "heliolisk": 3.2050533801218792, + "tyrantrum": 2.1060422958318883, + "aurorus": 2.7175487470024704, + "hawlucha": 4.121785905224338, + "dedenne": 2.756535496997753, + "klefki": 2.7885047777194183, + "trevenant": 2.9241264236593234, + "gourgeist-average": 5.440285627616568, + "charjabug": 3.41767828784166, + "vikavolt": 1.74164096315919, + "ribombee": 4.673427525972109, + "lycanroc-midday": 3.666764695153701, + "lycanroc-midnight": 2.5057477199612768, + "mudsdale": 1.7462721440800455, + "araquanid": 2.387096977133061, + "lurantis": 2.5614604447524054, + "shiinotic": 4.764383726016371, + "salazzle": 3.6813134560287994, + "bewear": 2.3226022873458563, + "tsareena": 2.866442292924831, + "comfey": 4.0877522148543175, + "oranguru": 2.587857461887451, + "passimian": 2.9560879551889805, + "palossand": 2.2184656419036557, + "pyukumuku": 42.91889626709581, + "togedemaru": 1.988685423200194, + "mimikyu-disguised": 3.5639496482723576, + "greedent": 2.1823035088834852, + "orbeetle": 1.8359554662380684, + "thievul": 1.8661804566295697, + "eldegoss": 3.795176150791927, + "dubwool": 2.946114606614107, + "drednaw": 1.2891640980714092, + "boltund": 3.8680426424104297, + "carkol": 3.3268980321298187, + "coalossal": 2.901890760409807, + "sandaconda": 3.572926354086928, + "cramorant": 4.921283213991561, + "barraskewda": 4.377987851492614, + "toxtricity-amped": 2.7243402584967247, + "centiskorch": 2.592927329362106, + "grapploct": 2.3264904699779123, + "polteageist": 2.383323874434434, + "hatterene": 2.3738293492058817, + "grimmsnarl": 4.238207958220391, + "obstagoon": 2.8235719401347414, + "perrserker": 2.5934068445234155, + "alcremie": 1.4322152405026545, + "falinks": 4.225586049249552, + "pincurchin": 2.8148971847370943, + "frosmoth": 2.846599611988626, + "indeedee-male": 3.0957537888745055, + "morpeko": 2.8272470832132663, + "copperajah": 2.3549600482821766, + "duraludon": 1.5439214121225096, + "drakloak": 4.805056414188108 }, "galvantula": { - "ivysaur": 3.289194746260211, - "charmeleon": 3.359135164861314, - "wartortle": 3.7447934548437436, - "butterfree": 5.548133966533241, - "raichu": 5.4557524484509035, - "raichu-alola": 4.306754879512227, - "sandslash": 2.259767966046395, - "sandslash-alola": 1.960353741977117, - "nidoqueen": 2.2844829377840936, - "nidoking": 1.4904542720935519, - "clefairy": 8.364647439441885, - "clefable": 1.8592113259499212, - "jigglypuff": 26.35977271094947, - "wigglytuff": 1.9391772247412633, - "gloom": 5.571366109626645, - "vileplume": 3.108916810608285, - "dugtrio": 3.1323227278700987, - "dugtrio-alola": 2.8831435284998603, - "persian": 4.2205036354210135, - "persian-alola": 5.5035090535908555, - "golduck": 4.087964823970612, - "poliwrath": 2.6814460469549983, - "kadabra": 4.341222204699782, - "machoke": 3.891975420384243, - "tentacruel": 2.778330864173789, - "slowbro": 2.436414424527804, - "magneton": 2.991746013729431, - "haunter": 4.5795313791718515, - "kingler": 4.067908868519028, - "exeggutor": 3.9354798208919144, - "marowak": 3.296334070751211, - "marowak-alola": 2.024808727177616, - "hitmonlee": 2.2045239273243284, - "hitmonchan": 2.0230560585257784, - "lickitung": 1.9479584217023396, - "weezing": 1.5261423387778605, - "weezing-galar": 2.664462183516691, - "rhydon": 2.433192366725115, - "chansey": 18.680140696288095, - "tangela": 8.64957412281095, - "kangaskhan": 1.8494047905665911, - "seadra": 6.501640116642892, - "seaking": 3.1423407674981707, - "starmie": 1.8958956286797077, - "mr-mime": 6.247296552004176, - "mr-mime-galar": 4.3645585455662586, - "scyther": 3.5155753311627715, - "jynx": 4.636967199219935, - "electabuzz": 2.6725166185901226, - "magmar": 1.3302816475816042, - "tauros": 2.19524074408792, - "ditto": 2.0761602727282527, - "vaporeon": 3.9030701275954947, - "jolteon": 1.8677081314830282, - "flareon": 1.7787981933506134, - "porygon": 2.8569895133310426, - "dragonair": 1.8522178377435932, - "noctowl": 6.679096342545073, - "lanturn": 1.949617993740714, - "togetic": 6.2470015790790425, - "xatu": 5.055632561270657, - "bellossom": 3.1524079763739374, - "azumarill": 3.2837090808031006, - "sudowoodo": 2.63975695265425, - "politoed": 3.2183349817246474, - "quagsire": 5.029975658420383, - "slowking": 3.104028149271466, - "dunsparce": 3.3396884414574846, - "qwilfish": 5.141844870970272, - "sneasel": 2.727926789870388, - "piloswine": 1.6219288130100549, - "octillery": 3.2428021871082584, - "mantine": 4.113594834293103, - "skarmory": 3.468152135762787, - "hitmontop": 2.7174062680421933, - "miltank": 3.826563281211781, - "grovyle": 10.834232007527797, - "sceptile": 1.8839444832132615, - "combusken": 3.3028799484030706, - "blaziken": 1.5009064753500887, - "marshtomp": 2.489043834080998, - "swampert": 1.260280880827143, - "linoone": 5.19815040856149, - "linoone-galar": 6.028848979754187, - "pelipper": 13.450695229265843, - "ninjask": 9.579651874093399, - "exploud": 1.6178751017378257, - "lairon": 2.3960836405329156, - "manectric": 1.7481725770342402, - "roselia": 3.865394169130397, - "sharpedo": 6.8614318988364795, - "wailmer": 9.04904728996602, - "torkoal": 1.6605603922693164, - "flygon": 2.42351479434386, - "altaria": 1.3925551467229877, - "whiscash": 2.029145888265535, - "crawdaunt": 2.971936017269505, - "claydol": 4.040686645829969, - "cradily": 2.8506061770613815, - "armaldo": 1.8284984262358626, - "dusclops": 3.366476571617799, - "absol": 2.5752842395484965, - "glalie": 4.233781434689185, - "sealeo": 4.173170691236249, - "relicanth": 2.552740493998286, - "metang": 3.2858563537181165, - "luxray": 4.033991900064514, - "vespiquen": 3.610801762373179, - "cherrim": 8.035337391894164, - "gastrodon": 2.009946514609639, - "drifblim": 5.871030833900017, - "lopunny": 3.707209634281975, - "skuntank": 1.40863215912983, - "bronzong": 3.33867654267387, - "munchlax": 1.9901850400122356, - "drapion": 2.7022649129182894, - "abomasnow": 4.095048896663647, - "froslass": 2.890852799543282, - "rotom": 3.1598528228574745, - "stoutland": 2.396447403844867, - "liepard": 9.43072252412257, - "musharna": 2.045403742413489, - "unfezant": 9.168398908031962, - "boldore": 3.537929810276302, - "swoobat": 7.247036425713684, - "audino": 2.120095894536856, - "gurdurr": 2.571728438113456, - "palpitoad": 3.8167972440799316, - "seismitoad": 6.294302580208074, - "scolipede": 3.3053841417798426, - "whimsicott": 3.316030591216841, - "lilligant": 4.317120749665991, - "basculin-red-striped": 3.9170435656354727, - "basculin-blue-striped": 5.078134299488164, - "krookodile": 3.8531861103782354, - "maractus": 3.2451722874574376, - "crustle": 2.1547826871933915, - "sigilyph": 3.1470134919355446, - "cofagrigus": 2.7264100680689376, - "garbodor": 1.900964919218215, - "cinccino": 4.597170849166827, - "vanillish": 2.094546766274817, - "emolga": 3.326520189850269, - "escavalier": 1.8194721701081664, - "amoonguss": 2.5776742865621056, - "jellicent": 1.9527279616677364, - "klang": 2.8905511996478883, - "klinklang": 3.725822880286003, - "beheeyem": 2.179352396096302, - "lampent": 2.0416612217939765, - "fraxure": 1.6187836225146723, - "beartic": 1.7626700372718518, - "cryogonal": 1.5470267883607556, - "accelgor": 2.896034756687566, - "stunfisk": 1.2900378259707783, - "stunfisk-galar": 1.915927653246884, - "mienshao": 3.293157295545643, - "druddigon": 1.8811599687207112, - "golurk": 1.586758584255098, - "bisharp": 2.582196677615803, - "bouffalant": 1.376213741708606, - "heatmor": 1.6882606524365578, - "durant": 3.5757953049470945, - "diggersby": 3.071715315699702, - "talonflame": 3.763846609678485, - "pangoro": 1.9120727186401731, - "doublade": 3.070002435908253, - "malamar": 5.969285928107563, - "barbaracle": 1.9979646902752826, - "heliolisk": 3.4554470041347063, - "tyrantrum": 1.6749035599179876, - "aurorus": 2.2593690513670284, - "hawlucha": 5.035842609924931, - "dedenne": 2.404446750219935, - "klefki": 3.2894548413961804, - "trevenant": 3.3085771648115774, - "gourgeist-average": 5.160273953620968, - "charjabug": 4.411850301900248, - "vikavolt": 1.9343350851248426, - "ribombee": 4.524270613063795, - "lycanroc-midday": 2.9036880926843947, - "lycanroc-midnight": 2.232958919713816, - "mudsdale": 1.6847274296387516, - "araquanid": 2.934944482018298, - "lurantis": 3.30193639214257, - "shiinotic": 4.236617900553611, - "salazzle": 2.931748762013508, - "bewear": 1.8007122665946493, - "tsareena": 4.369479466959838, - "comfey": 4.5489501376551225, - "oranguru": 3.305050266188077, - "passimian": 2.4251406088938587, - "palossand": 1.7021505168735418, - "pyukumuku": 60.33328682379196, - "togedemaru": 1.9929802066766626, - "mimikyu-disguised": 3.836182269056718, - "greedent": 2.2697872783890687, - "orbeetle": 2.321590366296377, - "thievul": 2.0251394432387744, - "eldegoss": 5.22301303015062, - "dubwool": 3.177205946255172, - "drednaw": 1.5477176782412658, - "boltund": 4.964099386639077, - "carkol": 1.9917393913995565, - "coalossal": 1.7484967025245968, - "sandaconda": 3.3497928360707716, - "cramorant": 9.490583502248, - "barraskewda": 6.4230961192815705, - "toxtricity-amped": 2.2468295481226557, - "centiskorch": 1.8021641993617985, - "grapploct": 1.8010905567183917, - "polteageist": 2.5561688746202504, - "hatterene": 2.5021331784944616, - "grimmsnarl": 3.952917107616951, - "obstagoon": 3.519479621112818, - "perrserker": 3.7332821825984883, - "alcremie": 1.2940926495378404, - "falinks": 3.55711786627721, - "pincurchin": 3.19092105607986, - "frosmoth": 2.47201190153452, - "indeedee-male": 3.5576331357681354, - "morpeko": 3.9373392263432674, - "copperajah": 2.656867007677681, - "duraludon": 1.464408347012005, - "drakloak": 3.663593683244426, - "galvantula": 1.7343260933797384 + "ivysaur": 3.291124142375283, + "charmeleon": 3.352270602325598, + "wartortle": 3.758048793582403, + "butterfree": 5.557451924040381, + "raichu": 5.44773097920479, + "raichu-alola": 4.307899683086509, + "sandslash": 2.254430641276736, + "sandslash-alola": 1.9616497131026989, + "nidoqueen": 2.277137844105777, + "nidoking": 1.4854401537675543, + "clefairy": 8.359622442205534, + "clefable": 1.8581242003471503, + "jigglypuff": 26.37097712589786, + "wigglytuff": 1.9396360896585203, + "gloom": 5.567041599443227, + "vileplume": 3.110873011319277, + "dugtrio": 3.1232694775495293, + "dugtrio-alola": 2.8763545211277255, + "persian": 4.221661909654908, + "persian-alola": 5.5118222021081404, + "golduck": 4.099327406411698, + "poliwrath": 2.690258972824397, + "kadabra": 4.341053213471466, + "machoke": 3.8937993223145266, + "tentacruel": 2.782706236506108, + "slowbro": 2.4440064641102155, + "magneton": 2.9959950626641305, + "haunter": 4.585424958406871, + "kingler": 4.088009646365702, + "exeggutor": 3.9430406593898635, + "marowak": 3.2924778972812945, + "marowak-alola": 2.0245626665477374, + "hitmonlee": 2.2044076084937547, + "hitmonchan": 2.022918728350933, + "lickitung": 1.9504932360005178, + "weezing": 1.5267738868561032, + "weezing-galar": 2.664220751739137, + "rhydon": 2.427521721869086, + "chansey": 18.609379036424322, + "tangela": 8.674696459875404, + "kangaskhan": 1.850651272412706, + "seadra": 6.525595097105902, + "seaking": 3.151018976934393, + "starmie": 1.9010733012787824, + "mr-mime": 6.246259925897257, + "mr-mime-galar": 4.3668879652461365, + "scyther": 3.522664572558325, + "jynx": 4.634746906394185, + "electabuzz": 2.6736175518894356, + "magmar": 1.3271600298295334, + "tauros": 2.19977832949462, + "ditto": 2.0667504674679353, + "vaporeon": 3.911973494984741, + "jolteon": 1.8621458033665172, + "flareon": 1.7756974908162608, + "porygon": 2.8602024339120105, + "dragonair": 1.8517585176873825, + "noctowl": 6.686495801863925, + "lanturn": 1.9409291910729811, + "togetic": 6.249791916889537, + "xatu": 5.06943383448177, + "bellossom": 3.15753629431489, + "azumarill": 3.2965500127815996, + "sudowoodo": 2.641863709016189, + "politoed": 3.226425636274128, + "quagsire": 5.025271389224003, + "slowking": 3.113220941662475, + "dunsparce": 3.3435586408040345, + "qwilfish": 5.159162461542548, + "sneasel": 2.7291972244225153, + "piloswine": 1.6190120266269172, + "octillery": 3.253962708933907, + "mantine": 4.129324722944093, + "skarmory": 3.483941829416255, + "hitmontop": 2.720605082720712, + "miltank": 3.8316114516338553, + "grovyle": 10.857960645295087, + "sceptile": 1.8869189112432372, + "combusken": 3.3033035839377503, + "blaziken": 1.4992634997373642, + "marshtomp": 2.4842468453965605, + "swampert": 1.2580478882730226, + "linoone": 5.201259456585294, + "linoone-galar": 6.036739597955895, + "pelipper": 13.511676159315446, + "ninjask": 9.597255145299563, + "exploud": 1.6193056512183057, + "lairon": 2.399478488196481, + "manectric": 1.740765099455451, + "roselia": 3.8644953713903787, + "sharpedo": 6.886382030212833, + "wailmer": 9.080926311393657, + "torkoal": 1.659651519900697, + "flygon": 2.4191971189837282, + "altaria": 1.3914106940320976, + "whiscash": 2.0250828850528344, + "crawdaunt": 2.985049947801474, + "claydol": 4.032325244745133, + "cradily": 2.8500798911380354, + "armaldo": 1.8291500846427171, + "dusclops": 3.3691983646573953, + "absol": 2.577394768914103, + "glalie": 4.237677406802569, + "sealeo": 4.184326607198499, + "relicanth": 2.5572599780308045, + "metang": 3.296033892146008, + "luxray": 4.035898905492183, + "vespiquen": 3.619937452047325, + "cherrim": 8.047102699310642, + "gastrodon": 2.0038721270723174, + "drifblim": 5.8889148579641795, + "lopunny": 3.7111625516413573, + "skuntank": 1.4104901063147262, + "bronzong": 3.3467968324028243, + "munchlax": 1.988331120109063, + "drapion": 2.7100176256334527, + "abomasnow": 4.096898145065083, + "froslass": 2.8925769897738887, + "rotom": 3.1616253253507214, + "stoutland": 2.396943985098471, + "liepard": 9.447033833313782, + "musharna": 2.0490298971906795, + "unfezant": 9.198825382835318, + "boldore": 3.5423427749576963, + "swoobat": 7.266908658860688, + "audino": 2.119387455130696, + "gurdurr": 2.5790590560808755, + "palpitoad": 3.809666698398792, + "seismitoad": 6.277365330751374, + "scolipede": 3.3085249241508814, + "whimsicott": 3.317764311271757, + "lilligant": 4.324574738380714, + "basculin-red-striped": 3.9296793941864623, + "basculin-blue-striped": 5.094880413130746, + "krookodile": 3.8514368402305523, + "maractus": 3.2530924396700964, + "crustle": 2.157369549790732, + "sigilyph": 3.1571101137955173, + "cofagrigus": 2.729829539434374, + "garbodor": 1.9025599310308885, + "cinccino": 4.59994905149231, + "vanillish": 2.0950646855345907, + "emolga": 3.3340272120116157, + "escavalier": 1.8210083289913714, + "amoonguss": 2.5776507939582087, + "jellicent": 1.9582924732077767, + "galvantula": 1.7343260933797384, + "klang": 2.895031986165995, + "klinklang": 3.734539262241684, + "beheeyem": 2.179834855022634, + "lampent": 2.0390479688858, + "fraxure": 1.6181957904078763, + "beartic": 1.7647055191931138, + "cryogonal": 1.546112586053114, + "accelgor": 2.8962321541888683, + "stunfisk": 1.288275337793106, + "stunfisk-galar": 1.9105281503737181, + "mienshao": 3.293312305182976, + "druddigon": 1.8818299115412398, + "golurk": 1.583301787391807, + "bisharp": 2.5864984843320715, + "bouffalant": 1.3793486889563278, + "heatmor": 1.68611063300011, + "durant": 3.5862089402125497, + "diggersby": 3.0630995330142623, + "talonflame": 3.7692356931516438, + "pangoro": 1.9168125214891025, + "doublade": 3.082283887032472, + "malamar": 5.985222422916575, + "barbaracle": 2.0027950678385418, + "heliolisk": 3.453843525839172, + "tyrantrum": 1.674282707347455, + "aurorus": 2.2564897559827397, + "hawlucha": 5.051939195810456, + "dedenne": 2.4040221321299593, + "klefki": 3.2962068432981906, + "trevenant": 3.3150777718451856, + "gourgeist-average": 5.155246322361422, + "charjabug": 4.418155119818085, + "vikavolt": 1.9350645261351744, + "ribombee": 4.524757851717684, + "lycanroc-midday": 2.898370519916331, + "lycanroc-midnight": 2.2323064417501306, + "mudsdale": 1.6834217787061796, + "araquanid": 2.9426542181350266, + "lurantis": 3.305271730673879, + "shiinotic": 4.232260600845753, + "salazzle": 2.9243943319055825, + "bewear": 1.8007019733638943, + "tsareena": 4.3774078349173, + "comfey": 4.555630798036043, + "oranguru": 3.30764200918327, + "passimian": 2.4277024916811767, + "palossand": 1.6972288078696778, + "pyukumuku": 60.57589610301102, + "togedemaru": 1.9933106233419038, + "mimikyu-disguised": 3.8362740169572556, + "greedent": 2.2731818472583174, + "orbeetle": 2.323833659451368, + "thievul": 2.02572963127257, + "eldegoss": 5.230783809499239, + "dubwool": 3.1831511927011875, + "drednaw": 1.5512224170403819, + "boltund": 4.967439336343121, + "carkol": 1.9869448343516627, + "coalossal": 1.7447566030637296, + "sandaconda": 3.344114971846192, + "cramorant": 9.525919356817965, + "barraskewda": 6.443267747845287, + "toxtricity-amped": 2.2458016267637833, + "centiskorch": 1.7992515356211065, + "grapploct": 1.8053611391148965, + "polteageist": 2.5583023640702645, + "hatterene": 2.5045103125316657, + "grimmsnarl": 3.9599890752835165, + "obstagoon": 3.5256135293921758, + "perrserker": 3.7441597031058964, + "alcremie": 1.2934043681287481, + "falinks": 3.5658220225718127, + "pincurchin": 3.1938898080506384, + "frosmoth": 2.470290553207079, + "indeedee-male": 3.5561110797589426, + "morpeko": 3.9443837958583012, + "copperajah": 2.664964794870377, + "duraludon": 1.4674302247751057, + "drakloak": 3.659890874266006 }, "klang": { - "ivysaur": 3.301803973295409, - "charmeleon": 3.6173432104667906, - "wartortle": 2.6951447867997893, - "butterfree": 6.269433395219198, - "raichu": 3.9524457312831727, - "raichu-alola": 3.0308513729449045, - "sandslash": 2.228900384810796, - "sandslash-alola": 2.145225051639782, - "nidoqueen": 2.5836649020258244, - "nidoking": 1.6465338378465741, - "clefairy": 10.169160667942673, - "clefable": 2.7599872676690644, - "jigglypuff": 34.55451879894869, - "wigglytuff": 2.7013014882302713, - "gloom": 6.129043217511559, - "vileplume": 3.036072829126092, - "dugtrio": 3.312568265277018, - "dugtrio-alola": 2.6729525455501566, - "persian": 4.418794731594121, - "persian-alola": 4.003557046322924, - "golduck": 3.1576347379894543, - "poliwrath": 1.8721692980068365, - "kadabra": 3.7951464433795747, - "machoke": 3.6517611541947677, - "tentacruel": 2.2872473797744286, - "slowbro": 1.8752345786798328, - "magneton": 2.5219248583773592, - "haunter": 4.317615226613906, - "kingler": 2.574036969645989, - "exeggutor": 1.9323395084739763, - "marowak": 2.9169386108886335, - "marowak-alola": 2.1518474892341546, - "hitmonlee": 1.8377461775386201, - "hitmonchan": 1.8737197648111152, - "lickitung": 1.89422017507748, - "weezing": 1.5428437768794354, - "weezing-galar": 3.632033013121987, - "rhydon": 3.0142504576495854, - "chansey": 20.95138457089309, - "tangela": 5.71962994577134, - "kangaskhan": 1.8058836936423834, - "seadra": 4.823467240738612, - "seaking": 2.4325825420876073, - "starmie": 1.5847914687600926, - "mr-mime": 8.06176893836961, - "mr-mime-galar": 4.529363876601911, - "scyther": 3.933926563389264, - "jynx": 4.806527727369783, - "electabuzz": 2.138478277781713, - "magmar": 1.4552726904203075, - "tauros": 1.884789551475576, - "ditto": 2.6966984488368912, - "vaporeon": 3.0888939105696447, - "jolteon": 1.6418077096334125, - "flareon": 1.945774559675255, - "porygon": 2.7506417828690353, - "dragonair": 1.9182333513934111, - "noctowl": 5.990638143626637, - "lanturn": 1.5823688712795903, - "togetic": 5.940364810468127, - "xatu": 4.296015082835652, - "bellossom": 2.443656010981093, - "azumarill": 2.3783373526123035, - "sudowoodo": 3.2174853485045443, - "politoed": 2.3811581712766743, - "quagsire": 3.613570436103457, - "slowking": 2.5138734009045276, - "dunsparce": 3.3234624227139937, - "qwilfish": 3.968737368339184, - "sneasel": 2.57205593013439, - "piloswine": 2.0531068215406627, - "octillery": 2.519302916963727, - "mantine": 2.935300979164401, - "skarmory": 2.4551488900566003, - "hitmontop": 2.3256844376141617, - "miltank": 3.917628867292312, - "grovyle": 7.308342148879428, - "sceptile": 1.4175861667243814, - "combusken": 2.475081114098973, - "blaziken": 1.2148157380900948, - "marshtomp": 1.994423284984262, - "swampert": 1.0156667047867398, - "linoone": 5.260291556383407, - "linoone-galar": 4.415859114016643, - "pelipper": 9.43519058435264, - "ninjask": 10.544243743812592, - "exploud": 1.5802792012176297, - "lairon": 2.838562115420065, - "manectric": 1.5092361448014162, - "roselia": 3.8534448856440093, - "sharpedo": 5.197050435238906, - "wailmer": 6.848355668477029, - "torkoal": 1.8049943474485328, - "flygon": 2.366568329530481, - "altaria": 1.5688372608740422, - "whiscash": 1.7428389796044037, - "crawdaunt": 2.1533338289783783, - "claydol": 3.394311177955597, - "cradily": 2.9633959181744443, - "armaldo": 2.377232927966605, - "dusclops": 3.2742068605836416, - "absol": 1.9136068260501724, - "glalie": 5.218190607109218, - "sealeo": 3.391856226690348, - "relicanth": 2.179305597672947, - "metang": 2.652405448737508, - "luxray": 3.3817210030492584, - "vespiquen": 3.834867275369769, - "cherrim": 5.909407158874089, - "gastrodon": 1.8468709851095828, - "drifblim": 4.4566810217114945, - "lopunny": 3.4952367879618147, - "skuntank": 1.3330290778587095, - "bronzong": 2.856235294236757, - "munchlax": 2.0450963061308274, - "drapion": 2.533314451671157, - "abomasnow": 3.9831616068375637, - "froslass": 3.727667008441487, - "rotom": 3.0594287575956347, - "stoutland": 2.523053725166986, - "liepard": 6.958602669588922, - "musharna": 1.5737963722013368, - "unfezant": 7.466177322809822, - "boldore": 4.375362551339579, - "swoobat": 6.148807663012732, - "audino": 2.234369036177786, - "gurdurr": 1.9589514695651484, - "palpitoad": 2.9689721905865767, - "seismitoad": 6.1161007474046745, - "scolipede": 3.6379390131702865, - "whimsicott": 4.209768277007821, - "lilligant": 3.140928436155846, - "basculin-red-striped": 3.013699150605471, - "basculin-blue-striped": 3.7463723854555635, - "krookodile": 2.576282081699042, - "maractus": 2.2403543564256543, - "crustle": 2.7698588280812038, - "sigilyph": 2.611458038914252, - "cofagrigus": 2.6382502758106963, - "garbodor": 1.8813061288279331, - "cinccino": 4.773332210412727, - "vanillish": 2.76690598069821, - "emolga": 3.2102379037911364, - "escavalier": 1.5137495370269245, - "amoonguss": 2.743087126707842, - "jellicent": 1.6272158235086394, - "galvantula": 1.6686238751842741, - "klinklang": 3.135826291533289, - "beheeyem": 1.778911090937602, - "lampent": 2.2120695272993016, - "fraxure": 1.6940624199459446, - "beartic": 2.140594842456252, - "cryogonal": 1.93664401008891, - "accelgor": 3.3596228534984984, - "stunfisk": 0.9966737415119712, - "stunfisk-galar": 1.7667749591891961, - "mienshao": 3.174609203450661, - "druddigon": 1.7598270214150442, - "golurk": 1.613517229482466, - "bisharp": 2.2655672492998686, - "bouffalant": 1.231532260943337, - "heatmor": 1.7886703445671908, - "durant": 2.944250673006352, - "diggersby": 2.9197303669700467, - "talonflame": 4.029566243776795, - "pangoro": 1.6038037330722963, - "doublade": 2.176000688808858, - "malamar": 2.8102446418494402, - "barbaracle": 1.6380106576193851, - "heliolisk": 2.932317392307323, - "tyrantrum": 2.200921173135617, - "aurorus": 3.7894585378939665, - "hawlucha": 3.5657963038088707, - "dedenne": 2.9362299517483135, - "klefki": 3.19095700338523, - "trevenant": 2.816737595217083, - "gourgeist-average": 4.857117345620105, - "charjabug": 4.162426012668916, - "vikavolt": 2.0529673673612603, - "ribombee": 6.000738546850429, - "lycanroc-midday": 4.327202163502452, - "lycanroc-midnight": 2.8133220279091864, - "mudsdale": 1.3758170675473678, - "araquanid": 2.5003692468063434, - "lurantis": 2.485491648889373, - "shiinotic": 5.561600661068377, - "salazzle": 3.169035228456179, - "bewear": 1.8801479819196478, - "tsareena": 3.2098678298625307, - "comfey": 5.727359546256002, - "oranguru": 2.6882006982721003, - "passimian": 2.2630330789210653, - "palossand": 1.8809740651328921, - "pyukumuku": 46.9763805004343, - "togedemaru": 1.7992143889024201, - "mimikyu-disguised": 4.9701213606386885, - "greedent": 2.2828411722739492, - "orbeetle": 2.031440348519383, - "thievul": 1.5326075404316244, - "eldegoss": 3.900209691453103, - "dubwool": 2.880423059898206, - "drednaw": 1.4279560376298333, - "boltund": 4.024976982521045, - "carkol": 2.4632501214216793, - "coalossal": 1.9846931912292423, - "sandaconda": 3.122601858252191, - "cramorant": 6.568011869824417, - "barraskewda": 4.9049266449073485, - "toxtricity-amped": 2.4588283824078925, - "centiskorch": 2.5036547520009957, - "grapploct": 1.4906962692860508, - "polteageist": 2.534181288693846, - "hatterene": 3.291819531212167, - "grimmsnarl": 4.387753167205113, - "obstagoon": 2.552072230876265, - "perrserker": 2.9055122690927586, - "alcremie": 1.7079199932947193, - "falinks": 3.103628358277818, - "pincurchin": 2.557288711159913, - "frosmoth": 3.590804577233757, - "indeedee-male": 2.8055101427894362, - "morpeko": 2.3868247230182567, - "copperajah": 2.0120517833782134, - "duraludon": 1.4260984344749197, - "drakloak": 4.413271897625355, - "klang": 2.4325826303270417 + "ivysaur": 3.307299081711732, + "charmeleon": 3.6113352311371094, + "wartortle": 2.695990924443212, + "butterfree": 6.291093303492676, + "raichu": 3.9375201494649548, + "raichu-alola": 3.027414272019486, + "sandslash": 2.2273692157563567, + "sandslash-alola": 2.1471722264115, + "nidoqueen": 2.5791722801149826, + "nidoking": 1.6426709688065508, + "clefairy": 10.168621374128051, + "clefable": 2.7672754752788324, + "jigglypuff": 34.641184395347935, + "wigglytuff": 2.7081963072022157, + "gloom": 6.142472883944059, + "vileplume": 3.0396649511220124, + "dugtrio": 3.3030306686125757, + "dugtrio-alola": 2.665210003703768, + "persian": 4.425188601066049, + "persian-alola": 4.003644082260568, + "golduck": 3.1605789171417147, + "poliwrath": 1.8718169511559206, + "kadabra": 3.796796762887975, + "machoke": 3.649821495829351, + "tentacruel": 2.288985713713415, + "slowbro": 1.877009204471829, + "magneton": 2.5192178315150384, + "haunter": 4.323193291869705, + "kingler": 2.5745420704425173, + "exeggutor": 1.9320816252814073, + "marowak": 2.911751065200567, + "marowak-alola": 2.1525219757837517, + "hitmonlee": 1.8314209634014729, + "hitmonchan": 1.8710294719252945, + "lickitung": 1.895309640999001, + "weezing": 1.545498415798317, + "weezing-galar": 3.6403231554883844, + "rhydon": 3.013872162347183, + "chansey": 20.91697453112908, + "tangela": 5.732078895759287, + "kangaskhan": 1.8067026132640813, + "seadra": 4.833261151832758, + "seaking": 2.434345571549531, + "starmie": 1.5882763711846342, + "mr-mime": 8.076559220570525, + "mr-mime-galar": 4.538832465304825, + "scyther": 3.9475831730329647, + "jynx": 4.812674433875351, + "electabuzz": 2.135248396590263, + "magmar": 1.4528028817327936, + "tauros": 1.8837222355477492, + "ditto": 2.6818935697734205, + "vaporeon": 3.090468496502928, + "jolteon": 1.6376602304144314, + "flareon": 1.9425906241348687, + "porygon": 2.752383666866036, + "dragonair": 1.9197049470298673, + "noctowl": 6.004234160183165, + "lanturn": 1.5770478765872213, + "togetic": 5.948594453760122, + "xatu": 4.3096930465250525, + "bellossom": 2.4460825984394727, + "azumarill": 2.38667757838087, + "sudowoodo": 3.219859396061854, + "politoed": 2.3798148927266394, + "quagsire": 3.601681742886435, + "slowking": 2.5164248503935367, + "dunsparce": 3.328062128237401, + "qwilfish": 3.9805642817974114, + "sneasel": 2.5746589675715246, + "piloswine": 2.054234236200235, + "octillery": 2.5237624651787347, + "mantine": 2.942670105345826, + "skarmory": 2.46451351064037, + "hitmontop": 2.3217365669194887, + "miltank": 3.9263162883169045, + "grovyle": 7.302777060141713, + "sceptile": 1.418813566636427, + "combusken": 2.467330613793866, + "blaziken": 1.2112663187132258, + "marshtomp": 1.98939978081577, + "swampert": 1.0124705393173314, + "linoone": 5.266131527485853, + "linoone-galar": 4.414383374169711, + "pelipper": 9.479160435733581, + "ninjask": 10.575725881397485, + "exploud": 1.5802231670756826, + "lairon": 2.845425427199417, + "manectric": 1.5048899475277193, + "roselia": 3.8554430445898116, + "sharpedo": 5.201921467231052, + "wailmer": 6.8579242717123226, + "torkoal": 1.8038060164529537, + "flygon": 2.365249134520871, + "altaria": 1.5697579138912623, + "whiscash": 1.7405954138020259, + "crawdaunt": 2.156218195061001, + "claydol": 3.3941750635219003, + "cradily": 2.970723312373889, + "armaldo": 2.3826659634197442, + "dusclops": 3.2772991161261276, + "absol": 1.9135780349364082, + "glalie": 5.230340987220678, + "sealeo": 3.3987807951912803, + "relicanth": 2.185147709207194, + "metang": 2.654654131638482, + "luxray": 3.3794866432375548, + "vespiquen": 3.845948393942853, + "cherrim": 5.913902454504067, + "gastrodon": 1.8446231879789936, + "drifblim": 4.46684352855532, + "lopunny": 3.4956714005870104, + "skuntank": 1.3339508511603064, + "bronzong": 2.8601352635470167, + "munchlax": 2.044409968383144, + "drapion": 2.5387374272513643, + "abomasnow": 3.991222972726551, + "froslass": 3.7379729068055854, + "rotom": 3.057234077423349, + "stoutland": 2.5267955347375555, + "liepard": 6.964992962126811, + "musharna": 1.5760729603422143, + "unfezant": 7.498156538655886, + "boldore": 4.38031666685584, + "swoobat": 6.16845587892007, + "audino": 2.2335217292868528, + "gurdurr": 1.954812299865062, + "palpitoad": 2.9600307923179026, + "seismitoad": 6.119706634931567, + "scolipede": 3.646606413626661, + "whimsicott": 4.2200448206337455, + "lilligant": 3.144262967751063, + "basculin-red-striped": 3.0185253824579426, + "basculin-blue-striped": 3.7494493227065755, + "krookodile": 2.570119379167072, + "maractus": 2.242660863045155, + "crustle": 2.7772249910923628, + "sigilyph": 2.6197680300909996, + "cofagrigus": 2.642037663893327, + "garbodor": 1.8852423087260939, + "cinccino": 4.781237993953006, + "vanillish": 2.77385463052787, + "emolga": 3.213511405508922, + "escavalier": 1.5127672591413244, + "amoonguss": 2.7494530751173594, + "jellicent": 1.6303953457611686, + "galvantula": 1.6687625620204658, + "klang": 2.4325826303270417, + "klinklang": 3.140338572165514, + "beheeyem": 1.7802130102779126, + "lampent": 2.2097749439111993, + "fraxure": 1.6969959384763786, + "beartic": 2.143260218834909, + "cryogonal": 1.9393806221320276, + "accelgor": 3.3664783282011967, + "stunfisk": 0.9929074523363128, + "stunfisk-galar": 1.7608854673416268, + "mienshao": 3.173158076973566, + "druddigon": 1.7599666216685956, + "golurk": 1.609023743206315, + "bisharp": 2.267882991535082, + "bouffalant": 1.2320548955156698, + "heatmor": 1.7864579608986197, + "durant": 2.9501343255385057, + "diggersby": 2.9130523040193754, + "talonflame": 4.036739338501243, + "pangoro": 1.602095321472033, + "doublade": 2.1788967746103816, + "malamar": 2.8115137907209906, + "barbaracle": 1.6419634518682857, + "heliolisk": 2.9267888527132206, + "tyrantrum": 2.204563757047118, + "aurorus": 3.7984760021070385, + "hawlucha": 3.5699040113826603, + "dedenne": 2.9370721945783163, + "klefki": 3.198495605303192, + "trevenant": 2.8161854895556795, + "gourgeist-average": 4.852545729646948, + "charjabug": 4.159364174571985, + "vikavolt": 2.0549586434743796, + "ribombee": 6.01894766919105, + "lycanroc-midday": 4.338593869851746, + "lycanroc-midnight": 2.815881284373069, + "mudsdale": 1.371681339091041, + "araquanid": 2.506767116239369, + "lurantis": 2.4879607633851695, + "shiinotic": 5.571660583204891, + "salazzle": 3.1658166609177023, + "bewear": 1.8822651620314124, + "tsareena": 3.2140431616487692, + "comfey": 5.742964706470293, + "oranguru": 2.691189816266895, + "passimian": 2.2630398882084353, + "palossand": 1.8771051203462408, + "pyukumuku": 47.00265932665741, + "togedemaru": 1.7983767185832449, + "mimikyu-disguised": 4.9792823343566495, + "greedent": 2.2874083860847687, + "orbeetle": 2.0352174322664602, + "thievul": 1.5305505581968415, + "eldegoss": 3.9028360987179758, + "dubwool": 2.88097697467407, + "drednaw": 1.431096902929864, + "boltund": 4.0205528161269655, + "carkol": 2.461019752075109, + "coalossal": 1.9841710239743868, + "sandaconda": 3.118990164658374, + "cramorant": 6.58047485462114, + "barraskewda": 4.911717260561141, + "toxtricity-amped": 2.456571228300003, + "centiskorch": 2.5030019848257505, + "grapploct": 1.48719207173597, + "polteageist": 2.5372460100067378, + "hatterene": 3.3007733281615317, + "grimmsnarl": 4.3883066474813734, + "obstagoon": 2.5531628599678102, + "perrserker": 2.9074270398662403, + "alcremie": 1.7091391925786277, + "falinks": 3.1038397142782195, + "pincurchin": 2.554326148967373, + "frosmoth": 3.600105069301411, + "indeedee-male": 2.802045128348704, + "morpeko": 2.3845130378690778, + "copperajah": 2.0113584407602363, + "duraludon": 1.4271858013707335, + "drakloak": 4.415642402073505 }, "klinklang": { - "ivysaur": 3.692580741637075, - "charmeleon": 3.353865665470895, - "wartortle": 2.5032706022731306, - "butterfree": 5.366762364107121, - "raichu": 4.673324160795589, - "raichu-alola": 3.6230981361237005, - "sandslash": 2.0343436688305516, - "sandslash-alola": 2.0004955193781013, - "nidoqueen": 2.702958954790759, - "nidoking": 1.7797388129207898, - "clefairy": 12.427436155679972, - "clefable": 3.272251214867701, - "jigglypuff": 40.649316465660306, - "wigglytuff": 3.055712434541494, - "gloom": 6.58377008359798, - "vileplume": 3.240851751163478, - "dugtrio": 3.86114121137338, - "dugtrio-alola": 2.9107318678609726, - "persian": 4.809678099555141, - "persian-alola": 4.344176068620468, - "golduck": 2.9793975643396617, - "poliwrath": 1.759473032636007, - "kadabra": 4.809512797457868, - "machoke": 3.805788357935233, - "tentacruel": 2.4815270470866264, - "slowbro": 1.6226970231376157, - "magneton": 2.553649748885454, - "haunter": 4.869927329162962, - "kingler": 2.023400880579374, - "exeggutor": 1.9946409267163463, - "marowak": 2.9141823519285497, - "marowak-alola": 1.6214489488882902, - "hitmonlee": 2.406466077840252, - "hitmonchan": 2.208736119036357, - "lickitung": 1.9968591659266988, - "weezing": 1.414990309585054, - "weezing-galar": 3.1624233195055362, - "rhydon": 2.441900888783821, - "chansey": 33.406123005392836, - "tangela": 4.794642830807554, - "kangaskhan": 1.9463402554236673, - "seadra": 3.7491578246182717, - "seaking": 2.434473647623503, - "starmie": 1.4795189634076449, - "mr-mime": 11.102475600758934, - "mr-mime-galar": 5.436966074769726, - "scyther": 2.938989452361315, - "jynx": 7.110997193912835, - "electabuzz": 2.523626303786562, - "magmar": 1.453533855952707, - "tauros": 1.8954948539066123, - "ditto": 3.332775887501243, - "vaporeon": 3.2318192503210916, - "jolteon": 1.9745547402352686, - "flareon": 2.050648451125157, - "porygon": 2.9536371941977126, - "dragonair": 2.0821500905150288, - "noctowl": 6.947828406650627, - "lanturn": 1.8468023656828203, - "togetic": 7.046834784392999, - "xatu": 4.153427983950296, - "bellossom": 2.5972231410258066, - "azumarill": 2.4109441839828607, - "sudowoodo": 2.900552102340754, - "politoed": 2.4011731593632843, - "quagsire": 3.9428848014962483, - "slowking": 2.563949078368455, - "dunsparce": 3.4647285109172, - "qwilfish": 3.342619978943657, - "sneasel": 3.085620902647821, - "piloswine": 2.0235094931195428, - "octillery": 2.3466173691552896, - "mantine": 2.580217552299584, - "skarmory": 1.6994872207364402, - "hitmontop": 2.6216501790348294, - "miltank": 3.7793452418314075, - "grovyle": 8.464997353764797, - "sceptile": 1.5956783434217303, - "combusken": 2.7269804265884874, - "blaziken": 1.3603086524367933, - "marshtomp": 2.3348096360217063, - "swampert": 1.161875935320054, - "linoone": 5.647662044030263, - "linoone-galar": 4.6817879897150885, - "pelipper": 6.002900369108742, - "ninjask": 8.076056346203293, - "exploud": 1.7258438390105075, - "lairon": 2.3953933540295145, - "manectric": 1.6531890733214647, - "roselia": 4.652961462681879, - "sharpedo": 4.958693139250242, - "wailmer": 6.407314890164184, - "torkoal": 1.3509614692282705, - "flygon": 2.512118999259946, - "altaria": 1.5829096458815464, - "whiscash": 1.9929402542637673, - "crawdaunt": 1.8266828757380293, - "claydol": 3.6733515701447357, - "cradily": 3.313432250852549, - "armaldo": 2.412689617424216, - "dusclops": 3.509696785398532, - "absol": 2.035565706666369, - "glalie": 5.718905598878231, - "sealeo": 3.2997036157644954, - "relicanth": 1.8805541039978548, - "metang": 2.5873774453464664, - "luxray": 3.705843664434526, - "vespiquen": 2.8733681342713355, - "cherrim": 6.380441137710024, - "gastrodon": 2.227606421369404, - "drifblim": 4.5513358807912905, - "lopunny": 3.8978891846759427, - "skuntank": 1.3985349729698062, - "bronzong": 2.885649636687856, - "munchlax": 2.6361684170868926, - "drapion": 2.4580072956056167, - "abomasnow": 4.49526205233915, - "froslass": 4.0709995054721935, - "rotom": 2.973552692506657, - "stoutland": 2.6930728735337324, - "liepard": 7.478841342579601, - "musharna": 1.70645354785839, - "unfezant": 6.598267477699395, - "boldore": 3.4670489919956884, - "swoobat": 5.94664018444027, - "audino": 2.3529262942139306, - "gurdurr": 1.8824626885130757, - "palpitoad": 3.4137220629655474, - "seismitoad": 6.9859700835035365, - "scolipede": 3.327876576702103, - "whimsicott": 4.361897087889735, - "lilligant": 3.3013951599733833, - "basculin-red-striped": 2.745623570907683, - "basculin-blue-striped": 3.3931462352452773, - "krookodile": 2.6514382575347373, - "maractus": 2.3719050814612164, - "crustle": 2.5176873231048886, - "sigilyph": 2.5239935578362758, - "cofagrigus": 2.5449850831821537, - "garbodor": 2.007921716378175, - "cinccino": 5.090386364651172, - "vanillish": 3.137705931339453, - "emolga": 2.87079778044101, - "escavalier": 1.5209120645249503, - "amoonguss": 2.9907302677058514, - "jellicent": 1.4729456107891732, - "galvantula": 1.4961788545168675, - "klang": 2.3749237108955246, - "beheeyem": 1.9810329261901534, - "lampent": 1.7382239646448905, - "fraxure": 1.6697633006639214, - "beartic": 2.325958278489729, - "cryogonal": 2.923278436495871, - "accelgor": 3.6073373249886105, - "stunfisk": 1.1661917280959042, - "stunfisk-galar": 1.777545425209198, - "mienshao": 3.36973321269304, - "druddigon": 1.9003182814906485, - "golurk": 1.746510689087939, - "bisharp": 2.165954028535416, - "bouffalant": 1.3365742103122802, - "heatmor": 1.6249435620749995, - "durant": 2.531346759511628, - "diggersby": 3.1539752017598293, - "talonflame": 2.6739163695427566, - "pangoro": 1.7011687635366797, - "doublade": 1.7997890108956325, - "malamar": 2.87065693722826, - "barbaracle": 1.5373459752444414, - "heliolisk": 3.604043745915719, - "tyrantrum": 1.8688361531051179, - "aurorus": 4.662797236511298, - "hawlucha": 3.476590085021628, - "dedenne": 3.2497351526535825, - "klefki": 3.3707020817680853, - "trevenant": 3.1197178862460344, - "gourgeist-average": 4.547269963962531, - "charjabug": 3.5836396478605805, - "vikavolt": 1.753390967816184, - "ribombee": 6.920610166073442, - "lycanroc-midday": 4.71655898190979, - "lycanroc-midnight": 3.102250771129028, - "mudsdale": 1.4398334293605868, - "araquanid": 2.513296493032187, - "lurantis": 2.6213355849006628, - "shiinotic": 6.55080926515503, - "salazzle": 2.865882574004325, - "bewear": 1.8798025111805319, - "tsareena": 3.4165128959837228, - "comfey": 6.76258523641283, - "oranguru": 3.067881051020419, - "passimian": 2.2126248900291774, - "palossand": 1.7911092871023144, - "pyukumuku": 43.538301448942484, - "togedemaru": 1.93905408083568, - "mimikyu-disguised": 6.282659442703832, - "greedent": 2.301812305341913, - "orbeetle": 2.00967667381991, - "thievul": 1.8025046322327622, - "eldegoss": 4.387947022715915, - "dubwool": 3.021907008674098, - "drednaw": 1.358744240018063, - "boltund": 4.442893748052456, - "carkol": 2.2594856822029996, - "coalossal": 1.7899349840422922, - "sandaconda": 2.8631482373174206, - "cramorant": 5.628241956884148, - "barraskewda": 4.4605822795833, - "toxtricity-amped": 2.6709007782096994, - "centiskorch": 1.8876563688385963, - "grapploct": 1.5436083743882858, - "polteageist": 3.169877666792825, - "hatterene": 3.7065943840170386, - "grimmsnarl": 5.11092380758492, - "obstagoon": 2.584089410313956, - "perrserker": 2.684526598536235, - "alcremie": 2.2554538454894333, - "falinks": 2.956246204811885, - "pincurchin": 2.719059808521871, - "frosmoth": 3.9711366747978127, - "indeedee-male": 3.349905763692031, - "morpeko": 2.6235174958206393, - "copperajah": 2.0421169049226373, - "duraludon": 1.28865867836054, - "drakloak": 4.74856009409298, - "klinklang": 3.0039533419035775 + "ivysaur": 3.7011945199644325, + "charmeleon": 3.344257173251118, + "wartortle": 2.499667935959651, + "butterfree": 5.377214198445696, + "raichu": 4.663757823741088, + "raichu-alola": 3.622273823475907, + "sandslash": 2.033504895550749, + "sandslash-alola": 1.9994517019820472, + "nidoqueen": 2.701011698822877, + "nidoking": 1.7784813948139717, + "clefairy": 12.435405088060884, + "clefable": 3.2826349833799586, + "jigglypuff": 40.76908561790286, + "wigglytuff": 3.0642467975243095, + "gloom": 6.600348776836229, + "vileplume": 3.245621191459028, + "dugtrio": 3.858296757844735, + "dugtrio-alola": 2.9065688745149907, + "persian": 4.817017075780699, + "persian-alola": 4.344573292426196, + "golduck": 2.9777367794850766, + "poliwrath": 1.7574199929786678, + "kadabra": 4.818674005287735, + "machoke": 3.804614221798972, + "tentacruel": 2.4823311359379794, + "slowbro": 1.6205103940633716, + "magneton": 2.5490231812726627, + "haunter": 4.871493595611334, + "kingler": 2.018161175225034, + "exeggutor": 1.9948012581791503, + "marowak": 2.911978563448754, + "marowak-alola": 1.6175348813897465, + "hitmonlee": 2.403670860991602, + "hitmonchan": 2.208483977235703, + "lickitung": 1.9973182185798404, + "weezing": 1.4151151142502978, + "weezing-galar": 3.1659945205727476, + "rhydon": 2.4404903827930413, + "chansey": 33.47552297144237, + "tangela": 4.797286721347232, + "kangaskhan": 1.9474700512926093, + "seadra": 3.744493204935951, + "seaking": 2.4342168137557696, + "starmie": 1.4804010999488657, + "mr-mime": 11.13883860312698, + "mr-mime-galar": 5.450215381326679, + "scyther": 2.9426106804479524, + "jynx": 7.132636496685457, + "electabuzz": 2.5216031326726287, + "magmar": 1.4501977761994134, + "tauros": 1.8936167598470939, + "ditto": 3.3112812690534295, + "vaporeon": 3.2309242317461653, + "jolteon": 1.973281486533554, + "flareon": 2.046967169195164, + "porygon": 2.9550440185143647, + "dragonair": 2.084771197677789, + "noctowl": 6.962486215164311, + "lanturn": 1.8444593652959744, + "togetic": 7.051757580505214, + "xatu": 4.158555808711767, + "bellossom": 2.6005315974125205, + "azumarill": 2.4161255970558546, + "sudowoodo": 2.900319454141828, + "politoed": 2.397567066220833, + "quagsire": 3.932629921647367, + "slowking": 2.564743415207116, + "dunsparce": 3.4682121657693306, + "qwilfish": 3.3444925018788836, + "sneasel": 3.0909447153467617, + "piloswine": 2.02604798145667, + "octillery": 2.3467966738385746, + "mantine": 2.5813575212672673, + "skarmory": 1.6993867061703027, + "hitmontop": 2.6197260451314026, + "miltank": 3.784048122417203, + "grovyle": 8.468429597151944, + "sceptile": 1.5983437795485718, + "combusken": 2.717324112434558, + "blaziken": 1.3562003736451462, + "marshtomp": 2.332460569523815, + "swampert": 1.1594904282203071, + "linoone": 5.6541231550901845, + "linoone-galar": 4.680213930684657, + "pelipper": 6.004869648869766, + "ninjask": 8.082897927602804, + "exploud": 1.7257522665647953, + "lairon": 2.395948811456449, + "manectric": 1.6505067683185284, + "roselia": 4.661490557225451, + "sharpedo": 4.957258702593968, + "wailmer": 6.4058133980328655, + "torkoal": 1.346257324230017, + "flygon": 2.513815800838602, + "altaria": 1.5828005205430011, + "whiscash": 1.9927396944140499, + "crawdaunt": 1.824883537333463, + "claydol": 3.6778330328344646, + "cradily": 3.3230260819028796, + "armaldo": 2.4162581834053767, + "dusclops": 3.5093464849442833, + "absol": 2.0353553026570754, + "glalie": 5.7319493702034165, + "sealeo": 3.300600167234868, + "relicanth": 1.8805585260861615, + "metang": 2.5871011350665887, + "luxray": 3.703755747657099, + "vespiquen": 2.8754409814491204, + "cherrim": 6.387872255606817, + "gastrodon": 2.2288264806820943, + "drifblim": 4.550384073686512, + "lopunny": 3.900139421942659, + "skuntank": 1.3990796303611563, + "bronzong": 2.8876474613089735, + "munchlax": 2.6398519876755486, + "drapion": 2.46094551663417, + "abomasnow": 4.506541504175614, + "froslass": 4.078068901660299, + "rotom": 2.967169312132505, + "stoutland": 2.6969123856814874, + "liepard": 7.486050944598741, + "musharna": 1.7088967799588088, + "unfezant": 6.608622152941605, + "boldore": 3.4653622647504827, + "swoobat": 5.954022988379446, + "audino": 2.3512335861581564, + "gurdurr": 1.8777875874943795, + "palpitoad": 3.4072768444020953, + "seismitoad": 6.997751842473977, + "scolipede": 3.331577018174359, + "whimsicott": 4.373893799959624, + "lilligant": 3.3054633795498054, + "basculin-red-striped": 2.7454377269348056, + "basculin-blue-striped": 3.3898255204550374, + "krookodile": 2.6477731552056634, + "maractus": 2.3749658018395654, + "crustle": 2.520686606063802, + "sigilyph": 2.527101470063384, + "cofagrigus": 2.543536268812395, + "garbodor": 2.0119932003896537, + "cinccino": 5.098260295063929, + "vanillish": 3.1453103142268475, + "emolga": 2.8695751660410416, + "escavalier": 1.5187267959438997, + "amoonguss": 2.9990302461868366, + "jellicent": 1.472503153823779, + "galvantula": 1.4948502958344112, + "klang": 2.3732039878089384, + "klinklang": 3.0039533419035775, + "beheeyem": 1.9828727695869557, + "lampent": 1.7315724534813106, + "fraxure": 1.6722873482359564, + "beartic": 2.3284713217792756, + "cryogonal": 2.9328601953799542, + "accelgor": 3.6141933623337597, + "stunfisk": 1.1632925255738802, + "stunfisk-galar": 1.7725355952317372, + "mienshao": 3.3687188615493997, + "druddigon": 1.9017124858878958, + "golurk": 1.742994042933205, + "bisharp": 2.165687394140641, + "bouffalant": 1.3373197566040682, + "heatmor": 1.6209414526756358, + "durant": 2.5298572353108764, + "diggersby": 3.151726740807315, + "talonflame": 2.67016269136528, + "pangoro": 1.7000628790318273, + "doublade": 1.7966539378705315, + "malamar": 2.8706415306513273, + "barbaracle": 1.5381267522459254, + "heliolisk": 3.600967903998534, + "tyrantrum": 1.8704627367742597, + "aurorus": 4.6765633225637515, + "hawlucha": 3.4762173139233363, + "dedenne": 3.2523354112477953, + "klefki": 3.3770275215363226, + "trevenant": 3.119095152013675, + "gourgeist-average": 4.536720853052079, + "charjabug": 3.578082371695107, + "vikavolt": 1.7529373629880705, + "ribombee": 6.940555205820013, + "lycanroc-midday": 4.729177460026452, + "lycanroc-midnight": 3.1060256361454974, + "mudsdale": 1.4375635833202787, + "araquanid": 2.516406252539616, + "lurantis": 2.6246203910351253, + "shiinotic": 6.56903638057841, + "salazzle": 2.8589997894756545, + "bewear": 1.8815135680520163, + "tsareena": 3.4225434017928498, + "comfey": 6.784624730500022, + "oranguru": 3.0727480366743363, + "passimian": 2.211903207330969, + "palossand": 1.786797815315778, + "pyukumuku": 43.486019860384985, + "togedemaru": 1.938382707077562, + "mimikyu-disguised": 6.296796709093417, + "greedent": 2.3051188837015326, + "orbeetle": 2.0118704268205607, + "thievul": 1.801299351729427, + "eldegoss": 4.394328754572858, + "dubwool": 3.022298951460034, + "drednaw": 1.3592929942342447, + "boltund": 4.438941021178874, + "carkol": 2.253532934081103, + "coalossal": 1.7861662637624458, + "sandaconda": 2.860162098309236, + "cramorant": 5.627842605604291, + "barraskewda": 4.459297959665604, + "toxtricity-amped": 2.6683828730504593, + "centiskorch": 1.88389169964399, + "grapploct": 1.5401875817818955, + "polteageist": 3.1740292773606966, + "hatterene": 3.7180906794584043, + "grimmsnarl": 5.1148081304589414, + "obstagoon": 2.5840395346447282, + "perrserker": 2.682036700611256, + "alcremie": 2.259676813797305, + "falinks": 2.9548175771083347, + "pincurchin": 2.7152583739636613, + "frosmoth": 3.980433261252444, + "indeedee-male": 3.348622361986423, + "morpeko": 2.621535251481111, + "copperajah": 2.04027948019033, + "duraludon": 1.2876144659864568, + "drakloak": 4.748747627121149 }, "beheeyem": { - "ivysaur": 4.811641376164525, - "charmeleon": 4.9102913949942515, - "wartortle": 3.1970187225522224, - "butterfree": 6.654530216659213, - "raichu": 5.792745228141744, - "raichu-alola": 4.203101401837792, - "sandslash": 2.5685192472005243, - "sandslash-alola": 2.1682503561047066, - "nidoqueen": 4.268640524190516, - "nidoking": 2.8750020006901966, - "clefairy": 10.214893643237616, - "clefable": 2.340653883430655, - "jigglypuff": 30.136210228115594, - "wigglytuff": 2.346257773411267, - "gloom": 8.917454375958341, - "vileplume": 4.4071805602178316, - "dugtrio": 3.8989903444165908, - "dugtrio-alola": 3.147562687706162, - "persian": 4.710436466749895, - "persian-alola": 3.509559615312904, - "golduck": 3.460152782622308, - "poliwrath": 3.1172597442475487, - "kadabra": 4.476172270648197, - "machoke": 6.211576070214372, - "tentacruel": 3.2695120296792743, - "slowbro": 2.5598881641506637, - "magneton": 3.290316733374827, - "haunter": 6.996577436323681, - "kingler": 3.249177308119111, - "exeggutor": 2.520128278578237, - "marowak": 3.4199606601296804, - "marowak-alola": 2.7495796969436883, - "hitmonlee": 3.3209385357210923, - "hitmonchan": 3.125799480071067, - "lickitung": 2.206090690513993, - "weezing": 2.8478271402039512, - "weezing-galar": 4.868131109005331, - "rhydon": 2.810753854590051, - "chansey": 20.589230972256306, - "tangela": 6.354450307271118, - "kangaskhan": 1.9714886738429178, - "seadra": 5.432146056097929, - "seaking": 2.6427305218842383, - "starmie": 1.8833198848214652, - "mr-mime": 6.888746906284686, - "mr-mime-galar": 4.593964558001662, - "scyther": 4.270695212649542, - "jynx": 4.7298887493940995, - "electabuzz": 2.7828176806296154, - "magmar": 1.9976473066108495, - "tauros": 2.3446395664826674, - "ditto": 2.755224744866948, - "vaporeon": 3.419160885484575, - "jolteon": 2.0076671307089886, - "flareon": 2.627790894643346, - "porygon": 3.0388737527252685, - "dragonair": 2.0928581524988594, - "noctowl": 6.418861850148199, - "lanturn": 2.162382387897377, - "togetic": 6.454217906710623, - "xatu": 5.247156861595885, - "bellossom": 2.6578462598870023, - "azumarill": 2.604287419916714, - "sudowoodo": 3.1429975937979826, - "politoed": 2.7739405047254646, - "quagsire": 5.750220119643986, - "slowking": 3.0009443974070327, - "dunsparce": 3.4752109431806675, - "qwilfish": 5.973653727107772, - "sneasel": 2.3203824889190625, - "piloswine": 1.8859553874198984, - "octillery": 2.5937955975852383, - "mantine": 2.72535090758025, - "skarmory": 2.069872576026342, - "hitmontop": 4.145089421794752, - "miltank": 4.250856561193304, - "grovyle": 8.715661820913525, - "sceptile": 1.5022538711683546, - "combusken": 5.597536086022116, - "blaziken": 2.64044958858763, - "marshtomp": 2.802514625673297, - "swampert": 1.4516271961003568, - "linoone": 5.207131271713502, - "linoone-galar": 3.8763956537191797, - "pelipper": 8.09777009683456, - "ninjask": 10.962870983383805, - "exploud": 1.8416737038386903, - "lairon": 2.607886107015829, - "manectric": 2.0830577845889104, - "roselia": 5.681899579134988, - "sharpedo": 4.495851212741125, - "wailmer": 7.488951374891801, - "torkoal": 2.732254261132728, - "flygon": 2.5912296317296524, - "altaria": 1.9845220258586531, - "whiscash": 2.4161667600009835, - "crawdaunt": 1.963105505509081, - "claydol": 4.310330221932386, - "cradily": 2.5370399310035054, - "armaldo": 2.2251470975478904, - "dusclops": 3.797430102867121, - "absol": 1.8394443672572793, - "glalie": 4.722383514898581, - "sealeo": 3.9783512999969384, - "relicanth": 2.2979819349161836, - "metang": 4.038278037595544, - "luxray": 4.338961846954814, - "vespiquen": 4.381782473371192, - "cherrim": 6.509443083100208, - "gastrodon": 2.250686166088444, - "drifblim": 5.771538957286882, - "lopunny": 4.0612000894696045, - "skuntank": 1.3252745993554025, - "bronzong": 4.376191451457885, - "munchlax": 2.225539977596042, - "drapion": 2.1698892293359457, - "abomasnow": 3.7144599547166495, - "froslass": 3.6626374017541554, - "rotom": 4.764217547530903, - "stoutland": 2.6731041117711634, - "liepard": 6.1795658856849744, - "musharna": 2.049437178600465, - "unfezant": 8.351512743006602, - "boldore": 4.240999651252728, - "swoobat": 7.530804863851746, - "audino": 2.5908745929090387, - "gurdurr": 4.141964559870077, - "palpitoad": 4.377426688407116, - "seismitoad": 7.324916353660093, - "scolipede": 4.559141734029732, - "whimsicott": 3.626852589130878, - "lilligant": 3.3085467392718337, - "basculin-red-striped": 3.3014581352044226, - "basculin-blue-striped": 4.0340439282103, - "krookodile": 2.43013775875506, - "maractus": 2.4529612537426084, - "crustle": 2.653176878066166, - "sigilyph": 3.160541806179557, - "cofagrigus": 3.5249656457885914, - "garbodor": 2.984080190956557, - "cinccino": 5.124828032706709, - "vanillish": 2.629355497430331, - "emolga": 3.943603317499752, - "escavalier": 1.703312413863333, - "amoonguss": 3.9202819187257827, - "jellicent": 1.9349352752724598, - "galvantula": 1.9850155336352093, - "klang": 2.81346791218918, - "klinklang": 3.363752757666398, - "lampent": 3.4733155936534557, - "fraxure": 1.7917292714032227, - "beartic": 2.1884762232763157, - "cryogonal": 1.8349682389243012, - "accelgor": 3.152826154614165, - "stunfisk": 1.4360341125738865, - "stunfisk-galar": 2.1982153253943215, - "mienshao": 5.447692687211122, - "druddigon": 1.9547482068221322, - "golurk": 2.3083229891790684, - "bisharp": 1.9553486958902848, - "bouffalant": 1.4301000610098986, - "heatmor": 2.4392469465064437, - "durant": 3.04898704866522, - "diggersby": 3.5643670772195466, - "talonflame": 5.388488211670207, - "pangoro": 1.5726850176799445, - "doublade": 4.002943474407454, - "malamar": 2.7526137191604834, - "barbaracle": 1.6944568198015486, - "heliolisk": 3.783148424564919, - "tyrantrum": 1.9936352091011134, - "aurorus": 2.7925489146547866, - "hawlucha": 5.50948386865562, - "dedenne": 3.338043761798411, - "klefki": 2.7701126442542954, - "trevenant": 3.9112665888025626, - "gourgeist-average": 6.764269566460191, - "charjabug": 5.169205775568287, - "vikavolt": 2.2834608795436377, - "ribombee": 5.334366029407124, - "lycanroc-midday": 3.7026590436253652, - "lycanroc-midnight": 2.524039791048905, - "mudsdale": 1.7776779786014751, - "araquanid": 2.5611306015064823, - "lurantis": 2.579156694702447, - "shiinotic": 4.8672686479720415, - "salazzle": 4.985011546053483, - "bewear": 2.791045161488668, - "tsareena": 3.414629069321757, - "comfey": 4.993316192048731, - "oranguru": 3.5042162952771556, - "passimian": 4.100437021198672, - "palossand": 2.689865812160553, - "pyukumuku": 47.57803898016702, - "togedemaru": 2.1546134700134845, - "mimikyu-disguised": 3.9129907990668547, - "greedent": 2.519919241117857, - "orbeetle": 2.234254258891489, - "thievul": 1.5449177992970298, - "eldegoss": 4.238372279370447, - "dubwool": 3.3884639803148566, - "drednaw": 1.4229953486198306, - "boltund": 4.938680279889136, - "carkol": 3.021938986362278, - "coalossal": 2.5333229836617317, - "sandaconda": 3.606676806063138, - "cramorant": 5.664530518316923, - "barraskewda": 5.017561996250789, - "toxtricity-amped": 4.306496663680351, - "centiskorch": 3.373230469698729, - "grapploct": 2.858276186316763, - "polteageist": 3.1325969343198636, - "hatterene": 2.5940495032706457, - "grimmsnarl": 3.464468002909147, - "obstagoon": 2.331230729938972, - "perrserker": 3.1677472238954207, - "alcremie": 1.5586103570745868, - "falinks": 5.2846303753565795, - "pincurchin": 3.465494471367273, - "frosmoth": 3.64195398008656, - "indeedee-male": 3.678021162069936, - "morpeko": 2.5839383345861733, - "copperajah": 2.3976829841434313, - "duraludon": 1.7368319566534445, - "drakloak": 5.445904129396524, - "beheeyem": 2.2140320942622997 + "ivysaur": 4.823815778196996, + "charmeleon": 4.923347011201489, + "wartortle": 3.205285960782562, + "butterfree": 6.658227001608704, + "raichu": 5.807691683056958, + "raichu-alola": 4.21020159920197, + "sandslash": 2.571645917508922, + "sandslash-alola": 2.1714670721297584, + "nidoqueen": 4.2762916982155845, + "nidoking": 2.8813906252024406, + "clefairy": 10.232358287965841, + "clefable": 2.344590230107799, + "jigglypuff": 30.17880276654639, + "wigglytuff": 2.3507578167591405, + "gloom": 8.940540916829935, + "vileplume": 4.414193492777689, + "dugtrio": 3.9027246826205575, + "dugtrio-alola": 3.145016919796217, + "persian": 4.715151992942424, + "persian-alola": 3.4996270417738975, + "golduck": 3.465739271524531, + "poliwrath": 3.1244471563306533, + "kadabra": 4.4816920101890805, + "machoke": 6.22272226082675, + "tentacruel": 3.2760262439159793, + "slowbro": 2.5688432298155726, + "magneton": 3.2941380025218017, + "haunter": 7.013087267936502, + "kingler": 3.259893232183628, + "exeggutor": 2.525054681869943, + "marowak": 3.422102452861084, + "marowak-alola": 2.755324231820664, + "hitmonlee": 3.328498837912658, + "hitmonchan": 3.131320330819503, + "lickitung": 2.2102569988467566, + "weezing": 2.8557589527495946, + "weezing-galar": 4.8840880269309555, + "rhydon": 2.813883976531492, + "chansey": 20.54079837236305, + "tangela": 6.370196003732884, + "kangaskhan": 1.9724341546967152, + "seadra": 5.447858888915773, + "seaking": 2.646213393217119, + "starmie": 1.887977648158157, + "mr-mime": 6.902789346146735, + "mr-mime-galar": 4.605415513680395, + "scyther": 4.272659714565627, + "jynx": 4.732871131062531, + "electabuzz": 2.7865808559346017, + "magmar": 2.001782052207651, + "tauros": 2.3487655448045293, + "ditto": 2.7450967451718915, + "vaporeon": 3.424427010968357, + "jolteon": 2.0088414113142097, + "flareon": 2.629492305463003, + "porygon": 3.0417001146461917, + "dragonair": 2.0961703250258186, + "noctowl": 6.42597077268222, + "lanturn": 2.16745098787366, + "togetic": 6.466447634241659, + "xatu": 5.264927061739105, + "bellossom": 2.6627280687191615, + "azumarill": 2.6103741536625367, + "sudowoodo": 3.150079800464715, + "politoed": 2.777999513631805, + "quagsire": 5.766467978339386, + "slowking": 3.0058001420162728, + "dunsparce": 3.4768335887938946, + "qwilfish": 5.989812159916301, + "sneasel": 2.314018359755659, + "piloswine": 1.8908032464795062, + "octillery": 2.596845101898114, + "mantine": 2.730189248630736, + "skarmory": 2.071421363292946, + "hitmontop": 4.154870762986588, + "miltank": 4.258180230462099, + "grovyle": 8.731417102023402, + "sceptile": 1.5033725740186885, + "combusken": 5.617794438185675, + "blaziken": 2.648491476111654, + "marshtomp": 2.8065173752959605, + "swampert": 1.454577055434986, + "linoone": 5.2031758670578965, + "linoone-galar": 3.8629898975316443, + "pelipper": 8.117570996900376, + "ninjask": 10.95444523667716, + "exploud": 1.8453055403017293, + "lairon": 2.609831883215123, + "manectric": 2.0887877568842748, + "roselia": 5.695892006664625, + "sharpedo": 4.4860677369292645, + "wailmer": 7.503787980088506, + "torkoal": 2.742224951101436, + "flygon": 2.592681606248057, + "altaria": 1.9890909864860737, + "whiscash": 2.420976132895131, + "crawdaunt": 1.9599423599191408, + "claydol": 4.319347250360259, + "cradily": 2.5404016447605073, + "armaldo": 2.2266171274645714, + "dusclops": 3.79476227205143, + "absol": 1.8362259254875748, + "glalie": 4.7241864326262775, + "sealeo": 3.9871689427741224, + "relicanth": 2.301483823602757, + "metang": 4.04488062627126, + "luxray": 4.346245590538514, + "vespiquen": 4.386064061846083, + "cherrim": 6.519730434713956, + "gastrodon": 2.251000366426963, + "drifblim": 5.791479923020299, + "lopunny": 4.067293650040917, + "skuntank": 1.3225071151669638, + "bronzong": 4.386004267185177, + "munchlax": 2.2258141566596445, + "drapion": 2.1654624080358307, + "abomasnow": 3.718195971681576, + "froslass": 3.66902808825596, + "rotom": 4.771958379577632, + "stoutland": 2.67545356206848, + "liepard": 6.165330320386476, + "musharna": 2.055423680469611, + "unfezant": 8.374294498182682, + "boldore": 4.252256910374044, + "swoobat": 7.556646014252349, + "audino": 2.595734060434875, + "gurdurr": 4.157087853861956, + "palpitoad": 4.385561996659331, + "seismitoad": 7.3342408212224175, + "scolipede": 4.5607104807162635, + "whimsicott": 3.6325227536346496, + "lilligant": 3.3115546017539357, + "basculin-red-striped": 3.308598365907028, + "basculin-blue-striped": 4.038322116131574, + "krookodile": 2.4238742840500693, + "maractus": 2.4567763338555286, + "crustle": 2.6570323211743325, + "sigilyph": 3.170639479394506, + "cofagrigus": 3.531659724803193, + "garbodor": 2.9926812342321814, + "cinccino": 5.13135558822857, + "vanillish": 2.6342586547685896, + "emolga": 3.954831672236132, + "escavalier": 1.7029639086387671, + "amoonguss": 3.930071450122709, + "jellicent": 1.9392841119612232, + "galvantula": 1.9885134814522116, + "klang": 2.8168065753085294, + "klinklang": 3.3654546464591704, + "beheeyem": 2.2140320942622997, + "lampent": 3.4842553199970716, + "fraxure": 1.7936582476484728, + "beartic": 2.19400722123679, + "cryogonal": 1.8362105420409236, + "accelgor": 3.1513567738066968, + "stunfisk": 1.4381359725998777, + "stunfisk-galar": 2.197397099718324, + "mienshao": 5.460865813749448, + "druddigon": 1.9564842837101706, + "golurk": 2.3107728353594883, + "bisharp": 1.950681684555844, + "bouffalant": 1.4321738163116664, + "heatmor": 2.4465814719780723, + "durant": 3.0494709531292292, + "diggersby": 3.5681425581925867, + "talonflame": 5.405025994647774, + "pangoro": 1.5697541873828684, + "doublade": 4.014433456482121, + "malamar": 2.750546370448938, + "barbaracle": 1.6957275617052603, + "heliolisk": 3.787626117614959, + "tyrantrum": 1.9981930397483265, + "aurorus": 2.7944493141432787, + "hawlucha": 5.518093323137466, + "dedenne": 3.3437781823173016, + "klefki": 2.7715474632451818, + "trevenant": 3.9212049686769634, + "gourgeist-average": 6.771225458119412, + "charjabug": 5.181975820798665, + "vikavolt": 2.286903713535705, + "ribombee": 5.33563039932029, + "lycanroc-midday": 3.706717510499696, + "lycanroc-midnight": 2.5250782943611254, + "mudsdale": 1.7800321259841112, + "araquanid": 2.56214424087168, + "lurantis": 2.5806252793898086, + "shiinotic": 4.872429858167804, + "salazzle": 5.000945253487847, + "bewear": 2.792907228401685, + "tsareena": 3.4192502786653582, + "comfey": 5.00163333757677, + "oranguru": 3.514618007658601, + "passimian": 4.113016493175746, + "palossand": 2.693543056809492, + "pyukumuku": 47.6262172674367, + "togedemaru": 2.154498075562528, + "mimikyu-disguised": 3.908239626322087, + "greedent": 2.5249382576284343, + "orbeetle": 2.2397186465049455, + "thievul": 1.5404280921289248, + "eldegoss": 4.2441007674475735, + "dubwool": 3.394282675019762, + "drednaw": 1.4235215506790584, + "boltund": 4.940411882689915, + "carkol": 3.0284478362485503, + "coalossal": 2.5389452808499167, + "sandaconda": 3.609753158032371, + "cramorant": 5.662684084733941, + "barraskewda": 5.020582876706474, + "toxtricity-amped": 4.317410097261491, + "centiskorch": 3.381284777607556, + "grapploct": 2.86841747392348, + "polteageist": 3.1375697169042542, + "hatterene": 2.599279869730614, + "grimmsnarl": 3.4584731765985097, + "obstagoon": 2.326096745124426, + "perrserker": 3.1674686976648205, + "alcremie": 1.5606312357443741, + "falinks": 5.293243758496871, + "pincurchin": 3.4738994378564083, + "frosmoth": 3.6444258549801583, + "indeedee-male": 3.6817650420921675, + "morpeko": 2.581289533617333, + "copperajah": 2.400375742481577, + "duraludon": 1.7402346051541933, + "drakloak": 5.4482649376152 }, "lampent": { - "ivysaur": 4.2790470425698075, - "charmeleon": 4.046238288024361, - "wartortle": 2.0210212549705515, - "butterfree": 5.949786949835396, - "raichu": 5.106678442342915, - "raichu-alola": 3.211120061512621, - "sandslash": 2.15713439876388, - "sandslash-alola": 3.976451892764945, - "nidoqueen": 2.372032913280604, - "nidoking": 1.7827923274856885, - "clefairy": 10.790740875548725, - "clefable": 2.0181676393200023, - "jigglypuff": 28.2082240682332, - "wigglytuff": 2.163906733540378, - "gloom": 7.909259211566102, - "vileplume": 4.246881608994048, - "dugtrio": 2.7325625524924653, - "dugtrio-alola": 3.9020074259873296, - "persian": 5.065676563117222, - "persian-alola": 3.1977470271439428, - "golduck": 2.229353919299898, - "poliwrath": 1.57061837275793, - "kadabra": 3.8809851357065224, - "machoke": 3.660022822008779, - "tentacruel": 1.5735348425961173, - "slowbro": 1.5912029154902085, - "magneton": 4.588719134530652, - "haunter": 3.947608725884814, - "kingler": 1.9645597789470504, - "exeggutor": 2.4830592331818204, - "marowak": 2.71650467218419, - "marowak-alola": 1.8192737950944413, - "hitmonlee": 2.7264303812517667, - "hitmonchan": 2.319944486565227, - "lickitung": 1.7821593182868356, - "weezing": 1.9545091592698567, - "weezing-galar": 3.2566393296835265, - "rhydon": 1.7745024895998518, - "chansey": 26.36896759084398, - "tangela": 8.583500674965023, - "kangaskhan": 1.7291056910588556, - "seadra": 3.33571041912736, - "seaking": 1.7123819283923603, - "starmie": 1.2577902819180966, - "mr-mime": 5.932194652529388, - "mr-mime-galar": 4.492418465752049, - "scyther": 3.4164083992619583, - "jynx": 6.840000919764565, - "electabuzz": 2.368221697680646, - "magmar": 1.9339588233471545, - "tauros": 2.061281582286888, - "ditto": 2.9045221843318374, - "vaporeon": 2.2690476626798524, - "jolteon": 1.825039485826799, - "flareon": 2.2936274365918847, - "porygon": 2.8399610098560757, - "dragonair": 1.5052790724605694, - "noctowl": 5.676576914165761, - "lanturn": 1.285733353258552, - "togetic": 6.2842649254279905, - "xatu": 3.622637286900346, - "bellossom": 3.2541154498659317, - "azumarill": 1.576411443884372, - "sudowoodo": 1.981407644828562, - "politoed": 1.7798572836369457, - "quagsire": 3.606909059684173, - "slowking": 1.9952406473957724, - "dunsparce": 3.168165008205911, - "qwilfish": 2.6537838580242976, - "sneasel": 2.3213193526932865, - "piloswine": 1.6963219566874006, - "octillery": 1.8447554836949678, - "mantine": 1.6167070507619965, - "skarmory": 3.231543153639278, - "hitmontop": 2.6424701971065496, - "miltank": 4.41851460218429, - "grovyle": 10.701246122659523, - "sceptile": 1.8153850597097416, - "combusken": 3.5700868232459655, - "blaziken": 1.7974288379718795, - "marshtomp": 1.7186755439270214, - "swampert": 0.9452761350000967, - "linoone": 5.318306778896238, - "linoone-galar": 3.523444034098671, - "pelipper": 5.7066644224735805, - "ninjask": 10.311421965395205, - "exploud": 1.8377926566099454, - "lairon": 2.2550153410393814, - "manectric": 2.0165887712529056, - "roselia": 4.940633793956508, - "sharpedo": 3.560399032111338, - "wailmer": 4.770644942799995, - "torkoal": 2.537676091037718, - "flygon": 1.9389648010231422, - "altaria": 1.5759013286837313, - "whiscash": 1.345006976960495, - "crawdaunt": 1.3868126471784594, - "claydol": 3.109466274086588, - "cradily": 2.127771149184478, - "armaldo": 1.7247093827330902, - "dusclops": 2.9007365118456434, - "absol": 2.0121210106161422, - "glalie": 5.018482711404234, - "sealeo": 2.368201690903574, - "relicanth": 1.229545941678972, - "metang": 4.097846715284263, - "luxray": 4.0216480243673525, - "vespiquen": 3.7916184610273875, - "cherrim": 8.301148530906318, - "gastrodon": 1.624048208648049, - "drifblim": 3.94503837979563, - "lopunny": 4.140039422123575, - "skuntank": 1.4531990114522002, - "bronzong": 4.297300694012232, - "munchlax": 2.0981541432561173, - "drapion": 2.4050672697281668, - "abomasnow": 6.048883283811431, - "froslass": 3.658904530205669, - "rotom": 3.2068381600977536, - "stoutland": 3.0197860817293587, - "liepard": 6.261356795503572, - "musharna": 1.474825376826469, - "unfezant": 6.326965570659493, - "boldore": 2.5879658596950463, - "swoobat": 5.194135123539814, - "audino": 2.985036263401984, - "gurdurr": 2.522998235864314, - "palpitoad": 2.6951763543209277, - "seismitoad": 6.061664564260777, - "scolipede": 4.3717632099151, - "whimsicott": 4.37002894682721, - "lilligant": 4.336524897914545, - "basculin-red-striped": 2.029128865333756, - "basculin-blue-striped": 2.4009139741973358, - "krookodile": 2.275498080107945, - "maractus": 2.9345645023484197, - "crustle": 2.209332337268824, - "sigilyph": 2.2561310183945578, - "cofagrigus": 2.29792191509928, - "garbodor": 1.999169910456003, - "cinccino": 5.364032263480098, - "vanillish": 3.0755780782226685, - "emolga": 2.879559408992759, - "escavalier": 3.2717726463638224, - "amoonguss": 3.4845410403381782, - "jellicent": 1.2373369700350856, - "galvantula": 2.0923935775911633, - "klang": 3.625538256789399, - "klinklang": 5.50140026662066, - "beheeyem": 1.563372775408355, - "fraxure": 1.3200528781476777, - "beartic": 2.332071787674587, - "cryogonal": 1.991092424720576, - "accelgor": 4.313939791750146, - "stunfisk": 1.0300801819706926, - "stunfisk-galar": 2.819592322428577, - "mienshao": 3.568998098820714, - "druddigon": 1.3455598215856335, - "golurk": 1.6962947641510122, - "bisharp": 3.1000285736239834, - "bouffalant": 1.3753883665737052, - "heatmor": 1.8000196043902452, - "durant": 8.115759820743444, - "diggersby": 2.721610626703826, - "talonflame": 2.7569841178872023, - "pangoro": 1.7236307634228643, - "doublade": 4.472994719682449, - "malamar": 2.5428976013414504, - "barbaracle": 1.1557262410368165, - "heliolisk": 4.28251241697687, - "tyrantrum": 1.227366220873236, - "aurorus": 2.1576828330171303, - "hawlucha": 3.5414838032548177, - "dedenne": 2.9842729684041522, - "klefki": 4.665800514724315, - "trevenant": 4.437653094019238, - "gourgeist-average": 7.540816112042274, - "charjabug": 5.178379233944388, - "vikavolt": 2.6382821848449582, - "ribombee": 6.67127090953862, - "lycanroc-midday": 2.3759993580539476, - "lycanroc-midnight": 1.728325195095063, - "mudsdale": 1.5196414521611592, - "araquanid": 2.1113612128157193, - "lurantis": 3.5486615077142125, - "shiinotic": 6.127096704181065, - "salazzle": 3.207123383130967, - "bewear": 2.0530984494458306, - "tsareena": 4.123474605029923, - "comfey": 4.649749644031223, - "oranguru": 2.4250064597462275, - "passimian": 2.4260935016189578, - "palossand": 1.7794835969480398, - "pyukumuku": 39.51299722830369, - "togedemaru": 2.9434692710514567, - "mimikyu-disguised": 3.4988628126768386, - "greedent": 2.394880676253289, - "orbeetle": 2.40126843093419, - "thievul": 1.636935698462772, - "eldegoss": 5.275323132384948, - "dubwool": 4.649743537291631, - "drednaw": 0.8253726991842657, - "boltund": 4.051935675939033, - "carkol": 1.7119529208364062, - "coalossal": 1.4897863307875954, - "sandaconda": 3.110684111879004, - "cramorant": 3.4228032393926453, - "barraskewda": 3.202374312671634, - "toxtricity-amped": 3.119605204291389, - "centiskorch": 2.195480493490205, - "grapploct": 1.659162123982894, - "polteageist": 2.3502738160984014, - "hatterene": 2.461381952771695, - "grimmsnarl": 3.3259755275506304, - "obstagoon": 2.4353823277184254, - "perrserker": 4.5026674208538555, - "alcremie": 1.5465129005452707, - "falinks": 3.8159777830857173, - "pincurchin": 2.726533685568297, - "frosmoth": 4.830796073971898, - "indeedee-male": 2.9000270906551355, - "morpeko": 2.5146641629586153, - "copperajah": 3.5884401786786313, - "duraludon": 1.7508542976210775, - "drakloak": 3.081089134226455, - "lampent": 2.6168536467639694 + "ivysaur": 4.288362424111544, + "charmeleon": 4.057495811211039, + "wartortle": 2.013006102865928, + "butterfree": 5.96192714987111, + "raichu": 5.108020288438183, + "raichu-alola": 3.2073104136059074, + "sandslash": 2.153348522733874, + "sandslash-alola": 3.988982977545664, + "nidoqueen": 2.3635322602850932, + "nidoking": 1.7807510821484103, + "clefairy": 10.82954218006974, + "clefable": 2.014890113355893, + "jigglypuff": 28.22571420662127, + "wigglytuff": 2.165154032694659, + "gloom": 7.927055186511179, + "vileplume": 4.2594772324712125, + "dugtrio": 2.7202345090030544, + "dugtrio-alola": 3.8958912610007532, + "persian": 5.079721437004059, + "persian-alola": 3.1868888894273826, + "golduck": 2.219353997266919, + "poliwrath": 1.5672659598280965, + "kadabra": 3.8795637048768032, + "machoke": 3.652849222062316, + "tentacruel": 1.5650468502588235, + "slowbro": 1.5900187698316102, + "magneton": 4.595590047313095, + "haunter": 3.937603191826669, + "kingler": 1.9575120553675878, + "exeggutor": 2.485357794821295, + "marowak": 2.7074786159503472, + "marowak-alola": 1.818189263642995, + "hitmonlee": 2.7366727634098353, + "hitmonchan": 2.323976295061949, + "lickitung": 1.780512018818988, + "weezing": 1.9554953499658851, + "weezing-galar": 3.2661705692282936, + "rhydon": 1.765906332189696, + "chansey": 26.41059972958351, + "tangela": 8.616334846528158, + "kangaskhan": 1.7256891419989313, + "seadra": 3.323331885888229, + "seaking": 1.704233062162039, + "starmie": 1.2542854101732335, + "mr-mime": 5.919303377356243, + "mr-mime-galar": 4.493307003816081, + "scyther": 3.4170162102644683, + "jynx": 6.863755634549738, + "electabuzz": 2.3659399753814707, + "magmar": 1.942233038069818, + "tauros": 2.059834301292615, + "ditto": 2.889601822082067, + "vaporeon": 2.259611432170334, + "jolteon": 1.8204278009584132, + "flareon": 2.286145274035655, + "porygon": 2.8391340245227283, + "dragonair": 1.501204974441763, + "noctowl": 5.675847282915296, + "lanturn": 1.2793087562479255, + "togetic": 6.306130038046325, + "xatu": 3.6163513355655152, + "bellossom": 3.2622440704478133, + "azumarill": 1.5707736624785091, + "sudowoodo": 1.9736042726818495, + "politoed": 1.7711938385687376, + "quagsire": 3.59450964299985, + "slowking": 1.9880522221826076, + "dunsparce": 3.164162305223588, + "qwilfish": 2.6441173380274376, + "sneasel": 2.3151313405631226, + "piloswine": 1.6968754604524394, + "octillery": 1.8390362559297342, + "mantine": 1.608183240692743, + "skarmory": 3.237309286190444, + "hitmontop": 2.6411898466433765, + "miltank": 4.4306150674613995, + "grovyle": 10.734707156063621, + "sceptile": 1.819300240023896, + "combusken": 3.5823592758028013, + "blaziken": 1.8052722312007936, + "marshtomp": 1.7097312647059564, + "swampert": 0.9404726776667318, + "linoone": 5.316619440045425, + "linoone-galar": 3.50739636262207, + "pelipper": 5.705059960373914, + "ninjask": 10.333507229218526, + "exploud": 1.8427878638170683, + "lairon": 2.2525550537593046, + "manectric": 2.020494821195681, + "roselia": 4.948045968334924, + "sharpedo": 3.5416569951356616, + "wailmer": 4.7499916357970555, + "torkoal": 2.5532911215361, + "flygon": 1.9342133493192428, + "altaria": 1.5749171687889598, + "whiscash": 1.339702761694705, + "crawdaunt": 1.3812152928628154, + "claydol": 3.1046710403718425, + "cradily": 2.1248659276218063, + "armaldo": 1.720859075055016, + "dusclops": 2.891156198154901, + "absol": 2.011723401838821, + "glalie": 5.016263921075371, + "sealeo": 2.3579675192200815, + "relicanth": 1.2216373096494821, + "metang": 4.10302178374947, + "luxray": 4.022934751050379, + "vespiquen": 3.800282011201748, + "cherrim": 8.328540475934286, + "gastrodon": 1.6181256685769396, + "drifblim": 3.9374516408048867, + "lopunny": 4.148914750293243, + "skuntank": 1.4492036354504747, + "bronzong": 4.30255451420833, + "munchlax": 2.0994711690360095, + "drapion": 2.402310819470947, + "abomasnow": 6.073505971549803, + "froslass": 3.658778318720949, + "rotom": 3.197300217923745, + "stoutland": 3.0310591428294256, + "liepard": 6.246356509197885, + "musharna": 1.4733468816963198, + "unfezant": 6.320469621733225, + "boldore": 2.57791456912537, + "swoobat": 5.185327245318078, + "audino": 2.997135458204066, + "gurdurr": 2.525741690546109, + "palpitoad": 2.6823221007161857, + "seismitoad": 6.063431752902206, + "scolipede": 4.375818761927791, + "whimsicott": 4.378227560203707, + "lilligant": 4.349335313408302, + "basculin-red-striped": 2.019601063799006, + "basculin-blue-striped": 2.3861430638411196, + "krookodile": 2.265372191894015, + "maractus": 2.939040396478055, + "crustle": 2.2094898816609323, + "sigilyph": 2.253255043528534, + "cofagrigus": 2.2901126110841616, + "garbodor": 2.001971480109627, + "cinccino": 5.377221499761884, + "vanillish": 3.0832008816199856, + "emolga": 2.87561344197057, + "escavalier": 3.2723878356661285, + "amoonguss": 3.492116036242625, + "jellicent": 1.2339985517169638, + "galvantula": 2.0945447500500225, + "klang": 3.625992771996222, + "klinklang": 5.523132978085022, + "beheeyem": 1.5591240709972891, + "lampent": 2.6168536467639694, + "fraxure": 1.3180971695306893, + "beartic": 2.335183602944884, + "cryogonal": 1.993065865835429, + "accelgor": 4.326643117795839, + "stunfisk": 1.0262075676914644, + "stunfisk-galar": 2.816498877431182, + "mienshao": 3.5706504032217, + "druddigon": 1.3403082717556551, + "golurk": 1.6925683557969848, + "bisharp": 3.0975557245643497, + "bouffalant": 1.3765728564490227, + "heatmor": 1.802274260481892, + "durant": 8.153690541054436, + "diggersby": 2.7116134650022294, + "talonflame": 2.7582094072455474, + "pangoro": 1.7219136952353598, + "doublade": 4.49114430855793, + "malamar": 2.536547136465953, + "barbaracle": 1.151791625090252, + "heliolisk": 4.284593505652856, + "tyrantrum": 1.2240362063257462, + "aurorus": 2.151039243179828, + "hawlucha": 3.538580387668516, + "dedenne": 2.982734225346017, + "klefki": 4.679827844427051, + "trevenant": 4.45390580746594, + "gourgeist-average": 7.550713666047535, + "charjabug": 5.173804208996694, + "vikavolt": 2.6431084789035166, + "ribombee": 6.690753190552073, + "lycanroc-midday": 2.363964629131594, + "lycanroc-midnight": 1.720485861116246, + "mudsdale": 1.5176148102575877, + "araquanid": 2.107819680237899, + "lurantis": 3.5616145491148563, + "shiinotic": 6.143971704682784, + "salazzle": 3.2173700800498937, + "bewear": 2.055903289546824, + "tsareena": 4.130597127216755, + "comfey": 4.653233067650573, + "oranguru": 2.420586456101665, + "passimian": 2.425412882108318, + "palossand": 1.7732654055691337, + "pyukumuku": 39.486771027524824, + "togedemaru": 2.9475890282893547, + "mimikyu-disguised": 3.48944191557686, + "greedent": 2.3975452280157743, + "orbeetle": 2.402449591213164, + "thievul": 1.6340277126575957, + "eldegoss": 5.290450773737071, + "dubwool": 4.6705446015836465, + "drednaw": 0.821269060840073, + "boltund": 4.038669579943628, + "carkol": 1.7081411544461076, + "coalossal": 1.4844189800349907, + "sandaconda": 3.1056651560882305, + "cramorant": 3.39987245650408, + "barraskewda": 3.185102865263733, + "toxtricity-amped": 3.1195174017409784, + "centiskorch": 2.198209315191125, + "grapploct": 1.661031885401941, + "polteageist": 2.345901201088922, + "hatterene": 2.4595556548522195, + "grimmsnarl": 3.3164807432606924, + "obstagoon": 2.4309166453218873, + "perrserker": 4.502659762988625, + "alcremie": 1.5495256526645682, + "falinks": 3.825925232999229, + "pincurchin": 2.7176547027915974, + "frosmoth": 4.845478328708516, + "indeedee-male": 2.896426602541222, + "morpeko": 2.509843895562133, + "copperajah": 3.600555419630099, + "duraludon": 1.751428374048988, + "drakloak": 3.0652468695606445 }, "fraxure": { - "ivysaur": 3.9088292802620366, - "charmeleon": 4.442105720066932, - "wartortle": 3.050365346529393, - "butterfree": 5.430255186428594, - "raichu": 6.53065471499799, - "raichu-alola": 4.572428689343219, - "sandslash": 2.181728730471197, - "sandslash-alola": 1.6412452390988048, - "nidoqueen": 2.9829832464827373, - "nidoking": 2.113710592555766, - "clefairy": 9.69163224017856, - "clefable": 1.413891796716155, - "jigglypuff": 20.880935248343736, - "wigglytuff": 1.4526963728764222, - "gloom": 5.539813268018838, - "vileplume": 3.4720057198021967, - "dugtrio": 4.455626211568428, - "dugtrio-alola": 3.1684704311743173, - "persian": 4.622583034137105, - "persian-alola": 4.938373448526969, - "golduck": 3.752017836235669, - "poliwrath": 2.2558021616057204, - "kadabra": 4.3948046527042015, - "machoke": 4.378494198589592, - "tentacruel": 3.222850116954789, - "slowbro": 1.974185587574362, - "magneton": 2.7212499575031623, - "haunter": 5.5303375763035625, - "kingler": 2.5583622747279273, - "exeggutor": 3.0895572134687757, - "marowak": 3.307336062655755, - "marowak-alola": 2.3505396069576356, - "hitmonlee": 3.2191083197082175, - "hitmonchan": 2.6240033781314946, - "lickitung": 1.9811988276013923, - "weezing": 1.639958968754521, - "weezing-galar": 2.018731994701259, - "rhydon": 2.200241626889423, - "chansey": 34.88613295308249, - "tangela": 5.2411963842624205, - "kangaskhan": 1.983343416569351, - "seadra": 3.849627147939532, - "seaking": 3.0411801540103243, - "starmie": 1.401198510489221, - "mr-mime": 6.638142520819567, - "mr-mime-galar": 3.5627952568160053, - "scyther": 3.056841213278834, - "jynx": 4.83061342408551, - "electabuzz": 3.36576370152135, - "magmar": 2.182906053443218, - "tauros": 2.186312761380828, - "ditto": 2.3816845067947847, - "vaporeon": 4.119899981851812, - "jolteon": 2.3992823467116704, - "flareon": 3.1950098823184803, - "porygon": 2.9609594579950853, - "dragonair": 2.546812112745271, - "noctowl": 7.219825850858945, - "lanturn": 2.5813515783151884, - "togetic": 4.926667411084101, - "xatu": 4.116064976951637, - "bellossom": 2.2925452434217286, - "azumarill": 2.0867571903890587, - "sudowoodo": 2.631777453487945, - "politoed": 3.1218455277969546, - "quagsire": 5.191380773519349, - "slowking": 3.0427069869639243, - "dunsparce": 3.362913378482255, - "qwilfish": 3.813887016482475, - "sneasel": 2.653275355978834, - "piloswine": 1.446188564801588, - "octillery": 2.714854681248698, - "mantine": 3.306618484332795, - "skarmory": 1.654385792178897, - "hitmontop": 3.0021175554360657, - "miltank": 3.519897688393852, - "grovyle": 10.654580338830218, - "sceptile": 1.7656564400220627, - "combusken": 3.8876133481012847, - "blaziken": 1.9731186398572396, - "marshtomp": 2.891756388466157, - "swampert": 1.265342704327951, - "linoone": 5.904533385940303, - "linoone-galar": 5.310546938514879, - "pelipper": 6.328787169879886, - "ninjask": 8.560978442334957, - "exploud": 1.5906675816775082, - "lairon": 1.936279272065235, - "manectric": 2.0919599215481366, - "roselia": 5.066865403361861, - "sharpedo": 5.9459836678426905, - "wailmer": 7.893568487807516, - "torkoal": 2.0215394538707745, - "flygon": 3.528017682683469, - "altaria": 2.2835758434215423, - "whiscash": 2.4778156120604433, - "crawdaunt": 2.328215581636644, - "claydol": 3.8250321455779837, - "cradily": 2.7380686202902704, - "armaldo": 2.0389194578817933, - "dusclops": 3.8575363625362113, - "absol": 2.1735572758760515, - "glalie": 4.3079054351191735, - "sealeo": 3.3303872037876094, - "relicanth": 1.8983833133787016, - "metang": 2.7035370836014367, - "luxray": 4.570591073269467, - "vespiquen": 3.0766476036697674, - "cherrim": 7.304309152267633, - "gastrodon": 2.6618560952447354, - "drifblim": 5.181030058903273, - "lopunny": 4.274559298166738, - "skuntank": 1.7219336036060928, - "bronzong": 2.9473404990932, - "munchlax": 3.0767342451799022, - "drapion": 2.616984862395031, - "abomasnow": 3.6065074184214083, - "froslass": 2.863174498291915, - "rotom": 4.479534668404114, - "stoutland": 2.6929119366533047, - "liepard": 7.885607201255768, - "musharna": 1.8625019426420821, - "unfezant": 6.799565440848371, - "boldore": 3.1706616998639077, - "swoobat": 5.900807206091886, - "audino": 2.325947910071374, - "gurdurr": 2.327032573039105, - "palpitoad": 4.371507985875965, - "seismitoad": 6.809318009539901, - "scolipede": 3.472898015762979, - "whimsicott": 2.8048376258848435, - "lilligant": 3.735581598568256, - "basculin-red-striped": 3.219719728772831, - "basculin-blue-striped": 4.331771165206646, - "krookodile": 3.2499187951290485, - "maractus": 2.838287725683336, - "crustle": 2.1379879773155674, - "sigilyph": 2.494208077935312, - "cofagrigus": 2.662696869451322, - "garbodor": 2.133692149352465, - "cinccino": 4.813696580653476, - "vanillish": 1.9408471410120312, - "emolga": 3.7807014600307554, - "escavalier": 1.7013329969554307, - "amoonguss": 2.9451389284025606, - "jellicent": 1.5017529413306399, - "galvantula": 1.9194795297825409, - "klang": 2.42592808112411, - "klinklang": 2.8730986858077308, - "beheeyem": 2.140902256041785, - "lampent": 3.2449526657066836, - "beartic": 1.5696008172790283, - "cryogonal": 1.7558441079498772, - "accelgor": 3.5047880805896723, - "stunfisk": 1.5692856182310768, - "stunfisk-galar": 1.9281378070506312, - "mienshao": 3.808669220517215, - "druddigon": 3.039414763602756, - "golurk": 2.134827352628236, - "bisharp": 2.1599428761927473, - "bouffalant": 1.50008916951223, - "heatmor": 2.396409385322817, - "durant": 2.4903072609486214, - "diggersby": 3.669990884592801, - "talonflame": 3.3776912791481566, - "pangoro": 1.9779609126325928, - "doublade": 1.8178044609546498, - "malamar": 4.532083307868146, - "barbaracle": 1.471252523537573, - "heliolisk": 4.60812448057027, - "tyrantrum": 2.0127606561677145, - "aurorus": 2.596036489973231, - "hawlucha": 3.8924203377990296, - "dedenne": 2.142972524799326, - "klefki": 2.091044806196333, - "trevenant": 3.779795127885216, - "gourgeist-average": 5.623856108686386, - "charjabug": 4.672294764124171, - "vikavolt": 2.026146638133411, - "ribombee": 3.8634911879526657, - "lycanroc-midday": 3.7625889303652182, - "lycanroc-midnight": 2.6709736174918577, - "mudsdale": 1.7437640700020798, - "araquanid": 3.0516574139926282, - "lurantis": 2.890820049090452, - "shiinotic": 3.5017503468459124, - "salazzle": 3.814834594838386, - "bewear": 1.9009325255728573, - "tsareena": 3.9464980385182153, - "comfey": 3.8837001251741836, - "oranguru": 3.2767605525562864, - "passimian": 2.4830232802004844, - "palossand": 2.037524255723554, - "pyukumuku": 49.94846778184524, - "togedemaru": 2.1463589976626922, - "mimikyu-disguised": 2.8060842561752786, - "greedent": 2.319266289345145, - "orbeetle": 2.056609444640592, - "thievul": 2.3717185943568984, - "eldegoss": 5.092042141312715, - "dubwool": 3.3595336875555217, - "drednaw": 1.3989080086677217, - "boltund": 5.633798407369536, - "carkol": 2.64532747172226, - "coalossal": 2.140129824218597, - "sandaconda": 2.936902054592206, - "cramorant": 7.332369519886065, - "barraskewda": 4.990999820192289, - "toxtricity-amped": 2.920901608157786, - "centiskorch": 2.4873945067723007, - "grapploct": 1.9318074366203657, - "polteageist": 3.579284487917456, - "hatterene": 2.1685705433809086, - "grimmsnarl": 3.6162892325095983, - "obstagoon": 2.9250728867147187, - "perrserker": 2.7574806287343443, - "alcremie": 1.148290823530189, - "falinks": 3.2470179426060963, - "pincurchin": 3.5556966094148894, - "frosmoth": 2.899505106448283, - "indeedee-male": 4.140416751438515, - "morpeko": 3.3549188561616337, - "copperajah": 2.0895774517521533, - "duraludon": 1.4116226877001976, - "drakloak": 7.112085151595851, - "fraxure": 2.050453066745069 + "ivysaur": 3.9191920766421235, + "charmeleon": 4.44675879487028, + "wartortle": 3.054636061342631, + "butterfree": 5.435653825599686, + "raichu": 6.550893990679723, + "raichu-alola": 4.584424386659327, + "sandslash": 2.183125856687066, + "sandslash-alola": 1.6368473085855637, + "nidoqueen": 2.983685273440914, + "nidoking": 2.1171396780927445, + "clefairy": 9.692486312988228, + "clefable": 1.4083620961549648, + "jigglypuff": 20.763220809987303, + "wigglytuff": 1.446625927611362, + "gloom": 5.532606195747208, + "vileplume": 3.4794871050258718, + "dugtrio": 4.466592801358751, + "dugtrio-alola": 3.1685436326809815, + "persian": 4.623462617408478, + "persian-alola": 4.949138264368662, + "golduck": 3.76279241043167, + "poliwrath": 2.2607215371560714, + "kadabra": 4.401049036758112, + "machoke": 4.384944042787753, + "tentacruel": 3.2336969813563896, + "slowbro": 1.9770286794540932, + "magneton": 2.718837154126577, + "haunter": 5.536496592870404, + "kingler": 2.5620187044377465, + "exeggutor": 3.0969367471124505, + "marowak": 3.311601851531436, + "marowak-alola": 2.3539036967815985, + "hitmonlee": 3.2290640866265825, + "hitmonchan": 2.629397190313301, + "lickitung": 1.9823899243643512, + "weezing": 1.639770397074084, + "weezing-galar": 2.009282357920254, + "rhydon": 2.198573445173443, + "chansey": 34.95128264857949, + "tangela": 5.250984126771662, + "kangaskhan": 1.9842031026449904, + "seadra": 3.844876682629045, + "seaking": 3.050400016052635, + "starmie": 1.4015560476381659, + "mr-mime": 6.6244781103581225, + "mr-mime-galar": 3.5628024296962426, + "scyther": 3.0599742091991287, + "jynx": 4.826311061934071, + "electabuzz": 3.375786644885118, + "magmar": 2.1884113807788066, + "tauros": 2.1892253239726513, + "ditto": 2.3725012180003837, + "vaporeon": 4.132243797233877, + "jolteon": 2.4055742198883476, + "flareon": 3.20289347103647, + "porygon": 2.961063118122736, + "dragonair": 2.5488308994131983, + "noctowl": 7.230441774704393, + "lanturn": 2.5925004619399896, + "togetic": 4.913720785007897, + "xatu": 4.118198217707706, + "bellossom": 2.295670838220171, + "azumarill": 2.0841642342681648, + "sudowoodo": 2.633238497431459, + "politoed": 3.1293932592302127, + "quagsire": 5.201251017067365, + "slowking": 3.0490751963623173, + "dunsparce": 3.3627269488969027, + "qwilfish": 3.8205500813515467, + "sneasel": 2.6555198622515643, + "piloswine": 1.4455530447859055, + "octillery": 2.7198143493326667, + "mantine": 3.316849282488122, + "skarmory": 1.6526854491962455, + "hitmontop": 3.0046330440419426, + "miltank": 3.5179943301399557, + "grovyle": 10.695850406996948, + "sceptile": 1.7713334229302173, + "combusken": 3.893872225256275, + "blaziken": 1.9780936345122526, + "marshtomp": 2.897937138779432, + "swampert": 1.2666192412136779, + "linoone": 5.9128708009284185, + "linoone-galar": 5.31971981121457, + "pelipper": 6.329365917244957, + "ninjask": 8.56953139576404, + "exploud": 1.5903606316044554, + "lairon": 1.932332251012368, + "manectric": 2.098007050673485, + "roselia": 5.080289991945135, + "sharpedo": 5.957127353389666, + "wailmer": 7.915155829308118, + "torkoal": 2.0246742437259053, + "flygon": 3.5327393513009975, + "altaria": 2.283180863552432, + "whiscash": 2.4834894436767465, + "crawdaunt": 2.332910686033542, + "claydol": 3.8291893031490023, + "cradily": 2.7433188535792046, + "armaldo": 2.041348732737644, + "dusclops": 3.8596759263541554, + "absol": 2.1776314633480034, + "glalie": 4.307316710998138, + "sealeo": 3.330460009817533, + "relicanth": 1.898201221575388, + "metang": 2.70461772724317, + "luxray": 4.581718461307041, + "vespiquen": 3.0800757363423275, + "cherrim": 7.325071197804117, + "gastrodon": 2.6693129474979704, + "drifblim": 5.185380595573285, + "lopunny": 4.282082683529112, + "skuntank": 1.7261077646510776, + "bronzong": 2.949067870917109, + "munchlax": 3.087599467957679, + "drapion": 2.621689621867204, + "abomasnow": 3.609434850792116, + "froslass": 2.8573671897867863, + "rotom": 4.486553416644536, + "stoutland": 2.69516891906577, + "liepard": 7.8940489959650755, + "musharna": 1.8664772746218525, + "unfezant": 6.807613217421225, + "boldore": 3.170579037062618, + "swoobat": 5.90402694861036, + "audino": 2.3271067188609313, + "gurdurr": 2.3289619508661072, + "palpitoad": 4.379868553228245, + "seismitoad": 6.80975332139669, + "scolipede": 3.4762927717580343, + "whimsicott": 2.798236738767432, + "lilligant": 3.74576495872255, + "basculin-red-striped": 3.226263620861792, + "basculin-blue-striped": 4.344046046021065, + "krookodile": 3.2558234978806304, + "maractus": 2.849124244461146, + "crustle": 2.13952340375747, + "sigilyph": 2.4953646737467152, + "cofagrigus": 2.6609494927150092, + "garbodor": 2.135830969602977, + "cinccino": 4.813370074973463, + "vanillish": 1.9366598721970059, + "emolga": 3.79117257601294, + "escavalier": 1.702268653135959, + "amoonguss": 2.9500936001768343, + "jellicent": 1.5013151733780379, + "galvantula": 1.9241622607819584, + "klang": 2.4247273527351063, + "klinklang": 2.870717714224985, + "beheeyem": 2.1439809386397615, + "lampent": 3.2528189841446364, + "fraxure": 2.050453066745069, + "beartic": 1.5682295769099854, + "cryogonal": 1.7551481448713784, + "accelgor": 3.508371130436534, + "stunfisk": 1.572967300276393, + "stunfisk-galar": 1.9255057553390504, + "mienshao": 3.8127402350656556, + "druddigon": 3.050430486217718, + "golurk": 2.1365277004495904, + "bisharp": 2.158948604022768, + "bouffalant": 1.5032680757908072, + "heatmor": 2.4049197193693983, + "durant": 2.48777708708009, + "diggersby": 3.6763871146651335, + "talonflame": 3.3826330806150735, + "pangoro": 1.981445051971232, + "doublade": 1.8144097379561592, + "malamar": 4.542340000160687, + "barbaracle": 1.4712982200654716, + "heliolisk": 4.619692168353013, + "tyrantrum": 2.0146074255951207, + "aurorus": 2.5945093083666286, + "hawlucha": 3.896107527968739, + "dedenne": 2.1363975298700466, + "klefki": 2.080825210673514, + "trevenant": 3.7906925281915447, + "gourgeist-average": 5.631394178063459, + "charjabug": 4.686483331052042, + "vikavolt": 2.0291721562174017, + "ribombee": 3.8460343242987767, + "lycanroc-midday": 3.767114274367792, + "lycanroc-midnight": 2.6745082763249055, + "mudsdale": 1.7466530692003128, + "araquanid": 3.062310070840831, + "lurantis": 2.8973158901271256, + "shiinotic": 3.483794983676834, + "salazzle": 3.822906234456121, + "bewear": 1.9014189004294608, + "tsareena": 3.9609715731311645, + "comfey": 3.8700759297468377, + "oranguru": 3.2825878904672647, + "passimian": 2.4857377710638, + "palossand": 2.035953468634846, + "pyukumuku": 50.042525673708035, + "togedemaru": 2.1469057968911898, + "mimikyu-disguised": 2.7948281624369806, + "greedent": 2.321666560407003, + "orbeetle": 2.0584878857402815, + "thievul": 2.3780430597487516, + "eldegoss": 5.1089170386574185, + "dubwool": 3.3652667849322415, + "drednaw": 1.4005276390935428, + "boltund": 5.648720943695492, + "carkol": 2.6488246079564144, + "coalossal": 2.141587454683225, + "sandaconda": 2.934572509654082, + "cramorant": 7.355750884010668, + "barraskewda": 4.995727702552468, + "toxtricity-amped": 2.9248825327199883, + "centiskorch": 2.4918257152666667, + "grapploct": 1.9343307117961879, + "polteageist": 3.5869470216877017, + "hatterene": 2.1614598477398186, + "grimmsnarl": 3.6101722043480695, + "obstagoon": 2.930098691927803, + "perrserker": 2.755993200172523, + "alcremie": 1.1453685722188596, + "falinks": 3.248890969607828, + "pincurchin": 3.5669370455332365, + "frosmoth": 2.900275166866894, + "indeedee-male": 4.151164747622418, + "morpeko": 3.3637998304814376, + "copperajah": 2.0882468176490097, + "duraludon": 1.4116287701162833, + "drakloak": 7.118809324232934 }, "beartic": { - "ivysaur": 3.8212830174250865, - "charmeleon": 3.568862124422516, - "wartortle": 2.462846098459735, - "butterfree": 5.1897470676791855, - "raichu": 4.577209175955665, - "raichu-alola": 3.2156027276179397, - "sandslash": 2.9393121129681083, - "sandslash-alola": 2.411659896243111, - "nidoqueen": 3.484982323902045, - "nidoking": 2.285005766222169, - "clefairy": 8.10603431517434, - "clefable": 1.9197910139387568, - "jigglypuff": 25.721254482056466, - "wigglytuff": 1.9503009043804922, - "gloom": 7.021299083729634, - "vileplume": 3.6789784798001666, - "dugtrio": 3.9949372400363448, - "dugtrio-alola": 3.77355840654131, - "persian": 4.841462661190807, - "persian-alola": 4.842261587250604, - "golduck": 2.794545723055921, - "poliwrath": 1.6264964024552746, - "kadabra": 3.5388099373806945, - "machoke": 3.5289421314442735, - "tentacruel": 1.954491583780024, - "slowbro": 1.4708770962139228, - "magneton": 3.1197643495557292, - "haunter": 4.2872412726353595, - "kingler": 2.0922232600641077, - "exeggutor": 2.415621274351986, - "marowak": 3.893754802187299, - "marowak-alola": 2.0049878700676844, - "hitmonlee": 2.062372757187851, - "hitmonchan": 1.9284327884824555, - "lickitung": 2.2181929552214488, - "weezing": 1.5295119094194825, - "weezing-galar": 2.61545711915276, - "rhydon": 3.1212273386800145, - "chansey": 35.238915202323284, - "tangela": 7.277824140123268, - "kangaskhan": 2.061365270976205, - "seadra": 3.683760569682197, - "seaking": 2.26944492571086, - "starmie": 1.224343924406908, - "mr-mime": 6.169562274654024, - "mr-mime-galar": 3.6987260440128766, - "scyther": 3.3355556220592035, - "jynx": 4.544376894479715, - "electabuzz": 2.440048551723244, - "magmar": 1.4486987872702335, - "tauros": 2.0652753895712754, - "ditto": 2.8491059600096853, - "vaporeon": 3.0427889980135063, - "jolteon": 1.8407783159074849, - "flareon": 2.0341509015571893, - "porygon": 3.1877058202359736, - "dragonair": 2.400085542942096, - "noctowl": 6.430445147993604, - "lanturn": 1.7950474914177512, - "togetic": 6.028284819379671, - "xatu": 4.77656948500501, - "bellossom": 2.886548212830503, - "azumarill": 1.7710724715704542, - "sudowoodo": 2.5315786860126632, - "politoed": 2.396614882790427, - "quagsire": 4.454687726649105, - "slowking": 2.087366536027398, - "dunsparce": 3.6997723103294393, - "qwilfish": 2.8553581391201694, - "sneasel": 3.50849490375764, - "piloswine": 1.676435428411997, - "octillery": 2.057903661106416, - "mantine": 2.187120959923476, - "skarmory": 2.083924670186507, - "hitmontop": 2.4884896498131415, - "miltank": 3.7459773310079956, - "grovyle": 8.861619831736679, - "sceptile": 1.6789775226675772, - "combusken": 3.001918304624132, - "blaziken": 1.4578689708883792, - "marshtomp": 2.4708248791244793, - "swampert": 1.2761544543392156, - "linoone": 5.792421476106144, - "linoone-galar": 6.94494896389639, - "pelipper": 6.166600520510837, - "ninjask": 9.097282115510763, - "exploud": 1.8837586330906935, - "lairon": 2.4256304155569994, - "manectric": 1.6751292644551938, - "roselia": 4.499400506249561, - "sharpedo": 5.633988147624345, - "wailmer": 5.808995053226354, - "torkoal": 1.809402596764548, - "flygon": 4.1840687172730835, - "altaria": 2.6015804139487644, - "whiscash": 2.031152763229653, - "crawdaunt": 2.1061661178287747, - "claydol": 3.8791697514111894, - "cradily": 2.6268802511424685, - "armaldo": 1.8630112381105082, - "dusclops": 3.295152724694347, - "absol": 2.225002474195294, - "glalie": 4.637335801693618, - "sealeo": 3.6635330881943196, - "relicanth": 1.7795268460520197, - "metang": 2.4107221364615494, - "luxray": 3.721137330746023, - "vespiquen": 3.2615889558773614, - "cherrim": 7.057147263699248, - "gastrodon": 2.0032316800976355, - "drifblim": 5.235631937995418, - "lopunny": 4.017565792970112, - "skuntank": 1.3636917553525376, - "bronzong": 2.6850051449162304, - "munchlax": 2.7458507188611527, - "drapion": 2.376134977815621, - "abomasnow": 3.6432565476167196, - "froslass": 2.6061824715463793, - "rotom": 3.619455910559651, - "stoutland": 2.6882560825864052, - "liepard": 7.867975691340389, - "musharna": 1.4849534619011797, - "unfezant": 8.46314084306894, - "boldore": 3.38222048602308, - "swoobat": 6.836997011635011, - "audino": 2.443446605626302, - "gurdurr": 2.0961970519897797, - "palpitoad": 3.725460012596125, - "seismitoad": 6.216442370295621, - "scolipede": 3.125157016005927, - "whimsicott": 4.010289780369138, - "lilligant": 3.784500470170106, - "basculin-red-striped": 2.5533244369300108, - "basculin-blue-striped": 3.258765785503356, - "krookodile": 3.5884058653571724, - "maractus": 2.774489870833847, - "crustle": 2.0579243677740253, - "sigilyph": 2.7962459916154128, - "cofagrigus": 2.647957472277002, - "garbodor": 1.749981330778008, - "cinccino": 5.270249480096213, - "vanillish": 2.604579765958432, - "emolga": 3.908276123198802, - "escavalier": 1.6465170702505223, - "amoonguss": 3.100012771351361, - "jellicent": 1.2751254752118717, - "galvantula": 1.5530990452219346, - "klang": 2.8200169233384376, - "klinklang": 3.2695577512370635, - "beheeyem": 1.6699048741941591, - "lampent": 2.2360836403887454, - "fraxure": 2.1011891887181653, - "cryogonal": 2.406736299745466, - "accelgor": 2.873707267564213, - "stunfisk": 1.5554905436032467, - "stunfisk-galar": 2.471324462846299, - "mienshao": 3.0253937689136983, - "druddigon": 2.220915908608492, - "golurk": 2.233487189527765, - "bisharp": 3.451256420975536, - "bouffalant": 1.3656470943738572, - "heatmor": 1.755275737652663, - "durant": 2.5903061169189447, - "diggersby": 3.8647790389464936, - "talonflame": 2.755449370831447, - "pangoro": 1.7785903146993087, - "doublade": 1.9579413961259688, - "malamar": 2.8160354861739774, - "barbaracle": 1.5857520929648214, - "heliolisk": 4.475354714365009, - "tyrantrum": 2.0652819353342804, - "aurorus": 3.509362049485426, - "hawlucha": 4.2981968785562215, - "dedenne": 2.8125869350349055, - "klefki": 2.534396044109659, - "trevenant": 3.5855132631437954, - "gourgeist-average": 6.8290785544945685, - "charjabug": 3.996092429873544, - "vikavolt": 1.8371285929914922, - "ribombee": 4.471878514519685, - "lycanroc-midday": 3.3238684414624373, - "lycanroc-midnight": 2.3823518811642077, - "mudsdale": 1.882394589187063, - "araquanid": 1.8956760075716343, - "lurantis": 2.9753879763675304, - "shiinotic": 5.283016140047477, - "salazzle": 3.0267660540199586, - "bewear": 1.882632342869614, - "tsareena": 3.8337883625291087, - "comfey": 4.252748308598213, - "oranguru": 2.5339738911941465, - "passimian": 2.1622528242066887, - "palossand": 2.7429460241204957, - "pyukumuku": 37.87483711433974, - "togedemaru": 2.475984364570489, - "mimikyu-disguised": 3.7727107515886438, - "greedent": 2.198643820030611, - "orbeetle": 1.7633543047925118, - "thievul": 2.0526443965661985, - "eldegoss": 4.580816327548497, - "dubwool": 3.0878453401677155, - "drednaw": 1.2231140601800172, - "boltund": 4.59593938538147, - "carkol": 2.802222567157279, - "coalossal": 2.413033098875929, - "sandaconda": 4.291045191298126, - "cramorant": 5.017732075590843, - "barraskewda": 4.112332805650855, - "toxtricity-amped": 2.6107015623459726, - "centiskorch": 1.9021120524288033, - "grapploct": 1.5532457685740235, - "polteageist": 2.4332573671690145, - "hatterene": 2.4251251308065283, - "grimmsnarl": 3.5411261472634643, - "obstagoon": 3.5983004955978393, - "perrserker": 3.153410236817169, - "alcremie": 1.3058292341609734, - "falinks": 2.935991592910173, - "pincurchin": 2.91689316296281, - "frosmoth": 2.541821119792235, - "indeedee-male": 2.9528738681456055, - "morpeko": 3.113102745749825, - "copperajah": 2.350428729916782, - "duraludon": 1.6575666929519683, - "drakloak": 5.8489302229009805, - "beartic": 2.0003990342752185 + "ivysaur": 3.826455038287315, + "charmeleon": 3.5642738823896547, + "wartortle": 2.461615311851655, + "butterfree": 5.193318936097359, + "raichu": 4.5761798035692225, + "raichu-alola": 3.2140179515125458, + "sandslash": 2.9466152553039553, + "sandslash-alola": 2.411964031361604, + "nidoqueen": 3.493055873728016, + "nidoking": 2.290090631106626, + "clefairy": 8.099331289096389, + "clefable": 1.9190283759867666, + "jigglypuff": 25.742831255725335, + "wigglytuff": 1.9516718357088456, + "gloom": 7.0309931755248485, + "vileplume": 3.6847316065511215, + "dugtrio": 4.001575445531412, + "dugtrio-alola": 3.7780626564178705, + "persian": 4.84618045659682, + "persian-alola": 4.848534681810213, + "golduck": 2.7928994976315593, + "poliwrath": 1.623110902693014, + "kadabra": 3.536167313948779, + "machoke": 3.5262509762712066, + "tentacruel": 1.952177469985082, + "slowbro": 1.4681983547816455, + "magneton": 3.1175625008063923, + "haunter": 4.28891414422637, + "kingler": 2.0897539671148726, + "exeggutor": 2.4184420826686845, + "marowak": 3.901748568078535, + "marowak-alola": 2.002510753621399, + "hitmonlee": 2.058364848446231, + "hitmonchan": 1.927969602947157, + "lickitung": 2.221772500245099, + "weezing": 1.5298750183422731, + "weezing-galar": 2.6157755217027208, + "rhydon": 3.1276980196630224, + "chansey": 35.24131529033553, + "tangela": 7.295012085447469, + "kangaskhan": 2.063892554348621, + "seadra": 3.6815703357657523, + "seaking": 2.268607279391341, + "starmie": 1.2223464140317215, + "mr-mime": 6.166119728061593, + "mr-mime-galar": 3.69799097897523, + "scyther": 3.3401535007157173, + "jynx": 4.541827109485567, + "electabuzz": 2.440923759631197, + "magmar": 1.4466159648887489, + "tauros": 2.0669925637220414, + "ditto": 2.8320002197578207, + "vaporeon": 3.039911933098491, + "jolteon": 1.8417758165190599, + "flareon": 2.0322743326748935, + "porygon": 3.1920614109100827, + "dragonair": 2.4051712937243233, + "noctowl": 6.439390725830936, + "lanturn": 1.7949814903987702, + "togetic": 6.030590226454903, + "xatu": 4.783847802143795, + "bellossom": 2.8915308082695272, + "azumarill": 1.7710238588930278, + "sudowoodo": 2.5324799579473645, + "politoed": 2.395534874195888, + "quagsire": 4.454857299587607, + "slowking": 2.0853234622727554, + "dunsparce": 3.707018036513438, + "qwilfish": 2.85184386666689, + "sneasel": 3.514809127536093, + "piloswine": 1.6771443228737128, + "octillery": 2.055240119218918, + "mantine": 2.1856732575634537, + "skarmory": 2.0864014346247832, + "hitmontop": 2.4890043546058207, + "miltank": 3.7511090464233923, + "grovyle": 8.867590001831692, + "sceptile": 1.6815705408115973, + "combusken": 2.9968162202387516, + "blaziken": 1.455422823982039, + "marshtomp": 2.4738549277780253, + "swampert": 1.2779105799371353, + "linoone": 5.799032492858846, + "linoone-galar": 6.958277638783944, + "pelipper": 6.167146092205044, + "ninjask": 9.108432712509556, + "exploud": 1.885210214142076, + "lairon": 2.4246994899383996, + "manectric": 1.6754136685718608, + "roselia": 4.503641953192682, + "sharpedo": 5.635667943882499, + "wailmer": 5.803739207044432, + "torkoal": 1.8079875519594093, + "flygon": 4.195842168072182, + "altaria": 2.607515674731654, + "whiscash": 2.032700769742735, + "crawdaunt": 2.106598479442149, + "claydol": 3.8830564101676988, + "cradily": 2.6308530851642065, + "armaldo": 1.8643499579213536, + "dusclops": 3.296253504620818, + "absol": 2.2274142698981474, + "glalie": 4.640150930807724, + "sealeo": 3.6650467057375518, + "relicanth": 1.7778479683761588, + "metang": 2.4081459232613027, + "luxray": 3.7234696054042855, + "vespiquen": 3.2644700523714567, + "cherrim": 7.067509284340945, + "gastrodon": 2.003364900374142, + "drifblim": 5.242932332142862, + "lopunny": 4.019252336238475, + "skuntank": 1.3649785688517833, + "bronzong": 2.6831761283122817, + "munchlax": 2.7457212084006306, + "drapion": 2.3778852294520876, + "abomasnow": 3.6468051410481674, + "froslass": 2.6062934266808457, + "rotom": 3.622123661404384, + "stoutland": 2.690559295044179, + "liepard": 7.87967958584885, + "musharna": 1.485032814284625, + "unfezant": 8.485998785260936, + "boldore": 3.384039526547622, + "swoobat": 6.8473959088613965, + "audino": 2.4442260097625024, + "gurdurr": 2.0949045850596715, + "palpitoad": 3.7289925748527657, + "seismitoad": 6.218220883709003, + "scolipede": 3.1250966052601195, + "whimsicott": 4.01736259204266, + "lilligant": 3.7910719384300657, + "basculin-red-striped": 2.5529158545642483, + "basculin-blue-striped": 3.257444851258498, + "krookodile": 3.5996904763714266, + "maractus": 2.7789453814257965, + "crustle": 2.0583382073254466, + "sigilyph": 2.7983662322771474, + "cofagrigus": 2.6497791799037085, + "garbodor": 1.7493415954269564, + "cinccino": 5.279351622408864, + "vanillish": 2.6084517210184446, + "emolga": 3.9169757448171305, + "escavalier": 1.6469201896042156, + "amoonguss": 3.1041053379201182, + "jellicent": 1.2729689928461565, + "galvantula": 1.5537218101634078, + "klang": 2.8182568386435225, + "klinklang": 3.2666059439620088, + "beheeyem": 1.6687678121095937, + "lampent": 2.2326800757556144, + "fraxure": 2.1054564778039238, + "beartic": 2.0003990342752185, + "cryogonal": 2.4110169173388414, + "accelgor": 2.873043743445499, + "stunfisk": 1.559177368508763, + "stunfisk-galar": 2.476706011545026, + "mienshao": 3.0227349191538835, + "druddigon": 2.2239959665233293, + "golurk": 2.2362630375355215, + "bisharp": 3.457099271291072, + "bouffalant": 1.3662069305084268, + "heatmor": 1.753561305660479, + "durant": 2.5887570911361433, + "diggersby": 3.8741829478482943, + "talonflame": 2.7541999311399277, + "pangoro": 1.778469405854438, + "doublade": 1.9550683139154375, + "malamar": 2.8175543993600036, + "barbaracle": 1.5861206217606763, + "heliolisk": 4.477556127040392, + "tyrantrum": 2.068311194916615, + "aurorus": 3.512389828323641, + "hawlucha": 4.302319458546947, + "dedenne": 2.8140571433874566, + "klefki": 2.5325301354711063, + "trevenant": 3.587617707690619, + "gourgeist-average": 6.835869410505983, + "charjabug": 3.99930012351077, + "vikavolt": 1.838583253884475, + "ribombee": 4.471973007940928, + "lycanroc-midday": 3.322806938264865, + "lycanroc-midnight": 2.382305332852332, + "mudsdale": 1.8851252086934287, + "araquanid": 1.8923673570416635, + "lurantis": 2.9800228129488064, + "shiinotic": 5.289182605259914, + "salazzle": 3.0216748260792867, + "bewear": 1.8845227314342223, + "tsareena": 3.840788435889804, + "comfey": 4.255030971565448, + "oranguru": 2.5344996372054847, + "passimian": 2.1610003714433033, + "palossand": 2.7503637794012255, + "pyukumuku": 37.813317118728506, + "togedemaru": 2.474762228807118, + "mimikyu-disguised": 3.7728027787087015, + "greedent": 2.1996507924146127, + "orbeetle": 1.7626813298495678, + "thievul": 2.0528109998269914, + "eldegoss": 4.5872103509742805, + "dubwool": 3.088756764920422, + "drednaw": 1.2218724005536203, + "boltund": 4.600133520721207, + "carkol": 2.8008532224989384, + "coalossal": 2.4126007426553255, + "sandaconda": 4.3038158362171055, + "cramorant": 5.016172081180322, + "barraskewda": 4.1101290659389065, + "toxtricity-amped": 2.610862177367322, + "centiskorch": 1.8997637403227747, + "grapploct": 1.5515704411120042, + "polteageist": 2.4326818666867513, + "hatterene": 2.425495128645911, + "grimmsnarl": 3.5416910694288855, + "obstagoon": 3.6046917512940055, + "perrserker": 3.1533122675567355, + "alcremie": 1.3051678247428105, + "falinks": 2.933780756997506, + "pincurchin": 2.9197580549580904, + "frosmoth": 2.539305832975864, + "indeedee-male": 2.951159822739199, + "morpeko": 3.118411195031867, + "copperajah": 2.34660538778104, + "duraludon": 1.6594374763448299, + "drakloak": 5.858493999514771 }, "cryogonal": { - "ivysaur": 4.634504868451751, - "charmeleon": 3.3528948631731925, - "wartortle": 3.278353583450789, - "butterfree": 6.198335748491219, - "raichu": 5.314590242231175, - "raichu-alola": 3.6721262013410874, - "sandslash": 3.383746405670349, - "sandslash-alola": 1.3941523470565902, - "nidoqueen": 4.448522002288301, - "nidoking": 2.629884081242172, - "clefairy": 9.497148334606559, - "clefable": 2.2948510772819826, - "jigglypuff": 29.525685760055058, - "wigglytuff": 2.3068269029994504, - "gloom": 8.56845668695821, - "vileplume": 4.485891984173318, - "dugtrio": 4.431389476242616, - "dugtrio-alola": 3.3639494078379384, - "persian": 4.28693964608333, - "persian-alola": 4.5663441632673845, - "golduck": 3.410371839889066, - "poliwrath": 1.8887226441794023, - "kadabra": 3.9134390590496686, - "machoke": 3.4663057149696246, - "tentacruel": 2.06330354325568, - "slowbro": 2.1116020702543765, - "magneton": 2.836565846058183, - "haunter": 5.044450676237254, - "kingler": 2.9074885766713154, - "exeggutor": 2.87150865543454, - "marowak": 4.504322549442852, - "marowak-alola": 1.4938402540900546, - "hitmonlee": 1.7775811346480603, - "hitmonchan": 1.8902395878165843, - "lickitung": 2.2425321804320006, - "weezing": 1.8521639778597452, - "weezing-galar": 3.1345257585713555, - "rhydon": 3.6897123766366993, - "chansey": 20.93848319327588, - "tangela": 7.9805051875132325, - "kangaskhan": 1.8803777458924702, - "seadra": 5.703425988150283, - "seaking": 2.6395308149266814, - "starmie": 1.6998248984550486, - "mr-mime": 7.032497376537945, - "mr-mime-galar": 3.708014034755732, - "scyther": 3.5337120981660473, - "jynx": 4.085098182985843, - "electabuzz": 2.78488284615171, - "magmar": 1.3991989305960888, - "tauros": 2.0782928491562243, - "ditto": 2.1686521207476215, - "vaporeon": 3.5911862206005445, - "jolteon": 2.061203625465623, - "flareon": 1.911547585083098, - "porygon": 3.1228318793181007, - "dragonair": 2.676348554058289, - "noctowl": 7.156479754102473, - "lanturn": 2.2675664929052446, - "togetic": 7.022995795007388, - "xatu": 5.821940995354001, - "bellossom": 3.5341357194176024, - "azumarill": 1.7681854945774045, - "sudowoodo": 2.7195839710698912, - "politoed": 2.8785209056578327, - "quagsire": 7.984836108345791, - "slowking": 2.650977609322454, - "dunsparce": 3.561363398251701, - "qwilfish": 2.932339772740291, - "sneasel": 2.024396599862972, - "piloswine": 1.773967194371394, - "octillery": 2.6867089758365523, - "mantine": 2.4253315339009127, - "skarmory": 2.154906187707558, - "hitmontop": 2.639564944062263, - "miltank": 3.7437919278412433, - "grovyle": 9.926463909480118, - "sceptile": 1.9050968790028275, - "combusken": 2.644831616512443, - "blaziken": 1.1728739624314561, - "marshtomp": 4.089166523766974, - "swampert": 2.228150474473022, - "linoone": 5.090944780385113, - "linoone-galar": 4.957393266467067, - "pelipper": 6.6318888835491325, - "ninjask": 9.875951054136218, - "exploud": 1.8260342351431842, - "lairon": 1.7586656948337531, - "manectric": 1.9418126957536246, - "roselia": 5.400093237955719, - "sharpedo": 5.282805714759638, - "wailmer": 7.154294362420551, - "torkoal": 1.6497157116619123, - "flygon": 4.9316161700637515, - "altaria": 3.4323810812114575, - "whiscash": 3.380578498156065, - "crawdaunt": 2.4401790622593995, - "claydol": 4.732053970269284, - "cradily": 3.2046674011562835, - "armaldo": 1.8895717851369995, - "dusclops": 3.548882816061163, - "absol": 2.105085798004378, - "glalie": 3.616982071277037, - "sealeo": 3.7645807809850584, - "relicanth": 2.8203779751016853, - "metang": 2.1922545017178887, - "luxray": 4.060302625229523, - "vespiquen": 3.4157304615293795, - "cherrim": 8.537272512817264, - "gastrodon": 2.9222421128288456, - "drifblim": 6.423627507216882, - "lopunny": 3.328884155647355, - "skuntank": 1.5224382294943672, - "bronzong": 2.3395810095128264, - "munchlax": 1.6937812061014128, - "drapion": 2.4192090800666155, - "abomasnow": 3.2763587613257075, - "froslass": 2.8494724365596955, - "rotom": 4.3043691000915345, - "stoutland": 2.399968779644639, - "liepard": 6.977983578917554, - "musharna": 1.659393611008983, - "unfezant": 9.265136756918748, - "boldore": 3.688645378841362, - "swoobat": 8.332859159688622, - "audino": 2.5361473699319275, - "gurdurr": 2.17644411365723, - "palpitoad": 6.52224811573374, - "seismitoad": 10.744753453560545, - "scolipede": 3.1587099203382776, - "whimsicott": 4.681674761933028, - "lilligant": 4.604725884702585, - "basculin-red-striped": 3.1213450701380285, - "basculin-blue-striped": 4.1662343807911215, - "krookodile": 4.180036962042578, - "maractus": 3.3103069356239994, - "crustle": 1.9500555388017915, - "sigilyph": 3.4439207686191606, - "cofagrigus": 3.144032479925346, - "garbodor": 1.8457470846779525, - "cinccino": 4.847290750150012, - "vanillish": 2.2220799581162187, - "emolga": 4.703761188329484, - "escavalier": 1.5945638028630884, - "amoonguss": 3.7789227243325003, - "jellicent": 1.8171316629293701, - "galvantula": 1.8134704580182017, - "klang": 2.4123818823073626, - "klinklang": 2.4113362543936754, - "beheeyem": 1.9368930188668303, - "lampent": 2.079010774199507, - "fraxure": 2.2611853655391068, - "beartic": 1.6775536116287018, - "accelgor": 3.3255291448035855, - "stunfisk": 1.935575802938537, - "stunfisk-galar": 2.720908320089067, - "mienshao": 3.198412581087503, - "druddigon": 2.4422891337558768, - "golurk": 2.442679957259716, - "bisharp": 2.020865081950441, - "bouffalant": 1.163864652763206, - "heatmor": 1.507367372457975, - "durant": 2.43719363486384, - "diggersby": 4.590930147646864, - "talonflame": 2.958959991545626, - "pangoro": 1.5611464135227857, - "doublade": 1.819421442189119, - "malamar": 3.080171528591489, - "barbaracle": 2.3158212252525723, - "heliolisk": 3.8377461202294736, - "tyrantrum": 2.174031051308467, - "aurorus": 2.633294840219886, - "hawlucha": 4.516259450821796, - "dedenne": 3.3360596493884236, - "klefki": 2.4920631880675064, - "trevenant": 3.7744963700337326, - "gourgeist-average": 8.05286129643038, - "charjabug": 4.4518482689721735, - "vikavolt": 2.086577224766241, - "ribombee": 5.179589046330889, - "lycanroc-midday": 3.0725057652001166, - "lycanroc-midnight": 2.1819530567711998, - "mudsdale": 2.046790289916456, - "araquanid": 1.8998285293482278, - "lurantis": 3.4814306062331575, - "shiinotic": 6.387171174266777, - "salazzle": 2.7133232290392684, - "bewear": 1.7951098882315457, - "tsareena": 4.086154371965508, - "comfey": 4.913563194939098, - "oranguru": 2.777121127749627, - "passimian": 2.1367424199251994, - "palossand": 3.5688808963160135, - "pyukumuku": 46.97239412565864, - "togedemaru": 1.7402994491824941, - "mimikyu-disguised": 3.8338613922949545, - "greedent": 2.039337886969173, - "orbeetle": 2.0334949538654667, - "thievul": 1.8371107756819653, - "eldegoss": 5.4989423286727686, - "dubwool": 2.7557121662707162, - "drednaw": 1.6207980414458647, - "boltund": 4.998748210992898, - "carkol": 1.8669470783586375, - "coalossal": 1.8293059671993848, - "sandaconda": 5.040342388131377, - "cramorant": 5.009604986910369, - "barraskewda": 5.008802952688822, - "toxtricity-amped": 3.0964425724299516, - "centiskorch": 1.7725839646653365, - "grapploct": 1.6969405337753627, - "polteageist": 2.6344655246425974, - "hatterene": 2.654003184652211, - "grimmsnarl": 3.8421132763007058, - "obstagoon": 2.626169870043306, - "perrserker": 2.5642904984422783, - "alcremie": 1.5299660588928825, - "falinks": 2.895071859947089, - "pincurchin": 3.3676150330993124, - "frosmoth": 2.487108534135093, - "indeedee-male": 3.2477069713082227, - "morpeko": 2.943400898627943, - "copperajah": 1.7161801889893844, - "duraludon": 1.7589293731091122, - "drakloak": 6.630391025037907, - "cryogonal": 1.6856479243701437 + "ivysaur": 4.649871959227493, + "charmeleon": 3.3489556505942115, + "wartortle": 3.2833609585031494, + "butterfree": 6.214193195199979, + "raichu": 5.320499604661599, + "raichu-alola": 3.676055668353761, + "sandslash": 3.3939096705862974, + "sandslash-alola": 1.3884364839290604, + "nidoqueen": 4.470592547042506, + "nidoking": 2.6368722024826288, + "clefairy": 9.506961496496576, + "clefable": 2.2980890028065852, + "jigglypuff": 29.579882801015845, + "wigglytuff": 2.3115447798308795, + "gloom": 8.597565524695643, + "vileplume": 4.50192567566747, + "dugtrio": 4.445433991291252, + "dugtrio-alola": 3.3630178989884105, + "persian": 4.284517748705847, + "persian-alola": 4.567539671469349, + "golduck": 3.409436902280498, + "poliwrath": 1.8842081768737011, + "kadabra": 3.9120288361900326, + "machoke": 3.457763081878128, + "tentacruel": 2.0619426641379826, + "slowbro": 2.112548306511059, + "magneton": 2.8351296630573164, + "haunter": 5.0563458123304, + "kingler": 2.9051093363887146, + "exeggutor": 2.8799117171602377, + "marowak": 4.516732160173117, + "marowak-alola": 1.4880272206052427, + "hitmonlee": 1.7695580766018089, + "hitmonchan": 1.8863941999839402, + "lickitung": 2.2475865973196325, + "weezing": 1.8559839719746387, + "weezing-galar": 3.1412302610760707, + "rhydon": 3.697605514965632, + "chansey": 20.896641640868353, + "tangela": 7.995329848181221, + "kangaskhan": 1.8800591344717827, + "seadra": 5.715218556175605, + "seaking": 2.638926665571259, + "starmie": 1.7001709150412136, + "mr-mime": 7.0406744644742165, + "mr-mime-galar": 3.70895509924069, + "scyther": 3.5358042676033836, + "jynx": 4.084744260442199, + "electabuzz": 2.7890243081033743, + "magmar": 1.397106817467856, + "tauros": 2.077771104385808, + "ditto": 2.1565534623133775, + "vaporeon": 3.5951112357840045, + "jolteon": 2.0645770664145244, + "flareon": 1.9083059086045702, + "porygon": 3.128370361494695, + "dragonair": 2.681909499734387, + "noctowl": 7.164977197068857, + "lanturn": 2.271425254222051, + "togetic": 7.033458152495923, + "xatu": 5.842744760279313, + "bellossom": 3.5463337936712915, + "azumarill": 1.7613033374605258, + "sudowoodo": 2.7174135230652245, + "politoed": 2.8806739469009504, + "quagsire": 8.007694537822331, + "slowking": 2.6503536051216736, + "dunsparce": 3.5657831169864007, + "qwilfish": 2.926290063361786, + "sneasel": 2.020529500680058, + "piloswine": 1.7707323488820843, + "octillery": 2.6874461061822914, + "mantine": 2.4276101916469046, + "skarmory": 2.153461770263694, + "hitmontop": 2.6391155529182906, + "miltank": 3.7423472639948465, + "grovyle": 9.935236146029306, + "sceptile": 1.9096002244494672, + "combusken": 2.6377927149631155, + "blaziken": 1.1678984173274127, + "marshtomp": 4.10113998086076, + "swampert": 2.238722924303224, + "linoone": 5.086090312109363, + "linoone-galar": 4.95671951751383, + "pelipper": 6.635906895759819, + "ninjask": 9.88530840323503, + "exploud": 1.8287496563556715, + "lairon": 1.7517788835896693, + "manectric": 1.9442917131557453, + "roselia": 5.415296735189221, + "sharpedo": 5.2753193543593575, + "wailmer": 7.150411555512298, + "torkoal": 1.648132347371, + "flygon": 4.946704200635845, + "altaria": 3.448260354343029, + "whiscash": 3.3869495979073463, + "crawdaunt": 2.439659739479167, + "claydol": 4.747442201104121, + "cradily": 3.2137896968022215, + "armaldo": 1.8891312982032433, + "dusclops": 3.5519879207954617, + "absol": 2.1051524102338828, + "glalie": 3.6100293956257605, + "sealeo": 3.7655318044934343, + "relicanth": 2.815734221882547, + "metang": 2.184293070571785, + "luxray": 4.0630517723983495, + "vespiquen": 3.4154870695235924, + "cherrim": 8.56462027459451, + "gastrodon": 2.920915691077046, + "drifblim": 6.4469544379732895, + "lopunny": 3.3220875502891545, + "skuntank": 1.5227989203784857, + "bronzong": 2.331735419673654, + "munchlax": 1.6871856180029248, + "drapion": 2.416631223846491, + "abomasnow": 3.27516938478729, + "froslass": 2.8525751536270665, + "rotom": 4.317698590504192, + "stoutland": 2.397757256657091, + "liepard": 6.974568340434043, + "musharna": 1.6612471560543802, + "unfezant": 9.282717345765676, + "boldore": 3.687377586564826, + "swoobat": 8.362520546531528, + "audino": 2.5391285888076194, + "gurdurr": 2.1735899918300925, + "palpitoad": 6.547357849959727, + "seismitoad": 10.775918794617883, + "scolipede": 3.1546070845730947, + "whimsicott": 4.695406862113247, + "lilligant": 4.621146383531215, + "basculin-red-striped": 3.1193763299357204, + "basculin-blue-striped": 4.16632470948198, + "krookodile": 4.194751956087026, + "maractus": 3.321443553191247, + "crustle": 1.946344861281424, + "sigilyph": 3.454243373791628, + "cofagrigus": 3.1536380627589677, + "garbodor": 1.8432726742385652, + "cinccino": 4.849527953449892, + "vanillish": 2.224443184220674, + "emolga": 4.718755456275849, + "escavalier": 1.5934224077123162, + "amoonguss": 3.7915555698327403, + "jellicent": 1.8191409041975126, + "galvantula": 1.8169704893129723, + "klang": 2.410851448543331, + "klinklang": 2.400770293620868, + "beheeyem": 1.9391141528164155, + "lampent": 2.076906011832039, + "fraxure": 2.2637858084240907, + "beartic": 1.676015645180055, + "cryogonal": 1.6856479243701437, + "accelgor": 3.329272633188734, + "stunfisk": 1.945234007253707, + "stunfisk-galar": 2.729086687446017, + "mienshao": 3.19425705409889, + "druddigon": 2.4447193520577812, + "golurk": 2.4460854944353505, + "bisharp": 2.0165842457052747, + "bouffalant": 1.159834828240833, + "heatmor": 1.5038298791862919, + "durant": 2.429906781877505, + "diggersby": 4.60568579472938, + "talonflame": 2.9574380330940584, + "pangoro": 1.5571967592725846, + "doublade": 1.8135766971808223, + "malamar": 3.0826706777896584, + "barbaracle": 2.3150291664359113, + "heliolisk": 3.84439790352688, + "tyrantrum": 2.1739544185737882, + "aurorus": 2.632279032767935, + "hawlucha": 4.515671375707979, + "dedenne": 3.3434960073929663, + "klefki": 2.488637112163775, + "trevenant": 3.7745824798825693, + "gourgeist-average": 8.07127864346461, + "charjabug": 4.457078692552717, + "vikavolt": 2.08990411558213, + "ribombee": 5.188167604189401, + "lycanroc-midday": 3.0645262727511664, + "lycanroc-midnight": 2.1765425300249834, + "mudsdale": 2.04886529375403, + "araquanid": 1.8955891623825356, + "lurantis": 3.490405067932275, + "shiinotic": 6.407670864058944, + "salazzle": 2.707759115745448, + "bewear": 1.7934857849280013, + "tsareena": 4.09020081589188, + "comfey": 4.924254663411846, + "oranguru": 2.7785212259466503, + "passimian": 2.1321464265270285, + "palossand": 3.5910058275567556, + "pyukumuku": 46.926966707551884, + "togedemaru": 1.733063541749108, + "mimikyu-disguised": 3.8319510930857423, + "greedent": 2.03582458360415, + "orbeetle": 2.0360231544242846, + "thievul": 1.8375449648800264, + "eldegoss": 5.515622896973143, + "dubwool": 2.750325786485616, + "drednaw": 1.6176877054309753, + "boltund": 5.003145783704834, + "carkol": 1.8625523281190473, + "coalossal": 1.8277936555122705, + "sandaconda": 5.060095144029497, + "cramorant": 5.003528640628627, + "barraskewda": 5.003164594403574, + "toxtricity-amped": 3.10135705268725, + "centiskorch": 1.7702642031350788, + "grapploct": 1.6945946249500543, + "polteageist": 2.6361081630653036, + "hatterene": 2.6564062652986937, + "grimmsnarl": 3.8421966840596813, + "obstagoon": 2.625075671133504, + "perrserker": 2.557368458400874, + "alcremie": 1.5317723205451563, + "falinks": 2.888334465758673, + "pincurchin": 3.3759405901610187, + "frosmoth": 2.4852523019006556, + "indeedee-male": 3.249586542733288, + "morpeko": 2.9462576619057472, + "copperajah": 1.7091971710700649, + "duraludon": 1.7585508280390436, + "drakloak": 6.645220114462777 }, "accelgor": { - "ivysaur": 3.355499742349318, - "charmeleon": 2.8653475723802067, - "wartortle": 2.849170236752167, - "butterfree": 3.818672031005955, - "raichu": 5.204207807602025, - "raichu-alola": 4.226499248943737, - "sandslash": 2.2210087332339086, - "sandslash-alola": 1.4945412404517964, - "nidoqueen": 2.423283535334922, - "nidoking": 1.4344435638117214, - "clefairy": 7.678351808640723, - "clefable": 1.719456559264016, - "jigglypuff": 23.99321402386719, - "wigglytuff": 1.7736963869274176, - "gloom": 5.711974713160133, - "vileplume": 3.1747656506623363, - "dugtrio": 3.067571567627553, - "dugtrio-alola": 2.769500482340845, - "persian": 4.023794942917859, - "persian-alola": 5.527697802213153, - "golduck": 2.984028496664894, - "poliwrath": 1.541982182900826, - "kadabra": 4.403066237155619, - "machoke": 3.036148654360005, - "tentacruel": 1.8225681611703337, - "slowbro": 2.4231636560645633, - "magneton": 2.696358146041158, - "haunter": 3.311876529492992, - "kingler": 2.8471986295971767, - "exeggutor": 4.015578249796562, - "marowak": 3.21949897009502, - "marowak-alola": 1.2778478114638774, - "hitmonlee": 1.8257141988609897, - "hitmonchan": 1.5755663349241482, - "lickitung": 1.9423580623615653, - "weezing": 1.2546032710910322, - "weezing-galar": 1.9829756470296658, - "rhydon": 2.352195437694879, - "chansey": 18.965404131256875, - "tangela": 8.44425919380304, - "kangaskhan": 1.7675330377218936, - "seadra": 4.740558864258044, - "seaking": 2.2286230379242964, - "starmie": 1.8949770929156564, - "mr-mime": 6.315730168111452, - "mr-mime-galar": 4.4971528768172835, - "scyther": 1.9474211503389207, - "jynx": 4.754867587930389, - "electabuzz": 2.4510870876928714, - "magmar": 1.1645295344718563, - "tauros": 2.1409711558370748, - "ditto": 3.7697821161147855, - "vaporeon": 3.0394802713198246, - "jolteon": 1.838029416849931, - "flareon": 1.563473640564193, - "porygon": 2.7756912489370085, - "dragonair": 1.7871771040880269, - "noctowl": 3.9078374764088113, - "lanturn": 1.9134682596678798, - "togetic": 4.20002519451105, - "xatu": 3.566441502655228, - "bellossom": 3.24190609533245, - "azumarill": 1.8118721025929982, - "sudowoodo": 2.537349883272258, - "politoed": 2.5067206075314967, - "quagsire": 5.138561754207208, - "slowking": 2.987865372643204, - "dunsparce": 3.0797317953471914, - "qwilfish": 2.738958088976279, - "sneasel": 2.667543826530291, - "piloswine": 1.597537505144696, - "octillery": 2.3614792814293617, - "mantine": 1.7377771756826264, - "skarmory": 1.3223187812966941, - "hitmontop": 2.274294726865145, - "miltank": 3.5795990338659056, - "grovyle": 10.921355917478555, - "sceptile": 1.8676977931598482, - "combusken": 2.5710303736442084, - "blaziken": 1.1243918278539033, - "marshtomp": 2.4835367394694523, - "swampert": 1.323828920449031, - "linoone": 4.86726566843306, - "linoone-galar": 6.021851102212368, - "pelipper": 4.500896210702596, - "ninjask": 5.9427039738734155, - "exploud": 1.6354020320687237, - "lairon": 1.6770698455292825, - "manectric": 1.7329503410545852, - "roselia": 3.9440250478302503, - "sharpedo": 6.423437309629618, - "wailmer": 6.086952964759968, - "torkoal": 1.35324751175443, - "flygon": 2.3415925484224616, - "altaria": 1.2018491412252938, - "whiscash": 1.9563499254736492, - "crawdaunt": 2.8966568048138432, - "claydol": 4.161729452531821, - "cradily": 2.9317814716370547, - "armaldo": 1.75553344744859, - "dusclops": 2.667141475611137, - "absol": 2.569268640989224, - "glalie": 3.919358079420326, - "sealeo": 3.182439072133503, - "relicanth": 1.7595291705341305, - "metang": 2.8675494693074315, - "luxray": 3.7474826657867792, - "vespiquen": 2.01872346254439, - "cherrim": 8.22833745626193, - "gastrodon": 1.8950290321122665, - "drifblim": 3.0770044213495398, - "lopunny": 3.306972014878982, - "skuntank": 1.3800816718425852, - "bronzong": 3.0253492375328923, - "munchlax": 1.8070484991384772, - "drapion": 2.460315924265532, - "abomasnow": 4.016398690612977, - "froslass": 2.368950311555471, - "rotom": 3.024903871181116, - "stoutland": 2.2622835268725363, - "liepard": 9.061883644602366, - "musharna": 2.066800457016569, - "unfezant": 4.179785063724914, - "boldore": 3.3988655725134764, - "swoobat": 5.109452591021383, - "audino": 2.15765003032105, - "gurdurr": 2.085729727069567, - "palpitoad": 3.838802685936673, - "seismitoad": 6.45439656741987, - "scolipede": 2.5228644708264154, - "whimsicott": 3.571965962298105, - "lilligant": 4.421019625953559, - "basculin-red-striped": 2.737602628870307, - "basculin-blue-striped": 3.6542039885724735, - "krookodile": 3.9241002684229804, - "maractus": 3.2744460818262398, - "crustle": 2.012619780341268, - "sigilyph": 2.2059476629174477, - "cofagrigus": 2.2137597513833795, - "garbodor": 1.5416842956366494, - "cinccino": 4.375611012560048, - "vanillish": 2.1241933885907254, - "emolga": 2.3345516870147334, - "escavalier": 1.4749764666266347, - "amoonguss": 2.635890524752149, - "jellicent": 1.1975205490877099, - "galvantula": 1.6270927094643852, - "klang": 2.2102325840160284, - "klinklang": 2.629583575106492, - "beheeyem": 2.2479964771401075, - "lampent": 1.4765709321271627, - "fraxure": 1.5338222540022497, - "beartic": 1.7706803957286805, - "cryogonal": 1.567620444030133, - "stunfisk": 1.316255603986301, - "stunfisk-galar": 1.99588962618073, - "mienshao": 2.612923480138286, - "druddigon": 1.6871173392760888, - "golurk": 1.574117847141791, - "bisharp": 2.4201724244968656, - "bouffalant": 1.2681468518869294, - "heatmor": 1.362983292356309, - "durant": 2.4943192920112978, - "diggersby": 3.1092662324164904, - "talonflame": 1.9772770661738353, - "pangoro": 1.781810171941423, - "doublade": 1.6338003006220294, - "malamar": 5.8329160149143835, - "barbaracle": 1.4695609163062016, - "heliolisk": 3.421057126486594, - "tyrantrum": 1.5888685098525857, - "aurorus": 2.1751763264188586, - "hawlucha": 2.709468828750531, - "dedenne": 2.5525009767252715, - "klefki": 2.103201209298591, - "trevenant": 3.2382539128583296, - "gourgeist-average": 5.13143214483063, - "charjabug": 4.20307166949212, - "vikavolt": 1.9142377108849393, - "ribombee": 4.147372084494354, - "lycanroc-midday": 2.682917316476757, - "lycanroc-midnight": 2.079091870465204, - "mudsdale": 1.6732345634199703, - "araquanid": 2.1030139913995383, - "lurantis": 3.3133149486109117, - "shiinotic": 4.87660483948228, - "salazzle": 2.203464284977101, - "bewear": 1.3933497345712167, - "tsareena": 3.884962002063246, - "comfey": 4.1639141478841895, - "oranguru": 3.32794017615959, - "passimian": 1.7620110664663398, - "palossand": 1.807545097815897, - "pyukumuku": 46.20883617301793, - "togedemaru": 1.7642071501404983, - "mimikyu-disguised": 2.751924255501304, - "greedent": 2.0622948686347726, - "orbeetle": 2.392033754557426, - "thievul": 2.0690104389301727, - "eldegoss": 5.34013310026849, - "dubwool": 3.0164166241414048, - "drednaw": 1.067750397624688, - "boltund": 4.648695026499169, - "carkol": 1.603385766040362, - "coalossal": 1.504602235044579, - "sandaconda": 3.3809078577825034, - "cramorant": 4.07106419081084, - "barraskewda": 4.481532777085816, - "toxtricity-amped": 2.188068400020942, - "centiskorch": 1.567289339654479, - "grapploct": 1.4962545237106473, - "polteageist": 2.1133758129964724, - "hatterene": 2.44907668272573, - "grimmsnarl": 3.9380970309588355, - "obstagoon": 3.33764395291628, - "perrserker": 2.6531423700724623, - "alcremie": 1.2064405138410534, - "falinks": 2.6725107405667146, - "pincurchin": 3.1122461383690587, - "frosmoth": 2.379474112367012, - "indeedee-male": 3.6670542446647425, - "morpeko": 3.6425954952834685, - "copperajah": 1.9624986437470269, - "duraludon": 1.3127929816264234, - "drakloak": 3.5243405900763944, - "accelgor": 2.9311882449955178 + "ivysaur": 3.3575440237685594, + "charmeleon": 2.853756190046945, + "wartortle": 2.8494378892754604, + "butterfree": 3.8106330021118318, + "raichu": 5.205469001170281, + "raichu-alola": 4.22692376422853, + "sandslash": 2.2175455120216703, + "sandslash-alola": 1.489363391421901, + "nidoqueen": 2.419832689328449, + "nidoking": 1.4295526624554848, + "clefairy": 7.662304152172265, + "clefable": 1.7158005072578668, + "jigglypuff": 23.965181491342165, + "wigglytuff": 1.771232051245844, + "gloom": 5.708002659274182, + "vileplume": 3.1768375744000945, + "dugtrio": 3.062966678598859, + "dugtrio-alola": 2.762273986213044, + "persian": 4.015027503842048, + "persian-alola": 5.529675142559672, + "golduck": 2.9797420652863176, + "poliwrath": 1.5382825748874718, + "kadabra": 4.399656995083872, + "machoke": 3.026636386196992, + "tentacruel": 1.8170743439012926, + "slowbro": 2.4235770788155, + "magneton": 2.6906062555984835, + "haunter": 3.304152465119804, + "kingler": 2.8486549312124216, + "exeggutor": 4.028737562596265, + "marowak": 3.217671555616791, + "marowak-alola": 1.2707736760125758, + "hitmonlee": 1.8202161928363858, + "hitmonchan": 1.569377636314694, + "lickitung": 1.9410506439822641, + "weezing": 1.2515891451992323, + "weezing-galar": 1.9767339299247142, + "rhydon": 2.3473922867643244, + "chansey": 18.888933163241077, + "tangela": 8.469388317494985, + "kangaskhan": 1.7643891086900463, + "seadra": 4.7407701025860725, + "seaking": 2.2238660776023518, + "starmie": 1.8946539197022276, + "mr-mime": 6.309812813994711, + "mr-mime-galar": 4.498306510252036, + "scyther": 1.9378845270759208, + "jynx": 4.751680573812025, + "electabuzz": 2.4483459640199445, + "magmar": 1.1596437894557952, + "tauros": 2.140567037868273, + "ditto": 3.744277331380796, + "vaporeon": 3.0364422164242155, + "jolteon": 1.8361257672160698, + "flareon": 1.5576700604691722, + "porygon": 2.7728847428322765, + "dragonair": 1.7845333501937752, + "noctowl": 3.88640261932853, + "lanturn": 1.9129705955942846, + "togetic": 4.183646534645888, + "xatu": 3.5585562793711274, + "bellossom": 3.2503869281736146, + "azumarill": 1.8081618360950524, + "sudowoodo": 2.5325927278666542, + "politoed": 2.504906459131204, + "quagsire": 5.141212180740994, + "slowking": 2.987114148774702, + "dunsparce": 3.0735765729821707, + "qwilfish": 2.7302934130998278, + "sneasel": 2.664685895925988, + "piloswine": 1.5952927201185, + "octillery": 2.359497893920314, + "mantine": 1.7307859167762218, + "skarmory": 1.3155727476361294, + "hitmontop": 2.2712868150360546, + "miltank": 3.573467337643704, + "grovyle": 10.952179911508608, + "sceptile": 1.8715287226577648, + "combusken": 2.563995053331381, + "blaziken": 1.1192015305816627, + "marshtomp": 2.4810673366161993, + "swampert": 1.3243527267236823, + "linoone": 4.8564185284541885, + "linoone-galar": 6.022344687370606, + "pelipper": 4.480742590638217, + "ninjask": 5.923628115132587, + "exploud": 1.6345995343382071, + "lairon": 1.6703787111789854, + "manectric": 1.7301167674829574, + "roselia": 3.9433613206297102, + "sharpedo": 6.421300655353162, + "wailmer": 6.073682266105833, + "torkoal": 1.348875271428132, + "flygon": 2.338197355152425, + "altaria": 1.1983441971001203, + "whiscash": 1.9520929961428175, + "crawdaunt": 2.898409523170061, + "claydol": 4.160402601739403, + "cradily": 2.9334679582035856, + "armaldo": 1.7515646799405769, + "dusclops": 2.659984704391739, + "absol": 2.568196080130571, + "glalie": 3.911482816730979, + "sealeo": 3.1794571219209438, + "relicanth": 1.7534448941348382, + "metang": 2.8621616930555738, + "luxray": 3.7425146208761086, + "vespiquen": 2.0099827490272766, + "cherrim": 8.248495824878026, + "gastrodon": 1.8890990074433844, + "drifblim": 3.066666798726704, + "lopunny": 3.298426839906698, + "skuntank": 1.3780212532475695, + "bronzong": 3.01988983135171, + "munchlax": 1.7999588059368437, + "drapion": 2.457449664685643, + "abomasnow": 4.0185780978092005, + "froslass": 2.363231214805312, + "rotom": 3.020242318583946, + "stoutland": 2.2567667636998894, + "liepard": 9.061949307538935, + "musharna": 2.0690070442461237, + "unfezant": 4.155348119795835, + "boldore": 3.3933985289615425, + "swoobat": 5.098230930969214, + "audino": 2.1539115146828305, + "gurdurr": 2.0859083673041674, + "palpitoad": 3.835758614640189, + "seismitoad": 6.446347191687263, + "scolipede": 2.514541674840971, + "whimsicott": 3.5731129847138305, + "lilligant": 4.433065737067687, + "basculin-red-striped": 2.7331261889108327, + "basculin-blue-striped": 3.6504220559867866, + "krookodile": 3.9284741292717893, + "maractus": 3.2846783605501724, + "crustle": 2.008460521905911, + "sigilyph": 2.201768907259903, + "cofagrigus": 2.2102233192050744, + "garbodor": 1.5376353628338661, + "cinccino": 4.367165260938776, + "vanillish": 2.122086702649481, + "emolga": 2.326418994220977, + "escavalier": 1.4711566616851846, + "amoonguss": 2.635998534879591, + "jellicent": 1.1947405799264401, + "galvantula": 1.6263216181251168, + "klang": 2.2037756223248692, + "klinklang": 2.6202446484363264, + "beheeyem": 2.2478463703672404, + "lampent": 1.4694482240750082, + "fraxure": 1.5310971414108385, + "beartic": 1.7700499624580768, + "cryogonal": 1.5653853348530136, + "accelgor": 2.9311882449955178, + "stunfisk": 1.3161752011349326, + "stunfisk-galar": 1.993001513013456, + "mienshao": 2.6042909238435255, + "druddigon": 1.6836065575589831, + "golurk": 1.5715308979763432, + "bisharp": 2.415630196453775, + "bouffalant": 1.2668389702356626, + "heatmor": 1.3573833667912192, + "durant": 2.486700262722712, + "diggersby": 3.1041874630961344, + "talonflame": 1.9671669783039178, + "pangoro": 1.7807974198726697, + "doublade": 1.627106167386898, + "malamar": 5.845884783333804, + "barbaracle": 1.465975297352026, + "heliolisk": 3.41749835206595, + "tyrantrum": 1.5856234407173049, + "aurorus": 2.1680954942039565, + "hawlucha": 2.7014039583085383, + "dedenne": 2.549725245859888, + "klefki": 2.095387072617504, + "trevenant": 3.2417863959374658, + "gourgeist-average": 5.123471973406534, + "charjabug": 4.2010012063994395, + "vikavolt": 1.9137321010557065, + "ribombee": 4.141513696588381, + "lycanroc-midday": 2.669997761150022, + "lycanroc-midnight": 2.0723649514945732, + "mudsdale": 1.6734160251146233, + "araquanid": 2.098555497475668, + "lurantis": 3.3186394533674273, + "shiinotic": 4.877731676117997, + "salazzle": 2.190868293089069, + "bewear": 1.3881906116436282, + "tsareena": 3.885246914779289, + "comfey": 4.163433474668439, + "oranguru": 3.3281849063736244, + "passimian": 1.7554746836081452, + "palossand": 1.805796411125573, + "pyukumuku": 46.233734461160026, + "togedemaru": 1.75751268824391, + "mimikyu-disguised": 2.7404675891340418, + "greedent": 2.0581586529843845, + "orbeetle": 2.393587435893406, + "thievul": 2.068091782958058, + "eldegoss": 5.353215565943766, + "dubwool": 3.0141836341063026, + "drednaw": 1.0645851756412346, + "boltund": 4.644031106566378, + "carkol": 1.5954091699160604, + "coalossal": 1.498242676934402, + "sandaconda": 3.3795215866804864, + "cramorant": 4.0561138944611494, + "barraskewda": 4.473782487331291, + "toxtricity-amped": 2.1827265774075997, + "centiskorch": 1.5619139743324684, + "grapploct": 1.4957745990960554, + "polteageist": 2.1087845924108066, + "hatterene": 2.447556818019837, + "grimmsnarl": 3.9401567147051395, + "obstagoon": 3.336999255269507, + "perrserker": 2.6457206731705516, + "alcremie": 1.2041103511409896, + "falinks": 2.667703391605392, + "pincurchin": 3.111430653125189, + "frosmoth": 2.372094864816057, + "indeedee-male": 3.664650950492755, + "morpeko": 3.6442958733864868, + "copperajah": 1.9580554169508235, + "duraludon": 1.3098991821456307, + "drakloak": 3.514122223339843 }, "stunfisk": { - "ivysaur": 3.0727104929281124, - "charmeleon": 5.335240287043597, - "wartortle": 3.4887841987763935, - "butterfree": 5.571403121062999, - "raichu": 7.261920268372915, - "raichu-alola": 4.584094086671403, - "sandslash": 2.5923972146056977, - "sandslash-alola": 3.0249310887869605, - "nidoqueen": 3.759837666958381, - "nidoking": 2.41134132110377, - "clefairy": 8.913093184410465, - "clefable": 2.2194672538309663, - "jigglypuff": 27.705731959815374, - "wigglytuff": 2.1389449320870737, - "gloom": 6.126434929311354, - "vileplume": 2.908468747973217, - "dugtrio": 3.86597482458064, - "dugtrio-alola": 4.48732224652057, - "persian": 4.408359749887836, - "persian-alola": 4.4732084175752735, - "golduck": 3.8875325352057244, - "poliwrath": 2.5101510388027517, - "kadabra": 3.796791660906586, - "machoke": 4.207118981616142, - "tentacruel": 2.7321460105846556, - "slowbro": 2.5901358906979874, - "magneton": 8.071658442519256, - "haunter": 4.460480146247871, - "kingler": 3.657353772165661, - "exeggutor": 1.6429779011409091, - "marowak": 3.471912951736088, - "marowak-alola": 3.1216882760468145, - "hitmonlee": 2.267846681292445, - "hitmonchan": 2.13190681933986, - "lickitung": 1.8864762455156456, - "weezing": 2.539266789107665, - "weezing-galar": 4.185334654755298, - "rhydon": 3.7937547430710223, - "chansey": 20.51850495516159, - "tangela": 4.2229941421440955, - "kangaskhan": 1.86846343698679, - "seadra": 6.383319030630879, - "seaking": 3.050744505746785, - "starmie": 1.9392053840602523, - "mr-mime": 6.63190019832758, - "mr-mime-galar": 3.437296752775833, - "scyther": 3.7017735063001416, - "jynx": 3.8993140299541187, - "electabuzz": 3.8256394431000302, - "magmar": 2.18912239136056, - "tauros": 2.109373222967765, - "ditto": 2.51899954718826, - "vaporeon": 3.8057063649932017, - "jolteon": 2.602789129308737, - "flareon": 2.993330677117803, - "porygon": 2.928594830604146, - "dragonair": 1.898507594600241, - "noctowl": 7.24374837447873, - "lanturn": 2.557430858779915, - "togetic": 7.053536235169463, - "xatu": 5.434992516634955, - "bellossom": 2.02013850673618, - "azumarill": 3.119964746506481, - "sudowoodo": 3.7491950564364567, - "politoed": 3.0525606594905126, - "quagsire": 4.760284733103587, - "slowking": 2.8963062109768964, - "dunsparce": 3.3961668059519923, - "qwilfish": 5.005212294729211, - "sneasel": 2.1960560303780525, - "piloswine": 1.7300791820552481, - "octillery": 3.20912707496397, - "mantine": 4.042839767781967, - "skarmory": 3.5106276410217103, - "hitmontop": 2.5331893261762075, - "miltank": 3.92501137828526, - "grovyle": 6.40146188206116, - "sceptile": 1.1692217787223194, - "combusken": 4.629415663083806, - "blaziken": 2.2298778495401956, - "marshtomp": 2.301717216905912, - "swampert": 1.1961186281297316, - "linoone": 5.372071434067816, - "linoone-galar": 4.904373962543827, - "pelipper": 13.981301927218194, - "ninjask": 9.727041277875788, - "exploud": 1.5935933260011281, - "lairon": 6.623384614588468, - "manectric": 2.592420191285969, - "roselia": 3.6741292792673272, - "sharpedo": 6.5673818740772045, - "wailmer": 8.857954432949386, - "torkoal": 3.03841309209332, - "flygon": 2.1935378275482824, - "altaria": 1.6810102689531359, - "whiscash": 2.024571528950628, - "crawdaunt": 2.796143155723406, - "claydol": 3.7647687319795113, - "cradily": 2.3226650533814404, - "armaldo": 2.108071523121402, - "dusclops": 3.5418799096600733, - "absol": 1.9837376886026403, - "glalie": 4.086566770017418, - "sealeo": 3.870797682079353, - "relicanth": 2.781678298164052, - "metang": 4.535997756786511, - "luxray": 5.729051184921092, - "vespiquen": 3.718816276670151, - "cherrim": 4.783281746618273, - "gastrodon": 2.1091703820224943, - "drifblim": 6.206764637304477, - "lopunny": 3.7834559607934857, - "skuntank": 2.118588197858002, - "bronzong": 3.3683070496248657, - "munchlax": 2.2380884110314865, - "drapion": 3.7616163362397312, - "abomasnow": 2.572021713123699, - "froslass": 2.820680969513762, - "rotom": 3.613822153851272, - "stoutland": 2.505917638159402, - "liepard": 7.286223847625685, - "musharna": 1.546636847065661, - "unfezant": 9.860011375281422, - "boldore": 5.1175939948615286, - "swoobat": 7.777264075514465, - "audino": 2.4162503412173315, - "gurdurr": 2.386237592923478, - "palpitoad": 3.752295669127358, - "seismitoad": 7.056455757078676, - "scolipede": 3.435233928911808, - "whimsicott": 2.722993088855768, - "lilligant": 2.536739025933424, - "basculin-red-striped": 3.6174856301500977, - "basculin-blue-striped": 4.789458324619743, - "krookodile": 3.110332659219097, - "maractus": 1.7892652145942234, - "crustle": 2.5225411903568276, - "sigilyph": 3.3302871661535285, - "cofagrigus": 2.8880257847259925, - "garbodor": 2.6316418088526055, - "cinccino": 4.540985276088808, - "vanillish": 2.0697015870953175, - "emolga": 3.684217605922333, - "escavalier": 1.7375916276388201, - "amoonguss": 2.5947052434034, - "jellicent": 1.9451355032387285, - "galvantula": 1.8657712697669624, - "klang": 4.4272748105696245, - "klinklang": 5.231782218845475, - "beheeyem": 1.8814207553800777, - "lampent": 3.728441233291165, - "fraxure": 1.6951191966393786, - "beartic": 1.6539553061257353, - "cryogonal": 1.4629465426028236, - "accelgor": 3.138338822628141, - "stunfisk-galar": 3.197789346555608, - "mienshao": 3.594276671665636, - "druddigon": 1.9129837568020072, - "golurk": 2.0538941109535083, - "bisharp": 3.644564383529152, - "bouffalant": 1.3617991026456067, - "heatmor": 2.6063839079232465, - "durant": 3.6869881687610553, - "diggersby": 3.3890652346905448, - "talonflame": 4.2501371359809, - "pangoro": 1.8591495893754693, - "doublade": 4.466824436656577, - "malamar": 3.1167432378850957, - "barbaracle": 1.939738848854814, - "heliolisk": 4.678697732834539, - "tyrantrum": 2.480428251833012, - "aurorus": 3.0373940525802983, - "hawlucha": 5.036135020447752, - "dedenne": 4.289562692327131, - "klefki": 4.66344543984874, - "trevenant": 2.3839994391855757, - "gourgeist-average": 4.669936501257993, - "charjabug": 4.3787638834977765, - "vikavolt": 1.7671587525667403, - "ribombee": 4.830424526321391, - "lycanroc-midday": 4.696933334790211, - "lycanroc-midnight": 3.219041773224386, - "mudsdale": 1.7453247185872536, - "araquanid": 2.912265505827471, - "lurantis": 2.0365897097389425, - "shiinotic": 3.867610236299279, - "salazzle": 6.439716153934931, - "bewear": 1.8995864343578757, - "tsareena": 2.5647249653525552, - "comfey": 4.341530780886167, - "oranguru": 2.708648930337108, - "passimian": 2.6224093175086045, - "palossand": 2.3438654437812527, - "pyukumuku": 61.35918285756945, - "togedemaru": 4.933873284632972, - "mimikyu-disguised": 4.021611420227248, - "greedent": 2.316591093201272, - "orbeetle": 1.9075370542926007, - "thievul": 1.8406042951999766, - "eldegoss": 3.14736522766943, - "dubwool": 2.983404534941109, - "drednaw": 1.817070231149008, - "boltund": 6.978185666407208, - "carkol": 5.035877880585447, - "coalossal": 3.9569974899014637, - "sandaconda": 3.6562228422036256, - "cramorant": 8.95573404418828, - "barraskewda": 6.2540359912746535, - "toxtricity-amped": 5.923389061063177, - "centiskorch": 2.185470376783558, - "grapploct": 1.7091670114167616, - "polteageist": 2.484223278872568, - "hatterene": 2.602120224679074, - "grimmsnarl": 3.973189687212005, - "obstagoon": 2.778675853004303, - "perrserker": 5.355420796869707, - "alcremie": 1.4346010543307979, - "falinks": 3.5082416297486594, - "pincurchin": 4.26529868632958, - "frosmoth": 2.7525962151864993, - "indeedee-male": 3.1585634271442613, - "morpeko": 4.010250130685289, - "copperajah": 3.529804844416383, - "duraludon": 2.891391111626154, - "drakloak": 4.7416388922358195, - "stunfisk": 1.6310916331919874 + "ivysaur": 3.0708236168602445, + "charmeleon": 5.353390116742894, + "wartortle": 3.4919218797870544, + "butterfree": 5.574372222687174, + "raichu": 7.281708993270134, + "raichu-alola": 4.595334896252288, + "sandslash": 2.595133140276415, + "sandslash-alola": 3.0319939496575534, + "nidoqueen": 3.766713752326117, + "nidoking": 2.414449322111307, + "clefairy": 8.921118702392912, + "clefable": 2.2245892171624755, + "jigglypuff": 27.753745423507375, + "wigglytuff": 2.14276989562861, + "gloom": 6.134318445085981, + "vileplume": 2.9069490127515643, + "dugtrio": 3.8639586996235487, + "dugtrio-alola": 4.494224373541026, + "persian": 4.413113359610678, + "persian-alola": 4.479472506262882, + "golduck": 3.889708711956227, + "poliwrath": 2.511877174230153, + "kadabra": 3.797663708128652, + "machoke": 4.217072463824801, + "tentacruel": 2.736167194028722, + "slowbro": 2.5970768322285274, + "magneton": 8.119090008522672, + "haunter": 4.460761868098195, + "kingler": 3.6628482860435634, + "exeggutor": 1.6399058603283359, + "marowak": 3.4738628849700945, + "marowak-alola": 3.135274748945113, + "hitmonlee": 2.269454286236016, + "hitmonchan": 2.134501730953705, + "lickitung": 1.8887498846188189, + "weezing": 2.5500637214736344, + "weezing-galar": 4.202372003394605, + "rhydon": 3.804452376468581, + "chansey": 20.475339530561058, + "tangela": 4.215999170381794, + "kangaskhan": 1.8700284640266083, + "seadra": 6.396219262029184, + "seaking": 3.0537107394315397, + "starmie": 1.943671790156905, + "mr-mime": 6.638140179640034, + "mr-mime-galar": 3.4368394562206777, + "scyther": 3.7081735382438206, + "jynx": 3.8911209518155534, + "electabuzz": 3.8407366262979847, + "magmar": 2.1957258421910115, + "tauros": 2.112115098988614, + "ditto": 2.5116284692551547, + "vaporeon": 3.80590442816208, + "jolteon": 2.6083937843334817, + "flareon": 3.000712141606625, + "porygon": 2.933296619491659, + "dragonair": 1.8995426964641142, + "noctowl": 7.254657034685708, + "lanturn": 2.5572889096686104, + "togetic": 7.065558004621682, + "xatu": 5.447621739279158, + "bellossom": 2.016946751029353, + "azumarill": 3.1268171770009845, + "sudowoodo": 3.762218468841864, + "politoed": 3.0534172123671603, + "quagsire": 4.75816120332397, + "slowking": 2.896525329272383, + "dunsparce": 3.4012020075271767, + "qwilfish": 5.021686937366743, + "sneasel": 2.19521250867823, + "piloswine": 1.7309181070488484, + "octillery": 3.2155781375191674, + "mantine": 4.048118425940873, + "skarmory": 3.52324082414754, + "hitmontop": 2.533341763909797, + "miltank": 3.932231232725274, + "grovyle": 6.388405988916202, + "sceptile": 1.1667326526130282, + "combusken": 4.645817921900257, + "blaziken": 2.2374799287800213, + "marshtomp": 2.29715947125137, + "swampert": 1.1945049316769059, + "linoone": 5.378580028453235, + "linoone-galar": 4.9100866944415404, + "pelipper": 14.029523308168542, + "ninjask": 9.735100357551573, + "exploud": 1.595018894193996, + "lairon": 6.6629216677364935, + "manectric": 2.5983554822379107, + "roselia": 3.6700211382923054, + "sharpedo": 6.575063340402108, + "wailmer": 8.874670479695654, + "torkoal": 3.0517100384389257, + "flygon": 2.1903646587130994, + "altaria": 1.6809886573131703, + "whiscash": 2.0239663545223063, + "crawdaunt": 2.8013885756838373, + "claydol": 3.7648404913203755, + "cradily": 2.3239598739906855, + "armaldo": 2.112740651562052, + "dusclops": 3.5495888112840452, + "absol": 1.9861751328514665, + "glalie": 4.08728435037162, + "sealeo": 3.8708570590964007, + "relicanth": 2.7915507385698044, + "metang": 4.555587925271169, + "luxray": 5.749549290047465, + "vespiquen": 3.72550497259427, + "cherrim": 4.773894750048969, + "gastrodon": 2.1075478348527534, + "drifblim": 6.22626273753013, + "lopunny": 3.7889456342741954, + "skuntank": 2.1258003390116555, + "bronzong": 3.372164495651479, + "munchlax": 2.2410081459687743, + "drapion": 3.7758413483912014, + "abomasnow": 2.5643546216865616, + "froslass": 2.8218882686664237, + "rotom": 3.619910948989096, + "stoutland": 2.5084890606155703, + "liepard": 7.297333795750696, + "musharna": 1.5478738181070373, + "unfezant": 9.893781481162279, + "boldore": 5.137420164124158, + "swoobat": 7.795185059030618, + "audino": 2.420206210854198, + "gurdurr": 2.3903445392670895, + "palpitoad": 3.7494897484465533, + "seismitoad": 7.063599605618071, + "scolipede": 3.44235957117226, + "whimsicott": 2.7211920348543046, + "lilligant": 2.5325701557850566, + "basculin-red-striped": 3.619010574077489, + "basculin-blue-striped": 4.793749066242739, + "krookodile": 3.1113748110670483, + "maractus": 1.7845044398215997, + "crustle": 2.531020382925136, + "sigilyph": 3.3385940416853277, + "cofagrigus": 2.896215732823748, + "garbodor": 2.6415358590760727, + "cinccino": 4.542449975305841, + "vanillish": 2.068637968123844, + "emolga": 3.696041147392034, + "escavalier": 1.7380921048781444, + "amoonguss": 2.5954444569242336, + "jellicent": 1.9464327564882047, + "galvantula": 1.871989319242064, + "klang": 4.450856484294734, + "klinklang": 5.252462226122286, + "beheeyem": 1.8844623081677079, + "lampent": 3.74406089315684, + "fraxure": 1.696312302854845, + "beartic": 1.6536681573885406, + "cryogonal": 1.4590062285399816, + "accelgor": 3.1406611203051353, + "stunfisk": 1.6310916331919874, + "stunfisk-galar": 3.2036364586979618, + "mienshao": 3.601819472892561, + "druddigon": 1.9146888676741565, + "golurk": 2.055662800336533, + "bisharp": 3.656751870460901, + "bouffalant": 1.364668037225247, + "heatmor": 2.6150435446424383, + "durant": 3.7020378631693225, + "diggersby": 3.3881117325251715, + "talonflame": 4.264452562160175, + "pangoro": 1.8627485132408454, + "doublade": 4.4911440712098525, + "malamar": 3.1237794294075085, + "barbaracle": 1.944067835898313, + "heliolisk": 4.684959171395338, + "tyrantrum": 2.487650865000507, + "aurorus": 3.043257856425598, + "hawlucha": 5.046641709409469, + "dedenne": 4.305085385623673, + "klefki": 4.682861475632626, + "trevenant": 2.3799466402205987, + "gourgeist-average": 4.672090360848361, + "charjabug": 4.388882592567899, + "vikavolt": 1.7678850540268805, + "ribombee": 4.835507122952951, + "lycanroc-midday": 4.715892699488643, + "lycanroc-midnight": 3.230011836701423, + "mudsdale": 1.7463901030921996, + "araquanid": 2.912821223441531, + "lurantis": 2.033677417457083, + "shiinotic": 3.8656100161337004, + "salazzle": 6.469157621763307, + "bewear": 1.9021621495363918, + "tsareena": 2.5605119868144803, + "comfey": 4.345145007016218, + "oranguru": 2.7113913356828965, + "passimian": 2.6303556172226887, + "palossand": 2.3462559183495313, + "pyukumuku": 61.50901194746133, + "togedemaru": 4.959011584248136, + "mimikyu-disguised": 4.028379151237088, + "greedent": 2.3210369364452834, + "orbeetle": 1.9088764660397948, + "thievul": 1.8427702945234314, + "eldegoss": 3.1403459763276036, + "dubwool": 2.985222165317006, + "drednaw": 1.822780691428856, + "boltund": 7.002996521290697, + "carkol": 5.062360007720283, + "coalossal": 3.9753172157464585, + "sandaconda": 3.6589973164352543, + "cramorant": 8.962646074691172, + "barraskewda": 6.262576767219236, + "toxtricity-amped": 5.951073603467911, + "centiskorch": 2.189023998366072, + "grapploct": 1.711849324008154, + "polteageist": 2.485545385469036, + "hatterene": 2.6065823758332245, + "grimmsnarl": 3.980766589507927, + "obstagoon": 2.7838412791605522, + "perrserker": 5.380522317834631, + "alcremie": 1.4360451913357348, + "falinks": 3.5172375483520653, + "pincurchin": 4.278044513029039, + "frosmoth": 2.7539184338933786, + "indeedee-male": 3.1615114042732575, + "morpeko": 4.023645051090507, + "copperajah": 3.5439454756225173, + "duraludon": 2.904731580910279, + "drakloak": 4.746259456082699 }, "stunfisk-galar": { - "ivysaur": 3.1967310736159815, - "charmeleon": 4.5104530759008234, - "wartortle": 2.440607475080796, - "butterfree": 4.612654407624428, - "raichu": 6.304757828608135, - "raichu-alola": 4.9051551196091605, - "sandslash": 2.353917164604611, - "sandslash-alola": 2.908645244775655, - "nidoqueen": 3.471185297328461, - "nidoking": 2.2742340307147235, - "clefairy": 8.216840602750697, - "clefable": 2.2717263656320754, - "jigglypuff": 27.81490939138576, - "wigglytuff": 2.177427237183866, - "gloom": 6.210797137177895, - "vileplume": 2.98839068084541, - "dugtrio": 3.6984197147419957, - "dugtrio-alola": 4.226200999724743, - "persian": 4.558320485216665, - "persian-alola": 4.2565737250987485, - "golduck": 2.844097324521814, - "poliwrath": 1.7855586549537652, - "kadabra": 5.100830870704649, - "machoke": 3.899776286905433, - "tentacruel": 2.536366344755584, - "slowbro": 1.954426709350455, - "magneton": 7.127844827626857, - "haunter": 5.268979985718589, - "kingler": 2.4496772077578433, - "exeggutor": 2.2349106766685933, - "marowak": 3.093911783862022, - "marowak-alola": 2.752305563920138, - "hitmonlee": 2.009976166164642, - "hitmonchan": 2.0233081836127975, - "lickitung": 1.8549975286560259, - "weezing": 2.1817265614660624, - "weezing-galar": 3.7787631285166374, - "rhydon": 3.198416260240876, - "chansey": 26.557303878453638, - "tangela": 4.66041974373465, - "kangaskhan": 1.891907158680663, - "seadra": 4.383456606418967, - "seaking": 2.3351442010959804, - "starmie": 1.7518706668106603, - "mr-mime": 7.056422166258722, - "mr-mime-galar": 4.408240530770832, - "scyther": 2.7836153894135336, - "jynx": 5.53757379575805, - "electabuzz": 3.5939445391737115, - "magmar": 1.8097577274679124, - "tauros": 2.0119969834306546, - "ditto": 4.5090572976929195, - "vaporeon": 2.8860903894736523, - "jolteon": 2.468610120825166, - "flareon": 2.46384348218881, - "porygon": 2.912463941155288, - "dragonair": 1.9700280037489277, - "noctowl": 6.024846681131749, - "lanturn": 2.294526668235147, - "togetic": 4.243191591001987, - "xatu": 4.693610873940276, - "bellossom": 2.348427614037743, - "azumarill": 2.1581462819625234, - "sudowoodo": 3.447026350352865, - "politoed": 2.2858139413503986, - "quagsire": 4.200645367638384, - "slowking": 2.935346649728614, - "dunsparce": 3.3667892237611143, - "qwilfish": 4.791831972974291, - "sneasel": 2.192462107035656, - "piloswine": 1.6010309085706769, - "octillery": 2.333697826848847, - "mantine": 2.2412886757791237, - "skarmory": 1.834125119120827, - "hitmontop": 2.4513103842495485, - "miltank": 4.045348446977735, - "grovyle": 7.3608843807824496, - "sceptile": 1.4123009465186853, - "combusken": 3.78797009974897, - "blaziken": 1.8615039586256157, - "marshtomp": 2.2659336920820956, - "swampert": 1.173980125376223, - "linoone": 5.46414164912631, - "linoone-galar": 4.673310644546261, - "pelipper": 5.771493998128271, - "ninjask": 7.548398604113654, - "exploud": 1.5960453482450956, - "lairon": 6.089413121472081, - "manectric": 2.363607042725117, - "roselia": 3.9567682003239018, - "sharpedo": 4.954675827025399, - "wailmer": 6.256427535311249, - "torkoal": 2.391712123555455, - "flygon": 2.37437447860959, - "altaria": 1.4911405043626291, - "whiscash": 1.898729280736928, - "crawdaunt": 1.950981146928752, - "claydol": 4.162350386004165, - "cradily": 2.373101833882327, - "armaldo": 1.9469413932521868, - "dusclops": 4.006879108413761, - "absol": 1.9466779083193426, - "glalie": 4.212145318296677, - "sealeo": 2.9419694514091543, - "relicanth": 2.6761842232746433, - "metang": 4.300291096682525, - "luxray": 5.5053400469446565, - "vespiquen": 2.660077485340717, - "cherrim": 5.516169725276098, - "gastrodon": 2.1217406948993967, - "drifblim": 5.75803144860569, - "lopunny": 3.6687375047006108, - "skuntank": 1.8632165634108513, - "bronzong": 4.110595119268365, - "munchlax": 2.4539809737163676, - "drapion": 3.5473033668868306, - "abomasnow": 3.164148585493506, - "froslass": 3.3850408018761895, - "rotom": 4.478725203365879, - "stoutland": 2.629271604464985, - "liepard": 7.247536891034557, - "musharna": 1.8269409616921628, - "unfezant": 6.275916718158156, - "boldore": 4.685373753229997, - "swoobat": 6.517909956581763, - "audino": 2.35464160232781, - "gurdurr": 2.1277298718886772, - "palpitoad": 3.499072159125769, - "seismitoad": 7.195519734037228, - "scolipede": 3.425494490056959, - "whimsicott": 2.8231843729160553, - "lilligant": 2.8660407515297655, - "basculin-red-striped": 2.724999879082625, - "basculin-blue-striped": 3.394825614523348, - "krookodile": 2.7353005369211685, - "maractus": 2.0767079220828775, - "crustle": 2.2268681402612645, - "sigilyph": 2.772900388744294, - "cofagrigus": 2.861958519967066, - "garbodor": 2.4718960563358405, - "cinccino": 4.800589749185736, - "vanillish": 2.1854894829742793, - "emolga": 3.267774068957892, - "escavalier": 1.779716138077088, - "amoonguss": 2.6842829735696876, - "jellicent": 1.990236460337286, - "galvantula": 1.7890482085031343, - "klang": 4.067555914386217, - "klinklang": 4.979746274868925, - "beheeyem": 2.2815959524932343, - "lampent": 2.911445832904464, - "fraxure": 1.746188641681822, - "beartic": 1.7095924166471836, - "cryogonal": 1.7462585797558183, - "accelgor": 3.252415325701657, - "stunfisk": 1.4752483499329516, - "mienshao": 3.362313731751625, - "druddigon": 1.8786231551800974, - "golurk": 2.1882869930063347, - "bisharp": 3.518978877134674, - "bouffalant": 1.309487805137326, - "heatmor": 2.2310098004401366, - "durant": 3.594977809132087, - "diggersby": 3.123986749335062, - "talonflame": 2.6980877800347622, - "pangoro": 1.7086684272599195, - "doublade": 3.917088537883571, - "malamar": 3.0440627447240143, - "barbaracle": 1.9202986494955177, - "heliolisk": 4.431398321147966, - "tyrantrum": 2.318504430095955, - "aurorus": 3.059788272219985, - "hawlucha": 3.0044323962378043, - "dedenne": 4.179942275280284, - "klefki": 4.414398515029387, - "trevenant": 3.645699624304445, - "gourgeist-average": 5.351412406959064, - "charjabug": 4.19161880135301, - "vikavolt": 1.7729670928863253, - "ribombee": 4.208119470482193, - "lycanroc-midday": 4.545107413493135, - "lycanroc-midnight": 2.985069131892825, - "mudsdale": 1.489932745082918, - "araquanid": 2.2891525405058966, - "lurantis": 2.4061125948125857, - "shiinotic": 3.9953625388299763, - "salazzle": 5.4851547610315805, - "bewear": 1.9489762176767957, - "tsareena": 3.121153222847074, - "comfey": 4.444707762817561, - "oranguru": 3.388875050697961, - "passimian": 2.4056761875856334, - "palossand": 2.0850942794733154, - "pyukumuku": 45.87063906285441, - "togedemaru": 4.49153605946721, - "mimikyu-disguised": 4.066585906306592, - "greedent": 2.353476758703419, - "orbeetle": 2.1632964970554887, - "thievul": 1.645476193066313, - "eldegoss": 3.7109191725418964, - "dubwool": 2.979567061804972, - "drednaw": 1.7593544267899892, - "boltund": 6.49394400049523, - "carkol": 4.346330013957985, - "coalossal": 3.3631566682070324, - "sandaconda": 3.2775370079260906, - "cramorant": 5.225738579234165, - "barraskewda": 4.638154138557908, - "toxtricity-amped": 5.601336694039769, - "centiskorch": 1.9816337998701952, - "grapploct": 1.5098660030477, - "polteageist": 3.4897913055709804, - "hatterene": 2.6395355779820155, - "grimmsnarl": 3.628098448926811, - "obstagoon": 2.758281333845683, - "perrserker": 4.9262125322834525, - "alcremie": 1.4142882324932458, - "falinks": 3.2762064524481636, - "pincurchin": 3.884651170670698, - "frosmoth": 2.8210959879485786, - "indeedee-male": 3.8581519751542177, - "morpeko": 3.78761128017005, - "copperajah": 3.141225399794677, - "duraludon": 2.7437763000148454, - "drakloak": 5.520768250257734, - "stunfisk-galar": 2.9211400825019282 + "ivysaur": 3.2006677147749625, + "charmeleon": 4.511015864637322, + "wartortle": 2.4371844074935334, + "butterfree": 4.613220663146417, + "raichu": 6.319807760806403, + "raichu-alola": 4.925858973077773, + "sandslash": 2.357299477391771, + "sandslash-alola": 2.9142513034697224, + "nidoqueen": 3.4765879786573772, + "nidoking": 2.277720199158306, + "clefairy": 8.207143945325805, + "clefable": 2.2760216980225874, + "jigglypuff": 27.852330647824818, + "wigglytuff": 2.180702036283825, + "gloom": 6.227363090483475, + "vileplume": 2.9919305425634173, + "dugtrio": 3.698862055377245, + "dugtrio-alola": 4.233377438548112, + "persian": 4.566664774004154, + "persian-alola": 4.257353852537824, + "golduck": 2.8420985979026208, + "poliwrath": 1.784132205451019, + "kadabra": 5.110090290766717, + "machoke": 3.9014946701940474, + "tentacruel": 2.536943061644124, + "slowbro": 1.9573882546238441, + "magneton": 7.164412872321247, + "haunter": 5.27053314729552, + "kingler": 2.4483554497006024, + "exeggutor": 2.237042894283793, + "marowak": 3.0951733503984427, + "marowak-alola": 2.758173580781448, + "hitmonlee": 2.00682931890809, + "hitmonchan": 2.023433332952129, + "lickitung": 1.8561215105378714, + "weezing": 2.1880068365724696, + "weezing-galar": 3.7879907604039857, + "rhydon": 3.2038442797491458, + "chansey": 26.548636220303436, + "tangela": 4.661740452695563, + "kangaskhan": 1.8944138472034604, + "seadra": 4.383480575861929, + "seaking": 2.3360240676494435, + "starmie": 1.7566845323073323, + "mr-mime": 7.066824570305887, + "mr-mime-galar": 4.414918605278348, + "scyther": 2.785978189251931, + "jynx": 5.543929645488259, + "electabuzz": 3.609296961427515, + "magmar": 1.8105699390666385, + "tauros": 2.012753783292972, + "ditto": 4.495782142053419, + "vaporeon": 2.8836051181722167, + "jolteon": 2.476369410149622, + "flareon": 2.4662295871366116, + "porygon": 2.9166434238898127, + "dragonair": 1.9744424218326444, + "noctowl": 6.028549198128223, + "lanturn": 2.296816569206432, + "togetic": 4.234345891594192, + "xatu": 4.701918102530768, + "bellossom": 2.34932160957438, + "azumarill": 2.1595885654346807, + "sudowoodo": 3.452764435727049, + "politoed": 2.2837809181549695, + "quagsire": 4.194343228598738, + "slowking": 2.9383758168100176, + "dunsparce": 3.371005189840823, + "qwilfish": 4.803142020997312, + "sneasel": 2.1921649153324596, + "piloswine": 1.6021458529875194, + "octillery": 2.3355355485835716, + "mantine": 2.23779336172434, + "skarmory": 1.835167598607552, + "hitmontop": 2.4491742874878346, + "miltank": 4.0546827236244845, + "grovyle": 7.354664509026337, + "sceptile": 1.4128517491809434, + "combusken": 3.7855498119946795, + "blaziken": 1.8610495756908938, + "marshtomp": 2.2640140660909958, + "swampert": 1.1730558783598222, + "linoone": 5.472663297874565, + "linoone-galar": 4.673096357536483, + "pelipper": 5.773309412237566, + "ninjask": 7.551088340087034, + "exploud": 1.5969199408370844, + "lairon": 6.11938143283383, + "manectric": 2.3693477072458258, + "roselia": 3.9596151541713054, + "sharpedo": 4.955112527863355, + "wailmer": 6.255651029760724, + "torkoal": 2.3932887238873892, + "flygon": 2.3753515887805676, + "altaria": 1.4902537137448206, + "whiscash": 1.8992483490671643, + "crawdaunt": 1.9510103303155744, + "claydol": 4.169943690160629, + "cradily": 2.3770033868261597, + "armaldo": 1.950217230117843, + "dusclops": 4.014538534324127, + "absol": 1.9472598180245893, + "glalie": 4.215823823423504, + "sealeo": 2.938652641387507, + "relicanth": 2.6816871232360864, + "metang": 4.319592009524829, + "luxray": 5.530221031453628, + "vespiquen": 2.660286625335807, + "cherrim": 5.515502703561902, + "gastrodon": 2.1236298042981585, + "drifblim": 5.773627446102807, + "lopunny": 3.6722589953081757, + "skuntank": 1.8669818357198338, + "bronzong": 4.121281223342999, + "munchlax": 2.4584013996191167, + "drapion": 3.5582970684971835, + "abomasnow": 3.1644716558602872, + "froslass": 3.389950378538548, + "rotom": 4.4853973706927786, + "stoutland": 2.635140460160761, + "liepard": 7.255390479423744, + "musharna": 1.8305733080427045, + "unfezant": 6.284391066278544, + "boldore": 4.694097750171181, + "swoobat": 6.527208457100962, + "audino": 2.3550001935323035, + "gurdurr": 2.125418495028044, + "palpitoad": 3.496080438537451, + "seismitoad": 7.2178779232066885, + "scolipede": 3.4327995796480035, + "whimsicott": 2.8238155653851553, + "lilligant": 2.8662155787160395, + "basculin-red-striped": 2.724997286858367, + "basculin-blue-striped": 3.392427902580012, + "krookodile": 2.7341265037588, + "maractus": 2.0770891841803567, + "crustle": 2.2304316365482375, + "sigilyph": 2.776873502621261, + "cofagrigus": 2.8662118443307576, + "garbodor": 2.480838026520447, + "cinccino": 4.808690762051938, + "vanillish": 2.1861483034360156, + "emolga": 3.2750791858748185, + "escavalier": 1.780549269444984, + "amoonguss": 2.690433672791233, + "jellicent": 1.9929560052827635, + "galvantula": 1.795077035642509, + "klang": 4.084743660012066, + "klinklang": 4.998128070696576, + "beheeyem": 2.2872725181772977, + "lampent": 2.912622806740208, + "fraxure": 1.7510143563528722, + "beartic": 1.709295617377168, + "cryogonal": 1.7446927456812622, + "accelgor": 3.2569293434699027, + "stunfisk": 1.4764112725620162, + "stunfisk-galar": 2.9211400825019282, + "mienshao": 3.3642314230363723, + "druddigon": 1.8819219240359053, + "golurk": 2.190535385459727, + "bisharp": 3.5295736878946133, + "bouffalant": 1.3115126446428838, + "heatmor": 2.2322590291394553, + "durant": 3.605976669046913, + "diggersby": 3.123747484003709, + "talonflame": 2.6961620414666, + "pangoro": 1.7080824798908307, + "doublade": 3.9310205522501063, + "malamar": 3.049728943227742, + "barbaracle": 1.9234075916895648, + "heliolisk": 4.442517469543924, + "tyrantrum": 2.324870318963611, + "aurorus": 3.0667580147783218, + "hawlucha": 3.000951839753122, + "dedenne": 4.194750074193971, + "klefki": 4.429513528613489, + "trevenant": 3.649672258242453, + "gourgeist-average": 5.350921884132058, + "charjabug": 4.2005178465281485, + "vikavolt": 1.774168912545444, + "ribombee": 4.210440930667516, + "lycanroc-midday": 4.562088713685144, + "lycanroc-midnight": 2.991538950288061, + "mudsdale": 1.4897504325715154, + "araquanid": 2.290182150219065, + "lurantis": 2.4081508142362282, + "shiinotic": 3.9965401022144755, + "salazzle": 5.495301952656862, + "bewear": 1.9520626758157267, + "tsareena": 3.124650069571859, + "comfey": 4.448649348637241, + "oranguru": 3.3971767492471425, + "passimian": 2.4077042092017873, + "palossand": 2.085833184884374, + "pyukumuku": 45.89887278541015, + "togedemaru": 4.515821409950426, + "mimikyu-disguised": 4.073147137036722, + "greedent": 2.3589834234456637, + "orbeetle": 2.1665918703031655, + "thievul": 1.644115697059446, + "eldegoss": 3.7099754055747516, + "dubwool": 2.981238386686873, + "drednaw": 1.7629635246667887, + "boltund": 6.516968939714408, + "carkol": 4.352870902796278, + "coalossal": 3.368080352935449, + "sandaconda": 3.280547252652249, + "cramorant": 5.219606767290148, + "barraskewda": 4.64221166298705, + "toxtricity-amped": 5.630037868476906, + "centiskorch": 1.9818202019953597, + "grapploct": 1.5075217714072267, + "polteageist": 3.497087933144989, + "hatterene": 2.6457611611964262, + "grimmsnarl": 3.626664417534683, + "obstagoon": 2.7618672859782367, + "perrserker": 4.944405190704259, + "alcremie": 1.4140915569367665, + "falinks": 3.2782690022897656, + "pincurchin": 3.8941192565164195, + "frosmoth": 2.8229453046749664, + "indeedee-male": 3.8615641032053434, + "morpeko": 3.7997277248439305, + "copperajah": 3.149780306487635, + "duraludon": 2.756778648856653, + "drakloak": 5.533191280649488 }, "mienshao": { - "ivysaur": 3.1052808925593043, - "charmeleon": 4.371778656171146, - "wartortle": 2.610492467481302, - "butterfree": 7.938857032949986, - "raichu": 5.145525552652686, - "raichu-alola": 3.222947791254551, - "sandslash": 2.2274537066877995, - "sandslash-alola": 4.044383941575953, - "nidoqueen": 2.6090343637740516, - "nidoking": 1.742321824420443, - "clefairy": 9.188884432151978, - "clefable": 2.172850410308506, - "jigglypuff": 22.47209789541057, - "wigglytuff": 1.7484036816911006, - "gloom": 4.877840466086848, - "vileplume": 2.9494318653947653, - "dugtrio": 4.0661377372544285, - "dugtrio-alola": 4.0490562622474116, - "persian": 4.587836338660162, - "persian-alola": 5.4726276316465965, - "golduck": 2.9125229130888792, - "poliwrath": 1.7977962421533606, - "kadabra": 3.577399997090999, - "machoke": 3.9507633773459676, - "tentacruel": 2.442720297188746, - "slowbro": 1.3810418421625004, - "magneton": 3.958449960023838, - "haunter": 3.8464210096842404, - "kingler": 2.4803244192023675, - "exeggutor": 1.6892544871896886, - "marowak": 2.983050876406227, - "marowak-alola": 2.1387956975881597, - "hitmonlee": 2.5179676219275087, - "hitmonchan": 2.1312526618975958, - "lickitung": 2.7463729357112103, - "weezing": 1.6294743104718066, - "weezing-galar": 2.0913631661847383, - "rhydon": 3.0512001424671817, - "chansey": 28.51012054503737, - "tangela": 4.988688181505822, - "kangaskhan": 2.183680960644649, - "seadra": 4.111866950544193, - "seaking": 2.2986386637212677, - "starmie": 1.9559479075323138, - "mr-mime": 5.746505979360691, - "mr-mime-galar": 3.86121860479515, - "scyther": 3.932021241014894, - "jynx": 5.116118889062246, - "electabuzz": 2.6799264961725227, - "magmar": 2.018654591435838, - "tauros": 2.544785427295661, - "ditto": 3.837664310364217, - "vaporeon": 3.224958310084917, - "jolteon": 2.028157222416587, - "flareon": 2.8674903874582056, - "porygon": 3.249496458826197, - "dragonair": 2.6974539072287143, - "noctowl": 6.339313524020664, - "lanturn": 1.9163702769414213, - "togetic": 5.581584495395937, - "xatu": 3.434248523237858, - "bellossom": 2.3786344555335623, - "azumarill": 1.9469944581322256, - "sudowoodo": 3.4022941067458508, - "politoed": 2.517633172777781, - "quagsire": 4.389692928833507, - "slowking": 2.253491876726265, - "dunsparce": 3.776533658355042, - "qwilfish": 3.021378666476758, - "sneasel": 3.5390350042076295, - "piloswine": 1.9480911280145154, - "octillery": 2.291317914098133, - "mantine": 2.819625824057887, - "skarmory": 2.004113701876374, - "hitmontop": 2.596134246826641, - "miltank": 4.131175775020567, - "grovyle": 7.86931907047534, - "sceptile": 1.5170598423471418, - "combusken": 3.2029777251655833, - "blaziken": 1.5559519774712607, - "marshtomp": 2.374869645030694, - "swampert": 1.2900202032679693, - "linoone": 6.175952462592747, - "linoone-galar": 8.504257238014723, - "pelipper": 5.665164512605256, - "ninjask": 12.570880099827491, - "exploud": 1.8254649255077031, - "lairon": 5.412863598769977, - "manectric": 1.715088442136114, - "roselia": 3.8165753189822835, - "sharpedo": 6.117236915780377, - "wailmer": 5.933083361259244, - "torkoal": 1.9576631522025467, - "flygon": 2.315690557638217, - "altaria": 2.403290573624392, - "whiscash": 1.8717183937998443, - "crawdaunt": 2.587144515300259, - "claydol": 2.936031082690567, - "cradily": 2.650882301487001, - "armaldo": 2.0940406516133403, - "dusclops": 2.9947863170146274, - "absol": 2.38283830762255, - "glalie": 4.97608402694895, - "sealeo": 3.701453213529178, - "relicanth": 2.5473611792948296, - "metang": 2.5005736193783554, - "luxray": 3.6019562580796833, - "vespiquen": 3.9504584118621335, - "cherrim": 5.55668628696358, - "gastrodon": 2.182528125539989, - "drifblim": 4.398782943559356, - "lopunny": 3.936348310377498, - "skuntank": 1.5477439518284475, - "bronzong": 2.4770953603956403, - "munchlax": 2.3871372394992125, - "drapion": 2.491756425982534, - "abomasnow": 3.592696218077093, - "froslass": 3.1912009615684163, - "rotom": 3.178836877515426, - "stoutland": 2.7588322647139303, - "liepard": 7.908271431209955, - "musharna": 1.266819206940207, - "unfezant": 5.5078039655358975, - "boldore": 4.630834350307161, - "swoobat": 4.916058436717472, - "audino": 2.4801842718903, - "gurdurr": 2.153755215015139, - "palpitoad": 3.5272184215581124, - "seismitoad": 5.999871170112916, - "scolipede": 3.63255857216954, - "whimsicott": 2.6026002954949368, - "lilligant": 2.9991641179943027, - "basculin-red-striped": 2.532985065073884, - "basculin-blue-striped": 3.564560488015684, - "krookodile": 3.587185537102915, - "maractus": 2.1425019730807406, - "crustle": 2.2684434945261023, - "sigilyph": 2.168959332191807, - "cofagrigus": 1.95424281325442, - "garbodor": 1.8852012481212295, - "cinccino": 5.291799137707807, - "vanillish": 3.5618748876930537, - "emolga": 3.211703421125587, - "escavalier": 1.7187688609603375, - "amoonguss": 2.4300081020366453, - "jellicent": 1.9751840704492472, - "galvantula": 1.8317896249165249, - "klang": 3.4791734481795675, - "klinklang": 4.221130639859906, - "beheeyem": 1.7058282188734275, - "lampent": 2.9265101352988596, - "fraxure": 1.5498233289926762, - "beartic": 1.9890180039872263, - "cryogonal": 2.208864312858205, - "accelgor": 4.0660583542202975, - "stunfisk": 1.3533377750183366, - "stunfisk-galar": 2.902395808313038, - "druddigon": 1.7080393223991548, - "golurk": 1.3921913723165211, - "bisharp": 4.468619508273909, - "bouffalant": 1.5657187936558496, - "heatmor": 2.1069253245679094, - "durant": 3.151825124410996, - "diggersby": 3.817880734624327, - "talonflame": 4.192514067578313, - "pangoro": 2.1738951359372143, - "doublade": 1.4915103786213189, - "malamar": 2.583526169356925, - "barbaracle": 1.7623774646448194, - "heliolisk": 3.83124353790699, - "tyrantrum": 2.129031976507885, - "aurorus": 3.584072429933031, - "hawlucha": 3.3508055485598476, - "dedenne": 2.806793601798366, - "klefki": 2.5196504683561223, - "trevenant": 2.619057557402612, - "gourgeist-average": 4.218146440721117, - "charjabug": 4.2708272080438014, - "vikavolt": 2.0714411030725435, - "ribombee": 5.139441961729746, - "lycanroc-midday": 4.206463418417959, - "lycanroc-midnight": 2.933397206295555, - "mudsdale": 1.5308087165401987, - "araquanid": 2.8871500883466092, - "lurantis": 2.3335690568005907, - "shiinotic": 3.722491086073323, - "salazzle": 3.6217565644156444, - "bewear": 2.173945461212122, - "tsareena": 2.736284576185522, - "comfey": 3.968281378149568, - "oranguru": 2.157042007874953, - "passimian": 2.1596301279830286, - "palossand": 1.4623530140606822, - "pyukumuku": 50.86313762406783, - "togedemaru": 2.587724156330699, - "mimikyu-disguised": 3.5630855291214396, - "greedent": 2.402581577706256, - "orbeetle": 1.871956436561912, - "thievul": 3.1756169083171986, - "eldegoss": 3.805070404201382, - "dubwool": 3.4515754795805664, - "drednaw": 1.6457681453510422, - "boltund": 4.725646467783434, - "carkol": 3.017234369039973, - "coalossal": 2.414569875456878, - "sandaconda": 3.121096621076756, - "cramorant": 6.911268696164575, - "barraskewda": 4.50751544284558, - "toxtricity-amped": 2.820676268158438, - "centiskorch": 3.368179353717715, - "grapploct": 1.741541809271581, - "polteageist": 2.327878764649757, - "hatterene": 1.9716680384608776, - "grimmsnarl": 4.017416840939621, - "obstagoon": 4.5254191982927345, - "perrserker": 4.460764136491165, - "alcremie": 1.4263747644582796, - "falinks": 3.1023490447702198, - "pincurchin": 2.8940126364456247, - "frosmoth": 4.184843811835789, - "indeedee-male": 2.96112072265041, - "morpeko": 3.2791904087504924, - "copperajah": 2.842409601986277, - "duraludon": 2.272594462172776, - "drakloak": 3.971649798318862, - "mienshao": 3.3142133614856895 + "ivysaur": 3.10241819672446, + "charmeleon": 4.374285555772598, + "wartortle": 2.6101052356419947, + "butterfree": 7.949785476987037, + "raichu": 5.145788558100097, + "raichu-alola": 3.21396598778559, + "sandslash": 2.2276821477929865, + "sandslash-alola": 4.053124547872744, + "nidoqueen": 2.605182867864216, + "nidoking": 1.7402458558262988, + "clefairy": 9.185855201626666, + "clefable": 2.1683065579569547, + "jigglypuff": 22.40589194137754, + "wigglytuff": 1.7444172409252823, + "gloom": 4.863161522295185, + "vileplume": 2.949101728567218, + "dugtrio": 4.066711907196716, + "dugtrio-alola": 4.0503249275091955, + "persian": 4.583470690906564, + "persian-alola": 5.485519785867307, + "golduck": 2.911006510830317, + "poliwrath": 1.796433413017109, + "kadabra": 3.564620065709227, + "machoke": 3.9536678590101153, + "tentacruel": 2.4414389828850616, + "slowbro": 1.375422554315471, + "magneton": 3.958279234882317, + "haunter": 3.833767277576649, + "kingler": 2.4792466511878843, + "exeggutor": 1.6846265555662692, + "marowak": 2.9824010680483735, + "marowak-alola": 2.135099543259783, + "hitmonlee": 2.5170645341970848, + "hitmonchan": 2.130121969456949, + "lickitung": 2.750528893831377, + "weezing": 1.6278243592341712, + "weezing-galar": 2.0847732929829776, + "rhydon": 3.052117395445355, + "chansey": 28.483109247832207, + "tangela": 4.984255318633149, + "kangaskhan": 2.185246690322173, + "seadra": 4.108278328357762, + "seaking": 2.2966957850129637, + "starmie": 1.951031460237247, + "mr-mime": 5.7208122196560796, + "mr-mime-galar": 3.852342598461302, + "scyther": 3.930935241915824, + "jynx": 5.111658356800781, + "electabuzz": 2.6790885513692535, + "magmar": 2.0204375860596993, + "tauros": 2.547287328588814, + "ditto": 3.8096303046752347, + "vaporeon": 3.22430252552574, + "jolteon": 2.0280412940546686, + "flareon": 2.870538361825301, + "porygon": 3.2515866644456137, + "dragonair": 2.6972509112543697, + "noctowl": 6.329260516069603, + "lanturn": 1.916926942026051, + "togetic": 5.572594459698436, + "xatu": 3.420166283737391, + "bellossom": 2.374362436599801, + "azumarill": 1.9440290200240287, + "sudowoodo": 3.40650861206891, + "politoed": 2.5169810674226483, + "quagsire": 4.386709451038771, + "slowking": 2.2479872816703823, + "dunsparce": 3.777395831150743, + "qwilfish": 3.017485614478953, + "sneasel": 3.5495573597033765, + "piloswine": 1.9501922905380575, + "octillery": 2.2913607929155084, + "mantine": 2.816763380355307, + "skarmory": 2.003238910166356, + "hitmontop": 2.594874057046022, + "miltank": 4.12615804706647, + "grovyle": 7.8667411347142595, + "sceptile": 1.5168947111398212, + "combusken": 3.2029730273810557, + "blaziken": 1.55600570836264, + "marshtomp": 2.373358811549698, + "swampert": 1.2893831500719664, + "linoone": 6.180695493237911, + "linoone-galar": 8.53420934253094, + "pelipper": 5.65165118274426, + "ninjask": 12.598112862058363, + "exploud": 1.8259517641217378, + "lairon": 5.425177591810509, + "manectric": 1.7140550475242073, + "roselia": 3.8092531515444095, + "sharpedo": 6.125158927481092, + "wailmer": 5.925705351342112, + "torkoal": 1.958868476259224, + "flygon": 2.3146035321206977, + "altaria": 2.4015699071303622, + "whiscash": 1.8670282087426215, + "crawdaunt": 2.5906066066168427, + "claydol": 2.926545251770354, + "cradily": 2.652290729447568, + "armaldo": 2.0969013598384265, + "dusclops": 2.987593779353448, + "absol": 2.3861340579766823, + "glalie": 4.984394881295886, + "sealeo": 3.7053216025754305, + "relicanth": 2.5497708689910885, + "metang": 2.4940000483986995, + "luxray": 3.5996361323022166, + "vespiquen": 3.9497188146042173, + "cherrim": 5.552841108543961, + "gastrodon": 2.1825539746923828, + "drifblim": 4.382513749256005, + "lopunny": 3.9343492042143584, + "skuntank": 1.5506807871560686, + "bronzong": 2.468610821743126, + "munchlax": 2.3880870559888825, + "drapion": 2.495787590097698, + "abomasnow": 3.593800798494599, + "froslass": 3.185676333825103, + "rotom": 3.170089905266246, + "stoutland": 2.758263415271766, + "liepard": 7.908256599843968, + "musharna": 1.2619026722906896, + "unfezant": 5.493347406279764, + "boldore": 4.637242169150483, + "swoobat": 4.89588545126966, + "audino": 2.4794845639391836, + "gurdurr": 2.1525357022359244, + "palpitoad": 3.5230724285161816, + "seismitoad": 5.991339460705495, + "scolipede": 3.636540101015794, + "whimsicott": 2.594467722255169, + "lilligant": 2.9995948811875834, + "basculin-red-striped": 2.5296595849190524, + "basculin-blue-striped": 3.5655462070241364, + "krookodile": 3.5928695943634326, + "maractus": 2.142803480662951, + "crustle": 2.271381434008723, + "sigilyph": 2.1614695527011687, + "cofagrigus": 1.9447040352294562, + "garbodor": 1.8831247962508861, + "cinccino": 5.292783099096376, + "vanillish": 3.5683385410090787, + "emolga": 3.208966017277348, + "escavalier": 1.7189320151200178, + "amoonguss": 2.427208098902912, + "jellicent": 1.9661825254324523, + "galvantula": 1.8326903333203988, + "klang": 3.4816912230336525, + "klinklang": 4.220997080641128, + "beheeyem": 1.7028477664381865, + "lampent": 2.9232894046510376, + "fraxure": 1.5496168925622538, + "beartic": 1.990962089752153, + "cryogonal": 2.2118948517243737, + "accelgor": 4.073262539500881, + "stunfisk": 1.3522483484991876, + "stunfisk-galar": 2.904114159214347, + "mienshao": 3.3142133614856895, + "druddigon": 1.7072887085393522, + "golurk": 1.3869531773568755, + "bisharp": 4.4729351052223345, + "bouffalant": 1.5677065301823478, + "heatmor": 2.1089678859325844, + "durant": 3.152237496105814, + "diggersby": 3.8206596602692566, + "talonflame": 4.190244601823186, + "pangoro": 2.17655523577686, + "doublade": 1.4839423063636539, + "malamar": 2.5800185310266865, + "barbaracle": 1.7612692088246935, + "heliolisk": 3.8332896937688137, + "tyrantrum": 2.130567412814731, + "aurorus": 3.5896928126976775, + "hawlucha": 3.349443066776735, + "dedenne": 2.8004043230967453, + "klefki": 2.513310694093586, + "trevenant": 2.611685216097241, + "gourgeist-average": 4.204718769537922, + "charjabug": 4.269876467805329, + "vikavolt": 2.073347223193184, + "ribombee": 5.1353023807783265, + "lycanroc-midday": 4.214366623601274, + "lycanroc-midnight": 2.9381916566207735, + "mudsdale": 1.5306195181132716, + "araquanid": 2.8900708611807433, + "lurantis": 2.3330193974361424, + "shiinotic": 3.708929516950614, + "salazzle": 3.6213135074445346, + "bewear": 2.173875527413098, + "tsareena": 2.7314900480381894, + "comfey": 3.9591287623580724, + "oranguru": 2.1480388118005576, + "passimian": 2.1575184814624047, + "palossand": 1.456371533091898, + "pyukumuku": 50.89436685016935, + "togedemaru": 2.587034684078945, + "mimikyu-disguised": 3.552585500794086, + "greedent": 2.4001033415555915, + "orbeetle": 1.8656264226230672, + "thievul": 3.184426157750219, + "eldegoss": 3.8026496761894855, + "dubwool": 3.4522318514467454, + "drednaw": 1.6470907109943593, + "boltund": 4.72929829897498, + "carkol": 3.0209492364282324, + "coalossal": 2.417196364656518, + "sandaconda": 3.1202292223303227, + "cramorant": 6.918991406501299, + "barraskewda": 4.508264718475681, + "toxtricity-amped": 2.8164781524459896, + "centiskorch": 3.3707523611600387, + "grapploct": 1.7405590641538258, + "polteageist": 2.319255160272424, + "hatterene": 1.9624503789583996, + "grimmsnarl": 4.023320389852042, + "obstagoon": 4.534470304120807, + "perrserker": 4.465933668374882, + "alcremie": 1.4238794137597426, + "falinks": 3.101830129665041, + "pincurchin": 2.89331550633195, + "frosmoth": 4.182542277375487, + "indeedee-male": 2.9548806305010475, + "morpeko": 3.28262400369435, + "copperajah": 2.8427524560239297, + "duraludon": 2.274102613690204, + "drakloak": 3.961376126623982 }, "druddigon": { - "ivysaur": 3.9690749832870953, - "charmeleon": 4.740220902681388, - "wartortle": 2.712561675055902, - "butterfree": 5.633962475700663, - "raichu": 6.807395192806206, - "raichu-alola": 4.955488111573543, - "sandslash": 1.9530424891750693, - "sandslash-alola": 2.0338492292306842, - "nidoqueen": 3.2234842253947393, - "nidoking": 2.146683794789106, - "clefairy": 13.599226336955075, - "clefable": 2.360354101917908, - "jigglypuff": 32.003202895498866, - "wigglytuff": 2.332212554056375, - "gloom": 6.059307189270687, - "vileplume": 3.5519125692643394, - "dugtrio": 3.780128051018827, - "dugtrio-alola": 4.177730907601992, - "persian": 4.070786727432759, - "persian-alola": 4.23887803903908, - "golduck": 3.1781066805054943, - "poliwrath": 2.217481475584899, - "kadabra": 5.113817179677379, - "machoke": 4.3290751099921945, - "tentacruel": 3.2796313153885652, - "slowbro": 2.1245602918488933, - "magneton": 5.105522464226646, - "haunter": 6.360011878090473, - "kingler": 2.2643450413351216, - "exeggutor": 2.37887432725254, - "marowak": 2.895822344303768, - "marowak-alola": 2.5422223567720676, - "hitmonlee": 3.127366980695279, - "hitmonchan": 2.581127480051096, - "lickitung": 1.8478651013670635, - "weezing": 1.7478166046378003, - "weezing-galar": 2.8773439530391585, - "rhydon": 2.377762283030625, - "chansey": 29.45594032031537, - "tangela": 5.017203716680061, - "kangaskhan": 1.726394455056316, - "seadra": 3.6848826599041296, - "seaking": 2.52272749408528, - "starmie": 1.6234131789023545, - "mr-mime": 9.755815498005058, - "mr-mime-galar": 4.259352156907836, - "scyther": 3.0395793254119443, - "jynx": 5.659592613226364, - "electabuzz": 3.515727217728609, - "magmar": 2.2663656893181336, - "tauros": 1.9052441719614759, - "ditto": 2.2616647794687967, - "vaporeon": 3.474277853647524, - "jolteon": 2.549500199003457, - "flareon": 3.3641566947678854, - "porygon": 2.695137156005956, - "dragonair": 1.611814206107621, - "noctowl": 6.156622155764847, - "lanturn": 2.634532397224251, - "togetic": 6.906945874079497, - "xatu": 4.78415848818653, - "bellossom": 2.44891960049336, - "azumarill": 2.1764240545254245, - "sudowoodo": 2.8667613185755583, - "politoed": 2.6773115302913126, - "quagsire": 4.601832498726046, - "slowking": 3.2290427248100313, - "dunsparce": 3.0578313308117693, - "qwilfish": 3.8572436345917867, - "sneasel": 2.803348378675863, - "piloswine": 1.7099170586601566, - "octillery": 2.373737384903452, - "mantine": 2.73612699500483, - "skarmory": 1.7835798616358698, - "hitmontop": 2.9937899652429882, - "miltank": 3.1434800234513514, - "grovyle": 9.969627616839947, - "sceptile": 1.6685887008031912, - "combusken": 4.309437167804209, - "blaziken": 2.1276777365917843, - "marshtomp": 2.460493709685183, - "swampert": 1.1703879390609293, - "linoone": 5.072168567126271, - "linoone-galar": 4.592141039667203, - "pelipper": 5.654472590876733, - "ninjask": 8.541151577151776, - "exploud": 1.5084578872793089, - "lairon": 2.997312073423317, - "manectric": 2.175607697427155, - "roselia": 5.1640248996601885, - "sharpedo": 4.803587429349525, - "wailmer": 6.690563280947523, - "torkoal": 2.114918472459557, - "flygon": 2.1983126647259175, - "altaria": 1.5065594345136937, - "whiscash": 2.168296304068829, - "crawdaunt": 1.9655831960118144, - "claydol": 4.221046618468605, - "cradily": 2.9725798262709873, - "armaldo": 2.239871321642269, - "dusclops": 4.346945222049468, - "absol": 1.862159993306303, - "glalie": 4.820122449297001, - "sealeo": 3.06833350973557, - "relicanth": 1.9521508997373718, - "metang": 3.6181478852859392, - "luxray": 4.696995871170886, - "vespiquen": 3.0580907848914354, - "cherrim": 7.053689799062653, - "gastrodon": 2.218670351316992, - "drifblim": 5.913374897040622, - "lopunny": 3.646341941105832, - "skuntank": 1.7561195635793423, - "bronzong": 4.0951356139781545, - "munchlax": 2.514422339823992, - "drapion": 2.6723405029029887, - "abomasnow": 3.8482254538337934, - "froslass": 3.393468123823004, - "rotom": 5.135943002882604, - "stoutland": 2.35450267745925, - "liepard": 6.478043495786383, - "musharna": 2.0017413784576514, - "unfezant": 5.894014506299993, - "boldore": 3.4375892062204922, - "swoobat": 6.849682072095737, - "audino": 2.2030360271757368, - "gurdurr": 2.3187266294160507, - "palpitoad": 3.8239575598086866, - "seismitoad": 6.207439547523709, - "scolipede": 3.454498260121917, - "whimsicott": 3.791766506421913, - "lilligant": 3.6205549393103897, - "basculin-red-striped": 2.741253468048952, - "basculin-blue-striped": 3.690503980137769, - "krookodile": 2.7437974344946054, - "maractus": 2.6788640167755764, - "crustle": 2.3415493425640284, - "sigilyph": 2.9063063657536583, - "cofagrigus": 3.1099403258971994, - "garbodor": 2.1637219158810646, - "cinccino": 4.252635096264775, - "vanillish": 2.4574080190347147, - "emolga": 3.193259546281557, - "escavalier": 1.8252801488036834, - "amoonguss": 3.041905179754291, - "jellicent": 1.9347845092138218, - "galvantula": 1.6547397678606792, - "klang": 3.320469006108543, - "klinklang": 3.7418492229871254, - "beheeyem": 2.3604245019114014, - "lampent": 3.6404719566058645, - "fraxure": 1.2987527253178892, - "beartic": 1.941513847976901, - "cryogonal": 2.247703054155797, - "accelgor": 3.728629456942549, - "stunfisk": 1.6302480279305076, - "stunfisk-galar": 2.598322369665691, - "mienshao": 3.8479083402171756, - "golurk": 2.3624070383333247, - "bisharp": 2.6659549523212314, - "bouffalant": 1.2671055491039471, - "heatmor": 2.4155922075134537, - "durant": 2.663247911305857, - "diggersby": 3.1659714085376773, - "talonflame": 2.937711407623418, - "pangoro": 1.9617089554961922, - "doublade": 2.401359009732716, - "malamar": 2.779974725353412, - "barbaracle": 1.56345427835425, - "heliolisk": 4.877775630940442, - "tyrantrum": 1.66828909102161, - "aurorus": 4.07447962811518, - "hawlucha": 3.8640023410452136, - "dedenne": 3.1732936087087307, - "klefki": 3.4270099287401026, - "trevenant": 4.076195514702857, - "gourgeist-average": 6.142563389117551, - "charjabug": 3.901479091037305, - "vikavolt": 1.782725365785406, - "ribombee": 5.789885886507895, - "lycanroc-midday": 4.157702785025629, - "lycanroc-midnight": 2.929518789767392, - "mudsdale": 1.5111711954400158, - "araquanid": 2.9751993565513226, - "lurantis": 2.7990585879595677, - "shiinotic": 5.25490712711002, - "salazzle": 5.326093966418851, - "bewear": 1.9062673581096465, - "tsareena": 3.6633955013208572, - "comfey": 5.775615486423289, - "oranguru": 3.5491618190007364, - "passimian": 2.4675167441156396, - "palossand": 2.3618833174311265, - "pyukumuku": 40.96118745553241, - "togedemaru": 4.04346548287449, - "mimikyu-disguised": 5.624924674965258, - "greedent": 2.022043075395531, - "orbeetle": 2.282791177859556, - "thievul": 1.9527104246129772, - "eldegoss": 4.88187402892241, - "dubwool": 2.9090652582461574, - "drednaw": 1.4278117220190036, - "boltund": 5.75587822331868, - "carkol": 3.6099826462876416, - "coalossal": 2.9709789940529285, - "sandaconda": 2.7038325103657797, - "cramorant": 5.955861070943254, - "barraskewda": 4.3030583280395724, - "toxtricity-amped": 4.537172950575917, - "centiskorch": 2.5230206167530445, - "grapploct": 1.9452266827014713, - "polteageist": 4.004169752742603, - "hatterene": 3.0630678565648704, - "grimmsnarl": 5.102123744543231, - "obstagoon": 2.468329012717941, - "perrserker": 3.5416348044900055, - "alcremie": 1.8622819588568595, - "falinks": 3.2457239042414905, - "pincurchin": 3.591108215561798, - "frosmoth": 3.4769832738422517, - "indeedee-male": 4.485951054971681, - "morpeko": 3.2847563268471043, - "copperajah": 2.8336987209751325, - "duraludon": 1.4852009153048615, - "drakloak": 5.505088929167267, - "druddigon": 1.7975777933380643 + "ivysaur": 3.983283825048823, + "charmeleon": 4.749064908495561, + "wartortle": 2.716114007350223, + "butterfree": 5.646459246914098, + "raichu": 6.8245246236414765, + "raichu-alola": 4.968091651307864, + "sandslash": 1.953590914627892, + "sandslash-alola": 2.032464109742212, + "nidoqueen": 3.2289824278364625, + "nidoking": 2.1508928169317034, + "clefairy": 13.65439031344425, + "clefable": 2.362279076509097, + "jigglypuff": 31.994167380502354, + "wigglytuff": 2.333816575682588, + "gloom": 6.063474047033556, + "vileplume": 3.5631303078285446, + "dugtrio": 3.7876886391107636, + "dugtrio-alola": 4.183413795983578, + "persian": 4.071774980753407, + "persian-alola": 4.2422454754659835, + "golduck": 3.184144866878017, + "poliwrath": 2.22162994727423, + "kadabra": 5.122441431310861, + "machoke": 4.3365815680489606, + "tentacruel": 3.29055873190113, + "slowbro": 2.1275901428825743, + "magneton": 5.114534279231876, + "haunter": 6.380207838133487, + "kingler": 2.265465743844162, + "exeggutor": 2.3844218723085167, + "marowak": 2.8982781890103997, + "marowak-alola": 2.549669525881522, + "hitmonlee": 3.1374533414013146, + "hitmonchan": 2.587090649990972, + "lickitung": 1.8500386708893224, + "weezing": 1.7502643616859683, + "weezing-galar": 2.879718080235997, + "rhydon": 2.3779735970675886, + "chansey": 29.52663078538389, + "tangela": 5.023642998378468, + "kangaskhan": 1.7267384351436985, + "seadra": 3.6823012025282793, + "seaking": 2.527301137773961, + "starmie": 1.624087728538742, + "mr-mime": 9.782306549388185, + "mr-mime-galar": 4.2658691224651095, + "scyther": 3.043589091705729, + "jynx": 5.66704023813734, + "electabuzz": 3.5242515596166992, + "magmar": 2.273005980627543, + "tauros": 1.9069725093321446, + "ditto": 2.253785347102748, + "vaporeon": 3.4830807842483127, + "jolteon": 2.5551062445520154, + "flareon": 3.3734643356319527, + "porygon": 2.6970234768965, + "dragonair": 1.6110929127357372, + "noctowl": 6.165223197382332, + "lanturn": 2.642639574788677, + "togetic": 6.915372689518616, + "xatu": 4.791101102569067, + "bellossom": 2.452697482546113, + "azumarill": 2.1809615977606254, + "sudowoodo": 2.8704959548317186, + "politoed": 2.682426727221919, + "quagsire": 4.6088100247095705, + "slowking": 3.2340723601954577, + "dunsparce": 3.0592670334583207, + "qwilfish": 3.863315262102983, + "sneasel": 2.804585776963057, + "piloswine": 1.7106807225939007, + "octillery": 2.3771285869023755, + "mantine": 2.7423626211500602, + "skarmory": 1.782778047605754, + "hitmontop": 2.997576149933748, + "miltank": 3.1412922008839956, + "grovyle": 10.002729492826063, + "sceptile": 1.6732549093084996, + "combusken": 4.320210293239786, + "blaziken": 2.1338403485642123, + "marshtomp": 2.4633923547698315, + "swampert": 1.1714629904552916, + "linoone": 5.077192959181175, + "linoone-galar": 4.593867240540317, + "pelipper": 5.651894449219087, + "ninjask": 8.553116929823748, + "exploud": 1.5094207686944274, + "lairon": 2.99872044314386, + "manectric": 2.1804279961729245, + "roselia": 5.183202820259988, + "sharpedo": 4.80224167865275, + "wailmer": 6.702576152975054, + "torkoal": 2.118711089881198, + "flygon": 2.1971648396486856, + "altaria": 1.505463393901917, + "whiscash": 2.1714260170201203, + "crawdaunt": 1.9657784895510928, + "claydol": 4.2267234424958255, + "cradily": 2.980408705889565, + "armaldo": 2.244012658264384, + "dusclops": 4.357707257823707, + "absol": 1.8633155669336512, + "glalie": 4.822182892540177, + "sealeo": 3.070513520309147, + "relicanth": 1.9522508269371859, + "metang": 3.6254114786911256, + "luxray": 4.704713943271606, + "vespiquen": 3.0623269429149396, + "cherrim": 7.073553758132265, + "gastrodon": 2.222263204137424, + "drifblim": 5.930089861883252, + "lopunny": 3.6511296250499337, + "skuntank": 1.7597114422022386, + "bronzong": 4.09984936375176, + "munchlax": 2.5217986517771616, + "drapion": 2.6758124977496234, + "abomasnow": 3.8534873582943114, + "froslass": 3.3981371772448847, + "rotom": 5.147737693709045, + "stoutland": 2.356161810319973, + "liepard": 6.475382072304021, + "musharna": 2.006513373757783, + "unfezant": 5.8972265159589, + "boldore": 3.4401971585319657, + "swoobat": 6.8596284386032895, + "audino": 2.2052872995563026, + "gurdurr": 2.3213896597085553, + "palpitoad": 3.8297753427348002, + "seismitoad": 6.209297748798363, + "scolipede": 3.4605346273377524, + "whimsicott": 3.798199168272343, + "lilligant": 3.6304634771658795, + "basculin-red-striped": 2.7439136885855104, + "basculin-blue-striped": 3.697241262643108, + "krookodile": 2.745420623856899, + "maractus": 2.6879053144026885, + "crustle": 2.344882263657613, + "sigilyph": 2.9104815382707887, + "cofagrigus": 3.116014504840485, + "garbodor": 2.167671768084163, + "cinccino": 4.252463709669916, + "vanillish": 2.456777650290938, + "emolga": 3.196910038087739, + "escavalier": 1.8285871235465603, + "amoonguss": 3.0506319624558293, + "jellicent": 1.937848488329128, + "galvantula": 1.6581548857869002, + "klang": 3.3262860930474734, + "klinklang": 3.74422357844675, + "beheeyem": 2.365404191252578, + "lampent": 3.656113856706261, + "fraxure": 1.2973608937235932, + "beartic": 1.9425527122253223, + "cryogonal": 2.249177096435049, + "accelgor": 3.7367760038965714, + "stunfisk": 1.6335174567492339, + "stunfisk-galar": 2.600233190259803, + "mienshao": 3.85473859249206, + "druddigon": 1.7975777933380643, + "golurk": 2.3681522976193756, + "bisharp": 2.666168131271548, + "bouffalant": 1.2692313404813897, + "heatmor": 2.4238391428858717, + "durant": 2.663847313791081, + "diggersby": 3.1699014269652572, + "talonflame": 2.9407235321705234, + "pangoro": 1.9644851319018377, + "doublade": 2.4036348115372195, + "malamar": 2.783150688276622, + "barbaracle": 1.5640467180743198, + "heliolisk": 4.888208934125611, + "tyrantrum": 1.6686791233345772, + "aurorus": 4.081473892918431, + "hawlucha": 3.867868105799973, + "dedenne": 3.1756399882800874, + "klefki": 3.4274566352448215, + "trevenant": 4.093283520572412, + "gourgeist-average": 6.160553296791427, + "charjabug": 3.90837651475996, + "vikavolt": 1.7837884991941824, + "ribombee": 5.797497075088713, + "lycanroc-midday": 4.166155042807633, + "lycanroc-midnight": 2.935400646958212, + "mudsdale": 1.5129593597941695, + "araquanid": 2.983520698450216, + "lurantis": 2.805211858761694, + "shiinotic": 5.2567515107605995, + "salazzle": 5.341992660296411, + "bewear": 1.9076047935212541, + "tsareena": 3.67357933442738, + "comfey": 5.784443857919162, + "oranguru": 3.5565815895765653, + "passimian": 2.4709348007044136, + "palossand": 2.366039802879732, + "pyukumuku": 40.967068546959965, + "togedemaru": 4.05112679049662, + "mimikyu-disguised": 5.641134406338598, + "greedent": 2.023378277134084, + "orbeetle": 2.2877483405196544, + "thievul": 1.9551297485652581, + "eldegoss": 4.897412955218554, + "dubwool": 2.912588449970441, + "drednaw": 1.4293214950680997, + "boltund": 5.766009022997988, + "carkol": 3.6188976387010836, + "coalossal": 2.977939643772432, + "sandaconda": 2.702155860076516, + "cramorant": 5.965905286196037, + "barraskewda": 4.303346595296654, + "toxtricity-amped": 4.546857023814532, + "centiskorch": 2.5296072793956723, + "grapploct": 1.9492016316444845, + "polteageist": 4.019917064711781, + "hatterene": 3.0663387294397735, + "grimmsnarl": 5.11205886742476, + "obstagoon": 2.469053628713344, + "perrserker": 3.5450580750077707, + "alcremie": 1.8662694029363975, + "falinks": 3.2487783578319105, + "pincurchin": 3.600203010269695, + "frosmoth": 3.4845852985713073, + "indeedee-male": 4.4991209713832845, + "morpeko": 3.2875586353599355, + "copperajah": 2.837139771672618, + "duraludon": 1.4853627750125338, + "drakloak": 5.511909763418363 }, "golurk": { - "ivysaur": 3.3397051800289095, - "charmeleon": 4.446990583625871, - "wartortle": 2.7733923662336486, - "butterfree": 5.324113663734439, - "raichu": 7.270113171695585, - "raichu-alola": 6.269208895349188, - "sandslash": 2.3022526453416443, - "sandslash-alola": 3.5184176165767895, - "nidoqueen": 3.031212287964173, - "nidoking": 2.0280104847210794, - "clefairy": 9.895599878789223, - "clefable": 2.386891604292525, - "jigglypuff": 28.67640244084349, - "wigglytuff": 2.2493998837029014, - "gloom": 6.585447486429687, - "vileplume": 3.051925815127337, - "dugtrio": 4.516610957358593, - "dugtrio-alola": 4.733013714297899, - "persian": 7.117449085349627, - "persian-alola": 5.167713182810203, - "golduck": 3.238819985874013, - "poliwrath": 2.163837759663828, - "kadabra": 6.868317614404312, - "machoke": 4.41925777581322, - "tentacruel": 2.626947383925308, - "slowbro": 2.388475158986802, - "magneton": 5.632737025734853, - "haunter": 6.536117773038147, - "kingler": 2.408049466094547, - "exeggutor": 2.5798723953017126, - "marowak": 3.0936267251755987, - "marowak-alola": 2.730615115955267, - "hitmonlee": 3.365534191911304, - "hitmonchan": 2.6005420457467414, - "lickitung": 2.534382654831387, - "weezing": 1.9317013180256717, - "weezing-galar": 3.2445100637374322, - "rhydon": 2.8592563391937285, - "chansey": 58.838219757590274, - "tangela": 4.289670431361206, - "kangaskhan": 2.5715763662527493, - "seadra": 4.007988718920167, - "seaking": 2.7289497680198616, - "starmie": 2.0225330040093636, - "mr-mime": 11.539289607030195, - "mr-mime-galar": 4.8798547149243525, - "scyther": 2.924642512780272, - "jynx": 7.054168618560523, - "electabuzz": 3.796763290325562, - "magmar": 2.072048140335232, - "tauros": 2.78777831597239, - "ditto": 3.7901342505042606, - "vaporeon": 3.713115511886902, - "jolteon": 2.6051913343544526, - "flareon": 2.908597629302248, - "porygon": 3.822336226948656, - "dragonair": 2.039361702638505, - "noctowl": 7.197114543126526, - "lanturn": 2.1970491130594345, - "togetic": 5.975432888757537, - "xatu": 5.559305615353914, - "bellossom": 2.460272036274535, - "azumarill": 2.2988597905643733, - "sudowoodo": 3.4822051150425457, - "politoed": 2.9140890303733933, - "quagsire": 4.793557211462667, - "slowking": 3.4787741951718356, - "dunsparce": 4.04440518346204, - "qwilfish": 3.9203301302740137, - "sneasel": 3.9899360471567453, - "piloswine": 1.9357767906198489, - "octillery": 2.5507077307929413, - "mantine": 2.74579695234537, - "skarmory": 1.988938896699188, - "hitmontop": 3.0937324247579285, - "miltank": 5.135785337487127, - "grovyle": 8.802065749767138, - "sceptile": 1.5329056087523592, - "combusken": 4.181095016171214, - "blaziken": 1.9542350906299135, - "marshtomp": 2.480681395657065, - "swampert": 1.264318047006105, - "linoone": 7.46770388801254, - "linoone-galar": 7.841470529099719, - "pelipper": 6.867782495920331, - "ninjask": 8.752524100284464, - "exploud": 2.4315959056082814, - "lairon": 4.663600645723687, - "manectric": 2.2532918877124026, - "roselia": 4.417801267511234, - "sharpedo": 6.016417015432655, - "wailmer": 6.809582408477362, - "torkoal": 2.3576736643841536, - "flygon": 2.696882147768342, - "altaria": 1.7794181084493546, - "whiscash": 2.0292313756164457, - "crawdaunt": 2.2461641887502566, - "claydol": 5.252813907166949, - "cradily": 3.0276533472388043, - "armaldo": 2.096415395756211, - "dusclops": 4.7303907633634585, - "absol": 2.5510062759827026, - "glalie": 4.7838178834702, - "sealeo": 3.6307745944415855, - "relicanth": 2.329658114636735, - "metang": 4.30542221153576, - "luxray": 5.231895890651443, - "vespiquen": 3.1204562873825976, - "cherrim": 6.218779434066525, - "gastrodon": 2.5062237449885334, - "drifblim": 7.305310469680386, - "lopunny": 6.120990703726484, - "skuntank": 1.586685931042723, - "bronzong": 4.859060812350071, - "munchlax": 4.248149474750984, - "drapion": 2.7491113640516467, - "abomasnow": 3.8109495926666215, - "froslass": 3.7451816297529907, - "rotom": 5.899813310152799, - "stoutland": 4.227049745338307, - "liepard": 8.681347356706436, - "musharna": 2.1944358738335814, - "unfezant": 6.103965006379411, - "boldore": 4.425863559690533, - "swoobat": 7.974207183832426, - "audino": 3.748929808728986, - "gurdurr": 2.5521357391212875, - "palpitoad": 4.1198537973984815, - "seismitoad": 8.368325653591944, - "scolipede": 3.2754441095266316, - "whimsicott": 3.1242098111809753, - "lilligant": 3.1408959535829997, - "basculin-red-striped": 2.723622973620504, - "basculin-blue-striped": 3.4312565338582552, - "krookodile": 3.3392873579880122, - "maractus": 2.1373126130974107, - "crustle": 2.3156963390803353, - "sigilyph": 3.3708777864241464, - "cofagrigus": 3.3352615755500112, - "garbodor": 2.2514975347161768, - "cinccino": 6.639587615953059, - "vanillish": 2.852851164080773, - "emolga": 3.853108060640427, - "escavalier": 1.9884586459738633, - "amoonguss": 2.801108133405253, - "jellicent": 2.4586439260629382, - "galvantula": 2.008980469695566, - "klang": 4.23268874450809, - "klinklang": 4.764052289243934, - "beheeyem": 2.7805690012360467, - "lampent": 3.9677186615063307, - "fraxure": 1.7046098398521408, - "beartic": 2.0889740968892823, - "cryogonal": 2.3796220790898466, - "accelgor": 3.892872970330159, - "stunfisk": 1.4249280264094548, - "stunfisk-galar": 2.8712225510269445, - "mienshao": 4.349484769803341, - "druddigon": 1.9557382610733756, - "bisharp": 4.331460459837306, - "bouffalant": 1.9588097360290326, - "heatmor": 2.1134508980661963, - "durant": 3.197836772449315, - "diggersby": 4.604059672669264, - "talonflame": 3.15517848452087, - "pangoro": 2.3445496674321795, - "doublade": 3.325872413493321, - "malamar": 2.966911336196921, - "barbaracle": 1.8010142728927208, - "heliolisk": 6.929668105134884, - "tyrantrum": 2.2265169073223885, - "aurorus": 4.675776224929616, - "hawlucha": 3.8265784534656, - "dedenne": 3.474847083039093, - "klefki": 3.5885784241965877, - "trevenant": 4.421331674930019, - "gourgeist-average": 6.3532029233827165, - "charjabug": 4.506560952790327, - "vikavolt": 2.139637613000938, - "ribombee": 5.4150846148188, - "lycanroc-midday": 4.990792323090538, - "lycanroc-midnight": 3.2300234011547158, - "mudsdale": 1.7492549240698883, - "araquanid": 2.6980925857833173, - "lurantis": 2.661443621539475, - "shiinotic": 5.1338461238800654, - "salazzle": 4.863264024141518, - "bewear": 2.6164665461439522, - "tsareena": 3.115626624645036, - "comfey": 4.679580679015334, - "oranguru": 2.846956953643743, - "passimian": 2.645152132671427, - "palossand": 2.6409560378376513, - "pyukumuku": 53.78222161057086, - "togedemaru": 3.9447364337823565, - "mimikyu-disguised": 6.471374385516416, - "greedent": 3.030730674735457, - "orbeetle": 2.7714453252382327, - "thievul": 2.457803254165265, - "eldegoss": 4.184665420574776, - "dubwool": 4.303077730313179, - "drednaw": 1.6531132412447898, - "boltund": 5.388095858024672, - "carkol": 3.779316678851444, - "coalossal": 2.9290275361632574, - "sandaconda": 3.213363715514718, - "cramorant": 5.608198205299104, - "barraskewda": 4.5089894452044454, - "toxtricity-amped": 5.153072058141467, - "centiskorch": 2.4607677331892432, - "grapploct": 1.8633429889358606, - "polteageist": 4.278768630091597, - "hatterene": 3.777402273601302, - "grimmsnarl": 3.7857696486714194, - "obstagoon": 4.849177545818182, - "perrserker": 4.163925588420561, - "alcremie": 1.6701563767754495, - "falinks": 3.485841018494572, - "pincurchin": 3.4522129527162093, - "frosmoth": 3.3731185279425886, - "indeedee-male": 3.334033120895776, - "morpeko": 3.9139380689897543, - "copperajah": 3.547346961917022, - "duraludon": 2.215952582829378, - "drakloak": 6.3594867348054205, - "golurk": 2.7739777356656883 + "ivysaur": 3.338937406417927, + "charmeleon": 4.458975021520368, + "wartortle": 2.7737001822916962, + "butterfree": 5.32505470527402, + "raichu": 7.318237003552879, + "raichu-alola": 6.29684587356002, + "sandslash": 2.308072391935128, + "sandslash-alola": 3.5319076670004463, + "nidoqueen": 3.0355755598162437, + "nidoking": 2.031619982590879, + "clefairy": 9.898798971644526, + "clefable": 2.3914688566706133, + "jigglypuff": 28.69844299361199, + "wigglytuff": 2.252489857645325, + "gloom": 6.599060020346842, + "vileplume": 3.0515531646307164, + "dugtrio": 4.528601138937072, + "dugtrio-alola": 4.747749543167875, + "persian": 7.148052520639807, + "persian-alola": 5.170296730569794, + "golduck": 3.2406393168234224, + "poliwrath": 2.1691384370562012, + "kadabra": 6.887366735507808, + "machoke": 4.431296034051016, + "tentacruel": 2.6283700439174282, + "slowbro": 2.392044337877609, + "magneton": 5.66454554279525, + "haunter": 6.529373377894901, + "kingler": 2.4098716862592116, + "exeggutor": 2.5811701481564735, + "marowak": 3.0955187322976006, + "marowak-alola": 2.733998121729151, + "hitmonlee": 3.3825199042438787, + "hitmonchan": 2.6079487296193893, + "lickitung": 2.53908596806751, + "weezing": 1.9355648508084031, + "weezing-galar": 3.2507615102058987, + "rhydon": 2.8655929633082495, + "chansey": 59.177450824404474, + "tangela": 4.283161418702392, + "kangaskhan": 2.576523353342439, + "seadra": 4.008832220545788, + "seaking": 2.7328048328799865, + "starmie": 2.0260692233425504, + "mr-mime": 11.560802572531767, + "mr-mime-galar": 4.8851982098145665, + "scyther": 2.923834505428286, + "jynx": 7.067163449820411, + "electabuzz": 3.8214239084146495, + "magmar": 2.079412262364944, + "tauros": 2.795495344716521, + "ditto": 3.779870795062884, + "vaporeon": 3.718469358596791, + "jolteon": 2.6162533474738843, + "flareon": 2.9149754001226045, + "porygon": 3.8279107190898385, + "dragonair": 2.043080654871731, + "noctowl": 7.209283347750573, + "lanturn": 2.2023242280032074, + "togetic": 5.977094119862054, + "xatu": 5.564528079345513, + "bellossom": 2.459400334661031, + "azumarill": 2.30039503410368, + "sudowoodo": 3.497520710369998, + "politoed": 2.9185910891496163, + "quagsire": 4.798255857376685, + "slowking": 3.4789931423235423, + "dunsparce": 4.046704644060394, + "qwilfish": 3.9240222996438767, + "sneasel": 3.9920404675523007, + "piloswine": 1.9404085086810328, + "octillery": 2.5536673848741804, + "mantine": 2.7447888149689748, + "skarmory": 1.9901247728436977, + "hitmontop": 3.10108975676936, + "miltank": 5.153500294491344, + "grovyle": 8.807778442049862, + "sceptile": 1.532355961219812, + "combusken": 4.2007921895982925, + "blaziken": 1.9618897794275134, + "marshtomp": 2.480043308546567, + "swampert": 1.264810862185417, + "linoone": 7.485119356871253, + "linoone-galar": 7.84498493209489, + "pelipper": 6.879612887629644, + "ninjask": 8.761971667930547, + "exploud": 2.4399534745858156, + "lairon": 4.6860122350685005, + "manectric": 2.2635745140671935, + "roselia": 4.418120308011046, + "sharpedo": 6.017549154738242, + "wailmer": 6.812449089062522, + "torkoal": 2.3642419508947343, + "flygon": 2.7004121594038692, + "altaria": 1.7798569895515857, + "whiscash": 2.0306531548034332, + "crawdaunt": 2.2472469584685983, + "claydol": 5.266193150449661, + "cradily": 3.034825901076142, + "armaldo": 2.1021214808154025, + "dusclops": 4.729785720096185, + "absol": 2.554543183933205, + "glalie": 4.785328372509607, + "sealeo": 3.6310843043194483, + "relicanth": 2.334274280814002, + "metang": 4.322835689586536, + "luxray": 5.264780651848722, + "vespiquen": 3.1236383114592354, + "cherrim": 6.22012973262207, + "gastrodon": 2.511558315397618, + "drifblim": 7.324879880293132, + "lopunny": 6.148349953276109, + "skuntank": 1.5876632530772583, + "bronzong": 4.87108229945127, + "munchlax": 4.267853388404695, + "drapion": 2.7524889996369932, + "abomasnow": 3.812405930202966, + "froslass": 3.7404153685855066, + "rotom": 5.907191637325737, + "stoutland": 4.249921388174978, + "liepard": 8.689299138651826, + "musharna": 2.196524541402762, + "unfezant": 6.100933093732959, + "boldore": 4.443716519330617, + "swoobat": 7.981922344818259, + "audino": 3.760526920095376, + "gurdurr": 2.562167052210394, + "palpitoad": 4.1251979618101995, + "seismitoad": 8.408095439732199, + "scolipede": 3.2761205526416335, + "whimsicott": 3.1220092511318174, + "lilligant": 3.1404632798042673, + "basculin-red-striped": 2.722105166886147, + "basculin-blue-striped": 3.4277985475304815, + "krookodile": 3.3412372559438746, + "maractus": 2.1349690210552867, + "crustle": 2.3236355656303607, + "sigilyph": 3.3738622204749813, + "cofagrigus": 3.333888423816145, + "garbodor": 2.262083856518942, + "cinccino": 6.655616940474769, + "vanillish": 2.855642305395601, + "emolga": 3.8645613552892737, + "escavalier": 1.9917445222217962, + "amoonguss": 2.8036742575242823, + "jellicent": 2.4597262397868622, + "galvantula": 2.017315375063185, + "klang": 4.255654809167668, + "klinklang": 4.787673062554326, + "beheeyem": 2.7860875930703832, + "lampent": 3.9785768265443715, + "fraxure": 1.7085640514188043, + "beartic": 2.0914287389919566, + "cryogonal": 2.381015859344867, + "accelgor": 3.902545360250323, + "stunfisk": 1.4291034316903173, + "stunfisk-galar": 2.8791632747136986, + "mienshao": 4.370759773571244, + "druddigon": 1.9581295289247407, + "golurk": 2.7739777356656883, + "bisharp": 4.344505140346448, + "bouffalant": 1.9650158415120842, + "heatmor": 2.1185546296162627, + "durant": 3.206928702112519, + "diggersby": 4.616097695066915, + "talonflame": 3.1563836678470842, + "pangoro": 2.3499208031344354, + "doublade": 3.3365841714869955, + "malamar": 2.9690494887111836, + "barbaracle": 1.8056270439105968, + "heliolisk": 6.968320153459453, + "tyrantrum": 2.2371628968020216, + "aurorus": 4.693049619727621, + "hawlucha": 3.829822274593912, + "dedenne": 3.487554542134209, + "klefki": 3.600887434662327, + "trevenant": 4.424083294352131, + "gourgeist-average": 6.3489679161662504, + "charjabug": 4.521381810689409, + "vikavolt": 2.1443848444087754, + "ribombee": 5.421315939634028, + "lycanroc-midday": 5.015451387502421, + "lycanroc-midnight": 3.2415975653608036, + "mudsdale": 1.7533137829583478, + "araquanid": 2.7007377936336545, + "lurantis": 2.6644813336574433, + "shiinotic": 5.1410975239244365, + "salazzle": 4.87904380779076, + "bewear": 2.625562656394637, + "tsareena": 3.1142112310539796, + "comfey": 4.679679786612242, + "oranguru": 2.8474113426890924, + "passimian": 2.6545230679528133, + "palossand": 2.642314636780946, + "pyukumuku": 53.95849787609265, + "togedemaru": 3.969087551461577, + "mimikyu-disguised": 6.477736332923865, + "greedent": 3.0392756265269507, + "orbeetle": 2.775262269090902, + "thievul": 2.457056465220191, + "eldegoss": 4.184703552223679, + "dubwool": 4.316038667738062, + "drednaw": 1.6572014290332087, + "boltund": 5.4023786976083, + "carkol": 3.7947582241207867, + "coalossal": 2.938202773180227, + "sandaconda": 3.218575526165904, + "cramorant": 5.597689594867685, + "barraskewda": 4.5071908174242035, + "toxtricity-amped": 5.184838225769152, + "centiskorch": 2.4663539799813767, + "grapploct": 1.8699458990347724, + "polteageist": 4.279457536238483, + "hatterene": 3.7837168487829187, + "grimmsnarl": 3.7873974587610544, + "obstagoon": 4.86403271325695, + "perrserker": 4.176466494424581, + "alcremie": 1.6716440088860272, + "falinks": 3.4968987420093125, + "pincurchin": 3.4626996748676957, + "frosmoth": 3.3810766025415884, + "indeedee-male": 3.3325060534228164, + "morpeko": 3.9272947893382804, + "copperajah": 3.563664207680402, + "duraludon": 2.226383118724466, + "drakloak": 6.3579357587558345 }, "bisharp": { - "ivysaur": 4.498162820652026, - "charmeleon": 3.7920666944367243, - "wartortle": 2.6704175880558783, - "butterfree": 5.460434096426184, - "raichu": 4.751819443412274, - "raichu-alola": 6.157581700854372, - "sandslash": 2.1036635548123543, - "sandslash-alola": 1.985516405004536, - "nidoqueen": 3.2994191045943615, - "nidoking": 2.134298062134437, - "clefairy": 10.507697738906675, - "clefable": 2.4569415552249803, - "jigglypuff": 32.24135349084892, - "wigglytuff": 2.436682759900086, - "gloom": 7.530544725156494, - "vileplume": 3.729575260090405, - "dugtrio": 4.144321642116898, - "dugtrio-alola": 3.8670953313201535, - "persian": 5.0557659884623645, - "persian-alola": 4.378709009241317, - "golduck": 3.410972492446068, - "poliwrath": 2.0651844044525642, - "kadabra": 7.0840273529045055, - "machoke": 4.159830095636606, - "tentacruel": 3.3510756115278717, - "slowbro": 2.5694451717917826, - "magneton": 3.334490024535201, - "haunter": 8.186106454033098, - "kingler": 2.0386033844154174, - "exeggutor": 2.8297026545598456, - "marowak": 3.149397987905209, - "marowak-alola": 2.8935022775500876, - "hitmonlee": 2.532240263803221, - "hitmonchan": 2.546375492080136, - "lickitung": 2.1140910498092054, - "weezing": 1.6589231731638807, - "weezing-galar": 2.770479000506748, - "rhydon": 2.1506242604067887, - "chansey": 37.09017521503, - "tangela": 5.2479516252202725, - "kangaskhan": 2.1193942604061733, - "seadra": 4.13352116859915, - "seaking": 2.82289999430842, - "starmie": 2.206325030910496, - "mr-mime": 10.710640996615536, - "mr-mime-galar": 6.293881923493711, - "scyther": 3.133947210795756, - "jynx": 7.801267140654833, - "electabuzz": 2.909852486855878, - "magmar": 1.650298314390517, - "tauros": 1.8894942589611428, - "ditto": 2.770047851049612, - "vaporeon": 3.780320074682977, - "jolteon": 2.3621755216208875, - "flareon": 2.386432983948273, - "porygon": 3.2038636421330056, - "dragonair": 2.2345636038976404, - "noctowl": 7.569242554295425, - "lanturn": 2.159447093134565, - "togetic": 5.818336572941973, - "xatu": 6.394769865019304, - "bellossom": 2.7046441132480252, - "azumarill": 2.804187115951606, - "sudowoodo": 2.2906503745220057, - "politoed": 2.7606052196918256, - "quagsire": 3.9019091869018743, - "slowking": 4.271984815471028, - "dunsparce": 3.7321124397903978, - "qwilfish": 4.235388967388669, - "sneasel": 2.339331590382649, - "piloswine": 1.5857962749366317, - "octillery": 2.6402740272829077, - "mantine": 3.0603007125813786, - "skarmory": 2.1246570010331167, - "hitmontop": 2.868996753871074, - "miltank": 3.8931466283701917, - "grovyle": 8.917506081233691, - "sceptile": 1.8172815225141927, - "combusken": 2.9591240644318764, - "blaziken": 1.5896126643279742, - "marshtomp": 2.670444947344323, - "swampert": 1.3183135104251082, - "linoone": 6.064540883450405, - "linoone-galar": 4.741256167943513, - "pelipper": 6.783617962342266, - "ninjask": 8.06410374227007, - "exploud": 1.7254392047135383, - "lairon": 2.5012196707335717, - "manectric": 1.9192344696847314, - "roselia": 5.912353481877107, - "sharpedo": 5.004178797863264, - "wailmer": 7.345775315879983, - "torkoal": 1.4588362359804266, - "flygon": 2.6183847202969126, - "altaria": 1.5962438001216168, - "whiscash": 2.293020292136116, - "crawdaunt": 1.81075525743443, - "claydol": 5.647812160481349, - "cradily": 2.719853628853543, - "armaldo": 1.93742633736742, - "dusclops": 5.563150299975117, - "absol": 1.8874204287691554, - "glalie": 4.8929697848105915, - "sealeo": 3.503183432869392, - "relicanth": 1.9696439477272367, - "metang": 4.683760886817369, - "luxray": 4.248187728673088, - "vespiquen": 2.7970695712554807, - "cherrim": 7.270709598083219, - "gastrodon": 2.5424652590623062, - "drifblim": 7.312639219232336, - "lopunny": 3.8560572518370586, - "skuntank": 1.2384662914478288, - "bronzong": 5.786901804030486, - "munchlax": 2.8698135071619504, - "drapion": 2.17803425895841, - "abomasnow": 3.983326219120978, - "froslass": 4.712834226097487, - "rotom": 6.09582518042831, - "stoutland": 2.884333612724374, - "liepard": 6.892166999200933, - "musharna": 2.7041451151567526, - "unfezant": 7.059173599992846, - "boldore": 2.8000642905873887, - "swoobat": 9.173059455453073, - "audino": 2.4471838484612256, - "gurdurr": 1.8565896790049725, - "palpitoad": 3.867962185721459, - "seismitoad": 8.064632532724968, - "scolipede": 3.8858766799688693, - "whimsicott": 5.169350623428221, - "lilligant": 3.607221815206329, - "basculin-red-striped": 3.1979844698891626, - "basculin-blue-striped": 3.9397901811381453, - "krookodile": 2.421499790238365, - "maractus": 2.7479996327134155, - "crustle": 1.9074655969711363, - "sigilyph": 3.826500310689817, - "cofagrigus": 4.154564912159482, - "garbodor": 2.30691771101261, - "cinccino": 5.466248061559053, - "vanillish": 2.566979344291592, - "emolga": 3.3041400214279046, - "escavalier": 1.9355746924762793, - "amoonguss": 3.629711105868463, - "jellicent": 2.769747433096691, - "galvantula": 1.6720224502928973, - "klang": 3.061841693150402, - "klinklang": 3.842899227553337, - "beheeyem": 3.1260887269980984, - "lampent": 3.153601793292653, - "fraxure": 1.764085426275332, - "beartic": 1.820131208758013, - "cryogonal": 2.319439585987801, - "accelgor": 3.471157284856094, - "stunfisk": 1.3172209862484345, - "stunfisk-galar": 2.295540325403647, - "mienshao": 3.550220957286527, - "druddigon": 2.0839857016187855, - "golurk": 2.408540021595592, - "bouffalant": 1.352872348900122, - "heatmor": 1.8500873283594808, - "durant": 2.959606603897339, - "diggersby": 3.358853829470192, - "talonflame": 3.032218607575368, - "pangoro": 1.4180360425199376, - "doublade": 2.6147389306507085, - "malamar": 3.265512943000716, - "barbaracle": 1.623286241335021, - "heliolisk": 4.207896196530678, - "tyrantrum": 1.4683464402717732, - "aurorus": 2.776840728153049, - "hawlucha": 3.815771113789859, - "dedenne": 3.385203196902407, - "klefki": 2.762109082406488, - "trevenant": 4.277955564625583, - "gourgeist-average": 6.66455904694336, - "charjabug": 4.0701799163252925, - "vikavolt": 1.905046819117433, - "ribombee": 5.376643009710559, - "lycanroc-midday": 3.9170775988649345, - "lycanroc-midnight": 2.4479816246039428, - "mudsdale": 1.3766413442214906, - "araquanid": 2.8811234278954907, - "lurantis": 2.9075379622979733, - "shiinotic": 7.476938762592811, - "salazzle": 3.630085846133058, - "bewear": 2.2535139138667777, - "tsareena": 3.8995780436983956, - "comfey": 5.515586768024724, - "oranguru": 5.12046747210343, - "passimian": 2.3197375395969018, - "palossand": 2.6344472818853193, - "pyukumuku": 47.853149736978224, - "togedemaru": 2.6469554940938833, - "mimikyu-disguised": 5.171570183333595, - "greedent": 2.527827623992424, - "orbeetle": 2.8845208971924228, - "thievul": 1.6976342223762653, - "eldegoss": 5.030669968861416, - "dubwool": 2.9521194389637957, - "drednaw": 1.4211327535376936, - "boltund": 5.27545541192101, - "carkol": 2.360482848983964, - "coalossal": 1.8591718704563651, - "sandaconda": 2.9244455698840985, - "cramorant": 6.863366538636137, - "barraskewda": 5.228119303006534, - "toxtricity-amped": 3.4107311988071096, - "centiskorch": 2.150178436963037, - "grapploct": 1.5819509876679927, - "polteageist": 5.34933307331945, - "hatterene": 3.3187371748715195, - "grimmsnarl": 4.28956255002239, - "obstagoon": 2.4632740924614724, - "perrserker": 3.475854980764753, - "alcremie": 1.740195957732745, - "falinks": 3.0311102236742777, - "pincurchin": 3.098198312325029, - "frosmoth": 2.9867151882963574, - "indeedee-male": 5.400529347632447, - "morpeko": 2.6022133638073077, - "copperajah": 2.463213346224971, - "duraludon": 1.6092791493157526, - "drakloak": 7.720469367018467, - "bisharp": 2.3940452342843317 + "ivysaur": 4.517242418373612, + "charmeleon": 3.787291479501743, + "wartortle": 2.667924527348224, + "butterfree": 5.4707018201125885, + "raichu": 4.7399929271719845, + "raichu-alola": 6.1763520795147375, + "sandslash": 2.102894752327112, + "sandslash-alola": 1.9810547213552852, + "nidoqueen": 3.301576051524369, + "nidoking": 2.1349525817644355, + "clefairy": 10.513687085148575, + "clefable": 2.4619667817110775, + "jigglypuff": 32.28851827999547, + "wigglytuff": 2.442810375568647, + "gloom": 7.554544726184177, + "vileplume": 3.7381937793292144, + "dugtrio": 4.143066637350018, + "dugtrio-alola": 3.866889001299464, + "persian": 5.0667222862477175, + "persian-alola": 4.382506607933692, + "golduck": 3.4153305704560433, + "poliwrath": 2.06316111715437, + "kadabra": 7.109514848634632, + "machoke": 4.156210089509619, + "tentacruel": 3.359846051582494, + "slowbro": 2.575183393644874, + "magneton": 3.33322586249019, + "haunter": 8.223490195587274, + "kingler": 2.0328694528749214, + "exeggutor": 2.8373227830891965, + "marowak": 3.149548680579483, + "marowak-alola": 2.8977743000014806, + "hitmonlee": 2.5247713706218207, + "hitmonchan": 2.546205273056386, + "lickitung": 2.1164469531630408, + "weezing": 1.6616873789903417, + "weezing-galar": 2.77030113330939, + "rhydon": 2.1476750531641695, + "chansey": 37.223547178185854, + "tangela": 5.258586610364871, + "kangaskhan": 2.123552347383855, + "seadra": 4.134102741728746, + "seaking": 2.8282827109017763, + "starmie": 2.2126981313437373, + "mr-mime": 10.778909334091246, + "mr-mime-galar": 6.31996485280472, + "scyther": 3.1409500216677797, + "jynx": 7.822681736839392, + "electabuzz": 2.9131038161727822, + "magmar": 1.6494469290530769, + "tauros": 1.8870549811733992, + "ditto": 2.754436443719162, + "vaporeon": 3.786806486101548, + "jolteon": 2.3667978110362675, + "flareon": 2.3881220043225264, + "porygon": 3.209501442513621, + "dragonair": 2.2397560053637595, + "noctowl": 7.594870831315453, + "lanturn": 2.162057132125739, + "togetic": 5.8183815913845205, + "xatu": 6.420876573064196, + "bellossom": 2.7109295494598573, + "azumarill": 2.8131310407220056, + "sudowoodo": 2.285882524643094, + "politoed": 2.7614952345420463, + "quagsire": 3.8873419897267905, + "slowking": 4.2875642557909295, + "dunsparce": 3.7402678116332937, + "qwilfish": 4.246912220067801, + "sneasel": 2.3414951874359673, + "piloswine": 1.5835249664277593, + "octillery": 2.64438110050796, + "mantine": 3.0682783559370117, + "skarmory": 2.126596885479438, + "hitmontop": 2.8647620100260034, + "miltank": 3.8991829001891425, + "grovyle": 8.92433312523925, + "sceptile": 1.8234451470402122, + "combusken": 2.946015966758484, + "blaziken": 1.5852668788303528, + "marshtomp": 2.6712481344671035, + "swampert": 1.3170364713635556, + "linoone": 6.0781714899700265, + "linoone-galar": 4.7442283373587255, + "pelipper": 6.797722030521295, + "ninjask": 8.068070401884139, + "exploud": 1.7237042560169478, + "lairon": 2.5021483898276857, + "manectric": 1.9199883418482324, + "roselia": 5.938379087807951, + "sharpedo": 5.00682202028891, + "wailmer": 7.35774338033099, + "torkoal": 1.455675497676534, + "flygon": 2.619996578114307, + "altaria": 1.5968807848516755, + "whiscash": 2.296893870752362, + "crawdaunt": 1.810130118925609, + "claydol": 5.6680203727887815, + "cradily": 2.7276880593191124, + "armaldo": 1.9380304960558172, + "dusclops": 5.580361512468169, + "absol": 1.8866966042410918, + "glalie": 4.905844908854009, + "sealeo": 3.5072638149313873, + "relicanth": 1.9709604446244677, + "metang": 4.69670433021858, + "luxray": 4.253635406045866, + "vespiquen": 2.796742238153074, + "cherrim": 7.293151419738105, + "gastrodon": 2.546753355447888, + "drifblim": 7.33565293734247, + "lopunny": 3.8561103244802966, + "skuntank": 1.2382182824738694, + "bronzong": 5.811740712481154, + "munchlax": 2.87735282616942, + "drapion": 2.178059351149284, + "abomasnow": 3.9954498414778152, + "froslass": 4.728296957391908, + "rotom": 6.110501836772949, + "stoutland": 2.891480036778051, + "liepard": 6.8952390553068685, + "musharna": 2.716968218456773, + "unfezant": 7.0779962769967835, + "boldore": 2.793289031824748, + "swoobat": 9.21074092360388, + "audino": 2.446418476496037, + "gurdurr": 1.8484246622625593, + "palpitoad": 3.8650432543429742, + "seismitoad": 8.090275953833187, + "scolipede": 3.8937938685755866, + "whimsicott": 5.1866511337040455, + "lilligant": 3.6156256222951764, + "basculin-red-striped": 3.2050297591679833, + "basculin-blue-striped": 3.9445908735999096, + "krookodile": 2.4163036575984043, + "maractus": 2.7576974300111354, + "crustle": 1.9047497053297464, + "sigilyph": 3.8407717826319434, + "cofagrigus": 4.170730520914004, + "garbodor": 2.3108402825437753, + "cinccino": 5.480776651827023, + "vanillish": 2.57228038929844, + "emolga": 3.309098527711064, + "escavalier": 1.9339611068389937, + "amoonguss": 3.646771746233611, + "jellicent": 2.777315029071022, + "galvantula": 1.6724730300296016, + "klang": 3.062541512590557, + "klinklang": 3.848140394846138, + "beheeyem": 3.1381217628256453, + "lampent": 3.1518683302747714, + "fraxure": 1.7679813040277037, + "beartic": 1.8187299237007144, + "cryogonal": 2.3266698475109022, + "accelgor": 3.4751622292491584, + "stunfisk": 1.315342333880166, + "stunfisk-galar": 2.2918847181461253, + "mienshao": 3.544315342864101, + "druddigon": 2.0886291408223507, + "golurk": 2.4051235687287713, + "bisharp": 2.3940452342843317, + "bouffalant": 1.3534203200013328, + "heatmor": 1.8486962621978287, + "durant": 2.9584273635792346, + "diggersby": 3.3579516474557187, + "talonflame": 3.033069088865458, + "pangoro": 1.4131288351563212, + "doublade": 2.61236989731575, + "malamar": 3.2704564953095074, + "barbaracle": 1.6253584742821232, + "heliolisk": 4.212588866142336, + "tyrantrum": 1.466526819034578, + "aurorus": 2.77921921736666, + "hawlucha": 3.81359923008892, + "dedenne": 3.38935097531525, + "klefki": 2.7616515527096945, + "trevenant": 4.280564180302474, + "gourgeist-average": 6.669416033330883, + "charjabug": 4.070988065048472, + "vikavolt": 1.9060414646515027, + "ribombee": 5.381166051682664, + "lycanroc-midday": 3.9257849884952236, + "lycanroc-midnight": 2.4473022085290554, + "mudsdale": 1.3723901938049412, + "araquanid": 2.889195744084904, + "lurantis": 2.9152511623757644, + "shiinotic": 7.494612193247409, + "salazzle": 3.6278918973545604, + "bewear": 2.258919723463505, + "tsareena": 3.9142194804804, + "comfey": 5.528132664158475, + "oranguru": 5.149676787979338, + "passimian": 2.316362155278836, + "palossand": 2.634615027797783, + "pyukumuku": 47.8232267100692, + "togedemaru": 2.650691331439681, + "mimikyu-disguised": 5.192306941010873, + "greedent": 2.535617667747185, + "orbeetle": 2.8952938008053706, + "thievul": 1.6967535918635592, + "eldegoss": 5.047951489191281, + "dubwool": 2.950331238961776, + "drednaw": 1.4223961459515997, + "boltund": 5.284245892220136, + "carkol": 2.35529179041096, + "coalossal": 1.8560634974228707, + "sandaconda": 2.9207645934995963, + "cramorant": 6.882910684039874, + "barraskewda": 5.239198626659048, + "toxtricity-amped": 3.414466139604164, + "centiskorch": 2.14955317025265, + "grapploct": 1.573939528550619, + "polteageist": 5.375688861543317, + "hatterene": 3.332292266812917, + "grimmsnarl": 4.285712859360631, + "obstagoon": 2.4630814919857453, + "perrserker": 3.478315281313005, + "alcremie": 1.7421274649535308, + "falinks": 3.025287407841037, + "pincurchin": 3.098925864729954, + "frosmoth": 2.9901379649492457, + "indeedee-male": 5.413326072145195, + "morpeko": 2.6014867025766137, + "copperajah": 2.459715420764647, + "duraludon": 1.609487539947785, + "drakloak": 7.748267743963291 }, "bouffalant": { - "ivysaur": 4.571927910794663, - "charmeleon": 4.509762001714659, - "wartortle": 3.029665603678539, - "butterfree": 5.941709323404814, - "raichu": 5.927234032802895, - "raichu-alola": 4.736415640032045, - "sandslash": 2.186033085740876, - "sandslash-alola": 3.0104295874232423, - "nidoqueen": 3.240279450491083, - "nidoking": 2.071676706408943, - "clefairy": 13.319373792566491, - "clefable": 2.672496589067647, - "jigglypuff": 33.915157994739246, - "wigglytuff": 2.520441714209417, - "gloom": 6.514137321700092, - "vileplume": 3.9926060680011126, - "dugtrio": 4.375192679263366, - "dugtrio-alola": 4.549971281045033, - "persian": 5.4783089772145175, - "persian-alola": 5.624006498403701, - "golduck": 3.488988516307113, - "poliwrath": 2.0382505590592945, - "kadabra": 5.579900503215576, - "machoke": 4.090414972498204, - "tentacruel": 2.968628576591752, - "slowbro": 2.0700283538913213, - "magneton": 3.787985748550691, - "haunter": 7.286480200563437, - "kingler": 2.3525632927062854, - "exeggutor": 2.5424410220260123, - "marowak": 3.2803417677954663, - "marowak-alola": 2.5504687401022785, - "hitmonlee": 2.775043617447559, - "hitmonchan": 2.4848326002998324, - "lickitung": 2.49870668093967, - "weezing": 1.6383932458520227, - "weezing-galar": 2.875302646154311, - "rhydon": 2.460019931722945, - "chansey": 40.83250785793113, - "tangela": 6.0068169642539635, - "kangaskhan": 2.325311999720128, - "seadra": 4.224636478035235, - "seaking": 2.861706447684503, - "starmie": 1.7915168769546455, - "mr-mime": 9.170505717597095, - "mr-mime-galar": 4.702798130096716, - "scyther": 3.0256908529951083, - "jynx": 6.14061199014245, - "electabuzz": 3.1314617548144215, - "magmar": 2.0428995049621403, - "tauros": 2.318473202982946, - "ditto": 2.2864205312299406, - "vaporeon": 3.9318332587922376, - "jolteon": 2.4543043010430807, - "flareon": 3.122499524625826, - "porygon": 3.556164663536909, - "dragonair": 2.152816888121726, - "noctowl": 7.218655150040702, - "lanturn": 2.329914015584941, - "togetic": 6.698552902165598, - "xatu": 4.745178920370305, - "bellossom": 2.9937222050270558, - "azumarill": 2.614206362627559, - "sudowoodo": 2.8757880800704654, - "politoed": 3.033988438424026, - "quagsire": 4.806750225640017, - "slowking": 3.2270841677663444, - "dunsparce": 4.267211757991399, - "qwilfish": 3.6087246385002, - "sneasel": 4.142060477232849, - "piloswine": 1.9016158226896653, - "octillery": 2.6699822801036195, - "mantine": 3.1263086790188934, - "skarmory": 1.8792263317224762, - "hitmontop": 2.946063392483956, - "miltank": 4.180955463151012, - "grovyle": 10.843157870700926, - "sceptile": 1.906100195320555, - "combusken": 3.517599752151726, - "blaziken": 1.7543541219899064, - "marshtomp": 2.816696891547566, - "swampert": 1.4244775710285584, - "linoone": 6.879766899639376, - "linoone-galar": 8.419448639246413, - "pelipper": 6.46672282133511, - "ninjask": 8.501232363232068, - "exploud": 2.083532998943846, - "lairon": 3.3515163419092677, - "manectric": 2.0237331109870733, - "roselia": 5.736354572509129, - "sharpedo": 6.359534816777552, - "wailmer": 7.452639341588709, - "torkoal": 1.9075190965921465, - "flygon": 2.6902928832725324, - "altaria": 1.8777765721224384, - "whiscash": 2.3544750052829855, - "crawdaunt": 2.390240636291331, - "claydol": 4.184928090038189, - "cradily": 3.3865285098913063, - "armaldo": 2.1398934439045596, - "dusclops": 4.761174964524923, - "absol": 2.5369103370254598, - "glalie": 5.353533047696029, - "sealeo": 3.9759167699621574, - "relicanth": 2.0731964018984304, - "metang": 3.5140895950617543, - "luxray": 4.327757773574827, - "vespiquen": 2.9649551427442224, - "cherrim": 8.135646928142663, - "gastrodon": 2.514051809684004, - "drifblim": 5.615567048401745, - "lopunny": 4.552979799455924, - "skuntank": 1.6423796958000487, - "bronzong": 4.0373787040251345, - "munchlax": 3.2663393415375195, - "drapion": 2.578346155519424, - "abomasnow": 4.6200899661872015, - "froslass": 3.819723118135433, - "rotom": 5.212270073143363, - "stoutland": 3.033489017274769, - "liepard": 8.875532303375309, - "musharna": 2.091965053772821, - "unfezant": 6.688974617304828, - "boldore": 3.44995776570722, - "swoobat": 6.784522541207657, - "audino": 2.9373136070471144, - "gurdurr": 2.115927152600552, - "palpitoad": 4.314166077506982, - "seismitoad": 7.210539604241127, - "scolipede": 3.4407771608310433, - "whimsicott": 4.11661337421779, - "lilligant": 4.131574863815491, - "basculin-red-striped": 3.1104199377574817, - "basculin-blue-striped": 4.025183439038641, - "krookodile": 3.453285295336513, - "maractus": 3.179949000540346, - "crustle": 2.1778005036241583, - "sigilyph": 2.8792854032532893, - "cofagrigus": 3.359484443958318, - "garbodor": 2.027276021708684, - "cinccino": 5.784147452709179, - "vanillish": 2.89266444450111, - "emolga": 3.493029521969337, - "escavalier": 1.8852010158575514, - "amoonguss": 3.3026430151326687, - "jellicent": 2.225835704325925, - "galvantula": 1.8080439872427023, - "klang": 3.4951812662333466, - "klinklang": 4.029007208322799, - "beheeyem": 2.3363185768504304, - "lampent": 3.3046355361342017, - "fraxure": 1.6771330868616945, - "beartic": 2.207921907014434, - "cryogonal": 2.8052788026726163, - "accelgor": 3.7076284990356916, - "stunfisk": 1.4895712614882495, - "stunfisk-galar": 2.8085626431634565, - "mienshao": 3.6517402928208074, - "druddigon": 2.0697964504956348, - "golurk": 2.3401171147834257, - "bisharp": 4.083585196627412, - "heatmor": 2.279530465912835, - "durant": 2.745359745745435, - "diggersby": 4.017404007000588, - "talonflame": 3.298215249724243, - "pangoro": 2.05568562261446, - "doublade": 2.3084057942364957, - "malamar": 3.098419215584311, - "barbaracle": 1.7274332102602656, - "heliolisk": 5.149732356792134, - "tyrantrum": 1.7439550982165999, - "aurorus": 4.394672651176857, - "hawlucha": 3.663284368620151, - "dedenne": 3.4815939767400534, - "klefki": 3.1078505916620305, - "trevenant": 4.3370326849380465, - "gourgeist-average": 6.420559664363061, - "charjabug": 4.309740094257192, - "vikavolt": 2.0351647570257305, - "ribombee": 5.828565047513667, - "lycanroc-midday": 4.324647157655697, - "lycanroc-midnight": 2.9551778954857193, - "mudsdale": 1.619407829856681, - "araquanid": 2.8481281364340476, - "lurantis": 3.045033692997228, - "shiinotic": 5.540630385985596, - "salazzle": 3.5553727017122756, - "bewear": 2.108097198508937, - "tsareena": 4.163587585981892, - "comfey": 6.46935294010765, - "oranguru": 3.510317961747744, - "passimian": 2.32614679003352, - "palossand": 2.485888048867624, - "pyukumuku": 46.0379550363365, - "togedemaru": 3.0029888286121533, - "mimikyu-disguised": 5.7880579019727545, - "greedent": 2.5652040493364856, - "orbeetle": 2.2718740765227974, - "thievul": 2.58306884675202, - "eldegoss": 5.722740227826655, - "dubwool": 3.738072413364769, - "drednaw": 1.530601217919941, - "boltund": 5.342838963406206, - "carkol": 2.863244137427883, - "coalossal": 2.2761884261079333, - "sandaconda": 3.184901505902567, - "cramorant": 6.754388128594536, - "barraskewda": 5.0806986258155895, - "toxtricity-amped": 3.0541891635274965, - "centiskorch": 2.430197557317109, - "grapploct": 1.7489900842854018, - "polteageist": 4.278104996224732, - "hatterene": 3.084175134393936, - "grimmsnarl": 4.635445308329054, - "obstagoon": 4.204820074057271, - "perrserker": 3.7441783600012393, - "alcremie": 2.0415793263256177, - "falinks": 3.0787975241890777, - "pincurchin": 3.261666747331121, - "frosmoth": 3.334512089171421, - "indeedee-male": 4.502118707564191, - "morpeko": 3.47483310503831, - "copperajah": 2.9507756972785595, - "duraludon": 1.7625095812724048, - "drakloak": 6.093496984597261, - "bouffalant": 1.60539193902953 + "ivysaur": 4.604834568503179, + "charmeleon": 4.523034489098607, + "wartortle": 3.036704921883521, + "butterfree": 5.96443590052324, + "raichu": 5.942111169324605, + "raichu-alola": 4.750093803299912, + "sandslash": 2.1898339125733775, + "sandslash-alola": 3.0179993451192093, + "nidoqueen": 3.2502205139292024, + "nidoking": 2.0767904879046695, + "clefairy": 13.399601063996565, + "clefable": 2.6810949682966956, + "jigglypuff": 34.041140042444965, + "wigglytuff": 2.5291182455824357, + "gloom": 6.529502623314027, + "vileplume": 4.017074286330705, + "dugtrio": 4.39095556693066, + "dugtrio-alola": 4.565563422559124, + "persian": 5.498718416981443, + "persian-alola": 5.6433647566782525, + "golduck": 3.4978654453644777, + "poliwrath": 2.0408224268115753, + "kadabra": 5.599795184557719, + "machoke": 4.096662667357646, + "tentacruel": 2.9771016365774736, + "slowbro": 2.07403455385859, + "magneton": 3.7976657739305506, + "haunter": 7.329577169730552, + "kingler": 2.3536919961887754, + "exeggutor": 2.5532764377586528, + "marowak": 3.288137187171805, + "marowak-alola": 2.5549296783936466, + "hitmonlee": 2.7806060030728816, + "hitmonchan": 2.491356173370025, + "lickitung": 2.5078303539737146, + "weezing": 1.6409053414592756, + "weezing-galar": 2.880420021998267, + "rhydon": 2.463379128916421, + "chansey": 41.04626314685832, + "tangela": 6.044447725746931, + "kangaskhan": 2.3341077517511755, + "seadra": 4.229745235508614, + "seaking": 2.870396186860625, + "starmie": 1.796060587261251, + "mr-mime": 9.201687296603097, + "mr-mime-galar": 4.72130193116932, + "scyther": 3.030586970256395, + "jynx": 6.171132924196634, + "electabuzz": 3.141029187536715, + "magmar": 2.049479516216376, + "tauros": 2.324904292342537, + "ditto": 2.2798716337936105, + "vaporeon": 3.9454318144958798, + "jolteon": 2.4648131527077517, + "flareon": 3.1365477985976478, + "porygon": 3.569725796860875, + "dragonair": 2.1595098855727555, + "noctowl": 7.245869883566857, + "lanturn": 2.337972524358681, + "togetic": 6.717629687721921, + "xatu": 4.757177078614999, + "bellossom": 3.01268148447296, + "azumarill": 2.6226866124322146, + "sudowoodo": 2.8819179727429454, + "politoed": 3.0433077894700302, + "quagsire": 4.813128916828001, + "slowking": 3.236139032444296, + "dunsparce": 4.286250186628532, + "qwilfish": 3.6137319951416185, + "sneasel": 4.160720415401065, + "piloswine": 1.907531381416729, + "octillery": 2.67689016701311, + "mantine": 3.136182799834236, + "skarmory": 1.8822642260241027, + "hitmontop": 2.9518172391436828, + "miltank": 4.193509964295506, + "grovyle": 10.914257014112916, + "sceptile": 1.9207142753132795, + "combusken": 3.5209345055829857, + "blaziken": 1.756995963476558, + "marshtomp": 2.8243465737586817, + "swampert": 1.4284706610625366, + "linoone": 6.9099502091200735, + "linoone-galar": 8.452572700900927, + "pelipper": 6.474184728440193, + "ninjask": 8.51566864808594, + "exploud": 2.0902384541607018, + "lairon": 3.3596064832810146, + "manectric": 2.029841487231988, + "roselia": 5.773404528715245, + "sharpedo": 6.379315988039901, + "wailmer": 7.473099518797687, + "torkoal": 1.9106400289693735, + "flygon": 2.698067241380781, + "altaria": 1.8825213935071698, + "whiscash": 2.360386559777581, + "crawdaunt": 2.3957674411114964, + "claydol": 4.196352172885962, + "cradily": 3.4080288647691015, + "armaldo": 2.1454767230772576, + "dusclops": 4.777940844528209, + "absol": 2.5457016814031306, + "glalie": 5.3752117539656386, + "sealeo": 3.9906590064031517, + "relicanth": 2.0767323716475232, + "metang": 3.5229127173945356, + "luxray": 4.338461078762991, + "vespiquen": 2.968380293912406, + "cherrim": 8.195418352947469, + "gastrodon": 2.521214792983364, + "drifblim": 5.623071342391861, + "lopunny": 4.568044434945488, + "skuntank": 1.6474621870168948, + "bronzong": 4.05010171531398, + "munchlax": 3.281788607921374, + "drapion": 2.5848411981679353, + "abomasnow": 4.648414369909589, + "froslass": 3.8311821325192437, + "rotom": 5.226724743136094, + "stoutland": 3.04390663285357, + "liepard": 8.907781126992283, + "musharna": 2.1013631995171655, + "unfezant": 6.70635205773662, + "boldore": 3.4551860856458574, + "swoobat": 6.801528731826066, + "audino": 2.947937472691506, + "gurdurr": 2.1162349548824864, + "palpitoad": 4.326061475039376, + "seismitoad": 7.225863063002032, + "scolipede": 3.4462252651108445, + "whimsicott": 4.13642688805156, + "lilligant": 4.16039418467113, + "basculin-red-striped": 3.117862529910631, + "basculin-blue-striped": 4.034959061062262, + "krookodile": 3.464511309533334, + "maractus": 3.2077793320639336, + "crustle": 2.1809675949456855, + "sigilyph": 2.8864503155317878, + "cofagrigus": 3.3686159495809895, + "garbodor": 2.0307179538365796, + "cinccino": 5.805654819753785, + "vanillish": 2.9046784118507443, + "emolga": 3.5010778520532826, + "escavalier": 1.889707227620352, + "amoonguss": 3.319109912001401, + "jellicent": 2.2293663865157214, + "galvantula": 1.8115983494781047, + "klang": 3.5062674223483685, + "klinklang": 4.040285261045006, + "beheeyem": 2.343494698180796, + "lampent": 3.309008732553569, + "fraxure": 1.6811746603857372, + "beartic": 2.2155091568861884, + "cryogonal": 2.8240016222569215, + "accelgor": 3.717222957629574, + "stunfisk": 1.4936281617343026, + "stunfisk-galar": 2.8164622324972233, + "mienshao": 3.6579649307498565, + "druddigon": 2.0766280216649218, + "golurk": 2.3432816014595526, + "bisharp": 4.097109918848712, + "bouffalant": 1.60539193902953, + "heatmor": 2.2892984086375687, + "durant": 2.747613548458884, + "diggersby": 4.0327527228345526, + "talonflame": 3.305020040997368, + "pangoro": 2.0603222051770054, + "doublade": 2.306977596902971, + "malamar": 3.1055823061742966, + "barbaracle": 1.7309108925979237, + "heliolisk": 5.171898603911936, + "tyrantrum": 1.7472738136264447, + "aurorus": 4.415938552496717, + "hawlucha": 3.665743242998314, + "dedenne": 3.4899395394389146, + "klefki": 3.1166597807500547, + "trevenant": 4.354798426501267, + "gourgeist-average": 6.4369488839188005, + "charjabug": 4.317377897087149, + "vikavolt": 2.0391102721365035, + "ribombee": 5.843478399375416, + "lycanroc-midday": 4.340695590394189, + "lycanroc-midnight": 2.964247775301358, + "mudsdale": 1.6218546309253818, + "araquanid": 2.855696879844367, + "lurantis": 3.0609813805989567, + "shiinotic": 5.556019533947065, + "salazzle": 3.5622564078798256, + "bewear": 2.1135752069966083, + "tsareena": 4.192434082871846, + "comfey": 6.509819483898913, + "oranguru": 3.5233840236569276, + "passimian": 2.328599549250087, + "palossand": 2.4909141707364526, + "pyukumuku": 46.08351044564317, + "togedemaru": 3.0121468271817338, + "mimikyu-disguised": 5.8083540622978935, + "greedent": 2.573636492532456, + "orbeetle": 2.276998851909047, + "thievul": 2.5927533657257973, + "eldegoss": 5.76976905166409, + "dubwool": 3.752582778751564, + "drednaw": 1.5341233644142347, + "boltund": 5.357526267418949, + "carkol": 2.8703905654198674, + "coalossal": 2.2815277824486815, + "sandaconda": 3.190623490081549, + "cramorant": 6.77205695323698, + "barraskewda": 5.092342986306466, + "toxtricity-amped": 3.059057842169291, + "centiskorch": 2.4356198080249367, + "grapploct": 1.7500774908277346, + "polteageist": 4.297161029099019, + "hatterene": 3.0930228616745263, + "grimmsnarl": 4.648552051732636, + "obstagoon": 4.219583666034119, + "perrserker": 3.7543337413107984, + "alcremie": 2.0516361181785068, + "falinks": 3.0809579030441463, + "pincurchin": 3.2700419615707776, + "frosmoth": 3.344942774255242, + "indeedee-male": 4.524574929169189, + "morpeko": 3.486161400279989, + "copperajah": 2.9589038412277366, + "duraludon": 1.766745909141247, + "drakloak": 6.108088058768608 }, "heatmor": { - "ivysaur": 5.102354807399143, - "charmeleon": 4.311900934631755, - "wartortle": 2.910012887565352, - "butterfree": 7.227246527041755, - "raichu": 5.689244697907721, - "raichu-alola": 3.8017154599481566, - "sandslash": 2.713795719761025, - "sandslash-alola": 5.186204310203132, - "nidoqueen": 2.9090543318663107, - "nidoking": 2.0988480425247356, - "clefairy": 12.339116916133419, - "clefable": 2.4200920608665415, - "jigglypuff": 32.302375209357585, - "wigglytuff": 2.4197439844857143, - "gloom": 9.150512853420796, - "vileplume": 5.031383591900189, - "dugtrio": 3.5269370707871692, - "dugtrio-alola": 5.118628122700649, - "persian": 4.802832799887276, - "persian-alola": 4.675666270184239, - "golduck": 3.137340548544758, - "poliwrath": 2.0686823618859824, - "kadabra": 4.705004091949197, - "machoke": 4.271540736194883, - "tentacruel": 1.8655015880055714, - "slowbro": 2.3015732951964756, - "magneton": 5.77354477740114, - "haunter": 5.221533772342141, - "kingler": 2.9536678381712322, - "exeggutor": 2.949667928406604, - "marowak": 3.721333519620858, - "marowak-alola": 2.201064068382001, - "hitmonlee": 2.8971912128627504, - "hitmonchan": 2.5823835515949165, - "lickitung": 2.0649206876124415, - "weezing": 2.267121707611966, - "weezing-galar": 3.7000961842855093, - "rhydon": 3.7657192452412716, - "chansey": 31.432119544462015, - "tangela": 10.184291634795555, - "kangaskhan": 1.9928544685438565, - "seadra": 5.039368520347848, - "seaking": 2.463459706814535, - "starmie": 1.7185397105786842, - "mr-mime": 7.575956109676692, - "mr-mime-galar": 5.622329785121192, - "scyther": 4.203205115367875, - "jynx": 11.247027640300239, - "electabuzz": 2.809066355728808, - "magmar": 1.9614018852722381, - "tauros": 2.2788397714308433, - "ditto": 2.5742373115244055, - "vaporeon": 3.065195409587365, - "jolteon": 2.131933684717363, - "flareon": 2.4432574861857335, - "porygon": 3.1376100424996474, - "dragonair": 1.7102050179042458, - "noctowl": 6.456181623793023, - "lanturn": 1.9516505523723693, - "togetic": 7.055732959963384, - "xatu": 4.269475464785297, - "bellossom": 3.9650712660771106, - "azumarill": 1.8551120807989216, - "sudowoodo": 2.8580779832207828, - "politoed": 2.4795159955212616, - "quagsire": 7.380500548505216, - "slowking": 2.5548138820086015, - "dunsparce": 3.886929600684275, - "qwilfish": 3.140388264162227, - "sneasel": 3.2563815511986762, - "piloswine": 2.0465140162281177, - "octillery": 2.645373348661889, - "mantine": 1.9976117720284763, - "skarmory": 4.274759358956196, - "hitmontop": 2.8590111435017436, - "miltank": 4.442203526424453, - "grovyle": 12.518304967097965, - "sceptile": 2.2318376585063446, - "combusken": 3.3336763385707204, - "blaziken": 1.7382570963733612, - "marshtomp": 3.657075263865824, - "swampert": 1.966568670073634, - "linoone": 5.939026732386492, - "linoone-galar": 5.150032466050179, - "pelipper": 5.9213328925954425, - "ninjask": 11.879873862619995, - "exploud": 1.8495363186520537, - "lairon": 2.826683278032986, - "manectric": 2.1517490253115508, - "roselia": 6.372238245716082, - "sharpedo": 5.472397715559714, - "wailmer": 7.0899186014642925, - "torkoal": 2.551417450791722, - "flygon": 2.2661883323313945, - "altaria": 1.7112465897709224, - "whiscash": 2.8890988765286476, - "crawdaunt": 2.1938989487267477, - "claydol": 3.6885295669615332, - "cradily": 2.4241530340745863, - "armaldo": 2.0233456970041463, - "dusclops": 3.946449900077801, - "absol": 2.3886971998012, - "glalie": 6.613967763594002, - "sealeo": 3.415545919489671, - "relicanth": 3.014614871672294, - "metang": 5.15964210687584, - "luxray": 4.279810664980207, - "vespiquen": 4.3011238949748005, - "cherrim": 9.29403621898842, - "gastrodon": 3.1221430323574135, - "drifblim": 4.704748885792423, - "lopunny": 3.9852602087053786, - "skuntank": 1.8787074333406333, - "bronzong": 5.401093763230682, - "munchlax": 2.1662342807015755, - "drapion": 3.1164986198753564, - "abomasnow": 7.20034304072222, - "froslass": 4.895992516795169, - "rotom": 4.328333705483207, - "stoutland": 2.669265759007271, - "liepard": 8.21180793845097, - "musharna": 1.7223403818292846, - "unfezant": 7.5379828937161975, - "boldore": 3.864749697454103, - "swoobat": 6.115653733824951, - "audino": 2.6881964982155018, - "gurdurr": 2.6060122873642593, - "palpitoad": 5.6003218045711884, - "seismitoad": 10.369673122081876, - "scolipede": 5.648935678483021, - "whimsicott": 5.378480588276446, - "lilligant": 5.153210073125715, - "basculin-red-striped": 3.079226564135344, - "basculin-blue-striped": 3.8643841441438895, - "krookodile": 3.2514780750562906, - "maractus": 3.7435167994286536, - "crustle": 2.4440679870882103, - "sigilyph": 2.648841734417359, - "cofagrigus": 3.1393476715192126, - "garbodor": 2.0963944112630455, - "cinccino": 5.289426682137818, - "vanillish": 3.372779495577511, - "emolga": 3.4637440317296653, - "escavalier": 4.323384817841328, - "amoonguss": 3.992589291423264, - "jellicent": 1.8174457505305717, - "galvantula": 2.591426239944324, - "klang": 4.598635348007168, - "klinklang": 6.2348271316323265, - "beheeyem": 1.8876344188539296, - "lampent": 2.8589489903708643, - "fraxure": 1.4562668800631302, - "beartic": 2.7476997920183686, - "cryogonal": 3.073150786212543, - "accelgor": 5.106556420408726, - "stunfisk": 1.323742290545547, - "stunfisk-galar": 3.560417980539884, - "mienshao": 3.6169893767750674, - "druddigon": 1.6182290345017483, - "golurk": 2.19008277122283, - "bisharp": 4.175385639507667, - "bouffalant": 1.489016606665372, - "durant": 10.522936913525019, - "diggersby": 3.3872272751626022, - "talonflame": 3.0197115713447427, - "pangoro": 2.022508534632103, - "doublade": 5.433579583134215, - "malamar": 3.2194241907068415, - "barbaracle": 2.3855531072328935, - "heliolisk": 5.471859085827369, - "tyrantrum": 1.47819589833091, - "aurorus": 2.6184163019285016, - "hawlucha": 4.037836598094913, - "dedenne": 3.5328070001921894, - "klefki": 5.834466913538355, - "trevenant": 5.024076975853873, - "gourgeist-average": 10.59833690000671, - "charjabug": 6.5004305165953715, - "vikavolt": 3.177529500261608, - "ribombee": 7.828840464268141, - "lycanroc-midday": 3.343196818524408, - "lycanroc-midnight": 2.4915843164629474, - "mudsdale": 1.866347179812768, - "araquanid": 2.4908917451258423, - "lurantis": 3.92682779536956, - "shiinotic": 7.014912374991052, - "salazzle": 3.320625731089868, - "bewear": 2.0520340957727408, - "tsareena": 5.024808280731282, - "comfey": 5.380926919800697, - "oranguru": 2.907983390157294, - "passimian": 2.6625411116471143, - "palossand": 2.466428210027155, - "pyukumuku": 50.43555181681644, - "togedemaru": 3.575059555339423, - "mimikyu-disguised": 4.478365125955976, - "greedent": 2.5256044434792027, - "orbeetle": 2.841906934748333, - "thievul": 2.23533406331989, - "eldegoss": 6.15068247827352, - "dubwool": 4.735718775441033, - "drednaw": 1.8685131916243711, - "boltund": 5.313407735520996, - "carkol": 2.2583875817633983, - "coalossal": 1.8608730740122903, - "sandaconda": 3.9980786192904327, - "cramorant": 4.448426605365983, - "barraskewda": 5.159575395178067, - "toxtricity-amped": 2.960520500917441, - "centiskorch": 2.3843665464946406, - "grapploct": 1.7924886474805624, - "polteageist": 3.1216985137166766, - "hatterene": 2.8822672085785603, - "grimmsnarl": 4.250303577944905, - "obstagoon": 2.8898562636709975, - "perrserker": 6.242079895147974, - "alcremie": 1.8763200904068458, - "falinks": 4.005557411716424, - "pincurchin": 3.2343285097626504, - "frosmoth": 6.017297302952867, - "indeedee-male": 3.7814142483380655, - "morpeko": 3.121382697202349, - "copperajah": 4.168137558126861, - "duraludon": 2.1867735949798712, - "drakloak": 4.012678150174651, - "heatmor": 1.9291685229350104 + "ivysaur": 5.122309103356978, + "charmeleon": 4.328260750259261, + "wartortle": 2.9064991589690674, + "butterfree": 7.253170751437759, + "raichu": 5.696872493168727, + "raichu-alola": 3.8031777471320916, + "sandslash": 2.715139884281508, + "sandslash-alola": 5.206950926494688, + "nidoqueen": 2.908689903832063, + "nidoking": 2.1022396750854933, + "clefairy": 12.40824795077625, + "clefable": 2.423338360177196, + "jigglypuff": 32.39843200671451, + "wigglytuff": 2.4241563447840635, + "gloom": 9.182103469952045, + "vileplume": 5.054601230898349, + "dugtrio": 3.523426804946441, + "dugtrio-alola": 5.132320861615667, + "persian": 4.807725328575797, + "persian-alola": 4.680260171996865, + "golduck": 3.1305899434437388, + "poliwrath": 2.066527311984819, + "kadabra": 4.708677626424615, + "machoke": 4.273566122093241, + "tentacruel": 1.8600558193207715, + "slowbro": 2.305635391844642, + "magneton": 5.7959169113333004, + "haunter": 5.233101932810877, + "kingler": 2.9500011947101035, + "exeggutor": 2.9558074363880733, + "marowak": 3.724623730675984, + "marowak-alola": 2.2073756554875006, + "hitmonlee": 2.9040279514848297, + "hitmonchan": 2.5904618503225323, + "lickitung": 2.065988494182631, + "weezing": 2.272449427624629, + "weezing-galar": 3.7147020364232124, + "rhydon": 3.763164274809731, + "chansey": 31.40843233510848, + "tangela": 10.224413928242889, + "kangaskhan": 1.9933616651918844, + "seadra": 5.033486785816671, + "seaking": 2.459174407266857, + "starmie": 1.7184346577694856, + "mr-mime": 7.581268447078374, + "mr-mime-galar": 5.638576031347957, + "scyther": 4.214987580281036, + "jynx": 11.302517464342248, + "electabuzz": 2.811207982905673, + "magmar": 1.9683533914590599, + "tauros": 2.2797934878155433, + "ditto": 2.560098150300601, + "vaporeon": 3.058914382453781, + "jolteon": 2.1339306340110737, + "flareon": 2.436970198553169, + "porygon": 3.141329670332789, + "dragonair": 1.7089574063117055, + "noctowl": 6.458541754556183, + "lanturn": 1.948740432477606, + "togetic": 7.092116949005853, + "xatu": 4.272178760298578, + "bellossom": 3.9829953016474464, + "azumarill": 1.8484407634287376, + "sudowoodo": 2.8539009195814473, + "politoed": 2.4738350795982784, + "quagsire": 7.376462263565726, + "slowking": 2.5521640956255442, + "dunsparce": 3.895184746801295, + "qwilfish": 3.1354675364230777, + "sneasel": 3.2652958225174764, + "piloswine": 2.050395071928975, + "octillery": 2.6444301039929936, + "mantine": 1.9930287688377408, + "skarmory": 4.292971708648073, + "hitmontop": 2.861383765600287, + "miltank": 4.449659381381899, + "grovyle": 12.566763533049935, + "sceptile": 2.241342387210436, + "combusken": 3.338569253088523, + "blaziken": 1.7435706119780736, + "marshtomp": 3.653507722179053, + "swampert": 1.965038264568365, + "linoone": 5.946653280942139, + "linoone-galar": 5.153662639340165, + "pelipper": 5.917832932973241, + "ninjask": 11.921883423816404, + "exploud": 1.8516392670334088, + "lairon": 2.8300882176096365, + "manectric": 2.1589326292815687, + "roselia": 6.393761432553189, + "sharpedo": 5.466899399952822, + "wailmer": 7.0826451825104115, + "torkoal": 2.56411989170658, + "flygon": 2.265405369561618, + "altaria": 1.71288568643127, + "whiscash": 2.8887808869527074, + "crawdaunt": 2.192561794774327, + "claydol": 3.6896120293181145, + "cradily": 2.4252899717366625, + "armaldo": 2.0236161400960624, + "dusclops": 3.9548303994189036, + "absol": 2.3947932547225528, + "glalie": 6.639174357027747, + "sealeo": 3.411693671361209, + "relicanth": 3.0094559183299454, + "metang": 5.178650738480197, + "luxray": 4.283823084147993, + "vespiquen": 4.315181450944484, + "cherrim": 9.329502535768198, + "gastrodon": 3.1202498226044897, + "drifblim": 4.709293115511512, + "lopunny": 3.9886224381038855, + "skuntank": 1.883121506715185, + "bronzong": 5.422314423520545, + "munchlax": 2.1666268124168258, + "drapion": 3.1242293948146402, + "abomasnow": 7.239214933182881, + "froslass": 4.917674683447463, + "rotom": 4.337624532985881, + "stoutland": 2.6703858969859793, + "liepard": 8.227942801574878, + "musharna": 1.7245603500496807, + "unfezant": 7.547365444945333, + "boldore": 3.859763610703201, + "swoobat": 6.1195725471768565, + "audino": 2.6965062593966143, + "gurdurr": 2.6078710577571904, + "palpitoad": 5.594907521288457, + "seismitoad": 10.374939099357194, + "scolipede": 5.671060454121818, + "whimsicott": 5.401012740720294, + "lilligant": 5.17654664936444, + "basculin-red-striped": 3.0752595348127585, + "basculin-blue-striped": 3.857311127495037, + "krookodile": 3.2528503246499607, + "maractus": 3.760253321489138, + "crustle": 2.4465903473782795, + "sigilyph": 2.651586396584707, + "cofagrigus": 3.1445466933040636, + "garbodor": 2.0980714510580794, + "cinccino": 5.296971325877587, + "vanillish": 3.385967125090485, + "emolga": 3.467966751251107, + "escavalier": 4.337076547622721, + "amoonguss": 4.005776309494209, + "jellicent": 1.818916229367853, + "galvantula": 2.6001186139200185, + "klang": 4.612297879808298, + "klinklang": 6.26016427150476, + "beheeyem": 1.8876618847132494, + "lampent": 2.861417690796647, + "fraxure": 1.4553617301866508, + "beartic": 2.7559684928000276, + "cryogonal": 3.085331375621402, + "accelgor": 5.127144097954147, + "stunfisk": 1.3233113556615965, + "stunfisk-galar": 3.5670657847398295, + "mienshao": 3.6180523696637295, + "druddigon": 1.616819996639748, + "golurk": 2.1930628786337767, + "bisharp": 4.187028307940426, + "bouffalant": 1.489545178110727, + "heatmor": 1.9291685229350104, + "durant": 10.581228216542723, + "diggersby": 3.384412914470901, + "talonflame": 3.0253721648942395, + "pangoro": 2.025592684747558, + "doublade": 5.456746337865146, + "malamar": 3.2220786536325274, + "barbaracle": 2.383456290214374, + "heliolisk": 5.483361642414289, + "tyrantrum": 1.475181374909917, + "aurorus": 2.618157603145054, + "hawlucha": 4.04141379217982, + "dedenne": 3.5409620035018214, + "klefki": 5.866920277684381, + "trevenant": 5.046117142090859, + "gourgeist-average": 10.657650968432955, + "charjabug": 6.51245791188053, + "vikavolt": 3.1883666061351157, + "ribombee": 7.866218657196171, + "lycanroc-midday": 3.3357492795424877, + "lycanroc-midnight": 2.4886092683829166, + "mudsdale": 1.8683568309419951, + "araquanid": 2.492152044232115, + "lurantis": 3.9414770671847164, + "shiinotic": 7.042055170634892, + "salazzle": 3.330881140552229, + "bewear": 2.05323422909274, + "tsareena": 5.044300579305151, + "comfey": 5.398781509470557, + "oranguru": 2.9096619960519945, + "passimian": 2.664429035938393, + "palossand": 2.4683686805053746, + "pyukumuku": 50.45773886376013, + "togedemaru": 3.588381492144589, + "mimikyu-disguised": 4.485236546095273, + "greedent": 2.528903063870004, + "orbeetle": 2.849603490980665, + "thievul": 2.2397005385021327, + "eldegoss": 6.174367796138882, + "dubwool": 4.7503214267301725, + "drednaw": 1.8670957839221525, + "boltund": 5.320214936050419, + "carkol": 2.256900598716972, + "coalossal": 1.858432516906828, + "sandaconda": 4.002750431703503, + "cramorant": 4.437742352128291, + "barraskewda": 5.154644347133588, + "toxtricity-amped": 2.9619758111725227, + "centiskorch": 2.388649810327148, + "grapploct": 1.7938273769200062, + "polteageist": 3.128325453986889, + "hatterene": 2.8877125767725245, + "grimmsnarl": 4.2563564139492325, + "obstagoon": 2.89150475332589, + "perrserker": 6.266181362726379, + "alcremie": 1.8845765080342285, + "falinks": 4.015310596361416, + "pincurchin": 3.2335636097977294, + "frosmoth": 6.043831772317801, + "indeedee-male": 3.7898127323406627, + "morpeko": 3.125697445970222, + "copperajah": 4.187183154606255, + "duraludon": 2.1915935090719345, + "drakloak": 4.010420410842031 }, "durant": { - "ivysaur": 4.033107106085929, - "charmeleon": 2.1864224381533464, - "wartortle": 2.8749190238069167, - "butterfree": 5.975117638377489, - "raichu": 5.322908635465527, - "raichu-alola": 5.443847775767916, - "sandslash": 2.20761788070959, - "sandslash-alola": 1.9068703633077293, - "nidoqueen": 2.5939137400404944, - "nidoking": 1.6888189838784204, - "clefairy": 8.680808870318666, - "clefable": 2.7106477519689127, - "jigglypuff": 36.27138182994899, - "wigglytuff": 2.6443792933457013, - "gloom": 6.850903283567614, - "vileplume": 3.4301953989784613, - "dugtrio": 4.2150006987087005, - "dugtrio-alola": 3.2184475556733982, - "persian": 5.060990425238124, - "persian-alola": 5.814256972867895, - "golduck": 3.458174191393248, - "poliwrath": 2.2451250327211554, - "kadabra": 6.949886179700382, - "machoke": 3.774527873367644, - "tentacruel": 2.912231005511997, - "slowbro": 1.944263117475543, - "magneton": 2.5432605009745677, - "haunter": 4.390542559308192, - "kingler": 2.507658684347853, - "exeggutor": 4.175214896604449, - "marowak": 3.273463781938064, - "marowak-alola": 1.5595747642540707, - "hitmonlee": 2.350665447591399, - "hitmonchan": 2.0251236789236127, - "lickitung": 1.9494762420134002, - "weezing": 0.9648928526225888, - "weezing-galar": 2.3857519341064126, - "rhydon": 2.434500237290624, - "chansey": 34.782278721623825, - "tangela": 6.409271962442476, - "kangaskhan": 2.1324882311313016, - "seadra": 4.023365415247163, - "seaking": 3.05843083970137, - "starmie": 2.1184241873611853, - "mr-mime": 9.76954472558834, - "mr-mime-galar": 5.606112531565675, - "scyther": 3.210001710038522, - "jynx": 7.511767571198789, - "electabuzz": 2.63460736274527, - "magmar": 0.8739756236795193, - "tauros": 2.164031273179414, - "ditto": 2.9353563632667576, - "vaporeon": 3.7370974775778913, - "jolteon": 2.13401542882929, - "flareon": 1.1880786388609121, - "porygon": 2.977361366602506, - "dragonair": 2.1567578525432176, - "noctowl": 7.5178917670802115, - "lanturn": 1.9757851716075798, - "togetic": 4.910328390792394, - "xatu": 4.151519199944931, - "bellossom": 3.595822120572056, - "azumarill": 2.7944973206852395, - "sudowoodo": 2.8773393188563086, - "politoed": 2.9952451255139474, - "quagsire": 4.324238238606842, - "slowking": 3.9872542438765635, - "dunsparce": 3.4841912026410418, - "qwilfish": 3.9916938744851445, - "sneasel": 3.3185746031794676, - "piloswine": 1.8967275974669835, - "octillery": 2.69218497558846, - "mantine": 4.364463380855195, - "skarmory": 2.195569770389892, - "hitmontop": 2.750085734803568, - "miltank": 4.005201289734126, - "grovyle": 13.249571164496878, - "sceptile": 2.3651750044037447, - "combusken": 2.238256156062414, - "blaziken": 1.0815133682135152, - "marshtomp": 2.6937594283951434, - "swampert": 1.2920076794648567, - "linoone": 6.033775530787879, - "linoone-galar": 6.174379293074821, - "pelipper": 9.153958816382023, - "ninjask": 9.195491857118192, - "exploud": 1.7791369812227025, - "lairon": 2.1871172101091956, - "manectric": 1.5765888094103941, - "roselia": 4.952324226637188, - "sharpedo": 7.6880649770247915, - "wailmer": 7.2503089992636855, - "torkoal": 0.7688576031674688, - "flygon": 2.6884087430179786, - "altaria": 1.072528653732692, - "whiscash": 2.056111921694858, - "crawdaunt": 2.502823895924645, - "claydol": 4.851345001719495, - "cradily": 3.4517882205137065, - "armaldo": 2.3115749231413556, - "dusclops": 3.208449036771399, - "absol": 2.6134719204996273, - "glalie": 5.387601805688457, - "sealeo": 3.503150673890924, - "relicanth": 1.9792388499377012, - "metang": 3.290801932018497, - "luxray": 4.005489360268107, - "vespiquen": 3.233924894970829, - "cherrim": 9.168583363432544, - "gastrodon": 2.536582252792546, - "drifblim": 4.820564191883793, - "lopunny": 4.274102197628902, - "skuntank": 1.180673724448202, - "bronzong": 3.8090073022456896, - "munchlax": 2.6746281070133535, - "drapion": 2.6250820057781796, - "abomasnow": 4.930633004848402, - "froslass": 3.6203251919966575, - "rotom": 2.823199192908916, - "stoutland": 2.843760489120136, - "liepard": 10.870217042698886, - "musharna": 2.423732964824359, - "unfezant": 6.885150708125087, - "boldore": 3.4507204313845445, - "swoobat": 5.952990817058558, - "audino": 2.0226623014422174, - "gurdurr": 2.0576467902603, - "palpitoad": 3.820488922601653, - "seismitoad": 7.824664327856792, - "scolipede": 3.196008268964103, - "whimsicott": 3.932289186688594, - "lilligant": 4.71203445173923, - "basculin-red-striped": 3.305977755436607, - "basculin-blue-striped": 3.9237232033794394, - "krookodile": 3.8430529551389894, - "maractus": 3.5182368336572183, - "crustle": 2.4197900434860204, - "sigilyph": 2.5570699706407143, - "cofagrigus": 2.2420094363797567, - "garbodor": 1.9770656906431379, - "cinccino": 5.365107442559637, - "vanillish": 2.748921976996225, - "emolga": 2.505140437130201, - "escavalier": 1.7325323417018623, - "amoonguss": 3.2423870638571404, - "jellicent": 2.0385370650520525, - "galvantula": 1.5714166221441421, - "klang": 2.311476263318909, - "klinklang": 3.2346513326672275, - "beheeyem": 2.6434211997493176, - "lampent": 1.0889749496529815, - "fraxure": 1.7791219801716074, - "beartic": 2.1199984671861847, - "cryogonal": 2.57625523006449, - "accelgor": 3.656941435134022, - "stunfisk": 1.2676557020542236, - "stunfisk-galar": 1.883567128548831, - "mienshao": 3.2523650661413495, - "druddigon": 2.061083896088227, - "golurk": 1.7824600792283638, - "bisharp": 2.690906386353934, - "bouffalant": 1.492629474599875, - "heatmor": 1.148959953479842, - "diggersby": 3.575035766185719, - "talonflame": 2.4099886099659487, - "pangoro": 1.922924379123267, - "doublade": 1.952312231211091, - "malamar": 5.770258343093136, - "barbaracle": 1.6683069260521677, - "heliolisk": 4.005763458029494, - "tyrantrum": 1.8068039702648766, - "aurorus": 3.942445769776535, - "hawlucha": 4.125546209183985, - "dedenne": 2.8183887419311624, - "klefki": 3.1155978101068946, - "trevenant": 3.6153006498025357, - "gourgeist-average": 3.739802574010061, - "charjabug": 4.231649491910937, - "vikavolt": 1.9799101823043015, - "ribombee": 6.1287717466258425, - "lycanroc-midday": 4.1595640087107935, - "lycanroc-midnight": 2.9314861878821565, - "mudsdale": 1.680600421074756, - "araquanid": 3.156568087815501, - "lurantis": 3.723854445416895, - "shiinotic": 5.811957847644635, - "salazzle": 2.082706778417062, - "bewear": 1.8082889765152246, - "tsareena": 4.880944322822717, - "comfey": 6.216584117017409, - "oranguru": 4.3586750056563535, - "passimian": 2.178901825087268, - "palossand": 1.6844321752585327, - "pyukumuku": 55.0875878215804, - "togedemaru": 2.0508301461184124, - "mimikyu-disguised": 5.826136534839138, - "greedent": 2.4477194282746404, - "orbeetle": 2.7098422372047666, - "thievul": 2.0045188971293055, - "eldegoss": 6.449823014663281, - "dubwool": 3.390734450059263, - "drednaw": 1.4326599814704377, - "boltund": 4.850089745648914, - "carkol": 1.6103047934054575, - "coalossal": 1.2732339253796214, - "sandaconda": 3.101161932038999, - "cramorant": 10.234177816154084, - "barraskewda": 5.365361946023852, - "toxtricity-amped": 2.2654784303037303, - "centiskorch": 1.4551105559229822, - "grapploct": 1.4963137129121296, - "polteageist": 2.994526325261318, - "hatterene": 3.3539488020024244, - "grimmsnarl": 4.6481665826925935, - "obstagoon": 3.495163807338423, - "perrserker": 2.810854549007158, - "alcremie": 1.7455747288691814, - "falinks": 3.0174300173016952, - "pincurchin": 2.89112253603206, - "frosmoth": 3.3419380854060337, - "indeedee-male": 4.013898513726731, - "morpeko": 3.8986456787222616, - "copperajah": 2.256116845813465, - "duraludon": 1.2972038738730092, - "drakloak": 4.33535693750458, - "durant": 2.6798392504068516 + "ivysaur": 4.045897121325526, + "charmeleon": 2.1673298695355028, + "wartortle": 2.8731838812452173, + "butterfree": 5.989033352455593, + "raichu": 5.3097358078919585, + "raichu-alola": 5.4454733063737235, + "sandslash": 2.2082741371287016, + "sandslash-alola": 1.9071254423563455, + "nidoqueen": 2.590026965685894, + "nidoking": 1.6859528123987233, + "clefairy": 8.63796591867371, + "clefable": 2.71285915652871, + "jigglypuff": 36.3310742008647, + "wigglytuff": 2.647602285765971, + "gloom": 6.867033096077901, + "vileplume": 3.4359678972272585, + "dugtrio": 4.217406524799811, + "dugtrio-alola": 3.2177452551917822, + "persian": 5.071051087234432, + "persian-alola": 5.82056441859813, + "golduck": 3.459715935078952, + "poliwrath": 2.2475730183874596, + "kadabra": 6.969796204174385, + "machoke": 3.7759408494332365, + "tentacruel": 2.91283980114318, + "slowbro": 1.9392421987504567, + "magneton": 2.5367148255261514, + "haunter": 4.3901360119505055, + "kingler": 2.5086035850514827, + "exeggutor": 4.188955543968181, + "marowak": 3.2750202799517414, + "marowak-alola": 1.5541246087195169, + "hitmonlee": 2.349255255505703, + "hitmonchan": 2.023371140262152, + "lickitung": 1.948454115117609, + "weezing": 0.9620959504954902, + "weezing-galar": 2.37662827900074, + "rhydon": 2.4344265704999684, + "chansey": 34.852030132727315, + "tangela": 6.4262326969853305, + "kangaskhan": 2.136533534806697, + "seadra": 4.0185102095120335, + "seaking": 3.065712525116854, + "starmie": 2.122242589497567, + "mr-mime": 9.79312366282016, + "mr-mime-galar": 5.619504777657209, + "scyther": 3.214693629172097, + "jynx": 7.534430264512933, + "electabuzz": 2.6305074508722823, + "magmar": 0.8678751728451575, + "tauros": 2.166582862501449, + "ditto": 2.917473117890756, + "vaporeon": 3.737774262363767, + "jolteon": 2.128845768662581, + "flareon": 1.1825757820956053, + "porygon": 2.9776116083476443, + "dragonair": 2.1587872093415346, + "noctowl": 7.52996329127051, + "lanturn": 1.9694244133730043, + "togetic": 4.887461738434709, + "xatu": 4.15248463514035, + "bellossom": 3.605156155550521, + "azumarill": 2.8022701223975135, + "sudowoodo": 2.880480971439578, + "politoed": 2.9974671245632694, + "quagsire": 4.3125524639198956, + "slowking": 3.9983589752811506, + "dunsparce": 3.486197630993403, + "qwilfish": 3.998858886877913, + "sneasel": 3.3270329008758335, + "piloswine": 1.8990181442204461, + "octillery": 2.694447087249495, + "mantine": 4.366172338918694, + "skarmory": 2.1978691063096827, + "hitmontop": 2.7532091909190433, + "miltank": 4.013123150459907, + "grovyle": 13.290785487708902, + "sceptile": 2.3735318033884885, + "combusken": 2.223992414122379, + "blaziken": 1.0745605217787246, + "marshtomp": 2.6927722107950323, + "swampert": 1.2895530093538872, + "linoone": 6.045498634003014, + "linoone-galar": 6.179343332342091, + "pelipper": 9.166911749179832, + "ninjask": 9.21292907631273, + "exploud": 1.7795646694148672, + "lairon": 2.1869355096843117, + "manectric": 1.566584889650017, + "roselia": 4.962196217403397, + "sharpedo": 7.7076494692805495, + "wailmer": 7.25217023901013, + "torkoal": 0.7628240582550763, + "flygon": 2.690418920594668, + "altaria": 1.0689479400889499, + "whiscash": 2.054629822302315, + "crawdaunt": 2.5054665933930207, + "claydol": 4.854165246426092, + "cradily": 3.4613979656512117, + "armaldo": 2.316759923929013, + "dusclops": 3.2083696385032576, + "absol": 2.6097514339038, + "glalie": 5.400715825880232, + "sealeo": 3.5050371853913447, + "relicanth": 1.9806240194311515, + "metang": 3.2966748001697495, + "luxray": 4.001860561904672, + "vespiquen": 3.2390368844681667, + "cherrim": 9.191617806601853, + "gastrodon": 2.53851109766997, + "drifblim": 4.818150492070172, + "lopunny": 4.282127923116198, + "skuntank": 1.1797897115212073, + "bronzong": 3.819512917798771, + "munchlax": 2.677205774917526, + "drapion": 2.63028741182091, + "abomasnow": 4.947149352463462, + "froslass": 3.623434690334867, + "rotom": 2.815242222321219, + "stoutland": 2.8494087482705845, + "liepard": 10.900153510247048, + "musharna": 2.430277239086532, + "unfezant": 6.8912859150414505, + "boldore": 3.4527334663109333, + "swoobat": 5.954571923416998, + "audino": 2.0133175814854884, + "gurdurr": 2.0574733393091154, + "palpitoad": 3.813485648949983, + "seismitoad": 7.837810887549164, + "scolipede": 3.1996345071415866, + "whimsicott": 3.9390497920952647, + "lilligant": 4.724429576056163, + "basculin-red-striped": 3.3120027149488513, + "basculin-blue-striped": 3.9240862570781756, + "krookodile": 3.8443829947477264, + "maractus": 3.529441395009713, + "crustle": 2.4242831025594445, + "sigilyph": 2.5583311594897733, + "cofagrigus": 2.2388896257167903, + "garbodor": 1.9830320997311337, + "cinccino": 5.376173721831458, + "vanillish": 2.7529757648286335, + "emolga": 2.5008621261741784, + "escavalier": 1.7336170256032775, + "amoonguss": 3.253736480193322, + "jellicent": 2.042137974971487, + "galvantula": 1.5687012373511278, + "klang": 2.3074034434331665, + "klinklang": 3.2387486037674664, + "beheeyem": 2.645346185833359, + "lampent": 1.0810108938286938, + "fraxure": 1.78259502863339, + "beartic": 2.122042080593996, + "cryogonal": 2.583402383960191, + "accelgor": 3.6632989653689325, + "stunfisk": 1.2644687463722022, + "stunfisk-galar": 1.8790288396575456, + "mienshao": 3.251971744668312, + "druddigon": 2.064005912601624, + "golurk": 1.7811122599629892, + "bisharp": 2.6953539262939747, + "bouffalant": 1.4958895445214493, + "heatmor": 1.140607911671634, + "durant": 2.6798392504068516, + "diggersby": 3.5771910291987488, + "talonflame": 2.396135010292475, + "pangoro": 1.925387704566821, + "doublade": 1.9515221217889058, + "malamar": 5.780936427085331, + "barbaracle": 1.6715054297526857, + "heliolisk": 4.001745501980185, + "tyrantrum": 1.8091682770691606, + "aurorus": 3.94551596249514, + "hawlucha": 4.131668711782351, + "dedenne": 2.815329748784394, + "klefki": 3.1199271350810056, + "trevenant": 3.6249720758340915, + "gourgeist-average": 3.7187594796430257, + "charjabug": 4.232558546627285, + "vikavolt": 1.9804517637904362, + "ribombee": 6.1369617756791275, + "lycanroc-midday": 4.166743690991098, + "lycanroc-midnight": 2.9364752696736236, + "mudsdale": 1.6811008137995604, + "araquanid": 3.1672699170871583, + "lurantis": 3.733447854984494, + "shiinotic": 5.8208830505997025, + "salazzle": 2.0625268007066975, + "bewear": 1.8099573166671763, + "tsareena": 4.896792465926221, + "comfey": 6.23228895772895, + "oranguru": 4.369599600171757, + "passimian": 2.1791781112106, + "palossand": 1.6796189357084041, + "pyukumuku": 55.197527078135636, + "togedemaru": 2.0512676204695754, + "mimikyu-disguised": 5.838786591476725, + "greedent": 2.4531093796561336, + "orbeetle": 2.714362037098141, + "thievul": 2.001384108929037, + "eldegoss": 6.46925735514641, + "dubwool": 3.3975149614961158, + "drednaw": 1.4348387689588593, + "boltund": 4.845077588983816, + "carkol": 1.595694463548659, + "coalossal": 1.2642261308237286, + "sandaconda": 3.099808274492381, + "cramorant": 10.257014875454711, + "barraskewda": 5.373897662386005, + "toxtricity-amped": 2.2593559411002273, + "centiskorch": 1.4470153162692856, + "grapploct": 1.4947416115799839, + "polteageist": 3.0017903201119047, + "hatterene": 3.3626834385212585, + "grimmsnarl": 4.650103258003403, + "obstagoon": 3.499366041078008, + "perrserker": 2.8095927305679753, + "alcremie": 1.740991516735113, + "falinks": 3.019458279649094, + "pincurchin": 2.883685059758542, + "frosmoth": 3.3426918110273007, + "indeedee-male": 4.0026557114415375, + "morpeko": 3.8998719917897198, + "copperajah": 2.2573413506256053, + "duraludon": 1.2957153730890933, + "drakloak": 4.33412582248874 }, "diggersby": { - "ivysaur": 2.7240578390865173, - "charmeleon": 4.486468894381141, - "wartortle": 2.139062826016726, - "butterfree": 6.039328548381998, - "raichu": 6.410093302067841, - "raichu-alola": 4.546397828852741, - "sandslash": 1.8687021499261718, - "sandslash-alola": 1.9975857701104411, - "nidoqueen": 3.346099339402614, - "nidoking": 2.063041036504534, - "clefairy": 8.047081442855541, - "clefable": 1.9516083497506893, - "jigglypuff": 24.793313797397843, - "wigglytuff": 1.8296987182824862, - "gloom": 5.385278205034233, - "vileplume": 2.4671585838920236, - "dugtrio": 3.632734934452082, - "dugtrio-alola": 3.9944820065800997, - "persian": 3.890769567992369, - "persian-alola": 3.8899488494525425, - "golduck": 2.4916115589676613, - "poliwrath": 1.5170367410085168, - "kadabra": 3.8518662256806815, - "machoke": 3.355134618180727, - "tentacruel": 2.7189848824815908, - "slowbro": 1.5618311436669963, - "magneton": 5.066131456471245, - "haunter": 3.7706387728342694, - "kingler": 1.8339042619637418, - "exeggutor": 1.5562410534440831, - "marowak": 2.7006184788921397, - "marowak-alola": 2.3289455641962973, - "hitmonlee": 2.1071595576595556, - "hitmonchan": 1.9509647739950575, - "lickitung": 1.5639516587056717, - "weezing": 1.6762888019463027, - "weezing-galar": 2.7503952784828587, - "rhydon": 2.261782635011439, - "chansey": 26.367521865850392, - "tangela": 3.438893955123338, - "kangaskhan": 1.6671747249796365, - "seadra": 3.258025539230976, - "seaking": 2.1665833582001284, - "starmie": 1.2696348394946402, - "mr-mime": 6.549349543952733, - "mr-mime-galar": 3.308726956739842, - "scyther": 3.3940882822732847, - "jynx": 4.3805169335887415, - "electabuzz": 3.7155774695948365, - "magmar": 2.040333902200796, - "tauros": 1.6950660470161854, - "ditto": 3.983769608001296, - "vaporeon": 2.733361085714466, - "jolteon": 2.6140890944986133, - "flareon": 3.094006833657973, - "porygon": 2.567020657289886, - "dragonair": 1.6342359730002585, - "noctowl": 6.174111956113055, - "lanturn": 2.2273289344781375, - "togetic": 5.390541072542225, - "xatu": 3.7690621307161756, - "bellossom": 1.872287245261428, - "azumarill": 1.8263841033430785, - "sudowoodo": 2.584717038556656, - "politoed": 2.234309525102214, - "quagsire": 3.559928738740755, - "slowking": 2.0989075529210273, - "dunsparce": 2.934435442125533, - "qwilfish": 3.4217630308752884, - "sneasel": 2.219528241846946, - "piloswine": 1.242844986814779, - "octillery": 2.0205462157454788, - "mantine": 2.4399252557399533, - "skarmory": 1.5444983437394626, - "hitmontop": 2.2338037843099414, - "miltank": 3.107341405860204, - "grovyle": 5.984958177389328, - "sceptile": 1.1385149796565872, - "combusken": 3.4473658684028656, - "blaziken": 1.730189914045284, - "marshtomp": 2.008909017790086, - "swampert": 1.025223387294386, - "linoone": 4.930630869562103, - "linoone-galar": 4.258355798992507, - "pelipper": 5.696279894463582, - "ninjask": 9.553496473362966, - "exploud": 1.3461159069236124, - "lairon": 3.078752131119363, - "manectric": 2.09329188743634, - "roselia": 3.491825697100199, - "sharpedo": 4.33034943051117, - "wailmer": 5.47590881175897, - "torkoal": 1.8771158536534225, - "flygon": 1.9737925642054437, - "altaria": 1.6133832388984943, - "whiscash": 1.6341467622225658, - "crawdaunt": 1.571093583976959, - "claydol": 2.8755309059599217, - "cradily": 2.0415901555678686, - "armaldo": 1.818252744713603, - "dusclops": 3.4470881053937426, - "absol": 1.692432923035455, - "glalie": 3.8021007368689776, - "sealeo": 2.703092564962776, - "relicanth": 1.8609804675611423, - "metang": 3.3111700957659145, - "luxray": 4.7608808893971, - "vespiquen": 3.3149210710393353, - "cherrim": 4.473051626959035, - "gastrodon": 1.903926299528087, - "drifblim": 4.702040119486517, - "lopunny": 3.2174626551077825, - "skuntank": 1.65319417721357, - "bronzong": 2.3032730177001737, - "munchlax": 2.328548790835332, - "drapion": 2.5699782748019837, - "abomasnow": 2.8078836318105322, - "froslass": 2.738267662704435, - "rotom": 3.5915871918635722, - "stoutland": 2.172693216851421, - "liepard": 6.364470536526841, - "musharna": 1.3529054295055682, - "unfezant": 5.90848090538723, - "boldore": 3.1392894432307497, - "swoobat": 5.382788030287024, - "audino": 2.0331232961778443, - "gurdurr": 1.7195313024465193, - "palpitoad": 3.2735771355526113, - "seismitoad": 6.089523119910932, - "scolipede": 3.015765748817649, - "whimsicott": 2.4660658347908115, - "lilligant": 2.3351269062972855, - "basculin-red-striped": 2.219616594880449, - "basculin-blue-striped": 2.908479786590001, - "krookodile": 2.5512092098681363, - "maractus": 1.6422607846535036, - "crustle": 1.8625965145952117, - "sigilyph": 2.2844938706118514, - "cofagrigus": 2.48340158051664, - "garbodor": 2.1213135794433793, - "cinccino": 3.9020907007554966, - "vanillish": 1.9120609983826105, - "emolga": 3.5015351162270876, - "escavalier": 1.5585667699847972, - "amoonguss": 2.2743235700911635, - "jellicent": 1.3299729617381302, - "galvantula": 1.7991034602204001, - "klang": 3.3752727235851423, - "klinklang": 3.596100757709983, - "beheeyem": 1.7118869124313543, - "lampent": 2.9186263930351726, - "fraxure": 1.3494284063540292, - "beartic": 1.4506805301296866, - "cryogonal": 1.6208425620822537, - "accelgor": 3.195831541217962, - "stunfisk": 1.4376589180637525, - "stunfisk-galar": 2.5557191045778445, - "mienshao": 2.956983545014392, - "druddigon": 1.6514417711962253, - "golurk": 1.6795857353124748, - "bisharp": 2.62600547954008, - "bouffalant": 1.1137769032285647, - "heatmor": 2.09276064915258, - "durant": 2.5638671784917877, - "talonflame": 3.7430915068324735, - "pangoro": 1.4742803297342106, - "doublade": 2.0969664982284426, - "malamar": 2.6435387508498587, - "barbaracle": 1.4448178684165587, - "heliolisk": 4.847622480900611, - "tyrantrum": 1.544207546767342, - "aurorus": 2.7811284445509017, - "hawlucha": 2.8034407580877856, - "dedenne": 3.6195764781104223, - "klefki": 3.5187454412875603, - "trevenant": 2.1636657145402296, - "gourgeist-average": 4.483665176295011, - "charjabug": 4.123648940334039, - "vikavolt": 1.8563937960903667, - "ribombee": 4.669597584626628, - "lycanroc-midday": 3.9610877161095197, - "lycanroc-midnight": 2.6058553136738576, - "mudsdale": 1.3034958049397027, - "araquanid": 2.322694707508324, - "lurantis": 1.8950468471245965, - "shiinotic": 3.771510957459619, - "salazzle": 5.005331851077081, - "bewear": 1.5544842887415042, - "tsareena": 2.3820651613397854, - "comfey": 3.8279279334145704, - "oranguru": 2.5153330664426274, - "passimian": 1.9300733877593097, - "palossand": 1.8702286461622515, - "pyukumuku": 39.952332153322246, - "togedemaru": 4.053526384608884, - "mimikyu-disguised": 4.155550640387167, - "greedent": 1.8742655037470706, - "orbeetle": 1.8079554410224703, - "thievul": 1.754905073723907, - "eldegoss": 3.0163921191324374, - "dubwool": 2.426975303428886, - "drednaw": 1.3748104495198303, - "boltund": 5.787452719178418, - "carkol": 3.5174639640908207, - "coalossal": 2.676185516001537, - "sandaconda": 2.6605565406121743, - "cramorant": 5.343216837930977, - "barraskewda": 3.856388096290231, - "toxtricity-amped": 4.452733117657035, - "centiskorch": 2.8112430075650403, - "grapploct": 1.3123625372137482, - "polteageist": 2.4150517886434306, - "hatterene": 2.282196376199862, - "grimmsnarl": 3.3693283832605605, - "obstagoon": 2.348405945485979, - "perrserker": 3.4725911109319965, - "alcremie": 1.3503318345190498, - "falinks": 2.51849315755902, - "pincurchin": 3.3499208055855014, - "frosmoth": 3.4872915242028357, - "indeedee-male": 3.2145512341578524, - "morpeko": 3.321562421720654, - "copperajah": 2.595402440837652, - "duraludon": 1.6079065341565046, - "drakloak": 4.286651574541677, - "diggersby": 2.9871236297528645 + "ivysaur": 2.7196006262621024, + "charmeleon": 4.494507872026961, + "wartortle": 2.1328585877862674, + "butterfree": 6.0374060262111495, + "raichu": 6.425078225689878, + "raichu-alola": 4.558170276617044, + "sandslash": 1.8669110407110356, + "sandslash-alola": 1.9942442223607149, + "nidoqueen": 3.353671144704907, + "nidoking": 2.0649126306161825, + "clefairy": 8.040170444160811, + "clefable": 1.9531163995958705, + "jigglypuff": 24.793477743249515, + "wigglytuff": 1.8291418987598727, + "gloom": 5.38753561810163, + "vileplume": 2.4623241046343245, + "dugtrio": 3.6339895273510234, + "dugtrio-alola": 3.997824308126888, + "persian": 3.887860606061335, + "persian-alola": 3.88844018762172, + "golduck": 2.4854079734503314, + "poliwrath": 1.512759114667734, + "kadabra": 3.8517927634019506, + "machoke": 3.3508061141722028, + "tentacruel": 2.719326327895496, + "slowbro": 1.5604829316387145, + "magneton": 5.084377186187757, + "haunter": 3.76383861768889, + "kingler": 1.8276995828031182, + "exeggutor": 1.5519507948068543, + "marowak": 2.69810754556796, + "marowak-alola": 2.334541295464752, + "hitmonlee": 2.1034204858681367, + "hitmonchan": 1.9494359771867806, + "lickitung": 1.5622042886022622, + "weezing": 1.67841926372276, + "weezing-galar": 2.7531499389534773, + "rhydon": 2.2604253704926838, + "chansey": 26.374445711273438, + "tangela": 3.4234887263638116, + "kangaskhan": 1.666182195733152, + "seadra": 3.248768607755925, + "seaking": 2.1648278871485576, + "starmie": 1.269035551548307, + "mr-mime": 6.550647184658018, + "mr-mime-galar": 3.3052403672442177, + "scyther": 3.394174475312634, + "jynx": 4.37654152256594, + "electabuzz": 3.7313410571590913, + "magmar": 2.044931908433873, + "tauros": 1.6925134633744086, + "ditto": 3.961314074954073, + "vaporeon": 2.7287917837289237, + "jolteon": 2.6257937785444216, + "flareon": 3.1048083632473844, + "porygon": 2.5661117734758543, + "dragonair": 1.6337994706749073, + "noctowl": 6.17004966330671, + "lanturn": 2.229482360609048, + "togetic": 5.3877271749709434, + "xatu": 3.7650151903090667, + "bellossom": 1.8668419134677743, + "azumarill": 1.82520900389156, + "sudowoodo": 2.584515011409136, + "politoed": 2.231522044214741, + "quagsire": 3.5476350960371317, + "slowking": 2.094555290068835, + "dunsparce": 2.9331300375115013, + "qwilfish": 3.4203985463798556, + "sneasel": 2.2172809712985373, + "piloswine": 1.2397180497694715, + "octillery": 2.017734037118759, + "mantine": 2.435677336102536, + "skarmory": 1.5410307338625486, + "hitmontop": 2.228887625914666, + "miltank": 3.104032032966326, + "grovyle": 5.963660153897823, + "sceptile": 1.1348909250863406, + "combusken": 3.4456698020366403, + "blaziken": 1.7304880842284964, + "marshtomp": 2.0034438223980255, + "swampert": 1.0231383736814044, + "linoone": 4.9323638462068065, + "linoone-galar": 4.255309839912298, + "pelipper": 5.6877017032539126, + "ninjask": 9.554014633621975, + "exploud": 1.3436598460516889, + "lairon": 3.082874315652243, + "manectric": 2.098247079578083, + "roselia": 3.4865136193350432, + "sharpedo": 4.323802670763563, + "wailmer": 5.466096657430972, + "torkoal": 1.878519719363896, + "flygon": 1.9690312100219578, + "altaria": 1.6118649970638708, + "whiscash": 1.6312822799909636, + "crawdaunt": 1.5681274527115174, + "claydol": 2.869574958467828, + "cradily": 2.0393741306218915, + "armaldo": 1.8189689708840335, + "dusclops": 3.4544938936355556, + "absol": 1.6909249297687323, + "glalie": 3.7969022683055202, + "sealeo": 2.695900231392517, + "relicanth": 1.8595372329106024, + "metang": 3.3155192848942, + "luxray": 4.774691154602278, + "vespiquen": 3.3132753256614205, + "cherrim": 4.458392232530397, + "gastrodon": 1.9013384510123066, + "drifblim": 4.7044428837977845, + "lopunny": 3.213488981582681, + "skuntank": 1.6559336812234782, + "bronzong": 2.297015815384658, + "munchlax": 2.3317821813633373, + "drapion": 2.572474568468806, + "abomasnow": 2.7991422248613365, + "froslass": 2.7361111410343546, + "rotom": 3.598058780979163, + "stoutland": 2.1705717813441376, + "liepard": 6.362346666421545, + "musharna": 1.3511806029469096, + "unfezant": 5.902424030532893, + "boldore": 3.1377770282477626, + "swoobat": 5.376854329475927, + "audino": 2.031959917050659, + "gurdurr": 1.7143557945840429, + "palpitoad": 3.268586954181427, + "seismitoad": 6.089310876657514, + "scolipede": 3.0157272363195036, + "whimsicott": 2.4601431185360285, + "lilligant": 2.327753664823445, + "basculin-red-striped": 2.213463079413329, + "basculin-blue-striped": 2.9011625030798642, + "krookodile": 2.5492533900078356, + "maractus": 1.636808604690204, + "crustle": 1.8611853173948592, + "sigilyph": 2.2818931936268303, + "cofagrigus": 2.486411496567287, + "garbodor": 2.1243934010073744, + "cinccino": 3.8950129324459426, + "vanillish": 1.9080320717512973, + "emolga": 3.507874426091203, + "escavalier": 1.5566962241141846, + "amoonguss": 2.2726072298027034, + "jellicent": 1.3281637625263287, + "galvantula": 1.8045743102001586, + "klang": 3.3840595824220405, + "klinklang": 3.597184143097203, + "beheeyem": 1.7119270250758687, + "lampent": 2.924343883178028, + "fraxure": 1.3481944606107779, + "beartic": 1.4469250647081449, + "cryogonal": 1.616019004369563, + "accelgor": 3.1958692115206135, + "stunfisk": 1.4397092518066228, + "stunfisk-galar": 2.557617009693824, + "mienshao": 2.9532262082691485, + "druddigon": 1.651356123411483, + "golurk": 1.6781955076465551, + "bisharp": 2.6276110553274314, + "bouffalant": 1.1127307797783637, + "heatmor": 2.0957570263570124, + "durant": 2.5625986504240337, + "diggersby": 2.9871236297528645, + "talonflame": 3.7447942481279033, + "pangoro": 1.4714225040689324, + "doublade": 2.0945696987945697, + "malamar": 2.64363570944319, + "barbaracle": 1.442826222142115, + "heliolisk": 4.8628840199942225, + "tyrantrum": 1.5432759200105202, + "aurorus": 2.783562796229012, + "hawlucha": 2.7959019623881995, + "dedenne": 3.630811799854176, + "klefki": 3.523092614674868, + "trevenant": 2.154983032900108, + "gourgeist-average": 4.483677588887517, + "charjabug": 4.134425676844933, + "vikavolt": 1.856432019129958, + "ribombee": 4.668523189668782, + "lycanroc-midday": 3.969185162164689, + "lycanroc-midnight": 2.6073641130168514, + "mudsdale": 1.3007337265121919, + "araquanid": 2.3211947629593555, + "lurantis": 1.8898183376158952, + "shiinotic": 3.7668848518041793, + "salazzle": 5.022474877169481, + "bewear": 1.552137959912595, + "tsareena": 2.3749261452888604, + "comfey": 3.8233290175370627, + "oranguru": 2.5144876936904623, + "passimian": 1.926831931144212, + "palossand": 1.8705038680893886, + "pyukumuku": 39.9214927392964, + "togedemaru": 4.069734980168024, + "mimikyu-disguised": 4.164148391175559, + "greedent": 1.8724889744728888, + "orbeetle": 1.8066906279637838, + "thievul": 1.7556603771805532, + "eldegoss": 3.006590478729659, + "dubwool": 2.4210927638737716, + "drednaw": 1.37410793541195, + "boltund": 5.803969836057332, + "carkol": 3.5268775058348396, + "coalossal": 2.6807297105807817, + "sandaconda": 2.657035830162749, + "cramorant": 5.332315398238286, + "barraskewda": 3.849683640908088, + "toxtricity-amped": 4.471311468151577, + "centiskorch": 2.8163588472636425, + "grapploct": 1.3081062465261408, + "polteageist": 2.412421997317841, + "hatterene": 2.2817272666404853, + "grimmsnarl": 3.366679210900432, + "obstagoon": 2.3475639743881294, + "perrserker": 3.476041041475046, + "alcremie": 1.3501668882721565, + "falinks": 2.512564658552549, + "pincurchin": 3.3549008016679434, + "frosmoth": 3.4884881702862724, + "indeedee-male": 3.2177558616114545, + "morpeko": 3.329813121378692, + "copperajah": 2.595352724734804, + "duraludon": 1.6099864914866624, + "drakloak": 4.289545164454084 }, "talonflame": { - "ivysaur": 4.229293027385547, - "charmeleon": 3.9380992840150513, - "wartortle": 2.3904637674873275, - "butterfree": 5.823394366241592, - "raichu": 4.3998239952710145, - "raichu-alola": 2.898331194488155, - "sandslash": 2.2161270796700325, - "sandslash-alola": 3.170872063901256, - "nidoqueen": 2.8952607746444547, - "nidoking": 1.8798961942273298, - "clefairy": 10.996434703203573, - "clefable": 2.137811419731483, - "jigglypuff": 30.840838358917654, - "wigglytuff": 2.247521418850308, - "gloom": 7.408731174672923, - "vileplume": 4.2879487201969315, - "dugtrio": 2.8216411979105844, - "dugtrio-alola": 4.70132345468641, - "persian": 4.185420401292429, - "persian-alola": 4.064509793421465, - "golduck": 2.5939149823414684, - "poliwrath": 2.3035440935121105, - "kadabra": 3.791367153969746, - "machoke": 4.46052369450191, - "tentacruel": 1.8488066773863183, - "slowbro": 1.8016935096714968, - "magneton": 4.075855072632304, - "haunter": 4.5013932468692825, - "kingler": 2.583644938179371, - "exeggutor": 2.652078903582157, - "marowak": 3.450300666666867, - "marowak-alola": 2.1750176506324506, - "hitmonlee": 2.8184970900637736, - "hitmonchan": 2.4880683350560835, - "lickitung": 1.6812701531185648, - "weezing": 1.7208448659599713, - "weezing-galar": 2.920178979125618, - "rhydon": 1.972963692556342, - "chansey": 24.25811166548602, - "tangela": 8.267039065395865, - "kangaskhan": 1.8442501852874258, - "seadra": 4.011086493448192, - "seaking": 2.2342301962739044, - "starmie": 1.3269611994859358, - "mr-mime": 7.585917944933249, - "mr-mime-galar": 4.144222018303464, - "scyther": 3.485277264902926, - "jynx": 5.923289612621266, - "electabuzz": 1.9616315645227334, - "magmar": 1.6648555960028588, - "tauros": 2.1924256975728458, - "ditto": 3.782786843934537, - "vaporeon": 2.5633978206206076, - "jolteon": 1.6336344278569248, - "flareon": 2.302717003972802, - "porygon": 2.5648679923611777, - "dragonair": 1.7223357392956375, - "noctowl": 5.240828898000272, - "lanturn": 1.284989578995246, - "togetic": 6.132374928795198, - "xatu": 3.704534861952424, - "bellossom": 3.3007589384566565, - "azumarill": 2.0202554665421966, - "sudowoodo": 2.1188101464997966, - "politoed": 2.3288486822689505, - "quagsire": 4.278097234258161, - "slowking": 2.1291432574926445, - "dunsparce": 3.307221067413588, - "qwilfish": 3.2129815639447523, - "sneasel": 2.574293837671822, - "piloswine": 1.5064905404055113, - "octillery": 2.2048886377748134, - "mantine": 1.9354290948104378, - "skarmory": 3.2426361002164663, - "hitmontop": 3.5273347469322918, - "miltank": 3.790467510660167, - "grovyle": 10.507026378582697, - "sceptile": 1.8507782122033514, - "combusken": 4.536625987162793, - "blaziken": 2.2040415564816547, - "marshtomp": 2.253522558047983, - "swampert": 1.2070366381315716, - "linoone": 5.231707293004833, - "linoone-galar": 4.514858724895619, - "pelipper": 6.005685917868914, - "ninjask": 10.6711354667184, - "exploud": 1.5604154791622074, - "lairon": 1.8748755714829017, - "manectric": 1.6638831944743155, - "roselia": 4.856526322054725, - "sharpedo": 4.562972518847156, - "wailmer": 5.841420733795205, - "torkoal": 2.1497613622175478, - "flygon": 2.4738588680753324, - "altaria": 1.6348451560751758, - "whiscash": 1.686116476841001, - "crawdaunt": 1.7901462765104414, - "claydol": 2.7880752914033673, - "cradily": 2.098572344152514, - "armaldo": 1.7772818804210972, - "dusclops": 3.4232064870318366, - "absol": 1.9475608225048864, - "glalie": 5.124638144030241, - "sealeo": 2.763553460641412, - "relicanth": 1.2787683139541524, - "metang": 3.824448204497278, - "luxray": 3.2884567534499016, - "vespiquen": 3.672117117839555, - "cherrim": 7.823711128673384, - "gastrodon": 1.773161489706243, - "drifblim": 3.683890870520722, - "lopunny": 3.582370041401056, - "skuntank": 1.487860565213472, - "bronzong": 4.203550055788068, - "munchlax": 2.0033529070543836, - "drapion": 2.6571405524333853, - "abomasnow": 5.399220804671189, - "froslass": 3.6370896279960885, - "rotom": 3.257590211939153, - "stoutland": 2.325010786098246, - "liepard": 7.12621798016465, - "musharna": 1.5254702425988411, - "unfezant": 6.432373149448093, - "boldore": 2.585938234744585, - "swoobat": 5.299736670215923, - "audino": 2.2275355284058502, - "gurdurr": 3.3990228757931833, - "palpitoad": 3.6598317626069345, - "seismitoad": 6.040215942923347, - "scolipede": 4.640538413710882, - "whimsicott": 4.417531170066371, - "lilligant": 4.407219013767369, - "basculin-red-striped": 2.4931500758264216, - "basculin-blue-striped": 3.1649199280350695, - "krookodile": 2.99034521466242, - "maractus": 3.1443035822293135, - "crustle": 1.9614434091112338, - "sigilyph": 2.2994526705572156, - "cofagrigus": 2.6375656029467542, - "garbodor": 1.8381522331826312, - "cinccino": 4.4378512534547845, - "vanillish": 2.535253813754087, - "emolga": 2.5105968403601846, - "escavalier": 3.618281927765586, - "amoonguss": 3.3102130478942864, - "jellicent": 1.434934021313551, - "galvantula": 1.7849869522092885, - "klang": 3.081820501374568, - "klinklang": 4.806436718557944, - "beheeyem": 1.5256600031626504, - "lampent": 2.7371784242812085, - "fraxure": 1.578077693968842, - "beartic": 2.0854154824889415, - "cryogonal": 2.0367585736723446, - "accelgor": 4.180297321016425, - "stunfisk": 1.1171717429308492, - "stunfisk-galar": 3.2636783728177523, - "mienshao": 3.7830036245700733, - "druddigon": 1.8634522258142687, - "golurk": 1.9477417112646065, - "bisharp": 3.2515310693318327, - "bouffalant": 1.311810763588237, - "heatmor": 2.0134627417724453, - "durant": 7.246804114001007, - "diggersby": 3.085815345916586, - "pangoro": 2.3262334490283587, - "doublade": 4.1134781791979655, - "malamar": 2.673227466695499, - "barbaracle": 1.1910403228431448, - "heliolisk": 3.8063229837103965, - "tyrantrum": 1.30502370152224, - "aurorus": 2.6360748682519124, - "hawlucha": 4.631057509563735, - "dedenne": 2.799697017731387, - "klefki": 4.466258957953233, - "trevenant": 4.308653848653443, - "gourgeist-average": 7.678596396372818, - "charjabug": 5.118858611451744, - "vikavolt": 2.561416023838322, - "ribombee": 6.5378759600472165, - "lycanroc-midday": 2.4371572944022586, - "lycanroc-midnight": 2.0107401343366873, - "mudsdale": 1.6967790318838119, - "araquanid": 2.6927655923154035, - "lurantis": 3.312572864964938, - "shiinotic": 5.664862066588946, - "salazzle": 3.2018230901678857, - "bewear": 2.2817215656350474, - "tsareena": 4.2304139908367375, - "comfey": 5.304038050940969, - "oranguru": 2.4957228468283503, - "passimian": 2.833483914848022, - "palossand": 2.2058347648526793, - "pyukumuku": 42.19638792802776, - "togedemaru": 2.6080520248768195, - "mimikyu-disguised": 4.36705736109819, - "greedent": 2.17554632580326, - "orbeetle": 2.396936268415285, - "thievul": 1.744571633627987, - "eldegoss": 5.110789515501258, - "dubwool": 3.9312576958794523, - "drednaw": 0.8126620079917988, - "boltund": 4.13541589932758, - "carkol": 1.5790356650646844, - "coalossal": 1.415051271070903, - "sandaconda": 3.632417913011982, - "cramorant": 4.503458983126747, - "barraskewda": 4.238143447853545, - "toxtricity-amped": 2.34137182182732, - "centiskorch": 2.5538327377937655, - "grapploct": 2.0623519651595235, - "polteageist": 2.5546479119760974, - "hatterene": 2.6875969430467697, - "grimmsnarl": 4.139510127419077, - "obstagoon": 2.4212390098237884, - "perrserker": 4.572226088824211, - "alcremie": 1.8119940007354942, - "falinks": 4.708436321767602, - "pincurchin": 2.546756583417184, - "frosmoth": 4.4548917096052705, - "indeedee-male": 2.9750628809636304, - "morpeko": 2.367051886212261, - "copperajah": 3.3391146350072693, - "duraludon": 1.6688577239944251, - "drakloak": 4.309345557752337, - "talonflame": 2.9743446170001486 + "ivysaur": 4.243686201669232, + "charmeleon": 3.9396423344043185, + "wartortle": 2.384377835361484, + "butterfree": 5.841402906725818, + "raichu": 4.390054432353647, + "raichu-alola": 2.889028648062623, + "sandslash": 2.2157582615801727, + "sandslash-alola": 3.1719239274886064, + "nidoqueen": 2.8992817865016267, + "nidoking": 1.881992246399411, + "clefairy": 11.029969756812964, + "clefable": 2.1346032207863592, + "jigglypuff": 30.91091505085369, + "wigglytuff": 2.2501220847058967, + "gloom": 7.426433191539688, + "vileplume": 4.308138584160634, + "dugtrio": 2.8202097397401595, + "dugtrio-alola": 4.714160469387435, + "persian": 4.184670359278271, + "persian-alola": 4.06356274694681, + "golduck": 2.5851857642431044, + "poliwrath": 2.302237510510465, + "kadabra": 3.7892271866734264, + "machoke": 4.456381180596045, + "tentacruel": 1.842150751264767, + "slowbro": 1.8008083826884536, + "magneton": 4.073729221435137, + "haunter": 4.508399677196569, + "kingler": 2.5820990511632793, + "exeggutor": 2.6600305286477886, + "marowak": 3.458452912882888, + "marowak-alola": 2.1771939375937275, + "hitmonlee": 2.824990646613974, + "hitmonchan": 2.4898840934296707, + "lickitung": 1.6780673054875512, + "weezing": 1.7220649579374452, + "weezing-galar": 2.927353474274833, + "rhydon": 1.9685512279455386, + "chansey": 24.20397336416358, + "tangela": 8.304804969885277, + "kangaskhan": 1.84480400040811, + "seadra": 4.001513066530659, + "seaking": 2.231039813013077, + "starmie": 1.322379354324919, + "mr-mime": 7.586767276459634, + "mr-mime-galar": 4.146267122382572, + "scyther": 3.4926725323368615, + "jynx": 5.93221577239168, + "electabuzz": 1.9542913528048564, + "magmar": 1.6648497513266332, + "tauros": 2.1960123558981275, + "ditto": 3.764802675862021, + "vaporeon": 2.554657178202847, + "jolteon": 1.6286061995030412, + "flareon": 2.299118728728403, + "porygon": 2.561706398686911, + "dragonair": 1.7195316701639443, + "noctowl": 5.236994279663366, + "lanturn": 1.2787039093829842, + "togetic": 6.148081331897017, + "xatu": 3.7034960537515786, + "bellossom": 3.313944204046053, + "azumarill": 2.0189462348510894, + "sudowoodo": 2.1124426130650393, + "politoed": 2.32551096182859, + "quagsire": 4.269235849095239, + "slowking": 2.1235405732646875, + "dunsparce": 3.3093155125621103, + "qwilfish": 3.2066358412274774, + "sneasel": 2.5757117698369143, + "piloswine": 1.5054888090335456, + "octillery": 2.2016971633011084, + "mantine": 1.9295225594673444, + "skarmory": 3.251435532814096, + "hitmontop": 3.5373659877607104, + "miltank": 3.7928557101299365, + "grovyle": 10.547251924907783, + "sceptile": 1.8579461562034432, + "combusken": 4.546726534081847, + "blaziken": 2.2090676366285296, + "marshtomp": 2.2491524269695122, + "swampert": 1.2062408247794503, + "linoone": 5.233827682885421, + "linoone-galar": 4.512909461871947, + "pelipper": 5.998989108199654, + "ninjask": 10.718785621197235, + "exploud": 1.5602248449982143, + "lairon": 1.870383544855017, + "manectric": 1.6617310996244021, + "roselia": 4.868847426073223, + "sharpedo": 4.553063638801735, + "wailmer": 5.82798013391914, + "torkoal": 2.1521733500377715, + "flygon": 2.476133719356575, + "altaria": 1.6350772817703563, + "whiscash": 1.6824165914577556, + "crawdaunt": 1.7869255912163604, + "claydol": 2.7799531053807076, + "cradily": 2.0948211412505913, + "armaldo": 1.7768810766790573, + "dusclops": 3.427251042631594, + "absol": 1.948088291228037, + "glalie": 5.131832439034623, + "sealeo": 2.756140903084102, + "relicanth": 1.270659445578829, + "metang": 3.8261138744972905, + "luxray": 3.278424372092291, + "vespiquen": 3.6837913385851273, + "cherrim": 7.848811924249006, + "gastrodon": 1.7668777889766498, + "drifblim": 3.6773712026904875, + "lopunny": 3.5829403503978177, + "skuntank": 1.489158907636555, + "bronzong": 4.209084337945919, + "munchlax": 2.0001808724773182, + "drapion": 2.662739754616271, + "abomasnow": 5.416238921169688, + "froslass": 3.642991637251252, + "rotom": 3.2513110461648713, + "stoutland": 2.3233361092498983, + "liepard": 7.131936388416816, + "musharna": 1.525956016900557, + "unfezant": 6.435889602390543, + "boldore": 2.577901158252737, + "swoobat": 5.298246955179919, + "audino": 2.228902460826397, + "gurdurr": 3.412056949933777, + "palpitoad": 3.657011265931619, + "seismitoad": 6.030469091860362, + "scolipede": 4.658374624198407, + "whimsicott": 4.435574921550927, + "lilligant": 4.4272908726867, + "basculin-red-striped": 2.486380875350834, + "basculin-blue-striped": 3.155325515693514, + "krookodile": 2.994327079923305, + "maractus": 3.1577122000390974, + "crustle": 1.960064154451307, + "sigilyph": 2.2997514991555965, + "cofagrigus": 2.638882149771145, + "garbodor": 1.8389510895830727, + "cinccino": 4.436042613167517, + "vanillish": 2.537292953547021, + "emolga": 2.50395077524594, + "escavalier": 3.6294519689758666, + "amoonguss": 3.3187836905284147, + "jellicent": 1.4334678605931672, + "galvantula": 1.7832861841968275, + "klang": 3.074894315968043, + "klinklang": 4.815105880645786, + "beheeyem": 1.5217590237401262, + "lampent": 2.737863262697359, + "fraxure": 1.577895061626018, + "beartic": 2.087229586143181, + "cryogonal": 2.038855249305084, + "accelgor": 4.195305827189549, + "stunfisk": 1.1151643094557016, + "stunfisk-galar": 3.271571964376602, + "mienshao": 3.77894494115612, + "druddigon": 1.8651376919217153, + "golurk": 1.9512854581316357, + "bisharp": 3.253574856509226, + "bouffalant": 1.3131922544287038, + "heatmor": 2.0139604875651687, + "durant": 7.271384798107064, + "diggersby": 3.0845893249776575, + "talonflame": 2.9743446170001486, + "pangoro": 2.3311016752037164, + "doublade": 4.126678866366569, + "malamar": 2.670151081980818, + "barbaracle": 1.1868992156004063, + "heliolisk": 3.8007627956611594, + "tyrantrum": 1.3008937457588763, + "aurorus": 2.6265530017877112, + "hawlucha": 4.638899207798465, + "dedenne": 2.7957475812184307, + "klefki": 4.480607888989672, + "trevenant": 4.328729133917452, + "gourgeist-average": 7.704670654665003, + "charjabug": 5.119012887374514, + "vikavolt": 2.5671397974369308, + "ribombee": 6.568797872548702, + "lycanroc-midday": 2.4215143899749023, + "lycanroc-midnight": 2.002985171587008, + "mudsdale": 1.7000504223721116, + "araquanid": 2.6930656938369584, + "lurantis": 3.323794605200127, + "shiinotic": 5.6824517696036985, + "salazzle": 3.2028764180615177, + "bewear": 2.2827371918264223, + "tsareena": 4.2451389096170695, + "comfey": 5.3210312447562265, + "oranguru": 2.4939975236189373, + "passimian": 2.8324805740063423, + "palossand": 2.2099596226555267, + "pyukumuku": 42.17554543660435, + "togedemaru": 2.606833833060305, + "mimikyu-disguised": 4.371122286047025, + "greedent": 2.1760770816307504, + "orbeetle": 2.4011570781102707, + "thievul": 1.7445573571283162, + "eldegoss": 5.127643085397283, + "dubwool": 3.938905994745281, + "drednaw": 0.809171443958344, + "boltund": 4.125184270146856, + "carkol": 1.5729731035472603, + "coalossal": 1.4081705853034658, + "sandaconda": 3.641832265103205, + "cramorant": 4.490203524426354, + "barraskewda": 4.229178663925823, + "toxtricity-amped": 2.333840359571054, + "centiskorch": 2.558195960533606, + "grapploct": 2.065964995201047, + "polteageist": 2.5576086348704496, + "hatterene": 2.6910201103071776, + "grimmsnarl": 4.144894359220755, + "obstagoon": 2.418237475167521, + "perrserker": 4.576786090622491, + "alcremie": 1.8170691910652719, + "falinks": 4.724815269965203, + "pincurchin": 2.5361713425857735, + "frosmoth": 4.467024151224196, + "indeedee-male": 2.974422452438035, + "morpeko": 2.3601553142979763, + "copperajah": 3.3475811763644345, + "duraludon": 1.66831935693238, + "drakloak": 4.307793495141167 }, "pangoro": { - "ivysaur": 3.76054343796513, - "charmeleon": 4.7320725548578775, - "wartortle": 3.1541363550605763, - "butterfree": 5.503177043099177, - "raichu": 6.217175079861935, - "raichu-alola": 6.597570155567658, - "sandslash": 2.311664730435947, - "sandslash-alola": 3.8616758634598254, - "nidoqueen": 3.1973211979995844, - "nidoking": 2.110020263794601, - "clefairy": 10.56197074690356, - "clefable": 1.4799707753883382, - "jigglypuff": 23.466082477448083, - "wigglytuff": 1.7152937689745626, - "gloom": 5.256669200382136, - "vileplume": 3.390423543674319, - "dugtrio": 4.856571396422929, - "dugtrio-alola": 5.718329186412912, - "persian": 5.838128799288235, - "persian-alola": 7.863768653013986, - "golduck": 3.669779516263167, - "poliwrath": 1.9823035385642016, - "kadabra": 5.7274298141797395, - "machoke": 4.197169541598049, - "tentacruel": 3.0188713865702903, - "slowbro": 2.912134404279874, - "magneton": 4.489341595770937, - "haunter": 8.64799445213177, - "kingler": 2.42638034565038, - "exeggutor": 2.9768337064311505, - "marowak": 3.5526697877159075, - "marowak-alola": 3.222592707753569, - "hitmonlee": 2.685561937713035, - "hitmonchan": 2.4292714988709454, - "lickitung": 2.944027112786192, - "weezing": 1.6678776389747965, - "weezing-galar": 2.152337961722418, - "rhydon": 2.719636289136464, - "chansey": 51.609937377224846, - "tangela": 4.871481838271787, - "kangaskhan": 2.8580559909942593, - "seadra": 4.330839750450691, - "seaking": 2.965908559864565, - "starmie": 1.9224036431829403, - "mr-mime": 10.355520006296992, - "mr-mime-galar": 6.322683632116217, - "scyther": 2.9916204680152063, - "jynx": 7.213621923068427, - "electabuzz": 3.2812450008687053, - "magmar": 2.145218548782551, - "tauros": 2.7885715800440902, - "ditto": 3.6398068638228205, - "vaporeon": 4.140627735814138, - "jolteon": 2.563979546890665, - "flareon": 3.2229472179791996, - "porygon": 4.359463169974116, - "dragonair": 2.2665239407258353, - "noctowl": 7.158033515300832, - "lanturn": 2.4683658979745626, - "togetic": 5.036916274696212, - "xatu": 6.068115190635498, - "bellossom": 1.985627288671504, - "azumarill": 1.7812067032575443, - "sudowoodo": 3.2843273338704373, - "politoed": 3.205569669806496, - "quagsire": 4.956622991512674, - "slowking": 4.448145383513237, - "dunsparce": 4.786902901362878, - "qwilfish": 3.657708161607218, - "sneasel": 5.766019342447929, - "piloswine": 2.1623357407132935, - "octillery": 2.7949818954490113, - "mantine": 2.9825275465247683, - "skarmory": 2.112263356919673, - "hitmontop": 2.8708461970070682, - "miltank": 4.1506191683092695, - "grovyle": 9.469139157420045, - "sceptile": 1.7485440304085915, - "combusken": 3.371336576959096, - "blaziken": 1.7041217109087856, - "marshtomp": 2.9730509813920336, - "swampert": 1.4912317271003506, - "linoone": 7.994967648316697, - "linoone-galar": 12.47140667828826, - "pelipper": 6.124857154093164, - "ninjask": 8.632866970529593, - "exploud": 2.4502426522109375, - "lairon": 4.312199961746794, - "manectric": 2.1779519789893858, - "roselia": 5.183873765780949, - "sharpedo": 8.085613495892822, - "wailmer": 7.542347676784004, - "torkoal": 1.9518953322450834, - "flygon": 2.8281051835019855, - "altaria": 1.5268549251498875, - "whiscash": 2.464360816042472, - "crawdaunt": 2.9066896118734546, - "claydol": 5.895639570257173, - "cradily": 3.469174573975567, - "armaldo": 2.1627437299446446, - "dusclops": 5.979810742094223, - "absol": 3.1553292447403205, - "glalie": 6.380441303984775, - "sealeo": 4.690974392386475, - "relicanth": 2.4562157815343104, - "metang": 4.799850645377725, - "luxray": 4.551171152333639, - "vespiquen": 2.8577782896055823, - "cherrim": 6.923809691372627, - "gastrodon": 2.707956178627719, - "drifblim": 7.969923443010324, - "lopunny": 5.262813037698978, - "skuntank": 1.738547414602094, - "bronzong": 5.98122234306927, - "munchlax": 4.018350157341733, - "drapion": 2.662994496352705, - "abomasnow": 4.6148298140300295, - "froslass": 4.824361046655527, - "rotom": 6.750277528075496, - "stoutland": 3.6059057007171917, - "liepard": 9.334878936238145, - "musharna": 2.814465679162777, - "unfezant": 6.192442399334356, - "boldore": 3.8884785310720478, - "swoobat": 8.710259947930437, - "audino": 3.1360570733867057, - "gurdurr": 2.0463330710282133, - "palpitoad": 4.42299970426229, - "seismitoad": 7.502571375205932, - "scolipede": 3.6203871291510197, - "whimsicott": 2.8121314716282275, - "lilligant": 3.5635885395429443, - "basculin-red-striped": 3.404192859916708, - "basculin-blue-striped": 4.375452642969595, - "krookodile": 4.434003173145782, - "maractus": 2.6628089331592624, - "crustle": 2.185800822847813, - "sigilyph": 3.670898956637367, - "cofagrigus": 4.468275075581241, - "garbodor": 2.0669669056280577, - "cinccino": 6.919125866736855, - "vanillish": 3.3149343493453087, - "emolga": 3.406673097750155, - "escavalier": 2.211053205776903, - "amoonguss": 2.938803065085544, - "jellicent": 2.241948780687945, - "galvantula": 1.819218737277753, - "klang": 4.27666114923095, - "klinklang": 4.8570741447985775, - "beheeyem": 3.3502401478573516, - "lampent": 4.303045491960572, - "fraxure": 1.7633500745445114, - "beartic": 2.4754230663876298, - "cryogonal": 3.1532251157318933, - "accelgor": 3.719292106574292, - "stunfisk": 1.5582742463006785, - "stunfisk-galar": 3.546040658647335, - "mienshao": 3.5945915561998167, - "druddigon": 2.185194313596516, - "golurk": 2.9517453013095203, - "bisharp": 5.911556986218178, - "bouffalant": 1.9819915395448735, - "heatmor": 2.283536940956705, - "durant": 3.0759022157407028, - "diggersby": 4.87278817684516, - "talonflame": 3.146308415624249, - "doublade": 2.7412250633449515, - "malamar": 3.612046995544799, - "barbaracle": 2.002407605635838, - "heliolisk": 6.271181207032424, - "tyrantrum": 1.9688405042703383, - "aurorus": 5.375273636144154, - "hawlucha": 3.185231858927346, - "dedenne": 1.8616707210283316, - "klefki": 2.7776060963408487, - "trevenant": 4.808910061015285, - "gourgeist-average": 7.755473548624584, - "charjabug": 4.409210209446114, - "vikavolt": 2.0540355031461517, - "ribombee": 4.349424831733247, - "lycanroc-midday": 5.297698444730745, - "lycanroc-midnight": 3.5792035016788413, - "mudsdale": 1.7371267488621474, - "araquanid": 2.9163940742015915, - "lurantis": 2.804802614072803, - "shiinotic": 3.6768753303677397, - "salazzle": 3.622587673382635, - "bewear": 2.53056699551331, - "tsareena": 3.467990334454275, - "comfey": 4.088351565059759, - "oranguru": 5.4404259721041, - "passimian": 2.2237923849434376, - "palossand": 3.045207021850297, - "pyukumuku": 50.574567469260984, - "togedemaru": 3.6431340426116186, - "mimikyu-disguised": 5.223335394424266, - "greedent": 3.21217343273753, - "orbeetle": 3.131715446834675, - "thievul": 3.457243560921731, - "eldegoss": 4.780144085909329, - "dubwool": 4.091932597092038, - "drednaw": 1.8669381442311772, - "boltund": 5.940717631334831, - "carkol": 3.4767039489796554, - "coalossal": 2.687070345403275, - "sandaconda": 3.300688053223664, - "cramorant": 7.330832600273662, - "barraskewda": 5.568333952510028, - "toxtricity-amped": 3.025433465356433, - "centiskorch": 2.456509873739413, - "grapploct": 1.686228160728298, - "polteageist": 5.6333811744649935, - "hatterene": 2.67099300081227, - "grimmsnarl": 4.844775215430659, - "obstagoon": 5.604057622562271, - "perrserker": 4.711819983842005, - "alcremie": 1.1873976077683916, - "falinks": 2.99182100416699, - "pincurchin": 3.4385002272927006, - "frosmoth": 3.093762145748281, - "indeedee-male": 6.215053039505227, - "morpeko": 4.27815953996355, - "copperajah": 3.57613712089398, - "duraludon": 2.078864661259331, - "drakloak": 8.112411947220904, - "pangoro": 2.5550813925669305 + "ivysaur": 3.765412859390823, + "charmeleon": 4.741776740296962, + "wartortle": 3.158444450260925, + "butterfree": 5.506283958914397, + "raichu": 6.225915216820228, + "raichu-alola": 6.619738747108299, + "sandslash": 2.3151125458333572, + "sandslash-alola": 3.873666873967851, + "nidoqueen": 3.201847927731391, + "nidoking": 2.113123937423379, + "clefairy": 10.580997141813807, + "clefable": 1.477641986885068, + "jigglypuff": 23.385123659202787, + "wigglytuff": 1.7151011056186067, + "gloom": 5.241015928096396, + "vileplume": 3.3941545021823734, + "dugtrio": 4.8724189181791315, + "dugtrio-alola": 5.741578878305461, + "persian": 5.843484206373881, + "persian-alola": 7.901545939453478, + "golduck": 3.6762695598827104, + "poliwrath": 1.982759233343106, + "kadabra": 5.734837706382236, + "machoke": 4.203226431815255, + "tentacruel": 3.023776328644435, + "slowbro": 2.9238149622214786, + "magneton": 4.501072891692132, + "haunter": 8.676835069730588, + "kingler": 2.426076656586295, + "exeggutor": 2.9838696539316825, + "marowak": 3.5611899182598643, + "marowak-alola": 3.2290110393870775, + "hitmonlee": 2.6874772990341893, + "hitmonchan": 2.432949458990067, + "lickitung": 2.952380633214409, + "weezing": 1.6694116078872345, + "weezing-galar": 2.144736666549708, + "rhydon": 2.72488200405078, + "chansey": 51.82691896047358, + "tangela": 4.873082353710073, + "kangaskhan": 2.8686165513605664, + "seadra": 4.332517239049705, + "seaking": 2.971376449877951, + "starmie": 1.924227841840821, + "mr-mime": 10.415352945900995, + "mr-mime-galar": 6.3545491613521445, + "scyther": 2.99153113017376, + "jynx": 7.2249143939817575, + "electabuzz": 3.28800130581904, + "magmar": 2.1501105141505126, + "tauros": 2.7958834674423656, + "ditto": 3.6230427453407614, + "vaporeon": 4.150303284658446, + "jolteon": 2.571342918676816, + "flareon": 3.232897850746663, + "porygon": 4.37508941420978, + "dragonair": 2.2714717764664316, + "noctowl": 7.168093584027892, + "lanturn": 2.474522536725005, + "togetic": 5.025141805462544, + "xatu": 6.078730906693021, + "bellossom": 1.9843330025374186, + "azumarill": 1.779128663760409, + "sudowoodo": 3.293350258231922, + "politoed": 3.2127187447639636, + "quagsire": 4.95855514025039, + "slowking": 4.463245223040916, + "dunsparce": 4.801259843522784, + "qwilfish": 3.6595482232847445, + "sneasel": 5.7983730794250015, + "piloswine": 2.1679433015495775, + "octillery": 2.799795094799782, + "mantine": 2.9843302896307167, + "skarmory": 2.115112936730721, + "hitmontop": 2.8732690593646155, + "miltank": 4.148613549132644, + "grovyle": 9.483976816449008, + "sceptile": 1.7524417684107751, + "combusken": 3.3701757964643306, + "blaziken": 1.7048504705247933, + "marshtomp": 2.9790595232774675, + "swampert": 1.4941820065680531, + "linoone": 8.022981525745223, + "linoone-galar": 12.546871493379783, + "pelipper": 6.118720117300723, + "ninjask": 8.637419370551207, + "exploud": 2.455717532887948, + "lairon": 4.327446335899357, + "manectric": 2.1838073959578344, + "roselia": 5.196922452515185, + "sharpedo": 8.112387671679588, + "wailmer": 7.551157569284266, + "torkoal": 1.953783115674339, + "flygon": 2.8338199120901577, + "altaria": 1.5255640162328445, + "whiscash": 2.4694468027836267, + "crawdaunt": 2.914631671276371, + "claydol": 5.919399148411456, + "cradily": 3.4832021676819327, + "armaldo": 2.1691111174462625, + "dusclops": 5.997458462893912, + "absol": 3.166374330730751, + "glalie": 6.407122646721673, + "sealeo": 4.705198265849068, + "relicanth": 2.4627598700761455, + "metang": 4.818634926151282, + "luxray": 4.558809695736702, + "vespiquen": 2.8550581643695194, + "cherrim": 6.936253008077042, + "gastrodon": 2.7146173065039703, + "drifblim": 7.996040623271433, + "lopunny": 5.2730889397875655, + "skuntank": 1.7446386420927973, + "bronzong": 6.014875647970439, + "munchlax": 4.034943816444759, + "drapion": 2.669767315554205, + "abomasnow": 4.628936841683524, + "froslass": 4.837000587906947, + "rotom": 6.767241441379365, + "stoutland": 3.6157354785464473, + "liepard": 9.33879317704772, + "musharna": 2.827716132249252, + "unfezant": 6.189365598142867, + "boldore": 3.8968836830365268, + "swoobat": 8.725770160379472, + "audino": 3.139800699991773, + "gurdurr": 2.044384861080473, + "palpitoad": 4.429495842393644, + "seismitoad": 7.511450664544024, + "scolipede": 3.624719243320993, + "whimsicott": 2.8054568874118972, + "lilligant": 3.5699916559184883, + "basculin-red-striped": 3.412716921556809, + "basculin-blue-striped": 4.385957345017568, + "krookodile": 4.450905505017527, + "maractus": 2.669637596485038, + "crustle": 2.189483078211663, + "sigilyph": 3.6769674113554163, + "cofagrigus": 4.485624713303151, + "garbodor": 2.067899878803625, + "cinccino": 6.940496916459921, + "vanillish": 3.3254401325522913, + "emolga": 3.4075337064461877, + "escavalier": 2.216430780537335, + "amoonguss": 2.941821382372118, + "jellicent": 2.24050348855645, + "galvantula": 1.8205600790667118, + "klang": 4.292464816005933, + "klinklang": 4.871724422436113, + "beheeyem": 3.365161263706077, + "lampent": 4.3109702268270755, + "fraxure": 1.766234344800565, + "beartic": 2.4816671622408424, + "cryogonal": 3.166648953953996, + "accelgor": 3.723814185469872, + "stunfisk": 1.5611770796936058, + "stunfisk-galar": 3.559497899868137, + "mienshao": 3.597438785923532, + "druddigon": 2.190563333882139, + "golurk": 2.9553663808094113, + "bisharp": 5.944057758743339, + "bouffalant": 1.9887519709425743, + "heatmor": 2.288948730061909, + "durant": 3.0786969583372628, + "diggersby": 4.8907591896103835, + "talonflame": 3.1458553454539278, + "pangoro": 2.5550813925669305, + "doublade": 2.7392257800525064, + "malamar": 3.625879409409488, + "barbaracle": 2.0066766347868543, + "heliolisk": 6.293788171312926, + "tyrantrum": 1.973311930942148, + "aurorus": 5.401434647468844, + "hawlucha": 3.1848032707206406, + "dedenne": 1.8575495451751625, + "klefki": 2.773610245884889, + "trevenant": 4.8135651869836575, + "gourgeist-average": 7.771574347579129, + "charjabug": 4.413157220316611, + "vikavolt": 2.0557424374343443, + "ribombee": 4.337522103040742, + "lycanroc-midday": 5.323032735459659, + "lycanroc-midnight": 3.593925955960786, + "mudsdale": 1.7392946011979928, + "araquanid": 2.92112114768499, + "lurantis": 2.8094372810728343, + "shiinotic": 3.661106440578816, + "salazzle": 3.625785818916146, + "bewear": 2.536383994434618, + "tsareena": 3.4718209986885364, + "comfey": 4.078687270388317, + "oranguru": 5.477774400631608, + "passimian": 2.223082071543157, + "palossand": 3.050645933402791, + "pyukumuku": 50.64282046675232, + "togedemaru": 3.654798332170404, + "mimikyu-disguised": 5.2362044841208135, + "greedent": 3.2238524656417415, + "orbeetle": 3.1444412452226738, + "thievul": 3.4737976190532813, + "eldegoss": 4.79016331730639, + "dubwool": 4.10041981713389, + "drednaw": 1.8723919423749296, + "boltund": 5.958827803772694, + "carkol": 3.487290500359786, + "coalossal": 2.694785994408994, + "sandaconda": 3.3043386449149477, + "cramorant": 7.35139083311816, + "barraskewda": 5.581897720882457, + "toxtricity-amped": 3.0266770252207866, + "centiskorch": 2.459185906002437, + "grapploct": 1.6849938753713634, + "polteageist": 5.656650537441619, + "hatterene": 2.6702580767278636, + "grimmsnarl": 4.858723564347121, + "obstagoon": 5.627105229209203, + "perrserker": 4.729240668918468, + "alcremie": 1.186252638833614, + "falinks": 2.990819165827196, + "pincurchin": 3.444201180205932, + "frosmoth": 3.096444856808538, + "indeedee-male": 6.247607419719305, + "morpeko": 4.290607849302685, + "copperajah": 3.585878485799173, + "duraludon": 2.0841635809668095, + "drakloak": 8.136161837764963 }, "doublade": { - "ivysaur": 3.96293167717169, - "charmeleon": 2.9179339376313647, - "wartortle": 2.4582922705148618, - "butterfree": 5.938460762696572, - "raichu": 4.906684461936219, - "raichu-alola": 3.2227667530603146, - "sandslash": 2.2565821428270723, - "sandslash-alola": 3.0575008926238896, - "nidoqueen": 2.4598504816686875, - "nidoking": 1.9905645155430138, - "clefairy": 12.662027843474142, - "clefable": 3.3900088509787434, - "jigglypuff": 43.98029770854663, - "wigglytuff": 3.296899915321263, - "gloom": 7.097069552577817, - "vileplume": 3.5164978040335133, - "dugtrio": 4.2210351123846435, - "dugtrio-alola": 4.0609214761482395, - "persian": 6.0015893830075715, - "persian-alola": 3.690244067261517, - "golduck": 2.9183455240823064, - "poliwrath": 2.399881344422028, - "kadabra": 5.095861858564745, - "machoke": 4.610125967160341, - "tentacruel": 2.1895249523947427, - "slowbro": 1.4492400926434006, - "magneton": 3.256207137631377, - "haunter": 4.388725573538014, - "kingler": 2.2667748802365173, - "exeggutor": 2.2089125603358806, - "marowak": 3.120605765642381, - "marowak-alola": 1.7281061035952092, - "hitmonlee": 3.344621143149218, - "hitmonchan": 2.689357468775406, - "lickitung": 2.1406126383295856, - "weezing": 1.290052265241746, - "weezing-galar": 3.2179136231782923, - "rhydon": 2.6958988826955963, - "chansey": 45.18820083268196, - "tangela": 5.301413295621998, - "kangaskhan": 2.2784314928730884, - "seadra": 3.568610395335708, - "seaking": 2.492954320302107, - "starmie": 1.3586355615988879, - "mr-mime": 11.925452384931464, - "mr-mime-galar": 5.648145351227617, - "scyther": 3.2657045273725234, - "jynx": 7.862214470496122, - "electabuzz": 2.2610082546134, - "magmar": 1.2568451336868012, - "tauros": 2.3657250777164376, - "ditto": 2.2736288622528207, - "vaporeon": 3.1051738838103877, - "jolteon": 1.779874667281013, - "flareon": 1.6438792283487373, - "porygon": 3.2693644144236105, - "dragonair": 2.1898726721793818, - "noctowl": 8.050322400704957, - "lanturn": 1.6030542135539692, - "togetic": 7.3051552427547675, - "xatu": 4.216536368452617, - "bellossom": 2.682984456684591, - "azumarill": 2.707363483065015, - "sudowoodo": 3.47376555985651, - "politoed": 2.305728752024432, - "quagsire": 4.186862359612423, - "slowking": 2.4401487172204304, - "dunsparce": 3.558997528315998, - "qwilfish": 3.282722374278448, - "sneasel": 3.3431351036675165, - "piloswine": 2.3101599934596964, - "octillery": 2.2241610962864806, - "mantine": 2.316039063135204, - "skarmory": 1.837655594718141, - "hitmontop": 3.3164270492309385, - "miltank": 4.537369892195622, - "grovyle": 9.933437747943893, - "sceptile": 1.737484463738322, - "combusken": 3.5853327047200008, - "blaziken": 1.7008784980443323, - "marshtomp": 2.3225874832605156, - "swampert": 1.0490417516443515, - "linoone": 6.602730151385219, - "linoone-galar": 5.487400300439292, - "pelipper": 6.203154087567804, - "ninjask": 9.06944493574603, - "exploud": 2.144557729805311, - "lairon": 3.350800871946733, - "manectric": 1.5594917167169007, - "roselia": 5.089673915870805, - "sharpedo": 5.833428716474309, - "wailmer": 6.084370736879483, - "torkoal": 1.1409177595541593, - "flygon": 2.6534591265650755, - "altaria": 1.5035532652836623, - "whiscash": 1.820427922939988, - "crawdaunt": 1.982388713773822, - "claydol": 3.893589512641755, - "cradily": 3.5228197664232295, - "armaldo": 2.770088084014387, - "dusclops": 3.2391190843988973, - "absol": 2.1950590304564805, - "glalie": 6.170048476541025, - "sealeo": 3.56175715743437, - "relicanth": 2.110636578349181, - "metang": 2.8706827663917807, - "luxray": 3.518156088749561, - "vespiquen": 3.452518100299515, - "cherrim": 7.038831771300666, - "gastrodon": 2.3218427091153817, - "drifblim": 4.573903782688536, - "lopunny": 5.1207898901486555, - "skuntank": 1.362527543444405, - "bronzong": 3.2347097908253044, - "munchlax": 3.248772220840437, - "drapion": 2.589893541466939, - "abomasnow": 5.127542607107969, - "froslass": 3.9508039478330934, - "rotom": 2.5293817578664366, - "stoutland": 3.4130717818478846, - "liepard": 8.214092466074927, - "musharna": 1.7593051141952798, - "unfezant": 7.137263476569633, - "boldore": 4.098152097175211, - "swoobat": 6.0536126869667, - "audino": 2.797078472037235, - "gurdurr": 2.5298031013041165, - "palpitoad": 3.111377219074602, - "seismitoad": 7.355426438400052, - "scolipede": 3.6643330495001236, - "whimsicott": 4.683471352739108, - "lilligant": 3.539156862247567, - "basculin-red-striped": 2.804861950658726, - "basculin-blue-striped": 3.196514307067632, - "krookodile": 2.6871153305028344, - "maractus": 2.482048262166004, - "crustle": 3.056691001576236, - "sigilyph": 2.5595188617585762, - "cofagrigus": 2.1775083818980687, - "garbodor": 2.291089562690133, - "cinccino": 6.251985873535724, - "vanillish": 3.461736345740493, - "emolga": 2.470583877303744, - "escavalier": 1.7705479873578727, - "amoonguss": 3.2405745084030553, - "jellicent": 1.5132083689096802, - "galvantula": 1.3266186477930113, - "klang": 3.0138997255696505, - "klinklang": 4.22691506201802, - "beheeyem": 1.9117331677347245, - "lampent": 1.5680197490744003, - "fraxure": 1.845973854384453, - "beartic": 2.546340320591888, - "cryogonal": 3.0836614871416, - "accelgor": 4.126094425198167, - "stunfisk": 1.0156139683660197, - "stunfisk-galar": 2.162373882266775, - "mienshao": 4.42136167490503, - "druddigon": 2.0402476295788228, - "golurk": 1.947067154797438, - "bisharp": 3.731303297970089, - "bouffalant": 1.692123810818816, - "heatmor": 1.50160221275358, - "durant": 2.8361477677630385, - "diggersby": 3.7541807501030524, - "talonflame": 2.3489392973987524, - "pangoro": 2.1772531582757035, - "malamar": 2.829737399690955, - "barbaracle": 1.7333439585007564, - "heliolisk": 4.314557706868205, - "tyrantrum": 2.2625087653260705, - "aurorus": 5.086297345943686, - "hawlucha": 4.1521588442129165, - "dedenne": 3.225382098464815, - "klefki": 3.5970328113859455, - "trevenant": 3.9176143546503757, - "gourgeist-average": 4.489119731633896, - "charjabug": 3.551439319798189, - "vikavolt": 1.6566416828952528, - "ribombee": 7.671179343134053, - "lycanroc-midday": 5.352728790641115, - "lycanroc-midnight": 3.6032223335092386, - "mudsdale": 1.7366710270677865, - "araquanid": 3.185135195030761, - "lurantis": 2.95222008640636, - "shiinotic": 7.242856540570547, - "salazzle": 2.5223435329574584, - "bewear": 2.301562594124891, - "tsareena": 3.827615501227898, - "comfey": 7.2369464905895935, - "oranguru": 3.1897246514387607, - "passimian": 2.767368079026946, - "palossand": 1.5900386499305117, - "pyukumuku": 46.631276548975606, - "togedemaru": 2.7350987785792955, - "mimikyu-disguised": 6.960739938326032, - "greedent": 2.7482264592243784, - "orbeetle": 2.1755558745030656, - "thievul": 1.640196568190506, - "eldegoss": 4.799919812325408, - "dubwool": 3.9274407649896785, - "drednaw": 1.5569430245381637, - "boltund": 3.968869834702053, - "carkol": 2.3407641611334253, - "coalossal": 1.7833394107594296, - "sandaconda": 2.8832644952768045, - "cramorant": 5.234482831308204, - "barraskewda": 4.391069070555364, - "toxtricity-amped": 2.6455179085753118, - "centiskorch": 2.0678008527115197, - "grapploct": 1.9012232991097924, - "polteageist": 3.322602067622145, - "hatterene": 4.038600757167403, - "grimmsnarl": 4.933239949049866, - "obstagoon": 3.716744831685822, - "perrserker": 3.369194832073563, - "alcremie": 2.3202650893088643, - "falinks": 3.705279005853078, - "pincurchin": 2.469463595317788, - "frosmoth": 4.48459053095411, - "indeedee-male": 3.065137959882862, - "morpeko": 2.8620976429570115, - "copperajah": 3.0070865169767576, - "duraludon": 1.6694979016194758, - "drakloak": 4.453036469158572, - "doublade": 2.058730116350012 + "ivysaur": 3.973996798681023, + "charmeleon": 2.9065690680294782, + "wartortle": 2.4571087934944202, + "butterfree": 5.955264528167057, + "raichu": 4.908423528452686, + "raichu-alola": 3.219250581169599, + "sandslash": 2.259840895302876, + "sandslash-alola": 3.0708643120141295, + "nidoqueen": 2.4518039132257106, + "nidoking": 1.9917376743765298, + "clefairy": 12.648096500193745, + "clefable": 3.398098315929543, + "jigglypuff": 44.104289248326005, + "wigglytuff": 3.3078280238642956, + "gloom": 7.119293643210102, + "vileplume": 3.5243102358436054, + "dugtrio": 4.22368305255524, + "dugtrio-alola": 4.066857365808475, + "persian": 6.034029544155221, + "persian-alola": 3.687963789477121, + "golduck": 2.919303832872574, + "poliwrath": 2.408646100932436, + "kadabra": 5.108993621422741, + "machoke": 4.625370033684087, + "tentacruel": 2.1885536640100614, + "slowbro": 1.4457547301355813, + "magneton": 3.253591427529117, + "haunter": 4.377765468188812, + "kingler": 2.2681627551269052, + "exeggutor": 2.212150109850124, + "marowak": 3.1214792830639633, + "marowak-alola": 1.7255997461159334, + "hitmonlee": 3.3613664485988397, + "hitmonchan": 2.6986335257457, + "lickitung": 2.1438922336016404, + "weezing": 1.287684059779322, + "weezing-galar": 3.2164452484653916, + "rhydon": 2.698795999917353, + "chansey": 45.51243956734041, + "tangela": 5.314752362380615, + "kangaskhan": 2.285430160516376, + "seadra": 3.564220938248663, + "seaking": 2.4973180423626564, + "starmie": 1.3591412669661609, + "mr-mime": 11.951469075388506, + "mr-mime-galar": 5.6593016202462865, + "scyther": 3.27344440344436, + "jynx": 7.888819003858337, + "electabuzz": 2.258876612045584, + "magmar": 1.2535513771246989, + "tauros": 2.3725053498170467, + "ditto": 2.2565115849818005, + "vaporeon": 3.106719736927136, + "jolteon": 1.7751659008499017, + "flareon": 1.638868433839142, + "porygon": 3.2753144654676367, + "dragonair": 2.193784603054146, + "noctowl": 8.088217946748024, + "lanturn": 1.5995653371020992, + "togetic": 7.298834018929689, + "xatu": 4.218062372625097, + "bellossom": 2.688091418205123, + "azumarill": 2.7160718503421273, + "sudowoodo": 3.484437574279105, + "politoed": 2.3037894259925524, + "quagsire": 4.185754212744477, + "slowking": 2.4419692200952987, + "dunsparce": 3.562254610019626, + "qwilfish": 3.287484202215665, + "sneasel": 3.3521393507723856, + "piloswine": 2.320176871312402, + "octillery": 2.224776195129089, + "mantine": 2.3162413448883967, + "skarmory": 1.8399895222064848, + "hitmontop": 3.328509595872732, + "miltank": 4.557641138826348, + "grovyle": 9.966252801623433, + "sceptile": 1.7423354568641412, + "combusken": 3.586383634659657, + "blaziken": 1.700650258244277, + "marshtomp": 2.322999368487111, + "swampert": 1.0458754426384351, + "linoone": 6.626627129217104, + "linoone-galar": 5.487284807422783, + "pelipper": 6.2173146541649, + "ninjask": 9.089155668333916, + "exploud": 2.154959362663396, + "lairon": 3.361845878821473, + "manectric": 1.5557545533356656, + "roselia": 5.102869487686582, + "sharpedo": 5.842107203476942, + "wailmer": 6.08458805200481, + "torkoal": 1.136201328080276, + "flygon": 2.6570862236133594, + "altaria": 1.5019125463816498, + "whiscash": 1.8210123938876077, + "crawdaunt": 1.98257741253328, + "claydol": 3.899346224028503, + "cradily": 3.5356662684274047, + "armaldo": 2.778853593368804, + "dusclops": 3.2313165217912787, + "absol": 2.196468698998628, + "glalie": 6.189368989056549, + "sealeo": 3.566054853936499, + "relicanth": 2.114850061393922, + "metang": 2.875618832886424, + "luxray": 3.516934429379915, + "vespiquen": 3.4647862700860146, + "cherrim": 7.058725420734275, + "gastrodon": 2.3282558500997697, + "drifblim": 4.569790684419381, + "lopunny": 5.1489783518669405, + "skuntank": 1.3624398033785092, + "bronzong": 3.243221904632355, + "munchlax": 3.2640046066698916, + "drapion": 2.594654170385801, + "abomasnow": 5.153793798610894, + "froslass": 3.948251027477807, + "rotom": 2.5156539767198174, + "stoutland": 3.432504504979553, + "liepard": 8.231850125072398, + "musharna": 1.761231004525873, + "unfezant": 7.1576838222429995, + "boldore": 4.1083773960492795, + "swoobat": 6.056173141704611, + "audino": 2.798395492676644, + "gurdurr": 2.537935043177187, + "palpitoad": 3.1042770525691727, + "seismitoad": 7.385416478921806, + "scolipede": 3.6718185227644184, + "whimsicott": 4.696740042300757, + "lilligant": 3.547330914836595, + "basculin-red-striped": 2.80933087271471, + "basculin-blue-striped": 3.1936327700259506, + "krookodile": 2.683157768588528, + "maractus": 2.486594628697521, + "crustle": 3.0696228461223303, + "sigilyph": 2.560373567151886, + "cofagrigus": 2.1685952864006053, + "garbodor": 2.3012499798702715, + "cinccino": 6.283931943782722, + "vanillish": 3.4736534743600265, + "emolga": 2.466853779855348, + "escavalier": 1.7729391070523368, + "amoonguss": 3.251854751583944, + "jellicent": 1.5138239397952375, + "galvantula": 1.324436105632032, + "klang": 3.0152581263814184, + "klinklang": 4.242914151920969, + "beheeyem": 1.910334454966031, + "lampent": 1.5610269656461655, + "fraxure": 1.852189043886678, + "beartic": 2.553603420580921, + "cryogonal": 3.095061221339953, + "accelgor": 4.141121543533301, + "stunfisk": 1.0116484221781448, + "stunfisk-galar": 2.157959198029199, + "mienshao": 4.443710957946322, + "druddigon": 2.043789797443815, + "golurk": 1.9458203863188253, + "bisharp": 3.742173649361376, + "bouffalant": 1.6998405298503496, + "heatmor": 1.4978538829276427, + "durant": 2.8407672822520333, + "diggersby": 3.7622576016260885, + "talonflame": 2.3430129190487463, + "pangoro": 2.1853455797717007, + "doublade": 2.058730116350012, + "malamar": 2.8280329106566726, + "barbaracle": 1.738361874017444, + "heliolisk": 4.316559966057973, + "tyrantrum": 2.272354655212702, + "aurorus": 5.10490440355559, + "hawlucha": 4.16353152805911, + "dedenne": 3.2238198985294426, + "klefki": 3.6066214576296356, + "trevenant": 3.9327023118332463, + "gourgeist-average": 4.475592534909139, + "charjabug": 3.5504443031005017, + "vikavolt": 1.656638340160145, + "ribombee": 7.696163846898234, + "lycanroc-midday": 5.377777270718697, + "lycanroc-midnight": 3.6163235148428097, + "mudsdale": 1.739787817703351, + "araquanid": 3.196310673589947, + "lurantis": 2.962211256056041, + "shiinotic": 7.267033498036646, + "salazzle": 2.5116674108819197, + "bewear": 2.312074529281575, + "tsareena": 3.842164722914866, + "comfey": 7.2545047925864425, + "oranguru": 3.195842308606811, + "passimian": 2.778690429352622, + "palossand": 1.5820520021335778, + "pyukumuku": 46.71736450500893, + "togedemaru": 2.7414148252785893, + "mimikyu-disguised": 6.975585632439633, + "greedent": 2.7605074172942414, + "orbeetle": 2.17827930906246, + "thievul": 1.6380425946450141, + "eldegoss": 4.813788316992813, + "dubwool": 3.946905112639821, + "drednaw": 1.5612096940073783, + "boltund": 3.9617914766863986, + "carkol": 2.3338352850839414, + "coalossal": 1.7790859364255045, + "sandaconda": 2.8799291597000694, + "cramorant": 5.235130966438911, + "barraskewda": 4.393748600517271, + "toxtricity-amped": 2.642076872359408, + "centiskorch": 2.0631634920805086, + "grapploct": 1.9080390862843695, + "polteageist": 3.326834719857673, + "hatterene": 4.048961901212689, + "grimmsnarl": 4.925953015870176, + "obstagoon": 3.7253014737003243, + "perrserker": 3.370983791037588, + "alcremie": 2.3210816614716254, + "falinks": 3.720105705918384, + "pincurchin": 2.462983232158463, + "frosmoth": 4.501440627268729, + "indeedee-male": 3.0578465455845283, + "morpeko": 2.8599539523195907, + "copperajah": 3.0164150178774314, + "duraludon": 1.671182405608748, + "drakloak": 4.444241989545906 }, "malamar": { - "ivysaur": 3.6826416999706146, - "charmeleon": 3.950456282919281, - "wartortle": 2.8777249271250547, - "butterfree": 3.829250040133789, - "raichu": 5.417949681494271, - "raichu-alola": 5.332629507972966, - "sandslash": 2.054648237550701, - "sandslash-alola": 1.9223554527561237, - "nidoqueen": 3.3558156900898037, - "nidoking": 2.282289425215746, - "clefairy": 8.47593957800188, - "clefable": 1.5955358568248905, - "jigglypuff": 22.033946187204915, - "wigglytuff": 1.6901068599210887, - "gloom": 6.248554575467107, - "vileplume": 2.9502056862154244, - "dugtrio": 3.900269910450752, - "dugtrio-alola": 3.567020533130597, - "persian": 4.1864164412311204, - "persian-alola": 3.7086533465812246, - "golduck": 3.2535448816836823, - "poliwrath": 2.385647378256217, - "kadabra": 5.528715231013755, - "machoke": 4.9455219522064855, - "tentacruel": 2.5893149236883426, - "slowbro": 2.4394196808774407, - "magneton": 2.997869738429321, - "haunter": 6.584290862438162, - "kingler": 2.986180333246664, - "exeggutor": 2.5052108090765692, - "marowak": 3.0820089338720944, - "marowak-alola": 2.5976505529423584, - "hitmonlee": 2.598601065918845, - "hitmonchan": 2.4963685771445263, - "lickitung": 1.9013227023908819, - "weezing": 2.1217522763515646, - "weezing-galar": 3.3076244527325005, - "rhydon": 2.4270043510646695, - "chansey": 30.481917023083234, - "tangela": 5.312505389846294, - "kangaskhan": 1.8669254147508625, - "seadra": 4.871534192554968, - "seaking": 2.5822570258104136, - "starmie": 1.7791428929428093, - "mr-mime": 8.858187819914047, - "mr-mime-galar": 5.226910249114925, - "scyther": 2.5875767849516302, - "jynx": 6.229899486294368, - "electabuzz": 2.6959586882566073, - "magmar": 1.7706560700549048, - "tauros": 2.0228589411960116, - "ditto": 3.9543230643684666, - "vaporeon": 3.381617704127141, - "jolteon": 2.0530471405499076, - "flareon": 2.5822394428230546, - "porygon": 2.8045677279756402, - "dragonair": 1.8971736116476383, - "noctowl": 6.33086191717471, - "lanturn": 2.0086378584625795, - "togetic": 5.156480754862262, - "xatu": 5.403387822545728, - "bellossom": 2.064001055551952, - "azumarill": 2.343502767441422, - "sudowoodo": 2.63091502129295, - "politoed": 2.6760341649187547, - "quagsire": 4.559431371613303, - "slowking": 3.645296145474691, - "dunsparce": 2.9533360397494253, - "qwilfish": 4.596636591538632, - "sneasel": 2.0283499344223905, - "piloswine": 1.5629339055947276, - "octillery": 2.264895602460683, - "mantine": 3.0168741076593397, - "skarmory": 2.2378918833633294, - "hitmontop": 3.2243770460298067, - "miltank": 3.4282109131418617, - "grovyle": 8.277073988313216, - "sceptile": 1.3988005511588102, - "combusken": 4.082440265430439, - "blaziken": 1.9985017563878515, - "marshtomp": 2.5148149490439273, - "swampert": 1.2542397523914597, - "linoone": 4.644425456586614, - "linoone-galar": 4.1436259754304805, - "pelipper": 9.340116255782927, - "ninjask": 5.670629349490005, - "exploud": 1.638420503391023, - "lairon": 2.3346477561043875, - "manectric": 1.806123074779163, - "roselia": 4.551773802822571, - "sharpedo": 5.3894625300028185, - "wailmer": 6.9752283757888796, - "torkoal": 1.9300367632004263, - "flygon": 2.135318265219288, - "altaria": 1.5114402395935782, - "whiscash": 2.121781533094371, - "crawdaunt": 2.2629448096260987, - "claydol": 4.758140901546824, - "cradily": 2.275659082769511, - "armaldo": 1.566153065835058, - "dusclops": 4.064170020252785, - "absol": 1.7381622525281433, - "glalie": 4.195804834110911, - "sealeo": 3.343231481940581, - "relicanth": 2.1987990518256253, - "metang": 3.9656308427915032, - "luxray": 3.825760000671817, - "vespiquen": 2.42556013109333, - "cherrim": 5.8428464562623486, - "gastrodon": 2.0561095154439935, - "drifblim": 6.417455756235593, - "lopunny": 3.768103101935341, - "skuntank": 1.2731610826163067, - "bronzong": 4.842745934869887, - "munchlax": 2.517102168505847, - "drapion": 1.939108109578088, - "abomasnow": 3.2347986988147355, - "froslass": 3.8336727961127313, - "rotom": 5.136304988852415, - "stoutland": 2.423208130699937, - "liepard": 5.860129793562079, - "musharna": 2.3138094021883564, - "unfezant": 7.09590358999227, - "boldore": 3.494140223930043, - "swoobat": 7.747231562505947, - "audino": 2.173305587344282, - "gurdurr": 3.0073069349696233, - "palpitoad": 3.8034256782619735, - "seismitoad": 6.308818585233526, - "scolipede": 3.3135573121827733, - "whimsicott": 2.9029120967679285, - "lilligant": 2.579264718270426, - "basculin-red-striped": 3.207273961045438, - "basculin-blue-striped": 3.974331887925374, - "krookodile": 2.4158793313957676, - "maractus": 2.200133111349168, - "crustle": 1.7969034951128509, - "sigilyph": 3.209115316958594, - "cofagrigus": 3.4741204376774952, - "garbodor": 2.2766366402857883, - "cinccino": 4.62025758734525, - "vanillish": 2.1757962834736118, - "emolga": 3.041525055071123, - "escavalier": 1.6357256775608255, - "amoonguss": 2.9743331775289366, - "jellicent": 2.1090340431366412, - "galvantula": 1.4267365059329018, - "klang": 2.7076909674101763, - "klinklang": 3.236351424180604, - "beheeyem": 2.599733802438201, - "lampent": 3.3167922919603523, - "fraxure": 1.4651558222528855, - "beartic": 1.729652881270173, - "cryogonal": 1.9430782392983816, - "accelgor": 2.1053553443644426, - "stunfisk": 1.3101677459574164, - "stunfisk-galar": 2.240590704683072, - "mienshao": 4.142462730915953, - "druddigon": 1.8544234478997854, - "golurk": 2.4879796556679623, - "bisharp": 2.3075112941534535, - "bouffalant": 1.3110796530420838, - "heatmor": 1.9083042076764314, - "durant": 2.359231452993002, - "diggersby": 3.263439215571792, - "talonflame": 3.108809521768791, - "pangoro": 1.569864664174649, - "doublade": 2.518232544548936, - "barbaracle": 1.6077733626310156, - "heliolisk": 3.882496218403492, - "tyrantrum": 1.6478365607518153, - "aurorus": 2.491101853165771, - "hawlucha": 4.448723332352098, - "dedenne": 2.323748888001601, - "klefki": 2.458545169448103, - "trevenant": 4.1321247757268855, - "gourgeist-average": 6.209440660277751, - "charjabug": 3.8465994204513834, - "vikavolt": 1.436900484022589, - "ribombee": 3.1879280275911133, - "lycanroc-midday": 3.372804938716742, - "lycanroc-midnight": 2.38426470467833, - "mudsdale": 1.5594131903392312, - "araquanid": 2.1457786489318487, - "lurantis": 2.1287900195485747, - "shiinotic": 3.6526078654564595, - "salazzle": 3.8507658038212105, - "bewear": 2.274873447481138, - "tsareena": 3.1272304049772996, - "comfey": 3.827188272567554, - "oranguru": 4.445642792728384, - "passimian": 3.0721777348662322, - "palossand": 2.438188626824815, - "pyukumuku": 45.30404645694371, - "togedemaru": 2.3073502740691705, - "mimikyu-disguised": 4.263954875428996, - "greedent": 2.216935049774461, - "orbeetle": 1.990567149475932, - "thievul": 1.6097750790899168, - "eldegoss": 4.013491604919977, - "dubwool": 2.938197054517775, - "drednaw": 1.3311001370492552, - "boltund": 4.718873841959178, - "carkol": 2.3568739784154777, - "coalossal": 1.91690531894089, - "sandaconda": 2.786972507494908, - "cramorant": 7.053737356787142, - "barraskewda": 5.075229606914842, - "toxtricity-amped": 3.2159675739097775, - "centiskorch": 2.1330675473655134, - "grapploct": 2.096022341758643, - "polteageist": 4.357791984152712, - "hatterene": 2.6417725915534067, - "grimmsnarl": 3.3084181405037656, - "obstagoon": 2.3016535463507366, - "perrserker": 3.0338944018898903, - "alcremie": 1.1333234719369685, - "falinks": 3.6710142312614673, - "pincurchin": 2.8946325485716757, - "frosmoth": 1.9779792456802288, - "indeedee-male": 4.9056399843832725, - "morpeko": 2.3303726008505268, - "copperajah": 2.3959407181412757, - "duraludon": 1.3968908480117617, - "drakloak": 6.172322299062341, - "malamar": 2.9486574785287756 + "ivysaur": 3.6855896388910283, + "charmeleon": 3.95259216437598, + "wartortle": 2.8814835709829976, + "butterfree": 3.8152627354369697, + "raichu": 5.416363767794482, + "raichu-alola": 5.3428600842822735, + "sandslash": 2.0510203499276507, + "sandslash-alola": 1.9227322432353577, + "nidoqueen": 3.3578177474002304, + "nidoking": 2.2851488842307237, + "clefairy": 8.47663387445113, + "clefable": 1.5931107906798165, + "jigglypuff": 21.97748161094391, + "wigglytuff": 1.688916730214896, + "gloom": 6.24357487228751, + "vileplume": 2.9427364784754877, + "dugtrio": 3.901217985031689, + "dugtrio-alola": 3.5665481967233976, + "persian": 4.1841085365210775, + "persian-alola": 3.7034756763647425, + "golduck": 3.257565635593844, + "poliwrath": 2.3902341798135422, + "kadabra": 5.535635623187085, + "machoke": 4.952956570410837, + "tentacruel": 2.5940001644889685, + "slowbro": 2.4495235878203, + "magneton": 2.9964513116405547, + "haunter": 6.605533761257652, + "kingler": 2.9922295014759017, + "exeggutor": 2.508099042523687, + "marowak": 3.0821498066166866, + "marowak-alola": 2.603764492683794, + "hitmonlee": 2.6007809723450013, + "hitmonchan": 2.4990786557324927, + "lickitung": 1.9015862317359933, + "weezing": 2.1249170512089792, + "weezing-galar": 3.307778263030883, + "rhydon": 2.4260618674797847, + "chansey": 30.461495507561146, + "tangela": 5.314379707833615, + "kangaskhan": 1.8679658535337023, + "seadra": 4.87729990615016, + "seaking": 2.5862865139717917, + "starmie": 1.78202045570975, + "mr-mime": 8.892127211079405, + "mr-mime-galar": 5.240540032918082, + "scyther": 2.585356617544248, + "jynx": 6.22949725415694, + "electabuzz": 2.6954092399020304, + "magmar": 1.7712776475014653, + "tauros": 2.024689105579564, + "ditto": 3.9333140133817253, + "vaporeon": 3.3847938962099127, + "jolteon": 2.0517541977001725, + "flareon": 2.583201038770645, + "porygon": 2.8050248901775046, + "dragonair": 1.8974556828946518, + "noctowl": 6.336166956775604, + "lanturn": 2.0073844385122843, + "togetic": 5.154880942005223, + "xatu": 5.420948949342284, + "bellossom": 2.061613658044019, + "azumarill": 2.3465762659478973, + "sudowoodo": 2.6333826853078888, + "politoed": 2.6792081099920644, + "quagsire": 4.55835858054954, + "slowking": 3.65576962248927, + "dunsparce": 2.9496647496753283, + "qwilfish": 4.608600067332903, + "sneasel": 2.0253096140443665, + "piloswine": 1.5628491265893456, + "octillery": 2.2634951944629833, + "mantine": 3.023201568870356, + "skarmory": 2.2380976420455676, + "hitmontop": 3.2284958451343613, + "miltank": 3.4265917390965095, + "grovyle": 8.277474731828901, + "sceptile": 1.3967970307502533, + "combusken": 4.087184233535147, + "blaziken": 2.0012129889140824, + "marshtomp": 2.5149733133677907, + "swampert": 1.2541170342122339, + "linoone": 4.635781032951632, + "linoone-galar": 4.137484924183061, + "pelipper": 9.36060323913776, + "ninjask": 5.643834091952186, + "exploud": 1.638472064523399, + "lairon": 2.3352312888053937, + "manectric": 1.8062997662277502, + "roselia": 4.558862684545867, + "sharpedo": 5.388559291020627, + "wailmer": 6.985109332288212, + "torkoal": 1.9318615884170678, + "flygon": 2.1301333668070823, + "altaria": 1.5106999771111378, + "whiscash": 2.123156214143051, + "crawdaunt": 2.2627449624872993, + "claydol": 4.767113700261074, + "cradily": 2.2752170256910746, + "armaldo": 1.5627383929730538, + "dusclops": 4.0627352872159115, + "absol": 1.7360188658098112, + "glalie": 4.197733495038435, + "sealeo": 3.346424018762672, + "relicanth": 2.2019302473635047, + "metang": 3.975303823416256, + "luxray": 3.8258860719170213, + "vespiquen": 2.420537995873632, + "cherrim": 5.841037071163791, + "gastrodon": 2.0526785003943466, + "drifblim": 6.441556441141933, + "lopunny": 3.7701254102147086, + "skuntank": 1.272172882841672, + "bronzong": 4.86160384772186, + "munchlax": 2.5183208615631485, + "drapion": 1.9333939503126123, + "abomasnow": 3.233487444067693, + "froslass": 3.840075119622042, + "rotom": 5.14531750950302, + "stoutland": 2.423438532408654, + "liepard": 5.846865547707337, + "musharna": 2.322054497628079, + "unfezant": 7.109576682291395, + "boldore": 3.4978589126739, + "swoobat": 7.772591885232137, + "audino": 2.172286250775176, + "gurdurr": 3.012484234348696, + "palpitoad": 3.8028314761675635, + "seismitoad": 6.303069780344708, + "scolipede": 3.306019859411646, + "whimsicott": 2.8991272286086005, + "lilligant": 2.5712314766664206, + "basculin-red-striped": 3.214826424447555, + "basculin-blue-striped": 3.9803067875243796, + "krookodile": 2.4106997080031185, + "maractus": 2.2005877432108067, + "crustle": 1.7933042658765195, + "sigilyph": 3.2179378925233437, + "cofagrigus": 3.4854779699618113, + "garbodor": 2.2802325880705276, + "cinccino": 4.622068615908011, + "vanillish": 2.175536537587794, + "emolga": 3.0442300275005203, + "escavalier": 1.6329226063565572, + "amoonguss": 2.976197689885545, + "jellicent": 2.112385299117405, + "galvantula": 1.422705586243365, + "klang": 2.708416461357933, + "klinklang": 3.2378614013281677, + "beheeyem": 2.6050891508324514, + "lampent": 3.3205350159409828, + "fraxure": 1.4629830709238623, + "beartic": 1.7299781730782775, + "cryogonal": 1.9430481201414604, + "accelgor": 2.09378102852014, + "stunfisk": 1.3097018829921603, + "stunfisk-galar": 2.239293304780793, + "mienshao": 4.146903140033391, + "druddigon": 1.8557151695394318, + "golurk": 2.4914520996528084, + "bisharp": 2.3074293021587504, + "bouffalant": 1.3124670344200369, + "heatmor": 1.910363881564902, + "durant": 2.352440290064612, + "diggersby": 3.2634649587167988, + "talonflame": 3.113300913328983, + "pangoro": 1.5678590847369152, + "doublade": 2.5234200492960275, + "malamar": 2.9486574785287756, + "barbaracle": 1.6091671531956124, + "heliolisk": 3.882121215870625, + "tyrantrum": 1.648552993783492, + "aurorus": 2.490137358644912, + "hawlucha": 4.457388255279016, + "dedenne": 2.3196643272148734, + "klefki": 2.455372919853195, + "trevenant": 4.139959572896713, + "gourgeist-average": 6.219075865423745, + "charjabug": 3.8483262607175392, + "vikavolt": 1.4315401843532634, + "ribombee": 3.1695591860022105, + "lycanroc-midday": 3.3749371234327494, + "lycanroc-midnight": 2.3858697003246236, + "mudsdale": 1.5596043269373379, + "araquanid": 2.142832998716556, + "lurantis": 2.1236619538153167, + "shiinotic": 3.641488523940814, + "salazzle": 3.856206211877744, + "bewear": 2.2766966001516233, + "tsareena": 3.1283315182672826, + "comfey": 3.8213864950321064, + "oranguru": 4.467058573212864, + "passimian": 3.0773992282946065, + "palossand": 2.4401711217689215, + "pyukumuku": 45.34797021615408, + "togedemaru": 2.3072270182602312, + "mimikyu-disguised": 4.268773474599097, + "greedent": 2.2203439185017255, + "orbeetle": 1.9916852871609132, + "thievul": 1.607436622676095, + "eldegoss": 4.01258655695909, + "dubwool": 2.939585808995825, + "drednaw": 1.3305970181563314, + "boltund": 4.720187872962118, + "carkol": 2.3578199489615104, + "coalossal": 1.9171169492693907, + "sandaconda": 2.7793325459392557, + "cramorant": 7.06923555636276, + "barraskewda": 5.083075172031476, + "toxtricity-amped": 3.217865204977417, + "centiskorch": 2.1338106143284956, + "grapploct": 2.0985695209902464, + "polteageist": 4.372132225129224, + "hatterene": 2.644152451560296, + "grimmsnarl": 3.3033848089405105, + "obstagoon": 2.2981368302118916, + "perrserker": 3.035897144727164, + "alcremie": 1.131768400537196, + "falinks": 3.6670146460011086, + "pincurchin": 2.8949167168932135, + "frosmoth": 1.9718877177334007, + "indeedee-male": 4.917576964161372, + "morpeko": 2.32617250592231, + "copperajah": 2.3970124249242426, + "duraludon": 1.3972018893173996, + "drakloak": 6.182233057386799 }, "barbaracle": { - "ivysaur": 2.5415688020568643, - "charmeleon": 6.244903140962473, - "wartortle": 2.731673106717229, - "butterfree": 4.620168522440205, - "raichu": 5.141451253269031, - "raichu-alola": 3.8404438431724897, - "sandslash": 2.627272314546669, - "sandslash-alola": 2.012154545525675, - "nidoqueen": 3.773883053955032, - "nidoking": 2.597048418112771, - "clefairy": 9.5742840297677, - "clefable": 2.4152760409079157, - "jigglypuff": 31.454756083157207, - "wigglytuff": 2.3374917258588797, - "gloom": 6.0472860424279045, - "vileplume": 2.382790403396275, - "dugtrio": 5.4235588672648785, - "dugtrio-alola": 5.08484746063572, - "persian": 5.097629487607348, - "persian-alola": 4.740091635990321, - "golduck": 3.243295141989572, - "poliwrath": 1.9182414921919189, - "kadabra": 4.836001195577438, - "machoke": 4.0456976655478405, - "tentacruel": 2.686789336579447, - "slowbro": 1.7839572903612637, - "magneton": 2.945684051331303, - "haunter": 4.219140964683598, - "kingler": 2.164688548727546, - "exeggutor": 1.7616292061328873, - "marowak": 3.9501983247621224, - "marowak-alola": 3.006008883662715, - "hitmonlee": 2.7994492999882326, - "hitmonchan": 2.4739390556667553, - "lickitung": 2.1129368791771403, - "weezing": 1.721057669183436, - "weezing-galar": 2.7390542631322603, - "rhydon": 3.3062638810589737, - "chansey": 36.79423335806377, - "tangela": 4.403910749931336, - "kangaskhan": 2.0617145390693388, - "seadra": 3.9012035810946712, - "seaking": 2.6193507525805773, - "starmie": 1.5059648958899359, - "mr-mime": 8.384723007858325, - "mr-mime-galar": 4.343422067577558, - "scyther": 3.0972982134658382, - "jynx": 5.251802008575557, - "electabuzz": 2.5693855754786523, - "magmar": 2.9782934718443688, - "tauros": 2.0494296377598946, - "ditto": 1.9360940066027417, - "vaporeon": 3.571582772670557, - "jolteon": 2.2247315751856522, - "flareon": 4.466520074092746, - "porygon": 3.070762912498325, - "dragonair": 1.9919434442432222, - "noctowl": 7.567056239744889, - "lanturn": 1.927574837838987, - "togetic": 6.671906157579075, - "xatu": 4.271419390058396, - "bellossom": 2.1511648541739077, - "azumarill": 2.658436773909875, - "sudowoodo": 3.0373922588697244, - "politoed": 2.636455615449946, - "quagsire": 4.551587875260654, - "slowking": 2.6996171401759725, - "dunsparce": 3.6795006635371097, - "qwilfish": 3.458053171337248, - "sneasel": 2.5839902968724227, - "piloswine": 2.15379539121525, - "octillery": 2.423416338711802, - "mantine": 2.8596086743784674, - "skarmory": 2.0187378409639183, - "hitmontop": 2.8612602610678257, - "miltank": 3.9161356511536782, - "grovyle": 6.8026901638176405, - "sceptile": 1.3169186672600965, - "combusken": 4.6223459290070394, - "blaziken": 2.407058321927659, - "marshtomp": 2.7166750583118437, - "swampert": 1.353121052915673, - "linoone": 5.968450155922525, - "linoone-galar": 5.062104855772303, - "pelipper": 6.435640481558722, - "ninjask": 8.208346826757149, - "exploud": 1.8760643008135287, - "lairon": 2.8015085297459033, - "manectric": 1.9799041881506185, - "roselia": 3.452696549758034, - "sharpedo": 5.274233876267193, - "wailmer": 6.887300641708654, - "torkoal": 2.6638794907131933, - "flygon": 3.0390009841427905, - "altaria": 2.1083982056063553, - "whiscash": 2.282178766136602, - "crawdaunt": 1.9749732574547423, - "claydol": 4.864931718549126, - "cradily": 2.0395647419563643, - "armaldo": 2.4866099542961884, - "dusclops": 3.6659812834804475, - "absol": 2.300417426709853, - "glalie": 4.723341761612621, - "sealeo": 3.3511985137419384, - "relicanth": 1.8758083767080382, - "metang": 2.9803007728710638, - "luxray": 3.9179779349853865, - "vespiquen": 2.996554616809874, - "cherrim": 4.958483297681292, - "gastrodon": 2.5278095085546957, - "drifblim": 4.324656282174891, - "lopunny": 4.223478061894959, - "skuntank": 1.6855755591436563, - "bronzong": 3.4810818306031375, - "munchlax": 2.912600917630738, - "drapion": 2.5505394485451194, - "abomasnow": 3.198077612472919, - "froslass": 3.2566166279185116, - "rotom": 3.6963051422172315, - "stoutland": 2.898873195836685, - "liepard": 7.84919558133405, - "musharna": 1.4959295160983226, - "unfezant": 7.194290540589531, - "boldore": 3.6050908749010127, - "swoobat": 6.113537537686671, - "audino": 2.7087726173761064, - "gurdurr": 2.0367518626881376, - "palpitoad": 3.9901253892009763, - "seismitoad": 7.548003886441383, - "scolipede": 3.406102735188486, - "whimsicott": 3.92107015463206, - "lilligant": 2.5337905125271987, - "basculin-red-striped": 2.924192993310225, - "basculin-blue-striped": 3.6828659300175968, - "krookodile": 3.70142553153887, - "maractus": 1.7571026035503472, - "crustle": 2.581190493409744, - "sigilyph": 2.566852284598152, - "cofagrigus": 2.6088351362345232, - "garbodor": 2.070320776790068, - "cinccino": 5.48198229566135, - "vanillish": 2.6102441000588623, - "emolga": 2.9553536084921133, - "escavalier": 1.9216354073958937, - "amoonguss": 2.2379975648876975, - "jellicent": 1.2780687581057333, - "galvantula": 1.5222542733644944, - "klang": 2.715967605372575, - "klinklang": 3.5951940575973884, - "beheeyem": 2.0444240479437874, - "lampent": 4.420607434086866, - "fraxure": 1.7002461685735475, - "beartic": 1.9525845364390253, - "cryogonal": 2.147738669493729, - "accelgor": 3.542184373378989, - "stunfisk": 1.7281690291697098, - "stunfisk-galar": 3.053218995555146, - "mienshao": 3.605397767061228, - "druddigon": 1.9346217813465185, - "golurk": 2.554221785162236, - "bisharp": 2.554661062316727, - "bouffalant": 1.436299616105053, - "heatmor": 2.7508162186807747, - "durant": 2.7846069315811537, - "diggersby": 4.381692716931965, - "talonflame": 4.519246904129548, - "pangoro": 1.8267830746539762, - "doublade": 2.1045390106861728, - "malamar": 2.8796491296799696, - "heliolisk": 3.705804820038045, - "tyrantrum": 1.715851298594727, - "aurorus": 3.2969824719164493, - "hawlucha": 3.6860934247625954, - "dedenne": 3.213014061802282, - "klefki": 3.3180852643288214, - "trevenant": 2.3765486838634367, - "gourgeist-average": 5.767943123009143, - "charjabug": 3.88130486360166, - "vikavolt": 1.8812820161683717, - "ribombee": 5.305633585942484, - "lycanroc-midday": 4.797482256415118, - "lycanroc-midnight": 3.2615358494752495, - "mudsdale": 2.025120484936258, - "araquanid": 2.6445110836842405, - "lurantis": 2.2205764051696772, - "shiinotic": 7.025959882743027, - "salazzle": 4.863782716194178, - "bewear": 2.011655769943851, - "tsareena": 2.853735929603942, - "comfey": 4.211349199948128, - "oranguru": 3.050910132607987, - "passimian": 2.340766748275736, - "palossand": 2.5327518840531003, - "pyukumuku": 44.309557998552265, - "togedemaru": 2.3449756647968614, - "mimikyu-disguised": 4.808731711346553, - "greedent": 2.3651155578068535, - "orbeetle": 1.9666222782651626, - "thievul": 2.2286096167457394, - "eldegoss": 3.311241441396124, - "dubwool": 2.9018746394452783, - "drednaw": 1.3391394608669058, - "boltund": 4.787651155665656, - "carkol": 4.7765645341374405, - "coalossal": 3.7462296906552455, - "sandaconda": 3.7028563704649313, - "cramorant": 6.180634098335478, - "barraskewda": 4.720274436616426, - "toxtricity-amped": 2.9055889513193542, - "centiskorch": 3.2496852974546933, - "grapploct": 1.6809085222270803, - "polteageist": 2.666560638440229, - "hatterene": 2.877432903906094, - "grimmsnarl": 4.3099552059251, - "obstagoon": 2.665591098454475, - "perrserker": 3.13585664398557, - "alcremie": 1.6806630272072127, - "falinks": 3.0511410390251807, - "pincurchin": 2.940538200806242, - "frosmoth": 3.0824085483091634, - "indeedee-male": 3.8438146123082992, - "morpeko": 2.797276426124963, - "copperajah": 2.493378346371779, - "duraludon": 1.3554387442360711, - "drakloak": 4.556633106703201, - "barbaracle": 1.5888296991078876 + "ivysaur": 2.5344293307481833, + "charmeleon": 6.272288768720238, + "wartortle": 2.734154126907683, + "butterfree": 4.619193704111991, + "raichu": 5.140523144203664, + "raichu-alola": 3.8435607177751043, + "sandslash": 2.632644626311729, + "sandslash-alola": 2.0113952286702186, + "nidoqueen": 3.7795907170933845, + "nidoking": 2.603316096787413, + "clefairy": 9.584477674521056, + "clefable": 2.423309446697793, + "jigglypuff": 31.556819279378082, + "wigglytuff": 2.345238200063415, + "gloom": 6.06139609879196, + "vileplume": 2.37645384974155, + "dugtrio": 5.433119570224305, + "dugtrio-alola": 5.091349485653317, + "persian": 5.114158691460481, + "persian-alola": 4.75093381883031, + "golduck": 3.24889921041105, + "poliwrath": 1.9179139147694473, + "kadabra": 4.849202733664571, + "machoke": 4.051890788388299, + "tentacruel": 2.6916852587467996, + "slowbro": 1.7860140051104376, + "magneton": 2.9404681578896152, + "haunter": 4.206713778187136, + "kingler": 2.1634960415110323, + "exeggutor": 1.7595172638213343, + "marowak": 3.9575027961331237, + "marowak-alola": 3.0138518808016697, + "hitmonlee": 2.805369505615574, + "hitmonchan": 2.4803770437522186, + "lickitung": 2.1161703349222813, + "weezing": 1.7252054774331436, + "weezing-galar": 2.746372026804427, + "rhydon": 3.309948458923645, + "chansey": 36.94599311898116, + "tangela": 4.391510112528702, + "kangaskhan": 2.0664557903527734, + "seadra": 3.9021108474287667, + "seaking": 2.624372766794883, + "starmie": 1.5079887863210295, + "mr-mime": 8.412077961218776, + "mr-mime-galar": 4.350952942131828, + "scyther": 3.1075383486102512, + "jynx": 5.254232293522062, + "electabuzz": 2.5700101378999287, + "magmar": 2.993464040739646, + "tauros": 2.051938326056091, + "ditto": 1.9260451600651092, + "vaporeon": 3.57405286387916, + "jolteon": 2.2271430688278167, + "flareon": 4.486329798544256, + "porygon": 3.0762697282797844, + "dragonair": 1.9953891604033855, + "noctowl": 7.601572816899332, + "lanturn": 1.9290218771268957, + "togetic": 6.707370577942693, + "xatu": 4.283500455621669, + "bellossom": 2.1461808314390467, + "azumarill": 2.669755145658903, + "sudowoodo": 3.0386422107173146, + "politoed": 2.6389295629181566, + "quagsire": 4.55193634457586, + "slowking": 2.704597993600072, + "dunsparce": 3.6898459674010606, + "qwilfish": 3.4628685643082253, + "sneasel": 2.5895441507271597, + "piloswine": 2.1579841145313594, + "octillery": 2.4265445260687812, + "mantine": 2.8639634180080646, + "skarmory": 2.021582776135462, + "hitmontop": 2.8655448768376997, + "miltank": 3.9265487388982194, + "grovyle": 6.785598971682655, + "sceptile": 1.3129171126843335, + "combusken": 4.631001402933627, + "blaziken": 2.415177580265904, + "marshtomp": 2.721180815055866, + "swampert": 1.354042548613958, + "linoone": 5.985319532029369, + "linoone-galar": 5.070822175538254, + "pelipper": 6.452685441626201, + "ninjask": 8.225840294615663, + "exploud": 1.8801741754877765, + "lairon": 2.8026197553173393, + "manectric": 1.984505891033063, + "roselia": 3.4457899778011365, + "sharpedo": 5.282257776233642, + "wailmer": 6.89972330836254, + "torkoal": 2.674883336883928, + "flygon": 3.045821239445747, + "altaria": 2.1144976457018374, + "whiscash": 2.2866933753197083, + "crawdaunt": 1.9771246405965897, + "claydol": 4.877310393751017, + "cradily": 2.0358361348552374, + "armaldo": 2.4901462343689227, + "dusclops": 3.668070817934262, + "absol": 2.3082219100843595, + "glalie": 4.734876874349035, + "sealeo": 3.355854234445081, + "relicanth": 1.8759466405257064, + "metang": 2.9799978404449496, + "luxray": 3.920562909215419, + "vespiquen": 3.0042438316513644, + "cherrim": 4.946553159225015, + "gastrodon": 2.5342830038938944, + "drifblim": 4.32052837827618, + "lopunny": 4.234926058701775, + "skuntank": 1.6907495141736177, + "bronzong": 3.484545942931504, + "munchlax": 2.9231309493457647, + "drapion": 2.5561837113582064, + "abomasnow": 3.1968976227178003, + "froslass": 3.259831102529487, + "rotom": 3.6927056328240146, + "stoutland": 2.909001664506287, + "liepard": 7.8688585078499464, + "musharna": 1.4950302778056122, + "unfezant": 7.224708429998332, + "boldore": 3.6054782886140497, + "swoobat": 6.1308615107271764, + "audino": 2.71740335245103, + "gurdurr": 2.036305359649051, + "palpitoad": 3.9935488491294873, + "seismitoad": 7.568839108145048, + "scolipede": 3.412192612647652, + "whimsicott": 3.922668955229453, + "lilligant": 2.5274105684627672, + "basculin-red-striped": 2.9294291376013777, + "basculin-blue-striped": 3.6875746711200423, + "krookodile": 3.70709511434764, + "maractus": 1.7498316346218572, + "crustle": 2.5842498855812144, + "sigilyph": 2.5735102941707293, + "cofagrigus": 2.608601933866243, + "garbodor": 2.075290354459222, + "cinccino": 5.501924747996275, + "vanillish": 2.617738967949306, + "emolga": 2.959476445718426, + "escavalier": 1.9217988258263923, + "amoonguss": 2.2355338217510035, + "jellicent": 1.2750381620651874, + "galvantula": 1.5218159935716948, + "klang": 2.713052771380602, + "klinklang": 3.598988941707953, + "beheeyem": 2.0485825972154377, + "lampent": 4.437167543761921, + "fraxure": 1.7042995281605688, + "beartic": 1.9556680964537074, + "cryogonal": 2.150679669345111, + "accelgor": 3.549869839176428, + "stunfisk": 1.7284508535895864, + "stunfisk-galar": 3.0544373993357397, + "mienshao": 3.6112217467689067, + "druddigon": 1.9394654696949276, + "golurk": 2.5554038284220644, + "bisharp": 2.556550707701514, + "bouffalant": 1.4400013925676738, + "heatmor": 2.7583103838987455, + "durant": 2.782844174697753, + "diggersby": 4.3898455962928695, + "talonflame": 4.539262713053278, + "pangoro": 1.8292617834097562, + "doublade": 2.103078557401573, + "malamar": 2.8815620777439297, + "barbaracle": 1.5888296991078876, + "heliolisk": 3.6989873219810647, + "tyrantrum": 1.717478194949316, + "aurorus": 3.2985899286457774, + "hawlucha": 3.694329883840723, + "dedenne": 3.2188008491199, + "klefki": 3.3210522447629685, + "trevenant": 2.3687352617520117, + "gourgeist-average": 5.777552543157908, + "charjabug": 3.881137974305207, + "vikavolt": 1.8837544619224893, + "ribombee": 5.320067690619442, + "lycanroc-midday": 4.808522015360426, + "lycanroc-midnight": 3.266480046000443, + "mudsdale": 2.02789533303268, + "araquanid": 2.64762043876818, + "lurantis": 2.218615112460106, + "shiinotic": 7.050684344200182, + "salazzle": 4.885274326279745, + "bewear": 2.017591666876764, + "tsareena": 2.8516811535717848, + "comfey": 4.209076389427309, + "oranguru": 3.0567110306570995, + "passimian": 2.3442879958787515, + "palossand": 2.5334297603931795, + "pyukumuku": 44.32466103324421, + "togedemaru": 2.3451910947491412, + "mimikyu-disguised": 4.819475860291951, + "greedent": 2.3712844555485693, + "orbeetle": 1.969081950262669, + "thievul": 2.2349207899686894, + "eldegoss": 3.3022018039360543, + "dubwool": 2.9017155433101705, + "drednaw": 1.3397017152059352, + "boltund": 4.791080978761803, + "carkol": 4.794984856249822, + "coalossal": 3.7569085363445867, + "sandaconda": 3.7073575698350227, + "cramorant": 6.196216886989193, + "barraskewda": 4.727116667162287, + "toxtricity-amped": 2.9049243732893513, + "centiskorch": 3.261102908369525, + "grapploct": 1.681082534290028, + "polteageist": 2.659932497386208, + "hatterene": 2.8863207921626404, + "grimmsnarl": 4.321427484796079, + "obstagoon": 2.6688020486995434, + "perrserker": 3.134832686323551, + "alcremie": 1.6843638471949132, + "falinks": 3.0538550701800693, + "pincurchin": 2.9404005676634632, + "frosmoth": 3.088721203882602, + "indeedee-male": 3.854403743423938, + "morpeko": 2.7990945523583246, + "copperajah": 2.4931207139355953, + "duraludon": 1.353896715352643, + "drakloak": 4.558864073799685 }, "heliolisk": { - "ivysaur": 3.1067691228051952, - "charmeleon": 3.60676330325745, - "wartortle": 4.579165863713379, - "butterfree": 5.60926654570121, - "raichu": 4.969609894705487, - "raichu-alola": 3.462634000126096, - "sandslash": 2.008154908255608, - "sandslash-alola": 1.9596125690861181, - "nidoqueen": 2.8125778321581225, - "nidoking": 1.5726805973256686, - "clefairy": 8.59556288631622, - "clefable": 2.0892025056064263, - "jigglypuff": 27.149724876803077, - "wigglytuff": 2.061815608776282, - "gloom": 5.648580104420345, - "vileplume": 2.961564063881263, - "dugtrio": 2.970275318961817, - "dugtrio-alola": 2.8631086454286017, - "persian": 4.0268891504034405, - "persian-alola": 4.1817839092303055, - "golduck": 5.48960949060884, - "poliwrath": 2.748729717880299, - "kadabra": 3.5902672135407596, - "machoke": 3.469679913668209, - "tentacruel": 3.626742479774481, - "slowbro": 2.435526037401893, - "magneton": 4.664188664600378, - "haunter": 4.968045796338153, - "kingler": 4.049387003025585, - "exeggutor": 1.790811018491679, - "marowak": 2.7629188879381106, - "marowak-alola": 2.0550202058796705, - "hitmonlee": 1.6836887509426046, - "hitmonchan": 1.7952869681360304, - "lickitung": 2.321011760660627, - "weezing": 1.6350660352678887, - "weezing-galar": 2.8108809858524815, - "rhydon": 2.1083542148360612, - "chansey": 19.48056994429978, - "tangela": 5.09821082866198, - "kangaskhan": 1.6540278200992304, - "seadra": 7.974182515521026, - "seaking": 3.44309949078398, - "starmie": 1.9476019469877253, - "mr-mime": 6.442911236739674, - "mr-mime-galar": 3.618261030429598, - "scyther": 3.461118529395021, - "jynx": 4.005900898609843, - "electabuzz": 2.729662077041614, - "magmar": 1.4530223483869462, - "tauros": 1.7682549166421937, - "ditto": 3.9074345474977252, - "vaporeon": 5.158532013259082, - "jolteon": 1.997023006139147, - "flareon": 2.016594242558461, - "porygon": 2.88609418795152, - "dragonair": 1.7628519853568978, - "noctowl": 7.059268620580207, - "lanturn": 2.5498761021711207, - "togetic": 6.375319749120276, - "xatu": 5.457980390133329, - "bellossom": 2.341070015127414, - "azumarill": 4.194293687171372, - "sudowoodo": 2.3245012594281356, - "politoed": 3.819376967766127, - "quagsire": 5.615577417021553, - "slowking": 3.642792632795302, - "dunsparce": 3.5078218275221476, - "qwilfish": 6.303987963880978, - "sneasel": 2.1056666585195885, - "piloswine": 1.4941568128005882, - "octillery": 3.7584768063992637, - "mantine": 5.535211326969883, - "skarmory": 3.3783020809048097, - "hitmontop": 2.1549814701419514, - "miltank": 3.5439170402312308, - "grovyle": 6.9120565936928875, - "sceptile": 1.3317888564498799, - "combusken": 2.902510916369292, - "blaziken": 1.3235750419958747, - "marshtomp": 2.8240407806748653, - "swampert": 1.3219606558708388, - "linoone": 5.2112215556341965, - "linoone-galar": 4.596197698804185, - "pelipper": 13.778688514197059, - "ninjask": 8.979639650632333, - "exploud": 1.6024740265842918, - "lairon": 3.3615986784962395, - "manectric": 1.782128632169096, - "roselia": 3.7393927083476255, - "sharpedo": 7.375799240726499, - "wailmer": 11.223773953394854, - "torkoal": 1.8045151423886119, - "flygon": 2.2634372683127655, - "altaria": 1.5043910376678664, - "whiscash": 2.888162818325145, - "crawdaunt": 3.65021157491876, - "claydol": 3.286032557840521, - "cradily": 1.9608766446274677, - "armaldo": 1.7016360097223413, - "dusclops": 3.8561915281296506, - "absol": 1.9152360529336672, - "glalie": 3.969625040582827, - "sealeo": 5.463585242408428, - "relicanth": 3.131425264983692, - "metang": 3.079782780033169, - "luxray": 3.9213679348458577, - "vespiquen": 3.328549533783823, - "cherrim": 5.739327957277126, - "gastrodon": 2.338689078888505, - "drifblim": 6.023495208604755, - "lopunny": 3.2337557352744275, - "skuntank": 1.393420019632527, - "bronzong": 3.1118165160206717, - "munchlax": 1.8582506860018388, - "drapion": 2.512094689143203, - "abomasnow": 2.9121965005368136, - "froslass": 3.0851803936753717, - "rotom": 3.5382927387508447, - "stoutland": 2.2604539979402043, - "liepard": 6.6328579922836886, - "musharna": 1.530478107788924, - "unfezant": 9.694672015005137, - "boldore": 3.1217218199571515, - "swoobat": 7.800803609240582, - "audino": 2.2482844921174743, - "gurdurr": 1.8566962942878096, - "palpitoad": 4.076929577572647, - "seismitoad": 6.405050809844566, - "scolipede": 3.1380461495590044, - "whimsicott": 3.1712303611057164, - "lilligant": 3.0655275146630467, - "basculin-red-striped": 5.148319964263276, - "basculin-blue-striped": 6.843094604434475, - "krookodile": 2.602105971791125, - "maractus": 2.1905963529013297, - "crustle": 1.959305978294271, - "sigilyph": 3.3605890051162994, - "cofagrigus": 3.1555056997703343, - "garbodor": 1.7448082003004513, - "cinccino": 4.366937591231614, - "vanillish": 2.1843860422411634, - "emolga": 3.4399782014933624, - "escavalier": 1.869870982984038, - "amoonguss": 2.5039371356493483, - "jellicent": 2.2364447360197315, - "galvantula": 1.7176398608247245, - "klang": 3.1333668789332654, - "klinklang": 3.5622507842738127, - "beheeyem": 1.8112836579195974, - "lampent": 2.2372813162745033, - "fraxure": 1.471440420871727, - "beartic": 1.7541358193645649, - "cryogonal": 1.5964872136790014, - "accelgor": 3.018208001563398, - "stunfisk": 1.4880617913919445, - "stunfisk-galar": 2.1152749869123215, - "mienshao": 3.1267609928068545, - "druddigon": 1.701791439798641, - "golurk": 1.3833417694691474, - "bisharp": 2.3982843809256833, - "bouffalant": 1.1695808250203528, - "heatmor": 1.6871862862591889, - "durant": 3.4060125173687754, - "diggersby": 2.6294540086094864, - "talonflame": 4.005190438723849, - "pangoro": 1.5510076834369277, - "doublade": 2.719137001405314, - "malamar": 2.9183681118654663, - "barbaracle": 2.213754191027893, - "tyrantrum": 1.4420962607702326, - "aurorus": 2.391707505443466, - "hawlucha": 4.209446189526307, - "dedenne": 3.0353716453219484, - "klefki": 3.220887977504778, - "trevenant": 2.143157643252934, - "gourgeist-average": 4.706373090007148, - "charjabug": 3.8542045549739896, - "vikavolt": 1.8505725750527766, - "ribombee": 4.727392387891523, - "lycanroc-midday": 3.20144185380686, - "lycanroc-midnight": 2.108328070384167, - "mudsdale": 1.2690940253955985, - "araquanid": 3.431245230332177, - "lurantis": 2.342041697044795, - "shiinotic": 4.332253686650891, - "salazzle": 3.684453476615473, - "bewear": 1.7000556234939823, - "tsareena": 2.9556383498161045, - "comfey": 4.501482642742722, - "oranguru": 2.572728656895896, - "passimian": 2.1766289620894557, - "palossand": 1.714068449958742, - "pyukumuku": 55.688786557209944, - "togedemaru": 2.8310270046416264, - "mimikyu-disguised": 4.279483443601432, - "greedent": 2.1115432031732473, - "orbeetle": 1.850451979525353, - "thievul": 1.6536337660778795, - "eldegoss": 3.7757092455283896, - "dubwool": 2.608230235893925, - "drednaw": 1.8373902838182206, - "boltund": 4.808861427515991, - "carkol": 2.7216992244812364, - "coalossal": 2.5671214029528464, - "sandaconda": 3.0065769923856, - "cramorant": 11.734472621236502, - "barraskewda": 7.294956919871659, - "toxtricity-amped": 3.4645065183862656, - "centiskorch": 1.817962839592896, - "grapploct": 1.7714921995502098, - "polteageist": 2.4581923984304925, - "hatterene": 2.4725918757516645, - "grimmsnarl": 3.5502184670995445, - "obstagoon": 2.517315202325369, - "perrserker": 3.605814332358168, - "alcremie": 1.365597842121976, - "falinks": 2.964778781508917, - "pincurchin": 3.578025531762073, - "frosmoth": 2.6532506200467125, - "indeedee-male": 3.078820284906606, - "morpeko": 2.861490672104201, - "copperajah": 2.35332821607239, - "duraludon": 1.6760509917933062, - "drakloak": 3.7638945249669833, - "heliolisk": 3.4606344752111156 + "ivysaur": 3.104593798267505, + "charmeleon": 3.6011506509030404, + "wartortle": 4.6039516015514765, + "butterfree": 5.609409627387268, + "raichu": 4.960891077484575, + "raichu-alola": 3.4611144571898156, + "sandslash": 2.0007131480665237, + "sandslash-alola": 1.9546886749707841, + "nidoqueen": 2.809672068493119, + "nidoking": 1.5662603274141946, + "clefairy": 8.586075971934447, + "clefable": 2.08972203112328, + "jigglypuff": 27.148806582930874, + "wigglytuff": 2.0617815826279005, + "gloom": 5.644663564726578, + "vileplume": 2.9601433200820333, + "dugtrio": 2.9552905530341724, + "dugtrio-alola": 2.851535725829941, + "persian": 4.019054418567721, + "persian-alola": 4.176906591667537, + "golduck": 5.526946453023626, + "poliwrath": 2.7535618768914634, + "kadabra": 3.583419087069115, + "machoke": 3.4602711971708335, + "tentacruel": 3.6479322464648174, + "slowbro": 2.435611715844721, + "magneton": 4.673829913578301, + "haunter": 4.971649376229138, + "kingler": 4.057327911796942, + "exeggutor": 1.7858186777831646, + "marowak": 2.7526956641561826, + "marowak-alola": 2.0515700795438714, + "hitmonlee": 1.674188587118181, + "hitmonchan": 1.789589941774059, + "lickitung": 2.325936809815687, + "weezing": 1.6357969491297095, + "weezing-galar": 2.8121748180059645, + "rhydon": 2.099731000688289, + "chansey": 19.41277756070741, + "tangela": 5.088837994840726, + "kangaskhan": 1.6494687584602894, + "seadra": 8.015967173833731, + "seaking": 3.450579589324403, + "starmie": 1.9486462123937267, + "mr-mime": 6.438101856809629, + "mr-mime-galar": 3.6152697491263712, + "scyther": 3.4597881597676414, + "jynx": 4.000112096223558, + "electabuzz": 2.7311526237114627, + "magmar": 1.4503019043102614, + "tauros": 1.7622435752451442, + "ditto": 3.881717396768697, + "vaporeon": 5.189511471709654, + "jolteon": 1.9973420349926196, + "flareon": 2.0150446766734387, + "porygon": 2.8861439153608384, + "dragonair": 1.760233795090091, + "noctowl": 7.0614590877033185, + "lanturn": 2.5611196912583436, + "togetic": 6.3684364983162896, + "xatu": 5.466712100513103, + "bellossom": 2.3393490905116137, + "azumarill": 4.223922702266444, + "sudowoodo": 2.316777359856826, + "politoed": 3.833555452259601, + "quagsire": 5.62861440027857, + "slowking": 3.6562832923516497, + "dunsparce": 3.510565289589601, + "qwilfish": 6.341164641863643, + "sneasel": 2.1003835334153953, + "piloswine": 1.4887910622770728, + "octillery": 3.7736800834054915, + "mantine": 5.578138384457532, + "skarmory": 3.3821469287311343, + "hitmontop": 2.1462633539095113, + "miltank": 3.538142034764742, + "grovyle": 6.8919765288495904, + "sceptile": 1.3297542126859416, + "combusken": 2.894729835371572, + "blaziken": 1.318635041619736, + "marshtomp": 2.828241964568673, + "swampert": 1.322298150892304, + "linoone": 5.207507889011053, + "linoone-galar": 4.589490674009849, + "pelipper": 13.804236614118555, + "ninjask": 8.966615942385031, + "exploud": 1.600804567274922, + "lairon": 3.3634758966865363, + "manectric": 1.7783764269566342, + "roselia": 3.7354940208498153, + "sharpedo": 7.392261484983884, + "wailmer": 11.288394958915665, + "torkoal": 1.8030122531745056, + "flygon": 2.2575103643450447, + "altaria": 1.5026617563349216, + "whiscash": 2.893714818288755, + "crawdaunt": 3.6578152359389637, + "claydol": 3.280189314081397, + "cradily": 1.9579492190112366, + "armaldo": 1.69659451619272, + "dusclops": 3.860798370388925, + "absol": 1.91187391553257, + "glalie": 3.963432162528078, + "sealeo": 5.4977389079302394, + "relicanth": 3.1410363347829984, + "metang": 3.079515028448628, + "luxray": 3.9198060855932826, + "vespiquen": 3.3246898748647884, + "cherrim": 5.733266327862712, + "gastrodon": 2.3403877041658845, + "drifblim": 6.028335045940315, + "lopunny": 3.2247358548190954, + "skuntank": 1.3924319248207753, + "bronzong": 3.10729855387142, + "munchlax": 1.852121611601937, + "drapion": 2.5123274676603846, + "abomasnow": 2.9041715439601616, + "froslass": 3.0842083343774336, + "rotom": 3.5411755065222237, + "stoutland": 2.2553902456438824, + "liepard": 6.621872512264151, + "musharna": 1.529475258709096, + "unfezant": 9.715373312227609, + "boldore": 3.112412150410562, + "swoobat": 7.812944187528576, + "audino": 2.2461574414303405, + "gurdurr": 1.8486796829924819, + "palpitoad": 4.077937609457818, + "seismitoad": 6.394650373401628, + "scolipede": 3.1345145823939413, + "whimsicott": 3.1690414831180362, + "lilligant": 3.063303049969392, + "basculin-red-striped": 5.182803173875243, + "basculin-blue-striped": 6.893927217668596, + "krookodile": 2.5941006246287834, + "maractus": 2.1888637151492905, + "crustle": 1.9540322227931464, + "sigilyph": 3.3668683143572675, + "cofagrigus": 3.160773335920461, + "garbodor": 1.7408747990634672, + "cinccino": 4.359368160930214, + "vanillish": 2.183451505214628, + "emolga": 3.4454543773173487, + "escavalier": 1.869206217073729, + "amoonguss": 2.5020783295228686, + "jellicent": 2.2436688587662363, + "galvantula": 1.7189776586330532, + "klang": 3.1386037402234717, + "klinklang": 3.56165393227138, + "beheeyem": 1.8106395984716646, + "lampent": 2.2322512650455346, + "fraxure": 1.467961484877434, + "beartic": 1.7529467393493539, + "cryogonal": 1.594280271123302, + "accelgor": 3.0163323579501333, + "stunfisk": 1.488050473515214, + "stunfisk-galar": 2.109584274976044, + "mienshao": 3.1206896411311793, + "druddigon": 1.6987493500970525, + "golurk": 1.3770479330602328, + "bisharp": 2.3943438722291797, + "bouffalant": 1.166945848857328, + "heatmor": 1.683582435178776, + "durant": 3.405681841195466, + "diggersby": 2.616440320946853, + "talonflame": 4.008008592558767, + "pangoro": 1.546504089512257, + "doublade": 2.7172887596106126, + "malamar": 2.9171202996568804, + "barbaracle": 2.2192069037304467, + "heliolisk": 3.4606344752111156, + "tyrantrum": 1.4374062059753503, + "aurorus": 2.388551087840243, + "hawlucha": 4.200195260704463, + "dedenne": 3.037441236959688, + "klefki": 3.2222684853600208, + "trevenant": 2.1322233707166394, + "gourgeist-average": 4.700821103590364, + "charjabug": 3.8467759010394458, + "vikavolt": 1.8487096665280482, + "ribombee": 4.726569411294994, + "lycanroc-midday": 3.19621424461313, + "lycanroc-midnight": 2.102186790634893, + "mudsdale": 1.2624424701701604, + "araquanid": 3.4425369662344396, + "lurantis": 2.3385999196714318, + "shiinotic": 4.328248458724254, + "salazzle": 3.6784673678314883, + "bewear": 1.696429185485255, + "tsareena": 2.9508292416364554, + "comfey": 4.5025618484435865, + "oranguru": 2.5697422091571314, + "passimian": 2.172084669987857, + "palossand": 1.7098922747290435, + "pyukumuku": 55.65309110345516, + "togedemaru": 2.8306748408498246, + "mimikyu-disguised": 4.280741665176816, + "greedent": 2.108754730990587, + "orbeetle": 1.8493962502677026, + "thievul": 1.6512159595391473, + "eldegoss": 3.7715466120751877, + "dubwool": 2.599965050239406, + "drednaw": 1.8423605565122825, + "boltund": 4.807546457549206, + "carkol": 2.717058787413237, + "coalossal": 2.569194126017021, + "sandaconda": 2.997866783791723, + "cramorant": 11.799633197330392, + "barraskewda": 7.317961926966128, + "toxtricity-amped": 3.4681508036745265, + "centiskorch": 1.8136256039365686, + "grapploct": 1.7671381766326906, + "polteageist": 2.4533880859754023, + "hatterene": 2.4709670716979204, + "grimmsnarl": 3.5442590118527413, + "obstagoon": 2.513747120286962, + "perrserker": 3.60772390944466, + "alcremie": 1.3643547302880878, + "falinks": 2.9583035515728024, + "pincurchin": 3.593986584185127, + "frosmoth": 2.6518065587017405, + "indeedee-male": 3.0768495150543993, + "morpeko": 2.8616029837859545, + "copperajah": 2.351230640157313, + "duraludon": 1.6771547056353246, + "drakloak": 3.7559741376305693 }, "tyrantrum": { - "ivysaur": 3.3071735867385463, - "charmeleon": 5.477308407784567, - "wartortle": 2.5203462606335334, - "butterfree": 9.699098406527959, - "raichu": 5.2990052588645495, - "raichu-alola": 3.8685157813390365, - "sandslash": 2.070737354182291, - "sandslash-alola": 3.090615911610238, - "nidoqueen": 2.574901256130709, - "nidoking": 1.8948080038469364, - "clefairy": 10.259922040202566, - "clefable": 1.6620417766927287, - "jigglypuff": 23.999100486590876, - "wigglytuff": 1.7403586938479565, - "gloom": 5.312230722530718, - "vileplume": 2.904403304560202, - "dugtrio": 3.92383044835191, - "dugtrio-alola": 4.373121141374968, - "persian": 5.838941867835173, - "persian-alola": 5.556448467759041, - "golduck": 3.269849159286077, - "poliwrath": 1.993600692416151, - "kadabra": 3.831813210870966, - "machoke": 3.948482680044288, - "tentacruel": 2.6302152164121244, - "slowbro": 1.754170157806943, - "magneton": 3.401589948576738, - "haunter": 4.576216754936128, - "kingler": 2.243799502070618, - "exeggutor": 1.9177807146936976, - "marowak": 2.9282184569521084, - "marowak-alola": 2.8124123538996355, - "hitmonlee": 2.7079096397207714, - "hitmonchan": 2.3972891891497055, - "lickitung": 2.259645097784842, - "weezing": 1.6013628749735875, - "weezing-galar": 2.318829144577575, - "rhydon": 2.2957669937128586, - "chansey": 45.146705975070034, - "tangela": 4.701637363526112, - "kangaskhan": 2.3575825718852395, - "seadra": 3.56548841646008, - "seaking": 2.7206102576507654, - "starmie": 1.2431275661193797, - "mr-mime": 7.2385699449873435, - "mr-mime-galar": 4.154921442039188, - "scyther": 5.663248311118071, - "jynx": 5.725249081208614, - "electabuzz": 3.041570368443796, - "magmar": 2.7811897051389294, - "tauros": 2.4118499466645886, - "ditto": 2.4298631114243494, - "vaporeon": 3.5118424363668987, - "jolteon": 2.2416304131257063, - "flareon": 4.1246549009390225, - "porygon": 3.477382867479243, - "dragonair": 2.28637343869464, - "noctowl": 9.689123176899031, - "lanturn": 2.085662915928145, - "togetic": 7.791547246227115, - "xatu": 5.138765637455192, - "bellossom": 1.9914345075494584, - "azumarill": 2.3538553195390817, - "sudowoodo": 2.8074884027384, - "politoed": 2.6242351070643837, - "quagsire": 4.146017303776073, - "slowking": 2.5753483878917875, - "dunsparce": 3.8833424118929907, - "qwilfish": 3.4600964317671625, - "sneasel": 4.212300477920915, - "piloswine": 1.651487627875502, - "octillery": 2.2788564738867514, - "mantine": 3.972514817989918, - "skarmory": 1.9315847952348353, - "hitmontop": 2.6590038324151086, - "miltank": 4.353717746926412, - "grovyle": 8.177394615656716, - "sceptile": 1.4663818230726577, - "combusken": 3.2687170339374956, - "blaziken": 1.7630754124316537, - "marshtomp": 2.5131057983820497, - "swampert": 1.0917567334872498, - "linoone": 7.168077613437052, - "linoone-galar": 8.497415432876759, - "pelipper": 8.320979495434576, - "ninjask": 15.05883563883664, - "exploud": 1.8589931907981458, - "lairon": 3.325758324747549, - "manectric": 1.97827643860234, - "roselia": 4.245571385609905, - "sharpedo": 6.448108703062882, - "wailmer": 6.759548037291495, - "torkoal": 2.5267599463170076, - "flygon": 2.9403786089553936, - "altaria": 1.9904460262915467, - "whiscash": 2.1077611702990664, - "crawdaunt": 2.3976936463014207, - "claydol": 3.3752583003136127, - "cradily": 2.8108369718551014, - "armaldo": 2.406257011486903, - "dusclops": 3.4944422726804083, - "absol": 2.466778593368979, - "glalie": 5.40762889926139, - "sealeo": 3.884934604414804, - "relicanth": 2.1158376258505793, - "metang": 2.7944190833851117, - "luxray": 4.311833763577195, - "vespiquen": 5.487800240387543, - "cherrim": 6.02204070652502, - "gastrodon": 2.446616443911692, - "drifblim": 6.2024560411675305, - "lopunny": 5.08715597828064, - "skuntank": 1.610080031173885, - "bronzong": 3.091298468456576, - "munchlax": 3.8606558641221063, - "drapion": 2.394759863986075, - "abomasnow": 4.268644463964949, - "froslass": 3.574430421515503, - "rotom": 3.8592560958337643, - "stoutland": 3.4758575088572456, - "liepard": 8.841267787645368, - "musharna": 1.5462592119636192, - "unfezant": 8.732998376946092, - "boldore": 3.368618901224327, - "swoobat": 7.361341309087926, - "audino": 3.0358297762408255, - "gurdurr": 2.0065281197646403, - "palpitoad": 3.647555777028945, - "seismitoad": 7.045758709693283, - "scolipede": 4.191160640937303, - "whimsicott": 3.061342096362762, - "lilligant": 2.996916101862137, - "basculin-red-striped": 2.9226856271470005, - "basculin-blue-striped": 3.727031620129779, - "krookodile": 3.2395812631750935, - "maractus": 2.2164396739495036, - "crustle": 2.5071904456606706, - "sigilyph": 2.926870444864991, - "cofagrigus": 2.4041101712765114, - "garbodor": 1.9569996448092004, - "cinccino": 5.999397579246139, - "vanillish": 2.530120751050156, - "emolga": 4.574195285127878, - "escavalier": 1.9090937591831016, - "amoonguss": 2.664360122317553, - "jellicent": 1.3488545652066262, - "galvantula": 2.255068624185822, - "klang": 3.222212003472959, - "klinklang": 4.033446503906314, - "beheeyem": 1.8476811934845743, - "lampent": 4.1398575155016255, - "fraxure": 1.917146133857595, - "beartic": 1.906872359784796, - "cryogonal": 2.226975000236238, - "accelgor": 4.303461578249558, - "stunfisk": 1.2728890675769788, - "stunfisk-galar": 2.598345320951169, - "mienshao": 3.3688521952377375, - "druddigon": 2.5013751934898405, - "golurk": 1.799903101729894, - "bisharp": 4.492070002538474, - "bouffalant": 1.6859788008904757, - "heatmor": 2.8396689804442885, - "durant": 2.802905943956877, - "diggersby": 3.9864340872648256, - "talonflame": 6.189142882347918, - "pangoro": 2.1259291360231147, - "doublade": 1.7115095306253343, - "malamar": 2.899502846962176, - "barbaracle": 1.7137966191439482, - "heliolisk": 5.22377347220547, - "aurorus": 4.09990713334802, - "hawlucha": 3.548266429717162, - "dedenne": 2.4885144247584146, - "klefki": 2.5576195193512796, - "trevenant": 3.1259552049977337, - "gourgeist-average": 5.290021050591331, - "charjabug": 5.336617107463475, - "vikavolt": 2.385577711482438, - "ribombee": 5.807062098696457, - "lycanroc-midday": 4.390383025135838, - "lycanroc-midnight": 2.9721877263963647, - "mudsdale": 1.5312926399601259, - "araquanid": 3.7445397186632716, - "lurantis": 2.4950358120557676, - "shiinotic": 3.980831101703643, - "salazzle": 4.623929137001545, - "bewear": 2.3881353878859004, - "tsareena": 3.4070225569668064, - "comfey": 4.127808239277928, - "oranguru": 2.8317206662943084, - "passimian": 2.290749333468929, - "palossand": 1.7561553811746564, - "pyukumuku": 45.907673603180676, - "togedemaru": 3.131252329841487, - "mimikyu-disguised": 4.663425443457527, - "greedent": 2.6895115524849307, - "orbeetle": 2.330611942488143, - "thievul": 2.6864423544238365, - "eldegoss": 4.093008517959479, - "dubwool": 3.7709327619542834, - "drednaw": 1.577771852625994, - "boltund": 5.145328392880504, - "carkol": 3.2602292554165944, - "coalossal": 2.484259109563564, - "sandaconda": 2.69520578905888, - "cramorant": 8.713197761823233, - "barraskewda": 4.6973675894573095, - "toxtricity-amped": 2.9530984401477003, - "centiskorch": 4.548813878735109, - "grapploct": 1.5701016737713935, - "polteageist": 2.982908419778112, - "hatterene": 2.4528544132910874, - "grimmsnarl": 3.8904306888897513, - "obstagoon": 4.687718194843144, - "perrserker": 3.762568436574391, - "alcremie": 1.3184454124325562, - "falinks": 2.9024699045518165, - "pincurchin": 3.05025411568838, - "frosmoth": 5.355066136186718, - "indeedee-male": 3.5354559325930643, - "morpeko": 3.5982229456626693, - "copperajah": 2.6729482675661775, - "duraludon": 1.6667592721187805, - "drakloak": 6.146343728368286, - "tyrantrum": 1.857766849496259 + "ivysaur": 3.315678831819878, + "charmeleon": 5.500408568895956, + "wartortle": 2.523399764216447, + "butterfree": 9.728800592159882, + "raichu": 5.315834773592559, + "raichu-alola": 3.8806341225301093, + "sandslash": 2.0739501782350667, + "sandslash-alola": 3.09748503551194, + "nidoqueen": 2.5747542916685315, + "nidoking": 1.8988201807317089, + "clefairy": 10.287186211571285, + "clefable": 1.6608803387691977, + "jigglypuff": 23.974037065211895, + "wigglytuff": 1.7410912388777247, + "gloom": 5.315575017037295, + "vileplume": 2.9091629549474396, + "dugtrio": 3.932546982284812, + "dugtrio-alola": 4.381329127442092, + "persian": 5.865640747083638, + "persian-alola": 5.579208114412177, + "golduck": 3.281937859324718, + "poliwrath": 1.9995200443146337, + "kadabra": 3.840524051906211, + "machoke": 3.9580604643572133, + "tentacruel": 2.6399019419431546, + "slowbro": 1.7574098999588965, + "magneton": 3.401844777039594, + "haunter": 4.578694844736746, + "kingler": 2.246709614141581, + "exeggutor": 1.9202117876156464, + "marowak": 2.931646213057469, + "marowak-alola": 2.8207430895148464, + "hitmonlee": 2.7176148966296267, + "hitmonchan": 2.406337142056998, + "lickitung": 2.2662981087401017, + "weezing": 1.6053323798160422, + "weezing-galar": 2.3163758360310345, + "rhydon": 2.295569375402465, + "chansey": 45.43075676004315, + "tangela": 4.7109466410872916, + "kangaskhan": 2.367071552606271, + "seadra": 3.5647375421587917, + "seaking": 2.733178521374244, + "starmie": 1.2437839486591609, + "mr-mime": 7.240922709037484, + "mr-mime-galar": 4.160413197161516, + "scyther": 5.690947339232848, + "jynx": 5.732028230591249, + "electabuzz": 3.057200780336615, + "magmar": 2.7989077667159794, + "tauros": 2.4203636939977122, + "ditto": 2.420646901690561, + "vaporeon": 3.5263739482303134, + "jolteon": 2.2525333164949664, + "flareon": 4.148111812283272, + "porygon": 3.489108812371879, + "dragonair": 2.2917337203015546, + "noctowl": 9.749269071351723, + "lanturn": 2.094942950910129, + "togetic": 7.812800370229151, + "xatu": 5.1522334712552915, + "bellossom": 1.9935631539204755, + "azumarill": 2.360324404614685, + "sudowoodo": 2.813167082840474, + "politoed": 2.6317112074097953, + "quagsire": 4.146081369444943, + "slowking": 2.581306220742781, + "dunsparce": 3.8948862669817137, + "qwilfish": 3.4702552095108214, + "sneasel": 4.232565933506733, + "piloswine": 1.654414933075258, + "octillery": 2.283227836506722, + "mantine": 3.991332053159197, + "skarmory": 1.9356970621888232, + "hitmontop": 2.6635186384039553, + "miltank": 4.370195925664445, + "grovyle": 8.199487017510345, + "sceptile": 1.4703834975426244, + "combusken": 3.2764537991107217, + "blaziken": 1.770967575589088, + "marshtomp": 2.5184316607077997, + "swampert": 1.0916591386270669, + "linoone": 7.203805746741513, + "linoone-galar": 8.533908149503354, + "pelipper": 8.355771857124672, + "ninjask": 15.112281885993188, + "exploud": 1.8633512381238868, + "lairon": 3.3301216053247615, + "manectric": 1.9887966359905591, + "roselia": 4.257038333117326, + "sharpedo": 6.474673146962624, + "wailmer": 6.781530860554568, + "torkoal": 2.539372157806614, + "flygon": 2.944125951369678, + "altaria": 1.9937361855803104, + "whiscash": 2.113632357610738, + "crawdaunt": 2.4060695909972667, + "claydol": 3.3788302698244466, + "cradily": 2.8191392345363226, + "armaldo": 2.4139751533162555, + "dusclops": 3.4980343384518635, + "absol": 2.4771930394506803, + "glalie": 5.427811415156544, + "sealeo": 3.8944950033417145, + "relicanth": 2.12053328520658, + "metang": 2.7984992699025577, + "luxray": 4.33299283498072, + "vespiquen": 5.510874862752543, + "cherrim": 6.03875326820456, + "gastrodon": 2.456643093434945, + "drifblim": 6.215450594203771, + "lopunny": 5.112387749569826, + "skuntank": 1.6183488982809715, + "bronzong": 3.097442876610818, + "munchlax": 3.8886203160711807, + "drapion": 2.403005519862184, + "abomasnow": 4.285428006073788, + "froslass": 3.573735209965575, + "rotom": 3.864944997920036, + "stoutland": 3.4948365009430016, + "liepard": 8.876026288518318, + "musharna": 1.5490006099787805, + "unfezant": 8.780872588748789, + "boldore": 3.373212525970862, + "swoobat": 7.380764608756001, + "audino": 3.047275865292892, + "gurdurr": 2.007515452827201, + "palpitoad": 3.6517302433077017, + "seismitoad": 7.06932008918104, + "scolipede": 4.203723934290301, + "whimsicott": 3.062245309425581, + "lilligant": 3.0029172286077186, + "basculin-red-striped": 2.932808592646306, + "basculin-blue-striped": 3.7389712196592475, + "krookodile": 3.2455625299557926, + "maractus": 2.2225557501899162, + "crustle": 2.5140397785349444, + "sigilyph": 2.930816578101566, + "cofagrigus": 2.402737732662894, + "garbodor": 1.964028182356278, + "cinccino": 6.024353235277718, + "vanillish": 2.533723119500629, + "emolga": 4.597437481051189, + "escavalier": 1.9140133548006724, + "amoonguss": 2.6717873945851394, + "jellicent": 1.3481918188136883, + "galvantula": 2.2633525846690072, + "klang": 3.2258847737634317, + "klinklang": 4.041902249742874, + "beheeyem": 1.8512874494705216, + "lampent": 4.158390343580818, + "fraxure": 1.9224182165707762, + "beartic": 1.9100505399828756, + "cryogonal": 2.232898638539343, + "accelgor": 4.315330476481527, + "stunfisk": 1.2742633169979478, + "stunfisk-galar": 2.5996610881483457, + "mienshao": 3.3749524825010466, + "druddigon": 2.5115426207838025, + "golurk": 1.798068634019946, + "bisharp": 4.511147962849145, + "bouffalant": 1.6934798952929406, + "heatmor": 2.8567866440662035, + "durant": 2.8063568421308576, + "diggersby": 3.9987333307628665, + "talonflame": 6.219546753286077, + "pangoro": 2.1320743447536517, + "doublade": 1.7077155770535573, + "malamar": 2.907389137766371, + "barbaracle": 1.7187067053225116, + "heliolisk": 5.249191263076891, + "tyrantrum": 1.857766849496259, + "aurorus": 4.114850018579314, + "hawlucha": 3.5571569585760128, + "dedenne": 2.488923610413341, + "klefki": 2.553895293791369, + "trevenant": 3.129332095314206, + "gourgeist-average": 5.298959136354737, + "charjabug": 5.357342772041862, + "vikavolt": 2.391900398419544, + "ribombee": 5.8044357640384945, + "lycanroc-midday": 4.408234711399129, + "lycanroc-midnight": 2.982415980147586, + "mudsdale": 1.5336452832772043, + "araquanid": 3.763908836471538, + "lurantis": 2.502320053763017, + "shiinotic": 3.9737336171474267, + "salazzle": 4.649051457416089, + "bewear": 2.3986170692422175, + "tsareena": 3.421827877610321, + "comfey": 4.12416686258409, + "oranguru": 2.8400134463579914, + "passimian": 2.29578738137351, + "palossand": 1.7519284240525712, + "pyukumuku": 46.03795012187042, + "togedemaru": 3.1408299935916166, + "mimikyu-disguised": 4.667803615677228, + "greedent": 2.700198061138646, + "orbeetle": 2.333860660790803, + "thievul": 2.699157988475057, + "eldegoss": 4.1049571733684695, + "dubwool": 3.786054827174617, + "drednaw": 1.5822084548099926, + "boltund": 5.168459950650177, + "carkol": 3.2772636212630233, + "coalossal": 2.493110270541245, + "sandaconda": 2.693825694621308, + "cramorant": 8.755317597058394, + "barraskewda": 4.711611720132913, + "toxtricity-amped": 2.963149489686222, + "centiskorch": 4.569091491061968, + "grapploct": 1.5705374775087146, + "polteageist": 2.9874611415094954, + "hatterene": 2.4520331983626775, + "grimmsnarl": 3.895868472452287, + "obstagoon": 4.7113328908343926, + "perrserker": 3.7705424648168258, + "alcremie": 1.3192433078389343, + "falinks": 2.905150809343664, + "pincurchin": 3.0607773139668852, + "frosmoth": 5.37703127190313, + "indeedee-male": 3.5488145155802315, + "morpeko": 3.613945221965833, + "copperajah": 2.6735405776088195, + "duraludon": 1.6697778318617806, + "drakloak": 6.154200894280775 }, "aurorus": { - "ivysaur": 4.23657995120634, - "charmeleon": 5.169581927943759, - "wartortle": 3.0648582597950718, - "butterfree": 7.487099095859104, - "raichu": 4.944530179218829, - "raichu-alola": 3.9195166724177986, - "sandslash": 2.31661323471099, - "sandslash-alola": 1.920082597223341, - "nidoqueen": 3.6231399372087445, - "nidoking": 2.3279109741969273, - "clefairy": 9.474413742500536, - "clefable": 2.2103833500884797, - "jigglypuff": 28.825625588582476, - "wigglytuff": 2.179962529204444, - "gloom": 8.002338375304191, - "vileplume": 3.778093562266837, - "dugtrio": 4.503117389582285, - "dugtrio-alola": 2.935892761558157, - "persian": 4.657069587658908, - "persian-alola": 4.5115284204324135, - "golduck": 3.5439576353948574, - "poliwrath": 1.9885161410840964, - "kadabra": 4.552150611943422, - "machoke": 3.2270382822882366, - "tentacruel": 2.4825745532226584, - "slowbro": 2.3089260819573485, - "magneton": 2.355580488103482, - "haunter": 4.613943047260945, - "kingler": 2.8379184835108595, - "exeggutor": 2.307274928166013, - "marowak": 3.2012450133165693, - "marowak-alola": 2.704111148105735, - "hitmonlee": 2.05686821908011, - "hitmonchan": 2.1146297616335836, - "lickitung": 1.9955787493864494, - "weezing": 1.7969690979750137, - "weezing-galar": 2.9480317027204324, - "rhydon": 2.034614150842144, - "chansey": 33.69190102499522, - "tangela": 5.1208636246260255, - "kangaskhan": 1.882425865910767, - "seadra": 5.723711467765342, - "seaking": 2.717852105889059, - "starmie": 1.7884718017890275, - "mr-mime": 7.663310956288056, - "mr-mime-galar": 4.781454792443782, - "scyther": 5.161334170638014, - "jynx": 5.066084572719687, - "electabuzz": 2.877273455396274, - "magmar": 2.140246785127258, - "tauros": 1.8769090514065767, - "ditto": 4.845326945723741, - "vaporeon": 3.5183755292244276, - "jolteon": 2.214941717701326, - "flareon": 2.939763226790191, - "porygon": 3.018809491051258, - "dragonair": 2.6023563236073106, - "noctowl": 9.31959073593525, - "lanturn": 1.803216395996809, - "togetic": 7.42720002091343, - "xatu": 5.3491116701433405, - "bellossom": 3.0346752464322506, - "azumarill": 2.7029575168550872, - "sudowoodo": 2.2911337230721642, - "politoed": 2.7774911031669482, - "quagsire": 3.902273145040425, - "slowking": 2.7443330645052653, - "dunsparce": 3.504140507600904, - "qwilfish": 4.118824664731706, - "sneasel": 2.7355528155554016, - "piloswine": 1.5622727411057538, - "octillery": 2.597010578290395, - "mantine": 3.4969365704781556, - "skarmory": 2.629099874362299, - "hitmontop": 2.342869062874787, - "miltank": 3.987833332132201, - "grovyle": 9.329108745831222, - "sceptile": 1.8512542250468886, - "combusken": 2.816806777677174, - "blaziken": 1.4342698796605875, - "marshtomp": 2.3224085398054086, - "swampert": 1.2669658971493143, - "linoone": 5.4635831612273975, - "linoone-galar": 4.858767814810367, - "pelipper": 12.324613376309262, - "ninjask": 13.3504885434903, - "exploud": 1.716481284097411, - "lairon": 1.9939168785265138, - "manectric": 1.899590231935548, - "roselia": 5.653934524466786, - "sharpedo": 5.851811227875399, - "wailmer": 7.296067787693058, - "torkoal": 2.9528041288514153, - "flygon": 4.1501434867064395, - "altaria": 3.3320743062774154, - "whiscash": 1.97214066658199, - "crawdaunt": 2.5110526941294475, - "claydol": 4.4874773768174645, - "cradily": 2.851746113416926, - "armaldo": 2.337843680690691, - "dusclops": 3.491768848131218, - "absol": 2.1128204857277204, - "glalie": 5.1120071094606825, - "sealeo": 4.004012296449316, - "relicanth": 2.263433121652261, - "metang": 2.4438076275156333, - "luxray": 4.100735345522635, - "vespiquen": 4.736551785395144, - "cherrim": 7.468956186910765, - "gastrodon": 2.1031993986950153, - "drifblim": 6.104257265027412, - "lopunny": 3.5344398792859786, - "skuntank": 1.5218544408427694, - "bronzong": 2.6274309459752647, - "munchlax": 2.1802660690275983, - "drapion": 2.296809965392045, - "abomasnow": 3.8566294995246975, - "froslass": 4.0622694690630805, - "rotom": 3.921783283247252, - "stoutland": 2.681035886726441, - "liepard": 7.174631847854055, - "musharna": 1.5596555616862724, - "unfezant": 9.450028790477118, - "boldore": 3.066427026149957, - "swoobat": 7.655740294653359, - "audino": 2.5530687379292054, - "gurdurr": 1.7139215868604587, - "palpitoad": 3.7055634155349875, - "seismitoad": 7.130427450059158, - "scolipede": 4.122801006465317, - "whimsicott": 3.9371205069553428, - "lilligant": 3.7753947984293204, - "basculin-red-striped": 3.3087984544143296, - "basculin-blue-striped": 4.254660517683659, - "krookodile": 3.463760380599556, - "maractus": 2.7097000198965375, - "crustle": 2.560595607536669, - "sigilyph": 2.9564459249680235, - "cofagrigus": 2.8219637422573927, - "garbodor": 1.8115104585553028, - "cinccino": 5.075110260821523, - "vanillish": 3.0115577002089307, - "emolga": 4.341829239515285, - "escavalier": 1.680733380591771, - "amoonguss": 3.4565807320159143, - "jellicent": 1.8733737027602508, - "galvantula": 2.1605834120832044, - "klang": 2.374747873688686, - "klinklang": 2.6753404695823733, - "beheeyem": 1.9092871811531245, - "lampent": 3.589874559203422, - "fraxure": 1.9519872724895122, - "beartic": 2.193668440793912, - "cryogonal": 2.021252150699932, - "accelgor": 3.8869913939117233, - "stunfisk": 1.6410842031752046, - "stunfisk-galar": 2.213053148761933, - "mienshao": 3.040701792272481, - "druddigon": 2.1426465827250323, - "golurk": 2.1010685257238326, - "bisharp": 2.458324419140931, - "bouffalant": 1.1255178757990525, - "heatmor": 2.5140408115800357, - "durant": 2.9673569839370026, - "diggersby": 3.813244092470842, - "talonflame": 5.4203338385599595, - "pangoro": 1.4047705565217643, - "doublade": 2.0112655053129203, - "malamar": 2.951488481281573, - "barbaracle": 1.8545003255183032, - "heliolisk": 4.078423870035792, - "tyrantrum": 1.5836953629759303, - "hawlucha": 3.940886217143236, - "dedenne": 3.169977164847116, - "klefki": 2.550565278769537, - "trevenant": 3.315765147368315, - "gourgeist-average": 6.267798078366882, - "charjabug": 5.3101463650135905, - "vikavolt": 2.5777231197867607, - "ribombee": 6.115018222262586, - "lycanroc-midday": 3.102815783587541, - "lycanroc-midnight": 2.0754372791928466, - "mudsdale": 1.6160365234488498, - "araquanid": 2.7924990435293924, - "lurantis": 3.0750178707204916, - "shiinotic": 6.2668394871917315, - "salazzle": 4.24055264588657, - "bewear": 1.8845316384366657, - "tsareena": 3.768114536116859, - "comfey": 4.510280043021413, - "oranguru": 2.8781741294577015, - "passimian": 1.9554056339893875, - "palossand": 2.449008233060293, - "pyukumuku": 51.860202260784945, - "togedemaru": 1.7315366300383883, - "mimikyu-disguised": 4.37668798174428, - "greedent": 2.044280036818681, - "orbeetle": 2.375851157079013, - "thievul": 2.015496340385688, - "eldegoss": 5.107160267941402, - "dubwool": 2.675578122790952, - "drednaw": 1.3544292018861266, - "boltund": 4.878408337873349, - "carkol": 2.9479070379737644, - "coalossal": 2.508087220431647, - "sandaconda": 3.496863494565474, - "cramorant": 7.72232679021695, - "barraskewda": 5.529608080715219, - "toxtricity-amped": 3.0299989532484375, - "centiskorch": 3.642293778182526, - "grapploct": 1.3636772854651065, - "polteageist": 2.8498025793038133, - "hatterene": 2.5977836000176326, - "grimmsnarl": 3.5933793605506077, - "obstagoon": 2.7114252080709855, - "perrserker": 2.8221068827321263, - "alcremie": 1.6057760869481719, - "falinks": 2.478685079207678, - "pincurchin": 2.9759513511738658, - "frosmoth": 4.5239537411149655, - "indeedee-male": 3.5422782354427245, - "morpeko": 2.868318514540799, - "copperajah": 1.6561909706425453, - "duraludon": 1.2785317681612083, - "drakloak": 6.196393656739051, - "aurorus": 2.904350080976804 + "ivysaur": 4.241086647558786, + "charmeleon": 5.180560116723915, + "wartortle": 3.064465208245193, + "butterfree": 7.513662562290946, + "raichu": 4.93547404238308, + "raichu-alola": 3.9238308619711084, + "sandslash": 2.3148767270063484, + "sandslash-alola": 1.9168285153164053, + "nidoqueen": 3.6264921881920547, + "nidoking": 2.328925488372435, + "clefairy": 9.484066272567077, + "clefable": 2.2129362519126534, + "jigglypuff": 28.880345818822008, + "wigglytuff": 2.184483665777816, + "gloom": 8.024449930777138, + "vileplume": 3.7816022394541564, + "dugtrio": 4.499121634570385, + "dugtrio-alola": 2.9247004912074495, + "persian": 4.666532302220656, + "persian-alola": 4.517950537509463, + "golduck": 3.544853919167535, + "poliwrath": 1.9842631063956704, + "kadabra": 4.557591591596561, + "machoke": 3.218533743636888, + "tentacruel": 2.4832222288057277, + "slowbro": 2.3132802641035117, + "magneton": 2.3476291500498174, + "haunter": 4.62074527620822, + "kingler": 2.8327092676739625, + "exeggutor": 2.3078723739058384, + "marowak": 3.193738139817908, + "marowak-alola": 2.7054803636741838, + "hitmonlee": 2.0487690759027877, + "hitmonchan": 2.1133730426197377, + "lickitung": 1.99872334304938, + "weezing": 1.8017640444640843, + "weezing-galar": 2.9554163968444254, + "rhydon": 2.0271250032519474, + "chansey": 33.752850613838696, + "tangela": 5.118655133678072, + "kangaskhan": 1.8841683109750922, + "seadra": 5.731961050331863, + "seaking": 2.718433157581036, + "starmie": 1.7907549458024952, + "mr-mime": 7.6745451893245855, + "mr-mime-galar": 4.7894606648535625, + "scyther": 5.184098218397329, + "jynx": 5.0750557624454835, + "electabuzz": 2.881280861457081, + "magmar": 2.1448645714938603, + "tauros": 1.8748964414240663, + "ditto": 4.823315369860932, + "vaporeon": 3.5206695915261457, + "jolteon": 2.216778879271337, + "flareon": 2.944894060554401, + "porygon": 3.0251539290398157, + "dragonair": 2.607812769964201, + "noctowl": 9.36267735698404, + "lanturn": 1.7996590283194804, + "togetic": 7.456836265087852, + "xatu": 5.37321215005871, + "bellossom": 3.0369358855636204, + "azumarill": 2.7066274411383433, + "sudowoodo": 2.286055735055481, + "politoed": 2.7772985415298534, + "quagsire": 3.889709523447374, + "slowking": 2.745520479167865, + "dunsparce": 3.511682654874643, + "qwilfish": 4.118439176777079, + "sneasel": 2.738741451851477, + "piloswine": 1.558161185972907, + "octillery": 2.5953472225616014, + "mantine": 3.506904126934433, + "skarmory": 2.6314320265933615, + "hitmontop": 2.337419597135576, + "miltank": 3.9958734186802376, + "grovyle": 9.315408865454307, + "sceptile": 1.8519348014944188, + "combusken": 2.8093171447222085, + "blaziken": 1.4317322300259328, + "marshtomp": 2.3182727330062596, + "swampert": 1.2656894504560436, + "linoone": 5.471814385021364, + "linoone-galar": 4.863165266203764, + "pelipper": 12.38700581176801, + "ninjask": 13.395287277486233, + "exploud": 1.717681534293253, + "lairon": 1.9853475230580475, + "manectric": 1.9009146308403746, + "roselia": 5.660611899542641, + "sharpedo": 5.853875590971826, + "wailmer": 7.2929691397358365, + "torkoal": 2.9613000395465416, + "flygon": 4.150672116368822, + "altaria": 3.3453055779983627, + "whiscash": 1.9707071569227579, + "crawdaunt": 2.514410782528803, + "claydol": 4.491930223637393, + "cradily": 2.8535641450271143, + "armaldo": 2.339278642967308, + "dusclops": 3.4981095375754396, + "absol": 2.1168329657094063, + "glalie": 5.11427471254221, + "sealeo": 4.008443231043137, + "relicanth": 2.2622321761807767, + "metang": 2.4370642401288047, + "luxray": 4.107213147721845, + "vespiquen": 4.7487322633054, + "cherrim": 7.474936954925794, + "gastrodon": 2.1001386920349656, + "drifblim": 6.1299140397571925, + "lopunny": 3.5333399311123843, + "skuntank": 1.5250625569496226, + "bronzong": 2.621659278475148, + "munchlax": 2.181945944871135, + "drapion": 2.295883958872147, + "abomasnow": 3.858814927769933, + "froslass": 4.0741293868162245, + "rotom": 3.9300723807394826, + "stoutland": 2.6873962125024615, + "liepard": 7.182966764222614, + "musharna": 1.5607002510600827, + "unfezant": 9.500392516811848, + "boldore": 3.0602642592090428, + "swoobat": 7.690187754718011, + "audino": 2.5582994741654406, + "gurdurr": 1.7065845127320953, + "palpitoad": 3.702068152822253, + "seismitoad": 7.139850396785086, + "scolipede": 4.126390624684242, + "whimsicott": 3.9426632064946467, + "lilligant": 3.7776942208125517, + "basculin-red-striped": 3.3093805719710954, + "basculin-blue-striped": 4.255026508564516, + "krookodile": 3.464390664709593, + "maractus": 2.7109751781968403, + "crustle": 2.5593204531051184, + "sigilyph": 2.9638961329884985, + "cofagrigus": 2.8283541541305532, + "garbodor": 1.8118452897970843, + "cinccino": 5.088066312875474, + "vanillish": 3.0199958280907313, + "emolga": 4.359703526514716, + "escavalier": 1.6793119619118517, + "amoonguss": 3.462898406211296, + "jellicent": 1.8764399222907895, + "galvantula": 2.1653001723685774, + "klang": 2.369996630482123, + "klinklang": 2.6653306882276113, + "beheeyem": 1.9114108215166667, + "lampent": 3.5994778085417405, + "fraxure": 1.9554837436529393, + "beartic": 2.193102222605499, + "cryogonal": 2.024015036470172, + "accelgor": 3.8958491452888415, + "stunfisk": 1.6413908753733755, + "stunfisk-galar": 2.211026590641683, + "mienshao": 3.035920396556384, + "druddigon": 2.141707028695464, + "golurk": 2.0970544648360834, + "bisharp": 2.4596175231506026, + "bouffalant": 1.1236744942743169, + "heatmor": 2.518741364897769, + "durant": 2.9638645086365036, + "diggersby": 3.8099315744877544, + "talonflame": 5.433805252736571, + "pangoro": 1.3999785727228216, + "doublade": 2.0042916546312948, + "malamar": 2.9549661431216694, + "barbaracle": 1.856410892301975, + "heliolisk": 4.083684445080514, + "tyrantrum": 1.5822875516775443, + "aurorus": 2.904350080976804, + "hawlucha": 3.942292876652929, + "dedenne": 3.17471871343034, + "klefki": 2.5453111054030186, + "trevenant": 3.3096766850733363, + "gourgeist-average": 6.2815021929014385, + "charjabug": 5.315265943421298, + "vikavolt": 2.5831593551884677, + "ribombee": 6.129831996347118, + "lycanroc-midday": 3.1002489426912105, + "lycanroc-midnight": 2.071647286396958, + "mudsdale": 1.6112386901113567, + "araquanid": 2.7962237309501448, + "lurantis": 3.078523778171837, + "shiinotic": 6.281812174640791, + "salazzle": 4.2508400807154025, + "bewear": 1.8873467739743472, + "tsareena": 3.7696152062192483, + "comfey": 4.514112969355249, + "oranguru": 2.881367890317647, + "passimian": 1.9505770858391314, + "palossand": 2.4507526687846606, + "pyukumuku": 51.85498678496387, + "togedemaru": 1.7250740567422183, + "mimikyu-disguised": 4.386192650095186, + "greedent": 2.0430663194162975, + "orbeetle": 2.3806045673223406, + "thievul": 2.0180574560319235, + "eldegoss": 5.110379666350139, + "dubwool": 2.671631387890633, + "drednaw": 1.3520683376704379, + "boltund": 4.883743507924662, + "carkol": 2.950833626693652, + "coalossal": 2.509669638210551, + "sandaconda": 3.4962728625490977, + "cramorant": 7.735593034088083, + "barraskewda": 5.532179529228548, + "toxtricity-amped": 3.034734792478213, + "centiskorch": 3.652140366050623, + "grapploct": 1.3578994344181616, + "polteageist": 2.8522404760478217, + "hatterene": 2.601687980179288, + "grimmsnarl": 3.5914970566290862, + "obstagoon": 2.715081267836453, + "perrserker": 2.815436889944686, + "alcremie": 1.6078918629067027, + "falinks": 2.4691225263826917, + "pincurchin": 2.9771406680672534, + "frosmoth": 4.536761638270484, + "indeedee-male": 3.54699681810319, + "morpeko": 2.8716156024987254, + "copperajah": 1.6471329042669485, + "duraludon": 1.2757288283108368, + "drakloak": 6.210297014681202 }, "hawlucha": { - "ivysaur": 3.0656994442680228, - "charmeleon": 3.5588425706899054, - "wartortle": 2.3970340863271686, - "butterfree": 4.684942132406414, - "raichu": 4.470808856009197, - "raichu-alola": 3.54957329793913, - "sandslash": 2.026291323724262, - "sandslash-alola": 2.6848851669163203, - "nidoqueen": 2.625778544074848, - "nidoking": 1.6430366431047694, - "clefairy": 10.26496071585921, - "clefable": 1.7405656309216728, - "jigglypuff": 24.329978379394163, - "wigglytuff": 1.6962447307992483, - "gloom": 4.5719364595233944, - "vileplume": 2.963374280899827, - "dugtrio": 3.833402713524161, - "dugtrio-alola": 4.539170075383684, - "persian": 4.7433554560793905, - "persian-alola": 5.459252686179054, - "golduck": 2.791800335635198, - "poliwrath": 1.7820407837072652, - "kadabra": 4.063211117338456, - "machoke": 3.7470175905700938, - "tentacruel": 2.2359213376923517, - "slowbro": 1.620060510802221, - "magneton": 3.099339389789776, - "haunter": 5.322300040091884, - "kingler": 2.2238122387507184, - "exeggutor": 2.111183257893224, - "marowak": 3.0254602800491077, - "marowak-alola": 2.2073710163097022, - "hitmonlee": 2.5528943432470896, - "hitmonchan": 1.9226835476525637, - "lickitung": 1.940182106030779, - "weezing": 1.3197613331278493, - "weezing-galar": 1.9016598245514806, - "rhydon": 2.4097535694776298, - "chansey": 35.43964550674842, - "tangela": 4.725471793954435, - "kangaskhan": 2.235736178290176, - "seadra": 3.442941334070089, - "seaking": 2.332146826724213, - "starmie": 1.353874007910628, - "mr-mime": 6.28361223682678, - "mr-mime-galar": 3.329846950042156, - "scyther": 2.429822919252974, - "jynx": 4.710207021746274, - "electabuzz": 1.997435444680526, - "magmar": 1.581776218464887, - "tauros": 2.412753679438723, - "ditto": 4.031836968180461, - "vaporeon": 2.9995036334711327, - "jolteon": 1.7045617003473974, - "flareon": 2.2765437714799828, - "porygon": 2.9671258457303327, - "dragonair": 1.5555962358434319, - "noctowl": 5.180459779191777, - "lanturn": 1.6645657148695268, - "togetic": 5.277774515160436, - "xatu": 3.514166812201414, - "bellossom": 2.1175030485887, - "azumarill": 2.202085733601164, - "sudowoodo": 2.860569753020461, - "politoed": 2.565781325048537, - "quagsire": 4.195631359107329, - "slowking": 2.586263414614264, - "dunsparce": 3.4734968096076697, - "qwilfish": 2.919425022312458, - "sneasel": 3.719894153797858, - "piloswine": 1.54782687638859, - "octillery": 2.180016080729807, - "mantine": 2.1574959735897923, - "skarmory": 1.6918587596064065, - "hitmontop": 2.599619712449444, - "miltank": 3.599414681130332, - "grovyle": 9.309346464069367, - "sceptile": 1.6151447161971193, - "combusken": 3.199156928773976, - "blaziken": 1.5348038500308072, - "marshtomp": 2.288980925965525, - "swampert": 1.0898269370351412, - "linoone": 6.200667413363822, - "linoone-galar": 8.016861259093819, - "pelipper": 4.848217512598836, - "ninjask": 7.924223125869888, - "exploud": 1.724644351392734, - "lairon": 2.9803988226466993, - "manectric": 1.4901766347692398, - "roselia": 3.6919396684985974, - "sharpedo": 6.0309284940930965, - "wailmer": 5.699370859840807, - "torkoal": 1.5420246357683134, - "flygon": 2.3199489217312292, - "altaria": 1.3082442226685864, - "whiscash": 1.7393879936134575, - "crawdaunt": 2.1709385245804653, - "claydol": 3.3590066728843926, - "cradily": 2.6813074305412647, - "armaldo": 1.8564511419326042, - "dusclops": 3.971750170064692, - "absol": 2.15743290653328, - "glalie": 4.526508049283155, - "sealeo": 3.3149922511006187, - "relicanth": 1.9352392578935096, - "metang": 2.866792137090422, - "luxray": 3.07663872057775, - "vespiquen": 2.506144741633411, - "cherrim": 6.358887622564273, - "gastrodon": 2.083385578457336, - "drifblim": 4.097557003512552, - "lopunny": 4.260164380553079, - "skuntank": 1.3628808575001163, - "bronzong": 3.2471730945478097, - "munchlax": 2.8432834713280926, - "drapion": 2.2768482213449817, - "abomasnow": 3.5098610804300785, - "froslass": 2.9134056612962413, - "rotom": 3.852837313134848, - "stoutland": 2.7526865728301004, - "liepard": 7.907770789790661, - "musharna": 1.5425666320843276, - "unfezant": 4.81353299724841, - "boldore": 3.4481056580998475, - "swoobat": 5.028636695151095, - "audino": 2.4290433075950713, - "gurdurr": 2.1616480549225896, - "palpitoad": 3.5958550243321534, - "seismitoad": 5.666479308306991, - "scolipede": 3.0907077589696716, - "whimsicott": 3.918210353123273, - "lilligant": 3.4623870608453426, - "basculin-red-striped": 2.36863340523225, - "basculin-blue-striped": 3.3421980536071034, - "krookodile": 3.5952618708074984, - "maractus": 2.4767010044367366, - "crustle": 1.9350922126339238, - "sigilyph": 2.2133029375203477, - "cofagrigus": 2.502908586843488, - "garbodor": 1.6874786943146387, - "cinccino": 4.932263426072758, - "vanillish": 2.1109389325845913, - "emolga": 2.2065165209671047, - "escavalier": 1.8633966746530963, - "amoonguss": 2.349755152651909, - "jellicent": 1.555813909831153, - "galvantula": 1.2394744291166764, - "klang": 2.899224444280552, - "klinklang": 3.709890012528262, - "beheeyem": 1.9551082014031014, - "lampent": 2.8740676896915875, - "fraxure": 1.3972564659603794, - "beartic": 1.6935627782656262, - "cryogonal": 1.9017135413110968, - "accelgor": 3.2975425924849002, - "stunfisk": 1.1824866019342748, - "stunfisk-galar": 2.9001997616842465, - "mienshao": 3.1913695416933683, - "druddigon": 1.7121691044389125, - "golurk": 2.2625461347388462, - "bisharp": 3.612945427090235, - "bouffalant": 1.5836169745189528, - "heatmor": 1.7574364677324583, - "durant": 2.519804488139426, - "diggersby": 4.094514025922876, - "talonflame": 2.4158199400790235, - "pangoro": 2.1501153271196465, - "doublade": 2.1516930893924036, - "malamar": 2.331071458419861, - "barbaracle": 1.4948601242842383, - "heliolisk": 4.272066873698962, - "tyrantrum": 1.6473191234313185, - "aurorus": 3.3392272866971795, - "dedenne": 2.3971906025318903, - "klefki": 2.521353304807274, - "trevenant": 3.766280336197429, - "gourgeist-average": 5.324724222685754, - "charjabug": 3.4024261211561413, - "vikavolt": 1.7017000916917087, - "ribombee": 4.896254982356551, - "lycanroc-midday": 3.8099857903114676, - "lycanroc-midnight": 2.821140562487745, - "mudsdale": 1.5864450131719654, - "araquanid": 2.313860601241668, - "lurantis": 2.632625581557283, - "shiinotic": 5.4946755374427, - "salazzle": 2.8621509706313564, - "bewear": 1.9617882907217683, - "tsareena": 3.182075898655607, - "comfey": 4.491600580255845, - "oranguru": 2.6008855936774884, - "passimian": 2.0322130322258944, - "palossand": 2.2402310886426484, - "pyukumuku": 40.7719090363778, - "togedemaru": 2.4651450571522817, - "mimikyu-disguised": 3.7052153579623024, - "greedent": 2.230594405500065, - "orbeetle": 1.9440747026142957, - "thievul": 2.386118248513376, - "eldegoss": 4.398193835766115, - "dubwool": 3.4879516578951977, - "drednaw": 1.4149578824788902, - "boltund": 4.024145203022167, - "carkol": 2.5726617376536947, - "coalossal": 2.0676306124252024, - "sandaconda": 2.9986795337502112, - "cramorant": 5.450164267872449, - "barraskewda": 4.273434622839174, - "toxtricity-amped": 2.1291879819973216, - "centiskorch": 1.9595117107467428, - "grapploct": 1.5836703719319436, - "polteageist": 3.3019668997673275, - "hatterene": 2.190035535053086, - "grimmsnarl": 4.437002099146989, - "obstagoon": 3.737381738044314, - "perrserker": 3.4057878174253404, - "alcremie": 1.3679474546238248, - "falinks": 2.932761005043849, - "pincurchin": 2.432228199489386, - "frosmoth": 2.6217002760084838, - "indeedee-male": 3.5014979889104403, - "morpeko": 2.8117268608751633, - "copperajah": 2.843804030028612, - "duraludon": 1.504823788419406, - "drakloak": 5.250629074796919, - "hawlucha": 3.1603259404415116 + "ivysaur": 3.0672709977307275, + "charmeleon": 3.5584394457768598, + "wartortle": 2.3953541950304844, + "butterfree": 4.688793288637356, + "raichu": 4.466317937804854, + "raichu-alola": 3.53968597651195, + "sandslash": 2.027569533348342, + "sandslash-alola": 2.6851637745015484, + "nidoqueen": 2.625117556083324, + "nidoking": 1.6409867855347606, + "clefairy": 10.275758444124268, + "clefable": 1.7379867134474036, + "jigglypuff": 24.274825506224325, + "wigglytuff": 1.692947220079905, + "gloom": 4.558966258772668, + "vileplume": 2.967930385541078, + "dugtrio": 3.8430351463961943, + "dugtrio-alola": 4.551061516113851, + "persian": 4.741555778113479, + "persian-alola": 5.470064113201202, + "golduck": 2.7910515919529715, + "poliwrath": 1.7823237040856195, + "kadabra": 4.055540283374024, + "machoke": 3.7501543116775444, + "tentacruel": 2.234417245946686, + "slowbro": 1.6152972000900143, + "magneton": 3.092576692633113, + "haunter": 5.32038382513875, + "kingler": 2.2247181071105375, + "exeggutor": 2.112311069752436, + "marowak": 3.0294224930882225, + "marowak-alola": 2.206842383081044, + "hitmonlee": 2.5577088895809563, + "hitmonchan": 1.9204839222608188, + "lickitung": 1.9374999626309828, + "weezing": 1.3175746132177473, + "weezing-galar": 1.8946708456863537, + "rhydon": 2.4105337152654203, + "chansey": 35.4741832732481, + "tangela": 4.72797959342479, + "kangaskhan": 2.239556683485758, + "seadra": 3.4370276802009534, + "seaking": 2.3337630708997343, + "starmie": 1.3510655947131744, + "mr-mime": 6.2645628628854375, + "mr-mime-galar": 3.320374796778996, + "scyther": 2.4268534697110624, + "jynx": 4.701985733348544, + "electabuzz": 1.9924882316551225, + "magmar": 1.581951456006153, + "tauros": 2.4184521381106934, + "ditto": 3.9989144352701884, + "vaporeon": 2.999974088114717, + "jolteon": 1.701736821712452, + "flareon": 2.277633727017262, + "porygon": 2.9642123581413813, + "dragonair": 1.55305525506218, + "noctowl": 5.1741768109228765, + "lanturn": 1.6632274207970867, + "togetic": 5.270764996262621, + "xatu": 3.501395001675049, + "bellossom": 2.1178082125798157, + "azumarill": 2.20136621351091, + "sudowoodo": 2.8646184325547317, + "politoed": 2.569696752604674, + "quagsire": 4.193862114187531, + "slowking": 2.581900522587059, + "dunsparce": 3.4718108257424958, + "qwilfish": 2.9152543476616826, + "sneasel": 3.7259869431880746, + "piloswine": 1.546709317318625, + "octillery": 2.180341618193639, + "mantine": 2.154703817356455, + "skarmory": 1.690230149926116, + "hitmontop": 2.6012924526746586, + "miltank": 3.5954235894792275, + "grovyle": 9.335368217798205, + "sceptile": 1.6193542061682031, + "combusken": 3.2011478880297015, + "blaziken": 1.5354137226955362, + "marshtomp": 2.2882442918347046, + "swampert": 1.08978394356105, + "linoone": 6.209177469384643, + "linoone-galar": 8.042080145348049, + "pelipper": 4.835035278802215, + "ninjask": 7.940228211015751, + "exploud": 1.7246435087942869, + "lairon": 2.981353633353268, + "manectric": 1.4874799490096446, + "roselia": 3.6896041880939476, + "sharpedo": 6.038069826756734, + "wailmer": 5.6939928375578575, + "torkoal": 1.5405147590703572, + "flygon": 2.3213827832515834, + "altaria": 1.3059693191800639, + "whiscash": 1.7356296913490805, + "crawdaunt": 2.172011275135974, + "claydol": 3.350786433585524, + "cradily": 2.6845361341421907, + "armaldo": 1.8593745067113732, + "dusclops": 3.973326338189963, + "absol": 2.158333928793909, + "glalie": 4.525701767365226, + "sealeo": 3.311502180570425, + "relicanth": 1.9342562050860224, + "metang": 2.861386848905367, + "luxray": 3.069054683018315, + "vespiquen": 2.5044704412109304, + "cherrim": 6.368488036128702, + "gastrodon": 2.084011271114725, + "drifblim": 4.081319696081477, + "lopunny": 4.2629276193405925, + "skuntank": 1.3635770175948683, + "bronzong": 3.2422078472472404, + "munchlax": 2.8458455230044373, + "drapion": 2.278393242213596, + "abomasnow": 3.51094354732481, + "froslass": 2.9059711970752327, + "rotom": 3.8448559229817283, + "stoutland": 2.753273909322657, + "liepard": 7.908524857932438, + "musharna": 1.539295107321267, + "unfezant": 4.799997838645932, + "boldore": 3.451358507550872, + "swoobat": 5.01031411863848, + "audino": 2.4280808863945373, + "gurdurr": 2.164819846449801, + "palpitoad": 3.596653989745074, + "seismitoad": 5.657875770053385, + "scolipede": 3.092508836179821, + "whimsicott": 3.916929937860354, + "lilligant": 3.4714216882987774, + "basculin-red-striped": 2.365149270666304, + "basculin-blue-striped": 3.3428993032968988, + "krookodile": 3.604665277510314, + "maractus": 2.4831221885074544, + "crustle": 1.9363601247611708, + "sigilyph": 2.2066162615899043, + "cofagrigus": 2.496513322099771, + "garbodor": 1.6862438484413174, + "cinccino": 4.9290371528911034, + "vanillish": 2.106443472421002, + "emolga": 2.198944243037796, + "escavalier": 1.8665548425281306, + "amoonguss": 2.349140265903548, + "jellicent": 1.5532303305930881, + "galvantula": 1.236123427093657, + "klang": 2.895311810305767, + "klinklang": 3.7100318033980537, + "beheeyem": 1.9531379773047706, + "lampent": 2.8747223279382528, + "fraxure": 1.3972509240772302, + "beartic": 1.6918469925176562, + "cryogonal": 1.9003701071067933, + "accelgor": 3.3035584267786353, + "stunfisk": 1.1815581507714181, + "stunfisk-galar": 2.9076491652655876, + "mienshao": 3.1918565722734122, + "druddigon": 1.7134024913228416, + "golurk": 2.265067831898763, + "bisharp": 3.6155386481554164, + "bouffalant": 1.5869329665788507, + "heatmor": 1.758660131658007, + "durant": 2.516457534267211, + "diggersby": 4.105465599566954, + "talonflame": 2.410963470132005, + "pangoro": 2.1542017638342865, + "doublade": 2.1483679631071606, + "malamar": 2.3257314423155737, + "barbaracle": 1.493440074226368, + "heliolisk": 4.271858530677374, + "tyrantrum": 1.6475013347893663, + "aurorus": 3.3356634181703493, + "hawlucha": 3.1603259404415116, + "dedenne": 2.3906801603130106, + "klefki": 2.5147432281025117, + "trevenant": 3.774312143121838, + "gourgeist-average": 5.322456186053833, + "charjabug": 3.3967196330579355, + "vikavolt": 1.702571480684734, + "ribombee": 4.894257695534295, + "lycanroc-midday": 3.81201573324468, + "lycanroc-midnight": 2.825376048762884, + "mudsdale": 1.5892061990260378, + "araquanid": 2.3165476524911024, + "lurantis": 2.6371625679840425, + "shiinotic": 5.486187827932579, + "salazzle": 2.858482078507623, + "bewear": 1.9617522644056333, + "tsareena": 3.1843016295545663, + "comfey": 4.487922449610101, + "oranguru": 2.59389274128051, + "passimian": 2.030709250417589, + "palossand": 2.240757097296407, + "pyukumuku": 40.80281670133435, + "togedemaru": 2.463536747334968, + "mimikyu-disguised": 3.7030298929961356, + "greedent": 2.2290670057529782, + "orbeetle": 1.9383449364702567, + "thievul": 2.391173818617858, + "eldegoss": 4.406558235843967, + "dubwool": 3.4931203300625064, + "drednaw": 1.415557972038223, + "boltund": 4.019393045371583, + "carkol": 2.572340712589081, + "coalossal": 2.066624463237045, + "sandaconda": 3.001830287018715, + "cramorant": 5.455012313156013, + "barraskewda": 4.274817667083655, + "toxtricity-amped": 2.120990936746215, + "centiskorch": 1.9598548664517499, + "grapploct": 1.5849156156650923, + "polteageist": 3.301307333913501, + "hatterene": 2.1832598359754014, + "grimmsnarl": 4.447100519167556, + "obstagoon": 3.7402351402422336, + "perrserker": 3.4050045513387523, + "alcremie": 1.3672588054026074, + "falinks": 2.934478216518655, + "pincurchin": 2.4257338073845043, + "frosmoth": 2.6179245920654415, + "indeedee-male": 3.4987655998518155, + "morpeko": 2.8069282466436505, + "copperajah": 2.846186012780226, + "duraludon": 1.502352736545749, + "drakloak": 5.250749015287771 }, "dedenne": { - "ivysaur": 2.3698768430311783, - "charmeleon": 3.9183032384527943, - "wartortle": 3.525219028864859, - "butterfree": 5.151727695847599, - "raichu": 5.170559656629877, - "raichu-alola": 3.229115870357527, - "sandslash": 2.0729180964754277, - "sandslash-alola": 2.061347719803436, - "nidoqueen": 1.9567786890593415, - "nidoking": 1.3736618454590803, - "clefairy": 8.602014623227511, - "clefable": 1.9037872998356533, - "jigglypuff": 25.536862785823676, - "wigglytuff": 1.8876481819392248, - "gloom": 4.122162137655754, - "vileplume": 2.4867998921036683, - "dugtrio": 2.9932689569567064, - "dugtrio-alola": 2.475775564157318, - "persian": 3.9441434231510493, - "persian-alola": 5.709891909960239, - "golduck": 3.792858238505972, - "poliwrath": 2.476107209545728, - "kadabra": 3.3816000281629544, - "machoke": 5.239223258455947, - "tentacruel": 2.4613954570295107, - "slowbro": 2.334859343837616, - "magneton": 2.7151575215742176, - "haunter": 4.220240382950123, - "kingler": 3.5432294002044955, - "exeggutor": 1.752349457798374, - "marowak": 2.7893815262171886, - "marowak-alola": 2.009630248787905, - "hitmonlee": 2.726201152833381, - "hitmonchan": 2.557522047836408, - "lickitung": 1.8583982404056485, - "weezing": 1.530285686846169, - "weezing-galar": 2.574859486380338, - "rhydon": 2.139208014895996, - "chansey": 18.544720364652278, - "tangela": 5.113371013846361, - "kangaskhan": 1.8125799511576264, - "seadra": 6.486036670995418, - "seaking": 2.6767026337389885, - "starmie": 1.7889012174096022, - "mr-mime": 6.015417061103845, - "mr-mime-galar": 3.3568773719621348, - "scyther": 3.5603048147613205, - "jynx": 3.7598033728098237, - "electabuzz": 2.5540291713085628, - "magmar": 1.5030969100179732, - "tauros": 1.9575272180003815, - "ditto": 3.2375579998084003, - "vaporeon": 3.6989221876846536, - "jolteon": 1.784335070037721, - "flareon": 2.0762023739353666, - "porygon": 2.7879471583840587, - "dragonair": 2.678562061647062, - "noctowl": 6.649499189036482, - "lanturn": 1.842706443581334, - "togetic": 6.402753059421827, - "xatu": 5.0027339934337025, - "bellossom": 2.186581482312823, - "azumarill": 3.017284257124279, - "sudowoodo": 2.5037772970828014, - "politoed": 2.8313180289933, - "quagsire": 4.741729011480809, - "slowking": 2.829549542538953, - "dunsparce": 3.305934738746323, - "qwilfish": 4.236168667836244, - "sneasel": 2.6962529561256288, - "piloswine": 1.5661017374790236, - "octillery": 2.9484516388735127, - "mantine": 3.969024703801196, - "skarmory": 3.271794487059655, - "hitmontop": 3.089304766614185, - "miltank": 3.518201152307917, - "grovyle": 7.4085391018760305, - "sceptile": 1.4026909464711022, - "combusken": 3.4244560047655233, - "blaziken": 1.6075970055782078, - "marshtomp": 2.2086771190132968, - "swampert": 1.1404458133246411, - "linoone": 4.971318914857353, - "linoone-galar": 6.255333794129312, - "pelipper": 12.723902608493475, - "ninjask": 9.564578248188237, - "exploud": 1.5470393474631488, - "lairon": 2.4845207187416296, - "manectric": 1.7228990276828997, - "roselia": 3.084386064304968, - "sharpedo": 6.917297294580818, - "wailmer": 8.50364711561653, - "torkoal": 1.9411882211433023, - "flygon": 3.1663120049020472, - "altaria": 2.0053425107421465, - "whiscash": 1.9250245841027855, - "crawdaunt": 2.7852748533894145, - "claydol": 3.0904881073494312, - "cradily": 2.0232128068052635, - "armaldo": 1.7703218256407585, - "dusclops": 3.3131382412520276, - "absol": 2.4920600409454723, - "glalie": 4.04315861281248, - "sealeo": 3.9230040332917113, - "relicanth": 2.6489458368675542, - "metang": 2.874269877174603, - "luxray": 3.772684268946797, - "vespiquen": 3.650960934271067, - "cherrim": 5.424098155584229, - "gastrodon": 1.9858283887500663, - "drifblim": 5.528593707733721, - "lopunny": 3.5408279255260444, - "skuntank": 1.4574577549019405, - "bronzong": 2.941737938920647, - "munchlax": 1.862795162175125, - "drapion": 2.6019546281260078, - "abomasnow": 2.8981926989008695, - "froslass": 2.7740988312544967, - "rotom": 3.7281173139401265, - "stoutland": 2.2300788762695856, - "liepard": 8.999496226116891, - "musharna": 1.4458314275752309, - "unfezant": 9.29585610298452, - "boldore": 3.3363503021708327, - "swoobat": 7.163696683655379, - "audino": 2.1226972190651323, - "gurdurr": 3.0392208519711525, - "palpitoad": 3.431001233282509, - "seismitoad": 5.294181343288098, - "scolipede": 3.36435316000729, - "whimsicott": 3.0745056864176337, - "lilligant": 2.9895398460731406, - "basculin-red-striped": 3.5797683716106574, - "basculin-blue-striped": 4.847185256848272, - "krookodile": 3.4827569951709343, - "maractus": 2.1275803598304157, - "crustle": 2.215043338574002, - "sigilyph": 3.0014993901564955, - "cofagrigus": 2.6258935896478515, - "garbodor": 1.6073076993835396, - "cinccino": 4.28465248384691, - "vanillish": 2.01827926963926, - "emolga": 3.273996697012781, - "escavalier": 1.6363052781238028, - "amoonguss": 1.8058282203708027, - "jellicent": 1.8369811197781751, - "galvantula": 1.6792301920949497, - "klang": 2.8079309855040617, - "klinklang": 3.23852128064002, - "beheeyem": 1.7272846100305737, - "lampent": 2.4457356130970025, - "fraxure": 2.4976404542010453, - "beartic": 1.6860613548147627, - "cryogonal": 1.4897445021946318, - "accelgor": 3.027369235464785, - "stunfisk": 1.1710273273782932, - "stunfisk-galar": 1.7678663042943215, - "mienshao": 4.261592966473363, - "druddigon": 2.2526921219940297, - "golurk": 1.7374425637929902, - "bisharp": 2.3381969403241243, - "bouffalant": 1.2746067613365266, - "heatmor": 1.82160944304206, - "durant": 3.380072369056338, - "diggersby": 2.668530981616269, - "talonflame": 3.8500450629181895, - "pangoro": 3.4782604415606193, - "doublade": 2.761486654611595, - "malamar": 3.7815281102148317, - "barbaracle": 1.7930231328867652, - "heliolisk": 3.2084986817050662, - "tyrantrum": 2.3456832954398052, - "aurorus": 2.322039392455247, - "hawlucha": 4.526591947034937, - "klefki": 2.942291149758381, - "trevenant": 2.8629123543192367, - "gourgeist-average": 5.175263981797917, - "charjabug": 3.8725579622622037, - "vikavolt": 1.7949157383203604, - "ribombee": 4.680926257664739, - "lycanroc-midday": 3.1550234578704206, - "lycanroc-midnight": 2.3454904461947463, - "mudsdale": 1.535588058057828, - "araquanid": 2.6813949765871383, - "lurantis": 2.3187668844726046, - "shiinotic": 4.057818742102065, - "salazzle": 2.9183213182347254, - "bewear": 2.2495325377974007, - "tsareena": 2.967852915656519, - "comfey": 4.19633929576919, - "oranguru": 2.4478134212551694, - "passimian": 3.2762768785717786, - "palossand": 1.8673669929913828, - "pyukumuku": 50.36279317661666, - "togedemaru": 1.761637043807961, - "mimikyu-disguised": 3.6093620696063793, - "greedent": 2.0344976836224506, - "orbeetle": 1.8177225246866886, - "thievul": 2.2124843814409076, - "eldegoss": 3.5608825441300125, - "dubwool": 2.8677912470193982, - "drednaw": 1.6025737127086632, - "boltund": 4.920810411949203, - "carkol": 2.3024567123165434, - "coalossal": 1.9355091457646934, - "sandaconda": 3.2366810461804993, - "cramorant": 9.030413032605205, - "barraskewda": 6.5822985705611075, - "toxtricity-amped": 2.199728144386728, - "centiskorch": 1.7434243891854786, - "grapploct": 2.24590499920925, - "polteageist": 2.411267786723892, - "hatterene": 2.3573121076644705, - "grimmsnarl": 5.182081250805515, - "obstagoon": 3.340715734296752, - "perrserker": 3.4817627029658276, - "alcremie": 1.2980001600664994, - "falinks": 4.4719407302556355, - "pincurchin": 2.995032554805307, - "frosmoth": 2.6827872629565768, - "indeedee-male": 2.8710102781354685, - "morpeko": 3.669164381216485, - "copperajah": 2.319899009967397, - "duraludon": 1.9625148041614455, - "drakloak": 6.489375881336262, - "dedenne": 2.7689072191664232 + "ivysaur": 2.360527402193272, + "charmeleon": 3.916523832102665, + "wartortle": 3.5269086519982844, + "butterfree": 5.146911338149731, + "raichu": 5.166783617335108, + "raichu-alola": 3.223564812620965, + "sandslash": 2.06660099135118, + "sandslash-alola": 2.0592812862963803, + "nidoqueen": 1.9459267437256509, + "nidoking": 1.36761311957707, + "clefairy": 8.594434600791486, + "clefable": 1.9021827095101205, + "jigglypuff": 25.511152995160003, + "wigglytuff": 1.8853291455454206, + "gloom": 4.103268512861263, + "vileplume": 2.4823738701101004, + "dugtrio": 2.9785694155764286, + "dugtrio-alola": 2.464004881705991, + "persian": 3.935691551396495, + "persian-alola": 5.717245298416789, + "golduck": 3.7907633260773483, + "poliwrath": 2.4789085360261085, + "kadabra": 3.3729255161312874, + "machoke": 5.246616454383981, + "tentacruel": 2.455542631018885, + "slowbro": 2.334742729884409, + "magneton": 2.71139993281483, + "haunter": 4.214333788770761, + "kingler": 3.543774322428061, + "exeggutor": 1.7470322053738423, + "marowak": 2.7797448784511185, + "marowak-alola": 2.0067111027698488, + "hitmonlee": 2.727638924047984, + "hitmonchan": 2.558358465953977, + "lickitung": 1.85692062683421, + "weezing": 1.5259174475493966, + "weezing-galar": 2.5700777413186975, + "rhydon": 2.1307741870410424, + "chansey": 18.46384380261167, + "tangela": 5.105325689162001, + "kangaskhan": 1.8110293708917475, + "seadra": 6.496726408601224, + "seaking": 2.6710153153456906, + "starmie": 1.7885309292834972, + "mr-mime": 6.003984987659096, + "mr-mime-galar": 3.350408541753992, + "scyther": 3.564016112106793, + "jynx": 3.7501731511691503, + "electabuzz": 2.5523500354078212, + "magmar": 1.499416569774835, + "tauros": 1.9548678214171906, + "ditto": 3.2191192453978905, + "vaporeon": 3.696873259876289, + "jolteon": 1.78044644133844, + "flareon": 2.071721466687909, + "porygon": 2.786673646953676, + "dragonair": 2.685478770682665, + "noctowl": 6.648519186810349, + "lanturn": 1.8380286192860726, + "togetic": 6.401855125499784, + "xatu": 5.006355454096928, + "bellossom": 2.1829112259426733, + "azumarill": 3.019650019515018, + "sudowoodo": 2.500130185732104, + "politoed": 2.8263732753813073, + "quagsire": 4.7361938229072456, + "slowking": 2.8268999878641146, + "dunsparce": 3.305342142213118, + "qwilfish": 4.226624901184209, + "sneasel": 2.6966223264119713, + "piloswine": 1.5637071995990415, + "octillery": 2.9475604617124525, + "mantine": 3.974430025767691, + "skarmory": 3.2772852651309714, + "hitmontop": 3.086906233058433, + "miltank": 3.512820039390787, + "grovyle": 7.397768156342142, + "sceptile": 1.4009977811309322, + "combusken": 3.4258694912424668, + "blaziken": 1.6072124200747204, + "marshtomp": 2.201248141974582, + "swampert": 1.1366963721058658, + "linoone": 4.964320087084409, + "linoone-galar": 6.264645167710225, + "pelipper": 12.744280231298257, + "ninjask": 9.570260277430906, + "exploud": 1.545333860571628, + "lairon": 2.4811941710463525, + "manectric": 1.7192353971729357, + "roselia": 3.0748526656540376, + "sharpedo": 6.933695842341171, + "wailmer": 8.507403750853738, + "torkoal": 1.9395098554201367, + "flygon": 3.1675370855924916, + "altaria": 2.0086346945577858, + "whiscash": 1.9206652686000556, + "crawdaunt": 2.7900146576005533, + "claydol": 3.082393153541023, + "cradily": 2.0175555583638896, + "armaldo": 1.7676841373005505, + "dusclops": 3.3114661425573804, + "absol": 2.4931815839153426, + "glalie": 4.039006261658283, + "sealeo": 3.921728645312265, + "relicanth": 2.6504026898872866, + "metang": 2.87031487440417, + "luxray": 3.7688806019244057, + "vespiquen": 3.6565982362992546, + "cherrim": 5.413215447359339, + "gastrodon": 1.980856696043511, + "drifblim": 5.533002411319014, + "lopunny": 3.5375893015130915, + "skuntank": 1.4575338639348827, + "bronzong": 2.9361918694292655, + "munchlax": 1.856960402901474, + "drapion": 2.6041547135849763, + "abomasnow": 2.8902827532971647, + "froslass": 2.7710466805696257, + "rotom": 3.727823485251011, + "stoutland": 2.2249420504272095, + "liepard": 9.005730344574527, + "musharna": 1.4435924004523943, + "unfezant": 9.317370831314452, + "boldore": 3.332405589219145, + "swoobat": 7.168841216860695, + "audino": 2.1201167113037336, + "gurdurr": 3.041274873133606, + "palpitoad": 3.420454084174651, + "seismitoad": 5.267587516912524, + "scolipede": 3.3641149116482563, + "whimsicott": 3.071027555999526, + "lilligant": 2.9863533203453616, + "basculin-red-striped": 3.5781728242197515, + "basculin-blue-striped": 4.84951610344022, + "krookodile": 3.478894847036237, + "maractus": 2.1250303741297314, + "crustle": 2.2161274020450494, + "sigilyph": 3.0028786425429246, + "cofagrigus": 2.6245260934109806, + "garbodor": 1.5997407100409449, + "cinccino": 4.276560227227978, + "vanillish": 2.015109069717428, + "emolga": 3.2780969532125024, + "escavalier": 1.6320039156442774, + "amoonguss": 1.7970064116164566, + "jellicent": 1.8370310633810214, + "galvantula": 1.6800613449365742, + "klang": 2.806515683665679, + "klinklang": 3.2322128744066276, + "beheeyem": 1.7254008856232534, + "lampent": 2.444085819921975, + "fraxure": 2.504853729817911, + "beartic": 1.6846525494274962, + "cryogonal": 1.4863657821202567, + "accelgor": 3.024976007467316, + "stunfisk": 1.1675714624728712, + "stunfisk-galar": 1.7611136304556523, + "mienshao": 4.263236036832232, + "druddigon": 2.2516053055263896, + "golurk": 1.7334449728933297, + "bisharp": 2.33464903427127, + "bouffalant": 1.274080066552262, + "heatmor": 1.8193201168488016, + "durant": 3.3806186457424343, + "diggersby": 2.656146162129576, + "talonflame": 3.851539565961213, + "pangoro": 3.487373600986121, + "doublade": 2.763016861274851, + "malamar": 3.785629226884521, + "barbaracle": 1.7894511462464355, + "heliolisk": 3.2018191073997997, + "tyrantrum": 2.3486703045345765, + "aurorus": 2.31819225019982, + "hawlucha": 4.530229822614256, + "dedenne": 2.7689072191664232, + "klefki": 2.9385318047431648, + "trevenant": 2.8596039102122752, + "gourgeist-average": 5.168940368124693, + "charjabug": 3.8657509552134455, + "vikavolt": 1.7926775184553394, + "ribombee": 4.680841516030752, + "lycanroc-midday": 3.150391963402633, + "lycanroc-midnight": 2.3444482180940858, + "mudsdale": 1.5329328720901907, + "araquanid": 2.678782505855151, + "lurantis": 2.3152694802554095, + "shiinotic": 4.0494930660577175, + "salazzle": 2.908397895039305, + "bewear": 2.248201257527562, + "tsareena": 2.963719865053141, + "comfey": 4.192421663298433, + "oranguru": 2.4430854315117863, + "passimian": 3.2820076248270604, + "palossand": 1.8613905847523993, + "pyukumuku": 50.34791703942079, + "togedemaru": 1.754985886697206, + "mimikyu-disguised": 3.6032030418869536, + "greedent": 2.030845121864911, + "orbeetle": 1.8155985432114625, + "thievul": 2.2148923756063046, + "eldegoss": 3.5533843679928054, + "dubwool": 2.8642186067077064, + "drednaw": 1.6021824966881835, + "boltund": 4.922608052082165, + "carkol": 2.2988773743267648, + "coalossal": 1.932476365335467, + "sandaconda": 3.2321303398729797, + "cramorant": 9.039539459769657, + "barraskewda": 6.593985297880854, + "toxtricity-amped": 2.1959142516981753, + "centiskorch": 1.7374309456404107, + "grapploct": 2.249900288903968, + "polteageist": 2.4084445336504983, + "hatterene": 2.3541344238344584, + "grimmsnarl": 5.1928474507876645, + "obstagoon": 3.3426850593196225, + "perrserker": 3.4814925606315263, + "alcremie": 1.296488462705974, + "falinks": 4.47892739222474, + "pincurchin": 2.9940049729071356, + "frosmoth": 2.680916676273497, + "indeedee-male": 2.865733407066571, + "morpeko": 3.67300847638807, + "copperajah": 2.3172816939986864, + "duraludon": 1.965007310443926, + "drakloak": 6.502658917215996 }, "klefki": { - "ivysaur": 3.4023104199223897, - "charmeleon": 3.0242437524162016, - "wartortle": 2.7088947842939577, - "butterfree": 5.398895176545878, - "raichu": 5.2797685429077745, - "raichu-alola": 3.822455786770938, - "sandslash": 2.314668275762237, - "sandslash-alola": 2.283311988786167, - "nidoqueen": 2.664185587726325, - "nidoking": 1.679582104509171, - "clefairy": 10.672011291300285, - "clefable": 2.8986107220718567, - "jigglypuff": 36.47277897999356, - "wigglytuff": 2.8438152452126535, - "gloom": 6.327982947238666, - "vileplume": 3.199850098457305, - "dugtrio": 3.6600597325895343, - "dugtrio-alola": 2.7285110286852037, - "persian": 4.643417331456892, - "persian-alola": 6.113949845229566, - "golduck": 3.084931286256341, - "poliwrath": 2.4658483567700857, - "kadabra": 4.681483931578965, - "machoke": 5.065772206955747, - "tentacruel": 2.1465692807543753, - "slowbro": 1.6854544725096898, - "magneton": 2.493037140858932, - "haunter": 4.480885553792112, - "kingler": 2.1126849933247276, - "exeggutor": 1.9787428737881436, - "marowak": 2.9830506623050703, - "marowak-alola": 1.5959399679010766, - "hitmonlee": 3.3837989427176263, - "hitmonchan": 2.861086191533415, - "lickitung": 1.9561605766138932, - "weezing": 1.6277872051791507, - "weezing-galar": 3.8560070986514146, - "rhydon": 3.0796095690374514, - "chansey": 32.55546826036522, - "tangela": 5.929258682765682, - "kangaskhan": 1.9412777650272741, - "seadra": 4.019268900311678, - "seaking": 2.4849841927526, - "starmie": 1.5481984571916731, - "mr-mime": 8.40650532560877, - "mr-mime-galar": 4.715911341259632, - "scyther": 2.9192562944098057, - "jynx": 5.161843788366909, - "electabuzz": 2.667673223862197, - "magmar": 1.2742875691591067, - "tauros": 2.0489298537106038, - "ditto": 3.4169441937705125, - "vaporeon": 3.426938608994716, - "jolteon": 2.0943420831906026, - "flareon": 1.7764051784875234, - "porygon": 2.9467662753819117, - "dragonair": 2.8383445866946997, - "noctowl": 6.730221885661548, - "lanturn": 1.9578857138257284, - "togetic": 6.225625060419485, - "xatu": 4.0748567000515035, - "bellossom": 2.54687983500531, - "azumarill": 2.2905443544862534, - "sudowoodo": 3.499893087728472, - "politoed": 2.4973220777651886, - "quagsire": 4.378459001216575, - "slowking": 2.6533578265213316, - "dunsparce": 3.4641625215807856, - "qwilfish": 3.1139231946192543, - "sneasel": 3.1179762051421123, - "piloswine": 2.227904745851235, - "octillery": 2.419530293594359, - "mantine": 2.7300170442675156, - "skarmory": 1.868898958334458, - "hitmontop": 3.435683870068551, - "miltank": 4.04380496081413, - "grovyle": 8.570790010650207, - "sceptile": 1.6023374064673175, - "combusken": 3.077711221786732, - "blaziken": 1.4480351751072496, - "marshtomp": 2.381784829972535, - "swampert": 1.2198720932896405, - "linoone": 5.476287080466851, - "linoone-galar": 6.384504207624561, - "pelipper": 6.200155211041674, - "ninjask": 8.132377143596058, - "exploud": 1.7431986839810996, - "lairon": 2.820125235073796, - "manectric": 1.7387306579375013, - "roselia": 3.955656952955025, - "sharpedo": 6.987561890374515, - "wailmer": 6.568226822603828, - "torkoal": 1.3691341454808692, - "flygon": 3.2695611371162845, - "altaria": 2.082172909923366, - "whiscash": 2.0801810518973305, - "crawdaunt": 2.4272582344181495, - "claydol": 3.6048129392381876, - "cradily": 3.099940890097054, - "armaldo": 2.5294257518899173, - "dusclops": 3.42556157431014, - "absol": 2.6243342096597004, - "glalie": 5.533352807360831, - "sealeo": 3.2145645050322003, - "relicanth": 2.1478496467429613, - "metang": 2.4965162165743053, - "luxray": 3.8640205003687194, - "vespiquen": 2.9061181119987314, - "cherrim": 6.258479392072822, - "gastrodon": 2.3113975298991027, - "drifblim": 4.448569840923069, - "lopunny": 3.889969346277601, - "skuntank": 1.433723824891337, - "bronzong": 2.7018488163880385, - "munchlax": 2.500901797232015, - "drapion": 2.6927163611742784, - "abomasnow": 4.135527465827938, - "froslass": 3.920522465673036, - "rotom": 3.6142070077179564, - "stoutland": 2.5941507426642243, - "liepard": 9.761710898677443, - "musharna": 1.6667879967035903, - "unfezant": 7.005837428144896, - "boldore": 4.7687509662362615, - "swoobat": 5.832960407237007, - "audino": 2.3061524214312863, - "gurdurr": 2.446743667204213, - "palpitoad": 3.57140954393805, - "seismitoad": 7.348266297942182, - "scolipede": 3.5513171405991035, - "whimsicott": 4.4238345995218005, - "lilligant": 3.297888904438598, - "basculin-red-striped": 2.7974341136216734, - "basculin-blue-striped": 3.5726460769348467, - "krookodile": 3.4155081085029213, - "maractus": 2.3484031987348373, - "crustle": 3.095968204169217, - "sigilyph": 2.41589244784206, - "cofagrigus": 2.744610030313238, - "garbodor": 2.009599983761727, - "cinccino": 4.914797238780446, - "vanillish": 2.891961571365342, - "emolga": 3.0171897629631004, - "escavalier": 1.4629738888041124, - "amoonguss": 2.831432376127136, - "jellicent": 1.7947835571338022, - "galvantula": 1.5897449457559563, - "klang": 2.306659538094112, - "klinklang": 2.8841070096255974, - "beheeyem": 1.9903203784175092, - "lampent": 1.7127007945845651, - "fraxure": 2.258013758187955, - "beartic": 2.303559178726842, - "cryogonal": 2.104171548917497, - "accelgor": 3.72703670437107, - "stunfisk": 1.2239304734501482, - "stunfisk-galar": 1.8465016530234062, - "mienshao": 4.543407606210468, - "druddigon": 2.370680888721772, - "golurk": 1.7544089592675287, - "bisharp": 2.536533305583903, - "bouffalant": 1.3265358411291048, - "heatmor": 1.4063620105385746, - "durant": 2.7752922236875417, - "diggersby": 2.9747036923182923, - "talonflame": 2.336589602518374, - "pangoro": 3.2859995443398473, - "doublade": 2.1314602528435715, - "malamar": 3.67014914137992, - "barbaracle": 1.5945840847402997, - "heliolisk": 3.8186342094013557, - "tyrantrum": 2.4765134861526468, - "aurorus": 3.9985108986752307, - "hawlucha": 4.657365188472182, - "dedenne": 3.1750509164673506, - "trevenant": 3.138694385216078, - "gourgeist-average": 5.026997166720935, - "charjabug": 3.6491952799165244, - "vikavolt": 1.8751319326634612, - "ribombee": 6.5083018320898685, - "lycanroc-midday": 4.516919930291656, - "lycanroc-midnight": 3.1198410572737805, - "mudsdale": 1.5428413520413689, - "araquanid": 2.6596771664084953, - "lurantis": 2.5946299262512555, - "shiinotic": 5.8194617764866905, - "salazzle": 2.559179245072933, - "bewear": 2.3253476959012933, - "tsareena": 3.2944953208887355, - "comfey": 6.015968256627399, - "oranguru": 2.990021406463908, - "passimian": 2.850842547483516, - "palossand": 1.949362874385705, - "pyukumuku": 48.29497386068961, - "togedemaru": 1.9240379800536986, - "mimikyu-disguised": 5.1986225913860915, - "greedent": 2.2922012219052688, - "orbeetle": 2.0276558798563586, - "thievul": 2.481774722930648, - "eldegoss": 4.30243823643638, - "dubwool": 3.1058025173068673, - "drednaw": 1.3774012670395974, - "boltund": 4.794030200215025, - "carkol": 2.329259680837469, - "coalossal": 1.8810667350029429, - "sandaconda": 3.3632450144190478, - "cramorant": 6.00817764575487, - "barraskewda": 4.820819447251271, - "toxtricity-amped": 2.3749188170865674, - "centiskorch": 1.6569285038833106, - "grapploct": 2.0876430666998207, - "polteageist": 3.1123284585072266, - "hatterene": 3.4534156089209196, - "grimmsnarl": 5.429022521045466, - "obstagoon": 3.2472523751019384, - "perrserker": 2.830092405442159, - "alcremie": 1.7854219392798176, - "falinks": 3.725327677386435, - "pincurchin": 2.855874232779863, - "frosmoth": 3.4938176873689164, - "indeedee-male": 3.2818446483460475, - "morpeko": 3.6086305404566823, - "copperajah": 1.9313308744421422, - "duraludon": 1.513785527611693, - "drakloak": 6.559087263470342, - "klefki": 3.1624634534537375 + "ivysaur": 3.407182017015195, + "charmeleon": 3.0145566721572816, + "wartortle": 2.7074226002509567, + "butterfree": 5.410509743335938, + "raichu": 5.276390686278134, + "raichu-alola": 3.8218166552315034, + "sandslash": 2.3145081403386625, + "sandslash-alola": 2.2843689318069393, + "nidoqueen": 2.6608029669010484, + "nidoking": 1.6760628703085225, + "clefairy": 10.671670268794696, + "clefable": 2.90618409614911, + "jigglypuff": 36.56407208263202, + "wigglytuff": 2.850635639089542, + "gloom": 6.339692322833035, + "vileplume": 3.203947446415846, + "dugtrio": 3.6535974284374104, + "dugtrio-alola": 2.721587769606132, + "persian": 4.648698122197288, + "persian-alola": 6.128544513961462, + "golduck": 3.083198044625953, + "poliwrath": 2.4678335759195402, + "kadabra": 4.68679025642145, + "machoke": 5.075726610751717, + "tentacruel": 2.145064399531252, + "slowbro": 1.683771397330002, + "magneton": 2.4867751771523525, + "haunter": 4.482398364895186, + "kingler": 2.1089122607399498, + "exeggutor": 1.9783788241252958, + "marowak": 2.9795941726209123, + "marowak-alola": 1.5915630093966824, + "hitmonlee": 3.385338097778802, + "hitmonchan": 2.8629017440010305, + "lickitung": 1.956615148590807, + "weezing": 1.6290001947098434, + "weezing-galar": 3.860980794222722, + "rhydon": 3.0785645561140287, + "chansey": 32.5807842855477, + "tangela": 5.937603032045432, + "kangaskhan": 1.9430859352142895, + "seadra": 4.019503415949437, + "seaking": 2.483634954239843, + "starmie": 1.5494080557536618, + "mr-mime": 8.425052549675538, + "mr-mime-galar": 4.724014698436629, + "scyther": 2.9235950083531828, + "jynx": 5.170014797727026, + "electabuzz": 2.665852893602482, + "magmar": 1.2701970793462112, + "tauros": 2.0482788564447487, + "ditto": 3.4008211082731092, + "vaporeon": 3.426303650617183, + "jolteon": 2.0931840161908597, + "flareon": 1.7712914411312273, + "porygon": 2.9490253517279323, + "dragonair": 2.847987102919353, + "noctowl": 6.739456538792183, + "lanturn": 1.956175295619082, + "togetic": 6.225475051739023, + "xatu": 4.0798680936596945, + "bellossom": 2.550038982324551, + "azumarill": 2.2943321195755964, + "sudowoodo": 3.502526111433781, + "politoed": 2.493360516094757, + "quagsire": 4.374066219109866, + "slowking": 2.653625771379953, + "dunsparce": 3.4681383872536378, + "qwilfish": 3.1129310846265836, + "sneasel": 3.1263957683457715, + "piloswine": 2.2322509224124953, + "octillery": 2.4194951815495047, + "mantine": 2.730887758971191, + "skarmory": 1.8693197373548585, + "hitmontop": 3.4377569866030013, + "miltank": 4.0491681241242965, + "grovyle": 8.57739038704329, + "sceptile": 1.605197673314842, + "combusken": 3.0719994159337976, + "blaziken": 1.4445417766694029, + "marshtomp": 2.378754026653727, + "swampert": 1.217730903937289, + "linoone": 5.481311356427205, + "linoone-galar": 6.398028880736804, + "pelipper": 6.2036522272060814, + "ninjask": 8.14305350892241, + "exploud": 1.7444584858735785, + "lairon": 2.8202089487873416, + "manectric": 1.7363195949995345, + "roselia": 3.95761450948413, + "sharpedo": 7.000971823233103, + "wailmer": 6.565293456273574, + "torkoal": 1.3644447216605071, + "flygon": 3.276540690649611, + "altaria": 2.085777637113005, + "whiscash": 2.0802800319510317, + "crawdaunt": 2.429688318073657, + "claydol": 3.608755503667446, + "cradily": 3.108511841500287, + "armaldo": 2.5333074931840343, + "dusclops": 3.4281417404124657, + "absol": 2.6277479481692243, + "glalie": 5.543878462176557, + "sealeo": 3.2149284774082254, + "relicanth": 2.149837007774526, + "metang": 2.493631203778877, + "luxray": 3.862371847384303, + "vespiquen": 2.9100250065595117, + "cherrim": 6.265167087321668, + "gastrodon": 2.312431050321565, + "drifblim": 4.450738738426164, + "lopunny": 3.8931552188313305, + "skuntank": 1.435415924458353, + "bronzong": 2.7007374509973383, + "munchlax": 2.501331676605237, + "drapion": 2.6972039712455755, + "abomasnow": 4.142852541864817, + "froslass": 3.9280958341656245, + "rotom": 3.612467535603651, + "stoutland": 2.596896440277038, + "liepard": 9.786570553723667, + "musharna": 1.6688511371042627, + "unfezant": 7.017692973616937, + "boldore": 4.772877701099619, + "swoobat": 5.840176677136098, + "audino": 2.304484740625064, + "gurdurr": 2.446753529529469, + "palpitoad": 3.5655096645433684, + "seismitoad": 7.36299661107932, + "scolipede": 3.5559451938957523, + "whimsicott": 4.435045978891825, + "lilligant": 3.3032292132895327, + "basculin-red-striped": 2.7966579090512242, + "basculin-blue-striped": 3.5708286581507136, + "krookodile": 3.4166229235242396, + "maractus": 2.351947862593513, + "crustle": 3.104098442760206, + "sigilyph": 2.417604666309569, + "cofagrigus": 2.746367993520022, + "garbodor": 2.013878058907988, + "cinccino": 4.920848278569498, + "vanillish": 2.897622983128405, + "emolga": 3.0165141813918575, + "escavalier": 1.4601031696169542, + "amoonguss": 2.8371902799325106, + "jellicent": 1.7965616729255025, + "galvantula": 1.5892667060861048, + "klang": 2.303581361336878, + "klinklang": 2.8808834300395096, + "beheeyem": 1.992750902635197, + "lampent": 1.7071517630521411, + "fraxure": 2.2675548040764824, + "beartic": 2.3066508595345256, + "cryogonal": 2.1079258256112787, + "accelgor": 3.736656418721288, + "stunfisk": 1.221151204924989, + "stunfisk-galar": 1.842326014783576, + "mienshao": 4.5520229860954275, + "druddigon": 2.373492399618149, + "golurk": 1.7531436902428723, + "bisharp": 2.539982195845035, + "bouffalant": 1.3276501278583703, + "heatmor": 1.4014814575328671, + "durant": 2.774039503857926, + "diggersby": 2.9702429021780934, + "talonflame": 2.3308779621285733, + "pangoro": 3.294575486347223, + "doublade": 2.1300726385969035, + "malamar": 3.6762756620955743, + "barbaracle": 1.5957826045006134, + "heliolisk": 3.815530450584947, + "tyrantrum": 2.484647542560822, + "aurorus": 4.007009773428219, + "hawlucha": 4.668511468993861, + "dedenne": 3.177121430312205, + "klefki": 3.1624634534537375, + "trevenant": 3.14232945889944, + "gourgeist-average": 5.020319286325504, + "charjabug": 3.642130508675963, + "vikavolt": 1.8760719626689462, + "ribombee": 6.528382088281123, + "lycanroc-midday": 4.5276680196306645, + "lycanroc-midnight": 3.1258366427193494, + "mudsdale": 1.5420823148538776, + "araquanid": 2.6632016405305694, + "lurantis": 2.5983712841133286, + "shiinotic": 5.832230612368102, + "salazzle": 2.5505677315098687, + "bewear": 2.3302556359539035, + "tsareena": 3.2991048070704325, + "comfey": 6.032199680443113, + "oranguru": 2.9935566408667875, + "passimian": 2.8561155041620907, + "palossand": 1.946958568210948, + "pyukumuku": 48.334465222086486, + "togedemaru": 1.9215377949019707, + "mimikyu-disguised": 5.2075192616573265, + "greedent": 2.2939498195970573, + "orbeetle": 2.030300609458881, + "thievul": 2.484785571230941, + "eldegoss": 4.307651247726525, + "dubwool": 3.1078434896237503, + "drednaw": 1.3778604757750461, + "boltund": 4.793711408340259, + "carkol": 2.323196865018719, + "coalossal": 1.8774151081781172, + "sandaconda": 3.364178882560891, + "cramorant": 6.009182402127234, + "barraskewda": 4.824353087722303, + "toxtricity-amped": 2.3712075663454906, + "centiskorch": 1.6520938244711723, + "grapploct": 2.0894719233193797, + "polteageist": 3.118376027383869, + "hatterene": 3.4621309042041295, + "grimmsnarl": 5.445694832118008, + "obstagoon": 3.252277764362238, + "perrserker": 2.827559292931512, + "alcremie": 1.7871413833873477, + "falinks": 3.730843653633155, + "pincurchin": 2.8529122356583367, + "frosmoth": 3.5006772411440408, + "indeedee-male": 3.2790335125398635, + "morpeko": 3.6117052933407967, + "copperajah": 1.9279332071912445, + "duraludon": 1.5141099715435886, + "drakloak": 6.5788163444387076 }, "trevenant": { - "ivysaur": 2.737482669690002, - "charmeleon": 3.2634266905618268, - "wartortle": 4.232862487898764, - "butterfree": 3.8511876507365472, - "raichu": 6.681635173299846, - "raichu-alola": 4.3662143825530215, - "sandslash": 2.8386139348455846, - "sandslash-alola": 2.5546141553593653, - "nidoqueen": 2.9517635649398004, - "nidoking": 1.9281508670724756, - "clefairy": 10.167195537703826, - "clefable": 2.354192441595923, - "jigglypuff": 30.71673178433213, - "wigglytuff": 2.3186020608661817, - "gloom": 4.575267195397294, - "vileplume": 2.5000180403853713, - "dugtrio": 5.93918762489163, - "dugtrio-alola": 3.958628500654075, - "persian": 5.614526493342386, - "persian-alola": 4.182075564954651, - "golduck": 5.115205875193604, - "poliwrath": 3.1881164693624435, - "kadabra": 4.892068999932716, - "machoke": 4.17606273062542, - "tentacruel": 2.9985420807408594, - "slowbro": 2.3033222841334133, - "magneton": 3.4796535812928155, - "haunter": 3.8629272371195795, - "kingler": 3.3403710238333066, - "exeggutor": 1.8527582145782606, - "marowak": 4.071981345697373, - "marowak-alola": 1.5317143082030875, - "hitmonlee": 3.1112049413153007, - "hitmonchan": 2.359559218464554, - "lickitung": 2.1774342004547336, - "weezing": 1.1974071007565177, - "weezing-galar": 2.086297743607888, - "rhydon": 3.563164426339301, - "chansey": 43.102900501157336, - "tangela": 4.520947926627084, - "kangaskhan": 2.1345509494626844, - "seadra": 5.669454012159832, - "seaking": 3.8478109623794294, - "starmie": 2.0082290070484548, - "mr-mime": 8.162513363847332, - "mr-mime-galar": 3.6592736768215213, - "scyther": 2.0151832092080344, - "jynx": 5.097032217342321, - "electabuzz": 3.3480072499629365, - "magmar": 1.4425346937429344, - "tauros": 2.339086488795678, - "ditto": 3.976625769118283, - "vaporeon": 6.014956189714221, - "jolteon": 2.451563474576429, - "flareon": 2.0043597404280984, - "porygon": 3.116211370313114, - "dragonair": 1.6258903619518614, - "noctowl": 5.597607825528193, - "lanturn": 3.4501596493471167, - "togetic": 4.4869495112722095, - "xatu": 3.18889715985545, - "bellossom": 2.233508911904681, - "azumarill": 1.6830989003036616, - "sudowoodo": 3.411410731480359, - "politoed": 4.477571675546994, - "quagsire": 10.782206131416482, - "slowking": 3.7750232955882312, - "dunsparce": 3.241368920940511, - "qwilfish": 3.5708901206834494, - "sneasel": 3.001626785629293, - "piloswine": 1.995109735987734, - "octillery": 3.5972227112023996, - "mantine": 2.9229677714118365, - "skarmory": 1.5256652380988487, - "hitmontop": 3.059643519481833, - "miltank": 4.197932374538746, - "grovyle": 8.373629815044584, - "sceptile": 1.3835804189018157, - "combusken": 3.1683197489989627, - "blaziken": 1.427247426304967, - "marshtomp": 5.770856460157751, - "swampert": 2.7517109913758677, - "linoone": 5.918514162681513, - "linoone-galar": 5.8337403002663475, - "pelipper": 6.34530736781109, - "ninjask": 6.059195143174158, - "exploud": 1.9018792142052228, - "lairon": 2.8089893171790448, - "manectric": 2.027092936733162, - "roselia": 3.5702947955966198, - "sharpedo": 7.014399271298548, - "wailmer": 9.721299441180683, - "torkoal": 1.3869219812135105, - "flygon": 2.5921714277485055, - "altaria": 1.2141732409635353, - "whiscash": 4.854042577076942, - "crawdaunt": 2.756069907704518, - "claydol": 5.174613872032724, - "cradily": 2.6575314294716015, - "armaldo": 1.9609635817974649, - "dusclops": 3.3036985984509037, - "absol": 2.03029199963846, - "glalie": 4.037464917423483, - "sealeo": 4.505434019199762, - "relicanth": 3.3053925559171535, - "metang": 2.5910100945362795, - "luxray": 4.719587896975939, - "vespiquen": 2.1210677011757775, - "cherrim": 6.018747799367375, - "gastrodon": 5.495262611246089, - "drifblim": 3.986034775356831, - "lopunny": 4.614231120084797, - "skuntank": 1.1440563400070982, - "bronzong": 2.8043883803995255, - "munchlax": 2.9488781726309354, - "drapion": 1.9262719120595486, - "abomasnow": 3.5177002391209493, - "froslass": 2.732703565720441, - "rotom": 3.9666635514692845, - "stoutland": 3.308504080591458, - "liepard": 7.227512806624244, - "musharna": 1.7247969903061096, - "unfezant": 4.756795307070239, - "boldore": 4.027222706374199, - "swoobat": 4.568336130319219, - "audino": 2.89609723911548, - "gurdurr": 2.548326190645087, - "palpitoad": 9.084761791258913, - "seismitoad": 15.48739377489337, - "scolipede": 2.3259963784480417, - "whimsicott": 2.7330965731151773, - "lilligant": 2.9347362992559622, - "basculin-red-striped": 4.058204912023113, - "basculin-blue-striped": 5.231514123744838, - "krookodile": 3.7119432975208007, - "maractus": 2.0821866038490384, - "crustle": 2.1216168162268767, - "sigilyph": 1.9664685491674114, - "cofagrigus": 2.456627232313373, - "garbodor": 1.6758772622567233, - "cinccino": 5.389056873328386, - "vanillish": 2.333896009036185, - "emolga": 2.76442315191026, - "escavalier": 1.71323476064008, - "amoonguss": 2.1194684228151806, - "jellicent": 2.5689854786090254, - "galvantula": 1.5025674455957596, - "klang": 3.1465212223230585, - "klinklang": 3.7809365488104474, - "beheeyem": 2.010874352003647, - "lampent": 1.8989406579095551, - "fraxure": 1.378945222088903, - "beartic": 1.782704116945767, - "cryogonal": 1.9652237857043247, - "accelgor": 2.838798118003619, - "stunfisk": 2.104603769259967, - "stunfisk-galar": 2.480896876301591, - "mienshao": 4.1176276060419825, - "druddigon": 1.5420776804258767, - "golurk": 2.8072964013572004, - "bisharp": 3.1541961024634126, - "bouffalant": 1.535837471329895, - "heatmor": 1.5662859154637996, - "durant": 2.479864575554546, - "diggersby": 4.979742654904936, - "talonflame": 2.0960077066873133, - "pangoro": 1.9319500228200266, - "doublade": 1.8077317507512978, - "malamar": 2.826525099542767, - "barbaracle": 2.8457806126236616, - "heliolisk": 5.111125563430349, - "tyrantrum": 1.697978128929846, - "aurorus": 3.486545639492773, - "hawlucha": 3.051061923338766, - "dedenne": 3.3968351876337763, - "klefki": 2.7189046380997466, - "gourgeist-average": 3.761510320501528, - "charjabug": 3.641091975942414, - "vikavolt": 1.6331222678332602, - "ribombee": 4.20093126618903, - "lycanroc-midday": 4.83982873751015, - "lycanroc-midnight": 3.3031801919878836, - "mudsdale": 2.3008249990827667, - "araquanid": 2.791584230860631, - "lurantis": 2.3905895039113965, - "shiinotic": 4.224036631945844, - "salazzle": 2.3993261356968327, - "bewear": 2.1330590556787143, - "tsareena": 2.7882676513057287, - "comfey": 5.248007701436789, - "oranguru": 3.034448396600378, - "passimian": 2.408268775976696, - "palossand": 2.7346699960462812, - "pyukumuku": 65.10477884082113, - "togedemaru": 2.648601792098333, - "mimikyu-disguised": 4.455645541594529, - "greedent": 2.4773328429935084, - "orbeetle": 1.6455444311449885, - "thievul": 1.8605233241497374, - "eldegoss": 4.082641215064969, - "dubwool": 3.7845411325803795, - "drednaw": 2.499731518977116, - "boltund": 4.9088823005184015, - "carkol": 2.3810176282099933, - "coalossal": 1.9941548024887883, - "sandaconda": 4.037678400882495, - "cramorant": 6.200819746869174, - "barraskewda": 6.364698153846168, - "toxtricity-amped": 2.9196450698035754, - "centiskorch": 1.6833678904551315, - "grapploct": 2.019201541717, - "polteageist": 3.2183676980735, - "hatterene": 2.753509124697878, - "grimmsnarl": 4.069807609817842, - "obstagoon": 3.579565667636353, - "perrserker": 3.136716805416651, - "alcremie": 1.690439022398013, - "falinks": 3.2943646206240524, - "pincurchin": 3.3475393016638897, - "frosmoth": 2.5078068403138074, - "indeedee-male": 3.4400837008093337, - "morpeko": 3.0363755450488945, - "copperajah": 2.7884702832581985, - "duraludon": 1.5445478763629659, - "drakloak": 3.576354472041821, - "trevenant": 2.973071715062659 + "ivysaur": 2.7355151479161575, + "charmeleon": 3.2554911842253467, + "wartortle": 4.242598016410442, + "butterfree": 3.84366052062335, + "raichu": 6.702931272608781, + "raichu-alola": 4.371169935150018, + "sandslash": 2.8431769453577784, + "sandslash-alola": 2.555760422675796, + "nidoqueen": 2.950176630983513, + "nidoking": 1.926810768876349, + "clefairy": 10.162418009196605, + "clefable": 2.354657338429827, + "jigglypuff": 30.737265472772915, + "wigglytuff": 2.321431987666455, + "gloom": 4.566013212632548, + "vileplume": 2.497678025451277, + "dugtrio": 5.955219973946548, + "dugtrio-alola": 3.96343750952731, + "persian": 5.634576598102303, + "persian-alola": 4.177963504319483, + "golduck": 5.1333939580467085, + "poliwrath": 3.2014937316070418, + "kadabra": 4.895195247841956, + "machoke": 4.178070826805014, + "tentacruel": 3.003088377943637, + "slowbro": 2.3024297403274865, + "magneton": 3.4826975455752347, + "haunter": 3.8544736870016756, + "kingler": 3.349237733994961, + "exeggutor": 1.8520532281741466, + "marowak": 4.074136748310108, + "marowak-alola": 1.525388787537839, + "hitmonlee": 3.119169961751437, + "hitmonchan": 2.359426651686226, + "lickitung": 2.1813483697994753, + "weezing": 1.1938049878902623, + "weezing-galar": 2.0808476223784513, + "rhydon": 3.5694947133312467, + "chansey": 43.34993542278018, + "tangela": 4.521760349814343, + "kangaskhan": 2.1373741045323555, + "seadra": 5.680331857302928, + "seaking": 3.8547383391249417, + "starmie": 2.0088724580769854, + "mr-mime": 8.16133842894218, + "mr-mime-galar": 3.6548998686858534, + "scyther": 2.0072614442296803, + "jynx": 5.095186916357865, + "electabuzz": 3.3568073823606754, + "magmar": 1.4400602380875895, + "tauros": 2.344366275220924, + "ditto": 3.9464207105481997, + "vaporeon": 6.039937268819282, + "jolteon": 2.4544555036210207, + "flareon": 2.0006022693178984, + "porygon": 3.117528705032849, + "dragonair": 1.6239295675166305, + "noctowl": 5.59463539093446, + "lanturn": 3.462601341126645, + "togetic": 4.475274938516038, + "xatu": 3.179060875590568, + "bellossom": 2.233841777133099, + "azumarill": 1.671658036656651, + "sudowoodo": 3.4196138195752335, + "politoed": 4.494206859898481, + "quagsire": 10.83152203664639, + "slowking": 3.777393910770419, + "dunsparce": 3.237120603709293, + "qwilfish": 3.5708075539930606, + "sneasel": 2.99791532900858, + "piloswine": 1.9973073035793654, + "octillery": 3.6036997597990412, + "mantine": 2.923294043835852, + "skarmory": 1.5212238530801514, + "hitmontop": 3.063276396556174, + "miltank": 4.2081486701465005, + "grovyle": 8.388166918126055, + "sceptile": 1.3841930350611031, + "combusken": 3.1693374029637003, + "blaziken": 1.4256176583314975, + "marshtomp": 5.78764969797619, + "swampert": 2.7600377827425326, + "linoone": 5.924187552662713, + "linoone-galar": 5.828440482933125, + "pelipper": 6.342487973521298, + "ninjask": 6.044269613093974, + "exploud": 1.9071601426118479, + "lairon": 2.810442963909975, + "manectric": 2.0278975681824924, + "roselia": 3.569721185948953, + "sharpedo": 7.019036651966402, + "wailmer": 9.733084929378412, + "torkoal": 1.3833180514733479, + "flygon": 2.5924262901333996, + "altaria": 1.2108441610377447, + "whiscash": 4.864654103875672, + "crawdaunt": 2.7588439256503583, + "claydol": 5.183184520076612, + "cradily": 2.6617037186824613, + "armaldo": 1.9614130082910772, + "dusclops": 3.2947950332390734, + "absol": 2.028955693213801, + "glalie": 4.029889913164643, + "sealeo": 4.511355583837129, + "relicanth": 3.3127518424677094, + "metang": 2.5892002175395623, + "luxray": 4.732232225074249, + "vespiquen": 2.114675681849225, + "cherrim": 6.027156403758548, + "gastrodon": 5.515990191271656, + "drifblim": 3.981896146225333, + "lopunny": 4.627406432655013, + "skuntank": 1.140574271944553, + "bronzong": 2.8025631536297695, + "munchlax": 2.9554405668448727, + "drapion": 1.9217332992598875, + "abomasnow": 3.517047072419566, + "froslass": 2.7234811411254367, + "rotom": 3.962583883504238, + "stoutland": 3.3239450249056923, + "liepard": 7.22165889060553, + "musharna": 1.7247161189446871, + "unfezant": 4.739465211565689, + "boldore": 4.034733536952055, + "swoobat": 4.554372127208046, + "audino": 2.8997643488897094, + "gurdurr": 2.555364694362731, + "palpitoad": 9.116604747276753, + "seismitoad": 15.53947370963095, + "scolipede": 2.3176408439340688, + "whimsicott": 2.728719184530322, + "lilligant": 2.935200372587927, + "basculin-red-striped": 4.06325012164733, + "basculin-blue-striped": 5.2378028766484075, + "krookodile": 3.713113854216783, + "maractus": 2.0822912853935485, + "crustle": 2.122411846332912, + "sigilyph": 1.9609359165069713, + "cofagrigus": 2.45038838763673, + "garbodor": 1.6749983495413778, + "cinccino": 5.397421128096196, + "vanillish": 2.3320582004400503, + "emolga": 2.7611992911086762, + "escavalier": 1.7133175552255624, + "amoonguss": 2.1166360873802006, + "jellicent": 2.571782535227948, + "galvantula": 1.5022868577558306, + "klang": 3.1502696428340267, + "klinklang": 3.7861453166134043, + "beheeyem": 2.0098557173016034, + "lampent": 1.8925207913789417, + "fraxure": 1.377750363612237, + "beartic": 1.782924566341466, + "cryogonal": 1.9651567367903913, + "accelgor": 2.8350149717755517, + "stunfisk": 2.1110640324059577, + "stunfisk-galar": 2.48260452236676, + "mienshao": 4.128783570950472, + "druddigon": 1.5390621957989499, + "golurk": 2.8102261468544274, + "bisharp": 3.153425336113047, + "bouffalant": 1.535286333738389, + "heatmor": 1.56284957223198, + "durant": 2.475835368768572, + "diggersby": 4.9963373516680925, + "talonflame": 2.0877291509620735, + "pangoro": 1.9334226189983876, + "doublade": 1.803727171464844, + "malamar": 2.8225559468326393, + "barbaracle": 2.8546846851269843, + "heliolisk": 5.1325776351423045, + "tyrantrum": 1.7004800555743893, + "aurorus": 3.4920116709958373, + "hawlucha": 3.0465911325764, + "dedenne": 3.3997911747297556, + "klefki": 2.71813788337706, + "trevenant": 2.973071715062659, + "gourgeist-average": 3.7440949201670817, + "charjabug": 3.6417952043276496, + "vikavolt": 1.6317623610344598, + "ribombee": 4.194392425038034, + "lycanroc-midday": 4.850268477012685, + "lycanroc-midnight": 3.3080378511509547, + "mudsdale": 2.3056332297389868, + "araquanid": 2.7934702554666444, + "lurantis": 2.3922759852260542, + "shiinotic": 4.222628450591159, + "salazzle": 2.390182068130496, + "bewear": 2.138586477051753, + "tsareena": 2.7852867432327164, + "comfey": 5.253278927738149, + "oranguru": 3.0345748481075123, + "passimian": 2.4092907325604473, + "palossand": 2.7355762617525157, + "pyukumuku": 65.20802428183828, + "togedemaru": 2.650962788258326, + "mimikyu-disguised": 4.4501738880260024, + "greedent": 2.4819930845428537, + "orbeetle": 1.6423531812244014, + "thievul": 1.8569607371864914, + "eldegoss": 4.088663428360598, + "dubwool": 3.7989362675486498, + "drednaw": 2.5060834560947685, + "boltund": 4.905761575758745, + "carkol": 2.377888364829545, + "coalossal": 1.9932187438288613, + "sandaconda": 4.04161644386424, + "cramorant": 6.196595638924119, + "barraskewda": 6.36687872835758, + "toxtricity-amped": 2.9231283488391977, + "centiskorch": 1.6801479566197328, + "grapploct": 2.0257582756018735, + "polteageist": 3.217974033081559, + "hatterene": 2.75206224679538, + "grimmsnarl": 4.06735703047981, + "obstagoon": 3.5846812350390334, + "perrserker": 3.1336921533440485, + "alcremie": 1.6903159322737031, + "falinks": 3.297030885397044, + "pincurchin": 3.3538128410230073, + "frosmoth": 2.503930410109442, + "indeedee-male": 3.435949920633905, + "morpeko": 3.0379947431098513, + "copperajah": 2.792608770438326, + "duraludon": 1.5445725972147748, + "drakloak": 3.563145412231051 }, "gourgeist-average": { - "ivysaur": 3.165979414146024, - "charmeleon": 3.078663055779683, - "wartortle": 2.514605572035858, - "butterfree": 4.336100876395168, - "raichu": 5.337282648652238, - "raichu-alola": 4.390310944094959, - "sandslash": 2.085148992072841, - "sandslash-alola": 2.9237146705710737, - "nidoqueen": 2.37805514650866, - "nidoking": 1.682251526882151, - "clefairy": 7.9136083495194125, - "clefable": 1.823752423234339, - "jigglypuff": 21.77312287796732, - "wigglytuff": 1.674376139153221, - "gloom": 5.399410625243897, - "vileplume": 2.989198655190692, - "dugtrio": 3.665198832593805, - "dugtrio-alola": 3.4501124824723144, - "persian": 4.1941728455730285, - "persian-alola": 2.975192735203927, - "golduck": 3.108286691128983, - "poliwrath": 1.97081699228375, - "kadabra": 4.923491859407735, - "machoke": 3.6369032714926766, - "tentacruel": 2.401639179862186, - "slowbro": 1.753665987699419, - "magneton": 3.307748793572583, - "haunter": 4.911880359647093, - "kingler": 2.3329257352575032, - "exeggutor": 2.2628228196021483, - "marowak": 2.77348783643618, - "marowak-alola": 2.055534977855724, - "hitmonlee": 2.5605117290711794, - "hitmonchan": 2.0274211231270525, - "lickitung": 1.5728104846208746, - "weezing": 1.1808437659947786, - "weezing-galar": 2.0856001882595865, - "rhydon": 2.0820248993097947, - "chansey": 22.640037163852334, - "tangela": 6.204502068063158, - "kangaskhan": 1.6631730347103182, - "seadra": 3.74159894013905, - "seaking": 2.36726995397309, - "starmie": 1.4831459451180913, - "mr-mime": 8.149408192235523, - "mr-mime-galar": 3.529629566765488, - "scyther": 2.625862037797228, - "jynx": 5.030438561520116, - "electabuzz": 2.668364690853645, - "magmar": 1.3477899407842386, - "tauros": 1.9323180349586941, - "ditto": 5.545891822070789, - "vaporeon": 3.3467642630722274, - "jolteon": 1.9275952362310629, - "flareon": 1.8454276104614271, - "porygon": 2.3194173540780785, - "dragonair": 1.6073210964287716, - "noctowl": 4.830805293772527, - "lanturn": 1.897846733044116, - "togetic": 4.501856137046463, - "xatu": 3.796055131575355, - "bellossom": 2.3156824487316325, - "azumarill": 2.062259141910848, - "sudowoodo": 2.4024317852882335, - "politoed": 2.650249230057632, - "quagsire": 4.522190112674151, - "slowking": 2.8730896499805025, - "dunsparce": 2.445412771594935, - "qwilfish": 3.130212038344397, - "sneasel": 1.970852977956313, - "piloswine": 1.2895835823845423, - "octillery": 2.1639599510644034, - "mantine": 2.249967419758171, - "skarmory": 2.1815961784282623, - "hitmontop": 2.621338223079272, - "miltank": 3.542338588478068, - "grovyle": 8.342352665504537, - "sceptile": 1.4290041032551695, - "combusken": 3.063249451236826, - "blaziken": 1.4228851324066256, - "marshtomp": 2.35881008795176, - "swampert": 1.0614568212803293, - "linoone": 4.615107466380266, - "linoone-galar": 3.360426836077772, - "pelipper": 5.600609543877347, - "ninjask": 7.6147169189324515, - "exploud": 1.33376566719368, - "lairon": 2.2781683971198348, - "manectric": 1.6388875544962436, - "roselia": 4.0373243107020365, - "sharpedo": 4.021768446956324, - "wailmer": 6.000009278866584, - "torkoal": 1.2914000172558953, - "flygon": 2.195504819521514, - "altaria": 1.3011192816752626, - "whiscash": 1.951556938674023, - "crawdaunt": 1.658843722076349, - "claydol": 3.8420961388246893, - "cradily": 2.0974746478662536, - "armaldo": 1.7286302133663267, - "dusclops": 3.452491330130571, - "absol": 1.5042024571188657, - "glalie": 3.84022102340652, - "sealeo": 2.7563693239094116, - "relicanth": 1.7279440001680386, - "metang": 3.3091180277493137, - "luxray": 3.872368764108848, - "vespiquen": 2.7375442412424436, - "cherrim": 6.293192970090828, - "gastrodon": 2.1756546240889367, - "drifblim": 5.001728488392137, - "lopunny": 3.436873207552998, - "skuntank": 1.0741103686821256, - "bronzong": 3.7025343150446854, - "munchlax": 1.8090168970086382, - "drapion": 2.0175576872336247, - "abomasnow": 4.012367769510707, - "froslass": 2.7750173244091343, - "rotom": 3.9423595268012024, - "stoutland": 2.494385847551186, - "liepard": 5.722482970300346, - "musharna": 1.7511633156539546, - "unfezant": 4.990924872388932, - "boldore": 2.9716456966351217, - "swoobat": 5.438048703687713, - "audino": 2.1283640043432985, - "gurdurr": 2.2595687728810714, - "palpitoad": 3.617594846438667, - "seismitoad": 6.04333948433119, - "scolipede": 3.229257014262049, - "whimsicott": 3.099735043871563, - "lilligant": 3.111930349926774, - "basculin-red-striped": 2.617389963238388, - "basculin-blue-striped": 3.3259620204395692, - "krookodile": 2.3672109351377397, - "maractus": 2.2723586665242963, - "crustle": 1.9289720658268479, - "sigilyph": 2.347375039502908, - "cofagrigus": 2.419282477982712, - "garbodor": 1.716439171597389, - "cinccino": 4.180958059799294, - "vanillish": 1.9049621626842845, - "emolga": 2.8210741072030174, - "escavalier": 2.612489730290057, - "amoonguss": 2.486948650496821, - "jellicent": 1.732946539730561, - "galvantula": 1.6504413810360825, - "klang": 2.807960949789602, - "klinklang": 3.7981612377598917, - "beheeyem": 1.9971054933501928, - "lampent": 2.310106447531645, - "fraxure": 1.4250449946109318, - "beartic": 1.5080320884433842, - "cryogonal": 1.4326453604213867, - "accelgor": 2.8176914641530915, - "stunfisk": 1.2685366606314652, - "stunfisk-galar": 2.38358205770851, - "mienshao": 3.4818466017908074, - "druddigon": 1.6167003758917295, - "golurk": 2.1634403887915985, - "bisharp": 2.462213114007761, - "bouffalant": 1.1745865832581095, - "heatmor": 1.543410168067532, - "durant": 4.860349551012414, - "diggersby": 3.0212240410117746, - "talonflame": 2.277439900352909, - "pangoro": 1.5443686593121724, - "doublade": 2.856199873001197, - "malamar": 2.4410006209613226, - "barbaracle": 1.308568083208125, - "heliolisk": 3.737773079362639, - "tyrantrum": 1.4729814635149925, - "aurorus": 2.233730066168448, - "hawlucha": 3.2213752245250253, - "dedenne": 2.641661161500841, - "klefki": 3.0868882605718753, - "trevenant": 3.8514319066856837, - "charjabug": 4.388539972263285, - "vikavolt": 1.9069743894192386, - "ribombee": 4.392301975348017, - "lycanroc-midday": 3.202451619143597, - "lycanroc-midnight": 2.200211346556191, - "mudsdale": 1.5062961239906665, - "araquanid": 2.3314570795341485, - "lurantis": 2.612076125970934, - "shiinotic": 4.3748612189589755, - "salazzle": 2.6293643788400125, - "bewear": 1.7558794269102043, - "tsareena": 3.1601522401851514, - "comfey": 4.180508314191095, - "oranguru": 2.1942318442020525, - "passimian": 2.1493652805928427, - "palossand": 2.033777181079467, - "pyukumuku": 39.17386580932187, - "togedemaru": 2.3002520637507775, - "mimikyu-disguised": 4.8452436919276884, - "greedent": 2.022614802775359, - "orbeetle": 1.9667602745755675, - "thievul": 1.2432160584641845, - "eldegoss": 4.1064861299064965, - "dubwool": 3.490888704488045, - "drednaw": 1.196701673242356, - "boltund": 4.181760119984862, - "carkol": 1.9821948294657856, - "coalossal": 1.6164377042584706, - "sandaconda": 2.868757876168994, - "cramorant": 5.25123071360837, - "barraskewda": 4.1447612984782, - "toxtricity-amped": 2.943741354513614, - "centiskorch": 1.846836527840905, - "grapploct": 1.6876166078193173, - "polteageist": 3.3759750881839308, - "hatterene": 2.8312551900144745, - "grimmsnarl": 2.8850825728624425, - "obstagoon": 2.2884308748969646, - "perrserker": 3.411467633014397, - "alcremie": 1.2977255947975146, - "falinks": 2.9710616784378656, - "pincurchin": 2.7589875176392766, - "frosmoth": 2.91155843012683, - "indeedee-male": 2.2936232801738363, - "morpeko": 2.271735645895638, - "copperajah": 2.4624274148243517, - "duraludon": 1.4426099771244707, - "drakloak": 4.690759265035028, - "gourgeist-average": 4.814967258996651 + "ivysaur": 3.1656597431009406, + "charmeleon": 3.0654075056891523, + "wartortle": 2.5119413792401346, + "butterfree": 4.330558457107148, + "raichu": 5.343537080465584, + "raichu-alola": 4.392150731409329, + "sandslash": 2.0859846196515983, + "sandslash-alola": 2.927220063611892, + "nidoqueen": 2.3726085691632686, + "nidoking": 1.6808329338299794, + "clefairy": 7.894161564057793, + "clefable": 1.820939481844614, + "jigglypuff": 21.713641126280415, + "wigglytuff": 1.6711876076070733, + "gloom": 5.391580841192958, + "vileplume": 2.9886639003324698, + "dugtrio": 3.6667582225846562, + "dugtrio-alola": 3.450843598987576, + "persian": 4.196395377619674, + "persian-alola": 2.963892609727382, + "golduck": 3.110351278863816, + "poliwrath": 1.9739642478042296, + "kadabra": 4.924821393067633, + "machoke": 3.636272492096429, + "tentacruel": 2.4012650156184323, + "slowbro": 1.7498258671833953, + "magneton": 3.307075844696919, + "haunter": 4.90465758744114, + "kingler": 2.334754395766045, + "exeggutor": 2.265839136352723, + "marowak": 2.7712640497671606, + "marowak-alola": 2.052146488463146, + "hitmonlee": 2.563218727168929, + "hitmonchan": 2.0256591487639923, + "lickitung": 1.5697971483985058, + "weezing": 1.1766458398436899, + "weezing-galar": 2.0795856975966265, + "rhydon": 2.080183641818268, + "chansey": 22.64010394419885, + "tangela": 6.217332924668158, + "kangaskhan": 1.6612934430448347, + "seadra": 3.7383475855025416, + "seaking": 2.3663243277711996, + "starmie": 1.4810058766506256, + "mr-mime": 8.142564377985119, + "mr-mime-galar": 3.522202750871336, + "scyther": 2.622591498031024, + "jynx": 5.024045555060834, + "electabuzz": 2.6698054676237915, + "magmar": 1.3429449505946809, + "tauros": 1.932453321686571, + "ditto": 5.524123745439477, + "vaporeon": 3.349283543959728, + "jolteon": 1.925051385008198, + "flareon": 1.8374935862653796, + "porygon": 2.313077858553945, + "dragonair": 1.6040738072531735, + "noctowl": 4.820677173674161, + "lanturn": 1.898088975519567, + "togetic": 4.489695369087826, + "xatu": 3.7857669530566342, + "bellossom": 2.3152413187128995, + "azumarill": 2.06197059469295, + "sudowoodo": 2.402569449908421, + "politoed": 2.6524206925243465, + "quagsire": 4.5250140291406336, + "slowking": 2.8714097961876535, + "dunsparce": 2.4342272004025385, + "qwilfish": 3.128722579181683, + "sneasel": 1.9641203218807406, + "piloswine": 1.2875662098243184, + "octillery": 2.16117862641315, + "mantine": 2.245123969719469, + "skarmory": 2.1809260555431793, + "hitmontop": 2.622011006390501, + "miltank": 3.543616337986485, + "grovyle": 8.352626393439511, + "sceptile": 1.4294488697650993, + "combusken": 3.059803846808138, + "blaziken": 1.4200501591341703, + "marshtomp": 2.357870452039119, + "swampert": 1.0600867300103434, + "linoone": 4.608302365000839, + "linoone-galar": 3.3449563395349116, + "pelipper": 5.596012394700857, + "ninjask": 7.6132824570127315, + "exploud": 1.332388771144942, + "lairon": 2.276379527575803, + "manectric": 1.6363318644549842, + "roselia": 4.038488358734911, + "sharpedo": 4.0116938644710824, + "wailmer": 5.992265469581222, + "torkoal": 1.2864496677983004, + "flygon": 2.192590585241074, + "altaria": 1.2970166246082044, + "whiscash": 1.9490994199666032, + "crawdaunt": 1.6554520878468426, + "claydol": 3.8417029098046154, + "cradily": 2.0948227572859355, + "armaldo": 1.7281556691259659, + "dusclops": 3.44512210321803, + "absol": 1.4992033306501862, + "glalie": 3.8318763930203947, + "sealeo": 2.7490962943123978, + "relicanth": 1.7263691086705568, + "metang": 3.3133287869842167, + "luxray": 3.8761415501785352, + "vespiquen": 2.7362619765477163, + "cherrim": 6.300547204672066, + "gastrodon": 2.1766538632615657, + "drifblim": 5.00129088811831, + "lopunny": 3.4365131627949026, + "skuntank": 1.070414596669378, + "bronzong": 3.7069723410133038, + "munchlax": 1.8055222069133934, + "drapion": 2.0137372454090148, + "abomasnow": 4.015028925529043, + "froslass": 2.7674109414388828, + "rotom": 3.9368609226548736, + "stoutland": 2.4981497496476797, + "liepard": 5.707836064559482, + "musharna": 1.75052852124833, + "unfezant": 4.97333145642707, + "boldore": 2.9712291220884834, + "swoobat": 5.423430489868168, + "audino": 2.122848220807504, + "gurdurr": 2.263939837764366, + "palpitoad": 3.6163110351300416, + "seismitoad": 6.037463662568726, + "scolipede": 3.226998280994096, + "whimsicott": 3.096852509620282, + "lilligant": 3.1114433546459628, + "basculin-red-striped": 2.6154823793962363, + "basculin-blue-striped": 3.3224060046295882, + "krookodile": 2.3618001457290947, + "maractus": 2.2728969714570404, + "crustle": 1.9291327542048817, + "sigilyph": 2.3417521850363956, + "cofagrigus": 2.41227209951038, + "garbodor": 1.7157796454325922, + "cinccino": 4.176900677602241, + "vanillish": 1.898640319345213, + "emolga": 2.8185889277145195, + "escavalier": 2.6190069429239258, + "amoonguss": 2.485161259862563, + "jellicent": 1.7318756440359622, + "galvantula": 1.6505563472989688, + "klang": 2.8074188895335013, + "klinklang": 3.803758841243292, + "beheeyem": 1.9944611107136745, + "lampent": 2.3025347818849893, + "fraxure": 1.4238983559594183, + "beartic": 1.5050109144767334, + "cryogonal": 1.4277059062653552, + "accelgor": 2.8129055872821453, + "stunfisk": 1.2686625604310717, + "stunfisk-galar": 2.3839391867759305, + "mienshao": 3.487128850463715, + "druddigon": 1.613768584757479, + "golurk": 2.165022322744819, + "bisharp": 2.4592807920787516, + "bouffalant": 1.1739618930323266, + "heatmor": 1.5373583562865083, + "durant": 4.870386293538233, + "diggersby": 3.0207792366546595, + "talonflame": 2.267697948452055, + "pangoro": 1.5427716544522125, + "doublade": 2.860856881135603, + "malamar": 2.4353788504586698, + "barbaracle": 1.3074696775481227, + "heliolisk": 3.739837306839879, + "tyrantrum": 1.4727612749217855, + "aurorus": 2.228666721669799, + "hawlucha": 3.219337346696559, + "dedenne": 2.639569052744145, + "klefki": 3.0870118267350706, + "trevenant": 3.863186787571119, + "gourgeist-average": 4.814967258996651, + "charjabug": 4.396027413590265, + "vikavolt": 1.9069138091936892, + "ribombee": 4.386291689865535, + "lycanroc-midday": 3.2008604000189402, + "lycanroc-midnight": 2.19790539542021, + "mudsdale": 1.5068378376270917, + "araquanid": 2.3318686844528487, + "lurantis": 2.614741192853631, + "shiinotic": 4.373285526463455, + "salazzle": 2.6184654323039545, + "bewear": 1.756373810565303, + "tsareena": 3.160024034884822, + "comfey": 4.177788335853039, + "oranguru": 2.187752458318779, + "passimian": 2.149315422540342, + "palossand": 2.0315529774335754, + "pyukumuku": 39.11291464152278, + "togedemaru": 2.301129732499386, + "mimikyu-disguised": 4.845507297088266, + "greedent": 2.0219435642188577, + "orbeetle": 1.9649052611771276, + "thievul": 1.2373804554629704, + "eldegoss": 4.110676219878021, + "dubwool": 3.4980526126767715, + "drednaw": 1.1956194260168114, + "boltund": 4.1753506175313335, + "carkol": 1.973228663343083, + "coalossal": 1.6108110173002756, + "sandaconda": 2.867399963238589, + "cramorant": 5.244369010306108, + "barraskewda": 4.138672407929807, + "toxtricity-amped": 2.946361380774822, + "centiskorch": 1.843046389404022, + "grapploct": 1.690617506522176, + "polteageist": 3.3772276604982547, + "hatterene": 2.830182004988517, + "grimmsnarl": 2.8747152902149926, + "obstagoon": 2.2845136572828952, + "perrserker": 3.4103161501493346, + "alcremie": 1.2950327566809448, + "falinks": 2.972194183441073, + "pincurchin": 2.7593073010533233, + "frosmoth": 2.9070649691422505, + "indeedee-male": 2.2818964066391016, + "morpeko": 2.266622263857057, + "copperajah": 2.4635193174789043, + "duraludon": 1.442467257203267, + "drakloak": 4.6805080335732825 }, "charjabug": { - "ivysaur": 2.8839213042934864, - "charmeleon": 3.531258384880072, - "wartortle": 3.3137103844947378, - "butterfree": 5.904159110220085, - "raichu": 5.947374088054229, - "raichu-alola": 3.834182941470945, - "sandslash": 1.691776842552009, - "sandslash-alola": 1.781650341967751, - "nidoqueen": 2.72901838217184, - "nidoking": 1.849756131900961, - "clefairy": 8.399318263473955, - "clefable": 1.8453601656782874, - "jigglypuff": 25.475509047357164, - "wigglytuff": 1.8495913072431, - "gloom": 4.726329665007475, - "vileplume": 2.6141252131399133, - "dugtrio": 2.9643665898588347, - "dugtrio-alola": 3.7172519362402094, - "persian": 4.065689248555221, - "persian-alola": 3.974974589956289, - "golduck": 3.7314310398362345, - "poliwrath": 2.385111974003396, - "kadabra": 3.962282885437774, - "machoke": 3.605460730594314, - "tentacruel": 3.208154623072584, - "slowbro": 1.880173840482711, - "magneton": 4.358847540210557, - "haunter": 4.431598032445383, - "kingler": 2.669854522050953, - "exeggutor": 1.6383348396201343, - "marowak": 2.6254684292437194, - "marowak-alola": 1.9276245793535445, - "hitmonlee": 2.553381649260036, - "hitmonchan": 2.1330867182416626, - "lickitung": 1.7820421523881014, - "weezing": 1.3166775767604995, - "weezing-galar": 2.281682586045936, - "rhydon": 2.035382868419443, - "chansey": 27.370398202708692, - "tangela": 4.0672870072495915, - "kangaskhan": 1.7590066839114593, - "seadra": 4.304279662625033, - "seaking": 3.133153213598665, - "starmie": 1.657695005930801, - "mr-mime": 6.741091170322683, - "mr-mime-galar": 3.4716296598360925, - "scyther": 3.2597021109075586, - "jynx": 4.445763020683367, - "electabuzz": 2.9530662869416995, - "magmar": 1.5240497089503195, - "tauros": 1.8999411181090298, - "ditto": 3.752063817749602, - "vaporeon": 4.193015443896108, - "jolteon": 2.1128114857673306, - "flareon": 2.1829268202129204, - "porygon": 2.6784874887150485, - "dragonair": 1.5967073460268781, - "noctowl": 7.81909780419176, - "lanturn": 2.082477498426247, - "togetic": 6.155179948453159, - "xatu": 4.500476525253436, - "bellossom": 1.9390598641713601, - "azumarill": 2.9271639939284215, - "sudowoodo": 2.34306012030246, - "politoed": 3.258736245982307, - "quagsire": 3.887686905796495, - "slowking": 3.138634762523237, - "dunsparce": 3.0424480408213874, - "qwilfish": 3.9231855427700495, - "sneasel": 2.222580571022042, - "piloswine": 1.3002984960749657, - "octillery": 2.893679058654504, - "mantine": 5.1929438056580794, - "skarmory": 2.2720935868259287, - "hitmontop": 2.6987361080164303, - "miltank": 3.247942640244936, - "grovyle": 7.212125823697061, - "sceptile": 1.240776003084536, - "combusken": 3.3418609127095076, - "blaziken": 1.5591344428167426, - "marshtomp": 2.1075104799245183, - "swampert": 1.0396684944669459, - "linoone": 4.934195993487942, - "linoone-galar": 4.352026491949467, - "pelipper": 9.546878938473391, - "ninjask": 9.129933167458892, - "exploud": 1.5383701778137642, - "lairon": 2.369358593928082, - "manectric": 1.7318063630814642, - "roselia": 3.654258821259529, - "sharpedo": 6.144935350307387, - "wailmer": 8.073502718511818, - "torkoal": 1.3880232934030812, - "flygon": 1.6508458848547898, - "altaria": 1.3676885266440133, - "whiscash": 1.693930580162203, - "crawdaunt": 2.208185211437704, - "claydol": 2.1831071993890996, - "cradily": 1.8805636678167823, - "armaldo": 1.651088909911119, - "dusclops": 3.172800044026388, - "absol": 1.806118645407982, - "glalie": 4.02782187353033, - "sealeo": 3.7540535575453395, - "relicanth": 1.8798275174920578, - "metang": 3.083960559258118, - "luxray": 4.052108408093192, - "vespiquen": 3.3349048588350723, - "cherrim": 4.985850796322657, - "gastrodon": 1.8120074456190491, - "drifblim": 5.585294157247198, - "lopunny": 3.633852318427782, - "skuntank": 1.3765069974304365, - "bronzong": 3.0898162035396357, - "munchlax": 2.309032312345596, - "drapion": 2.421839348642595, - "abomasnow": 2.778729808926191, - "froslass": 2.7125975041905224, - "rotom": 2.946330545780613, - "stoutland": 2.2738029576878036, - "liepard": 6.7129499629444105, - "musharna": 1.487010806762692, - "unfezant": 7.2068266789399535, - "boldore": 2.8517365240021526, - "swoobat": 6.439623558963074, - "audino": 1.95456905231018, - "gurdurr": 2.122768242035882, - "palpitoad": 3.158788957066051, - "seismitoad": 5.202883846885456, - "scolipede": 2.9699273833646216, - "whimsicott": 2.6068019371199864, - "lilligant": 2.5920940403114754, - "basculin-red-striped": 3.3639979316022153, - "basculin-blue-striped": 4.294141722422659, - "krookodile": 2.384162368816651, - "maractus": 1.9108055333099863, - "crustle": 1.7962234437344002, - "sigilyph": 2.8004688105464504, - "cofagrigus": 2.2763431461311066, - "garbodor": 1.9318563193955396, - "cinccino": 4.3267275950910555, - "vanillish": 2.0081269909100175, - "emolga": 3.0795030146494993, - "escavalier": 1.7429024467165144, - "amoonguss": 2.2118770917476254, - "jellicent": 2.0828778026534547, - "galvantula": 1.4223775139690797, - "klang": 2.805842828495452, - "klinklang": 3.4881433287308146, - "beheeyem": 1.647401444219074, - "lampent": 2.0913877550941025, - "fraxure": 1.2850726453510821, - "beartic": 1.632866502898986, - "cryogonal": 1.8097439313934287, - "accelgor": 2.9384045989086522, - "stunfisk": 1.3345275140097472, - "stunfisk-galar": 2.251421011360038, - "mienshao": 3.16314149213113, - "druddigon": 1.60385399502006, - "golurk": 1.61601129862611, - "bisharp": 2.3776017747142015, - "bouffalant": 1.282409194646655, - "heatmor": 1.7476946893019973, - "durant": 2.6885492688673667, - "diggersby": 2.6825123301149825, - "talonflame": 3.3086668446061216, - "pangoro": 1.742468410828082, - "doublade": 2.1754097599062003, - "malamar": 2.6643332739843633, - "barbaracle": 1.6496031343934374, - "heliolisk": 4.04760883456065, - "tyrantrum": 1.430088219438845, - "aurorus": 2.414264004572616, - "hawlucha": 4.276008672895604, - "dedenne": 3.015845687782198, - "klefki": 3.29653728359078, - "trevenant": 2.6603924316307195, - "gourgeist-average": 3.6684567471774763, - "vikavolt": 1.4563882135735577, - "ribombee": 4.3764415444941935, - "lycanroc-midday": 3.052063038466809, - "lycanroc-midnight": 2.3184993167036523, - "mudsdale": 1.3844816352495828, - "araquanid": 3.1522929351867948, - "lurantis": 2.013111931667698, - "shiinotic": 3.559411489960487, - "salazzle": 3.8831938205735126, - "bewear": 1.6286780946898267, - "tsareena": 2.700450066988287, - "comfey": 4.443560628446827, - "oranguru": 2.5910304824586547, - "passimian": 2.099843877071046, - "palossand": 1.5881895108175248, - "pyukumuku": 51.76362764969598, - "togedemaru": 3.3806213751228085, - "mimikyu-disguised": 3.983650050408568, - "greedent": 2.012902172197097, - "orbeetle": 1.6879499508989289, - "thievul": 1.6566699632803918, - "eldegoss": 3.4257483555240453, - "dubwool": 2.9110314920949945, - "drednaw": 1.339052707806047, - "boltund": 4.977197987733074, - "carkol": 2.4789307098405144, - "coalossal": 2.0704353405023337, - "sandaconda": 2.506129862833249, - "cramorant": 11.166540537008636, - "barraskewda": 5.486026982067065, - "toxtricity-amped": 3.5640519860003246, - "centiskorch": 1.850177368831348, - "grapploct": 1.6279519590110603, - "polteageist": 2.8183728107141786, - "hatterene": 2.365746732811611, - "grimmsnarl": 3.742328561051038, - "obstagoon": 2.397916665475599, - "perrserker": 3.2514259900672426, - "alcremie": 1.3829118974359857, - "falinks": 2.9605368976729753, - "pincurchin": 3.025725798035312, - "frosmoth": 2.527805837133344, - "indeedee-male": 2.979023174857044, - "morpeko": 2.9127988116859127, - "copperajah": 2.6820773952773207, - "duraludon": 1.463093654841526, - "drakloak": 3.747791401727807, - "charjabug": 3.470564554976164 + "ivysaur": 2.8803456917345507, + "charmeleon": 3.518960437488751, + "wartortle": 3.312979373087585, + "butterfree": 5.900670721033448, + "raichu": 5.944172681912139, + "raichu-alola": 3.829885814932825, + "sandslash": 1.685799184041374, + "sandslash-alola": 1.7787257984133036, + "nidoqueen": 2.722397182510155, + "nidoking": 1.8463744496330137, + "clefairy": 8.379564683558982, + "clefable": 1.8407150102806984, + "jigglypuff": 25.43129278310128, + "wigglytuff": 1.8458689251323532, + "gloom": 4.712932126465348, + "vileplume": 2.610155782217728, + "dugtrio": 2.9552631265022775, + "dugtrio-alola": 3.714345007436819, + "persian": 4.058053591976856, + "persian-alola": 3.9687763195397188, + "golduck": 3.7296615483268893, + "poliwrath": 2.3863646871787636, + "kadabra": 3.9561132779581367, + "machoke": 3.6002475337648376, + "tentacruel": 3.2094952439221407, + "slowbro": 1.8764910235481067, + "magneton": 4.363110947644105, + "haunter": 4.426556549549009, + "kingler": 2.6694211629596842, + "exeggutor": 1.6346979459758826, + "marowak": 2.619753769332897, + "marowak-alola": 1.9246185185925067, + "hitmonlee": 2.553173666855705, + "hitmonchan": 2.131245424922699, + "lickitung": 1.7790727493331577, + "weezing": 1.31315076554546, + "weezing-galar": 2.2753816762967674, + "rhydon": 2.029357953439474, + "chansey": 27.3194835964303, + "tangela": 4.060500575974608, + "kangaskhan": 1.7564202263626076, + "seadra": 4.2967357470933925, + "seaking": 3.1339107122499237, + "starmie": 1.6551839539724256, + "mr-mime": 6.72993330743952, + "mr-mime-galar": 3.4642734993356727, + "scyther": 3.2577698917920523, + "jynx": 4.438135897330323, + "electabuzz": 2.952142310337277, + "magmar": 1.5193171261348661, + "tauros": 1.8980464410397189, + "ditto": 3.72700294622732, + "vaporeon": 4.191374322610558, + "jolteon": 2.108879282221475, + "flareon": 2.178476590346601, + "porygon": 2.674463821600834, + "dragonair": 1.5935440569239914, + "noctowl": 7.815009998735059, + "lanturn": 2.0773975358224055, + "togetic": 6.1426673136349965, + "xatu": 4.4950112558712885, + "bellossom": 1.9355431719399907, + "azumarill": 2.929747030704162, + "sudowoodo": 2.3385421775977537, + "politoed": 3.2581296609235135, + "quagsire": 3.8776393932251008, + "slowking": 3.138117676131234, + "dunsparce": 3.0374798095207094, + "qwilfish": 3.9235240918931074, + "sneasel": 2.2193626137266684, + "piloswine": 1.2966413488112116, + "octillery": 2.893248413083752, + "mantine": 5.198829003720693, + "skarmory": 2.2722317034613724, + "hitmontop": 2.698139822433668, + "miltank": 3.2419240252943853, + "grovyle": 7.206889489130303, + "sceptile": 1.2392026491854526, + "combusken": 3.3377531995109475, + "blaziken": 1.5560476339725562, + "marshtomp": 2.101901291118413, + "swampert": 1.0365238001564365, + "linoone": 4.9263107427075, + "linoone-galar": 4.344513073869377, + "pelipper": 9.547879181999447, + "ninjask": 9.123565562068574, + "exploud": 1.5357540000331813, + "lairon": 2.36673049338829, + "manectric": 1.726056168558669, + "roselia": 3.6490328533530025, + "sharpedo": 6.143469209596076, + "wailmer": 8.072984079831274, + "torkoal": 1.3827012315618088, + "flygon": 1.644318396691926, + "altaria": 1.3633539769660488, + "whiscash": 1.688865040206346, + "crawdaunt": 2.206445559782877, + "claydol": 2.1710337360266436, + "cradily": 1.8749178542984142, + "armaldo": 1.6474956915181536, + "dusclops": 3.1687743384520433, + "absol": 1.8020270258835662, + "glalie": 4.023267937947137, + "sealeo": 3.7513328810115834, + "relicanth": 1.8760606811700586, + "metang": 3.0851179743335777, + "luxray": 4.049398999092506, + "vespiquen": 3.334378528574414, + "cherrim": 4.976402622875932, + "gastrodon": 1.8062274602434738, + "drifblim": 5.585226493084304, + "lopunny": 3.6307649965215383, + "skuntank": 1.3748705168908382, + "bronzong": 3.0873098511170447, + "munchlax": 2.306130940734963, + "drapion": 2.421341072092676, + "abomasnow": 2.7728091304411815, + "froslass": 2.7084455604922355, + "rotom": 2.940095963331312, + "stoutland": 2.2692645288373336, + "liepard": 6.704859971864957, + "musharna": 1.4850480982529384, + "unfezant": 7.203396686188883, + "boldore": 2.8450971683998407, + "swoobat": 6.431670722327894, + "audino": 1.9482738312557601, + "gurdurr": 2.122300222722911, + "palpitoad": 3.1491644082468624, + "seismitoad": 5.1824534484140905, + "scolipede": 2.9662300999199607, + "whimsicott": 2.601578394266045, + "lilligant": 2.5874013729823844, + "basculin-red-striped": 3.363332659497081, + "basculin-blue-striped": 4.292269094270999, + "krookodile": 2.3775451024201386, + "maractus": 1.908707536573051, + "crustle": 1.7925239463283207, + "sigilyph": 2.79836872479137, + "cofagrigus": 2.271733354727746, + "garbodor": 1.9308329880641777, + "cinccino": 4.319116211243195, + "vanillish": 2.0038687184819093, + "emolga": 3.0777031517941214, + "escavalier": 1.7413402534413462, + "amoonguss": 2.2074751923813762, + "jellicent": 2.083813105449866, + "galvantula": 1.4204603540424818, + "klang": 2.8038663349829753, + "klinklang": 3.4887305927139804, + "beheeyem": 1.6429888642912038, + "lampent": 2.0853689212459323, + "fraxure": 1.2818624145823216, + "beartic": 1.6304568743073475, + "cryogonal": 1.8071020851487298, + "accelgor": 2.9319320258609594, + "stunfisk": 1.3325426852709954, + "stunfisk-galar": 2.246880902440924, + "mienshao": 3.1580311158383525, + "druddigon": 1.6017937557884396, + "golurk": 1.612940148218578, + "bisharp": 2.37526658894458, + "bouffalant": 1.282052724493123, + "heatmor": 1.7429518428724293, + "durant": 2.686174268812196, + "diggersby": 2.673960924352724, + "talonflame": 3.3027188647519625, + "pangoro": 1.742124968347838, + "doublade": 2.175704466282955, + "malamar": 2.660632957960117, + "barbaracle": 1.6484670053951396, + "heliolisk": 4.044387099104415, + "tyrantrum": 1.4268788120685836, + "aurorus": 2.408756600288914, + "hawlucha": 4.276505077226589, + "dedenne": 3.013753853436917, + "klefki": 3.2981700227808144, + "trevenant": 2.6594879924292893, + "gourgeist-average": 3.653148275391503, + "charjabug": 3.470564554976164, + "vikavolt": 1.4523684629071292, + "ribombee": 4.3672063971872435, + "lycanroc-midday": 3.042738386101803, + "lycanroc-midnight": 2.31471641982239, + "mudsdale": 1.382175373039037, + "araquanid": 3.1531072926787234, + "lurantis": 2.008617109586498, + "shiinotic": 3.5483507258564737, + "salazzle": 3.87269503464492, + "bewear": 1.6253750049950546, + "tsareena": 2.6972907697065955, + "comfey": 4.441185034126676, + "oranguru": 2.586443663419666, + "passimian": 2.096831211912402, + "palossand": 1.5827697717784273, + "pyukumuku": 51.74570618566084, + "togedemaru": 3.3846726704207963, + "mimikyu-disguised": 3.9803322701557695, + "greedent": 2.0102504395932232, + "orbeetle": 1.6838687634473697, + "thievul": 1.6533212564118975, + "eldegoss": 3.4205916412120505, + "dubwool": 2.909152977883675, + "drednaw": 1.3379403960292495, + "boltund": 4.9746817471289475, + "carkol": 2.4706849045261956, + "coalossal": 2.0636401996348095, + "sandaconda": 2.4982659423538127, + "cramorant": 11.181627108927017, + "barraskewda": 5.484293892844008, + "toxtricity-amped": 3.5635483003218145, + "centiskorch": 1.844828011858766, + "grapploct": 1.6277567834639624, + "polteageist": 2.818216819397291, + "hatterene": 2.3620542048715643, + "grimmsnarl": 3.7389065276640068, + "obstagoon": 2.3943131055388314, + "perrserker": 3.2517191707085447, + "alcremie": 1.3804454890555897, + "falinks": 2.9590431375092647, + "pincurchin": 3.0232839498700566, + "frosmoth": 2.5214922018551, + "indeedee-male": 2.971105843682934, + "morpeko": 2.9115460346268254, + "copperajah": 2.6852329476283128, + "duraludon": 1.4624612461907809, + "drakloak": 3.739504162920312 }, "vikavolt": { - "ivysaur": 3.8851783505728137, - "charmeleon": 3.7350655147974123, - "wartortle": 3.350803190067111, - "butterfree": 5.690835417812424, - "raichu": 6.3974222596723145, - "raichu-alola": 5.353891242839474, - "sandslash": 3.0263649651890425, - "sandslash-alola": 2.249069517186949, - "nidoqueen": 3.206758400102014, - "nidoking": 2.1184373343389575, - "clefairy": 8.805645965601089, - "clefable": 1.964940727509658, - "jigglypuff": 26.5675896931407, - "wigglytuff": 1.9503702976558608, - "gloom": 6.717687125977415, - "vileplume": 3.701824920704995, - "dugtrio": 4.192882259595819, - "dugtrio-alola": 4.086634890948023, - "persian": 5.1248809426952615, - "persian-alola": 7.182304996285941, - "golduck": 3.7341909883508957, - "poliwrath": 2.278758120510894, - "kadabra": 5.429240005523827, - "machoke": 3.770174846439545, - "tentacruel": 3.0682753731036625, - "slowbro": 3.127015376214759, - "magneton": 5.31302644240988, - "haunter": 4.326646052927509, - "kingler": 3.7455767359514534, - "exeggutor": 5.498284145023058, - "marowak": 4.342912098718905, - "marowak-alola": 2.219752829502219, - "hitmonlee": 2.472374114964177, - "hitmonchan": 2.0784697676128685, - "lickitung": 2.3233730232574574, - "weezing": 1.706094900685047, - "weezing-galar": 2.838155429167853, - "rhydon": 3.22630687845363, - "chansey": 26.807000931071656, - "tangela": 11.459610502580851, - "kangaskhan": 2.3223478792487313, - "seadra": 5.741872010421826, - "seaking": 3.1400916724049868, - "starmie": 2.398429948446279, - "mr-mime": 7.341291907040333, - "mr-mime-galar": 5.476261987723714, - "scyther": 3.1335357542715836, - "jynx": 5.609990990649177, - "electabuzz": 3.1503838487792493, - "magmar": 1.4963871552641774, - "tauros": 2.7920259048454596, - "ditto": 3.083445267352423, - "vaporeon": 4.024147804337765, - "jolteon": 2.2178174137596143, - "flareon": 2.0578362111730395, - "porygon": 3.4020586897865845, - "dragonair": 2.2904451576117477, - "noctowl": 7.476416447782382, - "lanturn": 2.3451839726274053, - "togetic": 5.959806627755736, - "xatu": 4.568687294312902, - "bellossom": 4.01177830704509, - "azumarill": 2.7619120913886865, - "sudowoodo": 3.3998662461807663, - "politoed": 3.3248432036511284, - "quagsire": 6.076590898044635, - "slowking": 3.8915904553455922, - "dunsparce": 4.021183265039789, - "qwilfish": 4.136230328742983, - "sneasel": 3.399359672848856, - "piloswine": 1.9870415418696732, - "octillery": 2.921028638113365, - "mantine": 4.846455666045667, - "skarmory": 2.182381577835017, - "hitmontop": 2.7840833080034293, - "miltank": 4.745647397467918, - "grovyle": 13.38351072002692, - "sceptile": 2.3632029830232257, - "combusken": 3.5255470992355247, - "blaziken": 1.645592943924532, - "marshtomp": 3.1696373520106618, - "swampert": 1.5905693395259903, - "linoone": 6.36014520986914, - "linoone-galar": 7.758570954745766, - "pelipper": 9.045550612414063, - "ninjask": 8.95826057309234, - "exploud": 1.9152006040704568, - "lairon": 3.7986151198494227, - "manectric": 2.14313328739713, - "roselia": 4.5231643340905325, - "sharpedo": 8.857261698207465, - "wailmer": 8.16349228114424, - "torkoal": 1.9036583952092228, - "flygon": 3.0434953695337095, - "altaria": 1.3876385208030924, - "whiscash": 2.508408318446483, - "crawdaunt": 3.8628671862496082, - "claydol": 5.160165411033063, - "cradily": 3.6130658689296156, - "armaldo": 2.3532416805006573, - "dusclops": 3.2017890918836, - "absol": 3.3565878615115277, - "glalie": 5.064267792808751, - "sealeo": 3.800958986365284, - "relicanth": 2.3874320405091254, - "metang": 4.0003607865578275, - "luxray": 4.912188711567431, - "vespiquen": 3.2030247188922054, - "cherrim": 10.073332754597617, - "gastrodon": 2.5006342524753915, - "drifblim": 5.351959961975167, - "lopunny": 4.461457793508319, - "skuntank": 1.739476586854777, - "bronzong": 4.100990328887478, - "munchlax": 2.383811407625611, - "drapion": 3.3540273042628135, - "abomasnow": 5.135964439305026, - "froslass": 2.753470998222258, - "rotom": 3.631057824602359, - "stoutland": 2.931575849903604, - "liepard": 12.394164512987192, - "musharna": 2.6089788780876995, - "unfezant": 6.933428067868374, - "boldore": 4.616365550532766, - "swoobat": 6.544985224098982, - "audino": 2.5767469005011936, - "gurdurr": 2.5112852936744923, - "palpitoad": 4.9321108405994725, - "seismitoad": 7.636625961503956, - "scolipede": 3.1799245649088523, - "whimsicott": 4.093217559279437, - "lilligant": 5.44115581705082, - "basculin-red-striped": 3.5924019701545076, - "basculin-blue-striped": 4.605841759315899, - "krookodile": 5.32361418879912, - "maractus": 4.117356167190366, - "crustle": 2.678989267308981, - "sigilyph": 2.8340779343691676, - "cofagrigus": 2.5321595918505286, - "garbodor": 2.058540180669657, - "cinccino": 5.59365544242946, - "vanillish": 2.4752509855053484, - "emolga": 3.109818940986487, - "escavalier": 1.8515210190619138, - "amoonguss": 3.0768489103207686, - "jellicent": 2.0042477869273347, - "galvantula": 2.0732233697273363, - "klang": 3.1489524588936173, - "klinklang": 4.123686228738427, - "beheeyem": 2.7842551990069904, - "lampent": 2.277484975838653, - "fraxure": 2.061918326169868, - "beartic": 2.0796034073736656, - "cryogonal": 1.804249786475956, - "accelgor": 3.4283956059017098, - "stunfisk": 1.602178689012466, - "stunfisk-galar": 2.812529561610573, - "mienshao": 3.1989272755649814, - "druddigon": 2.389608068702584, - "golurk": 1.904233079772606, - "bisharp": 3.2002907006191954, - "bouffalant": 1.672826783871704, - "heatmor": 1.9003126653384619, - "durant": 3.3307249568246515, - "diggersby": 4.131889198645623, - "talonflame": 3.2158858283395073, - "pangoro": 2.292128184828069, - "doublade": 3.224272905780313, - "malamar": 8.155012789976661, - "barbaracle": 1.8348769189232677, - "heliolisk": 4.1916021488366635, - "tyrantrum": 2.134779841466538, - "aurorus": 2.625548733163755, - "hawlucha": 4.098432149002632, - "dedenne": 3.3132929994810687, - "klefki": 3.5147801716957257, - "trevenant": 3.9830024204933627, - "gourgeist-average": 6.548596404406998, - "charjabug": 5.577139653341821, - "ribombee": 4.568913290878795, - "lycanroc-midday": 3.6075421697016288, - "lycanroc-midnight": 2.7240489146327587, - "mudsdale": 2.123064732356491, - "araquanid": 2.9929663904232178, - "lurantis": 4.214599393137225, - "shiinotic": 5.700708966834858, - "salazzle": 4.161749942720822, - "bewear": 1.756733581078125, - "tsareena": 5.581266421756823, - "comfey": 4.621522824576073, - "oranguru": 4.201060684800999, - "passimian": 2.3273512220503543, - "palossand": 2.1221173446145514, - "pyukumuku": 52.42871665152327, - "togedemaru": 3.346815377297607, - "mimikyu-disguised": 3.8644276531984003, - "greedent": 2.782080303143201, - "orbeetle": 2.9512599254343037, - "thievul": 2.6047119249556396, - "eldegoss": 6.4650638158372455, - "dubwool": 3.8112567191075493, - "drednaw": 1.488626070947169, - "boltund": 6.043285800523394, - "carkol": 2.944846389124706, - "coalossal": 2.5079449711584316, - "sandaconda": 4.444021066698763, - "cramorant": 10.36992813900002, - "barraskewda": 5.8938718629599265, - "toxtricity-amped": 3.8426866869366543, - "centiskorch": 1.89841560726842, - "grapploct": 1.69188804210317, - "polteageist": 2.732076074096761, - "hatterene": 3.006003574505243, - "grimmsnarl": 4.68900918955341, - "obstagoon": 4.58969289159232, - "perrserker": 4.116616482919502, - "alcremie": 1.4637155068904277, - "falinks": 3.3491171420041157, - "pincurchin": 3.8065825612885162, - "frosmoth": 2.8800641069046717, - "indeedee-male": 4.483089564580293, - "morpeko": 5.051388893679973, - "copperajah": 2.863975799976311, - "duraludon": 2.1404202251193216, - "drakloak": 4.292657141352617, - "vikavolt": 2.451417089597813 + "ivysaur": 3.8923223975747536, + "charmeleon": 3.7296610008256357, + "wartortle": 3.358491322320496, + "butterfree": 5.695689581116852, + "raichu": 6.410935879408637, + "raichu-alola": 5.365013073322449, + "sandslash": 3.030689454492275, + "sandslash-alola": 2.249465918575412, + "nidoqueen": 3.2089833358406166, + "nidoking": 2.1200500162616973, + "clefairy": 8.81049838023486, + "clefable": 1.9656432278708493, + "jigglypuff": 26.598521845767518, + "wigglytuff": 1.9521541782092688, + "gloom": 6.7214104060539555, + "vileplume": 3.7083066793697492, + "dugtrio": 4.199671722628022, + "dugtrio-alola": 4.093483117181593, + "persian": 5.129689527434312, + "persian-alola": 7.198176318206793, + "golduck": 3.741529444190495, + "poliwrath": 2.2833729126937805, + "kadabra": 5.4375219315834915, + "machoke": 3.7724065694852396, + "tentacruel": 3.0719906044168037, + "slowbro": 3.132056958273246, + "magneton": 5.3254194906219, + "haunter": 4.326295738936134, + "kingler": 3.758605662135168, + "exeggutor": 5.521295214152691, + "marowak": 4.354744144559827, + "marowak-alola": 2.2192303959261297, + "hitmonlee": 2.475591610039545, + "hitmonchan": 2.0800919768934722, + "lickitung": 2.326411640367879, + "weezing": 1.7054929256848106, + "weezing-galar": 2.8360814442332885, + "rhydon": 3.2319737771451194, + "chansey": 26.792934214639168, + "tangela": 11.504203929206904, + "kangaskhan": 2.326672490796524, + "seadra": 5.750085032754118, + "seaking": 3.150071273485283, + "starmie": 2.4026525425277327, + "mr-mime": 7.353400938774353, + "mr-mime-galar": 5.483761583035469, + "scyther": 3.1360866830738905, + "jynx": 5.616357840279955, + "electabuzz": 3.1569431644689345, + "magmar": 1.4942987489642732, + "tauros": 2.8001526222631226, + "ditto": 3.07377700944922, + "vaporeon": 4.031509095919757, + "jolteon": 2.2195364164432667, + "flareon": 2.056590856038361, + "porygon": 3.406908715851036, + "dragonair": 2.293458827653891, + "noctowl": 7.48304626235233, + "lanturn": 2.3469576867338438, + "togetic": 5.959130991612593, + "xatu": 4.574716319762298, + "bellossom": 4.0240296596177725, + "azumarill": 2.7714077646845094, + "sudowoodo": 3.4059816698740395, + "politoed": 3.3357148709426574, + "quagsire": 6.083253888284997, + "slowking": 3.901959913737185, + "dunsparce": 4.026634052652797, + "qwilfish": 4.143170070717456, + "sneasel": 3.4055888503474723, + "piloswine": 1.9883601005417109, + "octillery": 2.9278316956039143, + "mantine": 4.857034476909292, + "skarmory": 2.1840602177987907, + "hitmontop": 2.790939692862535, + "miltank": 4.75222618974803, + "grovyle": 13.435371501493218, + "sceptile": 2.3712470391870157, + "combusken": 3.5262346912680833, + "blaziken": 1.6446388758650952, + "marshtomp": 3.173870979638007, + "swampert": 1.5933394007191524, + "linoone": 6.368004447510184, + "linoone-galar": 7.774480441234093, + "pelipper": 9.058073267595498, + "ninjask": 8.968737044088593, + "exploud": 1.9174048895971272, + "lairon": 3.802590542844534, + "manectric": 2.1434148551062586, + "roselia": 4.5293381979220815, + "sharpedo": 8.882845818242183, + "wailmer": 8.183396282926031, + "torkoal": 1.9015070865721713, + "flygon": 3.0463260141391424, + "altaria": 1.3861995602900286, + "whiscash": 2.5092931167351087, + "crawdaunt": 3.87350538469774, + "claydol": 5.159781822105392, + "cradily": 3.6176713668468348, + "armaldo": 2.356476624201385, + "dusclops": 3.2033822859654633, + "absol": 3.3622327867089368, + "glalie": 5.071833713753039, + "sealeo": 3.8072436057273373, + "relicanth": 2.3889832124510337, + "metang": 4.011188549231007, + "luxray": 4.922712223038895, + "vespiquen": 3.206863083940708, + "cherrim": 10.103461626093711, + "gastrodon": 2.500252013466151, + "drifblim": 5.356800816451978, + "lopunny": 4.46931981402183, + "skuntank": 1.742026498066977, + "bronzong": 4.107799617231441, + "munchlax": 2.385998336308697, + "drapion": 3.362971621037482, + "abomasnow": 5.148199251985858, + "froslass": 2.7540299508989294, + "rotom": 3.633054751920862, + "stoutland": 2.9340836561294883, + "liepard": 12.426366862767225, + "musharna": 2.615246391504785, + "unfezant": 6.941841716048934, + "boldore": 4.625295730210636, + "swoobat": 6.553641805879839, + "audino": 2.576343007035571, + "gurdurr": 2.5186187656679895, + "palpitoad": 4.940430783370523, + "seismitoad": 7.633280301533053, + "scolipede": 3.1816774667923746, + "whimsicott": 4.105765553849897, + "lilligant": 5.458313114594077, + "basculin-red-striped": 3.60059489355101, + "basculin-blue-striped": 4.615647956441032, + "krookodile": 5.340517237100039, + "maractus": 4.133282340804633, + "crustle": 2.681767983143629, + "sigilyph": 2.8389852289078443, + "cofagrigus": 2.532709934327611, + "garbodor": 2.060558925236136, + "cinccino": 5.599967277376959, + "vanillish": 2.4767078680740373, + "emolga": 3.114752089390362, + "escavalier": 1.8542447358965681, + "amoonguss": 3.0807246789803937, + "jellicent": 2.007412686155225, + "galvantula": 2.077526907749222, + "klang": 3.1513415622773397, + "klinklang": 4.130524559713402, + "beheeyem": 2.7872285621274546, + "lampent": 2.2737923396133057, + "fraxure": 2.064414959112047, + "beartic": 2.082283248956159, + "cryogonal": 1.8055087804362837, + "accelgor": 3.4304430246133046, + "stunfisk": 1.6059284650554075, + "stunfisk-galar": 2.816653552595967, + "mienshao": 3.2000739449950997, + "druddigon": 2.3958516294732197, + "golurk": 1.9057701846561408, + "bisharp": 3.205334592068148, + "bouffalant": 1.6771147860603455, + "heatmor": 1.8990576699579067, + "durant": 3.3351913140380143, + "diggersby": 4.138771770073653, + "talonflame": 3.214361235826022, + "pangoro": 2.2981116398262604, + "doublade": 3.230891661337114, + "malamar": 8.18290041546515, + "barbaracle": 1.837588510995448, + "heliolisk": 4.200355225179632, + "tyrantrum": 2.1372311577571406, + "aurorus": 2.624407818559855, + "hawlucha": 4.103075228445422, + "dedenne": 3.31966568634322, + "klefki": 3.5189320349792137, + "trevenant": 3.99511981745788, + "gourgeist-average": 6.549021411222794, + "charjabug": 5.598123330843841, + "vikavolt": 2.451417089597813, + "ribombee": 4.572402395740452, + "lycanroc-midday": 3.6049090212733885, + "lycanroc-midnight": 2.7256267245722174, + "mudsdale": 2.128023922732091, + "araquanid": 3.00010156623123, + "lurantis": 4.22597549810881, + "shiinotic": 5.711869415529792, + "salazzle": 4.1549991710682335, + "bewear": 1.7568896280259927, + "tsareena": 5.601234780533236, + "comfey": 4.631671129673876, + "oranguru": 4.208444968003157, + "passimian": 2.3291839714129106, + "palossand": 2.1234386961089577, + "pyukumuku": 52.53909330482511, + "togedemaru": 3.352958240305048, + "mimikyu-disguised": 3.8667087598045216, + "greedent": 2.7868332260534108, + "orbeetle": 2.9555991154864345, + "thievul": 2.608681113705626, + "eldegoss": 6.485513297068655, + "dubwool": 3.819362494893416, + "drednaw": 1.4905538321461318, + "boltund": 6.057244719983959, + "carkol": 2.939772010300805, + "coalossal": 2.503973187015975, + "sandaconda": 4.453206987569101, + "cramorant": 10.393421471478762, + "barraskewda": 5.906759655553835, + "toxtricity-amped": 3.8469172524219175, + "centiskorch": 1.8978205494064766, + "grapploct": 1.6950262291354905, + "polteageist": 2.7353336999935527, + "hatterene": 3.0117977355891936, + "grimmsnarl": 4.701213673827533, + "obstagoon": 4.600835361537529, + "perrserker": 4.124409043294819, + "alcremie": 1.4650560738273888, + "falinks": 3.354921106131613, + "pincurchin": 3.815114045001125, + "frosmoth": 2.879963668277938, + "indeedee-male": 4.486624708089256, + "morpeko": 5.068173669000726, + "copperajah": 2.8704779974665855, + "duraludon": 2.1449146946219413, + "drakloak": 4.292633858904228 }, "ribombee": { - "ivysaur": 3.0778169723715445, - "charmeleon": 2.9649690276690563, - "wartortle": 2.822308164757768, - "butterfree": 4.034621200930376, - "raichu": 5.2218678513829335, - "raichu-alola": 4.133919122670024, - "sandslash": 2.3374272909723883, - "sandslash-alola": 1.5806399208049144, - "nidoqueen": 2.2402283938151286, - "nidoking": 1.4818847439692615, - "clefairy": 7.585339134623229, - "clefable": 1.6945547217798573, - "jigglypuff": 23.734255974191313, - "wigglytuff": 1.7521154460993429, - "gloom": 5.0738547643963905, - "vileplume": 3.262792492831043, - "dugtrio": 3.187377475686506, - "dugtrio-alola": 2.6803955477964245, - "persian": 4.098860502898528, - "persian-alola": 6.201885258388056, - "golduck": 3.0106282612954307, - "poliwrath": 2.2627687082484518, - "kadabra": 4.352787957097082, - "machoke": 4.589103746883497, - "tentacruel": 1.7114781045503937, - "slowbro": 2.383541370882114, - "magneton": 2.3910822476260836, - "haunter": 3.4542074006609633, - "kingler": 2.9471797073045467, - "exeggutor": 3.9760977417599976, - "marowak": 3.1751662176999638, - "marowak-alola": 1.3607250594498712, - "hitmonlee": 2.510270391811006, - "hitmonchan": 2.2051254809250054, - "lickitung": 1.906106256142507, - "weezing": 1.1690616127104208, - "weezing-galar": 1.8739627585757352, - "rhydon": 2.2930793011328356, - "chansey": 18.68530905875891, - "tangela": 8.484075830973172, - "kangaskhan": 2.008484871202038, - "seadra": 4.970675885105692, - "seaking": 2.1907988721367557, - "starmie": 1.8618129834003332, - "mr-mime": 6.20920874100201, - "mr-mime-galar": 4.396248870324754, - "scyther": 2.3054727161121717, - "jynx": 4.668545321932318, - "electabuzz": 2.4071352053679007, - "magmar": 1.1298842418170445, - "tauros": 2.2656185502833126, - "ditto": 4.844356460355856, - "vaporeon": 2.984855481703095, - "jolteon": 1.80625187941655, - "flareon": 1.5495855772198668, - "porygon": 2.827409177203571, - "dragonair": 2.418604875816047, - "noctowl": 4.2823683675987025, - "lanturn": 1.876982517459464, - "togetic": 4.218739745334271, - "xatu": 3.49734884344315, - "bellossom": 3.165837150785716, - "azumarill": 1.8762861786783356, - "sudowoodo": 2.6411899158424994, - "politoed": 2.51553243373535, - "quagsire": 5.124283877692508, - "slowking": 3.0095212348032385, - "dunsparce": 3.1911276599916345, - "qwilfish": 2.522081090913952, - "sneasel": 2.884716501598068, - "piloswine": 1.6249971917864676, - "octillery": 2.2195725241263955, - "mantine": 1.8514492378227239, - "skarmory": 1.4502032144073138, - "hitmontop": 3.2108554817052344, - "miltank": 3.677365616645432, - "grovyle": 10.981566038907044, - "sceptile": 2.0266342050584845, - "combusken": 3.061993204819355, - "blaziken": 1.3588598419557896, - "marshtomp": 2.5132559372015626, - "swampert": 1.3001952431349304, - "linoone": 5.176238519175223, - "linoone-galar": 6.769527449057288, - "pelipper": 5.05687725310111, - "ninjask": 7.296332229757184, - "exploud": 1.6202850657710006, - "lairon": 1.6424453557304641, - "manectric": 1.7090388628213131, - "roselia": 3.8857750026444275, - "sharpedo": 7.3764378577904655, - "wailmer": 5.924592024838557, - "torkoal": 1.3359882306851776, - "flygon": 2.8832939174896817, - "altaria": 1.6740469219608656, - "whiscash": 1.9347745151726865, - "crawdaunt": 2.9823469909923737, - "claydol": 4.060249251116511, - "cradily": 2.729172022713026, - "armaldo": 1.8898382588329532, - "dusclops": 3.067122416998001, - "absol": 2.6359784966259534, - "glalie": 4.0415340378661195, - "sealeo": 3.159884576953367, - "relicanth": 1.894505644697789, - "metang": 2.7018272896031985, - "luxray": 3.7580825996403444, - "vespiquen": 2.398195285144431, - "cherrim": 8.039372661764611, - "gastrodon": 2.004814355917845, - "drifblim": 3.696132945156255, - "lopunny": 3.463747987941635, - "skuntank": 1.4225786516242398, - "bronzong": 2.8833379627179627, - "munchlax": 1.7908171439794551, - "drapion": 2.564190774219588, - "abomasnow": 4.041982252150257, - "froslass": 2.5794239384109994, - "rotom": 3.296123170664241, - "stoutland": 2.318869307661388, - "liepard": 9.798527421540168, - "musharna": 2.04139047754791, - "unfezant": 4.809362142813233, - "boldore": 3.5312555649213118, - "swoobat": 5.008235255620761, - "audino": 2.1133753987376545, - "gurdurr": 3.1560141575874594, - "palpitoad": 3.820980141227654, - "seismitoad": 5.5733041427686665, - "scolipede": 2.7839156375713925, - "whimsicott": 3.1406415671737156, - "lilligant": 4.492684059714394, - "basculin-red-striped": 2.8126769523615596, - "basculin-blue-striped": 3.81222924687039, - "krookodile": 4.221133266774243, - "maractus": 3.2975862946982217, - "crustle": 2.193874141938914, - "sigilyph": 2.06740973339788, - "cofagrigus": 2.4101427509541216, - "garbodor": 1.3943729864209837, - "cinccino": 4.4588615435214365, - "vanillish": 2.087970904995678, - "emolga": 2.558705799558047, - "escavalier": 1.571265762584252, - "amoonguss": 2.2982210457673133, - "jellicent": 1.2920122445378324, - "galvantula": 1.6328401908208368, - "klang": 2.031836572922822, - "klinklang": 2.3803011847696176, - "beheeyem": 2.2492472203408975, - "lampent": 1.5545911724556967, - "fraxure": 2.269988724588927, - "beartic": 1.7657373028999674, - "cryogonal": 1.5474148823078133, - "accelgor": 3.138907999438226, - "stunfisk": 1.2944003255468255, - "stunfisk-galar": 2.0888848114002685, - "mienshao": 3.7551138325366136, - "druddigon": 1.9286173427818838, - "golurk": 1.779947869197549, - "bisharp": 2.444814771305655, - "bouffalant": 1.2911830472437957, - "heatmor": 1.377549807663616, - "durant": 2.523558334398178, - "diggersby": 3.1828469313391192, - "talonflame": 1.8951939557341997, - "pangoro": 3.050204226360866, - "doublade": 1.6899154390492646, - "malamar": 6.0391311053260655, - "barbaracle": 1.438422749679849, - "heliolisk": 3.3646519949912523, - "tyrantrum": 2.03423654705922, - "aurorus": 2.1683711202684837, - "hawlucha": 4.141716756505763, - "dedenne": 2.518647736312141, - "klefki": 2.05899000175898, - "trevenant": 3.337809814485217, - "gourgeist-average": 5.12836694077619, - "charjabug": 4.259895901104565, - "vikavolt": 1.9451208055515816, - "lycanroc-midday": 2.793724983988468, - "lycanroc-midnight": 2.245488135317651, - "mudsdale": 1.8087253526612417, - "araquanid": 2.1478950019263907, - "lurantis": 3.3979394700129095, - "shiinotic": 4.264182936790961, - "salazzle": 2.0951055201268374, - "bewear": 2.061447655619477, - "tsareena": 3.966834532525904, - "comfey": 4.11255034638347, - "oranguru": 3.2963782284597256, - "passimian": 2.6606169848603605, - "palossand": 1.9559107420045767, - "pyukumuku": 39.98803724391679, - "togedemaru": 1.6118931622731734, - "mimikyu-disguised": 3.3495111849232755, - "greedent": 2.0052024958308845, - "orbeetle": 2.473617707538037, - "thievul": 2.18777611289528, - "eldegoss": 5.227363793969056, - "dubwool": 3.131354829167738, - "drednaw": 1.1044113321251015, - "boltund": 4.936651971490328, - "carkol": 1.6515407214147169, - "coalossal": 1.483848692379274, - "sandaconda": 3.8587769151866, - "cramorant": 4.750785600837519, - "barraskewda": 5.185505949241259, - "toxtricity-amped": 2.156380246916307, - "centiskorch": 1.5161813022876798, - "grapploct": 2.1199918834029265, - "polteageist": 2.355108665251935, - "hatterene": 2.4530785588177797, - "grimmsnarl": 4.843857603757967, - "obstagoon": 3.545242088381112, - "perrserker": 2.5862427521532467, - "alcremie": 1.1903292719417933, - "falinks": 3.9096365122255685, - "pincurchin": 3.0386423752864777, - "frosmoth": 2.528397361571404, - "indeedee-male": 3.5856015783539084, - "morpeko": 3.7255753929539654, - "copperajah": 1.7289698561352953, - "duraludon": 1.6443656527589519, - "drakloak": 5.891635830023558, - "ribombee": 4.370614102714527 + "ivysaur": 3.072558678198665, + "charmeleon": 2.953352112114824, + "wartortle": 2.8214899501895903, + "butterfree": 4.026289021636579, + "raichu": 5.222280878130884, + "raichu-alola": 4.1303981453322, + "sandslash": 2.335937734816436, + "sandslash-alola": 1.5765371366655585, + "nidoqueen": 2.233582829009497, + "nidoking": 1.4776401626809523, + "clefairy": 7.564160894851391, + "clefable": 1.6897712666992053, + "jigglypuff": 23.6895885575603, + "wigglytuff": 1.7484420130456853, + "gloom": 5.055970264655131, + "vileplume": 3.2646363255859225, + "dugtrio": 3.183499988643206, + "dugtrio-alola": 2.672018813773864, + "persian": 4.090258010983195, + "persian-alola": 6.214787463723045, + "golduck": 3.006165042137207, + "poliwrath": 2.2623659171426524, + "kadabra": 4.346942876481198, + "machoke": 4.58736569963115, + "tentacruel": 1.7041952570491423, + "slowbro": 2.3818063390691746, + "magneton": 2.3810908418846775, + "haunter": 3.446831875311129, + "kingler": 2.949984573113544, + "exeggutor": 3.9839068504674557, + "marowak": 3.1724670844709193, + "marowak-alola": 1.353490266461633, + "hitmonlee": 2.5089519586455946, + "hitmonchan": 2.2009556604217395, + "lickitung": 1.9036778613719454, + "weezing": 1.1639682692919326, + "weezing-galar": 1.8654537173377905, + "rhydon": 2.2875145300252764, + "chansey": 18.60314625834779, + "tangela": 8.50123799619083, + "kangaskhan": 2.0093472432922916, + "seadra": 4.974274893306296, + "seaking": 2.1849898758074104, + "starmie": 1.860043089021504, + "mr-mime": 6.1976179948137196, + "mr-mime-galar": 4.39325251492356, + "scyther": 2.298347202757366, + "jynx": 4.661909650654934, + "electabuzz": 2.403091976581067, + "magmar": 1.1239487309276073, + "tauros": 2.267133282718441, + "ditto": 4.812556054137564, + "vaporeon": 2.9803960606841393, + "jolteon": 1.8033622083660084, + "flareon": 1.543041196041726, + "porygon": 2.8248548832370908, + "dragonair": 2.424033051160624, + "noctowl": 4.261486304589493, + "lanturn": 1.875406726843801, + "togetic": 4.201616712530168, + "xatu": 3.487536788838483, + "bellossom": 3.1697731516258294, + "azumarill": 1.8722341971082326, + "sudowoodo": 2.638113398356276, + "politoed": 2.5134309297683197, + "quagsire": 5.127045607444036, + "slowking": 3.007628784011234, + "dunsparce": 3.185984332746496, + "qwilfish": 2.510050628862024, + "sneasel": 2.8871542428460586, + "piloswine": 1.6237172676993046, + "octillery": 2.214691789201063, + "mantine": 1.8443207343269272, + "skarmory": 1.4442752866161, + "hitmontop": 3.2132730358824015, + "miltank": 3.671829004049017, + "grovyle": 11.004668356565388, + "sceptile": 2.0310677307783216, + "combusken": 3.05685915413936, + "blaziken": 1.3542833681323367, + "marshtomp": 2.511486836341166, + "swampert": 1.3003755857448733, + "linoone": 5.169209449269908, + "linoone-galar": 6.784839420200461, + "pelipper": 5.037403061302344, + "ninjask": 7.293205780501152, + "exploud": 1.6189467193540228, + "lairon": 1.6339745567030373, + "manectric": 1.7054057916697256, + "roselia": 3.881792852826675, + "sharpedo": 7.393885422275327, + "wailmer": 5.907356528276187, + "torkoal": 1.3306794144892793, + "flygon": 2.8858168720750195, + "altaria": 1.6735635611659934, + "whiscash": 1.930582533206798, + "crawdaunt": 2.9872937792658476, + "claydol": 4.055419207776545, + "cradily": 2.7254479332996224, + "armaldo": 1.8880217567874846, + "dusclops": 3.0634186308194655, + "absol": 2.637141929336824, + "glalie": 4.034756859668548, + "sealeo": 3.1558646524219798, + "relicanth": 1.8904748365064492, + "metang": 2.6932916169150474, + "luxray": 3.7523097439856503, + "vespiquen": 2.3924198956098746, + "cherrim": 8.048073887332725, + "gastrodon": 2.000665816733216, + "drifblim": 3.686697309633484, + "lopunny": 3.4568318421079174, + "skuntank": 1.421798346664057, + "bronzong": 2.875055722390398, + "munchlax": 1.7831150994948932, + "drapion": 2.5630388509334905, + "abomasnow": 4.041340861033461, + "froslass": 2.5746450405138894, + "rotom": 3.2919477383357405, + "stoutland": 2.313637252672309, + "liepard": 9.813148224804493, + "musharna": 2.0419110790473844, + "unfezant": 4.7855502030267445, + "boldore": 3.5279507949185875, + "swoobat": 4.994195522830044, + "audino": 2.108421514660566, + "gurdurr": 3.1640149827179895, + "palpitoad": 3.8177861900203798, + "seismitoad": 5.552110952349565, + "scolipede": 2.779316235856646, + "whimsicott": 3.136866048059944, + "lilligant": 4.502341817421895, + "basculin-red-striped": 2.808813312369832, + "basculin-blue-striped": 3.8104775887214712, + "krookodile": 4.232768181285442, + "maractus": 3.305367938339603, + "crustle": 2.192711522605208, + "sigilyph": 2.0606079783690365, + "cofagrigus": 2.4069920146607418, + "garbodor": 1.386909580332412, + "cinccino": 4.450634228443861, + "vanillish": 2.084781698072958, + "emolga": 2.550777892663943, + "escavalier": 1.569289543430889, + "amoonguss": 2.290920124183521, + "jellicent": 1.2898621205935232, + "galvantula": 1.6320577937239589, + "klang": 2.023113352874617, + "klinklang": 2.3680958341939444, + "beheeyem": 2.2478433724966242, + "lampent": 1.5475064450326932, + "fraxure": 2.27722154963341, + "beartic": 1.76484041459761, + "cryogonal": 1.5445908812370686, + "accelgor": 3.136528235319505, + "stunfisk": 1.2938813584988225, + "stunfisk-galar": 2.0880011598297314, + "mienshao": 3.7502372959437635, + "druddigon": 1.925580372657146, + "golurk": 1.7796276565983578, + "bisharp": 2.441152892455992, + "bouffalant": 1.2898416279941183, + "heatmor": 1.3714302756894479, + "durant": 2.516724787022884, + "diggersby": 3.178965620763042, + "talonflame": 1.8835060269178392, + "pangoro": 3.056112343760012, + "doublade": 1.682927754548283, + "malamar": 6.05336463910856, + "barbaracle": 1.4343567197827705, + "heliolisk": 3.3595469977747126, + "tyrantrum": 2.0355464603032796, + "aurorus": 2.161252244906546, + "hawlucha": 4.138199919820898, + "dedenne": 2.514103438186403, + "klefki": 2.049482685409057, + "trevenant": 3.3428618630148867, + "gourgeist-average": 5.118987536490874, + "charjabug": 4.258286284790825, + "vikavolt": 1.9446446099820087, + "ribombee": 4.370614102714527, + "lycanroc-midday": 2.781981982487874, + "lycanroc-midnight": 2.2412529994397423, + "mudsdale": 1.8118052184992846, + "araquanid": 2.1437831328099652, + "lurantis": 3.4019672098945084, + "shiinotic": 4.257758909365453, + "salazzle": 2.0801945696328823, + "bewear": 2.0584191266121348, + "tsareena": 3.964925963364072, + "comfey": 4.109233597737722, + "oranguru": 3.2941976992403115, + "passimian": 2.6567251381644255, + "palossand": 1.9548772440750806, + "pyukumuku": 39.943214636699054, + "togedemaru": 1.6023116312872312, + "mimikyu-disguised": 3.3397874690024922, + "greedent": 1.9996260523817908, + "orbeetle": 2.4738551634663297, + "thievul": 2.1897491847036337, + "eldegoss": 5.233352184028513, + "dubwool": 3.130548856084558, + "drednaw": 1.1013176132022426, + "boltund": 4.936128344105307, + "carkol": 1.6429443044669307, + "coalossal": 1.4768307002682377, + "sandaconda": 3.867505029114959, + "cramorant": 4.742057102332289, + "barraskewda": 5.1898727968324385, + "toxtricity-amped": 2.1502111611558425, + "centiskorch": 1.5094230097627566, + "grapploct": 2.123859024664222, + "polteageist": 2.352738783903174, + "hatterene": 2.4498758620467074, + "grimmsnarl": 4.854701807162346, + "obstagoon": 3.548512962291862, + "perrserker": 2.5781791829004166, + "alcremie": 1.1872750508739276, + "falinks": 3.9089520030758713, + "pincurchin": 3.035805515606116, + "frosmoth": 2.520656337517651, + "indeedee-male": 3.579851266385658, + "morpeko": 3.728842902614558, + "copperajah": 1.7213060669181277, + "duraludon": 1.641618544192347, + "drakloak": 5.901350792498192 }, "lycanroc-midday": { - "ivysaur": 3.1942159880990495, - "charmeleon": 6.317090690482932, - "wartortle": 2.5407021877264127, - "butterfree": 10.767502052025534, - "raichu": 5.46511225032366, - "raichu-alola": 4.061718077227223, - "sandslash": 1.6938556436447256, - "sandslash-alola": 1.871534103881624, - "nidoqueen": 2.2853721051605183, - "nidoking": 1.5167338989704997, - "clefairy": 10.0982001343902, - "clefable": 2.25770809578622, - "jigglypuff": 30.220631191602983, - "wigglytuff": 2.2062210319600792, - "gloom": 6.380594434750957, - "vileplume": 2.855056255310037, - "dugtrio": 3.04014933680138, - "dugtrio-alola": 2.279798047314201, - "persian": 4.959132946222334, - "persian-alola": 4.578154441650142, - "golduck": 2.958918516309709, - "poliwrath": 1.4451627989002516, - "kadabra": 4.714863988702895, - "machoke": 3.099388582453563, - "tentacruel": 2.5206418059153872, - "slowbro": 1.8236511937964601, - "magneton": 2.352397852703726, - "haunter": 4.723432389794915, - "kingler": 1.9393708980821085, - "exeggutor": 1.8228113385253935, - "marowak": 2.273247844726128, - "marowak-alola": 2.8540381114805737, - "hitmonlee": 2.0086288676479747, - "hitmonchan": 1.8884509517429726, - "lickitung": 1.8991108357437443, - "weezing": 1.670464078580976, - "weezing-galar": 2.679875983475041, - "rhydon": 1.6707529314093699, - "chansey": 37.128717036496234, - "tangela": 3.937927987637714, - "kangaskhan": 1.9478844121645253, - "seadra": 3.6864336805997615, - "seaking": 2.4902310093226205, - "starmie": 1.5248419772284714, - "mr-mime": 7.983199983261774, - "mr-mime-galar": 5.383503635322679, - "scyther": 6.104332970235397, - "jynx": 7.509863221819972, - "electabuzz": 2.949549402625145, - "magmar": 2.9990597866585063, - "tauros": 1.899783837918673, - "ditto": 4.441824250107182, - "vaporeon": 3.3928687417352563, - "jolteon": 2.3393205461341413, - "flareon": 4.436045896963484, - "porygon": 3.05123021079814, - "dragonair": 1.996673734483481, - "noctowl": 10.771504838427965, - "lanturn": 1.9518975880069114, - "togetic": 8.66225130115522, - "xatu": 5.773455539910782, - "bellossom": 2.2920619530932256, - "azumarill": 2.2682362233974898, - "sudowoodo": 2.2511787181546863, - "politoed": 2.545834661434869, - "quagsire": 3.3159345139196787, - "slowking": 2.5514164062917306, - "dunsparce": 3.50459893858278, - "qwilfish": 3.1225497755030536, - "sneasel": 3.292205828379026, - "piloswine": 1.5328259192300127, - "octillery": 2.2439898690366884, - "mantine": 4.05203529311377, - "skarmory": 1.8566114420301583, - "hitmontop": 2.090332121327278, - "miltank": 3.773805213685871, - "grovyle": 7.5222651261306215, - "sceptile": 1.4318127571708668, - "combusken": 3.3143300508492164, - "blaziken": 1.7072663148600626, - "marshtomp": 1.8685909330504584, - "swampert": 0.9917448569943471, - "linoone": 5.717988732115143, - "linoone-galar": 4.882479872223875, - "pelipper": 8.96475680726435, - "ninjask": 16.24623946466447, - "exploud": 1.7680976548034457, - "lairon": 1.7331413260686683, - "manectric": 2.0214339347140755, - "roselia": 4.2286199493416525, - "sharpedo": 5.025305041553418, - "wailmer": 6.3407373897601715, - "torkoal": 2.597146523395514, - "flygon": 1.9016891267406144, - "altaria": 2.519713265969947, - "whiscash": 1.5238255128754425, - "crawdaunt": 1.77204753903418, - "claydol": 2.9903754656580976, - "cradily": 2.290689941338365, - "armaldo": 2.419109468813887, - "dusclops": 3.6185224976649977, - "absol": 2.1641563701106405, - "glalie": 5.654380448960312, - "sealeo": 4.109397837735347, - "relicanth": 1.6867140218787995, - "metang": 2.2435529598830435, - "luxray": 4.234851429597727, - "vespiquen": 5.807577059170393, - "cherrim": 5.696334882463411, - "gastrodon": 1.8050649336092972, - "drifblim": 6.717816359206277, - "lopunny": 4.0262116171036375, - "skuntank": 1.6207883520929216, - "bronzong": 2.505954610611425, - "munchlax": 2.9035761297899727, - "drapion": 2.2936043825660395, - "abomasnow": 4.209310156715029, - "froslass": 4.286417227734898, - "rotom": 4.052880661939856, - "stoutland": 2.833042867397282, - "liepard": 7.468982634810637, - "musharna": 1.569573952500395, - "unfezant": 9.295322423839353, - "boldore": 2.7376492798614764, - "swoobat": 8.276494172952518, - "audino": 2.649781503143524, - "gurdurr": 1.5478077474209195, - "palpitoad": 2.9774649706957383, - "seismitoad": 6.118816188595931, - "scolipede": 4.235894230004399, - "whimsicott": 3.095036360507715, - "lilligant": 2.862495102246366, - "basculin-red-striped": 2.61738029563647, - "basculin-blue-striped": 3.3330874003954083, - "krookodile": 2.2772329818506156, - "maractus": 2.0366852893377554, - "crustle": 2.4997244236887424, - "sigilyph": 3.294746646545658, - "cofagrigus": 2.6166658338110347, - "garbodor": 2.023840093523892, - "cinccino": 5.176474161775225, - "vanillish": 3.2250820978259225, - "emolga": 4.67775829330925, - "escavalier": 1.7298655535088994, - "amoonguss": 2.6715758273466674, - "jellicent": 1.7474494446041597, - "galvantula": 2.349159597650175, - "klang": 2.173327393535109, - "klinklang": 2.528958069944533, - "beheeyem": 2.016354163849622, - "lampent": 4.361783521013843, - "fraxure": 1.5802869244827495, - "beartic": 2.2990173374356235, - "cryogonal": 2.8839847048655924, - "accelgor": 4.894633076446695, - "stunfisk": 0.998100288823005, - "stunfisk-galar": 1.579535478169948, - "mienshao": 2.826853375576256, - "druddigon": 1.8193534620382534, - "golurk": 1.4377441108759261, - "bisharp": 2.0527464173213876, - "bouffalant": 1.3039374959454801, - "heatmor": 2.9413820551332495, - "durant": 2.602967202522247, - "diggersby": 2.5780687333289345, - "talonflame": 6.79395117511641, - "pangoro": 1.3488658742942503, - "doublade": 1.5637658997251662, - "malamar": 2.9014006541582837, - "barbaracle": 1.4557884444487903, - "heliolisk": 4.2597463070414285, - "tyrantrum": 1.4472599833502118, - "aurorus": 3.3990124998803513, - "hawlucha": 3.455141255860389, - "dedenne": 3.1851105048473696, - "klefki": 2.354353949114187, - "trevenant": 2.7623901766337555, - "gourgeist-average": 5.269977074394381, - "charjabug": 5.346106860052268, - "vikavolt": 2.5982080422960103, - "ribombee": 7.086419644460404, - "lycanroc-midnight": 2.3741220123774527, - "mudsdale": 1.1814576480779868, - "araquanid": 3.6419809807267027, - "lurantis": 2.394149234602615, - "shiinotic": 4.943292574604296, - "salazzle": 4.988419654629457, - "bewear": 1.6193236516873737, - "tsareena": 3.0041072683434304, - "comfey": 4.537893619528918, - "oranguru": 2.9713271161330326, - "passimian": 1.8274567225025191, - "palossand": 1.567227725958404, - "pyukumuku": 48.49640036266986, - "togedemaru": 1.8759614761457155, - "mimikyu-disguised": 4.759303781402848, - "greedent": 2.1441241620734255, - "orbeetle": 2.6131014015855314, - "thievul": 2.1331107532683764, - "eldegoss": 3.8423366252982154, - "dubwool": 2.8710646681734504, - "drednaw": 1.1965339570391151, - "boltund": 5.020485749669417, - "carkol": 3.2649594869697385, - "coalossal": 2.519941266713783, - "sandaconda": 2.3776297010329626, - "cramorant": 8.308171088936547, - "barraskewda": 4.446828544324993, - "toxtricity-amped": 3.06840477057945, - "centiskorch": 5.169610300988413, - "grapploct": 1.2210041302566634, - "polteageist": 2.9587704608992547, - "hatterene": 2.694569880500951, - "grimmsnarl": 4.001992031994275, - "obstagoon": 2.6647971741568113, - "perrserker": 2.407285814888954, - "alcremie": 1.6485925243056812, - "falinks": 2.26336430422048, - "pincurchin": 2.948084546860038, - "frosmoth": 6.220241584112354, - "indeedee-male": 3.7620093763885123, - "morpeko": 2.9065287857033812, - "copperajah": 1.7025116440187185, - "duraludon": 1.1313027630938952, - "drakloak": 4.862514221589647, - "lycanroc-midday": 3.5709304969949307 + "ivysaur": 3.187961306900717, + "charmeleon": 6.335786531134135, + "wartortle": 2.5338211224953806, + "butterfree": 10.789201575008477, + "raichu": 5.458887325391035, + "raichu-alola": 4.061420788045769, + "sandslash": 1.6890426405923251, + "sandslash-alola": 1.8675512863525343, + "nidoqueen": 2.27956512702283, + "nidoking": 1.5131359387652963, + "clefairy": 10.095469568053883, + "clefable": 2.258254561311242, + "jigglypuff": 30.226081961072058, + "wigglytuff": 2.206805582382694, + "gloom": 6.383663305093982, + "vileplume": 2.8486467630385537, + "dugtrio": 3.0296298815620766, + "dugtrio-alola": 2.2679705440530378, + "persian": 4.96312543362507, + "persian-alola": 4.577708173213544, + "golduck": 2.9520244201858987, + "poliwrath": 1.439673804978581, + "kadabra": 4.715778864923164, + "machoke": 3.0905155634325228, + "tentacruel": 2.5163801627980984, + "slowbro": 1.8230657545821571, + "magneton": 2.3428955526235273, + "haunter": 4.716835192086808, + "kingler": 1.9315889226843863, + "exeggutor": 1.8181084856732563, + "marowak": 2.263875041893253, + "marowak-alola": 2.8572244437360865, + "hitmonlee": 2.002423878538057, + "hitmonchan": 1.8852788037203925, + "lickitung": 1.897553566154493, + "weezing": 1.6717676627344367, + "weezing-galar": 2.68135287673865, + "rhydon": 1.6624382145287018, + "chansey": 37.200215270393755, + "tangela": 3.9237902668650375, + "kangaskhan": 1.9466567056455453, + "seadra": 3.6773421426111206, + "seaking": 2.4863573039019204, + "starmie": 1.5242378807944696, + "mr-mime": 7.982912946669195, + "mr-mime-galar": 5.388516827511946, + "scyther": 6.1261057612989624, + "jynx": 7.524136111498213, + "electabuzz": 2.9502025446956015, + "magmar": 3.010073188513218, + "tauros": 1.8961995656325599, + "ditto": 4.4199419988578335, + "vaporeon": 3.3875832405267645, + "jolteon": 2.3401558563286504, + "flareon": 4.449480431119882, + "porygon": 3.05071749419506, + "dragonair": 1.9957611525515446, + "noctowl": 10.810823351177648, + "lanturn": 1.948318795814266, + "togetic": 8.686189533247209, + "xatu": 5.785078081750103, + "bellossom": 2.2866889668851402, + "azumarill": 2.266517705596274, + "sudowoodo": 2.244915713115299, + "politoed": 2.5401783925084533, + "quagsire": 3.300297080412306, + "slowking": 2.5471759019697755, + "dunsparce": 3.504690573535962, + "qwilfish": 3.1158665258311045, + "sneasel": 3.295120508052483, + "piloswine": 1.530252194236358, + "octillery": 2.238502775935851, + "mantine": 4.055839315631888, + "skarmory": 1.8543337930258457, + "hitmontop": 2.082813333345343, + "miltank": 3.774788424013573, + "grovyle": 7.498647121931369, + "sceptile": 1.4277755252933386, + "combusken": 3.309540998656894, + "blaziken": 1.7067873799444837, + "marshtomp": 1.8608234409644955, + "swampert": 0.9878193315664214, + "linoone": 5.718719449694529, + "linoone-galar": 4.879296129432646, + "pelipper": 8.989787621500357, + "ninjask": 16.281041115060148, + "exploud": 1.7674359838153042, + "lairon": 1.724918495227406, + "manectric": 2.023178130463627, + "roselia": 4.221569264337525, + "sharpedo": 5.016891607172477, + "wailmer": 6.327214297965499, + "torkoal": 2.6044414625911316, + "flygon": 1.8955150226910225, + "altaria": 2.5242671673348607, + "whiscash": 1.5198946366335595, + "crawdaunt": 1.7695297220946162, + "claydol": 2.9859147410143265, + "cradily": 2.286775119666063, + "armaldo": 2.419205872872041, + "dusclops": 3.6166346180871094, + "absol": 2.165152610796788, + "glalie": 5.656541217311277, + "sealeo": 4.10595852386198, + "relicanth": 1.6821941972927956, + "metang": 2.2357759603399963, + "luxray": 4.2361318006050315, + "vespiquen": 5.822491833859281, + "cherrim": 5.683452845520799, + "gastrodon": 1.8004022256033205, + "drifblim": 6.726243674220937, + "lopunny": 4.025786417456882, + "skuntank": 1.6218743665677158, + "bronzong": 2.4987462718054276, + "munchlax": 2.9081051564905405, + "drapion": 2.2907520585211287, + "abomasnow": 4.207570253821627, + "froslass": 4.291358976414371, + "rotom": 4.052378847465432, + "stoutland": 2.8364333924718412, + "liepard": 7.466607750248954, + "musharna": 1.5672338204822753, + "unfezant": 9.324878251820644, + "boldore": 2.729204741779878, + "swoobat": 8.293160569223499, + "audino": 2.652314088749529, + "gurdurr": 1.5404147934543633, + "palpitoad": 2.967248932106358, + "seismitoad": 6.118453403678192, + "scolipede": 4.237906525938021, + "whimsicott": 3.090779945060533, + "lilligant": 2.854866648857283, + "basculin-red-striped": 2.6108344009402282, + "basculin-blue-striped": 3.3239038009652546, + "krookodile": 2.2703685679330428, + "maractus": 2.0309142808914356, + "crustle": 2.4990882825025915, + "sigilyph": 3.297236944520879, + "cofagrigus": 2.6142438306347864, + "garbodor": 2.024035505265843, + "cinccino": 5.1795909338140635, + "vanillish": 3.229628856211054, + "emolga": 4.6881520338639415, + "escavalier": 1.7256109358708973, + "amoonguss": 2.669115122616865, + "jellicent": 1.7461864482241458, + "galvantula": 2.351980064026319, + "klang": 2.166596007379988, + "klinklang": 2.519684074283125, + "beheeyem": 2.016158644553655, + "lampent": 4.376488089744537, + "fraxure": 1.5794549601398533, + "beartic": 2.2979418623755574, + "cryogonal": 2.886947178936557, + "accelgor": 4.902281974539809, + "stunfisk": 0.9945618966479703, + "stunfisk-galar": 1.5727829006319272, + "mienshao": 2.8204264348080565, + "druddigon": 1.8168397015429563, + "golurk": 1.4321052751492593, + "bisharp": 2.0491872174158794, + "bouffalant": 1.3023143110086584, + "heatmor": 2.9487791204539273, + "durant": 2.596815581977798, + "diggersby": 2.5696623465501114, + "talonflame": 6.8184575911966405, + "pangoro": 1.3439196462920977, + "doublade": 1.5564097221971123, + "malamar": 2.8990244214833956, + "barbaracle": 1.4532262138427905, + "heliolisk": 4.260220887695101, + "tyrantrum": 1.4445409038410015, + "aurorus": 3.400736590033151, + "hawlucha": 3.4506637384566146, + "dedenne": 3.1854066915286747, + "klefki": 2.3470076300958316, + "trevenant": 2.7530814197170415, + "gourgeist-average": 5.268743986904336, + "charjabug": 5.346241446037451, + "vikavolt": 2.600883645097256, + "ribombee": 7.095796261874679, + "lycanroc-midday": 3.5709304969949307, + "lycanroc-midnight": 2.370714955578477, + "mudsdale": 1.1767704681243503, + "araquanid": 3.644534359102073, + "lurantis": 2.3900943864187933, + "shiinotic": 4.943557727179739, + "salazzle": 5.005264862785534, + "bewear": 1.6181866272714567, + "tsareena": 2.9982734921910024, + "comfey": 4.53111617724444, + "oranguru": 2.969847941466938, + "passimian": 1.8225859984789157, + "palossand": 1.5618187080225243, + "pyukumuku": 48.49058014631445, + "togedemaru": 1.870219274177516, + "mimikyu-disguised": 4.761946075891727, + "greedent": 2.141871830205932, + "orbeetle": 2.615273162767533, + "thievul": 2.1327893473627686, + "eldegoss": 3.832947235988841, + "dubwool": 2.8655906169854255, + "drednaw": 1.1930206476590037, + "boltund": 5.019194054178674, + "carkol": 3.271427972598957, + "coalossal": 2.520871515250966, + "sandaconda": 2.3697307700043018, + "cramorant": 8.308054016796298, + "barraskewda": 4.438495919321337, + "toxtricity-amped": 3.0687927960719987, + "centiskorch": 5.18871961936134, + "grapploct": 1.2154006343648285, + "polteageist": 2.9550655585201095, + "hatterene": 2.693772170844401, + "grimmsnarl": 3.9981030384540643, + "obstagoon": 2.663851135218588, + "perrserker": 2.39890952752231, + "alcremie": 1.6487432739392314, + "falinks": 2.253867229113349, + "pincurchin": 2.9422495583278314, + "frosmoth": 6.242780435470468, + "indeedee-male": 3.763297455925498, + "morpeko": 2.9052703385067202, + "copperajah": 1.6941265128162288, + "duraludon": 1.127268051760704, + "drakloak": 4.859905254448373 }, "lycanroc-midnight": { - "ivysaur": 3.341768406942758, - "charmeleon": 6.457197380351035, - "wartortle": 2.6699774511265773, - "butterfree": 11.198940361260195, - "raichu": 5.695366831882134, - "raichu-alola": 4.770810937048009, - "sandslash": 1.8441685686557876, - "sandslash-alola": 2.5494105661230675, - "nidoqueen": 2.5577734353833517, - "nidoking": 1.6967500915993021, - "clefairy": 10.45474672951325, - "clefable": 2.3705113423826125, - "jigglypuff": 31.09943943879489, - "wigglytuff": 2.2978251103790925, - "gloom": 6.554379039410854, - "vileplume": 2.990855997732581, - "dugtrio": 3.438548262293491, - "dugtrio-alola": 3.5239050023263037, - "persian": 5.256567511334694, - "persian-alola": 4.930632300530377, - "golduck": 3.1010439075126257, - "poliwrath": 1.5488429873603553, - "kadabra": 5.589816470899949, - "machoke": 3.290378784246939, - "tentacruel": 2.6405298156536725, - "slowbro": 2.086832154062368, - "magneton": 3.0702510905054714, - "haunter": 5.685480416806191, - "kingler": 2.048789928916532, - "exeggutor": 2.1119637159654903, - "marowak": 2.545940664834488, - "marowak-alola": 2.9460926809822015, - "hitmonlee": 2.1532886859807956, - "hitmonchan": 1.998574560502676, - "lickitung": 2.057369807640773, - "weezing": 1.7086215142652124, - "weezing-galar": 2.7504099892292055, - "rhydon": 1.980075284474785, - "chansey": 39.45727236395717, - "tangela": 4.134689361518642, - "kangaskhan": 2.083475335468801, - "seadra": 3.853513710795973, - "seaking": 2.5987535971110107, - "starmie": 1.7689873843808306, - "mr-mime": 8.257787617237412, - "mr-mime-galar": 5.5970683590052275, - "scyther": 6.26953603333483, - "jynx": 7.730767446094278, - "electabuzz": 3.060901089024588, - "magmar": 3.06022777503426, - "tauros": 2.0422635452759748, - "ditto": 3.389187086612561, - "vaporeon": 3.5476873749247675, - "jolteon": 2.4058167717945556, - "flareon": 4.5670543963691115, - "porygon": 3.2562068259327797, - "dragonair": 2.0742149546664974, - "noctowl": 10.974733086190435, - "lanturn": 2.0468513803980657, - "togetic": 8.877923064763712, - "xatu": 5.928941955482578, - "bellossom": 2.4065054764943485, - "azumarill": 2.3693680741435252, - "sudowoodo": 2.4103102317405134, - "politoed": 2.6698789535989773, - "quagsire": 3.7458761299099272, - "slowking": 3.0114573445535755, - "dunsparce": 3.7282566436186606, - "qwilfish": 3.265622291849997, - "sneasel": 3.538318123458118, - "piloswine": 1.6390211209038603, - "octillery": 2.3544415727902113, - "mantine": 4.218395105939405, - "skarmory": 1.9264812207996502, - "hitmontop": 2.2372268463687943, - "miltank": 3.991693742927553, - "grovyle": 7.9245159055170244, - "sceptile": 1.4922497402574408, - "combusken": 3.452638595014737, - "blaziken": 1.764129209311584, - "marshtomp": 2.1192421111071007, - "swampert": 1.1175188132765363, - "linoone": 6.081090116124091, - "linoone-galar": 6.947251054805374, - "pelipper": 9.143968197312427, - "ninjask": 16.848144777602094, - "exploud": 1.8947089391195613, - "lairon": 2.656717422613607, - "manectric": 2.0687795972334957, - "roselia": 4.422329424884072, - "sharpedo": 5.408933631524798, - "wailmer": 6.632448965048162, - "torkoal": 2.6584296548877298, - "flygon": 2.1418438460457265, - "altaria": 2.605859981230955, - "whiscash": 1.7448988081413321, - "crawdaunt": 1.926638659112661, - "claydol": 4.24170046230796, - "cradily": 2.4588140897030835, - "armaldo": 2.5132454217683664, - "dusclops": 4.262622168437087, - "absol": 2.3009159553120275, - "glalie": 5.8580170418181226, - "sealeo": 4.298626239157148, - "relicanth": 1.798943938143743, - "metang": 3.260172693910933, - "luxray": 4.357050476495205, - "vespiquen": 6.005596612456863, - "cherrim": 5.955933077464103, - "gastrodon": 2.034013139897982, - "drifblim": 6.947010091653977, - "lopunny": 4.296632100736841, - "skuntank": 1.6613252650316763, - "bronzong": 3.7982292892504628, - "munchlax": 3.086735378306159, - "drapion": 2.389037465834246, - "abomasnow": 4.379993337161814, - "froslass": 4.425175153940604, - "rotom": 4.831868297140526, - "stoutland": 2.993061615157699, - "liepard": 7.968420949510696, - "musharna": 1.840534989701284, - "unfezant": 9.452657825318475, - "boldore": 2.9215391248709013, - "swoobat": 8.497653580720085, - "audino": 2.8199810302086172, - "gurdurr": 1.6596916848821546, - "palpitoad": 3.3594716824738393, - "seismitoad": 6.7292374962986665, - "scolipede": 4.39830594848231, - "whimsicott": 3.2196928850634503, - "lilligant": 3.003059802037243, - "basculin-red-striped": 2.7446944778249702, - "basculin-blue-striped": 3.5008816601539414, - "krookodile": 2.902645138337707, - "maractus": 2.142007634951726, - "crustle": 2.5972345227494635, - "sigilyph": 3.4140683963748657, - "cofagrigus": 3.0542520915753295, - "garbodor": 2.0683195617960184, - "cinccino": 5.4886218275434775, - "vanillish": 3.337344756766353, - "emolga": 4.838708211491911, - "escavalier": 1.8152000564671913, - "amoonguss": 2.773832520657427, - "jellicent": 2.125378496221739, - "galvantula": 2.431144072396168, - "klang": 2.88261718186014, - "klinklang": 3.3190509701789246, - "beheeyem": 2.349404060970051, - "lampent": 4.468543424877822, - "fraxure": 1.636860009241873, - "beartic": 2.4008070421928656, - "cryogonal": 3.004747859275522, - "accelgor": 5.0842698301683384, - "stunfisk": 1.1305656576943262, - "stunfisk-galar": 2.3418783473218867, - "mienshao": 2.994315968402762, - "druddigon": 1.895622447875607, - "golurk": 2.1207131307930007, - "bisharp": 3.5287757550498426, - "bouffalant": 1.407484501275099, - "heatmor": 3.0180312087783934, - "durant": 2.713598030297663, - "diggersby": 3.3180711346085343, - "talonflame": 6.986624487589406, - "pangoro": 1.753625015948263, - "doublade": 2.142867458904724, - "malamar": 2.999839611203251, - "barbaracle": 1.5467847966710764, - "heliolisk": 4.574893686566547, - "tyrantrum": 1.5419710276855736, - "aurorus": 3.6561907960531097, - "hawlucha": 3.592313214139052, - "dedenne": 3.333669678683828, - "klefki": 2.524281695905859, - "trevenant": 3.311549775397115, - "gourgeist-average": 6.034827321235674, - "charjabug": 5.5183119798787885, - "vikavolt": 2.693843103547879, - "ribombee": 7.334224333099915, - "lycanroc-midday": 3.7869901007575355, - "mudsdale": 1.327513721678097, - "araquanid": 3.7954527655135095, - "lurantis": 2.4945972316028495, - "shiinotic": 5.095298608773005, - "salazzle": 5.051900494061254, - "bewear": 2.0240281890854837, - "tsareena": 3.133981315603629, - "comfey": 4.740992029965105, - "oranguru": 3.477833035240684, - "passimian": 1.9337183459174858, - "palossand": 2.213906371851758, - "pyukumuku": 48.99592005273175, - "togedemaru": 2.4897809478523834, - "mimikyu-disguised": 4.899350079468883, - "greedent": 2.293437350266716, - "orbeetle": 2.709898433802767, - "thievul": 2.287606357510133, - "eldegoss": 4.026930354998862, - "dubwool": 3.08652162457604, - "drednaw": 1.2869758338422792, - "boltund": 5.186994866092636, - "carkol": 3.3556322262193086, - "coalossal": 2.6011826124269386, - "sandaconda": 2.625983724705852, - "cramorant": 8.688891017727293, - "barraskewda": 4.641722392006098, - "toxtricity-amped": 3.1718182835648476, - "centiskorch": 5.318107602579145, - "grapploct": 1.314047638010552, - "polteageist": 3.5730344803002074, - "hatterene": 2.7879173607329992, - "grimmsnarl": 4.163179140501173, - "obstagoon": 3.7122035172931342, - "perrserker": 3.111761349595243, - "alcremie": 1.7222229797835147, - "falinks": 2.417738706338623, - "pincurchin": 3.0464801930649283, - "frosmoth": 6.4470534720849315, - "indeedee-male": 4.401524820733407, - "morpeko": 3.106923817781253, - "copperajah": 2.30168962743543, - "duraludon": 1.4616566518494896, - "drakloak": 5.749218678453651, - "lycanroc-midnight": 2.5396960419075407 + "ivysaur": 3.3392610606392106, + "charmeleon": 6.479476973109584, + "wartortle": 2.6671096429809644, + "butterfree": 11.219244206573613, + "raichu": 5.69887778094475, + "raichu-alola": 4.779962367809186, + "sandslash": 1.8417041216915186, + "sandslash-alola": 2.5517585335283846, + "nidoqueen": 2.5552805941672725, + "nidoking": 1.695377790795491, + "clefairy": 10.457566740703562, + "clefable": 2.3720202546787625, + "jigglypuff": 31.133964099704606, + "wigglytuff": 2.300445174182929, + "gloom": 6.563160090773864, + "vileplume": 2.9875674360330393, + "dugtrio": 3.4348919537314497, + "dugtrio-alola": 3.5208231232702385, + "persian": 5.272046578595203, + "persian-alola": 4.938641910161655, + "golduck": 3.098809700891972, + "poliwrath": 1.5454516161428455, + "kadabra": 5.602334037875002, + "machoke": 3.2856362559453895, + "tentacruel": 2.6397067662717486, + "slowbro": 2.0894351148124564, + "magneton": 3.067925584296753, + "haunter": 5.689305313083926, + "kingler": 2.0430305199266368, + "exeggutor": 2.110407693625496, + "marowak": 2.5403846998273103, + "marowak-alola": 2.9523681017202934, + "hitmonlee": 2.15096871064186, + "hitmonchan": 1.9984408962247695, + "lickitung": 2.0602595594355453, + "weezing": 1.7108354597081439, + "weezing-galar": 2.7516457441148945, + "rhydon": 1.974759616465499, + "chansey": 39.64560758319182, + "tangela": 4.123930834239774, + "kangaskhan": 2.0868423112448733, + "seadra": 3.8483976734114487, + "seaking": 2.5990098975415474, + "starmie": 1.7714059136240263, + "mr-mime": 8.265034622585256, + "mr-mime-galar": 5.610012583554279, + "scyther": 6.289084392270297, + "jynx": 7.757360878577032, + "electabuzz": 3.066355076616567, + "magmar": 3.072927010588887, + "tauros": 2.0427905138688573, + "ditto": 3.372070381554171, + "vaporeon": 3.5487199077031395, + "jolteon": 2.410682286257853, + "flareon": 4.58370849937497, + "porygon": 3.2629940417297263, + "dragonair": 2.0763132533029536, + "noctowl": 11.020702439117418, + "lanturn": 2.0468660867363453, + "togetic": 8.899162168178266, + "xatu": 5.945435532037639, + "bellossom": 2.404527155284959, + "azumarill": 2.3688443555480028, + "sudowoodo": 2.408703036417476, + "politoed": 2.6686314722124487, + "quagsire": 3.7360032610679426, + "slowking": 3.0126444496654576, + "dunsparce": 3.7362654766874055, + "qwilfish": 3.2616588896804526, + "sneasel": 3.5488842836317964, + "piloswine": 1.6396464256572798, + "octillery": 2.352493246777799, + "mantine": 4.224607613568422, + "skarmory": 1.9269161138186919, + "hitmontop": 2.2329330461285117, + "miltank": 3.9999234225065545, + "grovyle": 7.913860043918924, + "sceptile": 1.49070214780716, + "combusken": 3.4511674755151907, + "blaziken": 1.7652015099779845, + "marshtomp": 2.115236855582026, + "swampert": 1.1156285155118248, + "linoone": 6.094983635679381, + "linoone-galar": 6.961588932482577, + "pelipper": 9.169494730280244, + "ninjask": 16.879912536053347, + "exploud": 1.8984071807248641, + "lairon": 2.6541149775156105, + "manectric": 2.0733673184221146, + "roselia": 4.420808930336145, + "sharpedo": 5.410135438623502, + "wailmer": 6.628872928590779, + "torkoal": 2.6662932075605172, + "flygon": 2.1395536940410467, + "altaria": 2.6112895795686413, + "whiscash": 1.74388293158606, + "crawdaunt": 1.9267699900123167, + "claydol": 4.246097357629967, + "cradily": 2.460727057117371, + "armaldo": 2.515469116344854, + "dusclops": 4.268543171396958, + "absol": 2.305784630842658, + "glalie": 5.867890988694246, + "sealeo": 4.301340542354896, + "relicanth": 1.7976509297753944, + "metang": 3.2596865381116684, + "luxray": 4.3641801421889665, + "vespiquen": 6.018992394077538, + "cherrim": 5.951860837522595, + "gastrodon": 2.0333722158129177, + "drifblim": 6.963135270666854, + "lopunny": 4.30594140144937, + "skuntank": 1.6638004342037198, + "bronzong": 3.800552561945028, + "munchlax": 3.099306839594685, + "drapion": 2.388075531638662, + "abomasnow": 4.384208150269723, + "froslass": 4.434773554373258, + "rotom": 4.840674775346631, + "stoutland": 3.00266361399326, + "liepard": 7.979777526848581, + "musharna": 1.8413818447420172, + "unfezant": 9.485144293181156, + "boldore": 2.918017725464491, + "swoobat": 8.521296616365971, + "audino": 2.828383118489566, + "gurdurr": 1.6539895919841223, + "palpitoad": 3.355370076461824, + "seismitoad": 6.741028574563515, + "scolipede": 4.401194266049447, + "whimsicott": 3.216868353998806, + "lilligant": 2.9997754617993055, + "basculin-red-striped": 2.7420216674374394, + "basculin-blue-striped": 3.4966501287029046, + "krookodile": 2.9008504872836784, + "maractus": 2.1394509744975725, + "crustle": 2.5986242610479593, + "sigilyph": 3.4197843237251364, + "cofagrigus": 3.0571584547059105, + "garbodor": 2.0704536481483395, + "cinccino": 5.503468244741928, + "vanillish": 3.3461938538562856, + "emolga": 4.850514300027992, + "escavalier": 1.8141682440213263, + "amoonguss": 2.7742108053606325, + "jellicent": 2.128116327161678, + "galvantula": 2.4349222697758015, + "klang": 2.8835250346434456, + "klinklang": 3.317835741850387, + "beheeyem": 2.3535577273254065, + "lampent": 4.487212687395354, + "fraxure": 1.638045348586329, + "beartic": 2.403023702698629, + "cryogonal": 3.0126026171424023, + "accelgor": 5.094125639245078, + "stunfisk": 1.1290885152603458, + "stunfisk-galar": 2.3410953578956093, + "mienshao": 2.9919291612623855, + "druddigon": 1.895901278982243, + "golurk": 2.1185053662054605, + "bisharp": 3.535737786826182, + "bouffalant": 1.4091903631315272, + "heatmor": 3.027227230398912, + "durant": 2.710958436074851, + "diggersby": 3.3171018036940874, + "talonflame": 7.009375193494989, + "pangoro": 1.7512731768852623, + "doublade": 2.1385335824140475, + "malamar": 3.001171052875263, + "barbaracle": 1.5474233322438051, + "heliolisk": 4.587612109477899, + "tyrantrum": 1.5421932482151242, + "aurorus": 3.6667800277825195, + "hawlucha": 3.5893716251492176, + "dedenne": 3.335417747043889, + "klefki": 2.521542018030353, + "trevenant": 3.3074907199469012, + "gourgeist-average": 6.043459865385575, + "charjabug": 5.520741328977226, + "vikavolt": 2.6974619268789537, + "ribombee": 7.342620912591681, + "lycanroc-midday": 3.7943702618514026, + "lycanroc-midnight": 2.5396960419075407, + "mudsdale": 1.324985149292157, + "araquanid": 3.7999724659852268, + "lurantis": 2.4940422958530313, + "shiinotic": 5.097827317277437, + "salazzle": 5.069228669146469, + "bewear": 2.0267687042690707, + "tsareena": 3.1325358122066542, + "comfey": 4.736903284595132, + "oranguru": 3.4842899008600456, + "passimian": 1.9309285714017044, + "palossand": 2.2122686144096364, + "pyukumuku": 49.037017797308756, + "togedemaru": 2.490961731734097, + "mimikyu-disguised": 4.9064652575726475, + "greedent": 2.2958580107176987, + "orbeetle": 2.7145900840569803, + "thievul": 2.2917848272712984, + "eldegoss": 4.023865536663331, + "dubwool": 3.0875035318707837, + "drednaw": 1.286157571612014, + "boltund": 5.192996534981873, + "carkol": 3.365954732645283, + "coalossal": 2.6054623244906345, + "sandaconda": 2.621558116085345, + "cramorant": 8.69392838871243, + "barraskewda": 4.639798924709627, + "toxtricity-amped": 3.174987173617498, + "centiskorch": 5.336103739391728, + "grapploct": 1.3101134135162296, + "polteageist": 3.576020204300961, + "hatterene": 2.789156632857149, + "grimmsnarl": 4.1624324555291805, + "obstagoon": 3.7204714233978784, + "perrserker": 3.1106775726071607, + "alcremie": 1.7232935255377622, + "falinks": 2.4107177790249557, + "pincurchin": 3.0452598229835024, + "frosmoth": 6.469609319877323, + "indeedee-male": 4.413481125583777, + "morpeko": 3.1110945032079185, + "copperajah": 2.2987477533028184, + "duraludon": 1.4608626481143367, + "drakloak": 5.757114992831889 }, "mudsdale": { - "ivysaur": 3.1019954562126344, - "charmeleon": 5.118561409128862, - "wartortle": 2.6364786622664664, - "butterfree": 4.714972876823204, - "raichu": 7.784376883368763, - "raichu-alola": 5.361374925102801, - "sandslash": 2.163428840085644, - "sandslash-alola": 3.319325041389269, - "nidoqueen": 3.4972684749341827, - "nidoking": 2.3102865948619105, - "clefairy": 8.988173453751987, - "clefable": 2.174417197572985, - "jigglypuff": 29.90936537936597, - "wigglytuff": 2.220446620152413, - "gloom": 6.006551953252069, - "vileplume": 2.7959965043197093, - "dugtrio": 4.372405856617762, - "dugtrio-alola": 5.296473165929971, - "persian": 5.797729974624189, - "persian-alola": 5.937871610681206, - "golduck": 3.044104423405627, - "poliwrath": 1.9558586957538724, - "kadabra": 5.8839410492871735, - "machoke": 4.237340662499321, - "tentacruel": 3.094846945343617, - "slowbro": 2.156980487933887, - "magneton": 5.889360815785857, - "haunter": 6.094282734289585, - "kingler": 2.2686620536741993, - "exeggutor": 2.2988708582233652, - "marowak": 3.1858572481787877, - "marowak-alola": 2.6267076884414076, - "hitmonlee": 2.9048885068858903, - "hitmonchan": 2.457969263291651, - "lickitung": 2.392384628651846, - "weezing": 1.8236851764364155, - "weezing-galar": 3.0025404113371623, - "rhydon": 2.670137403473242, - "chansey": 43.43200966503281, - "tangela": 4.2024764769100855, - "kangaskhan": 2.4790298019688763, - "seadra": 3.780827683587263, - "seaking": 2.6675571592868765, - "starmie": 1.8146144694066915, - "mr-mime": 7.47337393398593, - "mr-mime-galar": 4.415319018070945, - "scyther": 2.759562388982671, - "jynx": 6.021264024123809, - "electabuzz": 4.174425357411257, - "magmar": 2.3432193406790907, - "tauros": 2.55052403821427, - "ditto": 2.452005530948666, - "vaporeon": 3.3814002262259013, - "jolteon": 2.880190902245454, - "flareon": 3.470569074041519, - "porygon": 3.7056185992954287, - "dragonair": 1.9976418959012303, - "noctowl": 6.806017450336835, - "lanturn": 2.5945906008861157, - "togetic": 4.634503348161726, - "xatu": 4.951236135366077, - "bellossom": 2.3761503059970996, - "azumarill": 2.1165106668226654, - "sudowoodo": 3.305054721083383, - "politoed": 2.7445731838372796, - "quagsire": 4.428723444236513, - "slowking": 3.1698631164705393, - "dunsparce": 4.109472144593852, - "qwilfish": 3.8740295040423685, - "sneasel": 4.328124526549573, - "piloswine": 1.8475182417615064, - "octillery": 2.4258599859263166, - "mantine": 2.5268343450538615, - "skarmory": 1.9648600007874841, - "hitmontop": 2.8806150901401715, - "miltank": 4.419757597079352, - "grovyle": 8.117362821989289, - "sceptile": 1.468057976653606, - "combusken": 4.297133207463082, - "blaziken": 2.0991783540087745, - "marshtomp": 2.464101737659452, - "swampert": 1.230678708652219, - "linoone": 6.964314879182119, - "linoone-galar": 9.042324105011604, - "pelipper": 5.8826767672091265, - "ninjask": 7.715176597583294, - "exploud": 2.0944743758615028, - "lairon": 4.01792949919963, - "manectric": 2.3843533864825215, - "roselia": 4.016146288419283, - "sharpedo": 6.474617854050381, - "wailmer": 6.633272848583427, - "torkoal": 2.103311807068591, - "flygon": 2.561115511102236, - "altaria": 1.6531236179925708, - "whiscash": 1.9982667272649164, - "crawdaunt": 2.283603743361779, - "claydol": 4.445023756633627, - "cradily": 2.920583404213051, - "armaldo": 1.989974750180144, - "dusclops": 4.559804254201157, - "absol": 2.552304967891782, - "glalie": 5.120702637676896, - "sealeo": 3.643609682543752, - "relicanth": 2.283428170004594, - "metang": 3.913206506811025, - "luxray": 5.393345750465946, - "vespiquen": 2.7742778205666356, - "cherrim": 5.709142472926253, - "gastrodon": 2.3415436985693825, - "drifblim": 6.35107945630037, - "lopunny": 5.051934741021778, - "skuntank": 1.90159311457508, - "bronzong": 4.317279673283467, - "munchlax": 3.746573113256698, - "drapion": 2.9622824888766504, - "abomasnow": 3.7660802550204178, - "froslass": 3.5483847835313034, - "rotom": 5.5176634595195555, - "stoutland": 3.2077811202080913, - "liepard": 9.48927413360518, - "musharna": 1.9638014533827837, - "unfezant": 6.4395999107946755, - "boldore": 3.9274074079705628, - "swoobat": 7.090851112018308, - "audino": 3.0597678719847496, - "gurdurr": 2.246197743306607, - "palpitoad": 3.91825178330289, - "seismitoad": 7.1814667367303935, - "scolipede": 3.165011179846636, - "whimsicott": 2.6369468675860386, - "lilligant": 2.9593535989935225, - "basculin-red-striped": 2.737532312689958, - "basculin-blue-striped": 3.5293054202959775, - "krookodile": 3.6397181834124175, - "maractus": 2.115026449980772, - "crustle": 2.1127980117250456, - "sigilyph": 3.0041053937250197, - "cofagrigus": 3.2233655572329107, - "garbodor": 2.394178197000564, - "cinccino": 5.827490719172598, - "vanillish": 2.635209384469108, - "emolga": 3.5176340466636544, - "escavalier": 1.9199263484134927, - "amoonguss": 2.5642125312944497, - "jellicent": 2.1632326098869084, - "galvantula": 1.8161305128823926, - "klang": 4.310887613546798, - "klinklang": 4.682212273664805, - "beheeyem": 2.4799343619000727, - "lampent": 3.518587454080386, - "fraxure": 1.627002080521571, - "beartic": 2.0031959876440317, - "cryogonal": 2.3322527154337296, - "accelgor": 3.2786079488527875, - "stunfisk": 1.634654256319923, - "stunfisk-galar": 3.21134040635052, - "mienshao": 3.731259691308989, - "druddigon": 1.997328684637956, - "golurk": 2.4803366807459293, - "bisharp": 4.547065836764081, - "bouffalant": 1.7812902738214937, - "heatmor": 2.4087415801427072, - "durant": 2.9748573943890317, - "diggersby": 4.359768313647662, - "talonflame": 2.9418450777114504, - "pangoro": 2.3186945668829426, - "doublade": 2.5529216173244675, - "malamar": 3.087009085516937, - "barbaracle": 1.8175578737711113, - "heliolisk": 6.378999794714686, - "tyrantrum": 1.991443690100376, - "aurorus": 4.600973557271246, - "hawlucha": 3.1680330017423217, - "dedenne": 4.0254531782566785, - "klefki": 4.088285402726852, - "trevenant": 3.825068722351765, - "gourgeist-average": 6.188173793829886, - "charjabug": 4.183185255158989, - "vikavolt": 1.8832809485187798, - "ribombee": 4.041060636572873, - "lycanroc-midday": 4.968986254941191, - "lycanroc-midnight": 3.4291941348042614, - "araquanid": 2.4360494275943685, - "lurantis": 2.4025909971281187, - "shiinotic": 3.9995157450588774, - "salazzle": 5.6229844983452075, - "bewear": 2.2273099779047687, - "tsareena": 3.084272583348004, - "comfey": 4.265859703738499, - "oranguru": 3.693985829719116, - "passimian": 2.421733548539615, - "palossand": 2.442863075851419, - "pyukumuku": 47.99878977340772, - "togedemaru": 4.790605388626534, - "mimikyu-disguised": 4.348492710296481, - "greedent": 2.715982527765043, - "orbeetle": 2.3669920105292173, - "thievul": 2.720692476456919, - "eldegoss": 3.8829415320461416, - "dubwool": 3.689996622272899, - "drednaw": 1.7310458079755753, - "boltund": 6.571837746847247, - "carkol": 4.067658767108822, - "coalossal": 3.0878086899615185, - "sandaconda": 3.0846946247612683, - "cramorant": 5.646919548836658, - "barraskewda": 4.697817791033266, - "toxtricity-amped": 5.054692067124074, - "centiskorch": 2.1997248364004425, - "grapploct": 1.6848969660924025, - "polteageist": 3.856420444595118, - "hatterene": 2.5848974920718506, - "grimmsnarl": 4.260526070658841, - "obstagoon": 4.740368845470454, - "perrserker": 4.438554121553968, - "alcremie": 1.513583011384114, - "falinks": 3.1490731371856198, - "pincurchin": 3.756053150884405, - "frosmoth": 2.9572314369236263, - "indeedee-male": 4.546679753433644, - "morpeko": 4.245929516355381, - "copperajah": 3.565396642494902, - "duraludon": 2.060534649823255, - "drakloak": 6.169105124941559, - "mudsdale": 1.670799231233655 + "ivysaur": 3.1012804159606033, + "charmeleon": 5.132325555575281, + "wartortle": 2.6366840086110233, + "butterfree": 4.710896484021028, + "raichu": 7.823178863768433, + "raichu-alola": 5.381641743603584, + "sandslash": 2.166721968762081, + "sandslash-alola": 3.332283184722058, + "nidoqueen": 3.5039510727090604, + "nidoking": 2.314901179461379, + "clefairy": 8.987282368367415, + "clefable": 2.1772070754987904, + "jigglypuff": 29.965714255444503, + "wigglytuff": 2.2239547533912947, + "gloom": 6.015854100838364, + "vileplume": 2.794372681919982, + "dugtrio": 4.386551523612338, + "dugtrio-alola": 5.3218460708660835, + "persian": 5.8171199451776285, + "persian-alola": 5.9566030134779435, + "golduck": 3.04511455962201, + "poliwrath": 1.9574887015449067, + "kadabra": 5.8972696578739585, + "machoke": 4.246676255347614, + "tentacruel": 3.0972780852440245, + "slowbro": 2.1596833137960365, + "magneton": 5.920147133992194, + "haunter": 6.093827521825612, + "kingler": 2.2688123306156385, + "exeggutor": 2.2989795143765717, + "marowak": 3.1915792194492134, + "marowak-alola": 2.631670737236333, + "hitmonlee": 2.913363654995842, + "hitmonchan": 2.4638422935378705, + "lickitung": 2.3987783047752633, + "weezing": 1.8267114622904699, + "weezing-galar": 3.0043782435699815, + "rhydon": 2.675773120915312, + "chansey": 43.618729205315525, + "tangela": 4.195849852280873, + "kangaskhan": 2.487755908315993, + "seadra": 3.7783986810161085, + "seaking": 2.6732001228163664, + "starmie": 1.817684413850758, + "mr-mime": 7.479327004863389, + "mr-mime-galar": 4.421224054038769, + "scyther": 2.7589329527636743, + "jynx": 6.031443784306891, + "electabuzz": 4.196740565654725, + "magmar": 2.3505161567338244, + "tauros": 2.558885326183784, + "ditto": 2.4374358432041987, + "vaporeon": 3.3850596191100903, + "jolteon": 2.8933033652303406, + "flareon": 3.481715855386505, + "porygon": 3.7180955042078794, + "dragonair": 2.002289178254701, + "noctowl": 6.820466135218096, + "lanturn": 2.601111912889202, + "togetic": 4.631016674706894, + "xatu": 4.954541131868396, + "bellossom": 2.3760954763863853, + "azumarill": 2.117732042375051, + "sudowoodo": 3.317152455091608, + "politoed": 2.748913864779749, + "quagsire": 4.42930581527194, + "slowking": 3.1718121355342026, + "dunsparce": 4.121249145804238, + "qwilfish": 3.876687497432581, + "sneasel": 4.344848286787937, + "piloswine": 1.8516823322756266, + "octillery": 2.4286149380411333, + "mantine": 2.5265473315407103, + "skarmory": 1.9677328876016047, + "hitmontop": 2.8848614924927807, + "miltank": 4.433092998490739, + "grovyle": 8.120365542706791, + "sceptile": 1.4680910599270511, + "combusken": 4.307062306699295, + "blaziken": 2.104384379573886, + "marshtomp": 2.465385665715952, + "swampert": 1.2315556864171269, + "linoone": 6.988268631274011, + "linoone-galar": 9.082167339922227, + "pelipper": 5.881611352649683, + "ninjask": 7.713378664307378, + "exploud": 2.100194767109932, + "lairon": 4.037203362641646, + "manectric": 2.393323395438853, + "roselia": 4.015956937366591, + "sharpedo": 6.491277755337153, + "wailmer": 6.639119124329022, + "torkoal": 2.1067458856779955, + "flygon": 2.564865822750768, + "altaria": 1.6535264391064093, + "whiscash": 2.000387433331115, + "crawdaunt": 2.2872907913730827, + "claydol": 4.4510579775631065, + "cradily": 2.9293487125978706, + "armaldo": 1.9947286870724774, + "dusclops": 4.566022830760999, + "absol": 2.559300152676545, + "glalie": 5.132775416180553, + "sealeo": 3.6470608272554346, + "relicanth": 2.288575094789552, + "metang": 3.929496578882963, + "luxray": 5.41649698958193, + "vespiquen": 2.773798247177816, + "cherrim": 5.707498993965226, + "gastrodon": 2.346008669389218, + "drifblim": 6.364639378552548, + "lopunny": 5.070772968720859, + "skuntank": 1.9070174930082437, + "bronzong": 4.330273700745595, + "munchlax": 3.7669480455876467, + "drapion": 2.969053008581663, + "abomasnow": 3.769744673517634, + "froslass": 3.54698558151641, + "rotom": 5.531246902807297, + "stoutland": 3.218393148710221, + "liepard": 9.520921269897025, + "musharna": 1.9657489991277983, + "unfezant": 6.448688599109824, + "boldore": 3.9393344646656647, + "swoobat": 7.0955954963364505, + "audino": 3.069371482599745, + "gurdurr": 2.249042421178145, + "palpitoad": 3.923251999136182, + "seismitoad": 7.199447888697186, + "scolipede": 3.1662221581642727, + "whimsicott": 2.63374947758479, + "lilligant": 2.958693563999545, + "basculin-red-striped": 2.738354078187947, + "basculin-blue-striped": 3.530228639157479, + "krookodile": 3.650301237542469, + "maractus": 2.114562922067759, + "crustle": 2.11694243635679, + "sigilyph": 3.005989990780722, + "cofagrigus": 3.2257818622187155, + "garbodor": 2.401198163793647, + "cinccino": 5.842920733067805, + "vanillish": 2.6383429349440948, + "emolga": 3.5277102538861245, + "escavalier": 1.92378083141691, + "amoonguss": 2.565579780020272, + "jellicent": 2.1643599128994335, + "galvantula": 1.8220909127479317, + "klang": 4.335739928558834, + "klinklang": 4.701036215087127, + "beheeyem": 2.485138417626627, + "lampent": 3.5262076998701817, + "fraxure": 1.629927646015062, + "beartic": 2.005832925316299, + "cryogonal": 2.335571562476852, + "accelgor": 3.2816656278014307, + "stunfisk": 1.6395185449750582, + "stunfisk-galar": 3.2237164523381696, + "mienshao": 3.7390957789794976, + "druddigon": 2.0025736070464286, + "golurk": 2.4839224215399165, + "bisharp": 4.570915445112444, + "bouffalant": 1.7884982594616998, + "heatmor": 2.4147039874063827, + "durant": 2.980641719046981, + "diggersby": 4.376569397645095, + "talonflame": 2.9431753800951186, + "pangoro": 2.3258018202733477, + "doublade": 2.555787385052863, + "malamar": 3.0939759678566907, + "barbaracle": 1.8211488295524876, + "heliolisk": 6.417301468799329, + "tyrantrum": 1.997933588530941, + "aurorus": 4.623884356695405, + "hawlucha": 3.1682057264712276, + "dedenne": 4.036929134850853, + "klefki": 4.10007001340343, + "trevenant": 3.8247077637996965, + "gourgeist-average": 6.191364259230959, + "charjabug": 4.195576089761617, + "vikavolt": 1.8853857531588747, + "ribombee": 4.037869597812428, + "lycanroc-midday": 4.993684489390239, + "lycanroc-midnight": 3.4446329429286604, + "mudsdale": 1.670799231233655, + "araquanid": 2.4380839274674857, + "lurantis": 2.4030958035450203, + "shiinotic": 3.9986877832388457, + "salazzle": 5.638446686271217, + "bewear": 2.2330094211673495, + "tsareena": 3.0854409207320717, + "comfey": 4.263954801167515, + "oranguru": 3.704381777910486, + "passimian": 2.426142387292087, + "palossand": 2.444447935324149, + "pyukumuku": 48.10112764201311, + "togedemaru": 4.819094058124528, + "mimikyu-disguised": 4.351302955639349, + "greedent": 2.7243756804100805, + "orbeetle": 2.368609200859214, + "thievul": 2.729545863519119, + "eldegoss": 3.8821793670005986, + "dubwool": 3.7000000105917774, + "drednaw": 1.7359308760602512, + "boltund": 6.599910216665517, + "carkol": 4.083615885537354, + "coalossal": 3.0969510274886094, + "sandaconda": 3.0882349418902075, + "cramorant": 5.6463299634724535, + "barraskewda": 4.703209241847775, + "toxtricity-amped": 5.0727744852353425, + "centiskorch": 2.203087659054348, + "grapploct": 1.6866850620291074, + "polteageist": 3.859504022574667, + "hatterene": 2.586328273698698, + "grimmsnarl": 4.268137079317705, + "obstagoon": 4.762719587830838, + "perrserker": 4.4583899361945285, + "alcremie": 1.514388176919753, + "falinks": 3.15251479907188, + "pincurchin": 3.766680341299729, + "frosmoth": 2.9607668035114196, + "indeedee-male": 4.5607734172383845, + "morpeko": 4.266920766706891, + "copperajah": 3.5814510005830282, + "duraludon": 2.070130038584721, + "drakloak": 6.177722687030663 }, "araquanid": { - "ivysaur": 3.278312369527032, - "charmeleon": 5.186215543049608, - "wartortle": 3.1714446203853335, - "butterfree": 4.845080065015454, - "raichu": 5.19112840873106, - "raichu-alola": 4.635557074633556, - "sandslash": 2.321203173804027, - "sandslash-alola": 1.742390904081571, - "nidoqueen": 3.6554512693910715, - "nidoking": 2.3014531459573058, - "clefairy": 9.990810576319241, - "clefable": 2.2039693117090087, - "jigglypuff": 28.286142800841628, - "wigglytuff": 2.145818464562815, - "gloom": 5.725870279253748, - "vileplume": 2.9839282235237956, - "dugtrio": 4.581251582538677, - "dugtrio-alola": 4.731233587618725, - "persian": 4.205931461010657, - "persian-alola": 5.484445818432048, - "golduck": 3.5260910916400525, - "poliwrath": 1.8129462310342777, - "kadabra": 5.71041694391128, - "machoke": 3.6432265631441756, - "tentacruel": 2.4168352734702934, - "slowbro": 2.1116551566071626, - "magneton": 2.9752373664354397, - "haunter": 4.673410566488285, - "kingler": 2.5389125077723307, - "exeggutor": 3.253001764906346, - "marowak": 3.766437284099217, - "marowak-alola": 2.4738020787571493, - "hitmonlee": 2.6778843885634958, - "hitmonchan": 2.1544133786352546, - "lickitung": 2.1236483983627834, - "weezing": 1.4905371686971403, - "weezing-galar": 2.4538249974642574, - "rhydon": 2.979625161106024, - "chansey": 29.806996964812278, - "tangela": 4.963070443549417, - "kangaskhan": 1.8013324400717994, - "seadra": 4.238494504517686, - "seaking": 2.617973645885356, - "starmie": 1.835430020847081, - "mr-mime": 7.617825503395141, - "mr-mime-galar": 5.096302406649832, - "scyther": 2.4712847214051603, - "jynx": 6.547959847552284, - "electabuzz": 2.443026274366537, - "magmar": 2.369425755319411, - "tauros": 1.955837445968532, - "ditto": 3.100296112490108, - "vaporeon": 3.8684394975964826, - "jolteon": 1.9911461108799433, - "flareon": 3.51897568823917, - "porygon": 2.788811569416736, - "dragonair": 1.8565975280477693, - "noctowl": 5.6948300789479, - "lanturn": 2.164768250563683, - "togetic": 5.582471179293716, - "xatu": 3.6531712881410496, - "bellossom": 3.022306293526932, - "azumarill": 2.45059346397203, - "sudowoodo": 2.75632849516749, - "politoed": 2.9790554103114726, - "quagsire": 5.217974411923224, - "slowking": 3.646837605696299, - "dunsparce": 3.1421714853488654, - "qwilfish": 3.1062403294390375, - "sneasel": 2.8697463791017173, - "piloswine": 1.9434902222901216, - "octillery": 2.571743475481303, - "mantine": 2.3870593446719086, - "skarmory": 1.7373419346886267, - "hitmontop": 2.854584463064576, - "miltank": 3.2747215489745685, - "grovyle": 10.78284337488321, - "sceptile": 1.8478466826588311, - "combusken": 4.457835736594673, - "blaziken": 2.10567075248525, - "marshtomp": 2.8763189062775325, - "swampert": 1.395465029143299, - "linoone": 4.986621710102472, - "linoone-galar": 5.760566062650074, - "pelipper": 4.703396588412009, - "ninjask": 7.376376544594148, - "exploud": 1.740988524157468, - "lairon": 2.2493293498637614, - "manectric": 1.7267251534793489, - "roselia": 4.2691832581636735, - "sharpedo": 6.651615442120507, - "wailmer": 6.882851150692504, - "torkoal": 2.13846339073807, - "flygon": 2.402919507797765, - "altaria": 1.446106878592903, - "whiscash": 2.4118383475046845, - "crawdaunt": 2.6707240519971056, - "claydol": 4.22573391152296, - "cradily": 2.8041426303766888, - "armaldo": 2.140255806986966, - "dusclops": 3.3118948584198105, - "absol": 2.528712701310404, - "glalie": 4.217257138177942, - "sealeo": 3.7017920812181258, - "relicanth": 1.7275423697561227, - "metang": 2.6935602282804005, - "luxray": 3.512922007056238, - "vespiquen": 2.5300374125561422, - "cherrim": 7.509244885268242, - "gastrodon": 2.26117469365646, - "drifblim": 4.139490079017678, - "lopunny": 3.5389507721188243, - "skuntank": 1.4179986939975215, - "bronzong": 3.1189225345725418, - "munchlax": 2.2937163650512087, - "drapion": 2.2572348646411893, - "abomasnow": 3.9855470507933646, - "froslass": 3.0188181963513188, - "rotom": 3.520640997635973, - "stoutland": 2.3340369823123583, - "liepard": 8.606524543841997, - "musharna": 1.9834922969527116, - "unfezant": 5.068753738635854, - "boldore": 3.301014785687701, - "swoobat": 5.219804878749425, - "audino": 2.3132311829849144, - "gurdurr": 2.1837501014270755, - "palpitoad": 4.0465883116463335, - "seismitoad": 6.43105408847129, - "scolipede": 3.0003717448392964, - "whimsicott": 3.865630829032524, - "lilligant": 3.865683023962305, - "basculin-red-striped": 3.152240615287075, - "basculin-blue-striped": 4.094519678088341, - "krookodile": 3.507759120004857, - "maractus": 2.8107897793737493, - "crustle": 2.236690976324439, - "sigilyph": 2.288202662675736, - "cofagrigus": 2.502022079393018, - "garbodor": 1.8241650372734066, - "cinccino": 4.593992572381104, - "vanillish": 2.3561472376532007, - "emolga": 2.6647295175348544, - "escavalier": 1.974695787290168, - "amoonguss": 2.5790377581186084, - "jellicent": 1.4718780154733686, - "galvantula": 1.4613605749091543, - "klang": 2.60351480143885, - "klinklang": 3.2498433519757906, - "beheeyem": 2.3503813827297213, - "lampent": 3.436712250182811, - "fraxure": 1.428622825264695, - "beartic": 1.9197225532914974, - "cryogonal": 2.1035008168013074, - "accelgor": 3.2738994905910337, - "stunfisk": 1.8292111022359139, - "stunfisk-galar": 2.958934093660635, - "mienshao": 3.2411742804081998, - "druddigon": 1.7572624812803876, - "golurk": 2.453021057213391, - "bisharp": 2.2320869139148285, - "bouffalant": 1.2929397788682633, - "heatmor": 2.458393646044441, - "durant": 2.5486545910976113, - "diggersby": 3.980372877164871, - "talonflame": 3.645191330352059, - "pangoro": 1.7551967817988534, - "doublade": 1.9768851719895844, - "malamar": 4.645946968202872, - "barbaracle": 1.510173524534447, - "heliolisk": 3.7236702876458594, - "tyrantrum": 1.3724950154224576, - "aurorus": 2.920187851490595, - "hawlucha": 3.4087068279635058, - "dedenne": 3.0317117221963983, - "klefki": 3.0891386655528787, - "trevenant": 2.9898460663965682, - "gourgeist-average": 4.72217162472098, - "charjabug": 3.528994694255869, - "vikavolt": 1.734795433626514, - "ribombee": 4.926397645825834, - "lycanroc-midday": 3.6458672592396493, - "lycanroc-midnight": 2.7381918464032253, - "mudsdale": 1.98584107579228, - "lurantis": 3.0083798252395857, - "shiinotic": 6.09403779841379, - "salazzle": 3.999242961118389, - "bewear": 1.6470560225317832, - "tsareena": 3.5630019629002625, - "comfey": 4.753432220357551, - "oranguru": 3.5736984601093353, - "passimian": 2.040534600766808, - "palossand": 2.4978498768967903, - "pyukumuku": 40.786855965178276, - "togedemaru": 2.1558922011859574, - "mimikyu-disguised": 4.029464958598176, - "greedent": 2.0323939692684876, - "orbeetle": 2.343707383101283, - "thievul": 2.5293591310365224, - "eldegoss": 5.1932955760647985, - "dubwool": 2.8719059614347398, - "drednaw": 1.165245705145821, - "boltund": 4.374917844695327, - "carkol": 3.5050884679684327, - "coalossal": 3.195730094821843, - "sandaconda": 3.5475977184512444, - "cramorant": 5.473499340070731, - "barraskewda": 4.743913796633763, - "toxtricity-amped": 2.6010072854376163, - "centiskorch": 2.8059389548543683, - "grapploct": 1.863716911837863, - "polteageist": 2.862271218916476, - "hatterene": 2.5856955458122997, - "grimmsnarl": 4.108090605830872, - "obstagoon": 2.8887550013409133, - "perrserker": 2.9539766473822744, - "alcremie": 1.63713733772579, - "falinks": 2.9833384274857595, - "pincurchin": 2.9128319612647013, - "frosmoth": 2.734092253286752, - "indeedee-male": 4.465841800439723, - "morpeko": 3.1979906728585066, - "copperajah": 2.5236533930091367, - "duraludon": 1.166975202107659, - "drakloak": 3.6876647273570686, - "araquanid": 2.619494652444133 + "ivysaur": 3.2813604460895194, + "charmeleon": 5.197007449875746, + "wartortle": 3.184441612012672, + "butterfree": 4.84892228743614, + "raichu": 5.1969945866385245, + "raichu-alola": 4.641672338282606, + "sandslash": 2.3212952121363735, + "sandslash-alola": 1.7402690155862501, + "nidoqueen": 3.6622433032548862, + "nidoking": 2.3035972350771527, + "clefairy": 10.014279315588126, + "clefable": 2.2066641029782716, + "jigglypuff": 28.331169357514103, + "wigglytuff": 2.1491564262894305, + "gloom": 5.729388961580916, + "vileplume": 2.9861914505730125, + "dugtrio": 4.5893469484206095, + "dugtrio-alola": 4.740997580207603, + "persian": 4.206975838976154, + "persian-alola": 5.493079885696316, + "golduck": 3.538558779235153, + "poliwrath": 1.8140377917206494, + "kadabra": 5.723339616254374, + "machoke": 3.6418701157877145, + "tentacruel": 2.423934625245723, + "slowbro": 2.1137875713378436, + "magneton": 2.9731204410015097, + "haunter": 4.676209321716542, + "kingler": 2.545245662493802, + "exeggutor": 3.2612616614300527, + "marowak": 3.7734296614922584, + "marowak-alola": 2.4760652723964425, + "hitmonlee": 2.683265700158528, + "hitmonchan": 2.1551190014545156, + "lickitung": 2.1271793120230695, + "weezing": 1.490348999316542, + "weezing-galar": 2.4541864508298077, + "rhydon": 2.981364796380067, + "chansey": 29.86163445382526, + "tangela": 4.961869221825026, + "kangaskhan": 1.8020773938691, + "seadra": 4.245687534933402, + "seaking": 2.6229841000432, + "starmie": 1.8372204823247036, + "mr-mime": 7.638258895082595, + "mr-mime-galar": 5.108229537797046, + "scyther": 2.4676985110786367, + "jynx": 6.556558098913009, + "electabuzz": 2.442664266461782, + "magmar": 2.374796663782943, + "tauros": 1.9575428565202104, + "ditto": 3.0864942399907944, + "vaporeon": 3.878974381520851, + "jolteon": 1.9926156024773438, + "flareon": 3.5270500999957326, + "porygon": 2.790905627619252, + "dragonair": 1.856350506238242, + "noctowl": 5.69027582874258, + "lanturn": 2.171558972899885, + "togetic": 5.590434508319785, + "xatu": 3.6531930705351074, + "bellossom": 3.0287843237927246, + "azumarill": 2.4591376161547562, + "sudowoodo": 2.756238505177862, + "politoed": 2.989604487596223, + "quagsire": 5.237720089584242, + "slowking": 3.6609605804890775, + "dunsparce": 3.1434290181689795, + "qwilfish": 3.109802489727256, + "sneasel": 2.874218671081823, + "piloswine": 1.9463954476716823, + "octillery": 2.578154985551996, + "mantine": 2.3880345067753446, + "skarmory": 1.7345962599206155, + "hitmontop": 2.8599634375603467, + "miltank": 3.2732072778667516, + "grovyle": 10.812832487377202, + "sceptile": 1.8519031304777946, + "combusken": 4.4687725443525546, + "blaziken": 2.1096600392537646, + "marshtomp": 2.8879113383593915, + "swampert": 1.4002205975134858, + "linoone": 4.986808956562444, + "linoone-galar": 5.7670018371648695, + "pelipper": 4.691622708327328, + "ninjask": 7.375314077161597, + "exploud": 1.7441875897576276, + "lairon": 2.2469580911713036, + "manectric": 1.7279086170111397, + "roselia": 4.2745058395742195, + "sharpedo": 6.666715519627665, + "wailmer": 6.8949310352349755, + "torkoal": 2.1405181137072926, + "flygon": 2.4049315334086963, + "altaria": 1.4461895000450875, + "whiscash": 2.415379987094224, + "crawdaunt": 2.6754440051464865, + "claydol": 4.233925387905632, + "cradily": 2.8077236627907904, + "armaldo": 2.14106857522072, + "dusclops": 3.3122449013591906, + "absol": 2.5332511362459496, + "glalie": 4.221821156470124, + "sealeo": 3.7157023604364063, + "relicanth": 1.7261435726413024, + "metang": 2.6919535181906276, + "luxray": 3.5106883597129457, + "vespiquen": 2.527369341204096, + "cherrim": 7.524833919331098, + "gastrodon": 2.2644201233181387, + "drifblim": 4.135697826277118, + "lopunny": 3.5392462391135666, + "skuntank": 1.419046229155129, + "bronzong": 3.1209353153364225, + "munchlax": 2.2945543091848015, + "drapion": 2.258347065319084, + "abomasnow": 3.991748364479517, + "froslass": 3.0223899902361913, + "rotom": 3.5201143801374895, + "stoutland": 2.3338400830179964, + "liepard": 8.617612952875712, + "musharna": 1.9872677016725884, + "unfezant": 5.054247741384175, + "boldore": 3.299250154833223, + "swoobat": 5.219729946478218, + "audino": 2.315840019731235, + "gurdurr": 2.1862018735164677, + "palpitoad": 4.055370593665897, + "seismitoad": 6.434019874628366, + "scolipede": 2.998745470394045, + "whimsicott": 3.8714494478667456, + "lilligant": 3.8738739409344536, + "basculin-red-striped": 3.162905537039867, + "basculin-blue-striped": 4.10888804888954, + "krookodile": 3.5160712066443542, + "maractus": 2.814654754193125, + "crustle": 2.236629195254657, + "sigilyph": 2.2895801329416274, + "cofagrigus": 2.5027908733031765, + "garbodor": 1.824568481429337, + "cinccino": 4.5979543019616465, + "vanillish": 2.360711401197581, + "emolga": 2.660397911771594, + "escavalier": 1.978378761243715, + "amoonguss": 2.5808523115409967, + "jellicent": 1.4723187386664942, + "galvantula": 1.460859521784243, + "klang": 2.6012823555290923, + "klinklang": 3.249712467144481, + "beheeyem": 2.3544523514541194, + "lampent": 3.443016110341851, + "fraxure": 1.4275890340455315, + "beartic": 1.9248004077276089, + "cryogonal": 2.1097363519260552, + "accelgor": 3.2789650605655796, + "stunfisk": 1.8336631203237204, + "stunfisk-galar": 2.963911099364614, + "mienshao": 3.2404713367464755, + "druddigon": 1.7575052744353297, + "golurk": 2.457559990174122, + "bisharp": 2.2306061847201684, + "bouffalant": 1.294773961234368, + "heatmor": 2.4633322256665657, + "durant": 2.543967785390299, + "diggersby": 3.9851357466671598, + "talonflame": 3.648895219303366, + "pangoro": 1.757515198577841, + "doublade": 1.9746331215230803, + "malamar": 4.65402226384901, + "barbaracle": 1.5119177569327669, + "heliolisk": 3.717268010936885, + "tyrantrum": 1.3707076673169438, + "aurorus": 2.920484063627393, + "hawlucha": 3.408859660446131, + "dedenne": 3.034067879818958, + "klefki": 3.0904229095090536, + "trevenant": 2.992352670345964, + "gourgeist-average": 4.721603329785967, + "charjabug": 3.5246428293463654, + "vikavolt": 1.7356141765576332, + "ribombee": 4.93449214164508, + "lycanroc-midday": 3.6417532354756803, + "lycanroc-midnight": 2.7383649841260604, + "mudsdale": 1.990093585939546, + "araquanid": 2.619494652444133, + "lurantis": 3.0135551074026967, + "shiinotic": 6.110233085148902, + "salazzle": 4.0035974242075945, + "bewear": 1.6453939568403713, + "tsareena": 3.564026727254017, + "comfey": 4.7630568309253105, + "oranguru": 3.5806161522927846, + "passimian": 2.038060440585698, + "palossand": 2.501970805690698, + "pyukumuku": 40.76972788719506, + "togedemaru": 2.154179623779243, + "mimikyu-disguised": 4.030171962202527, + "greedent": 2.0327626815301203, + "orbeetle": 2.3479493849112556, + "thievul": 2.535260020844699, + "eldegoss": 5.2054383080538225, + "dubwool": 2.872981901722312, + "drednaw": 1.165498392171485, + "boltund": 4.374021890233225, + "carkol": 3.5091426149590976, + "coalossal": 3.2031849430324226, + "sandaconda": 3.55101512267803, + "cramorant": 5.486530450777618, + "barraskewda": 4.75079872695202, + "toxtricity-amped": 2.597490180413114, + "centiskorch": 2.8119000109977392, + "grapploct": 1.8683336660043373, + "polteageist": 2.864946219178666, + "hatterene": 2.590543253592468, + "grimmsnarl": 4.119282089171856, + "obstagoon": 2.889127144766915, + "perrserker": 2.9518952076827016, + "alcremie": 1.6410814928095476, + "falinks": 2.9845193945766892, + "pincurchin": 2.917008583036993, + "frosmoth": 2.7338338452632933, + "indeedee-male": 4.477283743691657, + "morpeko": 3.1987203824046873, + "copperajah": 2.5270891800090016, + "duraludon": 1.1646246805037839, + "drakloak": 3.6845457451047747 }, "lurantis": { - "ivysaur": 3.088270245263154, - "charmeleon": 3.058248445849145, - "wartortle": 3.9534341115447273, - "butterfree": 3.5500965908078044, - "raichu": 5.47784748633567, - "raichu-alola": 4.707894939562195, - "sandslash": 3.4385288906822957, - "sandslash-alola": 1.7977087140427213, - "nidoqueen": 2.857232803159692, - "nidoking": 1.9019033028769408, - "clefairy": 8.943042048970437, - "clefable": 2.1294512103080567, - "jigglypuff": 27.61656319349904, - "wigglytuff": 2.1009723483733853, - "gloom": 4.975602189889258, - "vileplume": 2.7489144881235035, - "dugtrio": 5.006100474582573, - "dugtrio-alola": 3.6659145406170466, - "persian": 4.420810922907601, - "persian-alola": 5.16132871879711, - "golduck": 4.606323404263312, - "poliwrath": 2.8388174834161277, - "kadabra": 5.337430436166171, - "machoke": 4.197139967481706, - "tentacruel": 2.2956642502158955, - "slowbro": 2.5380621287953256, - "magneton": 2.912639280436508, - "haunter": 3.8930319673331697, - "kingler": 4.389505928457219, - "exeggutor": 3.1711779658234316, - "marowak": 4.748289561601272, - "marowak-alola": 1.7004347954558088, - "hitmonlee": 2.1962883239708693, - "hitmonchan": 2.0304522974588286, - "lickitung": 1.9745865248942174, - "weezing": 1.2649796903309771, - "weezing-galar": 2.197068449561051, - "rhydon": 5.60542141464593, - "chansey": 27.96263309007773, - "tangela": 5.202136011746194, - "kangaskhan": 1.9597356157020012, - "seadra": 7.184541035398352, - "seaking": 3.2865598965421117, - "starmie": 1.9309493181014725, - "mr-mime": 6.890558428939735, - "mr-mime-galar": 4.005500078922092, - "scyther": 2.1241328421883434, - "jynx": 5.470193180643602, - "electabuzz": 2.840949755156588, - "magmar": 1.2496254295226494, - "tauros": 2.2626557463460912, - "ditto": 3.3670012556908286, - "vaporeon": 4.363688349071679, - "jolteon": 2.0217476180725233, - "flareon": 1.7712039836071012, - "porygon": 2.8300096657038734, - "dragonair": 1.6950980660162591, - "noctowl": 4.570302439553397, - "lanturn": 2.921408396259614, - "togetic": 4.235932082985775, - "xatu": 3.36743314342618, - "bellossom": 2.8923873245888245, - "azumarill": 1.8693825753311226, - "sudowoodo": 4.022812085154544, - "politoed": 3.634412770314256, - "quagsire": 11.249594336509656, - "slowking": 3.205706993777151, - "dunsparce": 3.1071587128714544, - "qwilfish": 3.7312283609038035, - "sneasel": 2.6551887234653835, - "piloswine": 2.1089375011911415, - "octillery": 3.2611471067950846, - "mantine": 2.2666695615715446, - "skarmory": 1.4655469918320172, - "hitmontop": 2.6998199201544777, - "miltank": 3.9853373186810765, - "grovyle": 10.55032866955598, - "sceptile": 1.8029125554602465, - "combusken": 2.779784939726659, - "blaziken": 1.3077602595775595, - "marshtomp": 5.520698512339541, - "swampert": 2.6169789981670872, - "linoone": 5.185081348004019, - "linoone-galar": 5.48014271684095, - "pelipper": 6.26240917875365, - "ninjask": 5.651606595138349, - "exploud": 1.54634194658995, - "lairon": 2.8854314461204407, - "manectric": 1.8482792971293573, - "roselia": 4.187731608789576, - "sharpedo": 7.260711379074318, - "wailmer": 9.352799377599954, - "torkoal": 1.4894250843501646, - "flygon": 2.4345462966907565, - "altaria": 1.2578189295437776, - "whiscash": 4.6375449530016395, - "crawdaunt": 3.2729761357150293, - "claydol": 4.468463960162813, - "cradily": 2.7027300343186162, - "armaldo": 1.9257276835947246, - "dusclops": 3.4119223194583843, - "absol": 2.1902055265973406, - "glalie": 4.039957447590265, - "sealeo": 4.323493352747224, - "relicanth": 4.6395530480200495, - "metang": 2.7190267649732585, - "luxray": 4.2139401065115285, - "vespiquen": 2.0870172450065754, - "cherrim": 7.410402402543675, - "gastrodon": 4.374216241107957, - "drifblim": 3.748682701333351, - "lopunny": 3.6287756021075386, - "skuntank": 1.2619002867408735, - "bronzong": 2.9512820988699358, - "munchlax": 2.1967155638475573, - "drapion": 2.09177584381616, - "abomasnow": 3.6513677549181827, - "froslass": 2.785312090764262, - "rotom": 4.145384700358051, - "stoutland": 2.5162278449480966, - "liepard": 8.406595549509618, - "musharna": 1.9083224304384632, - "unfezant": 4.954697191888442, - "boldore": 5.523420241568635, - "swoobat": 4.817329180887639, - "audino": 2.281478352577148, - "gurdurr": 2.573145331814058, - "palpitoad": 8.477201419561254, - "seismitoad": 12.286392797916005, - "scolipede": 2.5312907250991428, - "whimsicott": 2.8993981189635254, - "lilligant": 3.5974008388325274, - "basculin-red-striped": 4.225791978013113, - "basculin-blue-striped": 5.700457559034683, - "krookodile": 4.158231264886628, - "maractus": 2.827787822532106, - "crustle": 2.177816595468867, - "sigilyph": 2.078933352819201, - "cofagrigus": 2.895811274042852, - "garbodor": 1.475698296858424, - "cinccino": 4.531196335576393, - "vanillish": 1.9708268800112336, - "emolga": 2.732658749949127, - "escavalier": 1.4728596844236512, - "amoonguss": 2.2777753092683164, - "jellicent": 2.000713858300382, - "galvantula": 1.5441540269272416, - "klang": 2.4821539555514702, - "klinklang": 2.946074592475522, - "beheeyem": 2.2458659068759577, - "lampent": 1.824976312092373, - "fraxure": 1.3876093025318292, - "beartic": 1.6271713173989086, - "cryogonal": 1.602352887275325, - "accelgor": 2.550939972239773, - "stunfisk": 1.887019053527022, - "stunfisk-galar": 2.557851375771493, - "mienshao": 3.55705002846695, - "druddigon": 1.6886079158737217, - "golurk": 2.7140159015171204, - "bisharp": 2.115875676867071, - "bouffalant": 1.2179715769583659, - "heatmor": 1.508100294005323, - "durant": 2.278161771203715, - "diggersby": 4.67269325406268, - "talonflame": 2.2414852803725056, - "pangoro": 1.8658099108773334, - "doublade": 2.163278018862943, - "malamar": 4.602738891877831, - "barbaracle": 3.016102107202771, - "heliolisk": 3.8565241568111333, - "tyrantrum": 1.8206419992971372, - "aurorus": 2.935484641370076, - "hawlucha": 2.980096615010262, - "dedenne": 3.1174635770183863, - "klefki": 2.616775734201669, - "trevenant": 3.0028923726088115, - "gourgeist-average": 4.405149634349455, - "charjabug": 3.8471796945539274, - "vikavolt": 1.5703817093650239, - "ribombee": 3.6603139318150744, - "lycanroc-midday": 4.591741366503362, - "lycanroc-midnight": 3.2354644404321427, - "mudsdale": 2.311236430131017, - "araquanid": 2.225224823641724, - "shiinotic": 4.279840443619033, - "salazzle": 2.453097637437911, - "bewear": 1.9237735776905418, - "tsareena": 3.6445823707667824, - "comfey": 4.754948701255637, - "oranguru": 3.3742501898526864, - "passimian": 2.485955336018747, - "palossand": 3.2390560732701434, - "pyukumuku": 53.02295190467713, - "togedemaru": 1.9294945928811742, - "mimikyu-disguised": 4.082391756441318, - "greedent": 2.3042930757753624, - "orbeetle": 2.001836491141132, - "thievul": 2.2093148903289266, - "eldegoss": 5.157023635273361, - "dubwool": 3.190974636480754, - "drednaw": 2.745190402901335, - "boltund": 5.173272711124985, - "carkol": 2.4070073752145307, - "coalossal": 2.0269790544968598, - "sandaconda": 4.771944339379568, - "cramorant": 5.554588024893343, - "barraskewda": 7.020065039888314, - "toxtricity-amped": 2.412234132117543, - "centiskorch": 1.6124838963305346, - "grapploct": 1.8699613588839412, - "polteageist": 2.6913989048696187, - "hatterene": 2.6083887072349463, - "grimmsnarl": 3.9786284031100747, - "obstagoon": 2.9304616800575123, - "perrserker": 2.9616659653597726, - "alcremie": 1.4058263076892827, - "falinks": 3.335695498967718, - "pincurchin": 3.3498177406039913, - "frosmoth": 2.2433195498388523, - "indeedee-male": 3.9957536961560827, - "morpeko": 3.3629676813889597, - "copperajah": 2.0452119002690763, - "duraludon": 1.2518516884202104, - "drakloak": 3.852206079162909, - "lurantis": 2.8135661031153116 + "ivysaur": 3.087994502779185, + "charmeleon": 3.0519702918357763, + "wartortle": 3.9642447151126516, + "butterfree": 3.539326421976706, + "raichu": 5.490541861338756, + "raichu-alola": 4.7173057063751225, + "sandslash": 3.446944675304276, + "sandslash-alola": 1.7947467523473797, + "nidoqueen": 2.858216510909302, + "nidoking": 1.9029814578629765, + "clefairy": 8.943874101609032, + "clefable": 2.1313977726351343, + "jigglypuff": 27.635717332772657, + "wigglytuff": 2.102322183985559, + "gloom": 4.966845802387299, + "vileplume": 2.7475716987825374, + "dugtrio": 5.022335507956294, + "dugtrio-alola": 3.6699063004391053, + "persian": 4.423727339048623, + "persian-alola": 5.170350958831511, + "golduck": 4.621560866580159, + "poliwrath": 2.8464043405101003, + "kadabra": 5.343799727885976, + "machoke": 4.201886130425992, + "tentacruel": 2.296881218225809, + "slowbro": 2.5430485410115944, + "magneton": 2.91342633850117, + "haunter": 3.890183249710897, + "kingler": 4.406868637909014, + "exeggutor": 3.179477842573389, + "marowak": 4.7630940665451895, + "marowak-alola": 1.6963575503770159, + "hitmonlee": 2.1954136694311943, + "hitmonchan": 2.0293946455516743, + "lickitung": 1.9765989432838635, + "weezing": 1.2625269037417095, + "weezing-galar": 2.1942061887749675, + "rhydon": 5.626251174545368, + "chansey": 27.93475630013435, + "tangela": 5.2148516016067274, + "kangaskhan": 1.9621226518780248, + "seadra": 7.207745621323387, + "seaking": 3.293040669132056, + "starmie": 1.935443352878724, + "mr-mime": 6.895250953067601, + "mr-mime-galar": 4.005699398449332, + "scyther": 2.118428063181147, + "jynx": 5.467398482730359, + "electabuzz": 2.846996637615673, + "magmar": 1.246380638540424, + "tauros": 2.2667615521892746, + "ditto": 3.3517507646672993, + "vaporeon": 4.377007918725834, + "jolteon": 2.025415360562476, + "flareon": 1.7681430047244582, + "porygon": 2.831237459102444, + "dragonair": 1.6951834391165221, + "noctowl": 4.559778129424524, + "lanturn": 2.9341369057768847, + "togetic": 4.228480186528884, + "xatu": 3.363569718428022, + "bellossom": 2.898308130333337, + "azumarill": 1.8598946846722013, + "sudowoodo": 4.033370467280702, + "politoed": 3.6466172378002173, + "quagsire": 11.29962487015078, + "slowking": 3.2131881699239915, + "dunsparce": 3.1045944853214253, + "qwilfish": 3.733718209995551, + "sneasel": 2.655542511747872, + "piloswine": 2.111358316826889, + "octillery": 3.26662407179532, + "mantine": 2.2666705586598135, + "skarmory": 1.4621295966405277, + "hitmontop": 2.700872299771004, + "miltank": 3.9899858188400192, + "grovyle": 10.574137922467814, + "sceptile": 1.8059958181373776, + "combusken": 2.7764147322717836, + "blaziken": 1.3054233655370973, + "marshtomp": 5.542660397927748, + "swampert": 2.62726161421263, + "linoone": 5.184954138614951, + "linoone-galar": 5.488123684227121, + "pelipper": 6.259421985344252, + "ninjask": 5.632547491339022, + "exploud": 1.5465817036685252, + "lairon": 2.8869554563884314, + "manectric": 1.8502633446788974, + "roselia": 4.190711485945016, + "sharpedo": 7.284299598413207, + "wailmer": 9.374486323424037, + "torkoal": 1.4874189578304395, + "flygon": 2.4359375132000167, + "altaria": 1.2557839166866713, + "whiscash": 4.651534111703569, + "crawdaunt": 3.284006446987215, + "claydol": 4.479281471288131, + "cradily": 2.7056604251540715, + "armaldo": 1.9257914726090557, + "dusclops": 3.4087559674807455, + "absol": 2.192012400355441, + "glalie": 4.037891783611197, + "sealeo": 4.33043359506882, + "relicanth": 4.656579575142809, + "metang": 2.7202936753127536, + "luxray": 4.222502967110169, + "vespiquen": 2.080598150294908, + "cherrim": 7.425245870112404, + "gastrodon": 4.387352034878277, + "drifblim": 3.744791112130615, + "lopunny": 3.62953244617615, + "skuntank": 1.2619996423575994, + "bronzong": 2.9520923057184714, + "munchlax": 2.195653743732952, + "drapion": 2.092269556954734, + "abomasnow": 3.6511219547654417, + "froslass": 2.7800037139166403, + "rotom": 4.150371245165999, + "stoutland": 2.517618147073054, + "liepard": 8.423054123710623, + "musharna": 1.9122860571296008, + "unfezant": 4.943701225720724, + "boldore": 5.5391468461881015, + "swoobat": 4.811821981091173, + "audino": 2.281520099560268, + "gurdurr": 2.57781752580036, + "palpitoad": 8.511444070076731, + "seismitoad": 12.29574598320732, + "scolipede": 2.5257426419980336, + "whimsicott": 2.9003384314348315, + "lilligant": 3.600906908358481, + "basculin-red-striped": 4.237278263477456, + "basculin-blue-striped": 5.721026287013224, + "krookodile": 4.172656876397085, + "maractus": 2.8356386542555008, + "crustle": 2.1774431151041136, + "sigilyph": 2.0771570366803402, + "cofagrigus": 2.896176529133869, + "garbodor": 1.4719610651149835, + "cinccino": 4.53010083028402, + "vanillish": 1.967908929760534, + "emolga": 2.7333752438492906, + "escavalier": 1.47145434824747, + "amoonguss": 2.274495585418144, + "jellicent": 2.0029364247602173, + "galvantula": 1.545073150511723, + "klang": 2.4828150847730117, + "klinklang": 2.9445328526803527, + "beheeyem": 2.249406446957873, + "lampent": 1.8187127284226765, + "fraxure": 1.38726867469755, + "beartic": 1.626534800475063, + "cryogonal": 1.600020600352348, + "accelgor": 2.5439123207269505, + "stunfisk": 1.8941072517824185, + "stunfisk-galar": 2.5609842786081485, + "mienshao": 3.559958141591377, + "druddigon": 1.6891002808222413, + "golurk": 2.7187994883735795, + "bisharp": 2.1138946799449188, + "bouffalant": 1.2153079654830226, + "heatmor": 1.505902990232419, + "durant": 2.273534357401237, + "diggersby": 4.68707470832722, + "talonflame": 2.2351048627157133, + "pangoro": 1.8682898019003833, + "doublade": 2.1605391575108754, + "malamar": 4.615730558661812, + "barbaracle": 3.0220536639628093, + "heliolisk": 3.8635463045195593, + "tyrantrum": 1.8223166088802916, + "aurorus": 2.935872566758441, + "hawlucha": 2.976689992112428, + "dedenne": 3.1227754537911996, + "klefki": 2.6157858425335476, + "trevenant": 3.004820517571054, + "gourgeist-average": 4.397602867950758, + "charjabug": 3.856164383406808, + "vikavolt": 1.5693382072904734, + "ribombee": 3.65279359801024, + "lycanroc-midday": 4.599967645914914, + "lycanroc-midnight": 3.241169133445617, + "mudsdale": 2.3176472627715503, + "araquanid": 2.2252294516718445, + "lurantis": 2.8135661031153116, + "shiinotic": 4.280348043229068, + "salazzle": 2.443877836753816, + "bewear": 1.9245519237621003, + "tsareena": 3.648460645158211, + "comfey": 4.763007159149858, + "oranguru": 3.37902629861121, + "passimian": 2.4874224611136495, + "palossand": 3.246207786138452, + "pyukumuku": 53.04087425009832, + "togedemaru": 1.9272282000863363, + "mimikyu-disguised": 4.080397002513403, + "greedent": 2.3065954284723906, + "orbeetle": 2.00180059142125, + "thievul": 2.2109245231824253, + "eldegoss": 5.168415655613527, + "dubwool": 3.195131185685683, + "drednaw": 2.7527162438437482, + "boltund": 5.184597783701618, + "carkol": 2.4032938770780463, + "coalossal": 2.0256124394563924, + "sandaconda": 4.78141649188659, + "cramorant": 5.560833803775962, + "barraskewda": 7.040323397890322, + "toxtricity-amped": 2.41336282030326, + "centiskorch": 1.608917195997612, + "grapploct": 1.8725330167722518, + "polteageist": 2.692552833921503, + "hatterene": 2.611613038865238, + "grimmsnarl": 3.98440958651413, + "obstagoon": 2.9356276195729523, + "perrserker": 2.9622674895045598, + "alcremie": 1.4060797265882168, + "falinks": 3.336246691032553, + "pincurchin": 3.360256622104991, + "frosmoth": 2.2374395505076965, + "indeedee-male": 3.9983385746095026, + "morpeko": 3.371006125902645, + "copperajah": 2.044225152708759, + "duraludon": 1.2518081078592793, + "drakloak": 3.8474924008910305 }, "shiinotic": { - "ivysaur": 2.4594850271397233, - "charmeleon": 3.1715958967300937, - "wartortle": 2.954459891940446, - "butterfree": 4.103925068868175, - "raichu": 5.556924737186277, - "raichu-alola": 3.5127228151391314, - "sandslash": 2.4703655792550663, - "sandslash-alola": 1.7522387976085954, - "nidoqueen": 2.1556565703676895, - "nidoking": 1.5229898686900536, - "clefairy": 8.901003847273355, - "clefable": 2.1201734134820143, - "jigglypuff": 27.471605820665136, - "wigglytuff": 2.0904718081647093, - "gloom": 3.9255946483999065, - "vileplume": 2.677767971030796, - "dugtrio": 3.7328979355723346, - "dugtrio-alola": 2.8019119263917185, - "persian": 4.287924644249444, - "persian-alola": 6.359984347512846, - "golduck": 3.3432716342562516, - "poliwrath": 2.827970125146164, - "kadabra": 3.6808684535279825, - "machoke": 5.821043915263882, - "tentacruel": 1.7283933436012782, - "slowbro": 1.844771304028634, - "magneton": 2.660353263328786, - "haunter": 3.8795609448651804, - "kingler": 3.1015168420690857, - "exeggutor": 2.1070006743466574, - "marowak": 3.2848233311065425, - "marowak-alola": 1.5688476356880523, - "hitmonlee": 2.8465024199683606, - "hitmonchan": 2.581793599395165, - "lickitung": 1.965876876608014, - "weezing": 1.150446888634681, - "weezing-galar": 2.0362445410958268, - "rhydon": 2.529911657011115, - "chansey": 19.594265527182035, - "tangela": 6.110783362434778, - "kangaskhan": 2.051439215276429, - "seadra": 5.343467710593469, - "seaking": 2.2032756659079893, - "starmie": 1.4383273048928285, - "mr-mime": 6.50432830913741, - "mr-mime-galar": 3.2577650551569093, - "scyther": 2.6071867396675845, - "jynx": 3.732571036247586, - "electabuzz": 2.7734820060081233, - "magmar": 1.2089255002281485, - "tauros": 2.282872739874934, - "ditto": 4.948423442835535, - "vaporeon": 3.291772084758302, - "jolteon": 1.9537013117716158, - "flareon": 1.7186837047650632, - "porygon": 2.8934208350996986, - "dragonair": 2.779963194211023, - "noctowl": 4.959611477048966, - "lanturn": 2.132783863042828, - "togetic": 4.962405282410957, - "xatu": 3.7241559308300975, - "bellossom": 2.5095155900772914, - "azumarill": 2.3637032659830366, - "sudowoodo": 2.918987290101372, - "politoed": 2.7181979986465388, - "quagsire": 5.431651978233307, - "slowking": 2.382789866258854, - "dunsparce": 3.138036368138092, - "qwilfish": 2.458564488058079, - "sneasel": 2.8160732646352766, - "piloswine": 1.552893107824129, - "octillery": 2.275191784497276, - "mantine": 2.2536632972408572, - "skarmory": 1.6479199319696334, - "hitmontop": 3.555364921199546, - "miltank": 3.8296256640393893, - "grovyle": 8.489088663452598, - "sceptile": 1.553039088177257, - "combusken": 3.4612195356231403, - "blaziken": 1.569335969478201, - "marshtomp": 2.6279261360417205, - "swampert": 1.27948407300003, - "linoone": 5.220607916623541, - "linoone-galar": 6.891418010654114, - "pelipper": 6.03917812258697, - "ninjask": 7.536619691054607, - "exploud": 1.5600781622550368, - "lairon": 2.028437950363851, - "manectric": 1.831157563754703, - "roselia": 3.468709797834861, - "sharpedo": 7.733279708992098, - "wailmer": 6.492147612940721, - "torkoal": 1.4771073400840697, - "flygon": 3.424348091703374, - "altaria": 2.095472669097975, - "whiscash": 2.1682568771772464, - "crawdaunt": 3.2830000761636056, - "claydol": 3.395712347795503, - "cradily": 2.141525282376594, - "armaldo": 1.9871533409161652, - "dusclops": 3.4853013196694764, - "absol": 2.5879043993936524, - "glalie": 3.8734819828589453, - "sealeo": 3.241036943028667, - "relicanth": 2.225378978925332, - "metang": 2.3453128883236456, - "luxray": 4.12195007365033, - "vespiquen": 2.62230364467918, - "cherrim": 6.281533771187625, - "gastrodon": 2.2027761779600166, - "drifblim": 4.512331137311844, - "lopunny": 3.5644639053678357, - "skuntank": 1.444320476282671, - "bronzong": 2.4340656587921528, - "munchlax": 1.7918460575990767, - "drapion": 2.5808933741238413, - "abomasnow": 3.059657436824166, - "froslass": 2.716778208415834, - "rotom": 4.1161486513897545, - "stoutland": 2.42930253055094, - "liepard": 10.011525105310612, - "musharna": 1.6042852199785882, - "unfezant": 5.770980406138339, - "boldore": 3.9099915205040574, - "swoobat": 5.327757567877934, - "audino": 2.27320999147888, - "gurdurr": 3.6850988395217117, - "palpitoad": 4.080661684996842, - "seismitoad": 5.043849492608843, - "scolipede": 2.725184504833277, - "whimsicott": 3.277443632232974, - "lilligant": 3.3464851280611554, - "basculin-red-striped": 2.9833754822154273, - "basculin-blue-striped": 4.205952633237319, - "krookodile": 4.279676325736455, - "maractus": 2.4978647592194925, - "crustle": 2.284734758707781, - "sigilyph": 2.21636683648378, - "cofagrigus": 2.876067610386208, - "garbodor": 1.231482226577109, - "cinccino": 4.353551114691777, - "vanillish": 1.9668815666251136, - "emolga": 3.270501688221189, - "escavalier": 1.6217498114715578, - "amoonguss": 1.737869627449121, - "jellicent": 1.4598713330877036, - "galvantula": 1.7839973261633575, - "klang": 2.3312601563521573, - "klinklang": 2.5366858001342036, - "beheeyem": 1.8672013805046779, - "lampent": 1.8411056646660617, - "fraxure": 2.699640529693874, - "beartic": 1.6387007817696406, - "cryogonal": 1.4091036910504326, - "accelgor": 2.8765174751245786, - "stunfisk": 1.4295071646838209, - "stunfisk-galar": 2.1467496950624234, - "mienshao": 4.768419534953846, - "druddigon": 2.3884150140167955, - "golurk": 2.0055312021782274, - "bisharp": 2.3095219376933076, - "bouffalant": 1.3218927327955021, - "heatmor": 1.4764280355785968, - "durant": 2.5904890663957265, - "diggersby": 3.4322593478213625, - "talonflame": 2.1986466896001837, - "pangoro": 3.8238429633198017, - "doublade": 1.9654456659480757, - "malamar": 4.211261668235703, - "barbaracle": 1.39571833211599, - "heliolisk": 3.6597571233998174, - "tyrantrum": 2.625049461971055, - "aurorus": 2.3198926520414807, - "hawlucha": 4.500472945547365, - "dedenne": 3.100151460757547, - "klefki": 2.382386317032493, - "trevenant": 3.318461920378377, - "gourgeist-average": 5.40236824383617, - "charjabug": 4.526220885766831, - "vikavolt": 1.8665403234965652, - "ribombee": 4.784138001151096, - "lycanroc-midday": 3.3950571251858115, - "lycanroc-midnight": 2.500688417776966, - "mudsdale": 1.7831742194944153, - "araquanid": 2.0678165099615007, - "lurantis": 2.5608000602566623, - "salazzle": 2.2337835032334903, - "bewear": 2.5436299943176173, - "tsareena": 3.1019649902679927, - "comfey": 4.727564379815707, - "oranguru": 2.650130621374788, - "passimian": 3.3994557427117416, - "palossand": 2.3033782757104233, - "pyukumuku": 31.92040350847055, - "togedemaru": 1.6638184580368065, - "mimikyu-disguised": 3.921838450363403, - "greedent": 2.1096077167866785, - "orbeetle": 1.8714966830795159, - "thievul": 2.3008107088574823, - "eldegoss": 4.144670546955916, - "dubwool": 3.169660972262976, - "drednaw": 1.319863851981647, - "boltund": 5.314521762107393, - "carkol": 1.977374611067035, - "coalossal": 1.6975304865371932, - "sandaconda": 3.760488770257841, - "cramorant": 5.656124577197133, - "barraskewda": 5.491598978889377, - "toxtricity-amped": 2.402949352147502, - "centiskorch": 1.5458475980648876, - "grapploct": 2.5996614123326762, - "polteageist": 2.6906575048260635, - "hatterene": 2.5623878154190813, - "grimmsnarl": 5.725180323703656, - "obstagoon": 3.716690639004625, - "perrserker": 2.7605549521824746, - "alcremie": 1.4013180434432178, - "falinks": 4.6012639357297545, - "pincurchin": 3.2878077625895354, - "frosmoth": 2.5129821265079166, - "indeedee-male": 2.9725253922227814, - "morpeko": 3.9376559437603995, - "copperajah": 1.8216647249309106, - "duraludon": 2.033453003028742, - "drakloak": 7.220372432803367, - "shiinotic": 4.465489187774185 + "ivysaur": 2.4509077102696617, + "charmeleon": 3.16375231884115, + "wartortle": 2.956058757183932, + "butterfree": 4.092689928746732, + "raichu": 5.564061932124066, + "raichu-alola": 3.511045271402266, + "sandslash": 2.471325539443582, + "sandslash-alola": 1.7476454878729004, + "nidoqueen": 2.1482478494354793, + "nidoking": 1.519762164753641, + "clefairy": 8.89183337764252, + "clefable": 2.1197905915072135, + "jigglypuff": 27.459582529498732, + "wigglytuff": 2.089520862440519, + "gloom": 3.903584999813484, + "vileplume": 2.6761909958032977, + "dugtrio": 3.734149228526288, + "dugtrio-alola": 2.795421207413228, + "persian": 4.2821550940720225, + "persian-alola": 6.3724357074674565, + "golduck": 3.3448652748202967, + "poliwrath": 2.8334673361862537, + "kadabra": 3.6746225385484923, + "machoke": 5.833152981055266, + "tentacruel": 1.7215814634779978, + "slowbro": 1.8428820120158012, + "magneton": 2.654165012202441, + "haunter": 3.875173975668563, + "kingler": 3.1074563150613965, + "exeggutor": 2.1070218809621006, + "marowak": 3.2840601588273293, + "marowak-alola": 1.562529969627771, + "hitmonlee": 2.847378600255267, + "hitmonchan": 2.5800294688682968, + "lickitung": 1.9650106455659426, + "weezing": 1.1441186537866863, + "weezing-galar": 2.028992648237463, + "rhydon": 2.5277434980339537, + "chansey": 19.52461466879221, + "tangela": 6.117936367106964, + "kangaskhan": 2.0530425484720594, + "seadra": 5.354849808967908, + "seaking": 2.19745205206671, + "starmie": 1.4369820292559332, + "mr-mime": 6.497465811095905, + "mr-mime-galar": 3.250778172162799, + "scyther": 2.6020379561714275, + "jynx": 3.7206263645322837, + "electabuzz": 2.7747413259634977, + "magmar": 1.2035860884623308, + "tauros": 2.284552849483868, + "ditto": 4.917763721835193, + "vaporeon": 3.292805088632635, + "jolteon": 1.9538399881633994, + "flareon": 1.7134976114168319, + "porygon": 2.8918583518087515, + "dragonair": 2.7873191609082557, + "noctowl": 4.943889818496763, + "lanturn": 2.1363051590404765, + "togetic": 4.953170806034194, + "xatu": 3.7175029053955315, + "bellossom": 2.5107212915268082, + "azumarill": 2.364536034716953, + "sudowoodo": 2.9203647089015248, + "politoed": 2.71992788449871, + "quagsire": 5.440893744988956, + "slowking": 2.3795171390536467, + "dunsparce": 3.1317062190786684, + "qwilfish": 2.446308188311543, + "sneasel": 2.815216681417649, + "piloswine": 1.5510946282981508, + "octillery": 2.271004722244214, + "mantine": 2.250831138781022, + "skarmory": 1.6432570987735584, + "hitmontop": 3.557833816468886, + "miltank": 3.8264086860093935, + "grovyle": 8.49592350168606, + "sceptile": 1.554413109728261, + "combusken": 3.4603708654527727, + "blaziken": 1.5669255531968518, + "marshtomp": 2.6282677984204126, + "swampert": 1.2802408905407126, + "linoone": 5.2138884113652, + "linoone-galar": 6.905735238749257, + "pelipper": 6.026818587292723, + "ninjask": 7.528510871995936, + "exploud": 1.5585102236739288, + "lairon": 2.0210380685101876, + "manectric": 1.8299753795259952, + "roselia": 3.465210707677154, + "sharpedo": 7.7556052748848945, + "wailmer": 6.4834830472047855, + "torkoal": 1.473320900203289, + "flygon": 3.429256444415617, + "altaria": 2.09833845724205, + "whiscash": 2.1655648539215173, + "crawdaunt": 3.2902134520882123, + "claydol": 3.3935510175284866, + "cradily": 2.136476055363307, + "armaldo": 1.9865352019938471, + "dusclops": 3.4820786494924887, + "absol": 2.588465879245252, + "glalie": 3.863594932056612, + "sealeo": 3.2382180774262075, + "relicanth": 2.226828275258469, + "metang": 2.338281191300431, + "luxray": 4.122621520392182, + "vespiquen": 2.6173079281179685, + "cherrim": 6.283805345023827, + "gastrodon": 2.2020819689759694, + "drifblim": 4.511287406542064, + "lopunny": 3.5589419127891326, + "skuntank": 1.4431126767294034, + "bronzong": 2.426283145836346, + "munchlax": 1.7840041521505956, + "drapion": 2.579821421190929, + "abomasnow": 3.053184239153575, + "froslass": 2.7091712324039676, + "rotom": 4.118556948129687, + "stoutland": 2.4256918473793685, + "liepard": 10.025930839479663, + "musharna": 1.603825784435828, + "unfezant": 5.752895836203992, + "boldore": 3.912735157896943, + "swoobat": 5.318183864479332, + "audino": 2.269968571524122, + "gurdurr": 3.6961775042339653, + "palpitoad": 4.082339495065578, + "seismitoad": 5.01618348228715, + "scolipede": 2.720096166177428, + "whimsicott": 3.275884169737907, + "lilligant": 3.348585435886651, + "basculin-red-striped": 2.982365512226991, + "basculin-blue-striped": 4.212018769459818, + "krookodile": 4.290808818777764, + "maractus": 2.5013930458984728, + "crustle": 2.284536487657866, + "sigilyph": 2.2115399573915018, + "cofagrigus": 2.8751439891519293, + "garbodor": 1.2215419072871787, + "cinccino": 4.343196169469356, + "vanillish": 1.961303678542952, + "emolga": 3.2692876286639017, + "escavalier": 1.6206215942067166, + "amoonguss": 1.7279319348206612, + "jellicent": 1.4583515641367406, + "galvantula": 1.7856594953009668, + "klang": 2.3269249727278627, + "klinklang": 2.52620281129228, + "beheeyem": 1.8666556147125326, + "lampent": 1.834706872425484, + "fraxure": 2.708370897011476, + "beartic": 1.6363299941531522, + "cryogonal": 1.404671713456779, + "accelgor": 2.869306914945208, + "stunfisk": 1.4314174790037988, + "stunfisk-galar": 2.147036511329202, + "mienshao": 4.77432324884305, + "druddigon": 2.3876942660505938, + "golurk": 2.0058053766472286, + "bisharp": 2.302784442313008, + "bouffalant": 1.3209388748342001, + "heatmor": 1.4720275076571911, + "durant": 2.5844962054040215, + "diggersby": 3.433039393003222, + "talonflame": 2.18998163153493, + "pangoro": 3.8344722344287905, + "doublade": 1.9592023900357636, + "malamar": 4.21919253129813, + "barbaracle": 1.3910237351911612, + "heliolisk": 3.6597525889300604, + "tyrantrum": 2.6308951657213786, + "aurorus": 2.3145163469447225, + "hawlucha": 4.495562670188051, + "dedenne": 3.101885674460943, + "klefki": 2.3756546919580983, + "trevenant": 3.320770578770132, + "gourgeist-average": 5.393335572931706, + "charjabug": 4.5326825826667285, + "vikavolt": 1.8644136108469302, + "ribombee": 4.782026941375678, + "lycanroc-midday": 3.3918554679305246, + "lycanroc-midnight": 2.5005144510915303, + "mudsdale": 1.7856247115503217, + "araquanid": 2.062091044485282, + "lurantis": 2.56052512228512, + "shiinotic": 4.465489187774185, + "salazzle": 2.2187171651336723, + "bewear": 2.5446016299050305, + "tsareena": 3.0986321093089186, + "comfey": 4.730441288201561, + "oranguru": 2.6472234993393684, + "passimian": 3.402649981967963, + "palossand": 2.3043294406799526, + "pyukumuku": 31.805386584202466, + "togedemaru": 1.6538167974696534, + "mimikyu-disguised": 3.9160008801440975, + "greedent": 2.105455749444655, + "orbeetle": 1.8699776547816709, + "thievul": 2.3033180742519814, + "eldegoss": 4.146398556509982, + "dubwool": 3.1693432933276533, + "drednaw": 1.3182272820159184, + "boltund": 5.3215063660673065, + "carkol": 1.9708873773691904, + "coalossal": 1.6937747158683099, + "sandaconda": 3.766800823596978, + "cramorant": 5.658845097323933, + "barraskewda": 5.502377219869267, + "toxtricity-amped": 2.401199160752208, + "centiskorch": 1.5397777874672485, + "grapploct": 2.607049295274601, + "polteageist": 2.6901506917497087, + "hatterene": 2.560961848303271, + "grimmsnarl": 5.740545960760478, + "obstagoon": 3.7218229177427027, + "perrserker": 2.755047592836104, + "alcremie": 1.4000332975055305, + "falinks": 4.603881517168703, + "pincurchin": 3.2927888539969636, + "frosmoth": 2.506598157224405, + "indeedee-male": 2.9671668545016097, + "morpeko": 3.9435189398193997, + "copperajah": 1.8151276966532337, + "duraludon": 2.03409781756322, + "drakloak": 7.239684139289488 }, "salazzle": { - "ivysaur": 5.025034030882782, - "charmeleon": 3.5555956330761624, - "wartortle": 2.1221850052266267, - "butterfree": 6.738445350182185, - "raichu": 5.291150696996052, - "raichu-alola": 3.0405037354119653, - "sandslash": 2.047975579409856, - "sandslash-alola": 4.6684179653685804, - "nidoqueen": 2.396696571000503, - "nidoking": 1.646554102110817, - "clefairy": 10.92595973222087, - "clefable": 2.4303457945505924, - "jigglypuff": 32.33408690616885, - "wigglytuff": 2.269837455913004, - "gloom": 9.22581305217434, - "vileplume": 4.972080328604932, - "dugtrio": 2.6039725528326665, - "dugtrio-alola": 4.030772933812252, - "persian": 4.524747015188753, - "persian-alola": 4.2982258629467545, - "golduck": 2.2350611820664867, - "poliwrath": 1.5214078230288077, - "kadabra": 3.697506869789591, - "machoke": 4.089091207971319, - "tentacruel": 1.6664231910513687, - "slowbro": 1.3682620741542901, - "magneton": 5.277385063684324, - "haunter": 4.7721448525866945, - "kingler": 1.913434817782282, - "exeggutor": 2.4042549433913853, - "marowak": 2.729936153299149, - "marowak-alola": 1.9045484571469604, - "hitmonlee": 2.480005354855461, - "hitmonchan": 2.2939752978149164, - "lickitung": 1.8926074170718206, - "weezing": 1.9810780639633032, - "weezing-galar": 3.4329956290361303, - "rhydon": 1.6509144764052153, - "chansey": 23.13712992039233, - "tangela": 9.756007299352023, - "kangaskhan": 1.7203104038101196, - "seadra": 3.423745200075964, - "seaking": 1.69449640685766, - "starmie": 1.2699764019363913, - "mr-mime": 6.070283596582135, - "mr-mime-galar": 4.576150658710634, - "scyther": 3.9155579471231543, - "jynx": 7.377271843598961, - "electabuzz": 2.4797965393509465, - "magmar": 1.5957678873588144, - "tauros": 1.9559587683321054, - "ditto": 3.526409323111407, - "vaporeon": 2.3831007565722526, - "jolteon": 1.8643169737449838, - "flareon": 2.2601795645022387, - "porygon": 2.9512586134934695, - "dragonair": 1.6091466393672413, - "noctowl": 5.396658032998504, - "lanturn": 1.4106400952010274, - "togetic": 6.268123871148951, - "xatu": 3.565819182192259, - "bellossom": 3.952007316364539, - "azumarill": 2.1528277069666495, - "sudowoodo": 1.8882433277982869, - "politoed": 1.653231988352573, - "quagsire": 3.7156344093803186, - "slowking": 1.8486803105132132, - "dunsparce": 3.681935520464399, - "qwilfish": 2.8548742055594563, - "sneasel": 2.9396617755167425, - "piloswine": 1.815206836570763, - "octillery": 1.9654291840677978, - "mantine": 1.911534233304132, - "skarmory": 3.9453065195221946, - "hitmontop": 2.464174044479323, - "miltank": 4.2124572480328695, - "grovyle": 11.936637840427235, - "sceptile": 2.0974682935359774, - "combusken": 3.152141689847472, - "blaziken": 1.5303466917061268, - "marshtomp": 1.7003885539984394, - "swampert": 0.9136923334141152, - "linoone": 5.612001618429931, - "linoone-galar": 4.769949177626994, - "pelipper": 5.260175707230275, - "ninjask": 10.962181345248478, - "exploud": 1.7567768338375667, - "lairon": 2.5406276227735276, - "manectric": 1.8592799874667718, - "roselia": 5.114498098699701, - "sharpedo": 3.975358827984233, - "wailmer": 5.089848778708575, - "torkoal": 1.8813396799046833, - "flygon": 1.9327345217856107, - "altaria": 1.5230435888247258, - "whiscash": 1.3993505632400023, - "crawdaunt": 1.529977346439236, - "claydol": 2.894710566338011, - "cradily": 2.365966493333784, - "armaldo": 1.7214740036811822, - "dusclops": 3.721254339779209, - "absol": 2.1756639416594945, - "glalie": 6.127931179347598, - "sealeo": 2.5149156979566154, - "relicanth": 1.2908509144018718, - "metang": 4.364188121897292, - "luxray": 3.950176844269804, - "vespiquen": 4.162300385908892, - "cherrim": 8.901869433669262, - "gastrodon": 1.6411258485682572, - "drifblim": 3.9088790729195466, - "lopunny": 3.8125133265503846, - "skuntank": 1.6496740226871798, - "bronzong": 4.29876354274308, - "munchlax": 2.0668662746247137, - "drapion": 2.943923356978469, - "abomasnow": 6.758846737463619, - "froslass": 4.515274706947556, - "rotom": 3.975403900840403, - "stoutland": 2.465696667117191, - "liepard": 7.869767412202693, - "musharna": 1.3984540997328763, - "unfezant": 6.984847374510543, - "boldore": 2.4815922352392112, - "swoobat": 5.101149909271724, - "audino": 2.3846513797165407, - "gurdurr": 2.325409918570326, - "palpitoad": 2.493129154075982, - "seismitoad": 5.729669796359747, - "scolipede": 5.3724264301897335, - "whimsicott": 5.176818059910918, - "lilligant": 5.082236442037004, - "basculin-red-striped": 2.084542155133256, - "basculin-blue-striped": 2.71824054486331, - "krookodile": 2.4455127282295375, - "maractus": 3.631850007559435, - "crustle": 2.367267385213497, - "sigilyph": 2.2669862968286076, - "cofagrigus": 2.650766958672585, - "garbodor": 2.13359475259262, - "cinccino": 4.915357423776337, - "vanillish": 3.103362307535853, - "emolga": 3.1866169905164705, - "escavalier": 3.4527223226633392, - "amoonguss": 4.041699809504422, - "jellicent": 1.3704115397953565, - "galvantula": 2.3942982902556462, - "klang": 4.178255753776859, - "klinklang": 5.703971992927215, - "beheeyem": 1.6035632573761451, - "lampent": 2.0508727565965246, - "fraxure": 1.3702491165594997, - "beartic": 2.578023886235983, - "cryogonal": 2.195107432794516, - "accelgor": 4.839072536381014, - "stunfisk": 1.0327646811340272, - "stunfisk-galar": 2.8007564279470865, - "mienshao": 3.4524166682057746, - "druddigon": 1.4020582049876382, - "golurk": 1.7973074571516825, - "bisharp": 3.6822470077605947, - "bouffalant": 1.4197087652113134, - "heatmor": 1.7556863590664085, - "durant": 9.750123212277792, - "diggersby": 2.4161033919062023, - "talonflame": 2.6534689042137156, - "pangoro": 1.9702741585351315, - "doublade": 5.085032018755845, - "malamar": 2.7815702334366073, - "barbaracle": 1.135476997342445, - "heliolisk": 4.118370713030227, - "tyrantrum": 1.1899535866568351, - "aurorus": 2.319245834879946, - "hawlucha": 4.020507747195986, - "dedenne": 3.538295343819436, - "klefki": 5.537674581749414, - "trevenant": 4.987241411497413, - "gourgeist-average": 8.94199099648834, - "charjabug": 5.391928320224661, - "vikavolt": 2.84813747543185, - "ribombee": 7.732710208240489, - "lycanroc-midday": 2.4610874202698607, - "lycanroc-midnight": 1.8952377409877839, - "mudsdale": 1.5409603537034537, - "araquanid": 2.3038759236482154, - "lurantis": 3.7799811208007017, - "shiinotic": 6.915257752261084, - "bewear": 1.8928123003158912, - "tsareena": 4.815756295287223, - "comfey": 5.487699456889799, - "oranguru": 2.160090383061784, - "passimian": 2.5567486271246427, - "palossand": 1.8060193823183313, - "pyukumuku": 40.70020810432158, - "togedemaru": 3.353320994994945, - "mimikyu-disguised": 4.041828355002816, - "greedent": 2.187915956071747, - "orbeetle": 2.401166623947793, - "thievul": 1.8523801500065062, - "eldegoss": 5.763271894198754, - "dubwool": 4.548900016817395, - "drednaw": 0.86556001469249, - "boltund": 4.92398850884828, - "carkol": 1.6539819484468234, - "coalossal": 1.4256748035070947, - "sandaconda": 3.019155406147406, - "cramorant": 4.2431093658634875, - "barraskewda": 3.656534665232643, - "toxtricity-amped": 2.7006010600188004, - "centiskorch": 1.8847154213299042, - "grapploct": 1.7287956455813969, - "polteageist": 2.5040600894836853, - "hatterene": 2.4420672740912215, - "grimmsnarl": 4.118214249476626, - "obstagoon": 2.679197786577649, - "perrserker": 5.679504286538252, - "alcremie": 1.9003082413658499, - "falinks": 3.985971707558506, - "pincurchin": 3.0003581931888332, - "frosmoth": 5.314484060096256, - "indeedee-male": 2.860580224584468, - "morpeko": 2.9007813946678107, - "copperajah": 3.9637384273411103, - "duraludon": 1.9931887772252064, - "drakloak": 3.7432248347736357, - "salazzle": 2.979694853465642 + "ivysaur": 5.040936358120982, + "charmeleon": 3.554245028800425, + "wartortle": 2.1149678010799247, + "butterfree": 6.7574920781564245, + "raichu": 5.2905754463766606, + "raichu-alola": 3.0304992223699685, + "sandslash": 2.038868543224715, + "sandslash-alola": 4.676835989297763, + "nidoqueen": 2.3848957279145626, + "nidoking": 1.6396114721333896, + "clefairy": 10.956292750387297, + "clefable": 2.431973573749157, + "jigglypuff": 32.42627160346067, + "wigglytuff": 2.269149345325075, + "gloom": 9.25280769194517, + "vileplume": 4.990635959731334, + "dugtrio": 2.5842315833588057, + "dugtrio-alola": 4.016166002203647, + "persian": 4.52083057797376, + "persian-alola": 4.293423894891776, + "golduck": 2.2245735897579832, + "poliwrath": 1.5169291176161974, + "kadabra": 3.68634603741643, + "machoke": 4.084774970831299, + "tentacruel": 1.6584802684106736, + "slowbro": 1.362307611316, + "magneton": 5.282621467022027, + "haunter": 4.768486638052578, + "kingler": 1.9042699929432836, + "exeggutor": 2.3996576462170713, + "marowak": 2.716872088345969, + "marowak-alola": 1.9034005751453598, + "hitmonlee": 2.482617897385424, + "hitmonchan": 2.2953490003620787, + "lickitung": 1.8894569808893609, + "weezing": 1.982224326880572, + "weezing-galar": 3.4406373157320838, + "rhydon": 1.639423571044439, + "chansey": 23.069533127733912, + "tangela": 9.78871619692553, + "kangaskhan": 1.7148680840123274, + "seadra": 3.4101113626436392, + "seaking": 1.6856099852218622, + "starmie": 1.2656823712493752, + "mr-mime": 6.047773748404593, + "mr-mime-galar": 4.5655778246724505, + "scyther": 3.9183871946593065, + "jynx": 7.393089429432116, + "electabuzz": 2.476301060774332, + "magmar": 1.595392436387125, + "tauros": 1.9499935430019484, + "ditto": 3.5057987226595264, + "vaporeon": 2.3728745925692607, + "jolteon": 1.8619212081505485, + "flareon": 2.2547850494724226, + "porygon": 2.9491176190678936, + "dragonair": 1.606147779314637, + "noctowl": 5.388109167057452, + "lanturn": 1.405117025796168, + "togetic": 6.285865011303069, + "xatu": 3.554758288874012, + "bellossom": 3.968472636208251, + "azumarill": 2.1510652286370533, + "sudowoodo": 1.8775870846471432, + "politoed": 1.6425523439952925, + "quagsire": 3.701368739568789, + "slowking": 1.840488279607641, + "dunsparce": 3.68330390771768, + "qwilfish": 2.845601558552693, + "sneasel": 2.939992515828416, + "piloswine": 1.8145601024976956, + "octillery": 1.9609579681593274, + "mantine": 1.9045405444619568, + "skarmory": 3.9535759108416113, + "hitmontop": 2.4575596871533225, + "miltank": 4.212561324784896, + "grovyle": 11.980291726856525, + "sceptile": 2.105054134268139, + "combusken": 3.1533133005749066, + "blaziken": 1.5309679846907889, + "marshtomp": 1.6899555191806879, + "swampert": 0.9071620133530918, + "linoone": 5.609043640689903, + "linoone-galar": 4.763744750320416, + "pelipper": 5.247957293712576, + "ninjask": 10.975173052266193, + "exploud": 1.7558932962073568, + "lairon": 2.537463308474848, + "manectric": 1.8575585286854608, + "roselia": 5.115682988980638, + "sharpedo": 3.961555356540412, + "wailmer": 5.07188550732849, + "torkoal": 1.881248608661726, + "flygon": 1.9262060746176073, + "altaria": 1.5219912377519003, + "whiscash": 1.3929663237025305, + "crawdaunt": 1.5251814179366288, + "claydol": 2.8817009209686804, + "cradily": 2.3643336431619404, + "armaldo": 1.7148608655132576, + "dusclops": 3.720232466512527, + "absol": 2.1749358739561835, + "glalie": 6.135865132288616, + "sealeo": 2.5060429390896064, + "relicanth": 1.283044074849868, + "metang": 4.360696662009138, + "luxray": 3.9449319020520517, + "vespiquen": 4.17045851096605, + "cherrim": 8.926154862437627, + "gastrodon": 1.6341967801043227, + "drifblim": 3.895736427383352, + "lopunny": 3.809670231551009, + "skuntank": 1.6491719101663738, + "bronzong": 4.290070218380674, + "munchlax": 2.0641212772649222, + "drapion": 2.9460111832526166, + "abomasnow": 6.780896234381986, + "froslass": 4.52179497745641, + "rotom": 3.972085956443605, + "stoutland": 2.461273622971769, + "liepard": 7.873128436641099, + "musharna": 1.3938288587776002, + "unfezant": 6.981211567742038, + "boldore": 2.4676916760569174, + "swoobat": 5.085214666407921, + "audino": 2.3848701525853295, + "gurdurr": 2.32064137403379, + "palpitoad": 2.4761888870608715, + "seismitoad": 5.719291864318743, + "scolipede": 5.384265039277846, + "whimsicott": 5.200096839135512, + "lilligant": 5.103366648153093, + "basculin-red-striped": 2.0749202550218158, + "basculin-blue-striped": 2.7061194717680905, + "krookodile": 2.433517835273765, + "maractus": 3.6454168441520585, + "crustle": 2.3660824856988665, + "sigilyph": 2.2617759556648833, + "cofagrigus": 2.6438455170072745, + "garbodor": 2.1354152112889353, + "cinccino": 4.911865014745752, + "vanillish": 3.1075487796572774, + "emolga": 3.1844271492361695, + "escavalier": 3.4438685045165265, + "amoonguss": 4.052983638697308, + "jellicent": 1.3680114254573683, + "galvantula": 2.3969599082928204, + "klang": 4.1770693571832975, + "klinklang": 5.710587939018225, + "beheeyem": 1.5979858935089648, + "lampent": 2.0455455448602406, + "fraxure": 1.367936774838547, + "beartic": 2.5803471488424172, + "cryogonal": 2.1988656276073146, + "accelgor": 4.854019216717954, + "stunfisk": 1.026769719911107, + "stunfisk-galar": 2.789582774397903, + "mienshao": 3.4478393828983114, + "druddigon": 1.397190113349775, + "golurk": 1.7922228240856284, + "bisharp": 3.6796939607113885, + "bouffalant": 1.4198364458748085, + "heatmor": 1.7533997936936618, + "durant": 9.786347013279563, + "diggersby": 2.3995181831304024, + "talonflame": 2.6520713226868438, + "pangoro": 1.9709473009613472, + "doublade": 5.098340504203272, + "malamar": 2.77440405486372, + "barbaracle": 1.1302478740245054, + "heliolisk": 4.109898927250616, + "tyrantrum": 1.1853661204015888, + "aurorus": 2.3126969468726655, + "hawlucha": 4.022465696921429, + "dedenne": 3.5441923096865784, + "klefki": 5.5545802635766695, + "trevenant": 5.0042761818452695, + "gourgeist-average": 8.957240553693449, + "charjabug": 5.375299276836183, + "vikavolt": 2.849781812992013, + "ribombee": 7.766357779178389, + "lycanroc-midday": 2.448405787914165, + "lycanroc-midnight": 1.8883808215357938, + "mudsdale": 1.53680902663833, + "araquanid": 2.301616747078636, + "lurantis": 3.790626428537206, + "shiinotic": 6.944524407149845, + "salazzle": 2.979694853465642, + "bewear": 1.8897802934004524, + "tsareena": 4.829626830236627, + "comfey": 5.507910960204283, + "oranguru": 2.149392547244791, + "passimian": 2.5549400180989505, + "palossand": 1.797032162000019, + "pyukumuku": 40.69033611541528, + "togedemaru": 3.356645233491001, + "mimikyu-disguised": 4.0386118394316295, + "greedent": 2.183372659043843, + "orbeetle": 2.3945758823098844, + "thievul": 1.8515748524642182, + "eldegoss": 5.780477005248512, + "dubwool": 4.555043435555569, + "drednaw": 0.8615543953973486, + "boltund": 4.919434085085216, + "carkol": 1.647138325337956, + "coalossal": 1.4190870098194563, + "sandaconda": 3.00735668795234, + "cramorant": 4.226659838918283, + "barraskewda": 3.6436453878380934, + "toxtricity-amped": 2.695840844951227, + "centiskorch": 1.8799703344646155, + "grapploct": 1.7288652255582857, + "polteageist": 2.4993733483285876, + "hatterene": 2.43910789758287, + "grimmsnarl": 4.121138130185239, + "obstagoon": 2.6751663505020593, + "perrserker": 5.685757120978407, + "alcremie": 1.9065484953507479, + "falinks": 3.993148622803811, + "pincurchin": 2.9922932398132063, + "frosmoth": 5.322779273416126, + "indeedee-male": 2.8531552241800027, + "morpeko": 2.8985854836749505, + "copperajah": 3.9720619007858007, + "duraludon": 1.993204874004543, + "drakloak": 3.7340698564015393 }, "bewear": { - "ivysaur": 4.164197046056682, - "charmeleon": 5.0296866932481, - "wartortle": 3.3469209470358283, - "butterfree": 6.347632112817269, - "raichu": 6.617673202673191, - "raichu-alola": 4.451401145465329, - "sandslash": 2.510375605022199, - "sandslash-alola": 1.926145915362716, - "nidoqueen": 3.6131361440754333, - "nidoking": 2.3740829066503943, - "clefairy": 12.472107708698335, - "clefable": 2.3287859847450543, - "jigglypuff": 31.537864956429857, - "wigglytuff": 2.2131303367164197, - "gloom": 6.648740781292572, - "vileplume": 3.869563228378168, - "dugtrio": 5.248907212434505, - "dugtrio-alola": 3.5754956910197504, - "persian": 5.377417567750942, - "persian-alola": 6.023677615340343, - "golduck": 3.9499211265248766, - "poliwrath": 2.340463228363192, - "kadabra": 4.874143307209717, - "machoke": 4.837392804648252, - "tentacruel": 3.404068552876185, - "slowbro": 1.8656166249818447, - "magneton": 2.920311424406071, - "haunter": 5.642887542612943, - "kingler": 2.613512739306809, - "exeggutor": 2.2548249634773208, - "marowak": 3.775114006638887, - "marowak-alola": 2.367320706583911, - "hitmonlee": 3.2549688409991484, - "hitmonchan": 2.8800784274727675, - "lickitung": 2.394358259035468, - "weezing": 1.8034854922867862, - "weezing-galar": 2.760499965159942, - "rhydon": 2.141270302490997, - "chansey": 40.71261354586359, - "tangela": 5.1931779899907315, - "kangaskhan": 2.418181216525566, - "seadra": 4.541810612185088, - "seaking": 3.2414857247626, - "starmie": 1.6726958707841963, - "mr-mime": 8.244431461569539, - "mr-mime-galar": 4.393959948838953, - "scyther": 3.3905065034811166, - "jynx": 5.981576911833917, - "electabuzz": 3.5027522001065163, - "magmar": 2.28617492495024, - "tauros": 2.4007923858908002, - "ditto": 3.58975715828794, - "vaporeon": 4.45085104178011, - "jolteon": 2.795337714447915, - "flareon": 3.5375478251274117, - "porygon": 3.5980314899264654, - "dragonair": 2.447663778388754, - "noctowl": 7.7865587729038825, - "lanturn": 2.6452017917572075, - "togetic": 6.7272652774992086, - "xatu": 4.095940794156242, - "bellossom": 2.5822695146645485, - "azumarill": 2.917776441424129, - "sudowoodo": 2.384687552673044, - "politoed": 3.448106435736562, - "quagsire": 5.221870889515133, - "slowking": 3.1251745808736136, - "dunsparce": 4.222431910718194, - "qwilfish": 4.097171072630907, - "sneasel": 3.057428258934852, - "piloswine": 1.8489883422808844, - "octillery": 3.0254073135355677, - "mantine": 3.3616830423626043, - "skarmory": 1.8184523816115086, - "hitmontop": 3.390942703115126, - "miltank": 4.059757650949642, - "grovyle": 10.204052470189652, - "sceptile": 1.8874762164620567, - "combusken": 3.906623411209017, - "blaziken": 1.9936543573594132, - "marshtomp": 3.208986141867772, - "swampert": 1.578684575689015, - "linoone": 7.141973594916794, - "linoone-galar": 6.349058858625167, - "pelipper": 6.827746595364478, - "ninjask": 10.289726705592571, - "exploud": 2.0263022904322536, - "lairon": 2.1789108560328656, - "manectric": 2.2398375045896555, - "roselia": 5.272103133299521, - "sharpedo": 6.713294709489481, - "wailmer": 8.146257603075682, - "torkoal": 2.0541109572225724, - "flygon": 3.109421810886467, - "altaria": 1.9256939214789852, - "whiscash": 2.4955197732170213, - "crawdaunt": 2.3960486000575356, - "claydol": 3.943359149074851, - "cradily": 2.281074228585241, - "armaldo": 1.9003721128774655, - "dusclops": 4.487536922584333, - "absol": 2.5583417027462048, - "glalie": 5.382270431819947, - "sealeo": 3.9643898998892935, - "relicanth": 1.8210844756453486, - "metang": 3.108334723899559, - "luxray": 4.875995490061346, - "vespiquen": 3.3149861636635576, - "cherrim": 7.343035183426668, - "gastrodon": 2.9870387964074423, - "drifblim": 4.601160117111216, - "lopunny": 4.5403285882950755, - "skuntank": 1.9371986795849137, - "bronzong": 3.4087728333342726, - "munchlax": 3.3542612425023135, - "drapion": 3.1053858422583502, - "abomasnow": 3.997313966757102, - "froslass": 3.505576595167777, - "rotom": 4.676075070607899, - "stoutland": 3.0865461715997373, - "liepard": 8.904956594030336, - "musharna": 1.7573729944117364, - "unfezant": 6.782417446718227, - "boldore": 2.9414258348533524, - "swoobat": 5.8641686887987845, - "audino": 2.736258752715482, - "gurdurr": 2.3770368892729397, - "palpitoad": 4.7262486963883745, - "seismitoad": 7.963694986204604, - "scolipede": 4.15312807974233, - "whimsicott": 3.561299863613847, - "lilligant": 3.8761469965648025, - "basculin-red-striped": 3.449159977521159, - "basculin-blue-striped": 4.630746112252563, - "krookodile": 3.6265738498991325, - "maractus": 2.8112467465867814, - "crustle": 1.9568413842357826, - "sigilyph": 2.5647842002720536, - "cofagrigus": 2.845570425736166, - "garbodor": 2.3199533254827482, - "cinccino": 5.877245410266228, - "vanillish": 2.7095212317726034, - "emolga": 3.8207350402140516, - "escavalier": 1.8685264502681482, - "amoonguss": 3.2476835928228636, - "jellicent": 1.7512617010661378, - "galvantula": 2.047871304249886, - "klang": 2.691446746820633, - "klinklang": 3.2053233520608733, - "beheeyem": 2.2887731816158934, - "lampent": 2.928286527442241, - "fraxure": 1.9349333649035159, - "beartic": 2.093642545696814, - "cryogonal": 2.5186897795024477, - "accelgor": 4.53044517476486, - "stunfisk": 1.6518914775049487, - "stunfisk-galar": 2.2396299534303816, - "mienshao": 4.15993932042554, - "druddigon": 2.3540606756344067, - "golurk": 2.1497711109036457, - "bisharp": 2.294957100696613, - "bouffalant": 1.6662351033097076, - "heatmor": 2.444730173628348, - "durant": 2.770698480917976, - "diggersby": 4.1748150253601, - "talonflame": 3.478843755815311, - "pangoro": 2.161293787530543, - "doublade": 2.106956857270404, - "malamar": 3.3297070083573437, - "barbaracle": 1.408316859445033, - "heliolisk": 5.0916578513701705, - "tyrantrum": 1.4288830451026278, - "aurorus": 2.521173250890417, - "hawlucha": 4.26002112778608, - "dedenne": 3.323732162731401, - "klefki": 2.811033803929298, - "trevenant": 3.3900873701403507, - "gourgeist-average": 5.858733778156996, - "charjabug": 4.94612611045557, - "vikavolt": 2.3862276184842277, - "ribombee": 5.96031324328135, - "lycanroc-midday": 3.525542728051278, - "lycanroc-midnight": 2.4036795505048634, - "mudsdale": 1.8692266732390956, - "araquanid": 3.4269023922111876, - "lurantis": 3.0418182486105456, - "shiinotic": 5.127302186475998, - "salazzle": 4.003899690645916, - "tsareena": 3.7748393291868005, - "comfey": 5.4777165700563595, - "oranguru": 3.0695338012734483, - "passimian": 2.5857331615083847, - "palossand": 2.2695876590937845, - "pyukumuku": 54.742692468586725, - "togedemaru": 2.270976493621938, - "mimikyu-disguised": 4.198429584800152, - "greedent": 2.5165932505635213, - "orbeetle": 2.1716938973812905, - "thievul": 2.637441969328217, - "eldegoss": 5.062618244075698, - "dubwool": 3.5535996051875434, - "drednaw": 1.3144970607247455, - "boltund": 6.246701695372891, - "carkol": 2.3939000026715487, - "coalossal": 1.8856920208069163, - "sandaconda": 3.5933950353039767, - "cramorant": 8.154419483128864, - "barraskewda": 5.942789963266168, - "toxtricity-amped": 3.335936781927415, - "centiskorch": 2.7328597204467684, - "grapploct": 1.9410363994393505, - "polteageist": 3.270012195835658, - "hatterene": 2.818165640558237, - "grimmsnarl": 5.1669467506949225, - "obstagoon": 3.153921094481392, - "perrserker": 3.0695404638767743, - "alcremie": 1.772503365561847, - "falinks": 3.5326976173930467, - "pincurchin": 3.6462669200773883, - "frosmoth": 3.4861174781775217, - "indeedee-male": 4.263035556261668, - "morpeko": 3.5700917796886733, - "copperajah": 2.2707385752801703, - "duraludon": 1.3839265843735469, - "drakloak": 5.696789376970876, - "bewear": 2.1856807857105434 + "ivysaur": 4.173012007403338, + "charmeleon": 5.04069266980168, + "wartortle": 3.3519805610334066, + "butterfree": 6.365242910459877, + "raichu": 6.627165410768977, + "raichu-alola": 4.457469511578004, + "sandslash": 2.515826095477145, + "sandslash-alola": 1.9254752174837928, + "nidoqueen": 3.623129357423651, + "nidoking": 2.3805477138399693, + "clefairy": 12.50210855654338, + "clefable": 2.3312932743983446, + "jigglypuff": 31.527214398487878, + "wigglytuff": 2.212693995414929, + "gloom": 6.650589948382225, + "vileplume": 3.8796743495357324, + "dugtrio": 5.266989431353032, + "dugtrio-alola": 3.5816197262955614, + "persian": 5.384737332433144, + "persian-alola": 6.043573805182476, + "golduck": 3.958586918543971, + "poliwrath": 2.3437942764283437, + "kadabra": 4.879782260501249, + "machoke": 4.847267960912235, + "tentacruel": 3.4141525015808623, + "slowbro": 1.8651973491837177, + "magneton": 2.9199821297862902, + "haunter": 5.647056507963283, + "kingler": 2.615093791419529, + "exeggutor": 2.257499211692579, + "marowak": 3.7844801420297003, + "marowak-alola": 2.369465835617508, + "hitmonlee": 3.2600518949849424, + "hitmonchan": 2.886698760216615, + "lickitung": 2.3982289689384477, + "weezing": 1.8061510341807516, + "weezing-galar": 2.759915683902353, + "rhydon": 2.140496310078119, + "chansey": 40.81701125162064, + "tangela": 5.197196109141177, + "kangaskhan": 2.4245395838101302, + "seadra": 4.544331281169289, + "seaking": 3.2496172768422156, + "starmie": 1.6752532528226163, + "mr-mime": 8.241386239923505, + "mr-mime-galar": 4.394953861889354, + "scyther": 3.397107379797842, + "jynx": 5.99458333263831, + "electabuzz": 3.5104329280876296, + "magmar": 2.2916686828963817, + "tauros": 2.4047939439081585, + "ditto": 3.574281145684819, + "vaporeon": 4.4620987636644, + "jolteon": 2.805200382170926, + "flareon": 3.5514746325406854, + "porygon": 3.6054400020849684, + "dragonair": 2.453361729570191, + "noctowl": 7.798283763181947, + "lanturn": 2.6525745448445557, + "togetic": 6.736649092171545, + "xatu": 4.0937123679875596, + "bellossom": 2.58413432154308, + "azumarill": 2.924532953932948, + "sudowoodo": 2.384755614508727, + "politoed": 3.4569331136950674, + "quagsire": 5.224472802312269, + "slowking": 3.1310913153513455, + "dunsparce": 4.23386183959107, + "qwilfish": 4.105586202634856, + "sneasel": 3.06629719786219, + "piloswine": 1.8515379005036976, + "octillery": 3.0322621694540346, + "mantine": 3.3680999891854957, + "skarmory": 1.819445020599931, + "hitmontop": 3.396669611154537, + "miltank": 4.0625935615292015, + "grovyle": 10.221097337913944, + "sceptile": 1.8920746884663533, + "combusken": 3.9083446675559017, + "blaziken": 1.9965272407568286, + "marshtomp": 3.217080197603648, + "swampert": 1.5819834546277485, + "linoone": 7.1674022852471975, + "linoone-galar": 6.368961401277281, + "pelipper": 6.831092447558273, + "ninjask": 10.32599036510317, + "exploud": 2.028299007424385, + "lairon": 2.177338153527294, + "manectric": 2.243949421195565, + "roselia": 5.280115466822796, + "sharpedo": 6.731654217745964, + "wailmer": 8.159624534197867, + "torkoal": 2.056588573386933, + "flygon": 3.117581113110151, + "altaria": 1.92811711377766, + "whiscash": 2.497879968201169, + "crawdaunt": 2.4005805017372146, + "claydol": 3.9472650010554, + "cradily": 2.282439761401803, + "armaldo": 1.9035606377715522, + "dusclops": 4.49983556255296, + "absol": 2.564792370509208, + "glalie": 5.3968026157221605, + "sealeo": 3.9714940351631984, + "relicanth": 1.8217285680854998, + "metang": 3.1100292542978654, + "luxray": 4.885736275076169, + "vespiquen": 3.319878853241652, + "cherrim": 7.355361992679793, + "gastrodon": 2.9970555067804003, + "drifblim": 4.5906868019814, + "lopunny": 4.5459967745069445, + "skuntank": 1.9438541820145212, + "bronzong": 3.4100212378410104, + "munchlax": 3.3652407849624177, + "drapion": 3.1156218304329144, + "abomasnow": 4.004018626285877, + "froslass": 3.50837076988859, + "rotom": 4.68274837541675, + "stoutland": 3.0922255403561785, + "liepard": 8.92150183818245, + "musharna": 1.75801359454562, + "unfezant": 6.782924767079111, + "boldore": 2.9404123207290533, + "swoobat": 5.860932169341824, + "audino": 2.739032949254181, + "gurdurr": 2.377096012762882, + "palpitoad": 4.73454147666018, + "seismitoad": 7.974431837386218, + "scolipede": 4.167447886053846, + "whimsicott": 3.5617249020962767, + "lilligant": 3.8847750377770853, + "basculin-red-striped": 3.4552633501505925, + "basculin-blue-striped": 4.6425465639131405, + "krookodile": 3.6359798028613275, + "maractus": 2.8177924890956065, + "crustle": 1.9579610225663073, + "sigilyph": 2.5647652281063107, + "cofagrigus": 2.844337269879504, + "garbodor": 2.323941431511524, + "cinccino": 5.889441428445284, + "vanillish": 2.713666144981093, + "emolga": 3.8272023251447393, + "escavalier": 1.8717993674370423, + "amoonguss": 3.253699203617355, + "jellicent": 1.749541759348872, + "galvantula": 2.0527828329440405, + "klang": 2.6937709091071773, + "klinklang": 3.2075355097531775, + "beheeyem": 2.293351458435999, + "lampent": 2.928238853413033, + "fraxure": 1.9394730116475682, + "beartic": 2.0959032067140515, + "cryogonal": 2.525217851627512, + "accelgor": 4.546660702193272, + "stunfisk": 1.6552181256260017, + "stunfisk-galar": 2.241671090905639, + "mienshao": 4.165366240930563, + "druddigon": 2.360220993354833, + "golurk": 2.14968595103506, + "bisharp": 2.294894885413999, + "bouffalant": 1.6702485702414562, + "heatmor": 2.451188465065676, + "durant": 2.7724769684865516, + "diggersby": 4.186320046402287, + "talonflame": 3.4825125721049197, + "pangoro": 2.164663803697029, + "doublade": 2.102855903329809, + "malamar": 3.332991026595524, + "barbaracle": 1.4080374538452483, + "heliolisk": 5.1042302898900385, + "tyrantrum": 1.4283470134211094, + "aurorus": 2.522139351760567, + "hawlucha": 4.266615930827549, + "dedenne": 3.3264691314712076, + "klefki": 2.809907011176662, + "trevenant": 3.3874702117871935, + "gourgeist-average": 5.864115609327471, + "charjabug": 4.958528307675352, + "vikavolt": 2.393453225040025, + "ribombee": 5.9691330311885356, + "lycanroc-midday": 3.5319091025377545, + "lycanroc-midnight": 2.4062990828986406, + "mudsdale": 1.8720270748799759, + "araquanid": 3.4401579629111554, + "lurantis": 3.0479776813072603, + "shiinotic": 5.124944750555311, + "salazzle": 4.012390664512936, + "bewear": 2.1856807857105434, + "tsareena": 3.7806589198772196, + "comfey": 5.481698863865795, + "oranguru": 3.069177173763369, + "passimian": 2.5873125275848388, + "palossand": 2.270542509768034, + "pyukumuku": 54.842759908725824, + "togedemaru": 2.273452866419367, + "mimikyu-disguised": 4.201990815640842, + "greedent": 2.519334110072109, + "orbeetle": 2.171554393619597, + "thievul": 2.646082428036463, + "eldegoss": 5.07222368355379, + "dubwool": 3.558184587842918, + "drednaw": 1.3156219173652355, + "boltund": 6.2653401340264745, + "carkol": 2.3946496897093033, + "coalossal": 1.885737104957386, + "sandaconda": 3.59980813110381, + "cramorant": 8.186377132931039, + "barraskewda": 5.9591890195480985, + "toxtricity-amped": 3.341045136141272, + "centiskorch": 2.739243462359288, + "grapploct": 1.940869806980408, + "polteageist": 3.2675471920447725, + "hatterene": 2.8170889972732827, + "grimmsnarl": 5.179751717261165, + "obstagoon": 3.159827940175478, + "perrserker": 3.072648147840723, + "alcremie": 1.7748827818626176, + "falinks": 3.5362455977193337, + "pincurchin": 3.652861315049944, + "frosmoth": 3.4885924626373304, + "indeedee-male": 4.273306616217887, + "morpeko": 3.578397930631046, + "copperajah": 2.271331829823227, + "duraludon": 1.3842192116076963, + "drakloak": 5.7051415873684626 }, "tsareena": { - "ivysaur": 3.846000850674799, - "charmeleon": 3.3509747960474296, - "wartortle": 4.162835264160482, - "butterfree": 5.179886974953811, - "raichu": 6.297912940393102, - "raichu-alola": 4.256767385825571, - "sandslash": 2.699315894156371, - "sandslash-alola": 1.680908651685562, - "nidoqueen": 2.964887467685995, - "nidoking": 1.971430261591794, - "clefairy": 10.25467116704629, - "clefable": 2.3845149755186026, - "jigglypuff": 30.513176912648895, - "wigglytuff": 2.262746150723437, - "gloom": 6.192220356123706, - "vileplume": 3.397104849434278, - "dugtrio": 6.038469888042623, - "dugtrio-alola": 3.9981087839454115, - "persian": 4.732151832380296, - "persian-alola": 4.732821286361126, - "golduck": 4.87819254456358, - "poliwrath": 2.9057571465394654, - "kadabra": 4.8214798250036175, - "machoke": 4.408748272863244, - "tentacruel": 2.8925705174180107, - "slowbro": 2.3353445713525494, - "magneton": 2.822079162372649, - "haunter": 4.379353314547279, - "kingler": 3.1971522770134086, - "exeggutor": 2.256328740186068, - "marowak": 4.329182098515032, - "marowak-alola": 1.712142408973167, - "hitmonlee": 3.03423621854581, - "hitmonchan": 2.4986250510744292, - "lickitung": 2.060678599058988, - "weezing": 1.2180240086929421, - "weezing-galar": 2.1047766926566105, - "rhydon": 3.6207538825482057, - "chansey": 33.9432775198543, - "tangela": 5.082312066336332, - "kangaskhan": 2.0417519241510704, - "seadra": 5.478620294711485, - "seaking": 3.800472749169179, - "starmie": 2.038344092545221, - "mr-mime": 8.199756462968082, - "mr-mime-galar": 3.7197762565294967, - "scyther": 2.8521515236206283, - "jynx": 4.9783788863753955, - "electabuzz": 3.2673953484720117, - "magmar": 1.4420423886232467, - "tauros": 2.144255396734516, - "ditto": 4.306744120919719, - "vaporeon": 5.684653195140955, - "jolteon": 2.363143998392549, - "flareon": 2.09587751107983, - "porygon": 3.0139447764034744, - "dragonair": 1.6770561416605818, - "noctowl": 5.367109657976689, - "lanturn": 3.4776332538721104, - "togetic": 4.729436531404621, - "xatu": 3.3426394574870475, - "bellossom": 2.806301765470283, - "azumarill": 2.086536831886958, - "sudowoodo": 3.3248340364146776, - "politoed": 4.331337361129379, - "quagsire": 10.20745993905265, - "slowking": 3.847182024631026, - "dunsparce": 3.2026167804173964, - "qwilfish": 3.413313792250756, - "sneasel": 2.451270032691027, - "piloswine": 1.978059498139754, - "octillery": 3.452237003660992, - "mantine": 2.956429020096208, - "skarmory": 1.405354629746681, - "hitmontop": 3.1209215163764865, - "miltank": 3.674338377959844, - "grovyle": 10.140717412460013, - "sceptile": 1.7376405661962544, - "combusken": 3.70451754484415, - "blaziken": 1.7476879653575605, - "marshtomp": 5.86933451325165, - "swampert": 2.7873560913522297, - "linoone": 5.431082803010918, - "linoone-galar": 5.0656909505021535, - "pelipper": 5.894786844411868, - "ninjask": 7.784986834667623, - "exploud": 1.691994237617974, - "lairon": 2.261888027113244, - "manectric": 1.9314961212323354, - "roselia": 5.270717953456415, - "sharpedo": 7.645943508847305, - "wailmer": 9.869215710903138, - "torkoal": 1.3962905939105703, - "flygon": 2.545775290455076, - "altaria": 1.423533608857222, - "whiscash": 4.887653174127276, - "crawdaunt": 2.8524682387931954, - "claydol": 4.987909988550614, - "cradily": 2.482057631905881, - "armaldo": 1.881975322550633, - "dusclops": 3.5760609131297167, - "absol": 2.0156229401226646, - "glalie": 4.222020785634564, - "sealeo": 4.559762640075048, - "relicanth": 3.3629808263580783, - "metang": 2.5748408939462273, - "luxray": 4.383144398132259, - "vespiquen": 2.802399561298138, - "cherrim": 7.151785142821479, - "gastrodon": 5.204729704122592, - "drifblim": 4.174103190285827, - "lopunny": 3.9534701653726985, - "skuntank": 1.2464060468738225, - "bronzong": 2.776586122672286, - "munchlax": 2.6282208018981654, - "drapion": 2.038649078575043, - "abomasnow": 3.5656301401379915, - "froslass": 2.9236515421386544, - "rotom": 4.325303684956408, - "stoutland": 2.628555214184673, - "liepard": 7.691068545642995, - "musharna": 1.7435013448244376, - "unfezant": 4.94925011934429, - "boldore": 3.934350012520425, - "swoobat": 4.779802882434812, - "audino": 2.393007462239999, - "gurdurr": 2.402274079599845, - "palpitoad": 9.009820684558882, - "seismitoad": 13.276490702796519, - "scolipede": 3.2605011198451748, - "whimsicott": 3.5288260271806777, - "lilligant": 3.493235526340179, - "basculin-red-striped": 4.140431505409443, - "basculin-blue-striped": 5.560047634594204, - "krookodile": 4.12254738005246, - "maractus": 2.7227071439044916, - "crustle": 1.9585938750770273, - "sigilyph": 2.061936696674822, - "cofagrigus": 2.705384933106963, - "garbodor": 1.5750738872879853, - "cinccino": 4.751719128828637, - "vanillish": 2.1498858051227394, - "emolga": 2.8002249256061216, - "escavalier": 1.697095101615142, - "amoonguss": 2.8390979138773007, - "jellicent": 2.611680870175576, - "galvantula": 1.5173952502436077, - "klang": 2.5000456310536814, - "klinklang": 2.861769917901733, - "beheeyem": 2.048845965856162, - "lampent": 1.9952549104235917, - "fraxure": 1.360139530611851, - "beartic": 1.7056070471287805, - "cryogonal": 1.9136690005681338, - "accelgor": 3.244548501905697, - "stunfisk": 2.1188204158743207, - "stunfisk-galar": 2.506474224144835, - "mienshao": 3.9237276785620123, - "druddigon": 1.6661697017762442, - "golurk": 2.8563376728761636, - "bisharp": 2.0056755280626057, - "bouffalant": 1.1992668868231002, - "heatmor": 1.618437212020729, - "durant": 2.4024355277635587, - "diggersby": 4.891845945408287, - "talonflame": 2.4517570073562647, - "pangoro": 1.9988940338220669, - "doublade": 1.7650171930955234, - "malamar": 3.06491282643914, - "barbaracle": 2.725050987138528, - "heliolisk": 4.561827297483982, - "tyrantrum": 1.5480022931077004, - "aurorus": 3.3833978470068886, - "hawlucha": 3.780934184663691, - "dedenne": 3.4309875544077952, - "klefki": 2.6764927147612445, - "trevenant": 3.732828634083768, - "gourgeist-average": 5.226077598771396, - "charjabug": 3.75110149939104, - "vikavolt": 1.5581341075440536, - "ribombee": 5.127872013885304, - "lycanroc-midday": 4.821506558498959, - "lycanroc-midnight": 3.398172742093113, - "mudsdale": 2.264888277838284, - "araquanid": 2.777537771598788, - "lurantis": 2.7347777142100256, - "shiinotic": 5.303011466324643, - "salazzle": 2.678579095705803, - "bewear": 1.9458054906435427, - "comfey": 5.267675598277437, - "oranguru": 3.0715656797407687, - "passimian": 2.4228831924815015, - "palossand": 2.8561452269526377, - "pyukumuku": 55.312148540039075, - "togedemaru": 2.045779381903317, - "mimikyu-disguised": 4.705433791583758, - "greedent": 2.239816022269968, - "orbeetle": 1.9576677056501952, - "thievul": 2.0089179054621145, - "eldegoss": 4.9659667923386275, - "dubwool": 3.2167010506205327, - "drednaw": 2.508421841754637, - "boltund": 5.378234624184027, - "carkol": 2.348502549720534, - "coalossal": 1.9534629914705945, - "sandaconda": 3.9037574344932944, - "cramorant": 6.782168947973389, - "barraskewda": 6.830462263536846, - "toxtricity-amped": 2.4798994573142394, - "centiskorch": 2.3542487742026665, - "grapploct": 1.9758310767234641, - "polteageist": 3.3678658677346616, - "hatterene": 2.788687137307523, - "grimmsnarl": 4.339180545147872, - "obstagoon": 2.7085663852009745, - "perrserker": 2.753632095446757, - "alcremie": 1.7134991813181588, - "falinks": 3.1534169831169736, - "pincurchin": 3.3399494927749434, - "frosmoth": 2.7662732722517185, - "indeedee-male": 3.6297389621345015, - "morpeko": 3.0721737593838103, - "copperajah": 2.1136769822183195, - "duraludon": 1.1699308696680029, - "drakloak": 4.153732846348387, - "tsareena": 3.539662990464349 + "ivysaur": 3.846274991765836, + "charmeleon": 3.3429244783079306, + "wartortle": 4.170484180527775, + "butterfree": 5.170849294520618, + "raichu": 6.305874030505153, + "raichu-alola": 4.258993629515208, + "sandslash": 2.7006169094593515, + "sandslash-alola": 1.6763048822478677, + "nidoqueen": 2.9641658669641693, + "nidoking": 1.9713521479929612, + "clefairy": 10.254699010207528, + "clefable": 2.3860182116049202, + "jigglypuff": 30.52309822497635, + "wigglytuff": 2.263096356275695, + "gloom": 6.181874820992189, + "vileplume": 3.395489392850422, + "dugtrio": 6.055531293103794, + "dugtrio-alola": 4.001306751798843, + "persian": 4.731091548471335, + "persian-alola": 4.733151141132888, + "golduck": 4.889905226278386, + "poliwrath": 2.913117647643724, + "kadabra": 4.823494770168601, + "machoke": 4.412842171053476, + "tentacruel": 2.895526648285202, + "slowbro": 2.335656760977234, + "magneton": 2.819362012438627, + "haunter": 4.381421245704306, + "kingler": 3.2023460809284097, + "exeggutor": 2.2575195904959964, + "marowak": 4.336613653466916, + "marowak-alola": 1.7089520149101203, + "hitmonlee": 3.037675747821509, + "hitmonchan": 2.4994182896583226, + "lickitung": 2.0606304278975207, + "weezing": 1.2139130069013941, + "weezing-galar": 2.0993437254478904, + "rhydon": 3.626781439121375, + "chansey": 33.95775278683378, + "tangela": 5.08317311417523, + "kangaskhan": 2.042132048255081, + "seadra": 5.484693894647606, + "seaking": 3.8058855920987904, + "starmie": 2.0400876636924195, + "mr-mime": 8.204346718686267, + "mr-mime-galar": 3.7155698480532253, + "scyther": 2.8465234578983383, + "jynx": 4.973384957794584, + "electabuzz": 3.2713161833935978, + "magmar": 1.4384606651953993, + "tauros": 2.1447781216317177, + "ditto": 4.2864656855818435, + "vaporeon": 5.70039772018853, + "jolteon": 2.365394948486065, + "flareon": 2.092919150110571, + "porygon": 3.012416807106126, + "dragonair": 1.6752219151998262, + "noctowl": 5.35707167893605, + "lanturn": 3.4892533926242777, + "togetic": 4.721555650358288, + "xatu": 3.335277565987168, + "bellossom": 2.809176468804523, + "azumarill": 2.0763370736098725, + "sudowoodo": 3.3282016265505394, + "politoed": 4.343731619811592, + "quagsire": 10.241253256137838, + "slowking": 3.8520714689248323, + "dunsparce": 3.1966468850888248, + "qwilfish": 3.4107874801701437, + "sneasel": 2.4488704441970928, + "piloswine": 1.9778888241276211, + "octillery": 3.4551475110663405, + "mantine": 2.9584274970088478, + "skarmory": 1.4005459458129064, + "hitmontop": 3.123515320503998, + "miltank": 3.6723946847682054, + "grovyle": 10.15581732090211, + "sceptile": 1.7392495062720004, + "combusken": 3.702630471685798, + "blaziken": 1.7458598836684578, + "marshtomp": 5.888275048967158, + "swampert": 2.7962523607824, + "linoone": 5.425624437815652, + "linoone-galar": 5.064565535109769, + "pelipper": 5.885083471922357, + "ninjask": 7.76539533428057, + "exploud": 1.6909589510491725, + "lairon": 2.258836976023205, + "manectric": 1.9306344074923856, + "roselia": 5.276470740958699, + "sharpedo": 7.658688961890091, + "wailmer": 9.882977230428914, + "torkoal": 1.3920003635039584, + "flygon": 2.5446545342008147, + "altaria": 1.4208454534990076, + "whiscash": 4.8988485353146825, + "crawdaunt": 2.856093616805315, + "claydol": 4.993661325231392, + "cradily": 2.481905669097583, + "armaldo": 1.8805255163191144, + "dusclops": 3.5745511202353315, + "absol": 2.013817200460611, + "glalie": 4.216321389049064, + "sealeo": 4.563511677584424, + "relicanth": 3.369980895349733, + "metang": 2.57229298124386, + "luxray": 4.385454051546095, + "vespiquen": 2.7958336486583977, + "cherrim": 7.15924956075893, + "gastrodon": 5.2180010820939255, + "drifblim": 4.174486197051885, + "lopunny": 3.951323031784634, + "skuntank": 1.2447166592326333, + "bronzong": 2.7737132989924005, + "munchlax": 2.6272969530036647, + "drapion": 2.035335238029688, + "abomasnow": 3.5628090826676324, + "froslass": 2.919534903141236, + "rotom": 4.330224154431558, + "stoutland": 2.6274139103333383, + "liepard": 7.692261311685854, + "musharna": 1.7443382815660344, + "unfezant": 4.932795211291084, + "boldore": 3.936768493485989, + "swoobat": 4.769228072274434, + "audino": 2.3906969282614705, + "gurdurr": 2.4043034172086726, + "palpitoad": 9.039221900933029, + "seismitoad": 13.27872093566739, + "scolipede": 3.2542869461891373, + "whimsicott": 3.5288563497739016, + "lilligant": 3.4931836768469413, + "basculin-red-striped": 4.14684834522766, + "basculin-blue-striped": 5.573260113947378, + "krookodile": 4.129923325341236, + "maractus": 2.7271351931734324, + "crustle": 1.9558732470932245, + "sigilyph": 2.0579807354733166, + "cofagrigus": 2.7054821739224977, + "garbodor": 1.5703259129556422, + "cinccino": 4.745972766685608, + "vanillish": 2.1454094716609218, + "emolga": 2.7973939347775865, + "escavalier": 1.6957265097044214, + "amoonguss": 2.8353947402857695, + "jellicent": 2.616780793765763, + "galvantula": 1.516411368413575, + "klang": 2.4987504214925274, + "klinklang": 2.857417293439267, + "beheeyem": 2.0492144742671465, + "lampent": 1.990432667101408, + "fraxure": 1.3575602175520363, + "beartic": 1.7034607510215483, + "cryogonal": 1.911891321322936, + "accelgor": 3.2369458476069024, + "stunfisk": 2.1248368221600136, + "stunfisk-galar": 2.5072611930274404, + "mienshao": 3.927367786653111, + "druddigon": 1.6646460776368484, + "golurk": 2.8619405068256896, + "bisharp": 2.000957186440285, + "bouffalant": 1.1953461427138556, + "heatmor": 1.6151231817114282, + "durant": 2.395937634126407, + "diggersby": 4.902629097822391, + "talonflame": 2.4443507658392454, + "pangoro": 2.0005637943478956, + "doublade": 1.7608664197320416, + "malamar": 3.0652512867855295, + "barbaracle": 2.7279763994354997, + "heliolisk": 4.567067672823309, + "tyrantrum": 1.54658087497788, + "aurorus": 3.3834729003818342, + "hawlucha": 3.7780970290313256, + "dedenne": 3.4339106913085256, + "klefki": 2.6743133612812575, + "trevenant": 3.7386298928620736, + "gourgeist-average": 5.220019292267894, + "charjabug": 3.753519568839322, + "vikavolt": 1.5548391184880868, + "ribombee": 5.121008186889438, + "lycanroc-midday": 4.826814605129755, + "lycanroc-midnight": 3.401860046411307, + "mudsdale": 2.2686570361359, + "araquanid": 2.7783700510909464, + "lurantis": 2.73402164273466, + "shiinotic": 5.304370221303444, + "salazzle": 2.6684305196597773, + "bewear": 1.9458196928229334, + "tsareena": 3.539662990464349, + "comfey": 5.2749796722922095, + "oranguru": 3.071977679692603, + "passimian": 2.422737683859708, + "palossand": 2.861160128927411, + "pyukumuku": 55.27287279939665, + "togedemaru": 2.042243052174057, + "mimikyu-disguised": 4.708784336628702, + "greedent": 2.238922709613797, + "orbeetle": 1.9559941090227535, + "thievul": 2.0078269723350313, + "eldegoss": 4.973009238327474, + "dubwool": 3.217165982775019, + "drednaw": 2.5129392745471746, + "boltund": 5.381756756955653, + "carkol": 2.3433471216886135, + "coalossal": 1.9507096953731304, + "sandaconda": 3.904602419665337, + "cramorant": 6.792000863768074, + "barraskewda": 6.841921396649903, + "toxtricity-amped": 2.478114547595071, + "centiskorch": 2.3516299713522395, + "grapploct": 1.9782814018739976, + "polteageist": 3.3735560656074712, + "hatterene": 2.7895045860738397, + "grimmsnarl": 4.341525175482992, + "obstagoon": 2.7080120591275225, + "perrserker": 2.7505245177549846, + "alcremie": 1.7142868496611525, + "falinks": 3.1513184934160696, + "pincurchin": 3.3445157780819255, + "frosmoth": 2.7604204366530665, + "indeedee-male": 3.62853224333295, + "morpeko": 3.0728160198052987, + "copperajah": 2.1113981633852394, + "duraludon": 1.1678987095358186, + "drakloak": 4.151235108422417 }, "comfey": { - "ivysaur": 2.401444083628541, - "charmeleon": 3.292282178259115, - "wartortle": 3.1242214328302946, - "butterfree": 4.041180100179962, - "raichu": 4.722156719754825, - "raichu-alola": 3.0843722946339405, - "sandslash": 2.6586569164951612, - "sandslash-alola": 1.7119461092931108, - "nidoqueen": 2.397397448182174, - "nidoking": 1.6311083594764728, - "clefairy": 8.26930478492596, - "clefable": 1.885016532813853, - "jigglypuff": 24.290429161852515, - "wigglytuff": 1.8490022228166691, - "gloom": 4.1853316847268065, - "vileplume": 2.452510919867736, - "dugtrio": 3.8231625789844257, - "dugtrio-alola": 2.8408475373398794, - "persian": 3.8357880432627027, - "persian-alola": 5.207584279197288, - "golduck": 3.3817433164832496, - "poliwrath": 2.24930113298407, - "kadabra": 3.38686385249303, - "machoke": 4.712912570671268, - "tentacruel": 1.8884560170583888, - "slowbro": 2.0703324199790774, - "magneton": 2.363530735541232, - "haunter": 3.4687699237889387, - "kingler": 3.1740385042489443, - "exeggutor": 1.7877131462841358, - "marowak": 3.421837091061061, - "marowak-alola": 1.5532806318703474, - "hitmonlee": 2.5332194822288523, - "hitmonchan": 2.305328033342308, - "lickitung": 1.7852859413746494, - "weezing": 1.2543936360947245, - "weezing-galar": 2.083839990111414, - "rhydon": 3.6570286574492057, - "chansey": 18.870864356433955, - "tangela": 4.836610640327555, - "kangaskhan": 1.7964644225997846, - "seadra": 5.566645049849866, - "seaking": 2.4933252918962197, - "starmie": 1.6125293131863412, - "mr-mime": 5.895595006685976, - "mr-mime-galar": 3.3402055873219663, - "scyther": 2.529486896350785, - "jynx": 3.767983133051114, - "electabuzz": 2.2896006843118544, - "magmar": 1.3256114991705577, - "tauros": 1.9624691921611714, - "ditto": 4.170694874562718, - "vaporeon": 3.338999724525049, - "jolteon": 1.7035819336301892, - "flareon": 1.8673721600297224, - "porygon": 2.629520480827705, - "dragonair": 2.3701820736652737, - "noctowl": 4.899626214722514, - "lanturn": 2.1113100669931013, - "togetic": 4.707811648493147, - "xatu": 3.5186832130865993, - "bellossom": 2.1509619181275, - "azumarill": 1.9609672909242706, - "sudowoodo": 3.0743360697762174, - "politoed": 2.715512478993695, - "quagsire": 7.882638063385624, - "slowking": 2.5742090540384934, - "dunsparce": 3.0889381852163726, - "qwilfish": 2.8413608913725725, - "sneasel": 2.5010722015087943, - "piloswine": 1.8454056694111958, - "octillery": 2.5276057097762235, - "mantine": 2.0849824090004567, - "skarmory": 1.5775619782705685, - "hitmontop": 3.0162433753024533, - "miltank": 3.3619343846685004, - "grovyle": 7.195299964042842, - "sceptile": 1.3451159256208332, - "combusken": 3.206851967016199, - "blaziken": 1.515212400643942, - "marshtomp": 3.799886149218673, - "swampert": 1.9621264935347935, - "linoone": 4.783014838146336, - "linoone-galar": 5.6955726031676805, - "pelipper": 5.729933616998732, - "ninjask": 7.231642901055379, - "exploud": 1.5060232262667719, - "lairon": 2.1536361507754354, - "manectric": 1.6351478752216657, - "roselia": 3.1115125878999246, - "sharpedo": 6.23183626673302, - "wailmer": 7.062454975613852, - "torkoal": 1.5752987478472111, - "flygon": 2.812494541160662, - "altaria": 1.8599080263247343, - "whiscash": 3.1692882529956687, - "crawdaunt": 2.541910173989061, - "claydol": 3.6218018219636594, - "cradily": 2.0155797831822895, - "armaldo": 1.7864129745220927, - "dusclops": 3.14518357912984, - "absol": 2.2790421575780844, - "glalie": 3.7830076798032524, - "sealeo": 3.523881355696817, - "relicanth": 3.2571164807970887, - "metang": 2.1245863494063313, - "luxray": 3.480272736683716, - "vespiquen": 2.5881522712258893, - "cherrim": 5.282321604415228, - "gastrodon": 3.1837976696722556, - "drifblim": 3.800894611914679, - "lopunny": 3.334863897821748, - "skuntank": 1.3567001060479857, - "bronzong": 2.2519734384732164, - "munchlax": 1.812657720475575, - "drapion": 2.260250021583758, - "abomasnow": 2.8564558990055646, - "froslass": 2.6663849901488077, - "rotom": 3.4062020892741938, - "stoutland": 2.170039855007839, - "liepard": 8.170561947417372, - "musharna": 1.4079537181119255, - "unfezant": 5.820852779993704, - "boldore": 4.138997447927615, - "swoobat": 5.0253004410965385, - "audino": 2.0924673141562073, - "gurdurr": 2.861645691573341, - "palpitoad": 5.922975984222791, - "seismitoad": 8.93966637657059, - "scolipede": 2.6460797249858996, - "whimsicott": 2.8949327304468166, - "lilligant": 2.8835331778843862, - "basculin-red-striped": 3.1620003046290335, - "basculin-blue-striped": 4.25492694855917, - "krookodile": 3.4650127440814797, - "maractus": 2.048765341144996, - "crustle": 2.08147699183066, - "sigilyph": 2.057938224766628, - "cofagrigus": 2.489155111752095, - "garbodor": 1.3513113736257318, - "cinccino": 4.1481502378556705, - "vanillish": 1.9999086517064393, - "emolga": 2.7552779113333257, - "escavalier": 1.4425995210352642, - "amoonguss": 1.845449810419043, - "jellicent": 1.6587070042550893, - "galvantula": 1.480319508901729, - "klang": 2.0887219749955643, - "klinklang": 2.3412244195011693, - "beheeyem": 1.6807017294104774, - "lampent": 2.017160833203517, - "fraxure": 2.1754757578314994, - "beartic": 1.6476819166876877, - "cryogonal": 1.5041176020614178, - "accelgor": 2.8966507569649895, - "stunfisk": 1.405051615576551, - "stunfisk-galar": 2.1704744044721145, - "mienshao": 3.8909317475599763, - "druddigon": 1.9929513260719949, - "golurk": 2.1265415253363744, - "bisharp": 2.2028090040608337, - "bouffalant": 1.1548233584608272, - "heatmor": 1.5161000278082324, - "durant": 2.3797708275116563, - "diggersby": 3.491863688939486, - "talonflame": 2.2546454137094942, - "pangoro": 2.8808032876768417, - "doublade": 1.8299601827229481, - "malamar": 3.3717836331905646, - "barbaracle": 2.2117815687740157, - "heliolisk": 3.1414157007944272, - "tyrantrum": 2.08485146779821, - "aurorus": 2.5498617113010775, - "hawlucha": 4.039451488314489, - "dedenne": 2.662641690307454, - "klefki": 2.1843051573127275, - "trevenant": 2.7305180167017316, - "gourgeist-average": 4.885279891042786, - "charjabug": 3.6666961458167595, - "vikavolt": 1.7156678551936082, - "ribombee": 4.416288135799798, - "lycanroc-midday": 3.6284253092903835, - "lycanroc-midnight": 2.6711320399058285, - "mudsdale": 1.8765047440654548, - "araquanid": 2.006447328071202, - "lurantis": 2.2475478675810385, - "shiinotic": 3.9625643926596057, - "salazzle": 2.291528639190365, - "bewear": 2.064691888024752, - "tsareena": 2.7688580284432263, - "oranguru": 2.3961107345119212, - "passimian": 2.8559409090059473, - "palossand": 2.4178271666104414, - "pyukumuku": 41.23521814330198, - "togedemaru": 1.601810537852126, - "mimikyu-disguised": 3.4611062931583323, - "greedent": 1.868978785705413, - "orbeetle": 1.7419204569364661, - "thievul": 2.0573757599775866, - "eldegoss": 3.4918890475208353, - "dubwool": 2.7603833738756682, - "drednaw": 1.9258330778948367, - "boltund": 4.499701015779206, - "carkol": 2.1994784427569742, - "coalossal": 1.8428194233569108, - "sandaconda": 4.082653195810923, - "cramorant": 4.871911564463384, - "barraskewda": 5.696338728405209, - "toxtricity-amped": 2.158184687432543, - "centiskorch": 1.5816087415296158, - "grapploct": 2.0324986578599162, - "polteageist": 2.334441218361557, - "hatterene": 2.2780224561094746, - "grimmsnarl": 4.649499686125946, - "obstagoon": 2.996996090264484, - "perrserker": 2.486750123023667, - "alcremie": 1.2836011814468504, - "falinks": 3.792372147219085, - "pincurchin": 2.753500665065434, - "frosmoth": 2.544199506268494, - "indeedee-male": 2.8273552390121424, - "morpeko": 3.137610445914296, - "copperajah": 1.6902640857728621, - "duraludon": 1.6392565501353884, - "drakloak": 5.733282506229617, - "comfey": 4.038832644679909 + "ivysaur": 2.3930968668209944, + "charmeleon": 3.2887784288692483, + "wartortle": 3.126463377490972, + "butterfree": 4.0327015823366, + "raichu": 4.720938893230801, + "raichu-alola": 3.0792792078365148, + "sandslash": 2.6606211802216357, + "sandslash-alola": 1.7090806145786956, + "nidoqueen": 2.3920946596419794, + "nidoking": 1.6285567390051345, + "clefairy": 8.26335434790715, + "clefable": 1.8836795734755025, + "jigglypuff": 24.26525007123402, + "wigglytuff": 1.8471642756615687, + "gloom": 4.168200355826201, + "vileplume": 2.448257204074645, + "dugtrio": 3.82181071920349, + "dugtrio-alola": 2.833521988762061, + "persian": 3.828852035158393, + "persian-alola": 5.213329474704262, + "golduck": 3.380978420095489, + "poliwrath": 2.2519063231395666, + "kadabra": 3.3797056272642583, + "machoke": 4.718815995386292, + "tentacruel": 1.883028291843976, + "slowbro": 2.070917666744706, + "magneton": 2.355395498958214, + "haunter": 3.4622874363571183, + "kingler": 3.177784821751435, + "exeggutor": 1.7844516357441296, + "marowak": 3.420336537473247, + "marowak-alola": 1.548967990861696, + "hitmonlee": 2.5344464019764024, + "hitmonchan": 2.3050791406472175, + "lickitung": 1.7834839409704544, + "weezing": 1.2505136188438333, + "weezing-galar": 2.079078577876631, + "rhydon": 3.6585409069276027, + "chansey": 18.79846363395005, + "tangela": 4.829926590034272, + "kangaskhan": 1.7963710614993862, + "seadra": 5.576532536408976, + "seaking": 2.490482472034719, + "starmie": 1.6126477631499907, + "mr-mime": 5.886503283399407, + "mr-mime-galar": 3.334898018694436, + "scyther": 2.5260119519179796, + "jynx": 3.760352620761428, + "electabuzz": 2.286462379067915, + "magmar": 1.3221195895293123, + "tauros": 1.9620102394346222, + "ditto": 4.145840801591512, + "vaporeon": 3.3382781565334634, + "jolteon": 1.7014526044562754, + "flareon": 1.862780922009893, + "porygon": 2.627739585254326, + "dragonair": 2.3744360409592336, + "noctowl": 4.888296001414397, + "lanturn": 2.1122058590496056, + "togetic": 4.701074120786883, + "xatu": 3.5137233578939036, + "bellossom": 2.1479773221837224, + "azumarill": 1.9527459343074711, + "sudowoodo": 3.07662220775389, + "politoed": 2.7148408682593126, + "quagsire": 7.901492638195153, + "slowking": 2.572608843880118, + "dunsparce": 3.0873042289081942, + "qwilfish": 2.8320366587238976, + "sneasel": 2.5014328443572227, + "piloswine": 1.8467692723247824, + "octillery": 2.525782158448946, + "mantine": 2.0823584640049853, + "skarmory": 1.573696929660981, + "hitmontop": 3.017668505257812, + "miltank": 3.3574731759705445, + "grovyle": 7.186614327603179, + "sceptile": 1.34391664259033, + "combusken": 3.2064435404406137, + "blaziken": 1.5142027804116478, + "marshtomp": 3.8044707135060434, + "swampert": 1.9656070190337624, + "linoone": 4.777147469253904, + "linoone-galar": 5.702467144366752, + "pelipper": 5.723674406627508, + "ninjask": 7.226858616749725, + "exploud": 1.5047844274194928, + "lairon": 2.147165164570111, + "manectric": 1.6340579495745164, + "roselia": 3.103104677666103, + "sharpedo": 6.244759473917786, + "wailmer": 7.058249768007766, + "torkoal": 1.5728551392270602, + "flygon": 2.814650712647543, + "altaria": 1.861615242820841, + "whiscash": 3.172435620200812, + "crawdaunt": 2.5460491625772583, + "claydol": 3.620932365341417, + "cradily": 2.0119724648357797, + "armaldo": 1.7858929288100547, + "dusclops": 3.144151384419718, + "absol": 2.2801893501048873, + "glalie": 3.777344755233396, + "sealeo": 3.523704814687651, + "relicanth": 3.263440701057036, + "metang": 2.1165758623798867, + "luxray": 3.4758129509180273, + "vespiquen": 2.585668114465823, + "cherrim": 5.273633813008239, + "gastrodon": 3.1872353046996125, + "drifblim": 3.7952413996582073, + "lopunny": 3.3308753004780645, + "skuntank": 1.356051152210653, + "bronzong": 2.2438965112778866, + "munchlax": 1.8071839526050093, + "drapion": 2.258099291236669, + "abomasnow": 2.849871135642966, + "froslass": 2.6641244331419784, + "rotom": 3.4056336816763153, + "stoutland": 2.1658451132144116, + "liepard": 8.17550254311301, + "musharna": 1.4062693856846715, + "unfezant": 5.813157774189573, + "boldore": 4.14321278324012, + "swoobat": 5.018049637097329, + "audino": 2.090367249023723, + "gurdurr": 2.866369971170613, + "palpitoad": 5.932315284897344, + "seismitoad": 8.93129423730242, + "scolipede": 2.6413377319484135, + "whimsicott": 2.8911796197764223, + "lilligant": 2.881181502433499, + "basculin-red-striped": 3.161511469449537, + "basculin-blue-striped": 4.257725935726027, + "krookodile": 3.471326230305386, + "maractus": 2.0468702083578565, + "crustle": 2.082362125935887, + "sigilyph": 2.053474484035081, + "cofagrigus": 2.488559559858886, + "garbodor": 1.3450580931336518, + "cinccino": 4.141507240057527, + "vanillish": 1.9973749488607244, + "emolga": 2.7517797908719617, + "escavalier": 1.439555620513452, + "amoonguss": 1.8375143280048696, + "jellicent": 1.6591277562547895, + "galvantula": 1.4790874291381209, + "klang": 2.0827316367627797, + "klinklang": 2.330672789630184, + "beheeyem": 1.6793835274364555, + "lampent": 2.014425772504798, + "fraxure": 2.180849668909711, + "beartic": 1.6466072930338789, + "cryogonal": 1.5014019765348006, + "accelgor": 2.8936219758661323, + "stunfisk": 1.4051523593152955, + "stunfisk-galar": 2.1697716691631945, + "mienshao": 3.89256313884548, + "druddigon": 1.990991890766733, + "golurk": 2.128258848290077, + "bisharp": 2.1987376583643634, + "bouffalant": 1.1511801190404978, + "heatmor": 1.51341458981245, + "durant": 2.3731246446702206, + "diggersby": 3.490738942992451, + "talonflame": 2.2478414831775613, + "pangoro": 2.8860962193070914, + "doublade": 1.825544832553692, + "malamar": 3.3738633654871606, + "barbaracle": 2.211385737613057, + "heliolisk": 3.136840405522393, + "tyrantrum": 2.0882331811378285, + "aurorus": 2.5475196744323183, + "hawlucha": 4.038012018103092, + "dedenne": 2.6606226700336943, + "klefki": 2.1771621190185018, + "trevenant": 2.7278208931324213, + "gourgeist-average": 4.880218640475517, + "charjabug": 3.661135895193598, + "vikavolt": 1.7140274931823676, + "ribombee": 4.414303284262575, + "lycanroc-midday": 3.627578156883952, + "lycanroc-midnight": 2.672808923784289, + "mudsdale": 1.8791240811191205, + "araquanid": 2.0031275214692466, + "lurantis": 2.244891612363971, + "shiinotic": 3.9560209435491513, + "salazzle": 2.2822373617303615, + "bewear": 2.0638604274852876, + "tsareena": 2.76379490366159, + "comfey": 4.038832644679909, + "oranguru": 2.3923624842325664, + "passimian": 2.859007040863157, + "palossand": 2.4197758558717366, + "pyukumuku": 41.17499577466689, + "togedemaru": 1.5937000607050738, + "mimikyu-disguised": 3.456142632050491, + "greedent": 1.8644785967033843, + "orbeetle": 1.7396495023939502, + "thievul": 2.0594601772260126, + "eldegoss": 3.4860075499880567, + "dubwool": 2.7574651690987504, + "drednaw": 1.926821006839533, + "boltund": 4.499264388712933, + "carkol": 2.196676992373419, + "coalossal": 1.840620587948085, + "sandaconda": 4.091776643804991, + "cramorant": 4.867079599883128, + "barraskewda": 5.70588169017777, + "toxtricity-amped": 2.1529968746543657, + "centiskorch": 1.576645805066757, + "grapploct": 2.0357883783874806, + "polteageist": 2.33240602405078, + "hatterene": 2.275625259906135, + "grimmsnarl": 4.657975386174035, + "obstagoon": 2.9976266974189008, + "perrserker": 2.4800122596281335, + "alcremie": 1.2824364260914378, + "falinks": 3.7937790508538853, + "pincurchin": 2.7517212522707526, + "frosmoth": 2.5402334990472935, + "indeedee-male": 2.823313629205086, + "morpeko": 3.138211070352124, + "copperajah": 1.6835371267949637, + "duraludon": 1.6369264187154133, + "drakloak": 5.743710274420129 }, "oranguru": { - "ivysaur": 4.437240897794426, - "charmeleon": 4.1781799011920455, - "wartortle": 2.967042943895539, - "butterfree": 4.4992575880421946, - "raichu": 5.4544673270607165, - "raichu-alola": 3.2083420968783534, - "sandslash": 2.3816934835971333, - "sandslash-alola": 1.8684205527301556, - "nidoqueen": 4.150679987029158, - "nidoking": 2.57104019869037, - "clefairy": 9.778274819054989, - "clefable": 2.2581587862324115, - "jigglypuff": 28.414028575485958, - "wigglytuff": 2.2197873672911577, - "gloom": 8.057108210463817, - "vileplume": 4.016090442299606, - "dugtrio": 3.7697014662544945, - "dugtrio-alola": 2.8309276967374366, - "persian": 4.441079477338835, - "persian-alola": 2.695590626222117, - "golduck": 3.248956508158174, - "poliwrath": 2.6990345592790126, - "kadabra": 3.6080569998049357, - "machoke": 5.382535539227689, - "tentacruel": 3.2457614062911198, - "slowbro": 1.7270726721116723, - "magneton": 2.902630653872637, - "haunter": 7.132025787835296, - "kingler": 2.898781988944539, - "exeggutor": 1.8019479356735437, - "marowak": 3.2000957355991995, - "marowak-alola": 2.380821179098344, - "hitmonlee": 3.1507621771839185, - "hitmonchan": 2.8677276896395965, - "lickitung": 2.0903972461542937, - "weezing": 2.541397353560243, - "weezing-galar": 4.305743618570734, - "rhydon": 2.6222790547382053, - "chansey": 27.68500646989538, - "tangela": 5.842415093830816, - "kangaskhan": 1.8574931622822646, - "seadra": 5.036866121573053, - "seaking": 2.5003240843722443, - "starmie": 1.327316338655438, - "mr-mime": 6.425134055085442, - "mr-mime-galar": 3.457697479024063, - "scyther": 2.606270753096866, - "jynx": 3.9381876380266987, - "electabuzz": 2.7422458974150343, - "magmar": 1.7937821026256324, - "tauros": 2.137540014625677, - "ditto": 3.525092549267919, - "vaporeon": 3.3707811491904165, - "jolteon": 2.1074581555327683, - "flareon": 2.6231879291462334, - "porygon": 2.9031404157722385, - "dragonair": 1.9714387220907468, - "noctowl": 5.947016108334846, - "lanturn": 2.062956389141199, - "togetic": 5.540873458433611, - "xatu": 3.5937769628346423, - "bellossom": 2.5361880574409392, - "azumarill": 2.3772429241594732, - "sudowoodo": 2.8560065385678386, - "politoed": 2.666794303391863, - "quagsire": 5.229135948606805, - "slowking": 2.2054514389941247, - "dunsparce": 3.4941166547926628, - "qwilfish": 5.273498229836999, - "sneasel": 1.5766334180801058, - "piloswine": 1.7359187331744643, - "octillery": 2.4479702552313816, - "mantine": 2.5418894736373594, - "skarmory": 1.731239763561295, - "hitmontop": 3.61451541493234, - "miltank": 3.9494584962437065, - "grovyle": 8.248838581612747, - "sceptile": 1.4454902583913158, - "combusken": 4.787425891436293, - "blaziken": 2.289514035637101, - "marshtomp": 2.6231456694125885, - "swampert": 1.3663218322270854, - "linoone": 5.407580264634954, - "linoone-galar": 3.0296039279570586, - "pelipper": 6.740755649265605, - "ninjask": 6.772954600565619, - "exploud": 1.7297789245957995, - "lairon": 2.280459539353018, - "manectric": 1.9425358468484577, - "roselia": 5.5646704108580725, - "sharpedo": 3.313341944143727, - "wailmer": 7.007086141238553, - "torkoal": 2.2569531050062164, - "flygon": 2.4462933108089997, - "altaria": 1.7223985216409523, - "whiscash": 2.2871928141003437, - "crawdaunt": 1.3895765515736058, - "claydol": 3.0928586411033123, - "cradily": 2.4102852162770882, - "armaldo": 1.8753261234126173, - "dusclops": 3.796318945935208, - "absol": 1.358293211736832, - "glalie": 4.073423644467039, - "sealeo": 3.406868194787448, - "relicanth": 2.139684722144002, - "metang": 2.3163367098197183, - "luxray": 4.072507468738986, - "vespiquen": 2.639475068637654, - "cherrim": 6.176132686263493, - "gastrodon": 2.134965970999151, - "drifblim": 4.687622802564191, - "lopunny": 3.737268005286583, - "skuntank": 0.9185491746918824, - "bronzong": 2.4968069523368612, - "munchlax": 2.2666675062181643, - "drapion": 1.4434233460945076, - "abomasnow": 3.2582922175240254, - "froslass": 3.248412268491958, - "rotom": 4.356191617274531, - "stoutland": 2.518357041037737, - "liepard": 4.550867314798239, - "musharna": 1.4472215974296156, - "unfezant": 6.894310000386171, - "boldore": 3.8272200498345126, - "swoobat": 5.1339679343435165, - "audino": 2.4740746774893743, - "gurdurr": 3.4388769294306627, - "palpitoad": 4.107442417199002, - "seismitoad": 6.917973273224208, - "scolipede": 4.113328646418394, - "whimsicott": 3.401728647914411, - "lilligant": 3.15331264192694, - "basculin-red-striped": 3.0673825100210124, - "basculin-blue-striped": 3.7821635669798663, - "krookodile": 1.8929259063437447, - "maractus": 2.312118150674176, - "crustle": 2.1607919575992214, - "sigilyph": 2.1639929210308386, - "cofagrigus": 3.3202460418972315, - "garbodor": 2.6109693489082684, - "cinccino": 4.814642297654519, - "vanillish": 2.3139246007002656, - "emolga": 3.3048926962861875, - "escavalier": 1.4942570433006153, - "amoonguss": 3.54986225783575, - "jellicent": 1.673452697886196, - "galvantula": 1.6837955569742606, - "klang": 2.4893024624537734, - "klinklang": 2.9366824466086676, - "beheeyem": 1.6127195037394488, - "lampent": 2.768186053129967, - "fraxure": 1.6666631354174262, - "beartic": 1.8716304690274743, - "cryogonal": 1.8836410609651866, - "accelgor": 2.885708592895794, - "stunfisk": 1.3685056266778712, - "stunfisk-galar": 1.9777055681086484, - "mienshao": 4.761981437825276, - "druddigon": 1.833557439802882, - "golurk": 2.0843427983482163, - "bisharp": 1.5934981846501657, - "bouffalant": 1.3079551603055959, - "heatmor": 2.042692050293642, - "durant": 2.5849984922401683, - "diggersby": 3.350257343957926, - "talonflame": 3.1612865019051153, - "pangoro": 1.1615982531724631, - "doublade": 2.226650117924496, - "malamar": 1.988451539678167, - "barbaracle": 1.593089720816812, - "heliolisk": 3.7974564176813415, - "tyrantrum": 1.8011157425856998, - "aurorus": 2.5259541136768147, - "hawlucha": 4.792235040971386, - "dedenne": 3.1761479976917912, - "klefki": 2.6563571926736076, - "trevenant": 3.111035131694364, - "gourgeist-average": 6.451895700995709, - "charjabug": 4.2695651804377945, - "vikavolt": 1.9110682848763936, - "ribombee": 4.606574605163692, - "lycanroc-midday": 3.489361190982903, - "lycanroc-midnight": 2.3441483888256256, - "mudsdale": 1.6036658331136393, - "araquanid": 2.2489468716393195, - "lurantis": 2.4513580822689285, - "shiinotic": 4.66800487199725, - "salazzle": 4.459866218817477, - "bewear": 2.5019649022582726, - "tsareena": 3.211155979548809, - "comfey": 4.739435178748796, - "passimian": 3.500654131821597, - "palossand": 2.4340167240676616, - "pyukumuku": 43.745846164949434, - "togedemaru": 1.9334907229205878, - "mimikyu-disguised": 4.579794283539325, - "greedent": 2.3453435761253427, - "orbeetle": 1.5997012029132298, - "thievul": 1.2461947575210595, - "eldegoss": 4.111095478020725, - "dubwool": 3.101902843400613, - "drednaw": 1.343708311455401, - "boltund": 4.658615294723154, - "carkol": 2.5912739760613492, - "coalossal": 2.1728224816146398, - "sandaconda": 3.3664767831234568, - "cramorant": 5.15530726399504, - "barraskewda": 4.6979897287246, - "toxtricity-amped": 3.9292623266741797, - "centiskorch": 2.1457957821771183, - "grapploct": 2.4554637705239095, - "polteageist": 2.7720178785353324, - "hatterene": 2.2879530986413235, - "grimmsnarl": 2.5025748400328727, - "obstagoon": 1.7402410650251965, - "perrserker": 2.7542782713339715, - "alcremie": 1.5561885261477912, - "falinks": 4.555410005833311, - "pincurchin": 3.2240317299122054, - "frosmoth": 2.567725456079222, - "indeedee-male": 3.055832990746355, - "morpeko": 1.8994290325312595, - "copperajah": 2.072674389134156, - "duraludon": 1.4614682233859002, - "drakloak": 4.834329571083887, - "oranguru": 2.5612981250530464 + "ivysaur": 4.452042141338634, + "charmeleon": 4.1839317186393785, + "wartortle": 2.971225512487301, + "butterfree": 4.49718403088455, + "raichu": 5.462868293558098, + "raichu-alola": 3.2074654115068126, + "sandslash": 2.3813935361704055, + "sandslash-alola": 1.8664419468911961, + "nidoqueen": 4.167619867185765, + "nidoking": 2.5781532494240356, + "clefairy": 9.794000952642453, + "clefable": 2.261525507952466, + "jigglypuff": 28.44611441088776, + "wigglytuff": 2.223196490727529, + "gloom": 8.082782603715634, + "vileplume": 4.025475271473553, + "dugtrio": 3.772299326882939, + "dugtrio-alola": 2.8262772615465668, + "persian": 4.441885235378698, + "persian-alola": 2.6807859173551454, + "golduck": 3.2511965133132454, + "poliwrath": 2.7061602481674294, + "kadabra": 3.606655821619386, + "machoke": 5.3930324709194135, + "tentacruel": 3.256681493951529, + "slowbro": 1.7277539169933191, + "magneton": 2.9018043537062956, + "haunter": 7.1722120388583805, + "kingler": 2.9008091798334794, + "exeggutor": 1.8006898105106557, + "marowak": 3.199099598082725, + "marowak-alola": 2.3859609945194347, + "hitmonlee": 3.1597531126896423, + "hitmonchan": 2.8757233326258813, + "lickitung": 2.0925445112003067, + "weezing": 2.5482629094011386, + "weezing-galar": 4.3207005715521785, + "rhydon": 2.622438981575102, + "chansey": 27.68971588735951, + "tangela": 5.844552888618104, + "kangaskhan": 1.8567057481657963, + "seadra": 5.042623416722174, + "seaking": 2.501742132352628, + "starmie": 1.3270385980741426, + "mr-mime": 6.430055466775926, + "mr-mime-galar": 3.457142175100299, + "scyther": 2.6030718764136815, + "jynx": 3.9346085579239403, + "electabuzz": 2.745134111966145, + "magmar": 1.7960125479451785, + "tauros": 2.1374639970799234, + "ditto": 3.5040466443753924, + "vaporeon": 3.3752104705589527, + "jolteon": 2.1118659305801293, + "flareon": 2.628478295355329, + "porygon": 2.9042072224911637, + "dragonair": 1.9727915776836809, + "noctowl": 5.9507831375354705, + "lanturn": 2.0665961206552543, + "togetic": 5.547254486354671, + "xatu": 3.5943496601408214, + "bellossom": 2.5388568853472497, + "azumarill": 2.381290091498169, + "sudowoodo": 2.8576407503003542, + "politoed": 2.669290026790316, + "quagsire": 5.236283727393303, + "slowking": 2.203903837363363, + "dunsparce": 3.4968622509054743, + "qwilfish": 5.286679500836866, + "sneasel": 1.5681401104054156, + "piloswine": 1.7371101528687707, + "octillery": 2.448776374423562, + "mantine": 2.545478325312524, + "skarmory": 1.728236398194535, + "hitmontop": 3.6248095777854674, + "miltank": 3.950353019459632, + "grovyle": 8.25572619830452, + "sceptile": 1.4459257948601036, + "combusken": 4.8034892751773155, + "blaziken": 2.296585163191664, + "marshtomp": 2.625148005061978, + "swampert": 1.368322823951611, + "linoone": 5.40851570595006, + "linoone-galar": 3.0118046177175986, + "pelipper": 6.744629310764864, + "ninjask": 6.757594288987637, + "exploud": 1.731457584854895, + "lairon": 2.2781131983477634, + "manectric": 1.9458705266905763, + "roselia": 5.584898643039974, + "sharpedo": 3.2966967412612194, + "wailmer": 7.013760445715192, + "torkoal": 2.2600137500225213, + "flygon": 2.446439512030774, + "altaria": 1.7243792224326262, + "whiscash": 2.2901138120181814, + "crawdaunt": 1.3828452106172615, + "claydol": 3.092549715434214, + "cradily": 2.4127072185569496, + "armaldo": 1.87416750627545, + "dusclops": 3.8050665927851157, + "absol": 1.3520937096543841, + "glalie": 4.069703800784441, + "sealeo": 3.409740287770161, + "relicanth": 2.1402292734729302, + "metang": 2.3124670338911035, + "luxray": 4.075522523389239, + "vespiquen": 2.6367840966950347, + "cherrim": 6.181681381243107, + "gastrodon": 2.134499964797341, + "drifblim": 4.697041828059526, + "lopunny": 3.7381898158423397, + "skuntank": 0.9136081700112024, + "bronzong": 2.4941959741787576, + "munchlax": 2.267178896562095, + "drapion": 1.4351978566463497, + "abomasnow": 3.257875174021546, + "froslass": 3.2551349998512507, + "rotom": 4.3711647342881506, + "stoutland": 2.51830907492319, + "liepard": 4.5273882331347775, + "musharna": 1.4476267868776165, + "unfezant": 6.899266648449154, + "boldore": 3.8296657332558466, + "swoobat": 5.134654107234729, + "audino": 2.476542371444248, + "gurdurr": 3.4479340082045837, + "palpitoad": 4.11254473810721, + "seismitoad": 6.923420945702876, + "scolipede": 4.113651021151922, + "whimsicott": 3.4050815192099853, + "lilligant": 3.153985588999596, + "basculin-red-striped": 3.0700304827584004, + "basculin-blue-striped": 3.7819170320541526, + "krookodile": 1.883672862476681, + "maractus": 2.3136737685414794, + "crustle": 2.1596320935032702, + "sigilyph": 2.1639108662677047, + "cofagrigus": 3.333457255939064, + "garbodor": 2.6184104278331, + "cinccino": 4.816143005302752, + "vanillish": 2.3156393493623995, + "emolga": 3.3092376549678777, + "escavalier": 1.491568495896209, + "amoonguss": 3.5612111881170123, + "jellicent": 1.6763734923684956, + "galvantula": 1.6846360245018746, + "klang": 2.489024753486447, + "klinklang": 2.933477901592294, + "beheeyem": 1.6114325208305518, + "lampent": 2.7722589246148654, + "fraxure": 1.666113901133424, + "beartic": 1.873009982892702, + "cryogonal": 1.8852609378718606, + "accelgor": 2.8827547886018126, + "stunfisk": 1.3700975458780769, + "stunfisk-galar": 1.9753134628319926, + "mienshao": 4.775600577478091, + "druddigon": 1.8334404677134963, + "golurk": 2.089046240087783, + "bisharp": 1.5861349533304776, + "bouffalant": 1.3080060234513367, + "heatmor": 2.0457154599491933, + "durant": 2.579202514155587, + "diggersby": 3.351629150021654, + "talonflame": 3.1652501940285935, + "pangoro": 1.1561100927948744, + "doublade": 2.2259834120309936, + "malamar": 1.9801520647131348, + "barbaracle": 1.5930030232368746, + "heliolisk": 3.801885174093691, + "tyrantrum": 1.8019413849413786, + "aurorus": 2.5261121189524998, + "hawlucha": 4.799524818136129, + "dedenne": 3.180786257266956, + "klefki": 2.6558175909991766, + "trevenant": 3.1137945539386553, + "gourgeist-average": 6.471693924646013, + "charjabug": 4.272284799676899, + "vikavolt": 1.9111177615461918, + "ribombee": 4.605368077130867, + "lycanroc-midday": 3.491096000906483, + "lycanroc-midnight": 2.3430382663328837, + "mudsdale": 1.6033124892710209, + "araquanid": 2.2479398634774097, + "lurantis": 2.4509136401762293, + "shiinotic": 4.672676476931102, + "salazzle": 4.473677224592833, + "bewear": 2.505301583239782, + "tsareena": 3.2124459638938276, + "comfey": 4.746668268541288, + "oranguru": 2.5612981250530464, + "passimian": 3.510184681874482, + "palossand": 2.4404208063678157, + "pyukumuku": 43.72379778361574, + "togedemaru": 1.9313496509514354, + "mimikyu-disguised": 4.593874953616625, + "greedent": 2.3468985992801406, + "orbeetle": 1.598824718949595, + "thievul": 1.240287129239971, + "eldegoss": 4.115046558860148, + "dubwool": 3.1023338633303066, + "drednaw": 1.343114128508377, + "boltund": 4.656233259890824, + "carkol": 2.5933759760302766, + "coalossal": 2.1748662717892646, + "sandaconda": 3.3654555433439794, + "cramorant": 5.150700223307435, + "barraskewda": 4.695322254885346, + "toxtricity-amped": 3.9411512667683954, + "centiskorch": 2.147837671504195, + "grapploct": 2.4630524150896074, + "polteageist": 2.7756695837092664, + "hatterene": 2.2879714227551338, + "grimmsnarl": 2.491011521113391, + "obstagoon": 1.731626290932997, + "perrserker": 2.749343422169974, + "alcremie": 1.5585801434043343, + "falinks": 4.561987618098564, + "pincurchin": 3.2285109579897373, + "frosmoth": 2.5663811594114456, + "indeedee-male": 3.0581071410505443, + "morpeko": 1.8920114011019993, + "copperajah": 2.071356463936963, + "duraludon": 1.4610230205348218, + "drakloak": 4.840058058268613 }, "passimian": { - "ivysaur": 3.70001990429778, - "charmeleon": 4.494486586323157, - "wartortle": 2.7471082585001474, - "butterfree": 8.048137693745659, - "raichu": 5.460539282289201, - "raichu-alola": 3.078337512184365, - "sandslash": 2.1426602655975584, - "sandslash-alola": 3.544375029858716, - "nidoqueen": 2.4780882450526738, - "nidoking": 1.7358184497676676, - "clefairy": 8.564402675349616, - "clefable": 1.5747252153438027, - "jigglypuff": 24.354168967323574, - "wigglytuff": 1.7079779878592165, - "gloom": 5.896225321454593, - "vileplume": 3.4659656059894894, - "dugtrio": 4.226982547072608, - "dugtrio-alola": 5.146820722551478, - "persian": 5.784126085802239, - "persian-alola": 6.463267665481289, - "golduck": 3.180157589732972, - "poliwrath": 2.2253589743007387, - "kadabra": 3.296205239661975, - "machoke": 4.647715088356132, - "tentacruel": 2.302839976846382, - "slowbro": 1.3911700627285914, - "magneton": 3.979125046858914, - "haunter": 3.9966518962342885, - "kingler": 2.3339275328506277, - "exeggutor": 2.0601906661529674, - "marowak": 3.157291839391884, - "marowak-alola": 2.3144286438096655, - "hitmonlee": 3.185994367807817, - "hitmonchan": 2.6743490011168327, - "lickitung": 2.537549898981566, - "weezing": 1.3467203015350044, - "weezing-galar": 2.0407712414763113, - "rhydon": 2.5986629718162084, - "chansey": 43.76685953128634, - "tangela": 4.866586339956585, - "kangaskhan": 2.616710222774622, - "seadra": 3.777829354407273, - "seaking": 2.6039437055381973, - "starmie": 1.2100316529962767, - "mr-mime": 5.524623121693922, - "mr-mime-galar": 3.9158779959095478, - "scyther": 4.275038917914367, - "jynx": 5.3016202451081265, - "electabuzz": 2.7241044885531633, - "magmar": 2.0237380339257047, - "tauros": 2.6815408915523826, - "ditto": 3.679698571392672, - "vaporeon": 3.4305466734533083, - "jolteon": 2.080126102934879, - "flareon": 2.9799630476450387, - "porygon": 3.8394010277817823, - "dragonair": 1.956301424840844, - "noctowl": 6.944881933236697, - "lanturn": 2.0359067534464788, - "togetic": 6.054229504912367, - "xatu": 3.6462349957486637, - "bellossom": 2.2799725521044465, - "azumarill": 1.9529844557915772, - "sudowoodo": 3.2019967391936017, - "politoed": 2.7323549332228696, - "quagsire": 4.492828760880762, - "slowking": 2.2261612447856107, - "dunsparce": 4.3238492097531225, - "qwilfish": 3.065220901934606, - "sneasel": 4.762180455045234, - "piloswine": 2.019963537513462, - "octillery": 2.4223218287894444, - "mantine": 2.9558138973501222, - "skarmory": 1.9114691849718448, - "hitmontop": 3.2329969102675955, - "miltank": 4.360520351593916, - "grovyle": 9.479781536393299, - "sceptile": 1.6966929024488038, - "combusken": 3.8095184463139202, - "blaziken": 1.8880299782016072, - "marshtomp": 2.6007344200814138, - "swampert": 1.2658826791233755, - "linoone": 7.384677546768765, - "linoone-galar": 9.86648220323709, - "pelipper": 6.248693444617347, - "ninjask": 12.963593370609985, - "exploud": 2.2090057630505235, - "lairon": 3.8632454199210775, - "manectric": 1.770060249508945, - "roselia": 4.635827200302208, - "sharpedo": 7.2446331789788765, - "wailmer": 6.528558448346692, - "torkoal": 1.8671817590464799, - "flygon": 2.5217429548608274, - "altaria": 1.7006992253084146, - "whiscash": 1.9990921577484286, - "crawdaunt": 2.538070979650493, - "claydol": 2.8339767440223946, - "cradily": 3.0953099973105163, - "armaldo": 2.2017396880671454, - "dusclops": 3.1642830149302643, - "absol": 2.739890258940757, - "glalie": 5.786706477422606, - "sealeo": 4.212204866007352, - "relicanth": 2.3141905361102575, - "metang": 2.8351702333990714, - "luxray": 3.908189985919902, - "vespiquen": 4.287254502604876, - "cherrim": 6.574247709709758, - "gastrodon": 2.4095089236713667, - "drifblim": 4.601762315130696, - "lopunny": 5.093874031566951, - "skuntank": 1.5409358876441182, - "bronzong": 3.0658228068615196, - "munchlax": 3.663307132370592, - "drapion": 2.539893029952604, - "abomasnow": 4.26168320707298, - "froslass": 3.3405788648810266, - "rotom": 3.2902392000069742, - "stoutland": 3.3270071212944172, - "liepard": 9.610711947981436, - "musharna": 1.259407762993892, - "unfezant": 6.230534787709308, - "boldore": 3.813781761621466, - "swoobat": 5.21911393481441, - "audino": 2.881740446250976, - "gurdurr": 2.3942114679525517, - "palpitoad": 3.7850975570724534, - "seismitoad": 6.354968076950091, - "scolipede": 3.809415433783599, - "whimsicott": 3.211087715026015, - "lilligant": 3.4873024550756173, - "basculin-red-striped": 2.8232157627258276, - "basculin-blue-striped": 3.765280988008679, - "krookodile": 3.8762752721850022, - "maractus": 2.5206235250456124, - "crustle": 2.3200573357647842, - "sigilyph": 2.2904967925692064, - "cofagrigus": 2.0576464105733683, - "garbodor": 1.7107146568407903, - "cinccino": 6.320391554127033, - "vanillish": 2.854012816542478, - "emolga": 3.404013756064674, - "escavalier": 1.9779357368547776, - "amoonguss": 2.891797590628989, - "jellicent": 1.3099367126073829, - "galvantula": 1.829501039741853, - "klang": 3.7804352167693036, - "klinklang": 4.495134806896482, - "beheeyem": 1.6256617512490172, - "lampent": 2.9433599798421732, - "fraxure": 1.5907852224306467, - "beartic": 2.2623961289154515, - "cryogonal": 2.6865462259348414, - "accelgor": 4.033356680967552, - "stunfisk": 1.3241434836500503, - "stunfisk-galar": 3.109702693111954, - "mienshao": 3.9822578804304776, - "druddigon": 1.909378816296364, - "golurk": 1.7314946249683763, - "bisharp": 4.5770277460987625, - "bouffalant": 1.8805085995964288, - "heatmor": 2.195687420426391, - "durant": 2.8890719824883995, - "diggersby": 4.5025145203964065, - "talonflame": 4.375274337391517, - "pangoro": 2.4678827604188562, - "doublade": 1.6693854999930293, - "malamar": 2.722521612501459, - "barbaracle": 1.8449987765576878, - "heliolisk": 5.464542521945631, - "tyrantrum": 1.9252615454355109, - "aurorus": 4.688574678424851, - "hawlucha": 4.085324384349057, - "dedenne": 2.240071470156313, - "klefki": 2.962230075871701, - "trevenant": 3.614093415395003, - "gourgeist-average": 5.493201910360047, - "charjabug": 4.524642238956117, - "vikavolt": 2.1589776435818626, - "ribombee": 5.308766182535953, - "lycanroc-midday": 4.773738851180063, - "lycanroc-midnight": 3.3730196386389735, - "mudsdale": 1.6492487220810914, - "araquanid": 3.0834290784746106, - "lurantis": 2.7424870653501383, - "shiinotic": 4.535116336188064, - "salazzle": 3.6263023431326635, - "bewear": 2.3435916606682734, - "tsareena": 3.451458482891695, - "comfey": 3.7809231779871615, - "oranguru": 2.419628269066919, - "palossand": 1.7193390853878698, - "pyukumuku": 45.145599232720194, - "togedemaru": 3.244483449335663, - "mimikyu-disguised": 3.9011798195391982, - "greedent": 2.711580637434589, - "orbeetle": 1.949051774663333, - "thievul": 2.8356596129730853, - "eldegoss": 4.522690628792068, - "dubwool": 3.9811567011182722, - "drednaw": 1.7360960425498888, - "boltund": 5.0062061447292505, - "carkol": 3.1273608260330574, - "coalossal": 2.4304748664804285, - "sandaconda": 3.03279232029999, - "cramorant": 7.334996354529528, - "barraskewda": 4.87003938186964, - "toxtricity-amped": 2.364178316714324, - "centiskorch": 3.481698616107124, - "grapploct": 1.8785173838008054, - "polteageist": 2.49909222724052, - "hatterene": 1.9942750681639736, - "grimmsnarl": 4.276075986198473, - "obstagoon": 4.834792239452167, - "perrserker": 4.212037682262624, - "alcremie": 1.1806408195314413, - "falinks": 3.4312797451883226, - "pincurchin": 2.9373171806614256, - "frosmoth": 4.3105953725515835, - "indeedee-male": 3.1818035935444025, - "morpeko": 3.835465234789714, - "copperajah": 3.360125353531904, - "duraludon": 1.8906922325805762, - "drakloak": 4.225580304495332, - "passimian": 2.509355631348627 + "ivysaur": 3.7015134920619466, + "charmeleon": 4.499963858973211, + "wartortle": 2.7481894312362307, + "butterfree": 8.066815289424072, + "raichu": 5.46337328390589, + "raichu-alola": 3.0710286102650426, + "sandslash": 2.1441095009398916, + "sandslash-alola": 3.554909650608092, + "nidoqueen": 2.475365515554326, + "nidoking": 1.736115968778974, + "clefairy": 8.565881266776254, + "clefable": 1.572926327874196, + "jigglypuff": 24.308499662983767, + "wigglytuff": 1.7051537041852451, + "gloom": 5.8872196045190055, + "vileplume": 3.4694550438013456, + "dugtrio": 4.234027372382887, + "dugtrio-alola": 5.159178859769461, + "persian": 5.790165257918039, + "persian-alola": 6.484470462255047, + "golduck": 3.1824141502632504, + "poliwrath": 2.228892608686226, + "kadabra": 3.289587562731812, + "machoke": 4.658898460616719, + "tentacruel": 2.3039789442857685, + "slowbro": 1.3867818447252365, + "magneton": 3.980327164424522, + "haunter": 3.9912255218773027, + "kingler": 2.3345743772730065, + "exeggutor": 2.0587425336123717, + "marowak": 3.1600749559334558, + "marowak-alola": 2.3160696572281614, + "hitmonlee": 3.1942339191357405, + "hitmonchan": 2.6800031673432425, + "lickitung": 2.540266738370946, + "weezing": 1.3455565443352244, + "weezing-galar": 2.0350954219808015, + "rhydon": 2.600008519081478, + "chansey": 43.84443799091065, + "tangela": 4.867613934384254, + "kangaskhan": 2.6231062077268237, + "seadra": 3.7739048507279254, + "seaking": 2.6070033162336115, + "starmie": 1.2083421287669043, + "mr-mime": 5.504504908475457, + "mr-mime-galar": 3.910242356680113, + "scyther": 4.283238925352338, + "jynx": 5.3042421649061415, + "electabuzz": 2.7243186443557725, + "magmar": 2.0266392150211736, + "tauros": 2.687591315943256, + "ditto": 3.6565749163061545, + "vaporeon": 3.433399280225001, + "jolteon": 2.0808151416167537, + "flareon": 2.9854585258858948, + "porygon": 3.845444874246038, + "dragonair": 1.9578997315503484, + "noctowl": 6.949435120939261, + "lanturn": 2.0372171353390702, + "togetic": 6.053032616145726, + "xatu": 3.634303212929484, + "bellossom": 2.27931941870632, + "azumarill": 1.9538356812022326, + "sudowoodo": 3.2081842788934902, + "politoed": 2.7351358670294683, + "quagsire": 4.491113208371687, + "slowking": 2.2236660185867057, + "dunsparce": 4.330115443018964, + "qwilfish": 3.0651518595899003, + "sneasel": 4.783939112672538, + "piloswine": 2.0239870084387284, + "octillery": 2.423910090756335, + "mantine": 2.95598219354016, + "skarmory": 1.9125055984688295, + "hitmontop": 3.2392879219972404, + "miltank": 4.362912863351041, + "grovyle": 9.494034248205441, + "sceptile": 1.6992697116968873, + "combusken": 3.815020948899127, + "blaziken": 1.8916253495058253, + "marshtomp": 2.60263074506684, + "swampert": 1.2659601066064858, + "linoone": 7.402697444539068, + "linoone-galar": 9.909562281417141, + "pelipper": 6.243173885887894, + "ninjask": 13.007969268086757, + "exploud": 2.2115508522314093, + "lairon": 3.8722261681665127, + "manectric": 1.7697305701128958, + "roselia": 4.6343175606472204, + "sharpedo": 7.264993317322341, + "wailmer": 6.52933858051003, + "torkoal": 1.867906946306743, + "flygon": 2.5237479847701243, + "altaria": 1.6998789481893706, + "whiscash": 1.9972758435606497, + "crawdaunt": 2.542828067602641, + "claydol": 2.8267185963517774, + "cradily": 3.100748523583369, + "armaldo": 2.207643678435352, + "dusclops": 3.163473001216106, + "absol": 2.7466212629218614, + "glalie": 5.804580161418488, + "sealeo": 4.220229932777066, + "relicanth": 2.3176957691818245, + "metang": 2.833535645973962, + "luxray": 3.9084824158649774, + "vespiquen": 4.295662904591564, + "cherrim": 6.5786423617441905, + "gastrodon": 2.413417685352778, + "drifblim": 4.5929083610985515, + "lopunny": 5.1026049196936185, + "skuntank": 1.5444659661131372, + "bronzong": 3.0632323009506024, + "munchlax": 3.674210295892162, + "drapion": 2.545706880048637, + "abomasnow": 4.272192484449678, + "froslass": 3.3407966762709735, + "rotom": 3.2855605085901223, + "stoutland": 3.332253201600844, + "liepard": 9.629158181554219, + "musharna": 1.2559559178511277, + "unfezant": 6.226855023688402, + "boldore": 3.8193851223948116, + "swoobat": 5.202023439209542, + "audino": 2.8830345114460023, + "gurdurr": 2.3968233383548854, + "palpitoad": 3.7841987128773114, + "seismitoad": 6.350276113845948, + "scolipede": 3.819064594314731, + "whimsicott": 3.2073210474820826, + "lilligant": 3.4917607117084, + "basculin-red-striped": 2.8244952320065497, + "basculin-blue-striped": 3.7693771243542944, + "krookodile": 3.8851238789680194, + "maractus": 2.5241151121664505, + "crustle": 2.3253533962223294, + "sigilyph": 2.28434200276699, + "cofagrigus": 2.0513957548160064, + "garbodor": 1.710969615315438, + "cinccino": 6.331662702595937, + "vanillish": 2.858521593269538, + "emolga": 3.403097870539421, + "escavalier": 1.982138952322237, + "amoonguss": 2.892230394398855, + "jellicent": 1.3081169487751665, + "galvantula": 1.830856459710436, + "klang": 3.7857628634204183, + "klinklang": 4.502252362550967, + "beheeyem": 1.6238054426013937, + "lampent": 2.9450317643027497, + "fraxure": 1.5924080501117954, + "beartic": 2.266535546554136, + "cryogonal": 2.693620798562403, + "accelgor": 4.044159176721642, + "stunfisk": 1.323618298065348, + "stunfisk-galar": 3.1142271729717375, + "mienshao": 3.988663113977592, + "druddigon": 1.9118056715297327, + "golurk": 1.7300344264661003, + "bisharp": 4.588917219791046, + "bouffalant": 1.8859818852203003, + "heatmor": 2.1996261853560144, + "durant": 2.8918494627493514, + "diggersby": 4.5129326063476505, + "talonflame": 4.3768242229078425, + "pangoro": 2.475640134878641, + "doublade": 1.6651157490762871, + "malamar": 2.7207742058993274, + "barbaracle": 1.8467366996764292, + "heliolisk": 5.472634896057569, + "tyrantrum": 1.9281051333780135, + "aurorus": 4.703062839320479, + "hawlucha": 4.09158710897934, + "dedenne": 2.2357715770913145, + "klefki": 2.9602764274180284, + "trevenant": 3.6173728677207775, + "gourgeist-average": 5.4924650472813275, + "charjabug": 4.530157959053862, + "vikavolt": 2.1623530632159462, + "ribombee": 5.3108635718062125, + "lycanroc-midday": 4.787866722371798, + "lycanroc-midnight": 3.383092542476324, + "mudsdale": 1.6511192682621947, + "araquanid": 3.0934060724801347, + "lurantis": 2.745522838115134, + "shiinotic": 4.525935915226521, + "salazzle": 3.6284731156995473, + "bewear": 2.34825190838414, + "tsareena": 3.4545371482480434, + "comfey": 3.7748864870676684, + "oranguru": 2.413725919075264, + "passimian": 2.509355631348627, + "palossand": 1.7157226091527402, + "pyukumuku": 45.190919654931264, + "togedemaru": 3.2500807853405957, + "mimikyu-disguised": 3.9013528680593046, + "greedent": 2.7140810518478, + "orbeetle": 1.9449474215874272, + "thievul": 2.844752978693047, + "eldegoss": 4.526728352199253, + "dubwool": 3.988732507777984, + "drednaw": 1.7396714077049973, + "boltund": 5.011572293406888, + "carkol": 3.1329262125534663, + "coalossal": 2.433932552513593, + "sandaconda": 3.033183983754162, + "cramorant": 7.353356108243426, + "barraskewda": 4.877083904125924, + "toxtricity-amped": 2.360906038126788, + "centiskorch": 3.4891977031247614, + "grapploct": 1.8804936120844504, + "polteageist": 2.4962555002443607, + "hatterene": 1.9876352334083758, + "grimmsnarl": 4.285751405171599, + "obstagoon": 4.849921569440373, + "perrserker": 4.219874131097653, + "alcremie": 1.1795691891078959, + "falinks": 3.4359980526395857, + "pincurchin": 2.9365909464030158, + "frosmoth": 4.314570663732604, + "indeedee-male": 3.1791238944736944, + "morpeko": 3.8430734540364924, + "copperajah": 3.3656465012040595, + "duraludon": 1.8925698598369896, + "drakloak": 4.224522998751936 }, "palossand": { - "ivysaur": 3.0082852496957804, - "charmeleon": 5.1721269435531445, - "wartortle": 2.600140334854922, - "butterfree": 4.560976205140909, - "raichu": 7.775500320063108, - "raichu-alola": 4.8534200145731425, - "sandslash": 2.744310956320395, - "sandslash-alola": 3.195779259768117, - "nidoqueen": 3.7039886128549826, - "nidoking": 2.5958567911287433, - "clefairy": 8.730429270575653, - "clefable": 2.1557093980005515, - "jigglypuff": 27.10752989833935, - "wigglytuff": 2.102056427754784, - "gloom": 6.272524053648005, - "vileplume": 2.9050943908602114, - "dugtrio": 3.9981630362146343, - "dugtrio-alola": 4.632526236585223, - "persian": 5.055256449751788, - "persian-alola": 3.727902974027802, - "golduck": 3.0906838115467385, - "poliwrath": 2.1631246210108896, - "kadabra": 4.805072972730839, - "machoke": 4.51891705119065, - "tentacruel": 2.6206288136992564, - "slowbro": 2.6694471144765783, - "magneton": 7.746919433424029, - "haunter": 5.66735297973579, - "kingler": 3.0141957119144114, - "exeggutor": 2.6690471668856652, - "marowak": 3.3953355430865173, - "marowak-alola": 3.227215640628621, - "hitmonlee": 2.6052394586601277, - "hitmonchan": 2.3029954236027663, - "lickitung": 1.7932382734099306, - "weezing": 2.441095738463023, - "weezing-galar": 4.121971214723217, - "rhydon": 3.606961287464257, - "chansey": 23.96729585297053, - "tangela": 5.793799856945778, - "kangaskhan": 2.001155698550149, - "seadra": 4.698128394692218, - "seaking": 2.543748812671261, - "starmie": 1.9540616605915493, - "mr-mime": 8.438868290121242, - "mr-mime-galar": 4.110266339439205, - "scyther": 2.972677033174687, - "jynx": 4.687068490319799, - "electabuzz": 3.992949351795571, - "magmar": 2.1555949462211785, - "tauros": 2.3556315405332002, - "ditto": 4.015666536060522, - "vaporeon": 2.992703673406532, - "jolteon": 2.6699419178583055, - "flareon": 2.7917964642303668, - "porygon": 2.925830929216022, - "dragonair": 1.9232178055938864, - "noctowl": 5.326201286728432, - "lanturn": 2.4364370444407153, - "togetic": 5.53878013938079, - "xatu": 5.351641463510418, - "bellossom": 2.2784136403662822, - "azumarill": 2.354907090730448, - "sudowoodo": 4.126824050121087, - "politoed": 2.6037349681118265, - "quagsire": 4.897268295941581, - "slowking": 3.056477097943092, - "dunsparce": 3.180627097932841, - "qwilfish": 5.2154670369580485, - "sneasel": 2.0454447608387802, - "piloswine": 1.640434563195085, - "octillery": 2.4091201394583903, - "mantine": 2.1570313026929333, - "skarmory": 2.5084132354545168, - "hitmontop": 2.9102816395297797, - "miltank": 4.416727852811189, - "grovyle": 7.486828266157328, - "sceptile": 1.3548832633650416, - "combusken": 4.98725911786016, - "blaziken": 2.3597566788233477, - "marshtomp": 2.4483055277773023, - "swampert": 1.1835490153449677, - "linoone": 5.7348496875953945, - "linoone-galar": 4.133970864223028, - "pelipper": 7.626095452288698, - "ninjask": 8.517274460911658, - "exploud": 1.6382381471904417, - "lairon": 6.658501536579768, - "manectric": 2.7383696370799324, - "roselia": 3.630535831455191, - "sharpedo": 4.903457703664323, - "wailmer": 6.501911784767952, - "torkoal": 2.9882216041868617, - "flygon": 2.6234286065140204, - "altaria": 1.6418172199382717, - "whiscash": 1.9277967454986427, - "crawdaunt": 1.9521173040389352, - "claydol": 4.798822636777422, - "cradily": 2.301709327790953, - "armaldo": 2.1900792841780676, - "dusclops": 4.662416902837512, - "absol": 1.9110700543643666, - "glalie": 4.0974297004017926, - "sealeo": 2.917580168515011, - "relicanth": 2.87829175369399, - "metang": 4.782894371555537, - "luxray": 6.285342726152518, - "vespiquen": 3.1327259406, - "cherrim": 5.666858924232914, - "gastrodon": 2.3326796517458477, - "drifblim": 6.446004309616152, - "lopunny": 4.260497528400402, - "skuntank": 2.0184497707355273, - "bronzong": 4.887355257226433, - "munchlax": 2.417908840950486, - "drapion": 3.695125616417381, - "abomasnow": 3.174633440087992, - "froslass": 3.671799515244812, - "rotom": 5.651677455031202, - "stoutland": 3.011592375114388, - "liepard": 7.003811829786655, - "musharna": 2.0260429137974443, - "unfezant": 5.831076943973629, - "boldore": 5.633058239921949, - "swoobat": 7.677289858388249, - "audino": 2.7280220399556767, - "gurdurr": 2.8767974148920388, - "palpitoad": 3.8987004307088444, - "seismitoad": 7.943567143291813, - "scolipede": 3.5981041301247365, - "whimsicott": 3.180797130954433, - "lilligant": 2.95583269741912, - "basculin-red-striped": 2.889800597364274, - "basculin-blue-striped": 3.540650687443895, - "krookodile": 2.8100339683967297, - "maractus": 2.02730393507612, - "crustle": 2.612581049749969, - "sigilyph": 3.2440443277268045, - "cofagrigus": 3.7350309370536134, - "garbodor": 2.799665962178462, - "cinccino": 5.089686806077863, - "vanillish": 2.0817004967148067, - "emolga": 3.8127422864711766, - "escavalier": 1.9683861972165557, - "amoonguss": 2.610947029441271, - "jellicent": 1.9303778313868742, - "galvantula": 1.9676262437283945, - "klang": 4.280858346164804, - "klinklang": 5.466964811337238, - "beheeyem": 2.4163828366264952, - "lampent": 3.8011336922435484, - "fraxure": 1.8579574495664217, - "beartic": 1.6065771862173674, - "cryogonal": 1.3509492712621096, - "accelgor": 3.3892998068451634, - "stunfisk": 1.6030219326362536, - "stunfisk-galar": 3.287089230251894, - "mienshao": 4.160440869754732, - "druddigon": 1.9432843359217593, - "golurk": 2.7590977843504856, - "bisharp": 3.5942436867164, - "bouffalant": 1.4525188028658662, - "heatmor": 2.559312834202463, - "durant": 3.975786626880576, - "diggersby": 3.5475617770415773, - "talonflame": 3.125060331733076, - "pangoro": 1.8901512626514632, - "doublade": 4.884604862611153, - "malamar": 3.044085613395729, - "barbaracle": 2.0016563660769124, - "heliolisk": 5.086071933347997, - "tyrantrum": 2.723010714362884, - "aurorus": 3.076989997295647, - "hawlucha": 4.0671364630874445, - "dedenne": 4.1288283509488615, - "klefki": 4.534576051246831, - "trevenant": 4.315812022563785, - "gourgeist-average": 7.983536199926382, - "charjabug": 4.80127487206235, - "vikavolt": 2.213261354354604, - "ribombee": 5.028957680158047, - "lycanroc-midday": 4.893495050874157, - "lycanroc-midnight": 3.284026423943037, - "mudsdale": 1.8005264546186273, - "araquanid": 2.438388030256959, - "lurantis": 2.5306590016656005, - "shiinotic": 4.679364123095897, - "salazzle": 6.497841853860274, - "bewear": 2.155957916368964, - "tsareena": 3.134693701778527, - "comfey": 4.23560973414613, - "oranguru": 2.6439150787816112, - "passimian": 2.8901360452734512, - "pyukumuku": 51.159438354163626, - "togedemaru": 4.991051558704669, - "mimikyu-disguised": 5.700431973958339, - "greedent": 2.4952281199057014, - "orbeetle": 2.5739455745282616, - "thievul": 1.6018314368280127, - "eldegoss": 3.618621337697797, - "dubwool": 3.395783366288887, - "drednaw": 1.871341625316579, - "boltund": 6.726275538126616, - "carkol": 5.0600642559274345, - "coalossal": 3.8535525674072186, - "sandaconda": 3.7036955482153644, - "cramorant": 4.96637512170069, - "barraskewda": 4.795797984989386, - "toxtricity-amped": 6.951280512110257, - "centiskorch": 2.18580901102977, - "grapploct": 1.82062621069006, - "polteageist": 3.21474456255829, - "hatterene": 3.569148946838867, - "grimmsnarl": 3.6241441248948707, - "obstagoon": 2.837743018127904, - "perrserker": 5.118697823189091, - "alcremie": 1.3846733585069053, - "falinks": 3.9428771791298107, - "pincurchin": 4.21121617339953, - "frosmoth": 2.88989654611389, - "indeedee-male": 2.887028253110002, - "morpeko": 3.884652120225199, - "copperajah": 3.4942427336908524, - "duraludon": 2.9311528723301743, - "drakloak": 6.306059798221657, - "palossand": 3.0218743853202525 + "ivysaur": 3.0053373985534524, + "charmeleon": 5.180634206637091, + "wartortle": 2.597381804732749, + "butterfree": 4.556700918012775, + "raichu": 7.816605906826453, + "raichu-alola": 4.871124752418595, + "sandslash": 2.7541012037482653, + "sandslash-alola": 3.2051570406554473, + "nidoqueen": 3.7093844586929796, + "nidoking": 2.602951914077007, + "clefairy": 8.725903421581783, + "clefable": 2.158585846771012, + "jigglypuff": 27.09349124568147, + "wigglytuff": 2.1025639791433957, + "gloom": 6.283556303177821, + "vileplume": 2.90362428399858, + "dugtrio": 4.004598496443856, + "dugtrio-alola": 4.64123335836962, + "persian": 5.066637957932189, + "persian-alola": 3.7223495283937353, + "golduck": 3.0900738833017214, + "poliwrath": 2.1682123166231695, + "kadabra": 4.811541011545948, + "machoke": 4.531237682112188, + "tentacruel": 2.619380876764095, + "slowbro": 2.674718377379853, + "magneton": 7.780783899151648, + "haunter": 5.656545310803375, + "kingler": 3.021411358831651, + "exeggutor": 2.6707922499484793, + "marowak": 3.3997520986999707, + "marowak-alola": 3.237348535995853, + "hitmonlee": 2.612714077338564, + "hitmonchan": 2.3073335945822633, + "lickitung": 1.7922609837974242, + "weezing": 2.4480109384251296, + "weezing-galar": 4.13467676194078, + "rhydon": 3.617636863519979, + "chansey": 23.982662048380462, + "tangela": 5.796607330916027, + "kangaskhan": 2.0020672814611427, + "seadra": 4.700824972820046, + "seaking": 2.5461587504795746, + "starmie": 1.957395648751274, + "mr-mime": 8.445541302753814, + "mr-mime-galar": 4.108380225557189, + "scyther": 2.973698650338852, + "jynx": 4.682362752458701, + "electabuzz": 4.013527083388716, + "magmar": 2.160058341108217, + "tauros": 2.359465120756915, + "ditto": 4.01267658880894, + "vaporeon": 2.9905283905681976, + "jolteon": 2.6768198916440467, + "flareon": 2.792469530567275, + "porygon": 2.9253814573143027, + "dragonair": 1.9254040474961074, + "noctowl": 5.32358055670934, + "lanturn": 2.4385437935833556, + "togetic": 5.538673877968791, + "xatu": 5.354739998438768, + "bellossom": 2.274273066799249, + "azumarill": 2.358748710641167, + "sudowoodo": 4.143820359917316, + "politoed": 2.605222331315618, + "quagsire": 4.899406502662442, + "slowking": 3.05673131857251, + "dunsparce": 3.1754417710747496, + "qwilfish": 5.229208176434759, + "sneasel": 2.040495439842719, + "piloswine": 1.6426468926711757, + "octillery": 2.4094420668785883, + "mantine": 2.151985218978556, + "skarmory": 2.511123471258362, + "hitmontop": 2.9157368764740745, + "miltank": 4.4269890662654605, + "grovyle": 7.476083776082351, + "sceptile": 1.351939211719212, + "combusken": 5.007289055037038, + "blaziken": 2.36798568552412, + "marshtomp": 2.4471528959962696, + "swampert": 1.1826657464853003, + "linoone": 5.739298159372431, + "linoone-galar": 4.122931595505767, + "pelipper": 7.643637475552817, + "ninjask": 8.527331194271767, + "exploud": 1.6396833347329383, + "lairon": 6.687554645879763, + "manectric": 2.749097991440762, + "roselia": 3.625843911650522, + "sharpedo": 4.898655425229602, + "wailmer": 6.499340566385588, + "torkoal": 2.998054395277519, + "flygon": 2.62432547149202, + "altaria": 1.640479477301449, + "whiscash": 1.9278303531841425, + "crawdaunt": 1.9513093467323697, + "claydol": 4.806874438560538, + "cradily": 2.30128996651473, + "armaldo": 2.195757851688372, + "dusclops": 4.664180446775436, + "absol": 1.9104764027010692, + "glalie": 4.094624853524573, + "sealeo": 2.911690318119197, + "relicanth": 2.8850531788512, + "metang": 4.804280441718808, + "luxray": 6.320912028857405, + "vespiquen": 3.1371300167920833, + "cherrim": 5.659095413644913, + "gastrodon": 2.3363630186440507, + "drifblim": 6.4588749123025515, + "lopunny": 4.270324865736119, + "skuntank": 2.0204660010964086, + "bronzong": 4.896046652256531, + "munchlax": 2.4217507917137633, + "drapion": 3.7029814553523472, + "abomasnow": 3.171014102169994, + "froslass": 3.66832156860983, + "rotom": 5.656206336877907, + "stoutland": 3.021257099388026, + "liepard": 7.001263569997098, + "musharna": 2.027228798528394, + "unfezant": 5.824923565186147, + "boldore": 5.657895999502413, + "swoobat": 7.681985722926434, + "audino": 2.730194773274128, + "gurdurr": 2.8895062491808745, + "palpitoad": 3.8999146716880477, + "seismitoad": 7.974185675962232, + "scolipede": 3.6047542962944115, + "whimsicott": 3.1784815493392977, + "lilligant": 2.9513760927927217, + "basculin-red-striped": 2.889738292840702, + "basculin-blue-striped": 3.5370384730352358, + "krookodile": 2.8081770141555924, + "maractus": 2.022588978504238, + "crustle": 2.6222415331882587, + "sigilyph": 3.2457281924275945, + "cofagrigus": 3.7349114666446193, + "garbodor": 2.813638922539854, + "cinccino": 5.094044616421929, + "vanillish": 2.0785008472107327, + "emolga": 3.823065889432658, + "escavalier": 1.9709310598366847, + "amoonguss": 2.6120498920591086, + "jellicent": 1.9307631305503943, + "galvantula": 1.9757115767347728, + "klang": 4.2967366372486655, + "klinklang": 5.488853986009665, + "beheeyem": 2.419386829438552, + "lampent": 3.813431472575656, + "fraxure": 1.8630907198062898, + "beartic": 1.604965054358649, + "cryogonal": 1.3452155741043943, + "accelgor": 3.3938418190627977, + "stunfisk": 1.6060684223210056, + "stunfisk-galar": 3.293869758803745, + "mienshao": 4.177794714637348, + "druddigon": 1.9456301149223, + "golurk": 2.7652843227298876, + "bisharp": 3.600035656541365, + "bouffalant": 1.4547288511048984, + "heatmor": 2.5638287715400034, + "durant": 3.990936306128029, + "diggersby": 3.5512046035677916, + "talonflame": 3.1247911227186926, + "pangoro": 1.892337515305842, + "doublade": 4.912732372419515, + "malamar": 3.0462673692961078, + "barbaracle": 2.005379566939362, + "heliolisk": 5.102626571165358, + "tyrantrum": 2.7356415038135617, + "aurorus": 3.0807444939771345, + "hawlucha": 4.072271443775826, + "dedenne": 4.1429409270582065, + "klefki": 4.546597693139805, + "trevenant": 4.32146700721399, + "gourgeist-average": 7.989027832408701, + "charjabug": 4.820631525226146, + "vikavolt": 2.21761852081176, + "ribombee": 5.033377948824851, + "lycanroc-midday": 4.911564015621285, + "lycanroc-midnight": 3.2925369505471407, + "mudsdale": 1.8048805651521713, + "araquanid": 2.4401624825333035, + "lurantis": 2.5305860948874592, + "shiinotic": 4.6818885469345695, + "salazzle": 6.520642306798049, + "bewear": 2.160568182425722, + "tsareena": 3.132947576881866, + "comfey": 4.232807592236223, + "oranguru": 2.6412035262511613, + "passimian": 2.9013542681559286, + "palossand": 3.0218743853202525, + "pyukumuku": 51.28215834715708, + "togedemaru": 5.014717990874402, + "mimikyu-disguised": 5.709646367103659, + "greedent": 2.499128566320141, + "orbeetle": 2.5766192662966656, + "thievul": 1.5987550421610537, + "eldegoss": 3.6115016585795647, + "dubwool": 3.4009690570683246, + "drednaw": 1.875107089447674, + "boltund": 6.744548434155385, + "carkol": 5.076043878451352, + "coalossal": 3.8617673615673285, + "sandaconda": 3.712204520964759, + "cramorant": 4.954657508937357, + "barraskewda": 4.796481211751047, + "toxtricity-amped": 6.996590063611469, + "centiskorch": 2.1890653874006807, + "grapploct": 1.8258090844871573, + "polteageist": 3.2136477628687627, + "hatterene": 3.576104849906949, + "grimmsnarl": 3.620392277053439, + "obstagoon": 2.8393089425066678, + "perrserker": 5.132832617235049, + "alcremie": 1.3842454508544333, + "falinks": 3.957796639827806, + "pincurchin": 4.221363446986786, + "frosmoth": 2.891104389615319, + "indeedee-male": 2.8804833982788702, + "morpeko": 3.8927480593292176, + "copperajah": 3.504506519483394, + "duraludon": 2.944886334817528, + "drakloak": 6.308374710941093 }, "pyukumuku": { - "ivysaur": 2.0901791549366493, - "charmeleon": 2.937240392132211, - "wartortle": 2.069007834822578, - "butterfree": 3.24230248390945, - "raichu": 3.3321533008081765, - "raichu-alola": 2.4161682072949473, - "sandslash": 1.570129090920797, - "sandslash-alola": 1.5816004180758465, - "nidoqueen": 1.9950720873949912, - "nidoking": 1.3237861537134556, - "clefairy": 6.320357878515933, - "clefable": 1.4890815001987843, - "jigglypuff": 18.585585583382077, - "wigglytuff": 1.429663924698445, - "gloom": 4.051219880979253, - "vileplume": 1.973034243642895, - "dugtrio": 2.6948005940052298, - "dugtrio-alola": 2.4921686857236596, - "persian": 3.1034814033201377, - "persian-alola": 3.1211432525925193, - "golduck": 2.3061297616756073, - "poliwrath": 1.3841516116426424, - "kadabra": 2.9158307668678405, - "machoke": 2.8008721983755684, - "tentacruel": 1.7583800734144959, - "slowbro": 1.3283947310709934, - "magneton": 2.156556107868619, - "haunter": 2.8360555587648157, - "kingler": 1.8310802421553911, - "exeggutor": 1.4016541647035758, - "marowak": 2.2779044982826253, - "marowak-alola": 1.471336265827559, - "hitmonlee": 1.7622184043233888, - "hitmonchan": 1.5515407469716291, - "lickitung": 1.4573168134690613, - "weezing": 1.158887361057861, - "weezing-galar": 1.868855468421972, - "rhydon": 1.8253295960724674, - "chansey": 18.05384500349853, - "tangela": 3.2513142547924057, - "kangaskhan": 1.3444856556607547, - "seadra": 3.094232554442276, - "seaking": 1.790867408158476, - "starmie": 1.0889112096838955, - "mr-mime": 4.862591635661998, - "mr-mime-galar": 2.9697425682646093, - "scyther": 1.9978147549688403, - "jynx": 3.4466288860710854, - "electabuzz": 1.6170222737452042, - "magmar": 1.301720772338379, - "tauros": 1.4648861322449922, - "ditto": 30.388306966395888, - "vaporeon": 2.337579370896799, - "jolteon": 1.2982176446999967, - "flareon": 1.8549485289779195, - "porygon": 2.0138039577830247, - "dragonair": 1.3375863532775394, - "noctowl": 4.1548495451731515, - "lanturn": 1.3046242212961698, - "togetic": 3.9333669072706683, - "xatu": 2.7928259581745762, - "bellossom": 1.6522147467113135, - "azumarill": 1.4698266943666152, - "sudowoodo": 1.9180229972793439, - "politoed": 1.8854983855818692, - "quagsire": 3.4696439477555208, - "slowking": 1.9033469174072672, - "dunsparce": 2.4210138280883333, - "qwilfish": 2.500591868642805, - "sneasel": 1.7976026355450383, - "piloswine": 1.225003651723172, - "octillery": 1.7640137294576155, - "mantine": 1.7844794238245218, - "skarmory": 1.3819467858453094, - "hitmontop": 1.9765968426434695, - "miltank": 2.5910178590676045, - "grovyle": 5.347140362730174, - "sceptile": 0.9806644353662758, - "combusken": 2.4537778685732388, - "blaziken": 1.2128689459984527, - "marshtomp": 1.8806681392152402, - "swampert": 0.9526511662159642, - "linoone": 3.754129688235482, - "linoone-galar": 3.560663862910718, - "pelipper": 4.351219952361116, - "ninjask": 5.503022865776413, - "exploud": 1.2272637304314529, - "lairon": 1.8756904048029015, - "manectric": 1.207854870041598, - "roselia": 2.6672431148948412, - "sharpedo": 3.726164774630888, - "wailmer": 4.888133546423209, - "torkoal": 1.4504900273914376, - "flygon": 1.7358970461974423, - "altaria": 1.205247045643478, - "whiscash": 1.5948208608696843, - "crawdaunt": 1.546743671671889, - "claydol": 2.465251115531898, - "cradily": 1.609116000364231, - "armaldo": 1.351952830824715, - "dusclops": 2.3165356940028032, - "absol": 1.4871077174092613, - "glalie": 3.2683891783674657, - "sealeo": 2.5359618807807953, - "relicanth": 1.4785455531023044, - "metang": 2.014193439377399, - "luxray": 2.4943122681693684, - "vespiquen": 2.0162981120174615, - "cherrim": 3.908649942961045, - "gastrodon": 1.5866926989140893, - "drifblim": 2.7631279914631097, - "lopunny": 2.6778362090698993, - "skuntank": 1.0206442622278311, - "bronzong": 2.1924013111979974, - "munchlax": 1.6154138938938296, - "drapion": 1.682304663577772, - "abomasnow": 2.3956708703739027, - "froslass": 2.150916440439235, - "rotom": 2.2445703161346318, - "stoutland": 1.7596862764894858, - "liepard": 5.079091067927238, - "musharna": 1.0895016931110943, - "unfezant": 4.4616986322256285, - "boldore": 2.4392027663401232, - "swoobat": 3.9768129272251733, - "audino": 1.6882337022813545, - "gurdurr": 1.5992157387717931, - "palpitoad": 2.7843487409533285, - "seismitoad": 4.559657350106919, - "scolipede": 2.295595152833661, - "whimsicott": 2.1867893898027946, - "lilligant": 2.0596812640448268, - "basculin-red-striped": 2.1211136130718806, - "basculin-blue-striped": 2.727822089327269, - "krookodile": 2.103690022134189, - "maractus": 1.4347448626276855, - "crustle": 1.4929819630992274, - "sigilyph": 1.7312858947064274, - "cofagrigus": 1.777090700416962, - "garbodor": 1.2967265694230974, - "cinccino": 3.407393105252048, - "vanillish": 1.741969195332707, - "emolga": 1.8783288443602582, - "escavalier": 1.2981740361957566, - "amoonguss": 1.7171578866418526, - "jellicent": 1.1015791643832902, - "galvantula": 1.0128662269907471, - "klang": 1.8751825540383007, - "klinklang": 2.433928436740045, - "beheeyem": 1.3309486125159253, - "lampent": 1.8720666601612796, - "fraxure": 1.0936177418043047, - "beartic": 1.4108006771647297, - "cryogonal": 1.4044906443696186, - "accelgor": 2.219981476087008, - "stunfisk": 0.9413902001131953, - "stunfisk-galar": 1.639294274617829, - "mienshao": 2.427686321112956, - "druddigon": 1.3224970541813699, - "golurk": 1.3074649625919545, - "bisharp": 1.7718757405251155, - "bouffalant": 0.9253867553137292, - "heatmor": 1.3680175606393092, - "durant": 2.0514690003634315, - "diggersby": 2.391283182063907, - "talonflame": 2.181981541683557, - "pangoro": 1.2910771465114106, - "doublade": 1.6026697270349364, - "malamar": 2.0152320012727625, - "barbaracle": 1.159066452427414, - "heliolisk": 2.4226843677269536, - "tyrantrum": 1.1560746484856343, - "aurorus": 1.9421734892983897, - "hawlucha": 2.5189096924435854, - "dedenne": 1.9617646430280133, - "klefki": 2.084236404665094, - "trevenant": 1.9354165212353562, - "gourgeist-average": 3.6756063029687533, - "charjabug": 2.6181278934642407, - "vikavolt": 1.2421422873000063, - "ribombee": 3.3227178886157156, - "lycanroc-midday": 2.510724849784681, - "lycanroc-midnight": 1.7738207386884857, - "mudsdale": 1.1436916221023954, - "araquanid": 1.6831650720162732, - "lurantis": 1.6700811036649164, - "shiinotic": 3.2421449444869435, - "salazzle": 2.36511714018392, - "bewear": 1.2978804555440142, - "tsareena": 2.1015625744758246, - "comfey": 2.9610410225894745, - "oranguru": 1.9722380660676242, - "passimian": 1.6692476101800329, - "palossand": 1.4137330184899235, - "togedemaru": 1.522519374064386, - "mimikyu-disguised": 2.6700681656240923, - "greedent": 1.5748777839299863, - "orbeetle": 1.3628756306315117, - "thievul": 1.4009145112011696, - "eldegoss": 2.619695474727787, - "dubwool": 2.1068243432908407, - "drednaw": 0.9976354280573394, - "boltund": 3.104721940679136, - "carkol": 1.8745025397652406, - "coalossal": 1.5704710037222362, - "sandaconda": 2.259518918587638, - "cramorant": 4.051700498253133, - "barraskewda": 3.3646225592175423, - "toxtricity-amped": 1.8207332699810133, - "centiskorch": 1.5324123718699187, - "grapploct": 1.2522121715761754, - "polteageist": 1.7439087069209744, - "hatterene": 1.7965474439157798, - "grimmsnarl": 2.7125962947183817, - "obstagoon": 1.8846061193357198, - "perrserker": 2.2292014967350307, - "alcremie": 1.0344214592675405, - "falinks": 2.285108550025766, - "pincurchin": 2.004145461693728, - "frosmoth": 2.053610983080364, - "indeedee-male": 2.400923939464101, - "morpeko": 1.848436427277555, - "copperajah": 1.7411082834380052, - "duraludon": 1.0268819428030551, - "drakloak": 3.0358995350109126, - "pyukumuku": 28.467257433169294 + "ivysaur": 2.080139125199796, + "charmeleon": 2.931572940394078, + "wartortle": 2.065437778541183, + "butterfree": 3.2292727896262754, + "raichu": 3.3172382157892955, + "raichu-alola": 2.4055623856612387, + "sandslash": 1.5654826434566136, + "sandslash-alola": 1.5782388098780156, + "nidoqueen": 1.9888835482397713, + "nidoking": 1.3199515579533543, + "clefairy": 6.299414455699775, + "clefable": 1.4847426414618643, + "jigglypuff": 18.52142444736828, + "wigglytuff": 1.4249685618440049, + "gloom": 4.037845170504952, + "vileplume": 1.9641362227561643, + "dugtrio": 2.6871658986021205, + "dugtrio-alola": 2.486107859930283, + "persian": 3.0929785036914828, + "persian-alola": 3.1112796535262284, + "golduck": 2.301168810210562, + "poliwrath": 1.3806899330648563, + "kadabra": 2.9062122389950686, + "machoke": 2.7928948918990093, + "tentacruel": 1.7547157527910795, + "slowbro": 1.3249240819734078, + "magneton": 2.1485451960162525, + "haunter": 2.8242723256844755, + "kingler": 1.8268887833257426, + "exeggutor": 1.3962253825662023, + "marowak": 2.272105864195522, + "marowak-alola": 1.4684457932852353, + "hitmonlee": 1.7578418542035061, + "hitmonchan": 1.5471317046547544, + "lickitung": 1.4526503241983708, + "weezing": 1.1556002524942421, + "weezing-galar": 1.8640038865318576, + "rhydon": 1.820774228549464, + "chansey": 17.979504543110636, + "tangela": 3.235093470197244, + "kangaskhan": 1.3403100171940285, + "seadra": 3.0861389931815535, + "seaking": 1.7864707458410178, + "starmie": 1.0860470022846305, + "mr-mime": 4.847074479263993, + "mr-mime-galar": 2.962048299200301, + "scyther": 1.9916931239213982, + "jynx": 3.4385557746120226, + "electabuzz": 1.6086311529050068, + "magmar": 1.2991155883061474, + "tauros": 1.4606391833546304, + "ditto": 30.070173076556962, + "vaporeon": 2.3322801424061868, + "jolteon": 1.2923405931030747, + "flareon": 1.8505130986531857, + "porygon": 2.0070800788719145, + "dragonair": 1.3327831147519023, + "noctowl": 4.14118682725695, + "lanturn": 1.3005079077068593, + "togetic": 3.925188284271643, + "xatu": 2.7842757995387295, + "bellossom": 1.645011586878232, + "azumarill": 1.4667970388444012, + "sudowoodo": 1.912921488203644, + "politoed": 1.8809056183828003, + "quagsire": 3.462108579995236, + "slowking": 1.899369297429872, + "dunsparce": 2.414887601319302, + "qwilfish": 2.494754564272821, + "sneasel": 1.793339658174366, + "piloswine": 1.2223796705643644, + "octillery": 1.7602265857510604, + "mantine": 1.7806487558598882, + "skarmory": 1.378384743647467, + "hitmontop": 1.9718798583696, + "miltank": 2.58261131570592, + "grovyle": 5.322713324535715, + "sceptile": 0.9760756638504335, + "combusken": 2.4480377725147244, + "blaziken": 1.2104974210522115, + "marshtomp": 1.877112251827483, + "swampert": 0.9507273888440192, + "linoone": 3.741805997884475, + "linoone-galar": 3.5499688881776406, + "pelipper": 4.3368867290865225, + "ninjask": 5.48541129265379, + "exploud": 1.2237846842099858, + "lairon": 1.8719144082167123, + "manectric": 1.2036242695323223, + "roselia": 2.655168284819169, + "sharpedo": 3.7159936155691202, + "wailmer": 4.877900834624432, + "torkoal": 1.4478604941903859, + "flygon": 1.730926596467716, + "altaria": 1.2019144121867646, + "whiscash": 1.5907827768770932, + "crawdaunt": 1.542680222452383, + "claydol": 2.457491524949355, + "cradily": 1.6028133223865524, + "armaldo": 1.3480773153981165, + "dusclops": 2.3094119616398014, + "absol": 1.483474177781793, + "glalie": 3.261806297907996, + "sealeo": 2.5321819014280407, + "relicanth": 1.47503552720389, + "metang": 2.0075799661379823, + "luxray": 2.4822561817555697, + "vespiquen": 2.010326849427049, + "cherrim": 3.8899718181766474, + "gastrodon": 1.5825601265705123, + "drifblim": 2.750486502655312, + "lopunny": 2.6696719802468643, + "skuntank": 1.0178028232601664, + "bronzong": 2.186692874950036, + "munchlax": 1.609863975000904, + "drapion": 1.6778295480544476, + "abomasnow": 2.3871758155766565, + "froslass": 2.1463972153234083, + "rotom": 2.2346000395046723, + "stoutland": 1.7536592577867267, + "liepard": 5.063718290240204, + "musharna": 1.085418651678492, + "unfezant": 4.4485413705598855, + "boldore": 2.4325832092414608, + "swoobat": 3.964377998476012, + "audino": 1.6837491916365084, + "gurdurr": 1.5946565365703558, + "palpitoad": 2.7773102714382536, + "seismitoad": 4.543257717687801, + "scolipede": 2.2888603105173457, + "whimsicott": 2.178763117560674, + "lilligant": 2.0503606386293813, + "basculin-red-striped": 2.1169743936496888, + "basculin-blue-striped": 2.722236970247486, + "krookodile": 2.0976918968490104, + "maractus": 1.4278658011620016, + "crustle": 1.488695936895319, + "sigilyph": 1.7266511886700415, + "cofagrigus": 1.77160376442508, + "garbodor": 1.292628207506699, + "cinccino": 3.3980067709907527, + "vanillish": 1.7385648613434626, + "emolga": 1.8693474364390912, + "escavalier": 1.2948999841503452, + "amoonguss": 1.7097351256856625, + "jellicent": 1.0991607837370743, + "galvantula": 1.0077956257450267, + "klang": 1.868578491833465, + "klinklang": 2.4283963085568576, + "beheeyem": 1.3269050431289866, + "lampent": 1.8688058369646545, + "fraxure": 1.0899452874023052, + "beartic": 1.408269749092034, + "cryogonal": 1.4011455727814912, + "accelgor": 2.2125737829010346, + "stunfisk": 0.937900966251668, + "stunfisk-galar": 1.6347910844217841, + "mienshao": 2.4203899230095236, + "druddigon": 1.3192447436351626, + "golurk": 1.3036111543863256, + "bisharp": 1.7667744196466562, + "bouffalant": 0.922952157680738, + "heatmor": 1.3649431982582243, + "durant": 2.0443873062794538, + "diggersby": 2.384463156987313, + "talonflame": 2.17750973625046, + "pangoro": 1.2876651972804158, + "doublade": 1.59891205750289, + "malamar": 2.007634939963663, + "barbaracle": 1.156238752162749, + "heliolisk": 2.4121016450747104, + "tyrantrum": 1.1526614573256806, + "aurorus": 1.9361905482443111, + "hawlucha": 2.5112465038845984, + "dedenne": 1.9532028874350171, + "klefki": 2.0791444805284236, + "trevenant": 1.9268480308221658, + "gourgeist-average": 3.666411624916913, + "charjabug": 2.6056307638973917, + "vikavolt": 1.2375947203713948, + "ribombee": 3.312269820774643, + "lycanroc-midday": 2.503814128364203, + "lycanroc-midnight": 1.7689577449392888, + "mudsdale": 1.1404383426726863, + "araquanid": 1.6789615038342434, + "lurantis": 1.6631772526217556, + "shiinotic": 3.232729977893004, + "salazzle": 2.3602867087742077, + "bewear": 1.2935179430929953, + "tsareena": 2.092404148838593, + "comfey": 2.9489735985532493, + "oranguru": 1.9660462666869445, + "passimian": 1.6645931485594276, + "palossand": 1.4094188358926107, + "pyukumuku": 28.467257433169294, + "togedemaru": 1.5172630192340297, + "mimikyu-disguised": 2.661201764225833, + "greedent": 1.570407928735725, + "orbeetle": 1.3585961124294048, + "thievul": 1.3975788480602236, + "eldegoss": 2.607160787560845, + "dubwool": 2.098931457895396, + "drednaw": 0.9954039149143705, + "boltund": 3.0910418157960993, + "carkol": 1.8709751653788693, + "coalossal": 1.5675708079820656, + "sandaconda": 2.25263281299219, + "cramorant": 4.0419773846216955, + "barraskewda": 3.35561154118809, + "toxtricity-amped": 1.8116072980199054, + "centiskorch": 1.528616207134887, + "grapploct": 1.2490196969591922, + "polteageist": 1.7368245257086574, + "hatterene": 1.7912888536802722, + "grimmsnarl": 2.704678665204512, + "obstagoon": 1.877874760783215, + "perrserker": 2.222415332192715, + "alcremie": 1.0312804543066556, + "falinks": 2.2790782554240367, + "pincurchin": 1.9961221278495207, + "frosmoth": 2.0469365131990878, + "indeedee-male": 2.394630747856512, + "morpeko": 1.840318498585257, + "copperajah": 1.7376386946680986, + "duraludon": 1.0232141412412665, + "drakloak": 3.02595881582008 }, "togedemaru": { - "ivysaur": 3.820257787122771, - "charmeleon": 3.250205904798972, - "wartortle": 2.8771818801981306, - "butterfree": 6.032959656147579, - "raichu": 4.497296284946969, - "raichu-alola": 3.5124826214908476, - "sandslash": 1.7063912417855815, - "sandslash-alola": 1.9224514042947347, - "nidoqueen": 2.4243595433403047, - "nidoking": 1.5055481304097063, - "clefairy": 13.053292900248904, - "clefable": 3.429338748082646, - "jigglypuff": 42.99583761858672, - "wigglytuff": 3.2040851738077274, - "gloom": 6.807674633843169, - "vileplume": 3.3386127040685443, - "dugtrio": 3.170472893936831, - "dugtrio-alola": 2.393812987393259, - "persian": 4.802580003801822, - "persian-alola": 4.332432894095435, - "golduck": 3.334500958559672, - "poliwrath": 1.8792995438741547, - "kadabra": 4.930507240697558, - "machoke": 3.611284246131718, - "tentacruel": 2.8967766033317535, - "slowbro": 1.8475358351447637, - "magneton": 2.6882434122593115, - "haunter": 5.043847226518808, - "kingler": 2.075309051440229, - "exeggutor": 1.8598943943329374, - "marowak": 2.394575762986733, - "marowak-alola": 1.6006799039309714, - "hitmonlee": 2.2179099948580214, - "hitmonchan": 2.140574412828009, - "lickitung": 2.0718967141657263, - "weezing": 1.4336044311877045, - "weezing-galar": 3.291734107570413, - "rhydon": 2.0241747247815565, - "chansey": 34.932796248953636, - "tangela": 4.818556191797251, - "kangaskhan": 1.7480577899640657, - "seadra": 4.442689028350315, - "seaking": 2.442159257776685, - "starmie": 1.6804824047367752, - "mr-mime": 11.74653915419374, - "mr-mime-galar": 5.680310359912426, - "scyther": 3.176005015623955, - "jynx": 7.5003545578279, - "electabuzz": 2.579239371758967, - "magmar": 1.4044796386968041, - "tauros": 1.6172568740126292, - "ditto": 2.286892716246159, - "vaporeon": 3.8240489654046064, - "jolteon": 1.8865841856796677, - "flareon": 1.963953397049444, - "porygon": 3.053006187224571, - "dragonair": 2.1177643431619644, - "noctowl": 8.010388585311443, - "lanturn": 1.734135850910023, - "togetic": 7.2787380451250865, - "xatu": 4.739906596373317, - "bellossom": 2.770374676967582, - "azumarill": 2.789581631890077, - "sudowoodo": 2.521232256333268, - "politoed": 2.4395450438114197, - "quagsire": 3.5860381895917457, - "slowking": 2.866351921512484, - "dunsparce": 3.546043173354615, - "qwilfish": 3.7860155759827423, - "sneasel": 3.105274849019834, - "piloswine": 2.0264808301724138, - "octillery": 2.718984244956585, - "mantine": 4.430952768443514, - "skarmory": 2.2697061379436394, - "hitmontop": 2.223820649049847, - "miltank": 3.7241176387358617, - "grovyle": 8.712832098403908, - "sceptile": 1.6912024564055999, - "combusken": 2.5612399808071693, - "blaziken": 1.2232625346673938, - "marshtomp": 1.8310812179801241, - "swampert": 0.9607950246469261, - "linoone": 5.521096699218075, - "linoone-galar": 4.631077877415821, - "pelipper": 9.395032492678174, - "ninjask": 8.312299068143343, - "exploud": 1.7703691805437207, - "lairon": 2.382420169054858, - "manectric": 1.5583463130675599, - "roselia": 4.817348150249993, - "sharpedo": 5.34840150496592, - "wailmer": 7.4559948569877665, - "torkoal": 1.3092879441859526, - "flygon": 2.4079450291602247, - "altaria": 1.6107976954647092, - "whiscash": 1.8013129563698937, - "crawdaunt": 2.039433321745846, - "claydol": 3.781065841886266, - "cradily": 3.4765430065014638, - "armaldo": 2.1365513598813024, - "dusclops": 3.5013771865594956, - "absol": 2.0340759178033823, - "glalie": 5.752086550841188, - "sealeo": 3.5984000418780653, - "relicanth": 1.9767204835348462, - "metang": 2.7804589918213862, - "luxray": 3.603239486805869, - "vespiquen": 3.0698440606311705, - "cherrim": 6.832410983468092, - "gastrodon": 1.9226558646245153, - "drifblim": 5.42586892162388, - "lopunny": 3.798918898133934, - "skuntank": 1.3883861903021915, - "bronzong": 3.069664056822657, - "munchlax": 2.6307809842831498, - "drapion": 2.437232450345574, - "abomasnow": 4.558887662002432, - "froslass": 4.220129111649969, - "rotom": 3.1674557288861247, - "stoutland": 2.6694369369915947, - "liepard": 7.293502719871439, - "musharna": 1.7410089806987736, - "unfezant": 7.463660491879647, - "boldore": 2.9914010163332216, - "swoobat": 6.787047199091418, - "audino": 2.400949525882271, - "gurdurr": 1.576255911523426, - "palpitoad": 2.7403443585998337, - "seismitoad": 6.4275583936958345, - "scolipede": 3.278182614153451, - "whimsicott": 4.840208381917524, - "lilligant": 3.526170997634476, - "basculin-red-striped": 2.9941018449233128, - "basculin-blue-striped": 3.751986082198897, - "krookodile": 2.3175394475587767, - "maractus": 2.509176964080109, - "crustle": 2.463055074116836, - "sigilyph": 2.902858352392925, - "cofagrigus": 2.608782889362998, - "garbodor": 2.0200964823828125, - "cinccino": 5.077974160801448, - "vanillish": 3.2725418584360195, - "emolga": 3.08282725155715, - "escavalier": 1.3261363135076627, - "amoonguss": 3.095752111295396, - "jellicent": 1.964056105463723, - "galvantula": 1.5080062915262604, - "klang": 2.7002746535882256, - "klinklang": 3.2039736844069573, - "beheeyem": 2.0371586051704877, - "lampent": 1.8313668744096254, - "fraxure": 1.6432608136334208, - "beartic": 2.3625865804909143, - "cryogonal": 3.0784062206807024, - "accelgor": 3.7220940398737072, - "stunfisk": 0.9863441400020125, - "stunfisk-galar": 1.5194020359866767, - "mienshao": 3.376714081006868, - "druddigon": 1.7340248549182955, - "golurk": 1.5647555590038593, - "bisharp": 2.1963620460202047, - "bouffalant": 1.2935509914573553, - "heatmor": 1.520374171598499, - "durant": 2.766569267839004, - "diggersby": 2.4636821496938768, - "talonflame": 3.129693327043037, - "pangoro": 1.610419570865708, - "doublade": 2.0290996694562913, - "malamar": 2.9214465006046906, - "barbaracle": 1.6329789298324353, - "heliolisk": 3.24523368020063, - "tyrantrum": 1.8183138511454253, - "aurorus": 5.038973648072954, - "hawlucha": 3.5876909001571846, - "dedenne": 3.6308286083652686, - "klefki": 3.524709125697622, - "trevenant": 2.998300527287248, - "gourgeist-average": 4.47649609646032, - "charjabug": 2.9788561292429017, - "vikavolt": 1.5572140008266266, - "ribombee": 7.283035104494614, - "lycanroc-midday": 4.797239254579926, - "lycanroc-midnight": 3.032778709239004, - "mudsdale": 1.2346070067494928, - "araquanid": 2.853471073814572, - "lurantis": 2.7680756059927076, - "shiinotic": 7.319433929299386, - "salazzle": 2.742421704191764, - "bewear": 1.8315572114128744, - "tsareena": 3.596052413444948, - "comfey": 7.133871760929608, - "oranguru": 3.1291674384648474, - "passimian": 2.1253089637200517, - "palossand": 1.6057392311280962, - "pyukumuku": 51.04836382201976, - "mimikyu-disguised": 6.273833935021393, - "greedent": 2.3040589364801765, - "orbeetle": 2.06148442120589, - "thievul": 1.8078410827168474, - "eldegoss": 4.711987696031883, - "dubwool": 2.891314741649907, - "drednaw": 1.423895204318982, - "boltund": 4.185755103666223, - "carkol": 2.2476635279054675, - "coalossal": 1.8126261013458618, - "sandaconda": 2.5237804974333224, - "cramorant": 8.677245412833269, - "barraskewda": 4.844950442350521, - "toxtricity-amped": 2.532613593655296, - "centiskorch": 1.6969496729076283, - "grapploct": 1.513307468651677, - "polteageist": 3.2179491345435878, - "hatterene": 3.837758686457043, - "grimmsnarl": 5.164424572932024, - "obstagoon": 2.5777512245023075, - "perrserker": 2.8486304386425747, - "alcremie": 2.369097876688544, - "falinks": 2.838794353307729, - "pincurchin": 2.64849474170016, - "frosmoth": 4.207175554146595, - "indeedee-male": 3.4397584384474156, - "morpeko": 2.527248717355514, - "copperajah": 2.1670505970535183, - "duraludon": 1.313064798005136, - "drakloak": 4.743386356248044, - "togedemaru": 1.9759639709036778 + "ivysaur": 3.8300170365361703, + "charmeleon": 3.242523987493416, + "wartortle": 2.8772495864707164, + "butterfree": 6.051488103594245, + "raichu": 4.488591618762809, + "raichu-alola": 3.5153691465886467, + "sandslash": 1.6984973944998845, + "sandslash-alola": 1.9194290905797735, + "nidoqueen": 2.4143053607493985, + "nidoking": 1.4978296332893377, + "clefairy": 13.070872216489864, + "clefable": 3.4432362197984343, + "jigglypuff": 43.164051903843664, + "wigglytuff": 3.2158789853749283, + "gloom": 6.826616529915192, + "vileplume": 3.3441089406811524, + "dugtrio": 3.148625311026149, + "dugtrio-alola": 2.3793867967643423, + "persian": 4.809501366675196, + "persian-alola": 4.332328518367278, + "golduck": 3.3356796936056403, + "poliwrath": 1.877107960622206, + "kadabra": 4.940761103803361, + "machoke": 3.606771396759986, + "tentacruel": 2.9002630464689014, + "slowbro": 1.8476192967639755, + "magneton": 2.6871380017449313, + "haunter": 5.049171485353926, + "kingler": 2.067391619941478, + "exeggutor": 1.8571946703081705, + "marowak": 2.3817561165266077, + "marowak-alola": 1.5967767653893765, + "hitmonlee": 2.211626586344297, + "hitmonchan": 2.1387928502102054, + "lickitung": 2.0745172388542, + "weezing": 1.4341194502383943, + "weezing-galar": 3.296214167601138, + "rhydon": 2.014167451276212, + "chansey": 35.01811144509816, + "tangela": 4.8216293676044994, + "kangaskhan": 1.7454500095642427, + "seadra": 4.445032152650017, + "seaking": 2.4382557278999446, + "starmie": 1.6837383162703532, + "mr-mime": 11.794644591340113, + "mr-mime-galar": 5.694942708516938, + "scyther": 3.182148875761756, + "jynx": 7.523602214732349, + "electabuzz": 2.5816843007058585, + "magmar": 1.4019767916730328, + "tauros": 1.611271892031581, + "ditto": 2.2719657577295487, + "vaporeon": 3.828325170462358, + "jolteon": 1.8858173162396392, + "flareon": 1.9614051260376268, + "porygon": 3.0563848543787677, + "dragonair": 2.120767231090082, + "noctowl": 8.0381153727874, + "lanturn": 1.730785667972897, + "togetic": 7.291042660768007, + "xatu": 4.754355370682091, + "bellossom": 2.776669952915765, + "azumarill": 2.7996152031856596, + "sudowoodo": 2.513359674397668, + "politoed": 2.432882968229195, + "quagsire": 3.57330409070857, + "slowking": 2.869146829923147, + "dunsparce": 3.551339015322886, + "qwilfish": 3.790878444730384, + "sneasel": 3.1076193009089366, + "piloswine": 2.02520835327648, + "octillery": 2.723754634865264, + "mantine": 4.443161223963694, + "skarmory": 2.2735901849954354, + "hitmontop": 2.2156055220270807, + "miltank": 3.7281545699755676, + "grovyle": 8.717920965132194, + "sceptile": 1.69535694185002, + "combusken": 2.5520913676133623, + "blaziken": 1.2185765442729823, + "marshtomp": 1.8226334696725917, + "swampert": 0.9555065659154729, + "linoone": 5.524775051631675, + "linoone-galar": 4.627882792219097, + "pelipper": 9.42609695521435, + "ninjask": 8.31603429534917, + "exploud": 1.7710379595789982, + "lairon": 2.384151782830383, + "manectric": 1.555171131908574, + "roselia": 4.826851141957145, + "sharpedo": 5.348047061449825, + "wailmer": 7.467139281327321, + "torkoal": 1.3055095127220973, + "flygon": 2.4045039221667737, + "altaria": 1.6114342879764518, + "whiscash": 1.7994029429759033, + "crawdaunt": 2.0391791435537017, + "claydol": 3.7831549706102816, + "cradily": 3.4873392120143656, + "armaldo": 2.1332121192369815, + "dusclops": 3.502132183071149, + "absol": 2.033342931585103, + "glalie": 5.761640578160568, + "sealeo": 3.602475757182118, + "relicanth": 1.9775217538998637, + "metang": 2.781820267101195, + "luxray": 3.6050283655172657, + "vespiquen": 3.0734941352333003, + "cherrim": 6.847304782982913, + "gastrodon": 1.920050634814673, + "drifblim": 5.439564163729377, + "lopunny": 3.79895475774834, + "skuntank": 1.3878611471023148, + "bronzong": 3.072024502818124, + "munchlax": 2.63362393902524, + "drapion": 2.4389690516108224, + "abomasnow": 4.56987961432629, + "froslass": 4.228210384596566, + "rotom": 3.1665916017562115, + "stoutland": 2.672702005968377, + "liepard": 7.296733806858398, + "musharna": 1.744126334033849, + "unfezant": 7.490280984963773, + "boldore": 2.981075182148194, + "swoobat": 6.807757118903676, + "audino": 2.400285038640062, + "gurdurr": 1.567979361393661, + "palpitoad": 2.7267245427068287, + "seismitoad": 6.4338405513340255, + "scolipede": 3.279720618190339, + "whimsicott": 4.861700090154903, + "lilligant": 3.5340287465923956, + "basculin-red-striped": 2.9951904381819743, + "basculin-blue-striped": 3.751039728358908, + "krookodile": 2.3062477329876865, + "maractus": 2.514342307504385, + "crustle": 2.4635165862601105, + "sigilyph": 2.912196039845277, + "cofagrigus": 2.6098340992376725, + "garbodor": 2.022828913100489, + "cinccino": 5.085454183743739, + "vanillish": 3.281027742632892, + "emolga": 3.0886686833875867, + "escavalier": 1.319615046835358, + "amoonguss": 3.105183490225747, + "jellicent": 1.9674427376842, + "galvantula": 1.5091785640872024, + "klang": 2.7027368319299576, + "klinklang": 3.206328864636826, + "beheeyem": 2.0400160233428437, + "lampent": 1.826729994295493, + "fraxure": 1.6446655173876719, + "beartic": 2.3637631292023755, + "cryogonal": 3.0886420020375582, + "accelgor": 3.7311803277372526, + "stunfisk": 0.9811654977276097, + "stunfisk-galar": 1.5094846614826227, + "mienshao": 3.3758289713605025, + "druddigon": 1.7314750419234817, + "golurk": 1.5574755185876161, + "bisharp": 2.1951239007512626, + "bouffalant": 1.2934184591188649, + "heatmor": 1.5164940177651167, + "durant": 2.7669620360412193, + "diggersby": 2.44850271435302, + "talonflame": 3.1312011892585785, + "pangoro": 1.6077826267941773, + "doublade": 2.0271432049149185, + "malamar": 2.9226326757394787, + "barbaracle": 1.634524774276318, + "heliolisk": 3.241819353262131, + "tyrantrum": 1.8174371330707328, + "aurorus": 5.054366743988669, + "hawlucha": 3.5868419422573865, + "dedenne": 3.641396951168475, + "klefki": 3.53243147219699, + "trevenant": 2.9965520688658756, + "gourgeist-average": 4.466896224340461, + "charjabug": 2.9663383866365236, + "vikavolt": 1.555679875439302, + "ribombee": 7.31029839925222, + "lycanroc-midday": 4.808066216207631, + "lycanroc-midnight": 3.0328208331566833, + "mudsdale": 1.2279475693180086, + "araquanid": 2.8588197326985867, + "lurantis": 2.7736368155612117, + "shiinotic": 7.352312595314807, + "salazzle": 2.7357480589086833, + "bewear": 1.8324305680570772, + "tsareena": 3.6048439728614734, + "comfey": 7.163287508584142, + "oranguru": 3.134998523792065, + "passimian": 2.1232986588597824, + "palossand": 1.5977791210541872, + "pyukumuku": 51.088312867418445, + "togedemaru": 1.9759639709036778, + "mimikyu-disguised": 6.285329133027151, + "greedent": 2.3075798566289523, + "orbeetle": 2.0647849239590963, + "thievul": 1.8061867643947815, + "eldegoss": 4.723594529955737, + "dubwool": 2.889311679133314, + "drednaw": 1.4251663228980798, + "boltund": 4.183898085247877, + "carkol": 2.2420607182130223, + "coalossal": 1.8093945554730697, + "sandaconda": 2.512801475153021, + "cramorant": 8.684005646885119, + "barraskewda": 4.845291596848932, + "toxtricity-amped": 2.5323528575751344, + "centiskorch": 1.6919771357513964, + "grapploct": 1.5089666711615553, + "polteageist": 3.2237208604462895, + "hatterene": 3.8516531163698016, + "grimmsnarl": 5.168396856458959, + "obstagoon": 2.5777927353542616, + "perrserker": 2.8475273110424855, + "alcremie": 2.375239033921133, + "falinks": 2.835779120178405, + "pincurchin": 2.648162030124947, + "frosmoth": 4.219357010513905, + "indeedee-male": 3.439576482048798, + "morpeko": 2.5273889106270326, + "copperajah": 2.1652939209811715, + "duraludon": 1.3128927394908532, + "drakloak": 4.7430721859263585 }, "mimikyu-disguised": { - "ivysaur": 3.2656267388374447, - "charmeleon": 4.143080322323429, - "wartortle": 2.802965157237926, - "butterfree": 5.0938573450258335, - "raichu": 5.761421221642187, - "raichu-alola": 5.124098860611525, - "sandslash": 2.0429341760808466, - "sandslash-alola": 1.8686236738093136, - "nidoqueen": 2.6346013984502274, - "nidoking": 1.7600242759018692, - "clefairy": 9.601877755250868, - "clefable": 2.140132601158103, - "jigglypuff": 24.821276090362232, - "wigglytuff": 1.8850007521115486, - "gloom": 5.69581895263498, - "vileplume": 3.122324145975112, - "dugtrio": 3.693399670920512, - "dugtrio-alola": 3.1502581226263815, - "persian": 4.404594340426835, - "persian-alola": 3.8810979559054455, - "golduck": 3.2006757770557055, - "poliwrath": 2.03804975641789, - "kadabra": 5.952284637456405, - "machoke": 3.9597201747992754, - "tentacruel": 2.5333403902629117, - "slowbro": 2.1269131758892614, - "magneton": 2.770852571090501, - "haunter": 5.984653669193399, - "kingler": 2.2744266014057155, - "exeggutor": 2.4024569550989177, - "marowak": 2.681169041156136, - "marowak-alola": 2.2247330147339657, - "hitmonlee": 2.9180236915992372, - "hitmonchan": 2.237022077297779, - "lickitung": 1.7700067119149252, - "weezing": 1.4603110748001495, - "weezing-galar": 2.4151359016958613, - "rhydon": 1.9027892944594207, - "chansey": 31.426856420398543, - "tangela": 4.349368511168228, - "kangaskhan": 1.8174769801332529, - "seadra": 4.189820099219534, - "seaking": 2.4046629035211984, - "starmie": 1.8506942730083737, - "mr-mime": 10.051959225795478, - "mr-mime-galar": 4.867155377663268, - "scyther": 2.7666091130658774, - "jynx": 6.72132007848165, - "electabuzz": 2.789916836373581, - "magmar": 1.81188116083917, - "tauros": 1.8926365989828233, - "ditto": 5.674928495790377, - "vaporeon": 3.6122460311216287, - "jolteon": 2.1550377509226064, - "flareon": 2.5512793903518833, - "porygon": 2.6310687928768037, - "dragonair": 2.1031636856172087, - "noctowl": 5.879942229319623, - "lanturn": 2.007425338696473, - "togetic": 5.382614177320022, - "xatu": 4.9375038729319, - "bellossom": 2.3507714329431146, - "azumarill": 2.1521797297814693, - "sudowoodo": 2.4074871663218307, - "politoed": 2.7130559273233814, - "quagsire": 4.7472738947901405, - "slowking": 3.2886927327435984, - "dunsparce": 2.841675695419224, - "qwilfish": 2.991499577959347, - "sneasel": 2.0568990257717688, - "piloswine": 1.5490180565431864, - "octillery": 2.306921236727338, - "mantine": 2.668566726337357, - "skarmory": 1.7056980816745053, - "hitmontop": 2.825447791701446, - "miltank": 3.3831449214572213, - "grovyle": 8.68134003704609, - "sceptile": 1.547665417109779, - "combusken": 3.675223657486295, - "blaziken": 1.6964086831038543, - "marshtomp": 2.406955679044807, - "swampert": 1.2572137178810512, - "linoone": 4.780150791229451, - "linoone-galar": 4.158583358431881, - "pelipper": 6.258419004354057, - "ninjask": 8.32798512539813, - "exploud": 1.6297418340480143, - "lairon": 1.8584129734480062, - "manectric": 1.874678005030078, - "roselia": 4.385359444193678, - "sharpedo": 4.579911339123889, - "wailmer": 6.220087056783014, - "torkoal": 1.7456576581111745, - "flygon": 2.460330609034102, - "altaria": 1.7007464380717434, - "whiscash": 2.0249951918223426, - "crawdaunt": 1.7652653563982632, - "claydol": 4.572440569042385, - "cradily": 2.2841345820663133, - "armaldo": 1.8349335496186145, - "dusclops": 4.0887857352671615, - "absol": 1.8036831585008208, - "glalie": 3.8490380501541552, - "sealeo": 3.144576861187425, - "relicanth": 1.7387190676954578, - "metang": 3.273214310016325, - "luxray": 4.104804780919077, - "vespiquen": 2.8925405415964387, - "cherrim": 6.1965149650808335, - "gastrodon": 2.2908144014792358, - "drifblim": 5.887770695522915, - "lopunny": 3.776237904719432, - "skuntank": 1.253530627993075, - "bronzong": 3.8399728474580073, - "munchlax": 2.2333799931260394, - "drapion": 1.9430065280354418, - "abomasnow": 3.214142507367472, - "froslass": 3.559135787021197, - "rotom": 4.759724488032743, - "stoutland": 2.6388880197403735, - "liepard": 6.066763394374754, - "musharna": 2.009963455846382, - "unfezant": 5.245943536087855, - "boldore": 2.944644822320236, - "swoobat": 7.076396584202502, - "audino": 2.401448389747317, - "gurdurr": 2.3013063067773363, - "palpitoad": 3.855623886471962, - "seismitoad": 6.833282100377938, - "scolipede": 3.0888139572728917, - "whimsicott": 3.0335984390502118, - "lilligant": 3.1643316090019002, - "basculin-red-striped": 2.6347123661593073, - "basculin-blue-striped": 3.4738075718912933, - "krookodile": 2.468322805961586, - "maractus": 2.186785632510601, - "crustle": 2.0620118204967346, - "sigilyph": 2.885593752290335, - "cofagrigus": 2.9601878874115135, - "garbodor": 1.8643871489613666, - "cinccino": 4.531316515924685, - "vanillish": 2.3487060726829685, - "emolga": 3.0121327785462144, - "escavalier": 1.8289557154218303, - "amoonguss": 2.565335211345011, - "jellicent": 2.3165000267376197, - "galvantula": 1.6267101008120664, - "klang": 2.5661735358643045, - "klinklang": 2.9258772722391067, - "beheeyem": 2.517764869060905, - "lampent": 3.4799488865535997, - "fraxure": 1.781174021944093, - "beartic": 1.7800899236753944, - "cryogonal": 1.9489727265283232, - "accelgor": 3.6740260532484794, - "stunfisk": 1.3136732576482761, - "stunfisk-galar": 2.2571173085791525, - "mienshao": 3.753208687915026, - "druddigon": 1.6630453080818934, - "golurk": 2.3708454610223257, - "bisharp": 1.8914029509206518, - "bouffalant": 1.1939962312484602, - "heatmor": 1.8781265633787239, - "durant": 2.557415567491226, - "diggersby": 2.9017524662708976, - "talonflame": 2.765685982602187, - "pangoro": 1.5718092203741738, - "doublade": 2.3084573788933236, - "malamar": 2.7133710627104684, - "barbaracle": 1.4406520534255414, - "heliolisk": 3.6639566084100617, - "tyrantrum": 1.607696626229978, - "aurorus": 2.4402386131583818, - "hawlucha": 3.5202816747489836, - "dedenne": 2.9998892276293416, - "klefki": 2.7757264907597183, - "trevenant": 4.159421619413919, - "gourgeist-average": 5.468450730128084, - "charjabug": 3.753253284396669, - "vikavolt": 1.873344917007839, - "ribombee": 5.109231591086987, - "lycanroc-midday": 3.300167100151425, - "lycanroc-midnight": 2.3651378015146527, - "mudsdale": 1.6192047640546603, - "araquanid": 2.5072144860193037, - "lurantis": 2.5993633082847802, - "shiinotic": 4.740349218753717, - "salazzle": 3.1391748384345286, - "bewear": 1.7942891045504648, - "tsareena": 2.9623293955097303, - "comfey": 4.595596975633901, - "oranguru": 2.457998945717043, - "passimian": 2.299514014115855, - "palossand": 2.357877612784157, - "pyukumuku": 43.59771249562046, - "togedemaru": 2.0927881811733005, - "greedent": 1.8573844149009195, - "orbeetle": 2.5260311484366813, - "thievul": 1.7013879085441617, - "eldegoss": 4.193270901413248, - "dubwool": 2.958796466294154, - "drednaw": 1.1687993499114597, - "boltund": 4.607267297905757, - "carkol": 2.2499057753032834, - "coalossal": 1.8854247986661838, - "sandaconda": 3.143585793918012, - "cramorant": 5.643518528889033, - "barraskewda": 4.602222758116543, - "toxtricity-amped": 3.14804588175803, - "centiskorch": 2.2128200935410756, - "grapploct": 1.798986742018923, - "polteageist": 3.9736527516691553, - "hatterene": 3.2835166522671475, - "grimmsnarl": 3.6575895813644603, - "obstagoon": 2.3541120526859896, - "perrserker": 2.6848912098029647, - "alcremie": 1.5555451253409176, - "falinks": 2.9927912259501914, - "pincurchin": 2.9007964441521743, - "frosmoth": 3.142569227134021, - "indeedee-male": 2.8970695222517584, - "morpeko": 2.4002942195464545, - "copperajah": 2.163738070370909, - "duraludon": 1.425535824451381, - "drakloak": 6.092625928775308, - "mimikyu-disguised": 5.341972036656503 + "ivysaur": 3.2647019690376484, + "charmeleon": 4.14610865884523, + "wartortle": 2.803770863959235, + "butterfree": 5.098019315329681, + "raichu": 5.7699966614448535, + "raichu-alola": 5.13155421323428, + "sandslash": 2.042165941387099, + "sandslash-alola": 1.8668249183030563, + "nidoqueen": 2.6310900157114636, + "nidoking": 1.7582022402479267, + "clefairy": 9.604140876376434, + "clefable": 2.140332841026719, + "jigglypuff": 24.7848943993187, + "wigglytuff": 1.883297197791674, + "gloom": 5.69261216920242, + "vileplume": 3.1242967448137904, + "dugtrio": 3.691296706175801, + "dugtrio-alola": 3.142385601948061, + "persian": 4.406677472212804, + "persian-alola": 3.876914473374266, + "golduck": 3.2017456102993824, + "poliwrath": 2.0408071800903977, + "kadabra": 5.961059084368406, + "machoke": 3.9616223268588793, + "tentacruel": 2.533315553744411, + "slowbro": 2.127111625988231, + "magneton": 2.7635554999823655, + "haunter": 5.98079688928539, + "kingler": 2.2730117628319975, + "exeggutor": 2.403203868897376, + "marowak": 2.674637358013499, + "marowak-alola": 2.219597599673991, + "hitmonlee": 2.92595915850545, + "hitmonchan": 2.2372889344237286, + "lickitung": 1.768103310712418, + "weezing": 1.4588605548280937, + "weezing-galar": 2.413322195932021, + "rhydon": 1.8961384651720152, + "chansey": 31.494120709876427, + "tangela": 4.342880626580497, + "kangaskhan": 1.8172362222703002, + "seadra": 4.192528899751933, + "seaking": 2.402374571630178, + "starmie": 1.8515637278718446, + "mr-mime": 10.063893008438676, + "mr-mime-galar": 4.86924190310756, + "scyther": 2.76643564042916, + "jynx": 6.733787885250446, + "electabuzz": 2.791560432547385, + "magmar": 1.8128081575344273, + "tauros": 1.8917247315938819, + "ditto": 5.663336027495161, + "vaporeon": 3.6168972519426843, + "jolteon": 2.1544376669471355, + "flareon": 2.550060660521818, + "porygon": 2.6279185774218434, + "dragonair": 2.1067858063866343, + "noctowl": 5.877525033381884, + "lanturn": 2.00785087234296, + "togetic": 5.381422988814699, + "xatu": 4.9404121199179745, + "bellossom": 2.3497323434728266, + "azumarill": 2.151748963334947, + "sudowoodo": 2.405259467845343, + "politoed": 2.7139715544029084, + "quagsire": 4.750287587285998, + "slowking": 3.2897434939074195, + "dunsparce": 2.8349449116124026, + "qwilfish": 2.9849779769550397, + "sneasel": 2.0525684141241225, + "piloswine": 1.549039062216917, + "octillery": 2.304996261075988, + "mantine": 2.6695263628642505, + "skarmory": 1.7019961055704729, + "hitmontop": 2.827579779394462, + "miltank": 3.3815214404648484, + "grovyle": 8.688922884408898, + "sceptile": 1.5484395572370406, + "combusken": 3.6821104986749926, + "blaziken": 1.6977976683196083, + "marshtomp": 2.404706080971768, + "swampert": 1.2569841161273625, + "linoone": 4.772559963558901, + "linoone-galar": 4.148308473403878, + "pelipper": 6.262807941004791, + "ninjask": 8.34022621376833, + "exploud": 1.6310602828116905, + "lairon": 1.849986904981428, + "manectric": 1.8750969607574794, + "roselia": 4.3877509600123785, + "sharpedo": 4.575053520263918, + "wailmer": 6.211432919050625, + "torkoal": 1.7452534214614166, + "flygon": 2.4609443919268794, + "altaria": 1.7027831979175438, + "whiscash": 2.023167826385972, + "crawdaunt": 1.7631966295966444, + "claydol": 4.5792548959986465, + "cradily": 2.2821949004869566, + "armaldo": 1.8341067823437438, + "dusclops": 4.082604454415551, + "absol": 1.8023905022125004, + "glalie": 3.8412101807091172, + "sealeo": 3.142191110381334, + "relicanth": 1.7358857831841596, + "metang": 3.2671108692198687, + "luxray": 4.108739716666517, + "vespiquen": 2.89493002178295, + "cherrim": 6.19972002853253, + "gastrodon": 2.2919476911253236, + "drifblim": 5.889706396603957, + "lopunny": 3.778850346074908, + "skuntank": 1.2516898176315725, + "bronzong": 3.835338290128165, + "munchlax": 2.230996223063128, + "drapion": 1.938699087488182, + "abomasnow": 3.2114221035253108, + "froslass": 3.5555225763665637, + "rotom": 4.756004796295796, + "stoutland": 2.643729266394145, + "liepard": 6.0551888565286305, + "musharna": 2.0109082015919517, + "unfezant": 5.232645443553759, + "boldore": 2.940801907534202, + "swoobat": 7.080620386214168, + "audino": 2.400456791521311, + "gurdurr": 2.304814087288884, + "palpitoad": 3.8555939983804906, + "seismitoad": 6.837251427763132, + "scolipede": 3.0872972375956915, + "whimsicott": 3.0312732166405416, + "lilligant": 3.1653149839723, + "basculin-red-striped": 2.6309718408035647, + "basculin-blue-striped": 3.470257949281909, + "krookodile": 2.4641712399405105, + "maractus": 2.185859586578064, + "crustle": 2.062854447156564, + "sigilyph": 2.885031984835094, + "cofagrigus": 2.9555106564597553, + "garbodor": 1.864345885444907, + "cinccino": 4.530669772426713, + "vanillish": 2.348925263828325, + "emolga": 3.010924379596494, + "escavalier": 1.8282185648755176, + "amoonguss": 2.564064308400936, + "jellicent": 2.3182984211968147, + "galvantula": 1.6271811993124219, + "klang": 2.5616798136258536, + "klinklang": 2.9181324291298134, + "beheeyem": 2.5212345675278325, + "lampent": 3.48369920563501, + "fraxure": 1.786371204742883, + "beartic": 1.7803308451648914, + "cryogonal": 1.949222445849186, + "accelgor": 3.681013036240869, + "stunfisk": 1.3132955992757656, + "stunfisk-galar": 2.255951859044929, + "mienshao": 3.7604654059164977, + "druddigon": 1.6598940990518276, + "golurk": 2.370394984659222, + "bisharp": 1.8860176707464487, + "bouffalant": 1.192803074884809, + "heatmor": 1.877737685120513, + "durant": 2.551786365742253, + "diggersby": 2.896432804611184, + "talonflame": 2.762151926925455, + "pangoro": 1.5704470342369423, + "doublade": 2.3046269625790425, + "malamar": 2.710268279968881, + "barbaracle": 1.4393410797231452, + "heliolisk": 3.663014214368003, + "tyrantrum": 1.6091988743943237, + "aurorus": 2.4365753141252378, + "hawlucha": 3.5207477632289783, + "dedenne": 2.999865152549238, + "klefki": 2.7699647426955565, + "trevenant": 4.164303835580635, + "gourgeist-average": 5.456089859966277, + "charjabug": 3.748585480495444, + "vikavolt": 1.874328761752361, + "ribombee": 5.1154536220998645, + "lycanroc-midday": 3.296991550265548, + "lycanroc-midnight": 2.363619435407024, + "mudsdale": 1.6203228526210876, + "araquanid": 2.5083424272841905, + "lurantis": 2.6020897006438393, + "shiinotic": 4.742952812686639, + "salazzle": 3.137111400901382, + "bewear": 1.7954270176950182, + "tsareena": 2.9587784746769064, + "comfey": 4.596110869911229, + "oranguru": 2.452609404491783, + "passimian": 2.3005707460926006, + "palossand": 2.356249973185419, + "pyukumuku": 43.60525028283722, + "togedemaru": 2.086418186761835, + "mimikyu-disguised": 5.341972036656503, + "greedent": 1.8530216733628624, + "orbeetle": 2.5287186864120903, + "thievul": 1.699064966300077, + "eldegoss": 4.195255387839262, + "dubwool": 2.9597721138854, + "drednaw": 1.1661144431551922, + "boltund": 4.6039144902811024, + "carkol": 2.2469820409250723, + "coalossal": 1.88320182962438, + "sandaconda": 3.1461765737376095, + "cramorant": 5.639658952322963, + "barraskewda": 4.601345324135532, + "toxtricity-amped": 3.150649774289726, + "centiskorch": 2.2141034081465527, + "grapploct": 1.8030854841680897, + "polteageist": 3.975922625910205, + "hatterene": 3.2853144811732626, + "grimmsnarl": 3.658249790866198, + "obstagoon": 2.350917054663787, + "perrserker": 2.6766687171844064, + "alcremie": 1.5560830984075185, + "falinks": 2.9920702464708686, + "pincurchin": 2.8996084760830207, + "frosmoth": 3.1459137409318236, + "indeedee-male": 2.889684283561407, + "morpeko": 2.396295738946103, + "copperajah": 2.158566826987272, + "duraludon": 1.422439509295579, + "drakloak": 6.095028667942373 }, "greedent": { - "ivysaur": 3.9589347119023994, - "charmeleon": 4.278227972913084, - "wartortle": 2.874413741854667, - "butterfree": 5.177518374230021, - "raichu": 5.58018402949219, - "raichu-alola": 4.027605873739946, - "sandslash": 2.152063664463306, - "sandslash-alola": 1.7903068883674895, - "nidoqueen": 3.43180499414597, - "nidoking": 2.2437977649592216, - "clefairy": 11.047419260460892, - "clefable": 2.4771164966903036, - "jigglypuff": 31.732554345815267, - "wigglytuff": 2.3435964096907895, - "gloom": 6.8632082313355465, - "vileplume": 3.5669553220222596, - "dugtrio": 4.246911455642259, - "dugtrio-alola": 3.16216748250732, - "persian": 4.737889657717009, - "persian-alola": 4.707617055231301, - "golduck": 3.362761100854731, - "poliwrath": 2.2262380199636507, - "kadabra": 4.735994775893861, - "machoke": 4.444781257132624, - "tentacruel": 3.1998170496533196, - "slowbro": 1.8259611400861107, - "magneton": 2.700902142357922, - "haunter": 6.192654381475872, - "kingler": 2.32842191185976, - "exeggutor": 2.0526469214818577, - "marowak": 3.214829240396959, - "marowak-alola": 1.9861874142901017, - "hitmonlee": 3.0677491497240035, - "hitmonchan": 2.715329821641964, - "lickitung": 2.0647758259057314, - "weezing": 1.7189259566109087, - "weezing-galar": 2.844462230549736, - "rhydon": 2.2924615790243594, - "chansey": 33.24063277888732, - "tangela": 4.68532621918146, - "kangaskhan": 2.031485660623057, - "seadra": 4.047716317808494, - "seaking": 2.7804084017613677, - "starmie": 1.559735574915559, - "mr-mime": 8.513604849191996, - "mr-mime-galar": 4.288521196245994, - "scyther": 2.9564915452266782, - "jynx": 5.532530055027266, - "electabuzz": 2.954280754185006, - "magmar": 1.9306907793470125, - "tauros": 2.057528348872612, - "ditto": 3.7234670650027453, - "vaporeon": 3.705775713207914, - "jolteon": 2.315665482309453, - "flareon": 2.953507655583241, - "porygon": 3.0416172087478976, - "dragonair": 2.073811601197923, - "noctowl": 6.903660386055318, - "lanturn": 2.1940594817631185, - "togetic": 6.317491317960016, - "xatu": 4.1060004123062575, - "bellossom": 2.5351770111457235, - "azumarill": 2.5148587852128994, - "sudowoodo": 2.612676200887893, - "politoed": 2.9025081071355685, - "quagsire": 4.5765027104717, - "slowking": 2.8127229803126808, - "dunsparce": 3.6488721040655667, - "qwilfish": 3.8997469805698195, - "sneasel": 2.636735232313023, - "piloswine": 1.6779400210763646, - "octillery": 2.5486207186745116, - "mantine": 2.9522251905439507, - "skarmory": 1.6817169160799774, - "hitmontop": 3.2172447939998, - "miltank": 3.7168490520882096, - "grovyle": 8.67756875983029, - "sceptile": 1.588352176901931, - "combusken": 3.7546994018452797, - "blaziken": 1.8977035175220154, - "marshtomp": 2.7273196443276575, - "swampert": 1.353949107612866, - "linoone": 5.929296322906048, - "linoone-galar": 5.0556284157589175, - "pelipper": 6.272752458033839, - "ninjask": 8.272011765398716, - "exploud": 1.7406849731098446, - "lairon": 2.1016501017267064, - "manectric": 1.9224411663047989, - "roselia": 5.216219650268466, - "sharpedo": 5.550478878399154, - "wailmer": 7.158491550271863, - "torkoal": 1.8321608843905146, - "flygon": 2.5981319043132913, - "altaria": 1.7744657584465129, - "whiscash": 2.252208707928317, - "crawdaunt": 2.0651591893755334, - "claydol": 3.6194341313502085, - "cradily": 2.5783478052802806, - "armaldo": 2.0663361204058837, - "dusclops": 3.589656037697402, - "absol": 2.145876319988995, - "glalie": 4.747291658104144, - "sealeo": 3.424722354487802, - "relicanth": 1.7447327568114497, - "metang": 2.5744606510379935, - "luxray": 4.157188855617024, - "vespiquen": 2.9055245350309873, - "cherrim": 6.316241418024706, - "gastrodon": 2.4456976328912563, - "drifblim": 4.1415105228603455, - "lopunny": 3.979563415019997, - "skuntank": 1.57582364692162, - "bronzong": 2.8237798273816592, - "munchlax": 2.76213839061501, - "drapion": 2.5171163113955703, - "abomasnow": 3.644307772575502, - "froslass": 3.5013275850341596, - "rotom": 3.767344695201499, - "stoutland": 2.6453212098062338, - "liepard": 7.7359266624484935, - "musharna": 1.6847835081061655, - "unfezant": 6.543204552252254, - "boldore": 3.177361202735938, - "swoobat": 5.8702266679299555, - "audino": 2.4338198963657742, - "gurdurr": 2.2941329060706943, - "palpitoad": 4.113775389089566, - "seismitoad": 6.85048063992766, - "scolipede": 3.717409301468462, - "whimsicott": 3.493363356266929, - "lilligant": 3.2564240392981527, - "basculin-red-striped": 3.0366322302214845, - "basculin-blue-striped": 3.889326659835054, - "krookodile": 3.0202299728163338, - "maractus": 2.3783830307704896, - "crustle": 2.1212454168187773, - "sigilyph": 2.4907310588431946, - "cofagrigus": 2.5711126630751417, - "garbodor": 2.1882621802711, - "cinccino": 5.019886840139323, - "vanillish": 2.4762829241165702, - "emolga": 3.3214590604783263, - "escavalier": 1.6484524640631877, - "amoonguss": 3.095928216536562, - "jellicent": 1.5799827328877691, - "galvantula": 1.7132684415933783, - "klang": 2.4047171916185546, - "klinklang": 2.92156259432613, - "beheeyem": 2.005686094807991, - "lampent": 2.4314330644720235, - "fraxure": 1.6417956029818854, - "beartic": 1.9194858924408797, - "cryogonal": 2.24529790547472, - "accelgor": 3.500169090613495, - "stunfisk": 1.4157313789167747, - "stunfisk-galar": 2.007478572570724, - "mienshao": 3.912328798357973, - "druddigon": 2.014600077430758, - "golurk": 1.8002188564258699, - "bisharp": 2.1340326651914014, - "bouffalant": 1.387490010393425, - "heatmor": 2.0677251593483525, - "durant": 2.50523959223659, - "diggersby": 3.526021937029009, - "talonflame": 3.1502936348264274, - "pangoro": 1.8138283747849897, - "doublade": 1.7094651283730715, - "malamar": 2.991637705968805, - "barbaracle": 1.3860140910584366, - "heliolisk": 4.2403350589959405, - "tyrantrum": 1.5854292417712013, - "aurorus": 3.6425523156534965, - "hawlucha": 3.9790540820309195, - "dedenne": 3.276553263845539, - "klefki": 2.7854907477448396, - "trevenant": 2.829175716146278, - "gourgeist-average": 4.997898954987775, - "charjabug": 4.190764345042812, - "vikavolt": 1.9482225021636692, - "ribombee": 5.416354439567309, - "lycanroc-midday": 3.8104897067039323, - "lycanroc-midnight": 2.625815662225045, - "mudsdale": 1.593655388401533, - "araquanid": 2.7559173702562774, - "lurantis": 2.5810224016811727, - "shiinotic": 5.1495601350174445, - "salazzle": 3.7834635254638167, - "bewear": 2.059249968426047, - "tsareena": 3.382820241165347, - "comfey": 5.262755476761757, - "oranguru": 3.0325764848906287, - "passimian": 2.517491664139049, - "palossand": 1.9391035485745456, - "pyukumuku": 45.31590705680094, - "togedemaru": 2.044828080905097, - "mimikyu-disguised": 5.434936736636438, - "orbeetle": 1.9716853628146696, - "thievul": 2.11246609224445, - "eldegoss": 4.336242688981107, - "dubwool": 3.078668974072158, - "drednaw": 1.228690739686653, - "boltund": 5.1335415667027515, - "carkol": 2.2684293684240364, - "coalossal": 1.82294393086484, - "sandaconda": 3.106284732744288, - "cramorant": 6.535991353232992, - "barraskewda": 4.962813715963409, - "toxtricity-amped": 3.219705344883763, - "centiskorch": 2.3155320224826395, - "grapploct": 1.8668312676717254, - "polteageist": 2.753086945739514, - "hatterene": 2.912320160386959, - "grimmsnarl": 4.379059759880246, - "obstagoon": 2.6823524662279787, - "perrserker": 2.7490831451326416, - "alcremie": 1.807591795437835, - "falinks": 3.3285652769987104, - "pincurchin": 3.1081899795312093, - "frosmoth": 3.126851842528878, - "indeedee-male": 3.845559468187031, - "morpeko": 2.989696056841524, - "copperajah": 2.057618673803512, - "duraludon": 1.2776807301928659, - "drakloak": 4.5806839845908645, - "greedent": 2.2667875778667765 + "ivysaur": 3.9678874368786974, + "charmeleon": 4.283060342108314, + "wartortle": 2.8759623512748775, + "butterfree": 5.1839532965182995, + "raichu": 5.582968113162929, + "raichu-alola": 4.029579485606888, + "sandslash": 2.153780682313012, + "sandslash-alola": 1.7885676503367096, + "nidoqueen": 3.441450985738765, + "nidoking": 2.2497911576952405, + "clefairy": 11.077422087086902, + "clefable": 2.4832210210790633, + "jigglypuff": 31.805835524102903, + "wigglytuff": 2.3481891411906615, + "gloom": 6.876497394858728, + "vileplume": 3.574302207911208, + "dugtrio": 4.256002007020973, + "dugtrio-alola": 3.163148493979417, + "persian": 4.743858508853817, + "persian-alola": 4.709943963279158, + "golduck": 3.3663779292982845, + "poliwrath": 2.229397806138281, + "kadabra": 4.741924688139793, + "machoke": 4.451884392099814, + "tentacruel": 3.2084479255370946, + "slowbro": 1.8259532344679212, + "magneton": 2.6980939781167113, + "haunter": 6.210819863868791, + "kingler": 2.3277112233024786, + "exeggutor": 2.0533357951102476, + "marowak": 3.2189508144640007, + "marowak-alola": 1.9875918171193232, + "hitmonlee": 3.0737750351313524, + "hitmonchan": 2.7223173301624604, + "lickitung": 2.066762354563912, + "weezing": 1.7211460908966787, + "weezing-galar": 2.8504576958283105, + "rhydon": 2.292401623951311, + "chansey": 33.306756636605584, + "tangela": 4.685923012156007, + "kangaskhan": 2.034546118675329, + "seadra": 4.046684617570501, + "seaking": 2.7851536594647106, + "starmie": 1.5604941743577745, + "mr-mime": 8.530861825919397, + "mr-mime-galar": 4.293218899229033, + "scyther": 2.960642652903872, + "jynx": 5.542451335895667, + "electabuzz": 2.9575626881728385, + "magmar": 1.9332276396165167, + "tauros": 2.0589564219351164, + "ditto": 3.7050617156116266, + "vaporeon": 3.7111469140537707, + "jolteon": 2.3209891266991525, + "flareon": 2.9612939205745885, + "porygon": 3.0450332145123093, + "dragonair": 2.0769815353767402, + "noctowl": 6.917473482027315, + "lanturn": 2.1972587478755004, + "togetic": 6.334484869548016, + "xatu": 4.108463103534117, + "bellossom": 2.537908284604473, + "azumarill": 2.5224613660472013, + "sudowoodo": 2.613594441089828, + "politoed": 2.9066181260977393, + "quagsire": 4.574980481647737, + "slowking": 2.8150877564405468, + "dunsparce": 3.656664982301532, + "qwilfish": 3.9065473485575306, + "sneasel": 2.6397978638147146, + "piloswine": 1.679700333686629, + "octillery": 2.550968819361147, + "mantine": 2.9582443920269688, + "skarmory": 1.6813449312306357, + "hitmontop": 3.2236403696153273, + "miltank": 3.720364485657445, + "grovyle": 8.685897273313817, + "sceptile": 1.5907187436821981, + "combusken": 3.7571315513721197, + "blaziken": 1.900520167203954, + "marshtomp": 2.730989265177306, + "swampert": 1.3553863490902707, + "linoone": 5.942398438976133, + "linoone-galar": 5.056899414411049, + "pelipper": 6.275985722790271, + "ninjask": 8.283574506116977, + "exploud": 1.7414351713272376, + "lairon": 2.099482155419138, + "manectric": 1.9248065167870851, + "roselia": 5.229507614404131, + "sharpedo": 5.552205439776779, + "wailmer": 7.16699115887152, + "torkoal": 1.8326991942811044, + "flygon": 2.60179912694532, + "altaria": 1.7767872730441034, + "whiscash": 2.2544861180054587, + "crawdaunt": 2.0646101974964166, + "claydol": 3.6212726251607306, + "cradily": 2.5810945430154897, + "armaldo": 2.069383316261071, + "dusclops": 3.5981389543846602, + "absol": 2.147132685880796, + "glalie": 4.756652228275966, + "sealeo": 3.4284419655473592, + "relicanth": 1.7444262517953186, + "metang": 2.573355599458078, + "luxray": 4.161060456296889, + "vespiquen": 2.9084317525849457, + "cherrim": 6.322601660705152, + "gastrodon": 2.449493582042674, + "drifblim": 4.14102940207367, + "lopunny": 3.983725018612632, + "skuntank": 1.5774026018067593, + "bronzong": 2.8236881336355966, + "munchlax": 2.7687349314921157, + "drapion": 2.5191388983244485, + "abomasnow": 3.6498607175977797, + "froslass": 3.5082336288193647, + "rotom": 3.77233656816557, + "stoutland": 2.648230888035793, + "liepard": 7.742120034031641, + "musharna": 1.686047026326638, + "unfezant": 6.552617128493946, + "boldore": 3.1771638831401314, + "swoobat": 5.873620367956659, + "audino": 2.4361528683670817, + "gurdurr": 2.2949754929372066, + "palpitoad": 4.11814830860431, + "seismitoad": 6.853041820136056, + "scolipede": 3.7254593090938295, + "whimsicott": 3.4998499775248506, + "lilligant": 3.259677915478303, + "basculin-red-striped": 3.040299512100299, + "basculin-blue-striped": 3.893332678964036, + "krookodile": 3.021539169596835, + "maractus": 2.3816955304107545, + "crustle": 2.1223207008872027, + "sigilyph": 2.492121973398617, + "cofagrigus": 2.5746315226502707, + "garbodor": 2.192301775511863, + "cinccino": 5.026427481737507, + "vanillish": 2.4799752652288594, + "emolga": 3.3259102379730434, + "escavalier": 1.648865413304025, + "amoonguss": 3.102142081989178, + "jellicent": 1.5803523584032084, + "galvantula": 1.7147282179114884, + "klang": 2.403746278593977, + "klinklang": 2.920776730351173, + "beheeyem": 2.007196641572607, + "lampent": 2.4311920167079917, + "fraxure": 1.6438006156585274, + "beartic": 1.9215070733494302, + "cryogonal": 2.2510861358437175, + "accelgor": 3.5049536674152977, + "stunfisk": 1.4171133059816974, + "stunfisk-galar": 2.006721355894239, + "mienshao": 3.9177954158233, + "druddigon": 2.0185826443221777, + "golurk": 1.8007924222003249, + "bisharp": 2.1321665076618617, + "bouffalant": 1.389367173491138, + "heatmor": 2.070836553832037, + "durant": 2.5033738201269387, + "diggersby": 3.53163725690853, + "talonflame": 3.153815531247383, + "pangoro": 1.813451802001312, + "doublade": 1.7058831932091247, + "malamar": 2.9918277153668718, + "barbaracle": 1.3859166422136382, + "heliolisk": 4.246247421218801, + "tyrantrum": 1.5856382741736095, + "aurorus": 3.6488760103927884, + "hawlucha": 3.9846837498256624, + "dedenne": 3.2820295051675528, + "klefki": 2.787701077183554, + "trevenant": 2.828340194232969, + "gourgeist-average": 5.003215321357509, + "charjabug": 4.1961357803294534, + "vikavolt": 1.9502703001090045, + "ribombee": 5.427485888986356, + "lycanroc-midday": 3.8161817645279146, + "lycanroc-midnight": 2.6284299598775074, + "mudsdale": 1.5943861965363237, + "araquanid": 2.761520576802324, + "lurantis": 2.5835544721298804, + "shiinotic": 5.159411583263081, + "salazzle": 3.7906117347293273, + "bewear": 2.062631618228451, + "tsareena": 3.3882142707626466, + "comfey": 5.275870316948561, + "oranguru": 3.0353085837255946, + "passimian": 2.520494639868592, + "palossand": 1.9404147722562317, + "pyukumuku": 45.3137468469197, + "togedemaru": 2.0444425360308833, + "mimikyu-disguised": 5.453355542308751, + "greedent": 2.2667875778667765, + "orbeetle": 1.9724041318050847, + "thievul": 2.114062986055087, + "eldegoss": 4.341663797136487, + "dubwool": 3.080399713416946, + "drednaw": 1.228973509073433, + "boltund": 5.139709822482246, + "carkol": 2.2686428640340264, + "coalossal": 1.8225143815329188, + "sandaconda": 3.1083105338177255, + "cramorant": 6.548876528542763, + "barraskewda": 4.968356379564407, + "toxtricity-amped": 3.2241050240179985, + "centiskorch": 2.3184166202824477, + "grapploct": 1.867622850168365, + "polteageist": 2.7551423447912318, + "hatterene": 2.9175579272589784, + "grimmsnarl": 4.383031333765977, + "obstagoon": 2.682387527945796, + "perrserker": 2.7480415272107668, + "alcremie": 1.8127483507790516, + "falinks": 3.33150247471567, + "pincurchin": 3.1107554579746655, + "frosmoth": 3.1311623195496914, + "indeedee-male": 3.8530202346862907, + "morpeko": 2.990232382537483, + "copperajah": 2.0562315847645127, + "duraludon": 1.2768821523460332, + "drakloak": 4.586967770250483 }, "orbeetle": { - "ivysaur": 4.291498969698745, - "charmeleon": 3.6285631540482264, - "wartortle": 2.868480671529576, - "butterfree": 4.2162034591179545, - "raichu": 5.271007989299621, - "raichu-alola": 3.81365573366808, - "sandslash": 2.2947390820282783, - "sandslash-alola": 1.7357415465105086, - "nidoqueen": 3.695727129839139, - "nidoking": 2.45566142607343, - "clefairy": 8.784723286803839, - "clefable": 2.0419942574861385, - "jigglypuff": 26.698195786217163, - "wigglytuff": 2.096700972583215, - "gloom": 7.531382629344201, - "vileplume": 3.8769995446669485, - "dugtrio": 3.43792764542103, - "dugtrio-alola": 2.881593373846001, - "persian": 4.306458701777626, - "persian-alola": 4.169713251869546, - "golduck": 3.131849220022155, - "poliwrath": 2.689477259413289, - "kadabra": 4.115973477122918, - "machoke": 5.157892060005606, - "tentacruel": 2.831245126734866, - "slowbro": 2.176035784126861, - "magneton": 2.779118473494651, - "haunter": 5.965898530358173, - "kingler": 2.953044709717917, - "exeggutor": 3.2096382916763044, - "marowak": 3.212872879961256, - "marowak-alola": 1.9700112356470667, - "hitmonlee": 2.8880181824856725, - "hitmonchan": 2.6416211606146143, - "lickitung": 1.9806404797455976, - "weezing": 2.196312981340342, - "weezing-galar": 3.8347730608332586, - "rhydon": 2.52189050080698, - "chansey": 19.932848503011947, - "tangela": 6.862330188072235, - "kangaskhan": 1.8399001851115138, - "seadra": 4.738440316346682, - "seaking": 2.409052726309812, - "starmie": 1.649753162163119, - "mr-mime": 6.412432097771637, - "mr-mime-galar": 4.116016447498234, - "scyther": 2.4419132501133785, - "jynx": 4.34358021228889, - "electabuzz": 2.525558581866298, - "magmar": 1.4807168180305017, - "tauros": 2.1843037435481865, - "ditto": 2.196742563123485, - "vaporeon": 3.0862216263179256, - "jolteon": 1.8203536958796673, - "flareon": 1.9690018131692915, - "porygon": 2.798691127111741, - "dragonair": 1.9003250150978324, - "noctowl": 5.0687441855247215, - "lanturn": 1.9217592484371322, - "togetic": 4.959054283555006, - "xatu": 3.473084381523533, - "bellossom": 2.755313340652455, - "azumarill": 2.245872345734955, - "sudowoodo": 2.7459590293027927, - "politoed": 2.586525478506548, - "quagsire": 5.143666996339676, - "slowking": 2.748213901800576, - "dunsparce": 3.0610556988574076, - "qwilfish": 5.026475404641995, - "sneasel": 2.224988630914236, - "piloswine": 1.6750276625470035, - "octillery": 2.3426574324572593, - "mantine": 2.15403475063367, - "skarmory": 1.6402960301137337, - "hitmontop": 3.7025576865555676, - "miltank": 3.8353503417809858, - "grovyle": 9.28123280706199, - "sceptile": 1.5782335249016175, - "combusken": 4.570131753898739, - "blaziken": 2.0959929380443945, - "marshtomp": 2.5860266559228027, - "swampert": 1.3226127818570381, - "linoone": 4.830432308308071, - "linoone-galar": 4.5696802568280015, - "pelipper": 6.073704200805176, - "ninjask": 6.691006800221015, - "exploud": 1.6695560769427207, - "lairon": 2.013194992598224, - "manectric": 1.7905088763995098, - "roselia": 5.089217730451694, - "sharpedo": 5.405368750391313, - "wailmer": 6.460496757456868, - "torkoal": 1.8492040410090387, - "flygon": 2.377768161023444, - "altaria": 1.5251975892168361, - "whiscash": 2.1277691069592723, - "crawdaunt": 2.373610577905276, - "claydol": 3.7437453170315607, - "cradily": 2.5181123266284486, - "armaldo": 1.7929491844842604, - "dusclops": 3.016709548369832, - "absol": 2.143481344969695, - "glalie": 3.9922864735691803, - "sealeo": 3.2617923770294293, - "relicanth": 1.9557303663965455, - "metang": 2.8059774505696247, - "luxray": 3.9071860811989154, - "vespiquen": 2.523073068768926, - "cherrim": 6.837220759101992, - "gastrodon": 2.024198353825497, - "drifblim": 4.409699804539706, - "lopunny": 3.6429725661652697, - "skuntank": 1.206901526790158, - "bronzong": 3.0247197770804926, - "munchlax": 2.0259429069142705, - "drapion": 2.085635300803504, - "abomasnow": 3.5960813741424023, - "froslass": 2.838244353353594, - "rotom": 3.5847957407698683, - "stoutland": 2.4490744282191597, - "liepard": 7.4329153754358135, - "musharna": 1.8723142386819678, - "unfezant": 5.883960039182656, - "boldore": 3.6568170004057565, - "swoobat": 4.9727290120238585, - "audino": 2.262237411790678, - "gurdurr": 3.6250331201214427, - "palpitoad": 3.9231770826894374, - "seismitoad": 6.544692116828859, - "scolipede": 3.9583624095170915, - "whimsicott": 3.2375316180992466, - "lilligant": 3.4775387558287063, - "basculin-red-striped": 2.983683895787873, - "basculin-blue-striped": 3.651167864659192, - "krookodile": 3.1074553753986818, - "maractus": 2.6199428325213097, - "crustle": 2.0725170858925095, - "sigilyph": 2.127946841900336, - "cofagrigus": 2.670031565732926, - "garbodor": 2.5325913562771225, - "cinccino": 4.669144114347052, - "vanillish": 2.198070221951232, - "emolga": 3.037723039141337, - "escavalier": 1.5148333012170565, - "amoonguss": 3.419111122408408, - "jellicent": 1.5291891226555605, - "galvantula": 1.5909801310758276, - "klang": 2.3066148603862673, - "klinklang": 2.889174613678384, - "beheeyem": 1.938761970043733, - "lampent": 2.2628341665360328, - "fraxure": 1.62159660287083, - "beartic": 1.824177376649743, - "cryogonal": 1.6347462986234391, - "accelgor": 2.630972304293845, - "stunfisk": 1.3235048600897712, - "stunfisk-galar": 1.998494494653193, - "mienshao": 4.51227419362904, - "druddigon": 1.7594686226581693, - "golurk": 1.8951793675249222, - "bisharp": 2.2156303916193147, - "bouffalant": 1.3137851106305736, - "heatmor": 1.794914248875765, - "durant": 2.544129464490919, - "diggersby": 3.300908553029237, - "talonflame": 2.741037993334925, - "pangoro": 1.615065548027903, - "doublade": 2.16447857240136, - "malamar": 4.411221827502242, - "barbaracle": 1.544192152333733, - "heliolisk": 3.4833915033117, - "tyrantrum": 1.729474849292949, - "aurorus": 2.3206946103030237, - "hawlucha": 4.783907034464954, - "dedenne": 2.9835984899532906, - "klefki": 2.5769170960209626, - "trevenant": 3.3082030338634683, - "gourgeist-average": 4.976882818852772, - "charjabug": 4.198405293224817, - "vikavolt": 1.826527049777931, - "ribombee": 4.332980367560847, - "lycanroc-midday": 3.053698938820411, - "lycanroc-midnight": 2.223637115689782, - "mudsdale": 1.6769546007512963, - "araquanid": 2.1458217814358234, - "lurantis": 2.7104010986840055, - "shiinotic": 4.406639365525337, - "salazzle": 3.970243697363488, - "bewear": 2.40287364710382, - "tsareena": 3.488693195135963, - "comfey": 4.6220574323380035, - "oranguru": 3.162526865135832, - "passimian": 3.251334078920399, - "palossand": 2.1138927358463815, - "pyukumuku": 41.45528028636291, - "togedemaru": 1.8933036067614228, - "mimikyu-disguised": 3.595708448356831, - "greedent": 2.281607910592779, - "thievul": 1.7269510505476693, - "eldegoss": 4.503640971029115, - "dubwool": 3.1955349366750974, - "drednaw": 1.2107294021113855, - "boltund": 4.494174314488728, - "carkol": 2.1827588085189986, - "coalossal": 1.8901032018475785, - "sandaconda": 3.322821843826169, - "cramorant": 4.856132792246982, - "barraskewda": 4.5821380578866036, - "toxtricity-amped": 3.6411958205833153, - "centiskorch": 1.9506675276784522, - "grapploct": 2.44766801129132, - "polteageist": 2.6170231948668525, - "hatterene": 2.402543057071376, - "grimmsnarl": 3.3163815049020933, - "obstagoon": 2.7954849472193652, - "perrserker": 2.6985779395427656, - "alcremie": 1.3952004743688486, - "falinks": 4.541619778909554, - "pincurchin": 3.06655003355317, - "frosmoth": 2.2842154703557798, - "indeedee-male": 3.2306165555227295, - "morpeko": 3.0588523322856904, - "copperajah": 2.0849036742474754, - "duraludon": 1.4198074636034315, - "drakloak": 4.254244231023294, - "orbeetle": 1.9825284352514898 + "ivysaur": 4.306180502476368, + "charmeleon": 3.624708389886908, + "wartortle": 2.8731064852547514, + "butterfree": 4.210944589483346, + "raichu": 5.280440873283076, + "raichu-alola": 3.815162317208375, + "sandslash": 2.2965503166741463, + "sandslash-alola": 1.7345652079377076, + "nidoqueen": 3.7040081712924806, + "nidoking": 2.4615964400843833, + "clefairy": 8.78421932137963, + "clefable": 2.0417200599611114, + "jigglypuff": 26.706058345850746, + "wigglytuff": 2.0986255717796114, + "gloom": 7.550262041402972, + "vileplume": 3.8860584791255817, + "dugtrio": 3.4402926996482814, + "dugtrio-alola": 2.8790111023710985, + "persian": 4.307788192081923, + "persian-alola": 4.158394906396033, + "golduck": 3.13437597564398, + "poliwrath": 2.6981917793344463, + "kadabra": 4.116389523938562, + "machoke": 5.167730317280739, + "tentacruel": 2.8361866887893354, + "slowbro": 2.1785731505593824, + "magneton": 2.77810913003022, + "haunter": 5.979358069233506, + "kingler": 2.961888195686591, + "exeggutor": 3.2181585546373963, + "marowak": 3.2160750303316252, + "marowak-alola": 1.9682375987138117, + "hitmonlee": 2.8948976080247855, + "hitmonchan": 2.6461636156060964, + "lickitung": 1.9822782892386188, + "weezing": 2.2006698109830936, + "weezing-galar": 3.844092924723376, + "rhydon": 2.5240805534300286, + "chansey": 19.877668082694655, + "tangela": 6.886877949785434, + "kangaskhan": 1.8403145816533009, + "seadra": 4.746488722810687, + "seaking": 2.4104107126539507, + "starmie": 1.650253917681082, + "mr-mime": 6.41622286641098, + "mr-mime-galar": 4.11889703794677, + "scyther": 2.4369410115309353, + "jynx": 4.340231800801928, + "electabuzz": 2.5264728461631845, + "magmar": 1.4786300373223318, + "tauros": 2.187951259707636, + "ditto": 2.1859736955938667, + "vaporeon": 3.087867768310984, + "jolteon": 1.819732063290949, + "flareon": 1.9651359305111442, + "porygon": 2.7997759473775314, + "dragonair": 1.9017924504715773, + "noctowl": 5.059606758817454, + "lanturn": 1.9241401701502898, + "togetic": 4.95482321682011, + "xatu": 3.4699483462601974, + "bellossom": 2.7616457635788008, + "azumarill": 2.248669136902853, + "sudowoodo": 2.7492939872976407, + "politoed": 2.5894346430651662, + "quagsire": 5.155364358173771, + "slowking": 2.749747461934019, + "dunsparce": 3.0584134894608006, + "qwilfish": 5.040811053967477, + "sneasel": 2.2184891374275644, + "piloswine": 1.6772794799707693, + "octillery": 2.343439590798175, + "mantine": 2.151770792674211, + "skarmory": 1.6372293148592796, + "hitmontop": 3.7161444320986154, + "miltank": 3.839301929582166, + "grovyle": 9.306824813054988, + "sceptile": 1.5808340369746723, + "combusken": 4.58311030574402, + "blaziken": 2.099567503231679, + "marshtomp": 2.589544359499149, + "swampert": 1.3250517596367857, + "linoone": 4.824833476236613, + "linoone-galar": 4.555147211519365, + "pelipper": 6.070259111791717, + "ninjask": 6.67637874486193, + "exploud": 1.6713960066044837, + "lairon": 2.0107295573750634, + "manectric": 1.7918481529080563, + "roselia": 5.105049376622091, + "sharpedo": 5.395429082888093, + "wailmer": 6.462009433537337, + "torkoal": 1.8488877166964945, + "flygon": 2.378617250929407, + "altaria": 1.5247593664023655, + "whiscash": 2.1294176003299086, + "crawdaunt": 2.3701105044145274, + "claydol": 3.74472814847683, + "cradily": 2.5207274053353794, + "armaldo": 1.7922197713774297, + "dusclops": 3.0114834834797826, + "absol": 2.139122540964232, + "glalie": 3.990046744308006, + "sealeo": 3.2643091507034043, + "relicanth": 1.9556690189203279, + "metang": 2.805483240387128, + "luxray": 3.9103374349441826, + "vespiquen": 2.519352707325485, + "cherrim": 6.851970951070777, + "gastrodon": 2.0230775270769303, + "drifblim": 4.413993343934889, + "lopunny": 3.6444141519235287, + "skuntank": 1.2027494000639956, + "bronzong": 3.0257074876529235, + "munchlax": 2.0240266920817196, + "drapion": 2.079201152495571, + "abomasnow": 3.6003184875092837, + "froslass": 2.837706737605921, + "rotom": 3.585050600237227, + "stoutland": 2.4497242809184634, + "liepard": 7.418125835134061, + "musharna": 1.8759574845994615, + "unfezant": 5.875617509655532, + "boldore": 3.6624894610514227, + "swoobat": 4.968373300884689, + "audino": 2.2620719669136067, + "gurdurr": 3.644041125419445, + "palpitoad": 3.9278883349400413, + "seismitoad": 6.54825922563705, + "scolipede": 3.959414808714925, + "whimsicott": 3.24074259788385, + "lilligant": 3.4825552699003155, + "basculin-red-striped": 2.9879279263744363, + "basculin-blue-striped": 3.65240663493415, + "krookodile": 3.10292573387228, + "maractus": 2.626351897552487, + "crustle": 2.07269043853975, + "sigilyph": 2.126350025471678, + "cofagrigus": 2.671037992790887, + "garbodor": 2.540229630689626, + "cinccino": 4.671754115280112, + "vanillish": 2.1989166040095087, + "emolga": 3.037759962490688, + "escavalier": 1.5132896463762544, + "amoonguss": 3.4294230241108763, + "jellicent": 1.5303969485188351, + "galvantula": 1.5913590056452016, + "klang": 2.3043287768203573, + "klinklang": 2.887441568272642, + "beheeyem": 1.9378869107469026, + "lampent": 2.26061095247576, + "fraxure": 1.62240384961807, + "beartic": 1.8264295738983682, + "cryogonal": 1.634425811639726, + "accelgor": 2.6261159723141287, + "stunfisk": 1.3252496530959883, + "stunfisk-galar": 1.9978194339141433, + "mienshao": 4.522791738713672, + "druddigon": 1.7594810453536627, + "golurk": 1.8966657499716095, + "bisharp": 2.210629314069112, + "bouffalant": 1.3151632455481264, + "heatmor": 1.7938936360829723, + "durant": 2.54066907104165, + "diggersby": 3.303938128016533, + "talonflame": 2.7376956336971245, + "pangoro": 1.612286891619184, + "doublade": 2.1652340947683952, + "malamar": 4.411709065270211, + "barbaracle": 1.5449718258651473, + "heliolisk": 3.485038307095454, + "tyrantrum": 1.7317431496661517, + "aurorus": 2.31811676947164, + "hawlucha": 4.794340963857154, + "dedenne": 2.9857799482129894, + "klefki": 2.5758173413033694, + "trevenant": 3.3180854149754992, + "gourgeist-average": 4.973917934386866, + "charjabug": 4.2056640668465235, + "vikavolt": 1.8271129832502728, + "ribombee": 4.328142242648036, + "lycanroc-midday": 3.0495567988256873, + "lycanroc-midnight": 2.221950715203445, + "mudsdale": 1.679838777560673, + "araquanid": 2.144759753237643, + "lurantis": 2.7132958898929775, + "shiinotic": 4.409080972881498, + "salazzle": 3.9725264125763733, + "bewear": 2.4065233714558296, + "tsareena": 3.493234858091909, + "comfey": 4.62865042464335, + "oranguru": 3.1676537829124873, + "passimian": 3.2592636524147505, + "palossand": 2.1153405544026365, + "pyukumuku": 41.43646425015264, + "togedemaru": 1.8913688643336235, + "mimikyu-disguised": 3.5904072561779685, + "greedent": 2.284530998976785, + "orbeetle": 1.9825284352514898, + "thievul": 1.7226146022951307, + "eldegoss": 4.513389632416802, + "dubwool": 3.200970471273208, + "drednaw": 1.2100621965677205, + "boltund": 4.492741708737066, + "carkol": 2.1792966625665278, + "coalossal": 1.887928509369932, + "sandaconda": 3.3260619253264085, + "cramorant": 4.8489700744089, + "barraskewda": 4.582390396946664, + "toxtricity-amped": 3.649088628677793, + "centiskorch": 1.9496697400363963, + "grapploct": 2.4585163127683947, + "polteageist": 2.619376498432726, + "hatterene": 2.403875431099409, + "grimmsnarl": 3.307962330131892, + "obstagoon": 2.790195156167382, + "perrserker": 2.6953483346255656, + "alcremie": 1.3951738742072615, + "falinks": 4.554058072811271, + "pincurchin": 3.070619511714839, + "frosmoth": 2.2792716781212112, + "indeedee-male": 3.2275311416890244, + "morpeko": 3.0556931512862127, + "copperajah": 2.0849812837956323, + "duraludon": 1.420462408888402, + "drakloak": 4.251042793312673 }, "thievul": { - "ivysaur": 3.3244522432322077, - "charmeleon": 3.8067797686789215, - "wartortle": 2.596720369621787, - "butterfree": 4.25519924756881, - "raichu": 5.016952588442461, - "raichu-alola": 5.135407675925725, - "sandslash": 1.98290703084455, - "sandslash-alola": 2.936123929409533, - "nidoqueen": 2.8648016299265997, - "nidoking": 1.764733522439394, - "clefairy": 7.954002053401416, - "clefable": 1.5145639576995198, - "jigglypuff": 20.732873072778887, - "wigglytuff": 1.5938979871822734, - "gloom": 5.628940123402217, - "vileplume": 2.986858394693258, - "dugtrio": 3.5920072312909443, - "dugtrio-alola": 3.6209620747622386, - "persian": 3.7290544687831226, - "persian-alola": 4.0568922309664295, - "golduck": 2.935773831445909, - "poliwrath": 1.3965533734370565, - "kadabra": 4.68965026029983, - "machoke": 3.130488562954846, - "tentacruel": 2.3798107469691834, - "slowbro": 2.5925305810079298, - "magneton": 3.6170625787504065, - "haunter": 5.994704461227077, - "kingler": 2.297788444988404, - "exeggutor": 2.58581704028003, - "marowak": 2.960693466582591, - "marowak-alola": 2.6788090873081565, - "hitmonlee": 1.7764968918957067, - "hitmonchan": 1.7220754145685853, - "lickitung": 1.8480595918469886, - "weezing": 1.6304272383718577, - "weezing-galar": 2.2800770494050893, - "rhydon": 2.2416528064985592, - "chansey": 24.98121569721266, - "tangela": 5.703819085227742, - "kangaskhan": 1.7735148056404324, - "seadra": 4.291603844148264, - "seaking": 2.3033162702970364, - "starmie": 1.771908844188613, - "mr-mime": 8.004559200373638, - "mr-mime-galar": 4.862208166779981, - "scyther": 2.700045809715979, - "jynx": 5.509109854483613, - "electabuzz": 2.6372190215421742, - "magmar": 1.767907941324439, - "tauros": 1.8559551509639385, - "ditto": 1.99663127315023, - "vaporeon": 3.192950480516492, - "jolteon": 1.975536292304884, - "flareon": 2.881261892256011, - "porygon": 2.739896364581761, - "dragonair": 1.7850084521190384, - "noctowl": 5.565288603705218, - "lanturn": 1.8704670739010756, - "togetic": 4.091166767379787, - "xatu": 5.338554958470537, - "bellossom": 2.2303325210103395, - "azumarill": 1.5160344110226278, - "sudowoodo": 2.3350529116575363, - "politoed": 2.473499831405908, - "quagsire": 4.451095377049395, - "slowking": 3.2302747245412893, - "dunsparce": 3.0202753213012974, - "qwilfish": 3.2451692259511837, - "sneasel": 2.361974251461569, - "piloswine": 1.4929660371826143, - "octillery": 2.2710036616595577, - "mantine": 2.37904774788118, - "skarmory": 2.2831050898530445, - "hitmontop": 2.074597884690693, - "miltank": 3.079629311420522, - "grovyle": 7.525598517797034, - "sceptile": 1.4340389547192687, - "combusken": 2.515586835407478, - "blaziken": 1.253036370664462, - "marshtomp": 2.3702389570980094, - "swampert": 1.3119297439969695, - "linoone": 4.571010562865016, - "linoone-galar": 4.517368545219284, - "pelipper": 5.7032082833892765, - "ninjask": 6.365518012473629, - "exploud": 1.5991174328411635, - "lairon": 2.320555266767659, - "manectric": 1.796993516202604, - "roselia": 4.2230297425499135, - "sharpedo": 4.275762498208045, - "wailmer": 6.253111236127374, - "torkoal": 1.8982186229623004, - "flygon": 2.237989600123609, - "altaria": 1.4691185347884708, - "whiscash": 2.1060014346434044, - "crawdaunt": 1.7572476121224072, - "claydol": 4.509771518793848, - "cradily": 2.2558280361265766, - "armaldo": 1.6786198130175904, - "dusclops": 4.230078990232013, - "absol": 1.815496840530709, - "glalie": 4.328992303405218, - "sealeo": 3.0401797832547057, - "relicanth": 1.8049711062733698, - "metang": 3.87948936549482, - "luxray": 3.8703687717685975, - "vespiquen": 2.408145320144431, - "cherrim": 6.1569900883429325, - "gastrodon": 1.9129601711796878, - "drifblim": 6.105960973948866, - "lopunny": 3.1638755799154854, - "skuntank": 1.317324516201377, - "bronzong": 4.748392118376099, - "munchlax": 2.2317181400050874, - "drapion": 2.0163367902834795, - "abomasnow": 4.0683811866459845, - "froslass": 3.808626218645689, - "rotom": 4.944846531035241, - "stoutland": 2.3132272671377794, - "liepard": 5.641944499352329, - "musharna": 2.126188812353418, - "unfezant": 6.170432411380096, - "boldore": 3.048134559836555, - "swoobat": 7.347594652928411, - "audino": 2.1322419043284895, - "gurdurr": 1.6939285110688542, - "palpitoad": 3.6843265595640413, - "seismitoad": 6.457775033145889, - "scolipede": 3.068973977867535, - "whimsicott": 3.152519591019403, - "lilligant": 3.1177031338649175, - "basculin-red-striped": 2.802750396957786, - "basculin-blue-striped": 3.6653295087779894, - "krookodile": 2.661091994106307, - "maractus": 2.410015087514071, - "crustle": 1.7425446978145929, - "sigilyph": 3.0605954128650317, - "cofagrigus": 3.8278034648255623, - "garbodor": 1.7380224338994839, - "cinccino": 4.383014437830013, - "vanillish": 2.2780029641808106, - "emolga": 2.969971224297917, - "escavalier": 2.4366326462299117, - "amoonguss": 2.7166835669408167, - "jellicent": 1.8765003664987967, - "galvantula": 1.67298353486398, - "klang": 3.086150082230013, - "klinklang": 3.5634228737897997, - "beheeyem": 2.509128766758414, - "lampent": 3.0633251415175575, - "fraxure": 1.4591644022163364, - "beartic": 1.865225093998061, - "cryogonal": 1.7984286022609877, - "accelgor": 2.739910903546679, - "stunfisk": 1.2584320610553061, - "stunfisk-galar": 2.628729413851433, - "mienshao": 2.8078268790328154, - "druddigon": 1.8464029022029131, - "golurk": 2.4256575820994937, - "bisharp": 2.89962628909279, - "bouffalant": 1.2045838498291985, - "heatmor": 1.906824593928777, - "durant": 4.612762366136116, - "diggersby": 2.9113204352245035, - "talonflame": 2.8836420253658557, - "pangoro": 1.4028366749942567, - "doublade": 3.180744831829418, - "malamar": 3.093932207201751, - "barbaracle": 1.435837365799062, - "heliolisk": 3.6372182357873966, - "tyrantrum": 1.4619472675508394, - "aurorus": 2.349057048137232, - "hawlucha": 2.8275790870297963, - "dedenne": 2.192366977153612, - "klefki": 2.9891920272237087, - "trevenant": 3.6688344871544363, - "gourgeist-average": 7.217827554767215, - "charjabug": 4.227230518316992, - "vikavolt": 1.8700094702975527, - "ribombee": 4.286119129847924, - "lycanroc-midday": 3.284075176432818, - "lycanroc-midnight": 2.2442465897120565, - "mudsdale": 1.4378567571738423, - "araquanid": 2.009528323539035, - "lurantis": 2.4309965097452926, - "shiinotic": 4.155297923823676, - "salazzle": 3.0545702132907957, - "bewear": 1.5289217670891921, - "tsareena": 3.233522777723809, - "comfey": 3.5954498210253525, - "oranguru": 4.027044313352847, - "passimian": 1.8428287048533125, - "palossand": 2.7463857411009522, - "pyukumuku": 39.67824952148928, - "togedemaru": 2.355899351855507, - "mimikyu-disguised": 4.084781520711291, - "greedent": 2.1504505090285786, - "orbeetle": 2.1470142461553356, - "eldegoss": 4.030505010262556, - "dubwool": 2.822710174666815, - "drednaw": 1.1936954791808798, - "boltund": 4.846765638132505, - "carkol": 2.2393668193240632, - "coalossal": 1.9565222104906237, - "sandaconda": 2.8595677834922424, - "cramorant": 5.627194920053407, - "barraskewda": 4.681659987077068, - "toxtricity-amped": 2.725785557494559, - "centiskorch": 2.1338838932463466, - "grapploct": 1.3714802760821163, - "polteageist": 3.9744695687088627, - "hatterene": 2.4464660256819077, - "grimmsnarl": 3.250155155154838, - "obstagoon": 2.2875558471597777, - "perrserker": 3.7955982374017747, - "alcremie": 1.0880860531644831, - "falinks": 2.3460769554418928, - "pincurchin": 3.03381705412166, - "frosmoth": 3.04168058886465, - "indeedee-male": 4.616639833350437, - "morpeko": 2.4015789302564077, - "copperajah": 2.4946344967138874, - "duraludon": 1.5442989979923296, - "drakloak": 6.112759293070813, - "thievul": 1.6689834847895388 + "ivysaur": 3.327343767697087, + "charmeleon": 3.807210971967692, + "wartortle": 2.595666647349385, + "butterfree": 4.249102634784919, + "raichu": 5.016683214192193, + "raichu-alola": 5.152791556914076, + "sandslash": 1.9801017418184577, + "sandslash-alola": 2.936068609651988, + "nidoqueen": 2.868120508340321, + "nidoking": 1.7643271207671458, + "clefairy": 7.948362722570307, + "clefable": 1.5114758166032072, + "jigglypuff": 20.664651864007098, + "wigglytuff": 1.5918789846729922, + "gloom": 5.625424522590756, + "vileplume": 2.986825572991094, + "dugtrio": 3.5917618865789924, + "dugtrio-alola": 3.6242861939078015, + "persian": 3.7207960237262157, + "persian-alola": 4.055961045426794, + "golduck": 2.9336598470275534, + "poliwrath": 1.3914058805566858, + "kadabra": 4.695175231566388, + "machoke": 3.122608244599026, + "tentacruel": 2.3793504052005345, + "slowbro": 2.603774141084809, + "magneton": 3.621650913787315, + "haunter": 6.017047854737573, + "kingler": 2.2935689796431546, + "exeggutor": 2.593672431701056, + "marowak": 2.9602096337395905, + "marowak-alola": 2.6839102446933403, + "hitmonlee": 1.7694977702620525, + "hitmonchan": 1.7177919568647644, + "lickitung": 1.8479631293608945, + "weezing": 1.6323169632268506, + "weezing-galar": 2.2767333150340807, + "rhydon": 2.2387192924560964, + "chansey": 24.92528074105497, + "tangela": 5.702165312832101, + "kangaskhan": 1.7726368692040175, + "seadra": 4.290718648992869, + "seaking": 2.3013959231478935, + "starmie": 1.7754880806689388, + "mr-mime": 8.033461803223556, + "mr-mime-galar": 4.880783059560696, + "scyther": 2.6982994580486004, + "jynx": 5.515384630165871, + "electabuzz": 2.6383020814622937, + "magmar": 1.7688993445534757, + "tauros": 1.8536681831827244, + "ditto": 1.9868596165775494, + "vaporeon": 3.192958383636565, + "jolteon": 1.9771225077206704, + "flareon": 2.8840626714328836, + "porygon": 2.7406882196922298, + "dragonair": 1.7837673547025745, + "noctowl": 5.560383204448312, + "lanturn": 1.8710873922511402, + "togetic": 4.078066074077659, + "xatu": 5.3592051278699895, + "bellossom": 2.230414063328114, + "azumarill": 1.51118714194055, + "sudowoodo": 2.3307066447967464, + "politoed": 2.4724774743485174, + "quagsire": 4.448113055879855, + "slowking": 3.2367346219339193, + "dunsparce": 3.0178311935067748, + "qwilfish": 3.241928627930921, + "sneasel": 2.3614711324852338, + "piloswine": 1.4907388351363098, + "octillery": 2.2693015570612474, + "mantine": 2.3779749765513603, + "skarmory": 2.283758959923705, + "hitmontop": 2.0681818324891506, + "miltank": 3.0716657722009852, + "grovyle": 7.519152691024061, + "sceptile": 1.4339015284562122, + "combusken": 2.5075950397136335, + "blaziken": 1.249487147562335, + "marshtomp": 2.3687123034564346, + "swampert": 1.3131190448591907, + "linoone": 4.562188334469429, + "linoone-galar": 4.517288007663852, + "pelipper": 5.6956621250870345, + "ninjask": 6.344239256290913, + "exploud": 1.5986545726390387, + "lairon": 2.3191721244148598, + "manectric": 1.7995534709959933, + "roselia": 4.229519298868198, + "sharpedo": 4.269275886945859, + "wailmer": 6.2499464646483815, + "torkoal": 1.8985563587277547, + "flygon": 2.2352671286584487, + "altaria": 1.4679761094566426, + "whiscash": 2.1076264373495377, + "crawdaunt": 1.755374438614076, + "claydol": 4.525288782673455, + "cradily": 2.256597530549206, + "armaldo": 1.6758708307870722, + "dusclops": 4.237498942734195, + "absol": 1.8148370129292177, + "glalie": 4.3303181661759105, + "sealeo": 3.038274251223851, + "relicanth": 1.8021045372783, + "metang": 3.8922627381446224, + "luxray": 3.8715502398077, + "vespiquen": 2.401793612079274, + "cherrim": 6.160525278695973, + "gastrodon": 1.909182365000944, + "drifblim": 6.131650082464901, + "lopunny": 3.156978509688914, + "skuntank": 1.3179477358051175, + "bronzong": 4.774768850237651, + "munchlax": 2.228999475392376, + "drapion": 2.012698323975389, + "abomasnow": 4.0695416339556685, + "froslass": 3.8206042856575317, + "rotom": 4.961939802058166, + "stoutland": 2.3109924658290026, + "liepard": 5.627123239079431, + "musharna": 2.135272344904259, + "unfezant": 6.170720950798639, + "boldore": 3.042708497509908, + "swoobat": 7.37336126311013, + "audino": 2.1309940257646702, + "gurdurr": 1.687235825887512, + "palpitoad": 3.6839533772303232, + "seismitoad": 6.457061495013129, + "scolipede": 3.0647831329866992, + "whimsicott": 3.1475538450151532, + "lilligant": 3.116933998209846, + "basculin-red-striped": 2.802645646003714, + "basculin-blue-striped": 3.6660697282758354, + "krookodile": 2.6613323111997342, + "maractus": 2.4138817245717865, + "crustle": 1.7378371277278424, + "sigilyph": 3.069948604025436, + "cofagrigus": 3.846071280100606, + "garbodor": 1.7356427186842946, + "cinccino": 4.380057534097154, + "vanillish": 2.279112752420037, + "emolga": 2.971180359472229, + "escavalier": 2.437885297721767, + "amoonguss": 2.7195935492358765, + "jellicent": 1.8784402811106409, + "galvantula": 1.6734242354198534, + "klang": 3.0915176367380504, + "klinklang": 3.5645938515593816, + "beheeyem": 2.5183685271552925, + "lampent": 3.0650734341604675, + "fraxure": 1.4564708348498887, + "beartic": 1.865378334409633, + "cryogonal": 1.7986066013324091, + "accelgor": 2.735441125613611, + "stunfisk": 1.2587862670610503, + "stunfisk-galar": 2.6343169850090016, + "mienshao": 2.8019226750373774, + "druddigon": 1.8468847113257099, + "golurk": 2.429578203128397, + "bisharp": 2.9041876156066007, + "bouffalant": 1.2036455830943669, + "heatmor": 1.9064471117743391, + "durant": 4.610568394172833, + "diggersby": 2.9079290901258794, + "talonflame": 2.8839848586257864, + "pangoro": 1.3982873787802865, + "doublade": 3.1860982148739376, + "malamar": 3.1000238861394456, + "barbaracle": 1.4333966952944213, + "heliolisk": 3.639364114582169, + "tyrantrum": 1.4588763747148075, + "aurorus": 2.3469457480135474, + "hawlucha": 2.820013038610772, + "dedenne": 2.187980738231143, + "klefki": 2.9841274926477603, + "trevenant": 3.6734648120150215, + "gourgeist-average": 7.246189733385596, + "charjabug": 4.2277266824033735, + "vikavolt": 1.8690418958075767, + "ribombee": 4.274063158312183, + "lycanroc-midday": 3.2825037586087387, + "lycanroc-midnight": 2.2418424130613013, + "mudsdale": 1.4358699310715068, + "araquanid": 2.0050705758072205, + "lurantis": 2.429988820695729, + "shiinotic": 4.1453481220319865, + "salazzle": 3.0532013279036736, + "bewear": 1.5258536315405424, + "tsareena": 3.2344498039473164, + "comfey": 3.587590650034886, + "oranguru": 4.049087668762155, + "passimian": 1.8374789694222362, + "palossand": 2.7549611594625, + "pyukumuku": 39.62256313085669, + "togedemaru": 2.3566001338782288, + "mimikyu-disguised": 4.089103547843102, + "greedent": 2.15116006603148, + "orbeetle": 2.1541022465486894, + "thievul": 1.6689834847895388, + "eldegoss": 4.032286094227027, + "dubwool": 2.8181258449799285, + "drednaw": 1.1912941240228496, + "boltund": 4.8525563664239275, + "carkol": 2.2368157394412576, + "coalossal": 1.9559618492862387, + "sandaconda": 2.8554409513396655, + "cramorant": 5.627611368397593, + "barraskewda": 4.681460132869843, + "toxtricity-amped": 2.727136675765723, + "centiskorch": 2.1353092328534538, + "grapploct": 1.3667730326024186, + "polteageist": 3.990537058938123, + "hatterene": 2.44677993408028, + "grimmsnarl": 3.244779022779107, + "obstagoon": 2.2845816826448777, + "perrserker": 3.8028226381343764, + "alcremie": 1.0860000887628543, + "falinks": 2.3359766606311574, + "pincurchin": 3.0367769180559163, + "frosmoth": 3.0412282904720054, + "indeedee-male": 4.634060313553612, + "morpeko": 2.3990773617301224, + "copperajah": 2.49555581398384, + "duraludon": 1.5452907562316498, + "drakloak": 6.128260538249056 }, "eldegoss": { - "ivysaur": 2.6841112608532818, - "charmeleon": 3.1607926433237625, - "wartortle": 4.049269358041946, - "butterfree": 3.550961979302193, - "raichu": 5.508757975605922, - "raichu-alola": 3.6106128401779527, - "sandslash": 3.3963630074848794, - "sandslash-alola": 1.7707834026534748, - "nidoqueen": 2.9403128407205648, - "nidoking": 1.8779307767979683, - "clefairy": 9.208377307737841, - "clefable": 2.2124163225236426, - "jigglypuff": 28.13524467512689, - "wigglytuff": 2.1751376982868518, - "gloom": 4.498344716374654, - "vileplume": 2.48012796770825, - "dugtrio": 4.966736244674596, - "dugtrio-alola": 3.630242624835927, - "persian": 4.4124061215165185, - "persian-alola": 4.498120805950007, - "golduck": 4.608507967199582, - "poliwrath": 2.809541678932938, - "kadabra": 3.80454773004925, - "machoke": 4.150527662378983, - "tentacruel": 2.300844698576568, - "slowbro": 2.6017284498077036, - "magneton": 2.978438350391097, - "haunter": 3.980533707049686, - "kingler": 4.353767087182046, - "exeggutor": 1.818674271077795, - "marowak": 4.7038297983424595, - "marowak-alola": 1.6725757881678398, - "hitmonlee": 2.166880266574965, - "hitmonchan": 2.0000225105416263, - "lickitung": 2.0415246073114504, - "weezing": 1.3134145813363691, - "weezing-galar": 2.2610858208271725, - "rhydon": 5.5521841625145, - "chansey": 20.07188099853445, - "tangela": 4.948612597840414, - "kangaskhan": 1.9375436164730477, - "seadra": 7.35168963323458, - "seaking": 3.2458217906164473, - "starmie": 1.9865334163830637, - "mr-mime": 6.70251169858032, - "mr-mime-galar": 3.4157041078614148, - "scyther": 2.04673235198169, - "jynx": 3.877138549179266, - "electabuzz": 2.844813228558925, - "magmar": 1.2953682881459478, - "tauros": 2.2394377876089795, - "ditto": 4.004657047162585, - "vaporeon": 4.450893562661609, - "jolteon": 2.0121017572396034, - "flareon": 1.80119700718945, - "porygon": 2.938595375028383, - "dragonair": 1.5563911216840614, - "noctowl": 4.410206282418159, - "lanturn": 2.966411440386149, - "togetic": 4.285159990191573, - "xatu": 3.225891561009383, - "bellossom": 2.17513847901923, - "azumarill": 1.7971595854428895, - "sudowoodo": 3.9837575985782343, - "politoed": 3.6691176171630655, - "quagsire": 11.446464866902435, - "slowking": 3.17690851417527, - "dunsparce": 3.1354127484751984, - "qwilfish": 3.678687602938927, - "sneasel": 2.184104224221855, - "piloswine": 2.1415640213549008, - "octillery": 3.3066838988789335, - "mantine": 2.325359854649754, - "skarmory": 1.4328804545212679, - "hitmontop": 2.665686063208844, - "miltank": 3.935295802834556, - "grovyle": 7.1779286825043425, - "sceptile": 1.24770961107049, - "combusken": 2.8234825145369933, - "blaziken": 1.3027634289047767, - "marshtomp": 5.491253617044514, - "swampert": 2.6968554432743987, - "linoone": 5.1060260192726545, - "linoone-galar": 4.927263099542446, - "pelipper": 6.246264759828298, - "ninjask": 5.44663862439981, - "exploud": 1.6091873502801661, - "lairon": 2.841653718889523, - "manectric": 1.8932233155103368, - "roselia": 3.4199060250804667, - "sharpedo": 7.189416815383434, - "wailmer": 9.33228196242157, - "torkoal": 1.5480919420988988, - "flygon": 2.4520350056335936, - "altaria": 1.2843842507760992, - "whiscash": 4.678995670531478, - "crawdaunt": 3.285616237245333, - "claydol": 4.595167113884248, - "cradily": 2.3839560538469335, - "armaldo": 1.8989098423703732, - "dusclops": 3.406491265578357, - "absol": 1.9643371723129996, - "glalie": 3.977253906866307, - "sealeo": 4.4301792039628065, - "relicanth": 4.592375054467743, - "metang": 2.582090180336798, - "luxray": 4.2242063696876215, - "vespiquen": 2.0090209980439546, - "cherrim": 5.416792595359706, - "gastrodon": 4.319191866110242, - "drifblim": 3.8250858603649194, - "lopunny": 3.577496048325999, - "skuntank": 1.1947227470835093, - "bronzong": 2.650247278012338, - "munchlax": 1.9927799479767414, - "drapion": 2.020195340048041, - "abomasnow": 2.7132998246139546, - "froslass": 2.8198539995018903, - "rotom": 4.231957124229825, - "stoutland": 2.5002825760136425, - "liepard": 7.301565659803024, - "musharna": 1.6493185342557406, - "unfezant": 4.823858702842637, - "boldore": 5.469714738994048, - "swoobat": 4.610017998859851, - "audino": 2.3754940752998683, - "gurdurr": 2.5477315785998362, - "palpitoad": 8.552424265213226, - "seismitoad": 12.797444268789167, - "scolipede": 2.430192299762788, - "whimsicott": 2.7873462222153584, - "lilligant": 2.7244245685643373, - "basculin-red-striped": 4.179790424896572, - "basculin-blue-striped": 5.69986943322891, - "krookodile": 4.151278930058931, - "maractus": 2.0767341380155324, - "crustle": 2.1448296278667534, - "sigilyph": 1.9896290451151795, - "cofagrigus": 2.9736428956119028, - "garbodor": 1.465597171918816, - "cinccino": 4.496831791216186, - "vanillish": 2.0662034697952354, - "emolga": 2.7307599404531673, - "escavalier": 1.38339412709664, - "amoonguss": 2.0339274325271477, - "jellicent": 2.076390442845979, - "galvantula": 1.4538592800566073, - "klang": 2.539027959613856, - "klinklang": 2.9078611636986516, - "beheeyem": 1.8888762800802832, - "lampent": 1.913088323014929, - "fraxure": 1.3319338001248342, - "beartic": 1.6892671547973335, - "cryogonal": 1.4778604435505684, - "accelgor": 2.2940193550382526, - "stunfisk": 1.914777883759644, - "stunfisk-galar": 2.6329087952076904, - "mienshao": 3.562492328221336, - "druddigon": 1.5328330156524492, - "golurk": 2.694034376497169, - "bisharp": 2.039684119177739, - "bouffalant": 1.0546876958995366, - "heatmor": 1.5218685697904608, - "durant": 2.2315267906510794, - "diggersby": 4.634097628333166, - "talonflame": 2.2620267160750003, - "pangoro": 1.845049318112185, - "doublade": 2.1312413711105003, - "malamar": 3.1128351041134565, - "barbaracle": 3.033634964165452, - "heliolisk": 3.754001195547887, - "tyrantrum": 1.798787907226986, - "aurorus": 2.9606264866046046, - "hawlucha": 2.9165821817413313, - "dedenne": 3.2188895711885763, - "klefki": 2.6337823804711222, - "trevenant": 2.684923365309375, - "gourgeist-average": 4.439903979059938, - "charjabug": 3.689665586375895, - "vikavolt": 1.5300017683995515, - "ribombee": 3.781961858664595, - "lycanroc-midday": 4.564673851355787, - "lycanroc-midnight": 3.199566255385009, - "mudsdale": 2.287925695990019, - "araquanid": 2.155664905732691, - "lurantis": 2.0897211340452713, - "shiinotic": 3.886928583224605, - "salazzle": 2.440521685546602, - "bewear": 1.897969340986028, - "tsareena": 2.6606695085846694, - "comfey": 4.847272803556159, - "oranguru": 2.728618183302748, - "passimian": 2.4524099246323745, - "palossand": 3.3096740109509755, - "pyukumuku": 51.87054807006186, - "togedemaru": 1.919238890471536, - "mimikyu-disguised": 4.0267248865199265, - "greedent": 2.275144668441082, - "orbeetle": 1.5155937880927333, - "thievul": 1.764688595022673, - "dubwool": 3.156609230592679, - "drednaw": 2.7077622796896432, - "boltund": 5.179661305063043, - "carkol": 2.438445458838867, - "coalossal": 2.0887428323745256, - "sandaconda": 4.736947579491757, - "cramorant": 5.503023876571758, - "barraskewda": 6.9472686028398885, - "toxtricity-amped": 2.477986422265727, - "centiskorch": 1.6177127091359895, - "grapploct": 1.8845959769992664, - "polteageist": 2.7034377562155756, - "hatterene": 2.6384184713757044, - "grimmsnarl": 4.037673997976551, - "obstagoon": 2.752367955315571, - "perrserker": 2.9405895244880256, - "alcremie": 1.457046682208357, - "falinks": 3.285404082787916, - "pincurchin": 3.385695037172588, - "frosmoth": 2.066431814951711, - "indeedee-male": 3.078543777210928, - "morpeko": 2.962961539392225, - "copperajah": 2.053923513786107, - "duraludon": 1.2352419613449004, - "drakloak": 3.854374606730813, - "eldegoss": 3.611689189814572 + "ivysaur": 2.679928459542019, + "charmeleon": 3.1527434185948704, + "wartortle": 4.0580881517882, + "butterfree": 3.5383540232306707, + "raichu": 5.514473282678065, + "raichu-alola": 3.6107027356017154, + "sandslash": 3.4010659878280385, + "sandslash-alola": 1.7661417971478641, + "nidoqueen": 2.940291636727391, + "nidoking": 1.8767909066554953, + "clefairy": 9.204590025400318, + "clefable": 2.21317101972508, + "jigglypuff": 28.13480636496205, + "wigglytuff": 2.17542112538354, + "gloom": 4.484871189741357, + "vileplume": 2.4756453982772992, + "dugtrio": 4.976619058751653, + "dugtrio-alola": 3.630679941975503, + "persian": 4.408729967716706, + "persian-alola": 4.49629149888481, + "golduck": 4.618942619030751, + "poliwrath": 2.8146310096642546, + "kadabra": 3.800068365314554, + "machoke": 4.150466296471615, + "tentacruel": 2.2997700172144793, + "slowbro": 2.60429842194042, + "magneton": 2.9779823303688335, + "haunter": 3.9782470161322117, + "kingler": 4.36671920441388, + "exeggutor": 1.8175263525513299, + "marowak": 4.7133612807810765, + "marowak-alola": 1.6677431525859339, + "hitmonlee": 2.16326066901008, + "hitmonchan": 1.9965281061204054, + "lickitung": 2.0417976023509694, + "weezing": 1.310330722257039, + "weezing-galar": 2.257523707828264, + "rhydon": 5.570180616332032, + "chansey": 20.009618050959826, + "tangela": 4.950214651140465, + "kangaskhan": 1.9367265053133216, + "seadra": 7.372715296340836, + "seaking": 3.2477748353576104, + "starmie": 1.9885203258118205, + "mr-mime": 6.699048201613804, + "mr-mime-galar": 3.4104014950346313, + "scyther": 2.0381977535011697, + "jynx": 3.8675668104750964, + "electabuzz": 2.8473822360676446, + "magmar": 1.2913588333690433, + "tauros": 2.2400795375505624, + "ditto": 3.979560808366376, + "vaporeon": 4.460579906865, + "jolteon": 2.0132575878991346, + "flareon": 1.7966273818224412, + "porygon": 2.9377745295029776, + "dragonair": 1.5537508581978128, + "noctowl": 4.394446676892155, + "lanturn": 2.9765736163070535, + "togetic": 4.275177104543388, + "xatu": 3.218805489131311, + "bellossom": 2.1748221751288694, + "azumarill": 1.7839528757509648, + "sudowoodo": 3.9910739565727384, + "politoed": 3.677952341436084, + "quagsire": 11.494927913164048, + "slowking": 3.178319740094209, + "dunsparce": 3.1289598873240996, + "qwilfish": 3.676683060553649, + "sneasel": 2.1792802800598023, + "piloswine": 2.1420617319129076, + "octillery": 3.3096701822144743, + "mantine": 2.3239420002307782, + "skarmory": 1.4279345270336403, + "hitmontop": 2.6636364281868135, + "miltank": 3.933865903441373, + "grovyle": 7.17463386448056, + "sceptile": 1.2465204299740122, + "combusken": 2.818733855938815, + "blaziken": 1.299356120417204, + "marshtomp": 5.508926642874158, + "swampert": 2.706920978638335, + "linoone": 5.097159378807518, + "linoone-galar": 4.924310179422128, + "pelipper": 6.237258460199085, + "ninjask": 5.420117329337685, + "exploud": 1.6080677802828829, + "lairon": 2.8414976395414975, + "manectric": 1.8932054905393902, + "roselia": 3.416381382187762, + "sharpedo": 7.198670636467466, + "wailmer": 9.343370088808925, + "torkoal": 1.544988038828519, + "flygon": 2.450251683051021, + "altaria": 1.2814169178573063, + "whiscash": 4.690113084118612, + "crawdaunt": 3.2917004094798443, + "claydol": 4.6007808615781824, + "cradily": 2.3832478290251915, + "armaldo": 1.8965459987349234, + "dusclops": 3.401900158510032, + "absol": 1.9620606069321957, + "glalie": 3.9689512897718813, + "sealeo": 4.435031486778637, + "relicanth": 4.606829673319785, + "metang": 2.5789282432165757, + "luxray": 4.22674405064234, + "vespiquen": 1.9998561535725785, + "cherrim": 5.415412757659757, + "gastrodon": 4.328078344335406, + "drifblim": 3.821554705453667, + "lopunny": 3.5720941262980825, + "skuntank": 1.1926356320226517, + "bronzong": 2.6458248351648104, + "munchlax": 1.98780868209067, + "drapion": 2.016346824671091, + "abomasnow": 2.7062925858164313, + "froslass": 2.813962951499845, + "rotom": 4.2367846609330275, + "stoutland": 2.497849325429627, + "liepard": 7.298175839110482, + "musharna": 1.6496574233081238, + "unfezant": 4.805787734514455, + "boldore": 5.481347742702583, + "swoobat": 4.5998050270121, + "audino": 2.373655921480429, + "gurdurr": 2.5495723031253767, + "palpitoad": 8.582836230700769, + "seismitoad": 12.808583824770714, + "scolipede": 2.421117884766856, + "whimsicott": 2.7843803052478613, + "lilligant": 2.7215903497646945, + "basculin-red-striped": 4.186025663572762, + "basculin-blue-striped": 5.7146710604220345, + "krookodile": 4.158948883188533, + "maractus": 2.077449995816424, + "crustle": 2.141914029363929, + "sigilyph": 1.9858145504542377, + "cofagrigus": 2.9746603487186105, + "garbodor": 1.4601509687922067, + "cinccino": 4.4886948837300755, + "vanillish": 2.061843564438094, + "emolga": 2.7278990376580925, + "escavalier": 1.3801401705899612, + "amoonguss": 2.028390757701425, + "jellicent": 2.0786865994997115, + "galvantula": 1.4528563384997941, + "klang": 2.5384808262466514, + "klinklang": 2.902987587870581, + "beheeyem": 1.8886470689236068, + "lampent": 1.9069589614934608, + "fraxure": 1.3289076949225338, + "beartic": 1.687192283859632, + "cryogonal": 1.4741795512255615, + "accelgor": 2.2850382757056185, + "stunfisk": 1.920550268843928, + "stunfisk-galar": 2.6358660758691776, + "mienshao": 3.562143995778594, + "druddigon": 1.5301257215849935, + "golurk": 2.697665496546826, + "bisharp": 2.034479675954034, + "bouffalant": 1.0495407393906326, + "heatmor": 1.5181716581590767, + "durant": 2.2242194880949775, + "diggersby": 4.642984939400058, + "talonflame": 2.2546309335966637, + "pangoro": 1.84448611868621, + "doublade": 2.1276679764346067, + "malamar": 3.1134258099820276, + "barbaracle": 3.038122347242018, + "heliolisk": 3.7560162446411764, + "tyrantrum": 1.798485397325689, + "aurorus": 2.959044168047038, + "hawlucha": 2.909857543282725, + "dedenne": 3.2222150110408654, + "klefki": 2.631234423898751, + "trevenant": 2.682626400127969, + "gourgeist-average": 4.429545561692527, + "charjabug": 3.691364665395829, + "vikavolt": 1.5268634289319225, + "ribombee": 3.7722497732285323, + "lycanroc-midday": 4.568777692652638, + "lycanroc-midnight": 3.2020451726801005, + "mudsdale": 2.2916362733606626, + "araquanid": 2.151438287401512, + "lurantis": 2.0861500858970614, + "shiinotic": 3.882394031015303, + "salazzle": 2.4301380536612776, + "bewear": 1.896569558197089, + "tsareena": 2.656144698512491, + "comfey": 4.852437940932528, + "oranguru": 2.7270399634804376, + "passimian": 2.4510306492830733, + "palossand": 3.3178503814038063, + "pyukumuku": 51.82086471576632, + "togedemaru": 1.914733285202456, + "mimikyu-disguised": 4.022827990218724, + "greedent": 2.2738171283098483, + "orbeetle": 1.5125585920922573, + "thievul": 1.7633276953901724, + "eldegoss": 3.611689189814572, + "dubwool": 3.1558838374395903, + "drednaw": 2.7134303967675986, + "boltund": 5.18336042179041, + "carkol": 2.4345036666190625, + "coalossal": 2.087452248727465, + "sandaconda": 4.741751813122258, + "cramorant": 5.502407544158393, + "barraskewda": 6.958857266207234, + "toxtricity-amped": 2.4772916272759327, + "centiskorch": 1.6129113259944017, + "grapploct": 1.8856922499610813, + "polteageist": 2.7031857348749244, + "hatterene": 2.6382970197165654, + "grimmsnarl": 4.038256517948156, + "obstagoon": 2.751473053906434, + "perrserker": 2.938175590403514, + "alcremie": 1.4565646022205865, + "falinks": 3.282125297770931, + "pincurchin": 3.3924624583616243, + "frosmoth": 2.0589818172713352, + "indeedee-male": 3.0749426299505025, + "morpeko": 2.963701956992473, + "copperajah": 2.0511114235488614, + "duraludon": 1.2337204875847498, + "drakloak": 3.8473388570922853 }, "dubwool": { - "ivysaur": 3.3504023464530874, - "charmeleon": 3.6654568435715387, - "wartortle": 2.821598945746026, - "butterfree": 4.910858078480535, - "raichu": 5.235333825112111, - "raichu-alola": 3.805961034696332, - "sandslash": 2.093025167949347, - "sandslash-alola": 2.409942843086628, - "nidoqueen": 2.9478533022103015, - "nidoking": 1.8431302030871728, - "clefairy": 9.15243243152482, - "clefable": 2.193367463383762, - "jigglypuff": 28.249419710433962, - "wigglytuff": 2.0874846458203153, - "gloom": 5.831957628120741, - "vileplume": 3.03883289380262, - "dugtrio": 4.127271003658651, - "dugtrio-alola": 3.744338962633206, - "persian": 4.6771528637961035, - "persian-alola": 4.655382296831439, - "golduck": 3.2809084448516694, - "poliwrath": 1.9221295359966035, - "kadabra": 4.449443232231527, - "machoke": 3.7380292361768035, - "tentacruel": 2.6461729537039504, - "slowbro": 1.7194749572414194, - "magneton": 3.1536994624118266, - "haunter": 3.6890417768718664, - "kingler": 2.244104056162724, - "exeggutor": 1.9472488270745052, - "marowak": 3.129019975033943, - "marowak-alola": 1.5308503761313705, - "hitmonlee": 2.4121386595324337, - "hitmonchan": 2.1774806870614465, - "lickitung": 2.0608325905659353, - "weezing": 1.3782438755257664, - "weezing-galar": 2.3542990952364997, - "rhydon": 2.580462875420352, - "chansey": 33.079672874869296, - "tangela": 4.43653080695461, - "kangaskhan": 2.0025692546480203, - "seadra": 3.9722090453863643, - "seaking": 2.703568446522353, - "starmie": 1.5297337754324398, - "mr-mime": 7.5473233360675165, - "mr-mime-galar": 3.8645189797861645, - "scyther": 2.7823744422346905, - "jynx": 4.950795829009657, - "electabuzz": 2.7790470190531424, - "magmar": 1.6041895221499227, - "tauros": 2.013223723241496, - "ditto": 3.667149320330723, - "vaporeon": 3.6410536955928836, - "jolteon": 2.191051676136835, - "flareon": 2.399076230096746, - "porygon": 3.039056623276047, - "dragonair": 1.944014318183228, - "noctowl": 6.472458692307559, - "lanturn": 2.158949324173042, - "togetic": 5.236694130289946, - "xatu": 3.903707031143365, - "bellossom": 2.398841500837557, - "azumarill": 2.3469038306503345, - "sudowoodo": 2.5105838373144644, - "politoed": 2.8415428326686185, - "quagsire": 5.913599729199921, - "slowking": 2.745385600474516, - "dunsparce": 3.6474263252467427, - "qwilfish": 3.315650672396045, - "sneasel": 3.190877562724604, - "piloswine": 1.6222530397558663, - "octillery": 2.4993421065751664, - "mantine": 2.7767787172259557, - "skarmory": 1.6463091525187488, - "hitmontop": 2.6776128949858884, - "miltank": 3.651045563046625, - "grovyle": 8.138665908549036, - "sceptile": 1.5053563555738814, - "combusken": 3.0071274327369264, - "blaziken": 1.4736979181398224, - "marshtomp": 3.587386682386234, - "swampert": 1.7948364080603487, - "linoone": 5.896077902210239, - "linoone-galar": 6.379303436683216, - "pelipper": 5.917425924845685, - "ninjask": 7.784406306006642, - "exploud": 1.7344885002940122, - "lairon": 2.720554942025478, - "manectric": 1.7575302319015396, - "roselia": 4.370437563095393, - "sharpedo": 5.61693088774563, - "wailmer": 6.992341420525991, - "torkoal": 1.483363931785064, - "flygon": 2.445349866664409, - "altaria": 1.5562736476014754, - "whiscash": 2.9437666309295096, - "crawdaunt": 2.0876780378399307, - "claydol": 3.55917889699311, - "cradily": 2.3930308083700607, - "armaldo": 1.6589098609551103, - "dusclops": 3.310734198348552, - "absol": 2.0892289271330116, - "glalie": 4.471233317098035, - "sealeo": 3.5001250057799247, - "relicanth": 2.2852262523560904, - "metang": 2.5169118667897896, - "luxray": 3.910150886691425, - "vespiquen": 2.721548516714586, - "cherrim": 5.975812640168979, - "gastrodon": 3.2455097469498213, - "drifblim": 3.3005044928388045, - "lopunny": 3.895452875979009, - "skuntank": 1.4047795988668943, - "bronzong": 2.765461234276949, - "munchlax": 2.646643909614308, - "drapion": 2.359511991562742, - "abomasnow": 3.4426163540901857, - "froslass": 2.6995788845457103, - "rotom": 3.4268792744171064, - "stoutland": 2.6035940130555346, - "liepard": 7.63501257325694, - "musharna": 1.5948425786485494, - "unfezant": 6.164380446661919, - "boldore": 3.055094046306751, - "swoobat": 5.576851001466409, - "audino": 2.3314462663323763, - "gurdurr": 1.9427395669823748, - "palpitoad": 5.45043089006737, - "seismitoad": 9.049047770426428, - "scolipede": 3.16344115013403, - "whimsicott": 3.156741177505454, - "lilligant": 3.0974252395208954, - "basculin-red-striped": 2.9483611040441424, - "basculin-blue-striped": 3.7954693064708986, - "krookodile": 3.06944007029466, - "maractus": 2.2567098884846715, - "crustle": 1.719392988517139, - "sigilyph": 2.3676573053620658, - "cofagrigus": 2.39009733285448, - "garbodor": 1.8477386896202221, - "cinccino": 4.9568464661499245, - "vanillish": 2.351439887911675, - "emolga": 3.1293119791098993, - "escavalier": 1.6177693240797448, - "amoonguss": 2.62684573915769, - "jellicent": 1.8077766121844694, - "galvantula": 1.625271915145349, - "klang": 2.8636348304222725, - "klinklang": 3.390024591741094, - "beheeyem": 1.9023930530491526, - "lampent": 1.6329661303574738, - "fraxure": 1.5369976413531752, - "beartic": 1.813865815474883, - "cryogonal": 2.12395684847988, - "accelgor": 3.302059863174266, - "stunfisk": 1.3930232435666916, - "stunfisk-galar": 2.364183921558044, - "mienshao": 3.2950619984198846, - "druddigon": 1.8911442410955894, - "golurk": 1.997129618088317, - "bisharp": 3.196405962020131, - "bouffalant": 1.3630483115612297, - "heatmor": 1.762823260485872, - "durant": 2.4437645720976455, - "diggersby": 3.5763632134100023, - "talonflame": 2.820147122135515, - "pangoro": 1.7692607163106788, - "doublade": 1.597017528238547, - "malamar": 2.8312808233269418, - "barbaracle": 1.906404268443763, - "heliolisk": 4.246196479601144, - "tyrantrum": 1.4574488852036698, - "aurorus": 3.3145218464324797, - "hawlucha": 3.3486414926379755, - "dedenne": 3.074250578986341, - "klefki": 2.6460627833048056, - "trevenant": 2.239787535750496, - "gourgeist-average": 3.949564896186816, - "charjabug": 3.9629881280085764, - "vikavolt": 1.8407417125366654, - "ribombee": 4.861010681010409, - "lycanroc-midday": 3.6939188140277093, - "lycanroc-midnight": 2.5230450282792996, - "mudsdale": 1.5335569141872665, - "araquanid": 2.5685114795414594, - "lurantis": 2.444742465202836, - "shiinotic": 4.626408562711843, - "salazzle": 3.034587466210683, - "bewear": 1.8364107386889885, - "tsareena": 3.182281590604164, - "comfey": 4.702187383052321, - "oranguru": 2.858917753038746, - "passimian": 2.1377594340014108, - "palossand": 2.153972187135505, - "pyukumuku": 42.981038909283114, - "togedemaru": 2.4314155245404807, - "mimikyu-disguised": 3.9795141623217667, - "greedent": 2.2261824780064527, - "orbeetle": 1.870332120813556, - "thievul": 1.9842525446841353, - "eldegoss": 4.112346907589706, - "drednaw": 1.6806345482098828, - "boltund": 4.8360448875085105, - "carkol": 2.267057887215719, - "coalossal": 1.8427557434935746, - "sandaconda": 3.0321210843668496, - "cramorant": 6.100517055022954, - "barraskewda": 4.813480299547827, - "toxtricity-amped": 2.718250946367662, - "centiskorch": 2.070473912708862, - "grapploct": 1.5787272492700473, - "polteageist": 2.4686588463964467, - "hatterene": 2.6012265847703366, - "grimmsnarl": 3.8701329465962053, - "obstagoon": 3.3320057545511306, - "perrserker": 3.167911172793285, - "alcremie": 1.5520941286636907, - "falinks": 2.8344281488298377, - "pincurchin": 2.9632012092401467, - "frosmoth": 2.820429530472696, - "indeedee-male": 3.4978848810639964, - "morpeko": 2.965740059753242, - "copperajah": 2.4258118386904295, - "duraludon": 1.4651946148244552, - "drakloak": 3.640586470685662, - "dubwool": 3.006716686766465 + "ivysaur": 3.349578497869434, + "charmeleon": 3.6600297249696503, + "wartortle": 2.8239980787643413, + "butterfree": 4.907569215782351, + "raichu": 5.235996819769152, + "raichu-alola": 3.806629534787273, + "sandslash": 2.093996101959272, + "sandslash-alola": 2.4109980563856643, + "nidoqueen": 2.9507599023106383, + "nidoking": 1.8430365906040616, + "clefairy": 9.14642024588917, + "clefable": 2.1947091354842687, + "jigglypuff": 28.273235534157028, + "wigglytuff": 2.0887263965483505, + "gloom": 5.828792198907684, + "vileplume": 3.0376619152998408, + "dugtrio": 4.135459673694761, + "dugtrio-alola": 3.750297906733177, + "persian": 4.682923798215216, + "persian-alola": 4.662309521062404, + "golduck": 3.28504711860328, + "poliwrath": 1.9230833628065005, + "kadabra": 4.451592106044052, + "machoke": 3.7371219913317004, + "tentacruel": 2.648610323022116, + "slowbro": 1.7184179451833659, + "magneton": 3.154315150791566, + "haunter": 3.685417332097852, + "kingler": 2.2429060802624914, + "exeggutor": 1.9458724438821375, + "marowak": 3.132118965491195, + "marowak-alola": 1.5266875973917529, + "hitmonlee": 2.4106402223075962, + "hitmonchan": 2.1776477911983365, + "lickitung": 2.06322279705169, + "weezing": 1.3761875593692539, + "weezing-galar": 2.350322777627413, + "rhydon": 2.581777071032025, + "chansey": 33.15230229639916, + "tangela": 4.432208089933357, + "kangaskhan": 2.005433687024075, + "seadra": 3.9718267542354995, + "seaking": 2.7085867003018658, + "starmie": 1.5308925970234615, + "mr-mime": 7.549375851074938, + "mr-mime-galar": 3.8652981920662404, + "scyther": 2.780703143798256, + "jynx": 4.955261317518375, + "electabuzz": 2.7813246002876024, + "magmar": 1.6023532656410624, + "tauros": 2.0141965549328598, + "ditto": 3.6419394437128725, + "vaporeon": 3.6479712078416866, + "jolteon": 2.1957218704190895, + "flareon": 2.400697563968348, + "porygon": 3.0431165104463176, + "dragonair": 1.9446805334443638, + "noctowl": 6.477504383437756, + "lanturn": 2.1636115591764393, + "togetic": 5.229697671331645, + "xatu": 3.9013477364918945, + "bellossom": 2.3991084449583013, + "azumarill": 2.344365917060691, + "sudowoodo": 2.5108123190925795, + "politoed": 2.846421322280171, + "quagsire": 5.917786007730183, + "slowking": 2.748286117227783, + "dunsparce": 3.6558563837859666, + "qwilfish": 3.3153215131494647, + "sneasel": 3.1986764290100815, + "piloswine": 1.6235695231171645, + "octillery": 2.502368689473351, + "mantine": 2.780063725407851, + "skarmory": 1.6451633452188308, + "hitmontop": 2.6779269986321954, + "miltank": 3.6539185978693496, + "grovyle": 8.136533878239858, + "sceptile": 1.5059910624122563, + "combusken": 3.001184876060141, + "blaziken": 1.4710772285922675, + "marshtomp": 3.5957608951061104, + "swampert": 1.7988832822752134, + "linoone": 5.909528606113552, + "linoone-galar": 6.393630188323002, + "pelipper": 5.914929469941777, + "ninjask": 7.779576048661267, + "exploud": 1.7354871742216709, + "lairon": 2.7222667559797618, + "manectric": 1.7573475346269867, + "roselia": 4.370219491006077, + "sharpedo": 5.628544867908028, + "wailmer": 7.002266155377299, + "torkoal": 1.4799533435722378, + "flygon": 2.4467598528564825, + "altaria": 1.554498242871953, + "whiscash": 2.949874499086358, + "crawdaunt": 2.090436940355268, + "claydol": 3.56087263529548, + "cradily": 2.394608279097522, + "armaldo": 1.6586756539164478, + "dusclops": 3.313039260954794, + "absol": 2.0911214878854953, + "glalie": 4.476915083083467, + "sealeo": 3.506366735027206, + "relicanth": 2.287898786276967, + "metang": 2.5157878674584087, + "luxray": 3.91199540854704, + "vespiquen": 2.718593722516953, + "cherrim": 5.9754484285918705, + "gastrodon": 3.2534725254282044, + "drifblim": 3.2909341015734457, + "lopunny": 3.8988274755656467, + "skuntank": 1.405180838850503, + "bronzong": 2.7655997080223744, + "munchlax": 2.6513579631953323, + "drapion": 2.360589877218578, + "abomasnow": 3.444643051606324, + "froslass": 2.6978501521494254, + "rotom": 3.4267046668057963, + "stoutland": 2.6062240077910355, + "liepard": 7.64767240157967, + "musharna": 1.5948830005710133, + "unfezant": 6.165951829845051, + "boldore": 3.0539318102401616, + "swoobat": 5.5732840915965856, + "audino": 2.331911254679352, + "gurdurr": 1.9397456146215544, + "palpitoad": 5.462427169362513, + "seismitoad": 9.062280286522682, + "scolipede": 3.1614254360992575, + "whimsicott": 3.155959583700424, + "lilligant": 3.0975223138145487, + "basculin-red-striped": 2.952089531350597, + "basculin-blue-striped": 3.799997448432448, + "krookodile": 3.0750848271550253, + "maractus": 2.2575663479308687, + "crustle": 1.7173242747491229, + "sigilyph": 2.3661215904486887, + "cofagrigus": 2.3897370110611558, + "garbodor": 1.8462295029904148, + "cinccino": 4.96315882337622, + "vanillish": 2.353907067529306, + "emolga": 3.1296601662165457, + "escavalier": 1.6174680936355357, + "amoonguss": 2.6255795305048713, + "jellicent": 1.8076502254466424, + "galvantula": 1.6248163238906934, + "klang": 2.8657192010700347, + "klinklang": 3.3917513336997906, + "beheeyem": 1.902555787773263, + "lampent": 1.6257563608289325, + "fraxure": 1.5369048795666553, + "beartic": 1.8146477167488422, + "cryogonal": 2.1285935669425466, + "accelgor": 3.3014478937173894, + "stunfisk": 1.3948789996405802, + "stunfisk-galar": 2.366633235248366, + "mienshao": 3.294072505608559, + "druddigon": 1.8925433330779446, + "golurk": 1.9962154950571271, + "bisharp": 3.201923453819173, + "bouffalant": 1.3628558527009185, + "heatmor": 1.7606655594818807, + "durant": 2.4406578939524053, + "diggersby": 3.5839440690406814, + "talonflame": 2.8164108395625296, + "pangoro": 1.7700245361687772, + "doublade": 1.5914408001099458, + "malamar": 2.8316033446480082, + "barbaracle": 1.9090007389905943, + "heliolisk": 4.255118619211039, + "tyrantrum": 1.4564416698615925, + "aurorus": 3.3209054085253102, + "hawlucha": 3.3446692128091655, + "dedenne": 3.075765673858557, + "klefki": 2.6465368016824846, + "trevenant": 2.2323625077314455, + "gourgeist-average": 3.939811121088036, + "charjabug": 3.9626797354347065, + "vikavolt": 1.8404559372816545, + "ribombee": 4.859111534813461, + "lycanroc-midday": 3.6993953834638944, + "lycanroc-midnight": 2.5251425597602024, + "mudsdale": 1.533529812708125, + "araquanid": 2.570967108850244, + "lurantis": 2.4445676137329855, + "shiinotic": 4.62516899791119, + "salazzle": 3.0278175750187084, + "bewear": 1.8377029460409853, + "tsareena": 3.183514156190684, + "comfey": 4.705010944235415, + "oranguru": 2.860664305635476, + "passimian": 2.136435993805468, + "palossand": 2.1545853445630385, + "pyukumuku": 42.96376175640586, + "togedemaru": 2.433752921133631, + "mimikyu-disguised": 3.9815046863713075, + "greedent": 2.2284228709031852, + "orbeetle": 1.8687302049110297, + "thievul": 1.9869632482471231, + "eldegoss": 4.113307798345623, + "dubwool": 3.006716686766465, + "drednaw": 1.683487383743938, + "boltund": 4.839766177913175, + "carkol": 2.263740469321654, + "coalossal": 1.8407508949183136, + "sandaconda": 3.033326875540045, + "cramorant": 6.106066874805007, + "barraskewda": 4.819035068536216, + "toxtricity-amped": 2.716608238463973, + "centiskorch": 2.0679420001868865, + "grapploct": 1.5764932481803515, + "polteageist": 2.4652187088847954, + "hatterene": 2.6014073161742606, + "grimmsnarl": 3.871139722854758, + "obstagoon": 3.3382236191203036, + "perrserker": 3.1693016776749863, + "alcremie": 1.5522377448200282, + "falinks": 2.831765862054217, + "pincurchin": 2.9646506039844605, + "frosmoth": 2.8197889151525914, + "indeedee-male": 3.5011952871150402, + "morpeko": 2.97023200213389, + "copperajah": 2.4263005739149337, + "duraludon": 1.4652668724999909, + "drakloak": 3.6351599667083403 }, "drednaw": { - "ivysaur": 2.681511345923246, - "charmeleon": 6.483325553377371, - "wartortle": 2.8885817792335975, - "butterfree": 9.745219960191388, - "raichu": 5.085883791014769, - "raichu-alola": 4.137968835075686, - "sandslash": 2.682380149424729, - "sandslash-alola": 2.0252044015269655, - "nidoqueen": 3.8855530629793593, - "nidoking": 2.6701804483362457, - "clefairy": 10.157920114565094, - "clefable": 2.542518373986983, - "jigglypuff": 33.55137521879735, - "wigglytuff": 2.463479775403145, - "gloom": 6.348587722913596, - "vileplume": 2.4680834207702906, - "dugtrio": 5.577650593476444, - "dugtrio-alola": 5.236151528118998, - "persian": 5.078337522646246, - "persian-alola": 5.067273676035773, - "golduck": 3.431014951548928, - "poliwrath": 1.6519045719329166, - "kadabra": 5.219423021503333, - "machoke": 4.012663570699369, - "tentacruel": 2.8778192740568596, - "slowbro": 2.0097410643685083, - "magneton": 2.9794356331522693, - "haunter": 4.270245521238894, - "kingler": 2.2386184620190304, - "exeggutor": 2.4850112247953735, - "marowak": 4.041152734395526, - "marowak-alola": 3.102964060614604, - "hitmonlee": 2.77350127398545, - "hitmonchan": 2.458751408431083, - "lickitung": 2.097883614788904, - "weezing": 1.7184171810029096, - "weezing-galar": 2.965726333664768, - "rhydon": 3.386047736625218, - "chansey": 36.90750193721383, - "tangela": 3.7615741665989355, - "kangaskhan": 2.0460422282109136, - "seadra": 4.0665127562587315, - "seaking": 2.774018254093625, - "starmie": 1.7125495010143723, - "mr-mime": 8.93813135245695, - "mr-mime-galar": 5.761443809926508, - "scyther": 6.164222823536431, - "jynx": 7.787628510541685, - "electabuzz": 2.530128355677715, - "magmar": 3.1011426115184526, - "tauros": 2.0274856673702892, - "ditto": 1.8585628638721934, - "vaporeon": 3.8250549410218957, - "jolteon": 2.2093206516018213, - "flareon": 4.646310306697915, - "porygon": 3.0428040434208237, - "dragonair": 2.077918935340335, - "noctowl": 10.659408070724496, - "lanturn": 2.061625800601175, - "togetic": 8.88514663237337, - "xatu": 5.71816903188987, - "bellossom": 2.2442706437511646, - "azumarill": 2.569317477758531, - "sudowoodo": 3.0879383649795886, - "politoed": 2.797455557876456, - "quagsire": 4.517860544957972, - "slowking": 3.1145105115346716, - "dunsparce": 3.6646186533076053, - "qwilfish": 3.6327486408801906, - "sneasel": 3.382316957592683, - "piloswine": 2.210525120672104, - "octillery": 2.56141858713013, - "mantine": 4.455682166691234, - "skarmory": 2.049716992870974, - "hitmontop": 2.8360995819229777, - "miltank": 3.9009656650754896, - "grovyle": 7.147196159813308, - "sceptile": 1.3819325414975592, - "combusken": 4.759428703951053, - "blaziken": 2.4861742822330273, - "marshtomp": 2.6981706462198307, - "swampert": 1.3456677557114385, - "linoone": 5.937996323837295, - "linoone-galar": 5.3785400593917, - "pelipper": 8.963795762431992, - "ninjask": 16.56873293625162, - "exploud": 1.8668301949413162, - "lairon": 2.8420192530082398, - "manectric": 1.9711263210470498, - "roselia": 3.658701280066029, - "sharpedo": 6.020244685504309, - "wailmer": 7.290782010628274, - "torkoal": 2.7463264026069383, - "flygon": 2.5370054186550366, - "altaria": 2.5567221527161763, - "whiscash": 2.260492918133159, - "crawdaunt": 2.2091352173516974, - "claydol": 5.017212108888867, - "cradily": 2.236680918548209, - "armaldo": 2.542787161151418, - "dusclops": 3.7320576776661496, - "absol": 2.4697936894617722, - "glalie": 6.19659074398319, - "sealeo": 4.729755511285923, - "relicanth": 1.8878270919143887, - "metang": 3.0185341373712613, - "luxray": 3.886711303570838, - "vespiquen": 5.9448598903821495, - "cherrim": 5.201663613915612, - "gastrodon": 2.5147532687958867, - "drifblim": 6.15032840629565, - "lopunny": 4.199290601888658, - "skuntank": 1.6802846332085104, - "bronzong": 3.550762377686541, - "munchlax": 2.897767545722536, - "drapion": 2.532950794981201, - "abomasnow": 4.0595842291975, - "froslass": 4.521102805729418, - "rotom": 3.7613268350384885, - "stoutland": 2.8916197507256505, - "liepard": 8.40601215367795, - "musharna": 1.5944110868052666, - "unfezant": 9.309486620226316, - "boldore": 3.6532120522313187, - "swoobat": 8.19431742117494, - "audino": 2.6972036395581114, - "gurdurr": 2.0084566490361824, - "palpitoad": 3.9630666012710316, - "seismitoad": 7.541102591988066, - "scolipede": 4.496232763087698, - "whimsicott": 3.0715586317964707, - "lilligant": 2.6457995470893443, - "basculin-red-striped": 3.0789097020471, - "basculin-blue-striped": 3.879179491427383, - "krookodile": 3.7940366903161653, - "maractus": 1.8382984129592534, - "crustle": 2.6322907713671113, - "sigilyph": 3.434055818234295, - "cofagrigus": 2.6480584433190475, - "garbodor": 2.065539342344798, - "cinccino": 5.4705664724359835, - "vanillish": 3.451172669273053, - "emolga": 4.043601430704637, - "escavalier": 1.9476991418786667, - "amoonguss": 2.357461733564326, - "jellicent": 1.9066906306178772, - "galvantula": 2.05635332674831, - "klang": 2.7563838258382503, - "klinklang": 3.65914409967012, - "beheeyem": 2.1969014972638896, - "lampent": 4.5994203428111, - "fraxure": 1.6524393537681843, - "beartic": 2.5557086122787624, - "cryogonal": 2.9758105954332947, - "accelgor": 4.8723280683039185, - "stunfisk": 1.7753956137836466, - "stunfisk-galar": 3.1293416469588013, - "mienshao": 3.581171493730277, - "druddigon": 1.996923854071128, - "golurk": 2.6214110667652495, - "bisharp": 2.5910107765611805, - "bouffalant": 1.4250303257979886, - "heatmor": 2.841038846649675, - "durant": 2.803955895921485, - "diggersby": 4.495471929928447, - "talonflame": 7.104827775416057, - "pangoro": 1.8087739321627128, - "doublade": 2.1219073260891625, - "malamar": 4.205894352646646, - "barbaracle": 1.608951052133055, - "heliolisk": 3.958203054118342, - "tyrantrum": 1.6460156204741314, - "aurorus": 3.7767800462240557, - "hawlucha": 3.6578863250789473, - "dedenne": 3.059567427104227, - "klefki": 3.3892616550462966, - "trevenant": 2.605119913917122, - "gourgeist-average": 5.442492837787679, - "charjabug": 5.173981279011832, - "vikavolt": 2.54284002983337, - "ribombee": 7.023693964555448, - "lycanroc-midday": 4.931634544221772, - "lycanroc-midnight": 3.340811178694366, - "mudsdale": 2.069679298076217, - "araquanid": 4.022411987263963, - "lurantis": 2.3217750749357293, - "shiinotic": 5.452187111296835, - "salazzle": 5.0542552938795335, - "bewear": 2.004957957075377, - "tsareena": 2.9721399890858082, - "comfey": 4.441613902626668, - "oranguru": 3.28310051199365, - "passimian": 2.321296678009372, - "palossand": 2.598533306066903, - "pyukumuku": 48.251054533368226, - "togedemaru": 2.384918411418275, - "mimikyu-disguised": 5.500531846010402, - "greedent": 2.351959814354065, - "orbeetle": 2.607346041617671, - "thievul": 2.3978906410168905, - "eldegoss": 3.474734003492344, - "dubwool": 2.8608218681992867, - "boltund": 4.7428593956466925, - "carkol": 4.97123686212223, - "coalossal": 3.8976176860129605, - "sandaconda": 3.7815013749931037, - "cramorant": 9.343153340780766, - "barraskewda": 4.965236987719252, - "toxtricity-amped": 2.8776099078539836, - "centiskorch": 5.176509884246315, - "grapploct": 1.6649727719579857, - "polteageist": 2.7004654810896493, - "hatterene": 3.038425145377414, - "grimmsnarl": 4.558753648742384, - "obstagoon": 2.823755065212781, - "perrserker": 3.1752497900455596, - "alcremie": 1.7776527370607513, - "falinks": 3.0207509613820083, - "pincurchin": 2.9226091811052064, - "frosmoth": 6.140748567144257, - "indeedee-male": 4.155701348031221, - "morpeko": 2.985696168192168, - "copperajah": 2.534411861806073, - "duraludon": 1.2038704244393825, - "drakloak": 4.994576720027889, - "drednaw": 1.3519480892037419 + "ivysaur": 2.6718355881943268, + "charmeleon": 6.514916943010325, + "wartortle": 2.8901182195024173, + "butterfree": 9.746521423491155, + "raichu": 5.082063862728656, + "raichu-alola": 4.142185367013713, + "sandslash": 2.685025706437604, + "sandslash-alola": 2.0265061674568425, + "nidoqueen": 3.8884463226373143, + "nidoking": 2.6744518864415543, + "clefairy": 10.161447132202493, + "clefable": 2.549453283623005, + "jigglypuff": 33.64199863733079, + "wigglytuff": 2.47010242181163, + "gloom": 6.359667988957953, + "vileplume": 2.459377299299598, + "dugtrio": 5.584332609096174, + "dugtrio-alola": 5.241603253485873, + "persian": 5.094648345478369, + "persian-alola": 5.081798513046058, + "golduck": 3.4357376649040248, + "poliwrath": 1.648441609049405, + "kadabra": 5.2378436378069635, + "machoke": 4.014011796155155, + "tentacruel": 2.882497498453495, + "slowbro": 2.012669228235552, + "magneton": 2.9741055750114636, + "haunter": 4.265012889357242, + "kingler": 2.2360799042514614, + "exeggutor": 2.481420539536331, + "marowak": 4.045138751626601, + "marowak-alola": 3.1162130035707696, + "hitmonlee": 2.776269288708436, + "hitmonchan": 2.462457481205107, + "lickitung": 2.1008368621736673, + "weezing": 1.722152566232575, + "weezing-galar": 2.9732614042159557, + "rhydon": 3.3890626540754507, + "chansey": 37.08313078322822, + "tangela": 3.745067330404032, + "kangaskhan": 2.0504427316986487, + "seadra": 4.065614995185817, + "seaking": 2.7782699088080527, + "starmie": 1.7154542174929515, + "mr-mime": 8.966058862109765, + "mr-mime-galar": 5.782927445371854, + "scyther": 6.187971046195294, + "jynx": 7.812980249524758, + "electabuzz": 2.529490258304846, + "magmar": 3.1187065772038043, + "tauros": 2.0292674241025237, + "ditto": 1.851156534411888, + "vaporeon": 3.826437545549555, + "jolteon": 2.2105783643400234, + "flareon": 4.669492717098512, + "porygon": 3.047806192201433, + "dragonair": 2.0799782818044723, + "noctowl": 10.707766970082936, + "lanturn": 2.061668303711552, + "togetic": 8.92757417753781, + "xatu": 5.734625473364323, + "bellossom": 2.236900632702642, + "azumarill": 2.5766930314605174, + "sudowoodo": 3.0917841402013364, + "politoed": 2.7989784532384627, + "quagsire": 4.514512864207059, + "slowking": 3.1215189655822915, + "dunsparce": 3.674554686035651, + "qwilfish": 3.6366082459200784, + "sneasel": 3.3961571645291695, + "piloswine": 2.216664983971514, + "octillery": 2.5637630259021664, + "mantine": 4.4639737315078145, + "skarmory": 2.0528342675669062, + "hitmontop": 2.8370333610249063, + "miltank": 3.9103524564747776, + "grovyle": 7.122689773114697, + "sceptile": 1.3763337715648238, + "combusken": 4.764796866194408, + "blaziken": 2.492847005351524, + "marshtomp": 2.700647157772104, + "swampert": 1.3455758934300206, + "linoone": 5.9542219955980915, + "linoone-galar": 5.390531642445389, + "pelipper": 8.987834460187145, + "ninjask": 16.61191636949156, + "exploud": 1.8708307871914962, + "lairon": 2.844258258652749, + "manectric": 1.9745495925991685, + "roselia": 3.6490515127933563, + "sharpedo": 6.03121195348279, + "wailmer": 7.301442999307978, + "torkoal": 2.7585782791566182, + "flygon": 2.539054723256524, + "altaria": 2.5622223837759615, + "whiscash": 2.263409868747342, + "crawdaunt": 2.2121109048108716, + "claydol": 5.030191801164465, + "cradily": 2.235623153368093, + "armaldo": 2.5514597335786733, + "dusclops": 3.740086517966276, + "absol": 2.479547406526211, + "glalie": 6.220381317725451, + "sealeo": 4.741401486765336, + "relicanth": 1.889332328790665, + "metang": 3.0200931392144534, + "luxray": 3.8869161429057595, + "vespiquen": 5.963108988077932, + "cherrim": 5.184152763518087, + "gastrodon": 2.519527981110124, + "drifblim": 6.153639118908339, + "lopunny": 4.210441866828673, + "skuntank": 1.686065174134927, + "bronzong": 3.5573199643682516, + "munchlax": 2.9092016055978083, + "drapion": 2.5388950114859083, + "abomasnow": 4.061430333764352, + "froslass": 4.5394483405942285, + "rotom": 3.7619771284331467, + "stoutland": 2.9016091766628893, + "liepard": 8.431257622723425, + "musharna": 1.5941013473527095, + "unfezant": 9.345762430691245, + "boldore": 3.65567552969146, + "swoobat": 8.217962392808001, + "audino": 2.7057705542134434, + "gurdurr": 2.005296678360602, + "palpitoad": 3.9635372255387766, + "seismitoad": 7.557283442698462, + "scolipede": 4.506679720221976, + "whimsicott": 3.0673524404971295, + "lilligant": 2.636324678150655, + "basculin-red-striped": 3.08320651973879, + "basculin-blue-striped": 3.882593897358263, + "krookodile": 3.7991182048517023, + "maractus": 1.828568266392216, + "crustle": 2.6399993306928877, + "sigilyph": 3.4430619123873862, + "cofagrigus": 2.6511836785752427, + "garbodor": 2.0704073648667896, + "cinccino": 5.4903259479184925, + "vanillish": 3.4661791996082743, + "emolga": 4.045742242316199, + "escavalier": 1.9497395380590108, + "amoonguss": 2.3530209506580926, + "jellicent": 1.907510739024913, + "galvantula": 2.05569397265949, + "klang": 2.7542321884361867, + "klinklang": 3.6640905068087495, + "beheeyem": 2.2026866131512195, + "lampent": 4.625750668027071, + "fraxure": 1.6548245315890298, + "beartic": 2.563196917708293, + "cryogonal": 2.9839984307536422, + "accelgor": 4.885334948276641, + "stunfisk": 1.774012335868878, + "stunfisk-galar": 3.12947783338625, + "mienshao": 3.58285092566513, + "druddigon": 2.00043164939175, + "golurk": 2.623329774720355, + "bisharp": 2.594441739922458, + "bouffalant": 1.4284760158535297, + "heatmor": 2.8498064582158573, + "durant": 2.8035315085328665, + "diggersby": 4.500835119253702, + "talonflame": 7.140521807801916, + "pangoro": 1.809715348316562, + "doublade": 2.121140142419058, + "malamar": 4.212614843758226, + "barbaracle": 1.612411197543631, + "heliolisk": 3.948500982230472, + "tyrantrum": 1.648140527987147, + "aurorus": 3.7893594741211185, + "hawlucha": 3.661220198116214, + "dedenne": 3.0606613197608894, + "klefki": 3.394625257006612, + "trevenant": 2.5983208856339592, + "gourgeist-average": 5.453524563910531, + "charjabug": 5.173313239337668, + "vikavolt": 2.546079489251461, + "ribombee": 7.042413242701356, + "lycanroc-midday": 4.949371941699157, + "lycanroc-midnight": 3.349974640163107, + "mudsdale": 2.0708225092839925, + "araquanid": 4.0303522236764575, + "lurantis": 2.3174223010739947, + "shiinotic": 5.4639027450816595, + "salazzle": 5.08012053794576, + "bewear": 2.0086929644811202, + "tsareena": 2.966892879265265, + "comfey": 4.4355985016946935, + "oranguru": 3.291405336220204, + "passimian": 2.321919464915615, + "palossand": 2.5993170160709655, + "pyukumuku": 48.28290491762509, + "togedemaru": 2.385496421176014, + "mimikyu-disguised": 5.52305426437864, + "greedent": 2.3576048086411774, + "orbeetle": 2.613428226819816, + "thievul": 2.4060974487109363, + "eldegoss": 3.462096432951522, + "dubwool": 2.85976219942276, + "drednaw": 1.3519480892037419, + "boltund": 4.74325286624552, + "carkol": 4.995220222145011, + "coalossal": 3.912222842185616, + "sandaconda": 3.7823344844521776, + "cramorant": 9.365642586165784, + "barraskewda": 4.9703588432227, + "toxtricity-amped": 2.875387270343831, + "centiskorch": 5.198840281373612, + "grapploct": 1.663063045309109, + "polteageist": 2.6987828975895543, + "hatterene": 3.0469484811893324, + "grimmsnarl": 4.56946094188511, + "obstagoon": 2.828151113807394, + "perrserker": 3.1746823430922513, + "alcremie": 1.780421011822951, + "falinks": 3.019566541641553, + "pincurchin": 2.920404985640766, + "frosmoth": 6.164843129627718, + "indeedee-male": 4.170258101599402, + "morpeko": 2.9876258011840235, + "copperajah": 2.5349897453860004, + "duraludon": 1.2017137497443198, + "drakloak": 5.002181260034629 }, "boltund": { - "ivysaur": 2.915458797424505, - "charmeleon": 3.6975684820375667, - "wartortle": 3.3501679571324186, - "butterfree": 4.9698151328173275, - "raichu": 5.1349360035911245, - "raichu-alola": 4.499409628964715, - "sandslash": 1.6723620314384564, - "sandslash-alola": 2.0180994458809423, - "nidoqueen": 2.2826593168498768, - "nidoking": 1.5655798445501818, - "clefairy": 8.343866885155114, - "clefable": 1.831777964679909, - "jigglypuff": 24.727686022164114, - "wigglytuff": 1.818256113934273, - "gloom": 5.085110061495736, - "vileplume": 2.6566744897675516, - "dugtrio": 3.135600078797321, - "dugtrio-alola": 2.9914887925416553, - "persian": 3.984353461889272, - "persian-alola": 3.8667953375373134, - "golduck": 3.722304672477004, - "poliwrath": 2.351429946567836, - "kadabra": 5.010347420358068, - "machoke": 3.725272414725983, - "tentacruel": 2.560066045076101, - "slowbro": 2.266162469589398, - "magneton": 3.022544248934284, - "haunter": 5.5297239706508705, - "kingler": 3.391597912712917, - "exeggutor": 2.013216015204856, - "marowak": 2.5034480781810697, - "marowak-alola": 2.2809366637529846, - "hitmonlee": 2.060129681306007, - "hitmonchan": 1.9765768699878405, - "lickitung": 1.8231770980328341, - "weezing": 1.571263202146651, - "weezing-galar": 2.622361591717641, - "rhydon": 1.790297058117989, - "chansey": 26.52283990988351, - "tangela": 4.1964543687596985, - "kangaskhan": 1.670883897372065, - "seadra": 5.835541032187191, - "seaking": 2.7821778917096633, - "starmie": 1.7738626956147554, - "mr-mime": 6.506708820363633, - "mr-mime-galar": 4.229830488202422, - "scyther": 3.339792608909198, - "jynx": 5.604096835749914, - "electabuzz": 2.6693178755195284, - "magmar": 1.5765384783506153, - "tauros": 1.858246737492838, - "ditto": 5.272844304412645, - "vaporeon": 3.576306943665386, - "jolteon": 1.8934604467989016, - "flareon": 2.2545472092366126, - "porygon": 2.683378761783535, - "dragonair": 1.687689117434593, - "noctowl": 6.512027079226977, - "lanturn": 1.8576319529999767, - "togetic": 6.279080103927809, - "xatu": 4.949075967714745, - "bellossom": 2.083056701969011, - "azumarill": 2.982452807602182, - "sudowoodo": 2.4275390742466425, - "politoed": 2.758044953757472, - "quagsire": 4.037080107310453, - "slowking": 2.978639212064052, - "dunsparce": 3.1734186676378675, - "qwilfish": 4.625950715907111, - "sneasel": 2.0615225750363164, - "piloswine": 1.373525927002069, - "octillery": 2.952008680897237, - "mantine": 3.856724861546005, - "skarmory": 3.175098562370235, - "hitmontop": 2.3270286247074434, - "miltank": 3.495995129444781, - "grovyle": 7.396660384038958, - "sceptile": 1.3195369558940602, - "combusken": 3.139188658834181, - "blaziken": 1.5232783995195516, - "marshtomp": 2.124110339025557, - "swampert": 1.07026326804336, - "linoone": 4.8596116741090425, - "linoone-galar": 4.318043293406094, - "pelipper": 12.363343611043522, - "ninjask": 8.565386508830937, - "exploud": 1.5147098350449906, - "lairon": 2.602347242878276, - "manectric": 1.6258079249621584, - "roselia": 3.7737895203046703, - "sharpedo": 6.08207188577255, - "wailmer": 8.46206337706824, - "torkoal": 1.8845469402922648, - "flygon": 2.0990559391866395, - "altaria": 1.4925807611787332, - "whiscash": 1.8365244242431924, - "crawdaunt": 2.6088205241573013, - "claydol": 3.810103800958299, - "cradily": 2.0519887389265294, - "armaldo": 1.6896782156693155, - "dusclops": 3.920594157141619, - "absol": 1.8461144451549556, - "glalie": 3.9848821845006284, - "sealeo": 3.8182306095082597, - "relicanth": 2.5258243314773363, - "metang": 3.4419736834056938, - "luxray": 3.6051249990122205, - "vespiquen": 3.3629751127160796, - "cherrim": 5.251507274946825, - "gastrodon": 1.963704715757612, - "drifblim": 5.641899151940838, - "lopunny": 3.5078076337064203, - "skuntank": 1.3819716227701548, - "bronzong": 3.822759838752562, - "munchlax": 2.236996296746957, - "drapion": 2.448620982656288, - "abomasnow": 2.879729232012278, - "froslass": 3.326423907025463, - "rotom": 4.675744218031179, - "stoutland": 2.241997880001658, - "liepard": 6.560803330549536, - "musharna": 1.7673392822874219, - "unfezant": 9.148007992184354, - "boldore": 3.2353355668525476, - "swoobat": 7.0859633449204456, - "audino": 2.0740270754646115, - "gurdurr": 2.1131630538651582, - "palpitoad": 3.220330013779911, - "seismitoad": 5.6283956749478605, - "scolipede": 3.0905654594081975, - "whimsicott": 2.5850969091581826, - "lilligant": 2.718560395821921, - "basculin-red-striped": 3.5496679444422496, - "basculin-blue-striped": 4.602197883181616, - "krookodile": 2.0440681131074467, - "maractus": 1.9725393471582813, - "crustle": 2.0416029987499753, - "sigilyph": 3.0506418987325907, - "cofagrigus": 2.810423381119259, - "garbodor": 1.775021399578309, - "cinccino": 4.297493845278854, - "vanillish": 2.0028722376581913, - "emolga": 3.2451099310174145, - "escavalier": 1.6113573742005496, - "amoonguss": 2.285324947387654, - "jellicent": 1.977860090680558, - "galvantula": 1.5490567230942736, - "klang": 2.8599507214025923, - "klinklang": 3.462863828548403, - "beheeyem": 2.1243046979459654, - "lampent": 2.9533853867411413, - "fraxure": 1.318212085566976, - "beartic": 1.6297393299374523, - "cryogonal": 1.7219906738292543, - "accelgor": 2.836343022783562, - "stunfisk": 1.1487150835948072, - "stunfisk-galar": 1.8337576411745637, - "mienshao": 3.1519093503003024, - "druddigon": 1.6503352108133769, - "golurk": 2.0529924949734055, - "bisharp": 2.3578387730214545, - "bouffalant": 1.2444818926022376, - "heatmor": 1.8130250665190983, - "durant": 3.2991665398135837, - "diggersby": 2.5945894957082114, - "talonflame": 3.841105427040741, - "pangoro": 1.6834295707567415, - "doublade": 2.783207736950489, - "malamar": 2.752533161218415, - "barbaracle": 1.827913593910282, - "heliolisk": 3.4894282399080723, - "tyrantrum": 1.3364459828330666, - "aurorus": 2.352920720385474, - "hawlucha": 4.398787603115718, - "dedenne": 2.3281967872519806, - "klefki": 3.05201480707043, - "trevenant": 3.5218137269114225, - "gourgeist-average": 5.414300850082669, - "charjabug": 3.493751986733194, - "vikavolt": 1.5846375119187996, - "ribombee": 4.253890407903655, - "lycanroc-midday": 3.1694161585901117, - "lycanroc-midnight": 2.231085924637579, - "mudsdale": 1.3206865247493655, - "araquanid": 2.6869311618704255, - "lurantis": 2.1307704798242426, - "shiinotic": 3.503192926553525, - "salazzle": 3.0673203467812433, - "bewear": 1.6864149338376995, - "tsareena": 2.872196041606827, - "comfey": 4.067071424686311, - "oranguru": 3.1940702695981975, - "passimian": 2.3480973145380934, - "palossand": 1.9800496489266066, - "pyukumuku": 54.28341650187276, - "togedemaru": 2.2277053762996992, - "mimikyu-disguised": 3.761647359840029, - "greedent": 2.0823182540450444, - "orbeetle": 2.058730337192717, - "thievul": 1.602015969724143, - "eldegoss": 3.595112011301709, - "dubwool": 2.7749399120146316, - "drednaw": 1.5956204261384959, - "carkol": 2.2779927260472217, - "coalossal": 1.8856319337506768, - "sandaconda": 2.4151002350199, - "cramorant": 8.469603528746081, - "barraskewda": 5.817180246663267, - "toxtricity-amped": 2.4230796892328277, - "centiskorch": 1.836946013950246, - "grapploct": 1.6015409719271958, - "polteageist": 3.4843174316157466, - "hatterene": 2.3581408795355876, - "grimmsnarl": 3.533414322293008, - "obstagoon": 2.467244805848006, - "perrserker": 3.4539332902419444, - "alcremie": 1.2541410752814888, - "falinks": 3.1793065592820033, - "pincurchin": 2.76909894944772, - "frosmoth": 2.5149492331424987, - "indeedee-male": 3.9536980064807503, - "morpeko": 2.333726667544102, - "copperajah": 2.4427013317823536, - "duraludon": 1.3723192983056522, - "drakloak": 5.25824099114756, - "boltund": 4.4302963047826545 + "ivysaur": 2.9101863546885545, + "charmeleon": 3.6937432009613147, + "wartortle": 3.3500478661980315, + "butterfree": 4.965599738554357, + "raichu": 5.128760533286344, + "raichu-alola": 4.500201751219571, + "sandslash": 1.6654235370278123, + "sandslash-alola": 2.015685387315462, + "nidoqueen": 2.2738214398091934, + "nidoking": 1.560680597292466, + "clefairy": 8.33138592898395, + "clefable": 1.8290394231018348, + "jigglypuff": 24.685187153263698, + "wigglytuff": 1.8146035767412099, + "gloom": 5.074745013692475, + "vileplume": 2.6517670494075447, + "dugtrio": 3.1224737948936143, + "dugtrio-alola": 2.982804015551869, + "persian": 3.977063574941658, + "persian-alola": 3.8592939545462155, + "golduck": 3.7207657697645775, + "poliwrath": 2.34988368926423, + "kadabra": 5.008976571957419, + "machoke": 3.71974352247162, + "tentacruel": 2.5594106500106335, + "slowbro": 2.267104066116766, + "magneton": 3.023373797803734, + "haunter": 5.532930647652421, + "kingler": 3.389273683545369, + "exeggutor": 2.009352052300733, + "marowak": 2.494353829795701, + "marowak-alola": 2.282746809123517, + "hitmonlee": 2.056385731934399, + "hitmonchan": 1.9741395285921461, + "lickitung": 1.8214476867336242, + "weezing": 1.5692912081330959, + "weezing-galar": 2.6185425106931217, + "rhydon": 1.7824041847477623, + "chansey": 26.46982797285256, + "tangela": 4.186240117002823, + "kangaskhan": 1.667200417230694, + "seadra": 5.833220819647401, + "seaking": 2.7800113369009676, + "starmie": 1.7751023262603876, + "mr-mime": 6.498092787539738, + "mr-mime-galar": 4.227526927923513, + "scyther": 3.3404670951905087, + "jynx": 5.602370554116176, + "electabuzz": 2.668630887891163, + "magmar": 1.5747546600221378, + "tauros": 1.854209700931575, + "ditto": 5.24023511010802, + "vaporeon": 3.57518521504581, + "jolteon": 1.890358676128563, + "flareon": 2.2522664048853835, + "porygon": 2.680477922800537, + "dragonair": 1.6851674294621672, + "noctowl": 6.5148714430411445, + "lanturn": 1.8533484903899828, + "togetic": 6.27621761925028, + "xatu": 4.956526680336305, + "bellossom": 2.0792596260335006, + "azumarill": 2.9841251235416366, + "sudowoodo": 2.4224862710732222, + "politoed": 2.753797424037318, + "quagsire": 4.027037115948429, + "slowking": 2.980232180113678, + "dunsparce": 3.171042081608054, + "qwilfish": 4.626474235804608, + "sneasel": 2.0564855450087385, + "piloswine": 1.3700920249440642, + "octillery": 2.9526388979370974, + "mantine": 3.863783396944118, + "skarmory": 3.18057113376439, + "hitmontop": 2.320805338408867, + "miltank": 3.4904813472123415, + "grovyle": 7.384058286706424, + "sceptile": 1.3170439245399252, + "combusken": 3.134435607258161, + "blaziken": 1.5209974038848801, + "marshtomp": 2.117363751324632, + "swampert": 1.0664160266546878, + "linoone": 4.851572787713714, + "linoone-galar": 4.309032558983658, + "pelipper": 12.382129700664013, + "ninjask": 8.556377689091278, + "exploud": 1.5123010337090648, + "lairon": 2.602347368575635, + "manectric": 1.622113776409734, + "roselia": 3.767072326522829, + "sharpedo": 6.076365138063782, + "wailmer": 8.46934428247159, + "torkoal": 1.8828792358064321, + "flygon": 2.09331243280358, + "altaria": 1.4907664203540596, + "whiscash": 1.8327825409144902, + "crawdaunt": 2.6071295149262252, + "claydol": 3.8052450982367376, + "cradily": 2.047955990398812, + "armaldo": 1.686090305586333, + "dusclops": 3.9215917867199197, + "absol": 1.8425643991312781, + "glalie": 3.980312963684661, + "sealeo": 3.816716030833076, + "relicanth": 2.524991099608262, + "metang": 3.446716779129355, + "luxray": 3.6018502767975376, + "vespiquen": 3.3640088331276026, + "cherrim": 5.240533041313787, + "gastrodon": 1.9590170754085077, + "drifblim": 5.652746980098666, + "lopunny": 3.5042124692432983, + "skuntank": 1.379994191135535, + "bronzong": 3.8267956000075545, + "munchlax": 2.234866858400062, + "drapion": 2.446631929620417, + "abomasnow": 2.872725505738749, + "froslass": 3.326818058049496, + "rotom": 4.681253652737476, + "stoutland": 2.237471522392462, + "liepard": 6.548864746434237, + "musharna": 1.766787337127288, + "unfezant": 9.16860624045055, + "boldore": 3.228677487051632, + "swoobat": 7.096606217120868, + "audino": 2.0711941940841028, + "gurdurr": 2.10817834442408, + "palpitoad": 3.2096120423642374, + "seismitoad": 5.611092235742037, + "scolipede": 3.0874288806351, + "whimsicott": 2.579526770138508, + "lilligant": 2.7131225209516003, + "basculin-red-striped": 3.548870490380471, + "basculin-blue-striped": 4.601494474862273, + "krookodile": 2.0343990137972012, + "maractus": 1.9691705076304427, + "crustle": 2.0393443614837916, + "sigilyph": 3.0560877575316594, + "cofagrigus": 2.8106682063809623, + "garbodor": 1.772596307251432, + "cinccino": 4.290403407703511, + "vanillish": 1.9996767929061068, + "emolga": 3.249321189285284, + "escavalier": 1.607879431823542, + "amoonguss": 2.280691022354161, + "jellicent": 1.9812411140143502, + "galvantula": 1.548452885094484, + "klang": 2.862071330351136, + "klinklang": 3.463318375033102, + "beheeyem": 2.123707639385017, + "lampent": 2.9559424431560544, + "fraxure": 1.3151754351683176, + "beartic": 1.6274420990519407, + "cryogonal": 1.719783472283499, + "accelgor": 2.83199694164091, + "stunfisk": 1.145280805465088, + "stunfisk-galar": 1.8265229728220627, + "mienshao": 3.146244318168355, + "druddigon": 1.648142012997059, + "golurk": 2.049996494988748, + "bisharp": 2.353679564792909, + "bouffalant": 1.243639411764125, + "heatmor": 1.8118520886215683, + "durant": 3.2994237083734745, + "diggersby": 2.5833742128450075, + "talonflame": 3.8459748118005317, + "pangoro": 1.6806786548101733, + "doublade": 2.788148250088281, + "malamar": 2.7497355705127102, + "barbaracle": 1.8262069218842671, + "heliolisk": 3.4842277171634257, + "tyrantrum": 1.333481686643264, + "aurorus": 2.3496458735191066, + "hawlucha": 4.396232229556294, + "dedenne": 2.3246434838712915, + "klefki": 3.0513276007469896, + "trevenant": 3.521437417084358, + "gourgeist-average": 5.411414717842817, + "charjabug": 3.4874808190095, + "vikavolt": 1.581598490346068, + "ribombee": 4.245388600244965, + "lycanroc-midday": 3.1655967852729114, + "lycanroc-midnight": 2.22830123091748, + "mudsdale": 1.3164460039886148, + "araquanid": 2.6865739914074074, + "lurantis": 2.1260263606938636, + "shiinotic": 3.4928111865990212, + "salazzle": 3.063624574104161, + "bewear": 1.68230450229458, + "tsareena": 2.8689177030425563, + "comfey": 4.0604878479324436, + "oranguru": 3.192955172094041, + "passimian": 2.3461249611528334, + "palossand": 1.9747856944106372, + "pyukumuku": 54.300584524766535, + "togedemaru": 2.227322960273444, + "mimikyu-disguised": 3.758174402770843, + "greedent": 2.0799547001106773, + "orbeetle": 2.0575477026714464, + "thievul": 1.5986102920604908, + "eldegoss": 3.58809919793993, + "dubwool": 2.770449347542211, + "drednaw": 1.595474210640099, + "boltund": 4.4302963047826545, + "carkol": 2.2751407899717955, + "coalossal": 1.8828732736841305, + "sandaconda": 2.404839639658844, + "cramorant": 8.475150492805236, + "barraskewda": 5.815273992169648, + "toxtricity-amped": 2.420663821770261, + "centiskorch": 1.8331232434378417, + "grapploct": 1.5990370116913288, + "polteageist": 3.4861979642868803, + "hatterene": 2.355284766878631, + "grimmsnarl": 3.526358127082144, + "obstagoon": 2.4626801485476877, + "perrserker": 3.4553303597185216, + "alcremie": 1.2521124369417258, + "falinks": 3.175767484767999, + "pincurchin": 2.7673318588901736, + "frosmoth": 2.511885866351331, + "indeedee-male": 3.9533146808665345, + "morpeko": 2.330252825622854, + "copperajah": 2.4442633846292363, + "duraludon": 1.3721671281336636, + "drakloak": 5.256663906793392 }, "carkol": { - "ivysaur": 3.8493133104484114, - "charmeleon": 5.2619739022525875, - "wartortle": 1.8397800755415448, - "butterfree": 8.073394957516125, - "raichu": 4.56330388566918, - "raichu-alola": 3.3715745297389024, - "sandslash": 2.0096341256535863, - "sandslash-alola": 3.792014737849808, - "nidoqueen": 2.2456594505517637, - "nidoking": 1.6542619132712926, - "clefairy": 9.79029936756492, - "clefable": 2.0820290499558216, - "jigglypuff": 27.89446261037844, - "wigglytuff": 2.093178539359483, - "gloom": 7.566608042163931, - "vileplume": 3.743166076289431, - "dugtrio": 2.708525910340735, - "dugtrio-alola": 3.658438213256559, - "persian": 4.525121062119419, - "persian-alola": 4.086796699847505, - "golduck": 2.0999572061496625, - "poliwrath": 1.3096577883816547, - "kadabra": 4.128343246971485, - "machoke": 3.556705209186192, - "tentacruel": 1.6788536181876315, - "slowbro": 1.661241689310817, - "magneton": 4.178251718309494, - "haunter": 4.244911918651031, - "kingler": 1.652495212457054, - "exeggutor": 2.2367390694230087, - "marowak": 2.655028434720856, - "marowak-alola": 2.450613302159999, - "hitmonlee": 2.0459909087439274, - "hitmonchan": 2.1097088178971974, - "lickitung": 1.5591054405006108, - "weezing": 1.8896839090761384, - "weezing-galar": 3.067203482634227, - "rhydon": 1.7228182745772986, - "chansey": 28.905524096626614, - "tangela": 7.529118984048248, - "kangaskhan": 1.7292651190740127, - "seadra": 2.8923043554397387, - "seaking": 1.8585681647685046, - "starmie": 1.3562781709932188, - "mr-mime": 6.479951550332251, - "mr-mime-galar": 4.631687456803714, - "scyther": 4.446297049122491, - "jynx": 6.399719326689874, - "electabuzz": 2.4678958539237756, - "magmar": 2.546818307392395, - "tauros": 1.8298849458593374, - "ditto": 3.3154640644850177, - "vaporeon": 2.286823066769858, - "jolteon": 1.9183535563136807, - "flareon": 3.7916549352064646, - "porygon": 2.81506283244235, - "dragonair": 1.7640422862075906, - "noctowl": 7.911944666315054, - "lanturn": 1.323469173944888, - "togetic": 7.268417742766374, - "xatu": 4.414054780458253, - "bellossom": 3.026842634189806, - "azumarill": 1.6914344700924664, - "sudowoodo": 1.8994704988147904, - "politoed": 1.7868796119801582, - "quagsire": 2.8053379751201444, - "slowking": 2.035119067870706, - "dunsparce": 3.3913983575989706, - "qwilfish": 2.561753756734934, - "sneasel": 2.7525514675339022, - "piloswine": 1.5904597252996548, - "octillery": 1.7833379201513728, - "mantine": 2.5350996875939504, - "skarmory": 3.223716780300032, - "hitmontop": 2.2358501369281862, - "miltank": 4.036649700569677, - "grovyle": 8.773440654959584, - "sceptile": 1.6863089200432482, - "combusken": 2.9715985603226143, - "blaziken": 1.5907477608489886, - "marshtomp": 1.5319018662312298, - "swampert": 0.8362090946721925, - "linoone": 5.416945965851745, - "linoone-galar": 4.513856901781267, - "pelipper": 7.04615958332622, - "ninjask": 11.82402633979376, - "exploud": 1.6147797748918715, - "lairon": 2.383090891632703, - "manectric": 1.8581076953737794, - "roselia": 4.451312998741485, - "sharpedo": 4.078703864997054, - "wailmer": 4.733992032624588, - "torkoal": 2.482473151394417, - "flygon": 1.8560849612937544, - "altaria": 2.1478760513865414, - "whiscash": 1.1498276515508798, - "crawdaunt": 1.3000882824538345, - "claydol": 3.05584988639923, - "cradily": 2.070043327392893, - "armaldo": 1.8191922588762448, - "dusclops": 3.3538246679482446, - "absol": 2.080563662439591, - "glalie": 5.335654746323749, - "sealeo": 2.8576004701907785, - "relicanth": 1.3666782267965785, - "metang": 3.9386943894917437, - "luxray": 3.812757799328569, - "vespiquen": 4.3483593159909555, - "cherrim": 7.152661791861228, - "gastrodon": 1.5537401660202588, - "drifblim": 4.964730169368293, - "lopunny": 3.6310691040311083, - "skuntank": 1.5751727369964874, - "bronzong": 4.153478280071167, - "munchlax": 2.4655300114740024, - "drapion": 2.5625987227669667, - "abomasnow": 5.435351935316032, - "froslass": 3.8343088895691, - "rotom": 3.537450970312827, - "stoutland": 2.5878700570348943, - "liepard": 7.172088855374541, - "musharna": 1.460382629936181, - "unfezant": 7.437305183556232, - "boldore": 2.444691350000449, - "swoobat": 6.31292323869649, - "audino": 2.499058352783392, - "gurdurr": 1.9220816132530496, - "palpitoad": 2.3117832328892147, - "seismitoad": 5.741457745769412, - "scolipede": 4.421445730519401, - "whimsicott": 4.166834390905579, - "lilligant": 3.822511302424397, - "basculin-red-striped": 2.043022551915349, - "basculin-blue-striped": 2.42358697008157, - "krookodile": 2.3394958926250595, - "maractus": 2.7319588687761254, - "crustle": 2.1140744579171313, - "sigilyph": 2.6445396348856924, - "cofagrigus": 2.579763752656641, - "garbodor": 1.8362155257527608, - "cinccino": 4.888877756454019, - "vanillish": 2.8597680996662866, - "emolga": 3.4994470765538193, - "escavalier": 2.746011436795305, - "amoonguss": 3.204212856011716, - "jellicent": 1.4837895935812004, - "galvantula": 2.010954857626828, - "klang": 3.4086354662106766, - "klinklang": 4.779577138380643, - "beheeyem": 1.6741221034359812, - "lampent": 3.908514878389375, - "fraxure": 1.4239931884864465, - "beartic": 2.0520959086811783, - "cryogonal": 2.4066653742035573, - "accelgor": 4.149358866632183, - "stunfisk": 0.8701340472572112, - "stunfisk-galar": 2.485202949035303, - "mienshao": 3.0569937595981864, - "druddigon": 1.572036965471323, - "golurk": 1.5600497828014617, - "bisharp": 3.3873191647771654, - "bouffalant": 1.254597677119166, - "heatmor": 2.5532843090045088, - "durant": 7.277060271108579, - "diggersby": 2.5148348834111394, - "talonflame": 5.161578450779015, - "pangoro": 1.64321626478046, - "doublade": 3.809215698206499, - "malamar": 2.7798181426721285, - "barbaracle": 1.2485307588876324, - "heliolisk": 3.798246568055279, - "tyrantrum": 1.2823574057003349, - "aurorus": 2.645830249314172, - "hawlucha": 3.4045889238399702, - "dedenne": 3.0137754278657605, - "klefki": 4.236576388907254, - "trevenant": 3.6287489763019494, - "gourgeist-average": 8.005677138547021, - "charjabug": 4.805687776970325, - "vikavolt": 2.3636626178587665, - "ribombee": 6.23501950203554, - "lycanroc-midday": 2.8121881064883514, - "lycanroc-midnight": 2.001326512040375, - "mudsdale": 1.3507263722495988, - "araquanid": 2.5771198575918275, - "lurantis": 3.090702479119574, - "shiinotic": 5.650115570327175, - "salazzle": 4.073647165531865, - "bewear": 1.9369839301151135, - "tsareena": 3.9906222141695826, - "comfey": 4.420847070303331, - "oranguru": 2.5629201411472153, - "passimian": 2.2197788605906896, - "palossand": 1.6869969556814557, - "pyukumuku": 40.4753053675355, - "togedemaru": 2.8159848579003417, - "mimikyu-disguised": 4.0639326741643975, - "greedent": 2.2374500168513287, - "orbeetle": 2.2744742107248244, - "thievul": 1.9414055394473753, - "eldegoss": 4.584738185798418, - "dubwool": 3.7471725877757582, - "drednaw": 0.986453334151635, - "boltund": 4.561629443860328, - "coalossal": 1.867993472969598, - "sandaconda": 2.7771074294310676, - "cramorant": 5.654961227512921, - "barraskewda": 3.5881686347797896, - "toxtricity-amped": 2.7534868214764474, - "centiskorch": 3.4272227082981566, - "grapploct": 1.2551917267882402, - "polteageist": 2.590130856805359, - "hatterene": 2.46364270026012, - "grimmsnarl": 3.522227329015098, - "obstagoon": 2.6194614488921166, - "perrserker": 4.632583644040667, - "alcremie": 1.570819175540112, - "falinks": 3.1525390770633948, - "pincurchin": 2.4660882853096613, - "frosmoth": 4.83145112681247, - "indeedee-male": 3.243124074029537, - "morpeko": 2.690691970669536, - "copperajah": 2.931867230496349, - "duraludon": 1.7360015885023146, - "drakloak": 4.076184370588258, - "carkol": 2.5803619733603336 + "ivysaur": 3.8547217988829905, + "charmeleon": 5.279970809965549, + "wartortle": 1.8282704351824672, + "butterfree": 8.097454435193333, + "raichu": 4.556066289592957, + "raichu-alola": 3.368981026419363, + "sandslash": 2.004931511264517, + "sandslash-alola": 3.8017465027589425, + "nidoqueen": 2.237201764315711, + "nidoking": 1.6513448537256026, + "clefairy": 9.811684337646032, + "clefable": 2.081396997658217, + "jigglypuff": 27.93435197216994, + "wigglytuff": 2.0948452487343636, + "gloom": 7.587452982284889, + "vileplume": 3.74975730085313, + "dugtrio": 2.69364248445126, + "dugtrio-alola": 3.652239135380169, + "persian": 4.531424316562616, + "persian-alola": 4.086539841652071, + "golduck": 2.086870048962548, + "poliwrath": 1.3033203057512779, + "kadabra": 4.1286553994442645, + "machoke": 3.550689405815759, + "tentacruel": 1.6681797722236538, + "slowbro": 1.6608593574184718, + "magneton": 4.182522668810881, + "haunter": 4.245339674462195, + "kingler": 1.642913934057483, + "exeggutor": 2.2355689156745537, + "marowak": 2.646806522985173, + "marowak-alola": 2.456583807737541, + "hitmonlee": 2.042721383267119, + "hitmonchan": 2.110829415326189, + "lickitung": 1.5561728110345778, + "weezing": 1.893722990313738, + "weezing-galar": 3.0763780628973874, + "rhydon": 1.7141136173385654, + "chansey": 28.908224513238885, + "tangela": 7.547446299168442, + "kangaskhan": 1.7275935817336299, + "seadra": 2.876637144999914, + "seaking": 1.8499655542109794, + "starmie": 1.3542170794439143, + "mr-mime": 6.474666720200134, + "mr-mime-galar": 4.638073701130102, + "scyther": 4.463735443431196, + "jynx": 6.423429156464369, + "electabuzz": 2.4669988559165823, + "magmar": 2.5573262220736455, + "tauros": 1.8263685133140921, + "ditto": 3.3015135121117574, + "vaporeon": 2.2729432513167414, + "jolteon": 1.917843304206995, + "flareon": 3.797911108352425, + "porygon": 2.8166614364286198, + "dragonair": 1.7626459524763045, + "noctowl": 7.9295718132862305, + "lanturn": 1.315404817805882, + "togetic": 7.298641342487972, + "xatu": 4.418360488232102, + "bellossom": 3.0315223969217637, + "azumarill": 1.6861138196370913, + "sudowoodo": 1.8913418671567257, + "politoed": 1.7757455484616034, + "quagsire": 2.7849875583592594, + "slowking": 2.0275151407401832, + "dunsparce": 3.395209290706566, + "qwilfish": 2.5518143732911844, + "sneasel": 2.7574293736024105, + "piloswine": 1.5895564896962848, + "octillery": 1.7753566734394273, + "mantine": 2.5257635388653132, + "skarmory": 3.2354063382464933, + "hitmontop": 2.2294647208920635, + "miltank": 4.044181499438703, + "grovyle": 8.773982267759491, + "sceptile": 1.6881042532757502, + "combusken": 2.9679332405820738, + "blaziken": 1.5920158849963397, + "marshtomp": 1.521566643897486, + "swampert": 0.8297307334915909, + "linoone": 5.422885943600511, + "linoone-galar": 4.512071289931784, + "pelipper": 7.055900588011804, + "ninjask": 11.853734382329382, + "exploud": 1.6143930341477073, + "lairon": 2.381494680224822, + "manectric": 1.861542658273723, + "roselia": 4.45464928698949, + "sharpedo": 4.064703257738939, + "wailmer": 4.709454125654686, + "torkoal": 2.493328348718471, + "flygon": 1.8506610194673403, + "altaria": 2.15090608408857, + "whiscash": 1.1447492851763195, + "crawdaunt": 1.2957023433645074, + "claydol": 3.0507071991357053, + "cradily": 2.0672761714382477, + "armaldo": 1.8168592270737045, + "dusclops": 3.356428380145651, + "absol": 2.083950772503914, + "glalie": 5.349572986540188, + "sealeo": 2.845098625542372, + "relicanth": 1.359502084098918, + "metang": 3.945506365466728, + "luxray": 3.814057167987539, + "vespiquen": 4.3630954551580245, + "cherrim": 7.161708984574198, + "gastrodon": 1.5471422777476957, + "drifblim": 4.966902073926347, + "lopunny": 3.6321172960098638, + "skuntank": 1.5777696260711371, + "bronzong": 4.161035314378502, + "munchlax": 2.468243076421355, + "drapion": 2.5658760846443203, + "abomasnow": 5.4552703377213305, + "froslass": 3.8462871366046283, + "rotom": 3.5387481168419876, + "stoutland": 2.5915017012714125, + "liepard": 7.178500749036335, + "musharna": 1.459459030712773, + "unfezant": 7.458102593607773, + "boldore": 2.4342860569252798, + "swoobat": 6.319053960195245, + "audino": 2.5043967730907957, + "gurdurr": 1.9158598369480013, + "palpitoad": 2.295732860247573, + "seismitoad": 5.7387941970738785, + "scolipede": 4.435889125225375, + "whimsicott": 4.1764273973379495, + "lilligant": 3.828027216425464, + "basculin-red-striped": 2.0330680750087478, + "basculin-blue-striped": 2.408404251162118, + "krookodile": 2.3307684598024148, + "maractus": 2.7353516875439583, + "crustle": 2.114207693582973, + "sigilyph": 2.6463082496364088, + "cofagrigus": 2.5798445535912955, + "garbodor": 1.8373158696046745, + "cinccino": 4.896337050904498, + "vanillish": 2.868089102087458, + "emolga": 3.504114235734016, + "escavalier": 2.7435602094475375, + "amoonguss": 3.2101653327290736, + "jellicent": 1.480773937287851, + "galvantula": 2.0152838437238256, + "klang": 3.409682516485582, + "klinklang": 4.7912046889042745, + "beheeyem": 1.6720606151171364, + "lampent": 3.922368749974459, + "fraxure": 1.4235242815502018, + "beartic": 2.0516626165600695, + "cryogonal": 2.4118743557419213, + "accelgor": 4.161723682406402, + "stunfisk": 0.8654170432978913, + "stunfisk-galar": 2.4797321569287125, + "mienshao": 3.051601901365167, + "druddigon": 1.5691010984431855, + "golurk": 1.5555587948179466, + "bisharp": 3.394548430991809, + "bouffalant": 1.254799291403601, + "heatmor": 2.5593646427486845, + "durant": 7.3103811322265155, + "diggersby": 2.5035602881058914, + "talonflame": 5.180890674073452, + "pangoro": 1.6411142644113357, + "doublade": 3.8186496523523448, + "malamar": 2.778498602053807, + "barbaracle": 1.2438208538885853, + "heliolisk": 3.7966094742875405, + "tyrantrum": 1.278937388796726, + "aurorus": 2.643285025465567, + "hawlucha": 3.4034681911984475, + "dedenne": 3.015667422072742, + "klefki": 4.247611276288764, + "trevenant": 3.6324435224933884, + "gourgeist-average": 8.038896226006143, + "charjabug": 4.805060624927766, + "vikavolt": 2.3678573477126568, + "ribombee": 6.256552033443603, + "lycanroc-midday": 2.804582635754838, + "lycanroc-midnight": 1.996233026406761, + "mudsdale": 1.3468273037040808, + "araquanid": 2.5738974314409946, + "lurantis": 3.0963784134730226, + "shiinotic": 5.663774227190128, + "salazzle": 4.0894872170269965, + "bewear": 1.938886434326943, + "tsareena": 3.9991929361742846, + "comfey": 4.423977128227127, + "oranguru": 2.5609410001643766, + "passimian": 2.21720304455717, + "palossand": 1.6809910403838675, + "pyukumuku": 40.41969962811859, + "togedemaru": 2.820535435402496, + "mimikyu-disguised": 4.068736308413443, + "greedent": 2.2391606162767843, + "orbeetle": 2.277815471882336, + "thievul": 1.9433673270623255, + "eldegoss": 4.589204732467964, + "dubwool": 3.751900001160771, + "drednaw": 0.9821284502363399, + "boltund": 4.561556769525987, + "carkol": 2.5803619733603336, + "coalossal": 1.8626277516048344, + "sandaconda": 2.768832321480451, + "cramorant": 5.636011186695095, + "barraskewda": 3.5749006105477497, + "toxtricity-amped": 2.7535361449737783, + "centiskorch": 3.4322834528097212, + "grapploct": 1.2505525707972598, + "polteageist": 2.5902936729042527, + "hatterene": 2.4645198584431234, + "grimmsnarl": 3.5191709456304636, + "obstagoon": 2.620010275390759, + "perrserker": 4.641922507774083, + "alcremie": 1.5738832796211415, + "falinks": 3.1510446129546317, + "pincurchin": 2.4553300752839133, + "frosmoth": 4.853527191111202, + "indeedee-male": 3.244449068659213, + "morpeko": 2.6908375871884704, + "copperajah": 2.933655151573467, + "duraludon": 1.7371891050401418, + "drakloak": 4.073269092291348 }, "coalossal": { - "ivysaur": 4.237120681295649, - "charmeleon": 5.3362005744387035, - "wartortle": 2.2377456260709154, - "butterfree": 7.700824411263335, - "raichu": 4.937904581989543, - "raichu-alola": 3.497437644249151, - "sandslash": 2.5153696823250584, - "sandslash-alola": 4.387334321415446, - "nidoqueen": 2.792505368099544, - "nidoking": 1.9903083311737748, - "clefairy": 9.789340281808974, - "clefable": 2.2892782999181325, - "jigglypuff": 29.619572768022834, - "wigglytuff": 2.299916828491339, - "gloom": 8.189028324904864, - "vileplume": 4.114392522577062, - "dugtrio": 3.398913656489071, - "dugtrio-alola": 4.241931836296036, - "persian": 4.881946031731281, - "persian-alola": 4.572996243284198, - "golduck": 2.5493839869896457, - "poliwrath": 1.5101260967894903, - "kadabra": 4.037831999904144, - "machoke": 3.973772275264059, - "tentacruel": 1.77620536755974, - "slowbro": 1.9196782397613428, - "magneton": 4.686390474984329, - "haunter": 4.6665579244675035, - "kingler": 2.3135535041320625, - "exeggutor": 2.530621407104001, - "marowak": 3.317672373364619, - "marowak-alola": 3.076487938308043, - "hitmonlee": 2.2204225410953784, - "hitmonchan": 2.2262274687819747, - "lickitung": 1.8169460381431615, - "weezing": 1.9479012143224128, - "weezing-galar": 3.2209883724517185, - "rhydon": 3.486600555661531, - "chansey": 22.032277759878497, - "tangela": 8.337333794849144, - "kangaskhan": 1.9431290252438451, - "seadra": 3.9694525205750097, - "seaking": 2.125182798978176, - "starmie": 1.510477865283804, - "mr-mime": 6.632381184148992, - "mr-mime-galar": 4.926916956391352, - "scyther": 5.231077542124757, - "jynx": 6.853685835028052, - "electabuzz": 2.6304799777780015, - "magmar": 2.2582009156917664, - "tauros": 2.1040402983206254, - "ditto": 4.326802294844679, - "vaporeon": 2.494605307098868, - "jolteon": 1.9902651702936915, - "flareon": 3.141963408156835, - "porygon": 3.063132287426078, - "dragonair": 1.9568535804057883, - "noctowl": 7.168109244299968, - "lanturn": 1.5203550026778285, - "togetic": 7.199284731249961, - "xatu": 5.086379307107321, - "bellossom": 3.3256624413039604, - "azumarill": 2.039823612816053, - "sudowoodo": 2.7822250355297733, - "politoed": 2.0433376668346037, - "quagsire": 3.4768519941089426, - "slowking": 2.219958355269416, - "dunsparce": 3.683333646752719, - "qwilfish": 3.320727847812277, - "sneasel": 2.9021904349157315, - "piloswine": 1.882201385226961, - "octillery": 2.1142873883278113, - "mantine": 2.4184236948327866, - "skarmory": 3.5577395970594248, - "hitmontop": 2.531909108793186, - "miltank": 4.370380682449878, - "grovyle": 9.789865840330027, - "sceptile": 1.8432409359047186, - "combusken": 3.692756445354113, - "blaziken": 1.8971217884323104, - "marshtomp": 1.8841715864090052, - "swampert": 1.0031153778036461, - "linoone": 5.885920454256559, - "linoone-galar": 5.002453295072996, - "pelipper": 9.073637947593834, - "ninjask": 13.58026246576598, - "exploud": 1.7545278367917638, - "lairon": 3.0093531886355143, - "manectric": 1.979393985073306, - "roselia": 4.911127659280627, - "sharpedo": 4.770361716413075, - "wailmer": 5.673920108912501, - "torkoal": 3.16775816205678, - "flygon": 2.145303562718706, - "altaria": 2.205447605807063, - "whiscash": 1.4598548850786652, - "crawdaunt": 1.7281752855499182, - "claydol": 3.6249143692517074, - "cradily": 2.3021386391747294, - "armaldo": 2.3521562071630484, - "dusclops": 3.705916573174574, - "absol": 2.215372013308853, - "glalie": 5.913092273292463, - "sealeo": 3.5219382756786892, - "relicanth": 1.8439274523956848, - "metang": 4.382643195900655, - "luxray": 4.200321815293012, - "vespiquen": 5.151223875877177, - "cherrim": 7.854528517423665, - "gastrodon": 1.8177427512614255, - "drifblim": 5.435682441682087, - "lopunny": 3.954582568022233, - "skuntank": 1.6553373478996893, - "bronzong": 4.619377851519457, - "munchlax": 2.264827846232164, - "drapion": 2.8356562293341385, - "abomasnow": 5.977359956188108, - "froslass": 4.2786583165571885, - "rotom": 3.9736487539401804, - "stoutland": 2.7969983543668286, - "liepard": 7.811824864272598, - "musharna": 1.6124094554393313, - "unfezant": 9.386951896176127, - "boldore": 3.7389841482698856, - "swoobat": 7.278209103102867, - "audino": 2.6592553391181086, - "gurdurr": 2.2174737102348936, - "palpitoad": 2.8340671635189603, - "seismitoad": 6.380559090868891, - "scolipede": 4.943886359222532, - "whimsicott": 4.550737734802656, - "lilligant": 4.20675632366845, - "basculin-red-striped": 2.5493565113696137, - "basculin-blue-striped": 3.0749596264084795, - "krookodile": 2.895780606542907, - "maractus": 3.0338639592251555, - "crustle": 2.872678979781234, - "sigilyph": 3.0602968365150915, - "cofagrigus": 2.899278245338785, - "garbodor": 1.990148062563342, - "cinccino": 5.272923777231613, - "vanillish": 3.1218494386928843, - "emolga": 4.118355092878035, - "escavalier": 3.3261422052658753, - "amoonguss": 3.511438418425875, - "jellicent": 1.5385808101479808, - "galvantula": 2.2781575874932907, - "klang": 3.859190095768092, - "klinklang": 5.28035862177007, - "beheeyem": 1.827865725790851, - "lampent": 3.9026187571870574, - "fraxure": 1.7148992539364611, - "beartic": 2.345184197779269, - "cryogonal": 2.1104616669052367, - "accelgor": 4.304432646625241, - "stunfisk": 1.1131252501519733, - "stunfisk-galar": 2.896518087053802, - "mienshao": 3.401712115121659, - "druddigon": 1.8040421818263739, - "golurk": 1.9362710151991975, - "bisharp": 3.737872909419253, - "bouffalant": 1.3980747729217642, - "heatmor": 2.68834567101145, - "durant": 8.165425359345843, - "diggersby": 3.150250940692334, - "talonflame": 5.952941043214633, - "pangoro": 1.8202466859755182, - "doublade": 4.304365935851012, - "malamar": 3.0803483701471306, - "barbaracle": 1.497134358058279, - "heliolisk": 4.281592144762543, - "tyrantrum": 1.7013335596356405, - "aurorus": 2.8412212959604677, - "hawlucha": 3.8008368401486434, - "dedenne": 3.2998390554700054, - "klefki": 4.675665359135186, - "trevenant": 4.0751210270974445, - "gourgeist-average": 8.40366472880204, - "charjabug": 5.561306418994816, - "vikavolt": 2.717426071060214, - "ribombee": 6.786821619628325, - "lycanroc-midday": 3.5778348086188725, - "lycanroc-midnight": 2.5411791119453246, - "mudsdale": 1.67119882163788, - "araquanid": 2.724027755192424, - "lurantis": 3.3830087529598774, - "shiinotic": 6.102650924167388, - "salazzle": 4.317420545760022, - "bewear": 2.075483724456862, - "tsareena": 4.355307434372984, - "comfey": 4.747635610935582, - "oranguru": 2.7430607642819576, - "passimian": 2.472038264395878, - "palossand": 2.1406877017530377, - "pyukumuku": 44.16767791253055, - "togedemaru": 3.094312499074147, - "mimikyu-disguised": 4.327678222775791, - "greedent": 2.4577880858630445, - "orbeetle": 2.543976733386285, - "thievul": 1.9252278871786943, - "eldegoss": 5.041786445858044, - "dubwool": 4.157862392314204, - "drednaw": 1.2239398214770225, - "boltund": 5.060541533701343, - "carkol": 3.7010135860031257, - "sandaconda": 3.477558988908985, - "cramorant": 5.7479386664392536, - "barraskewda": 4.405841915688967, - "toxtricity-amped": 3.0558293542156405, - "centiskorch": 3.4568373606026537, - "grapploct": 1.4707101624622891, - "polteageist": 2.655178044349502, - "hatterene": 2.7069062527525327, - "grimmsnarl": 3.9179751498434685, - "obstagoon": 2.8706851580106667, - "perrserker": 5.174333248896939, - "alcremie": 1.5788071685498588, - "falinks": 3.477807582011131, - "pincurchin": 2.825721130172786, - "frosmoth": 4.9835583059514486, - "indeedee-male": 3.2393799476496534, - "morpeko": 2.969855908769807, - "copperajah": 3.304115943136787, - "duraludon": 1.9326360551302102, - "drakloak": 4.641323296097153, - "coalossal": 2.7907854940348953 + "ivysaur": 4.245927663562343, + "charmeleon": 5.354807856246937, + "wartortle": 2.2293118589428964, + "butterfree": 7.727142692361912, + "raichu": 4.938203233995294, + "raichu-alola": 3.498942686117611, + "sandslash": 2.5176770002915605, + "sandslash-alola": 4.402733594518363, + "nidoqueen": 2.7903531532560426, + "nidoking": 1.9918619729128246, + "clefairy": 9.81022689957712, + "clefable": 2.29194112950231, + "jigglypuff": 29.6909715779965, + "wigglytuff": 2.304785907671091, + "gloom": 8.214911135378149, + "vileplume": 4.124465473756346, + "dugtrio": 3.391078883911119, + "dugtrio-alola": 4.24514127771432, + "persian": 4.894232467836012, + "persian-alola": 4.579393778800624, + "golduck": 2.539915389295148, + "poliwrath": 1.504841500302951, + "kadabra": 4.0410374939747555, + "machoke": 3.9750746977791973, + "tentacruel": 1.7681601915689948, + "slowbro": 1.9214892205430032, + "magneton": 4.697434342996187, + "haunter": 4.6741172988209705, + "kingler": 2.3077669948008075, + "exeggutor": 2.5327638630733347, + "marowak": 3.318019539481943, + "marowak-alola": 3.089288555415743, + "hitmonlee": 2.2195864611918057, + "hitmonchan": 2.229264839642938, + "lickitung": 1.8168826696175637, + "weezing": 1.9541580251455009, + "weezing-galar": 3.2330771151309223, + "rhydon": 3.4869212292574545, + "chansey": 22.013234407412952, + "tangela": 8.366680801150634, + "kangaskhan": 1.9448990876831358, + "seadra": 3.9598672655238296, + "seaking": 2.119987157604458, + "starmie": 1.5106128857094414, + "mr-mime": 6.634665752377277, + "mr-mime-galar": 4.937760333308683, + "scyther": 5.254859203861519, + "jynx": 6.872922129588276, + "electabuzz": 2.6328117043865595, + "magmar": 2.265968063627763, + "tauros": 2.105006471081204, + "ditto": 4.313144969302504, + "vaporeon": 2.48261767860115, + "jolteon": 1.9922452643689788, + "flareon": 3.1471351578715385, + "porygon": 3.0687722089639387, + "dragonair": 1.9580538065359347, + "noctowl": 7.186096184404857, + "lanturn": 1.5145072712273078, + "togetic": 7.225378981973712, + "xatu": 5.09837895444324, + "bellossom": 3.333190307981721, + "azumarill": 2.038037565620514, + "sudowoodo": 2.7813714156167766, + "politoed": 2.0352437003346613, + "quagsire": 3.462633672269604, + "slowking": 2.2156619284678003, + "dunsparce": 3.6923421264013085, + "qwilfish": 3.316653564416229, + "sneasel": 2.9095920660076233, + "piloswine": 1.8861797129676043, + "octillery": 2.109526583021258, + "mantine": 2.4114049809136286, + "skarmory": 3.5748215246729877, + "hitmontop": 2.53000249972439, + "miltank": 4.384764807835062, + "grovyle": 9.79986201541944, + "sceptile": 1.846630054079446, + "combusken": 3.696604361403095, + "blaziken": 1.9014032460204282, + "marshtomp": 1.877219461461726, + "swampert": 0.9986615017445115, + "linoone": 5.900039026196588, + "linoone-galar": 5.008138028913324, + "pelipper": 9.099062826475102, + "ninjask": 13.626528614804545, + "exploud": 1.7567147347931846, + "lairon": 3.016016034782455, + "manectric": 1.9844731618872509, + "roselia": 4.917902897147371, + "sharpedo": 4.764141383737236, + "wailmer": 5.6577627143539875, + "torkoal": 3.183442534156783, + "flygon": 2.1439389612765685, + "altaria": 2.209366640483673, + "whiscash": 1.4566377563069173, + "crawdaunt": 1.726093523874547, + "claydol": 3.6276364108620087, + "cradily": 2.3029188761560886, + "armaldo": 2.355915825367151, + "dusclops": 3.7142420839919046, + "absol": 2.2209036036803464, + "glalie": 5.933775344261889, + "sealeo": 3.514572712984523, + "relicanth": 1.8407552022791775, + "metang": 4.395551455242945, + "luxray": 4.208122567417977, + "vespiquen": 5.172674031992397, + "cherrim": 7.870222176870762, + "gastrodon": 1.81461476960488, + "drifblim": 5.445425219646039, + "lopunny": 3.961267918851581, + "skuntank": 1.6600125461245874, + "bronzong": 4.633006025464524, + "munchlax": 2.2676501083218077, + "drapion": 2.8444305373979333, + "abomasnow": 6.000595065132099, + "froslass": 4.295538320308355, + "rotom": 3.981829322435555, + "stoutland": 2.804286077247388, + "liepard": 7.8295058337105345, + "musharna": 1.6139772957315408, + "unfezant": 9.425403659005152, + "boldore": 3.7390916861533467, + "swoobat": 7.295314790775869, + "audino": 2.6659873154601756, + "gurdurr": 2.2160051486902956, + "palpitoad": 2.822823528668696, + "seismitoad": 6.387976541082442, + "scolipede": 4.965269285669706, + "whimsicott": 4.564262206897622, + "lilligant": 4.216192802024324, + "basculin-red-striped": 2.5435710862341248, + "basculin-blue-striped": 3.0640936629281716, + "krookodile": 2.8938702438279362, + "maractus": 3.0385936919480434, + "crustle": 2.881106557045671, + "sigilyph": 3.0668136269702364, + "cofagrigus": 2.9049812061644884, + "garbodor": 1.994350672622336, + "cinccino": 5.2870871100893275, + "vanillish": 3.1328257921239446, + "emolga": 4.129549981332137, + "escavalier": 3.328561274031049, + "amoonguss": 3.520142970140374, + "jellicent": 1.5363330943709446, + "galvantula": 2.285560686778196, + "klang": 3.8659436630197987, + "klinklang": 5.298824868884791, + "beheeyem": 1.82855946937104, + "lampent": 3.9164123931041734, + "fraxure": 1.7172962680492603, + "beartic": 2.3484212450213025, + "cryogonal": 2.1148401844291658, + "accelgor": 4.319194990240602, + "stunfisk": 1.1104204783905867, + "stunfisk-galar": 2.8972778077980306, + "mienshao": 3.4021822629439793, + "druddigon": 1.8039190558153657, + "golurk": 1.9364474866302746, + "bisharp": 3.750048702381487, + "bouffalant": 1.4006845409855977, + "heatmor": 2.696401758490543, + "durant": 8.207659308737153, + "diggersby": 3.1461896854446625, + "talonflame": 5.9788433880296825, + "pangoro": 1.8214330248058923, + "doublade": 4.321118086978462, + "malamar": 3.084341538268368, + "barbaracle": 1.4957716999673485, + "heliolisk": 4.280321266695523, + "tyrantrum": 1.7021195727659086, + "aurorus": 2.8436192483346634, + "hawlucha": 3.8065600842362723, + "dedenne": 3.3063281221337832, + "klefki": 4.692283999269753, + "trevenant": 4.083318030752726, + "gourgeist-average": 8.436635151902626, + "charjabug": 5.571801538240964, + "vikavolt": 2.72608789548882, + "ribombee": 6.814158640550234, + "lycanroc-midday": 3.5788152407783294, + "lycanroc-midnight": 2.5422090785546327, + "mudsdale": 1.671484579655409, + "araquanid": 2.7228226774672724, + "lurantis": 3.3916130344107254, + "shiinotic": 6.119715074077456, + "salazzle": 4.334540794471868, + "bewear": 2.080322316346047, + "tsareena": 4.367545671682186, + "comfey": 4.7568781305141705, + "oranguru": 2.744837782955533, + "passimian": 2.474213417850849, + "palossand": 2.1400275986365087, + "pyukumuku": 44.148846221983646, + "togedemaru": 3.1025211962840515, + "mimikyu-disguised": 4.337952784654769, + "greedent": 2.463640847799839, + "orbeetle": 2.550502781118597, + "thievul": 1.9277726785525418, + "eldegoss": 5.050317538599286, + "dubwool": 4.168387585022184, + "drednaw": 1.2220840088726006, + "boltund": 5.068751868038503, + "carkol": 3.7122900757624375, + "coalossal": 2.7907854940348953, + "sandaconda": 3.4783724385326376, + "cramorant": 5.737638101291113, + "barraskewda": 4.400033726595553, + "toxtricity-amped": 3.060533341023131, + "centiskorch": 3.464961123906405, + "grapploct": 1.4685373514224336, + "polteageist": 2.658268359564234, + "hatterene": 2.7117947759922023, + "grimmsnarl": 3.921443713423919, + "obstagoon": 2.8759603047160582, + "perrserker": 5.191293020853598, + "alcremie": 1.5821620127394187, + "falinks": 3.482816440072096, + "pincurchin": 2.821228827343023, + "frosmoth": 5.006305347509791, + "indeedee-male": 3.242251396854441, + "morpeko": 2.9747639559882058, + "copperajah": 3.3107114076158726, + "duraludon": 1.9369128013089747, + "drakloak": 4.645057499480456 }, "sandaconda": { - "ivysaur": 2.666592865968309, - "charmeleon": 4.294330738411471, - "wartortle": 2.1293852309993717, - "butterfree": 3.960948818404022, - "raichu": 6.093842159317031, - "raichu-alola": 4.521454994936638, - "sandslash": 2.254867969417072, - "sandslash-alola": 2.6400737697564347, - "nidoqueen": 3.1884057931914382, - "nidoking": 2.216274700374351, - "clefairy": 7.384965818460216, - "clefable": 1.8162103771261884, - "jigglypuff": 23.496254710396464, - "wigglytuff": 1.7499651917235362, - "gloom": 5.351034477228762, - "vileplume": 2.406964636467838, - "dugtrio": 3.813016181098533, - "dugtrio-alola": 4.053258677648317, - "persian": 4.077690900723553, - "persian-alola": 4.853044686255951, - "golduck": 2.5637252091879357, - "poliwrath": 1.7435899067157554, - "kadabra": 4.919424119486447, - "machoke": 3.868435426295313, - "tentacruel": 2.1797422307039285, - "slowbro": 1.8750576201523594, - "magneton": 5.982407588316315, - "haunter": 3.620201274155278, - "kingler": 2.4584781425631097, - "exeggutor": 2.679233159310365, - "marowak": 3.048592340182295, - "marowak-alola": 2.6494524994317064, - "hitmonlee": 2.385881080145045, - "hitmonchan": 2.0560268128391486, - "lickitung": 1.515557346946942, - "weezing": 2.004327132282803, - "weezing-galar": 3.3071289390730856, - "rhydon": 3.065688949015124, - "chansey": 26.337959363488327, - "tangela": 4.493179887867514, - "kangaskhan": 1.7835775364091409, - "seadra": 3.6759086351791854, - "seaking": 2.338734569443652, - "starmie": 1.5384726468639245, - "mr-mime": 6.422858823460249, - "mr-mime-galar": 3.608941155215288, - "scyther": 2.5224502597630805, - "jynx": 4.95317505271715, - "electabuzz": 3.2930344092382593, - "magmar": 1.7705291637394085, - "tauros": 2.003143925202949, - "ditto": 3.753652080389249, - "vaporeon": 2.6739999711647977, - "jolteon": 2.138561992092001, - "flareon": 2.4108615383681236, - "porygon": 2.5458936481250554, - "dragonair": 1.9911399299503922, - "noctowl": 5.479799371472956, - "lanturn": 1.9937070645999466, - "togetic": 3.970806919199423, - "xatu": 3.4299549318338616, - "bellossom": 2.392438030400669, - "azumarill": 1.9816517528644868, - "sudowoodo": 3.377487590691686, - "politoed": 2.3223065267888865, - "quagsire": 3.846674114441356, - "slowking": 2.784445329606636, - "dunsparce": 2.8796482200525224, - "qwilfish": 4.2959251438432124, - "sneasel": 2.6119107774893475, - "piloswine": 1.3644440390803871, - "octillery": 2.0108456025088906, - "mantine": 2.0888673123894823, - "skarmory": 1.5285381230481858, - "hitmontop": 2.482992102431998, - "miltank": 3.597115611560053, - "grovyle": 8.397172960555775, - "sceptile": 1.5365748783483861, - "combusken": 3.814959952723267, - "blaziken": 1.9088990767718972, - "marshtomp": 2.1261680594906363, - "swampert": 0.9967679912265663, - "linoone": 5.0056603336644265, - "linoone-galar": 5.221149897289644, - "pelipper": 5.262899279199276, - "ninjask": 6.970875717760039, - "exploud": 1.3440899906539792, - "lairon": 5.206124409482467, - "manectric": 2.112061464594556, - "roselia": 3.422648354147729, - "sharpedo": 5.768018717256634, - "wailmer": 5.529007980819485, - "torkoal": 2.3617349857291776, - "flygon": 2.619463189015729, - "altaria": 1.719467945474722, - "whiscash": 1.606877654237417, - "crawdaunt": 1.8751195475800535, - "claydol": 3.795942177117312, - "cradily": 2.454713541871179, - "armaldo": 1.8590423708763324, - "dusclops": 3.127185771959819, - "absol": 2.110014639234594, - "glalie": 3.8126216423737587, - "sealeo": 2.4905145517509624, - "relicanth": 2.4370281223943904, - "metang": 3.802699072638892, - "luxray": 4.982329373981449, - "vespiquen": 2.5375941339757153, - "cherrim": 5.779260087991535, - "gastrodon": 2.057124711638969, - "drifblim": 4.09593084735164, - "lopunny": 3.589615048854296, - "skuntank": 1.7585842888450844, - "bronzong": 2.976772494674441, - "munchlax": 2.4701447219701356, - "drapion": 3.165125797733162, - "abomasnow": 3.369078230370398, - "froslass": 2.4290905280853474, - "rotom": 3.4409288407546055, - "stoutland": 2.296466894169048, - "liepard": 8.347214753606783, - "musharna": 1.6644993828716854, - "unfezant": 5.5932464609466415, - "boldore": 4.559865124380064, - "swoobat": 4.906667153631579, - "audino": 1.9841909208567257, - "gurdurr": 2.2522791571131524, - "palpitoad": 3.2483774906386222, - "seismitoad": 6.0421101600200995, - "scolipede": 3.1295068060184494, - "whimsicott": 2.623818607254682, - "lilligant": 2.990987394165129, - "basculin-red-striped": 2.508145669833893, - "basculin-blue-striped": 3.098176108417168, - "krookodile": 3.1804593135187247, - "maractus": 2.1548062521818157, - "crustle": 2.1180779235100085, - "sigilyph": 2.0793710372500707, - "cofagrigus": 2.3772732222623825, - "garbodor": 2.264293558162161, - "cinccino": 4.157737486299174, - "vanillish": 1.7089655223703173, - "emolga": 3.1591283673068915, - "escavalier": 1.6773226524217235, - "amoonguss": 2.2394728585289028, - "jellicent": 1.252848671053202, - "galvantula": 1.669599164123491, - "klang": 3.5350959249350593, - "klinklang": 4.312348382056717, - "beheeyem": 2.105581717083314, - "lampent": 2.900666255907123, - "fraxure": 1.6861216485973949, - "beartic": 1.34502212369588, - "cryogonal": 1.4232860557579063, - "accelgor": 2.8791676197214104, - "stunfisk": 1.34153796786092, - "stunfisk-galar": 2.7197700516649705, - "mienshao": 3.2180056388344025, - "druddigon": 2.077403446753438, - "golurk": 1.7547035358366934, - "bisharp": 3.155284514384218, - "bouffalant": 1.2427082752548197, - "heatmor": 2.118035094391664, - "durant": 3.233911163513497, - "diggersby": 3.1574317987726097, - "talonflame": 2.552505745338671, - "pangoro": 1.6996986772502263, - "doublade": 3.5528343528238273, - "malamar": 4.430992605182748, - "barbaracle": 1.6372635449111508, - "heliolisk": 3.991563192394365, - "tyrantrum": 2.138600052751291, - "aurorus": 2.7162452707505, - "hawlucha": 3.25209208329783, - "dedenne": 3.3909333304964537, - "klefki": 3.70886778333664, - "trevenant": 2.710528550067217, - "gourgeist-average": 4.504152753085094, - "charjabug": 4.107845681974723, - "vikavolt": 1.7048691413071946, - "ribombee": 3.631540228354582, - "lycanroc-midday": 4.093940102001723, - "lycanroc-midnight": 2.8556162881751748, - "mudsdale": 1.5338909173790523, - "araquanid": 2.275642437913099, - "lurantis": 2.475596725957316, - "shiinotic": 3.9879634078937336, - "salazzle": 5.107000157829194, - "bewear": 1.755947232411191, - "tsareena": 3.3888377203687963, - "comfey": 3.5694574701250623, - "oranguru": 3.168369311417316, - "passimian": 2.3565047032114776, - "palossand": 1.8589256158818204, - "pyukumuku": 41.2857416383701, - "togedemaru": 3.974446855018752, - "mimikyu-disguised": 3.7029830333446716, - "greedent": 2.096082544571667, - "orbeetle": 2.0063033458942594, - "thievul": 2.188407951611165, - "eldegoss": 3.9393014725812137, - "dubwool": 2.7786896670848895, - "drednaw": 1.5932809135038293, - "boltund": 6.056642933124673, - "carkol": 4.034984465984513, - "coalossal": 3.02786004129199, - "cramorant": 5.022192185536434, - "barraskewda": 4.31190330682028, - "toxtricity-amped": 4.4438953097910465, - "centiskorch": 1.8853612417968242, - "grapploct": 1.4412098476171429, - "polteageist": 2.318669935378419, - "hatterene": 2.3083933551561984, - "grimmsnarl": 3.5349208247284185, - "obstagoon": 2.960234552528246, - "perrserker": 4.434844581260975, - "alcremie": 1.1837144295642608, - "falinks": 3.149052842544194, - "pincurchin": 3.485778790501053, - "frosmoth": 2.4672173706873695, - "indeedee-male": 3.826483720950239, - "morpeko": 3.4367238753693794, - "copperajah": 2.8071925283697006, - "duraludon": 2.366647514840495, - "drakloak": 5.049093861410299, - "sandaconda": 3.0831071899800286 + "ivysaur": 2.660613437848547, + "charmeleon": 4.294672268632045, + "wartortle": 2.1230121607568586, + "butterfree": 3.9501580582404436, + "raichu": 6.1119282427114765, + "raichu-alola": 4.531370760713943, + "sandslash": 2.2571773039775334, + "sandslash-alola": 2.641644136079949, + "nidoqueen": 3.1900355744283986, + "nidoking": 2.2199007203938628, + "clefairy": 7.361749062190039, + "clefable": 1.8140899946080613, + "jigglypuff": 23.45050132059788, + "wigglytuff": 1.7461754965227338, + "gloom": 5.351963589169061, + "vileplume": 2.4010183771970066, + "dugtrio": 3.8182319467925483, + "dugtrio-alola": 4.058371161362798, + "persian": 4.077935050028604, + "persian-alola": 4.857376537903978, + "golduck": 2.5585743885493653, + "poliwrath": 1.742826454907829, + "kadabra": 4.922391296432846, + "machoke": 3.872478440293787, + "tentacruel": 2.175984481510505, + "slowbro": 1.8752445352006522, + "magneton": 5.999085958379958, + "haunter": 3.6091305161492446, + "kingler": 2.457905280729514, + "exeggutor": 2.6783190418832215, + "marowak": 3.0510616211015584, + "marowak-alola": 2.6542668638060123, + "hitmonlee": 2.3879920610433594, + "hitmonchan": 2.0574685865011086, + "lickitung": 1.513402884003413, + "weezing": 2.0064756122788796, + "weezing-galar": 3.307275999024111, + "rhydon": 3.0705738940105163, + "chansey": 26.31206049811216, + "tangela": 4.486122157554424, + "kangaskhan": 1.7848466959186469, + "seadra": 3.666096385159575, + "seaking": 2.3398597191313186, + "starmie": 1.5391536236302565, + "mr-mime": 6.412172916777204, + "mr-mime-galar": 3.603931172475094, + "scyther": 2.520663614912126, + "jynx": 4.944864086278653, + "electabuzz": 3.3044314124308496, + "magmar": 1.7708237621353065, + "tauros": 2.0048482305146984, + "ditto": 3.7336384973667887, + "vaporeon": 2.6673740425917902, + "jolteon": 2.1434176715164224, + "flareon": 2.4112020841077935, + "porygon": 2.544314639988567, + "dragonair": 1.9935764975026649, + "noctowl": 5.474037344011558, + "lanturn": 1.993377978649515, + "togetic": 3.959100482137366, + "xatu": 3.424178972431358, + "bellossom": 2.3872516822642496, + "azumarill": 1.9798837589424667, + "sudowoodo": 3.3851298800574745, + "politoed": 2.320498255472548, + "quagsire": 3.837140617902442, + "slowking": 2.7834171876505085, + "dunsparce": 2.876856140616421, + "qwilfish": 4.2996986290101145, + "sneasel": 2.6128007325638434, + "piloswine": 1.363508170536678, + "octillery": 2.0077984928385186, + "mantine": 2.0834826752196935, + "skarmory": 1.5260192100238514, + "hitmontop": 2.4829837321546777, + "miltank": 3.599149611352156, + "grovyle": 8.382150409436575, + "sceptile": 1.5331050246002396, + "combusken": 3.8166807901733275, + "blaziken": 1.9109797191324964, + "marshtomp": 2.1232309039343975, + "swampert": 0.994630515109335, + "linoone": 5.008653287931471, + "linoone-galar": 5.224836967537113, + "pelipper": 5.254090825956554, + "ninjask": 6.964644160568173, + "exploud": 1.3419326492439283, + "lairon": 5.2221730354897336, + "manectric": 2.116440966746899, + "roselia": 3.4146522914650674, + "sharpedo": 5.772422231070174, + "wailmer": 5.519841220713603, + "torkoal": 2.363153361023945, + "flygon": 2.620218378040721, + "altaria": 1.7180550785536057, + "whiscash": 1.6050156636664994, + "crawdaunt": 1.8745108356804474, + "claydol": 3.794439078557814, + "cradily": 2.4535246459716546, + "armaldo": 1.8613851345255352, + "dusclops": 3.1276332434204157, + "absol": 2.1109893368545976, + "glalie": 3.8106159857193855, + "sealeo": 2.4821310857701824, + "relicanth": 2.4398064053872814, + "metang": 3.8114141424290815, + "luxray": 4.998747975270081, + "vespiquen": 2.535949437511495, + "cherrim": 5.764246179465413, + "gastrodon": 2.0577424373499986, + "drifblim": 4.09533461020504, + "lopunny": 3.5924151220558738, + "skuntank": 1.7622579325116174, + "bronzong": 2.97595757576627, + "munchlax": 2.475069263609358, + "drapion": 3.1721529586967194, + "abomasnow": 3.364238776829681, + "froslass": 2.424066319715668, + "rotom": 3.4425119623342044, + "stoutland": 2.296640937943649, + "liepard": 8.361222722680779, + "musharna": 1.6633882834117193, + "unfezant": 5.589433848143441, + "boldore": 4.5704368175069146, + "swoobat": 4.898405944646939, + "audino": 1.9825245926260626, + "gurdurr": 2.253707600409303, + "palpitoad": 3.243853196614653, + "seismitoad": 6.042563933394222, + "scolipede": 3.1309778231117638, + "whimsicott": 2.6161386746895907, + "lilligant": 2.9836405199158773, + "basculin-red-striped": 2.5058012115882105, + "basculin-blue-striped": 3.0926636853886826, + "krookodile": 3.183556622208184, + "maractus": 2.149558493378054, + "crustle": 2.120650038920865, + "sigilyph": 2.075760704789384, + "cofagrigus": 2.375200912010757, + "garbodor": 2.2695320875617546, + "cinccino": 4.155058244214496, + "vanillish": 1.7033538694022092, + "emolga": 3.164364951021932, + "escavalier": 1.6765380883217613, + "amoonguss": 2.2367927301386894, + "jellicent": 1.2512526232161867, + "galvantula": 1.6736999614452972, + "klang": 3.541965160051788, + "klinklang": 4.317854475123145, + "beheeyem": 2.1064538637039667, + "lampent": 2.9028159023655515, + "fraxure": 1.6887364819489137, + "beartic": 1.341318669297845, + "cryogonal": 1.418030877798572, + "accelgor": 2.876741815176464, + "stunfisk": 1.3427084271394067, + "stunfisk-galar": 2.7205567216357336, + "mienshao": 3.2190036179593906, + "druddigon": 2.0817455574910158, + "golurk": 1.7554784437767217, + "bisharp": 3.1612126924333817, + "bouffalant": 1.2441855248665092, + "heatmor": 2.118473614210852, + "durant": 3.2370180520087697, + "diggersby": 3.16083641039159, + "talonflame": 2.5480577723427684, + "pangoro": 1.7012897247036733, + "doublade": 3.559985788292923, + "malamar": 4.441235386749504, + "barbaracle": 1.6370647632583433, + "heliolisk": 3.999570574280053, + "tyrantrum": 2.143974373172993, + "aurorus": 2.7184115252350454, + "hawlucha": 3.250554914774436, + "dedenne": 3.394757049738814, + "klefki": 3.7100191106382154, + "trevenant": 2.708855222576777, + "gourgeist-average": 4.502327559156222, + "charjabug": 4.119449118806126, + "vikavolt": 1.704305792305732, + "ribombee": 3.6210471197200778, + "lycanroc-midday": 4.103861524976565, + "lycanroc-midnight": 2.861794965265263, + "mudsdale": 1.5353233081927415, + "araquanid": 2.2761034266637785, + "lurantis": 2.47146546085576, + "shiinotic": 3.9789903037797805, + "salazzle": 5.116226816365225, + "bewear": 1.7559488715106657, + "tsareena": 3.3879890325838105, + "comfey": 3.557297446848298, + "oranguru": 3.1695930966221555, + "passimian": 2.3589002607227636, + "palossand": 1.8572227586450847, + "pyukumuku": 41.29180085706861, + "togedemaru": 3.988530459244061, + "mimikyu-disguised": 3.700331046334529, + "greedent": 2.097247877579666, + "orbeetle": 2.0050159585808096, + "thievul": 2.190224289263311, + "eldegoss": 3.928943379145982, + "dubwool": 2.778417658321477, + "drednaw": 1.5948104014731448, + "boltund": 6.076371339012917, + "carkol": 4.042282468980783, + "coalossal": 3.0295256249849882, + "sandaconda": 3.0831071899800286, + "cramorant": 5.015434984817167, + "barraskewda": 4.3115336606986485, + "toxtricity-amped": 4.456928560646654, + "centiskorch": 1.8846984978295414, + "grapploct": 1.4399339192383303, + "polteageist": 2.315684197389377, + "hatterene": 2.306154006550575, + "grimmsnarl": 3.5317795759025437, + "obstagoon": 2.9650765616094397, + "perrserker": 4.4442620342443915, + "alcremie": 1.1805834887590834, + "falinks": 3.150462701481991, + "pincurchin": 3.48894605790449, + "frosmoth": 2.4632382203869065, + "indeedee-male": 3.8273873180756857, + "morpeko": 3.4478379082909063, + "copperajah": 2.80899515712707, + "duraludon": 2.3739099481037385, + "drakloak": 5.05536253938223 }, "cramorant": { - "ivysaur": 2.9622408761408727, - "charmeleon": 5.176500707921515, - "wartortle": 2.6455193662666012, - "butterfree": 4.885624958028367, - "raichu": 4.311438493260325, - "raichu-alola": 3.5356628584997827, - "sandslash": 2.247389982292181, - "sandslash-alola": 1.5380255785683832, - "nidoqueen": 3.585448404867978, - "nidoking": 2.0099148450699706, - "clefairy": 9.557725294341477, - "clefable": 1.9826479350673072, - "jigglypuff": 26.36449677188801, - "wigglytuff": 1.9563315492319986, - "gloom": 5.185595727781124, - "vileplume": 2.795404467886577, - "dugtrio": 4.234819176209156, - "dugtrio-alola": 4.6187056829369, - "persian": 3.9385015844416693, - "persian-alola": 4.0006664753779155, - "golduck": 2.831241592563188, - "poliwrath": 1.505414389200312, - "kadabra": 4.866324695170052, - "machoke": 3.3387713273965693, - "tentacruel": 2.3542312332902293, - "slowbro": 1.8861203720587711, - "magneton": 2.509531087657793, - "haunter": 5.3775024754821565, - "kingler": 2.1965258890994908, - "exeggutor": 2.1141626067158548, - "marowak": 3.695471927700041, - "marowak-alola": 2.4454839732221054, - "hitmonlee": 2.5853370593327156, - "hitmonchan": 1.7854250063014239, - "lickitung": 1.8143799979073996, - "weezing": 1.496122884559416, - "weezing-galar": 2.3964295634151576, - "rhydon": 2.860279711917417, - "chansey": 29.190424305378357, - "tangela": 3.7438300041599355, - "kangaskhan": 1.71114119166357, - "seadra": 3.674365146110964, - "seaking": 2.3030449472342425, - "starmie": 1.5635288808368988, - "mr-mime": 7.173054792263534, - "mr-mime-galar": 4.240409811511005, - "scyther": 2.4962816703069772, - "jynx": 5.507501652821197, - "electabuzz": 1.8043864756021424, - "magmar": 2.381304217800866, - "tauros": 1.9036245169677115, - "ditto": 6.128231008662005, - "vaporeon": 3.1997211295348427, - "jolteon": 1.7371715043594662, - "flareon": 3.50249723704087, - "porygon": 2.4392060556067228, - "dragonair": 1.5288827039241832, - "noctowl": 5.866426110356698, - "lanturn": 1.606452821761502, - "togetic": 5.250855935037059, - "xatu": 4.280398101907202, - "bellossom": 2.1548189282088863, - "azumarill": 1.7302599719653349, - "sudowoodo": 2.584545525311516, - "politoed": 2.5641730481210074, - "quagsire": 4.741841787335433, - "slowking": 2.869701451768382, - "dunsparce": 3.136374359135762, - "qwilfish": 2.8996793711381783, - "sneasel": 2.1297545793308217, - "piloswine": 1.7298372064126504, - "octillery": 2.2747536001660893, - "mantine": 2.4737697771541933, - "skarmory": 1.7481061660138528, - "hitmontop": 2.7066318295838903, - "miltank": 3.028788926458435, - "grovyle": 7.565556868168434, - "sceptile": 1.3060460563696301, - "combusken": 4.360315795390214, - "blaziken": 2.080408081372793, - "marshtomp": 2.5504026655807985, - "swampert": 1.3086592956039915, - "linoone": 4.782732004455113, - "linoone-galar": 4.331647502474116, - "pelipper": 5.023138958388971, - "ninjask": 7.749546027163301, - "exploud": 1.6343665583548344, - "lairon": 1.9564863164855306, - "manectric": 1.5777529772994394, - "roselia": 3.826103444710968, - "sharpedo": 4.010659109675209, - "wailmer": 6.104198435101238, - "torkoal": 2.1729763734321197, - "flygon": 2.3569215324289448, - "altaria": 1.5470242374109981, - "whiscash": 2.0997667884296916, - "crawdaunt": 1.656601792254128, - "claydol": 4.08074812071276, - "cradily": 2.143139832204473, - "armaldo": 2.088777433601045, - "dusclops": 3.7790717028156506, - "absol": 1.845543707378401, - "glalie": 3.815916748220025, - "sealeo": 3.0153913985938123, - "relicanth": 1.5000985180205728, - "metang": 2.5822212078907283, - "luxray": 2.8497676276656723, - "vespiquen": 2.633566279199388, - "cherrim": 5.364716472347604, - "gastrodon": 2.026385417277229, - "drifblim": 4.071305867997973, - "lopunny": 3.4401420023103113, - "skuntank": 1.3615452508812202, - "bronzong": 3.43943497381001, - "munchlax": 1.976649816908771, - "drapion": 2.1570441181567612, - "abomasnow": 2.774196714668049, - "froslass": 3.1760542284951683, - "rotom": 3.502416032765508, - "stoutland": 2.167819562056519, - "liepard": 6.237547330569982, - "musharna": 1.717505333222683, - "unfezant": 5.448551740319326, - "boldore": 3.098222040519209, - "swoobat": 6.122438710363478, - "audino": 2.2406284003795505, - "gurdurr": 2.140872956073297, - "palpitoad": 3.995923032345586, - "seismitoad": 6.217772178171283, - "scolipede": 2.9852118834832657, - "whimsicott": 2.5411118450970402, - "lilligant": 2.85807543918472, - "basculin-red-striped": 2.47039336404276, - "basculin-blue-striped": 3.30437720302809, - "krookodile": 3.3627113867413225, - "maractus": 1.980236170466811, - "crustle": 2.116799615996059, - "sigilyph": 2.6528086743415793, - "cofagrigus": 2.7822502016760526, - "garbodor": 1.7588356292731324, - "cinccino": 4.175328765981432, - "vanillish": 2.1524632101831176, - "emolga": 2.0954460672003905, - "escavalier": 1.9226489892689198, - "amoonguss": 2.3329469378288197, - "jellicent": 1.96070785481942, - "galvantula": 1.1539678478754891, - "klang": 2.2502060190771154, - "klinklang": 3.0703507520073217, - "beheeyem": 2.0363911208886445, - "lampent": 3.6471191403021708, - "fraxure": 1.2565220048922479, - "beartic": 1.7309884506670898, - "cryogonal": 1.907066630432109, - "accelgor": 3.428342130819009, - "stunfisk": 1.547326671273395, - "stunfisk-galar": 2.850703751857509, - "mienshao": 2.9775751793971517, - "druddigon": 1.6495997043639137, - "golurk": 2.3844431890191453, - "bisharp": 2.0435804583166117, - "bouffalant": 1.2191813622114682, - "heatmor": 2.462508275792196, - "durant": 2.2167226407579017, - "diggersby": 3.888915497434064, - "talonflame": 3.709099236820437, - "pangoro": 1.6415372548772607, - "doublade": 2.1932967382422506, - "malamar": 2.365188109465793, - "barbaracle": 1.3509109226306197, - "heliolisk": 2.9323967018232677, - "tyrantrum": 1.2640692226412122, - "aurorus": 2.4491614142908906, - "hawlucha": 3.163645248890663, - "dedenne": 2.490923921969304, - "klefki": 2.895832800114789, - "trevenant": 3.307094301602338, - "gourgeist-average": 5.276781552096095, - "charjabug": 2.8409586748851448, - "vikavolt": 1.5575247913027577, - "ribombee": 4.779809886363212, - "lycanroc-midday": 3.2392703113521755, - "lycanroc-midnight": 2.4723049075997463, - "mudsdale": 1.902117115713973, - "araquanid": 2.221602952540136, - "lurantis": 2.207749538799729, - "shiinotic": 3.770150619917394, - "salazzle": 3.92341086659669, - "bewear": 1.4975417845844858, - "tsareena": 2.6017016975552223, - "comfey": 4.4013916939999875, - "oranguru": 3.0731022768761687, - "passimian": 1.9509397038825282, - "palossand": 2.513207696360961, - "pyukumuku": 38.452938726092356, - "togedemaru": 1.764268049024277, - "mimikyu-disguised": 3.753696083437738, - "greedent": 1.8967495242398753, - "orbeetle": 2.1433083267090587, - "thievul": 1.877712842392297, - "eldegoss": 3.6599508923385304, - "dubwool": 2.691110372719165, - "drednaw": 1.026588193034235, - "boltund": 3.6337626694305833, - "carkol": 3.180975379666226, - "coalossal": 3.0064634238180608, - "sandaconda": 3.519047069389619, - "barraskewda": 3.9240730676857116, - "toxtricity-amped": 2.1968682470295526, - "centiskorch": 2.750984708660896, - "grapploct": 1.695486153843746, - "polteageist": 3.2518605590741148, - "hatterene": 2.3903651320337334, - "grimmsnarl": 3.799204841787347, - "obstagoon": 2.0354926620174902, - "perrserker": 2.634320930972547, - "alcremie": 1.509974000624109, - "falinks": 2.9096044548469537, - "pincurchin": 2.431769880976187, - "frosmoth": 2.8874249967820904, - "indeedee-male": 3.9644401320659437, - "morpeko": 1.8672545405154934, - "copperajah": 2.452681540037365, - "duraludon": 1.093559713661482, - "drakloak": 4.869542423670553, - "cramorant": 5.119822621488418 + "ivysaur": 2.958818613577087, + "charmeleon": 5.183707497487605, + "wartortle": 2.645812693561722, + "butterfree": 4.885298354651264, + "raichu": 4.293378068070952, + "raichu-alola": 3.52428011760042, + "sandslash": 2.244485121472932, + "sandslash-alola": 1.5330021627403798, + "nidoqueen": 3.590055948493042, + "nidoking": 2.005788265537757, + "clefairy": 9.558205180539591, + "clefable": 1.9789555515376123, + "jigglypuff": 26.331813206286256, + "wigglytuff": 1.953594165645249, + "gloom": 5.178240726463231, + "vileplume": 2.7937776244109807, + "dugtrio": 4.237156548716302, + "dugtrio-alola": 4.6255310419980455, + "persian": 3.9283315372862098, + "persian-alola": 3.991298981300326, + "golduck": 2.8279351007287716, + "poliwrath": 1.501048991248495, + "kadabra": 4.864901722265949, + "machoke": 3.32844204330484, + "tentacruel": 2.3538344826245714, + "slowbro": 1.8849268163306312, + "magneton": 2.4990214069050145, + "haunter": 5.3818517997251405, + "kingler": 2.195054566026818, + "exeggutor": 2.1128672298702855, + "marowak": 3.6982975121487023, + "marowak-alola": 2.4470758593152793, + "hitmonlee": 2.585444162335426, + "hitmonchan": 1.777523835461034, + "lickitung": 1.808815313922079, + "weezing": 1.4947697599807015, + "weezing-galar": 2.3940755278440484, + "rhydon": 2.858099634663889, + "chansey": 29.168658614677486, + "tangela": 3.7292838016665337, + "kangaskhan": 1.7075499690147422, + "seadra": 3.66938351436749, + "seaking": 2.301240796609907, + "starmie": 1.5611566516857724, + "mr-mime": 7.169048468251832, + "mr-mime-galar": 4.239505232174816, + "scyther": 2.490881738117343, + "jynx": 5.502773819407054, + "electabuzz": 1.794273407292554, + "magmar": 2.384808114497682, + "tauros": 1.9016592734839262, + "ditto": 6.086291201991061, + "vaporeon": 3.1971182760741876, + "jolteon": 1.729228572689916, + "flareon": 3.50588085597073, + "porygon": 2.4309728955678542, + "dragonair": 1.5223726935957886, + "noctowl": 5.858102408565683, + "lanturn": 1.6017613194868394, + "togetic": 5.246281349848541, + "xatu": 4.280107100423564, + "bellossom": 2.1519054542045617, + "azumarill": 1.727189732028827, + "sudowoodo": 2.579395539076128, + "politoed": 2.5649452544781934, + "quagsire": 4.744732238737347, + "slowking": 2.8687701598308477, + "dunsparce": 3.132884689056185, + "qwilfish": 2.8940278330683618, + "sneasel": 2.123374166428928, + "piloswine": 1.727195723709749, + "octillery": 2.2744395880417976, + "mantine": 2.471867498218988, + "skarmory": 1.7456434361747857, + "hitmontop": 2.7058896284301373, + "miltank": 3.018902448743915, + "grovyle": 7.558634988096138, + "sceptile": 1.3043249334892417, + "combusken": 4.365788231381864, + "blaziken": 2.082288228490317, + "marshtomp": 2.5509563370873787, + "swampert": 1.3102297632963, + "linoone": 4.771761619370304, + "linoone-galar": 4.320202716726344, + "pelipper": 5.0085594317948665, + "ninjask": 7.749001883862225, + "exploud": 1.63331221828675, + "lairon": 1.9511625890833422, + "manectric": 1.5726262317713753, + "roselia": 3.8222344849786953, + "sharpedo": 3.997862303623455, + "wailmer": 6.099276313736308, + "torkoal": 2.173797918282801, + "flygon": 2.355248392574872, + "altaria": 1.5457117229612158, + "whiscash": 2.0973932761023066, + "crawdaunt": 1.6513693799284597, + "claydol": 4.079537855119354, + "cradily": 2.139236464190917, + "armaldo": 2.086911345539611, + "dusclops": 3.779135021604776, + "absol": 1.8415444135779624, + "glalie": 3.807239612876457, + "sealeo": 3.0131799980050324, + "relicanth": 1.4937128959411956, + "metang": 2.5723842816948412, + "luxray": 2.8328687268939303, + "vespiquen": 2.6305637255590746, + "cherrim": 5.356790271153376, + "gastrodon": 2.0223208332553027, + "drifblim": 4.057002558473448, + "lopunny": 3.4331808698233246, + "skuntank": 1.3588359962656802, + "bronzong": 3.4377391033788807, + "munchlax": 1.9682329360877238, + "drapion": 2.1533395729365297, + "abomasnow": 2.7658925075012655, + "froslass": 3.174893411121391, + "rotom": 3.4914552850879894, + "stoutland": 2.1613269394424828, + "liepard": 6.219461068966011, + "musharna": 1.7167970643652644, + "unfezant": 5.435444614748624, + "boldore": 3.090804822621954, + "swoobat": 6.121916375983497, + "audino": 2.2394109153366957, + "gurdurr": 2.140602924120291, + "palpitoad": 3.9988636629799235, + "seismitoad": 6.209212473260016, + "scolipede": 2.9817494265906452, + "whimsicott": 2.53466138493589, + "lilligant": 2.855607974254995, + "basculin-red-striped": 2.4659048583323724, + "basculin-blue-striped": 3.3006573551459395, + "krookodile": 3.361460888371476, + "maractus": 1.9759190056150926, + "crustle": 2.1128785439043156, + "sigilyph": 2.6536731312773245, + "cofagrigus": 2.782236526443956, + "garbodor": 1.7561828836318787, + "cinccino": 4.164737470877546, + "vanillish": 2.15013179899422, + "emolga": 2.084192792218637, + "escavalier": 1.9246642412130068, + "amoonguss": 2.3297936025233947, + "jellicent": 1.9610852785507884, + "galvantula": 1.1475711678199085, + "klang": 2.241447039768742, + "klinklang": 3.0659811643620962, + "beheeyem": 2.0352926368856314, + "lampent": 3.6572420912468733, + "fraxure": 1.2525831147306805, + "beartic": 1.730007853213848, + "cryogonal": 1.9064186129497498, + "accelgor": 3.4304213122928138, + "stunfisk": 1.5444446142458483, + "stunfisk-galar": 2.853019613860897, + "mienshao": 2.9687824601095114, + "druddigon": 1.6476374401623772, + "golurk": 2.387123656172048, + "bisharp": 2.0369271180492388, + "bouffalant": 1.2174846808382052, + "heatmor": 2.465929746623471, + "durant": 2.20645400819344, + "diggersby": 3.8886721798250723, + "talonflame": 3.7125879714072996, + "pangoro": 1.6385170060892418, + "doublade": 2.192356508046385, + "malamar": 2.3559586759340334, + "barbaracle": 1.3476081738159222, + "heliolisk": 2.916272882605172, + "tyrantrum": 1.2593748196404926, + "aurorus": 2.439365412691686, + "hawlucha": 3.156737745258134, + "dedenne": 2.4786756340666103, + "klefki": 2.892918367126902, + "trevenant": 3.304954639778513, + "gourgeist-average": 5.272877092020104, + "charjabug": 2.817439954598128, + "vikavolt": 1.5526098938571982, + "ribombee": 4.778503762816864, + "lycanroc-midday": 3.2256587390538254, + "lycanroc-midnight": 2.4654967516958113, + "mudsdale": 1.903065612106403, + "araquanid": 2.2179188716637293, + "lurantis": 2.2046505559649523, + "shiinotic": 3.7625135874376445, + "salazzle": 3.925684714051167, + "bewear": 1.4918852487694139, + "tsareena": 2.594186023517082, + "comfey": 4.39736771106145, + "oranguru": 3.071664334180417, + "passimian": 1.9450716003015605, + "palossand": 2.517530296210152, + "pyukumuku": 38.38940834010448, + "togedemaru": 1.7567360308416942, + "mimikyu-disguised": 3.745770654532643, + "greedent": 1.8918980716519695, + "orbeetle": 2.1435962143562537, + "thievul": 1.8747401611326509, + "eldegoss": 3.655179609033649, + "dubwool": 2.6849621864206776, + "drednaw": 1.0239581551547396, + "boltund": 3.6149255126519986, + "carkol": 3.180596734102657, + "coalossal": 3.008337182577347, + "sandaconda": 3.519547428488769, + "cramorant": 5.119822621488418, + "barraskewda": 3.914415322424776, + "toxtricity-amped": 2.1842799192074103, + "centiskorch": 2.753827917398614, + "grapploct": 1.6954636792293483, + "polteageist": 3.2525534189292635, + "hatterene": 2.3868381016624745, + "grimmsnarl": 3.795104709395894, + "obstagoon": 2.025561650517625, + "perrserker": 2.6259884145104064, + "alcremie": 1.5095805116893066, + "falinks": 2.906805807003325, + "pincurchin": 2.4195502846296217, + "frosmoth": 2.8856345670120884, + "indeedee-male": 3.967645779489617, + "morpeko": 1.85315272497823, + "copperajah": 2.4538495041278665, + "duraludon": 1.0883960533363064, + "drakloak": 4.863996917707378 }, "barraskewda": { - "ivysaur": 2.3683698598550116, - "charmeleon": 4.907854865388628, - "wartortle": 2.571774316636133, - "butterfree": 3.917680637269019, - "raichu": 4.1863467865528, - "raichu-alola": 3.562008862906805, - "sandslash": 2.1812970839555756, - "sandslash-alola": 1.7474388974456336, - "nidoqueen": 3.0840915866688197, - "nidoking": 2.125991660750796, - "clefairy": 8.11038388323774, - "clefable": 1.762470512993955, - "jigglypuff": 24.322467480645518, - "wigglytuff": 1.7057734152395196, - "gloom": 4.793894908687282, - "vileplume": 2.20489576542718, - "dugtrio": 4.464879149081216, - "dugtrio-alola": 4.319120915721967, - "persian": 3.8418336741664922, - "persian-alola": 3.7285106336641007, - "golduck": 2.876508854016028, - "poliwrath": 1.663990094228375, - "kadabra": 4.565390973031346, - "machoke": 3.4974935309892317, - "tentacruel": 2.3735995273165007, - "slowbro": 1.8128210234198587, - "magneton": 2.4832295682517556, - "haunter": 4.624174415459248, - "kingler": 2.0734837468667884, - "exeggutor": 1.8143207742856373, - "marowak": 3.424456030136925, - "marowak-alola": 2.435063486135907, - "hitmonlee": 2.4635158141504214, - "hitmonchan": 2.042024123543075, - "lickitung": 1.772327273595681, - "weezing": 1.363195182976321, - "weezing-galar": 2.191745301070691, - "rhydon": 2.844743296446756, - "chansey": 26.451174634277372, - "tangela": 3.2935379150815844, - "kangaskhan": 1.662500680014028, - "seadra": 3.420483211289181, - "seaking": 2.2800478940210525, - "starmie": 1.561877839806586, - "mr-mime": 6.350436657315642, - "mr-mime-galar": 4.254627763447532, - "scyther": 2.4471034207743867, - "jynx": 5.498855845614946, - "electabuzz": 1.8634513098340841, - "magmar": 2.2469273053742396, - "tauros": 1.7586047418307316, - "ditto": 4.5865860639296105, - "vaporeon": 3.086647461180653, - "jolteon": 1.6491894468974586, - "flareon": 3.2820957436464653, - "porygon": 2.3736655582350044, - "dragonair": 1.9740531556061736, - "noctowl": 5.589603217435915, - "lanturn": 1.6635359063505561, - "togetic": 5.177274258635498, - "xatu": 3.980973564409836, - "bellossom": 1.7784553006138757, - "azumarill": 1.7261364176278784, - "sudowoodo": 2.6357601325693567, - "politoed": 2.368813067604945, - "quagsire": 4.275470686839778, - "slowking": 2.966579312091629, - "dunsparce": 2.99730600147274, - "qwilfish": 3.01607247352312, - "sneasel": 2.184396361289852, - "piloswine": 1.8195022227039495, - "octillery": 2.172774687728264, - "mantine": 2.4272895703964323, - "skarmory": 1.6970605705080948, - "hitmontop": 2.5742354401106393, - "miltank": 3.058120872514319, - "grovyle": 6.099033254756998, - "sceptile": 1.1290373408097343, - "combusken": 3.9783820197989423, - "blaziken": 2.005248972625939, - "marshtomp": 2.4597657787136065, - "swampert": 1.2153288834598193, - "linoone": 4.670381953073413, - "linoone-galar": 4.114811626397797, - "pelipper": 4.9817703557971535, - "ninjask": 6.830121428026482, - "exploud": 1.5263674132394385, - "lairon": 2.343971393595263, - "manectric": 1.5211224382335593, - "roselia": 3.144758859710405, - "sharpedo": 4.405362954149444, - "wailmer": 6.177262853808245, - "torkoal": 2.0640758202740512, - "flygon": 2.5281356298782005, - "altaria": 1.7501828407084532, - "whiscash": 1.9848594160481507, - "crawdaunt": 1.7199923243496038, - "claydol": 3.736723591390457, - "cradily": 1.8307012687058601, - "armaldo": 2.0482093122134795, - "dusclops": 3.6662141031219693, - "absol": 1.888730718632476, - "glalie": 4.047846158667088, - "sealeo": 3.0882876474164735, - "relicanth": 1.6612888845079214, - "metang": 3.0071369701156945, - "luxray": 2.94536176699418, - "vespiquen": 2.4690132980761295, - "cherrim": 4.278331751632133, - "gastrodon": 2.0854115339218966, - "drifblim": 4.167645872321772, - "lopunny": 3.366655236424798, - "skuntank": 1.354973054507602, - "bronzong": 3.62401895763038, - "munchlax": 2.183379769880979, - "drapion": 2.138141182989065, - "abomasnow": 2.669739514562712, - "froslass": 3.3347081442049693, - "rotom": 3.601828171324886, - "stoutland": 2.1388006787802607, - "liepard": 6.4003547288097575, - "musharna": 1.5362119673073082, - "unfezant": 5.486888551072964, - "boldore": 3.1613624896599912, - "swoobat": 5.703643009936798, - "audino": 1.9462537607016324, - "gurdurr": 1.900134175789683, - "palpitoad": 3.521752815143943, - "seismitoad": 5.513061888076837, - "scolipede": 2.8236524608095577, - "whimsicott": 2.144356426867754, - "lilligant": 2.224459615273739, - "basculin-red-striped": 2.6366225185096788, - "basculin-blue-striped": 3.3611811706912125, - "krookodile": 3.1294799966463067, - "maractus": 1.571426538617648, - "crustle": 2.14460044973044, - "sigilyph": 2.4895635465010186, - "cofagrigus": 2.5823540611848417, - "garbodor": 1.6962446909596511, - "cinccino": 4.267757045845193, - "vanillish": 2.0796821101678784, - "emolga": 2.19211796742596, - "escavalier": 1.698271374516918, - "amoonguss": 1.953598551072154, - "jellicent": 1.9245371785155725, - "galvantula": 1.1626725778099223, - "klang": 2.250124344111241, - "klinklang": 3.0615777659063568, - "beheeyem": 1.9505721100978486, - "lampent": 3.3242513892104686, - "fraxure": 1.5420190241119776, - "beartic": 1.7146501011499509, - "cryogonal": 1.8403996883519986, - "accelgor": 2.7717809663532416, - "stunfisk": 1.4641050621953038, - "stunfisk-galar": 2.5051820033807712, - "mienshao": 3.0370009419161925, - "druddigon": 2.0005339431617246, - "golurk": 2.159659930983018, - "bisharp": 2.0687148808247646, - "bouffalant": 1.194236082729664, - "heatmor": 2.27970165653928, - "durant": 2.343792475408212, - "diggersby": 3.68844444118242, - "talonflame": 3.5469953485306362, - "pangoro": 1.6051039660525517, - "doublade": 2.20196148734495, - "malamar": 2.319949742588043, - "barbaracle": 1.3660082156460391, - "heliolisk": 2.9128170881565545, - "tyrantrum": 1.4689390755941596, - "aurorus": 2.629926407308534, - "hawlucha": 3.1107655410039703, - "dedenne": 2.307411600150625, - "klefki": 2.858714258217742, - "trevenant": 2.9614993742860536, - "gourgeist-average": 5.347857685786656, - "charjabug": 3.2336555938840785, - "vikavolt": 1.5178225553254738, - "ribombee": 4.109492111897716, - "lycanroc-midday": 3.788987599629287, - "lycanroc-midnight": 2.680207696800067, - "mudsdale": 1.7533328411876141, - "araquanid": 2.2342040725881436, - "lurantis": 1.8355567454208168, - "shiinotic": 3.329382560461667, - "salazzle": 3.898993887695288, - "bewear": 1.5311247719239762, - "tsareena": 2.3863991740719506, - "comfey": 3.589052333570087, - "oranguru": 2.9602242665545764, - "passimian": 2.014726923849607, - "palossand": 2.1004416869378177, - "pyukumuku": 38.93127724500246, - "togedemaru": 1.8889019391966504, - "mimikyu-disguised": 3.737697794932896, - "greedent": 1.9114514869993906, - "orbeetle": 1.8827194254592445, - "thievul": 1.7588568694851157, - "eldegoss": 2.8810002857808525, - "dubwool": 2.484475542190096, - "drednaw": 1.161512152836218, - "boltund": 3.7357826144164843, - "carkol": 3.643853992812927, - "coalossal": 2.9956242024602204, - "sandaconda": 3.148697676126302, - "cramorant": 5.396942472996451, - "toxtricity-amped": 2.035372637647126, - "centiskorch": 2.5520283746405426, - "grapploct": 1.5664703619942097, - "polteageist": 2.9430107364217344, - "hatterene": 2.2227171476198233, - "grimmsnarl": 3.449769602333056, - "obstagoon": 2.097351856900884, - "perrserker": 2.6519019665296204, - "alcremie": 1.2888936622393234, - "falinks": 2.7306182582228233, - "pincurchin": 2.452769044644426, - "frosmoth": 2.365586219478335, - "indeedee-male": 3.7542968458052233, - "morpeko": 2.1823374382205696, - "copperajah": 2.2976841830070303, - "duraludon": 1.150441624939801, - "drakloak": 5.054208561092644, - "barraskewda": 4.087564309975768 + "ivysaur": 2.357234671572773, + "charmeleon": 4.9126965242842795, + "wartortle": 2.571572521628198, + "butterfree": 3.9054769287633797, + "raichu": 4.1723115372195, + "raichu-alola": 3.5520190285856983, + "sandslash": 2.1785361813142363, + "sandslash-alola": 1.7448141890927469, + "nidoqueen": 3.0806898187891223, + "nidoking": 2.1255531475893843, + "clefairy": 8.08407662654458, + "clefable": 1.7579772315216626, + "jigglypuff": 24.253645696015546, + "wigglytuff": 1.700137201584179, + "gloom": 4.782013858984103, + "vileplume": 2.1949516607076465, + "dugtrio": 4.465644143806882, + "dugtrio-alola": 4.320801185014982, + "persian": 3.834471643802453, + "persian-alola": 3.7217319582570525, + "golduck": 2.8752596338183913, + "poliwrath": 1.660159465662732, + "kadabra": 4.563041331905444, + "machoke": 3.4923383002482815, + "tentacruel": 2.3745878400001916, + "slowbro": 1.810512313336154, + "magneton": 2.4743512056426717, + "haunter": 4.615611999381698, + "kingler": 2.0703417057754394, + "exeggutor": 1.8082708984073248, + "marowak": 3.4238505601068434, + "marowak-alola": 2.4395444594094857, + "hitmonlee": 2.4632349675468674, + "hitmonchan": 2.0398155833580964, + "lickitung": 1.7680149248226895, + "weezing": 1.3603421679442014, + "weezing-galar": 2.185520385038051, + "rhydon": 2.8431701298750003, + "chansey": 26.421834680719954, + "tangela": 3.274547606393806, + "kangaskhan": 1.6599121207061813, + "seadra": 3.412290150708264, + "seaking": 2.278804106016006, + "starmie": 1.5605415363129187, + "mr-mime": 6.334328714123933, + "mr-mime-galar": 4.252547437680391, + "scyther": 2.443375889684371, + "jynx": 5.492977455037873, + "electabuzz": 1.8557243517302358, + "magmar": 2.249294498301074, + "tauros": 1.755794505255302, + "ditto": 4.554732647810924, + "vaporeon": 3.082548589993534, + "jolteon": 1.6433775245976894, + "flareon": 3.2849301530479567, + "porygon": 2.3671772304371044, + "dragonair": 1.9707782952463493, + "noctowl": 5.583783671440365, + "lanturn": 1.6606580416262537, + "togetic": 5.17097182567589, + "xatu": 3.975985166366993, + "bellossom": 1.7704130805492286, + "azumarill": 1.7233474514193758, + "sudowoodo": 2.6331335112563834, + "politoed": 2.3667762086174484, + "quagsire": 4.273183866406576, + "slowking": 2.967914528717567, + "dunsparce": 2.994483871182812, + "qwilfish": 3.0136008172445123, + "sneasel": 2.1815409920990576, + "piloswine": 1.8198557649926297, + "octillery": 2.1713440809781606, + "mantine": 2.4249912745127364, + "skarmory": 1.6949393455659636, + "hitmontop": 2.5727600551731813, + "miltank": 3.0516313708894414, + "grovyle": 6.072420302457362, + "sceptile": 1.1232640069317397, + "combusken": 3.978387651039771, + "blaziken": 2.006841629717441, + "marshtomp": 2.4611270345777134, + "swampert": 1.2151636251231859, + "linoone": 4.662705973655598, + "linoone-galar": 4.106241894030846, + "pelipper": 4.968634181291776, + "ninjask": 6.819631975329441, + "exploud": 1.523886479935883, + "lairon": 2.342228423384536, + "manectric": 1.5177391901995794, + "roselia": 3.1319837729008317, + "sharpedo": 4.397782182598688, + "wailmer": 6.176316881293139, + "torkoal": 2.064867576941818, + "flygon": 2.5274968003739113, + "altaria": 1.7491696767331786, + "whiscash": 1.9838293359092087, + "crawdaunt": 1.7161491322982112, + "claydol": 3.7339562620324713, + "cradily": 1.8239947051273337, + "armaldo": 2.047001507484353, + "dusclops": 3.6648358274985062, + "absol": 1.8867331195460997, + "glalie": 4.047312569350239, + "sealeo": 3.088676808968353, + "relicanth": 1.6586347541558668, + "metang": 3.0034248679422255, + "luxray": 2.9329848689046973, + "vespiquen": 2.4655552041718067, + "cherrim": 4.256728076971884, + "gastrodon": 2.0848315930502372, + "drifblim": 4.155853820461994, + "lopunny": 3.362240942737954, + "skuntank": 1.3535100608153177, + "bronzong": 3.624973912319303, + "munchlax": 2.1809484970763764, + "drapion": 2.1358462491724968, + "abomasnow": 2.6609785439164093, + "froslass": 3.3373644872313992, + "rotom": 3.5932766343500786, + "stoutland": 2.1342019251632833, + "liepard": 6.390159125167171, + "musharna": 1.5327312419586403, + "unfezant": 5.479877095484582, + "boldore": 3.156770621475249, + "swoobat": 5.696577490616421, + "audino": 1.9440232032631546, + "gurdurr": 1.896444466283001, + "palpitoad": 3.519123864061136, + "seismitoad": 5.499077581445935, + "scolipede": 2.820054405713636, + "whimsicott": 2.1325183346922176, + "lilligant": 2.2133958104482883, + "basculin-red-striped": 2.6363033419098167, + "basculin-blue-striped": 3.3598831841916734, + "krookodile": 3.125982224724604, + "maractus": 1.5619603533963344, + "crustle": 2.1425746040396247, + "sigilyph": 2.4877757112724748, + "cofagrigus": 2.5791536262277726, + "garbodor": 1.6936076481110827, + "cinccino": 4.263405496803405, + "vanillish": 2.07911134417123, + "emolga": 2.1842263145785195, + "escavalier": 1.697194619762901, + "amoonguss": 1.9455362471400237, + "jellicent": 1.925292570288124, + "galvantula": 1.1573098552898782, + "klang": 2.2433459210455347, + "klinklang": 3.0595476226798497, + "beheeyem": 1.9483612165759285, + "lampent": 3.333230642866842, + "fraxure": 1.5399143617977833, + "beartic": 1.7144761492778144, + "cryogonal": 1.839842832040404, + "accelgor": 2.767064719372006, + "stunfisk": 1.4608167276428576, + "stunfisk-galar": 2.501524062950357, + "mienshao": 3.031527811013325, + "druddigon": 2.000974044549098, + "golurk": 2.160648924827897, + "bisharp": 2.0634927350164602, + "bouffalant": 1.1934948768173177, + "heatmor": 2.2808509268951047, + "durant": 2.336811179236179, + "diggersby": 3.686859410830874, + "talonflame": 3.5495300701255417, + "pangoro": 1.6026792628868678, + "doublade": 2.200833861941151, + "malamar": 2.3124870667331843, + "barbaracle": 1.3640841194158209, + "heliolisk": 2.897137105429495, + "tyrantrum": 1.4669003658722843, + "aurorus": 2.624640026761264, + "hawlucha": 3.105172907342623, + "dedenne": 2.2962708051308285, + "klefki": 2.854977424219082, + "trevenant": 2.9539015152987895, + "gourgeist-average": 5.345901091462996, + "charjabug": 3.220967721868486, + "vikavolt": 1.514051527771628, + "ribombee": 4.095951131659358, + "lycanroc-midday": 3.787066431513276, + "lycanroc-midnight": 2.6789690221598006, + "mudsdale": 1.7524768015987817, + "araquanid": 2.2312345230527093, + "lurantis": 1.8276105217606862, + "shiinotic": 3.3152999301289614, + "salazzle": 3.902349907040021, + "bewear": 1.527043977330813, + "tsareena": 2.37692787072935, + "comfey": 3.5719024680904123, + "oranguru": 2.9573896200264076, + "passimian": 2.0112507542539406, + "palossand": 2.098902726961117, + "pyukumuku": 38.88746997120445, + "togedemaru": 1.8850092284070978, + "mimikyu-disguised": 3.7309017617223503, + "greedent": 1.908782110364399, + "orbeetle": 1.8798555919344495, + "thievul": 1.755936420213458, + "eldegoss": 2.866355881011442, + "dubwool": 2.4776238585449315, + "drednaw": 1.1605901529030531, + "boltund": 3.722615322700535, + "carkol": 3.6487703312076505, + "coalossal": 2.9983166710604543, + "sandaconda": 3.144018390335238, + "cramorant": 5.397132234517196, + "barraskewda": 4.087564309975768, + "toxtricity-amped": 2.026337412666633, + "centiskorch": 2.552606009340972, + "grapploct": 1.5642603202879286, + "polteageist": 2.9387603227380126, + "hatterene": 2.2170345496650405, + "grimmsnarl": 3.4394457564733747, + "obstagoon": 2.0898348912359177, + "perrserker": 2.6458983241655725, + "alcremie": 1.2852574115375153, + "falinks": 2.7261717810588135, + "pincurchin": 2.4435655711544513, + "frosmoth": 2.3602896922762104, + "indeedee-male": 3.7540106669258657, + "morpeko": 2.1734744279258935, + "copperajah": 2.29779683225986, + "duraludon": 1.1467237238573569, + "drakloak": 5.054859672321215 }, "toxtricity-amped": { - "ivysaur": 3.225862641312389, - "charmeleon": 3.984043161272507, - "wartortle": 3.8972736937586676, - "butterfree": 6.195526022909842, - "raichu": 5.104767145303519, - "raichu-alola": 2.9832733015296307, - "sandslash": 1.917498508205771, - "sandslash-alola": 2.2851450811288876, - "nidoqueen": 2.2279916803973254, - "nidoking": 1.500018053109482, - "clefairy": 9.52242275024037, - "clefable": 2.308841054078621, - "jigglypuff": 29.385218596406943, - "wigglytuff": 2.1330273768631876, - "gloom": 5.871304331424303, - "vileplume": 3.065921755645154, - "dugtrio": 2.7137041991421134, - "dugtrio-alola": 2.301824622264007, - "persian": 4.428438687255467, - "persian-alola": 4.300392653892865, - "golduck": 4.271826827753538, - "poliwrath": 2.788584899910662, - "kadabra": 3.6040919824157625, - "machoke": 4.271691555001947, - "tentacruel": 2.97815862748926, - "slowbro": 2.3016815802315733, - "magneton": 3.0183795066163586, - "haunter": 4.608462693077199, - "kingler": 3.8146558949592473, - "exeggutor": 1.6434602474674422, - "marowak": 2.5230367890854897, - "marowak-alola": 2.2908557704434553, - "hitmonlee": 2.387166643296048, - "hitmonchan": 2.2030969295531384, - "lickitung": 1.9922831906686902, - "weezing": 1.8293572780077483, - "weezing-galar": 3.137791507190303, - "rhydon": 1.6932977053000877, - "chansey": 18.97636258838513, - "tangela": 5.625287235763632, - "kangaskhan": 1.732247563898167, - "seadra": 6.802891466730543, - "seaking": 2.9955339867192787, - "starmie": 2.009177937635996, - "mr-mime": 5.386067703697032, - "mr-mime-galar": 3.312749557424337, - "scyther": 3.8768881164719184, - "jynx": 4.0350645094613355, - "electabuzz": 2.5432241051322144, - "magmar": 1.654778681115196, - "tauros": 1.9620414977666099, - "ditto": 3.2211233530414396, - "vaporeon": 4.0797509281725794, - "jolteon": 1.781663261929138, - "flareon": 2.2382370588285925, - "porygon": 2.8924035430810537, - "dragonair": 1.7653987381866454, - "noctowl": 7.26574377065278, - "lanturn": 1.8323185803373092, - "togetic": 7.434789305005872, - "xatu": 5.005398161977343, - "bellossom": 2.4638821242999915, - "azumarill": 3.5818171066539337, - "sudowoodo": 2.5414747786248295, - "politoed": 2.8466368350999454, - "quagsire": 4.712002576575216, - "slowking": 2.960328604278981, - "dunsparce": 3.5534903422297783, - "qwilfish": 5.570618085601575, - "sneasel": 2.228151920526386, - "piloswine": 1.5780424368799366, - "octillery": 3.496126075712457, - "mantine": 4.4771920957668945, - "skarmory": 3.786458552308373, - "hitmontop": 2.4211768010087944, - "miltank": 4.052952974650685, - "grovyle": 7.922568592865504, - "sceptile": 1.389090644569474, - "combusken": 3.6616631991531503, - "blaziken": 1.7390411729066213, - "marshtomp": 2.1005748351251663, - "swampert": 1.0459198703767, - "linoone": 5.464370981683758, - "linoone-galar": 4.759430156239642, - "pelipper": 14.67312286023799, - "ninjask": 10.146473817540759, - "exploud": 1.6532833000082783, - "lairon": 2.9264086515395213, - "manectric": 1.6784547013550404, - "roselia": 3.5105656708713946, - "sharpedo": 6.968691327157066, - "wailmer": 9.648950684285747, - "torkoal": 2.1310708378800802, - "flygon": 2.159713381985145, - "altaria": 1.6786235135931862, - "whiscash": 1.9119541646863731, - "crawdaunt": 3.027569271366709, - "claydol": 2.826908863263901, - "cradily": 2.0593506082177595, - "armaldo": 1.786671137787771, - "dusclops": 3.603803743173274, - "absol": 2.0389236896292657, - "glalie": 4.310977361667062, - "sealeo": 4.349104449688885, - "relicanth": 2.9024938547030175, - "metang": 3.0969066222866495, - "luxray": 3.797050090571785, - "vespiquen": 4.047344718403358, - "cherrim": 5.780846387026166, - "gastrodon": 2.033715331751757, - "drifblim": 5.571914914208386, - "lopunny": 3.8597713096453754, - "skuntank": 1.555992933036248, - "bronzong": 3.001012871729987, - "munchlax": 2.17980236033232, - "drapion": 2.8174687070015585, - "abomasnow": 3.0826056663945582, - "froslass": 3.0072439134148654, - "rotom": 3.220764491268101, - "stoutland": 2.4587523800119864, - "liepard": 7.552628007694048, - "musharna": 1.3966647497561726, - "unfezant": 10.390446829639924, - "boldore": 3.399944110417332, - "swoobat": 7.159862801120706, - "audino": 2.3176959208292023, - "gurdurr": 2.311215539118111, - "palpitoad": 3.0647957029761157, - "seismitoad": 6.398041100716065, - "scolipede": 3.6223928072423917, - "whimsicott": 3.313871199199449, - "lilligant": 3.1696303828656767, - "basculin-red-striped": 3.924691368384951, - "basculin-blue-striped": 5.298702450088506, - "krookodile": 2.2841558759774028, - "maractus": 2.258944515063294, - "crustle": 2.4176264321614402, - "sigilyph": 3.14234283121759, - "cofagrigus": 2.6389893808650005, - "garbodor": 2.06598967222967, - "cinccino": 4.694432867450609, - "vanillish": 2.1552324667181306, - "emolga": 3.5104073475604882, - "escavalier": 1.6339004579659586, - "amoonguss": 2.603970904434348, - "jellicent": 2.19477331326423, - "galvantula": 1.661982370901741, - "klang": 3.148270241211522, - "klinklang": 3.856894305048664, - "beheeyem": 1.6811417452061659, - "lampent": 2.6677711662391195, - "fraxure": 1.5488373153804722, - "beartic": 1.802050552234522, - "cryogonal": 1.5897993677462652, - "accelgor": 3.3387894790399075, - "stunfisk": 1.0724908854244455, - "stunfisk-galar": 1.5002248027103204, - "mienshao": 3.601484060211514, - "druddigon": 1.6274746881949134, - "golurk": 1.135847524018416, - "bisharp": 2.5645347418309505, - "bouffalant": 1.3959773155100468, - "heatmor": 2.015213012129946, - "durant": 3.8731521112306115, - "diggersby": 2.3594909317629114, - "talonflame": 4.363240958940605, - "pangoro": 1.9334621686109277, - "doublade": 3.245600894530851, - "malamar": 2.847255890210654, - "barbaracle": 2.113297912204832, - "heliolisk": 3.0240725291440302, - "tyrantrum": 1.46017076041897, - "aurorus": 2.460811381934899, - "hawlucha": 5.367854701329466, - "dedenne": 3.068903469545968, - "klefki": 3.5730576650894124, - "trevenant": 2.755817188309263, - "gourgeist-average": 4.579966309313972, - "charjabug": 3.5814911348602547, - "vikavolt": 1.7841942209008321, - "ribombee": 5.186579183447206, - "lycanroc-midday": 3.4346100959662698, - "lycanroc-midnight": 2.471512816108336, - "mudsdale": 1.4123973115888262, - "araquanid": 3.250718808887073, - "lurantis": 2.4213217502512934, - "shiinotic": 4.347296398298774, - "salazzle": 3.3842665637142932, - "bewear": 1.8802209003833514, - "tsareena": 3.21270937308739, - "comfey": 4.923878619735072, - "oranguru": 2.209416117324722, - "passimian": 2.706490020382617, - "palossand": 1.0850036818171942, - "pyukumuku": 65.33497166373662, - "togedemaru": 2.0563437836583804, - "mimikyu-disguised": 4.00632206545684, - "greedent": 2.1808974529175105, - "orbeetle": 1.747812567500434, - "thievul": 1.7553602265745702, - "eldegoss": 3.8164591240846493, - "dubwool": 3.2223429970391915, - "drednaw": 1.84716393300773, - "boltund": 4.677080275085757, - "carkol": 2.5114183843126234, - "coalossal": 2.0740191530686105, - "sandaconda": 2.7168190578737033, - "cramorant": 9.8998136496561, - "barraskewda": 6.708876393253877, - "centiskorch": 1.8380341965899927, - "grapploct": 1.8576058657836767, - "polteageist": 2.457381503522633, - "hatterene": 2.3867227132200552, - "grimmsnarl": 4.006184409266959, - "obstagoon": 2.7195570920194254, - "perrserker": 3.8536799276393996, - "alcremie": 1.538772508292674, - "falinks": 3.789879641473358, - "pincurchin": 2.981954592179215, - "frosmoth": 2.824336205261797, - "indeedee-male": 2.818128419553829, - "morpeko": 2.752550311064292, - "copperajah": 2.727887193837938, - "duraludon": 1.4912899430494182, - "drakloak": 3.7653298460610856, - "toxtricity-amped": 2.586498803893144 + "ivysaur": 3.2276417237506942, + "charmeleon": 3.9827419345117585, + "wartortle": 3.9019497263306975, + "butterfree": 6.206599761517613, + "raichu": 5.100597160020833, + "raichu-alola": 2.9748452323503756, + "sandslash": 1.9097248371519502, + "sandslash-alola": 2.285340481964586, + "nidoqueen": 2.2171386882953983, + "nidoking": 1.4932963712618683, + "clefairy": 9.52685281421796, + "clefable": 2.3106930848001683, + "jigglypuff": 29.417358939512816, + "wigglytuff": 2.1310709710154425, + "gloom": 5.874878369181104, + "vileplume": 3.068213688945825, + "dugtrio": 2.693795883526358, + "dugtrio-alola": 2.2883748185776485, + "persian": 4.425924306345458, + "persian-alola": 4.297797887738365, + "golduck": 4.274085363798767, + "poliwrath": 2.792559306789167, + "kadabra": 3.5933968312152755, + "machoke": 4.2749250271382975, + "tentacruel": 2.9801933942685217, + "slowbro": 2.298107722752542, + "magneton": 3.019253766863547, + "haunter": 4.603213263780813, + "kingler": 3.814996335124084, + "exeggutor": 1.6373086689517653, + "marowak": 2.510747097190751, + "marowak-alola": 2.2898346986557847, + "hitmonlee": 2.3880971572959404, + "hitmonchan": 2.203721925002434, + "lickitung": 1.9919491250847177, + "weezing": 1.8316187606102852, + "weezing-galar": 3.1433408567441243, + "rhydon": 1.6833200226850769, + "chansey": 18.898766018663906, + "tangela": 5.630609510756292, + "kangaskhan": 1.7281851897629963, + "seadra": 6.81002942879147, + "seaking": 2.9921068973474125, + "starmie": 2.009307010558464, + "mr-mime": 5.362620555340043, + "mr-mime-galar": 3.3015956777660143, + "scyther": 3.882987398163566, + "jynx": 4.028778248502286, + "electabuzz": 2.5424663008057142, + "magmar": 1.6539003456680292, + "tauros": 1.9580696694838624, + "ditto": 3.2009724682400393, + "vaporeon": 4.080682988673647, + "jolteon": 1.7779225699537133, + "flareon": 2.2360572773330043, + "porygon": 2.891264769520911, + "dragonair": 1.7636941019246368, + "noctowl": 7.270207157770538, + "lanturn": 1.8274805151872136, + "togetic": 7.447083399047231, + "xatu": 5.002989702835605, + "bellossom": 2.465329974853235, + "azumarill": 3.5912044728979935, + "sudowoodo": 2.5352460837842576, + "politoed": 2.839048000752258, + "quagsire": 4.70771636505424, + "slowking": 2.9570990127000325, + "dunsparce": 3.5554570967843464, + "qwilfish": 5.582505949995789, + "sneasel": 2.225306303871876, + "piloswine": 1.5765080772376123, + "octillery": 3.5025183619647997, + "mantine": 4.487221753313256, + "skarmory": 3.7978354192742247, + "hitmontop": 2.415280573861272, + "miltank": 4.054719241917217, + "grovyle": 7.92524054043597, + "sceptile": 1.3893065115631038, + "combusken": 3.6655179452082103, + "blaziken": 1.740138318134985, + "marshtomp": 2.0923011170552015, + "swampert": 1.040451060589565, + "linoone": 5.463041972312588, + "linoone-galar": 4.755915638322282, + "pelipper": 14.710667997224846, + "ninjask": 10.152638083870597, + "exploud": 1.6525162043264263, + "lairon": 2.928076422840494, + "manectric": 1.6740526962599764, + "roselia": 3.5039908814755942, + "sharpedo": 6.97204415865548, + "wailmer": 9.665057173730709, + "torkoal": 2.1323397998242255, + "flygon": 2.1536387836961954, + "altaria": 1.6783625703912013, + "whiscash": 1.9073045777845739, + "crawdaunt": 3.0303773767863484, + "claydol": 2.815686075286133, + "cradily": 2.05752391299691, + "armaldo": 1.7821352439023184, + "dusclops": 3.6009009292978207, + "absol": 2.038000190620319, + "glalie": 4.3094068959583, + "sealeo": 4.351440785907478, + "relicanth": 2.904279189700894, + "metang": 3.0944828210771567, + "luxray": 3.7957535091199057, + "vespiquen": 4.057362303172393, + "cherrim": 5.779183590886345, + "gastrodon": 2.0302115475950444, + "drifblim": 5.565503476883633, + "lopunny": 3.8603810636376736, + "skuntank": 1.5567211793024156, + "bronzong": 2.994078352294533, + "munchlax": 2.178468088670562, + "drapion": 2.8217891725628146, + "abomasnow": 3.0790624572493606, + "froslass": 3.0031702070678765, + "rotom": 3.2163183641355073, + "stoutland": 2.456036182129832, + "liepard": 7.555962688863508, + "musharna": 1.3928060863964533, + "unfezant": 10.42324811373728, + "boldore": 3.3923125971238983, + "swoobat": 7.156157112765667, + "audino": 2.3171776855295274, + "gurdurr": 2.308953719681743, + "palpitoad": 3.0502269662738692, + "seismitoad": 6.390263343967483, + "scolipede": 3.626647753518295, + "whimsicott": 3.3169261821025398, + "lilligant": 3.171595421571846, + "basculin-red-striped": 3.9248091095588666, + "basculin-blue-striped": 5.303482387923337, + "krookodile": 2.2727726039501404, + "maractus": 2.26013852647075, + "crustle": 2.4196901423639225, + "sigilyph": 3.142811505820779, + "cofagrigus": 2.6322588226733146, + "garbodor": 2.069466947400668, + "cinccino": 4.690647792596012, + "vanillish": 2.153184949201076, + "emolga": 3.517006937469082, + "escavalier": 1.6284077890114008, + "amoonguss": 2.6054201740693133, + "jellicent": 2.1963767968232144, + "galvantula": 1.6633740165350348, + "klang": 3.1511886393891744, + "klinklang": 3.8590772572577228, + "beheeyem": 1.6774938326044109, + "lampent": 2.6661283409950474, + "fraxure": 1.547707588609753, + "beartic": 1.8017372984320255, + "cryogonal": 1.5876444221551593, + "accelgor": 3.3417860821141163, + "stunfisk": 1.0671254185603938, + "stunfisk-galar": 1.490526080452724, + "mienshao": 3.6025836406609386, + "druddigon": 1.6241015292249843, + "golurk": 1.129477474954887, + "bisharp": 2.5616108444194374, + "bouffalant": 1.3968703974709076, + "heatmor": 2.0162688363977432, + "durant": 3.880457868121587, + "diggersby": 2.3443771756414593, + "talonflame": 4.372321225530248, + "pangoro": 1.9351613905957554, + "doublade": 3.2514495065426274, + "malamar": 2.8434874215677817, + "barbaracle": 2.1139530623505665, + "heliolisk": 3.0157106725481166, + "tyrantrum": 1.4585989923486635, + "aurorus": 2.457686291588358, + "hawlucha": 5.379420134507651, + "dedenne": 3.0713238438267485, + "klefki": 3.5790357108189887, + "trevenant": 2.754101565759699, + "gourgeist-average": 4.570285651400515, + "charjabug": 3.570902893545309, + "vikavolt": 1.78281826807489, + "ribombee": 5.193780736918199, + "lycanroc-midday": 3.4314895110093104, + "lycanroc-midnight": 2.470246726056078, + "mudsdale": 1.4081964681287036, + "araquanid": 3.256114412989843, + "lurantis": 2.4209394078750313, + "shiinotic": 4.346297292612063, + "salazzle": 3.38523577064712, + "bewear": 1.8788281051658835, + "tsareena": 3.2149869207748734, + "comfey": 4.931814703322209, + "oranguru": 2.200004529157848, + "passimian": 2.7108675319230153, + "palossand": 1.0765171688182404, + "pyukumuku": 65.46479644251734, + "togedemaru": 2.056216217235498, + "mimikyu-disguised": 3.9999474211846753, + "greedent": 2.1783025425632268, + "orbeetle": 1.7421349207715706, + "thievul": 1.753308301619609, + "eldegoss": 3.81532531598329, + "dubwool": 3.2235847656493846, + "drednaw": 1.848888046384439, + "boltund": 4.676485165137853, + "carkol": 2.5094693137460187, + "coalossal": 2.0721862715812507, + "sandaconda": 2.7052746313399174, + "cramorant": 9.912263391686682, + "barraskewda": 6.713939426539222, + "toxtricity-amped": 2.586498803893144, + "centiskorch": 1.833331949371955, + "grapploct": 1.8601644564566793, + "polteageist": 2.451442617153937, + "hatterene": 2.3825268157562443, + "grimmsnarl": 4.007098519468734, + "obstagoon": 2.718652203026209, + "perrserker": 3.857366617571043, + "alcremie": 1.539849095314996, + "falinks": 3.797696968873897, + "pincurchin": 2.982328763338831, + "frosmoth": 2.8238568940945825, + "indeedee-male": 2.8106153848630657, + "morpeko": 2.7524203620151058, + "copperajah": 2.731439504932743, + "duraludon": 1.4921202896478927, + "drakloak": 3.75547645267065 }, "centiskorch": { - "ivysaur": 4.624750611797694, - "charmeleon": 4.335178238036037, - "wartortle": 2.510458911986478, - "butterfree": 6.187357737857033, - "raichu": 5.64491963749556, - "raichu-alola": 3.6599947884226554, - "sandslash": 2.2133942813628, - "sandslash-alola": 3.7000920877762153, - "nidoqueen": 3.122912944047259, - "nidoking": 2.030332073939756, - "clefairy": 9.98150222688157, - "clefable": 2.161374106951749, - "jigglypuff": 29.73914004684628, - "wigglytuff": 2.2857793900909025, - "gloom": 8.238682704965303, - "vileplume": 4.55865838019105, - "dugtrio": 2.866077969207094, - "dugtrio-alola": 4.773312162735309, - "persian": 4.458665542135197, - "persian-alola": 4.452328485399697, - "golduck": 2.637449704678921, - "poliwrath": 1.6795888825741931, - "kadabra": 4.346951818145425, - "machoke": 3.667851068912506, - "tentacruel": 2.2539624441354387, - "slowbro": 1.6726956532776507, - "magneton": 5.548532365472276, - "haunter": 4.929205624703187, - "kingler": 2.2460960769525133, - "exeggutor": 2.760581980965227, - "marowak": 3.359939247909203, - "marowak-alola": 2.4080611083153816, - "hitmonlee": 2.577778823652336, - "hitmonchan": 2.2287371981181936, - "lickitung": 1.9999570732678884, - "weezing": 1.9427024186326154, - "weezing-galar": 3.3177154274527068, - "rhydon": 2.4242673054122146, - "chansey": 28.87445836650926, - "tangela": 8.930198274652664, - "kangaskhan": 1.8818628179416352, - "seadra": 3.865571016330126, - "seaking": 2.1387215266076467, - "starmie": 1.3843267078407226, - "mr-mime": 7.121015915856905, - "mr-mime-galar": 5.006476068400952, - "scyther": 3.479914974634158, - "jynx": 7.029667095688309, - "electabuzz": 2.7391990985637977, - "magmar": 1.7943824846533774, - "tauros": 2.2076603437486266, - "ditto": 3.0871089761227175, - "vaporeon": 3.0174773338711685, - "jolteon": 2.0357215904768142, - "flareon": 2.536885618555807, - "porygon": 2.9464848282538596, - "dragonair": 1.8217276115355294, - "noctowl": 5.478923748158097, - "lanturn": 1.9469016374207748, - "togetic": 5.6143646593845, - "xatu": 3.8401758889522126, - "bellossom": 3.6113017883903304, - "azumarill": 2.075501722271652, - "sudowoodo": 2.5276859777437473, - "politoed": 2.352810112365546, - "quagsire": 4.1943907475386375, - "slowking": 2.322347730734537, - "dunsparce": 3.4550124494208987, - "qwilfish": 3.705364790326878, - "sneasel": 2.8443932941233223, - "piloswine": 1.6969505872414121, - "octillery": 2.226402782481174, - "mantine": 2.2504766029431136, - "skarmory": 3.428158245944975, - "hitmontop": 2.8549754447233573, - "miltank": 4.009855022726978, - "grovyle": 11.234199513489862, - "sceptile": 1.9666217633578769, - "combusken": 3.891721939914356, - "blaziken": 1.8356405903535178, - "marshtomp": 2.1943880875580293, - "swampert": 1.2189689580505, - "linoone": 5.427979848705203, - "linoone-galar": 4.883260819336623, - "pelipper": 5.173788626320052, - "ninjask": 10.681646392322197, - "exploud": 1.7785803784617884, - "lairon": 3.1445315739976323, - "manectric": 2.0002428200267572, - "roselia": 5.319383751429647, - "sharpedo": 4.450670982389198, - "wailmer": 5.69244123705911, - "torkoal": 2.3572582519218748, - "flygon": 2.331258679990512, - "altaria": 1.6477018159441918, - "whiscash": 1.7331239421796258, - "crawdaunt": 1.7364967717411814, - "claydol": 3.160531386196031, - "cradily": 2.1929955115716866, - "armaldo": 1.765030865486393, - "dusclops": 3.6348138002971018, - "absol": 2.1180215911911686, - "glalie": 5.803777395274614, - "sealeo": 2.900723148948984, - "relicanth": 1.7449337942494874, - "metang": 4.424775275561399, - "luxray": 4.221557256403747, - "vespiquen": 3.62026220047057, - "cherrim": 8.544200630953675, - "gastrodon": 1.7999613731932325, - "drifblim": 4.439385830307232, - "lopunny": 3.6168272864314726, - "skuntank": 1.6477057260319092, - "bronzong": 4.647350119323818, - "munchlax": 2.2831380058913116, - "drapion": 2.956837516477723, - "abomasnow": 6.275532157947022, - "froslass": 4.3276423861702735, - "rotom": 4.033336530356806, - "stoutland": 2.469373127417318, - "liepard": 7.483430013093564, - "musharna": 1.6446722075669484, - "unfezant": 5.908594412859754, - "boldore": 3.3849689252768997, - "swoobat": 5.495070049516727, - "audino": 2.446682327127398, - "gurdurr": 2.605248080544006, - "palpitoad": 3.4305495593721775, - "seismitoad": 6.180254401956807, - "scolipede": 4.860981219682484, - "whimsicott": 4.644125204017607, - "lilligant": 4.6905302064550405, - "basculin-red-striped": 2.3846712382074933, - "basculin-blue-striped": 3.0804686876129175, - "krookodile": 2.984840949552904, - "maractus": 3.3938784862314937, - "crustle": 2.0511293312313574, - "sigilyph": 2.40233947667625, - "cofagrigus": 2.940753910411523, - "garbodor": 2.056438866001516, - "cinccino": 4.87983950648887, - "vanillish": 3.086605356087484, - "emolga": 3.127654145426984, - "escavalier": 3.8102212822331896, - "amoonguss": 3.6661756764062856, - "jellicent": 1.4130224874769062, - "galvantula": 2.329389680000908, - "klang": 3.879108188273579, - "klinklang": 5.317541246143592, - "beheeyem": 1.7277417678365348, - "lampent": 2.9570581112559426, - "fraxure": 1.4251441443613229, - "beartic": 2.5227276666293568, - "cryogonal": 2.1744127976547905, - "accelgor": 4.361313418974583, - "stunfisk": 1.3270351577715642, - "stunfisk-galar": 3.3649085289283756, - "mienshao": 3.1556458967953223, - "druddigon": 1.6726107746525436, - "golurk": 1.992203265209671, - "bisharp": 3.5933699693426924, - "bouffalant": 1.3812381215927845, - "heatmor": 2.170561452606962, - "durant": 8.506855447911535, - "diggersby": 2.973508294658781, - "talonflame": 2.7223171116334424, - "pangoro": 1.9121772926825336, - "doublade": 4.431306660442845, - "malamar": 3.021927317081952, - "barbaracle": 1.6120320583151186, - "heliolisk": 4.579339612183318, - "tyrantrum": 1.6937385154027398, - "aurorus": 2.3253138550344192, - "hawlucha": 3.7942581155995967, - "dedenne": 3.5133607393120174, - "klefki": 4.998633327476746, - "trevenant": 4.6151982592695795, - "gourgeist-average": 8.175988079281634, - "charjabug": 5.843441783726977, - "vikavolt": 2.848782065708889, - "ribombee": 6.9490274641887115, - "lycanroc-midday": 2.6062201015344053, - "lycanroc-midnight": 2.128073164026344, - "mudsdale": 1.710114056414864, - "araquanid": 2.2654052600642802, - "lurantis": 3.564809496924546, - "shiinotic": 6.2361725730890525, - "salazzle": 4.764492225122427, - "bewear": 1.8698008888870676, - "tsareena": 4.2447945704083985, - "comfey": 5.049871409571043, - "oranguru": 2.750157079517467, - "passimian": 2.2169407798264773, - "palossand": 2.275273198100211, - "pyukumuku": 41.43393711429681, - "togedemaru": 3.3919401318467424, - "mimikyu-disguised": 3.9786687388412414, - "greedent": 2.2941249996750424, - "orbeetle": 2.592351885377898, - "thievul": 1.8819377447583392, - "eldegoss": 5.547210455416899, - "dubwool": 4.293157362110357, - "drednaw": 1.0734920894107007, - "boltund": 5.21067440011177, - "carkol": 2.759270117073867, - "coalossal": 2.6348969627871552, - "sandaconda": 3.583451393494048, - "cramorant": 5.014592163967862, - "barraskewda": 3.9807197654216813, - "toxtricity-amped": 4.160640146821052, - "grapploct": 1.7749505120602147, - "polteageist": 2.707664413431468, - "hatterene": 2.697095324610186, - "grimmsnarl": 4.089853992579405, - "obstagoon": 2.676309533259196, - "perrserker": 5.3331776724432975, - "alcremie": 1.662531410909072, - "falinks": 3.7284516202980775, - "pincurchin": 3.2368079740937423, - "frosmoth": 4.764997416739751, - "indeedee-male": 3.3365857087353588, - "morpeko": 3.0596822938856842, - "copperajah": 3.7051934228361247, - "duraludon": 2.076432471762214, - "drakloak": 3.971367744357025, - "centiskorch": 2.1092639929335153 + "ivysaur": 4.643137740919078, + "charmeleon": 4.343350261895949, + "wartortle": 2.510901724840935, + "butterfree": 6.2046377235688, + "raichu": 5.6621722903939675, + "raichu-alola": 3.665504921139642, + "sandslash": 2.2118831089299964, + "sandslash-alola": 3.7064482259707034, + "nidoqueen": 3.1290771877233676, + "nidoking": 2.033836227245877, + "clefairy": 10.016590881661958, + "clefable": 2.163183828164779, + "jigglypuff": 29.849344545090304, + "wigglytuff": 2.2927027087201304, + "gloom": 8.265101520811937, + "vileplume": 4.57950208248945, + "dugtrio": 2.8619340338219192, + "dugtrio-alola": 4.784828479404527, + "persian": 4.463384306172344, + "persian-alola": 4.45718370740207, + "golduck": 2.633730342277196, + "poliwrath": 1.6789129085392727, + "kadabra": 4.3507366401025065, + "machoke": 3.6651086158696904, + "tentacruel": 2.252193759808599, + "slowbro": 1.6741577617374317, + "magneton": 5.574074011014939, + "haunter": 4.933877836342612, + "kingler": 2.2460381099248528, + "exeggutor": 2.7681357995194418, + "marowak": 3.364341885316671, + "marowak-alola": 2.41083295772711, + "hitmonlee": 2.5825692024273623, + "hitmonchan": 2.2324460886524906, + "lickitung": 2.002457436242893, + "weezing": 1.9478138631601738, + "weezing-galar": 3.3305852609743694, + "rhydon": 2.419481582099665, + "chansey": 28.859209309633805, + "tangela": 8.971997218344296, + "kangaskhan": 1.8831199096976317, + "seadra": 3.8660318407904484, + "seaking": 2.13574241881136, + "starmie": 1.3831191674407446, + "mr-mime": 7.133276169377824, + "mr-mime-galar": 5.017808585798749, + "scyther": 3.480945129472021, + "jynx": 7.053343814002428, + "electabuzz": 2.7445055037682966, + "magmar": 1.7971288989654042, + "tauros": 2.2113137587158205, + "ditto": 3.074394153493235, + "vaporeon": 3.0154128276625736, + "jolteon": 2.0400687286871397, + "flareon": 2.537368594446556, + "porygon": 2.950793141644067, + "dragonair": 1.8230832586336325, + "noctowl": 5.4708271241537005, + "lanturn": 1.9479836438270346, + "togetic": 5.627094646650117, + "xatu": 3.839001753144121, + "bellossom": 3.6277979004469576, + "azumarill": 2.077412346186617, + "sudowoodo": 2.5218286259324865, + "politoed": 2.351026862114448, + "quagsire": 4.19378982897601, + "slowking": 2.3207760193733353, + "dunsparce": 3.4600455551208102, + "qwilfish": 3.7041563634563577, + "sneasel": 2.848725833521391, + "piloswine": 1.6974012221607606, + "octillery": 2.2276478553316226, + "mantine": 2.2455189214031437, + "skarmory": 3.4335199388334607, + "hitmontop": 2.8614072487579687, + "miltank": 4.016415354543202, + "grovyle": 11.282121746233688, + "sceptile": 1.974711293576671, + "combusken": 3.9024746955869323, + "blaziken": 1.8396287577445252, + "marshtomp": 2.1920625146676085, + "swampert": 1.2193195110444486, + "linoone": 5.433978706828236, + "linoone-galar": 4.88701786687462, + "pelipper": 5.1643169363163, + "ninjask": 10.70974767309246, + "exploud": 1.7822649107130906, + "lairon": 3.1451288329999656, + "manectric": 2.005637352016538, + "roselia": 5.336969140757443, + "sharpedo": 4.446536429230445, + "wailmer": 5.686739447215449, + "torkoal": 2.36270588972031, + "flygon": 2.331271133406298, + "altaria": 1.6486415854688254, + "whiscash": 1.7308813107724828, + "crawdaunt": 1.7362083585867587, + "claydol": 3.155574679563317, + "cradily": 2.191785603477137, + "armaldo": 1.7624131645581202, + "dusclops": 3.6386077524020823, + "absol": 2.1210625638577736, + "glalie": 5.818892575783014, + "sealeo": 2.899423410760343, + "relicanth": 1.7374306662378545, + "metang": 4.436662881225937, + "luxray": 4.229681560919609, + "vespiquen": 3.624024930336174, + "cherrim": 8.578214118414373, + "gastrodon": 1.7951118124332757, + "drifblim": 4.438503697008073, + "lopunny": 3.618074265230978, + "skuntank": 1.6514078942110113, + "bronzong": 4.65408386897565, + "munchlax": 2.2824428967296604, + "drapion": 2.9662141370922637, + "abomasnow": 6.301364747498124, + "froslass": 4.339679030420664, + "rotom": 4.035642859132741, + "stoutland": 2.4704225075004542, + "liepard": 7.496528442543816, + "musharna": 1.6476604041187202, + "unfezant": 5.897213771972805, + "boldore": 3.3777552567029985, + "swoobat": 5.4934250779447495, + "audino": 2.4510433566879533, + "gurdurr": 2.612582685057882, + "palpitoad": 3.4284157675755287, + "seismitoad": 6.18178460193723, + "scolipede": 4.87546073395438, + "whimsicott": 4.665041098654034, + "lilligant": 4.712654318277168, + "basculin-red-striped": 2.3819087545589013, + "basculin-blue-striped": 3.0768940715797815, + "krookodile": 2.98749499733024, + "maractus": 3.4097669110226274, + "crustle": 2.0489741993952006, + "sigilyph": 2.4029483306521966, + "cofagrigus": 2.944825875953683, + "garbodor": 2.060661962033102, + "cinccino": 4.886872895353696, + "vanillish": 3.0963266669380087, + "emolga": 3.127920249787141, + "escavalier": 3.8175546643735347, + "amoonguss": 3.6784882416773383, + "jellicent": 1.4123516932020734, + "galvantula": 2.336757227088806, + "klang": 3.884827715354774, + "klinklang": 5.334185882238094, + "beheeyem": 1.7272768290586438, + "lampent": 2.9573812171171254, + "fraxure": 1.4261145737546514, + "beartic": 2.529903509903402, + "cryogonal": 2.180171117203117, + "accelgor": 4.374966589244181, + "stunfisk": 1.3287767509810897, + "stunfisk-galar": 3.3728243048192095, + "mienshao": 3.153248754021498, + "druddigon": 1.6730273570022463, + "golurk": 1.9938832971428302, + "bisharp": 3.600427057908444, + "bouffalant": 1.3840294988625337, + "heatmor": 2.1729387463980343, + "durant": 8.542269176171569, + "diggersby": 2.9693246873533963, + "talonflame": 2.721560242638853, + "pangoro": 1.9162185526318172, + "doublade": 4.447043199863389, + "malamar": 3.02554155490314, + "barbaracle": 1.6097651562347188, + "heliolisk": 4.5914556513947264, + "tyrantrum": 1.6909117244507061, + "aurorus": 2.3214819480031017, + "hawlucha": 3.7980541822190776, + "dedenne": 3.5275591817618883, + "klefki": 5.0211739169008665, + "trevenant": 4.632153905282829, + "gourgeist-average": 8.193996811581005, + "charjabug": 5.856751669531324, + "vikavolt": 2.856991926581583, + "ribombee": 6.978971043055557, + "lycanroc-midday": 2.592030212588904, + "lycanroc-midnight": 2.1216593678511546, + "mudsdale": 1.7129141992492856, + "araquanid": 2.265204742904046, + "lurantis": 3.578308548378719, + "shiinotic": 6.26402727697608, + "salazzle": 4.775023539781339, + "bewear": 1.8708065555716376, + "tsareena": 4.255018158007289, + "comfey": 5.072480310120666, + "oranguru": 2.752659612319867, + "passimian": 2.2149937962568584, + "palossand": 2.27778059472514, + "pyukumuku": 41.471301302286165, + "togedemaru": 3.4033165279095643, + "mimikyu-disguised": 3.9797199288337124, + "greedent": 2.2969144028588877, + "orbeetle": 2.598116679098013, + "thievul": 1.8828408991441954, + "eldegoss": 5.569504934208883, + "dubwool": 4.305002996518178, + "drednaw": 1.0706884085588504, + "boltund": 5.222130396472089, + "carkol": 2.756175819380334, + "coalossal": 2.632347193185198, + "sandaconda": 3.589656316663904, + "cramorant": 5.003858941243413, + "barraskewda": 3.9773669763374304, + "toxtricity-amped": 4.171330079160317, + "centiskorch": 2.1092639929335153, + "grapploct": 1.779028475064964, + "polteageist": 2.710128720442401, + "hatterene": 2.7047958544828576, + "grimmsnarl": 4.1019495812288245, + "obstagoon": 2.6780589756932884, + "perrserker": 5.350914383250509, + "alcremie": 1.6683743177528765, + "falinks": 3.740115324926066, + "pincurchin": 3.2418174596908793, + "frosmoth": 4.7734903348281055, + "indeedee-male": 3.34034725390185, + "morpeko": 3.0665710972537745, + "copperajah": 3.7201035292165208, + "duraludon": 2.082706429081311, + "drakloak": 3.969541021291271 }, "grapploct": { - "ivysaur": 2.764876613574036, - "charmeleon": 4.128327846827747, - "wartortle": 2.788666573492579, - "butterfree": 3.996389488011703, - "raichu": 5.5329437364567795, - "raichu-alola": 2.912795344330852, - "sandslash": 2.5708925614236695, - "sandslash-alola": 3.754030367469668, - "nidoqueen": 2.8749412455201653, - "nidoking": 1.9447588351951361, - "clefairy": 8.001850594593492, - "clefable": 1.5174786494306838, - "jigglypuff": 24.792490959525374, - "wigglytuff": 1.7670000731714186, - "gloom": 4.482230290113294, - "vileplume": 2.6246771924294667, - "dugtrio": 4.16122023020578, - "dugtrio-alola": 5.021610906330522, - "persian": 5.667779698395613, - "persian-alola": 6.442073428452339, - "golduck": 3.1606615667791997, - "poliwrath": 1.9469800930721899, - "kadabra": 3.1060324957428973, - "machoke": 4.1208576051369565, - "tentacruel": 2.1248525640974045, - "slowbro": 1.3277725039180477, - "magneton": 4.026189418287909, - "haunter": 3.6322227638637883, - "kingler": 2.4989029122903634, - "exeggutor": 1.608666869268235, - "marowak": 3.438686870206303, - "marowak-alola": 2.2847252570614844, - "hitmonlee": 2.7420059599640116, - "hitmonchan": 2.324990889525791, - "lickitung": 2.575967480558351, - "weezing": 1.4378359241353487, - "weezing-galar": 2.1942359055664578, - "rhydon": 3.620129637712855, - "chansey": 43.975228439252206, - "tangela": 5.037029994922832, - "kangaskhan": 2.5529157890067538, - "seadra": 4.105559868673803, - "seaking": 2.5400607774704262, - "starmie": 1.151745962167706, - "mr-mime": 4.74518173082617, - "mr-mime-galar": 3.602114268289635, - "scyther": 2.3483273790204313, - "jynx": 4.77003582743024, - "electabuzz": 2.7746321242290826, - "magmar": 1.820946865579906, - "tauros": 2.61806104395003, - "ditto": 2.1952285667033364, - "vaporeon": 3.4846264878364437, - "jolteon": 2.114096515659737, - "flareon": 2.6594916109565956, - "porygon": 3.8679920391194638, - "dragonair": 1.943410125720065, - "noctowl": 6.000014515494819, - "lanturn": 2.0659111342952254, - "togetic": 4.249001816563921, - "xatu": 2.8518612087778195, - "bellossom": 2.1171451091302362, - "azumarill": 1.7279812662908247, - "sudowoodo": 3.273644681866868, - "politoed": 2.7323800424305347, - "quagsire": 4.550698591734836, - "slowking": 2.069356082557972, - "dunsparce": 4.295752225508471, - "qwilfish": 2.8191644812116827, - "sneasel": 4.695175450401823, - "piloswine": 2.009134321419665, - "octillery": 2.447602699053737, - "mantine": 2.068354832296812, - "skarmory": 2.0047454678089793, - "hitmontop": 2.82786217876383, - "miltank": 4.220354822935029, - "grovyle": 8.47674887545191, - "sceptile": 1.5197332542801967, - "combusken": 3.553644545962932, - "blaziken": 1.737615716618445, - "marshtomp": 2.5655879255264393, - "swampert": 1.284091589762455, - "linoone": 7.204255205616455, - "linoone-galar": 9.795011925509094, - "pelipper": 4.75172066490766, - "ninjask": 7.018670842296247, - "exploud": 2.241511901496345, - "lairon": 5.016947216464592, - "manectric": 1.7819369785305748, - "roselia": 3.3926615891183993, - "sharpedo": 7.085173850110304, - "wailmer": 6.4800848089778835, - "torkoal": 2.1506190198038904, - "flygon": 2.49354748914365, - "altaria": 1.2912868249602099, - "whiscash": 2.00107435607128, - "crawdaunt": 2.543643117941353, - "claydol": 3.171505813914546, - "cradily": 3.1261228804050525, - "armaldo": 2.120103348127841, - "dusclops": 2.9571986614100165, - "absol": 2.7332443198325462, - "glalie": 5.667156303853322, - "sealeo": 4.231537950935223, - "relicanth": 2.4617772049468476, - "metang": 2.751053026201693, - "luxray": 3.8984553640821353, - "vespiquen": 2.3617710424366267, - "cherrim": 5.9817363854111445, - "gastrodon": 2.3609850200535147, - "drifblim": 3.2909220139697473, - "lopunny": 4.946317452849448, - "skuntank": 1.5411199759946022, - "bronzong": 2.961141430605166, - "munchlax": 3.5694326434347072, - "drapion": 2.4957593025058644, - "abomasnow": 4.201974641340699, - "froslass": 2.5105115975750216, - "rotom": 3.1057383016919706, - "stoutland": 3.258340464536129, - "liepard": 9.34898912706816, - "musharna": 1.2027440492063441, - "unfezant": 5.422617296918695, - "boldore": 4.422180631278486, - "swoobat": 4.0728218338169615, - "audino": 2.9422580295172285, - "gurdurr": 2.1739253512116363, - "palpitoad": 3.8057449032729105, - "seismitoad": 6.456203604562915, - "scolipede": 3.0335717608271517, - "whimsicott": 2.4521856452740476, - "lilligant": 3.179434897083456, - "basculin-red-striped": 2.7498542279618183, - "basculin-blue-striped": 3.747466541205406, - "krookodile": 3.8549825984916746, - "maractus": 2.2830187453039565, - "crustle": 2.4390460785810855, - "sigilyph": 1.789201122381349, - "cofagrigus": 2.1216323755207736, - "garbodor": 1.6182002307371035, - "cinccino": 6.210074049217303, - "vanillish": 2.905021614401305, - "emolga": 2.547822628688235, - "escavalier": 1.938154325356778, - "amoonguss": 2.1800697905856543, - "jellicent": 0.9083012809262453, - "galvantula": 1.4055289920678742, - "klang": 3.8163138310700315, - "klinklang": 4.371189162377934, - "beheeyem": 1.5435537845707874, - "lampent": 2.6907120701651106, - "fraxure": 1.5537359781852507, - "beartic": 2.283245859058195, - "cryogonal": 2.7315222491828166, - "accelgor": 2.963960056392005, - "stunfisk": 1.3532155429622037, - "stunfisk-galar": 3.108787798850491, - "mienshao": 3.5454667900812975, - "druddigon": 1.8652770418979556, - "golurk": 1.9594150124566807, - "bisharp": 4.441190871908475, - "bouffalant": 1.8350185600753162, - "heatmor": 2.0333136768852844, - "durant": 3.119732622634194, - "diggersby": 4.399580851071455, - "talonflame": 2.8971107051117113, - "pangoro": 2.4158296295891155, - "doublade": 2.1700912871804396, - "malamar": 2.751063450810044, - "barbaracle": 1.8217029687772062, - "heliolisk": 5.538818784153214, - "tyrantrum": 2.0618502488931387, - "aurorus": 4.672856529622984, - "hawlucha": 3.1931197855167, - "dedenne": 2.1594446241188705, - "klefki": 2.919997580351815, - "trevenant": 2.3073732616245897, - "gourgeist-average": 4.061913875884914, - "charjabug": 3.547411489639668, - "vikavolt": 1.6744941985846147, - "ribombee": 3.899706484678349, - "lycanroc-midday": 4.717486004710404, - "lycanroc-midnight": 3.311767561853506, - "mudsdale": 1.7218868472414843, - "araquanid": 2.1431183994374416, - "lurantis": 2.4923418142824776, - "shiinotic": 3.43904190597091, - "salazzle": 3.311678281890403, - "bewear": 2.2838738595919152, - "tsareena": 3.0265854349942227, - "comfey": 3.571407358378308, - "oranguru": 2.4454701361748823, - "passimian": 2.2240909717437036, - "palossand": 2.212661928250972, - "pyukumuku": 43.9717544594503, - "togedemaru": 3.1992776360724466, - "mimikyu-disguised": 3.3408672576227394, - "greedent": 2.6269560533969867, - "orbeetle": 1.5054493470121282, - "thievul": 2.8468770396628926, - "eldegoss": 4.100154471530777, - "dubwool": 3.8793240916883773, - "drednaw": 1.7007712283919625, - "boltund": 5.008792462283441, - "carkol": 3.51024029713465, - "coalossal": 2.8091531653660153, - "sandaconda": 3.59585093173324, - "cramorant": 5.134503705416787, - "barraskewda": 4.770428034485061, - "toxtricity-amped": 2.3127792908411453, - "centiskorch": 2.0412101613216582, - "polteageist": 2.0782434266932777, - "hatterene": 1.8576442898551941, - "grimmsnarl": 4.261364101484261, - "obstagoon": 4.756812800573831, - "perrserker": 4.25029107920539, - "alcremie": 1.1236348197580504, - "falinks": 3.111716241741453, - "pincurchin": 2.9648802753222614, - "frosmoth": 2.863736084515315, - "indeedee-male": 3.2514910508159547, - "morpeko": 3.7982112161367074, - "copperajah": 3.3264166734544878, - "duraludon": 2.1872636882283727, - "drakloak": 3.4592290899764837, - "grapploct": 1.7000381904592792 + "ivysaur": 2.76169201020575, + "charmeleon": 4.134485990843939, + "wartortle": 2.7903061476354534, + "butterfree": 3.99163203606115, + "raichu": 5.538259400591379, + "raichu-alola": 2.90561300198622, + "sandslash": 2.5773164019050734, + "sandslash-alola": 3.77403249440826, + "nidoqueen": 2.8751716255103963, + "nidoking": 1.9460001649472831, + "clefairy": 7.998534430352434, + "clefable": 1.5150566725791428, + "jigglypuff": 24.75296702648611, + "wigglytuff": 1.7648956840468415, + "gloom": 4.469659962479016, + "vileplume": 2.6235228686069934, + "dugtrio": 4.16991426112063, + "dugtrio-alola": 5.041660519476631, + "persian": 5.676513817357575, + "persian-alola": 6.467666885517119, + "golduck": 3.162132859752118, + "poliwrath": 1.9471270910845062, + "kadabra": 3.096124004573221, + "machoke": 4.129720063374069, + "tentacruel": 2.122989460737789, + "slowbro": 1.3233490346042385, + "magneton": 4.037782838817174, + "haunter": 3.623055972225117, + "kingler": 2.501006435103932, + "exeggutor": 1.6051322961476948, + "marowak": 3.4460590504714212, + "marowak-alola": 2.2844487304512797, + "hitmonlee": 2.745325716079366, + "hitmonchan": 2.3276541200205294, + "lickitung": 2.5819885841301398, + "weezing": 1.4376010039144425, + "weezing-galar": 2.1890720810806172, + "rhydon": 3.633888088424595, + "chansey": 44.0162254785038, + "tangela": 5.039303804472313, + "kangaskhan": 2.5604837700103458, + "seadra": 4.106158856486391, + "seaking": 2.5409485848987723, + "starmie": 1.1492963896597463, + "mr-mime": 4.722500245237333, + "mr-mime-galar": 3.5954726001306656, + "scyther": 2.3443557296418973, + "jynx": 4.764266955453949, + "electabuzz": 2.7760232818708444, + "magmar": 1.8232195152484616, + "tauros": 2.626733083116723, + "ditto": 2.1764777465123744, + "vaporeon": 3.484470211710226, + "jolteon": 2.1155832540310633, + "flareon": 2.6627432578725783, + "porygon": 3.8781525455160133, + "dragonair": 1.9443849669969775, + "noctowl": 5.995002298905055, + "lanturn": 2.067855906790575, + "togetic": 4.238773744063266, + "xatu": 2.839422593296457, + "bellossom": 2.115489994518705, + "azumarill": 1.7259979360356674, + "sudowoodo": 3.287277099751628, + "politoed": 2.7339802886769267, + "quagsire": 4.554520444890519, + "slowking": 2.064822790436162, + "dunsparce": 4.306257204080431, + "qwilfish": 2.8168230194338655, + "sneasel": 4.718710049781157, + "piloswine": 2.016570028999517, + "octillery": 2.4494686848578797, + "mantine": 2.0630747766337927, + "skarmory": 2.008510789445494, + "hitmontop": 2.8312692447976917, + "miltank": 4.227270971868103, + "grovyle": 8.480452828461777, + "sceptile": 1.5206612442476803, + "combusken": 3.5596594425282113, + "blaziken": 1.740846372410756, + "marshtomp": 2.5683681333107073, + "swampert": 1.285311253612258, + "linoone": 7.22559140907886, + "linoone-galar": 9.85239534127375, + "pelipper": 4.740296034853666, + "ninjask": 7.018128215760473, + "exploud": 2.2464896574636555, + "lairon": 5.045285371695245, + "manectric": 1.7829336126792574, + "roselia": 3.385651430881234, + "sharpedo": 7.107310523033981, + "wailmer": 6.479313514853481, + "torkoal": 2.1546045982274054, + "flygon": 2.496523284581695, + "altaria": 1.2887505908912877, + "whiscash": 2.0000586234860585, + "crawdaunt": 2.5515295607775723, + "claydol": 3.1667689555553684, + "cradily": 3.134855794128784, + "armaldo": 2.126195969156621, + "dusclops": 2.9529884909315474, + "absol": 2.7423263915283664, + "glalie": 5.684504349534299, + "sealeo": 4.240747815862335, + "relicanth": 2.469674151182339, + "metang": 2.7518129583377684, + "luxray": 3.9009988582686654, + "vespiquen": 2.357893374089622, + "cherrim": 5.98219910688801, + "gastrodon": 2.36477470980003, + "drifblim": 3.277997981665258, + "lopunny": 4.955925617367786, + "skuntank": 1.5450896339201585, + "bronzong": 2.960352951755131, + "munchlax": 3.5784512793520404, + "drapion": 2.5027177793624387, + "abomasnow": 4.209023203660021, + "froslass": 2.505623999271883, + "rotom": 3.1000516872954105, + "stoutland": 3.2654444050095615, + "liepard": 9.371269825042273, + "musharna": 1.1991264773469537, + "unfezant": 5.416537162703671, + "boldore": 4.440657413500612, + "swoobat": 4.054945000905745, + "audino": 2.9473157476690313, + "gurdurr": 2.176728347193703, + "palpitoad": 3.8076225503387584, + "seismitoad": 6.457376802986814, + "scolipede": 3.0344890388998262, + "whimsicott": 2.445720180362538, + "lilligant": 3.181927566961124, + "basculin-red-striped": 2.7499740502168333, + "basculin-blue-striped": 3.751581321793023, + "krookodile": 3.870890774085322, + "maractus": 2.2834795149565807, + "crustle": 2.4462655963191238, + "sigilyph": 1.7824013117144375, + "cofagrigus": 2.114849947119139, + "garbodor": 1.6174087701820312, + "cinccino": 6.225315985933129, + "vanillish": 2.9108759594525893, + "emolga": 2.5447207463165156, + "escavalier": 1.9419937024216085, + "amoonguss": 2.1772442901846896, + "jellicent": 0.9035197749839664, + "galvantula": 1.4052152502668553, + "klang": 3.8297662684993323, + "klinklang": 4.385574200486251, + "beheeyem": 1.541342552954744, + "lampent": 2.6900087991888233, + "fraxure": 1.5551259845624714, + "beartic": 2.288497719242332, + "cryogonal": 2.737120247204791, + "accelgor": 2.9652528791630846, + "stunfisk": 1.3548388311121555, + "stunfisk-galar": 3.1216698727388668, + "mienshao": 3.5503398468588045, + "druddigon": 1.8665891729888773, + "golurk": 1.958262493312347, + "bisharp": 4.463299592110275, + "bouffalant": 1.8414412220098189, + "heatmor": 2.0374405922944208, + "durant": 3.1263146072984904, + "diggersby": 4.41529674087967, + "talonflame": 2.895015969188781, + "pangoro": 2.424485047373776, + "doublade": 2.166936039620972, + "malamar": 2.751010216559634, + "barbaracle": 1.8256188996723104, + "heliolisk": 5.5478324942770785, + "tyrantrum": 2.0685986125679716, + "aurorus": 4.6928342978687425, + "hawlucha": 3.1935970514954723, + "dedenne": 2.155578235076894, + "klefki": 2.921013420884777, + "trevenant": 2.301641740775767, + "gourgeist-average": 4.052120870523774, + "charjabug": 3.546910298986135, + "vikavolt": 1.675366818970257, + "ribombee": 3.8923217781804027, + "lycanroc-midday": 4.738245748681257, + "lycanroc-midnight": 3.3259801366385844, + "mudsdale": 1.7256178562208577, + "araquanid": 2.141596782190889, + "lurantis": 2.493682191271904, + "shiinotic": 3.4273330717430817, + "salazzle": 3.3125394187554065, + "bewear": 2.2899572416603435, + "tsareena": 3.025442747216326, + "comfey": 3.5644409605930534, + "oranguru": 2.43954997346147, + "passimian": 2.226215371804078, + "palossand": 2.2111744540310525, + "pyukumuku": 43.99056587223855, + "togedemaru": 3.208617436118295, + "mimikyu-disguised": 3.333897150734014, + "greedent": 2.6314583278899817, + "orbeetle": 1.4995427466676228, + "thievul": 2.8568514581660516, + "eldegoss": 4.100587699019332, + "dubwool": 3.8891503478897578, + "drednaw": 1.7062604464463167, + "boltund": 5.017390628200065, + "carkol": 3.5245597190815543, + "coalossal": 2.820080613621604, + "sandaconda": 3.603256804141334, + "cramorant": 5.134191272963902, + "barraskewda": 4.7759167980836255, + "toxtricity-amped": 2.3103153512538803, + "centiskorch": 2.0411225943318128, + "grapploct": 1.7000381904592792, + "polteageist": 2.071829722718116, + "hatterene": 1.8499633678094214, + "grimmsnarl": 4.270800053361369, + "obstagoon": 4.780371574827825, + "perrserker": 4.267857685931417, + "alcremie": 1.1217752976407818, + "falinks": 3.1166114880376696, + "pincurchin": 2.967357664073197, + "frosmoth": 2.8612024982487294, + "indeedee-male": 3.2487102553604466, + "morpeko": 3.8099572591190762, + "copperajah": 3.337001143698811, + "duraludon": 2.194561694378636, + "drakloak": 3.4509515154058876 }, "polteageist": { - "ivysaur": 4.332328464060733, - "charmeleon": 4.009153456845434, - "wartortle": 3.75237661162505, - "butterfree": 4.864035592693689, - "raichu": 5.542269963762479, - "raichu-alola": 3.9064106989975533, - "sandslash": 3.209204675877805, - "sandslash-alola": 1.7687397006755559, - "nidoqueen": 3.6596893425881474, - "nidoking": 2.292625727746885, - "clefairy": 9.393911138055158, - "clefable": 2.141499358528388, - "jigglypuff": 27.682494681283835, - "wigglytuff": 2.1506867401062877, - "gloom": 7.906355100778892, - "vileplume": 4.095614590013779, - "dugtrio": 4.24015877812133, - "dugtrio-alola": 3.0277043626404385, - "persian": 4.8566002905628585, - "persian-alola": 3.6030996963010966, - "golduck": 4.199834361232378, - "poliwrath": 2.7259343940101806, - "kadabra": 4.454669397309513, - "machoke": 5.033565092118781, - "tentacruel": 3.151814220975361, - "slowbro": 2.445782032332371, - "magneton": 2.752557734770834, - "haunter": 5.9202360444011894, - "kingler": 3.839360861823981, - "exeggutor": 1.9064573955455046, - "marowak": 3.7714631525925775, - "marowak-alola": 1.8434460768225223, - "hitmonlee": 3.4417047074661715, - "hitmonchan": 2.7343159804116777, - "lickitung": 2.0204221689493638, - "weezing": 2.227259868363861, - "weezing-galar": 3.762271702516972, - "rhydon": 4.61112996274527, - "chansey": 33.21007415595663, - "tangela": 5.149478679276377, - "kangaskhan": 1.7856955731814552, - "seadra": 6.705514932513918, - "seaking": 2.964061140853807, - "starmie": 1.883665617703852, - "mr-mime": 6.401040807587769, - "mr-mime-galar": 3.8688390927193232, - "scyther": 2.5746768051842777, - "jynx": 5.116747533434142, - "electabuzz": 2.691863388472246, - "magmar": 1.7623787675461422, - "tauros": 2.1454360484290502, - "ditto": 3.0606434720868108, - "vaporeon": 4.150794617573709, - "jolteon": 2.0435931919618824, - "flareon": 2.397198655650712, - "porygon": 2.8257421015189284, - "dragonair": 1.8116067195745944, - "noctowl": 6.010286506595959, - "lanturn": 2.5187899498762905, - "togetic": 5.233589867514121, - "xatu": 3.8910837610443245, - "bellossom": 2.4053352055704433, - "azumarill": 2.142197524540668, - "sudowoodo": 3.6190457404576444, - "politoed": 3.2315839886262743, - "quagsire": 10.345127575474631, - "slowking": 2.8871533911826974, - "dunsparce": 3.2003499716538957, - "qwilfish": 4.5993029288885126, - "sneasel": 1.8825272145198912, - "piloswine": 2.1915093604137317, - "octillery": 3.207623152611578, - "mantine": 2.4130663659099154, - "skarmory": 1.58016091479475, - "hitmontop": 3.586412521152675, - "miltank": 4.097853171881068, - "grovyle": 8.42690618733035, - "sceptile": 1.4120953215725094, - "combusken": 4.928344852892419, - "blaziken": 2.250997070307972, - "marshtomp": 4.618583805200311, - "swampert": 2.4723809851212843, - "linoone": 5.18693605589641, - "linoone-galar": 3.8581343895258264, - "pelipper": 6.818943126058756, - "ninjask": 7.841846550507798, - "exploud": 1.8134916881643353, - "lairon": 2.506915982074748, - "manectric": 1.908422514584717, - "roselia": 5.361582332736092, - "sharpedo": 5.671468260164637, - "wailmer": 8.520909424994855, - "torkoal": 2.029017871437193, - "flygon": 2.345766882156779, - "altaria": 1.644082790531467, - "whiscash": 4.008801525876173, - "crawdaunt": 2.727396315820425, - "claydol": 4.427571470950464, - "cradily": 2.3507715798813926, - "armaldo": 1.8733799736126429, - "dusclops": 3.0127578165037545, - "absol": 1.899872055281181, - "glalie": 3.636525278714906, - "sealeo": 4.100718361814096, - "relicanth": 3.819604759919601, - "metang": 2.6338014161405656, - "luxray": 4.200235243422618, - "vespiquen": 2.8112376336725173, - "cherrim": 6.232596298046671, - "gastrodon": 4.014741002987026, - "drifblim": 4.492980745187628, - "lopunny": 4.134126909555885, - "skuntank": 1.0859189466113335, - "bronzong": 2.9634110483960123, - "munchlax": 2.309201043210982, - "drapion": 1.8338134750248176, - "abomasnow": 3.1254291973437835, - "froslass": 2.7526685784868175, - "rotom": 3.568125740276576, - "stoutland": 2.9619101217967883, - "liepard": 5.966944605879235, - "musharna": 1.5585847824285604, - "unfezant": 6.076111745381187, - "boldore": 4.927903178508046, - "swoobat": 5.569041225222862, - "audino": 2.715665179620076, - "gurdurr": 3.339568321857958, - "palpitoad": 7.573899243467191, - "seismitoad": 14.153506877754078, - "scolipede": 3.974024166211108, - "whimsicott": 3.1357688511910995, - "lilligant": 3.2004499400565525, - "basculin-red-striped": 3.5902915118389256, - "basculin-blue-striped": 4.524669728372516, - "krookodile": 3.2420470813790416, - "maractus": 2.151470311176817, - "crustle": 2.2758647303760675, - "sigilyph": 2.363953732022929, - "cofagrigus": 2.556641345174489, - "garbodor": 2.6323499847484735, - "cinccino": 5.037675797732771, - "vanillish": 2.3589810908283853, - "emolga": 3.080012010811406, - "escavalier": 1.4778438589205791, - "amoonguss": 3.541112025537413, - "jellicent": 1.961698468911208, - "galvantula": 1.6596606808016223, - "klang": 2.362403073199939, - "klinklang": 2.9159135000199443, - "beheeyem": 1.8835147113415327, - "lampent": 2.6460037525691016, - "fraxure": 1.547586925749445, - "beartic": 1.8271646711369987, - "cryogonal": 1.793831811071289, - "accelgor": 3.418609580622851, - "stunfisk": 1.6424614305866814, - "stunfisk-galar": 2.2452327085028263, - "mienshao": 4.9507287107353, - "druddigon": 1.6356810534997317, - "golurk": 2.348933323045963, - "bisharp": 1.845555031971353, - "bouffalant": 1.3302950098114366, - "heatmor": 1.9068783238796048, - "durant": 2.520076140580564, - "diggersby": 4.069862051845025, - "talonflame": 2.954627696399144, - "pangoro": 1.6743338681895419, - "doublade": 2.1354520651641526, - "malamar": 2.5971681774479256, - "barbaracle": 2.9564121198854285, - "heliolisk": 3.8809991656051075, - "tyrantrum": 1.788451343511864, - "aurorus": 2.8400907785663128, - "hawlucha": 4.557410538068826, - "dedenne": 3.0241103756867824, - "klefki": 2.4620513014677505, - "trevenant": 3.101344971188717, - "gourgeist-average": 4.652225009565008, - "charjabug": 3.8820280033470027, - "vikavolt": 1.9471946173995036, - "ribombee": 4.972852748589363, - "lycanroc-midday": 4.1554278136327545, - "lycanroc-midnight": 2.8080802239540654, - "mudsdale": 2.0637768364464186, - "araquanid": 2.335745598694605, - "lurantis": 2.597874272956772, - "shiinotic": 4.6853699882381274, - "salazzle": 4.272473612449531, - "bewear": 2.5864535710232106, - "tsareena": 2.921695247790368, - "comfey": 4.556798942223747, - "oranguru": 2.7731347906148907, - "passimian": 3.2456019222629777, - "palossand": 2.8376702687291253, - "pyukumuku": 60.11644950867851, - "togedemaru": 1.8751112456052508, - "mimikyu-disguised": 3.5838391356698125, - "greedent": 2.2740875216489913, - "orbeetle": 1.9525898527518066, - "thievul": 1.567562121354118, - "eldegoss": 4.102537111044425, - "dubwool": 3.3329907964877084, - "drednaw": 2.3455970692003856, - "boltund": 4.197322398644415, - "carkol": 2.3703013357583806, - "coalossal": 2.0510876752754523, - "sandaconda": 4.504554762625239, - "cramorant": 4.621171920592895, - "barraskewda": 5.5225099521103775, - "toxtricity-amped": 4.23441195625131, - "centiskorch": 2.186123095429606, - "grapploct": 2.4514792203800906, - "hatterene": 2.4411397787297293, - "grimmsnarl": 3.6649689707221236, - "obstagoon": 2.458261753389602, - "perrserker": 2.4615718657702903, - "alcremie": 1.4816092937641558, - "falinks": 4.489670746882153, - "pincurchin": 3.049634036839284, - "frosmoth": 2.942751120144628, - "indeedee-male": 3.3382963971734134, - "morpeko": 2.5908595111721002, - "copperajah": 2.0521248175684415, - "duraludon": 1.2515475118343946, - "drakloak": 3.983934808063465, - "polteageist": 2.7633551745363993 + "ivysaur": 4.340269451332151, + "charmeleon": 4.011354286510951, + "wartortle": 3.761692814051225, + "butterfree": 4.868920606530258, + "raichu": 5.556320847861539, + "raichu-alola": 3.911104382373841, + "sandslash": 3.214295039032236, + "sandslash-alola": 1.7670122871549825, + "nidoqueen": 3.664956826929409, + "nidoking": 2.293609462198969, + "clefairy": 9.403952105374422, + "clefable": 2.1435383825649508, + "jigglypuff": 27.706398677286337, + "wigglytuff": 2.15403793871615, + "gloom": 7.921124240101893, + "vileplume": 4.103184439372741, + "dugtrio": 4.2429341705808055, + "dugtrio-alola": 3.022015202950322, + "persian": 4.869552643345314, + "persian-alola": 3.590184956302135, + "golduck": 4.209202625886941, + "poliwrath": 2.7360244678873356, + "kadabra": 4.4580563092336964, + "machoke": 5.037158561834942, + "tentacruel": 3.1600083543183444, + "slowbro": 2.4488333630920587, + "magneton": 2.7511416672518, + "haunter": 5.928515387080086, + "kingler": 3.846124382059838, + "exeggutor": 1.9052857248979245, + "marowak": 3.7683119298705297, + "marowak-alola": 1.840391020114886, + "hitmonlee": 3.455200644340901, + "hitmonchan": 2.73766365439292, + "lickitung": 2.0236151575194214, + "weezing": 2.2297777748027823, + "weezing-galar": 3.7675391586462683, + "rhydon": 4.615553197097021, + "chansey": 33.34345709687029, + "tangela": 5.144906664810437, + "kangaskhan": 1.7848675870132382, + "seadra": 6.721671961384134, + "seaking": 2.966206817202818, + "starmie": 1.8859663402941322, + "mr-mime": 6.402099773282826, + "mr-mime-galar": 3.8697700523552796, + "scyther": 2.570511094472174, + "jynx": 5.123592164228734, + "electabuzz": 2.696248039578128, + "magmar": 1.764614675772174, + "tauros": 2.1473377966519873, + "ditto": 3.047378049244701, + "vaporeon": 4.163645101465395, + "jolteon": 2.045365176940848, + "flareon": 2.397399261989335, + "porygon": 2.8270139109547348, + "dragonair": 1.8101578167353831, + "noctowl": 6.016847593233546, + "lanturn": 2.524598386729558, + "togetic": 5.231931357704192, + "xatu": 3.8915351229989916, + "bellossom": 2.4058189350768417, + "azumarill": 2.1330032495223206, + "sudowoodo": 3.6241857146844487, + "politoed": 3.2376054071910563, + "quagsire": 10.386977410148017, + "slowking": 2.8884389495563925, + "dunsparce": 3.2000167329139275, + "qwilfish": 4.60297311130245, + "sneasel": 1.8729244066093471, + "piloswine": 2.1959343426728815, + "octillery": 3.2143813813580033, + "mantine": 2.415832290273482, + "skarmory": 1.576180194351417, + "hitmontop": 3.593532377793621, + "miltank": 4.1054101407117995, + "grovyle": 8.438431056635466, + "sceptile": 1.4123244445294942, + "combusken": 4.944671626092907, + "blaziken": 2.255543335489436, + "marshtomp": 4.625983756185815, + "swampert": 2.4797755862945396, + "linoone": 5.1874211851594065, + "linoone-galar": 3.839357103258355, + "pelipper": 6.830407056882895, + "ninjask": 7.844356716246185, + "exploud": 1.8194266667054895, + "lairon": 2.50391195552951, + "manectric": 1.9111288386618632, + "roselia": 5.3730975061515025, + "sharpedo": 5.656045181510041, + "wailmer": 8.530874021159558, + "torkoal": 2.030709758197842, + "flygon": 2.345727693878727, + "altaria": 1.6440798366992884, + "whiscash": 4.016729328130751, + "crawdaunt": 2.724549478509032, + "claydol": 4.437672512207371, + "cradily": 2.3531913679419367, + "armaldo": 1.873691684801904, + "dusclops": 3.010528117421665, + "absol": 1.8955510302272567, + "glalie": 3.6277911793396003, + "sealeo": 4.105713882954526, + "relicanth": 3.8236293565132047, + "metang": 2.6294009277773416, + "luxray": 4.209455239637091, + "vespiquen": 2.811462414702386, + "cherrim": 6.23941274757025, + "gastrodon": 4.025022028541521, + "drifblim": 4.498238867960659, + "lopunny": 4.146034804142649, + "skuntank": 1.0806304523732009, + "bronzong": 2.9596179356364676, + "munchlax": 2.3122187626091577, + "drapion": 1.826710071675179, + "abomasnow": 3.122353231635836, + "froslass": 2.7529859758517095, + "rotom": 3.571927427104243, + "stoutland": 2.9744658954600496, + "liepard": 5.942662686813657, + "musharna": 1.559009184194895, + "unfezant": 6.069381614301667, + "boldore": 4.934818844509116, + "swoobat": 5.569804451157575, + "audino": 2.721617840532839, + "gurdurr": 3.3505924033998875, + "palpitoad": 7.596705539919624, + "seismitoad": 14.222918920296518, + "scolipede": 3.9706072199025986, + "whimsicott": 3.1339494698727037, + "lilligant": 3.2026318038312516, + "basculin-red-striped": 3.5908067027156827, + "basculin-blue-striped": 4.5231726724490064, + "krookodile": 3.2341932039364885, + "maractus": 2.150198184087915, + "crustle": 2.2788245554435385, + "sigilyph": 2.3641756575816606, + "cofagrigus": 2.5568822455413196, + "garbodor": 2.6403379755654535, + "cinccino": 5.0478574406158945, + "vanillish": 2.361710624518616, + "emolga": 3.0803052181972936, + "escavalier": 1.4755197537225433, + "amoonguss": 3.548387799477286, + "jellicent": 1.967060266110337, + "galvantula": 1.660937016675213, + "klang": 2.361828009694663, + "klinklang": 2.9148438798371608, + "beheeyem": 1.884495772188603, + "lampent": 2.6507568866482427, + "fraxure": 1.5468150946043568, + "beartic": 1.8294806147173437, + "cryogonal": 1.7952225365985175, + "accelgor": 3.424990179465743, + "stunfisk": 1.6453148795704333, + "stunfisk-galar": 2.2436686789525266, + "mienshao": 4.967834729606551, + "druddigon": 1.6322608017243874, + "golurk": 2.351934953334008, + "bisharp": 1.8377500236233284, + "bouffalant": 1.3284837596802155, + "heatmor": 1.9074091515032197, + "durant": 2.515558262453145, + "diggersby": 4.073829793823018, + "talonflame": 2.9540712829576137, + "pangoro": 1.6707548338398581, + "doublade": 2.135629241257473, + "malamar": 2.5896608902965284, + "barbaracle": 2.964796184991763, + "heliolisk": 3.8900103492534113, + "tyrantrum": 1.790438443214323, + "aurorus": 2.840804375263106, + "hawlucha": 4.558342890400045, + "dedenne": 3.0269837453010062, + "klefki": 2.459318844260149, + "trevenant": 3.1053401944337944, + "gourgeist-average": 4.642465987655821, + "charjabug": 3.877231609944544, + "vikavolt": 1.948917214099409, + "ribombee": 4.977528879529718, + "lycanroc-midday": 4.158726018916509, + "lycanroc-midnight": 2.8079285936950593, + "mudsdale": 2.066190442745909, + "araquanid": 2.337893255893264, + "lurantis": 2.6008923196958724, + "shiinotic": 4.689031851862605, + "salazzle": 4.278742409364419, + "bewear": 2.5929934381458866, + "tsareena": 2.917839596440258, + "comfey": 4.561229875885573, + "oranguru": 2.7733709405443747, + "passimian": 3.2521346120148977, + "palossand": 2.8425475464161325, + "pyukumuku": 60.242898946142006, + "togedemaru": 1.8725831240881714, + "mimikyu-disguised": 3.5800193730728136, + "greedent": 2.276140566178362, + "orbeetle": 1.9531100065010558, + "thievul": 1.561740377276397, + "eldegoss": 4.106490836826318, + "dubwool": 3.341325668545415, + "drednaw": 2.348591050519215, + "boltund": 4.19013157638647, + "carkol": 2.3705501264833115, + "coalossal": 2.0520858205839785, + "sandaconda": 4.5107275223809005, + "cramorant": 4.610944161956283, + "barraskewda": 5.516082281162131, + "toxtricity-amped": 4.245374834177028, + "centiskorch": 2.188647930075528, + "grapploct": 2.4614000281270676, + "polteageist": 2.7633551745363993, + "hatterene": 2.4402237379990948, + "grimmsnarl": 3.6588679002427744, + "obstagoon": 2.4524386001470617, + "perrserker": 2.4539469068037816, + "alcremie": 1.483100352716654, + "falinks": 4.499755712840264, + "pincurchin": 3.0527809081025294, + "frosmoth": 2.9459486281095417, + "indeedee-male": 3.3382046062388864, + "morpeko": 2.5852586005288374, + "copperajah": 2.052191792020576, + "duraludon": 1.2491833521738211, + "drakloak": 3.9773260421255365 }, "hatterene": { - "ivysaur": 4.715924889020478, - "charmeleon": 4.724565476354887, - "wartortle": 3.2882707982262938, - "butterfree": 4.762160117021509, - "raichu": 6.005264373186272, - "raichu-alola": 3.967075095610666, - "sandslash": 2.7923711445308372, - "sandslash-alola": 2.0420933697227817, - "nidoqueen": 4.197921473822282, - "nidoking": 3.0333912938633345, - "clefairy": 10.404136924003776, - "clefable": 2.3717680579990015, - "jigglypuff": 30.816607073115733, - "wigglytuff": 2.3868392806382333, - "gloom": 8.503314803436075, - "vileplume": 4.8149884414033295, - "dugtrio": 4.039003206529015, - "dugtrio-alola": 2.931425757873683, - "persian": 4.877257041342345, - "persian-alola": 5.8421602674118915, - "golduck": 3.573790834551838, - "poliwrath": 3.3330972062306747, - "kadabra": 4.589021570208953, - "machoke": 6.9528196567104565, - "tentacruel": 3.2237718473157853, - "slowbro": 1.846077736249311, - "magneton": 2.7946524873730687, - "haunter": 7.231776419843337, - "kingler": 3.4529404874134455, - "exeggutor": 1.981019405954737, - "marowak": 3.5752516838373274, - "marowak-alola": 2.3611520885532635, - "hitmonlee": 4.087046084283346, - "hitmonchan": 3.305899387240187, - "lickitung": 2.245331688847227, - "weezing": 2.85637042685513, - "weezing-galar": 4.869478660957043, - "rhydon": 2.8150966770816552, - "chansey": 31.319382557936216, - "tangela": 6.664878588477173, - "kangaskhan": 2.247495436863339, - "seadra": 5.877484952380971, - "seaking": 2.6555968028864427, - "starmie": 1.5016824629457497, - "mr-mime": 8.279590102439133, - "mr-mime-galar": 4.024617951313257, - "scyther": 3.0920361856889063, - "jynx": 4.990882943914778, - "electabuzz": 2.8215482726590837, - "magmar": 1.8250940580253907, - "tauros": 2.556015781067989, - "ditto": 2.9403847358374824, - "vaporeon": 3.5167856105251114, - "jolteon": 2.060497988142146, - "flareon": 2.436790970006861, - "porygon": 3.2166865526325106, - "dragonair": 2.915440685398776, - "noctowl": 6.448580508521529, - "lanturn": 2.207518307578325, - "togetic": 5.998720932740092, - "xatu": 4.0854424710314206, - "bellossom": 2.6979167086300215, - "azumarill": 2.73126585336208, - "sudowoodo": 3.3070311357526974, - "politoed": 2.8478106512326393, - "quagsire": 5.961028079291332, - "slowking": 2.699557858151862, - "dunsparce": 3.7118725699757107, - "qwilfish": 5.816832071541713, - "sneasel": 3.0574372133139462, - "piloswine": 1.9611222016198755, - "octillery": 2.6014109801058867, - "mantine": 2.7860042618576912, - "skarmory": 1.9304521140923012, - "hitmontop": 4.4195565723428345, - "miltank": 4.444631379797237, - "grovyle": 9.004137947127958, - "sceptile": 1.649596126252507, - "combusken": 5.964215637464941, - "blaziken": 2.8054142998640965, - "marshtomp": 2.905325428479912, - "swampert": 1.4806339264254988, - "linoone": 5.695893978865721, - "linoone-galar": 6.128764608584126, - "pelipper": 7.488363222603779, - "ninjask": 8.454712633349926, - "exploud": 1.886778480421371, - "lairon": 2.290623239976139, - "manectric": 2.1351666565115375, - "roselia": 5.846272764405484, - "sharpedo": 7.085222113577074, - "wailmer": 7.485984285447392, - "torkoal": 2.488898183524142, - "flygon": 3.3148103716704496, - "altaria": 2.3470468496270627, - "whiscash": 2.44363313496517, - "crawdaunt": 2.4776573627440666, - "claydol": 3.599585954615846, - "cradily": 2.4798047038677593, - "armaldo": 2.2262786289027794, - "dusclops": 3.5876624774915373, - "absol": 2.6709931838215883, - "glalie": 4.606096999982354, - "sealeo": 3.6894754188450625, - "relicanth": 2.4715175695237708, - "metang": 2.302314336382117, - "luxray": 4.470809337397897, - "vespiquen": 3.1860616484478514, - "cherrim": 6.617426038728965, - "gastrodon": 2.4266920994830414, - "drifblim": 5.0908646415561325, - "lopunny": 4.26916848992977, - "skuntank": 1.4540101937757997, - "bronzong": 2.6090031958325923, - "munchlax": 2.43545485516119, - "drapion": 2.2156620539127614, - "abomasnow": 3.515133826708718, - "froslass": 3.2337721194681945, - "rotom": 4.204645267360908, - "stoutland": 2.7769147181226304, - "liepard": 9.440520507419492, - "musharna": 1.700191535254743, - "unfezant": 7.783195979403599, - "boldore": 4.4729094986042846, - "swoobat": 5.856582869414618, - "audino": 2.6284906809103252, - "gurdurr": 4.504055014059559, - "palpitoad": 4.481304346643655, - "seismitoad": 6.741965477254478, - "scolipede": 5.396656475757456, - "whimsicott": 3.7306162582109046, - "lilligant": 3.5455572228563215, - "basculin-red-striped": 3.4454507190008834, - "basculin-blue-striped": 4.392326938680235, - "krookodile": 3.6676368069066787, - "maractus": 2.5883365484533183, - "crustle": 2.667966185788046, - "sigilyph": 2.3629361057192133, - "cofagrigus": 3.1150923040648477, - "garbodor": 2.8791751903934433, - "cinccino": 5.314993373969406, - "vanillish": 2.43885078392418, - "emolga": 3.622999336615406, - "escavalier": 1.6749110862607264, - "amoonguss": 3.6990399400094303, - "jellicent": 1.737670347313295, - "galvantula": 1.8800458819503905, - "klang": 2.456117821369721, - "klinklang": 2.859673240155097, - "beheeyem": 1.9742246919366702, - "lampent": 3.0741096396564664, - "fraxure": 2.280517928776452, - "beartic": 2.0473199321241524, - "cryogonal": 2.0177159222715386, - "accelgor": 3.3053791602871674, - "stunfisk": 1.4600743246475885, - "stunfisk-galar": 2.15742747232166, - "mienshao": 5.790099490521699, - "druddigon": 2.3754932784965535, - "golurk": 2.1438881149458298, - "bisharp": 2.2771066668090807, - "bouffalant": 1.5152409268832507, - "heatmor": 2.254045799357556, - "durant": 2.8683882887829126, - "diggersby": 3.7023756393199854, - "talonflame": 3.340751179076085, - "pangoro": 3.4940535829505457, - "doublade": 2.3818900898202293, - "malamar": 3.7467317615396643, - "barbaracle": 1.7080114726679327, - "heliolisk": 4.02968632406063, - "tyrantrum": 2.206693955919546, - "aurorus": 2.6382157552257968, - "hawlucha": 5.951130721902894, - "dedenne": 3.3912092900280424, - "klefki": 2.6333124366990974, - "trevenant": 3.6378174914185637, - "gourgeist-average": 6.09893497143003, - "charjabug": 4.849794907763218, - "vikavolt": 2.196559435978077, - "ribombee": 5.340461055377053, - "lycanroc-midday": 3.832445878012463, - "lycanroc-midnight": 2.7764479069220327, - "mudsdale": 1.9784967956639203, - "araquanid": 2.473876247774005, - "lurantis": 2.7752964747709, - "shiinotic": 4.943571701734809, - "salazzle": 4.974348801722184, - "bewear": 3.043973440607422, - "tsareena": 3.549403922450222, - "comfey": 5.085423982266114, - "oranguru": 3.1235419039128045, - "passimian": 4.400749053772262, - "palossand": 2.387530882089754, - "pyukumuku": 43.48393535672437, - "togedemaru": 1.8794126917263207, - "mimikyu-disguised": 4.096123685281628, - "greedent": 2.5143162956969767, - "orbeetle": 1.96615285876407, - "thievul": 2.699145734741224, - "eldegoss": 4.3012930420172975, - "dubwool": 3.5695342463013193, - "drednaw": 1.482647424112618, - "boltund": 5.530085255730251, - "carkol": 2.8292683463452595, - "coalossal": 2.3414832941538237, - "sandaconda": 4.1798155164275395, - "cramorant": 6.001424172798627, - "barraskewda": 5.86638947447695, - "toxtricity-amped": 4.4296783104536654, - "centiskorch": 2.2049099356157305, - "grapploct": 3.036552660780788, - "polteageist": 3.1066949042095864, - "grimmsnarl": 5.683650011238811, - "obstagoon": 3.182050405451865, - "perrserker": 2.95706680279573, - "alcremie": 1.6112141191190226, - "falinks": 5.732657257129938, - "pincurchin": 3.529935134587932, - "frosmoth": 2.8533808898364272, - "indeedee-male": 3.483274367272111, - "morpeko": 3.715015662911995, - "copperajah": 2.0220946455051028, - "duraludon": 1.703603047880804, - "drakloak": 6.452998425587157, - "hatterene": 2.720857546587013 + "ivysaur": 4.717067877495004, + "charmeleon": 4.730416532403985, + "wartortle": 3.29266698225625, + "butterfree": 4.7597284372635285, + "raichu": 6.017307033229497, + "raichu-alola": 3.968187283294471, + "sandslash": 2.794348540695741, + "sandslash-alola": 2.0416206722720016, + "nidoqueen": 4.196649864148707, + "nidoking": 3.037938411406854, + "clefairy": 10.416042200091283, + "clefable": 2.3742575777161354, + "jigglypuff": 30.840051075473497, + "wigglytuff": 2.3895064416227836, + "gloom": 8.50026113465256, + "vileplume": 4.821493035390976, + "dugtrio": 4.041928176998558, + "dugtrio-alola": 2.9255099464186127, + "persian": 4.877571677462232, + "persian-alola": 5.8428736877411245, + "golduck": 3.5755149335232783, + "poliwrath": 3.344084455143461, + "kadabra": 4.5907639074577755, + "machoke": 6.978159836989268, + "tentacruel": 3.2241778155171215, + "slowbro": 1.8475774679277053, + "magneton": 2.7880854929944, + "haunter": 7.236487602655663, + "kingler": 3.458742152180446, + "exeggutor": 1.9804668498832916, + "marowak": 3.5743953152779966, + "marowak-alola": 2.358737488991385, + "hitmonlee": 4.105496703337286, + "hitmonchan": 3.3164593668318743, + "lickitung": 2.2464874875343424, + "weezing": 2.856408024166793, + "weezing-galar": 4.875113663083508, + "rhydon": 2.8136638170442474, + "chansey": 31.301417611767917, + "tangela": 6.668157718714862, + "kangaskhan": 2.2505255443624943, + "seadra": 5.887718556195722, + "seaking": 2.6553687532161776, + "starmie": 1.5020611949347982, + "mr-mime": 8.292948158460359, + "mr-mime-galar": 4.026142030566135, + "scyther": 3.0928148201108034, + "jynx": 4.988829965073048, + "electabuzz": 2.822924734680525, + "magmar": 1.8244442727392651, + "tauros": 2.5593487634554686, + "ditto": 2.9267839966867957, + "vaporeon": 3.5191986336959373, + "jolteon": 2.0599627036938193, + "flareon": 2.434053016288301, + "porygon": 3.2180438947422867, + "dragonair": 2.926475271673915, + "noctowl": 6.450692696835663, + "lanturn": 2.2101073154427096, + "togetic": 6.004178841293012, + "xatu": 4.087702333028863, + "bellossom": 2.6994771624611733, + "azumarill": 2.735793955523805, + "sudowoodo": 3.3115526271046267, + "politoed": 2.8495964645317886, + "quagsire": 5.971589234195175, + "slowking": 2.70006933052266, + "dunsparce": 3.7115300506473643, + "qwilfish": 5.815412749398762, + "sneasel": 3.057242146987196, + "piloswine": 1.964095718843093, + "octillery": 2.599962142270695, + "mantine": 2.788446301286985, + "skarmory": 1.9279674273172507, + "hitmontop": 4.435761500431542, + "miltank": 4.44591707062788, + "grovyle": 9.015629236542209, + "sceptile": 1.651132066731709, + "combusken": 5.985890034003209, + "blaziken": 2.8138276544429592, + "marshtomp": 2.9074024787671897, + "swampert": 1.4821343891966792, + "linoone": 5.691309759002319, + "linoone-galar": 6.127834017807496, + "pelipper": 7.491349841894973, + "ninjask": 8.456282696653153, + "exploud": 1.8886587997988649, + "lairon": 2.2846528039575276, + "manectric": 2.1379916880369993, + "roselia": 5.854626478214829, + "sharpedo": 7.091792006840681, + "wailmer": 7.48697471365918, + "torkoal": 2.4907430860201467, + "flygon": 3.32154768880506, + "altaria": 2.354332988562395, + "whiscash": 2.445747784897579, + "crawdaunt": 2.476704155416314, + "claydol": 3.6010005896987414, + "cradily": 2.479123110074033, + "armaldo": 2.2278178063834155, + "dusclops": 3.5834565824415376, + "absol": 2.671461893272611, + "glalie": 4.604728005728637, + "sealeo": 3.691307885936959, + "relicanth": 2.473980595669553, + "metang": 2.296589526965753, + "luxray": 4.472852393614977, + "vespiquen": 3.1887203898228558, + "cherrim": 6.6199089820319035, + "gastrodon": 2.4278012412134222, + "drifblim": 5.099100331649167, + "lopunny": 4.273365116133903, + "skuntank": 1.4520332632743091, + "bronzong": 2.6049109007029183, + "munchlax": 2.434177856455344, + "drapion": 2.210916490702709, + "abomasnow": 3.5144094037990605, + "froslass": 3.2330493608758157, + "rotom": 4.2045360400840615, + "stoutland": 2.776650063545225, + "liepard": 9.44170447381336, + "musharna": 1.701752424492704, + "unfezant": 7.789718875463434, + "boldore": 4.479275362622688, + "swoobat": 5.860026634817937, + "audino": 2.6298478061971027, + "gurdurr": 4.524216935161778, + "palpitoad": 4.485230868799007, + "seismitoad": 6.730444346009248, + "scolipede": 5.4011926772056436, + "whimsicott": 3.7333385506569563, + "lilligant": 3.547642822696625, + "basculin-red-striped": 3.448773638198634, + "basculin-blue-striped": 4.395388020890724, + "krookodile": 3.6680983303453467, + "maractus": 2.590461916380035, + "crustle": 2.6717359287177596, + "sigilyph": 2.3618650759754214, + "cofagrigus": 3.1148903469526887, + "garbodor": 2.8774350677012617, + "cinccino": 5.316272888778897, + "vanillish": 2.439520580274135, + "emolga": 3.6266258031310095, + "escavalier": 1.6735903317717016, + "amoonguss": 3.6968245239535067, + "jellicent": 1.7399408377208219, + "galvantula": 1.8814638310554013, + "klang": 2.451965667974372, + "klinklang": 2.851322712672638, + "beheeyem": 1.9748558378131522, + "lampent": 3.0769538396302076, + "fraxure": 2.2893348247523804, + "beartic": 2.049490985803396, + "cryogonal": 2.018409817761295, + "accelgor": 3.30485891998373, + "stunfisk": 1.4611115982087401, + "stunfisk-galar": 2.1558711731122533, + "mienshao": 5.809788981977932, + "druddigon": 2.377502255498197, + "golurk": 2.1451350641145934, + "bisharp": 2.2725339292938886, + "bouffalant": 1.5163355998218457, + "heatmor": 2.255573868307968, + "durant": 2.8633269865798336, + "diggersby": 3.7042819023990754, + "talonflame": 3.33975676439446, + "pangoro": 3.5010912103950664, + "doublade": 2.3797786858779286, + "malamar": 3.7482379255552876, + "barbaracle": 1.706628051461236, + "heliolisk": 4.03174782851773, + "tyrantrum": 2.2130733527609765, + "aurorus": 2.637659694279221, + "hawlucha": 5.965161167004105, + "dedenne": 3.3945190663762994, + "klefki": 2.6285418070906004, + "trevenant": 3.64441696635324, + "gourgeist-average": 6.094676434882732, + "charjabug": 4.853362699669905, + "vikavolt": 2.197518931137111, + "ribombee": 5.344142205711537, + "lycanroc-midday": 3.83451796731916, + "lycanroc-midnight": 2.7794765740187604, + "mudsdale": 1.9823903031297878, + "araquanid": 2.4736026794338324, + "lurantis": 2.776221109803515, + "shiinotic": 4.945771774565975, + "salazzle": 4.975199753994105, + "bewear": 3.0493444796500704, + "tsareena": 3.5509975131748615, + "comfey": 5.0905779583615125, + "oranguru": 3.127791928468805, + "passimian": 4.417198353808981, + "palossand": 2.3869841218120156, + "pyukumuku": 43.44231815573393, + "togedemaru": 1.8731075107840125, + "mimikyu-disguised": 4.0916435250633585, + "greedent": 2.513984918793405, + "orbeetle": 1.967544317183982, + "thievul": 2.7003698897760033, + "eldegoss": 4.303040662604392, + "dubwool": 3.572909686544886, + "drednaw": 1.4820293288886894, + "boltund": 5.5341330955427654, + "carkol": 2.829971632549685, + "coalossal": 2.3419431864308873, + "sandaconda": 4.187195205781602, + "cramorant": 6.004154099918924, + "barraskewda": 5.876041789278385, + "toxtricity-amped": 4.43454135298974, + "centiskorch": 2.203656789520592, + "grapploct": 3.050747024022405, + "polteageist": 3.1119334444153575, + "hatterene": 2.720857546587013, + "grimmsnarl": 5.691526116985538, + "obstagoon": 3.180392416463765, + "perrserker": 2.951497235778373, + "alcremie": 1.6128809725318438, + "falinks": 5.746215624850391, + "pincurchin": 3.5328081445731785, + "frosmoth": 2.8528684751082487, + "indeedee-male": 3.481935721536656, + "morpeko": 3.7156972965918103, + "copperajah": 2.0173476091053066, + "duraludon": 1.7032367936190118, + "drakloak": 6.467113391610648 }, "grimmsnarl": { - "ivysaur": 3.0523239610378887, - "charmeleon": 4.211092220276966, - "wartortle": 2.862884471443716, - "butterfree": 4.301346690811979, - "raichu": 5.134823387123339, - "raichu-alola": 4.618701520315701, - "sandslash": 2.4200261616760077, - "sandslash-alola": 2.2610218559995685, - "nidoqueen": 2.8164923053892044, - "nidoking": 1.892967234585409, - "clefairy": 7.790611062978003, - "clefable": 1.4812370579487562, - "jigglypuff": 20.502890946820102, - "wigglytuff": 1.5582088732435446, - "gloom": 5.049858300960741, - "vileplume": 3.061965248845495, - "dugtrio": 3.617957909491074, - "dugtrio-alola": 3.3481110487476125, - "persian": 4.13779396346826, - "persian-alola": 4.958992079886492, - "golduck": 3.16156884964444, - "poliwrath": 1.6140014562824148, - "kadabra": 4.37303507917238, - "machoke": 3.4949430223531373, - "tentacruel": 2.138909603070731, - "slowbro": 2.957521852162622, - "magneton": 3.1892174233382744, - "haunter": 6.780058258657904, - "kingler": 2.8477790409370813, - "exeggutor": 2.7711982506419233, - "marowak": 3.240546423462873, - "marowak-alola": 3.088975057763109, - "hitmonlee": 2.115484166998154, - "hitmonchan": 1.8349477061643258, - "lickitung": 2.001459349376394, - "weezing": 1.716056777494122, - "weezing-galar": 2.1366620838359305, - "rhydon": 2.471036560784127, - "chansey": 30.57646247240892, - "tangela": 5.738343121987215, - "kangaskhan": 2.04747418691005, - "seadra": 5.108676720347887, - "seaking": 2.349582616416278, - "starmie": 1.9123938890456542, - "mr-mime": 7.802932751695643, - "mr-mime-galar": 4.947387642500862, - "scyther": 2.8360433740629043, - "jynx": 4.703198553840549, - "electabuzz": 2.542126846147206, - "magmar": 1.6465688499691895, - "tauros": 2.2081874970940265, - "ditto": 5.048990634484139, - "vaporeon": 3.1191737910552257, - "jolteon": 1.9267466565956348, - "flareon": 2.337326561048912, - "porygon": 2.950748515592055, - "dragonair": 2.1674954059653353, - "noctowl": 5.48303947630149, - "lanturn": 1.9574255730229877, - "togetic": 4.1728699960381785, - "xatu": 5.77523401977369, - "bellossom": 2.1546011507001284, - "azumarill": 1.7344596676784279, - "sudowoodo": 2.8055144820920406, - "politoed": 2.5473092601989986, - "quagsire": 5.0498215622572555, - "slowking": 3.330438313840477, - "dunsparce": 3.4852787208824605, - "qwilfish": 3.403843942481431, - "sneasel": 3.1699534156047533, - "piloswine": 1.6890999918364686, - "octillery": 2.3056697076598334, - "mantine": 2.3031581322862396, - "skarmory": 2.2867490886121074, - "hitmontop": 2.267767884774532, - "miltank": 3.6265054226328672, - "grovyle": 7.837325370179741, - "sceptile": 1.4869929776425772, - "combusken": 2.8950477559550847, - "blaziken": 1.394760120804788, - "marshtomp": 2.5656578640167154, - "swampert": 1.3183272530105017, - "linoone": 5.4215328573813775, - "linoone-galar": 6.814409459514671, - "pelipper": 6.569934345159037, - "ninjask": 7.5494890640497205, - "exploud": 1.6607624077778602, - "lairon": 2.5916636374893427, - "manectric": 1.902908021345282, - "roselia": 4.020663062084992, - "sharpedo": 5.501997961317147, - "wailmer": 6.611746597693706, - "torkoal": 2.1615141300826473, - "flygon": 2.531936706195937, - "altaria": 1.586763519747576, - "whiscash": 2.209297462182207, - "crawdaunt": 1.963850129875694, - "claydol": 4.807560695470869, - "cradily": 2.2350463907675806, - "armaldo": 1.9580037900951366, - "dusclops": 5.128874443042632, - "absol": 2.030723826038015, - "glalie": 4.305900898221494, - "sealeo": 3.298928929156645, - "relicanth": 2.167765481513456, - "metang": 4.254222849755096, - "luxray": 3.954127083279608, - "vespiquen": 2.7703753887174978, - "cherrim": 5.9546174569470764, - "gastrodon": 2.151221489796495, - "drifblim": 6.337876205942401, - "lopunny": 3.6639583362914663, - "skuntank": 1.3063803794451563, - "bronzong": 4.800619427835853, - "munchlax": 2.3312475639353125, - "drapion": 2.1105241322055517, - "abomasnow": 3.1813079728816245, - "froslass": 4.180432474708148, - "rotom": 5.809504557331371, - "stoutland": 2.4525449896966105, - "liepard": 6.847471565606593, - "musharna": 2.3545306469910763, - "unfezant": 6.813475899017948, - "boldore": 3.760734532307195, - "swoobat": 8.278611134750687, - "audino": 2.2948759364994187, - "gurdurr": 1.9849924085794752, - "palpitoad": 3.9765071003098393, - "seismitoad": 6.007939941575592, - "scolipede": 3.4132864338068396, - "whimsicott": 2.5977362869327028, - "lilligant": 3.172309714870565, - "basculin-red-striped": 3.080447877317502, - "basculin-blue-striped": 4.012442162903769, - "krookodile": 2.9813858763604575, - "maractus": 2.3502594570873008, - "crustle": 2.252079684660426, - "sigilyph": 3.2924080941359946, - "cofagrigus": 4.569947444737202, - "garbodor": 1.7484847274884614, - "cinccino": 4.700681562620138, - "vanillish": 2.20872291436162, - "emolga": 3.1888703023020284, - "escavalier": 1.878952027211357, - "amoonguss": 2.367033685796776, - "jellicent": 1.8856545303588836, - "galvantula": 1.6655210167593442, - "klang": 2.794464349339278, - "klinklang": 3.2399423243252388, - "beheeyem": 2.605872340162991, - "lampent": 3.726880203821117, - "fraxure": 1.9459991244342447, - "beartic": 1.800452602381587, - "cryogonal": 1.955970417994025, - "accelgor": 2.983259048218749, - "stunfisk": 1.3142711478419966, - "stunfisk-galar": 2.5568923380361497, - "mienshao": 2.9004478233151936, - "druddigon": 1.8509969218376185, - "golurk": 2.682590407374226, - "bisharp": 3.069606539712832, - "bouffalant": 1.3165307736875755, - "heatmor": 1.98649545701694, - "durant": 3.2883593545405043, - "diggersby": 3.29147022709971, - "talonflame": 2.9547956494148453, - "pangoro": 1.7387065658756433, - "doublade": 4.041366123718992, - "malamar": 3.3523832093227837, - "barbaracle": 1.515021649701699, - "heliolisk": 3.904042785816277, - "tyrantrum": 1.851463025733441, - "aurorus": 3.0806646282590933, - "hawlucha": 3.010355931665446, - "dedenne": 2.1424334309777238, - "klefki": 2.219255292471538, - "trevenant": 4.136759891594217, - "gourgeist-average": 8.492045341084106, - "charjabug": 4.255974735176329, - "vikavolt": 1.918894271520174, - "ribombee": 3.7570546296568184, - "lycanroc-midday": 3.4207317517953504, - "lycanroc-midnight": 2.4939715554802926, - "mudsdale": 1.6995196733959779, - "araquanid": 2.1932672269960394, - "lurantis": 2.4774648178432326, - "shiinotic": 3.395033927357971, - "salazzle": 3.170758114286727, - "bewear": 1.7016915938264723, - "tsareena": 3.155016315363948, - "comfey": 3.5188285745867187, - "oranguru": 4.144402535970696, - "passimian": 2.050454159736071, - "palossand": 3.194358617531349, - "pyukumuku": 41.39739590783376, - "togedemaru": 2.0928794430713955, - "mimikyu-disguised": 4.193766723112325, - "greedent": 2.26109911384283, - "orbeetle": 2.66608259079962, - "thievul": 2.1121155415446307, - "eldegoss": 3.9006987428807305, - "dubwool": 3.0410799005711606, - "drednaw": 1.3100300495094244, - "boltund": 5.208163364982844, - "carkol": 2.522382400081919, - "coalossal": 2.098267211243882, - "sandaconda": 3.6581958125260194, - "cramorant": 5.55490199059685, - "barraskewda": 5.39078085542603, - "toxtricity-amped": 2.7849411557079313, - "centiskorch": 1.984198156751606, - "grapploct": 1.474040242918703, - "polteageist": 3.7240213342447888, - "hatterene": 2.6228655837228416, - "obstagoon": 3.2333082284588364, - "perrserker": 3.5452659256639927, - "alcremie": 1.057953189498337, - "falinks": 2.6411884329978035, - "pincurchin": 3.127649643792034, - "frosmoth": 2.6193193142390663, - "indeedee-male": 4.330739842679846, - "morpeko": 2.7861057360956485, - "copperajah": 2.2089465782002833, - "duraludon": 1.9978234438764058, - "drakloak": 7.524238434354611, - "grimmsnarl": 3.540735561512572 + "ivysaur": 3.046816183758202, + "charmeleon": 4.213720322094271, + "wartortle": 2.8622920749493175, + "butterfree": 4.291969672976228, + "raichu": 5.13363465044232, + "raichu-alola": 4.62442781582716, + "sandslash": 2.4189433741219633, + "sandslash-alola": 2.2622419093814234, + "nidoqueen": 2.8131909576945295, + "nidoking": 1.891512614297811, + "clefairy": 7.779606398974885, + "clefable": 1.4767952995400706, + "jigglypuff": 20.43040150683865, + "wigglytuff": 1.555300657565495, + "gloom": 5.031609296467546, + "vileplume": 3.059892862798053, + "dugtrio": 3.6156372866131035, + "dugtrio-alola": 3.345935314676014, + "persian": 4.131561487995695, + "persian-alola": 4.966025279331598, + "golduck": 3.159205846698744, + "poliwrath": 1.6112887032020997, + "kadabra": 4.373511186405595, + "machoke": 3.492414595107276, + "tentacruel": 2.134600301524758, + "slowbro": 2.9674707725015947, + "magneton": 3.185092578411215, + "haunter": 6.79404047074281, + "kingler": 2.84699175226185, + "exeggutor": 2.774307961044915, + "marowak": 3.2379276938549504, + "marowak-alola": 3.09080318515249, + "hitmonlee": 2.1124393784257585, + "hitmonchan": 1.832123952306955, + "lickitung": 2.001316773559132, + "weezing": 1.7135039929541231, + "weezing-galar": 2.129598843808675, + "rhydon": 2.467701811763874, + "chansey": 30.558329936186723, + "tangela": 5.7352645176832535, + "kangaskhan": 2.0499758551534075, + "seadra": 5.11271803913304, + "seaking": 2.3461121112973444, + "starmie": 1.9138354237127608, + "mr-mime": 7.822109619843118, + "mr-mime-galar": 4.958073346053263, + "scyther": 2.8338543377162413, + "jynx": 4.698451656044517, + "electabuzz": 2.540141079196209, + "magmar": 1.6450021026489061, + "tauros": 2.20886603575234, + "ditto": 5.010021002485848, + "vaporeon": 3.117281496895349, + "jolteon": 1.9264765062873679, + "flareon": 2.3369643922793393, + "porygon": 2.951858865132205, + "dragonair": 2.171038692126955, + "noctowl": 5.477439358196934, + "lanturn": 1.9572528285322264, + "togetic": 4.159274702860689, + "xatu": 5.7881831058307265, + "bellossom": 2.1513442056407093, + "azumarill": 1.7303993440201224, + "sudowoodo": 2.805314385884814, + "politoed": 2.545645464647091, + "quagsire": 5.049178052635351, + "slowking": 3.334347981177263, + "dunsparce": 3.486752636393267, + "qwilfish": 3.395414673618302, + "sneasel": 3.1756146682389046, + "piloswine": 1.6890312175585858, + "octillery": 2.30170516283527, + "mantine": 2.3011032172439667, + "skarmory": 2.2858041410330534, + "hitmontop": 2.2644215003970194, + "miltank": 3.6202845068341785, + "grovyle": 7.831753317079118, + "sceptile": 1.4865838745374818, + "combusken": 2.8916901588936272, + "blaziken": 1.3929724701597208, + "marshtomp": 2.564226994254189, + "swampert": 1.3181769072328624, + "linoone": 5.42103688203766, + "linoone-galar": 6.833215892102551, + "pelipper": 6.563963692216207, + "ninjask": 7.5385033985634955, + "exploud": 1.6604892000745164, + "lairon": 2.588150741340515, + "manectric": 1.9037638435908946, + "roselia": 4.019939985707171, + "sharpedo": 5.508298363400024, + "wailmer": 6.604567565689721, + "torkoal": 2.1616880232908975, + "flygon": 2.531610438007016, + "altaria": 1.5864278894904684, + "whiscash": 2.2097466194141644, + "crawdaunt": 1.9638305709032542, + "claydol": 4.816728743211211, + "cradily": 2.233195613828379, + "armaldo": 1.9569054109438007, + "dusclops": 5.137610696032166, + "absol": 2.031100744256227, + "glalie": 4.305426845453459, + "sealeo": 3.2985752467368212, + "relicanth": 2.168306898002752, + "metang": 4.256635186949195, + "luxray": 3.95117112657151, + "vespiquen": 2.766836508336351, + "cherrim": 5.9504194390687175, + "gastrodon": 2.149248664010244, + "drifblim": 6.35071717760476, + "lopunny": 3.6621618573490498, + "skuntank": 1.306475906727543, + "bronzong": 4.810487138579225, + "munchlax": 2.328375307312018, + "drapion": 2.107863005736663, + "abomasnow": 3.1785405109381912, + "froslass": 4.184753332579104, + "rotom": 5.8200915624815845, + "stoutland": 2.45045361319643, + "liepard": 6.840246589529508, + "musharna": 2.3616874286366576, + "unfezant": 6.811618028230967, + "boldore": 3.7607952435449317, + "swoobat": 8.297308439084688, + "audino": 2.2933553883464013, + "gurdurr": 1.982270179296902, + "palpitoad": 3.975345631233991, + "seismitoad": 5.991156217064746, + "scolipede": 3.410840290654703, + "whimsicott": 2.5905419585777283, + "lilligant": 3.1707351669456667, + "basculin-red-striped": 3.080834409452163, + "basculin-blue-striped": 4.013626837470148, + "krookodile": 2.983751662308342, + "maractus": 2.350581954165218, + "crustle": 2.2511118250104087, + "sigilyph": 3.2952908149109836, + "cofagrigus": 4.585978464822521, + "garbodor": 1.7425296129428713, + "cinccino": 4.698433986507347, + "vanillish": 2.208072293604909, + "emolga": 3.1871886274141525, + "escavalier": 1.878130291304469, + "amoonguss": 2.3608328716861315, + "jellicent": 1.8846672276364982, + "galvantula": 1.6643587588670274, + "klang": 2.7928206102461903, + "klinklang": 3.2332683879873785, + "beheeyem": 2.6115260689174074, + "lampent": 3.7308711815953757, + "fraxure": 1.9494442186826184, + "beartic": 1.8001262249722045, + "cryogonal": 1.9558297982757797, + "accelgor": 2.978112925717663, + "stunfisk": 1.3136606633323833, + "stunfisk-galar": 2.559990344762556, + "mienshao": 2.895979070923774, + "druddigon": 1.8495489443631032, + "golurk": 2.685534829979945, + "bisharp": 3.073304387129447, + "bouffalant": 1.316291862069271, + "heatmor": 1.9864844471683212, + "durant": 3.2839832242046763, + "diggersby": 3.29066681258053, + "talonflame": 2.9511226508876907, + "pangoro": 1.7373160729250525, + "doublade": 4.041259385309459, + "malamar": 3.3580083802868907, + "barbaracle": 1.5126154557947986, + "heliolisk": 3.9042279659046875, + "tyrantrum": 1.8528071735022755, + "aurorus": 3.0814094975970074, + "hawlucha": 3.004123425411964, + "dedenne": 2.136261327815478, + "klefki": 2.2107673580792637, + "trevenant": 4.138227954165422, + "gourgeist-average": 8.50792518258313, + "charjabug": 4.25294504874414, + "vikavolt": 1.9169102687675206, + "ribombee": 3.745274064147246, + "lycanroc-midday": 3.42003793814336, + "lycanroc-midnight": 2.495135795581288, + "mudsdale": 1.6997734768749875, + "araquanid": 2.1891281631952, + "lurantis": 2.475474353881509, + "shiinotic": 3.3816095602509146, + "salazzle": 3.1651313455026955, + "bewear": 1.6997709111295947, + "tsareena": 3.152554883005584, + "comfey": 3.508490468220937, + "oranguru": 4.1619932124838, + "passimian": 2.0477299850368573, + "palossand": 3.1994229590534093, + "pyukumuku": 41.34832323423238, + "togedemaru": 2.0876699198427096, + "mimikyu-disguised": 4.192411814909451, + "greedent": 2.260256215419469, + "orbeetle": 2.673336775991205, + "thievul": 2.1147511616652364, + "eldegoss": 3.8979373867973006, + "dubwool": 3.0393998880583366, + "drednaw": 1.3084549094435212, + "boltund": 5.212462036722899, + "carkol": 2.52235329128521, + "coalossal": 2.0981537700980852, + "sandaconda": 3.660792758441253, + "cramorant": 5.554662301391663, + "barraskewda": 5.398353944293282, + "toxtricity-amped": 2.7822503353556973, + "centiskorch": 1.9811932572928395, + "grapploct": 1.4721783234893033, + "polteageist": 3.7319614543207127, + "hatterene": 2.6212781246007464, + "grimmsnarl": 3.540735561512572, + "obstagoon": 3.2359072058772367, + "perrserker": 3.544929203250651, + "alcremie": 1.0550144421689716, + "falinks": 2.6345929762961235, + "pincurchin": 3.1267652518826172, + "frosmoth": 2.615947193259144, + "indeedee-male": 4.340823336756786, + "morpeko": 2.785323193290651, + "copperajah": 2.204730698462525, + "duraludon": 1.9981542524489666, + "drakloak": 7.550542973974295 }, "obstagoon": { - "ivysaur": 3.3730194672736027, - "charmeleon": 4.0868423900635795, - "wartortle": 2.6515640965361085, - "butterfree": 4.593066525971871, - "raichu": 4.787965350066772, - "raichu-alola": 5.541492377201369, - "sandslash": 2.018768566634933, - "sandslash-alola": 1.8427759093034626, - "nidoqueen": 2.960848578845825, - "nidoking": 1.9334827358175601, - "clefairy": 9.692834340756315, - "clefable": 1.8273722843902647, - "jigglypuff": 24.863966401477423, - "wigglytuff": 1.863208020149505, - "gloom": 5.468378094804283, - "vileplume": 2.8816177555280174, - "dugtrio": 4.05640833587326, - "dugtrio-alola": 3.7652387648066687, - "persian": 4.377885595225738, - "persian-alola": 4.7776515654980845, - "golduck": 3.2512756865180346, - "poliwrath": 1.7902435521309048, - "kadabra": 5.828049544547678, - "machoke": 3.4843581863128827, - "tentacruel": 2.6726307802490084, - "slowbro": 2.5067373357641705, - "magneton": 3.102437459334647, - "haunter": 7.428106467438441, - "kingler": 2.596866097839654, - "exeggutor": 2.5966771783941223, - "marowak": 3.148158253960493, - "marowak-alola": 2.8429922515330537, - "hitmonlee": 2.1496444873053635, - "hitmonchan": 2.1397608795996463, - "lickitung": 1.9711609495891762, - "weezing": 1.519545815806598, - "weezing-galar": 2.2859535057100873, - "rhydon": 2.163615114685891, - "chansey": 31.692460704573556, - "tangela": 4.530318195455531, - "kangaskhan": 1.970344110333846, - "seadra": 4.75072552841784, - "seaking": 2.6522039697782898, - "starmie": 1.862358403581828, - "mr-mime": 9.025399194042976, - "mr-mime-galar": 5.428595480209614, - "scyther": 2.822959108156003, - "jynx": 6.5303502304981595, - "electabuzz": 2.8045223921712785, - "magmar": 1.8373426870914122, - "tauros": 1.867025542320028, - "ditto": 3.646168335606249, - "vaporeon": 3.5113618494902017, - "jolteon": 2.205232446498536, - "flareon": 2.798859538546548, - "porygon": 2.9537231257035366, - "dragonair": 1.9761489109987598, - "noctowl": 6.582505648889285, - "lanturn": 2.086519431793077, - "togetic": 5.279535338688365, - "xatu": 5.591629408327606, - "bellossom": 2.1622798713513456, - "azumarill": 2.298850202654343, - "sudowoodo": 2.275234841271846, - "politoed": 2.76591217716925, - "quagsire": 3.9817783832981872, - "slowking": 3.7974773488696476, - "dunsparce": 3.400238581395274, - "qwilfish": 3.83198511639795, - "sneasel": 2.476709499193108, - "piloswine": 1.4681350927245536, - "octillery": 2.401889713397159, - "mantine": 2.9280759396975764, - "skarmory": 2.361744616380805, - "hitmontop": 2.4596827530502945, - "miltank": 3.3931199634573046, - "grovyle": 7.72989081936249, - "sceptile": 1.4990079863077113, - "combusken": 2.73539691705772, - "blaziken": 1.463826746978563, - "marshtomp": 2.6102382067734666, - "swampert": 1.2965747135448447, - "linoone": 5.463640485563545, - "linoone-galar": 5.144337645271785, - "pelipper": 8.99819818802089, - "ninjask": 7.150624158448294, - "exploud": 1.585893987277337, - "lairon": 2.3356690970394225, - "manectric": 1.8663814579225064, - "roselia": 4.59158957473932, - "sharpedo": 5.463161951544354, - "wailmer": 6.932100434784102, - "torkoal": 1.7601837823310187, - "flygon": 2.3968278683350155, - "altaria": 1.5793093850002142, - "whiscash": 2.202154275779474, - "crawdaunt": 2.265893921464179, - "claydol": 4.922985540165689, - "cradily": 2.3520417572330414, - "armaldo": 1.800798217894279, - "dusclops": 5.141213100589487, - "absol": 2.0422642665111157, - "glalie": 4.455405451707045, - "sealeo": 3.3254154237563482, - "relicanth": 2.1638747070632136, - "metang": 4.129512220178029, - "luxray": 3.973884509292068, - "vespiquen": 2.555610748268956, - "cherrim": 6.042612791287992, - "gastrodon": 2.275232319376819, - "drifblim": 6.668977846082355, - "lopunny": 3.5503392477701325, - "skuntank": 1.5116394899148549, - "bronzong": 5.016885534990688, - "munchlax": 2.6265991525021573, - "drapion": 2.32935803711582, - "abomasnow": 3.350769135172916, - "froslass": 4.2367639731111195, - "rotom": 5.833343053698604, - "stoutland": 2.524860317004009, - "liepard": 7.079359661578261, - "musharna": 2.383600076765588, - "unfezant": 6.9599195382392445, - "boldore": 2.872857480641831, - "swoobat": 8.00809326110899, - "audino": 2.2664945363340507, - "gurdurr": 1.6942122026783153, - "palpitoad": 3.9357222720902487, - "seismitoad": 6.539702444403634, - "scolipede": 3.069264523479018, - "whimsicott": 3.0027708886457427, - "lilligant": 2.9673071018367505, - "basculin-red-striped": 3.141777960283303, - "basculin-blue-striped": 3.975720937248802, - "krookodile": 2.9487326466053627, - "maractus": 2.300976307339826, - "crustle": 1.7565720769713795, - "sigilyph": 3.324843260335082, - "cofagrigus": 3.9937204067726775, - "garbodor": 1.794140708106681, - "cinccino": 4.804466669532998, - "vanillish": 2.2566438906965764, - "emolga": 3.1601389729955907, - "escavalier": 1.8576152838337139, - "amoonguss": 2.6431963452625533, - "jellicent": 2.2466351160092723, - "galvantula": 1.5839091094240794, - "klang": 2.804509981692066, - "klinklang": 3.3699548572014972, - "beheeyem": 2.7527696126847814, - "lampent": 3.586386018674667, - "fraxure": 1.540981762120278, - "beartic": 1.6836302258830926, - "cryogonal": 2.018250869596305, - "accelgor": 2.870556619829027, - "stunfisk": 1.3545273309433026, - "stunfisk-galar": 2.3789577398005495, - "mienshao": 2.979292764410122, - "druddigon": 1.9613547726771117, - "golurk": 2.3856653392500395, - "bisharp": 2.358445124015592, - "bouffalant": 1.25631718157613, - "heatmor": 1.9760715655522123, - "durant": 2.6743629674250498, - "diggersby": 3.3841313021214896, - "talonflame": 3.066493707946012, - "pangoro": 1.572729713074673, - "doublade": 2.375181508787925, - "malamar": 3.1198534769989337, - "barbaracle": 1.5846551340844774, - "heliolisk": 4.031943780407262, - "tyrantrum": 1.3778204974497614, - "aurorus": 2.567151861872622, - "hawlucha": 3.3768326104451347, - "dedenne": 2.6249195291914265, - "klefki": 2.4648532084533192, - "trevenant": 3.8364036317954433, - "gourgeist-average": 6.95607993030526, - "charjabug": 3.9889307676360373, - "vikavolt": 1.7277486104744506, - "ribombee": 4.15810954449106, - "lycanroc-midday": 3.4935250990541924, - "lycanroc-midnight": 2.309214647689337, - "mudsdale": 1.390400885720927, - "araquanid": 2.494577378020816, - "lurantis": 2.388478706538872, - "shiinotic": 4.119375129038678, - "salazzle": 3.2737046808746877, - "bewear": 1.7789941336842883, - "tsareena": 3.2447145279480383, - "comfey": 4.309174414512327, - "oranguru": 4.5587915570579725, - "passimian": 1.9558160327502887, - "palossand": 2.7123268110630097, - "pyukumuku": 41.35748644427595, - "togedemaru": 2.3957425815544564, - "mimikyu-disguised": 4.862406172116469, - "greedent": 2.263517209207666, - "orbeetle": 2.456167229798577, - "thievul": 2.067852169582966, - "eldegoss": 4.151803772950486, - "dubwool": 2.7469464623119206, - "drednaw": 1.3715775393077403, - "boltund": 5.051368431603791, - "carkol": 2.4050367023336117, - "coalossal": 1.9297296412085099, - "sandaconda": 2.8732168283223953, - "cramorant": 7.085836413713357, - "barraskewda": 5.103607471558273, - "toxtricity-amped": 2.7459996220037395, - "centiskorch": 2.2107728345139783, - "grapploct": 1.3962499281145184, - "polteageist": 4.607418977443819, - "hatterene": 2.738183113437945, - "grimmsnarl": 3.764011098262827, - "perrserker": 3.2257680682494145, - "alcremie": 1.3833153248776757, - "falinks": 2.5221470359865963, - "pincurchin": 2.981372136229803, - "frosmoth": 2.5458892792273953, - "indeedee-male": 5.33781577048325, - "morpeko": 2.8426974267938085, - "copperajah": 2.256858866331015, - "duraludon": 1.4542651803084976, - "drakloak": 6.9828888995006055, - "obstagoon": 2.5987024482602763 + "ivysaur": 3.375183091545031, + "charmeleon": 4.091185516946829, + "wartortle": 2.6521598922769893, + "butterfree": 4.591568910911541, + "raichu": 4.77610350884546, + "raichu-alola": 5.557245845993696, + "sandslash": 2.0174521467257875, + "sandslash-alola": 1.8396624540589586, + "nidoqueen": 2.963806761834128, + "nidoking": 1.9351150533431114, + "clefairy": 9.700935339394096, + "clefable": 1.825887290590085, + "jigglypuff": 24.82058885631088, + "wigglytuff": 1.8629109614939439, + "gloom": 5.462696945257141, + "vileplume": 2.8796790808234976, + "dugtrio": 4.060793826579072, + "dugtrio-alola": 3.768222865399138, + "persian": 4.378549406207412, + "persian-alola": 4.78555820776482, + "golduck": 3.2567993000595448, + "poliwrath": 1.788613833811333, + "kadabra": 5.841371913853667, + "machoke": 3.478969956671054, + "tentacruel": 2.678027023465629, + "slowbro": 2.5178600311881087, + "magneton": 3.1017558770094475, + "haunter": 7.454658447624714, + "kingler": 2.595559882008095, + "exeggutor": 2.601438868894964, + "marowak": 3.1503835603235597, + "marowak-alola": 2.850370624252349, + "hitmonlee": 2.1429158445901977, + "hitmonchan": 2.1387417201007572, + "lickitung": 1.9722960057877374, + "weezing": 1.5208276506088985, + "weezing-galar": 2.283607822095305, + "rhydon": 2.1612281410936385, + "chansey": 31.724762238314078, + "tangela": 4.5295986211779224, + "kangaskhan": 1.9731163652547021, + "seadra": 4.755325244290628, + "seaking": 2.6580693215953994, + "starmie": 1.8666098546158447, + "mr-mime": 9.068842885152868, + "mr-mime-galar": 5.446533447764056, + "scyther": 2.8266030928571055, + "jynx": 6.537425814678747, + "electabuzz": 2.8062981915123046, + "magmar": 1.839406785975756, + "tauros": 1.8659162918643044, + "ditto": 3.626053879948923, + "vaporeon": 3.5174555160045795, + "jolteon": 2.2081629051243206, + "flareon": 2.805620863913625, + "porygon": 2.956734547981979, + "dragonair": 1.977668961906631, + "noctowl": 6.594392926151322, + "lanturn": 2.0870736324898354, + "togetic": 5.281674105642191, + "xatu": 5.613051147346345, + "bellossom": 2.1609243397918183, + "azumarill": 2.3032753982026044, + "sudowoodo": 2.2720521469777983, + "politoed": 2.7710215218174286, + "quagsire": 3.9705276584309, + "slowking": 3.811568022405355, + "dunsparce": 3.4044073644818127, + "qwilfish": 3.839363578968954, + "sneasel": 2.4797418017194395, + "piloswine": 1.465200895622454, + "octillery": 2.404310923942866, + "mantine": 2.9370103232636904, + "skarmory": 2.365784223512964, + "hitmontop": 2.4556564492689854, + "miltank": 3.3924457614416905, + "grovyle": 7.720516453772709, + "sceptile": 1.4994262192163388, + "combusken": 2.726090825811121, + "blaziken": 1.461453581855782, + "marshtomp": 2.6119508560778986, + "swampert": 1.2970938970427084, + "linoone": 5.469335148654587, + "linoone-galar": 5.152416049029894, + "pelipper": 9.019418751925121, + "ninjask": 7.146687655982024, + "exploud": 1.5837163070850917, + "lairon": 2.335593365047913, + "manectric": 1.8675659564296399, + "roselia": 4.599402051038577, + "sharpedo": 5.473024134567163, + "wailmer": 6.944766819107702, + "torkoal": 1.7613620328536315, + "flygon": 2.3959244391923855, + "altaria": 1.5794925574851284, + "whiscash": 2.204529705763176, + "crawdaunt": 2.269447899292013, + "claydol": 4.9359428041093905, + "cradily": 2.3515667703173255, + "armaldo": 1.800231548353175, + "dusclops": 5.156050612131372, + "absol": 2.0443247505395217, + "glalie": 4.461981049799677, + "sealeo": 3.3298412495036778, + "relicanth": 2.166049741774313, + "metang": 4.1414787489206955, + "luxray": 3.9761869194126156, + "vespiquen": 2.553833755020522, + "cherrim": 6.04417373961183, + "gastrodon": 2.2759136410558907, + "drifblim": 6.690009784967966, + "lopunny": 3.547657702651303, + "skuntank": 1.5145404751950498, + "bronzong": 5.038201674394189, + "munchlax": 2.630929522445946, + "drapion": 2.3311697737658648, + "abomasnow": 3.3515385116844336, + "froslass": 4.246859526449281, + "rotom": 5.850021005452405, + "stoutland": 2.526552077951407, + "liepard": 7.08137747394643, + "musharna": 2.393506645137604, + "unfezant": 6.974277578265318, + "boldore": 2.868728658182152, + "swoobat": 8.038785143813318, + "audino": 2.2664673564883016, + "gurdurr": 1.6878347131220743, + "palpitoad": 3.9371808712005145, + "seismitoad": 6.537338380136452, + "scolipede": 3.069734022233509, + "whimsicott": 3.000346868277038, + "lilligant": 2.965247533331208, + "basculin-red-striped": 3.149996035220078, + "basculin-blue-striped": 3.984403172110318, + "krookodile": 2.9501864508759166, + "maractus": 2.3030666701001405, + "crustle": 1.752833584107648, + "sigilyph": 3.3359728449315567, + "cofagrigus": 4.012236380264577, + "garbodor": 1.7929116937248033, + "cinccino": 4.808943537991253, + "vanillish": 2.2575744149634374, + "emolga": 3.1643925115417186, + "escavalier": 1.858346896336827, + "amoonguss": 2.6442493734827996, + "jellicent": 2.2493284706865415, + "galvantula": 1.5832036259845697, + "klang": 2.8060822872945783, + "klinklang": 3.37256036053064, + "beheeyem": 2.7617942753643394, + "lampent": 3.5910815600707506, + "fraxure": 1.5410642963465233, + "beartic": 1.6817807062664243, + "cryogonal": 2.0204766392314983, + "accelgor": 2.86633470600572, + "stunfisk": 1.3549154153955567, + "stunfisk-galar": 2.379726526540427, + "mienshao": 2.9726038413733598, + "druddigon": 1.9645597899740062, + "golurk": 2.3838157830378934, + "bisharp": 2.361747903358615, + "bouffalant": 1.2562414493142169, + "heatmor": 1.9790739636299177, + "durant": 2.6727018366584305, + "diggersby": 3.3861638611605898, + "talonflame": 3.071999764589397, + "pangoro": 1.5695533798277954, + "doublade": 2.3738475962287615, + "malamar": 3.1271826231099906, + "barbaracle": 1.5857197025030487, + "heliolisk": 4.03554659720477, + "tyrantrum": 1.3750700795638147, + "aurorus": 2.5665405583155176, + "hawlucha": 3.3740072240321006, + "dedenne": 2.622223567190248, + "klefki": 2.462894915130269, + "trevenant": 3.8328125589876176, + "gourgeist-average": 6.971994754156344, + "charjabug": 3.9925779580250067, + "vikavolt": 1.7264780766535408, + "ribombee": 4.148187776671756, + "lycanroc-midday": 3.4956360837991527, + "lycanroc-midnight": 2.3075574883954677, + "mudsdale": 1.3871293936468274, + "araquanid": 2.4982235446471224, + "lurantis": 2.387494877870698, + "shiinotic": 4.110603078800511, + "salazzle": 3.277024349425778, + "bewear": 1.779567884755425, + "tsareena": 3.2476692627304473, + "comfey": 4.305967522495186, + "oranguru": 4.583299436878247, + "passimian": 1.95167250747493, + "palossand": 2.7164301389440118, + "pyukumuku": 41.31837368575334, + "togedemaru": 2.397028639132331, + "mimikyu-disguised": 4.87395074878123, + "greedent": 2.267517349389845, + "orbeetle": 2.4632322899523733, + "thievul": 2.0712534694533535, + "eldegoss": 4.153805744517086, + "dubwool": 2.7437747470569773, + "drednaw": 1.37225413343823, + "boltund": 5.058706637476666, + "carkol": 2.4053696194205045, + "coalossal": 1.929343551378955, + "sandaconda": 2.8701323747544025, + "cramorant": 7.112116196016772, + "barraskewda": 5.115492284749233, + "toxtricity-amped": 2.7464024662547804, + "centiskorch": 2.2131589813009342, + "grapploct": 1.389823245521982, + "polteageist": 4.622235834137424, + "hatterene": 2.7435415011620563, + "grimmsnarl": 3.761273942660517, + "obstagoon": 2.5987024482602763, + "perrserker": 3.2300501994883435, + "alcremie": 1.3828379238911874, + "falinks": 2.514916151390297, + "pincurchin": 2.98281573643433, + "frosmoth": 2.5438070300896474, + "indeedee-male": 5.3611300433004825, + "morpeko": 2.8440421028575757, + "copperajah": 2.2544430981848356, + "duraludon": 1.4545277337504139, + "drakloak": 7.002152956857563 }, "perrserker": { - "ivysaur": 3.4984205154169503, - "charmeleon": 3.1834761974338317, - "wartortle": 2.465900864939666, - "butterfree": 5.071318040723743, - "raichu": 4.462542955817725, - "raichu-alola": 4.595936534177854, - "sandslash": 1.9699814238680093, - "sandslash-alola": 1.937894627479702, - "nidoqueen": 2.5077506831524916, - "nidoking": 1.7083668945039534, - "clefairy": 11.191544621466434, - "clefable": 2.9601730606532453, - "jigglypuff": 37.4991114604379, - "wigglytuff": 2.7784868803786846, - "gloom": 6.267842176595054, - "vileplume": 3.057145235842066, - "dugtrio": 3.677999997139805, - "dugtrio-alola": 3.268455666450744, - "persian": 4.596314293444651, - "persian-alola": 4.024104160784088, - "golduck": 2.9812007237877536, - "poliwrath": 1.8244720369088339, - "kadabra": 5.746131292325938, - "machoke": 3.6512547818906835, - "tentacruel": 2.42017487233821, - "slowbro": 1.9415360047405497, - "magneton": 2.854390801519616, - "haunter": 5.858767395529787, - "kingler": 2.498923810165338, - "exeggutor": 2.2861406113980434, - "marowak": 2.8102518158959713, - "marowak-alola": 2.287983380459589, - "hitmonlee": 2.284601558477746, - "hitmonchan": 2.1079058577865135, - "lickitung": 1.856281361465617, - "weezing": 1.3048265463393447, - "weezing-galar": 2.9059117409565354, - "rhydon": 2.3455036864803183, - "chansey": 31.2732483159853, - "tangela": 4.669834694246982, - "kangaskhan": 1.870258507639693, - "seadra": 4.414646496884883, - "seaking": 2.4328561900383687, - "starmie": 1.8354889627249507, - "mr-mime": 10.158271400247129, - "mr-mime-galar": 5.01584237213957, - "scyther": 2.842630980859292, - "jynx": 6.556757280767508, - "electabuzz": 2.4246524263745246, - "magmar": 1.3683357126534939, - "tauros": 1.8236200681952701, - "ditto": 3.5144166618129473, - "vaporeon": 3.1357942959895904, - "jolteon": 1.9186551108621397, - "flareon": 1.912638801788379, - "porygon": 2.7743621554558153, - "dragonair": 1.9708233449621033, - "noctowl": 6.578441293718894, - "lanturn": 1.7840858166556217, - "togetic": 6.400695449716139, - "xatu": 4.8216137075247305, - "bellossom": 2.4400655443785415, - "azumarill": 2.306423396216997, - "sudowoodo": 2.755654253854177, - "politoed": 2.3296694404558016, - "quagsire": 3.7663330523449123, - "slowking": 3.2759500261181724, - "dunsparce": 3.284442619232083, - "qwilfish": 3.8073758184063813, - "sneasel": 2.890506807635184, - "piloswine": 1.8945086953740504, - "octillery": 2.3517766392295187, - "mantine": 2.702295109405923, - "skarmory": 2.3350941360960773, - "hitmontop": 2.5072866670010825, - "miltank": 3.6513476252048824, - "grovyle": 8.03039836653621, - "sceptile": 1.5186627067825609, - "combusken": 2.2865832342218653, - "blaziken": 1.1672758573506632, - "marshtomp": 2.3123142829970647, - "swampert": 1.1212469036822337, - "linoone": 5.431400180761637, - "linoone-galar": 4.391442727509541, - "pelipper": 8.737660596596708, - "ninjask": 7.711568685637744, - "exploud": 1.6079191747039547, - "lairon": 2.405670667982055, - "manectric": 1.602974396864043, - "roselia": 4.365129794442037, - "sharpedo": 5.057425003031852, - "wailmer": 6.419077290326825, - "torkoal": 1.2593390234675472, - "flygon": 2.377999410890822, - "altaria": 1.4436804649389314, - "whiscash": 1.9262864335674383, - "crawdaunt": 2.004000517026478, - "claydol": 4.268843904521271, - "cradily": 3.0786506534256004, - "armaldo": 2.2766427693492677, - "dusclops": 4.184517117441812, - "absol": 1.9165881796700086, - "glalie": 5.400431874211948, - "sealeo": 3.126510653653684, - "relicanth": 2.106157122164907, - "metang": 3.663847598886578, - "luxray": 3.6266600027698743, - "vespiquen": 2.77940254192585, - "cherrim": 6.030009059657371, - "gastrodon": 2.2319626924225533, - "drifblim": 5.380063160563807, - "lopunny": 3.7422419517027254, - "skuntank": 1.2987159923454084, - "bronzong": 4.3001076797449045, - "munchlax": 2.5162823254945685, - "drapion": 2.357358408491986, - "abomasnow": 4.234597710409485, - "froslass": 3.7665220115052165, - "rotom": 4.414113863106767, - "stoutland": 2.5808453292284805, - "liepard": 7.170990400582117, - "musharna": 1.9966670216031714, - "unfezant": 6.925129319064423, - "boldore": 3.3092001509079214, - "swoobat": 6.910978128648582, - "audino": 2.1745830862619138, - "gurdurr": 1.809536668175161, - "palpitoad": 3.282246547316843, - "seismitoad": 6.96209982547172, - "scolipede": 3.20624403210134, - "whimsicott": 4.064143830724166, - "lilligant": 3.120045297333718, - "basculin-red-striped": 2.9169307652965015, - "basculin-blue-striped": 3.5498147598809586, - "krookodile": 2.4890017922382115, - "maractus": 2.245855797424037, - "crustle": 2.3863498531416, - "sigilyph": 2.927738058106346, - "cofagrigus": 2.9400424116651243, - "garbodor": 1.929426744465002, - "cinccino": 4.873724319037828, - "vanillish": 2.878070195441705, - "emolga": 2.7828945505293374, - "escavalier": 1.7024200802661125, - "amoonguss": 2.849865520296425, - "jellicent": 2.2596901260422984, - "galvantula": 1.447953358692361, - "klang": 2.5898724624890397, - "klinklang": 3.3370287428961594, - "beheeyem": 2.3102240810805537, - "lampent": 2.4065950189884604, - "fraxure": 1.6068397526333555, - "beartic": 2.149717463208453, - "cryogonal": 2.662609630895183, - "accelgor": 3.3799915352380543, - "stunfisk": 1.1166296005481449, - "stunfisk-galar": 1.9058796590413087, - "mienshao": 3.149440164714085, - "druddigon": 1.823493358089836, - "golurk": 2.06298595922574, - "bisharp": 2.223717709755527, - "bouffalant": 1.2798272941613003, - "heatmor": 1.5692212979876359, - "durant": 2.8026584848794314, - "diggersby": 3.036341121050754, - "talonflame": 2.662339032253046, - "pangoro": 1.6308731529766585, - "doublade": 2.372315971597708, - "malamar": 2.7256778005905216, - "barbaracle": 1.5698049533412073, - "heliolisk": 3.4790317951315215, - "tyrantrum": 1.7756928398700098, - "aurorus": 4.259481586920273, - "hawlucha": 3.4705910829376303, - "dedenne": 2.9918801529070347, - "klefki": 3.178191982558573, - "trevenant": 3.7598233595978066, - "gourgeist-average": 5.1843383651973065, - "charjabug": 3.5843764400804474, - "vikavolt": 1.7185518252226895, - "ribombee": 6.364625166361279, - "lycanroc-midday": 4.437858484462904, - "lycanroc-midnight": 2.9253254741354144, - "mudsdale": 1.3846639665490454, - "araquanid": 2.5204947471349852, - "lurantis": 2.4880136960814934, - "shiinotic": 6.037091217314938, - "salazzle": 2.7741815256007945, - "bewear": 1.8095944026975883, - "tsareena": 3.2937783543602697, - "comfey": 6.220366338064002, - "oranguru": 3.627520451212167, - "passimian": 2.128629953291542, - "palossand": 2.0176236090668236, - "pyukumuku": 45.285702270036396, - "togedemaru": 2.2540833805497593, - "mimikyu-disguised": 5.839748434597343, - "greedent": 2.2192810931942497, - "orbeetle": 2.318169687358645, - "thievul": 1.6372240781709486, - "eldegoss": 4.1390141776632055, - "dubwool": 2.9105862015479786, - "drednaw": 1.3857342329034097, - "boltund": 4.358724883396251, - "carkol": 2.1207132001173923, - "coalossal": 1.6650820063474732, - "sandaconda": 2.7048524102637383, - "cramorant": 6.292468860861328, - "barraskewda": 4.751625558921981, - "toxtricity-amped": 2.577794673874477, - "centiskorch": 1.8108240237793511, - "grapploct": 1.4376513102404225, - "polteageist": 3.895914919358873, - "hatterene": 3.4375725689528798, - "grimmsnarl": 4.681595013442654, - "obstagoon": 2.4704441542371995, - "alcremie": 2.0279754059222466, - "falinks": 2.848089410556666, - "pincurchin": 2.649669255401589, - "frosmoth": 3.6420865146322257, - "indeedee-male": 3.9051260359236792, - "morpeko": 2.2611841800505217, - "copperajah": 2.2757163117808634, - "duraludon": 1.4037540372214972, - "drakloak": 5.705054067681543, - "perrserker": 2.935056934335757 + "ivysaur": 3.5044723465861565, + "charmeleon": 3.172260958188643, + "wartortle": 2.4626566028420203, + "butterfree": 5.080278145921188, + "raichu": 4.447414337630429, + "raichu-alola": 4.597189291949471, + "sandslash": 1.9681173004469703, + "sandslash-alola": 1.9376258374490916, + "nidoqueen": 2.5027383810689994, + "nidoking": 1.706097889554766, + "clefairy": 11.178293835297815, + "clefable": 2.965454738895324, + "jigglypuff": 37.563480779757064, + "wigglytuff": 2.782444330212835, + "gloom": 6.280540439002603, + "vileplume": 3.059511877825602, + "dugtrio": 3.6723440543703942, + "dugtrio-alola": 3.2649938482186274, + "persian": 4.602354958226822, + "persian-alola": 4.0207811953425985, + "golduck": 2.98097078882439, + "poliwrath": 1.8230926104364564, + "kadabra": 5.759172456286586, + "machoke": 3.648333961269821, + "tentacruel": 2.4209564115527678, + "slowbro": 1.9413113200648562, + "magneton": 2.8505402674475615, + "haunter": 5.867752657027137, + "kingler": 2.4960824711469867, + "exeggutor": 2.2872430859290693, + "marowak": 2.8064395251189227, + "marowak-alola": 2.2882192556563767, + "hitmonlee": 2.2797117263522644, + "hitmonchan": 2.106078230417201, + "lickitung": 1.855496203533713, + "weezing": 1.3045530266912062, + "weezing-galar": 2.905535896027687, + "rhydon": 2.342862852272516, + "chansey": 31.31083642905596, + "tangela": 4.672267287983912, + "kangaskhan": 1.8711537785128742, + "seadra": 4.412947356558535, + "seaking": 2.4342707231876357, + "starmie": 1.839226346982676, + "mr-mime": 10.180115034537883, + "mr-mime-galar": 5.026676070654497, + "scyther": 2.847262164738212, + "jynx": 6.574464148412426, + "electabuzz": 2.421068563374566, + "magmar": 1.3643371066713603, + "tauros": 1.8217602219855453, + "ditto": 3.4942476439479946, + "vaporeon": 3.1348582878265363, + "jolteon": 1.9151417254716365, + "flareon": 1.908213087859873, + "porygon": 2.774081282845141, + "dragonair": 1.9720787770282917, + "noctowl": 6.591543380147057, + "lanturn": 1.7795450490935338, + "togetic": 6.3965618326822415, + "xatu": 4.831635248911638, + "bellossom": 2.4414494847417707, + "azumarill": 2.311407613721989, + "sudowoodo": 2.755051657319962, + "politoed": 2.326379546189443, + "quagsire": 3.7525914322004974, + "slowking": 3.2816472447398755, + "dunsparce": 3.2865664681613924, + "qwilfish": 3.8143778329531783, + "sneasel": 2.8924961383147796, + "piloswine": 1.8950148914964462, + "octillery": 2.352945950389566, + "mantine": 2.705517970366823, + "skarmory": 2.340078821796114, + "hitmontop": 2.5037673441492223, + "miltank": 3.656295594234529, + "grovyle": 8.028449228805295, + "sceptile": 1.520193902339126, + "combusken": 2.275768865015486, + "blaziken": 1.1628040179557395, + "marshtomp": 2.308979083806205, + "swampert": 1.1177398050883813, + "linoone": 5.4372504503384045, + "linoone-galar": 4.386549810681835, + "pelipper": 8.758055108869302, + "ninjask": 7.719461408558022, + "exploud": 1.606530202493765, + "lairon": 2.408075951079284, + "manectric": 1.5982672257399924, + "roselia": 4.369543208094866, + "sharpedo": 5.057435555415126, + "wailmer": 6.420497092807178, + "torkoal": 1.254751315559754, + "flygon": 2.3774242230315132, + "altaria": 1.4425137159341435, + "whiscash": 1.9250382808604842, + "crawdaunt": 2.0030424615299336, + "claydol": 4.274067388232524, + "cradily": 3.0852786060376274, + "armaldo": 2.2795385524016973, + "dusclops": 4.189943982921783, + "absol": 1.9145005176024654, + "glalie": 5.4099872640546565, + "sealeo": 3.1272983027223127, + "relicanth": 2.108653910084195, + "metang": 3.671023320008975, + "luxray": 3.6231198908381606, + "vespiquen": 2.7824519248027313, + "cherrim": 6.032683384690898, + "gastrodon": 2.2326498629365954, + "drifblim": 5.386990552692656, + "lopunny": 3.7438281352831706, + "skuntank": 1.2981333610890198, + "bronzong": 4.3121590562490475, + "munchlax": 2.5189783608556633, + "drapion": 2.359167812835395, + "abomasnow": 4.24191447732679, + "froslass": 3.774801017511289, + "rotom": 4.41249047348802, + "stoutland": 2.5841364044200805, + "liepard": 7.173793884084187, + "musharna": 2.000465835985065, + "unfezant": 6.941320849867433, + "boldore": 3.307634916374757, + "swoobat": 6.9254935417129655, + "audino": 2.171315225810862, + "gurdurr": 1.804410558567707, + "palpitoad": 3.2728597454073647, + "seismitoad": 6.971351434901553, + "scolipede": 3.2100019566475133, + "whimsicott": 4.070015397973016, + "lilligant": 3.1216535714745803, + "basculin-red-striped": 2.9195403749445377, + "basculin-blue-striped": 3.548681966306221, + "krookodile": 2.481747746907885, + "maractus": 2.2473052198026062, + "crustle": 2.3889118802373703, + "sigilyph": 2.933759772210368, + "cofagrigus": 2.9417137901771118, + "garbodor": 1.933312086358037, + "cinccino": 4.880512090714589, + "vanillish": 2.882306990840264, + "emolga": 2.781293381929344, + "escavalier": 1.7015537381424433, + "amoonguss": 2.8564335312775277, + "jellicent": 2.265307621260699, + "galvantula": 1.4457744644361556, + "klang": 2.5892845333850105, + "klinklang": 3.3415170456123144, + "beheeyem": 2.312953581386693, + "lampent": 2.4019244734635903, + "fraxure": 1.6088883577843376, + "beartic": 2.150147034846756, + "cryogonal": 2.668280729320654, + "accelgor": 3.384557400341636, + "stunfisk": 1.1126277983893473, + "stunfisk-galar": 1.899920796374843, + "mienshao": 3.14517039272652, + "druddigon": 1.8241660852390362, + "golurk": 2.0607021368009235, + "bisharp": 2.224385681970355, + "bouffalant": 1.2804001977650605, + "heatmor": 1.5648626906298506, + "durant": 2.8044067059621582, + "diggersby": 3.0323293966130835, + "talonflame": 2.6591490107496902, + "pangoro": 1.6284421263761648, + "doublade": 2.3744003741021147, + "malamar": 2.7245822435773643, + "barbaracle": 1.5719132148838675, + "heliolisk": 3.473366210687685, + "tyrantrum": 1.776639577622488, + "aurorus": 4.267254608848025, + "hawlucha": 3.470598593368004, + "dedenne": 2.9898055630985216, + "klefki": 3.183060762236661, + "trevenant": 3.764489596000344, + "gourgeist-average": 5.176819257560405, + "charjabug": 3.5789559855132014, + "vikavolt": 1.717509013295887, + "ribombee": 6.374250703589162, + "lycanroc-midday": 4.448550816748378, + "lycanroc-midnight": 2.9280824202363354, + "mudsdale": 1.3815774745173328, + "araquanid": 2.5253382989773026, + "lurantis": 2.4895541523612357, + "shiinotic": 6.0444551434085865, + "salazzle": 2.7657908409416865, + "bewear": 1.8105643004315708, + "tsareena": 3.29860320373789, + "comfey": 6.231933901594562, + "oranguru": 3.6349092661108133, + "passimian": 2.1271832750207045, + "palossand": 2.0133977995982364, + "pyukumuku": 45.28674316981525, + "togedemaru": 2.2554000469321793, + "mimikyu-disguised": 5.853113083858702, + "greedent": 2.222538831065215, + "orbeetle": 2.321549156642683, + "thievul": 1.6339048043011166, + "eldegoss": 4.141811869230071, + "dubwool": 2.910738986732504, + "drednaw": 1.3875156129351947, + "boltund": 4.353304283870282, + "carkol": 2.1139891669536177, + "coalossal": 1.6607731448321248, + "sandaconda": 2.699263695341137, + "cramorant": 6.299895236986993, + "barraskewda": 4.754851971993351, + "toxtricity-amped": 2.5739493533434716, + "centiskorch": 1.806152096156873, + "grapploct": 1.4329724227710425, + "polteageist": 3.906636222347358, + "hatterene": 3.445376331293156, + "grimmsnarl": 4.677115161461259, + "obstagoon": 2.4687846311162387, + "perrserker": 2.935056934335757, + "alcremie": 2.0281154003145194, + "falinks": 2.8458835959453515, + "pincurchin": 2.644071772703886, + "frosmoth": 3.6468328763626245, + "indeedee-male": 3.9033800616902496, + "morpeko": 2.256880274568002, + "copperajah": 2.275525824607211, + "duraludon": 1.4034184833759513, + "drakloak": 5.71238319871129 }, "alcremie": { - "ivysaur": 3.6403653693871236, - "charmeleon": 3.687722532620654, - "wartortle": 3.212734560433459, - "butterfree": 5.194141790771404, - "raichu": 5.629233679869241, - "raichu-alola": 3.61728123523824, - "sandslash": 2.6482639296948394, - "sandslash-alola": 3.7951054645672846, - "nidoqueen": 2.6057911088648957, - "nidoking": 1.6988760799637685, - "clefairy": 9.927226163789843, - "clefable": 2.302776485996047, - "jigglypuff": 29.341986018486303, - "wigglytuff": 2.2649165132923166, - "gloom": 6.51472099541321, - "vileplume": 3.7459286367589644, - "dugtrio": 3.8110837819322247, - "dugtrio-alola": 3.7777015010177086, - "persian": 4.488911794124575, - "persian-alola": 6.816647977918813, - "golduck": 3.41941828252404, - "poliwrath": 2.8825580624135965, - "kadabra": 3.9010376230905512, - "machoke": 6.175004451297097, - "tentacruel": 1.9202849355914662, - "slowbro": 2.119410769884261, - "magneton": 3.9462998142058505, - "haunter": 4.29263659862409, - "kingler": 3.164380502886095, - "exeggutor": 2.3295461280279337, - "marowak": 3.406451964528991, - "marowak-alola": 1.7351433488175165, - "hitmonlee": 3.1217579388004872, - "hitmonchan": 2.912290198596284, - "lickitung": 2.1593433295925037, - "weezing": 1.5858262836571946, - "weezing-galar": 2.6381361631992863, - "rhydon": 3.6483498939158863, - "chansey": 20.45358917615167, - "tangela": 6.743801499877389, - "kangaskhan": 2.0927046095737762, - "seadra": 5.70529944147548, - "seaking": 2.4810249144717216, - "starmie": 1.6533754076852292, - "mr-mime": 6.933452488720132, - "mr-mime-galar": 4.250737423544329, - "scyther": 3.2551074528677857, - "jynx": 5.832043588959172, - "electabuzz": 2.7368579392792967, - "magmar": 1.4863329092882662, - "tauros": 2.3219110237311122, - "ditto": 1.7750287500160922, - "vaporeon": 3.4488233635889216, - "jolteon": 2.033007777961191, - "flareon": 2.0838569185694107, - "porygon": 3.1375194235772925, - "dragonair": 3.151787016005524, - "noctowl": 5.6859662152232895, - "lanturn": 2.178385735274199, - "togetic": 5.613624610210694, - "xatu": 4.2825179696798426, - "bellossom": 2.8800571527139676, - "azumarill": 2.438803649246975, - "sudowoodo": 3.065133777835598, - "politoed": 2.7592740571993453, - "quagsire": 8.097133578345055, - "slowking": 2.595392252976201, - "dunsparce": 3.6789585967191254, - "qwilfish": 2.8218399889336463, - "sneasel": 3.0746087897442576, - "piloswine": 1.8674088989592748, - "octillery": 2.6180539730481556, - "mantine": 2.43372467814487, - "skarmory": 2.7756004173955775, - "hitmontop": 3.8573275360834574, - "miltank": 3.9932241809963682, - "grovyle": 9.284473446293045, - "sceptile": 1.73754781826617, - "combusken": 3.8739084905071506, - "blaziken": 1.8110363974959292, - "marshtomp": 3.8223355410145965, - "swampert": 2.0225275089291856, - "linoone": 5.572950787211928, - "linoone-galar": 7.344296546618497, - "pelipper": 6.889477831838128, - "ninjask": 9.315973451168547, - "exploud": 1.802459709133644, - "lairon": 2.261215889337141, - "manectric": 1.9914357465879577, - "roselia": 4.490900257321872, - "sharpedo": 7.920922458499627, - "wailmer": 7.157925835810759, - "torkoal": 1.8310026056253825, - "flygon": 3.685808454529897, - "altaria": 2.464040247844895, - "whiscash": 3.26499911001768, - "crawdaunt": 3.3692674213084617, - "claydol": 3.738850208595893, - "cradily": 2.403306552234061, - "armaldo": 2.094528654078869, - "dusclops": 3.7850741759859976, - "absol": 3.0037434691629574, - "glalie": 4.775123348950712, - "sealeo": 3.602713774546734, - "relicanth": 3.2532057726498795, - "metang": 3.3521474068186867, - "luxray": 4.161230634988906, - "vespiquen": 3.325626623184558, - "cherrim": 7.0195622297453415, - "gastrodon": 3.177541854117326, - "drifblim": 4.674562954442283, - "lopunny": 3.8499987871261796, - "skuntank": 1.678366998710842, - "bronzong": 3.5656997318273076, - "munchlax": 2.0335742397430048, - "drapion": 2.779443302504416, - "abomasnow": 4.8179309161450155, - "froslass": 3.556104229178418, - "rotom": 4.278212460465359, - "stoutland": 2.536457395541671, - "liepard": 10.604565446561491, - "musharna": 1.6683469093693317, - "unfezant": 7.033584810878575, - "boldore": 4.127321642748534, - "swoobat": 6.124525632551589, - "audino": 2.547079918194344, - "gurdurr": 3.8278243471782503, - "palpitoad": 6.079275938740558, - "seismitoad": 9.41898637203062, - "scolipede": 4.094172238974219, - "whimsicott": 3.89290952715685, - "lilligant": 3.849903478637576, - "basculin-red-striped": 3.1493281616162987, - "basculin-blue-striped": 4.2995713397477, - "krookodile": 4.442273551106639, - "maractus": 2.7676453189958368, - "crustle": 2.4746576685846815, - "sigilyph": 2.518990169441728, - "cofagrigus": 3.114058165821133, - "garbodor": 1.6080697697220958, - "cinccino": 4.869296006971654, - "vanillish": 2.5981132433813214, - "emolga": 3.4116843637662315, - "escavalier": 3.2596107509452983, - "amoonguss": 2.8549057956625132, - "jellicent": 1.7130822425211665, - "galvantula": 2.029040197519927, - "klang": 3.4313865633571763, - "klinklang": 3.7726651487368263, - "beheeyem": 1.9895738528822975, - "lampent": 2.335168813923703, - "fraxure": 2.924604182809209, - "beartic": 2.1442710191412644, - "cryogonal": 1.8278421084879886, - "accelgor": 3.794727069477621, - "stunfisk": 1.446452367690406, - "stunfisk-galar": 3.0330022639486245, - "mienshao": 5.07842416981809, - "druddigon": 2.592578373087321, - "golurk": 2.1334667648914665, - "bisharp": 2.9896984345937963, - "bouffalant": 1.3784180621182198, - "heatmor": 1.7052327988076108, - "durant": 6.215429467517166, - "diggersby": 3.4784035450642876, - "talonflame": 2.54726243651281, - "pangoro": 4.1291474212592, - "doublade": 3.3541744338638564, - "malamar": 4.450625196333894, - "barbaracle": 2.2259693518365236, - "heliolisk": 4.071216320484472, - "tyrantrum": 2.7981805289429404, - "aurorus": 2.5916220788389346, - "hawlucha": 5.282932389413248, - "dedenne": 3.2718255101304576, - "klefki": 3.6749619683293275, - "trevenant": 3.625240899958176, - "gourgeist-average": 6.878747384061398, - "charjabug": 4.959009812184247, - "vikavolt": 2.3637923467522666, - "ribombee": 5.916186176417857, - "lycanroc-midday": 3.631122042668478, - "lycanroc-midnight": 2.6625904267890235, - "mudsdale": 1.8707872911534453, - "araquanid": 2.321264637720262, - "lurantis": 2.9866966595923525, - "shiinotic": 5.247615152004533, - "salazzle": 2.526697708958996, - "bewear": 2.7004467222577127, - "tsareena": 3.577127320170341, - "comfey": 4.864703738374651, - "oranguru": 2.8027629896535275, - "passimian": 3.789347691090186, - "palossand": 2.4930120363186874, - "pyukumuku": 42.66421059476181, - "togedemaru": 2.406679503710787, - "mimikyu-disguised": 4.083691333101014, - "greedent": 2.197115529352579, - "orbeetle": 2.288825739718734, - "thievul": 2.631448393482331, - "eldegoss": 4.554658356255631, - "dubwool": 3.5565994908464287, - "drednaw": 1.9169708056603447, - "boltund": 5.386684115887347, - "carkol": 2.219913831142456, - "coalossal": 1.8957656007951638, - "sandaconda": 4.126459861721363, - "cramorant": 5.55291308337544, - "barraskewda": 5.68514981984824, - "toxtricity-amped": 2.643559809741658, - "centiskorch": 1.8708628569354793, - "grapploct": 2.7023136433703634, - "polteageist": 2.745069442598868, - "hatterene": 2.709827582509386, - "grimmsnarl": 6.133868976683306, - "obstagoon": 3.8877260952030053, - "perrserker": 4.147697085236309, - "falinks": 5.050712597898996, - "pincurchin": 3.337587085789971, - "frosmoth": 4.246686948631078, - "indeedee-male": 3.3029568016172464, - "morpeko": 4.121175482445311, - "copperajah": 2.687121310194815, - "duraludon": 2.1224909421216873, - "drakloak": 7.799171628139602, - "alcremie": 1.536487720004021 + "ivysaur": 3.640185918772324, + "charmeleon": 3.689470771287791, + "wartortle": 3.2196153764393616, + "butterfree": 5.1983270457153985, + "raichu": 5.639605594081651, + "raichu-alola": 3.6187084083117185, + "sandslash": 2.65380655794963, + "sandslash-alola": 3.803243534458649, + "nidoqueen": 2.6053294181245854, + "nidoking": 1.69827518773127, + "clefairy": 9.941803079127641, + "clefable": 2.3061553732123925, + "jigglypuff": 29.377461595785682, + "wigglytuff": 2.2678856416096624, + "gloom": 6.511417081980303, + "vileplume": 3.751833645550221, + "dugtrio": 3.813929410522106, + "dugtrio-alola": 3.775978223819447, + "persian": 4.48831319735032, + "persian-alola": 6.836341069242456, + "golduck": 3.4222133828323242, + "poliwrath": 2.8886833282721542, + "kadabra": 3.8992644179250275, + "machoke": 6.192768366796541, + "tentacruel": 1.9165591008111549, + "slowbro": 2.1228381172596142, + "magneton": 3.947522527536596, + "haunter": 4.295504477161094, + "kingler": 3.1710879954854314, + "exeggutor": 2.331568082618909, + "marowak": 3.409100217380777, + "marowak-alola": 1.7324379599381206, + "hitmonlee": 3.127788712761199, + "hitmonchan": 2.9163033858011245, + "lickitung": 2.1620290500618253, + "weezing": 1.5853201628914313, + "weezing-galar": 2.6392304879651967, + "rhydon": 3.6510926272847257, + "chansey": 20.400595218857916, + "tangela": 6.753350656430243, + "kangaskhan": 2.0958292085909753, + "seadra": 5.724166433174377, + "seaking": 2.479881580771668, + "starmie": 1.655472266241647, + "mr-mime": 6.936953857867104, + "mr-mime-galar": 4.255299997407002, + "scyther": 3.258623897394392, + "jynx": 5.839764475138045, + "electabuzz": 2.738999527038387, + "magmar": 1.4847915571995332, + "tauros": 2.3251638267554258, + "ditto": 1.7684801123154017, + "vaporeon": 3.4529601692168415, + "jolteon": 2.034889537189533, + "flareon": 2.079735162004003, + "porygon": 3.141925767778777, + "dragonair": 3.1631871332313652, + "noctowl": 5.682797719192383, + "lanturn": 2.182590138472469, + "togetic": 5.616643748497428, + "xatu": 4.28659284893781, + "bellossom": 2.8848325232281495, + "azumarill": 2.4344709399643403, + "sudowoodo": 3.069962504879678, + "politoed": 2.7615738951924085, + "quagsire": 8.124611874432663, + "slowking": 2.5960277516007206, + "dunsparce": 3.6841637173480333, + "qwilfish": 2.814756028859387, + "sneasel": 3.081170956393467, + "piloswine": 1.8713704604919048, + "octillery": 2.6201341237230134, + "mantine": 2.434316028395453, + "skarmory": 2.777831430000569, + "hitmontop": 3.865036719095218, + "miltank": 3.9944865288186153, + "grovyle": 9.298766407588829, + "sceptile": 1.7409159057082018, + "combusken": 3.879974337711749, + "blaziken": 1.812492909027024, + "marshtomp": 3.828886029601235, + "swampert": 2.028215646516374, + "linoone": 5.574688440487542, + "linoone-galar": 7.3660227666312075, + "pelipper": 6.891859208667378, + "ninjask": 9.333681768682485, + "exploud": 1.8048822603182, + "lairon": 2.257789332540851, + "manectric": 1.9945209269497615, + "roselia": 4.492765331352011, + "sharpedo": 7.94580908959545, + "wailmer": 7.161616942190992, + "torkoal": 1.8313423774821114, + "flygon": 3.693996565341218, + "altaria": 2.470950057003182, + "whiscash": 3.2705898951249908, + "crawdaunt": 3.3789136898706804, + "claydol": 3.7445890048046278, + "cradily": 2.404318694739051, + "armaldo": 2.0972680571425566, + "dusclops": 3.791303473367428, + "absol": 3.0108161609595827, + "glalie": 4.778303107605429, + "sealeo": 3.6069650093506693, + "relicanth": 3.2602806345132938, + "metang": 3.3487450683752926, + "luxray": 4.164033390600111, + "vespiquen": 3.3305853897115947, + "cherrim": 7.0295640960357275, + "gastrodon": 3.182026975878324, + "drifblim": 4.679191978607827, + "lopunny": 3.8510143992525023, + "skuntank": 1.6812898397519511, + "bronzong": 3.56282574656841, + "munchlax": 2.029207145323018, + "drapion": 2.7821715871039014, + "abomasnow": 4.822689434022799, + "froslass": 3.563087148487572, + "rotom": 4.288302753697464, + "stoutland": 2.5356222548652556, + "liepard": 10.628068671890704, + "musharna": 1.669688187236143, + "unfezant": 7.0373932676656725, + "boldore": 4.135286263024714, + "swoobat": 6.1302330683467545, + "audino": 2.550159947949143, + "gurdurr": 3.8404640122156017, + "palpitoad": 6.094604470501127, + "seismitoad": 9.422776586559063, + "scolipede": 4.098688851017919, + "whimsicott": 3.8993324945249896, + "lilligant": 3.8585092753031303, + "basculin-red-striped": 3.151335099582343, + "basculin-blue-striped": 4.3071263849357, + "krookodile": 4.457586986120682, + "maractus": 2.7736402166261116, + "crustle": 2.4799132422005306, + "sigilyph": 2.5197100016925082, + "cofagrigus": 3.1211115143736814, + "garbodor": 1.6037098326226231, + "cinccino": 4.869679389091632, + "vanillish": 2.6020906344134476, + "emolga": 3.4151273070124626, + "escavalier": 3.265748314863549, + "amoonguss": 2.8528385384144093, + "jellicent": 1.7156979859060608, + "galvantula": 2.033914560142115, + "klang": 3.4340636057283884, + "klinklang": 3.7661957743974375, + "beheeyem": 1.9921490899319083, + "lampent": 2.333204627392197, + "fraxure": 2.9362116885348843, + "beartic": 2.148658108095096, + "cryogonal": 1.8287375879116805, + "accelgor": 3.8019261973634952, + "stunfisk": 1.449090582510542, + "stunfisk-galar": 3.0402991792980707, + "mienshao": 5.089211960743061, + "druddigon": 2.59347638783186, + "golurk": 2.1382071322967686, + "bisharp": 2.9921329923659705, + "bouffalant": 1.3770542191319795, + "heatmor": 1.702809247131941, + "durant": 6.223905101510477, + "diggersby": 3.481118596475155, + "talonflame": 2.5435246565328473, + "pangoro": 4.142441110644876, + "doublade": 3.356461302002412, + "malamar": 4.4623589032674165, + "barbaracle": 2.2260622329817648, + "heliolisk": 4.076834761647218, + "tyrantrum": 2.805845164841544, + "aurorus": 2.592439010833517, + "hawlucha": 5.290115402865999, + "dedenne": 3.276799776662208, + "klefki": 3.675595096327902, + "trevenant": 3.6310943369837574, + "gourgeist-average": 6.8929617779252865, + "charjabug": 4.964619558019949, + "vikavolt": 2.368510577410312, + "ribombee": 5.931519111656367, + "lycanroc-midday": 3.6331128530304326, + "lycanroc-midnight": 2.6661488288043937, + "mudsdale": 1.875681095968974, + "araquanid": 2.320784872488035, + "lurantis": 2.9920031588381795, + "shiinotic": 5.254920191819568, + "salazzle": 2.5197320736898035, + "bewear": 2.703577375303376, + "tsareena": 3.579115724612773, + "comfey": 4.871982381314265, + "oranguru": 2.803621854022566, + "passimian": 3.799563385404025, + "palossand": 2.500259518928021, + "pyukumuku": 42.65654630640067, + "togedemaru": 2.400724800059958, + "mimikyu-disguised": 4.084529927841558, + "greedent": 2.195235190235981, + "orbeetle": 2.2926909239254663, + "thievul": 2.6387592378975966, + "eldegoss": 4.56034389195609, + "dubwool": 3.560912304346263, + "drednaw": 1.918302772292299, + "boltund": 5.396909500539449, + "carkol": 2.2178005645363736, + "coalossal": 1.8954965894306501, + "sandaconda": 4.142535712377851, + "cramorant": 5.553000496206623, + "barraskewda": 5.699583602911412, + "toxtricity-amped": 2.6433851095294845, + "centiskorch": 1.8688453030899754, + "grapploct": 2.711807152522728, + "polteageist": 2.747865269011063, + "hatterene": 2.7121910685235244, + "grimmsnarl": 6.156766194727635, + "obstagoon": 3.8952033977394427, + "perrserker": 4.1490927608078305, + "alcremie": 1.536487720004021, + "falinks": 5.060672565644815, + "pincurchin": 3.3432376191082804, + "frosmoth": 4.255793676915729, + "indeedee-male": 3.304826728627117, + "morpeko": 4.129486596699094, + "copperajah": 2.6850073441072957, + "duraludon": 2.1248008746971676, + "drakloak": 7.8274504820198505 }, "falinks": { - "ivysaur": 2.8721267591782924, - "charmeleon": 3.624017452702013, - "wartortle": 2.494163584446202, - "butterfree": 4.288919736142067, - "raichu": 4.909534475033453, - "raichu-alola": 3.86396874322441, - "sandslash": 2.0283060206340027, - "sandslash-alola": 3.2002152878995167, - "nidoqueen": 2.346862991579626, - "nidoking": 1.6889729066231447, - "clefairy": 10.40806433555275, - "clefable": 1.803656156185131, - "jigglypuff": 25.369716044230238, - "wigglytuff": 1.731996251331374, - "gloom": 4.525206682769222, - "vileplume": 2.7418570837741583, - "dugtrio": 3.93076529047073, - "dugtrio-alola": 4.650144171284385, - "persian": 5.164368449914107, - "persian-alola": 5.806109618925675, - "golduck": 2.9197203335665356, - "poliwrath": 1.8529224386917478, - "kadabra": 4.136247682390795, - "machoke": 3.938221976716843, - "tentacruel": 1.9529543757246783, - "slowbro": 1.6464066137843696, - "magneton": 3.517295126499051, - "haunter": 3.747619849935713, - "kingler": 2.203491369270683, - "exeggutor": 2.8126632662386157, - "marowak": 2.967479598666026, - "marowak-alola": 1.579030971904471, - "hitmonlee": 2.5872531605065507, - "hitmonchan": 2.2058612010160967, - "lickitung": 2.2304963968164904, - "weezing": 1.2759052815464034, - "weezing-galar": 2.3153341086390453, - "rhydon": 2.4379008971013203, - "chansey": 37.57019730803442, - "tangela": 4.90650662784557, - "kangaskhan": 2.3767826374799195, - "seadra": 3.45453801964699, - "seaking": 2.408836440245257, - "starmie": 1.4714135038800973, - "mr-mime": 6.552194138001363, - "mr-mime-galar": 3.799005560664312, - "scyther": 2.453175044725504, - "jynx": 5.243301814855564, - "electabuzz": 2.4303872494697334, - "magmar": 1.6105859501586044, - "tauros": 2.4510800431464195, - "ditto": 3.4187687278791277, - "vaporeon": 3.0733310241547604, - "jolteon": 1.861634482045198, - "flareon": 2.3273388869533096, - "porygon": 3.41381417729784, - "dragonair": 1.786293602546825, - "noctowl": 5.482956736531056, - "lanturn": 1.8263812331286495, - "togetic": 5.727843256293434, - "xatu": 2.778921119547247, - "bellossom": 2.1977898306283445, - "azumarill": 1.8737523447517912, - "sudowoodo": 2.966059758503345, - "politoed": 2.49216013874476, - "quagsire": 4.0967971334417035, - "slowking": 2.8040396550744746, - "dunsparce": 3.8667009837159325, - "qwilfish": 2.7424609537695, - "sneasel": 4.254351851280381, - "piloswine": 1.8270580060968447, - "octillery": 2.208683104033066, - "mantine": 1.8483382039899319, - "skarmory": 1.786683213693622, - "hitmontop": 2.690741189531567, - "miltank": 3.95298976739347, - "grovyle": 9.552217424422755, - "sceptile": 1.7221719035614813, - "combusken": 3.1247239819233714, - "blaziken": 1.5669400263086812, - "marshtomp": 2.4054626856469805, - "swampert": 1.1500485080952039, - "linoone": 6.6992529305941275, - "linoone-galar": 8.728790430966459, - "pelipper": 4.508129413085255, - "ninjask": 7.397499118437338, - "exploud": 1.9411820111226838, - "lairon": 3.50305769900802, - "manectric": 1.6025319914289609, - "roselia": 3.5044439393830427, - "sharpedo": 6.587042422313207, - "wailmer": 5.960172114774931, - "torkoal": 1.5546429267229016, - "flygon": 2.3314925549991745, - "altaria": 1.2453865036025733, - "whiscash": 1.7957186175758275, - "crawdaunt": 2.2770606902637875, - "claydol": 3.456986355370866, - "cradily": 2.7602002673295747, - "armaldo": 2.143865162681294, - "dusclops": 3.037161606747409, - "absol": 2.4587415132275274, - "glalie": 5.2998173083988735, - "sealeo": 3.7617496771613474, - "relicanth": 2.1529838125941834, - "metang": 2.6185614691268873, - "luxray": 3.567481522232013, - "vespiquen": 2.4656903268221897, - "cherrim": 6.542387551330178, - "gastrodon": 2.2430082174555652, - "drifblim": 3.3070904479538212, - "lopunny": 4.590977796276048, - "skuntank": 1.4174611138182112, - "bronzong": 2.7966644352286263, - "munchlax": 3.2808405257784323, - "drapion": 2.381598441709328, - "abomasnow": 3.871584276139722, - "froslass": 3.170634192351555, - "rotom": 2.688307146855851, - "stoutland": 2.99437627843933, - "liepard": 8.682671893211264, - "musharna": 1.5398207203523697, - "unfezant": 5.178073014847955, - "boldore": 3.55714250112314, - "swoobat": 3.9748923140127497, - "audino": 2.496037746533844, - "gurdurr": 2.0531119619353126, - "palpitoad": 3.4413075447334536, - "seismitoad": 5.73018896073663, - "scolipede": 3.0357187960052174, - "whimsicott": 3.0217773878973277, - "lilligant": 3.494567977551535, - "basculin-red-striped": 2.6213879186412896, - "basculin-blue-striped": 3.4815876835786552, - "krookodile": 3.519518884416541, - "maractus": 2.5304645351839614, - "crustle": 2.261564018916493, - "sigilyph": 1.756217735539357, - "cofagrigus": 1.9144989464072548, - "garbodor": 1.6583646413212845, - "cinccino": 5.682925378559645, - "vanillish": 2.5079398601458767, - "emolga": 2.2768412199563546, - "escavalier": 1.842062539264254, - "amoonguss": 2.2528902912613953, - "jellicent": 1.0318140287956101, - "galvantula": 1.4293950197087792, - "klang": 3.345088752334667, - "klinklang": 4.071162407137754, - "beheeyem": 2.0231765986796204, - "lampent": 1.834706020839843, - "fraxure": 1.483001019905322, - "beartic": 2.0120545113855783, - "cryogonal": 2.3398970698946817, - "accelgor": 3.146767734061404, - "stunfisk": 1.2018338395682493, - "stunfisk-galar": 2.790734474359643, - "mienshao": 3.3002187513734302, - "druddigon": 1.7734385094873342, - "golurk": 1.6753207750536907, - "bisharp": 4.055135261006819, - "bouffalant": 1.7014233304929158, - "heatmor": 1.785813337686573, - "durant": 2.7285146949150505, - "diggersby": 4.108555138684043, - "talonflame": 2.1405001147408758, - "pangoro": 2.2535326360696883, - "doublade": 1.621974447927252, - "malamar": 4.134577164718267, - "barbaracle": 1.684258299765442, - "heliolisk": 4.758889118637481, - "tyrantrum": 1.7768090782793708, - "aurorus": 4.154312179773904, - "hawlucha": 3.2419561077465846, - "dedenne": 2.0228067003322527, - "klefki": 2.674263410480041, - "trevenant": 2.8695912556948704, - "gourgeist-average": 4.452364565419747, - "charjabug": 3.6829744239030733, - "vikavolt": 1.7170976615655875, - "ribombee": 4.971745049098027, - "lycanroc-midday": 4.371392672241271, - "lycanroc-midnight": 3.099653623742629, - "mudsdale": 1.547090121887254, - "araquanid": 2.4026399133856158, - "lurantis": 2.7483039144344854, - "shiinotic": 4.178211349157273, - "salazzle": 2.5863191052097614, - "bewear": 2.1401462464297865, - "tsareena": 3.504589683600466, - "comfey": 4.493076933993507, - "oranguru": 2.661015231748926, - "passimian": 2.133196813351568, - "palossand": 1.6301796895359388, - "pyukumuku": 41.14896020806745, - "togedemaru": 2.904383793808777, - "mimikyu-disguised": 4.944720446224602, - "greedent": 2.45343119004641, - "orbeetle": 1.908545880025899, - "thievul": 2.524088550983503, - "eldegoss": 4.5091648637938455, - "dubwool": 3.6260312219851887, - "drednaw": 1.6013567102317008, - "boltund": 4.600637997399264, - "carkol": 2.8527980520508, - "coalossal": 2.2000848986354162, - "sandaconda": 2.8345756450788713, - "cramorant": 4.950686781217831, - "barraskewda": 4.550863102823551, - "toxtricity-amped": 2.0062785183566922, - "centiskorch": 1.669832129276104, - "grapploct": 1.5570790902116562, - "polteageist": 2.3620226249291023, - "hatterene": 2.3355755459175427, - "grimmsnarl": 4.632727730912029, - "obstagoon": 4.290956941996523, - "perrserker": 3.822504857796735, - "alcremie": 1.3900607285929727, - "pincurchin": 2.693920699734306, - "frosmoth": 2.922903680229547, - "indeedee-male": 3.546674118161406, - "morpeko": 3.4465437093262845, - "copperajah": 2.9931820574191477, - "duraludon": 1.7063874241863994, - "drakloak": 4.056202313257028, - "falinks": 2.9496362470695434 + "ivysaur": 2.869064469927897, + "charmeleon": 3.619575741784365, + "wartortle": 2.4921368961233776, + "butterfree": 4.283671199673359, + "raichu": 4.9081454482165565, + "raichu-alola": 3.8554734960622876, + "sandslash": 2.0296432233243724, + "sandslash-alola": 3.2078213872435466, + "nidoqueen": 2.342344310081418, + "nidoking": 1.6886957241822396, + "clefairy": 10.40647391744936, + "clefable": 1.8011584737379296, + "jigglypuff": 25.29818500893279, + "wigglytuff": 1.7279192625959823, + "gloom": 4.510568962409848, + "vileplume": 2.7408902388511303, + "dugtrio": 3.93770450738434, + "dugtrio-alola": 4.659420062948368, + "persian": 5.166181963920631, + "persian-alola": 5.827423632381101, + "golduck": 2.9188718390205013, + "poliwrath": 1.8528377593833678, + "kadabra": 4.129233675244976, + "machoke": 3.943449740941894, + "tentacruel": 1.9502420124834428, + "slowbro": 1.640878253177843, + "magneton": 3.514348969185445, + "haunter": 3.7363723898128116, + "kingler": 2.2025580349756195, + "exeggutor": 2.8128750678837573, + "marowak": 2.970146510431105, + "marowak-alola": 1.57574301812947, + "hitmonlee": 2.590949574194502, + "hitmonchan": 2.207925930117403, + "lickitung": 2.230818223466647, + "weezing": 1.273328487882583, + "weezing-galar": 2.307520904951294, + "rhydon": 2.4398377977811236, + "chansey": 37.602380407785446, + "tangela": 4.906530076977752, + "kangaskhan": 2.381549593892539, + "seadra": 3.4466853139648332, + "seaking": 2.4097206825614323, + "starmie": 1.469489288682194, + "mr-mime": 6.527618460184685, + "mr-mime-galar": 3.7926037440885407, + "scyther": 2.4500521492977687, + "jynx": 5.245794524567404, + "electabuzz": 2.4285801632944617, + "magmar": 1.6088988819310766, + "tauros": 2.455522540287717, + "ditto": 3.3919506126987446, + "vaporeon": 3.071970712750992, + "jolteon": 1.860701805870724, + "flareon": 2.325975585509112, + "porygon": 3.4164676998860015, + "dragonair": 1.786780519894133, + "noctowl": 5.4757965555628, + "lanturn": 1.825638161504357, + "togetic": 5.719696464264467, + "xatu": 2.7646291667058787, + "bellossom": 2.1958090741358807, + "azumarill": 1.8726378350778803, + "sudowoodo": 2.972770358317086, + "politoed": 2.492056208146071, + "quagsire": 4.091789399165898, + "slowking": 2.8009437670448283, + "dunsparce": 3.869439935582296, + "qwilfish": 2.738712316049278, + "sneasel": 4.274411574728804, + "piloswine": 1.8307456589536808, + "octillery": 2.207627171553436, + "mantine": 1.8430928614961914, + "skarmory": 1.7855740446284516, + "hitmontop": 2.6928107962050825, + "miltank": 3.9527019241571217, + "grovyle": 9.562117594303619, + "sceptile": 1.723929902477467, + "combusken": 3.1213286938417553, + "blaziken": 1.566255104935577, + "marshtomp": 2.4060512859306478, + "swampert": 1.1492014854172048, + "linoone": 6.712567237153296, + "linoone-galar": 8.76735489635093, + "pelipper": 4.493105356865554, + "ninjask": 7.399781832023884, + "exploud": 1.9415899084845472, + "lairon": 3.5098772545302586, + "manectric": 1.600948456977992, + "roselia": 3.4977711744711337, + "sharpedo": 6.606196463246235, + "wailmer": 5.954491626348206, + "torkoal": 1.5519870105852747, + "flygon": 2.3331782363755527, + "altaria": 1.242118961744168, + "whiscash": 1.7929168686071315, + "crawdaunt": 2.281009042865721, + "claydol": 3.4499568464103847, + "cradily": 2.766691110477683, + "armaldo": 2.1492027531101825, + "dusclops": 3.033656850006495, + "absol": 2.4653610363378644, + "glalie": 5.3143094574643355, + "sealeo": 3.7637292402870655, + "relicanth": 2.1557579889812652, + "metang": 2.6167458551323577, + "luxray": 3.5652470577123223, + "vespiquen": 2.4626593577912077, + "cherrim": 6.542593778284137, + "gastrodon": 2.2459728037440687, + "drifblim": 3.291568686434016, + "lopunny": 4.5964210180164695, + "skuntank": 1.4201869169583756, + "bronzong": 2.794018274504908, + "munchlax": 3.289293501001864, + "drapion": 2.386521609114448, + "abomasnow": 3.8798502053119064, + "froslass": 3.1679908518240385, + "rotom": 2.680371536988901, + "stoutland": 2.997274649065404, + "liepard": 8.702098661927131, + "musharna": 1.5357851452793694, + "unfezant": 5.166090125545306, + "boldore": 3.563178152682535, + "swoobat": 3.954442855920396, + "audino": 2.4947684659631633, + "gurdurr": 2.053002950247312, + "palpitoad": 3.4378178543961204, + "seismitoad": 5.720669940656675, + "scolipede": 3.0369919255923303, + "whimsicott": 3.0161037496421343, + "lilligant": 3.497212392724219, + "basculin-red-striped": 2.620421063999861, + "basculin-blue-striped": 3.4821780395927755, + "krookodile": 3.5291688128407177, + "maractus": 2.53266722207515, + "crustle": 2.2662577141198286, + "sigilyph": 1.7483042957739365, + "cofagrigus": 1.9060673226632812, + "garbodor": 1.656951569925173, + "cinccino": 5.689578424321038, + "vanillish": 2.5098425174143344, + "emolga": 2.271017929465559, + "escavalier": 1.8435934600825616, + "amoonguss": 2.2498487293715934, + "jellicent": 1.028327561808692, + "galvantula": 1.4277604759036846, + "klang": 3.34643412533272, + "klinklang": 4.074964057764013, + "beheeyem": 2.0213294860301283, + "lampent": 1.8297079198026736, + "fraxure": 1.483996021922286, + "beartic": 2.0142806379970173, + "cryogonal": 2.3443634009531498, + "accelgor": 3.1490111065828694, + "stunfisk": 1.2008284555720228, + "stunfisk-galar": 2.792917424117134, + "mienshao": 3.301133374923606, + "druddigon": 1.7750909402229182, + "golurk": 1.6733776928821853, + "bisharp": 4.064023597081247, + "bouffalant": 1.7056994700032881, + "heatmor": 1.7849216638045164, + "durant": 2.728146906518747, + "diggersby": 4.117459446092475, + "talonflame": 2.1326530815118394, + "pangoro": 2.259151300269512, + "doublade": 1.6168514497056226, + "malamar": 4.136084213510601, + "barbaracle": 1.6852486685073975, + "heliolisk": 4.761416535799736, + "tyrantrum": 1.7799424684132485, + "aurorus": 4.1682972733655514, + "hawlucha": 3.2410753275138457, + "dedenne": 2.0172842074573945, + "klefki": 2.670662806305671, + "trevenant": 2.86920151777949, + "gourgeist-average": 4.446112816630422, + "charjabug": 3.6819673345612545, + "vikavolt": 1.716980667962082, + "ribombee": 4.964405436221555, + "lycanroc-midday": 4.386347828157961, + "lycanroc-midnight": 3.1105613884597014, + "mudsdale": 1.5489362461344929, + "araquanid": 2.405044489072456, + "lurantis": 2.7499379783019977, + "shiinotic": 4.165691639557298, + "salazzle": 2.580479821770855, + "bewear": 2.142011138840349, + "tsareena": 3.5068517261068433, + "comfey": 4.483373177063779, + "oranguru": 2.653890671996185, + "passimian": 2.132728389611177, + "palossand": 1.6255765818160146, + "pyukumuku": 41.145563063374595, + "togedemaru": 2.90729956036882, + "mimikyu-disguised": 4.945407156623389, + "greedent": 2.4542511276535532, + "orbeetle": 1.9016591087303407, + "thievul": 2.5334418447357336, + "eldegoss": 4.510332477102322, + "dubwool": 3.6311511990767658, + "drednaw": 1.6043734874598932, + "boltund": 4.602860862220077, + "carkol": 2.8539868456054087, + "coalossal": 2.2000932987244917, + "sandaconda": 2.834312808444176, + "cramorant": 4.951840327179619, + "barraskewda": 4.554178772035183, + "toxtricity-amped": 2.000663316563818, + "centiskorch": 1.6666811029208177, + "grapploct": 1.5565125490939158, + "polteageist": 2.356650756440546, + "hatterene": 2.3280548908435987, + "grimmsnarl": 4.644624486625389, + "obstagoon": 4.303897254358294, + "perrserker": 3.826979115434878, + "alcremie": 1.3882906208569517, + "falinks": 2.9496362470695434, + "pincurchin": 2.6907643986101166, + "frosmoth": 2.919120160677548, + "indeedee-male": 3.5430837872430194, + "morpeko": 3.453990930843052, + "copperajah": 2.995616074574003, + "duraludon": 1.7066847340256681, + "drakloak": 4.051624730730694 }, "pincurchin": { - "ivysaur": 2.5928521451296636, - "charmeleon": 4.369317691897322, - "wartortle": 3.682818763906395, - "butterfree": 5.404758869753095, - "raichu": 4.690954535708352, - "raichu-alola": 3.094611068445534, - "sandslash": 2.6268810947229326, - "sandslash-alola": 2.212134875894771, - "nidoqueen": 2.9328170128137723, - "nidoking": 2.049101143890448, - "clefairy": 8.907339792500341, - "clefable": 1.9844817757360187, - "jigglypuff": 26.280269625978704, - "wigglytuff": 1.9690341647594964, - "gloom": 4.670231251704246, - "vileplume": 2.450116434848513, - "dugtrio": 3.708250232218531, - "dugtrio-alola": 3.759233821244224, - "persian": 4.249183733466416, - "persian-alola": 4.187001573504398, - "golduck": 4.138340740627874, - "poliwrath": 2.6373219830788504, - "kadabra": 3.5259707624546746, - "machoke": 4.0613227103443945, - "tentacruel": 2.803158834583722, - "slowbro": 2.5091502735532902, - "magneton": 3.2394603190160973, - "haunter": 4.423454602825175, - "kingler": 3.8614338592971498, - "exeggutor": 1.6086389439291473, - "marowak": 3.5496829765131404, - "marowak-alola": 2.6014065007855844, - "hitmonlee": 2.2131804619602518, - "hitmonchan": 2.1336748618301016, - "lickitung": 1.9305437433899444, - "weezing": 1.7037637533182446, - "weezing-galar": 2.8390063815372146, - "rhydon": 3.9419557499456737, - "chansey": 18.746855875274182, - "tangela": 4.53526730134243, - "kangaskhan": 1.8149557074957445, - "seadra": 6.4991857008748175, - "seaking": 3.120729503215457, - "starmie": 1.9105062465888714, - "mr-mime": 6.2067196016452915, - "mr-mime-galar": 3.4682650678039755, - "scyther": 3.695886155964267, - "jynx": 3.8685789491835045, - "electabuzz": 2.428641537745297, - "magmar": 1.7795512016620005, - "tauros": 2.055956706053322, - "ditto": 2.837030726162098, - "vaporeon": 3.9167679102828243, - "jolteon": 1.6982270701530675, - "flareon": 2.4161439542728598, - "porygon": 2.8188077419028534, - "dragonair": 1.5649289052328206, - "noctowl": 7.059248133076652, - "lanturn": 1.4978035282436828, - "togetic": 6.900149090526112, - "xatu": 5.292326078155378, - "bellossom": 1.9406090393988311, - "azumarill": 3.365935889618623, - "sudowoodo": 3.049869607710882, - "politoed": 3.058522835278016, - "quagsire": 4.310360970006658, - "slowking": 3.071433472059681, - "dunsparce": 3.3942948875619905, - "qwilfish": 5.214815244742486, - "sneasel": 2.1996873550566964, - "piloswine": 1.873111598962808, - "octillery": 3.2554959547826097, - "mantine": 4.281352242551625, - "skarmory": 3.572698129444134, - "hitmontop": 2.5493489432931327, - "miltank": 3.8443621517381033, - "grovyle": 6.5104889365929015, - "sceptile": 1.1803413023995954, - "combusken": 3.830321394554125, - "blaziken": 1.8710678811359631, - "marshtomp": 2.183172751535363, - "swampert": 1.0817600928585285, - "linoone": 5.244721805205731, - "linoone-galar": 4.64550823974246, - "pelipper": 14.004590360743748, - "ninjask": 9.52160386991056, - "exploud": 1.5812563671471973, - "lairon": 3.332331693895357, - "manectric": 1.6321131735284387, - "roselia": 3.1603372310774605, - "sharpedo": 6.8102770461265605, - "wailmer": 9.304500208937467, - "torkoal": 2.389143688835624, - "flygon": 2.1370843285709853, - "altaria": 1.556492731243544, - "whiscash": 1.87588057445483, - "crawdaunt": 2.919326959733544, - "claydol": 3.630168498454685, - "cradily": 2.024020879373299, - "armaldo": 2.1147282499178877, - "dusclops": 3.422871345121311, - "absol": 1.9951287906272157, - "glalie": 4.256754105436415, - "sealeo": 4.195656974445761, - "relicanth": 2.8281928957212594, - "metang": 3.255632406166723, - "luxray": 3.640116836296408, - "vespiquen": 3.7121643566517575, - "cherrim": 4.812092031143756, - "gastrodon": 1.9315078700009618, - "drifblim": 5.859672167837625, - "lopunny": 3.7091298181426327, - "skuntank": 1.5024453536441031, - "bronzong": 3.3224707556461173, - "munchlax": 2.1137589318605863, - "drapion": 2.6874251439459087, - "abomasnow": 2.715966737304069, - "froslass": 2.92898332857982, - "rotom": 3.4614283451926697, - "stoutland": 2.420324668662769, - "liepard": 7.146289815098767, - "musharna": 1.5148806959682204, - "unfezant": 10.046602317062561, - "boldore": 4.128307793104538, - "swoobat": 7.577262938707312, - "audino": 2.2097785343757903, - "gurdurr": 2.3367236805311737, - "palpitoad": 3.2636907289808796, - "seismitoad": 5.676790015578325, - "scolipede": 3.3816627506120476, - "whimsicott": 2.7279981042009793, - "lilligant": 2.548469188214557, - "basculin-red-striped": 3.9896844773614633, - "basculin-blue-striped": 5.13110106033187, - "krookodile": 3.0787774066170766, - "maractus": 1.8467176936872292, - "crustle": 2.5654228182042695, - "sigilyph": 3.2586405549096824, - "cofagrigus": 2.7418816117425147, - "garbodor": 1.8821648426095912, - "cinccino": 4.620883098321283, - "vanillish": 2.092520243091424, - "emolga": 3.41388785136649, - "escavalier": 1.7592222307195295, - "amoonguss": 2.0762671560267973, - "jellicent": 1.9749513209958196, - "galvantula": 1.5438773163992954, - "klang": 3.0504165620812964, - "klinklang": 3.7787529303366454, - "beheeyem": 1.7458193365504855, - "lampent": 2.9439588910237258, - "fraxure": 1.341025008593835, - "beartic": 1.7276967762670914, - "cryogonal": 1.532355431561051, - "accelgor": 2.887329547082385, - "stunfisk": 1.3782132817790833, - "stunfisk-galar": 2.512212094169844, - "mienshao": 3.42068256850981, - "druddigon": 1.5567390982961782, - "golurk": 2.076586851870322, - "bisharp": 2.592201394936582, - "bouffalant": 1.341337223855361, - "heatmor": 2.1993343808700225, - "durant": 3.621085919592826, - "diggersby": 3.3582708055590222, - "talonflame": 4.19904762938437, - "pangoro": 1.8322652300781908, - "doublade": 3.068429169289428, - "malamar": 2.9662714871606273, - "barbaracle": 2.023513297206766, - "heliolisk": 2.876579971586824, - "tyrantrum": 1.5515162173623156, - "aurorus": 2.64339310433285, - "hawlucha": 4.922092935928717, - "dedenne": 2.622604008101904, - "klefki": 3.3156675450437216, - "trevenant": 2.502302307811176, - "gourgeist-average": 4.4878212629610665, - "charjabug": 3.7302941495492057, - "vikavolt": 1.6756781236452034, - "ribombee": 4.559541006241235, - "lycanroc-midday": 3.790378169277318, - "lycanroc-midnight": 2.676958653424234, - "mudsdale": 1.784634955403077, - "araquanid": 2.9969126471068925, - "lurantis": 2.010884020818831, - "shiinotic": 3.605563681787637, - "salazzle": 3.639530543323639, - "bewear": 1.856160975894499, - "tsareena": 2.7163192682777852, - "comfey": 4.347778492253926, - "oranguru": 2.565282724113233, - "passimian": 2.556709438632189, - "palossand": 2.292113469331831, - "pyukumuku": 55.94928875517156, - "togedemaru": 2.1557973663081627, - "mimikyu-disguised": 3.9320557421056472, - "greedent": 2.2777631985980618, - "orbeetle": 1.7783761020605844, - "thievul": 1.7111977141858403, - "eldegoss": 3.187408390379397, - "dubwool": 3.0196453161084165, - "drednaw": 1.783248363112363, - "boltund": 4.472655206171862, - "carkol": 3.8542191786965123, - "coalossal": 3.148186749304066, - "sandaconda": 3.6557442204760733, - "cramorant": 9.594012422625578, - "barraskewda": 6.542842732771746, - "toxtricity-amped": 2.4492153839206257, - "centiskorch": 2.116374303289924, - "grapploct": 1.725947978600098, - "polteageist": 2.493241514371846, - "hatterene": 2.4945264179431166, - "grimmsnarl": 3.804655880896365, - "obstagoon": 2.6780278031180256, - "perrserker": 3.768290275923559, - "alcremie": 1.3468392205184987, - "falinks": 3.4743122263532302, - "frosmoth": 2.5485441314028194, - "indeedee-male": 2.965301787815125, - "morpeko": 2.6358436356920905, - "copperajah": 2.5926392807202676, - "duraludon": 1.4689335905837049, - "drakloak": 3.7142166063320015, - "pincurchin": 2.820824074061627 + "ivysaur": 2.5861558198669368, + "charmeleon": 4.369411495918956, + "wartortle": 3.682772109616855, + "butterfree": 5.400507564941482, + "raichu": 4.681949863572447, + "raichu-alola": 3.0890876535577956, + "sandslash": 2.6235060052947192, + "sandslash-alola": 2.2118951363703725, + "nidoqueen": 2.9256771084923736, + "nidoking": 2.0463952519471684, + "clefairy": 8.900315471256238, + "clefable": 1.9830041365045683, + "jigglypuff": 26.25196277327892, + "wigglytuff": 1.9668528321293905, + "gloom": 4.657933797339108, + "vileplume": 2.4442100730764436, + "dugtrio": 3.6974748591444815, + "dugtrio-alola": 3.7540716885690433, + "persian": 4.243540988214241, + "persian-alola": 4.182901543142311, + "golduck": 4.137582163033029, + "poliwrath": 2.6360327052455506, + "kadabra": 3.518569407757922, + "machoke": 4.060536182417754, + "tentacruel": 2.801364278062853, + "slowbro": 2.509101980730141, + "magneton": 3.241550386648175, + "haunter": 4.420606225336924, + "kingler": 3.8624334383151426, + "exeggutor": 1.6036575198322005, + "marowak": 3.544830714837014, + "marowak-alola": 2.605353191719436, + "hitmonlee": 2.2107195128776693, + "hitmonchan": 2.133000599332061, + "lickitung": 1.9291829127399889, + "weezing": 1.7029958468798991, + "weezing-galar": 2.838544985103473, + "rhydon": 3.942046133162905, + "chansey": 18.66578293072488, + "tangela": 4.528311737681002, + "kangaskhan": 1.8123261819433094, + "seadra": 6.499747562433502, + "seaking": 3.1192780975040413, + "starmie": 1.9103280225345847, + "mr-mime": 6.195770495879545, + "mr-mime-galar": 3.461978361595799, + "scyther": 3.6990353684811814, + "jynx": 3.8550711108898357, + "electabuzz": 2.426758665126636, + "magmar": 1.7787635136969877, + "tauros": 2.0536751084850127, + "ditto": 2.819629185912836, + "vaporeon": 3.9115989179210655, + "jolteon": 1.6940662214524542, + "flareon": 2.4146468977597317, + "porygon": 2.816404650978252, + "dragonair": 1.561858725995863, + "noctowl": 7.060944491995528, + "lanturn": 1.491613046341612, + "togetic": 6.903039808029321, + "xatu": 5.296990047072567, + "bellossom": 1.936012325947725, + "azumarill": 3.370422011037154, + "sudowoodo": 3.0499960003877598, + "politoed": 3.0539210889626904, + "quagsire": 4.301436473301758, + "slowking": 3.0699268755200664, + "dunsparce": 3.393258396509993, + "qwilfish": 5.21862199096096, + "sneasel": 2.1965382754164917, + "piloswine": 1.8721427205283572, + "octillery": 3.256493713160914, + "mantine": 4.286122051103009, + "skarmory": 3.582337068402224, + "hitmontop": 2.5456493182724405, + "miltank": 3.8422877493516934, + "grovyle": 6.494332894286757, + "sceptile": 1.1773860233711662, + "combusken": 3.831805782842831, + "blaziken": 1.872085272560498, + "marshtomp": 2.177168580716341, + "swampert": 1.0780374797620857, + "linoone": 5.239488633902252, + "linoone-galar": 4.640480672884985, + "pelipper": 14.031515376009692, + "ninjask": 9.517670909302609, + "exploud": 1.5790024400014704, + "lairon": 3.3396085837126543, + "manectric": 1.6284233411863385, + "roselia": 3.1511671065174793, + "sharpedo": 6.8099861052506245, + "wailmer": 9.312698998956725, + "torkoal": 2.3915742464381964, + "flygon": 2.1317293924970855, + "altaria": 1.5539843978179886, + "whiscash": 1.8723554939350593, + "crawdaunt": 2.920032782162077, + "claydol": 3.624318128521637, + "cradily": 2.020110415451013, + "armaldo": 2.1141434991102326, + "dusclops": 3.421013730301777, + "absol": 1.9935953680698306, + "glalie": 4.2543236336540735, + "sealeo": 4.1945741477008065, + "relicanth": 2.830485205897456, + "metang": 3.258594958678167, + "luxray": 3.63771197203772, + "vespiquen": 3.7155946184496953, + "cherrim": 4.799192844348699, + "gastrodon": 1.9272064285464934, + "drifblim": 5.865277656089422, + "lopunny": 3.7069468626700184, + "skuntank": 1.502167934123394, + "bronzong": 3.3234455752152527, + "munchlax": 2.11123451622733, + "drapion": 2.6891877498161776, + "abomasnow": 2.7088012574453266, + "froslass": 2.9269928009959694, + "rotom": 3.4607312163954456, + "stoutland": 2.4170116869657527, + "liepard": 7.141951365278777, + "musharna": 1.513024788791166, + "unfezant": 10.074781119105511, + "boldore": 4.129821133241353, + "swoobat": 7.583839097191918, + "audino": 2.2072670326825308, + "gurdurr": 2.335071672428734, + "palpitoad": 3.2533368320843628, + "seismitoad": 5.659766748450655, + "scolipede": 3.381118215134518, + "whimsicott": 2.7239048865152666, + "lilligant": 2.542270354981776, + "basculin-red-striped": 3.9908124141990435, + "basculin-blue-striped": 5.1321029318616045, + "krookodile": 3.0725221391531448, + "maractus": 1.8407943341877917, + "crustle": 2.567693345376077, + "sigilyph": 3.2623832433891935, + "cofagrigus": 2.740675900099107, + "garbodor": 1.880698581567359, + "cinccino": 4.615956105282125, + "vanillish": 2.0894823424740343, + "emolga": 3.4187445801110377, + "escavalier": 1.7567110985129846, + "amoonguss": 2.0707198697897327, + "jellicent": 1.9737181645208306, + "galvantula": 1.5433690079013878, + "klang": 3.053369595407684, + "klinklang": 3.782060722224675, + "beheeyem": 1.743316078199942, + "lampent": 2.9464238807007335, + "fraxure": 1.338254109072234, + "beartic": 1.725893296416003, + "cryogonal": 1.529102845253898, + "accelgor": 2.8825349792190345, + "stunfisk": 1.3755832421244012, + "stunfisk-galar": 2.506670541160461, + "mienshao": 3.418412253876978, + "druddigon": 1.5542516400305177, + "golurk": 2.073858297286339, + "bisharp": 2.5915085783966214, + "bouffalant": 1.3412143457758678, + "heatmor": 2.2007299686614887, + "durant": 3.6258075257179843, + "diggersby": 3.3498450404239852, + "talonflame": 4.208678206059948, + "pangoro": 1.8319981136373258, + "doublade": 3.075821189942027, + "malamar": 2.9648414356913344, + "barbaracle": 2.023584939538086, + "heliolisk": 2.864791445469347, + "tyrantrum": 1.5501293796604783, + "aurorus": 2.642162511461761, + "hawlucha": 4.925400757492393, + "dedenne": 2.620813327027152, + "klefki": 3.3185491873263353, + "trevenant": 2.497742848347218, + "gourgeist-average": 4.48055726447987, + "charjabug": 3.7264801935701177, + "vikavolt": 1.6732912777715268, + "ribombee": 4.554378024137554, + "lycanroc-midday": 3.791117407096256, + "lycanroc-midnight": 2.6775338009467022, + "mudsdale": 1.7824579880446403, + "araquanid": 2.994655271617857, + "lurantis": 2.005784293601111, + "shiinotic": 3.596108925942816, + "salazzle": 3.6398382068297495, + "bewear": 1.8544205255837707, + "tsareena": 2.7126108770633888, + "comfey": 4.344212712378031, + "oranguru": 2.561282463149774, + "passimian": 2.5580671103190324, + "palossand": 2.2874779370219778, + "pyukumuku": 55.90417013999833, + "togedemaru": 2.155516539377822, + "mimikyu-disguised": 3.929314888786293, + "greedent": 2.27709727484101, + "orbeetle": 1.7756540622460761, + "thievul": 1.7085525843604796, + "eldegoss": 3.1787301292051335, + "dubwool": 3.0170589333366835, + "drednaw": 1.7846024066497204, + "boltund": 4.470455688012004, + "carkol": 3.8593874669641766, + "coalossal": 3.151634141877378, + "sandaconda": 3.6493406741745957, + "cramorant": 9.602179799504297, + "barraskewda": 6.54409740377901, + "toxtricity-amped": 2.4468767385652335, + "centiskorch": 2.113967550887145, + "grapploct": 1.7251597854776923, + "polteageist": 2.4905603944647554, + "hatterene": 2.492430803300248, + "grimmsnarl": 3.801959417096225, + "obstagoon": 2.6764582284450986, + "perrserker": 3.773131199590064, + "alcremie": 1.345453531812273, + "falinks": 3.4755410659442516, + "pincurchin": 2.820824074061627, + "frosmoth": 2.5450933872380688, + "indeedee-male": 2.960273645374726, + "morpeko": 2.634762501214087, + "copperajah": 2.5950226899681494, + "duraludon": 1.4692810032615238, + "drakloak": 3.7065241033494765 }, "frosmoth": { - "ivysaur": 4.1761406604088585, - "charmeleon": 2.916744666517982, - "wartortle": 2.82141578546051, - "butterfree": 5.468727212128086, - "raichu": 4.971726936392047, - "raichu-alola": 4.152006074529766, - "sandslash": 2.0323821530740744, - "sandslash-alola": 1.2891503141593503, - "nidoqueen": 2.8532952368071247, - "nidoking": 1.6212387302937181, - "clefairy": 7.394660738634094, - "clefable": 1.8150950333579927, - "jigglypuff": 26.220910381081147, - "wigglytuff": 1.9874143346248263, - "gloom": 7.281338898153466, - "vileplume": 3.991619328736566, - "dugtrio": 2.5684737469227086, - "dugtrio-alola": 2.6026282459477716, - "persian": 4.056981301163791, - "persian-alola": 5.424262997916294, - "golduck": 2.9861964427557597, - "poliwrath": 2.3701467655632635, - "kadabra": 4.380164304763191, - "machoke": 4.208653578170679, - "tentacruel": 2.130714333933855, - "slowbro": 2.1974682852964804, - "magneton": 2.505569253290905, - "haunter": 4.5392995768356785, - "kingler": 2.683962357849954, - "exeggutor": 3.773225870430576, - "marowak": 3.0012774482667597, - "marowak-alola": 1.5484421326248627, - "hitmonlee": 2.2236781418697404, - "hitmonchan": 2.1836156373265982, - "lickitung": 2.0065806350991875, - "weezing": 1.3571054550117077, - "weezing-galar": 2.464314560716567, - "rhydon": 2.0257790289404074, - "chansey": 19.446918279194485, - "tangela": 7.997839932103878, - "kangaskhan": 1.7750878005764443, - "seadra": 4.672348953915086, - "seaking": 2.245909172875071, - "starmie": 1.8127284873464569, - "mr-mime": 6.332234504347362, - "mr-mime-galar": 4.735652588298883, - "scyther": 3.0295920100088796, - "jynx": 4.9287981069375775, - "electabuzz": 2.469568999658309, - "magmar": 1.1320225294218287, - "tauros": 2.052713511668289, - "ditto": 3.5394013262890547, - "vaporeon": 3.037040995399643, - "jolteon": 1.8403136426252424, - "flareon": 1.5059658171615924, - "porygon": 2.8327284276273375, - "dragonair": 1.8473600675377593, - "noctowl": 4.64241283642292, - "lanturn": 1.8956317113473526, - "togetic": 4.114065930890851, - "xatu": 3.6083107206936686, - "bellossom": 3.1441966473116443, - "azumarill": 2.0512250193308166, - "sudowoodo": 2.148117376968997, - "politoed": 2.4947065234496817, - "quagsire": 4.883478085038439, - "slowking": 3.0188939740974625, - "dunsparce": 3.16419623745295, - "qwilfish": 3.282896359637263, - "sneasel": 2.6744654392324403, - "piloswine": 1.5536143704077532, - "octillery": 2.259880095582798, - "mantine": 2.047024060976039, - "skarmory": 1.4917197464290166, - "hitmontop": 3.39641147855556, - "miltank": 3.5807033924741347, - "grovyle": 10.071874653683881, - "sceptile": 1.7969200670579206, - "combusken": 3.7236410609109027, - "blaziken": 1.5697128027895535, - "marshtomp": 2.524534432458007, - "swampert": 1.3551068101332007, - "linoone": 4.902496585136754, - "linoone-galar": 5.889411117113852, - "pelipper": 5.541123675901939, - "ninjask": 8.999346673144256, - "exploud": 1.6764690907167583, - "lairon": 1.3061026865506071, - "manectric": 1.6206415933282037, - "roselia": 4.845423855222634, - "sharpedo": 6.285606036555112, - "wailmer": 5.910832103287294, - "torkoal": 1.343678364321533, - "flygon": 2.2276098693878366, - "altaria": 1.2693649399631874, - "whiscash": 1.9881846051256196, - "crawdaunt": 2.816414331703526, - "claydol": 3.8145273382437788, - "cradily": 2.6143589264761475, - "armaldo": 1.5861444301384742, - "dusclops": 3.23944495143894, - "absol": 2.4696582055895147, - "glalie": 3.995072030720161, - "sealeo": 3.280723408526834, - "relicanth": 1.5380642159937412, - "metang": 2.6410802875994532, - "luxray": 3.74614850237021, - "vespiquen": 3.0552964422506017, - "cherrim": 7.837965659843842, - "gastrodon": 1.7896177894066436, - "drifblim": 4.117036129800297, - "lopunny": 3.2568877135805363, - "skuntank": 1.2479671575082498, - "bronzong": 2.8169900825648027, - "munchlax": 1.7076679542383828, - "drapion": 2.3058477376423157, - "abomasnow": 4.0911326797428, - "froslass": 3.0171545448023602, - "rotom": 3.0376579051227686, - "stoutland": 2.2865461768078155, - "liepard": 8.829763010905157, - "musharna": 2.0044265019289966, - "unfezant": 5.244379398502635, - "boldore": 2.861232708495713, - "swoobat": 5.164155748809421, - "audino": 2.0571240507287185, - "gurdurr": 3.1092054371230207, - "palpitoad": 3.8104624197342494, - "seismitoad": 6.433689009530656, - "scolipede": 3.9741167444383767, - "whimsicott": 4.050534053524507, - "lilligant": 4.22329430294214, - "basculin-red-striped": 2.7964618187666774, - "basculin-blue-striped": 3.639662384945475, - "krookodile": 3.7744414623744653, - "maractus": 3.111230264927631, - "crustle": 1.763872712362946, - "sigilyph": 2.145696006179635, - "cofagrigus": 2.71723978865261, - "garbodor": 1.781484149539991, - "cinccino": 4.577668914318412, - "vanillish": 2.289450437727413, - "emolga": 2.56834050744608, - "escavalier": 1.7757325221042337, - "amoonguss": 3.3213136696676937, - "jellicent": 1.5078616108045764, - "galvantula": 1.612890740348438, - "klang": 1.9898627528630455, - "klinklang": 2.370409028774649, - "beheeyem": 2.080121045692729, - "lampent": 1.6510880688834497, - "fraxure": 1.537268797319098, - "beartic": 1.8541244934721264, - "cryogonal": 1.7359926783565622, - "accelgor": 3.705430352734278, - "stunfisk": 1.30483648803903, - "stunfisk-galar": 2.002326508698785, - "mienshao": 3.639815985138307, - "druddigon": 1.6085084553561053, - "golurk": 1.7948435700368304, - "bisharp": 2.413099353145749, - "bouffalant": 1.1794411089251051, - "heatmor": 1.361937675889241, - "durant": 2.942195570138077, - "diggersby": 2.854114730437669, - "talonflame": 2.271071481422255, - "pangoro": 2.1140132227471202, - "doublade": 1.7556756456622735, - "malamar": 5.521996672107756, - "barbaracle": 1.5032190222028874, - "heliolisk": 3.4234535207951584, - "tyrantrum": 1.409763435383542, - "aurorus": 2.1001905519727253, - "hawlucha": 4.442848989599456, - "dedenne": 2.5874268196253554, - "klefki": 2.2625770102813485, - "trevenant": 3.9400233969534155, - "gourgeist-average": 6.209501261897524, - "charjabug": 4.095329800820908, - "vikavolt": 1.8930779651725738, - "ribombee": 5.933241986924019, - "lycanroc-midday": 2.1825437445938487, - "lycanroc-midnight": 1.792226535753038, - "mudsdale": 1.5618774170387706, - "araquanid": 2.7004083759265183, - "lurantis": 3.2016412494036044, - "shiinotic": 5.45802342538512, - "salazzle": 2.588537252254621, - "bewear": 2.249461108080122, - "tsareena": 3.8049537331495538, - "comfey": 4.5033976423017155, - "oranguru": 3.261271050619797, - "passimian": 2.5635174139812826, - "palossand": 2.178890499692722, - "pyukumuku": 42.423624980761176, - "togedemaru": 1.683159965897496, - "mimikyu-disguised": 3.611097966245504, - "greedent": 1.9639923422455883, - "orbeetle": 2.3338701523372816, - "thievul": 1.8393855437368525, - "eldegoss": 5.12417481546999, - "dubwool": 2.9030331930779023, - "drednaw": 0.8843317435392906, - "boltund": 4.62929391857053, - "carkol": 1.2854819506641872, - "coalossal": 1.3100293523700308, - "sandaconda": 3.3345282736985027, - "cramorant": 4.786686765120208, - "barraskewda": 4.490169898477925, - "toxtricity-amped": 2.4059092418088524, - "centiskorch": 2.130179087300881, - "grapploct": 2.2032798730717325, - "polteageist": 2.483683470753414, - "hatterene": 2.4467930158873683, - "grimmsnarl": 3.7629901975063262, - "obstagoon": 3.268130592297012, - "perrserker": 2.476212092791573, - "alcremie": 1.2606024876131627, - "falinks": 3.9771302403305886, - "pincurchin": 3.040863762229152, - "indeedee-male": 3.355359433505389, - "morpeko": 3.6083932002832255, - "copperajah": 1.7013255823688391, - "duraludon": 1.254952651291263, - "drakloak": 4.312542006554429, - "frosmoth": 2.9575364517803666 + "ivysaur": 4.185253782565727, + "charmeleon": 2.901928243026187, + "wartortle": 2.8242212773569086, + "butterfree": 5.471335290696188, + "raichu": 4.970690592627916, + "raichu-alola": 4.151589544150253, + "sandslash": 2.0286331698075015, + "sandslash-alola": 1.2844808029922583, + "nidoqueen": 2.8549026240972752, + "nidoking": 1.6175173557701656, + "clefairy": 7.369315934454727, + "clefable": 1.810201316003639, + "jigglypuff": 26.214979665193184, + "wigglytuff": 1.9869128750938079, + "gloom": 7.289373933876373, + "vileplume": 4.000603423102398, + "dugtrio": 2.562872463432835, + "dugtrio-alola": 2.594796777652766, + "persian": 4.052424498179084, + "persian-alola": 5.426361748261997, + "golduck": 2.984947589644973, + "poliwrath": 2.369668282158839, + "kadabra": 4.377754120689223, + "machoke": 4.196680380043474, + "tentacruel": 2.1284967674040507, + "slowbro": 2.195166273399146, + "magneton": 2.4981900981364884, + "haunter": 4.538605732298041, + "kingler": 2.6857791454803124, + "exeggutor": 3.783771714867144, + "marowak": 2.99935131302648, + "marowak-alola": 1.5388334570940003, + "hitmonlee": 2.216191651784043, + "hitmonchan": 2.1777280465302638, + "lickitung": 2.0077870677666017, + "weezing": 1.3554328802073377, + "weezing-galar": 2.4592084611858276, + "rhydon": 2.0168769585288615, + "chansey": 19.382381417175214, + "tangela": 8.02511552587459, + "kangaskhan": 1.7737534674322988, + "seadra": 4.677301564824044, + "seaking": 2.2434937032779727, + "starmie": 1.8103624116286439, + "mr-mime": 6.329195548153458, + "mr-mime-galar": 4.740061068628173, + "scyther": 3.023949106762232, + "jynx": 4.931073285716346, + "electabuzz": 2.467751354302158, + "magmar": 1.1264572958503987, + "tauros": 2.052943159974475, + "ditto": 3.516851288281492, + "vaporeon": 3.036907301623038, + "jolteon": 1.839163358965079, + "flareon": 1.5004193514873028, + "porygon": 2.8337591387359513, + "dragonair": 1.8470211353927604, + "noctowl": 4.625966890838539, + "lanturn": 1.8957861914647283, + "togetic": 4.095679441118224, + "xatu": 3.6043898668960326, + "bellossom": 3.1532315660172197, + "azumarill": 2.0497894996324653, + "sudowoodo": 2.138257206833198, + "politoed": 2.495039724930437, + "quagsire": 4.8878701095054495, + "slowking": 3.020341525307903, + "dunsparce": 3.162540758569532, + "qwilfish": 3.278346887832876, + "sneasel": 2.6741928519509335, + "piloswine": 1.55103584597045, + "octillery": 2.258397820957338, + "mantine": 2.042659720264609, + "skarmory": 1.4861442622011531, + "hitmontop": 3.4000427853161304, + "miltank": 3.5784360879371118, + "grovyle": 10.094514575107922, + "sceptile": 1.8012274474108656, + "combusken": 3.7156860497224047, + "blaziken": 1.5625954462707186, + "marshtomp": 2.526027252609066, + "swampert": 1.3574507141040448, + "linoone": 4.896763357103794, + "linoone-galar": 5.890237148154428, + "pelipper": 5.527553240509317, + "ninjask": 8.995762998415003, + "exploud": 1.6770681916081602, + "lairon": 1.2978784070987714, + "manectric": 1.6160129054480046, + "roselia": 4.85251179651797, + "sharpedo": 6.284781754622282, + "wailmer": 5.900448323701694, + "torkoal": 1.3385727833983214, + "flygon": 2.2249631265692877, + "altaria": 1.2663331891315943, + "whiscash": 1.9863237574887815, + "crawdaunt": 2.8184176620493773, + "claydol": 3.8093793286757247, + "cradily": 2.610818579905815, + "armaldo": 1.580904883098314, + "dusclops": 3.2351579671749526, + "absol": 2.4669643990193233, + "glalie": 3.9918910617216046, + "sealeo": 3.282807838175013, + "relicanth": 1.5295528693479339, + "metang": 2.633635734334319, + "luxray": 3.7428024967332925, + "vespiquen": 3.050058444635472, + "cherrim": 7.858696644407534, + "gastrodon": 1.784089629851669, + "drifblim": 4.111378331451466, + "lopunny": 3.250312630517378, + "skuntank": 1.2468025233788615, + "bronzong": 2.809769311799048, + "munchlax": 1.7003727081831799, + "drapion": 2.303828869987763, + "abomasnow": 4.098861976098956, + "froslass": 3.0176828633449455, + "rotom": 3.0337118346785426, + "stoutland": 2.2834863314238607, + "liepard": 8.83096207712917, + "musharna": 2.0066197819817777, + "unfezant": 5.225174209370887, + "boldore": 2.8487541002588905, + "swoobat": 5.158550538738464, + "audino": 2.0519363393066667, + "gurdurr": 3.1123551614617004, + "palpitoad": 3.811713449100833, + "seismitoad": 6.433204334079681, + "scolipede": 3.9716371066902934, + "whimsicott": 4.054445477436287, + "lilligant": 4.236119133837898, + "basculin-red-striped": 2.7959684563889824, + "basculin-blue-striped": 3.6395529101311554, + "krookodile": 3.778881558068436, + "maractus": 3.12185933630253, + "crustle": 1.7575944371064838, + "sigilyph": 2.1424796980854794, + "cofagrigus": 2.7164722799500067, + "garbodor": 1.779634450916141, + "cinccino": 4.577155346254873, + "vanillish": 2.2919197552666994, + "emolga": 2.5627364339237153, + "escavalier": 1.7747012847581725, + "amoonguss": 3.3270386540494075, + "jellicent": 1.5069690691855222, + "galvantula": 1.6136616742060805, + "klang": 1.9820660621984518, + "klinklang": 2.3598937189279763, + "beheeyem": 2.0779657577249475, + "lampent": 1.6424637163447318, + "fraxure": 1.5363085864855928, + "beartic": 1.8554909630304945, + "cryogonal": 1.7370283292906747, + "accelgor": 3.707644867580404, + "stunfisk": 1.3052477782053624, + "stunfisk-galar": 2.001381321809264, + "mienshao": 3.630101005791567, + "druddigon": 1.6053238509784367, + "golurk": 1.7927225331967973, + "bisharp": 2.409856253090914, + "bouffalant": 1.1778509452123422, + "heatmor": 1.3543632326683657, + "durant": 2.936441644559716, + "diggersby": 2.8479643981742813, + "talonflame": 2.26012253334003, + "pangoro": 2.113326168792713, + "doublade": 1.7479238181773433, + "malamar": 5.5304441161340545, + "barbaracle": 1.5005140936543846, + "heliolisk": 3.421414170228946, + "tyrantrum": 1.4043045265918015, + "aurorus": 2.0922056506251305, + "hawlucha": 4.441601787243156, + "dedenne": 2.5855630406999763, + "klefki": 2.2557139389742957, + "trevenant": 3.9447278866423927, + "gourgeist-average": 6.195705746484483, + "charjabug": 4.0971258174837635, + "vikavolt": 1.8944013596761502, + "ribombee": 5.9377322007292515, + "lycanroc-midday": 2.165136180781473, + "lycanroc-midnight": 1.782105629366243, + "mudsdale": 1.561874943324268, + "araquanid": 2.7000503253544883, + "lurantis": 3.208350988739599, + "shiinotic": 5.46279804048328, + "salazzle": 2.57353108171825, + "bewear": 2.24789267410957, + "tsareena": 3.8077265286183257, + "comfey": 4.506918793198739, + "oranguru": 3.2619260319261545, + "passimian": 2.5558353767467654, + "palossand": 2.179609198557385, + "pyukumuku": 42.41440944391987, + "togedemaru": 1.6754471227897296, + "mimikyu-disguised": 3.602425769927267, + "greedent": 1.9602458212489617, + "orbeetle": 2.33736724698081, + "thievul": 1.8369226058966017, + "eldegoss": 5.138052186927261, + "dubwool": 2.9015638769962067, + "drednaw": 0.8803835797715194, + "boltund": 4.62647049998402, + "carkol": 1.2761737200951102, + "coalossal": 1.3018081366502723, + "sandaconda": 3.3369383916699933, + "cramorant": 4.777708365289445, + "barraskewda": 4.487257724596203, + "toxtricity-amped": 2.403231018914971, + "centiskorch": 2.124854771724923, + "grapploct": 2.204794765282357, + "polteageist": 2.48138671574074, + "hatterene": 2.4465135890546574, + "grimmsnarl": 3.763784796482204, + "obstagoon": 3.2680666111488526, + "perrserker": 2.468748041716621, + "alcremie": 1.2575692488653858, + "falinks": 3.973750003006579, + "pincurchin": 3.0411959081471096, + "frosmoth": 2.9575364517803666, + "indeedee-male": 3.348968569583624, + "morpeko": 3.610322245964552, + "copperajah": 1.6945216508275691, + "duraludon": 1.252021934679024, + "drakloak": 4.306093280536768 }, "indeedee-male": { - "ivysaur": 4.35918342443564, - "charmeleon": 4.119971655424257, - "wartortle": 2.9272725623699913, - "butterfree": 4.5442734986939755, - "raichu": 5.229876777225586, - "raichu-alola": 3.906619823895922, - "sandslash": 2.2053815564079073, - "sandslash-alola": 3.421613921714237, - "nidoqueen": 4.207203898138391, - "nidoking": 2.460084806485469, - "clefairy": 9.486675502774276, - "clefable": 2.152405612188943, - "jigglypuff": 27.897482413162663, - "wigglytuff": 2.162869504631008, - "gloom": 8.048709003683525, - "vileplume": 3.958826090230675, - "dugtrio": 3.446882646912809, - "dugtrio-alola": 3.4862811057956926, - "persian": 4.169537628190859, - "persian-alola": 3.157638706716013, - "golduck": 3.094370265484517, - "poliwrath": 2.570300920109458, - "kadabra": 4.143791271330818, - "machoke": 5.073331230290174, - "tentacruel": 2.928160615179679, - "slowbro": 2.339229049411719, - "magneton": 3.9959602749232355, - "haunter": 7.265011754517378, - "kingler": 2.7360846860069046, - "exeggutor": 2.278193937913857, - "marowak": 2.946343736175945, - "marowak-alola": 2.6356849421311788, - "hitmonlee": 2.708748350039892, - "hitmonchan": 2.643641560057473, - "lickitung": 2.043587132921293, - "weezing": 2.5362906000236, - "weezing-galar": 4.3447870106368125, - "rhydon": 2.467817694788879, - "chansey": 19.784166705495096, - "tangela": 6.218541357600111, - "kangaskhan": 1.7012458788872564, - "seadra": 4.975367422469098, - "seaking": 2.32081882041761, - "starmie": 1.7252294671726915, - "mr-mime": 7.937699132569245, - "mr-mime-galar": 4.192451816492649, - "scyther": 2.5911587420760993, - "jynx": 5.527203953166085, - "electabuzz": 2.5839117875946886, - "magmar": 1.7009438383454831, - "tauros": 1.9785133654919278, - "ditto": 3.426114531666169, - "vaporeon": 3.1814450564524686, - "jolteon": 2.000351197132363, - "flareon": 2.396975042659281, - "porygon": 2.7673619336778126, - "dragonair": 1.8589865534105368, - "noctowl": 5.359786125724094, - "lanturn": 2.0043008290138626, - "togetic": 5.293050565415185, - "xatu": 4.7518885151276935, - "bellossom": 2.713120874636141, - "azumarill": 2.2497824939419653, - "sudowoodo": 2.6990327969928645, - "politoed": 2.519176221866057, - "quagsire": 5.171643061289885, - "slowking": 2.678232075104365, - "dunsparce": 3.3282353048816926, - "qwilfish": 5.038065874591137, - "sneasel": 2.0706614067720737, - "piloswine": 1.6673101697129038, - "octillery": 2.3334245069463706, - "mantine": 2.30948897492131, - "skarmory": 2.3673637013962088, - "hitmontop": 3.4484449328208675, - "miltank": 3.6883319972424706, - "grovyle": 8.523216560848983, - "sceptile": 1.4914651509620689, - "combusken": 4.750779725475667, - "blaziken": 2.2267208951612094, - "marshtomp": 2.488031770296044, - "swampert": 1.3471353546721407, - "linoone": 5.037024769938283, - "linoone-galar": 3.4738603429995827, - "pelipper": 6.429677793647513, - "ninjask": 6.594801447750597, - "exploud": 1.691559740183341, - "lairon": 2.253919743249928, - "manectric": 1.9173215568346618, - "roselia": 5.18848942656502, - "sharpedo": 3.407533416994858, - "wailmer": 6.752798191620389, - "torkoal": 2.1933354600450574, - "flygon": 2.3063583962117318, - "altaria": 1.6707683955607635, - "whiscash": 2.195411921599252, - "crawdaunt": 1.502725582454119, - "claydol": 3.9893636803836428, - "cradily": 2.3665667557619043, - "armaldo": 1.7123873586711644, - "dusclops": 4.163609765260972, - "absol": 1.6652493044920682, - "glalie": 4.080708895803516, - "sealeo": 3.3106723337771697, - "relicanth": 2.0111687294358305, - "metang": 3.497528262053058, - "luxray": 3.897677007399685, - "vespiquen": 2.635044360392063, - "cherrim": 6.662809433922471, - "gastrodon": 1.9498651158741094, - "drifblim": 5.183489782282516, - "lopunny": 3.4778557352554076, - "skuntank": 1.1772515421139347, - "bronzong": 3.836136515333765, - "munchlax": 1.9675700552000386, - "drapion": 1.8475650618567965, - "abomasnow": 4.468230662118281, - "froslass": 3.5719726849154663, - "rotom": 5.0427395137999635, - "stoutland": 2.343669001618542, - "liepard": 5.376802817385521, - "musharna": 1.8842027621726458, - "unfezant": 6.535979791042742, - "boldore": 3.628420898971584, - "swoobat": 6.797373983550756, - "audino": 2.3899154555109856, - "gurdurr": 3.309108463866169, - "palpitoad": 4.020936138915019, - "seismitoad": 6.771829519441583, - "scolipede": 3.7105874313715397, - "whimsicott": 3.656974550060869, - "lilligant": 3.3781119813775335, - "basculin-red-striped": 2.8974628863547727, - "basculin-blue-striped": 3.533669162928701, - "krookodile": 2.2485358233610793, - "maractus": 2.4680244254924846, - "crustle": 1.9793801687190373, - "sigilyph": 2.8517789330177963, - "cofagrigus": 3.8871124587536254, - "garbodor": 2.5799064469135287, - "cinccino": 4.529317459682977, - "vanillish": 2.448068951300316, - "emolga": 3.2066598051837865, - "escavalier": 2.721475853800266, - "amoonguss": 3.542350820392806, - "jellicent": 1.7418995067961238, - "galvantula": 1.8288472546720724, - "klang": 3.4050066917060584, - "klinklang": 3.872890000284607, - "beheeyem": 2.037910998193148, - "lampent": 3.036129785863524, - "fraxure": 1.529825966770561, - "beartic": 1.9859409465739004, - "cryogonal": 1.7340339792407322, - "accelgor": 2.8875246511883867, - "stunfisk": 1.3386839844478353, - "stunfisk-galar": 2.571269110835312, - "mienshao": 4.619817444758211, - "druddigon": 1.6870891733963174, - "golurk": 2.2981066523383555, - "bisharp": 2.6243693830330614, - "bouffalant": 1.2034957615051094, - "heatmor": 1.9921425344204489, - "durant": 5.237741489809013, - "diggersby": 3.147001205640624, - "talonflame": 3.0858797949079486, - "pangoro": 1.3915014987452181, - "doublade": 3.296284026584747, - "malamar": 2.4293245923555227, - "barbaracle": 1.5168562194993283, - "heliolisk": 3.8650355634769666, - "tyrantrum": 1.6919738027924187, - "aurorus": 2.399347161313151, - "hawlucha": 4.473923857015546, - "dedenne": 3.06557845209677, - "klefki": 3.64431466251318, - "trevenant": 3.2834998177237376, - "gourgeist-average": 7.464518112069934, - "charjabug": 4.589490342978951, - "vikavolt": 2.0425634229833083, - "ribombee": 4.892928828741832, - "lycanroc-midday": 3.302731223368331, - "lycanroc-midnight": 2.15586783134592, - "mudsdale": 1.4770462344457855, - "araquanid": 1.9843810026975022, - "lurantis": 2.5519892099032995, - "shiinotic": 4.979012890020576, - "salazzle": 4.478834427002945, - "bewear": 2.3312527871874487, - "tsareena": 3.3195333588174387, - "comfey": 4.633004848941937, - "oranguru": 2.6158572309002035, - "passimian": 3.3697411112602107, - "palossand": 2.7828876346866034, - "pyukumuku": 43.13609650758559, - "togedemaru": 2.4580160978143724, - "mimikyu-disguised": 4.991170805466544, - "greedent": 2.209516650788183, - "orbeetle": 2.009687318601527, - "thievul": 1.4323531301003283, - "eldegoss": 4.331637628699188, - "dubwool": 3.1992737514667335, - "drednaw": 1.2307033389625404, - "boltund": 4.310032735972167, - "carkol": 2.465584290083129, - "coalossal": 2.1415039607942092, - "sandaconda": 3.1345231947741197, - "cramorant": 4.452234396329925, - "barraskewda": 4.290653576725918, - "toxtricity-amped": 3.856182277505998, - "centiskorch": 2.0372935373471175, - "grapploct": 2.4281951222371765, - "polteageist": 2.7980853538996167, - "hatterene": 2.9881807087538457, - "grimmsnarl": 3.118914024198588, - "obstagoon": 2.05207107957753, - "perrserker": 3.662785013376797, - "alcremie": 1.4463811856351643, - "falinks": 4.260114710625565, - "pincurchin": 3.2158592231392267, - "frosmoth": 3.3454592560239025, - "morpeko": 2.359049995300536, - "copperajah": 2.7213206950148665, - "duraludon": 1.5105400122648613, - "drakloak": 5.182836713295529, - "indeedee-male": 3.096089980229971 + "ivysaur": 4.368192007401117, + "charmeleon": 4.121858468213668, + "wartortle": 2.929000418450383, + "butterfree": 4.539254102322554, + "raichu": 5.233569862630354, + "raichu-alola": 3.908917921460972, + "sandslash": 2.20309437129964, + "sandslash-alola": 3.4244512783577212, + "nidoqueen": 4.218885562580087, + "nidoking": 2.460961740266744, + "clefairy": 9.49545220768869, + "clefable": 2.154403764354753, + "jigglypuff": 27.888120368323406, + "wigglytuff": 2.1632980384848346, + "gloom": 8.065802462415393, + "vileplume": 3.9630279773643813, + "dugtrio": 3.444132100797212, + "dugtrio-alola": 3.4808774893317427, + "persian": 4.160934456669224, + "persian-alola": 3.14205217701487, + "golduck": 3.0918774616706517, + "poliwrath": 2.5698279176276992, + "kadabra": 4.143704863599749, + "machoke": 5.0706435199279545, + "tentacruel": 2.929161930840188, + "slowbro": 2.343440449992694, + "magneton": 4.001622188570299, + "haunter": 7.3004755341563765, + "kingler": 2.7352413638885498, + "exeggutor": 2.280672410517284, + "marowak": 2.941595609150257, + "marowak-alola": 2.641183121489245, + "hitmonlee": 2.707289993190032, + "hitmonchan": 2.6433549003353014, + "lickitung": 2.0429351516651684, + "weezing": 2.540402459583257, + "weezing-galar": 4.356030242318542, + "rhydon": 2.4655221747423677, + "chansey": 19.71656193560027, + "tangela": 6.222960737798107, + "kangaskhan": 1.696118559476771, + "seadra": 4.980010518200537, + "seaking": 2.3174769877468897, + "starmie": 1.726547795136295, + "mr-mime": 7.952368405831932, + "mr-mime-galar": 4.199148032940641, + "scyther": 2.58492934759888, + "jynx": 5.530834938578966, + "electabuzz": 2.584175388668543, + "magmar": 1.7009051808158295, + "tauros": 1.974052233887519, + "ditto": 3.412604119566253, + "vaporeon": 3.1810626187952775, + "jolteon": 2.0029111801444652, + "flareon": 2.396676681230711, + "porygon": 2.7629336172106873, + "dragonair": 1.8573831550475308, + "noctowl": 5.349801741080007, + "lanturn": 2.0055154662261345, + "togetic": 5.293510391816554, + "xatu": 4.760158726807287, + "bellossom": 2.7167392990309716, + "azumarill": 2.2495927383709953, + "sudowoodo": 2.6974619440089223, + "politoed": 2.517493230268102, + "quagsire": 5.175952647990893, + "slowking": 2.6766454912385145, + "dunsparce": 3.324519441056382, + "qwilfish": 5.0386830134854215, + "sneasel": 2.0601171789355353, + "piloswine": 1.6671156445417912, + "octillery": 2.330830875234522, + "mantine": 2.308383737575558, + "skarmory": 2.364966899427058, + "hitmontop": 3.4491726347339604, + "miltank": 3.6817524640637282, + "grovyle": 8.526865510388292, + "sceptile": 1.490994081366696, + "combusken": 4.756904245308059, + "blaziken": 2.2281220664234653, + "marshtomp": 2.4860649526433165, + "swampert": 1.3480345865827057, + "linoone": 5.026171001225324, + "linoone-galar": 3.452171164566169, + "pelipper": 6.426065841367421, + "ninjask": 6.57004684748129, + "exploud": 1.6906648806879128, + "lairon": 2.2528392983758643, + "manectric": 1.9197966965598146, + "roselia": 5.198888937651072, + "sharpedo": 3.388395116997941, + "wailmer": 6.750768110756482, + "torkoal": 2.1955993343129965, + "flygon": 2.3027474116056372, + "altaria": 1.6709838898845384, + "whiscash": 2.1959366837376226, + "crawdaunt": 1.4951705087014222, + "claydol": 3.9943408927641277, + "cradily": 2.3676421404649934, + "armaldo": 1.708745097797868, + "dusclops": 4.173227606268439, + "absol": 1.6583486681355364, + "glalie": 4.0727883049147104, + "sealeo": 3.3099658709940822, + "relicanth": 2.0088853208472384, + "metang": 3.5009862800696525, + "luxray": 3.8968723122984574, + "vespiquen": 2.6294038099934722, + "cherrim": 6.669762455554845, + "gastrodon": 1.9450366825550716, + "drifblim": 5.195595100368978, + "lopunny": 3.4701990070093833, + "skuntank": 1.17151411522256, + "bronzong": 3.843094634957796, + "munchlax": 1.9612910695735026, + "drapion": 1.8382990558340468, + "abomasnow": 4.468705339393108, + "froslass": 3.583161541301128, + "rotom": 5.0644045218502844, + "stoutland": 2.33815013442731, + "liepard": 5.350248040534584, + "musharna": 1.8873472667810818, + "unfezant": 6.528928961718511, + "boldore": 3.6276068877458587, + "swoobat": 6.809090174223982, + "audino": 2.3891860863596177, + "gurdurr": 3.3120063255984906, + "palpitoad": 4.022080354305439, + "seismitoad": 6.770752219783165, + "scolipede": 3.7022717747513205, + "whimsicott": 3.6611059549294147, + "lilligant": 3.3790883779821614, + "basculin-red-striped": 2.895624262865495, + "basculin-blue-striped": 3.5276421453659603, + "krookodile": 2.238393516381846, + "maractus": 2.4694666975190174, + "crustle": 1.975927476514114, + "sigilyph": 2.8559818511777726, + "cofagrigus": 3.9084960693398862, + "garbodor": 2.580950914555463, + "cinccino": 4.520971867670531, + "vanillish": 2.4501893368997605, + "emolga": 3.2086898806982775, + "escavalier": 2.7194175374840976, + "amoonguss": 3.5495381817643548, + "jellicent": 1.7435766669668045, + "galvantula": 1.8299402582330009, + "klang": 3.410005951136015, + "klinklang": 3.8713985362546857, + "beheeyem": 2.038404811781322, + "lampent": 3.0372788035996066, + "fraxure": 1.526502555075076, + "beartic": 1.987509079078448, + "cryogonal": 1.7337325809580943, + "accelgor": 2.882827371097288, + "stunfisk": 1.3394246173186803, + "stunfisk-galar": 2.570157821221522, + "mienshao": 4.623035436474032, + "druddigon": 1.6834845793826938, + "golurk": 2.3039149414215374, + "bisharp": 2.617247951039384, + "bouffalant": 1.200390594213276, + "heatmor": 1.9911427534716988, + "durant": 5.232999031357155, + "diggersby": 3.141526280173567, + "talonflame": 3.086689120269609, + "pangoro": 1.3854343600850807, + "doublade": 3.3038013109580158, + "malamar": 2.422178197649399, + "barbaracle": 1.5140109347896709, + "heliolisk": 3.864822071519976, + "tyrantrum": 1.690349216498957, + "aurorus": 2.3968875534081917, + "hawlucha": 4.469127946212128, + "dedenne": 3.0684066629788966, + "klefki": 3.6475927393795575, + "trevenant": 3.2870398523251607, + "gourgeist-average": 7.505005625526219, + "charjabug": 4.59081817298811, + "vikavolt": 2.042463395163412, + "ribombee": 4.890496588184666, + "lycanroc-midday": 3.2993076684679017, + "lycanroc-midnight": 2.150529159788302, + "mudsdale": 1.474581758119716, + "araquanid": 1.9789650503677174, + "lurantis": 2.550374689025108, + "shiinotic": 4.9839703424851916, + "salazzle": 4.483119341939196, + "bewear": 2.326954242443604, + "tsareena": 3.3188369076051822, + "comfey": 4.637126103474408, + "oranguru": 2.6156500807305822, + "passimian": 3.372602161603833, + "palossand": 2.7935068089803545, + "pyukumuku": 43.081258206737914, + "togedemaru": 2.4561111118312233, + "mimikyu-disguised": 5.006433964052357, + "greedent": 2.2065816230239235, + "orbeetle": 2.012655433526077, + "thievul": 1.4257131588231924, + "eldegoss": 4.335370206286761, + "dubwool": 3.1952172394806677, + "drednaw": 1.2278121989702142, + "boltund": 4.301425342355015, + "carkol": 2.46414329003158, + "coalossal": 2.1419367690769375, + "sandaconda": 3.1308283752761867, + "cramorant": 4.4354429987365345, + "barraskewda": 4.279660803186295, + "toxtricity-amped": 3.86175665895348, + "centiskorch": 2.037061655884559, + "grapploct": 2.431274457658338, + "polteageist": 2.799265252844992, + "hatterene": 2.99146816051874, + "grimmsnarl": 3.1078653827958793, + "obstagoon": 2.0414736355495613, + "perrserker": 3.658754027494589, + "alcremie": 1.447193082619799, + "falinks": 4.256780751907808, + "pincurchin": 3.2192935025624827, + "frosmoth": 3.345469027308673, + "indeedee-male": 3.096089980229971, + "morpeko": 2.352205328886896, + "copperajah": 2.722023415125404, + "duraludon": 1.5115877917074505, + "drakloak": 5.184510705676939 }, "morpeko": { - "ivysaur": 3.319492797775018, - "charmeleon": 4.0445782700960455, - "wartortle": 3.6861750262058126, - "butterfree": 6.067054516982536, - "raichu": 4.327730224099518, - "raichu-alola": 4.123294550617687, - "sandslash": 1.8275720924692247, - "sandslash-alola": 1.8425268823562213, - "nidoqueen": 2.6365899342776453, - "nidoking": 1.762007629114691, - "clefairy": 9.984882310437293, - "clefable": 1.6617413950830322, - "jigglypuff": 24.192333199659657, - "wigglytuff": 1.7563626980507676, - "gloom": 5.174519927514348, - "vileplume": 2.7465152150566374, - "dugtrio": 3.5393041019951674, - "dugtrio-alola": 2.899689825154441, - "persian": 4.070490737528728, - "persian-alola": 4.893449136131928, - "golduck": 4.2813572483040385, - "poliwrath": 2.4299123781469056, - "kadabra": 4.070755752111703, - "machoke": 3.6583376083189894, - "tentacruel": 3.8370069506483526, - "slowbro": 2.7059840022409776, - "magneton": 3.2490448072257836, - "haunter": 5.583344384804466, - "kingler": 2.951436082873432, - "exeggutor": 2.1998052910988855, - "marowak": 2.851832933280101, - "marowak-alola": 2.679793825494182, - "hitmonlee": 2.353862959704449, - "hitmonchan": 2.2509487138894126, - "lickitung": 1.9427197085650494, - "weezing": 1.517220931391283, - "weezing-galar": 2.2654633049079633, - "rhydon": 2.0842361068606383, - "chansey": 32.02091937443914, - "tangela": 4.82188068432237, - "kangaskhan": 1.816649389944504, - "seadra": 5.445832086716913, - "seaking": 3.460488469671268, - "starmie": 1.8531759402207932, - "mr-mime": 9.948538132939193, - "mr-mime-galar": 4.223847620188039, - "scyther": 3.667726071392233, - "jynx": 4.697193294706686, - "electabuzz": 2.496918282634361, - "magmar": 1.8074317008954854, - "tauros": 1.7610354569662432, - "ditto": 2.781630919946232, - "vaporeon": 5.0418100450963355, - "jolteon": 1.7627418787347633, - "flareon": 2.669390724410307, - "porygon": 2.9865985435168287, - "dragonair": 1.9041037906127625, - "noctowl": 9.828805455878017, - "lanturn": 1.7181575877711084, - "togetic": 7.1816328237385925, - "xatu": 6.361164608910162, - "bellossom": 1.9629807969019655, - "azumarill": 3.2649099390791783, - "sudowoodo": 2.1838908715409535, - "politoed": 3.5426031050555378, - "quagsire": 3.9272421895144745, - "slowking": 3.948617384645239, - "dunsparce": 3.2718065727577583, - "qwilfish": 4.41410669635944, - "sneasel": 2.5494717669490727, - "piloswine": 1.3741274877173209, - "octillery": 3.2081171151080907, - "mantine": 7.03477105436947, - "skarmory": 2.8737708478220663, - "hitmontop": 2.42091613733525, - "miltank": 3.0833815459799325, - "grovyle": 7.886309007673744, - "sceptile": 1.4531348994180622, - "combusken": 3.0121145819635773, - "blaziken": 1.5286492510266934, - "marshtomp": 2.0868668296003428, - "swampert": 1.05032400600519, - "linoone": 5.015193748189496, - "linoone-galar": 5.290802544645794, - "pelipper": 12.084251823347426, - "ninjask": 8.412780212609867, - "exploud": 1.6003107647696806, - "lairon": 2.468098459071487, - "manectric": 1.656821246028988, - "roselia": 4.637861559276431, - "sharpedo": 7.277864839108412, - "wailmer": 9.743896316990238, - "torkoal": 1.7790944244818396, - "flygon": 3.0934705604544765, - "altaria": 2.03843582156029, - "whiscash": 1.8925714037951633, - "crawdaunt": 2.5741749561772607, - "claydol": 4.060940642878002, - "cradily": 2.2991050001394626, - "armaldo": 1.5674506660820051, - "dusclops": 3.945706668777013, - "absol": 2.0663126890804797, - "glalie": 4.415566399885833, - "sealeo": 4.3251848721932715, - "relicanth": 2.374085044412496, - "metang": 4.116072054289397, - "luxray": 3.5660244648997454, - "vespiquen": 3.311099983473029, - "cherrim": 5.906714619862777, - "gastrodon": 1.7674226994309459, - "drifblim": 7.71440006133667, - "lopunny": 3.607900816411524, - "skuntank": 1.5644749730070409, - "bronzong": 4.545308381858278, - "munchlax": 2.6074971174546886, - "drapion": 2.3293765791875147, - "abomasnow": 2.7626801950780253, - "froslass": 3.430029580703769, - "rotom": 4.95852159904269, - "stoutland": 2.379196420985776, - "liepard": 6.837104743054994, - "musharna": 2.0283075835358906, - "unfezant": 9.037335525747569, - "boldore": 2.9130371164319078, - "swoobat": 9.124432692410767, - "audino": 2.126618816903729, - "gurdurr": 1.7456378701254682, - "palpitoad": 3.1615509963191353, - "seismitoad": 5.532972976975664, - "scolipede": 2.8478861314840724, - "whimsicott": 2.961396230785496, - "lilligant": 2.827112298500372, - "basculin-red-striped": 3.991309991375299, - "basculin-blue-striped": 5.069306090707555, - "krookodile": 2.750267292980168, - "maractus": 2.2689716364830446, - "crustle": 1.6959581859435087, - "sigilyph": 3.796031947989656, - "cofagrigus": 3.8227041825423242, - "garbodor": 1.8335069413103566, - "cinccino": 4.58613139988659, - "vanillish": 2.1631901413289487, - "emolga": 3.6464869024639883, - "escavalier": 1.6194535329799256, - "amoonguss": 2.5870485888045893, - "jellicent": 2.1819704056845124, - "galvantula": 1.4517374409079276, - "klang": 3.029321570386057, - "klinklang": 3.448373558375942, - "beheeyem": 2.200165280858945, - "lampent": 2.841376328433636, - "fraxure": 1.4207965778886444, - "beartic": 1.6579140575047724, - "cryogonal": 1.9808423954776928, - "accelgor": 2.617125713645587, - "stunfisk": 1.292004288768805, - "stunfisk-galar": 1.9495549187749095, - "mienshao": 3.1640883258621235, - "druddigon": 1.9315804858050591, - "golurk": 1.9510328374880073, - "bisharp": 2.6057082432632184, - "bouffalant": 1.290538872403066, - "heatmor": 1.9496022861282392, - "durant": 2.8210927389699405, - "diggersby": 2.8889486867513066, - "talonflame": 4.355022198886709, - "pangoro": 1.6903724048992004, - "doublade": 3.467894058745341, - "malamar": 3.2784840728320894, - "barbaracle": 1.8286071355664482, - "heliolisk": 3.249031675606337, - "tyrantrum": 1.4126171483661791, - "aurorus": 2.5503370815498787, - "hawlucha": 4.437202685658178, - "dedenne": 2.0296364311691626, - "klefki": 2.969361312263225, - "trevenant": 3.144461291946708, - "gourgeist-average": 6.9106935125808935, - "charjabug": 3.6242652768864114, - "vikavolt": 1.4630501256795072, - "ribombee": 3.9362392439047724, - "lycanroc-midday": 3.363582379177949, - "lycanroc-midnight": 2.3174140680065705, - "mudsdale": 1.3723670354153286, - "araquanid": 3.350901296281015, - "lurantis": 2.2432236068943245, - "shiinotic": 3.9515403345882834, - "salazzle": 3.291828871585337, - "bewear": 1.7099489843234799, - "tsareena": 3.223503927607226, - "comfey": 4.251224666174626, - "oranguru": 3.7914824216181944, - "passimian": 2.0705114051864753, - "palossand": 2.3643918664212515, - "pyukumuku": 60.82202191714913, - "togedemaru": 2.129633353054674, - "mimikyu-disguised": 4.655533179125627, - "greedent": 2.278684807443015, - "orbeetle": 1.9631977168940193, - "thievul": 2.131795947821422, - "eldegoss": 4.074915127306521, - "dubwool": 2.7069580140866263, - "drednaw": 1.5636460903481546, - "boltund": 4.648247309899515, - "carkol": 2.2878273119446506, - "coalossal": 1.871135095142415, - "sandaconda": 2.5313304636429272, - "cramorant": 14.65514170998807, - "barraskewda": 6.391530462205262, - "toxtricity-amped": 2.3649579569420656, - "centiskorch": 2.0729385787879058, - "grapploct": 1.503593816123732, - "polteageist": 3.421535350942831, - "hatterene": 2.672673732251363, - "grimmsnarl": 4.068909129547903, - "obstagoon": 2.628090217518597, - "perrserker": 3.474529012282485, - "alcremie": 1.3078011291491234, - "falinks": 2.601482134961782, - "pincurchin": 2.82383332035263, - "frosmoth": 2.37796632474521, - "indeedee-male": 4.022605740416006, - "copperajah": 2.4790272118710357, - "duraludon": 1.6183795714361635, - "drakloak": 5.580672637266657, - "morpeko": 2.540933782668386 + "ivysaur": 3.3184553498657547, + "charmeleon": 4.045906992098788, + "wartortle": 3.690887865064266, + "butterfree": 6.065992414202485, + "raichu": 4.308710522763181, + "raichu-alola": 4.133084262425124, + "sandslash": 1.820573393073385, + "sandslash-alola": 1.840396982509695, + "nidoqueen": 2.6296027368313615, + "nidoking": 1.7578453738734423, + "clefairy": 9.991768149198755, + "clefable": 1.660096321489518, + "jigglypuff": 24.130391038214313, + "wigglytuff": 1.7559911033657418, + "gloom": 5.162015106861376, + "vileplume": 2.74119394325613, + "dugtrio": 3.5262125310385324, + "dugtrio-alola": 2.892044773616238, + "persian": 4.065411811279761, + "persian-alola": 4.902180032801697, + "golduck": 4.28809232094493, + "poliwrath": 2.430216708407614, + "kadabra": 4.07610609823731, + "machoke": 3.655591239866614, + "tentacruel": 3.8433345353280686, + "slowbro": 2.722933163484777, + "magneton": 3.2534177150130406, + "haunter": 5.604889241746243, + "kingler": 2.9510997658672036, + "exeggutor": 2.2000497047232113, + "marowak": 2.8455199754633416, + "marowak-alola": 2.687172849804056, + "hitmonlee": 2.348611827574532, + "hitmonchan": 2.250685548731891, + "lickitung": 1.944145327084414, + "weezing": 1.5187978562451636, + "weezing-galar": 2.2621505154213972, + "rhydon": 2.0773777715551187, + "chansey": 32.00665825922654, + "tangela": 4.818117801043973, + "kangaskhan": 1.8162764542422756, + "seadra": 5.454037037460269, + "seaking": 3.464472082226885, + "starmie": 1.8581606517330855, + "mr-mime": 10.006995128068343, + "mr-mime-galar": 4.23631244725924, + "scyther": 3.6758170886532584, + "jynx": 4.692083678312665, + "electabuzz": 2.498569312693644, + "magmar": 1.8077232207295428, + "tauros": 1.758932400011605, + "ditto": 2.7668659899123362, + "vaporeon": 5.049701673873672, + "jolteon": 1.7581900230319025, + "flareon": 2.672031697735675, + "porygon": 2.9898109632109153, + "dragonair": 1.9042988651931654, + "noctowl": 9.860737815394462, + "lanturn": 1.7086058445622827, + "togetic": 7.187406201868515, + "xatu": 6.40470930319136, + "bellossom": 1.96006536863206, + "azumarill": 3.2703879020430238, + "sudowoodo": 2.1804937007615255, + "politoed": 3.54375092435024, + "quagsire": 3.913178006678244, + "slowking": 3.9629053485872436, + "dunsparce": 3.273430501579215, + "qwilfish": 4.424381509139396, + "sneasel": 2.550838862828769, + "piloswine": 1.3688882118489123, + "octillery": 3.212232236200901, + "mantine": 7.064428638678484, + "skarmory": 2.8840129920272597, + "hitmontop": 2.415570120004536, + "miltank": 3.079008217436939, + "grovyle": 7.87469962638904, + "sceptile": 1.4513709804802173, + "combusken": 3.0055698926613688, + "blaziken": 1.5265433081504687, + "marshtomp": 2.0801178436725043, + "swampert": 1.0464633596982018, + "linoone": 5.012167776064558, + "linoone-galar": 5.300386445384689, + "pelipper": 12.13823338722576, + "ninjask": 8.399973212869373, + "exploud": 1.5987800150608904, + "lairon": 2.47167793341251, + "manectric": 1.6529116661401304, + "roselia": 4.6420067143771755, + "sharpedo": 7.293259451725154, + "wailmer": 9.772813184261482, + "torkoal": 1.780216936344722, + "flygon": 3.087584106381679, + "altaria": 2.0395186022552108, + "whiscash": 1.8913390278669735, + "crawdaunt": 2.580059976493242, + "claydol": 4.065581682317643, + "cradily": 2.2978818973439967, + "armaldo": 1.5643546622126463, + "dusclops": 3.953120501056442, + "absol": 2.06784324671689, + "glalie": 4.419638147740917, + "sealeo": 4.331094837763635, + "relicanth": 2.3773681858008313, + "metang": 4.13484378751397, + "luxray": 3.566657441975142, + "vespiquen": 3.3122205341103808, + "cherrim": 5.902913774969136, + "gastrodon": 1.7613382646135731, + "drifblim": 7.768995737214036, + "lopunny": 3.605859208935917, + "skuntank": 1.5678297024690497, + "bronzong": 4.572350402908632, + "munchlax": 2.608124087534101, + "drapion": 2.3310870499565723, + "abomasnow": 2.7576964615758763, + "froslass": 3.4364906866661498, + "rotom": 4.974240349868056, + "stoutland": 2.3781030647422208, + "liepard": 6.832277765491169, + "musharna": 2.0377066450415606, + "unfezant": 9.08457740879355, + "boldore": 2.9085646830389615, + "swoobat": 9.187118150207512, + "audino": 2.1255507225411723, + "gurdurr": 1.7399787137792437, + "palpitoad": 3.150845714165153, + "seismitoad": 5.515671291819505, + "scolipede": 2.8453700533806634, + "whimsicott": 2.956688273944665, + "lilligant": 2.8217774792905272, + "basculin-red-striped": 4.002828198118665, + "basculin-blue-striped": 5.082276492880537, + "krookodile": 2.7436685009191333, + "maractus": 2.269496083087131, + "crustle": 1.692729578704514, + "sigilyph": 3.8205103376431793, + "cofagrigus": 3.8424167156673423, + "garbodor": 1.831969640657856, + "cinccino": 4.586151671479981, + "vanillish": 2.162380454309141, + "emolga": 3.660641328856004, + "escavalier": 1.6165183213880012, + "amoonguss": 2.585655626042472, + "jellicent": 2.186108795012881, + "galvantula": 1.450579977488899, + "klang": 3.0365776571071383, + "klinklang": 3.4546193340177855, + "beheeyem": 2.2070572404380653, + "lampent": 2.845684979569327, + "fraxure": 1.4186777165506785, + "beartic": 1.6559634618400425, + "cryogonal": 1.9804783157026962, + "accelgor": 2.6100512977106423, + "stunfisk": 1.2889468261416734, + "stunfisk-galar": 1.9434271461368038, + "mienshao": 3.1598103617761737, + "druddigon": 1.9332437282778907, + "golurk": 1.947289638463681, + "bisharp": 2.6111449081857314, + "bouffalant": 1.2910949459328296, + "heatmor": 1.9511816124848043, + "durant": 2.8202914235653607, + "diggersby": 2.878269012556122, + "talonflame": 4.370809454061954, + "pangoro": 1.689025162727666, + "doublade": 3.4749649654062313, + "malamar": 3.2896920299355035, + "barbaracle": 1.8302604275856043, + "heliolisk": 3.246752748506839, + "tyrantrum": 1.4103537953459373, + "aurorus": 2.5494931112371586, + "hawlucha": 4.443037828388152, + "dedenne": 2.026540836852846, + "klefki": 2.9680372928891456, + "trevenant": 3.1432481435515083, + "gourgeist-average": 6.924898353857007, + "charjabug": 3.62147010786374, + "vikavolt": 1.459024068357047, + "ribombee": 3.922372818230294, + "lycanroc-midday": 3.3647242659103336, + "lycanroc-midnight": 2.31717667901707, + "mudsdale": 1.3673433838010598, + "araquanid": 3.3517718636936644, + "lurantis": 2.2389846946300573, + "shiinotic": 3.9374852356266885, + "salazzle": 3.292187355954015, + "bewear": 1.7090934441008425, + "tsareena": 3.2247763976575166, + "comfey": 4.2451002734982755, + "oranguru": 3.8157460385422475, + "passimian": 2.06857192695084, + "palossand": 2.3615227926447435, + "pyukumuku": 60.93242066475645, + "togedemaru": 2.130729590122978, + "mimikyu-disguised": 4.666091172331247, + "greedent": 2.283419093176957, + "orbeetle": 1.9688486326944967, + "thievul": 2.1352044505201153, + "eldegoss": 4.072711619677993, + "dubwool": 2.703699791728541, + "drednaw": 1.5652766511506009, + "boltund": 4.655448347449923, + "carkol": 2.287916865234383, + "coalossal": 1.8706450818791978, + "sandaconda": 2.5202826274860475, + "cramorant": 14.716321405342168, + "barraskewda": 6.407211667095897, + "toxtricity-amped": 2.3651688177511865, + "centiskorch": 2.0711353782018977, + "grapploct": 1.499428027668916, + "polteageist": 3.4355776269267, + "hatterene": 2.676016593616461, + "grimmsnarl": 4.07037452224689, + "obstagoon": 2.6297782150169153, + "perrserker": 3.485635077365545, + "alcremie": 1.30687446298586, + "falinks": 2.5953710407533928, + "pincurchin": 2.8251353328910263, + "frosmoth": 2.3747747206810828, + "indeedee-male": 4.037153104576054, + "morpeko": 2.540933782668386, + "copperajah": 2.4813923666112068, + "duraludon": 1.620873466029298, + "drakloak": 5.593044158874143 }, "copperajah": { - "ivysaur": 4.076740659945206, - "charmeleon": 3.4082455785683443, - "wartortle": 2.514973626432127, - "butterfree": 5.850841196487951, - "raichu": 4.710834492865455, - "raichu-alola": 3.47188443707398, - "sandslash": 2.3620766215914166, - "sandslash-alola": 2.6935668633388232, - "nidoqueen": 3.1135798347199186, - "nidoking": 1.963193031060692, - "clefairy": 14.880568904743885, - "clefable": 3.8372626599667004, - "jigglypuff": 47.769153337443015, - "wigglytuff": 3.616357965812614, - "gloom": 7.306957062813085, - "vileplume": 3.6379372338976146, - "dugtrio": 4.200567471106406, - "dugtrio-alola": 3.8265734182386457, - "persian": 5.4348301549620945, - "persian-alola": 5.0417406797258195, - "golduck": 2.927344212993733, - "poliwrath": 1.6948636320703612, - "kadabra": 5.186257733055942, - "machoke": 4.232776659497567, - "tentacruel": 2.3451614196015997, - "slowbro": 1.6362906212138757, - "magneton": 3.4926738326407003, - "haunter": 5.5732104326805665, - "kingler": 2.090377537320944, - "exeggutor": 2.208703109366688, - "marowak": 3.2545269262233525, - "marowak-alola": 1.7482494941604612, - "hitmonlee": 2.586622759338928, - "hitmonchan": 2.394509415708487, - "lickitung": 2.311180486169424, - "weezing": 1.6898124818047513, - "weezing-galar": 4.022221856362974, - "rhydon": 3.2419197039053222, - "chansey": 40.16860025042175, - "tangela": 6.037001920699453, - "kangaskhan": 2.177361370461191, - "seadra": 3.9490467543618073, - "seaking": 2.3401400240929506, - "starmie": 1.4444597407341526, - "mr-mime": 12.537549078667844, - "mr-mime-galar": 6.188442787261794, - "scyther": 3.2137867592283658, - "jynx": 7.7828066497918895, - "electabuzz": 2.5363918275828072, - "magmar": 1.4874026171409631, - "tauros": 2.120695557951648, - "ditto": 4.516783441592937, - "vaporeon": 3.209701511927687, - "jolteon": 1.9593753502206779, - "flareon": 2.114290703246202, - "porygon": 3.3666867519894277, - "dragonair": 2.317338329826814, - "noctowl": 7.515700457622994, - "lanturn": 1.7858202311604328, - "togetic": 8.37292554915971, - "xatu": 4.669764222478669, - "bellossom": 2.9087079896264183, - "azumarill": 2.7343828899251736, - "sudowoodo": 3.4867784022756427, - "politoed": 2.379181381759981, - "quagsire": 4.019541273105049, - "slowking": 2.4272999484005253, - "dunsparce": 3.938771388239653, - "qwilfish": 3.2831512075066938, - "sneasel": 3.63181347391372, - "piloswine": 2.4005138139481836, - "octillery": 2.3173248788147927, - "mantine": 2.415190957346333, - "skarmory": 1.9051185382745826, - "hitmontop": 2.8696608458439004, - "miltank": 4.261027448310324, - "grovyle": 9.272363671567891, - "sceptile": 1.741041874966308, - "combusken": 2.746552950661438, - "blaziken": 1.3324964442217553, - "marshtomp": 2.271142691161034, - "swampert": 1.1660341943712733, - "linoone": 6.326180650483802, - "linoone-galar": 6.86230688557813, - "pelipper": 5.9388044073660575, - "ninjask": 8.90705294461797, - "exploud": 2.004196919018044, - "lairon": 3.1233292492537545, - "manectric": 1.6464356307642956, - "roselia": 5.102300537123534, - "sharpedo": 5.705237420579186, - "wailmer": 6.322339185121525, - "torkoal": 1.4739426760783063, - "flygon": 2.8212358702136613, - "altaria": 1.8124355078679164, - "whiscash": 1.9962147019002139, - "crawdaunt": 2.121600081181369, - "claydol": 4.090765912163226, - "cradily": 3.81655957129915, - "armaldo": 2.831536078599357, - "dusclops": 3.978015810034349, - "absol": 2.320313097751073, - "glalie": 6.5350376524431555, - "sealeo": 3.762129360733552, - "relicanth": 2.1578470100790685, - "metang": 2.7753161303709217, - "luxray": 3.665613957677442, - "vespiquen": 3.142602971515317, - "cherrim": 7.128924588496352, - "gastrodon": 2.1451095345473936, - "drifblim": 5.177786836760737, - "lopunny": 4.3807318288598704, - "skuntank": 1.6056484478910358, - "bronzong": 3.1314830726629115, - "munchlax": 3.018330407769104, - "drapion": 2.803692386071872, - "abomasnow": 5.067773823747006, - "froslass": 4.821803809359142, - "rotom": 3.3489612004754674, - "stoutland": 3.0248701567845337, - "liepard": 8.385795952021127, - "musharna": 1.8956822336561203, - "unfezant": 7.448547385522165, - "boldore": 4.749302950355908, - "swoobat": 6.69033206586331, - "audino": 2.74826816870766, - "gurdurr": 2.131962807846623, - "palpitoad": 3.4342089953840125, - "seismitoad": 6.838694550970803, - "scolipede": 3.717613791904303, - "whimsicott": 5.153360215493859, - "lilligant": 3.7012770726020587, - "basculin-red-striped": 2.650428220177905, - "basculin-blue-striped": 3.3278856120443785, - "krookodile": 3.0237962069176305, - "maractus": 2.6589183663468843, - "crustle": 3.038158617174488, - "sigilyph": 2.83696355272806, - "cofagrigus": 2.9977358330180306, - "garbodor": 2.216030586548756, - "cinccino": 5.7311609373411105, - "vanillish": 3.6233524488308992, - "emolga": 2.8296359682243346, - "escavalier": 1.6371050484111458, - "amoonguss": 3.300282739445227, - "jellicent": 1.5922835390874188, - "galvantula": 1.4798566685183205, - "klang": 3.1945786326571337, - "klinklang": 3.856924849949104, - "beheeyem": 2.209833078352884, - "lampent": 2.0045687634855556, - "fraxure": 1.8814898702806457, - "beartic": 2.7117546982173475, - "cryogonal": 3.2719959201327815, - "accelgor": 3.9815664665533994, - "stunfisk": 1.1792323793689738, - "stunfisk-galar": 2.3484416578473892, - "mienshao": 3.82307283963286, - "druddigon": 2.0982096096632756, - "golurk": 1.96415768614464, - "bisharp": 3.6319928573806006, - "bouffalant": 1.508640648897353, - "heatmor": 1.6154287390566986, - "durant": 2.8588807510611964, - "diggersby": 3.5169878855383, - "talonflame": 2.65281325720204, - "pangoro": 1.898134468833124, - "doublade": 2.1712027010718495, - "malamar": 3.2300716898761657, - "barbaracle": 1.7052552332101245, - "heliolisk": 4.461219870230011, - "tyrantrum": 2.374062465280541, - "aurorus": 5.473346373591702, - "hawlucha": 3.8677835720054854, - "dedenne": 3.708121358378106, - "klefki": 3.8396119013112964, - "trevenant": 3.4448007680127475, - "gourgeist-average": 5.371414779868486, - "charjabug": 3.4791802245092986, - "vikavolt": 1.7289327513736303, - "ribombee": 8.095708918236806, - "lycanroc-midday": 5.400589255530043, - "lycanroc-midnight": 3.5473692306353577, - "mudsdale": 1.5940958951244193, - "araquanid": 2.3330612560467814, - "lurantis": 2.921073637673012, - "shiinotic": 7.5801148411515324, - "salazzle": 2.8387896534252217, - "bewear": 2.0928524844396286, - "tsareena": 3.7408006344978695, - "comfey": 7.8768537543791854, - "oranguru": 3.368765595536479, - "passimian": 2.489203657075375, - "palossand": 2.133229289459153, - "pyukumuku": 43.93771167622084, - "togedemaru": 2.699496973893851, - "mimikyu-disguised": 7.206911607974647, - "greedent": 2.5643932493773556, - "orbeetle": 2.2388232267878254, - "thievul": 2.1224362805567583, - "eldegoss": 4.8438260755253175, - "dubwool": 3.3552334415883394, - "drednaw": 1.4957424779049298, - "boltund": 4.369602966287898, - "carkol": 2.5717142163087354, - "coalossal": 2.0630795843182117, - "sandaconda": 3.347741247598167, - "cramorant": 5.197312414672011, - "barraskewda": 4.306684569507516, - "toxtricity-amped": 2.652268397306149, - "centiskorch": 1.8478408433648736, - "grapploct": 1.7637164836016965, - "polteageist": 3.4607185818516704, - "hatterene": 4.317875598186309, - "grimmsnarl": 6.052577700435565, - "obstagoon": 3.658965154997852, - "perrserker": 3.423061280767308, - "alcremie": 2.6083392344829335, - "falinks": 3.345312519836542, - "pincurchin": 2.7048147656308816, - "frosmoth": 4.487952909463262, - "indeedee-male": 3.7486562336577007, - "morpeko": 3.0856097889812975, - "duraludon": 1.6386934688821655, - "drakloak": 5.397664321078584, - "copperajah": 2.7134333762568943 + "ivysaur": 4.0838998265795485, + "charmeleon": 3.400309017592652, + "wartortle": 2.512384374525245, + "butterfree": 5.857288707837998, + "raichu": 4.702670678100072, + "raichu-alola": 3.4693129673812475, + "sandslash": 2.3621646461940573, + "sandslash-alola": 2.697461083973488, + "nidoqueen": 3.1119274099136636, + "nidoking": 1.960410548374709, + "clefairy": 14.883645261987349, + "clefable": 3.846605082058629, + "jigglypuff": 47.892848125206015, + "wigglytuff": 3.625444159631223, + "gloom": 7.322093692225973, + "vileplume": 3.642447083937943, + "dugtrio": 4.195043621816467, + "dugtrio-alola": 3.825335916778864, + "persian": 5.444976203602857, + "persian-alola": 5.0450226581776745, + "golduck": 2.925599657259869, + "poliwrath": 1.6922169906688413, + "kadabra": 5.1903197645350305, + "machoke": 4.230631923105244, + "tentacruel": 2.3442979003219264, + "slowbro": 1.6343490197762773, + "magneton": 3.494032707761711, + "haunter": 5.575830070069076, + "kingler": 2.085382218498064, + "exeggutor": 2.2084469095649553, + "marowak": 3.2520302370190066, + "marowak-alola": 1.7442688440335334, + "hitmonlee": 2.5804937875097007, + "hitmonchan": 2.392408342855283, + "lickitung": 2.3138617728005753, + "weezing": 1.6910276163628963, + "weezing-galar": 4.029457031772514, + "rhydon": 3.244574627020055, + "chansey": 40.23965895671425, + "tangela": 6.0463945037846845, + "kangaskhan": 2.179131024235573, + "seadra": 3.947502072353754, + "seaking": 2.338573993029704, + "starmie": 1.44471427639236, + "mr-mime": 12.562158511133894, + "mr-mime-galar": 6.2009844065906, + "scyther": 3.215350031510074, + "jynx": 7.797696189333369, + "electabuzz": 2.534617512821324, + "magmar": 1.4843839382310096, + "tauros": 2.1196103993301816, + "ditto": 4.48773495812445, + "vaporeon": 3.208890277706298, + "jolteon": 1.9582726249756655, + "flareon": 2.110533199827668, + "porygon": 3.369976199151865, + "dragonair": 2.3198825637585276, + "noctowl": 7.5261014150570755, + "lanturn": 1.7840833302404508, + "togetic": 8.37401353423046, + "xatu": 4.674233251277858, + "bellossom": 2.9127442883457557, + "azumarill": 2.7376826013856164, + "sudowoodo": 3.489602840308387, + "politoed": 2.37563118981071, + "quagsire": 4.011953413668818, + "slowking": 2.425994738666913, + "dunsparce": 3.945457856866182, + "qwilfish": 3.2835733658380932, + "sneasel": 3.6396916525019942, + "piloswine": 2.4043103098564123, + "octillery": 2.317694401692251, + "mantine": 2.4141067630408406, + "skarmory": 1.9065420853848578, + "hitmontop": 2.8659612428553554, + "miltank": 4.269281194469894, + "grovyle": 9.272322767660972, + "sceptile": 1.7434775784758059, + "combusken": 2.737901545018178, + "blaziken": 1.3283170541784026, + "marshtomp": 2.268308097912512, + "swampert": 1.1642457062140852, + "linoone": 6.335104270837018, + "linoone-galar": 6.870902880440822, + "pelipper": 5.939339633114294, + "ninjask": 8.909081232428715, + "exploud": 2.005848769920541, + "lairon": 3.1316391038966724, + "manectric": 1.6444142239210777, + "roselia": 5.107645631751131, + "sharpedo": 5.706497438103151, + "wailmer": 6.321227667686983, + "torkoal": 1.4702993652569796, + "flygon": 2.823204737083011, + "altaria": 1.8120356096082761, + "whiscash": 1.9960161830063776, + "crawdaunt": 2.1215666914905005, + "claydol": 4.094769091434279, + "cradily": 3.829277863147515, + "armaldo": 2.835765403951042, + "dusclops": 3.978138385657952, + "absol": 2.321529997871834, + "glalie": 6.549361755232076, + "sealeo": 3.765968539841607, + "relicanth": 2.160360425557169, + "metang": 2.7761043695408714, + "luxray": 3.6639728226031423, + "vespiquen": 3.1425517490710755, + "cherrim": 7.137902902153769, + "gastrodon": 2.145152402592393, + "drifblim": 5.17802524236729, + "lopunny": 4.383829664618471, + "skuntank": 1.6061165020612953, + "bronzong": 3.1346324252673146, + "munchlax": 3.0214599722816207, + "drapion": 2.807190495406484, + "abomasnow": 5.080073140767546, + "froslass": 4.8300509633414235, + "rotom": 3.3441893431846275, + "stoutland": 3.030285511331506, + "liepard": 8.396184413217048, + "musharna": 1.8977006787021975, + "unfezant": 7.4612851305995775, + "boldore": 4.753678161096286, + "swoobat": 6.696755519965485, + "audino": 2.749269647999614, + "gurdurr": 2.1270527537302195, + "palpitoad": 3.4291578214265415, + "seismitoad": 6.849563644031596, + "scolipede": 3.7199065916522764, + "whimsicott": 5.166123633556926, + "lilligant": 3.7064463413884905, + "basculin-red-striped": 2.649381765634905, + "basculin-blue-striped": 3.3246227053754405, + "krookodile": 3.0222606595017547, + "maractus": 2.6624050966553026, + "crustle": 3.0432378779721483, + "sigilyph": 2.8396629485413696, + "cofagrigus": 2.998709978445881, + "garbodor": 2.218980606025676, + "cinccino": 5.742271575826247, + "vanillish": 3.632880196887159, + "emolga": 2.827612968740908, + "escavalier": 1.635089148147021, + "amoonguss": 3.30759682258987, + "jellicent": 1.5916365145435611, + "galvantula": 1.4784036160676592, + "klang": 3.1983784522071725, + "klinklang": 3.8631864020516504, + "beheeyem": 2.2111785781867086, + "lampent": 1.998432739879246, + "fraxure": 1.8843163510400796, + "beartic": 2.715369992978464, + "cryogonal": 3.2804218019948204, + "accelgor": 3.9865138813439773, + "stunfisk": 1.1768660631758068, + "stunfisk-galar": 2.34593309327032, + "mienshao": 3.8226185261554875, + "druddigon": 2.0988830897812703, + "golurk": 1.9602023357549172, + "bisharp": 3.6404484629271874, + "bouffalant": 1.5097815545422555, + "heatmor": 1.6117561147265356, + "durant": 2.859622466275337, + "diggersby": 3.515351001120813, + "talonflame": 2.648959796059552, + "pangoro": 1.8974394898150815, + "doublade": 2.169641689512748, + "malamar": 3.2307975520631818, + "barbaracle": 1.7076451734229006, + "heliolisk": 4.462401789132018, + "tyrantrum": 2.3787151793293253, + "aurorus": 5.491233409779196, + "hawlucha": 3.8656013386372186, + "dedenne": 3.7099855705194855, + "klefki": 3.847993389349231, + "trevenant": 3.4429701501969268, + "gourgeist-average": 5.364272406686304, + "charjabug": 3.471730827447014, + "vikavolt": 1.7281261275206385, + "ribombee": 8.113503178689164, + "lycanroc-midday": 5.416367363081683, + "lycanroc-midnight": 3.552144597116353, + "mudsdale": 1.5911994326753267, + "araquanid": 2.3332297805366222, + "lurantis": 2.9248807496711136, + "shiinotic": 7.596571819619056, + "salazzle": 2.8325076716787816, + "bewear": 2.095813519746406, + "tsareena": 3.7462776776188447, + "comfey": 7.896989902635834, + "oranguru": 3.3731437620546414, + "passimian": 2.488590117113582, + "palossand": 2.130613065406137, + "pyukumuku": 43.92530303749271, + "togedemaru": 2.703110074723593, + "mimikyu-disguised": 7.2159591032707775, + "greedent": 2.5693371476231754, + "orbeetle": 2.2405307303466384, + "thievul": 2.121136000759366, + "eldegoss": 4.850310198645463, + "dubwool": 3.3568041291758597, + "drednaw": 1.4975356953825494, + "boltund": 4.365683511984984, + "carkol": 2.569258810968252, + "coalossal": 2.0621988446013026, + "sandaconda": 3.347287127520664, + "cramorant": 5.190458069451475, + "barraskewda": 4.304077835161384, + "toxtricity-amped": 2.649566536067786, + "centiskorch": 1.8437681704175497, + "grapploct": 1.7602783265588813, + "polteageist": 3.4631874881273648, + "hatterene": 4.327881281872392, + "grimmsnarl": 6.054849070921212, + "obstagoon": 3.6648344594018183, + "perrserker": 3.4253807448016724, + "alcremie": 2.6109673643765903, + "falinks": 3.34442258536542, + "pincurchin": 2.7023802409879414, + "frosmoth": 4.496278248513152, + "indeedee-male": 3.7470091108550774, + "morpeko": 3.0860954147825854, + "copperajah": 2.7134333762568943, + "duraludon": 1.6406121575220416, + "drakloak": 5.39826837459148 }, "duraludon": { - "ivysaur": 3.8808992760938317, - "charmeleon": 3.5759418469404833, - "wartortle": 3.3270589144678775, - "butterfree": 5.740698390409128, - "raichu": 4.717600871236538, - "raichu-alola": 3.744078739825081, - "sandslash": 2.103367396382184, - "sandslash-alola": 2.2450991423230975, - "nidoqueen": 2.578099014486268, - "nidoking": 1.9087422793364852, - "clefairy": 13.889891387207378, - "clefable": 2.761568358074636, - "jigglypuff": 37.20411219729675, - "wigglytuff": 2.700392548933841, - "gloom": 6.168987029763031, - "vileplume": 3.32768396876805, - "dugtrio": 3.976614699002212, - "dugtrio-alola": 3.0074467824604647, - "persian": 4.817055926491975, - "persian-alola": 4.202475790427664, - "golduck": 4.24909899845923, - "poliwrath": 2.566988580943165, - "kadabra": 4.363114930310411, - "machoke": 3.978790275798512, - "tentacruel": 2.9090252372356207, - "slowbro": 2.424237005652677, - "magneton": 2.764963724261733, - "haunter": 4.8722573475575555, - "kingler": 3.7033403342320885, - "exeggutor": 2.059223105274401, - "marowak": 3.03108741477586, - "marowak-alola": 2.215715131708351, - "hitmonlee": 2.6106561287013914, - "hitmonchan": 2.3865491653831308, - "lickitung": 1.9523234436621846, - "weezing": 1.6628589617762164, - "weezing-galar": 3.1561247606964695, - "rhydon": 2.5390617182393234, - "chansey": 33.46555748450379, - "tangela": 5.099477638514612, - "kangaskhan": 1.9796182926349117, - "seadra": 6.134832845999474, - "seaking": 3.240876054669801, - "starmie": 1.7490556489862308, - "mr-mime": 11.201234204678736, - "mr-mime-galar": 4.876141193413281, - "scyther": 3.706536102510152, - "jynx": 6.501751747624101, - "electabuzz": 2.743357577314, - "magmar": 1.6234348195314359, - "tauros": 2.04123712442101, - "ditto": 1.745246773497031, - "vaporeon": 3.9090192311363037, - "jolteon": 2.0160541007559765, - "flareon": 2.2818517194191053, - "porygon": 2.9204377084147612, - "dragonair": 2.3748098556249113, - "noctowl": 7.101863059564984, - "lanturn": 2.0257767513213802, - "togetic": 7.571112382569554, - "xatu": 5.033634136657643, - "bellossom": 2.3460367691747352, - "azumarill": 3.3413370578344046, - "sudowoodo": 3.0423841405269054, - "politoed": 2.9066095323657866, - "quagsire": 3.9689829046501, - "slowking": 3.1216714876714047, - "dunsparce": 3.3304286452446568, - "qwilfish": 5.533404174142692, - "sneasel": 3.1376844945707987, - "piloswine": 1.9320564124583264, - "octillery": 3.2502521751029056, - "mantine": 4.037695414058861, - "skarmory": 3.4397849361066823, - "hitmontop": 2.695864329875646, - "miltank": 4.03002208251294, - "grovyle": 8.934614137468849, - "sceptile": 1.6361266515870065, - "combusken": 2.8443693504719807, - "blaziken": 1.5373705507297482, - "marshtomp": 2.4854597288639404, - "swampert": 1.0877912706912543, - "linoone": 5.848337845524116, - "linoone-galar": 4.589730458289398, - "pelipper": 13.483905193536021, - "ninjask": 9.720490997915956, - "exploud": 1.56895960078023, - "lairon": 3.0266681810304545, - "manectric": 1.7479468495618486, - "roselia": 4.7833496543633025, - "sharpedo": 6.814227903600897, - "wailmer": 9.073716681812405, - "torkoal": 1.8539446766139622, - "flygon": 2.9689062606824628, - "altaria": 1.8643622432938305, - "whiscash": 2.1679232105783632, - "crawdaunt": 2.935385180016869, - "claydol": 3.61797848176787, - "cradily": 3.44558542170706, - "armaldo": 2.5350901974700064, - "dusclops": 3.523755430494731, - "absol": 2.0039444522143626, - "glalie": 5.8169682642317095, - "sealeo": 3.99693754410713, - "relicanth": 2.9026688533259772, - "metang": 3.2901547690379562, - "luxray": 3.9737235126795207, - "vespiquen": 3.625464077627135, - "cherrim": 6.608445524241283, - "gastrodon": 2.3905314710908474, - "drifblim": 5.539468782595991, - "lopunny": 4.0519400850946585, - "skuntank": 1.500883807145737, - "bronzong": 3.456986115542904, - "munchlax": 2.888841279494468, - "drapion": 2.704416443677366, - "abomasnow": 4.588479400464677, - "froslass": 3.874794387592425, - "rotom": 3.4997164959120797, - "stoutland": 2.7584869710989803, - "liepard": 7.530857814017866, - "musharna": 1.728923990402346, - "unfezant": 9.547599013525613, - "boldore": 3.6314211867873962, - "swoobat": 7.219729417793426, - "audino": 2.32019689514481, - "gurdurr": 2.1517602603728005, - "palpitoad": 3.390369707223579, - "seismitoad": 7.0952820735871045, - "scolipede": 3.5059977917492526, - "whimsicott": 4.456488114957932, - "lilligant": 3.399342754530495, - "basculin-red-striped": 4.113333066791941, - "basculin-blue-striped": 5.134927894495631, - "krookodile": 2.602144804706943, - "maractus": 2.498765931258199, - "crustle": 2.6368420208945293, - "sigilyph": 3.0560196176541954, - "cofagrigus": 2.561928644143144, - "garbodor": 2.073822475540379, - "cinccino": 5.0682244731798205, - "vanillish": 2.8024528025626623, - "emolga": 3.1935180380840835, - "escavalier": 1.854776187277056, - "amoonguss": 3.117604753079867, - "jellicent": 1.7483911458552688, - "galvantula": 1.5991673413240761, - "klang": 2.866365440655054, - "klinklang": 3.833695971493399, - "beheeyem": 1.9342559630810057, - "lampent": 2.304184967507605, - "fraxure": 1.957698813064553, - "beartic": 2.14179638564435, - "cryogonal": 2.597863063978374, - "accelgor": 3.554280233061388, - "stunfisk": 1.2018106029249778, - "stunfisk-galar": 1.7008577254380863, - "mienshao": 3.299868374022718, - "druddigon": 2.4132348934258756, - "golurk": 1.7722296238854511, - "bisharp": 2.745783241126653, - "bouffalant": 1.3936970113240685, - "heatmor": 1.8713799274949796, - "durant": 3.66111119558526, - "diggersby": 3.2888939015066567, - "talonflame": 3.784984151241159, - "pangoro": 1.7731387740358042, - "doublade": 2.8469408924882185, - "malamar": 2.9695978732046813, - "barbaracle": 2.016464038780857, - "heliolisk": 3.682078624908833, - "tyrantrum": 1.919765677057337, - "aurorus": 4.824436628262174, - "hawlucha": 4.7393278079073555, - "dedenne": 2.8825874370299736, - "klefki": 3.3054559668363384, - "trevenant": 3.319156899572775, - "gourgeist-average": 4.891135311964668, - "charjabug": 3.8604435523914837, - "vikavolt": 1.765559784987607, - "ribombee": 6.607160510272529, - "lycanroc-midday": 4.897865031415156, - "lycanroc-midnight": 3.2637768009775927, - "mudsdale": 1.5053157388328922, - "araquanid": 3.2067984601016217, - "lurantis": 2.6905460581220395, - "shiinotic": 6.019167226380903, - "salazzle": 3.1513578052160343, - "bewear": 1.991872242476305, - "tsareena": 3.609990373483997, - "comfey": 6.614922666687538, - "oranguru": 3.066404509739033, - "passimian": 2.4328691303805243, - "palossand": 1.6851314895013947, - "pyukumuku": 59.92884957990757, - "togedemaru": 2.054749296812127, - "mimikyu-disguised": 6.673341443175624, - "greedent": 2.4100688840573494, - "orbeetle": 1.9694512640983972, - "thievul": 1.8707061438478219, - "eldegoss": 4.56143516738406, - "dubwool": 3.1631675581440364, - "drednaw": 1.8714770308693747, - "boltund": 4.7387302767172645, - "carkol": 2.4573706855576205, - "coalossal": 1.947903122903794, - "sandaconda": 2.7398125315617112, - "cramorant": 9.543422737588742, - "barraskewda": 6.54204943576898, - "toxtricity-amped": 2.7089624491141446, - "centiskorch": 1.9631144169350758, - "grapploct": 1.581802135370912, - "polteageist": 3.3071605526342736, - "hatterene": 3.6879015615118904, - "grimmsnarl": 5.1440645084828045, - "obstagoon": 2.7268698903385733, - "perrserker": 3.6419032046980444, - "alcremie": 2.0905300230002304, - "falinks": 3.3404462471247482, - "pincurchin": 2.9187198875499565, - "frosmoth": 3.922647005618024, - "indeedee-male": 3.4195393384809316, - "morpeko": 2.744208388112189, - "copperajah": 2.390212846747084, - "drakloak": 5.794036052827156, - "duraludon": 1.4572708584389469 + "ivysaur": 3.893839831283124, + "charmeleon": 3.5720827815538776, + "wartortle": 3.328602425316828, + "butterfree": 5.759928725811795, + "raichu": 4.703585089952253, + "raichu-alola": 3.7453628138066195, + "sandslash": 2.1030024943764607, + "sandslash-alola": 2.2465850994270955, + "nidoqueen": 2.572503320054128, + "nidoking": 1.9089470617662707, + "clefairy": 13.912185381263718, + "clefable": 2.763739573714385, + "jigglypuff": 37.20644007298167, + "wigglytuff": 2.7025495559842314, + "gloom": 6.176014331468321, + "vileplume": 3.334441341416354, + "dugtrio": 3.973599099765308, + "dugtrio-alola": 3.004042925119207, + "persian": 4.827361588362077, + "persian-alola": 4.205643052383487, + "golduck": 4.261369974867417, + "poliwrath": 2.572629768379235, + "kadabra": 4.368437331467586, + "machoke": 3.9838561540687616, + "tentacruel": 2.918070229774061, + "slowbro": 2.4279337673742285, + "magneton": 2.7633241774102593, + "haunter": 4.881435437787763, + "kingler": 3.7090953872507244, + "exeggutor": 2.0609453078665485, + "marowak": 3.029616338510216, + "marowak-alola": 2.2200060210791808, + "hitmonlee": 2.611930473444042, + "hitmonchan": 2.39087306963338, + "lickitung": 1.9540997355260163, + "weezing": 1.6659192469164887, + "weezing-galar": 3.158369846870878, + "rhydon": 2.538408726745656, + "chansey": 33.518797163999295, + "tangela": 5.111218426755629, + "kangaskhan": 1.982735615824584, + "seadra": 6.141594875629783, + "seaking": 3.2503914470147057, + "starmie": 1.751357394927295, + "mr-mime": 11.223121586069794, + "mr-mime-galar": 4.881672028525686, + "scyther": 3.719276558019181, + "jynx": 6.505122634687368, + "electabuzz": 2.744749161763862, + "magmar": 1.6232369390586707, + "tauros": 2.042698766379988, + "ditto": 1.7369390013212138, + "vaporeon": 3.9175672373545236, + "jolteon": 2.013724735814807, + "flareon": 2.280737781910113, + "porygon": 2.9228941659127265, + "dragonair": 2.378184721921259, + "noctowl": 7.125820017737459, + "lanturn": 2.0232856431613384, + "togetic": 7.584406723347014, + "xatu": 5.045936624009805, + "bellossom": 2.3478438272471336, + "azumarill": 3.3545452801499858, + "sudowoodo": 3.046778906461672, + "politoed": 2.9069826266685124, + "quagsire": 3.957490225433016, + "slowking": 3.1291413255470526, + "dunsparce": 3.333481077518277, + "qwilfish": 5.557988565538177, + "sneasel": 3.143449792164736, + "piloswine": 1.9325341105821763, + "octillery": 3.259351917626324, + "mantine": 4.0523707601784364, + "skarmory": 3.452715972288466, + "hitmontop": 2.696749843953995, + "miltank": 4.039297769901426, + "grovyle": 8.947104776087103, + "sceptile": 1.6401087676520947, + "combusken": 2.8380015538420045, + "blaziken": 1.5370252368264947, + "marshtomp": 2.484826306197024, + "swampert": 1.0843321626401123, + "linoone": 5.863142558036863, + "linoone-galar": 4.591832358303963, + "pelipper": 13.537266743995747, + "ninjask": 9.745356729784689, + "exploud": 1.5677457770364358, + "lairon": 3.0339436703369334, + "manectric": 1.7456837277816648, + "roselia": 4.793849556674029, + "sharpedo": 6.830584459333299, + "wailmer": 9.099973642905134, + "torkoal": 1.8533683700638162, + "flygon": 2.9703092685936103, + "altaria": 1.8645813349746003, + "whiscash": 2.1692697192650434, + "crawdaunt": 2.9423255904680894, + "claydol": 3.6191530228121325, + "cradily": 3.457150806715603, + "armaldo": 2.54217315372593, + "dusclops": 3.529266523535512, + "absol": 2.0060881389520064, + "glalie": 5.831395369232345, + "sealeo": 4.003291919606663, + "relicanth": 2.912346812193114, + "metang": 3.297865253509126, + "luxray": 3.977701169864031, + "vespiquen": 3.636143852831188, + "cherrim": 6.620923983145056, + "gastrodon": 2.3940344741644903, + "drifblim": 5.5553324881880535, + "lopunny": 4.059622309906377, + "skuntank": 1.5043437990873794, + "bronzong": 3.465957445272556, + "munchlax": 2.8987504503805424, + "drapion": 2.712501044920147, + "abomasnow": 4.599272363579471, + "froslass": 3.8793458020437246, + "rotom": 3.4993930617649465, + "stoutland": 2.765582516601619, + "liepard": 7.544168231502603, + "musharna": 1.7328036508431133, + "unfezant": 9.587234382561615, + "boldore": 3.636148592335321, + "swoobat": 7.237554354614918, + "audino": 2.32057988594725, + "gurdurr": 2.150510180245297, + "palpitoad": 3.3819802220835524, + "seismitoad": 7.105485134047388, + "scolipede": 3.515418108256931, + "whimsicott": 4.465027864759217, + "lilligant": 3.4057617958511917, + "basculin-red-striped": 4.127222573438605, + "basculin-blue-striped": 5.148523260814841, + "krookodile": 2.596340981085484, + "maractus": 2.504850872196081, + "crustle": 2.643906821678999, + "sigilyph": 3.0634310301141925, + "cofagrigus": 2.563261493709625, + "garbodor": 2.0809535351434305, + "cinccino": 5.078917833964842, + "vanillish": 2.8033577255743607, + "emolga": 3.1996868200646764, + "escavalier": 1.8565129403491163, + "amoonguss": 3.1290115958393825, + "jellicent": 1.7513060640154552, + "galvantula": 1.599900020765356, + "klang": 2.8691721391870804, + "klinklang": 3.8427918986730223, + "beheeyem": 1.935978565668472, + "lampent": 2.3047039474266366, + "fraxure": 1.9620166430113413, + "beartic": 2.1425718313291973, + "cryogonal": 2.6007076388562043, + "accelgor": 3.5618189667536155, + "stunfisk": 1.1983722143390432, + "stunfisk-galar": 1.6941605814508864, + "mienshao": 3.2997360258060224, + "druddigon": 2.419042875726601, + "golurk": 1.7695607510770723, + "bisharp": 2.75117052162716, + "bouffalant": 1.3966150375448916, + "heatmor": 1.8727661907217446, + "durant": 3.6699143740678872, + "diggersby": 3.287521106792194, + "talonflame": 3.7909987258909705, + "pangoro": 1.774729365041448, + "doublade": 2.851760942530469, + "malamar": 2.973540601677126, + "barbaracle": 2.022826105482064, + "heliolisk": 3.6800745141549998, + "tyrantrum": 1.9237322815145972, + "aurorus": 4.837964426078725, + "hawlucha": 4.750628588623029, + "dedenne": 2.880495858137925, + "klefki": 3.310605548424342, + "trevenant": 3.325551101213931, + "gourgeist-average": 4.8917570512307424, + "charjabug": 3.8625508162073565, + "vikavolt": 1.7657618470183825, + "ribombee": 6.612767403974827, + "lycanroc-midday": 4.915607500355704, + "lycanroc-midnight": 3.27158442681763, + "mudsdale": 1.5034225109775066, + "araquanid": 3.220503489240823, + "lurantis": 2.695481851655667, + "shiinotic": 6.016523103585723, + "salazzle": 3.1521957757129373, + "bewear": 1.9967581190001753, + "tsareena": 3.6207772333747608, + "comfey": 6.62543652920073, + "oranguru": 3.0723768888523164, + "passimian": 2.4362743901305093, + "palossand": 1.6795659858068082, + "pyukumuku": 60.021945862850814, + "togedemaru": 2.0570535874992593, + "mimikyu-disguised": 6.692314637915622, + "greedent": 2.4172186164925282, + "orbeetle": 1.9719360895201725, + "thievul": 1.8715111614935507, + "eldegoss": 4.571297745583305, + "dubwool": 3.168779221581782, + "drednaw": 1.8782262492540114, + "boltund": 4.741440363314562, + "carkol": 2.457669944544829, + "coalossal": 1.9482162321123435, + "sandaconda": 2.733411477147988, + "cramorant": 9.580157936141463, + "barraskewda": 6.559173941427028, + "toxtricity-amped": 2.7093558707977468, + "centiskorch": 1.9617767604576035, + "grapploct": 1.579490267537646, + "polteageist": 3.318515077884175, + "hatterene": 3.6950187910630654, + "grimmsnarl": 5.142984353727845, + "obstagoon": 2.7313428542013583, + "perrserker": 3.6478551552737755, + "alcremie": 2.092241820137943, + "falinks": 3.344835343527638, + "pincurchin": 2.920266127725422, + "frosmoth": 3.93010635594184, + "indeedee-male": 3.420385795138403, + "morpeko": 2.745056554235099, + "copperajah": 2.3916659140497125, + "duraludon": 1.4572708584389469, + "drakloak": 5.802211488736954 }, "drakloak": { - "ivysaur": 3.3172781004152254, - "charmeleon": 3.6279574994994586, - "wartortle": 2.6094459430807695, - "butterfree": 4.8678573566399646, - "raichu": 5.786938016513297, - "raichu-alola": 3.800008153634585, - "sandslash": 2.1104402581820425, - "sandslash-alola": 1.7787743913613814, - "nidoqueen": 2.3939386523389787, - "nidoking": 1.6441571385947973, - "clefairy": 8.520673829996099, - "clefable": 1.277233543761628, - "jigglypuff": 16.046618135963385, - "wigglytuff": 1.1796298184781167, - "gloom": 4.82424856519863, - "vileplume": 3.0162638284724705, - "dugtrio": 3.4273641880895847, - "dugtrio-alola": 2.6950537990300454, - "persian": 4.413942773951062, - "persian-alola": 3.037834784396482, - "golduck": 3.2681495002480436, - "poliwrath": 2.080115407285816, - "kadabra": 3.521841115026856, - "machoke": 3.5380709406636677, - "tentacruel": 2.5995779911411354, - "slowbro": 2.022456182964057, - "magneton": 2.885400957111199, - "haunter": 4.428805286515407, - "kingler": 2.619438906568213, - "exeggutor": 2.220804730964571, - "marowak": 2.515194511453192, - "marowak-alola": 2.2771178162879067, - "hitmonlee": 2.938047841890598, - "hitmonchan": 2.1095643280779237, - "lickitung": 1.701264330981553, - "weezing": 1.495011648174863, - "weezing-galar": 2.245931438066032, - "rhydon": 2.1184976414752, - "chansey": 35.9888627024473, - "tangela": 5.387960341549382, - "kangaskhan": 1.5737290658612086, - "seadra": 3.922004653653416, - "seaking": 2.4071466936078143, - "starmie": 1.2863276839915716, - "mr-mime": 6.4928357127857925, - "mr-mime-galar": 2.9955820698436613, - "scyther": 2.439103431261074, - "jynx": 4.016005665059243, - "electabuzz": 2.835590873051958, - "magmar": 1.837134117020542, - "tauros": 1.906153916613746, - "ditto": 5.114906296795807, - "vaporeon": 3.619322078738623, - "jolteon": 2.0467902976841517, - "flareon": 2.4520693511619402, - "porygon": 2.49827436188672, - "dragonair": 1.770450971789626, - "noctowl": 6.381007789645521, - "lanturn": 2.034446907260762, - "togetic": 4.233829391136456, - "xatu": 4.014686919499267, - "bellossom": 1.8092174392218041, - "azumarill": 1.8263218391124267, - "sudowoodo": 2.449693992811034, - "politoed": 2.6605694017800103, - "quagsire": 4.813406489824079, - "slowking": 2.407855340795489, - "dunsparce": 2.639261961829292, - "qwilfish": 3.3356109805474228, - "sneasel": 1.7714666510342119, - "piloswine": 1.2441609763013972, - "octillery": 2.3001985088727688, - "mantine": 2.5773202377223714, - "skarmory": 1.8129263053740354, - "hitmontop": 2.506308672130552, - "miltank": 3.2144671289188436, - "grovyle": 8.742638148014931, - "sceptile": 1.332446887628349, - "combusken": 3.6751166018118435, - "blaziken": 1.7269360779033698, - "marshtomp": 2.2638180158207053, - "swampert": 1.0412133175113287, - "linoone": 4.928384682738318, - "linoone-galar": 3.2918565013137666, - "pelipper": 6.172817899673605, - "ninjask": 7.539089450199962, - "exploud": 1.4916873280016343, - "lairon": 2.191056783770552, - "manectric": 1.8584830130013, - "roselia": 4.262603378658416, - "sharpedo": 3.9661538883273115, - "wailmer": 6.283983113421992, - "torkoal": 1.9809134685846983, - "flygon": 2.5734004253287943, - "altaria": 1.6991433094581376, - "whiscash": 2.0075948489986817, - "crawdaunt": 1.7672217741411447, - "claydol": 3.64144307319128, - "cradily": 2.2256379296766275, - "armaldo": 1.7015258138131935, - "dusclops": 3.2118587490589547, - "absol": 1.6215968901976248, - "glalie": 3.124011256055245, - "sealeo": 2.7621542751944625, - "relicanth": 1.7140403052690234, - "metang": 3.326550075233618, - "luxray": 4.134714667125822, - "vespiquen": 2.694754932619039, - "cherrim": 6.266157234054413, - "gastrodon": 2.2550349584139115, - "drifblim": 4.6607028955803, - "lopunny": 4.092202357218285, - "skuntank": 1.223644273755271, - "bronzong": 3.413887026188304, - "munchlax": 2.635189409342057, - "drapion": 1.91298552696776, - "abomasnow": 2.9162819927293437, - "froslass": 2.5154607491842444, - "rotom": 3.8392970326277513, - "stoutland": 2.89608909956846, - "liepard": 5.147804602750792, - "musharna": 1.631768013803606, - "unfezant": 5.41698317207338, - "boldore": 3.230496695896439, - "swoobat": 5.755493180330278, - "audino": 2.502098620216314, - "gurdurr": 2.383249212504605, - "palpitoad": 3.6708495874422544, - "seismitoad": 6.89099025560893, - "scolipede": 2.7214996389239365, - "whimsicott": 2.6015181715931197, - "lilligant": 3.0770321745326106, - "basculin-red-striped": 2.516746153991187, - "basculin-blue-striped": 3.232176652467147, - "krookodile": 2.2083364774385936, - "maractus": 2.089023631052168, - "crustle": 2.05236123962357, - "sigilyph": 2.433829036076475, - "cofagrigus": 2.601842882774937, - "garbodor": 1.903647305813152, - "cinccino": 4.386660587356406, - "vanillish": 1.7712895090969503, - "emolga": 3.004345642455269, - "escavalier": 1.651336371247142, - "amoonguss": 2.606982597778072, - "jellicent": 1.233857033266541, - "galvantula": 1.6088972757824274, - "klang": 2.45207224676209, - "klinklang": 3.1936201547626943, - "beheeyem": 1.7948100831326812, - "lampent": 3.1439102411253774, - "fraxure": 1.4722408424010427, - "beartic": 1.3543036435451234, - "cryogonal": 1.4124764526069635, - "accelgor": 3.2801206476742744, - "stunfisk": 1.2879597400714389, - "stunfisk-galar": 1.8960770362848698, - "mienshao": 3.646553753064769, - "druddigon": 2.0128909641711914, - "golurk": 1.9809607703201668, - "bisharp": 1.6788793354244684, - "bouffalant": 1.2662147645744593, - "heatmor": 1.9251428573034326, - "durant": 2.985173828354355, - "diggersby": 3.0295390274316407, - "talonflame": 2.738214124257139, - "pangoro": 1.5564131304079396, - "doublade": 3.3718914532149498, - "malamar": 2.3127828589012087, - "barbaracle": 1.3328544194640288, - "heliolisk": 4.099691410517867, - "tyrantrum": 1.6601480665715345, - "aurorus": 2.116547784431244, - "hawlucha": 3.1915581888390356, - "dedenne": 1.9520134836514278, - "klefki": 2.3008388422515216, - "trevenant": 3.753195119716579, - "gourgeist-average": 5.635527875239385, - "charjabug": 3.778974010239324, - "vikavolt": 1.7805715988491482, - "ribombee": 3.7656557432361213, - "lycanroc-midday": 3.11287316475119, - "lycanroc-midnight": 2.0919619013985367, - "mudsdale": 1.4468144136438914, - "araquanid": 2.5033472125876504, - "lurantis": 2.5371245132556455, - "shiinotic": 3.3082814743436266, - "salazzle": 3.2028671652835836, - "bewear": 1.817743790561421, - "tsareena": 2.9876764431371745, - "comfey": 3.496986148139456, - "oranguru": 2.577064078704808, - "passimian": 2.279370156542592, - "palossand": 2.170476912092587, - "pyukumuku": 45.65049611794161, - "togedemaru": 2.0091333672457115, - "mimikyu-disguised": 3.913439313907931, - "greedent": 2.060341666174857, - "orbeetle": 1.9828244712512637, - "thievul": 1.5359862481196371, - "eldegoss": 4.235079225298943, - "dubwool": 3.296923141913894, - "drednaw": 1.146252207823768, - "boltund": 3.983867188492556, - "carkol": 2.1813218442005464, - "coalossal": 1.8540252083836772, - "sandaconda": 2.681268728222671, - "cramorant": 5.003622466830234, - "barraskewda": 3.6012578629048213, - "toxtricity-amped": 3.1563129340725, - "centiskorch": 2.1697707419724988, - "grapploct": 1.8014849820750714, - "polteageist": 2.710103407693496, - "hatterene": 2.3934501552626664, - "grimmsnarl": 2.550748931807111, - "obstagoon": 2.2373201056566936, - "perrserker": 2.6790106377169574, - "alcremie": 0.9691028555806731, - "falinks": 3.1782541001585742, - "pincurchin": 2.930880819056478, - "frosmoth": 2.7878668171437626, - "indeedee-male": 3.055193071932587, - "morpeko": 2.3940219297378733, - "copperajah": 2.124572492204369, - "duraludon": 1.2770146920673373, + "ivysaur": 3.3199385367103345, + "charmeleon": 3.623886256669736, + "wartortle": 2.6086067625952243, + "butterfree": 4.870171704917894, + "raichu": 5.800297253509683, + "raichu-alola": 3.8045775547900655, + "sandslash": 2.1095773690670336, + "sandslash-alola": 1.7742936196922008, + "nidoqueen": 2.388461670356743, + "nidoking": 1.6417092507739082, + "clefairy": 8.5159341890161, + "clefable": 1.2715890122408409, + "jigglypuff": 15.927250934620009, + "wigglytuff": 1.1737728869288884, + "gloom": 4.810488881487123, + "vileplume": 3.0186128015383984, + "dugtrio": 3.4231742717587466, + "dugtrio-alola": 2.687185038880923, + "persian": 4.412222372702259, + "persian-alola": 3.0241030376042053, + "golduck": 3.2733817844164337, + "poliwrath": 2.084931066700074, + "kadabra": 3.519294406213862, + "machoke": 3.533834649252512, + "tentacruel": 2.60243851374484, + "slowbro": 2.0222243966238747, + "magneton": 2.8819982929599126, + "haunter": 4.425631348938499, + "kingler": 2.6219490915416537, + "exeggutor": 2.2222544029267155, + "marowak": 2.507797643904803, + "marowak-alola": 2.276252506824762, + "hitmonlee": 2.946862500077395, + "hitmonchan": 2.1079263536636828, + "lickitung": 1.698909462278384, + "weezing": 1.4931678504670214, + "weezing-galar": 2.238231563399578, + "rhydon": 2.1134290996432576, + "chansey": 36.12079017870761, + "tangela": 5.3934125158491115, + "kangaskhan": 1.5679414930296052, + "seadra": 3.9158911196423025, + "seaking": 2.4066584673180724, + "starmie": 1.2839899276225948, + "mr-mime": 6.478293560197656, + "mr-mime-galar": 2.989325859220241, + "scyther": 2.4348473209619503, + "jynx": 4.0048484432097355, + "electabuzz": 2.8397353989730663, + "magmar": 1.8396497537402121, + "tauros": 1.904100560229546, + "ditto": 5.086592141642681, + "vaporeon": 3.626516306809471, + "jolteon": 2.0448035790644004, + "flareon": 2.448636446157151, + "porygon": 2.4909020872933816, + "dragonair": 1.7646997829457178, + "noctowl": 6.382316698275884, + "lanturn": 2.0370567974797194, + "togetic": 4.218308883429371, + "xatu": 4.012379139720686, + "bellossom": 1.8060518336139602, + "azumarill": 1.8214151913984635, + "sudowoodo": 2.4483286698961426, + "politoed": 2.6622366009760303, + "quagsire": 4.821992898416797, + "slowking": 2.4057216674576996, + "dunsparce": 2.6277588496233726, + "qwilfish": 3.336473747558279, + "sneasel": 1.7597915700058586, + "piloswine": 1.2415359148438028, + "octillery": 2.300052543810392, + "mantine": 2.577801419190232, + "skarmory": 1.8094130448324912, + "hitmontop": 2.503104590710017, + "miltank": 3.2074441201065627, + "grovyle": 8.757407803167048, + "sceptile": 1.3320400519454059, + "combusken": 3.684019222481709, + "blaziken": 1.7299295429365449, + "marshtomp": 2.2608788405455393, + "swampert": 1.039655779618373, + "linoone": 4.919757540581099, + "linoone-galar": 3.2715347636888517, + "pelipper": 6.178477032013564, + "ninjask": 7.540191694137399, + "exploud": 1.4915896903271877, + "lairon": 2.1862835685150355, + "manectric": 1.8603237546378315, + "roselia": 4.265106099347261, + "sharpedo": 3.9468922185339785, + "wailmer": 6.281856801109436, + "torkoal": 1.9835220784951852, + "flygon": 2.5676868768274455, + "altaria": 1.6940680123012637, + "whiscash": 2.0063248787021677, + "crawdaunt": 1.7619061904065174, + "claydol": 3.6434286397915203, + "cradily": 2.224978421135844, + "armaldo": 1.7002487695869355, + "dusclops": 3.204923950847199, + "absol": 1.6162814081425807, + "glalie": 3.1084868520233844, + "sealeo": 2.7553258830793386, + "relicanth": 1.7102095735967588, + "metang": 3.3261886126803493, + "luxray": 4.142934313472454, + "vespiquen": 2.695166415450997, + "cherrim": 6.275701163021589, + "gastrodon": 2.2570866909737326, + "drifblim": 4.665319082485992, + "lopunny": 4.0981657188832425, + "skuntank": 1.218276957816341, + "bronzong": 3.412855981746083, + "munchlax": 2.6384991090894716, + "drapion": 1.9063093931158281, + "abomasnow": 2.9103256425557276, + "froslass": 2.506217409162967, + "rotom": 3.8371093692115474, + "stoutland": 2.9045807862315525, + "liepard": 5.117455356581372, + "musharna": 1.6316774778424248, + "unfezant": 5.403169473102542, + "boldore": 3.228342048842685, + "swoobat": 5.75241537055126, + "audino": 2.5000785305930795, + "gurdurr": 2.3876014939816526, + "palpitoad": 3.6702740031719188, + "seismitoad": 6.901956562108502, + "scolipede": 2.716058859419111, + "whimsicott": 2.592117429199072, + "lilligant": 3.0787427927562523, + "basculin-red-striped": 2.513281244496137, + "basculin-blue-striped": 3.227367904886771, + "krookodile": 2.1979228484442515, + "maractus": 2.088036506023957, + "crustle": 2.053377753710811, + "sigilyph": 2.432290647311228, + "cofagrigus": 2.5954077045580193, + "garbodor": 1.9065917770033258, + "cinccino": 4.379552729871067, + "vanillish": 1.7641892911023755, + "emolga": 3.0050707990579317, + "escavalier": 1.6507684336966637, + "amoonguss": 2.608665347313991, + "jellicent": 1.233119370031765, + "galvantula": 1.6100906829175532, + "klang": 2.449392277545839, + "klinklang": 3.192818961084403, + "beheeyem": 1.793211890690083, + "lampent": 3.1530171671854283, + "fraxure": 1.4684267318493536, + "beartic": 1.3509199926692559, + "cryogonal": 1.407342203136022, + "accelgor": 3.2821226022903858, + "stunfisk": 1.287601757096955, + "stunfisk-galar": 1.8911083650937757, + "mienshao": 3.653180513040475, + "druddigon": 2.0095334394678543, + "golurk": 1.9809670463766345, + "bisharp": 1.6710975621932693, + "bouffalant": 1.2653005404818511, + "heatmor": 1.9273982900244704, + "durant": 2.983796071521003, + "diggersby": 3.02441158394181, + "talonflame": 2.7365450362451575, + "pangoro": 1.5525090495471572, + "doublade": 3.3763512757622083, + "malamar": 2.3051000299109607, + "barbaracle": 1.3326085354917265, + "heliolisk": 4.10371259268068, + "tyrantrum": 1.6595631528061672, + "aurorus": 2.109603950103356, + "hawlucha": 3.1876238743159027, + "dedenne": 1.9451610494335965, + "klefki": 2.290268867205381, + "trevenant": 3.7666105594773036, + "gourgeist-average": 5.628046671759666, + "charjabug": 3.779122442778802, + "vikavolt": 1.7815052818543586, + "ribombee": 3.751591703056051, + "lycanroc-midday": 3.1096502240370363, + "lycanroc-midnight": 2.0878613911937154, + "mudsdale": 1.445782760844732, + "araquanid": 2.50614810718404, + "lurantis": 2.5405725269961996, + "shiinotic": 3.291339345916124, + "salazzle": 3.205370040367961, + "bewear": 1.81739452793501, + "tsareena": 2.9869965532077005, + "comfey": 3.483179642861641, + "oranguru": 2.571622984005857, + "passimian": 2.280113155122718, + "palossand": 2.1678223393679357, + "pyukumuku": 45.69530217139763, + "togedemaru": 2.0071535883483844, + "mimikyu-disguised": 3.9030138323776757, + "greedent": 2.0582811370185103, + "orbeetle": 1.9820808449145528, + "thievul": 1.5289884430692977, + "eldegoss": 4.240836802499072, + "dubwool": 3.3030989158977806, + "drednaw": 1.145029784523035, + "boltund": 3.9735046533588894, + "carkol": 2.1804795671521715, + "coalossal": 1.8529965958263528, + "sandaconda": 2.674199285060869, + "cramorant": 4.9917165035604985, + "barraskewda": 3.587484807854926, + "toxtricity-amped": 3.1622557284783217, + "centiskorch": 2.1716369325498386, + "grapploct": 1.8064215597633333, + "polteageist": 2.7110564348168213, + "hatterene": 2.3851215126227117, + "grimmsnarl": 2.5364457320223064, + "obstagoon": 2.230029813271399, + "perrserker": 2.6706077545416855, + "alcremie": 0.965772902294348, + "falinks": 3.180270186237667, + "pincurchin": 2.933315433787771, + "frosmoth": 2.787156468480652, + "indeedee-male": 3.0479202699553483, + "morpeko": 2.386960349596524, + "copperajah": 2.122997105010927, + "duraludon": 1.2749476012366874, "drakloak": 4.334931108394637 } } \ No newline at end of file diff --git a/data/rental_pokemon.json b/data/rental_pokemon.json index 989ac7e4..6e563192 100644 --- a/data/rental_pokemon.json +++ b/data/rental_pokemon.json @@ -322,16 +322,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 95.0, @@ -655,16 +653,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 160, 97.0, @@ -988,16 +984,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 161, 96.0, @@ -1331,16 +1325,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 73.0, @@ -1658,16 +1650,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 131.0, @@ -2001,16 +1991,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 125.0, @@ -2334,16 +2322,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 182, 144.0, @@ -2677,16 +2663,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 182, 144.0, @@ -3014,16 +2998,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 201, 134.0, @@ -3357,16 +3339,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 190, 147.0, @@ -3690,16 +3670,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 73.0, @@ -4017,16 +3995,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 208, 105.0, @@ -4360,16 +4336,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 234, 73.0, @@ -4697,16 +4671,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 266, 105.0, @@ -5040,16 +5012,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 99.0, @@ -5383,16 +5353,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 182, 118.0, @@ -5716,16 +5684,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 130, 144.0, @@ -6059,16 +6025,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 130, 144.0, @@ -6392,16 +6356,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 169, 105.0, @@ -6725,16 +6687,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 169, 92.0, @@ -7058,16 +7018,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 188, 121.0, @@ -7395,16 +7353,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 201, 138.0, @@ -7728,16 +7684,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 136, 60.0, @@ -8055,16 +8009,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 188, 144.0, @@ -8398,16 +8350,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 188, 105.0, @@ -8735,16 +8685,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 208, 112.0, @@ -9078,16 +9026,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 149, 92.0, @@ -9421,16 +9367,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 143, 79.0, @@ -9754,16 +9698,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 156, 183.0, @@ -10091,16 +10033,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 208, 138.0, @@ -10424,16 +10364,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 118.0, @@ -10767,16 +10705,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 118.0, @@ -11100,16 +11036,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 149, 170.0, @@ -11433,16 +11367,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 149, 151.0, @@ -11766,16 +11698,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 201, 86.0, @@ -12097,16 +12027,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 169, 131.0, @@ -12440,16 +12368,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 169, 131.0, @@ -12783,16 +12709,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 221, 183.0, @@ -13116,16 +13040,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 409, 21.0, @@ -13443,16 +13365,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 169, 86.0, @@ -13776,16 +13696,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 221, 138.0, @@ -14109,16 +14027,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 156, 99.0, @@ -14442,16 +14358,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 188, 134.0, @@ -14785,16 +14699,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 112.0, @@ -15128,16 +15040,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 136, 73.0, @@ -15471,16 +15381,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 149, 99.0, @@ -15814,16 +15722,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 157.0, @@ -16157,16 +16063,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 169, 79.0, @@ -16484,16 +16388,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 169, 122.0, @@ -16811,16 +16713,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 169, 138.0, @@ -17144,16 +17044,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 182, 144.0, @@ -17312,16 +17210,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 147, 77.0, @@ -17645,16 +17541,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 253, 99.0, @@ -17978,16 +17872,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 169, 99.0, @@ -18305,16 +18197,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 169, 183.0, @@ -18638,16 +18528,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 169, 92.0, @@ -18965,16 +18853,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 164, 123.0, @@ -19308,16 +19194,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 214, 79.0, @@ -19651,16 +19535,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 247, 90.0, @@ -19994,16 +19876,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 156, 66.0, @@ -20337,16 +20217,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 169, 112.0, @@ -20670,16 +20548,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 182, 118.0, @@ -21013,16 +20889,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 214, 79.0, @@ -21346,16 +21220,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 144.0, @@ -21679,16 +21551,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 201, 112.0, @@ -22022,16 +21892,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 208, 125.0, @@ -22365,16 +22233,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 208, 112.0, @@ -22686,16 +22552,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 214, 105.0, @@ -23023,16 +22887,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 169, 138.0, @@ -23354,16 +23216,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 156, 138.0, @@ -23697,16 +23557,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 214, 144.0, @@ -24024,16 +23882,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 182, 151.0, @@ -24367,16 +24223,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 195, 66.0, @@ -24710,16 +24564,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 169, 118.0, @@ -25031,16 +24883,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 149, 138.0, @@ -25364,16 +25214,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 208, 118.0, @@ -25697,16 +25545,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 149, 99.0, @@ -26030,16 +25876,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 125.0, @@ -26373,16 +26217,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 125.0, @@ -26710,16 +26552,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 188, 170.0, @@ -27053,16 +26893,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 125.0, @@ -27396,16 +27234,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 214, 157.0, @@ -27729,16 +27565,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 186, 105.0, @@ -28072,16 +27906,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 186, 105.0, @@ -28409,16 +28241,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 79.0, @@ -28746,16 +28576,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 164, 131.0, @@ -29073,16 +28901,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 219, 133.0, @@ -29410,16 +29236,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 131.0, @@ -29737,16 +29561,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 112.0, @@ -30080,16 +29902,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 149, 92.0, @@ -30417,16 +30237,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 170.0, @@ -30744,16 +30562,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 253, 105.0, @@ -31071,16 +30887,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 125.0, @@ -31414,16 +31228,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 188, 144.0, @@ -31757,16 +31569,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 182, 105.0, @@ -32100,16 +31910,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 227, 116.0, @@ -32437,16 +32245,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 166, 170.0, @@ -32780,16 +32586,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 105.0, @@ -33123,16 +32927,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 196, 120.0, @@ -33466,16 +33268,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 182, 177.0, @@ -33793,16 +33593,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 136, 105.0, @@ -34126,16 +33924,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 169, 183.0, @@ -34453,16 +34249,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 188, 118.0, @@ -34796,16 +34590,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 201, 92.0, @@ -35133,16 +34925,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 214, 131.0, @@ -35476,16 +35266,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 112.0, @@ -35803,16 +35591,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 188, 170.0, @@ -36140,16 +35926,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 118.0, @@ -36473,16 +36257,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 92.0, @@ -36810,16 +36592,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 229, 122.0, @@ -37153,16 +36933,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 279, 118.0, @@ -37486,16 +37264,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 169, 113.0, @@ -37817,16 +37593,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 218, 135.0, @@ -38154,16 +37928,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 171, 130.0, @@ -38487,16 +38259,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 260, 125.0, @@ -38824,16 +38594,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 131.0, @@ -39161,16 +38929,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 201, 134.0, @@ -39498,16 +39264,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 118.0, @@ -39841,16 +39605,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 149, 79.0, @@ -40173,16 +39935,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 195, 157.0, @@ -40505,16 +40265,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 167, 129.0, @@ -40831,16 +40589,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 235, 86.0, @@ -41167,16 +40923,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 188, 164.0, @@ -41499,16 +41253,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 151.0, @@ -41841,16 +41593,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 171, 88.0, @@ -42173,16 +41923,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 218, 92.0, @@ -42499,16 +42247,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 195, 151.0, @@ -42841,16 +42587,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 182, 99.0, @@ -43183,16 +42927,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 221, 138.0, @@ -43519,16 +43261,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 144.0, @@ -43861,16 +43601,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 101.0, @@ -44193,16 +43931,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 92.0, @@ -44525,16 +44261,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 134.0, @@ -44857,16 +44591,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 134.0, @@ -45199,16 +44931,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 208, 166.0, @@ -45531,16 +45261,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 182, 126.0, @@ -45873,16 +45601,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 151.0, @@ -46215,16 +45941,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 178, 90.0, @@ -46547,16 +46271,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 160, 79.0, @@ -46879,16 +46601,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 188, 138.0, @@ -47205,16 +46925,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 182, 138.0, @@ -47537,16 +47255,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 151, 99.0, @@ -47873,16 +47589,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 156, 112.0, @@ -48215,16 +47929,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 190.0, @@ -48557,16 +48269,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 232, 125.0, @@ -48899,16 +48609,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 214, 92.0, @@ -49241,16 +48949,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 114.0, @@ -49567,16 +49273,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 118.0, @@ -49899,16 +49603,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 144.0, @@ -50219,16 +49921,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 182, 112.0, @@ -50549,16 +50249,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 66.0, @@ -50881,16 +50579,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 170, 166.0, @@ -51213,16 +50909,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 208, 183.0, @@ -51545,16 +51239,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 188, 79.0, @@ -51877,16 +51569,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 188, 105.0, @@ -52219,16 +51909,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 226, 100.0, @@ -52553,16 +52241,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 226, 120.0, @@ -52885,16 +52571,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 169, 177.0, @@ -53205,16 +52889,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 184, 170.0, @@ -53541,16 +53223,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 200, 175.0, @@ -53883,16 +53563,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 169, 177.0, @@ -54209,16 +53887,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 208, 157.0, @@ -54541,16 +54217,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 195, 140.0, @@ -54883,16 +54557,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 160, 156.0, @@ -55225,16 +54897,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 195, 87.0, @@ -55567,16 +55237,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 186, 120.0, @@ -55903,16 +55571,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 208, 175.0, @@ -56245,16 +55911,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 161, 157.0, @@ -56581,16 +56245,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 196, 134.0, @@ -56923,16 +56585,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 178, 151.0, @@ -57265,16 +56925,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 165, 86.0, @@ -57601,16 +57259,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 191, 172.0, @@ -57943,16 +57599,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 244, 114.0, @@ -58285,16 +57939,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 186, 134.0, @@ -58627,16 +58279,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 171, 90.0, @@ -58969,16 +58619,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 158, 118.0, @@ -59311,16 +58959,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 195, 157.0, @@ -59653,16 +59299,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 169, 131.0, @@ -59995,16 +59639,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 158, 121.0, @@ -60337,16 +59979,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 184, 105.0, @@ -60679,16 +60319,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 86.0, @@ -61011,16 +60649,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 182, 164.0, @@ -61343,16 +60979,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 195, 164.0, @@ -61669,16 +61303,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 214, 177.0, @@ -62011,16 +61643,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 173, 105.0, @@ -62343,16 +61973,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 151.0, @@ -62685,16 +62313,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 73.0, @@ -63027,16 +62653,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 173, 97.0, @@ -63369,16 +62993,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 240, 177.0, @@ -63701,16 +63323,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 178, 170.0, @@ -64033,16 +63653,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 151, 82.0, @@ -64375,16 +63993,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 201, 92.0, @@ -64707,16 +64323,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 214, 170.0, @@ -65037,16 +64651,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 195, 112.0, @@ -65369,16 +64981,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 156, 92.0, @@ -65711,16 +65321,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 169, 142.0, @@ -66053,16 +65661,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 156, 131.0, @@ -66385,16 +65991,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 240, 138.0, @@ -66727,16 +66331,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 73.0, @@ -67053,16 +66655,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 90.0, @@ -67385,16 +66985,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 79.0, @@ -67711,16 +67309,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 178, 118.0, @@ -68047,16 +67643,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 201, 164.0, @@ -68373,16 +67967,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 174, 131.0, @@ -68715,16 +68307,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 188, 92.0, @@ -69049,16 +68639,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 227, 118.0, @@ -69360,16 +68948,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 178, 153.0, @@ -69700,16 +69286,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 125.0, @@ -70026,16 +69610,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 164, 174.0, @@ -70362,16 +69944,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 182, 142.0, @@ -70698,16 +70278,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 214, 164.0, @@ -71030,16 +70608,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 188, 168.0, @@ -71362,16 +70938,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 99.0, @@ -71698,16 +71272,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 158, 131.0, @@ -72040,16 +71612,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 208, 170.0, @@ -72376,16 +71946,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 205, 131.0, @@ -72701,16 +72269,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 157.0, @@ -73033,16 +72599,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 169, 92.0, @@ -73365,16 +72929,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 169, 144.0, @@ -73697,16 +73259,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 147, 146.0, @@ -74037,16 +73597,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 99.0, @@ -74373,16 +73931,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 162, 99.0, @@ -74713,16 +74269,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 160, 138.0, @@ -75039,16 +74593,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 243, 183.0, @@ -75381,16 +74933,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 175, 138.0, @@ -75723,16 +75273,14 @@ ], "HP": 1, "status": null, - "stat_modifiers": { - "py/tuple": [ - null, - 0, - 0, - 0, - 0, - 0 - ] - }, + "stat_modifiers": [ + null, + 0, + 0, + 0, + 0, + 0 + ], "stats": [ 173, 118.0, diff --git a/data/rental_pokemon_scores.json b/data/rental_pokemon_scores.json index 3636f7b9..3ecaab1f 100644 --- a/data/rental_pokemon_scores.json +++ b/data/rental_pokemon_scores.json @@ -1,228 +1,228 @@ { - "ivysaur": 3.577755189075091, - "charmeleon": 3.3252191789328966, - "wartortle": 3.2591837968114685, - "butterfree": 3.3262329806480078, - "raichu": 3.4606331100527234, - "raichu-alola": 3.697569429125355, - "sandslash": 3.903235096952128, - "sandslash-alola": 3.80356474297594, - "nidoqueen": 3.6188182997599374, - "nidoking": 4.199219514295473, - "clefairy": 2.919967375443097, - "clefable": 3.735191874480022, - "jigglypuff": 2.5526035217714473, - "wigglytuff": 3.4662644723182026, - "gloom": 3.135439419651718, - "vileplume": 3.9429497737263652, - "dugtrio": 3.4935279044071335, - "dugtrio-alola": 3.919657071423051, - "persian": 2.9916890157504294, - "persian-alola": 2.9608137577543627, - "golduck": 3.443293561464229, - "poliwrath": 3.8928973504161855, - "kadabra": 3.202429325159205, - "machoke": 3.4135212736602667, - "tentacruel": 3.7012890103931935, - "slowbro": 3.8631339225377315, - "magneton": 4.219986362909444, - "haunter": 3.698956855210065, - "kingler": 4.043095420506334, - "exeggutor": 4.18391124515897, - "marowak": 3.507232212489833, - "marowak-alola": 4.157510467862659, - "hitmonlee": 4.046903250456307, - "hitmonchan": 3.80040063993937, - "lickitung": 3.181252264706067, - "weezing": 3.52340267296331, - "weezing-galar": 3.6786643621929302, - "rhydon": 4.331262132966897, - "chansey": 2.862611682421031, - "tangela": 3.0533864128802373, - "kangaskhan": 3.732387463831492, - "seadra": 3.283537536739239, - "seaking": 3.6539950715637284, - "starmie": 3.4652336610095484, - "mr-mime": 3.365667553501714, - "mr-mime-galar": 3.3121457906285965, - "scyther": 3.6167458969632484, - "jynx": 3.5389510890090086, - "electabuzz": 3.4183503249525238, - "magmar": 3.7228633937115494, - "tauros": 3.755540788941673, - "ditto": 3.463350547934676, - "vaporeon": 3.586056521901301, - "jolteon": 3.9453770690202394, - "flareon": 3.7677143661379957, - "porygon": 3.457937165086818, - "dragonair": 3.212446676760501, - "noctowl": 3.186960194766406, - "lanturn": 3.8838395702900597, - "togetic": 3.196353718202022, - "xatu": 3.5308269502897223, - "bellossom": 3.6292805264133827, - "azumarill": 3.454105589492144, - "sudowoodo": 3.953016089252569, - "politoed": 3.5817247700412445, - "quagsire": 3.2501600836633355, - "slowking": 3.7292865168545903, - "dunsparce": 3.18602545306365, - "qwilfish": 3.6965858051691844, - "sneasel": 3.4452980872459085, - "piloswine": 3.709446284227218, - "octillery": 3.738347166240737, - "mantine": 3.8501815597247204, - "skarmory": 3.77373347238465, - "hitmontop": 3.652913784378837, - "miltank": 3.46432482317294, - "grovyle": 3.137905543979066, - "sceptile": 3.9623209315140846, - "combusken": 3.5935642903695006, - "blaziken": 4.6078342934334815, - "marshtomp": 3.61457656934376, - "swampert": 3.9576531202948897, - "linoone": 3.0810075420365792, - "linoone-galar": 3.1148061764477712, - "pelipper": 3.145494060302335, - "ninjask": 2.9395442723690848, - "exploud": 3.587063536155729, - "lairon": 3.820748463995509, - "manectric": 3.89990772726511, - "roselia": 3.7265065129337094, - "sharpedo": 3.2724713361586506, - "wailmer": 3.1251502510816267, - "torkoal": 3.5426715381587996, - "flygon": 3.7228715763600566, - "altaria": 3.386951085995006, - "whiscash": 3.482322068963051, - "crawdaunt": 3.8090420168940193, - "claydol": 3.3199554594861422, - "cradily": 3.9284221524786984, - "armaldo": 4.364558361428598, - "dusclops": 3.2900661991672178, - "absol": 3.690690963336548, - "glalie": 3.4210475752855447, - "sealeo": 3.4726114404473996, - "relicanth": 4.274521544159765, - "metang": 3.71918894825424, - "luxray": 3.6706609284240557, - "vespiquen": 3.5941558864277487, - "cherrim": 3.352005564999176, - "gastrodon": 3.6191019903935326, - "drifblim": 3.477166567404926, - "lopunny": 3.3877748269594554, - "skuntank": 3.689154649020123, - "bronzong": 3.8975379314780025, - "munchlax": 3.7132065595362627, - "drapion": 3.7910556091591827, - "abomasnow": 3.714315916274941, - "froslass": 3.6507932455032495, - "rotom": 3.7886113852814676, - "stoutland": 3.6455726485439968, - "liepard": 3.1030285213967264, - "musharna": 4.032919219431752, - "unfezant": 3.4825678304950576, - "boldore": 3.8018878368049673, - "swoobat": 3.195194649767351, - "audino": 3.274007571649873, - "gurdurr": 3.76379999217575, - "palpitoad": 3.3315069126695187, - "seismitoad": 3.0004570314904195, - "scolipede": 3.8033205203137896, - "whimsicott": 3.586778890872029, - "lilligant": 4.053107147907697, - "basculin-red-striped": 3.449150411636561, - "basculin-blue-striped": 3.399941703453298, - "krookodile": 4.033219367909212, - "maractus": 4.003604905214971, - "crustle": 4.091270556430907, - "sigilyph": 3.7835256470361607, - "cofagrigus": 3.782868854398148, - "garbodor": 3.6541591170410985, - "cinccino": 3.139761147482364, - "vanillish": 3.2113662511223544, - "emolga": 3.334842082032093, - "escavalier": 4.050401806273926, - "amoonguss": 3.7566905291301924, - "jellicent": 3.508114221800229, - "galvantula": 3.8239092961449943, - "klang": 3.52626713066362, - "klinklang": 3.681569848507804, - "beheeyem": 3.9973330351998326, - "lampent": 3.5588373406566953, - "fraxure": 3.7400613990480287, - "beartic": 3.5744182536374156, - "cryogonal": 3.8229308004171583, - "accelgor": 3.2635404241764725, - "stunfisk": 4.062705544421702, - "stunfisk-galar": 3.7512374299120634, - "mienshao": 3.643080543244809, - "druddigon": 3.846540933242367, - "golurk": 4.383129604863362, - "bisharp": 4.051243898512357, - "bouffalant": 4.177241108722719, - "heatmor": 4.400967376402421, - "durant": 3.981481830874389, - "diggersby": 3.2797569830360667, - "talonflame": 3.6737935532398756, - "pangoro": 4.489533710197347, - "doublade": 4.015712530055872, - "malamar": 3.6190317664370695, - "barbaracle": 3.791144594692774, - "heliolisk": 3.748344234202039, - "tyrantrum": 4.039164328603932, - "aurorus": 3.956416747695244, - "hawlucha": 3.445668673806659, - "dedenne": 3.596806398910458, - "klefki": 3.7939551776005853, - "trevenant": 3.9997240383652755, - "gourgeist-average": 3.2406769432535825, - "charjabug": 3.452259309994704, - "vikavolt": 4.287291692073806, - "ribombee": 3.3784960182171937, - "lycanroc-midday": 3.847708304962558, - "lycanroc-midnight": 4.130896976969801, - "mudsdale": 4.111070169690179, - "araquanid": 3.6578136474073144, - "lurantis": 3.8084691559751023, - "shiinotic": 3.440388035215474, - "salazzle": 3.7765946525202825, - "bewear": 4.152169512288014, - "tsareena": 3.9800982738917567, - "comfey": 3.3032766053236635, - "oranguru": 3.5524139556946883, - "passimian": 3.928032804802049, - "palossand": 4.059455129565014, - "pyukumuku": 2.533827531455693, - "togedemaru": 3.8189892606407674, - "mimikyu-disguised": 3.54084568495217, - "greedent": 3.713537353205626, - "orbeetle": 3.473376816265204, - "thievul": 3.3973678206637565, - "eldegoss": 3.633739850359462, - "dubwool": 3.527472349213411, - "drednaw": 4.2018838469920565, - "boltund": 3.5428741383108457, - "carkol": 3.619668941957454, - "coalossal": 3.9975807737005926, - "sandaconda": 3.4548001130495174, - "cramorant": 3.3281761372759813, - "barraskewda": 3.1896277672142825, - "toxtricity-amped": 3.7583925855050664, - "centiskorch": 3.8919308764151817, - "grapploct": 3.6571101420537127, - "polteageist": 3.896134680490971, - "hatterene": 4.07200183829747, - "grimmsnarl": 3.6146611215531035, - "obstagoon": 3.6709438280556195, - "perrserker": 3.680136397202736, - "alcremie": 3.9921581377256823, - "falinks": 3.5219987556171826, - "pincurchin": 3.6705537328021407, - "frosmoth": 3.4159562782801602, - "indeedee-male": 3.6419612351017574, - "morpeko": 3.8431863634757146, - "copperajah": 4.118195973737364, - "duraludon": 4.086567618462302, - "drakloak": 3.265819214357844 + "ivysaur": 3.5786186100480686, + "charmeleon": 3.322578319210127, + "wartortle": 3.2599782629606766, + "butterfree": 3.3230142005911913, + "raichu": 3.457070396887134, + "raichu-alola": 3.696516075818862, + "sandslash": 3.907380543076768, + "sandslash-alola": 3.806802358639943, + "nidoqueen": 3.621024226133424, + "nidoking": 4.2073616230481825, + "clefairy": 2.9121409724962115, + "clefable": 3.735686583541758, + "jigglypuff": 2.539708446245346, + "wigglytuff": 3.4671550901670196, + "gloom": 3.131596451771026, + "vileplume": 3.944531491390938, + "dugtrio": 3.486753464389486, + "dugtrio-alola": 3.9208060597641077, + "persian": 2.9878809343066943, + "persian-alola": 2.954942186645455, + "golduck": 3.4427360413100425, + "poliwrath": 3.8991751625107476, + "kadabra": 3.1944542437634533, + "machoke": 3.4103605614417645, + "tentacruel": 3.705280588765657, + "slowbro": 3.8692773118366404, + "magneton": 4.222653605439104, + "haunter": 3.6954817230321098, + "kingler": 4.045766722401212, + "exeggutor": 4.188635312382797, + "marowak": 3.508036911143109, + "marowak-alola": 4.1660758585156215, + "hitmonlee": 4.051878883869966, + "hitmonchan": 3.8054156591997708, + "lickitung": 3.180244903629259, + "weezing": 3.5283426697326057, + "weezing-galar": 3.6817806711037253, + "rhydon": 4.336089126657407, + "chansey": 2.8525045969318263, + "tangela": 3.049631014818207, + "kangaskhan": 3.7382104974457504, + "seadra": 3.2796581599576915, + "seaking": 3.6562447137519096, + "starmie": 3.4663535895516313, + "mr-mime": 3.359553759080411, + "mr-mime-galar": 3.3058989123009455, + "scyther": 3.6181668014509216, + "jynx": 3.535781337444526, + "electabuzz": 3.4169908965789655, + "magmar": 3.727174345936491, + "tauros": 3.7613712659073197, + "ditto": 3.446051918362511, + "vaporeon": 3.586317634308359, + "jolteon": 3.9478558531836763, + "flareon": 3.7670036529822206, + "porygon": 3.4590445366769846, + "dragonair": 3.211461829078799, + "noctowl": 3.1829861354851734, + "lanturn": 3.8903000223933977, + "togetic": 3.19284848304517, + "xatu": 3.528598137360752, + "bellossom": 3.6287907208136017, + "azumarill": 3.459181125421998, + "sudowoodo": 3.9561256570214622, + "politoed": 3.5836382499019734, + "quagsire": 3.24789615048619, + "slowking": 3.7303117619833337, + "dunsparce": 3.1858161005454626, + "qwilfish": 3.695606321174776, + "sneasel": 3.4464595075386337, + "piloswine": 3.7134816685558403, + "octillery": 3.7407187114502216, + "mantine": 3.852630970998138, + "skarmory": 3.779698761447987, + "hitmontop": 3.655039424508941, + "miltank": 3.463504303796099, + "grovyle": 3.129208013624237, + "sceptile": 3.9687040929021777, + "combusken": 3.5932145959195796, + "blaziken": 4.6194347971920795, + "marshtomp": 3.616544344376196, + "swampert": 3.9642865242756473, + "linoone": 3.0766308572191585, + "linoone-galar": 3.109104034551739, + "pelipper": 3.140401821213393, + "ninjask": 2.9308603157673905, + "exploud": 3.5898321978807344, + "lairon": 3.8204670092678237, + "manectric": 3.9036069353761125, + "roselia": 3.7244325509572227, + "sharpedo": 3.2666464085990086, + "wailmer": 3.1170446912680903, + "torkoal": 3.5440877297667353, + "flygon": 3.7250510066362432, + "altaria": 3.388121185253864, + "whiscash": 3.482156239147956, + "crawdaunt": 3.8094859175786366, + "claydol": 3.3190192745661853, + "cradily": 3.9329236842498587, + "armaldo": 4.371069358732509, + "dusclops": 3.2897078706854033, + "absol": 3.6918539350944957, + "glalie": 3.417232381082936, + "sealeo": 3.4710600236131515, + "relicanth": 4.282446762800834, + "metang": 3.7221458635598914, + "luxray": 3.6697250430641173, + "vespiquen": 3.5969675035909505, + "cherrim": 3.346313205141046, + "gastrodon": 3.6233211380366384, + "drifblim": 3.4771958294408627, + "lopunny": 3.3861909715669065, + "skuntank": 3.6952026867773435, + "bronzong": 3.8980858896584656, + "munchlax": 3.7191526370042074, + "drapion": 3.794879236992222, + "abomasnow": 3.714228869042604, + "froslass": 3.653249155105811, + "rotom": 3.788675429772624, + "stoutland": 3.647523220770024, + "liepard": 3.0957087438147624, + "musharna": 4.041426708477364, + "unfezant": 3.478678714416895, + "boldore": 3.8014238913226817, + "swoobat": 3.189677403448876, + "audino": 3.2736510866783965, + "gurdurr": 3.76937936182945, + "palpitoad": 3.329285761639143, + "seismitoad": 2.9964526158040776, + "scolipede": 3.802519324320781, + "whimsicott": 3.586901627721715, + "lilligant": 4.054213460064244, + "basculin-red-striped": 3.448826446105757, + "basculin-blue-striped": 3.3967205694577074, + "krookodile": 4.035359009100929, + "maractus": 4.010362744997375, + "crustle": 4.09711873725032, + "sigilyph": 3.7868078281269355, + "cofagrigus": 3.7858156251264994, + "garbodor": 3.6591627361637205, + "cinccino": 3.136679288765303, + "vanillish": 3.2081760304454434, + "emolga": 3.3320960607116863, + "escavalier": 4.057441438664975, + "amoonguss": 3.7605134845232207, + "jellicent": 3.5101820647432107, + "galvantula": 3.8283732543062374, + "klang": 3.52921278108987, + "klinklang": 3.683636773179775, + "beheeyem": 4.002611597766595, + "lampent": 3.5592600852516085, + "fraxure": 3.7438221726507956, + "beartic": 3.576001933883359, + "cryogonal": 3.825844863972948, + "accelgor": 3.2596660049421033, + "stunfisk": 4.069731508552442, + "stunfisk-galar": 3.755825699864767, + "mienshao": 3.6414283960597653, + "druddigon": 3.8523695196430037, + "golurk": 4.392800886849953, + "bisharp": 4.05725626998198, + "bouffalant": 4.190891529430881, + "heatmor": 4.408967012381079, + "durant": 3.984842766570923, + "diggersby": 3.2789101662735174, + "talonflame": 3.675933889714442, + "pangoro": 4.498986329262075, + "doublade": 4.023475765537569, + "malamar": 3.6203793901961516, + "barbaracle": 3.7971782996464274, + "heliolisk": 3.7485112096145676, + "tyrantrum": 4.0509826387340615, + "aurorus": 3.9601779670813144, + "hawlucha": 3.4450076717934497, + "dedenne": 3.5942362588366814, + "klefki": 3.79697599804055, + "trevenant": 4.003065562838948, + "gourgeist-average": 3.2378719334236643, + "charjabug": 3.4479296165348323, + "vikavolt": 4.293942468909208, + "ribombee": 3.3745555112252736, + "lycanroc-midday": 3.847059479647806, + "lycanroc-midnight": 4.135622983308905, + "mudsdale": 4.119929235420899, + "araquanid": 3.6616360195983453, + "lurantis": 3.811658729590916, + "shiinotic": 3.4378895588099616, + "salazzle": 3.775611679877203, + "bewear": 4.15862284500402, + "tsareena": 3.9805832338373466, + "comfey": 3.300568114909494, + "oranguru": 3.554480110200127, + "passimian": 3.9313521062673087, + "palossand": 4.065112549754215, + "pyukumuku": 2.525322999523347, + "togedemaru": 3.822420787600754, + "mimikyu-disguised": 3.540294147693431, + "greedent": 3.7178686157095138, + "orbeetle": 3.474530063163537, + "thievul": 3.3971856032127903, + "eldegoss": 3.632606778469967, + "dubwool": 3.528767843612659, + "drednaw": 4.209169209451295, + "boltund": 3.539750475386989, + "carkol": 3.6207892151480308, + "coalossal": 4.00350517337877, + "sandaconda": 3.454603711005339, + "cramorant": 3.3235714893645656, + "barraskewda": 3.1845350607060188, + "toxtricity-amped": 3.757973575021802, + "centiskorch": 3.8980231425381358, + "grapploct": 3.660074710808615, + "polteageist": 3.8998152495121845, + "hatterene": 4.07411942041316, + "grimmsnarl": 3.613501300701067, + "obstagoon": 3.673756687109596, + "perrserker": 3.6815909422917366, + "alcremie": 3.9965140931662972, + "falinks": 3.5217078685769203, + "pincurchin": 3.6681017274558556, + "frosmoth": 3.4134088536949623, + "indeedee-male": 3.641167294616705, + "morpeko": 3.8462990911293153, + "copperajah": 4.120911673805299, + "duraludon": 4.092622564626306, + "drakloak": 3.26364743796227 } \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 2cb1bc8b..b61600e9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,9 @@ -jsonpickle>=2.0.0,<3 -discord.py>=1.6.0,<2 -pytesseract>=0.3.6,<1 -pokebase>=1.3.0,<2 -opencv_python>=4.4.0.44,<5 -pyenchant>=3.2.0,<4 -pyserial>=3.5,<4 -toml>=0.10.2,<1 +crccheck>=1.0,<2 +jsonpickle>=2.0.0,<3 +discord.py>=1.6.0,<2 +pytesseract>=0.3.6,<1 +pokebase>=1.3.0,<2 +opencv_python>=4.4.0.44,<5 +pyenchant>=3.2.0,<4 +pyserial>=3.5,<4 +toml>=0.10.2,<1 diff --git a/scripts/OpenCV_demo_staticimage.py b/scripts/OpenCV_demo_staticimage.py index 481a14df..b9f6d2f8 100644 --- a/scripts/OpenCV_demo_staticimage.py +++ b/scripts/OpenCV_demo_staticimage.py @@ -1,9 +1,8 @@ from __future__ import print_function import cv2 as cv -import argparse filename = input('Filename:') max_value = 255 -max_value_H = 360//2 +max_value_H = 360 // 2 low_H = 0 low_S = 0 low_V = 0 @@ -18,65 +17,97 @@ high_H_name = 'High H' high_S_name = 'High S' high_V_name = 'High V' + + def on_low_H_thresh_trackbar(val): global low_H global high_H low_H = val - low_H = min(high_H-1, low_H) + low_H = min(high_H - 1, low_H) cv.setTrackbarPos(low_H_name, window_detection_name, low_H) + + def on_high_H_thresh_trackbar(val): global low_H global high_H high_H = val - high_H = max(high_H, low_H+1) + high_H = max(high_H, low_H + 1) cv.setTrackbarPos(high_H_name, window_detection_name, high_H) + + def on_low_S_thresh_trackbar(val): global low_S global high_S low_S = val - low_S = min(high_S-1, low_S) + low_S = min(high_S - 1, low_S) cv.setTrackbarPos(low_S_name, window_detection_name, low_S) + + def on_high_S_thresh_trackbar(val): global low_S global high_S high_S = val - high_S = max(high_S, low_S+1) + high_S = max(high_S, low_S + 1) cv.setTrackbarPos(high_S_name, window_detection_name, high_S) + + def on_low_V_thresh_trackbar(val): global low_V global high_V low_V = val - low_V = min(high_V-1, low_V) + low_V = min(high_V - 1, low_V) cv.setTrackbarPos(low_V_name, window_detection_name, low_V) + + def on_high_V_thresh_trackbar(val): global low_V global high_V high_V = val - high_V = max(high_V, low_V+1) + high_V = max(high_V, low_V + 1) cv.setTrackbarPos(high_V_name, window_detection_name, high_V) + + cap = cv.imread(filename) cv.namedWindow(window_capture_name) cv.namedWindow(window_detection_name) -cv.createTrackbar(low_H_name, window_detection_name , low_H, max_value_H, on_low_H_thresh_trackbar) -cv.createTrackbar(high_H_name, window_detection_name , high_H, max_value_H, on_high_H_thresh_trackbar) -cv.createTrackbar(low_S_name, window_detection_name , low_S, max_value, on_low_S_thresh_trackbar) -cv.createTrackbar(high_S_name, window_detection_name , high_S, max_value, on_high_S_thresh_trackbar) -cv.createTrackbar(low_V_name, window_detection_name , low_V, max_value, on_low_V_thresh_trackbar) -cv.createTrackbar(high_V_name, window_detection_name , high_V, max_value, on_high_V_thresh_trackbar) +cv.createTrackbar( + low_H_name, window_detection_name, low_H, max_value_H, + on_low_H_thresh_trackbar +) +cv.createTrackbar( + high_H_name, window_detection_name, high_H, max_value_H, + on_high_H_thresh_trackbar +) +cv.createTrackbar( + low_S_name, window_detection_name, low_S, max_value, + on_low_S_thresh_trackbar +) +cv.createTrackbar( + high_S_name, window_detection_name, high_S, max_value, + on_high_S_thresh_trackbar +) +cv.createTrackbar( + low_V_name, window_detection_name, low_V, max_value, + on_low_V_thresh_trackbar +) +cv.createTrackbar( + high_V_name, window_detection_name, high_V, max_value, + on_high_V_thresh_trackbar +) while True: - + frame = cap - #frame = cv.imread('best_match11.png') + # frame = cv.imread('best_match11.png') if frame is None: print('No frame found!') break frame_HSV = cv.cvtColor(frame, cv.COLOR_BGR2HSV) - frame_threshold = cv.inRange(frame_HSV, (low_H, low_S, low_V), (high_H, high_S, high_V)) - - + frame_threshold = cv.inRange( + frame_HSV, (low_H, low_S, low_V), (high_H, high_S, high_V)) + cv.imshow(window_capture_name, frame) cv.imshow(window_detection_name, frame_threshold) - + key = cv.waitKey(30) if key == ord('q') or key == 27: break diff --git a/scripts/auto_gift_pokemon.py b/scripts/auto_gift_pokemon.py new file mode 100644 index 00000000..3e09a416 --- /dev/null +++ b/scripts/auto_gift_pokemon.py @@ -0,0 +1,203 @@ +"""Script for soft resetting to get 0 Atk IVs on gift Pokemon + +This script was developed for the Poipole available in the Max Lair and may not +work for other gift Pokemon. + +Instructions: +1. Your Pokemon icon must be in its default position in the menu (top row, + second column). +2. Navigate to a box in your PC that has an opening in the default cursor + position (top left corner of the box). +3. Press the '+' button until the IVs of Pokemon in your boxes are shown. +4. Have your party full. +5. Save directly in front of the Poipole. +6. Connect the microcontroller, serial connection, and capture card, then start + the script. +""" + +import logging +import os +import sys +from datetime import datetime +from typing import Dict, Callable, Optional, TypeVar + +import pytesseract +import toml + +# We need to import some class definitions from the parent directory. +from os.path import dirname, abspath +base_dir = dirname(dirname(abspath(__file__))) +sys.path.insert(1, base_dir) +sys.path.insert(1, os.path.join(base_dir, 'automaxlair')) + +import automaxlair + +Image = TypeVar('cv2 image') + + +# load configuration from the config file +try: + config = toml.load("Config.toml") +except FileNotFoundError: + raise FileNotFoundError( + "The Config.toml file was not found! Be sure to copy " + "Config.sample.toml as Config.toml and edit it!") +except: # noqa: E722 + raise SyntaxError( + "Something went wrong parsing Config.toml\n" + "Please make sure you entered the information right " + "and did not modify \" or . symbols or have uppercase true or false " + "in the settings.") + +COM_PORT = config['COM_PORT'] +VIDEO_INDEX = config['VIDEO_INDEX'] +VIDEO_EXTRA_DELAY = config['advanced']['VIDEO_EXTRA_DELAY'] +pytesseract.pytesseract.tesseract_cmd = config['TESSERACT_PATH'] +ENABLE_DEBUG_LOGS = config['advanced']['ENABLE_DEBUG_LOGS'] + +# Set the log name +LOG_NAME = f"auto_gift_pokemon_{datetime.now().strftime('%Y-%m-%d %H-%M-%S')}" + + +class AutoGiftPokemonController( + automaxlair.switch_controller.SwitchController +): + """Switch controller specific to resetting for 0 Atk gift Pokemon.""" + def __init__( + self, + config_, + log_name: str, + actions: Dict[str, Callable] + ) -> None: + + # Call base class constructor. + super().__init__(config_, log_name, actions) + + self.resets = 0 + + # Rectangles for OCR and display + self.IV_atk_rect = ((0.78, 0.25), (0.9, 0.30)) + self.IV_spa_rect = ((0.78, 0.35), (0.9, 0.4)) + + def get_frame( + self, + rectangle_set: Optional[str] = None, + resize: bool = False + ) -> Image: + """Get an annotated image of the current Switch output.""" + + # Get the base image from the base class method. + img = super().get_frame(resize=resize) + if rectangle_set is not None: + self.outline_region(img, self.IV_atk_rect, (0, 255, 0)) + + return img + + def display_results(self, log: bool = False, screenshot: bool = False): + """Display video from the Switch alongside some annotations describing + the run sequence. + """ + + # Construct the dictionary that will be displayed by the base method. + for key, value in { + 'Resets': self.resets, + }.items(): + self.info[key] = value + + # Call the base display method. + super().display_results( + image=self.get_frame( + rectangle_set=self.stage, resize=True), log=log, + screenshot=screenshot) + + +def initialize(ctrlr) -> None: + """Executed once at the beginning of the sequence.""" + # assume we're starting from the select controller menu, connect, then + # press home twice to return to the game + ctrlr.push_buttons( + (b'a', 2), (b'h', 2.0), (b'h', 2.0), (b'b', 1.5), (b'b', 1.5) + ) + return 'loop' + + +def loop(ctrlr) -> None: + """Main sequence that is repeated once per cycle.""" + # Take the gift Pokemon and navigate to its IV summary. + ctrlr.push_buttons( + (b'b', 1), (b'a', 1), (b'a', 1), (b'a', 1), (b'a', 1), (b'a', 1), + (b'a', 1), (b'a', 1), (b'a', 1), (b'a', 1), (b'a', 1), (b'a', 1), + (b'a', 1), (b'a', 1), (b'a', 1), (b'a', 1), (b'a', 1), (b'a', 1), + (b'x', 1.5), (b'>', 0.5), (b'a', 2), + (b'r', 3 + VIDEO_EXTRA_DELAY)) + + # Check the Atk IV and quit if it's 0 ("No good") + IV_text = ctrlr.read_text(ctrlr.get_frame(), ctrlr.IV_atk_rect) + if 'nogood' in IV_text.lower().replace(' ', ''): + ctrlr.log('********** Found 0 Atk target! **********') + return None + ctrlr.resets += 1 + ctrlr.log(f'IV text detected as {IV_text}. Moving to reset {ctrlr.resets}') + + # Otherwise, reset the game and try again. + ctrlr.push_buttons( + (b'h', 3), (b'x', 1), (b'a', 3), (b'a', 1), (b'a', 20), (b'a', 4) + ) + return 'loop' + + +def main(log_name: str) -> None: + """Entry point for the sequence.""" + + actions = {'initialize': initialize, 'loop': loop} + + controller = AutoGiftPokemonController(config, log_name, actions) + + controller.event_loop() + + +def exception_handler(exception_type, exception_value, exception_traceback): + """Exception hook to ensure exceptions get logged.""" + logger.error( + 'Exception occurred:', + exc_info=(exception_type, exception_value, exception_traceback) + ) + + +if __name__ == '__main__': + # Set up the logger + + # Configure the logger. + logger = logging.getLogger(LOG_NAME) + logger.setLevel(logging.DEBUG if ENABLE_DEBUG_LOGS else logging.INFO) + formatter = logging.Formatter( + '%(asctime)s | %(levelname)s: %(message)s' + ) + + # make the console formatter easier to read with fewer bits of info + console_formatter = logging.Formatter( + "%(asctime)s | %(levelname)s: %(message)s", "%H:%M:%S" + ) + + # Configure the console, which will print logged information. + console = logging.StreamHandler() + console.setLevel(logging.DEBUG if ENABLE_DEBUG_LOGS else logging.INFO) + console.setFormatter(console_formatter) + + # Configure the file handler, which will save logged information. + fileHandler = logging.FileHandler( + filename=os.path.join(base_dir, 'logs', LOG_NAME + '.log'), + encoding="UTF-8" + ) + fileHandler.setFormatter(formatter) + fileHandler.setLevel(logging.DEBUG if ENABLE_DEBUG_LOGS else logging.INFO) + + # Add the handlers to the logger so that it will both print messages to + # the console as well as save them to a log file. + logger.addHandler(console) + logger.addHandler(fileHandler) + logger.info('Starting new series: %s.', LOG_NAME) + + # Call main + sys.excepthook = exception_handler + main(LOG_NAME) diff --git a/scripts/build_all_data_files.py b/scripts/build_all_data_files.py index 3b2152b7..6910dd42 100644 --- a/scripts/build_all_data_files.py +++ b/scripts/build_all_data_files.py @@ -1,14 +1,33 @@ +import time +import package_ball import package_pokemon +import package_pokemon_sprites import score_pokemon -import time +import get_good_color_discord + if __name__ == '__main__': + start = time.time() + package_ball.main() + end = time.time() + print(f'package_ball took {end - start} s') + start = time.time() package_pokemon.main() end = time.time() - print(f'package_pokemon took {end - start}') + print(f'package_pokemon took {end - start} s') start = time.time() score_pokemon.main() end = time.time() - print(f'score_pokemon took {end - start}') + print(f'score_pokemon took {end - start} s') + + start = time.time() + package_pokemon_sprites.main() + end = time.time() + print(f'package_pokemon_sprites took {end - start} s') + + start = time.time() + get_good_color_discord.main() + end = time.time() + print(f'get_good_color_discord took {end - start} s') diff --git a/scripts/calyrex.py b/scripts/calyrex.py new file mode 100644 index 00000000..ab06fec4 --- /dev/null +++ b/scripts/calyrex.py @@ -0,0 +1,282 @@ +"""Script for soft resetting to get 0 Atk IVs calyrex + +Instructions: +1. Press the '+' button until the IVs of Pokemon in your boxes are shown. +2. Have your party missing 2 slots. +3. Save directly in front of calyrex. +4. Connect the microcontroller, serial connection, and capture card, then start + the script. +""" + +import logging +import os +import sys +import time +import cv2 +from datetime import datetime +from typing import Dict, Callable, Optional, TypeVar + +import pytesseract +import toml + +# We need to import some class definitions from the parent directory. +from os.path import dirname, abspath +base_dir = dirname(dirname(abspath(__file__))) +sys.path.insert(1, base_dir) +sys.path.insert(1, os.path.join(base_dir, 'automaxlair')) + +import automaxlair + +Image = TypeVar('cv2 image') + + +# load configuration from the config file +try: + config = toml.load("Config.toml") +except FileNotFoundError: + raise FileNotFoundError( + "The Config.toml file was not found! Be sure to copy " + "Config.sample.toml as Config.toml and edit it!") +except: # noqa: E722 + raise SyntaxError( + "Something went wrong parsing Config.toml\n" + "Please make sure you entered the information right " + "and did not modify \" or . symbols or have uppercase true or false " + "in the settings.") + +COM_PORT = config['COM_PORT'] +VIDEO_INDEX = config['VIDEO_INDEX'] +VIDEO_EXTRA_DELAY = config['advanced']['VIDEO_EXTRA_DELAY'] +pytesseract.pytesseract.tesseract_cmd = config['TESSERACT_PATH'] +ENABLE_DEBUG_LOGS = config['advanced']['ENABLE_DEBUG_LOGS'] + +# Set the log name +LOG_NAME = f"calyrex_{datetime.now().strftime('%Y-%m-%d %H-%M-%S')}" + + +class CalyrexController(automaxlair.switch_controller.SwitchController): + """Switch controller specific to resetting for 0 Atk calyrex.""" + + def __init__( + self, + config_, + log_name: str, + actions: Dict[str, Callable] + ) -> None: + + # Call base class constructor. + super().__init__(config_, log_name, actions) + + self.resets = 0 + self.checks_for_IV = 0 + self.current_balls_thrown = 0 + self.total_balls_thrown = 0 + + # Rectangles for OCR and display + self.IV_atk_rect = ((0.78, 0.25), (0.9, 0.30)) + self.battle_symbol_rect = ((0.9, 0.55), (0.99, 0.69)) + self.text_rect = ((0, 0.70), (1, 1)) + + self.misc_icons = {} + directory = self.config['pokemon_data_paths']['misc_icon_dir'] + for filename in os.listdir(directory): + if '.png' in filename: + self.misc_icons[filename.split('.png')[0]] = cv2.imread( + os.path.join(directory, filename) + ) + + def get_frame( + self, + rectangle_set: Optional[str] = None, + resize: bool = False + ) -> Image: + """Get an annotated image of the current Switch output.""" + + # Get the base image from the base class method. + img = super().get_frame(resize=resize) + if rectangle_set is not None: + self.outline_region(img, self.IV_atk_rect, (255, 0, 0)) + self.outline_region(img, self.battle_symbol_rect, (0, 255, 0)) + self.outline_region(img, self.text_rect, (0, 0, 255)) + + return img + + def display_results(self, log: bool = False, screenshot: bool = False): + """Display video from the Switch alongside some annotations describing + the run sequence. + """ + + # Construct the dictionary that will be displayed by the base method. + for key, value in { + 'Resets': self.resets, + 'Checks for IV': self.checks_for_IV, + 'Current balls thrown': self.current_balls_thrown, + 'Total balls thrown': self.total_balls_thrown, + }.items(): + self.info[key] = value + + # Call the base display method. + super().display_results( + image=self.get_frame( + rectangle_set=self.stage, resize=True), log=log, + screenshot=screenshot) + + +def initialize(ctrlr) -> None: + """Executed once at the beginning of the sequence.""" + # assume we're starting from the select controller menu, connect, then + # press home twice to return to the game + ctrlr.push_buttons( + (b'a', 2), (b'h', 2.0), (b'h', 2.0), (b'b', 1.5), (b'b', 1.5) + ) + return 'loop' + + +def loop(ctrlr) -> None: + """Main sequence that is repeated once per cycle.""" + while(True): + img = ctrlr.get_frame() + fight_menu_image = ctrlr.get_image_slice(img, ctrlr.battle_symbol_rect) + fight_match = ctrlr.match_template( + fight_menu_image, ctrlr.misc_icons['fight'])[0] + if fight_match >= 0.85: + ctrlr.log( + 'Detected "Fight" symbol with match value of ' + f'{fight_match:.3f}.', 'DEBUG') + break + else: + ctrlr.push_button(b'a', 2) + + start_time = time.time() + while(True): + img = ctrlr.get_frame() + fight_menu_image = ctrlr.get_image_slice(img, ctrlr.battle_symbol_rect) + fight_match = ctrlr.match_template( + fight_menu_image, ctrlr.misc_icons['fight'])[0] + if fight_match >= 0.85: + ctrlr.log( + 'Detected "Fight" symbol with match value of ' + f'{fight_match:.3f}.', 'DEBUG') + + # Throw a ball and then reset the timer + ctrlr.log('Throw a ball.') + ctrlr.current_balls_thrown += 1 + ctrlr.total_balls_thrown += 1 + + ctrlr.push_buttons( + (b'x', 1), (b'a', 1) + ) + start_time = time.time() + elif 'avez attrapé' in ctrlr.read_text(img, ctrlr.text_rect): + # pokemon was caught, now check it's IV + break + elif ('est K.O.' in ctrlr.read_text(img, ctrlr.text_rect)) or (time.time() - start_time > 30): + # if more than 30s passed, consider you need to reset (program locked itself, your pokemon died, etc) + ctrlr.resets += 1 + + ctrlr.log(f'Program stall for 30s. Moving to reset {ctrlr.resets}.') + ctrlr.current_balls_thrown = 0 + ctrlr.push_buttons( + (b'h', 3), (b'x', 1), (b'a', 3), (b'a', 1), (b'a', 20), (b'a', 4) + ) + return 'loop' + + for __ in range(45): + ctrlr.push_button(b'a', 1) + + ctrlr.log('Splitting calyrex and spectrier.') + ctrlr.push_buttons( + (b'x', 1.5), (b'>', 0.5), (b'>', 0.5), + (b'a', 2), (b'<', 0.5), (b'^', 0.5), + (b'a', 2), (b'a', 2), (b'^', 2), + (b'a', 2), (b'a', 2)) + + for __ in range(10): + ctrlr.push_button(b'b', 1) + + ctrlr.log('Checkin stats.') + ctrlr.push_buttons( + (b'x', 2), (b'<', 0.5), (b'a', 2), + (b'r', 3), (b'<', 1), (b'^', 1), + (b'^', 1 + VIDEO_EXTRA_DELAY)) + # Check the Atk IV and quit if it's 0 ("No good") + IV_text = ctrlr.read_text(ctrlr.get_frame(), ctrlr.IV_atk_rect) + if 'pastop' in IV_text.lower().replace(' ', ''): + ctrlr.log('********** Found 0 Atk target! **********') + return None + ctrlr.checks_for_IV += 1 + ctrlr.current_balls_thrown = 0 + ctrlr.log(f'IV text detected as {IV_text}. It was checked {ctrlr.checks_for_IV} times.') + + ctrlr.push_button(b'^', 1 + VIDEO_EXTRA_DELAY) + # Check the Atk IV and quit if it's 0 ("No good") + IV_text = ctrlr.read_text(ctrlr.get_frame(), ctrlr.IV_atk_rect) + if 'pastop' in IV_text.lower().replace(' ', ''): + ctrlr.log('********** Found 0 Atk target! **********') + return None + ctrlr.checks_for_IV += 1 + ctrlr.current_balls_thrown = 0 + ctrlr.log(f'IV text detected as {IV_text}. It was checked {ctrlr.checks_for_IV} times.') + + # Otherwise, reset the game and try again. + ctrlr.push_buttons( + (b'h', 3), (b'x', 1), (b'a', 3), (b'a', 1), (b'a', 20), (b'a', 4) + ) + return 'loop' + + +def main(log_name: str) -> None: + """Entry point for the sequence.""" + + actions = {'initialize': initialize, 'loop': loop} + + controller = CalyrexController(config, log_name, actions) + + controller.event_loop() + + +def exception_handler(exception_type, exception_value, exception_traceback): + """Exception hook to ensure exceptions get logged.""" + logger.error( + 'Exception occurred:', + exc_info=(exception_type, exception_value, exception_traceback) + ) + + +if __name__ == '__main__': + # Set up the logger + + # Configure the logger. + logger = logging.getLogger(LOG_NAME) + logger.setLevel(logging.DEBUG if ENABLE_DEBUG_LOGS else logging.INFO) + formatter = logging.Formatter( + '%(asctime)s | %(levelname)s: %(message)s' + ) + + # make the console formatter easier to read with fewer bits of info + console_formatter = logging.Formatter( + "%(asctime)s | %(levelname)s: %(message)s", "%H:%M:%S" + ) + + # Configure the console, which will print logged information. + console = logging.StreamHandler() + console.setLevel(logging.DEBUG if ENABLE_DEBUG_LOGS else logging.INFO) + console.setFormatter(console_formatter) + + # Configure the file handler, which will save logged information. + fileHandler = logging.FileHandler( + filename=os.path.join(base_dir, 'logs', LOG_NAME + '.log'), + encoding="UTF-8" + ) + fileHandler.setFormatter(formatter) + fileHandler.setLevel(logging.DEBUG if ENABLE_DEBUG_LOGS else logging.INFO) + + # Add the handlers to the logger so that it will both print messages to + # the console as well as save them to a log file. + logger.addHandler(console) + logger.addHandler(fileHandler) + logger.info('Starting new series: %s.', LOG_NAME) + + # Call main + sys.excepthook = exception_handler + main(LOG_NAME) diff --git a/scripts/custom_script_template.py b/scripts/custom_script_template.py new file mode 100644 index 00000000..14c66121 --- /dev/null +++ b/scripts/custom_script_template.py @@ -0,0 +1,186 @@ +"""Template for creating custom scripts. + +To use, edit the areas enclosed in the horizontal lines. The simplest place to +edit is in the `loop` function, which runs continuously until the program ends. + +You can run this script directly after making these modifications. +""" + +import logging +import os +import sys +from datetime import datetime +from typing import Callable, Dict, TypeVar + +import pytesseract +import toml + +# We need to import some class definitions from the parent directory. +from os.path import dirname, abspath +base_dir = dirname(dirname(abspath(__file__))) +sys.path.insert(1, base_dir) +sys.path.insert(1, os.path.join(base_dir, 'automaxlair')) + +import automaxlair # noqa: E402 +Image = TypeVar('cv2 image') + + +# load configuration from the config file +try: + config = toml.load("Config.toml") +except FileNotFoundError: + raise FileNotFoundError( + "The Config.toml file was not found! Be sure to copy " + "Config.sample.toml as Config.toml and edit it!") +except: # noqa: E722 + raise SyntaxError( + "Something went wrong parsing Config.toml\n" + "Please make sure you entered the information right " + "and did not modify \" or . symbols or have uppercase true or false " + "in the settings.") + +COM_PORT = config['COM_PORT'] +VIDEO_INDEX = config['VIDEO_INDEX'] +VIDEO_EXTRA_DELAY = config['advanced']['VIDEO_EXTRA_DELAY'] +pytesseract.pytesseract.tesseract_cmd = config['TESSERACT_PATH'] +ENABLE_DEBUG_LOGS = config['advanced']['ENABLE_DEBUG_LOGS'] + +# Set the log name +LOG_NAME = f"CUSTOM_SCRIPT_{datetime.now().strftime('%Y-%m-%d %H-%M-%S')}" + + +class CustomController(automaxlair.switch_controller.SwitchController): + """Custom Switch controller that can include any functionality you want to + add that doesn't fit in the functions below, for example extra variables + that you want to track or new methods that you plan to use often. + """ + + def __init__( + self, + config_, + log_name: str, + actions: Dict[str, Callable] + ) -> None: + # Call base class constructor. + super().__init__(config_, log_name, actions) + + # -------------------- + # Add custom initialization here. + + # -------------------- + + def get_frame( + self, + resize: bool = False + ) -> Image: + """Get an annotated image of the current Switch output.""" + + # Get the base image from the base class method. + img = super().get_frame(resize=resize) + + # -------------------- + # Add any extra image processing you want here. + + # -------------------- + + return img + + def display_results(self, log: bool = False, screenshot: bool = False): + """Display video from the Switch alongside some annotations describing + the run sequence. + """ + + # Construct the dictionary that will be displayed by the base method. + for key, value in { + # -------------------- + # You can add key: value pairs here to be displayed. + + # -------------------- + }.items(): + self.info[key] = value + + # Call the base display method. + super().display_results( + image=self.get_frame(resize=True), log=log, + screenshot=screenshot) + + +def initialize(ctrlr) -> None: + """Executed once at the beginning of the sequence.""" + # assume we're starting from the select controller menu, connect, then + # press home twice to return to the game + ctrlr.push_buttons( + (b'a', 2), (b'h', 2.0), (b'h', 2.0), (b'b', 1.5), (b'b', 1.5) + ) + return 'loop' + + +def loop(ctrlr) -> None: + """Main sequence that is repeated once per cycle. To quit, simply return + `None` at any point in this function. + """ + + # -------------------- + # Add your commands here! + + # -------------------- + + return 'loop' + + +def main(log_name: str) -> None: + """Entry point for the sequence.""" + + actions = {'initialize': initialize, 'loop': loop} + + # Replace the controller name if you renamed the custom class. + controller = CustomController(config, log_name, actions) + + controller.event_loop() + + +def exception_handler(exception_type, exception_value, exception_traceback): + """Exception hook to ensure exceptions get logged.""" + logger.error( + 'Exception occurred:', + exc_info=(exception_type, exception_value, exception_traceback) + ) + + +if __name__ == '__main__': + # Set up the logger + + # Configure the logger. + logger = logging.getLogger(LOG_NAME) + logger.setLevel(logging.DEBUG if ENABLE_DEBUG_LOGS else logging.INFO) + formatter = logging.Formatter( + '%(asctime)s | %(levelname)s: %(message)s' + ) + + # make the console formatter easier to read with fewer bits of info + console_formatter = logging.Formatter( + "%(asctime)s | %(levelname)s: %(message)s", "%H:%M:%S" + ) + + # Configure the console, which will print logged information. + console = logging.StreamHandler() + console.setLevel(logging.DEBUG if ENABLE_DEBUG_LOGS else logging.INFO) + console.setFormatter(console_formatter) + + # Configure the file handler, which will save logged information. + fileHandler = logging.FileHandler( + filename=os.path.join(base_dir, 'logs', LOG_NAME + '.log'), + encoding="UTF-8" + ) + fileHandler.setFormatter(formatter) + fileHandler.setLevel(logging.DEBUG if ENABLE_DEBUG_LOGS else logging.INFO) + + # Add the handlers to the logger so that it will both print messages to + # the console as well as save them to a log file. + logger.addHandler(console) + logger.addHandler(fileHandler) + logger.info('Starting new series: %s.', LOG_NAME) + + # Call main + sys.excepthook = exception_handler + main(LOG_NAME) diff --git a/scripts/detailed_log.py b/scripts/detailed_log.py new file mode 100644 index 00000000..1d16193d --- /dev/null +++ b/scripts/detailed_log.py @@ -0,0 +1,99 @@ +import os + +# We need to import log files from the parent directory. +from os.path import dirname, abspath +base_dir = dirname(dirname(abspath(__file__))) +log_path = os.path.join(base_dir, 'logs') +file_list = os.listdir(log_path) + +bosses = ['articuno', 'zapdos', 'moltres', 'mewtwo', 'raikou', 'entei', + 'suicune', 'lugia', 'ho-oh', 'latias', 'latios', 'kyogre', 'groudon', + 'rayquaza', 'uxie', 'mesprit', 'azelf', 'dialga', 'palkia', 'heatran', + 'giratina-altered', 'cresselia', 'tornadus-incarnate', 'thundurus-incarnate', + 'reshiram', 'zekrom', 'landorus-incarnate', 'kyurem', 'xerneas', 'yveltal', + 'zygarde-50', 'tapu-koko', 'tapu-lele', 'tapu-bulu', 'tapu-fini', 'solgaleo', + 'lunala', 'necrozma', 'nihilego', 'xurkitree', 'buzzwole', 'pheromosa', + 'celesteela', 'kartana', 'guzzlord', 'stakataka', 'blacephalon' + ] +global_losses = 0 +global_wins = 0 +global_shinies = 0 +global_legends = 0 +boss_files = {} + +for boss in bosses: + found_files = [] + for x in file_list: + if boss.lower() in x.lower() and ('.log' in x or '.txt' in x): + # add to the files found + found_files.append(x) + + if len(found_files) > 0: + boss_files[boss] = found_files + +boss_files = {key: val for key, val in boss_files.items() if len(val) > 0} +boss_order = sorted(boss_files, key=lambda x: os.path.getmtime(os.path.join(log_path, boss_files[x][0]))) + +for boss in boss_order: + logs = boss_files[boss] + total_losses = 0 + total_wins = 0 + total_shinies = 0 + shiny_names = [] + total_legends = 0 + + for log in logs: + with open(os.path.join(log_path, log), newline='\n', encoding='utf-8') as log_file: + num_losses = 0 + num_wins = 0 + num_shinies = 0 + legend_caught = 0 + for row in log_file.readlines(): + # The following lines are logged once at the end of a run. + if 'You lose' in row: + num_losses += 1 + if 'Congratulations' in row: + num_wins += 1 + if 'Shiny found' in row: + num_shinies += 1 + if 'will be kept' in row: + shiny_names.append(row.split(' will be kept')[0].split('Shiny ')[1]) + if (f'{boss} will be kept') in row: + legend_caught += 1 + + total_losses += num_losses + total_wins += num_wins + total_shinies += num_shinies + total_legends += legend_caught + + total_runs = total_losses + total_wins + win_percentage = 0 if total_runs == 0 else total_wins / total_runs * 100 + + print(f'\nSummary for {boss}') + print(f'Total loses: {total_losses}') + print(f'Total wins: {total_wins}') + print(f'Total runs: {total_runs}') + print(f'Win percentage: {win_percentage:.0f} %') + print(f'Legend odds: {total_legends} in {total_wins}') + print(f'Total shinies found: {total_shinies}') + for shiny_name in shiny_names: + print(f'{shiny_name}') + + global_wins += total_wins + global_losses += total_losses + global_shinies += total_shinies + global_legends += total_legends + +global_runs = global_losses + global_wins +global_win_percentage = 0 if global_runs == 0 else global_wins / global_runs * 100 +global_legend_odds = 0 if global_legends == 0 else global_wins / global_legends + +print('\nGlobal Summary') +print(f'Global loses: {global_losses}') +print(f'Global wins: {global_wins}') +print(f'Global runs: {global_runs}') +print(f'Global Win percentage: {global_win_percentage:.0f} %') +print(f'Global legends: {global_legends}') +print(f'Global legend odds: 1 in {global_legend_odds:.0f}') +print(f'Global shinies found: {global_shinies} \n') +input('Press ENTER to exit log...') diff --git a/scripts/get_good_color_discord.py b/scripts/get_good_color_discord.py new file mode 100644 index 00000000..342132c7 --- /dev/null +++ b/scripts/get_good_color_discord.py @@ -0,0 +1,96 @@ +import jsonpickle +import requests +from PIL import Image +import numpy as np +from os.path import abspath, dirname, join + +base_dir = dirname(dirname(abspath(__file__))) + + +def palette(img): + """ + Return palette in descending order of frequency + + Taken directly from stack overflow: https://stackoverflow.com/a/18801274 + """ + arr = np.asarray(img) + palette, index = np.unique(asvoid(arr).ravel(), return_inverse=True) + palette = palette.view(arr.dtype).reshape(-1, arr.shape[-1]) + count = np.bincount(index) + order = np.argsort(count) + return palette[order[::-1]] + + +def asvoid(arr): + """View the array as dtype np.void (bytes) + This collapses ND-arrays to 1D-arrays, + so you can perform 1D operations on them. + http://stackoverflow.com/a/16216866/190597 (Jaime) + http://stackoverflow.com/a/16840350/190597 (Jaime) + Warning: + >>> asvoid([-0.]) == asvoid([0.]) + array([False], dtype=bool) + """ + arr = np.ascontiguousarray(arr) + return arr.view(np.dtype((np.void, arr.dtype.itemsize * arr.shape[-1]))) + + +def main(): + + with open( + join(base_dir, 'data', 'boss_pokemon.json'), 'r', encoding='utf8' + ) as file: + boss_pokemon = jsonpickle.decode(file.read()) + + boss_colors = {} + + for boss_name in boss_pokemon.keys(): + # get the image from pokemondb + + url = f"https://img.pokemondb.net/sprites/home/shiny/{boss_name}.png" + img = Image.open(requests.get(url, stream=True).raw) + + the_pal = palette(img)[:10, :-1] + + # find the best color that isn't all 0's or 255's + for pal_test in the_pal: + if np.mean(pal_test) > 245 or np.mean(pal_test) < 10: + # if np.all(pal_test == np.array([0, 0, 0])) or \ + # np.all(pal_test == np.array([255, 255, 255])) or \ + # np.all(pal_test == np.array([255, 255, 255])) or \ + # np.all(pal_test == np.array([254, 254, 254])): + continue + else: + col_use = pal_test + break + + boss_colors[boss_name] = col_use.tolist() + + # NOTE: some of them were bad so i hand selected these ones + boss_colors['buzzwole'] = [72, 209, 80] + boss_colors['dialga'] = [177, 255, 177] + boss_colors['giratina-altered'] = [219, 195, 159] + boss_colors['lugia'] = [203, 106, 147] + boss_colors['lunala'] = [187, 12, 51] + boss_colors['mesprit'] = [245, 108, 128] + boss_colors['mewtwo'] = [121, 193, 99] + boss_colors['moltres'] = [230, 126, 145] + boss_colors['tapu-fini'] = [125, 153, 182] + boss_colors['tapu-bulu'] = [232, 222, 112] + boss_colors['tapu-lele'] = [255, 172, 176] + boss_colors['tapu-koko'] = [244, 160, 107] + boss_colors['thundurus-incarnate'] = [159, 174, 216] + boss_colors['tornadus-incarnate'] = [121, 159, 83] + boss_colors['xerneas'] = [34, 177, 227] + boss_colors['xurkitree'] = [129, 173, 200] + boss_colors['zygarde-50'] = [41, 186, 149] + + # then save it as a json + with open( + join(base_dir, "data", 'boss_colors.json'), 'w', encoding='utf8' + ) as f: + f.write(jsonpickle.encode(boss_colors, indent=4)) + + +if __name__ == "__main__": + main() diff --git a/scripts/import_testing.py b/scripts/import_testing.py index 41ef0459..0d8783ed 100644 --- a/scripts/import_testing.py +++ b/scripts/import_testing.py @@ -1,90 +1,220 @@ -"""Script for testing and viewing stored Pokemon and matchups.""" - -import sys -import jsonpickle - -# We need to import some class definitions from the parent directory. -from os.path import dirname, abspath -base_dir = dirname(dirname(abspath(__file__))) -sys.path.insert(1, base_dir) -sys.path.insert(1, base_dir + '\\automaxlair') - -from automaxlair import matchup_scoring # noqa: E402 - - -def main(): - with open( - base_dir + '/data/boss_pokemon.json', 'r', encoding='utf8' - ) as file: - boss_pokemon = jsonpickle.decode(file.read()) - with open( - base_dir + '/data/rental_pokemon.json', 'r', encoding='utf8' - ) as file: - rental_pokemon = jsonpickle.decode(file.read()) - with open( - base_dir + '/data/boss_matchup_LUT.json', 'r', encoding='utf8' - ) as file: - boss_matchups = jsonpickle.decode(file.read()) - with open( - base_dir + '/data/rental_matchup_LUT.json', 'r', encoding='utf8' - ) as file: - rental_matchups = jsonpickle.decode(file.read()) - with open( - base_dir + '/data/rental_pokemon_scores.json', 'r', encoding='utf8' - ) as file: - rental_scores = jsonpickle.decode(file.read()) - - # Test retrieval of a rental Pokemon - rental_pokemon['stunfisk-galar'].print_verbose() - print('________________________________________') - - # Test retrieval of a boss Pokemon - boss_pokemon['mewtwo'].print_verbose() - print('________________________________________') - - # Test retrieval of rental Pokemon matchups - print( - 'Matchup for Chansey against Golurk (poor): ' - f'{rental_matchups["chansey"]["golurk"]}') - print( - 'Matchup for Carkol against Butterfree (good): ' - f'{rental_matchups["carkol"]["butterfree"]}') - print('________________________________________') - - # Test retrieval of boss Pokemon matchups - print( - 'Matchup for Jynx against Heatran (poor): ' - f'{boss_matchups["jynx"]["heatran"]}') - print( - 'Matchup for Golurk against Raikou (good): ' - f'{boss_matchups["golurk"]["raikou"]}') - print('________________________________________') - - # Test retrieval of rental Pokemon scores - print(f'Score for Jigglypuff (poor): {rental_scores["jigglypuff"]}') - print(f'Score for Doublade (good): {rental_scores["doublade"]}') - print('________________________________________') - - # Test move selection - print('Wide Guard utility:') - matchup_scoring.print_matchup_summary( - rental_pokemon['pelipper'], boss_pokemon['groudon'], rental_pokemon - ) - salazzle = rental_pokemon['salazzle'] - print('Regular matchup:') - matchup_scoring.print_matchup_summary( - salazzle, boss_pokemon['kartana'], rental_pokemon - ) - print('Max move scores:') - salazzle.dynamax = True - matchup_scoring.print_matchup_summary( - salazzle, boss_pokemon['kartana'], rental_pokemon - ) - print('Sap Sipper:') - matchup_scoring.print_matchup_summary( - rental_pokemon['tsareena'], rental_pokemon['azumarill'], rental_pokemon - ) - - -if __name__ == '__main__': - main() +"""Script for testing and viewing stored Pokemon and matchups.""" + +import os +import pickle +import sys +import jsonpickle + +# We need to import some class definitions from the parent directory. +from os.path import dirname, abspath +base_dir = dirname(dirname(abspath(__file__))) +sys.path.insert(1, base_dir) +sys.path.insert(1, os.path.join(base_dir, 'automaxlair')) + +from automaxlair import matchup_scoring # noqa: E402 +from automaxlair.field import Field # noqa: E402 + + +def test_terrain(rental_pokemon, boss_pokemon): + print('Terrain tests') + field_clear = Field() + field_clear.set_terrain_clear() + + field_electric = Field() + field_electric.set_terrain_electric() + + field_psychic = Field() + field_psychic.set_terrain_psychic() + + field_grassy = Field() + field_grassy.set_terrain_grassy() + + field_misty = Field() + field_misty.set_terrain_misty() + print('electric move (clear / electric / psychic / grassy / misty)') + for field in [field_clear, field_electric, field_psychic, field_grassy, field_misty]: + dmg = matchup_scoring.calculate_damage(rental_pokemon['electabuzz'], 1, boss_pokemon['guzzlord'], field) + print(f'Damage is {dmg}') + + print('rising voltage (clear / electric / psychic / grassy / misty)') + for field in [field_clear, field_electric, field_psychic, field_grassy, field_misty]: + dmg = matchup_scoring.calculate_damage(rental_pokemon['electabuzz'], 0, boss_pokemon['guzzlord'], field) + print(f'Damage is {dmg}') + + print('psychic move (clear / electric / psychic / grassy / misty)') + for field in [field_clear, field_electric, field_psychic, field_grassy, field_misty]: + dmg = matchup_scoring.calculate_damage(rental_pokemon['slowbro'], 3, rental_pokemon['electabuzz'], field) + print(f'Damage is {dmg}') + + print('expanding force (clear / electric / psychic / grassy / misty)') + for field in [field_clear, field_electric, field_psychic, field_grassy, field_misty]: + dmg = matchup_scoring.calculate_damage(rental_pokemon['slowbro'], 0, rental_pokemon['electabuzz'], field) + print(f'Damage is {dmg}') + + print('dragon move (clear / electric / psychic / grassy / misty)') + for field in [field_clear, field_electric, field_psychic, field_grassy, field_misty]: + dmg = matchup_scoring.calculate_damage(rental_pokemon['charmeleon'], 1, rental_pokemon['electabuzz'], field) + print(f'Damage is {dmg}') + + print('grass move (clear / electric / psychic / grassy / misty)') + for field in [field_clear, field_electric, field_psychic, field_grassy, field_misty]: + dmg = matchup_scoring.calculate_damage(rental_pokemon['tangela'], 2, rental_pokemon['electabuzz'], field) + print(f'Damage is {dmg}') + + +def test_weather(rental_pokemon, boss_pokemon): + print('Weather tests') + field_clear = Field() + field_clear.set_weather_clear() + + field_rain = Field() + field_rain.set_weather_rain() + + field_sandstorm = Field() + field_sandstorm.set_weather_sandstorm() + + field_sunlingt = Field() + field_sunlingt.set_weather_sunlight() + + field_hail = Field() + field_hail.set_weather_hail() + print('Solar beam (clear / rain / sandstorm / sun / hail)') + for field in [field_clear, field_rain, field_sandstorm, field_sunlingt, field_hail]: + dmg = matchup_scoring.calculate_damage(rental_pokemon['exeggutor'], 1, boss_pokemon['guzzlord'], field) + print(f'Damage is {dmg}') + + print('Water attack (clear / rain / sandstorm / sun / hail)') + for field in [field_clear, field_rain, field_sandstorm, field_sunlingt, field_hail]: + dmg = matchup_scoring.calculate_damage(rental_pokemon['vaporeon'], 0, boss_pokemon['guzzlord'], field) + print(f'Damage is {dmg}') + + print('Fire attack (clear / rain / sandstorm / sun / hail)') + for field in [field_clear, field_rain, field_sandstorm, field_sunlingt, field_hail]: + dmg = matchup_scoring.calculate_damage(rental_pokemon['flareon'], 0, boss_pokemon['guzzlord'], field) + print(f'Damage is {dmg}') + + print('Weather ball attack vs ground type (clear / rain / sandstorm / sun / hail)') + for field in [field_clear, field_rain, field_sandstorm, field_sunlingt, field_hail]: + dmg = matchup_scoring.calculate_damage(rental_pokemon['roselia'], 2, rental_pokemon['marowak'], field) + print(f'Damage is {dmg}') + + print('Weather ball attack vs flying type (clear / rain / sandstorm / sun / hail)') + for field in [field_clear, field_rain, field_sandstorm, field_sunlingt, field_hail]: + dmg = matchup_scoring.calculate_damage(rental_pokemon['roselia'], 2, rental_pokemon['unfezant'], field) + print(f'Damage is {dmg}') + + print('Weather ball attack vs grass type (clear / rain / sandstorm / sun / hail)') + for field in [field_clear, field_rain, field_sandstorm, field_sunlingt, field_hail]: + dmg = matchup_scoring.calculate_damage(rental_pokemon['roselia'], 2, rental_pokemon['ivysaur'], field) + print(f'Damage is {dmg}') + + print('Special attack vs rock type (clear / rain / sandstorm / sun / hail)') + for field in [field_clear, field_rain, field_sandstorm, field_sunlingt, field_hail]: + dmg = matchup_scoring.calculate_damage(rental_pokemon['roselia'], 0, rental_pokemon['sudowoodo'], field) + print(f'Damage is {dmg}') + + +def test_field(rental_pokemon, boss_pokemon): + print('Fields tests') + test_weather(rental_pokemon, boss_pokemon) + test_terrain(rental_pokemon, boss_pokemon) + + +def main(): + with open( + os.path.join(base_dir, 'data', 'boss_pokemon.json'), 'r', + encoding='utf8' + ) as file: + boss_pokemon = jsonpickle.decode(file.read()) + with open( + os.path.join(base_dir, 'data', 'rental_pokemon.json'), 'r', + encoding='utf8' + ) as file: + rental_pokemon = jsonpickle.decode(file.read()) + with open( + os.path.join(base_dir, 'data', 'boss_matchup_LUT.json'), 'r', + encoding='utf8' + ) as file: + boss_matchups = jsonpickle.decode(file.read()) + with open( + os.path.join(base_dir, 'data', 'rental_matchup_LUT.json'), 'r', + encoding='utf8' + ) as file: + rental_matchups = jsonpickle.decode(file.read()) + with open( + os.path.join(base_dir, 'data', 'rental_pokemon_scores.json'), 'r', + encoding='utf8' + ) as file: + rental_scores = jsonpickle.decode(file.read()) + + # Test retrieval of a rental Pokemon + rental_pokemon['stunfisk-galar'].print_verbose() + print('________________________________________') + + # Test retrieval of a boss Pokemon + boss_pokemon['mewtwo'].print_verbose() + print('________________________________________') + + # Test retrieval of rental Pokemon matchups + print( + 'Matchup for Chansey against Golurk (poor): ' + f'{rental_matchups["chansey"]["golurk"]}') + print( + 'Matchup for Carkol against Butterfree (good): ' + f'{rental_matchups["carkol"]["butterfree"]}') + print('________________________________________') + + # Test retrieval of boss Pokemon matchups + print( + 'Matchup for Jynx against Heatran (poor): ' + f'{boss_matchups["jynx"]["heatran"]}') + print( + 'Matchup for Golurk against Raikou (good): ' + f'{boss_matchups["golurk"]["raikou"]}') + print('________________________________________') + + # Test retrieval of rental Pokemon scores + print(f'Score for Jigglypuff (poor): {rental_scores["jigglypuff"]}') + print(f'Score for Doublade (good): {rental_scores["doublade"]}') + print('________________________________________') + + # Test move selection + print('Wide Guard utility:') + matchup_scoring.print_matchup_summary( + rental_pokemon['pelipper'], boss_pokemon['groudon'], Field(), + rental_pokemon.values() + ) + salazzle = rental_pokemon['salazzle'] + print('Regular matchup:') + matchup_scoring.print_matchup_summary( + salazzle, boss_pokemon['kartana'], Field(), rental_pokemon.values() + ) + print('Max move scores:') + salazzle.dynamax = True + matchup_scoring.print_matchup_summary( + salazzle, boss_pokemon['kartana'], Field(), rental_pokemon.values() + ) + print('Sap Sipper:') + matchup_scoring.print_matchup_summary( + rental_pokemon['tsareena'], rental_pokemon['azumarill'], Field(), + rental_pokemon.values() + ) + print('________________________________________') + + # Ensure all rental Pokemon have sprites + with open( + os.path.join(base_dir, 'data', 'pokemon_sprites.pickle'), 'rb' + ) as file: + pokemon_sprites = pickle.load(file) + pokemon_sprites_dict = dict(pokemon_sprites) + for name_id in rental_pokemon: + if pokemon_sprites_dict.get(name_id) is None: + raise KeyError(f'ERROR: no image found for: {name_id}') + print('Successfully tested Pokemon sprite importing without errors.') + + print('________________________________________') + test_field(rental_pokemon, boss_pokemon) + + +if __name__ == '__main__': + main() diff --git a/scripts/log_summary.py b/scripts/log_summary.py deleted file mode 100644 index 02a06b95..00000000 --- a/scripts/log_summary.py +++ /dev/null @@ -1,67 +0,0 @@ -import os - -# We need to import log files from the parent directory. -from os.path import dirname, abspath -base_dir = dirname(dirname(abspath(__file__))) -log_path = os.path.join(base_dir, 'logs') -file_list = os.listdir(log_path) - -# Modify this list with whatever bosses you want to look at. -bosses = ['articuno', 'zapdos', 'moltres', 'mewtwo', 'raikou', 'entei', - 'suicune', 'lugia', 'ho-oh', 'latias', 'latios', 'kyogre', 'groudon', - 'rayquaza', 'uxie', 'mesprit', 'azelf', 'dialga', 'palkia', 'heatran', - 'giratina', 'cresselia', 'tornadus', 'thundurus', 'reshiram', 'zekrom', - 'landorus', 'kyurem', 'xerneas', 'yveltal', 'zygarde', 'koko', 'lele', - 'bulu', 'fini', 'solgaleo', 'lunala', 'necrozma', 'nihilego', 'xurkitree', - 'buzzwole', 'pheromosa', 'celesteela', 'kartana', 'guzzlord', 'stakataka', - 'blacephalon' - ] -global_losses = 0 -global_wins = 0 - -for boss in bosses: - total_losses = 0 - total_wins = 0 - - # Iterate over all relevant log files because a new file is created every - # time the program is restarted. - for fn in file_list: - # Note that early versions capitalize the boss name whereas others do - # not. Therefore convert all the text to lower case. - if boss.lower() in fn.lower() and ('.txt' in fn or '.log' in fn): - with open(os.path.join(log_path, fn), newline='\n', encoding='utf-8') as log_file: - num_losses = 0 - num_wins = 0 - try: - for row in log_file.readlines(): - # The following lines are logged once at the end of a run. - if 'You lose' in row: - num_losses += 1 - if 'Congratulations' in row: - num_wins += 1 - except Exception as e: - print(f'Error processing {fn}: {e}') - total_losses += num_losses - total_wins += num_wins - - total_runs = total_losses + total_wins - win_percentage = 0 if total_runs == 0 else total_wins / total_runs * 100 - - print(f'Summary for {boss}') - print(f'Total losses: {total_losses}') - print(f'Total wins: {total_wins}') - print(f'Total runs: {total_runs}') - print(f'Win percentage: {win_percentage:.0f} %\n') - - global_wins += total_wins - global_losses += total_losses - - -global_runs = global_losses + global_wins -global_win_percentage = 0 if global_runs == 0 else global_wins / global_runs * 100 - -print('Global Summary') -print(f'Global losses: {global_losses}') -print(f'Global wins: {global_wins}') -print(f'Global runs: {global_runs}') -print(f'Global Win percentage: {global_win_percentage:.0f} %\n') diff --git a/scripts/package_ball.py b/scripts/package_ball.py new file mode 100644 index 00000000..7cb4431b --- /dev/null +++ b/scripts/package_ball.py @@ -0,0 +1,55 @@ +"""Collect ball images from pokesprite (linked submodule) and save them in a +ready-to-use pickle file. +""" + +import os +import pickle +import sys + +from os.path import dirname, abspath + +import cv2 + +base_dir = dirname(dirname(abspath(__file__))) +sys.path.insert(1, base_dir) + + +def main(): + """Build Ball dictionaries and pickle the results. + """ + + image_dir = os.path.join(base_dir, 'data', 'pokesprite', 'items', 'ball') + + ball_ids = [ + 'beast-ball', 'dive-ball', 'dream-ball', 'dusk-ball', 'fast-ball', + 'friend-ball', 'great-ball', 'heal-ball', 'heavy-ball', 'level-ball', + 'love-ball', 'lure-ball', 'luxury-ball', 'master-ball', 'moon-ball', + 'nest-ball', 'net-ball', 'poke-ball', 'premier-ball', 'quick-ball', + 'repeat-ball', 'safari-ball', 'sport-ball', 'timer-ball', 'ultra-ball'] + ball_images = {} + + for ball_id in ball_ids: + # Load the sprite for the ball + image_fn = ball_id.split('-')[0] + '.png' + ball_image = cv2.imread( + os.path.join(image_dir, image_fn), cv2.IMREAD_UNCHANGED) + # Double the sprite size to match what is shown in game. + ball_image = cv2.resize( + ball_image, (0, 0), fx=2, fy=2, interpolation=cv2.INTER_NEAREST) + # Convert transparent pixels to black as they appear in game. + mask = ball_image[:, :, 3] == 0 + ball_image[mask] = [0, 0, 0, 0] + ball_images[ball_id] = cv2.cvtColor(ball_image, cv2.COLOR_BGRA2BGR) + + print(f'Finished loading {ball_id}') + + # Pickle the ball sprites for later use. + with open( + os.path.join(base_dir, 'data', 'ball_sprites.pickle'), 'wb' + ) as file: + pickle.dump(ball_images, file) + print('Finished packaging balls!') + + +if __name__ == '__main__': + main() diff --git a/scripts/package_pokemon_sprites.py b/scripts/package_pokemon_sprites.py new file mode 100644 index 00000000..2a69f500 --- /dev/null +++ b/scripts/package_pokemon_sprites.py @@ -0,0 +1,76 @@ +"""Collect images from pokesprite (linked submodule) and save them in a +ready-to-use pickle file. +""" + +import pickle +import os + +import cv2 +import jsonpickle + +# We need to import some class definitions from the parent directory. +from os.path import dirname, abspath + + +def main(): + # We're working across a few directories, so store them for later use. + base_dir = dirname(dirname(abspath(__file__))) + data_dir = os.path.join(base_dir, 'data') + image_dir = os.path.join( + data_dir, 'pokesprite', 'pokemon-gen8', 'regular') + + # Load the rental Pokemon we need to build sprites for + with open( + os.path.join(data_dir, 'rental_pokemon.json'), 'r', + encoding='utf8' + ) as file: + rental_pokemon = jsonpickle.decode(file.read()) + + # Generate sprites of each rental Pokemon. + all_images = [] + for name_id in rental_pokemon: + # The name format isn't exactly between PokeAPI and pokesprite. + # Therefore, manually convert where there are descrepencies. + if name_id == 'basculin-red-striped': + fn = 'basculin.png' + elif name_id == 'gourgeist-average': + fn = 'gourgeist.png' + elif name_id == 'lycanroc-midday': + fn = 'lycanroc.png' + elif name_id == 'mimikyu-disguised': + fn = 'mimikyu.png' + elif name_id == 'toxtricity-amped': + fn = 'toxtricity.png' + elif name_id == 'indeedee-male': + fn = 'indeedee.png' + elif name_id == 'gastrodon': + fn = 'gastrodon-east.png' + else: + fn = name_id + '.png' + # Start by loading the Pokemon's sprite and female sprite if it exists. + species_images = [] + species_images.append(cv2.imread( + os.path.join(image_dir, fn), cv2.IMREAD_UNCHANGED)) + if fn in os.listdir(os.path.join(image_dir, 'female')): + species_images.append(cv2.imread( + os.path.join(image_dir, 'female', fn), cv2.IMREAD_UNCHANGED)) + # Then, remove the alpha channel and add each image to the export list. + for image in species_images: + image = cv2.resize( + image, (0, 0), fx=2, fy=2, interpolation=cv2.INTER_NEAREST) + mask = image[:, :, 3] == 0 + image[mask] = [255, 255, 255, 255] + all_images.append( + (name_id, cv2.cvtColor(image, cv2.COLOR_BGRA2BGR))) + + print(f'Finished processing {name_id}') + + # Save the sprites. + with open( + os.path.join(data_dir, 'pokemon_sprites.pickle'), 'wb' + ) as file: + pickle.dump(all_images, file) + + +if __name__ == '__main__': + main() diff --git a/scripts/regis.py b/scripts/regis.py new file mode 100644 index 00000000..c53138be --- /dev/null +++ b/scripts/regis.py @@ -0,0 +1,256 @@ +"""Script for soft resetting to get 0 Atk IVs regis + +Instructions: +1. Your Pokemon icon must be in its default position in the menu (top row, + second column). +2. Navigate to a box in your PC that has an opening in the default cursor + position (top left corner of the box). +3. Press the '+' button until the IVs of Pokemon in your boxes are shown. +4. Have your party full. +5. Save directly in front of the regi with all lights on. +6. Connect the microcontroller, serial connection, and capture card, then start + the script. +""" + +import logging +import os +import sys +import time +import cv2 +from datetime import datetime +from typing import Dict, Callable, Optional, TypeVar + +import pytesseract +import toml + +# We need to import some class definitions from the parent directory. +from os.path import dirname, abspath +base_dir = dirname(dirname(abspath(__file__))) +sys.path.insert(1, base_dir) +sys.path.insert(1, os.path.join(base_dir, 'automaxlair')) + +import automaxlair + +Image = TypeVar('cv2 image') + + +# load configuration from the config file +try: + config = toml.load("Config.toml") +except FileNotFoundError: + raise FileNotFoundError( + "The Config.toml file was not found! Be sure to copy " + "Config.sample.toml as Config.toml and edit it!") +except: # noqa: E722 + raise SyntaxError( + "Something went wrong parsing Config.toml\n" + "Please make sure you entered the information right " + "and did not modify \" or . symbols or have uppercase true or false " + "in the settings.") + +COM_PORT = config['COM_PORT'] +VIDEO_INDEX = config['VIDEO_INDEX'] +VIDEO_EXTRA_DELAY = config['advanced']['VIDEO_EXTRA_DELAY'] +pytesseract.pytesseract.tesseract_cmd = config['TESSERACT_PATH'] +ENABLE_DEBUG_LOGS = config['advanced']['ENABLE_DEBUG_LOGS'] + +# Set the log name +LOG_NAME = f"regis_{datetime.now().strftime('%Y-%m-%d %H-%M-%S')}" + + +class RegisController(automaxlair.switch_controller.SwitchController): + """Switch controller specific to resetting for 0 Atk regis.""" + + def __init__( + self, + config_, + log_name: str, + actions: Dict[str, Callable] + ) -> None: + + # Call base class constructor. + super().__init__(config_, log_name, actions) + + self.resets = 0 + self.checks_for_IV = 0 + self.current_balls_thrown = 0 + self.total_balls_thrown = 0 + + # Rectangles for OCR and display + self.IV_atk_rect = ((0.78, 0.25), (0.9, 0.30)) + self.battle_symbol_rect = ((0.9, 0.55), (0.99, 0.69)) + self.text_rect = ((0, 0.70), (1, 1)) + + self.misc_icons = {} + directory = self.config['pokemon_data_paths']['misc_icon_dir'] + for filename in os.listdir(directory): + if '.png' in filename: + self.misc_icons[filename.split('.png')[0]] = cv2.imread( + os.path.join(directory, filename) + ) + + def get_frame( + self, + rectangle_set: Optional[str] = None, + resize: bool = False + ) -> Image: + """Get an annotated image of the current Switch output.""" + + # Get the base image from the base class method. + img = super().get_frame(resize=resize) + if rectangle_set is not None: + self.outline_region(img, self.IV_atk_rect, (255, 0, 0)) + self.outline_region(img, self.battle_symbol_rect, (0, 255, 0)) + self.outline_region(img, self.text_rect, (0, 0, 255)) + + return img + + def display_results(self, log: bool = False, screenshot: bool = False): + """Display video from the Switch alongside some annotations describing + the run sequence. + """ + + # Construct the dictionary that will be displayed by the base method. + for key, value in { + 'Resets': self.resets, + 'Checks for IV': self.checks_for_IV, + 'Current balls thrown': self.current_balls_thrown, + 'Total balls thrown': self.total_balls_thrown, + }.items(): + self.info[key] = value + + # Call the base display method. + super().display_results( + image=self.get_frame( + rectangle_set=self.stage, resize=True), log=log, + screenshot=screenshot) + + +def initialize(ctrlr) -> None: + """Executed once at the beginning of the sequence.""" + # assume we're starting from the select controller menu, connect, then + # press home twice to return to the game + ctrlr.push_buttons( + (b'a', 2), (b'h', 2.0), (b'h', 2.0), (b'b', 1.5), (b'b', 1.5) + ) + return 'loop' + + +def loop(ctrlr) -> None: + """Main sequence that is repeated once per cycle.""" + ctrlr.push_buttons( + (b'a', 1), (b'a', 1), (b'a', 1) + ) + + start_time = time.time() + while(True): + img = ctrlr.get_frame() + fight_menu_image = ctrlr.get_image_slice(img, ctrlr.battle_symbol_rect) + fight_match = ctrlr.match_template( + fight_menu_image, ctrlr.misc_icons['fight'])[0] + if fight_match >= 0.85: + ctrlr.log( + 'Detected "Fight" symbol with match value of ' + f'{fight_match:.3f}.', 'DEBUG') + + # Throw a ball and then reset the timer + ctrlr.log('Throw a ball.') + ctrlr.current_balls_thrown += 1 + ctrlr.total_balls_thrown += 1 + ctrlr.push_buttons( + (b'x', 1), (b'a', 1) + ) + start_time = time.time() + elif 'avez attrapé' in ctrlr.read_text(img, ctrlr.text_rect): + # pokemon was caught, now check it's IV + break + elif ('est K.O.' in ctrlr.read_text(img, ctrlr.text_rect)) or (time.time() - start_time > 30): + # if more than 30s passed, consider you need to reset (program locked itself, your pokemon died, etc) + ctrlr.resets += 1 + + ctrlr.log(f'Program stall for 30s. Moving to reset {ctrlr.resets}.') + ctrlr.current_balls_thrown = 0 + ctrlr.push_buttons( + (b'h', 3), (b'x', 1), (b'a', 3), (b'a', 1), (b'a', 20), (b'a', 4) + ) + return 'loop' + + for __ in range(35): + ctrlr.push_button(b'b', 1) + + # Navigate to the IV summary + ctrlr.push_buttons( + (b'x', 1.5), (b'>', 0.5), (b'a', 2), + (b'r', 3 + VIDEO_EXTRA_DELAY)) + + # Check the Atk IV and quit if it's 0 ("No good") + IV_text = ctrlr.read_text(ctrlr.get_frame(), ctrlr.IV_atk_rect) + if 'pastop' in IV_text.lower().replace(' ', ''): + ctrlr.log('********** Found 0 Atk target! **********') + return None + ctrlr.checks_for_IV += 1 + ctrlr.current_balls_thrown = 0 + ctrlr.log(f'IV text detected as {IV_text}. It was checked {ctrlr.checks_for_IV} times.') + + # Otherwise, reset the game and try again. + ctrlr.push_buttons( + (b'h', 3), (b'x', 1), (b'a', 3), (b'a', 1), (b'a', 20), (b'a', 4) + ) + return 'loop' + + +def main(log_name: str) -> None: + """Entry point for the sequence.""" + + actions = {'initialize': initialize, 'loop': loop} + + controller = RegisController(config, log_name, actions) + + controller.event_loop() + + +def exception_handler(exception_type, exception_value, exception_traceback): + """Exception hook to ensure exceptions get logged.""" + logger.error( + 'Exception occurred:', + exc_info=(exception_type, exception_value, exception_traceback) + ) + + +if __name__ == '__main__': + # Set up the logger + + # Configure the logger. + logger = logging.getLogger(LOG_NAME) + logger.setLevel(logging.DEBUG if ENABLE_DEBUG_LOGS else logging.INFO) + formatter = logging.Formatter( + '%(asctime)s | %(levelname)s: %(message)s' + ) + + # make the console formatter easier to read with fewer bits of info + console_formatter = logging.Formatter( + "%(asctime)s | %(levelname)s: %(message)s", "%H:%M:%S" + ) + + # Configure the console, which will print logged information. + console = logging.StreamHandler() + console.setLevel(logging.DEBUG if ENABLE_DEBUG_LOGS else logging.INFO) + console.setFormatter(console_formatter) + + # Configure the file handler, which will save logged information. + fileHandler = logging.FileHandler( + filename=os.path.join(base_dir, 'logs', LOG_NAME + '.log'), + encoding="UTF-8" + ) + fileHandler.setFormatter(formatter) + fileHandler.setLevel(logging.DEBUG if ENABLE_DEBUG_LOGS else logging.INFO) + + # Add the handlers to the logger so that it will both print messages to + # the console as well as save them to a log file. + logger.addHandler(console) + logger.addHandler(fileHandler) + logger.info('Starting new series: %s.', LOG_NAME) + + # Call main + sys.excepthook = exception_handler + main(LOG_NAME) diff --git a/scripts/score_pokemon.py b/scripts/score_pokemon.py index d7094d30..d84dee70 100644 --- a/scripts/score_pokemon.py +++ b/scripts/score_pokemon.py @@ -30,7 +30,7 @@ # Config values for the log and multiprocessing. LOG_NAME = 'packagePokemon' ENABLE_DEBUG_LOGS = True -MAX_NUM_THREADS = mp.cpu_count() - 1 +MAX_NUM_THREADS = mp.cpu_count() def compute_scores(attacker): @@ -60,7 +60,7 @@ def compute_scores(attacker): for defender_id in tuple(boss_pokemon): defender = boss_pokemon[defender_id] score = matchup_scoring.evaluate_matchup( - attacker, defender, rental_pokemon + attacker, defender, rental_pokemon.values() ) boss_matchups[defender_id] = score logger.debug( @@ -73,7 +73,7 @@ def compute_scores(attacker): for defender_id in tuple(rental_pokemon): defender = rental_pokemon[defender_id] score = matchup_scoring.evaluate_matchup( - attacker, defender, rental_pokemon + attacker, defender, rental_pokemon.values() ) rental_matchups[defender_id] = score # We sum the attacker's score which will later be normalized.