diff --git a/design/models/Pokemon Trainer Platform.vpp b/design/models/Pokemon Trainer Platform.vpp
index c5d83ab98b60c578e93c60d34643df74901d7a90..c28369071fc5bd7c967f1221ca90370c59ef3d1c 100644
Binary files a/design/models/Pokemon Trainer Platform.vpp and b/design/models/Pokemon Trainer Platform.vpp differ
diff --git a/meetings/practical-session-1.md b/meetings/practical-session-1.md
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..b8351e5079a0f53044f6d8f2b7ac221bf32e41ef 100644
--- a/meetings/practical-session-1.md
+++ b/meetings/practical-session-1.md
@@ -0,0 +1,161 @@
+# Web Programming Practical Session 1
+
+**Topic: Tool installation and project setup**
+**Module 4: Data & Information (202101028)**
+**Authors: Claudenir M. Fonseca, Wallace C. Ugulino, and Luis Ferreira Pires**
+
+The objective of these exercises is to make you acquainted with some of the tools that will be used in this module. These exercises have been also designed to help you install the tools and give you initial hands-on experience with them.
+
+Content:
+- [Web Programming Practical Session 1](#web-programming-practical-session-1)
+  - [Java installation and configuration](#java-installation-and-configuration)
+  - [Maven installation](#maven-installation)
+  - [Tomcat installation](#tomcat-installation)
+  - [Creating a web application project on IntelliJ](#creating-a-web-application-project-on-intellij)
+  - [Common pitfalls and final remarks](#common-pitfalls-and-final-remarks)
+
+## Java installation and configuration
+
+For this module, we will be using Java's [JDK 17 LTS](https://en.wikipedia.org/wiki/Java_version_history#Java_17), which you are expected to be familiar with. Even though the Java language received significant updates recently, it is a rather retro-compatible language, so you should not face any difficulties by using a newer version, as long a you set the target environment accordingly. This is important to avoid incompatibilities collaboration and deployment issues, as we shall discuss later on.
+
+> Due to changes in the licensing of Oracle JDK, please do NOT use it. Instead, use any of the open distributions available, such as [Adoptium's Temurin](https://adoptium.net/)
+> 
+> Due to these licensing issues, you will also come across the name Jakarta, the name for Java EE now under control of the Eclipse Foundation in agreement with Oracle. Be careful with incompatibilities due to the new `jakarta` namespace on your dependencies.
+
+In case Java is not yet installed in your machine, we list here a few resources that you can use depending on your development environment:
+
+- ["How do I install Java on Windows?" by Cameron McKenzie](https://www.theserverside.com/blog/Coffee-Talk-Java-News-Stories-and-Opinions/How-do-I-install-Java-on-Windows)
+- ["3 ways to install Java on macOS [2023]" by Andrew Hoog](https://www.andrewhoog.com/post/3-ways-to-install-java-on-macos-2023/)
+- ["How to Install Java 17 LTS on Ubuntu 20.04" by Jeff Wilson](https://www.rosehosting.com/blog/how-to-install-java-17-lts-on-ubuntu-20-04/)
+
+**Recommendations:**
+
+- If you are a Shell user, do adopt the package manager of choice for your system (e.g., [Homebrew](https://brew.sh/), [Advanced Packaging Tool - APT](https://ubuntu.com/server/docs/package-management)).
+- If you need to manage multiple JDK versions, a Java version management tool like [jEnv](https://www.jenv.be/) can greatly help you.
+- If you struggle to connect IntelliJ to one of the JDKs on your machine, you can always download a JDK directly from the UI (may not be available on terminal).
+
+## Maven installation
+
+In this module, you will be using [Maven](http://maven.apache.org/) as the software project management tool of choice. Maven is extremely useful because it allows the management of code dependencies, like dependencies of libraries that are necessary to compile and run the software applications. In a sense, IntelliJ already does that, but Maven goes a step further by support the IDE, resolving dependencies from the web, and much more, making projects extremely portable.
+
+Libraries are (binary) code that can be reused in a program, so that the programmer can concentrate on the task at hand. You should already know what a library is, but an example is the java.utils package that you have to import in order to use the Java collection classes. This package is quite stable, but other packages have more specific versions that you have to load to guarantee the compilation and execution of your code. Maven not only allows you to define the dependencies, but also downloads these packages from the Maven repository at (http://mvnrepository.com/), so it is very handy.
+
+Maven prescribes a specific structure for the files in a project (source code, web resources
+like HTML and CSS files, class files, etc.) and a pom.xml file that describes the Maven project. This repository is organized to mimic this structure also according to the recommendations on your Project Guide.
+
+- `/design`: folder containing design files, such as UML diagrams, database schemas, OpenAPI specifications, prototypes (week 3).
+- `/documents`: folder containing files such as project proposal, security report, or user manuals.
+- `/meetings`: folder containing reports of each sprint; in our case it contains the guide for all practical sessions.
+- `/src`: folder containing source files of the web application.
+
+We refer students to [this Maven installation guide](https://www.baeldung.com/install-maven-on-windows-linux-mac), but Shell users should be comfortable with using their system's package managers instead (e.g., Homebrew, APT). The source files provided were tested with Maven 3.9.5, but recent version should suffice.
+
+
+## Tomcat installation
+
+In order to be executed, Web applications require a so called Application server, which can be considered as a special web server that knows how to handle the components of a web application (https://en.wikipedia.org/wiki/Application_server). In this module, we use the most popular Application server for Java applications, namely [Apache Tomcat](http://tomcat. apache.org/). In this module, we will be using [Tomcat 10](http://tomcat.apache.org), which is the version that will later be used for your project's deployment. You should download the ‘Core’ version that matches your OS and hardware (and Java installation), preferably one of the .zip files, and extract the contents of this .zip file to a directory that does not contain spaces in its name (Java does not like spaces). For example, you can create a directory Development in the root of the C: disk and extract the Tomcat installation to this directory. In Windows, after extracting Tomcat to the `C:\Development\` directory, the path to my Tomcat installation became `C:\Development\apache-tomcat-10.1.20`.
+
+You can test the Tomcat installation by starting up the Application server and accessing the welcome page of the server through a browser. The script programs to startup and shutdown Tomcat can be found in the bin directory of the Tomcat installation (e.g., `startup.sh` and `startup.bat` for Linux/MacOS and Windows, respectively). Start up Tomcat by running the script that matches your machine. If everything goes well, Tomcat will return the values of environment variables `CATALINA_BASE`, `CATALINA_HOME`, etc. before starting up. You can now test the server by starting a browser and going to the page `http://localhost:8080`.
+
+For Linux and MacOS you may have to add execution permissions to the scripts of the bin directory of the Tomcat installation, e.g., with command `chmod 755 +x`, or run these scripts as administrator with sudo. Normally, only the scripts `startup.sh`, `shutdown.sh` and `catalina.sh` have to get these permissions.
+
+If Tomcat is properly installed, you should see a page similar to the one in the figure below.
+
+![Tomcat initial page after successful installation.](./resources/session-1-tomcat-home.png)
+
+After that don’t forget to shutdown Tomcat with the proper script program (`shutdown.sh` and `shutdown.bat` for Linux/MacOS and Windows, respectively). Make sure you always properly shutdown the server when you want to stop it.
+
+## Creating a web application project on IntelliJ
+
+The IntelliJ IDEA channel on YouTube provides a great step-by-step guide on how to create your first Java web application with Tomcat, already setting up most of your Maven dependencies (including JUnit) and the core of the folder structure recommended for your project.
+
+> For the purposes of this practical session, cloning this repository into your machine and opening its root directory as an IntelliJ project will already configure most things for deployment. Still, create a web application first, such that IntelliJ has already the path to your Tomcat and JDK installations.
+
+<!-- ["Tomcat in IntelliJ IDEA Ultimate" by Dalia Abo Sheasha![](http://img.youtube.com/vi/ThBw3WBTw9Q/0.jpg)](http://www.youtube.com/watch?v=ThBw3WBTw9Q) -->
+
+<iframe width="560" height="315" src="https://www.youtube.com/embed/ThBw3WBTw9Q?si=wB7XiVdEC7KFN8kV" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
+
+After creating a project, please perform the following procedures:
+
+1. On your `pom.xml` file, upgrade the version of all Jersey dependencies to 3.1.6 or greater for compatibility with Jakarta 10
+
+```xml
+<dependency>
+    <groupId>org.glassfish.jersey.containers</groupId>
+    <artifactId>jersey-container-servlet</artifactId>
+    <version>3.1.6</version>
+</dependency>
+<dependency>
+    <groupId>org.glassfish.jersey.media</groupId>
+    <artifactId>jersey-media-json-jackson</artifactId>
+    <version>3.1.6</version>
+</dependency>
+<dependency>
+    <groupId>org.glassfish.jersey.inject</groupId>
+    <artifactId>jersey-hk2</artifactId>
+    <version>3.1.6</version>
+</dependency>
+```
+
+2. On your `pom.xml` file, add the build below to simplify your build file's name.
+
+```xml
+<build>
+    <finalName>${project.artifactId}</finalName>
+    <plugins>
+        <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-compiler-plugin</artifactId>
+            <version>3.8.0</version>
+            <configuration>
+                <release>11</release>
+            </configuration>
+        </plugin>
+
+        <plugin>
+            <artifactId>maven-war-plugin</artifactId>
+            <version>3.3.2</version>
+            <configuration>
+                <filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
+            </configuration>
+        </plugin>
+    </plugins>
+</build>
+```
+
+3. If you are read/writing JSON files, remember to add a dependency to your `pom.xml`, such as [FasterXML Jackson](https://github.com/FasterXML/jackson):
+
+```xml
+  <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</artifactId>
+      <version>2.17.0</version>
+  </dependency>
+```
+
+4. This tutorial creates a Jakarta REST server, so remember to add a folder `src/main/webapp` to contain your HTML, CSS, JavaScript, and other resources.
+
+
+<!-- ## Test-based design in Maven -->
+<!-- ### Adding the JUnit dependency -->
+<!-- ### Defining a test case -->
+<!-- ### Running tests -->
+<!-- ## Implementing a web application -->
+<!-- ### Deploying your application with IntelliJ -->
+<!-- ### Deploying your application on Tomcat -->
+<!-- ### Testing your application -->
+<!-- ## Uploading your Maven project to GitLab -->
+<!-- ### Preparation -->
+<!-- ### Creating and populating the local Git repository -->
+<!-- ### IntelliJ projects and Git -->
+<!-- ## Celsius to Fahrenheit translator -->
+<!-- ## Additional exercises -->
+
+
+## Common pitfalls and final remarks
+
+- Do not use annotations and configuration files (`WEB-INF/web.xml`) to configure your Servlets as to avoid inconsistent declaration.
+- After adding files to your `src/main/resources` or `src/main/webapp` folders, check whether they are present in your build folder (`/target/classes` and `target/{artifactId}`, respectively). If IntelliJ's build fails to execute `mvn clean install`, you won't be able to access your files on Tomcat server which contains a copy of your build file (more specifically, `target/{artifactId}.war`). Running Maven directly on your terminal will should never fail.
+- Whenever working from your IDE, remember to update the reload your Maven after any modification to your dependencies. This can be done in several ways, including *1 - right clicking the `pom.xml` file on the project explorer, then 2 - clicking the context menu 'Maven > Reload project'*
+
+Do you have comments or suggestions on how to improve this repository and the practical sessions? Then visit our [repository on GitLab](https://gitlab.utwente.nl/claudenirmf/mod4-wp-2023-2024-pokemon) and submit an [issue](https://gitlab.utwente.nl/claudenirmf/mod4-wp-2023-2024-pokemon/-/issues) or a [pull/merge request](https://gitlab.utwente.nl/claudenirmf/mod4-wp-2023-2024-pokemon/-/merge_requests).
diff --git a/meetings/resources/session-1-tomcat-home.png b/meetings/resources/session-1-tomcat-home.png
new file mode 100644
index 0000000000000000000000000000000000000000..193463e1f9d8c67997dbcb0105eddbc9c2dcb8e2
Binary files /dev/null and b/meetings/resources/session-1-tomcat-home.png differ
diff --git a/src/main/resources/aggregated-and-filtered-pokemon-dataset.json b/src/main/resources/aggregated-and-filtered-pokemon-dataset.json
index 862ede41ddcc54c4bce962bdf8ca0f9bb2ce65a5..27f4e4435b1ec39b762a12a354340db0bc28d143 100644
--- a/src/main/resources/aggregated-and-filtered-pokemon-dataset.json
+++ b/src/main/resources/aggregated-and-filtered-pokemon-dataset.json
@@ -4,7 +4,7 @@
     "id": 1,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "abomasnow",
+    "imgUrl": "/pokemon/images/abomasnow.png",
     "japaneseName": "Yukinoohユキノオー",
     "pokedexNumber": 460,
     "abilities": ["Snow Warning", "Soundproof"],
@@ -28,7 +28,7 @@
     "id": 2,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "abra",
+    "imgUrl": "/pokemon/images/abra.png",
     "japaneseName": "Caseyケーシィ",
     "pokedexNumber": 63,
     "abilities": ["Synchronize", "Inner Focus", "Magic Guard"],
@@ -52,7 +52,7 @@
     "id": 3,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "absol",
+    "imgUrl": "/pokemon/images/absol.png",
     "japaneseName": "Absolアブソル",
     "pokedexNumber": 359,
     "abilities": ["Pressure", "Super Luck", "Justified"],
@@ -76,7 +76,7 @@
     "id": 4,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "accelgor",
+    "imgUrl": "/pokemon/images/accelgor.png",
     "japaneseName": "Agilderアギルダー",
     "pokedexNumber": 617,
     "abilities": ["Hydration", "Sticky Hold", "Unburden"],
@@ -100,7 +100,7 @@
     "id": 5,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "aegislash-blade",
+    "imgUrl": "/pokemon/images/aegislash-blade.png",
     "japaneseName": "Gillgardギルガルド",
     "pokedexNumber": 681,
     "abilities": ["Stance Change"],
@@ -124,7 +124,7 @@
     "id": 6,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "aerodactyl",
+    "imgUrl": "/pokemon/images/aerodactyl.png",
     "japaneseName": "Pteraプテラ",
     "pokedexNumber": 142,
     "abilities": ["Rock Head", "Pressure", "Unnerve"],
@@ -148,7 +148,7 @@
     "id": 7,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "aggron",
+    "imgUrl": "/pokemon/images/aggron.png",
     "japaneseName": "Bossgodoraボスゴドラ",
     "pokedexNumber": 306,
     "abilities": ["Sturdy", "Rock Head", "Heavy Metal"],
@@ -172,7 +172,7 @@
     "id": 8,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "aipom",
+    "imgUrl": "/pokemon/images/aipom.png",
     "japaneseName": "Eipamエイパム",
     "pokedexNumber": 190,
     "abilities": ["Run Away", "Pickup", "Skill Link"],
@@ -196,7 +196,7 @@
     "id": 9,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "alakazam",
+    "imgUrl": "/pokemon/images/alakazam.png",
     "japaneseName": "Foodinフーディン",
     "pokedexNumber": 65,
     "abilities": ["Synchronize", "Inner Focus", "Magic Guard"],
@@ -220,7 +220,7 @@
     "id": 10,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "alomomola",
+    "imgUrl": "/pokemon/images/alomomola.png",
     "japaneseName": "Mamanbouママンボウ",
     "pokedexNumber": 594,
     "abilities": ["Healer", "Hydration", "Regenerator"],
@@ -244,7 +244,7 @@
     "id": 11,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "altaria",
+    "imgUrl": "/pokemon/images/altaria.png",
     "japaneseName": "Tyltalisチルタリス",
     "pokedexNumber": 334,
     "abilities": ["Natural Cure", "Cloud Nine"],
@@ -268,7 +268,7 @@
     "id": 12,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "amaura",
+    "imgUrl": "/pokemon/images/amaura.png",
     "japaneseName": "Amarusアマルス",
     "pokedexNumber": 698,
     "abilities": ["Refrigerate", "Snow Warning"],
@@ -292,7 +292,7 @@
     "id": 13,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "ambipom",
+    "imgUrl": "/pokemon/images/ambipom.png",
     "japaneseName": "Etebothエテボース",
     "pokedexNumber": 424,
     "abilities": ["Technician", "Pickup", "Skill Link"],
@@ -316,7 +316,7 @@
     "id": 14,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "amoonguss",
+    "imgUrl": "/pokemon/images/amoonguss.png",
     "japaneseName": "Morobareruモロバレル",
     "pokedexNumber": 591,
     "abilities": ["Effect Spore", "Regenerator"],
@@ -340,7 +340,7 @@
     "id": 15,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "ampharos",
+    "imgUrl": "/pokemon/images/ampharos.png",
     "japaneseName": "Denryuデンリュウ",
     "pokedexNumber": 181,
     "abilities": ["Static", "Plus"],
@@ -364,7 +364,7 @@
     "id": 16,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "anorith",
+    "imgUrl": "/pokemon/images/anorith.png",
     "japaneseName": "Anopthアノプス",
     "pokedexNumber": 347,
     "abilities": ["Battle Armor", "Swift Swim"],
@@ -388,7 +388,7 @@
     "id": 17,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "araquanid",
+    "imgUrl": "/pokemon/images/araquanid.png",
     "japaneseName": "Onishizukumoオニシズクモ",
     "pokedexNumber": 752,
     "abilities": ["Water Bubble", "Water Absorb"],
@@ -412,7 +412,7 @@
     "id": 18,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "arbok",
+    "imgUrl": "/pokemon/images/arbok.png",
     "japaneseName": "Arbokアーボック",
     "pokedexNumber": 24,
     "abilities": ["Intimidate", "Shed Skin", "Unnerve"],
@@ -436,7 +436,7 @@
     "id": 19,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "arcanine",
+    "imgUrl": "/pokemon/images/arcanine.png",
     "japaneseName": "Windieウインディ",
     "pokedexNumber": 59,
     "abilities": ["Intimidate", "Flash Fire", "Justified"],
@@ -460,7 +460,7 @@
     "id": 20,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "arceus",
+    "imgUrl": "/pokemon/images/arceus.png",
     "japaneseName": "Arceusアルセウス",
     "pokedexNumber": 493,
     "abilities": ["Multitype"],
@@ -484,7 +484,7 @@
     "id": 21,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "archen",
+    "imgUrl": "/pokemon/images/archen.png",
     "japaneseName": "Archenアーケン",
     "pokedexNumber": 566,
     "abilities": ["Defeatist"],
@@ -508,7 +508,7 @@
     "id": 22,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "archeops",
+    "imgUrl": "/pokemon/images/archeops.png",
     "japaneseName": "Archeosアーケオス",
     "pokedexNumber": 567,
     "abilities": ["Defeatist"],
@@ -532,7 +532,7 @@
     "id": 23,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "ariados",
+    "imgUrl": "/pokemon/images/ariados.png",
     "japaneseName": "Ariadosアリアドス",
     "pokedexNumber": 168,
     "abilities": ["Swarm", "Insomnia", "Sniper"],
@@ -556,7 +556,7 @@
     "id": 24,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "armaldo",
+    "imgUrl": "/pokemon/images/armaldo.png",
     "japaneseName": "Armaldoアーマルド",
     "pokedexNumber": 348,
     "abilities": ["Battle Armor", "Swift Swim"],
@@ -580,7 +580,7 @@
     "id": 25,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "aromatisse",
+    "imgUrl": "/pokemon/images/aromatisse.png",
     "japaneseName": "Frefuwanフレフワン",
     "pokedexNumber": 683,
     "abilities": ["Healer", "Aroma Veil"],
@@ -604,7 +604,7 @@
     "id": 26,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "aron",
+    "imgUrl": "/pokemon/images/aron.png",
     "japaneseName": "Cokodoraココドラ",
     "pokedexNumber": 304,
     "abilities": ["Sturdy", "Rock Head", "Heavy Metal"],
@@ -628,7 +628,7 @@
     "id": 27,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "articuno",
+    "imgUrl": "/pokemon/images/articuno.png",
     "japaneseName": "Freezerフリーザー",
     "pokedexNumber": 144,
     "abilities": ["Pressure", "Snow Cloak"],
@@ -652,7 +652,7 @@
     "id": 28,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "audino",
+    "imgUrl": "/pokemon/images/audino.png",
     "japaneseName": "Tabunneタブンネ",
     "pokedexNumber": 531,
     "abilities": ["Healer", "Regenerator", "Klutz"],
@@ -676,7 +676,7 @@
     "id": 29,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "aurorus",
+    "imgUrl": "/pokemon/images/aurorus.png",
     "japaneseName": "Amarurugaアマルルガ",
     "pokedexNumber": 699,
     "abilities": ["Refrigerate", "Snow Warning"],
@@ -700,7 +700,7 @@
     "id": 30,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "avalugg",
+    "imgUrl": "/pokemon/images/avalugg.png",
     "japaneseName": "Crebaseクレベース",
     "pokedexNumber": 713,
     "abilities": ["Own Tempo", "Ice Body", "Sturdy"],
@@ -724,7 +724,7 @@
     "id": 31,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "axew",
+    "imgUrl": "/pokemon/images/axew.png",
     "japaneseName": "Kibagoキバゴ",
     "pokedexNumber": 610,
     "abilities": ["Rivalry", "Mold Breaker", "Unnerve"],
@@ -748,7 +748,7 @@
     "id": 32,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "azelf",
+    "imgUrl": "/pokemon/images/azelf.png",
     "japaneseName": "Agnomeアグノム",
     "pokedexNumber": 482,
     "abilities": ["Levitate"],
@@ -772,7 +772,7 @@
     "id": 33,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "azumarill",
+    "imgUrl": "/pokemon/images/azumarill.png",
     "japaneseName": "Marilliマリルリ",
     "pokedexNumber": 184,
     "abilities": ["Thick Fat", "Huge Power", "Sap Sipper"],
@@ -796,7 +796,7 @@
     "id": 34,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "azurill",
+    "imgUrl": "/pokemon/images/azurill.png",
     "japaneseName": "Ruririルリリ",
     "pokedexNumber": 298,
     "abilities": ["Thick Fat", "Huge Power", "Sap Sipper"],
@@ -820,7 +820,7 @@
     "id": 35,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "bagon",
+    "imgUrl": "/pokemon/images/bagon.png",
     "japaneseName": "Tatsubayタツベイ",
     "pokedexNumber": 371,
     "abilities": ["Rock Head", "Sheer Force"],
@@ -844,7 +844,7 @@
     "id": 36,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "baltoy",
+    "imgUrl": "/pokemon/images/baltoy.png",
     "japaneseName": "Yajilonヤジロン",
     "pokedexNumber": 343,
     "abilities": ["Levitate"],
@@ -868,7 +868,7 @@
     "id": 37,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "banette",
+    "imgUrl": "/pokemon/images/banette.png",
     "japaneseName": "Juppetaジュペッタ",
     "pokedexNumber": 354,
     "abilities": ["Insomnia", "Frisk", "Cursed Body"],
@@ -892,7 +892,7 @@
     "id": 38,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "barbaracle",
+    "imgUrl": "/pokemon/images/barbaracle.png",
     "japaneseName": "Gamenodesガメノデス",
     "pokedexNumber": 689,
     "abilities": ["Tough Claws", "Sniper", "Pickpocket"],
@@ -916,7 +916,7 @@
     "id": 39,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "barboach",
+    "imgUrl": "/pokemon/images/barboach.png",
     "japaneseName": "Dojoachドジョッチ",
     "pokedexNumber": 339,
     "abilities": ["Oblivious", "Anticipation", "Hydration"],
@@ -940,7 +940,7 @@
     "id": 40,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "basculin-red-striped",
+    "imgUrl": "/pokemon/images/basculin-red-striped.png",
     "japaneseName": "Bassraoバスラオ",
     "pokedexNumber": 550,
     "abilities": ["Reckless", "Rock Head", "Adaptability", "Mold Breaker"],
@@ -964,7 +964,7 @@
     "id": 41,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "bastiodon",
+    "imgUrl": "/pokemon/images/bastiodon.png",
     "japaneseName": "Toridepsトリデプス",
     "pokedexNumber": 411,
     "abilities": ["Sturdy", "Soundproof"],
@@ -988,7 +988,7 @@
     "id": 42,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "bayleef",
+    "imgUrl": "/pokemon/images/bayleef.png",
     "japaneseName": "Bayleafベイリーフ",
     "pokedexNumber": 153,
     "abilities": ["Overgrow", "Leaf Guard"],
@@ -1012,7 +1012,7 @@
     "id": 43,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "beartic",
+    "imgUrl": "/pokemon/images/beartic.png",
     "japaneseName": "Tunbearツンベアー",
     "pokedexNumber": 614,
     "abilities": ["Snow Cloak", "Slush Rush", "Swift Swim"],
@@ -1036,7 +1036,7 @@
     "id": 44,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "beautifly",
+    "imgUrl": "/pokemon/images/beautifly.png",
     "japaneseName": "Agehuntアゲハント",
     "pokedexNumber": 267,
     "abilities": ["Swarm", "Rivalry"],
@@ -1060,7 +1060,7 @@
     "id": 45,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "beedrill",
+    "imgUrl": "/pokemon/images/beedrill.png",
     "japaneseName": "Spearスピアー",
     "pokedexNumber": 15,
     "abilities": ["Swarm", "Sniper"],
@@ -1084,7 +1084,7 @@
     "id": 46,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "beheeyem",
+    "imgUrl": "/pokemon/images/beheeyem.png",
     "japaneseName": "Ohbemオーベム",
     "pokedexNumber": 606,
     "abilities": ["Telepathy", "Synchronize", "Analytic"],
@@ -1108,7 +1108,7 @@
     "id": 47,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "beldum",
+    "imgUrl": "/pokemon/images/beldum.png",
     "japaneseName": "Dumbberダンバル",
     "pokedexNumber": 374,
     "abilities": ["Clear Body", "Light Metal"],
@@ -1132,7 +1132,7 @@
     "id": 48,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "bellossom",
+    "imgUrl": "/pokemon/images/bellossom.png",
     "japaneseName": "Kireihanaキレイハナ",
     "pokedexNumber": 182,
     "abilities": ["Chlorophyll", "Healer"],
@@ -1156,7 +1156,7 @@
     "id": 49,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "bellsprout",
+    "imgUrl": "/pokemon/images/bellsprout.png",
     "japaneseName": "Madatsubomiマダツボミ",
     "pokedexNumber": 69,
     "abilities": ["Chlorophyll", "Gluttony"],
@@ -1180,7 +1180,7 @@
     "id": 50,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "bergmite",
+    "imgUrl": "/pokemon/images/bergmite.png",
     "japaneseName": "Kachikohruカチコール",
     "pokedexNumber": 712,
     "abilities": ["Own Tempo", "Ice Body", "Sturdy"],
@@ -1204,7 +1204,7 @@
     "id": 51,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "bewear",
+    "imgUrl": "/pokemon/images/bewear.png",
     "japaneseName": "Kiterugumaキテルグマ",
     "pokedexNumber": 760,
     "abilities": ["Fluffy", "Klutz", "Unnerve"],
@@ -1228,7 +1228,7 @@
     "id": 52,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "bibarel",
+    "imgUrl": "/pokemon/images/bibarel.png",
     "japaneseName": "Beadaruビーダル",
     "pokedexNumber": 400,
     "abilities": ["Simple", "Unaware", "Moody"],
@@ -1252,7 +1252,7 @@
     "id": 53,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "bidoof",
+    "imgUrl": "/pokemon/images/bidoof.png",
     "japaneseName": "Bippaビッパ",
     "pokedexNumber": 399,
     "abilities": ["Simple", "Unaware", "Moody"],
@@ -1276,7 +1276,7 @@
     "id": 54,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "binacle",
+    "imgUrl": "/pokemon/images/binacle.png",
     "japaneseName": "Kameteteカメテテ",
     "pokedexNumber": 688,
     "abilities": ["Tough Claws", "Sniper", "Pickpocket"],
@@ -1300,7 +1300,7 @@
     "id": 55,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "bisharp",
+    "imgUrl": "/pokemon/images/bisharp.png",
     "japaneseName": "Kirikizanキリキザン",
     "pokedexNumber": 625,
     "abilities": ["Defiant", "Inner Focus", "Pressure"],
@@ -1324,7 +1324,7 @@
     "id": 56,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "blastoise",
+    "imgUrl": "/pokemon/images/blastoise.png",
     "japaneseName": "Kamexカメックス",
     "pokedexNumber": 9,
     "abilities": ["Torrent", "Rain Dish"],
@@ -1348,7 +1348,7 @@
     "id": 57,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "blaziken",
+    "imgUrl": "/pokemon/images/blaziken.png",
     "japaneseName": "Bursyamoバシャーモ",
     "pokedexNumber": 257,
     "abilities": ["Blaze", "Speed Boost"],
@@ -1372,7 +1372,7 @@
     "id": 58,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "blissey",
+    "imgUrl": "/pokemon/images/blissey.png",
     "japaneseName": "Happinasハピナス",
     "pokedexNumber": 242,
     "abilities": ["Natural Cure", "Serene Grace", "Healer"],
@@ -1396,7 +1396,7 @@
     "id": 59,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "blitzle",
+    "imgUrl": "/pokemon/images/blitzle.png",
     "japaneseName": "Shimamaシママ",
     "pokedexNumber": 522,
     "abilities": ["Lightningrod", "Motor Drive", "Sap Sipper"],
@@ -1420,7 +1420,7 @@
     "id": 60,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "boldore",
+    "imgUrl": "/pokemon/images/boldore.png",
     "japaneseName": "Gantleガントル",
     "pokedexNumber": 525,
     "abilities": ["Sturdy", "Weak Armor", "Sand Force"],
@@ -1444,7 +1444,7 @@
     "id": 61,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "bonsly",
+    "imgUrl": "/pokemon/images/bonsly.png",
     "japaneseName": "Usohachiウソハチ",
     "pokedexNumber": 438,
     "abilities": ["Sturdy", "Rock Head", "Rattled"],
@@ -1468,7 +1468,7 @@
     "id": 62,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "bouffalant",
+    "imgUrl": "/pokemon/images/bouffalant.png",
     "japaneseName": "Buffronバッフロン",
     "pokedexNumber": 626,
     "abilities": ["Reckless", "Sap Sipper", "Soundproof"],
@@ -1492,7 +1492,7 @@
     "id": 63,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "bounsweet",
+    "imgUrl": "/pokemon/images/bounsweet.png",
     "japaneseName": "Amakajiアマカジ",
     "pokedexNumber": 761,
     "abilities": ["Leaf Guard", "Oblivious", "Sweet Veil"],
@@ -1516,7 +1516,7 @@
     "id": 64,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "braixen",
+    "imgUrl": "/pokemon/images/braixen.png",
     "japaneseName": "Tairenarテールナー",
     "pokedexNumber": 654,
     "abilities": ["Blaze", "Magician"],
@@ -1540,7 +1540,7 @@
     "id": 65,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "braviary",
+    "imgUrl": "/pokemon/images/braviary.png",
     "japaneseName": "Warrgleウォーグル",
     "pokedexNumber": 628,
     "abilities": ["Keen Eye", "Sheer Force", "Defiant"],
@@ -1564,7 +1564,7 @@
     "id": 66,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "breloom",
+    "imgUrl": "/pokemon/images/breloom.png",
     "japaneseName": "Kinogassaキノガッサ",
     "pokedexNumber": 286,
     "abilities": ["Effect Spore", "Poison Heal", "Technician"],
@@ -1588,7 +1588,7 @@
     "id": 67,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "brionne",
+    "imgUrl": "/pokemon/images/brionne.png",
     "japaneseName": "Osyamariオシャマリ",
     "pokedexNumber": 729,
     "abilities": ["Torrent", "Liquid Voice"],
@@ -1612,7 +1612,7 @@
     "id": 68,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "bronzong",
+    "imgUrl": "/pokemon/images/bronzong.png",
     "japaneseName": "Dohtakunドータクン",
     "pokedexNumber": 437,
     "abilities": ["Levitate", "Heatproof", "Heavy Metal"],
@@ -1636,7 +1636,7 @@
     "id": 69,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "bronzor",
+    "imgUrl": "/pokemon/images/bronzor.png",
     "japaneseName": "Dohmirrorドーミラー",
     "pokedexNumber": 436,
     "abilities": ["Levitate", "Heatproof", "Heavy Metal"],
@@ -1660,7 +1660,7 @@
     "id": 70,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "bruxish",
+    "imgUrl": "/pokemon/images/bruxish.png",
     "japaneseName": "Hagigishiriハギギシリ",
     "pokedexNumber": 779,
     "abilities": ["Dazzling", "Strong Jaw", "Wonder Skin "],
@@ -1684,7 +1684,7 @@
     "id": 71,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "budew",
+    "imgUrl": "/pokemon/images/budew.png",
     "japaneseName": "Subomieスボミー",
     "pokedexNumber": 406,
     "abilities": ["Natural Cure", "Poison Point", "Leaf Guard"],
@@ -1708,7 +1708,7 @@
     "id": 72,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "buizel",
+    "imgUrl": "/pokemon/images/buizel.png",
     "japaneseName": "Buoyselブイゼル",
     "pokedexNumber": 418,
     "abilities": ["Swift Swim", "Water Veil"],
@@ -1732,7 +1732,7 @@
     "id": 73,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "bulbasaur",
+    "imgUrl": "/pokemon/images/bulbasaur.png",
     "japaneseName": "Fushigidaneフシギダネ",
     "pokedexNumber": 1,
     "abilities": ["Overgrow", "Chlorophyll"],
@@ -1756,7 +1756,7 @@
     "id": 74,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "buneary",
+    "imgUrl": "/pokemon/images/buneary.png",
     "japaneseName": "Mimirolミミロル",
     "pokedexNumber": 427,
     "abilities": ["Run Away", "Klutz", "Limber"],
@@ -1780,7 +1780,7 @@
     "id": 75,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "bunnelby",
+    "imgUrl": "/pokemon/images/bunnelby.png",
     "japaneseName": "Horubeeホルビー",
     "pokedexNumber": 659,
     "abilities": ["Pickup", "Cheek Pouch", "Huge Power"],
@@ -1804,7 +1804,7 @@
     "id": 76,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "burmy",
+    "imgUrl": "/pokemon/images/burmy.png",
     "japaneseName": "Minomucchiミノムッチ",
     "pokedexNumber": 412,
     "abilities": ["Shed Skin", "Overcoat"],
@@ -1828,7 +1828,7 @@
     "id": 77,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "butterfree",
+    "imgUrl": "/pokemon/images/butterfree.png",
     "japaneseName": "Butterfreeバタフリー",
     "pokedexNumber": 12,
     "abilities": ["Compoundeyes", "Tinted Lens"],
@@ -1852,7 +1852,7 @@
     "id": 78,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "buzzwole",
+    "imgUrl": "/pokemon/images/buzzwole.png",
     "japaneseName": "Massivoonマッシブーン",
     "pokedexNumber": 794,
     "abilities": ["Beast Boost"],
@@ -1876,7 +1876,7 @@
     "id": 79,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "cacnea",
+    "imgUrl": "/pokemon/images/cacnea.png",
     "japaneseName": "Saboneaサボネア",
     "pokedexNumber": 331,
     "abilities": ["Sand Veil", "Water Absorb"],
@@ -1900,7 +1900,7 @@
     "id": 80,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "cacturne",
+    "imgUrl": "/pokemon/images/cacturne.png",
     "japaneseName": "Noctusノクタス",
     "pokedexNumber": 332,
     "abilities": ["Sand Veil", "Water Absorb"],
@@ -1924,7 +1924,7 @@
     "id": 81,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "camerupt",
+    "imgUrl": "/pokemon/images/camerupt.png",
     "japaneseName": "Bakuudaバクーダ",
     "pokedexNumber": 323,
     "abilities": ["Magma Armor", "Solid Rock", "Anger Point"],
@@ -1948,7 +1948,7 @@
     "id": 82,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "carbink",
+    "imgUrl": "/pokemon/images/carbink.png",
     "japaneseName": "Melecieメレシー",
     "pokedexNumber": 703,
     "abilities": ["Clear Body", "Sturdy"],
@@ -1972,7 +1972,7 @@
     "id": 83,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "carnivine",
+    "imgUrl": "/pokemon/images/carnivine.png",
     "japaneseName": "Muskippaマスキッパ",
     "pokedexNumber": 455,
     "abilities": ["Levitate"],
@@ -1996,7 +1996,7 @@
     "id": 84,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "carracosta",
+    "imgUrl": "/pokemon/images/carracosta.png",
     "japaneseName": "Abagouraアバゴーラ",
     "pokedexNumber": 565,
     "abilities": ["Solid Rock", "Sturdy", "Swift Swim"],
@@ -2020,7 +2020,7 @@
     "id": 85,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "carvanha",
+    "imgUrl": "/pokemon/images/carvanha.png",
     "japaneseName": "Kibanhaキバニア",
     "pokedexNumber": 318,
     "abilities": ["Rough Skin", "Speed Boost"],
@@ -2044,7 +2044,7 @@
     "id": 86,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "cascoon",
+    "imgUrl": "/pokemon/images/cascoon.png",
     "japaneseName": "Mayuldマユルド",
     "pokedexNumber": 268,
     "abilities": ["Shed Skin"],
@@ -2068,7 +2068,7 @@
     "id": 87,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "castform",
+    "imgUrl": "/pokemon/images/castform.png",
     "japaneseName": "Powalenポワルン",
     "pokedexNumber": 351,
     "abilities": ["Forecast"],
@@ -2092,7 +2092,7 @@
     "id": 88,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "caterpie",
+    "imgUrl": "/pokemon/images/caterpie.png",
     "japaneseName": "Caterpieキャタピー",
     "pokedexNumber": 10,
     "abilities": ["Shield Dust", "Run Away"],
@@ -2116,7 +2116,7 @@
     "id": 89,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "celebi",
+    "imgUrl": "/pokemon/images/celebi.png",
     "japaneseName": "Celebiセレビィ",
     "pokedexNumber": 251,
     "abilities": ["Natural Cure"],
@@ -2140,7 +2140,7 @@
     "id": 90,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "celesteela",
+    "imgUrl": "/pokemon/images/celesteela.png",
     "japaneseName": "Tekkaguyaテッカグヤ",
     "pokedexNumber": 797,
     "abilities": ["Beast Boost"],
@@ -2164,7 +2164,7 @@
     "id": 91,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "chandelure",
+    "imgUrl": "/pokemon/images/chandelure.png",
     "japaneseName": "Chandelaシャンデラ",
     "pokedexNumber": 609,
     "abilities": ["Flash Fire", "Flame Body", "Infiltrator"],
@@ -2188,7 +2188,7 @@
     "id": 92,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "chansey",
+    "imgUrl": "/pokemon/images/chansey.png",
     "japaneseName": "Luckyラッキー",
     "pokedexNumber": 113,
     "abilities": ["Natural Cure", "Serene Grace", "Healer"],
@@ -2212,7 +2212,7 @@
     "id": 93,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "charizard",
+    "imgUrl": "/pokemon/images/charizard.png",
     "japaneseName": "Lizardonリザードン",
     "pokedexNumber": 6,
     "abilities": ["Blaze", "Solar Power"],
@@ -2236,7 +2236,7 @@
     "id": 94,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "charjabug",
+    "imgUrl": "/pokemon/images/charjabug.png",
     "japaneseName": "Dendimushiデンヂムシ",
     "pokedexNumber": 737,
     "abilities": ["Battery"],
@@ -2260,7 +2260,7 @@
     "id": 95,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "charmander",
+    "imgUrl": "/pokemon/images/charmander.png",
     "japaneseName": "Hitokageヒトカゲ",
     "pokedexNumber": 4,
     "abilities": ["Blaze", "Solar Power"],
@@ -2284,7 +2284,7 @@
     "id": 96,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "charmeleon",
+    "imgUrl": "/pokemon/images/charmeleon.png",
     "japaneseName": "Lizardoリザード",
     "pokedexNumber": 5,
     "abilities": ["Blaze", "Solar Power"],
@@ -2308,7 +2308,7 @@
     "id": 97,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "chatot",
+    "imgUrl": "/pokemon/images/chatot.png",
     "japaneseName": "Perapペラップ",
     "pokedexNumber": 441,
     "abilities": ["Keen Eye", "Tangled Feet", "Big Pecks"],
@@ -2332,7 +2332,7 @@
     "id": 98,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "cherrim",
+    "imgUrl": "/pokemon/images/cherrim.png",
     "japaneseName": "Cherrimチェリム",
     "pokedexNumber": 421,
     "abilities": ["Flower Gift"],
@@ -2356,7 +2356,7 @@
     "id": 99,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "cherubi",
+    "imgUrl": "/pokemon/images/cherubi.png",
     "japaneseName": "Cherinboチェリンボ",
     "pokedexNumber": 420,
     "abilities": ["Chlorophyll"],
@@ -2380,7 +2380,7 @@
     "id": 100,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "chesnaught",
+    "imgUrl": "/pokemon/images/chesnaught.png",
     "japaneseName": "Brigarronブリガロン",
     "pokedexNumber": 652,
     "abilities": ["Overgrow", "Bulletproof"],
@@ -2404,7 +2404,7 @@
     "id": 101,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "chespin",
+    "imgUrl": "/pokemon/images/chespin.png",
     "japaneseName": "Harimaronハリマロン",
     "pokedexNumber": 650,
     "abilities": ["Overgrow", "Bulletproof"],
@@ -2428,7 +2428,7 @@
     "id": 102,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "chikorita",
+    "imgUrl": "/pokemon/images/chikorita.png",
     "japaneseName": "Chicoritaチコリータ",
     "pokedexNumber": 152,
     "abilities": ["Overgrow", "Leaf Guard"],
@@ -2452,7 +2452,7 @@
     "id": 103,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "chimchar",
+    "imgUrl": "/pokemon/images/chimchar.png",
     "japaneseName": "Hikozaruヒコザル",
     "pokedexNumber": 390,
     "abilities": ["Blaze", "Iron Fist"],
@@ -2476,7 +2476,7 @@
     "id": 104,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "chimecho",
+    "imgUrl": "/pokemon/images/chimecho.png",
     "japaneseName": "Chireanチリーン",
     "pokedexNumber": 358,
     "abilities": ["Levitate"],
@@ -2500,7 +2500,7 @@
     "id": 105,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "chinchou",
+    "imgUrl": "/pokemon/images/chinchou.png",
     "japaneseName": "Chonchieチョンチー",
     "pokedexNumber": 170,
     "abilities": ["Volt Absorb", "Illuminate", "Water Absorb"],
@@ -2524,7 +2524,7 @@
     "id": 106,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "chingling",
+    "imgUrl": "/pokemon/images/chingling.png",
     "japaneseName": "Lisyanリーシャン",
     "pokedexNumber": 433,
     "abilities": ["Levitate"],
@@ -2548,7 +2548,7 @@
     "id": 107,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "cinccino",
+    "imgUrl": "/pokemon/images/cinccino.png",
     "japaneseName": "Chillaccinoチラチーノ",
     "pokedexNumber": 573,
     "abilities": ["Cute Charm", "Technician", "Skill Link"],
@@ -2572,7 +2572,7 @@
     "id": 108,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "clamperl",
+    "imgUrl": "/pokemon/images/clamperl.png",
     "japaneseName": "Pearluluパールル",
     "pokedexNumber": 366,
     "abilities": ["Shell Armor", "Rattled"],
@@ -2596,7 +2596,7 @@
     "id": 109,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "clauncher",
+    "imgUrl": "/pokemon/images/clauncher.png",
     "japaneseName": "Udeppouウデッポウ",
     "pokedexNumber": 692,
     "abilities": ["Mega Launcher"],
@@ -2620,7 +2620,7 @@
     "id": 110,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "clawitzer",
+    "imgUrl": "/pokemon/images/clawitzer.png",
     "japaneseName": "Blosterブロスター",
     "pokedexNumber": 693,
     "abilities": ["Mega Launcher"],
@@ -2644,7 +2644,7 @@
     "id": 111,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "claydol",
+    "imgUrl": "/pokemon/images/claydol.png",
     "japaneseName": "Nendollネンドール",
     "pokedexNumber": 344,
     "abilities": ["Levitate"],
@@ -2668,7 +2668,7 @@
     "id": 112,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "clefable",
+    "imgUrl": "/pokemon/images/clefable.png",
     "japaneseName": "Pixyピクシー",
     "pokedexNumber": 36,
     "abilities": ["Cute Charm", "Magic Guard", "Unaware"],
@@ -2692,7 +2692,7 @@
     "id": 113,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "clefairy",
+    "imgUrl": "/pokemon/images/clefairy.png",
     "japaneseName": "Pippiピッピ",
     "pokedexNumber": 35,
     "abilities": ["Cute Charm", "Magic Guard", "Friend Guard"],
@@ -2716,7 +2716,7 @@
     "id": 114,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "cleffa",
+    "imgUrl": "/pokemon/images/cleffa.png",
     "japaneseName": "Pyピィ",
     "pokedexNumber": 173,
     "abilities": ["Cute Charm", "Magic Guard", "Friend Guard"],
@@ -2740,7 +2740,7 @@
     "id": 115,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "cloyster",
+    "imgUrl": "/pokemon/images/cloyster.png",
     "japaneseName": "Parshenパルシェン",
     "pokedexNumber": 91,
     "abilities": ["Shell Armor", "Skill Link", "Overcoat"],
@@ -2764,7 +2764,7 @@
     "id": 116,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "cobalion",
+    "imgUrl": "/pokemon/images/cobalion.png",
     "japaneseName": "Cobalonコバルオン",
     "pokedexNumber": 638,
     "abilities": ["Justified"],
@@ -2788,7 +2788,7 @@
     "id": 117,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "cofagrigus",
+    "imgUrl": "/pokemon/images/cofagrigus.png",
     "japaneseName": "Desukarnデスカーン",
     "pokedexNumber": 563,
     "abilities": ["Mummy"],
@@ -2812,7 +2812,7 @@
     "id": 118,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "combee",
+    "imgUrl": "/pokemon/images/combee.png",
     "japaneseName": "Mitsuhoneyミツハニー",
     "pokedexNumber": 415,
     "abilities": ["Honey Gather", "Hustle"],
@@ -2836,7 +2836,7 @@
     "id": 119,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "combusken",
+    "imgUrl": "/pokemon/images/combusken.png",
     "japaneseName": "Wakasyamoワカシャモ",
     "pokedexNumber": 256,
     "abilities": ["Blaze", "Speed Boost"],
@@ -2860,7 +2860,7 @@
     "id": 120,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "comfey",
+    "imgUrl": "/pokemon/images/comfey.png",
     "japaneseName": "Cuwawaキュワワー",
     "pokedexNumber": 764,
     "abilities": ["Flower Veil", "Triage", "Natural Cure"],
@@ -2884,7 +2884,7 @@
     "id": 121,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "conkeldurr",
+    "imgUrl": "/pokemon/images/conkeldurr.png",
     "japaneseName": "Roubushinローブシン",
     "pokedexNumber": 534,
     "abilities": ["Guts", "Sheer Force", "Iron Fist"],
@@ -2908,7 +2908,7 @@
     "id": 122,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "corphish",
+    "imgUrl": "/pokemon/images/corphish.png",
     "japaneseName": "Heiganiヘイガニ",
     "pokedexNumber": 341,
     "abilities": ["Hyper Cutter", "Shell Armor", "Adaptability"],
@@ -2932,7 +2932,7 @@
     "id": 123,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "corsola",
+    "imgUrl": "/pokemon/images/corsola.png",
     "japaneseName": "Sunnygoサニーゴ",
     "pokedexNumber": 222,
     "abilities": ["Hustle", "Natural Cure", "Regenerator"],
@@ -2956,7 +2956,7 @@
     "id": 124,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "cosmoem",
+    "imgUrl": "/pokemon/images/cosmoem.png",
     "japaneseName": "Cosmovumコスモウム",
     "pokedexNumber": 790,
     "abilities": ["Sturdy"],
@@ -2980,7 +2980,7 @@
     "id": 125,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "cosmog",
+    "imgUrl": "/pokemon/images/cosmog.png",
     "japaneseName": "Cosmogコスモッグ",
     "pokedexNumber": 789,
     "abilities": ["Unaware"],
@@ -3004,7 +3004,7 @@
     "id": 126,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "cottonee",
+    "imgUrl": "/pokemon/images/cottonee.png",
     "japaneseName": "Monmenモンメン",
     "pokedexNumber": 546,
     "abilities": ["Prankster", "Infiltrator", "Chlorophyll"],
@@ -3028,7 +3028,7 @@
     "id": 127,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "crabominable",
+    "imgUrl": "/pokemon/images/crabominable.png",
     "japaneseName": "Kekenkaniケケンカニ",
     "pokedexNumber": 740,
     "abilities": ["Hyper Cutter", "Iron Fist", "Anger Point"],
@@ -3052,7 +3052,7 @@
     "id": 128,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "crabrawler",
+    "imgUrl": "/pokemon/images/crabrawler.png",
     "japaneseName": "Makenkaniマケンカニ",
     "pokedexNumber": 739,
     "abilities": ["Hyper Cutter", "Iron Fist", "Anger Point"],
@@ -3076,7 +3076,7 @@
     "id": 129,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "cradily",
+    "imgUrl": "/pokemon/images/cradily.png",
     "japaneseName": "Yuradleユレイドル",
     "pokedexNumber": 346,
     "abilities": ["Suction Cups", "Storm Drain"],
@@ -3100,7 +3100,7 @@
     "id": 130,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "cranidos",
+    "imgUrl": "/pokemon/images/cranidos.png",
     "japaneseName": "Zugaidosズガイドス",
     "pokedexNumber": 408,
     "abilities": ["Mold Breaker", "Sheer Force"],
@@ -3124,7 +3124,7 @@
     "id": 131,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "crawdaunt",
+    "imgUrl": "/pokemon/images/crawdaunt.png",
     "japaneseName": "Shizarigerシザリガー",
     "pokedexNumber": 342,
     "abilities": ["Hyper Cutter", "Shell Armor", "Adaptability"],
@@ -3148,7 +3148,7 @@
     "id": 132,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "cresselia",
+    "imgUrl": "/pokemon/images/cresselia.png",
     "japaneseName": "Cresseliaクレセリア",
     "pokedexNumber": 488,
     "abilities": ["Levitate"],
@@ -3172,7 +3172,7 @@
     "id": 133,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "croagunk",
+    "imgUrl": "/pokemon/images/croagunk.png",
     "japaneseName": "Gureggruグレッグル",
     "pokedexNumber": 453,
     "abilities": ["Anticipation", "Dry Skin", "Poison Touch"],
@@ -3196,7 +3196,7 @@
     "id": 134,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "crobat",
+    "imgUrl": "/pokemon/images/crobat.png",
     "japaneseName": "Crobatクロバット",
     "pokedexNumber": 169,
     "abilities": ["Inner Focus", "Infiltrator"],
@@ -3220,7 +3220,7 @@
     "id": 135,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "croconaw",
+    "imgUrl": "/pokemon/images/croconaw.png",
     "japaneseName": "Alligatesアリゲイツ",
     "pokedexNumber": 159,
     "abilities": ["Torrent", "Sheer Force"],
@@ -3244,7 +3244,7 @@
     "id": 136,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "crustle",
+    "imgUrl": "/pokemon/images/crustle.png",
     "japaneseName": "Iwapalaceイワパレス",
     "pokedexNumber": 558,
     "abilities": ["Sturdy", "Shell Armor", "Weak Armor"],
@@ -3268,7 +3268,7 @@
     "id": 137,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "cryogonal",
+    "imgUrl": "/pokemon/images/cryogonal.png",
     "japaneseName": "Freegeoフリージオ",
     "pokedexNumber": 615,
     "abilities": ["Levitate"],
@@ -3292,7 +3292,7 @@
     "id": 138,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "cubchoo",
+    "imgUrl": "/pokemon/images/cubchoo.png",
     "japaneseName": "Kumasyunクマシュン",
     "pokedexNumber": 613,
     "abilities": ["Snow Cloak", "Slush Rush", "Rattled"],
@@ -3316,7 +3316,7 @@
     "id": 139,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "cubone",
+    "imgUrl": "/pokemon/images/cubone.png",
     "japaneseName": "Karakaraカラカラ",
     "pokedexNumber": 104,
     "abilities": ["Rock Head", "Lightningrod", "Battle Armor"],
@@ -3340,7 +3340,7 @@
     "id": 140,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "cutiefly",
+    "imgUrl": "/pokemon/images/cutiefly.png",
     "japaneseName": "Abulyアブリー",
     "pokedexNumber": 742,
     "abilities": ["Honey Gather", "Shield Dust", "Sweet Veil"],
@@ -3364,7 +3364,7 @@
     "id": 141,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "cyndaquil",
+    "imgUrl": "/pokemon/images/cyndaquil.png",
     "japaneseName": "Hinoarashiヒノアラシ",
     "pokedexNumber": 155,
     "abilities": ["Blaze", "Flash Fire"],
@@ -3388,7 +3388,7 @@
     "id": 142,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "darkrai",
+    "imgUrl": "/pokemon/images/darkrai.png",
     "japaneseName": "Darkraiダークライ",
     "pokedexNumber": 491,
     "abilities": ["Bad Dreams"],
@@ -3412,7 +3412,7 @@
     "id": 143,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "darmanitan-standard",
+    "imgUrl": "/pokemon/images/darmanitan-standard.png",
     "japaneseName": "Hihidarumaヒヒダルマ",
     "pokedexNumber": 555,
     "abilities": ["Sheer Force", "Zen Mode"],
@@ -3436,7 +3436,7 @@
     "id": 144,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "dartrix",
+    "imgUrl": "/pokemon/images/dartrix.png",
     "japaneseName": "Fukuthrowフクスロー",
     "pokedexNumber": 723,
     "abilities": ["Overgrow", "Long Reach"],
@@ -3460,7 +3460,7 @@
     "id": 145,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "darumaka",
+    "imgUrl": "/pokemon/images/darumaka.png",
     "japaneseName": "Darumakkaダルマッカ",
     "pokedexNumber": 554,
     "abilities": ["Hustle", "Inner Focus"],
@@ -3484,7 +3484,7 @@
     "id": 146,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "decidueye",
+    "imgUrl": "/pokemon/images/decidueye.png",
     "japaneseName": "Junaiperジュナイパー",
     "pokedexNumber": 724,
     "abilities": ["Overgrow", "Long Reach"],
@@ -3508,7 +3508,7 @@
     "id": 147,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "dedenne",
+    "imgUrl": "/pokemon/images/dedenne.png",
     "japaneseName": "Dedenneデデンネ",
     "pokedexNumber": 702,
     "abilities": ["Cheek Pouch", "Pickup", "Plus"],
@@ -3532,7 +3532,7 @@
     "id": 148,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "deerling",
+    "imgUrl": "/pokemon/images/deerling.png",
     "japaneseName": "Shikijikaシキジカ",
     "pokedexNumber": 585,
     "abilities": ["Chlorophyll", "Sap Sipper", "Serene Grace"],
@@ -3556,7 +3556,7 @@
     "id": 149,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "deino",
+    "imgUrl": "/pokemon/images/deino.png",
     "japaneseName": "Monozuモノズ",
     "pokedexNumber": 633,
     "abilities": ["Hustle"],
@@ -3580,7 +3580,7 @@
     "id": 150,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "delcatty",
+    "imgUrl": "/pokemon/images/delcatty.png",
     "japaneseName": "Enekororoエネコロロ",
     "pokedexNumber": 301,
     "abilities": ["Cute Charm", "Normalize", "Wonder Skin "],
@@ -3604,7 +3604,7 @@
     "id": 151,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "delibird",
+    "imgUrl": "/pokemon/images/delibird.png",
     "japaneseName": "Delibirdデリバード",
     "pokedexNumber": 225,
     "abilities": ["Vital Spirit", "Hustle", "Insomnia"],
@@ -3628,7 +3628,7 @@
     "id": 152,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "delphox",
+    "imgUrl": "/pokemon/images/delphox.png",
     "japaneseName": "Mahoxyマフォクシー",
     "pokedexNumber": 655,
     "abilities": ["Blaze", "Magician"],
@@ -3652,7 +3652,7 @@
     "id": 153,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "deoxys-normal",
+    "imgUrl": "/pokemon/images/deoxys-normal.png",
     "japaneseName": "Deoxysデオキシス",
     "pokedexNumber": 386,
     "abilities": ["Pressure"],
@@ -3676,7 +3676,7 @@
     "id": 154,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "dewgong",
+    "imgUrl": "/pokemon/images/dewgong.png",
     "japaneseName": "Jugonジュゴン",
     "pokedexNumber": 87,
     "abilities": ["Thick Fat", "Hydration", "Ice Body"],
@@ -3700,7 +3700,7 @@
     "id": 155,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "dewott",
+    "imgUrl": "/pokemon/images/dewott.png",
     "japaneseName": "Futachimaruフタチマル",
     "pokedexNumber": 502,
     "abilities": ["Torrent", "Shell Armor"],
@@ -3724,7 +3724,7 @@
     "id": 156,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "dewpider",
+    "imgUrl": "/pokemon/images/dewpider.png",
     "japaneseName": "Shizukumoシズクモ",
     "pokedexNumber": 751,
     "abilities": ["Water Bubble", "Water Absorb"],
@@ -3748,7 +3748,7 @@
     "id": 157,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "dhelmise",
+    "imgUrl": "/pokemon/images/dhelmise.png",
     "japaneseName": "Dadarinダダリン",
     "pokedexNumber": 781,
     "abilities": ["Steelworker"],
@@ -3772,7 +3772,7 @@
     "id": 158,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "dialga",
+    "imgUrl": "/pokemon/images/dialga.png",
     "japaneseName": "Dialgaディアルガ",
     "pokedexNumber": 483,
     "abilities": ["Pressure", "Telepathy"],
@@ -3796,7 +3796,7 @@
     "id": 159,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "diancie",
+    "imgUrl": "/pokemon/images/diancie.png",
     "japaneseName": "Diancieディアンシー",
     "pokedexNumber": 719,
     "abilities": ["Clear Body"],
@@ -3820,7 +3820,7 @@
     "id": 160,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "diggersby",
+    "imgUrl": "/pokemon/images/diggersby.png",
     "japaneseName": "Horudoホルード",
     "pokedexNumber": 660,
     "abilities": ["Pickup", "Cheek Pouch", "Huge Power"],
@@ -3844,7 +3844,7 @@
     "id": 161,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "diglett",
+    "imgUrl": "/pokemon/images/diglett.png",
     "japaneseName": "Digdaディグダ",
     "pokedexNumber": 50,
     "abilities": ["Sand Veil", "Arena Trap", "Sand Force", "Sand Veil", "Tangling Hair", "Sand Force"],
@@ -3868,7 +3868,7 @@
     "id": 162,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "ditto",
+    "imgUrl": "/pokemon/images/ditto.png",
     "japaneseName": "Metamonメタモン",
     "pokedexNumber": 132,
     "abilities": ["Limber", "Imposter"],
@@ -3892,7 +3892,7 @@
     "id": 163,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "dodrio",
+    "imgUrl": "/pokemon/images/dodrio.png",
     "japaneseName": "Dodorioドードリオ",
     "pokedexNumber": 85,
     "abilities": ["Run Away", "Early Bird", "Tangled Feet"],
@@ -3916,7 +3916,7 @@
     "id": 164,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "doduo",
+    "imgUrl": "/pokemon/images/doduo.png",
     "japaneseName": "Dodoドードー",
     "pokedexNumber": 84,
     "abilities": ["Run Away", "Early Bird", "Tangled Feet"],
@@ -3940,7 +3940,7 @@
     "id": 165,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "donphan",
+    "imgUrl": "/pokemon/images/donphan.png",
     "japaneseName": "Donfanドンファン",
     "pokedexNumber": 232,
     "abilities": ["Sturdy", "Sand Veil"],
@@ -3964,7 +3964,7 @@
     "id": 166,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "doublade",
+    "imgUrl": "/pokemon/images/doublade.png",
     "japaneseName": "Nidangillニダンギル",
     "pokedexNumber": 680,
     "abilities": ["No Guard"],
@@ -3988,7 +3988,7 @@
     "id": 167,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "dragalge",
+    "imgUrl": "/pokemon/images/dragalge.png",
     "japaneseName": "Dramidoroドラミドロ",
     "pokedexNumber": 691,
     "abilities": ["Poison Point", "Poison Touch", "Adaptability"],
@@ -4012,7 +4012,7 @@
     "id": 168,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "dragonair",
+    "imgUrl": "/pokemon/images/dragonair.png",
     "japaneseName": "Hakuryuハクリュー",
     "pokedexNumber": 148,
     "abilities": ["Shed Skin", "Marvel Scale"],
@@ -4036,7 +4036,7 @@
     "id": 169,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "dragonite",
+    "imgUrl": "/pokemon/images/dragonite.png",
     "japaneseName": "Kairyuカイリュー",
     "pokedexNumber": 149,
     "abilities": ["Inner Focus", "Multiscale"],
@@ -4060,7 +4060,7 @@
     "id": 170,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "drampa",
+    "imgUrl": "/pokemon/images/drampa.png",
     "japaneseName": "Jijilongジジーロン",
     "pokedexNumber": 780,
     "abilities": ["Berserk", "Sap Sipper", "Cloud Nine"],
@@ -4084,7 +4084,7 @@
     "id": 171,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "drapion",
+    "imgUrl": "/pokemon/images/drapion.png",
     "japaneseName": "Dorapionドラピオン",
     "pokedexNumber": 452,
     "abilities": ["Battle Armor", "Sniper", "Keen Eye"],
@@ -4108,7 +4108,7 @@
     "id": 172,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "dratini",
+    "imgUrl": "/pokemon/images/dratini.png",
     "japaneseName": "Miniryuミニリュウ",
     "pokedexNumber": 147,
     "abilities": ["Shed Skin", "Marvel Scale"],
@@ -4132,7 +4132,7 @@
     "id": 173,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "drifblim",
+    "imgUrl": "/pokemon/images/drifblim.png",
     "japaneseName": "Fuwarideフワライド",
     "pokedexNumber": 426,
     "abilities": ["Aftermath", "Unburden", "Flare Boost"],
@@ -4156,7 +4156,7 @@
     "id": 174,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "drifloon",
+    "imgUrl": "/pokemon/images/drifloon.png",
     "japaneseName": "Fuwanteフワンテ",
     "pokedexNumber": 425,
     "abilities": ["Aftermath", "Unburden", "Flare Boost"],
@@ -4180,7 +4180,7 @@
     "id": 175,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "drilbur",
+    "imgUrl": "/pokemon/images/drilbur.png",
     "japaneseName": "Mogurewモグリュー",
     "pokedexNumber": 529,
     "abilities": ["Sand Rush", "Sand Force", "Mold Breaker"],
@@ -4204,7 +4204,7 @@
     "id": 176,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "drowzee",
+    "imgUrl": "/pokemon/images/drowzee.png",
     "japaneseName": "Sleepeスリープ",
     "pokedexNumber": 96,
     "abilities": ["Insomnia", "Forewarn", "Inner Focus"],
@@ -4228,7 +4228,7 @@
     "id": 177,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "druddigon",
+    "imgUrl": "/pokemon/images/druddigon.png",
     "japaneseName": "Crimganクリムガン",
     "pokedexNumber": 621,
     "abilities": ["Rough Skin", "Sheer Force", "Mold Breaker"],
@@ -4252,7 +4252,7 @@
     "id": 178,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "ducklett",
+    "imgUrl": "/pokemon/images/ducklett.png",
     "japaneseName": "Koaruhieコアルヒー",
     "pokedexNumber": 580,
     "abilities": ["Keen Eye", "Big Pecks", "Hydration"],
@@ -4276,7 +4276,7 @@
     "id": 179,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "dugtrio",
+    "imgUrl": "/pokemon/images/dugtrio.png",
     "japaneseName": "Dugtrioダグトリオ",
     "pokedexNumber": 51,
     "abilities": ["Sand Veil", "Arena Trap", "Sand Force", "Sand Veil", "Tangling Hair", "Sand Force"],
@@ -4300,7 +4300,7 @@
     "id": 180,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "dunsparce",
+    "imgUrl": "/pokemon/images/dunsparce.png",
     "japaneseName": "Nokocchiノコッチ",
     "pokedexNumber": 206,
     "abilities": ["Serene Grace", "Run Away", "Rattled"],
@@ -4324,7 +4324,7 @@
     "id": 181,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "duosion",
+    "imgUrl": "/pokemon/images/duosion.png",
     "japaneseName": "Doublanダブラン",
     "pokedexNumber": 578,
     "abilities": ["Overcoat", "Magic Guard", "Regenerator"],
@@ -4348,7 +4348,7 @@
     "id": 182,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "durant",
+    "imgUrl": "/pokemon/images/durant.png",
     "japaneseName": "Aiantアイアント",
     "pokedexNumber": 632,
     "abilities": ["Swarm", "Hustle", "Truant"],
@@ -4372,7 +4372,7 @@
     "id": 183,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "dusclops",
+    "imgUrl": "/pokemon/images/dusclops.png",
     "japaneseName": "Samayouruサマヨール",
     "pokedexNumber": 356,
     "abilities": ["Pressure", "Frisk"],
@@ -4396,7 +4396,7 @@
     "id": 184,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "dusknoir",
+    "imgUrl": "/pokemon/images/dusknoir.png",
     "japaneseName": "Yonoirヨノワール",
     "pokedexNumber": 477,
     "abilities": ["Pressure", "Frisk"],
@@ -4420,7 +4420,7 @@
     "id": 185,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "duskull",
+    "imgUrl": "/pokemon/images/duskull.png",
     "japaneseName": "Yomawaruヨマワル",
     "pokedexNumber": 355,
     "abilities": ["Levitate", "Frisk"],
@@ -4444,7 +4444,7 @@
     "id": 186,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "dustox",
+    "imgUrl": "/pokemon/images/dustox.png",
     "japaneseName": "Dokucaleドクケイル",
     "pokedexNumber": 269,
     "abilities": ["Shield Dust", "Compoundeyes"],
@@ -4468,7 +4468,7 @@
     "id": 187,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "dwebble",
+    "imgUrl": "/pokemon/images/dwebble.png",
     "japaneseName": "Ishizumaiイシズマイ",
     "pokedexNumber": 557,
     "abilities": ["Sturdy", "Shell Armor", "Weak Armor"],
@@ -4492,7 +4492,7 @@
     "id": 188,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "eelektrik",
+    "imgUrl": "/pokemon/images/eelektrik.png",
     "japaneseName": "Shibibeelシビビール",
     "pokedexNumber": 603,
     "abilities": ["Levitate"],
@@ -4516,7 +4516,7 @@
     "id": 189,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "eelektross",
+    "imgUrl": "/pokemon/images/eelektross.png",
     "japaneseName": "Shibirudonシビルドン",
     "pokedexNumber": 604,
     "abilities": ["Levitate"],
@@ -4540,7 +4540,7 @@
     "id": 190,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "eevee",
+    "imgUrl": "/pokemon/images/eevee.png",
     "japaneseName": "Eievuiイーブイ",
     "pokedexNumber": 133,
     "abilities": ["Run Away", "Adaptability", "Anticipation"],
@@ -4564,7 +4564,7 @@
     "id": 191,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "ekans",
+    "imgUrl": "/pokemon/images/ekans.png",
     "japaneseName": "Arboアーボ",
     "pokedexNumber": 23,
     "abilities": ["Intimidate", "Shed Skin", "Unnerve"],
@@ -4588,7 +4588,7 @@
     "id": 192,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "electabuzz",
+    "imgUrl": "/pokemon/images/electabuzz.png",
     "japaneseName": "Elebooエレブー",
     "pokedexNumber": 125,
     "abilities": ["Static", "Vital Spirit"],
@@ -4612,7 +4612,7 @@
     "id": 193,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "electivire",
+    "imgUrl": "/pokemon/images/electivire.png",
     "japaneseName": "Elekibleエレキブル",
     "pokedexNumber": 466,
     "abilities": ["Motor Drive", "Vital Spirit"],
@@ -4636,7 +4636,7 @@
     "id": 194,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "electrike",
+    "imgUrl": "/pokemon/images/electrike.png",
     "japaneseName": "Rakuraiラクライ",
     "pokedexNumber": 309,
     "abilities": ["Static", "Lightningrod", "Minus"],
@@ -4660,7 +4660,7 @@
     "id": 195,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "electrode",
+    "imgUrl": "/pokemon/images/electrode.png",
     "japaneseName": "Marumineマルマイン",
     "pokedexNumber": 101,
     "abilities": ["Soundproof", "Static", "Aftermath"],
@@ -4684,7 +4684,7 @@
     "id": 196,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "elekid",
+    "imgUrl": "/pokemon/images/elekid.png",
     "japaneseName": "Elekidエレキッド",
     "pokedexNumber": 239,
     "abilities": ["Static", "Vital Spirit"],
@@ -4708,7 +4708,7 @@
     "id": 197,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "elgyem",
+    "imgUrl": "/pokemon/images/elgyem.png",
     "japaneseName": "Ligrayリグレー",
     "pokedexNumber": 605,
     "abilities": ["Telepathy", "Synchronize", "Analytic"],
@@ -4732,7 +4732,7 @@
     "id": 198,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "emboar",
+    "imgUrl": "/pokemon/images/emboar.png",
     "japaneseName": "Enbuohエンブオー",
     "pokedexNumber": 500,
     "abilities": ["Blaze", "Reckless"],
@@ -4756,7 +4756,7 @@
     "id": 199,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "emolga",
+    "imgUrl": "/pokemon/images/emolga.png",
     "japaneseName": "Emongaエモンガ",
     "pokedexNumber": 587,
     "abilities": ["Static", "Motor Drive"],
@@ -4780,7 +4780,7 @@
     "id": 200,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "empoleon",
+    "imgUrl": "/pokemon/images/empoleon.png",
     "japaneseName": "Emperteエンペルト",
     "pokedexNumber": 395,
     "abilities": ["Torrent", "Defiant"],
@@ -4804,7 +4804,7 @@
     "id": 201,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "entei",
+    "imgUrl": "/pokemon/images/entei.png",
     "japaneseName": "Enteiエンテイ",
     "pokedexNumber": 244,
     "abilities": ["Pressure", "Inner Focus"],
@@ -4828,7 +4828,7 @@
     "id": 202,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "escavalier",
+    "imgUrl": "/pokemon/images/escavalier.png",
     "japaneseName": "Chevargoシュバルゴ",
     "pokedexNumber": 589,
     "abilities": ["Swarm", "Shell Armor", "Overcoat"],
@@ -4852,7 +4852,7 @@
     "id": 203,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "espeon",
+    "imgUrl": "/pokemon/images/espeon.png",
     "japaneseName": "Eifieエーフィ",
     "pokedexNumber": 196,
     "abilities": ["Synchronize", "Magic Bounce"],
@@ -4876,7 +4876,7 @@
     "id": 204,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "espurr",
+    "imgUrl": "/pokemon/images/espurr.png",
     "japaneseName": "Nyasperニャスパー",
     "pokedexNumber": 677,
     "abilities": ["Keen Eye", "Infiltrator", "Own Tempo"],
@@ -4900,7 +4900,7 @@
     "id": 205,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "excadrill",
+    "imgUrl": "/pokemon/images/excadrill.png",
     "japaneseName": "Doryuzuドリュウズ",
     "pokedexNumber": 530,
     "abilities": ["Sand Rush", "Sand Force", "Mold Breaker"],
@@ -4924,7 +4924,7 @@
     "id": 206,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "exeggcute",
+    "imgUrl": "/pokemon/images/exeggcute.png",
     "japaneseName": "Tamatamaタマタマ",
     "pokedexNumber": 102,
     "abilities": ["Chlorophyll", "Harvest"],
@@ -4948,7 +4948,7 @@
     "id": 207,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "exeggutor",
+    "imgUrl": "/pokemon/images/exeggutor.png",
     "japaneseName": "Nassyナッシー",
     "pokedexNumber": 103,
     "abilities": ["Chlorophyll", "Harvest", "Frisk", "Harvest"],
@@ -4972,7 +4972,7 @@
     "id": 208,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "exploud",
+    "imgUrl": "/pokemon/images/exploud.png",
     "japaneseName": "Bakuongバクオング",
     "pokedexNumber": 295,
     "abilities": ["Soundproof", "Scrappy"],
@@ -4996,7 +4996,7 @@
     "id": 209,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "farfetchd",
+    "imgUrl": "/pokemon/images/farfetchd.png",
     "japaneseName": "Kamonegiカモネギ",
     "pokedexNumber": 83,
     "abilities": ["Keen Eye", "Inner Focus", "Defiant"],
@@ -5020,7 +5020,7 @@
     "id": 210,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "fearow",
+    "imgUrl": "/pokemon/images/fearow.png",
     "japaneseName": "Onidrillオニドリル",
     "pokedexNumber": 22,
     "abilities": ["Keen Eye", "Sniper"],
@@ -5044,7 +5044,7 @@
     "id": 211,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "feebas",
+    "imgUrl": "/pokemon/images/feebas.png",
     "japaneseName": "Hinbassヒンバス",
     "pokedexNumber": 349,
     "abilities": ["Swift Swim", "Oblivious", "Adaptability"],
@@ -5068,7 +5068,7 @@
     "id": 212,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "fennekin",
+    "imgUrl": "/pokemon/images/fennekin.png",
     "japaneseName": "Fokkoフォッコ",
     "pokedexNumber": 653,
     "abilities": ["Blaze", "Magician"],
@@ -5092,7 +5092,7 @@
     "id": 213,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "feraligatr",
+    "imgUrl": "/pokemon/images/feraligatr.png",
     "japaneseName": "Ordileオーダイル",
     "pokedexNumber": 160,
     "abilities": ["Torrent", "Sheer Force"],
@@ -5116,7 +5116,7 @@
     "id": 214,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "ferroseed",
+    "imgUrl": "/pokemon/images/ferroseed.png",
     "japaneseName": "Tesseedテッシード",
     "pokedexNumber": 597,
     "abilities": ["Iron Barbs"],
@@ -5140,7 +5140,7 @@
     "id": 215,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "ferrothorn",
+    "imgUrl": "/pokemon/images/ferrothorn.png",
     "japaneseName": "Nutreyナットレイ",
     "pokedexNumber": 598,
     "abilities": ["Iron Barbs", "Anticipation"],
@@ -5164,7 +5164,7 @@
     "id": 216,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "finneon",
+    "imgUrl": "/pokemon/images/finneon.png",
     "japaneseName": "Keikouoケイコウオ",
     "pokedexNumber": 456,
     "abilities": ["Swift Swim", "Storm Drain", "Water Veil"],
@@ -5188,7 +5188,7 @@
     "id": 217,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "flaaffy",
+    "imgUrl": "/pokemon/images/flaaffy.png",
     "japaneseName": "Mokokoモココ",
     "pokedexNumber": 180,
     "abilities": ["Static", "Plus"],
@@ -5212,7 +5212,7 @@
     "id": 218,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "flabebe",
+    "imgUrl": "/pokemon/images/flabebe.png",
     "japaneseName": "Flabebeフラベベ",
     "pokedexNumber": 669,
     "abilities": ["Flower Veil", "Symbiosis"],
@@ -5236,7 +5236,7 @@
     "id": 219,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "flareon",
+    "imgUrl": "/pokemon/images/flareon.png",
     "japaneseName": "Boosterブースター",
     "pokedexNumber": 136,
     "abilities": ["Flash Fire", "Guts"],
@@ -5260,7 +5260,7 @@
     "id": 220,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "fletchinder",
+    "imgUrl": "/pokemon/images/fletchinder.png",
     "japaneseName": "Hinoyakomaヒノヤコマ",
     "pokedexNumber": 662,
     "abilities": ["Flame Body", "Gale Wings"],
@@ -5284,7 +5284,7 @@
     "id": 221,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "fletchling",
+    "imgUrl": "/pokemon/images/fletchling.png",
     "japaneseName": "Yayakomaヤヤコマ",
     "pokedexNumber": 661,
     "abilities": ["Big Pecks", "Gale Wings"],
@@ -5308,7 +5308,7 @@
     "id": 222,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "floatzel",
+    "imgUrl": "/pokemon/images/floatzel.png",
     "japaneseName": "Floazelフローゼル",
     "pokedexNumber": 419,
     "abilities": ["Swift Swim", "Water Veil"],
@@ -5332,7 +5332,7 @@
     "id": 223,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "floette",
+    "imgUrl": "/pokemon/images/floette.png",
     "japaneseName": "Floetteフラエッテ",
     "pokedexNumber": 670,
     "abilities": ["Flower Veil", "Symbiosis"],
@@ -5356,7 +5356,7 @@
     "id": 224,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "florges",
+    "imgUrl": "/pokemon/images/florges.png",
     "japaneseName": "Florgesフラージェス",
     "pokedexNumber": 671,
     "abilities": ["Flower Veil", "Symbiosis"],
@@ -5380,7 +5380,7 @@
     "id": 225,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "flygon",
+    "imgUrl": "/pokemon/images/flygon.png",
     "japaneseName": "Flygonフライゴン",
     "pokedexNumber": 330,
     "abilities": ["Levitate"],
@@ -5404,7 +5404,7 @@
     "id": 226,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "fomantis",
+    "imgUrl": "/pokemon/images/fomantis.png",
     "japaneseName": "Karikiriカリキリ",
     "pokedexNumber": 753,
     "abilities": ["Leaf Guard", "Contrary"],
@@ -5428,7 +5428,7 @@
     "id": 227,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "foongus",
+    "imgUrl": "/pokemon/images/foongus.png",
     "japaneseName": "Tamagetakeタマゲタケ",
     "pokedexNumber": 590,
     "abilities": ["Effect Spore", "Regenerator"],
@@ -5452,7 +5452,7 @@
     "id": 228,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "forretress",
+    "imgUrl": "/pokemon/images/forretress.png",
     "japaneseName": "Foretosフォレトス",
     "pokedexNumber": 205,
     "abilities": ["Sturdy", "Overcoat"],
@@ -5476,7 +5476,7 @@
     "id": 229,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "fraxure",
+    "imgUrl": "/pokemon/images/fraxure.png",
     "japaneseName": "Onondoオノンド",
     "pokedexNumber": 611,
     "abilities": ["Rivalry", "Mold Breaker", "Unnerve"],
@@ -5500,7 +5500,7 @@
     "id": 230,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "frillish",
+    "imgUrl": "/pokemon/images/frillish.png",
     "japaneseName": "Pururillプルリル",
     "pokedexNumber": 592,
     "abilities": ["Water Absorb", "Cursed Body", "Damp"],
@@ -5524,7 +5524,7 @@
     "id": 231,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "froakie",
+    "imgUrl": "/pokemon/images/froakie.png",
     "japaneseName": "Keromatsuケロマツ",
     "pokedexNumber": 656,
     "abilities": ["Torrent", "Protean"],
@@ -5548,7 +5548,7 @@
     "id": 232,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "frogadier",
+    "imgUrl": "/pokemon/images/frogadier.png",
     "japaneseName": "Gekogashiraゲコガシラ",
     "pokedexNumber": 657,
     "abilities": ["Torrent", "Protean"],
@@ -5572,7 +5572,7 @@
     "id": 233,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "froslass",
+    "imgUrl": "/pokemon/images/froslass.png",
     "japaneseName": "Yukimenokoユキメノコ",
     "pokedexNumber": 478,
     "abilities": ["Snow Cloak", "Cursed Body"],
@@ -5596,7 +5596,7 @@
     "id": 234,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "furfrou",
+    "imgUrl": "/pokemon/images/furfrou.png",
     "japaneseName": "Trimmienトリミアン",
     "pokedexNumber": 676,
     "abilities": ["Fur Coat"],
@@ -5620,7 +5620,7 @@
     "id": 235,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "furret",
+    "imgUrl": "/pokemon/images/furret.png",
     "japaneseName": "Ootachiオオタチ",
     "pokedexNumber": 162,
     "abilities": ["Run Away", "Keen Eye", "Frisk"],
@@ -5644,7 +5644,7 @@
     "id": 236,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "gabite",
+    "imgUrl": "/pokemon/images/gabite.png",
     "japaneseName": "Gabiteガバイト",
     "pokedexNumber": 444,
     "abilities": ["Sand Veil", "Rough Skin"],
@@ -5668,7 +5668,7 @@
     "id": 237,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "gallade",
+    "imgUrl": "/pokemon/images/gallade.png",
     "japaneseName": "Erureidoエルレイド",
     "pokedexNumber": 475,
     "abilities": ["Steadfast", "Justified"],
@@ -5692,7 +5692,7 @@
     "id": 238,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "galvantula",
+    "imgUrl": "/pokemon/images/galvantula.png",
     "japaneseName": "Dentulaデンチュラ",
     "pokedexNumber": 596,
     "abilities": ["Compoundeyes", "Unnerve", "Swarm"],
@@ -5716,7 +5716,7 @@
     "id": 239,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "garbodor",
+    "imgUrl": "/pokemon/images/garbodor.png",
     "japaneseName": "Dustdasダストダス",
     "pokedexNumber": 569,
     "abilities": ["Stench", "Weak Armor", "Aftermath"],
@@ -5740,7 +5740,7 @@
     "id": 240,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "garchomp",
+    "imgUrl": "/pokemon/images/garchomp.png",
     "japaneseName": "Gaburiasガブリアス",
     "pokedexNumber": 445,
     "abilities": ["Sand Veil", "Rough Skin"],
@@ -5764,7 +5764,7 @@
     "id": 241,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "gardevoir",
+    "imgUrl": "/pokemon/images/gardevoir.png",
     "japaneseName": "Sirnightサーナイト",
     "pokedexNumber": 282,
     "abilities": ["Synchronize", "Trace", "Telepathy"],
@@ -5788,7 +5788,7 @@
     "id": 242,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "gastly",
+    "imgUrl": "/pokemon/images/gastly.png",
     "japaneseName": "Ghosゴース",
     "pokedexNumber": 92,
     "abilities": ["Levitate"],
@@ -5812,7 +5812,7 @@
     "id": 243,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "gastrodon",
+    "imgUrl": "/pokemon/images/gastrodon.png",
     "japaneseName": "Tritodonトリトドン",
     "pokedexNumber": 423,
     "abilities": ["Sticky Hold", "Storm Drain", "Sand Force"],
@@ -5836,7 +5836,7 @@
     "id": 244,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "genesect",
+    "imgUrl": "/pokemon/images/genesect.png",
     "japaneseName": "Genesectゲノセクト",
     "pokedexNumber": 649,
     "abilities": ["Download"],
@@ -5860,7 +5860,7 @@
     "id": 245,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "gengar",
+    "imgUrl": "/pokemon/images/gengar.png",
     "japaneseName": "Gangarゲンガー",
     "pokedexNumber": 94,
     "abilities": ["Cursed Body"],
@@ -5884,7 +5884,7 @@
     "id": 246,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "geodude",
+    "imgUrl": "/pokemon/images/geodude.png",
     "japaneseName": "Isitsubuteイシツブテ",
     "pokedexNumber": 74,
     "abilities": ["Rock Head", "Sturdy", "Sand Veil", "Magnet Pull", "Sturdy", "Galvanize"],
@@ -5908,7 +5908,7 @@
     "id": 247,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "gible",
+    "imgUrl": "/pokemon/images/gible.png",
     "japaneseName": "Fukamaruフカマル",
     "pokedexNumber": 443,
     "abilities": ["Sand Veil", "Rough Skin"],
@@ -5932,7 +5932,7 @@
     "id": 248,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "gigalith",
+    "imgUrl": "/pokemon/images/gigalith.png",
     "japaneseName": "Gigaiathギガイアス",
     "pokedexNumber": 526,
     "abilities": ["Sturdy", "Sand Stream", "Sand Force"],
@@ -5956,7 +5956,7 @@
     "id": 249,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "girafarig",
+    "imgUrl": "/pokemon/images/girafarig.png",
     "japaneseName": "Kirinrikiキリンリキ",
     "pokedexNumber": 203,
     "abilities": ["Inner Focus", "Early Bird", "Sap Sipper"],
@@ -5980,7 +5980,7 @@
     "id": 250,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "giratina-altered",
+    "imgUrl": "/pokemon/images/giratina-altered.png",
     "japaneseName": "Giratina (another Forme)ギラティナ",
     "pokedexNumber": 487,
     "abilities": ["Pressure", "Telepathy", "Levitate"],
@@ -6004,7 +6004,7 @@
     "id": 251,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "glaceon",
+    "imgUrl": "/pokemon/images/glaceon.png",
     "japaneseName": "Glaciaグレイシア",
     "pokedexNumber": 471,
     "abilities": ["Snow Cloak", "Ice Body"],
@@ -6028,7 +6028,7 @@
     "id": 252,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "glalie",
+    "imgUrl": "/pokemon/images/glalie.png",
     "japaneseName": "Onigohriオニゴーリ",
     "pokedexNumber": 362,
     "abilities": ["Inner Focus", "Ice Body", "Moody"],
@@ -6052,7 +6052,7 @@
     "id": 253,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "glameow",
+    "imgUrl": "/pokemon/images/glameow.png",
     "japaneseName": "Nyarmarニャルマー",
     "pokedexNumber": 431,
     "abilities": ["Limber", "Own Tempo", "Keen Eye"],
@@ -6076,7 +6076,7 @@
     "id": 254,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "gligar",
+    "imgUrl": "/pokemon/images/gligar.png",
     "japaneseName": "Gligerグライガー",
     "pokedexNumber": 207,
     "abilities": ["Hyper Cutter", "Sand Veil", "Immunity"],
@@ -6100,7 +6100,7 @@
     "id": 255,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "gliscor",
+    "imgUrl": "/pokemon/images/gliscor.png",
     "japaneseName": "Glionグライオン",
     "pokedexNumber": 472,
     "abilities": ["Hyper Cutter", "Sand Veil", "Poison Heal"],
@@ -6124,7 +6124,7 @@
     "id": 256,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "gloom",
+    "imgUrl": "/pokemon/images/gloom.png",
     "japaneseName": "Kusaihanaクサイハナ",
     "pokedexNumber": 44,
     "abilities": ["Chlorophyll", "Stench"],
@@ -6148,7 +6148,7 @@
     "id": 257,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "gogoat",
+    "imgUrl": "/pokemon/images/gogoat.png",
     "japaneseName": "Gogoatゴーゴート",
     "pokedexNumber": 673,
     "abilities": ["Sap Sipper", "Grass Pelt"],
@@ -6172,7 +6172,7 @@
     "id": 258,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "golbat",
+    "imgUrl": "/pokemon/images/golbat.png",
     "japaneseName": "Golbatゴルバット",
     "pokedexNumber": 42,
     "abilities": ["Inner Focus", "Infiltrator"],
@@ -6196,7 +6196,7 @@
     "id": 259,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "goldeen",
+    "imgUrl": "/pokemon/images/goldeen.png",
     "japaneseName": "Tosakintoトサキント",
     "pokedexNumber": 118,
     "abilities": ["Swift Swim", "Water Veil", "Lightningrod"],
@@ -6220,7 +6220,7 @@
     "id": 260,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "golduck",
+    "imgUrl": "/pokemon/images/golduck.png",
     "japaneseName": "Golduckゴルダック",
     "pokedexNumber": 55,
     "abilities": ["Damp", "Cloud Nine", "Swift Swim"],
@@ -6244,7 +6244,7 @@
     "id": 261,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "golem",
+    "imgUrl": "/pokemon/images/golem.png",
     "japaneseName": "Golonyaゴローニャ",
     "pokedexNumber": 76,
     "abilities": ["Rock Head", "Sturdy", "Sand Veil", "Magnet Pull", "Sturdy", "Galvanize"],
@@ -6268,7 +6268,7 @@
     "id": 262,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "golett",
+    "imgUrl": "/pokemon/images/golett.png",
     "japaneseName": "Gobitゴビット",
     "pokedexNumber": 622,
     "abilities": ["Iron Fist", "Klutz", "No Guard"],
@@ -6292,7 +6292,7 @@
     "id": 263,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "golisopod",
+    "imgUrl": "/pokemon/images/golisopod.png",
     "japaneseName": "Gusokumushaグソクムシャ",
     "pokedexNumber": 768,
     "abilities": ["Emergency Exit"],
@@ -6316,7 +6316,7 @@
     "id": 264,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "golurk",
+    "imgUrl": "/pokemon/images/golurk.png",
     "japaneseName": "Goloogゴルーグ",
     "pokedexNumber": 623,
     "abilities": ["Iron Fist", "Klutz", "No Guard"],
@@ -6340,7 +6340,7 @@
     "id": 265,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "goodra",
+    "imgUrl": "/pokemon/images/goodra.png",
     "japaneseName": "Numelgonヌメルゴン",
     "pokedexNumber": 706,
     "abilities": ["Sap Sipper", "Hydration", "Gooey"],
@@ -6364,7 +6364,7 @@
     "id": 266,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "goomy",
+    "imgUrl": "/pokemon/images/goomy.png",
     "japaneseName": "Numeraヌメラ",
     "pokedexNumber": 704,
     "abilities": ["Sap Sipper", "Hydration", "Gooey"],
@@ -6388,7 +6388,7 @@
     "id": 267,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "gorebyss",
+    "imgUrl": "/pokemon/images/gorebyss.png",
     "japaneseName": "Sakurabyssサクラビス",
     "pokedexNumber": 368,
     "abilities": ["Swift Swim", "Hydration"],
@@ -6412,7 +6412,7 @@
     "id": 268,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "gothita",
+    "imgUrl": "/pokemon/images/gothita.png",
     "japaneseName": "Gothimuゴチム",
     "pokedexNumber": 574,
     "abilities": ["Frisk", "Competitive", "Shadow Tag"],
@@ -6436,7 +6436,7 @@
     "id": 269,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "gothitelle",
+    "imgUrl": "/pokemon/images/gothitelle.png",
     "japaneseName": "Gothiruselleゴチルゼル",
     "pokedexNumber": 576,
     "abilities": ["Frisk", "Competitive", "Shadow Tag"],
@@ -6460,7 +6460,7 @@
     "id": 270,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "gothorita",
+    "imgUrl": "/pokemon/images/gothorita.png",
     "japaneseName": "Gothimiruゴチミル",
     "pokedexNumber": 575,
     "abilities": ["Frisk", "Competitive", "Shadow Tag"],
@@ -6484,7 +6484,7 @@
     "id": 271,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "gourgeist-average",
+    "imgUrl": "/pokemon/images/gourgeist-average.png",
     "japaneseName": "Pumpjinパンプジン",
     "pokedexNumber": 711,
     "abilities": ["Pickup", "Frisk", "Insomnia"],
@@ -6508,7 +6508,7 @@
     "id": 272,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "granbull",
+    "imgUrl": "/pokemon/images/granbull.png",
     "japaneseName": "Granbuluグランブル",
     "pokedexNumber": 210,
     "abilities": ["Intimidate", "Quick Feet", "Rattled"],
@@ -6532,7 +6532,7 @@
     "id": 273,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "graveler",
+    "imgUrl": "/pokemon/images/graveler.png",
     "japaneseName": "Goloneゴローン",
     "pokedexNumber": 75,
     "abilities": ["Rock Head", "Sturdy", "Sand Veil", "Magnet Pull", "Sturdy", "Galvanize"],
@@ -6556,7 +6556,7 @@
     "id": 274,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "greninja",
+    "imgUrl": "/pokemon/images/greninja.png",
     "japaneseName": "Gekkougaゲッコウガ",
     "pokedexNumber": 658,
     "abilities": ["Torrent", "Protean", "Battle Bond"],
@@ -6580,7 +6580,7 @@
     "id": 275,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "grimer",
+    "imgUrl": "/pokemon/images/grimer.png",
     "japaneseName": "Betbeterベトベター",
     "pokedexNumber": 88,
     "abilities": ["Stench", "Sticky Hold", "Poison Touch", "Poison Touch", "Gluttony", "Power of Alchemy"],
@@ -6604,7 +6604,7 @@
     "id": 276,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "grotle",
+    "imgUrl": "/pokemon/images/grotle.png",
     "japaneseName": "Hayashigameハヤシガメ",
     "pokedexNumber": 388,
     "abilities": ["Overgrow", "Shell Armor"],
@@ -6628,7 +6628,7 @@
     "id": 277,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "groudon",
+    "imgUrl": "/pokemon/images/groudon.png",
     "japaneseName": "Groudonグラードン",
     "pokedexNumber": 383,
     "abilities": ["Drought"],
@@ -6652,7 +6652,7 @@
     "id": 278,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "grovyle",
+    "imgUrl": "/pokemon/images/grovyle.png",
     "japaneseName": "Juptileジュプトル",
     "pokedexNumber": 253,
     "abilities": ["Overgrow", "Unburden"],
@@ -6676,7 +6676,7 @@
     "id": 279,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "growlithe",
+    "imgUrl": "/pokemon/images/growlithe.png",
     "japaneseName": "Gardieガーディ",
     "pokedexNumber": 58,
     "abilities": ["Intimidate", "Flash Fire", "Justified"],
@@ -6700,7 +6700,7 @@
     "id": 280,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "grubbin",
+    "imgUrl": "/pokemon/images/grubbin.png",
     "japaneseName": "Agojimushiアゴジムシ",
     "pokedexNumber": 736,
     "abilities": ["Swarm"],
@@ -6724,7 +6724,7 @@
     "id": 281,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "grumpig",
+    "imgUrl": "/pokemon/images/grumpig.png",
     "japaneseName": "Boopigブーピッグ",
     "pokedexNumber": 326,
     "abilities": ["Thick Fat", "Own Tempo", "Gluttony"],
@@ -6748,7 +6748,7 @@
     "id": 282,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "gulpin",
+    "imgUrl": "/pokemon/images/gulpin.png",
     "japaneseName": "Gokulinゴクリン",
     "pokedexNumber": 316,
     "abilities": ["Liquid Ooze", "Sticky Hold", "Gluttony"],
@@ -6772,7 +6772,7 @@
     "id": 283,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "gumshoos",
+    "imgUrl": "/pokemon/images/gumshoos.png",
     "japaneseName": "Dekagooseデカグース",
     "pokedexNumber": 735,
     "abilities": ["Stakeout", "Strong Jaw", "Adaptability"],
@@ -6796,7 +6796,7 @@
     "id": 284,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "gurdurr",
+    "imgUrl": "/pokemon/images/gurdurr.png",
     "japaneseName": "Dotekkotsuドテッコツ",
     "pokedexNumber": 533,
     "abilities": ["Guts", "Sheer Force", "Iron Fist"],
@@ -6820,7 +6820,7 @@
     "id": 285,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "guzzlord",
+    "imgUrl": "/pokemon/images/guzzlord.png",
     "japaneseName": "Akuzikingアクジキング",
     "pokedexNumber": 799,
     "abilities": ["Beast Boost"],
@@ -6844,7 +6844,7 @@
     "id": 286,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "gyarados",
+    "imgUrl": "/pokemon/images/gyarados.png",
     "japaneseName": "Gyaradosギャラドス",
     "pokedexNumber": 130,
     "abilities": ["Intimidate", "Moxie"],
@@ -6868,7 +6868,7 @@
     "id": 287,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "hakamo-o",
+    "imgUrl": "/pokemon/images/hakamo-o.png",
     "japaneseName": "Jyarangoジャランゴ",
     "pokedexNumber": 783,
     "abilities": ["Bulletproof", "Soundproof", "Overcoat"],
@@ -6892,7 +6892,7 @@
     "id": 288,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "happiny",
+    "imgUrl": "/pokemon/images/happiny.png",
     "japaneseName": "Pinpukuピンプク",
     "pokedexNumber": 440,
     "abilities": ["Natural Cure", "Serene Grace", "Friend Guard"],
@@ -6916,7 +6916,7 @@
     "id": 289,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "hariyama",
+    "imgUrl": "/pokemon/images/hariyama.png",
     "japaneseName": "Hariteyamaハリテヤマ",
     "pokedexNumber": 297,
     "abilities": ["Thick Fat", "Guts", "Sheer Force"],
@@ -6940,7 +6940,7 @@
     "id": 290,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "haunter",
+    "imgUrl": "/pokemon/images/haunter.png",
     "japaneseName": "Ghostゴースト",
     "pokedexNumber": 93,
     "abilities": ["Levitate"],
@@ -6964,7 +6964,7 @@
     "id": 291,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "hawlucha",
+    "imgUrl": "/pokemon/images/hawlucha.png",
     "japaneseName": "Luchabullルチャブル",
     "pokedexNumber": 701,
     "abilities": ["Limber", "Unburden", "Mold Breaker"],
@@ -6988,7 +6988,7 @@
     "id": 292,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "haxorus",
+    "imgUrl": "/pokemon/images/haxorus.png",
     "japaneseName": "Ononokusオノノクス",
     "pokedexNumber": 612,
     "abilities": ["Rivalry", "Mold Breaker", "Unnerve"],
@@ -7012,7 +7012,7 @@
     "id": 293,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "heatmor",
+    "imgUrl": "/pokemon/images/heatmor.png",
     "japaneseName": "Kuitaranクイタラン",
     "pokedexNumber": 631,
     "abilities": ["Gluttony", "Flash Fire", "White Smoke"],
@@ -7036,7 +7036,7 @@
     "id": 294,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "heatran",
+    "imgUrl": "/pokemon/images/heatran.png",
     "japaneseName": "Heatranヒードラン",
     "pokedexNumber": 485,
     "abilities": ["Flash Fire", "Flame Body"],
@@ -7060,7 +7060,7 @@
     "id": 295,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "heliolisk",
+    "imgUrl": "/pokemon/images/heliolisk.png",
     "japaneseName": "Elezardエレザード",
     "pokedexNumber": 695,
     "abilities": ["Dry Skin", "Sand Veil", "Solar Power"],
@@ -7084,7 +7084,7 @@
     "id": 296,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "helioptile",
+    "imgUrl": "/pokemon/images/helioptile.png",
     "japaneseName": "Erikiteruエリキテル",
     "pokedexNumber": 694,
     "abilities": ["Dry Skin", "Sand Veil", "Solar Power"],
@@ -7108,7 +7108,7 @@
     "id": 297,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "heracross",
+    "imgUrl": "/pokemon/images/heracross.png",
     "japaneseName": "Heracrosヘラクロス",
     "pokedexNumber": 214,
     "abilities": ["Swarm", "Guts", "Moxie"],
@@ -7132,7 +7132,7 @@
     "id": 298,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "herdier",
+    "imgUrl": "/pokemon/images/herdier.png",
     "japaneseName": "Herderrieハーデリア",
     "pokedexNumber": 507,
     "abilities": ["Intimidate", "Sand Rush", "Scrappy"],
@@ -7156,7 +7156,7 @@
     "id": 299,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "hippopotas",
+    "imgUrl": "/pokemon/images/hippopotas.png",
     "japaneseName": "Hippopotasヒポポタス",
     "pokedexNumber": 449,
     "abilities": ["Sand Stream", "Sand Force"],
@@ -7180,7 +7180,7 @@
     "id": 300,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "hippowdon",
+    "imgUrl": "/pokemon/images/hippowdon.png",
     "japaneseName": "Kabaldonカバルドン",
     "pokedexNumber": 450,
     "abilities": ["Sand Stream", "Sand Force"],
@@ -7204,7 +7204,7 @@
     "id": 301,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "hitmonchan",
+    "imgUrl": "/pokemon/images/hitmonchan.png",
     "japaneseName": "Ebiwalarエビワラー",
     "pokedexNumber": 107,
     "abilities": ["Keen Eye", "Iron Fist", "Inner Focus"],
@@ -7228,7 +7228,7 @@
     "id": 302,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "hitmonlee",
+    "imgUrl": "/pokemon/images/hitmonlee.png",
     "japaneseName": "Sawamularサワムラー",
     "pokedexNumber": 106,
     "abilities": ["Limber", "Reckless", "Unburden"],
@@ -7252,7 +7252,7 @@
     "id": 303,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "hitmontop",
+    "imgUrl": "/pokemon/images/hitmontop.png",
     "japaneseName": "Kapoererカポエラー",
     "pokedexNumber": 237,
     "abilities": ["Intimidate", "Technician", "Steadfast"],
@@ -7276,7 +7276,7 @@
     "id": 304,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "ho-oh",
+    "imgUrl": "/pokemon/images/ho-oh.png",
     "japaneseName": "Hououホウオウ",
     "pokedexNumber": 250,
     "abilities": ["Pressure", "Regenerator"],
@@ -7300,7 +7300,7 @@
     "id": 305,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "honchkrow",
+    "imgUrl": "/pokemon/images/honchkrow.png",
     "japaneseName": "Dongkarasuドンカラス",
     "pokedexNumber": 430,
     "abilities": ["Insomnia", "Super Luck", "Moxie"],
@@ -7324,7 +7324,7 @@
     "id": 306,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "honedge",
+    "imgUrl": "/pokemon/images/honedge.png",
     "japaneseName": "Hitotsukiヒトツキ",
     "pokedexNumber": 679,
     "abilities": ["No Guard"],
@@ -7348,7 +7348,7 @@
     "id": 307,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "hoopa-confined",
+    "imgUrl": "/pokemon/images/hoopa-confined.png",
     "japaneseName": "Hoopa (imashimerareshi Hoopa)フーパ",
     "pokedexNumber": 720,
     "abilities": ["Magician"],
@@ -7372,7 +7372,7 @@
     "id": 308,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "hoothoot",
+    "imgUrl": "/pokemon/images/hoothoot.png",
     "japaneseName": "Hohoホーホー",
     "pokedexNumber": 163,
     "abilities": ["Insomnia", "Keen Eye", "Tinted Lens"],
@@ -7396,7 +7396,7 @@
     "id": 309,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "hoppip",
+    "imgUrl": "/pokemon/images/hoppip.png",
     "japaneseName": "Haneccoハネッコ",
     "pokedexNumber": 187,
     "abilities": ["Chlorophyll", "Leaf Guard", "Infiltrator"],
@@ -7420,7 +7420,7 @@
     "id": 310,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "horsea",
+    "imgUrl": "/pokemon/images/horsea.png",
     "japaneseName": "Tattuタッツー",
     "pokedexNumber": 116,
     "abilities": ["Swift Swim", "Sniper", "Damp"],
@@ -7444,7 +7444,7 @@
     "id": 311,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "houndoom",
+    "imgUrl": "/pokemon/images/houndoom.png",
     "japaneseName": "Hellgarヘルガー",
     "pokedexNumber": 229,
     "abilities": ["Early Bird", "Flash Fire", "Unnerve"],
@@ -7468,7 +7468,7 @@
     "id": 312,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "houndour",
+    "imgUrl": "/pokemon/images/houndour.png",
     "japaneseName": "Delvilデルビル",
     "pokedexNumber": 228,
     "abilities": ["Early Bird", "Flash Fire", "Unnerve"],
@@ -7492,7 +7492,7 @@
     "id": 313,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "huntail",
+    "imgUrl": "/pokemon/images/huntail.png",
     "japaneseName": "Huntailハンテール",
     "pokedexNumber": 367,
     "abilities": ["Swift Swim", "Water Veil"],
@@ -7516,7 +7516,7 @@
     "id": 314,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "hydreigon",
+    "imgUrl": "/pokemon/images/hydreigon.png",
     "japaneseName": "Sazandoraサザンドラ",
     "pokedexNumber": 635,
     "abilities": ["Levitate"],
@@ -7540,7 +7540,7 @@
     "id": 315,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "hypno",
+    "imgUrl": "/pokemon/images/hypno.png",
     "japaneseName": "Sleeperスリーパー",
     "pokedexNumber": 97,
     "abilities": ["Insomnia", "Forewarn", "Inner Focus"],
@@ -7564,7 +7564,7 @@
     "id": 316,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "igglybuff",
+    "imgUrl": "/pokemon/images/igglybuff.png",
     "japaneseName": "Pupurinププリン",
     "pokedexNumber": 174,
     "abilities": ["Cute Charm", "Competitive", "Friend Guard"],
@@ -7588,7 +7588,7 @@
     "id": 317,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "illumise",
+    "imgUrl": "/pokemon/images/illumise.png",
     "japaneseName": "Illumiseイルミーゼ",
     "pokedexNumber": 314,
     "abilities": ["Oblivious", "Tinted Lens", "Prankster"],
@@ -7612,7 +7612,7 @@
     "id": 318,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "incineroar",
+    "imgUrl": "/pokemon/images/incineroar.png",
     "japaneseName": "Gaogaenガオガエン",
     "pokedexNumber": 727,
     "abilities": ["Blaze", "Intimidate"],
@@ -7636,7 +7636,7 @@
     "id": 319,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "infernape",
+    "imgUrl": "/pokemon/images/infernape.png",
     "japaneseName": "Goukazaruゴウカザル",
     "pokedexNumber": 392,
     "abilities": ["Blaze", "Iron Fist"],
@@ -7660,7 +7660,7 @@
     "id": 320,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "inkay",
+    "imgUrl": "/pokemon/images/inkay.png",
     "japaneseName": "Maaiikaマーイーカ",
     "pokedexNumber": 686,
     "abilities": ["Contrary", "Suction Cups", "Infiltrator"],
@@ -7684,7 +7684,7 @@
     "id": 321,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "ivysaur",
+    "imgUrl": "/pokemon/images/ivysaur.png",
     "japaneseName": "Fushigisouフシギソウ",
     "pokedexNumber": 2,
     "abilities": ["Overgrow", "Chlorophyll"],
@@ -7708,7 +7708,7 @@
     "id": 322,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "jangmo-o",
+    "imgUrl": "/pokemon/images/jangmo-o.png",
     "japaneseName": "Jyarakoジャラコ",
     "pokedexNumber": 782,
     "abilities": ["Bulletproof", "Soundproof", "Overcoat"],
@@ -7732,7 +7732,7 @@
     "id": 323,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "jellicent",
+    "imgUrl": "/pokemon/images/jellicent.png",
     "japaneseName": "Burungelブルンゲル",
     "pokedexNumber": 593,
     "abilities": ["Water Absorb", "Cursed Body", "Damp"],
@@ -7756,7 +7756,7 @@
     "id": 324,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "jigglypuff",
+    "imgUrl": "/pokemon/images/jigglypuff.png",
     "japaneseName": "Purinプリン",
     "pokedexNumber": 39,
     "abilities": ["Cute Charm", "Competitive", "Friend Guard"],
@@ -7780,7 +7780,7 @@
     "id": 325,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "jirachi",
+    "imgUrl": "/pokemon/images/jirachi.png",
     "japaneseName": "Jirachiジラーチ",
     "pokedexNumber": 385,
     "abilities": ["Serene Grace"],
@@ -7804,7 +7804,7 @@
     "id": 326,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "jolteon",
+    "imgUrl": "/pokemon/images/jolteon.png",
     "japaneseName": "Thundersサンダース",
     "pokedexNumber": 135,
     "abilities": ["Volt Absorb", "Quick Feet"],
@@ -7828,7 +7828,7 @@
     "id": 327,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "joltik",
+    "imgUrl": "/pokemon/images/joltik.png",
     "japaneseName": "Bachuruバチュル",
     "pokedexNumber": 595,
     "abilities": ["Compoundeyes", "Unnerve", "Swarm"],
@@ -7852,7 +7852,7 @@
     "id": 328,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "jumpluff",
+    "imgUrl": "/pokemon/images/jumpluff.png",
     "japaneseName": "Wataccoワタッコ",
     "pokedexNumber": 189,
     "abilities": ["Chlorophyll", "Leaf Guard", "Infiltrator"],
@@ -7876,7 +7876,7 @@
     "id": 329,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "jynx",
+    "imgUrl": "/pokemon/images/jynx.png",
     "japaneseName": "Rougelaルージュラ",
     "pokedexNumber": 124,
     "abilities": ["Oblivious", "Forewarn", "Dry Skin"],
@@ -7900,7 +7900,7 @@
     "id": 330,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "kabuto",
+    "imgUrl": "/pokemon/images/kabuto.png",
     "japaneseName": "Kabutoカブト",
     "pokedexNumber": 140,
     "abilities": ["Swift Swim", "Battle Armor", "Weak Armor"],
@@ -7924,7 +7924,7 @@
     "id": 331,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "kabutops",
+    "imgUrl": "/pokemon/images/kabutops.png",
     "japaneseName": "Kabutopsカブトプス",
     "pokedexNumber": 141,
     "abilities": ["Swift Swim", "Battle Armor", "Weak Armor"],
@@ -7948,7 +7948,7 @@
     "id": 332,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "kadabra",
+    "imgUrl": "/pokemon/images/kadabra.png",
     "japaneseName": "Yungererユンゲラー",
     "pokedexNumber": 64,
     "abilities": ["Synchronize", "Inner Focus", "Magic Guard"],
@@ -7972,7 +7972,7 @@
     "id": 333,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "kakuna",
+    "imgUrl": "/pokemon/images/kakuna.png",
     "japaneseName": "Cocoonコクーン",
     "pokedexNumber": 14,
     "abilities": ["Shed Skin"],
@@ -7996,7 +7996,7 @@
     "id": 334,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "kangaskhan",
+    "imgUrl": "/pokemon/images/kangaskhan.png",
     "japaneseName": "Garuraガルーラ",
     "pokedexNumber": 115,
     "abilities": ["Early Bird", "Scrappy", "Inner Focus"],
@@ -8020,7 +8020,7 @@
     "id": 335,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "karrablast",
+    "imgUrl": "/pokemon/images/karrablast.png",
     "japaneseName": "Kaburumoカブルモ",
     "pokedexNumber": 588,
     "abilities": ["Swarm", "Shed Skin", "No Guard"],
@@ -8044,7 +8044,7 @@
     "id": 336,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "kartana",
+    "imgUrl": "/pokemon/images/kartana.png",
     "japaneseName": "Kamiturugiカミツルギ",
     "pokedexNumber": 798,
     "abilities": ["Beast Boost"],
@@ -8068,7 +8068,7 @@
     "id": 337,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "kecleon",
+    "imgUrl": "/pokemon/images/kecleon.png",
     "japaneseName": "Kakureonカクレオン",
     "pokedexNumber": 352,
     "abilities": ["Color Change", "Protean"],
@@ -8092,7 +8092,7 @@
     "id": 338,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "keldeo-ordinary",
+    "imgUrl": "/pokemon/images/keldeo-ordinary.png",
     "japaneseName": "Keldeo (itsumo No Sugata)ケルディオ",
     "pokedexNumber": 647,
     "abilities": ["Justified"],
@@ -8116,7 +8116,7 @@
     "id": 339,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "kingdra",
+    "imgUrl": "/pokemon/images/kingdra.png",
     "japaneseName": "Kingdraキングドラ",
     "pokedexNumber": 230,
     "abilities": ["Swift Swim", "Sniper", "Damp"],
@@ -8140,7 +8140,7 @@
     "id": 340,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "kingler",
+    "imgUrl": "/pokemon/images/kingler.png",
     "japaneseName": "Kinglerキングラー",
     "pokedexNumber": 99,
     "abilities": ["Hyper Cutter", "Shell Armor", "Sheer Force"],
@@ -8164,7 +8164,7 @@
     "id": 341,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "kirlia",
+    "imgUrl": "/pokemon/images/kirlia.png",
     "japaneseName": "Kirliaキルリア",
     "pokedexNumber": 281,
     "abilities": ["Synchronize", "Trace", "Telepathy"],
@@ -8188,7 +8188,7 @@
     "id": 342,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "klang",
+    "imgUrl": "/pokemon/images/klang.png",
     "japaneseName": "Gigiaruギギアル",
     "pokedexNumber": 600,
     "abilities": ["Plus", "Minus", "Clear Body"],
@@ -8212,7 +8212,7 @@
     "id": 343,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "klefki",
+    "imgUrl": "/pokemon/images/klefki.png",
     "japaneseName": "Cleffyクレッフィ",
     "pokedexNumber": 707,
     "abilities": ["Prankster", "Magician"],
@@ -8236,7 +8236,7 @@
     "id": 344,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "klink",
+    "imgUrl": "/pokemon/images/klink.png",
     "japaneseName": "Giaruギアル",
     "pokedexNumber": 599,
     "abilities": ["Plus", "Minus", "Clear Body"],
@@ -8260,7 +8260,7 @@
     "id": 345,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "klinklang",
+    "imgUrl": "/pokemon/images/klinklang.png",
     "japaneseName": "Gigigiaruギギギアル",
     "pokedexNumber": 601,
     "abilities": ["Plus", "Minus", "Clear Body"],
@@ -8284,7 +8284,7 @@
     "id": 346,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "koffing",
+    "imgUrl": "/pokemon/images/koffing.png",
     "japaneseName": "Dogarsドガース",
     "pokedexNumber": 109,
     "abilities": ["Levitate"],
@@ -8308,7 +8308,7 @@
     "id": 347,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "komala",
+    "imgUrl": "/pokemon/images/komala.png",
     "japaneseName": "Nekkoaraネッコアラ",
     "pokedexNumber": 775,
     "abilities": ["Comatose"],
@@ -8332,7 +8332,7 @@
     "id": 348,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "kommo-o",
+    "imgUrl": "/pokemon/images/kommo-o.png",
     "japaneseName": "Jyararangaジャラランガ",
     "pokedexNumber": 784,
     "abilities": ["Bulletproof", "Soundproof", "Overcoat"],
@@ -8356,7 +8356,7 @@
     "id": 349,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "krabby",
+    "imgUrl": "/pokemon/images/krabby.png",
     "japaneseName": "Crabクラブ",
     "pokedexNumber": 98,
     "abilities": ["Hyper Cutter", "Shell Armor", "Sheer Force"],
@@ -8380,7 +8380,7 @@
     "id": 350,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "kricketot",
+    "imgUrl": "/pokemon/images/kricketot.png",
     "japaneseName": "Korobohshiコロボーシ",
     "pokedexNumber": 401,
     "abilities": ["Shed Skin", "Run Away"],
@@ -8404,7 +8404,7 @@
     "id": 351,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "kricketune",
+    "imgUrl": "/pokemon/images/kricketune.png",
     "japaneseName": "Korotockコロトック",
     "pokedexNumber": 402,
     "abilities": ["Swarm", "Technician"],
@@ -8428,7 +8428,7 @@
     "id": 352,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "krokorok",
+    "imgUrl": "/pokemon/images/krokorok.png",
     "japaneseName": "Waruvileワルビル",
     "pokedexNumber": 552,
     "abilities": ["Intimidate", "Moxie", "Anger Point"],
@@ -8452,7 +8452,7 @@
     "id": 353,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "krookodile",
+    "imgUrl": "/pokemon/images/krookodile.png",
     "japaneseName": "Waruvialワルビアル",
     "pokedexNumber": 553,
     "abilities": ["Intimidate", "Moxie", "Anger Point"],
@@ -8476,7 +8476,7 @@
     "id": 354,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "kyogre",
+    "imgUrl": "/pokemon/images/kyogre.png",
     "japaneseName": "Kyogreカイオーガ",
     "pokedexNumber": 382,
     "abilities": ["Drizzle"],
@@ -8500,7 +8500,7 @@
     "id": 355,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "kyurem",
+    "imgUrl": "/pokemon/images/kyurem.png",
     "japaneseName": "Kyuremキュレム",
     "pokedexNumber": 646,
     "abilities": ["Pressure", "Teravolt", "Turboblaze"],
@@ -8524,7 +8524,7 @@
     "id": 356,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "lairon",
+    "imgUrl": "/pokemon/images/lairon.png",
     "japaneseName": "Kodoraコドラ",
     "pokedexNumber": 305,
     "abilities": ["Sturdy", "Rock Head", "Heavy Metal"],
@@ -8548,7 +8548,7 @@
     "id": 357,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "lampent",
+    "imgUrl": "/pokemon/images/lampent.png",
     "japaneseName": "Lamplerランプラー",
     "pokedexNumber": 608,
     "abilities": ["Flash Fire", "Flame Body", "Infiltrator"],
@@ -8572,7 +8572,7 @@
     "id": 358,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "landorus-incarnate",
+    "imgUrl": "/pokemon/images/landorus-incarnate.png",
     "japaneseName": "Landlos (keshin Forme)ランドロス",
     "pokedexNumber": 645,
     "abilities": ["Sand Force", "Sheer Force", "Intimidate"],
@@ -8596,7 +8596,7 @@
     "id": 359,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "lanturn",
+    "imgUrl": "/pokemon/images/lanturn.png",
     "japaneseName": "Lanternランターン",
     "pokedexNumber": 171,
     "abilities": ["Volt Absorb", "Illuminate", "Water Absorb"],
@@ -8620,7 +8620,7 @@
     "id": 360,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "lapras",
+    "imgUrl": "/pokemon/images/lapras.png",
     "japaneseName": "Laplaceラプラス",
     "pokedexNumber": 131,
     "abilities": ["Water Absorb", "Shell Armor", "Hydration"],
@@ -8644,7 +8644,7 @@
     "id": 361,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "larvesta",
+    "imgUrl": "/pokemon/images/larvesta.png",
     "japaneseName": "Merlarvaメラルバ",
     "pokedexNumber": 636,
     "abilities": ["Flame Body", "Swarm"],
@@ -8668,7 +8668,7 @@
     "id": 362,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "larvitar",
+    "imgUrl": "/pokemon/images/larvitar.png",
     "japaneseName": "Yogirasヨーギラス",
     "pokedexNumber": 246,
     "abilities": ["Guts", "Sand Veil"],
@@ -8692,7 +8692,7 @@
     "id": 363,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "latias",
+    "imgUrl": "/pokemon/images/latias.png",
     "japaneseName": "Latiasラティアス",
     "pokedexNumber": 380,
     "abilities": ["Levitate"],
@@ -8716,7 +8716,7 @@
     "id": 364,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "latios",
+    "imgUrl": "/pokemon/images/latios.png",
     "japaneseName": "Latiosラティオス",
     "pokedexNumber": 381,
     "abilities": ["Levitate"],
@@ -8740,7 +8740,7 @@
     "id": 365,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "leafeon",
+    "imgUrl": "/pokemon/images/leafeon.png",
     "japaneseName": "Leafiaリーフィア",
     "pokedexNumber": 470,
     "abilities": ["Leaf Guard", "Chlorophyll"],
@@ -8764,7 +8764,7 @@
     "id": 366,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "leavanny",
+    "imgUrl": "/pokemon/images/leavanny.png",
     "japaneseName": "Hahakomoriハハコモリ",
     "pokedexNumber": 542,
     "abilities": ["Swarm", "Chlorophyll", "Overcoat"],
@@ -8788,7 +8788,7 @@
     "id": 367,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "ledian",
+    "imgUrl": "/pokemon/images/ledian.png",
     "japaneseName": "Redianレディアン",
     "pokedexNumber": 166,
     "abilities": ["Swarm", "Early Bird", "Iron Fist"],
@@ -8812,7 +8812,7 @@
     "id": 368,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "ledyba",
+    "imgUrl": "/pokemon/images/ledyba.png",
     "japaneseName": "Redibaレディバ",
     "pokedexNumber": 165,
     "abilities": ["Swarm", "Early Bird", "Rattled"],
@@ -8836,7 +8836,7 @@
     "id": 369,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "lickilicky",
+    "imgUrl": "/pokemon/images/lickilicky.png",
     "japaneseName": "Berobeltベロベルト",
     "pokedexNumber": 463,
     "abilities": ["Own Tempo", "Oblivious", "Cloud Nine"],
@@ -8860,7 +8860,7 @@
     "id": 370,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "lickitung",
+    "imgUrl": "/pokemon/images/lickitung.png",
     "japaneseName": "Beroringaベロリンガ",
     "pokedexNumber": 108,
     "abilities": ["Own Tempo", "Oblivious", "Cloud Nine"],
@@ -8884,7 +8884,7 @@
     "id": 371,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "liepard",
+    "imgUrl": "/pokemon/images/liepard.png",
     "japaneseName": "Lepardasレパルダス",
     "pokedexNumber": 510,
     "abilities": ["Limber", "Unburden", "Prankster"],
@@ -8908,7 +8908,7 @@
     "id": 372,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "lileep",
+    "imgUrl": "/pokemon/images/lileep.png",
     "japaneseName": "Lilylaリリーラ",
     "pokedexNumber": 345,
     "abilities": ["Suction Cups", "Storm Drain"],
@@ -8932,7 +8932,7 @@
     "id": 373,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "lilligant",
+    "imgUrl": "/pokemon/images/lilligant.png",
     "japaneseName": "Dredearドレディア",
     "pokedexNumber": 549,
     "abilities": ["Chlorophyll", "Own Tempo", "Leaf Guard"],
@@ -8956,7 +8956,7 @@
     "id": 374,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "lillipup",
+    "imgUrl": "/pokemon/images/lillipup.png",
     "japaneseName": "Yorterrieヨーテリー",
     "pokedexNumber": 506,
     "abilities": ["Vital Spirit", "Pickup", "Run Away"],
@@ -8980,7 +8980,7 @@
     "id": 375,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "linoone",
+    "imgUrl": "/pokemon/images/linoone.png",
     "japaneseName": "Massugumaマッスグマ",
     "pokedexNumber": 264,
     "abilities": ["Pickup", "Gluttony", "Quick Feet"],
@@ -9004,7 +9004,7 @@
     "id": 376,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "litleo",
+    "imgUrl": "/pokemon/images/litleo.png",
     "japaneseName": "Shishikoシシコ",
     "pokedexNumber": 667,
     "abilities": ["Rivalry", "Unnerve", "Moxie"],
@@ -9028,7 +9028,7 @@
     "id": 377,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "litten",
+    "imgUrl": "/pokemon/images/litten.png",
     "japaneseName": "Nyabbyニャビー",
     "pokedexNumber": 725,
     "abilities": ["Blaze", "Intimidate"],
@@ -9052,7 +9052,7 @@
     "id": 378,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "litwick",
+    "imgUrl": "/pokemon/images/litwick.png",
     "japaneseName": "Hitomoshiヒトモシ",
     "pokedexNumber": 607,
     "abilities": ["Flash Fire", "Flame Body", "Infiltrator"],
@@ -9076,7 +9076,7 @@
     "id": 379,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "lombre",
+    "imgUrl": "/pokemon/images/lombre.png",
     "japaneseName": "Hasubreroハスブレロ",
     "pokedexNumber": 271,
     "abilities": ["Swift Swim", "Rain Dish", "Own Tempo"],
@@ -9100,7 +9100,7 @@
     "id": 380,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "lopunny",
+    "imgUrl": "/pokemon/images/lopunny.png",
     "japaneseName": "Mimilopミミロップ",
     "pokedexNumber": 428,
     "abilities": ["Cute Charm", "Klutz", "Limber"],
@@ -9124,7 +9124,7 @@
     "id": 381,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "lotad",
+    "imgUrl": "/pokemon/images/lotad.png",
     "japaneseName": "Hassbohハスボー",
     "pokedexNumber": 270,
     "abilities": ["Swift Swim", "Rain Dish", "Own Tempo"],
@@ -9148,7 +9148,7 @@
     "id": 382,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "loudred",
+    "imgUrl": "/pokemon/images/loudred.png",
     "japaneseName": "Dogohmbドゴーム",
     "pokedexNumber": 294,
     "abilities": ["Soundproof", "Scrappy"],
@@ -9172,7 +9172,7 @@
     "id": 383,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "lucario",
+    "imgUrl": "/pokemon/images/lucario.png",
     "japaneseName": "Lucarioルカリオ",
     "pokedexNumber": 448,
     "abilities": ["Steadfast", "Inner Focus", "Justified"],
@@ -9196,7 +9196,7 @@
     "id": 384,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "ludicolo",
+    "imgUrl": "/pokemon/images/ludicolo.png",
     "japaneseName": "Runpappaルンパッパ",
     "pokedexNumber": 272,
     "abilities": ["Swift Swim", "Rain Dish", "Own Tempo"],
@@ -9220,7 +9220,7 @@
     "id": 385,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "lugia",
+    "imgUrl": "/pokemon/images/lugia.png",
     "japaneseName": "Lugiaルギア",
     "pokedexNumber": 249,
     "abilities": ["Pressure", "Multiscale"],
@@ -9244,7 +9244,7 @@
     "id": 386,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "lumineon",
+    "imgUrl": "/pokemon/images/lumineon.png",
     "japaneseName": "Neolantネオラント",
     "pokedexNumber": 457,
     "abilities": ["Swift Swim", "Storm Drain", "Water Veil"],
@@ -9268,7 +9268,7 @@
     "id": 387,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "lunala",
+    "imgUrl": "/pokemon/images/lunala.png",
     "japaneseName": "Lunalaルナアーラ",
     "pokedexNumber": 792,
     "abilities": ["Shadow Shield"],
@@ -9292,7 +9292,7 @@
     "id": 388,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "lunatone",
+    "imgUrl": "/pokemon/images/lunatone.png",
     "japaneseName": "Lunatoneルナトーン",
     "pokedexNumber": 337,
     "abilities": ["Levitate"],
@@ -9316,7 +9316,7 @@
     "id": 389,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "lurantis",
+    "imgUrl": "/pokemon/images/lurantis.png",
     "japaneseName": "Lalantesラランテス",
     "pokedexNumber": 754,
     "abilities": ["Leaf Guard", "Contrary"],
@@ -9340,7 +9340,7 @@
     "id": 390,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "luvdisc",
+    "imgUrl": "/pokemon/images/luvdisc.png",
     "japaneseName": "Lovecusラブカス",
     "pokedexNumber": 370,
     "abilities": ["Swift Swim", "Hydration"],
@@ -9364,7 +9364,7 @@
     "id": 391,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "luxio",
+    "imgUrl": "/pokemon/images/luxio.png",
     "japaneseName": "Luxioルクシオ",
     "pokedexNumber": 404,
     "abilities": ["Rivalry", "Intimidate", "Guts"],
@@ -9388,7 +9388,7 @@
     "id": 392,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "luxray",
+    "imgUrl": "/pokemon/images/luxray.png",
     "japaneseName": "Rentorarレントラー",
     "pokedexNumber": 405,
     "abilities": ["Rivalry", "Intimidate", "Guts"],
@@ -9412,7 +9412,7 @@
     "id": 393,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "lycanroc-midday",
+    "imgUrl": "/pokemon/images/lycanroc-midday.png",
     "japaneseName": "Lugarugan (mahiru No Sugata)ルガルガン",
     "pokedexNumber": 745,
     "abilities": ["Keen Eye", "Sand Rush", "Steadfast", "Keen Eye", "Vital Spirit", "No Guard"],
@@ -9436,7 +9436,7 @@
     "id": 394,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "machamp",
+    "imgUrl": "/pokemon/images/machamp.png",
     "japaneseName": "Kairikyカイリキー",
     "pokedexNumber": 68,
     "abilities": ["Guts", "No Guard", "Steadfast"],
@@ -9460,7 +9460,7 @@
     "id": 395,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "machoke",
+    "imgUrl": "/pokemon/images/machoke.png",
     "japaneseName": "Gorikyゴーリキー",
     "pokedexNumber": 67,
     "abilities": ["Guts", "No Guard", "Steadfast"],
@@ -9484,7 +9484,7 @@
     "id": 396,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "machop",
+    "imgUrl": "/pokemon/images/machop.png",
     "japaneseName": "Wanrikyワンリキー",
     "pokedexNumber": 66,
     "abilities": ["Guts", "No Guard", "Steadfast"],
@@ -9508,7 +9508,7 @@
     "id": 397,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "magby",
+    "imgUrl": "/pokemon/images/magby.png",
     "japaneseName": "Bubyブビィ",
     "pokedexNumber": 240,
     "abilities": ["Flame Body", "Vital Spirit"],
@@ -9532,7 +9532,7 @@
     "id": 398,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "magcargo",
+    "imgUrl": "/pokemon/images/magcargo.png",
     "japaneseName": "Magcargotマグカルゴ",
     "pokedexNumber": 219,
     "abilities": ["Magma Armor", "Flame Body", "Weak Armor"],
@@ -9556,7 +9556,7 @@
     "id": 399,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "magearna",
+    "imgUrl": "/pokemon/images/magearna.png",
     "japaneseName": "Magearnaマギアナ",
     "pokedexNumber": 801,
     "abilities": ["Soul-Heart"],
@@ -9580,7 +9580,7 @@
     "id": 400,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "magikarp",
+    "imgUrl": "/pokemon/images/magikarp.png",
     "japaneseName": "Koikingコイキング",
     "pokedexNumber": 129,
     "abilities": ["Swift Swim", "Rattled"],
@@ -9604,7 +9604,7 @@
     "id": 401,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "magmar",
+    "imgUrl": "/pokemon/images/magmar.png",
     "japaneseName": "Booberブーバー",
     "pokedexNumber": 126,
     "abilities": ["Flame Body", "Vital Spirit"],
@@ -9628,7 +9628,7 @@
     "id": 402,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "magmortar",
+    "imgUrl": "/pokemon/images/magmortar.png",
     "japaneseName": "Booburnブーバーン",
     "pokedexNumber": 467,
     "abilities": ["Flame Body", "Vital Spirit"],
@@ -9652,7 +9652,7 @@
     "id": 403,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "magnemite",
+    "imgUrl": "/pokemon/images/magnemite.png",
     "japaneseName": "Coilコイル",
     "pokedexNumber": 81,
     "abilities": ["Magnet Pull", "Sturdy", "Analytic"],
@@ -9676,7 +9676,7 @@
     "id": 404,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "magneton",
+    "imgUrl": "/pokemon/images/magneton.png",
     "japaneseName": "Rarecoilレアコイル",
     "pokedexNumber": 82,
     "abilities": ["Magnet Pull", "Sturdy", "Analytic"],
@@ -9700,7 +9700,7 @@
     "id": 405,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "magnezone",
+    "imgUrl": "/pokemon/images/magnezone.png",
     "japaneseName": "Jibacoilジバコイル",
     "pokedexNumber": 462,
     "abilities": ["Magnet Pull", "Sturdy", "Analytic"],
@@ -9724,7 +9724,7 @@
     "id": 406,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "makuhita",
+    "imgUrl": "/pokemon/images/makuhita.png",
     "japaneseName": "Makunoshitaマクノシタ",
     "pokedexNumber": 296,
     "abilities": ["Thick Fat", "Guts", "Sheer Force"],
@@ -9748,7 +9748,7 @@
     "id": 407,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "malamar",
+    "imgUrl": "/pokemon/images/malamar.png",
     "japaneseName": "Calamaneroカラマネロ",
     "pokedexNumber": 687,
     "abilities": ["Contrary", "Suction Cups", "Infiltrator"],
@@ -9772,7 +9772,7 @@
     "id": 408,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "mamoswine",
+    "imgUrl": "/pokemon/images/mamoswine.png",
     "japaneseName": "Mammooマンムー",
     "pokedexNumber": 473,
     "abilities": ["Oblivious", "Snow Cloak", "Thick Fat"],
@@ -9796,7 +9796,7 @@
     "id": 409,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "manaphy",
+    "imgUrl": "/pokemon/images/manaphy.png",
     "japaneseName": "Manaphyマナフィ",
     "pokedexNumber": 490,
     "abilities": ["Hydration"],
@@ -9820,7 +9820,7 @@
     "id": 410,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "mandibuzz",
+    "imgUrl": "/pokemon/images/mandibuzz.png",
     "japaneseName": "Vulginaバルジーナ",
     "pokedexNumber": 630,
     "abilities": ["Big Pecks", "Overcoat", "Weak Armor"],
@@ -9844,7 +9844,7 @@
     "id": 411,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "manectric",
+    "imgUrl": "/pokemon/images/manectric.png",
     "japaneseName": "Livoltライボルト",
     "pokedexNumber": 310,
     "abilities": ["Static", "Lightningrod", "Minus"],
@@ -9868,7 +9868,7 @@
     "id": 412,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "mankey",
+    "imgUrl": "/pokemon/images/mankey.png",
     "japaneseName": "Mankeyマンキー",
     "pokedexNumber": 56,
     "abilities": ["Vital Spirit", "Anger Point", "Defiant"],
@@ -9892,7 +9892,7 @@
     "id": 413,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "mantine",
+    "imgUrl": "/pokemon/images/mantine.png",
     "japaneseName": "Mantainマンタイン",
     "pokedexNumber": 226,
     "abilities": ["Swift Swim", "Water Absorb", "Water Veil"],
@@ -9916,7 +9916,7 @@
     "id": 414,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "mantyke",
+    "imgUrl": "/pokemon/images/mantyke.png",
     "japaneseName": "Tamantaタマンタ",
     "pokedexNumber": 458,
     "abilities": ["Swift Swim", "Water Absorb", "Water Veil"],
@@ -9940,7 +9940,7 @@
     "id": 415,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "maractus",
+    "imgUrl": "/pokemon/images/maractus.png",
     "japaneseName": "Maracacchiマラカッチ",
     "pokedexNumber": 556,
     "abilities": ["Water Absorb", "Chlorophyll", "Storm Drain"],
@@ -9964,7 +9964,7 @@
     "id": 416,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "mareanie",
+    "imgUrl": "/pokemon/images/mareanie.png",
     "japaneseName": "Hidoideヒドイデ",
     "pokedexNumber": 747,
     "abilities": ["Merciless", "Limber", "Regenerator"],
@@ -9988,7 +9988,7 @@
     "id": 417,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "mareep",
+    "imgUrl": "/pokemon/images/mareep.png",
     "japaneseName": "Merriepメリープ",
     "pokedexNumber": 179,
     "abilities": ["Static", "Plus"],
@@ -10012,7 +10012,7 @@
     "id": 418,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "marill",
+    "imgUrl": "/pokemon/images/marill.png",
     "japaneseName": "Marilマリル",
     "pokedexNumber": 183,
     "abilities": ["Thick Fat", "Huge Power", "Sap Sipper"],
@@ -10036,7 +10036,7 @@
     "id": 419,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "marowak",
+    "imgUrl": "/pokemon/images/marowak.png",
     "japaneseName": "Garagaraガラガラ",
     "pokedexNumber": 105,
     "abilities": ["Rock Head", "Lightningrod", "Battle Armor", "Cursed Body", "Lightningrod", "Rock Head"],
@@ -10060,7 +10060,7 @@
     "id": 420,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "marshtomp",
+    "imgUrl": "/pokemon/images/marshtomp.png",
     "japaneseName": "Numacrawヌマクロー",
     "pokedexNumber": 259,
     "abilities": ["Torrent", "Damp"],
@@ -10084,7 +10084,7 @@
     "id": 421,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "masquerain",
+    "imgUrl": "/pokemon/images/masquerain.png",
     "japaneseName": "Amemothアメモース",
     "pokedexNumber": 284,
     "abilities": ["Intimidate", "Unnerve"],
@@ -10108,7 +10108,7 @@
     "id": 422,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "mawile",
+    "imgUrl": "/pokemon/images/mawile.png",
     "japaneseName": "Kucheatクチート",
     "pokedexNumber": 303,
     "abilities": ["Hyper Cutter", "Intimidate", "Sheer Force"],
@@ -10132,7 +10132,7 @@
     "id": 423,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "medicham",
+    "imgUrl": "/pokemon/images/medicham.png",
     "japaneseName": "Charemチャーレム",
     "pokedexNumber": 308,
     "abilities": ["Pure Power", "Telepathy"],
@@ -10156,7 +10156,7 @@
     "id": 424,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "meditite",
+    "imgUrl": "/pokemon/images/meditite.png",
     "japaneseName": "Asananアサナン",
     "pokedexNumber": 307,
     "abilities": ["Pure Power", "Telepathy"],
@@ -10180,7 +10180,7 @@
     "id": 425,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "meganium",
+    "imgUrl": "/pokemon/images/meganium.png",
     "japaneseName": "Meganiumメガニウム",
     "pokedexNumber": 154,
     "abilities": ["Overgrow", "Leaf Guard"],
@@ -10204,7 +10204,7 @@
     "id": 426,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "meloetta-aria",
+    "imgUrl": "/pokemon/images/meloetta-aria.png",
     "japaneseName": "Meloetta (step Forme)メロエッタ",
     "pokedexNumber": 648,
     "abilities": ["Serene Grace"],
@@ -10228,7 +10228,7 @@
     "id": 427,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "meowstic-male",
+    "imgUrl": "/pokemon/images/meowstic-male.png",
     "japaneseName": "Nyaonixニャオニクス",
     "pokedexNumber": 678,
     "abilities": ["Keen Eye", "Infiltrator", "Prankster", "Competitive"],
@@ -10252,7 +10252,7 @@
     "id": 428,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "meowth",
+    "imgUrl": "/pokemon/images/meowth.png",
     "japaneseName": "Nyarthニャース",
     "pokedexNumber": 52,
     "abilities": ["Pickup", "Technician", "Unnerve", "Pickup", "Technician", "Rattled"],
@@ -10276,7 +10276,7 @@
     "id": 429,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "mesprit",
+    "imgUrl": "/pokemon/images/mesprit.png",
     "japaneseName": "Emritエムリット",
     "pokedexNumber": 481,
     "abilities": ["Levitate"],
@@ -10300,7 +10300,7 @@
     "id": 430,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "metagross",
+    "imgUrl": "/pokemon/images/metagross.png",
     "japaneseName": "Metagrossメタグロス",
     "pokedexNumber": 376,
     "abilities": ["Clear Body", "Light Metal"],
@@ -10324,7 +10324,7 @@
     "id": 431,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "metang",
+    "imgUrl": "/pokemon/images/metang.png",
     "japaneseName": "Metangメタング",
     "pokedexNumber": 375,
     "abilities": ["Clear Body", "Light Metal"],
@@ -10348,7 +10348,7 @@
     "id": 432,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "metapod",
+    "imgUrl": "/pokemon/images/metapod.png",
     "japaneseName": "Transelトランセル",
     "pokedexNumber": 11,
     "abilities": ["Shed Skin"],
@@ -10372,7 +10372,7 @@
     "id": 433,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "mew",
+    "imgUrl": "/pokemon/images/mew.png",
     "japaneseName": "Mewミュウ",
     "pokedexNumber": 151,
     "abilities": ["Synchronize"],
@@ -10396,7 +10396,7 @@
     "id": 434,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "mewtwo",
+    "imgUrl": "/pokemon/images/mewtwo.png",
     "japaneseName": "Mewtwoミュウツー",
     "pokedexNumber": 150,
     "abilities": ["Pressure", "Unnerve"],
@@ -10420,7 +10420,7 @@
     "id": 435,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "mienfoo",
+    "imgUrl": "/pokemon/images/mienfoo.png",
     "japaneseName": "Kojofuコジョフー",
     "pokedexNumber": 619,
     "abilities": ["Inner Focus", "Regenerator", "Reckless"],
@@ -10444,7 +10444,7 @@
     "id": 436,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "mienshao",
+    "imgUrl": "/pokemon/images/mienshao.png",
     "japaneseName": "Kojondoコジョンド",
     "pokedexNumber": 620,
     "abilities": ["Inner Focus", "Regenerator", "Reckless"],
@@ -10468,7 +10468,7 @@
     "id": 437,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "mightyena",
+    "imgUrl": "/pokemon/images/mightyena.png",
     "japaneseName": "Graenaグラエナ",
     "pokedexNumber": 262,
     "abilities": ["Intimidate", "Quick Feet", "Moxie"],
@@ -10492,7 +10492,7 @@
     "id": 438,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "milotic",
+    "imgUrl": "/pokemon/images/milotic.png",
     "japaneseName": "Milokarossミロカロス",
     "pokedexNumber": 350,
     "abilities": ["Marvel Scale", "Competitive", "Cute Charm"],
@@ -10516,7 +10516,7 @@
     "id": 439,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "miltank",
+    "imgUrl": "/pokemon/images/miltank.png",
     "japaneseName": "Miltankミルタンク",
     "pokedexNumber": 241,
     "abilities": ["Thick Fat", "Scrappy", "Sap Sipper"],
@@ -10540,7 +10540,7 @@
     "id": 440,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "mime-jr",
+    "imgUrl": "/pokemon/images/mime-jr.png",
     "japaneseName": "Maneneマネネ",
     "pokedexNumber": 439,
     "abilities": ["Soundproof", "Filter", "Technician"],
@@ -10564,7 +10564,7 @@
     "id": 441,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "mimikyu",
+    "imgUrl": "/pokemon/images/mimikyu.png",
     "japaneseName": "Mimikkyuミミッキュ",
     "pokedexNumber": 778,
     "abilities": ["Disguise"],
@@ -10588,7 +10588,7 @@
     "id": 442,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "minccino",
+    "imgUrl": "/pokemon/images/minccino.png",
     "japaneseName": "Chillarmyチラーミィ",
     "pokedexNumber": 572,
     "abilities": ["Cute Charm", "Technician", "Skill Link"],
@@ -10612,7 +10612,7 @@
     "id": 443,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "minior-meteor",
+    "imgUrl": "/pokemon/images/minior-meteor.png",
     "japaneseName": "Metenoメテノ",
     "pokedexNumber": 774,
     "abilities": ["Shields Down"],
@@ -10636,7 +10636,7 @@
     "id": 444,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "minun",
+    "imgUrl": "/pokemon/images/minun.png",
     "japaneseName": "Minunマイナン",
     "pokedexNumber": 312,
     "abilities": ["Minus", "Volt Absorb"],
@@ -10660,7 +10660,7 @@
     "id": 445,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "misdreavus",
+    "imgUrl": "/pokemon/images/misdreavus.png",
     "japaneseName": "Mumaムウマ",
     "pokedexNumber": 200,
     "abilities": ["Levitate"],
@@ -10684,7 +10684,7 @@
     "id": 446,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "mismagius",
+    "imgUrl": "/pokemon/images/mismagius.png",
     "japaneseName": "Mumargiムウマージ",
     "pokedexNumber": 429,
     "abilities": ["Levitate"],
@@ -10708,7 +10708,7 @@
     "id": 447,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "moltres",
+    "imgUrl": "/pokemon/images/moltres.png",
     "japaneseName": "Fireファイヤー",
     "pokedexNumber": 146,
     "abilities": ["Pressure", "Flame Body"],
@@ -10732,7 +10732,7 @@
     "id": 448,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "monferno",
+    "imgUrl": "/pokemon/images/monferno.png",
     "japaneseName": "Moukazaruモウカザル",
     "pokedexNumber": 391,
     "abilities": ["Blaze", "Iron Fist"],
@@ -10756,7 +10756,7 @@
     "id": 449,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "morelull",
+    "imgUrl": "/pokemon/images/morelull.png",
     "japaneseName": "Nemasyuネマシュ",
     "pokedexNumber": 755,
     "abilities": ["Illuminate", "Effect Spore", "Rain Dish"],
@@ -10780,7 +10780,7 @@
     "id": 450,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "mothim",
+    "imgUrl": "/pokemon/images/mothim.png",
     "japaneseName": "Gamaleガーメイル",
     "pokedexNumber": 414,
     "abilities": ["Swarm", "Tinted Lens"],
@@ -10804,7 +10804,7 @@
     "id": 451,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "mr-mime",
+    "imgUrl": "/pokemon/images/mr-mime.png",
     "japaneseName": "Barrierdバリヤード",
     "pokedexNumber": 122,
     "abilities": ["Soundproof", "Filter", "Technician"],
@@ -10828,7 +10828,7 @@
     "id": 452,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "mudbray",
+    "imgUrl": "/pokemon/images/mudbray.png",
     "japaneseName": "Dorobankoドロバンコ",
     "pokedexNumber": 749,
     "abilities": ["Own Tempo", "Stamina", "Inner Focus"],
@@ -10852,7 +10852,7 @@
     "id": 453,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "mudkip",
+    "imgUrl": "/pokemon/images/mudkip.png",
     "japaneseName": "Mizugorouミズゴロウ",
     "pokedexNumber": 258,
     "abilities": ["Torrent", "Damp"],
@@ -10876,7 +10876,7 @@
     "id": 454,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "mudsdale",
+    "imgUrl": "/pokemon/images/mudsdale.png",
     "japaneseName": "Banbadoroバンバドロ",
     "pokedexNumber": 750,
     "abilities": ["Own Tempo", "Stamina", "Inner Focus"],
@@ -10900,7 +10900,7 @@
     "id": 455,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "muk",
+    "imgUrl": "/pokemon/images/muk.png",
     "japaneseName": "Betbetonベトベトン",
     "pokedexNumber": 89,
     "abilities": ["Stench", "Sticky Hold", "Poison Touch", "Poison Touch", "Gluttony", "Power of Alchemy"],
@@ -10924,7 +10924,7 @@
     "id": 456,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "munchlax",
+    "imgUrl": "/pokemon/images/munchlax.png",
     "japaneseName": "Gonbeゴンベ",
     "pokedexNumber": 446,
     "abilities": ["Pickup", "Thick Fat", "Gluttony"],
@@ -10948,7 +10948,7 @@
     "id": 457,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "munna",
+    "imgUrl": "/pokemon/images/munna.png",
     "japaneseName": "Munnaムンナ",
     "pokedexNumber": 517,
     "abilities": ["Forewarn", "Synchronize", "Telepathy"],
@@ -10972,7 +10972,7 @@
     "id": 458,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "murkrow",
+    "imgUrl": "/pokemon/images/murkrow.png",
     "japaneseName": "Yamikarasuヤミカラス",
     "pokedexNumber": 198,
     "abilities": ["Insomnia", "Super Luck", "Prankster"],
@@ -10996,7 +10996,7 @@
     "id": 459,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "musharna",
+    "imgUrl": "/pokemon/images/musharna.png",
     "japaneseName": "Musharnaムシャーナ",
     "pokedexNumber": 518,
     "abilities": ["Forewarn", "Synchronize", "Telepathy"],
@@ -11020,7 +11020,7 @@
     "id": 460,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "natu",
+    "imgUrl": "/pokemon/images/natu.png",
     "japaneseName": "Natyネイティ",
     "pokedexNumber": 177,
     "abilities": ["Synchronize", "Early Bird", "Magic Bounce"],
@@ -11044,7 +11044,7 @@
     "id": 461,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "necrozma",
+    "imgUrl": "/pokemon/images/necrozma.png",
     "japaneseName": "Necrozmaネクロズマ",
     "pokedexNumber": 800,
     "abilities": ["Prism Armor"],
@@ -11068,7 +11068,7 @@
     "id": 462,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "nidoking",
+    "imgUrl": "/pokemon/images/nidoking.png",
     "japaneseName": "Nidokingニドキング",
     "pokedexNumber": 34,
     "abilities": ["Poison Point", "Rivalry", "Sheer Force"],
@@ -11092,7 +11092,7 @@
     "id": 463,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "nidoqueen",
+    "imgUrl": "/pokemon/images/nidoqueen.png",
     "japaneseName": "Nidoqueenニドクイン",
     "pokedexNumber": 31,
     "abilities": ["Poison Point", "Rivalry", "Sheer Force"],
@@ -11116,7 +11116,7 @@
     "id": 464,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "nidoran-f",
+    "imgUrl": "/pokemon/images/nidoran-f.png",
     "japaneseName": "Nidoran?ニドラン♀",
     "pokedexNumber": 29,
     "abilities": ["Poison Point", "Rivalry", "Hustle"],
@@ -11140,7 +11140,7 @@
     "id": 465,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "nidoran-m",
+    "imgUrl": "/pokemon/images/nidoran-m.png",
     "japaneseName": "Nidoran?ニドラン♂",
     "pokedexNumber": 32,
     "abilities": ["Poison Point", "Rivalry", "Hustle"],
@@ -11164,7 +11164,7 @@
     "id": 466,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "nidorina",
+    "imgUrl": "/pokemon/images/nidorina.png",
     "japaneseName": "Nidorinaニドリーナ",
     "pokedexNumber": 30,
     "abilities": ["Poison Point", "Rivalry", "Hustle"],
@@ -11188,7 +11188,7 @@
     "id": 467,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "nidorino",
+    "imgUrl": "/pokemon/images/nidorino.png",
     "japaneseName": "Nidorinoニドリーノ",
     "pokedexNumber": 33,
     "abilities": ["Poison Point", "Rivalry", "Hustle"],
@@ -11212,7 +11212,7 @@
     "id": 468,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "nihilego",
+    "imgUrl": "/pokemon/images/nihilego.png",
     "japaneseName": "Uturoidウツロイド",
     "pokedexNumber": 793,
     "abilities": ["Beast Boost"],
@@ -11236,7 +11236,7 @@
     "id": 469,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "nincada",
+    "imgUrl": "/pokemon/images/nincada.png",
     "japaneseName": "Tutininツチニン",
     "pokedexNumber": 290,
     "abilities": ["Compoundeyes", "Run Away"],
@@ -11260,7 +11260,7 @@
     "id": 470,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "ninetales",
+    "imgUrl": "/pokemon/images/ninetales.png",
     "japaneseName": "Kyukonキュウコン",
     "pokedexNumber": 38,
     "abilities": ["Flash Fire", "Drought", "Snow Cloak", "Snow Warning"],
@@ -11284,7 +11284,7 @@
     "id": 471,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "ninjask",
+    "imgUrl": "/pokemon/images/ninjask.png",
     "japaneseName": "Tekkaninテッカニン",
     "pokedexNumber": 291,
     "abilities": ["Speed Boost", "Infiltrator"],
@@ -11308,7 +11308,7 @@
     "id": 472,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "noctowl",
+    "imgUrl": "/pokemon/images/noctowl.png",
     "japaneseName": "Yorunozukuヨルノズク",
     "pokedexNumber": 164,
     "abilities": ["Insomnia", "Keen Eye", "Tinted Lens"],
@@ -11332,7 +11332,7 @@
     "id": 473,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "noibat",
+    "imgUrl": "/pokemon/images/noibat.png",
     "japaneseName": "Onbatオンバット",
     "pokedexNumber": 714,
     "abilities": ["Frisk", "Infiltrator", "Telepathy"],
@@ -11356,7 +11356,7 @@
     "id": 474,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "noivern",
+    "imgUrl": "/pokemon/images/noivern.png",
     "japaneseName": "Onvernオンバーン",
     "pokedexNumber": 715,
     "abilities": ["Frisk", "Infiltrator", "Telepathy"],
@@ -11380,7 +11380,7 @@
     "id": 475,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "nosepass",
+    "imgUrl": "/pokemon/images/nosepass.png",
     "japaneseName": "Nosepassノズパス",
     "pokedexNumber": 299,
     "abilities": ["Sturdy", "Magnet Pull", "Sand Force"],
@@ -11404,7 +11404,7 @@
     "id": 476,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "numel",
+    "imgUrl": "/pokemon/images/numel.png",
     "japaneseName": "Donmelドンメル",
     "pokedexNumber": 322,
     "abilities": ["Oblivious", "Simple", "Own Tempo"],
@@ -11428,7 +11428,7 @@
     "id": 477,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "nuzleaf",
+    "imgUrl": "/pokemon/images/nuzleaf.png",
     "japaneseName": "Konohanaコノハナ",
     "pokedexNumber": 274,
     "abilities": ["Chlorophyll", "Early Bird", "Pickpocket"],
@@ -11452,7 +11452,7 @@
     "id": 478,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "octillery",
+    "imgUrl": "/pokemon/images/octillery.png",
     "japaneseName": "Okutankオクタン",
     "pokedexNumber": 224,
     "abilities": ["Suction Cups", "Sniper", "Moody"],
@@ -11476,7 +11476,7 @@
     "id": 479,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "oddish",
+    "imgUrl": "/pokemon/images/oddish.png",
     "japaneseName": "Nazonokusaナゾノクサ",
     "pokedexNumber": 43,
     "abilities": ["Chlorophyll", "Run Away"],
@@ -11500,7 +11500,7 @@
     "id": 480,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "omanyte",
+    "imgUrl": "/pokemon/images/omanyte.png",
     "japaneseName": "Omniteオムナイト",
     "pokedexNumber": 138,
     "abilities": ["Swift Swim", "Shell Armor", "Weak Armor"],
@@ -11524,7 +11524,7 @@
     "id": 481,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "omastar",
+    "imgUrl": "/pokemon/images/omastar.png",
     "japaneseName": "Omstarオムスター",
     "pokedexNumber": 139,
     "abilities": ["Swift Swim", "Shell Armor", "Weak Armor"],
@@ -11548,7 +11548,7 @@
     "id": 482,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "onix",
+    "imgUrl": "/pokemon/images/onix.png",
     "japaneseName": "Iwarkイワーク",
     "pokedexNumber": 95,
     "abilities": ["Rock Head", "Sturdy", "Weak Armor"],
@@ -11572,7 +11572,7 @@
     "id": 483,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "oranguru",
+    "imgUrl": "/pokemon/images/oranguru.png",
     "japaneseName": "Yareyuutanヤレユータン",
     "pokedexNumber": 765,
     "abilities": ["Inner Focus", "Telepathy", "Symbiosis"],
@@ -11596,7 +11596,7 @@
     "id": 484,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "oricorio-baile",
+    "imgUrl": "/pokemon/images/oricorio-baile.png",
     "japaneseName": "Odoridori (pachipachi Style)オドリドリ",
     "pokedexNumber": 741,
     "abilities": ["Dancer"],
@@ -11620,7 +11620,7 @@
     "id": 485,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "oshawott",
+    "imgUrl": "/pokemon/images/oshawott.png",
     "japaneseName": "Mijumaruミジュマル",
     "pokedexNumber": 501,
     "abilities": ["Torrent", "Shell Armor"],
@@ -11644,7 +11644,7 @@
     "id": 486,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "pachirisu",
+    "imgUrl": "/pokemon/images/pachirisu.png",
     "japaneseName": "Pachirisuパチリス",
     "pokedexNumber": 417,
     "abilities": ["Run Away", "Pickup", "Volt Absorb"],
@@ -11668,7 +11668,7 @@
     "id": 487,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "palkia",
+    "imgUrl": "/pokemon/images/palkia.png",
     "japaneseName": "Palkiaパルキア",
     "pokedexNumber": 484,
     "abilities": ["Pressure", "Telepathy"],
@@ -11692,7 +11692,7 @@
     "id": 488,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "palossand",
+    "imgUrl": "/pokemon/images/palossand.png",
     "japaneseName": "Sirodethnaシロデスナ",
     "pokedexNumber": 770,
     "abilities": ["Water Compaction", "Sand Veil"],
@@ -11716,7 +11716,7 @@
     "id": 489,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "palpitoad",
+    "imgUrl": "/pokemon/images/palpitoad.png",
     "japaneseName": "Gamagaruガマガル",
     "pokedexNumber": 536,
     "abilities": ["Swift Swim", "Hydration", "Water Absorb"],
@@ -11740,7 +11740,7 @@
     "id": 490,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "pancham",
+    "imgUrl": "/pokemon/images/pancham.png",
     "japaneseName": "Yanchamヤンチャム",
     "pokedexNumber": 674,
     "abilities": ["Iron Fist", "Mold Breaker", "Scrappy"],
@@ -11764,7 +11764,7 @@
     "id": 491,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "pangoro",
+    "imgUrl": "/pokemon/images/pangoro.png",
     "japaneseName": "Gorondaゴロンダ",
     "pokedexNumber": 675,
     "abilities": ["Iron Fist", "Mold Breaker", "Scrappy"],
@@ -11788,7 +11788,7 @@
     "id": 492,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "panpour",
+    "imgUrl": "/pokemon/images/panpour.png",
     "japaneseName": "Hiyappuヒヤップ",
     "pokedexNumber": 515,
     "abilities": ["Gluttony", "Torrent"],
@@ -11812,7 +11812,7 @@
     "id": 493,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "pansage",
+    "imgUrl": "/pokemon/images/pansage.png",
     "japaneseName": "Yanappuヤナップ",
     "pokedexNumber": 511,
     "abilities": ["Gluttony", "Overgrow"],
@@ -11836,7 +11836,7 @@
     "id": 494,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "pansear",
+    "imgUrl": "/pokemon/images/pansear.png",
     "japaneseName": "Baoppuバオップ",
     "pokedexNumber": 513,
     "abilities": ["Gluttony", "Blaze"],
@@ -11860,7 +11860,7 @@
     "id": 495,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "paras",
+    "imgUrl": "/pokemon/images/paras.png",
     "japaneseName": "Parasパラス",
     "pokedexNumber": 46,
     "abilities": ["Effect Spore", "Dry Skin", "Damp"],
@@ -11884,7 +11884,7 @@
     "id": 496,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "parasect",
+    "imgUrl": "/pokemon/images/parasect.png",
     "japaneseName": "Parasectパラセクト",
     "pokedexNumber": 47,
     "abilities": ["Effect Spore", "Dry Skin", "Damp"],
@@ -11908,7 +11908,7 @@
     "id": 497,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "passimian",
+    "imgUrl": "/pokemon/images/passimian.png",
     "japaneseName": "Nagetukesaruナゲツケサル",
     "pokedexNumber": 766,
     "abilities": ["Receiver", "Defiant"],
@@ -11932,7 +11932,7 @@
     "id": 498,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "patrat",
+    "imgUrl": "/pokemon/images/patrat.png",
     "japaneseName": "Minezumiミネズミ",
     "pokedexNumber": 504,
     "abilities": ["Run Away", "Keen Eye", "Analytic"],
@@ -11956,7 +11956,7 @@
     "id": 499,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "pawniard",
+    "imgUrl": "/pokemon/images/pawniard.png",
     "japaneseName": "Komatanaコマタナ",
     "pokedexNumber": 624,
     "abilities": ["Defiant", "Inner Focus", "Pressure"],
@@ -11980,7 +11980,7 @@
     "id": 500,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "pelipper",
+    "imgUrl": "/pokemon/images/pelipper.png",
     "japaneseName": "Pelipperペリッパー",
     "pokedexNumber": 279,
     "abilities": ["Keen Eye", "Drizzle", "Rain Dish"],
@@ -12004,7 +12004,7 @@
     "id": 501,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "persian",
+    "imgUrl": "/pokemon/images/persian.png",
     "japaneseName": "Persianペルシアン",
     "pokedexNumber": 53,
     "abilities": ["Limber", "Technician", "Unnerve", "Fur Coat", "Technician", "Rattled"],
@@ -12028,7 +12028,7 @@
     "id": 502,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "petilil",
+    "imgUrl": "/pokemon/images/petilil.png",
     "japaneseName": "Churineチュリネ",
     "pokedexNumber": 548,
     "abilities": ["Chlorophyll", "Own Tempo", "Leaf Guard"],
@@ -12052,7 +12052,7 @@
     "id": 503,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "phanpy",
+    "imgUrl": "/pokemon/images/phanpy.png",
     "japaneseName": "Gomazouゴマゾウ",
     "pokedexNumber": 231,
     "abilities": ["Pickup", "Sand Veil"],
@@ -12076,7 +12076,7 @@
     "id": 504,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "phantump",
+    "imgUrl": "/pokemon/images/phantump.png",
     "japaneseName": "Bokureiボクレー",
     "pokedexNumber": 708,
     "abilities": ["Natural Cure", "Frisk", "Harvest"],
@@ -12100,7 +12100,7 @@
     "id": 505,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "pheromosa",
+    "imgUrl": "/pokemon/images/pheromosa.png",
     "japaneseName": "Pheroacheフェローチェ",
     "pokedexNumber": 795,
     "abilities": ["Beast Boost"],
@@ -12124,7 +12124,7 @@
     "id": 506,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "phione",
+    "imgUrl": "/pokemon/images/phione.png",
     "japaneseName": "Phioneフィオネ",
     "pokedexNumber": 489,
     "abilities": ["Hydration"],
@@ -12148,7 +12148,7 @@
     "id": 507,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "pichu",
+    "imgUrl": "/pokemon/images/pichu.png",
     "japaneseName": "Pichuピチュー",
     "pokedexNumber": 172,
     "abilities": ["Static", "Lightningrod"],
@@ -12172,7 +12172,7 @@
     "id": 508,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "pidgeot",
+    "imgUrl": "/pokemon/images/pidgeot.png",
     "japaneseName": "Pigeotピジョット",
     "pokedexNumber": 18,
     "abilities": ["Keen Eye", "Tangled Feet", "Big Pecks"],
@@ -12196,7 +12196,7 @@
     "id": 509,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "pidgeotto",
+    "imgUrl": "/pokemon/images/pidgeotto.png",
     "japaneseName": "Pigeonピジョン",
     "pokedexNumber": 17,
     "abilities": ["Keen Eye", "Tangled Feet", "Big Pecks"],
@@ -12220,7 +12220,7 @@
     "id": 510,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "pidgey",
+    "imgUrl": "/pokemon/images/pidgey.png",
     "japaneseName": "Poppoポッポ",
     "pokedexNumber": 16,
     "abilities": ["Keen Eye", "Tangled Feet", "Big Pecks"],
@@ -12244,7 +12244,7 @@
     "id": 511,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "pidove",
+    "imgUrl": "/pokemon/images/pidove.png",
     "japaneseName": "Mamepatoマメパト",
     "pokedexNumber": 519,
     "abilities": ["Big Pecks", "Super Luck", "Rivalry"],
@@ -12268,7 +12268,7 @@
     "id": 512,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "pignite",
+    "imgUrl": "/pokemon/images/pignite.png",
     "japaneseName": "Chaobooチャオブー",
     "pokedexNumber": 499,
     "abilities": ["Blaze", "Thick Fat"],
@@ -12292,7 +12292,7 @@
     "id": 513,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "pikachu",
+    "imgUrl": "/pokemon/images/pikachu.png",
     "japaneseName": "Pikachuピカチュウ",
     "pokedexNumber": 25,
     "abilities": ["Static", "Lightningrod"],
@@ -12316,7 +12316,7 @@
     "id": 514,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "pikipek",
+    "imgUrl": "/pokemon/images/pikipek.png",
     "japaneseName": "Tsutsukeraツツケラ",
     "pokedexNumber": 731,
     "abilities": ["Keen Eye", "Skill Link", "Pickup"],
@@ -12340,7 +12340,7 @@
     "id": 515,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "piloswine",
+    "imgUrl": "/pokemon/images/piloswine.png",
     "japaneseName": "Inomooイノムー",
     "pokedexNumber": 221,
     "abilities": ["Oblivious", "Snow Cloak", "Thick Fat"],
@@ -12364,7 +12364,7 @@
     "id": 516,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "pineco",
+    "imgUrl": "/pokemon/images/pineco.png",
     "japaneseName": "Kunugidamaクヌギダマ",
     "pokedexNumber": 204,
     "abilities": ["Sturdy", "Overcoat"],
@@ -12388,7 +12388,7 @@
     "id": 517,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "pinsir",
+    "imgUrl": "/pokemon/images/pinsir.png",
     "japaneseName": "Kailiosカイロス",
     "pokedexNumber": 127,
     "abilities": ["Hyper Cutter", "Mold Breaker", "Moxie"],
@@ -12412,7 +12412,7 @@
     "id": 518,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "piplup",
+    "imgUrl": "/pokemon/images/piplup.png",
     "japaneseName": "Pochamaポッチャマ",
     "pokedexNumber": 393,
     "abilities": ["Torrent", "Defiant"],
@@ -12436,7 +12436,7 @@
     "id": 519,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "plusle",
+    "imgUrl": "/pokemon/images/plusle.png",
     "japaneseName": "Prasleプラスル",
     "pokedexNumber": 311,
     "abilities": ["Plus", "Lightningrod"],
@@ -12460,7 +12460,7 @@
     "id": 520,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "politoed",
+    "imgUrl": "/pokemon/images/politoed.png",
     "japaneseName": "Nyorotonoニョロトノ",
     "pokedexNumber": 186,
     "abilities": ["Water Absorb", "Damp", "Drizzle"],
@@ -12484,7 +12484,7 @@
     "id": 521,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "poliwag",
+    "imgUrl": "/pokemon/images/poliwag.png",
     "japaneseName": "Nyoromoニョロモ",
     "pokedexNumber": 60,
     "abilities": ["Water Absorb", "Damp", "Swift Swim"],
@@ -12508,7 +12508,7 @@
     "id": 522,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "poliwhirl",
+    "imgUrl": "/pokemon/images/poliwhirl.png",
     "japaneseName": "Nyorozoニョロゾ",
     "pokedexNumber": 61,
     "abilities": ["Water Absorb", "Damp", "Swift Swim"],
@@ -12532,7 +12532,7 @@
     "id": 523,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "poliwrath",
+    "imgUrl": "/pokemon/images/poliwrath.png",
     "japaneseName": "Nyorobonニョロボン",
     "pokedexNumber": 62,
     "abilities": ["Water Absorb", "Damp", "Swift Swim"],
@@ -12556,7 +12556,7 @@
     "id": 524,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "ponyta",
+    "imgUrl": "/pokemon/images/ponyta.png",
     "japaneseName": "Ponytaポニータ",
     "pokedexNumber": 77,
     "abilities": ["Run Away", "Flash Fire", "Flame Body"],
@@ -12580,7 +12580,7 @@
     "id": 525,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "poochyena",
+    "imgUrl": "/pokemon/images/poochyena.png",
     "japaneseName": "Pochienaポチエナ",
     "pokedexNumber": 261,
     "abilities": ["Run Away", "Quick Feet", "Rattled"],
@@ -12604,7 +12604,7 @@
     "id": 526,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "popplio",
+    "imgUrl": "/pokemon/images/popplio.png",
     "japaneseName": "Ashimariアシマリ",
     "pokedexNumber": 728,
     "abilities": ["Torrent", "Liquid Voice"],
@@ -12628,7 +12628,7 @@
     "id": 527,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "porygon",
+    "imgUrl": "/pokemon/images/porygon.png",
     "japaneseName": "Porygonポリゴン",
     "pokedexNumber": 137,
     "abilities": ["Trace", "Download", "Analytic"],
@@ -12652,7 +12652,7 @@
     "id": 528,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "porygon-z",
+    "imgUrl": "/pokemon/images/porygon-z.png",
     "japaneseName": "Porygon-zポリゴンZ",
     "pokedexNumber": 474,
     "abilities": ["Adaptability", "Download", "Analytic"],
@@ -12676,7 +12676,7 @@
     "id": 529,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "porygon2",
+    "imgUrl": "/pokemon/images/porygon2.png",
     "japaneseName": "Porygon2ポリゴン2",
     "pokedexNumber": 233,
     "abilities": ["Trace", "Download", "Analytic"],
@@ -12700,7 +12700,7 @@
     "id": 530,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "primarina",
+    "imgUrl": "/pokemon/images/primarina.png",
     "japaneseName": "Ashireneアシレーヌ",
     "pokedexNumber": 730,
     "abilities": ["Torrent", "Liquid Voice"],
@@ -12724,7 +12724,7 @@
     "id": 531,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "primeape",
+    "imgUrl": "/pokemon/images/primeape.png",
     "japaneseName": "Okorizaruオコリザル",
     "pokedexNumber": 57,
     "abilities": ["Vital Spirit", "Anger Point", "Defiant"],
@@ -12748,7 +12748,7 @@
     "id": 532,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "prinplup",
+    "imgUrl": "/pokemon/images/prinplup.png",
     "japaneseName": "Pottaishiポッタイシ",
     "pokedexNumber": 394,
     "abilities": ["Torrent", "Defiant"],
@@ -12772,7 +12772,7 @@
     "id": 533,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "probopass",
+    "imgUrl": "/pokemon/images/probopass.png",
     "japaneseName": "Dainoseダイノーズ",
     "pokedexNumber": 476,
     "abilities": ["Sturdy", "Magnet Pull", "Sand Force"],
@@ -12796,7 +12796,7 @@
     "id": 534,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "psyduck",
+    "imgUrl": "/pokemon/images/psyduck.png",
     "japaneseName": "Koduckコダック",
     "pokedexNumber": 54,
     "abilities": ["Damp", "Cloud Nine", "Swift Swim"],
@@ -12820,7 +12820,7 @@
     "id": 535,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "pumpkaboo-average",
+    "imgUrl": "/pokemon/images/pumpkaboo-average.png",
     "japaneseName": "Bakecchaバケッチャ",
     "pokedexNumber": 710,
     "abilities": ["Pickup", "Frisk", "Insomnia"],
@@ -12844,7 +12844,7 @@
     "id": 536,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "pupitar",
+    "imgUrl": "/pokemon/images/pupitar.png",
     "japaneseName": "Sanagirasサナギラス",
     "pokedexNumber": 247,
     "abilities": ["Shed Skin"],
@@ -12868,7 +12868,7 @@
     "id": 537,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "purrloin",
+    "imgUrl": "/pokemon/images/purrloin.png",
     "japaneseName": "Choronekoチョロネコ",
     "pokedexNumber": 509,
     "abilities": ["Limber", "Unburden", "Prankster"],
@@ -12892,7 +12892,7 @@
     "id": 538,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "purugly",
+    "imgUrl": "/pokemon/images/purugly.png",
     "japaneseName": "Bunyattoブニャット",
     "pokedexNumber": 432,
     "abilities": ["Thick Fat", "Own Tempo", "Defiant"],
@@ -12916,7 +12916,7 @@
     "id": 539,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "pyroar",
+    "imgUrl": "/pokemon/images/pyroar.png",
     "japaneseName": "Kaenjishiカエンジシ",
     "pokedexNumber": 668,
     "abilities": ["Rivalry", "Unnerve", "Moxie"],
@@ -12940,7 +12940,7 @@
     "id": 540,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "pyukumuku",
+    "imgUrl": "/pokemon/images/pyukumuku.png",
     "japaneseName": "Namakobushiナマコブシ",
     "pokedexNumber": 771,
     "abilities": ["Innards Out", "Unaware"],
@@ -12964,7 +12964,7 @@
     "id": 541,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "quagsire",
+    "imgUrl": "/pokemon/images/quagsire.png",
     "japaneseName": "Nuohヌオー",
     "pokedexNumber": 195,
     "abilities": ["Damp", "Water Absorb", "Unaware"],
@@ -12988,7 +12988,7 @@
     "id": 542,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "quilava",
+    "imgUrl": "/pokemon/images/quilava.png",
     "japaneseName": "Magmarashiマグマラシ",
     "pokedexNumber": 156,
     "abilities": ["Blaze", "Flash Fire"],
@@ -13012,7 +13012,7 @@
     "id": 543,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "quilladin",
+    "imgUrl": "/pokemon/images/quilladin.png",
     "japaneseName": "Hariborgハリボーグ",
     "pokedexNumber": 651,
     "abilities": ["Overgrow", "Bulletproof"],
@@ -13036,7 +13036,7 @@
     "id": 544,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "qwilfish",
+    "imgUrl": "/pokemon/images/qwilfish.png",
     "japaneseName": "Harysenハリーセン",
     "pokedexNumber": 211,
     "abilities": ["Poison Point", "Swift Swim", "Intimidate"],
@@ -13060,7 +13060,7 @@
     "id": 545,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "raichu",
+    "imgUrl": "/pokemon/images/raichu.png",
     "japaneseName": "Raichuライチュウ",
     "pokedexNumber": 26,
     "abilities": ["Static", "Lightningrod", "Surge Surfer"],
@@ -13084,7 +13084,7 @@
     "id": 546,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "raikou",
+    "imgUrl": "/pokemon/images/raikou.png",
     "japaneseName": "Raikouライコウ",
     "pokedexNumber": 243,
     "abilities": ["Pressure", "Inner Focus"],
@@ -13108,7 +13108,7 @@
     "id": 547,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "ralts",
+    "imgUrl": "/pokemon/images/ralts.png",
     "japaneseName": "Raltsラルトス",
     "pokedexNumber": 280,
     "abilities": ["Synchronize", "Trace", "Telepathy"],
@@ -13132,7 +13132,7 @@
     "id": 548,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "rampardos",
+    "imgUrl": "/pokemon/images/rampardos.png",
     "japaneseName": "Rampaldラムパルド",
     "pokedexNumber": 409,
     "abilities": ["Mold Breaker", "Sheer Force"],
@@ -13156,7 +13156,7 @@
     "id": 549,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "rapidash",
+    "imgUrl": "/pokemon/images/rapidash.png",
     "japaneseName": "Gallopギャロップ",
     "pokedexNumber": 78,
     "abilities": ["Run Away", "Flash Fire", "Flame Body"],
@@ -13180,7 +13180,7 @@
     "id": 550,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "raticate",
+    "imgUrl": "/pokemon/images/raticate.png",
     "japaneseName": "Rattaラッタ",
     "pokedexNumber": 20,
     "abilities": ["Run Away", "Guts", "Hustle", "Gluttony", "Hustle", "Thick Fat"],
@@ -13204,7 +13204,7 @@
     "id": 551,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "rattata",
+    "imgUrl": "/pokemon/images/rattata.png",
     "japaneseName": "Korattaコラッタ",
     "pokedexNumber": 19,
     "abilities": ["Run Away", "Guts", "Hustle", "Gluttony", "Hustle", "Thick Fat"],
@@ -13228,7 +13228,7 @@
     "id": 552,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "rayquaza",
+    "imgUrl": "/pokemon/images/rayquaza.png",
     "japaneseName": "Rayquazaレックウザ",
     "pokedexNumber": 384,
     "abilities": ["Air Lock"],
@@ -13252,7 +13252,7 @@
     "id": 553,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "regice",
+    "imgUrl": "/pokemon/images/regice.png",
     "japaneseName": "Regiceレジアイス",
     "pokedexNumber": 378,
     "abilities": ["Clear Body", "Ice Body"],
@@ -13276,7 +13276,7 @@
     "id": 554,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "regigigas",
+    "imgUrl": "/pokemon/images/regigigas.png",
     "japaneseName": "Regigigasレジギガス",
     "pokedexNumber": 486,
     "abilities": ["Slow Start"],
@@ -13300,7 +13300,7 @@
     "id": 555,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "regirock",
+    "imgUrl": "/pokemon/images/regirock.png",
     "japaneseName": "Regirockレジロック",
     "pokedexNumber": 377,
     "abilities": ["Clear Body", "Sturdy"],
@@ -13324,7 +13324,7 @@
     "id": 556,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "registeel",
+    "imgUrl": "/pokemon/images/registeel.png",
     "japaneseName": "Registeelレジスチル",
     "pokedexNumber": 379,
     "abilities": ["Clear Body", "Light Metal"],
@@ -13348,7 +13348,7 @@
     "id": 557,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "relicanth",
+    "imgUrl": "/pokemon/images/relicanth.png",
     "japaneseName": "Glanthジーランス",
     "pokedexNumber": 369,
     "abilities": ["Swift Swim", "Rock Head", "Sturdy"],
@@ -13372,7 +13372,7 @@
     "id": 558,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "remoraid",
+    "imgUrl": "/pokemon/images/remoraid.png",
     "japaneseName": "Teppouoテッポウオ",
     "pokedexNumber": 223,
     "abilities": ["Hustle", "Sniper", "Moody"],
@@ -13396,7 +13396,7 @@
     "id": 559,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "reshiram",
+    "imgUrl": "/pokemon/images/reshiram.png",
     "japaneseName": "Reshiramレシラム",
     "pokedexNumber": 643,
     "abilities": ["Turboblaze"],
@@ -13420,7 +13420,7 @@
     "id": 560,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "reuniclus",
+    "imgUrl": "/pokemon/images/reuniclus.png",
     "japaneseName": "Lanculusランクルス",
     "pokedexNumber": 579,
     "abilities": ["Overcoat", "Magic Guard", "Regenerator"],
@@ -13444,7 +13444,7 @@
     "id": 561,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "rhydon",
+    "imgUrl": "/pokemon/images/rhydon.png",
     "japaneseName": "Sidonサイドン",
     "pokedexNumber": 112,
     "abilities": ["Lightningrod", "Rock Head", "Reckless"],
@@ -13468,7 +13468,7 @@
     "id": 562,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "rhyhorn",
+    "imgUrl": "/pokemon/images/rhyhorn.png",
     "japaneseName": "Sihornサイホーン",
     "pokedexNumber": 111,
     "abilities": ["Lightningrod", "Rock Head", "Reckless"],
@@ -13492,7 +13492,7 @@
     "id": 563,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "rhyperior",
+    "imgUrl": "/pokemon/images/rhyperior.png",
     "japaneseName": "Dosidonドサイドン",
     "pokedexNumber": 464,
     "abilities": ["Lightningrod", "Solid Rock", "Reckless"],
@@ -13516,7 +13516,7 @@
     "id": 564,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "ribombee",
+    "imgUrl": "/pokemon/images/ribombee.png",
     "japaneseName": "Aburibbonアブリボン",
     "pokedexNumber": 743,
     "abilities": ["Honey Gather", "Shield Dust", "Sweet Veil"],
@@ -13540,7 +13540,7 @@
     "id": 565,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "riolu",
+    "imgUrl": "/pokemon/images/riolu.png",
     "japaneseName": "Rioluリオル",
     "pokedexNumber": 447,
     "abilities": ["Steadfast", "Inner Focus", "Prankster"],
@@ -13564,7 +13564,7 @@
     "id": 566,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "rockruff",
+    "imgUrl": "/pokemon/images/rockruff.png",
     "japaneseName": "Iwankoイワンコ",
     "pokedexNumber": 744,
     "abilities": ["Keen Eye", "Vital Spirit", "Steadfast"],
@@ -13588,7 +13588,7 @@
     "id": 567,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "roggenrola",
+    "imgUrl": "/pokemon/images/roggenrola.png",
     "japaneseName": "Dangoroダンゴロ",
     "pokedexNumber": 524,
     "abilities": ["Sturdy", "Weak Armor", "Sand Force"],
@@ -13612,7 +13612,7 @@
     "id": 568,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "roselia",
+    "imgUrl": "/pokemon/images/roselia.png",
     "japaneseName": "Roseliaロゼリア",
     "pokedexNumber": 315,
     "abilities": ["Natural Cure", "Poison Point", "Leaf Guard"],
@@ -13636,7 +13636,7 @@
     "id": 569,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "roserade",
+    "imgUrl": "/pokemon/images/roserade.png",
     "japaneseName": "Roseradeロズレイド",
     "pokedexNumber": 407,
     "abilities": ["Natural Cure", "Poison Point", "Technician"],
@@ -13660,7 +13660,7 @@
     "id": 570,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "rotom",
+    "imgUrl": "/pokemon/images/rotom.png",
     "japaneseName": "Rotomロトム",
     "pokedexNumber": 479,
     "abilities": ["Levitate"],
@@ -13684,7 +13684,7 @@
     "id": 571,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "rowlet",
+    "imgUrl": "/pokemon/images/rowlet.png",
     "japaneseName": "Mokurohモクロー",
     "pokedexNumber": 722,
     "abilities": ["Overgrow", "Long Reach"],
@@ -13708,7 +13708,7 @@
     "id": 572,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "rufflet",
+    "imgUrl": "/pokemon/images/rufflet.png",
     "japaneseName": "Washibonワシボン",
     "pokedexNumber": 627,
     "abilities": ["Keen Eye", "Sheer Force", "Hustle"],
@@ -13732,7 +13732,7 @@
     "id": 573,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "sableye",
+    "imgUrl": "/pokemon/images/sableye.png",
     "japaneseName": "Yamiramiヤミラミ",
     "pokedexNumber": 302,
     "abilities": ["Keen Eye", "Stall", "Prankster"],
@@ -13756,7 +13756,7 @@
     "id": 574,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "salamence",
+    "imgUrl": "/pokemon/images/salamence.png",
     "japaneseName": "Bohmanderボーマンダ",
     "pokedexNumber": 373,
     "abilities": ["Intimidate", "Moxie"],
@@ -13780,7 +13780,7 @@
     "id": 575,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "salandit",
+    "imgUrl": "/pokemon/images/salandit.png",
     "japaneseName": "Yatoumoriヤトウモリ",
     "pokedexNumber": 757,
     "abilities": ["Corrosion", "Oblivious"],
@@ -13804,7 +13804,7 @@
     "id": 576,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "salazzle",
+    "imgUrl": "/pokemon/images/salazzle.png",
     "japaneseName": "Ennewtエンニュート",
     "pokedexNumber": 758,
     "abilities": ["Corrosion", "Oblivious"],
@@ -13828,7 +13828,7 @@
     "id": 577,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "samurott",
+    "imgUrl": "/pokemon/images/samurott.png",
     "japaneseName": "Daikenkiダイケンキ",
     "pokedexNumber": 503,
     "abilities": ["Torrent", "Shell Armor"],
@@ -13852,7 +13852,7 @@
     "id": 578,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "sandile",
+    "imgUrl": "/pokemon/images/sandile.png",
     "japaneseName": "Megurocoメグロコ",
     "pokedexNumber": 551,
     "abilities": ["Intimidate", "Moxie", "Anger Point"],
@@ -13876,7 +13876,7 @@
     "id": 579,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "sandshrew",
+    "imgUrl": "/pokemon/images/sandshrew.png",
     "japaneseName": "Sandサンド",
     "pokedexNumber": 27,
     "abilities": ["Sand Veil", "Sand Rush", "Snow Cloak", "Slush Rush"],
@@ -13900,7 +13900,7 @@
     "id": 580,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "sandslash",
+    "imgUrl": "/pokemon/images/sandslash.png",
     "japaneseName": "Sandpanサンドパン",
     "pokedexNumber": 28,
     "abilities": ["Sand Veil", "Sand Rush", "Snow Cloak", "Slush Rush"],
@@ -13924,7 +13924,7 @@
     "id": 581,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "sandygast",
+    "imgUrl": "/pokemon/images/sandygast.png",
     "japaneseName": "Sunabaスナバァ",
     "pokedexNumber": 769,
     "abilities": ["Water Compaction", "Sand Veil"],
@@ -13948,7 +13948,7 @@
     "id": 582,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "sawk",
+    "imgUrl": "/pokemon/images/sawk.png",
     "japaneseName": "Dagekiダゲキ",
     "pokedexNumber": 539,
     "abilities": ["Sturdy", "Inner Focus", "Mold Breaker"],
@@ -13972,7 +13972,7 @@
     "id": 583,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "sawsbuck",
+    "imgUrl": "/pokemon/images/sawsbuck.png",
     "japaneseName": "Mebukijikaメブキジカ",
     "pokedexNumber": 586,
     "abilities": ["Chlorophyll", "Sap Sipper", "Serene Grace"],
@@ -13996,7 +13996,7 @@
     "id": 584,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "scatterbug",
+    "imgUrl": "/pokemon/images/scatterbug.png",
     "japaneseName": "Kofukimushiコフキムシ",
     "pokedexNumber": 664,
     "abilities": ["Shield Dust", "Compoundeyes", "Friend Guard"],
@@ -14020,7 +14020,7 @@
     "id": 585,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "sceptile",
+    "imgUrl": "/pokemon/images/sceptile.png",
     "japaneseName": "Jukainジュカイン",
     "pokedexNumber": 254,
     "abilities": ["Overgrow", "Unburden"],
@@ -14044,7 +14044,7 @@
     "id": 586,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "scizor",
+    "imgUrl": "/pokemon/images/scizor.png",
     "japaneseName": "Hassamハッサム",
     "pokedexNumber": 212,
     "abilities": ["Swarm", "Technician", "Light Metal"],
@@ -14068,7 +14068,7 @@
     "id": 587,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "scolipede",
+    "imgUrl": "/pokemon/images/scolipede.png",
     "japaneseName": "Pendrorペンドラー",
     "pokedexNumber": 545,
     "abilities": ["Poison Point", "Swarm", "Speed Boost"],
@@ -14092,7 +14092,7 @@
     "id": 588,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "scrafty",
+    "imgUrl": "/pokemon/images/scrafty.png",
     "japaneseName": "Zuruzukinズルズキン",
     "pokedexNumber": 560,
     "abilities": ["Shed Skin", "Moxie", "Intimidate"],
@@ -14116,7 +14116,7 @@
     "id": 589,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "scraggy",
+    "imgUrl": "/pokemon/images/scraggy.png",
     "japaneseName": "Zurugguズルッグ",
     "pokedexNumber": 559,
     "abilities": ["Shed Skin", "Moxie", "Intimidate"],
@@ -14140,7 +14140,7 @@
     "id": 590,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "scyther",
+    "imgUrl": "/pokemon/images/scyther.png",
     "japaneseName": "Strikeストライク",
     "pokedexNumber": 123,
     "abilities": ["Swarm", "Technician", "Steadfast"],
@@ -14164,7 +14164,7 @@
     "id": 591,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "seadra",
+    "imgUrl": "/pokemon/images/seadra.png",
     "japaneseName": "Seadraシードラ",
     "pokedexNumber": 117,
     "abilities": ["Poison Point", "Sniper", "Damp"],
@@ -14188,7 +14188,7 @@
     "id": 592,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "seaking",
+    "imgUrl": "/pokemon/images/seaking.png",
     "japaneseName": "Azumaoアズマオウ",
     "pokedexNumber": 119,
     "abilities": ["Swift Swim", "Water Veil", "Lightningrod"],
@@ -14212,7 +14212,7 @@
     "id": 593,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "sealeo",
+    "imgUrl": "/pokemon/images/sealeo.png",
     "japaneseName": "Todogglerトドグラー",
     "pokedexNumber": 364,
     "abilities": ["Thick Fat", "Ice Body", "Oblivious"],
@@ -14236,7 +14236,7 @@
     "id": 594,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "seedot",
+    "imgUrl": "/pokemon/images/seedot.png",
     "japaneseName": "Tanebohタネボー",
     "pokedexNumber": 273,
     "abilities": ["Chlorophyll", "Early Bird", "Pickpocket"],
@@ -14260,7 +14260,7 @@
     "id": 595,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "seel",
+    "imgUrl": "/pokemon/images/seel.png",
     "japaneseName": "Pawouパウワウ",
     "pokedexNumber": 86,
     "abilities": ["Thick Fat", "Hydration", "Ice Body"],
@@ -14284,7 +14284,7 @@
     "id": 596,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "seismitoad",
+    "imgUrl": "/pokemon/images/seismitoad.png",
     "japaneseName": "Gamagerogeガマゲロゲ",
     "pokedexNumber": 537,
     "abilities": ["Swift Swim", "Poison Touch", "Water Absorb"],
@@ -14308,7 +14308,7 @@
     "id": 597,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "sentret",
+    "imgUrl": "/pokemon/images/sentret.png",
     "japaneseName": "Otachiオタチ",
     "pokedexNumber": 161,
     "abilities": ["Run Away", "Keen Eye", "Frisk"],
@@ -14332,7 +14332,7 @@
     "id": 598,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "serperior",
+    "imgUrl": "/pokemon/images/serperior.png",
     "japaneseName": "Jalordaジャローダ",
     "pokedexNumber": 497,
     "abilities": ["Overgrow", "Contrary"],
@@ -14356,7 +14356,7 @@
     "id": 599,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "servine",
+    "imgUrl": "/pokemon/images/servine.png",
     "japaneseName": "Janovyジャノビー",
     "pokedexNumber": 496,
     "abilities": ["Overgrow", "Contrary"],
@@ -14380,7 +14380,7 @@
     "id": 600,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "seviper",
+    "imgUrl": "/pokemon/images/seviper.png",
     "japaneseName": "Habunakeハブネーク",
     "pokedexNumber": 336,
     "abilities": ["Shed Skin", "Infiltrator"],
@@ -14404,7 +14404,7 @@
     "id": 601,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "sewaddle",
+    "imgUrl": "/pokemon/images/sewaddle.png",
     "japaneseName": "Kurumiruクルミル",
     "pokedexNumber": 540,
     "abilities": ["Swarm", "Chlorophyll", "Overcoat"],
@@ -14428,7 +14428,7 @@
     "id": 602,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "sharpedo",
+    "imgUrl": "/pokemon/images/sharpedo.png",
     "japaneseName": "Samehaderサメハダー",
     "pokedexNumber": 319,
     "abilities": ["Rough Skin", "Speed Boost"],
@@ -14452,7 +14452,7 @@
     "id": 603,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "shaymin-land",
+    "imgUrl": "/pokemon/images/shaymin-land.png",
     "japaneseName": "Shaymin (sky Forme)シェイミ",
     "pokedexNumber": 492,
     "abilities": ["Natural Cure", "Serene Grace"],
@@ -14476,7 +14476,7 @@
     "id": 604,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "shedinja",
+    "imgUrl": "/pokemon/images/shedinja.png",
     "japaneseName": "Nukeninヌケニン",
     "pokedexNumber": 292,
     "abilities": ["Wonder Guard"],
@@ -14500,7 +14500,7 @@
     "id": 605,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "shelgon",
+    "imgUrl": "/pokemon/images/shelgon.png",
     "japaneseName": "Komoruuコモルー",
     "pokedexNumber": 372,
     "abilities": ["Rock Head", "Overcoat"],
@@ -14524,7 +14524,7 @@
     "id": 606,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "shellder",
+    "imgUrl": "/pokemon/images/shellder.png",
     "japaneseName": "Shellderシェルダー",
     "pokedexNumber": 90,
     "abilities": ["Shell Armor", "Skill Link", "Overcoat"],
@@ -14548,7 +14548,7 @@
     "id": 607,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "shellos",
+    "imgUrl": "/pokemon/images/shellos.png",
     "japaneseName": "Karanakushiカラナクシ",
     "pokedexNumber": 422,
     "abilities": ["Sticky Hold", "Storm Drain", "Sand Force"],
@@ -14572,7 +14572,7 @@
     "id": 608,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "shelmet",
+    "imgUrl": "/pokemon/images/shelmet.png",
     "japaneseName": "Chobomakiチョボマキ",
     "pokedexNumber": 616,
     "abilities": ["Hydration", "Shell Armor", "Overcoat"],
@@ -14596,7 +14596,7 @@
     "id": 609,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "shieldon",
+    "imgUrl": "/pokemon/images/shieldon.png",
     "japaneseName": "Tatetopsタテトプス",
     "pokedexNumber": 410,
     "abilities": ["Sturdy", "Soundproof"],
@@ -14620,7 +14620,7 @@
     "id": 610,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "shiftry",
+    "imgUrl": "/pokemon/images/shiftry.png",
     "japaneseName": "Dirtengダーテング",
     "pokedexNumber": 275,
     "abilities": ["Chlorophyll", "Early Bird", "Pickpocket"],
@@ -14644,7 +14644,7 @@
     "id": 611,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "shiinotic",
+    "imgUrl": "/pokemon/images/shiinotic.png",
     "japaneseName": "Mashadeマシェード",
     "pokedexNumber": 756,
     "abilities": ["Illuminate", "Effect Spore", "Rain Dish"],
@@ -14668,7 +14668,7 @@
     "id": 612,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "shinx",
+    "imgUrl": "/pokemon/images/shinx.png",
     "japaneseName": "Kolinkコリンク",
     "pokedexNumber": 403,
     "abilities": ["Rivalry", "Intimidate", "Guts"],
@@ -14692,7 +14692,7 @@
     "id": 613,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "shroomish",
+    "imgUrl": "/pokemon/images/shroomish.png",
     "japaneseName": "Kinococoキノココ",
     "pokedexNumber": 285,
     "abilities": ["Effect Spore", "Poison Heal", "Quick Feet"],
@@ -14716,7 +14716,7 @@
     "id": 614,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "shuckle",
+    "imgUrl": "/pokemon/images/shuckle.png",
     "japaneseName": "Tsubotsuboツボツボ",
     "pokedexNumber": 213,
     "abilities": ["Sturdy", "Gluttony", "Contrary"],
@@ -14740,7 +14740,7 @@
     "id": 615,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "shuppet",
+    "imgUrl": "/pokemon/images/shuppet.png",
     "japaneseName": "Kagebouzuカゲボウズ",
     "pokedexNumber": 353,
     "abilities": ["Insomnia", "Frisk", "Cursed Body"],
@@ -14764,7 +14764,7 @@
     "id": 616,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "sigilyph",
+    "imgUrl": "/pokemon/images/sigilyph.png",
     "japaneseName": "Symbolerシンボラー",
     "pokedexNumber": 561,
     "abilities": ["Wonder Skin ", "Magic Guard", "Tinted Lens"],
@@ -14788,7 +14788,7 @@
     "id": 617,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "silcoon",
+    "imgUrl": "/pokemon/images/silcoon.png",
     "japaneseName": "Karasalisカラサリス",
     "pokedexNumber": 266,
     "abilities": ["Shed Skin"],
@@ -14812,7 +14812,7 @@
     "id": 618,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "silvally",
+    "imgUrl": "/pokemon/images/silvally.png",
     "japaneseName": "Silvadyシルヴァディ",
     "pokedexNumber": 773,
     "abilities": ["RKS System"],
@@ -14836,7 +14836,7 @@
     "id": 619,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "simipour",
+    "imgUrl": "/pokemon/images/simipour.png",
     "japaneseName": "Hiyakkieヒヤッキー",
     "pokedexNumber": 516,
     "abilities": ["Gluttony", "Torrent"],
@@ -14860,7 +14860,7 @@
     "id": 620,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "simisage",
+    "imgUrl": "/pokemon/images/simisage.png",
     "japaneseName": "Yanakkieヤナッキー",
     "pokedexNumber": 512,
     "abilities": ["Gluttony", "Overgrow"],
@@ -14884,7 +14884,7 @@
     "id": 621,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "simisear",
+    "imgUrl": "/pokemon/images/simisear.png",
     "japaneseName": "Baokkieバオッキー",
     "pokedexNumber": 514,
     "abilities": ["Gluttony", "Blaze"],
@@ -14908,7 +14908,7 @@
     "id": 622,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "skarmory",
+    "imgUrl": "/pokemon/images/skarmory.png",
     "japaneseName": "Airmdエアームド",
     "pokedexNumber": 227,
     "abilities": ["Keen Eye", "Sturdy", "Weak Armor"],
@@ -14932,7 +14932,7 @@
     "id": 623,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "skiddo",
+    "imgUrl": "/pokemon/images/skiddo.png",
     "japaneseName": "Meecleメェークル",
     "pokedexNumber": 672,
     "abilities": ["Sap Sipper", "Grass Pelt"],
@@ -14956,7 +14956,7 @@
     "id": 624,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "skiploom",
+    "imgUrl": "/pokemon/images/skiploom.png",
     "japaneseName": "Popoccoポポッコ",
     "pokedexNumber": 188,
     "abilities": ["Chlorophyll", "Leaf Guard", "Infiltrator"],
@@ -14980,7 +14980,7 @@
     "id": 625,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "skitty",
+    "imgUrl": "/pokemon/images/skitty.png",
     "japaneseName": "Enecoエネコ",
     "pokedexNumber": 300,
     "abilities": ["Cute Charm", "Normalize", "Wonder Skin "],
@@ -15004,7 +15004,7 @@
     "id": 626,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "skorupi",
+    "imgUrl": "/pokemon/images/skorupi.png",
     "japaneseName": "Scorupiスコルピ",
     "pokedexNumber": 451,
     "abilities": ["Battle Armor", "Sniper", "Keen Eye"],
@@ -15028,7 +15028,7 @@
     "id": 627,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "skrelp",
+    "imgUrl": "/pokemon/images/skrelp.png",
     "japaneseName": "Kuzumoクズモー",
     "pokedexNumber": 690,
     "abilities": ["Poison Point", "Poison Touch", "Adaptability"],
@@ -15052,7 +15052,7 @@
     "id": 628,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "skuntank",
+    "imgUrl": "/pokemon/images/skuntank.png",
     "japaneseName": "Skutankスカタンク",
     "pokedexNumber": 435,
     "abilities": ["Stench", "Aftermath", "Keen Eye"],
@@ -15076,7 +15076,7 @@
     "id": 629,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "slaking",
+    "imgUrl": "/pokemon/images/slaking.png",
     "japaneseName": "Kekkingケッキング",
     "pokedexNumber": 289,
     "abilities": ["Truant"],
@@ -15100,7 +15100,7 @@
     "id": 630,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "slakoth",
+    "imgUrl": "/pokemon/images/slakoth.png",
     "japaneseName": "Namakeroナマケロ",
     "pokedexNumber": 287,
     "abilities": ["Truant"],
@@ -15124,7 +15124,7 @@
     "id": 631,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "sliggoo",
+    "imgUrl": "/pokemon/images/sliggoo.png",
     "japaneseName": "Numeilヌメイル",
     "pokedexNumber": 705,
     "abilities": ["Sap Sipper", "Hydration", "Gooey"],
@@ -15148,7 +15148,7 @@
     "id": 632,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "slowbro",
+    "imgUrl": "/pokemon/images/slowbro.png",
     "japaneseName": "Yadoranヤドラン",
     "pokedexNumber": 80,
     "abilities": ["Oblivious", "Own Tempo", "Regenerator"],
@@ -15172,7 +15172,7 @@
     "id": 633,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "slowking",
+    "imgUrl": "/pokemon/images/slowking.png",
     "japaneseName": "Yadokingヤドキング",
     "pokedexNumber": 199,
     "abilities": ["Oblivious", "Own Tempo", "Regenerator"],
@@ -15196,7 +15196,7 @@
     "id": 634,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "slowpoke",
+    "imgUrl": "/pokemon/images/slowpoke.png",
     "japaneseName": "Yadonヤドン",
     "pokedexNumber": 79,
     "abilities": ["Oblivious", "Own Tempo", "Regenerator"],
@@ -15220,7 +15220,7 @@
     "id": 635,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "slugma",
+    "imgUrl": "/pokemon/images/slugma.png",
     "japaneseName": "Magmagマグマッグ",
     "pokedexNumber": 218,
     "abilities": ["Magma Armor", "Flame Body", "Weak Armor"],
@@ -15244,7 +15244,7 @@
     "id": 636,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "slurpuff",
+    "imgUrl": "/pokemon/images/slurpuff.png",
     "japaneseName": "Peroreamペロリーム",
     "pokedexNumber": 685,
     "abilities": ["Sweet Veil", "Unburden"],
@@ -15268,7 +15268,7 @@
     "id": 637,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "smeargle",
+    "imgUrl": "/pokemon/images/smeargle.png",
     "japaneseName": "Dobleドーブル",
     "pokedexNumber": 235,
     "abilities": ["Own Tempo", "Technician", "Moody"],
@@ -15292,7 +15292,7 @@
     "id": 638,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "smoochum",
+    "imgUrl": "/pokemon/images/smoochum.png",
     "japaneseName": "Muchulムチュール",
     "pokedexNumber": 238,
     "abilities": ["Oblivious", "Forewarn", "Hydration"],
@@ -15316,7 +15316,7 @@
     "id": 639,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "sneasel",
+    "imgUrl": "/pokemon/images/sneasel.png",
     "japaneseName": "Nyulaニューラ",
     "pokedexNumber": 215,
     "abilities": ["Inner Focus", "Keen Eye", "Pickpocket"],
@@ -15340,7 +15340,7 @@
     "id": 640,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "snivy",
+    "imgUrl": "/pokemon/images/snivy.png",
     "japaneseName": "Tsutarjaツタージャ",
     "pokedexNumber": 495,
     "abilities": ["Overgrow", "Contrary"],
@@ -15364,7 +15364,7 @@
     "id": 641,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "snorlax",
+    "imgUrl": "/pokemon/images/snorlax.png",
     "japaneseName": "Kabigonカビゴン",
     "pokedexNumber": 143,
     "abilities": ["Immunity", "Thick Fat", "Gluttony"],
@@ -15388,7 +15388,7 @@
     "id": 642,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "snorunt",
+    "imgUrl": "/pokemon/images/snorunt.png",
     "japaneseName": "Yukiwarashiユキワラシ",
     "pokedexNumber": 361,
     "abilities": ["Inner Focus", "Ice Body", "Moody"],
@@ -15412,7 +15412,7 @@
     "id": 643,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "snover",
+    "imgUrl": "/pokemon/images/snover.png",
     "japaneseName": "Yukikaburiユキカブリ",
     "pokedexNumber": 459,
     "abilities": ["Snow Warning", "Soundproof"],
@@ -15436,7 +15436,7 @@
     "id": 644,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "snubbull",
+    "imgUrl": "/pokemon/images/snubbull.png",
     "japaneseName": "Buluブルー",
     "pokedexNumber": 209,
     "abilities": ["Intimidate", "Run Away", "Rattled"],
@@ -15460,7 +15460,7 @@
     "id": 645,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "solgaleo",
+    "imgUrl": "/pokemon/images/solgaleo.png",
     "japaneseName": "Solgaleoソルガレオ",
     "pokedexNumber": 791,
     "abilities": ["Full Metal Body"],
@@ -15484,7 +15484,7 @@
     "id": 646,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "solosis",
+    "imgUrl": "/pokemon/images/solosis.png",
     "japaneseName": "Uniranユニラン",
     "pokedexNumber": 577,
     "abilities": ["Overcoat", "Magic Guard", "Regenerator"],
@@ -15508,7 +15508,7 @@
     "id": 647,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "solrock",
+    "imgUrl": "/pokemon/images/solrock.png",
     "japaneseName": "Solrockソルロック",
     "pokedexNumber": 338,
     "abilities": ["Levitate"],
@@ -15532,7 +15532,7 @@
     "id": 648,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "spearow",
+    "imgUrl": "/pokemon/images/spearow.png",
     "japaneseName": "Onisuzumeオニスズメ",
     "pokedexNumber": 21,
     "abilities": ["Keen Eye", "Sniper"],
@@ -15556,7 +15556,7 @@
     "id": 649,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "spewpa",
+    "imgUrl": "/pokemon/images/spewpa.png",
     "japaneseName": "Kofuuraiコフーライ",
     "pokedexNumber": 665,
     "abilities": ["Shed Skin", "Friend Guard"],
@@ -15580,7 +15580,7 @@
     "id": 650,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "spheal",
+    "imgUrl": "/pokemon/images/spheal.png",
     "japaneseName": "Tamazarashiタマザラシ",
     "pokedexNumber": 363,
     "abilities": ["Thick Fat", "Ice Body", "Oblivious"],
@@ -15604,7 +15604,7 @@
     "id": 651,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "spinarak",
+    "imgUrl": "/pokemon/images/spinarak.png",
     "japaneseName": "Itomaruイトマル",
     "pokedexNumber": 167,
     "abilities": ["Swarm", "Insomnia", "Sniper"],
@@ -15628,7 +15628,7 @@
     "id": 652,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "spinda",
+    "imgUrl": "/pokemon/images/spinda.png",
     "japaneseName": "Patcheelパッチール",
     "pokedexNumber": 327,
     "abilities": ["Own Tempo", "Tangled Feet", "Contrary"],
@@ -15652,7 +15652,7 @@
     "id": 653,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "spiritomb",
+    "imgUrl": "/pokemon/images/spiritomb.png",
     "japaneseName": "Mikarugeミカルゲ",
     "pokedexNumber": 442,
     "abilities": ["Pressure", "Infiltrator"],
@@ -15676,7 +15676,7 @@
     "id": 654,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "spoink",
+    "imgUrl": "/pokemon/images/spoink.png",
     "japaneseName": "Banebooバネブー",
     "pokedexNumber": 325,
     "abilities": ["Thick Fat", "Own Tempo", "Gluttony"],
@@ -15700,7 +15700,7 @@
     "id": 655,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "spritzee",
+    "imgUrl": "/pokemon/images/spritzee.png",
     "japaneseName": "Shushupuシュシュプ",
     "pokedexNumber": 682,
     "abilities": ["Healer", "Aroma Veil"],
@@ -15724,7 +15724,7 @@
     "id": 656,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "squirtle",
+    "imgUrl": "/pokemon/images/squirtle.png",
     "japaneseName": "Zenigameゼニガメ",
     "pokedexNumber": 7,
     "abilities": ["Torrent", "Rain Dish"],
@@ -15748,7 +15748,7 @@
     "id": 657,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "stantler",
+    "imgUrl": "/pokemon/images/stantler.png",
     "japaneseName": "Odoshishiオドシシ",
     "pokedexNumber": 234,
     "abilities": ["Intimidate", "Frisk", "Sap Sipper"],
@@ -15772,7 +15772,7 @@
     "id": 658,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "staraptor",
+    "imgUrl": "/pokemon/images/staraptor.png",
     "japaneseName": "Mukuhawkムクホーク",
     "pokedexNumber": 398,
     "abilities": ["Intimidate", "Reckless"],
@@ -15796,7 +15796,7 @@
     "id": 659,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "staravia",
+    "imgUrl": "/pokemon/images/staravia.png",
     "japaneseName": "Mukubirdムクバード",
     "pokedexNumber": 397,
     "abilities": ["Intimidate", "Reckless"],
@@ -15820,7 +15820,7 @@
     "id": 660,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "starly",
+    "imgUrl": "/pokemon/images/starly.png",
     "japaneseName": "Mukkuruムックル",
     "pokedexNumber": 396,
     "abilities": ["Keen Eye", "Reckless"],
@@ -15844,7 +15844,7 @@
     "id": 661,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "starmie",
+    "imgUrl": "/pokemon/images/starmie.png",
     "japaneseName": "Starmieスターミー",
     "pokedexNumber": 121,
     "abilities": ["Illuminate", "Natural Cure", "Analytic"],
@@ -15868,7 +15868,7 @@
     "id": 662,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "staryu",
+    "imgUrl": "/pokemon/images/staryu.png",
     "japaneseName": "Hitodemanヒトデマン",
     "pokedexNumber": 120,
     "abilities": ["Illuminate", "Natural Cure", "Analytic"],
@@ -15892,7 +15892,7 @@
     "id": 663,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "steelix",
+    "imgUrl": "/pokemon/images/steelix.png",
     "japaneseName": "Haganeilハガネール",
     "pokedexNumber": 208,
     "abilities": ["Rock Head", "Sturdy", "Sheer Force"],
@@ -15916,7 +15916,7 @@
     "id": 664,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "steenee",
+    "imgUrl": "/pokemon/images/steenee.png",
     "japaneseName": "Amamaikoアママイコ",
     "pokedexNumber": 762,
     "abilities": ["Leaf Guard", "Oblivious", "Sweet Veil"],
@@ -15940,7 +15940,7 @@
     "id": 665,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "stoutland",
+    "imgUrl": "/pokemon/images/stoutland.png",
     "japaneseName": "Moolandムーランド",
     "pokedexNumber": 508,
     "abilities": ["Intimidate", "Sand Rush", "Scrappy"],
@@ -15964,7 +15964,7 @@
     "id": 666,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "stufful",
+    "imgUrl": "/pokemon/images/stufful.png",
     "japaneseName": "Nuikogumaヌイコグマ",
     "pokedexNumber": 759,
     "abilities": ["Fluffy", "Klutz", "Cute Charm"],
@@ -15988,7 +15988,7 @@
     "id": 667,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "stunfisk",
+    "imgUrl": "/pokemon/images/stunfisk.png",
     "japaneseName": "Maggyoマッギョ",
     "pokedexNumber": 618,
     "abilities": ["Static", "Limber", "Sand Veil"],
@@ -16012,7 +16012,7 @@
     "id": 668,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "stunky",
+    "imgUrl": "/pokemon/images/stunky.png",
     "japaneseName": "Skunpuuスカンプー",
     "pokedexNumber": 434,
     "abilities": ["Stench", "Aftermath", "Keen Eye"],
@@ -16036,7 +16036,7 @@
     "id": 669,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "sudowoodo",
+    "imgUrl": "/pokemon/images/sudowoodo.png",
     "japaneseName": "Usokkieウソッキー",
     "pokedexNumber": 185,
     "abilities": ["Sturdy", "Rock Head", "Rattled"],
@@ -16060,7 +16060,7 @@
     "id": 670,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "suicune",
+    "imgUrl": "/pokemon/images/suicune.png",
     "japaneseName": "Suicuneスイクン",
     "pokedexNumber": 245,
     "abilities": ["Pressure", "Inner Focus"],
@@ -16084,7 +16084,7 @@
     "id": 671,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "sunflora",
+    "imgUrl": "/pokemon/images/sunflora.png",
     "japaneseName": "Kimawariキマワリ",
     "pokedexNumber": 192,
     "abilities": ["Chlorophyll", "Solar Power", "Early Bird"],
@@ -16108,7 +16108,7 @@
     "id": 672,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "sunkern",
+    "imgUrl": "/pokemon/images/sunkern.png",
     "japaneseName": "Himanutsヒマナッツ",
     "pokedexNumber": 191,
     "abilities": ["Chlorophyll", "Solar Power", "Early Bird"],
@@ -16132,7 +16132,7 @@
     "id": 673,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "surskit",
+    "imgUrl": "/pokemon/images/surskit.png",
     "japaneseName": "Ametamaアメタマ",
     "pokedexNumber": 283,
     "abilities": ["Swift Swim", "Rain Dish"],
@@ -16156,7 +16156,7 @@
     "id": 674,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "swablu",
+    "imgUrl": "/pokemon/images/swablu.png",
     "japaneseName": "Tylttoチルット",
     "pokedexNumber": 333,
     "abilities": ["Natural Cure", "Cloud Nine"],
@@ -16180,7 +16180,7 @@
     "id": 675,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "swadloon",
+    "imgUrl": "/pokemon/images/swadloon.png",
     "japaneseName": "Kurumayuクルマユ",
     "pokedexNumber": 541,
     "abilities": ["Leaf Guard", "Chlorophyll", "Overcoat"],
@@ -16204,7 +16204,7 @@
     "id": 676,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "swalot",
+    "imgUrl": "/pokemon/images/swalot.png",
     "japaneseName": "Marunoomマルノーム",
     "pokedexNumber": 317,
     "abilities": ["Liquid Ooze", "Sticky Hold", "Gluttony"],
@@ -16228,7 +16228,7 @@
     "id": 677,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "swampert",
+    "imgUrl": "/pokemon/images/swampert.png",
     "japaneseName": "Laglargeラグラージ",
     "pokedexNumber": 260,
     "abilities": ["Torrent", "Damp"],
@@ -16252,7 +16252,7 @@
     "id": 678,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "swanna",
+    "imgUrl": "/pokemon/images/swanna.png",
     "japaneseName": "Swannaスワンナ",
     "pokedexNumber": 581,
     "abilities": ["Keen Eye", "Big Pecks", "Hydration"],
@@ -16276,7 +16276,7 @@
     "id": 679,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "swellow",
+    "imgUrl": "/pokemon/images/swellow.png",
     "japaneseName": "Ohsubameオオスバメ",
     "pokedexNumber": 277,
     "abilities": ["Guts", "Scrappy"],
@@ -16300,7 +16300,7 @@
     "id": 680,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "swinub",
+    "imgUrl": "/pokemon/images/swinub.png",
     "japaneseName": "Urimooウリムー",
     "pokedexNumber": 220,
     "abilities": ["Oblivious", "Snow Cloak", "Thick Fat"],
@@ -16324,7 +16324,7 @@
     "id": 681,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "swirlix",
+    "imgUrl": "/pokemon/images/swirlix.png",
     "japaneseName": "Peroppafuペロッパフ",
     "pokedexNumber": 684,
     "abilities": ["Sweet Veil", "Unburden"],
@@ -16348,7 +16348,7 @@
     "id": 682,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "swoobat",
+    "imgUrl": "/pokemon/images/swoobat.png",
     "japaneseName": "Kokoromoriココロモリ",
     "pokedexNumber": 528,
     "abilities": ["Unaware", "Klutz", "Simple"],
@@ -16372,7 +16372,7 @@
     "id": 683,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "sylveon",
+    "imgUrl": "/pokemon/images/sylveon.png",
     "japaneseName": "Nymphiaニンフィア",
     "pokedexNumber": 700,
     "abilities": ["Cute Charm", "Pixilate"],
@@ -16396,7 +16396,7 @@
     "id": 684,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "taillow",
+    "imgUrl": "/pokemon/images/taillow.png",
     "japaneseName": "Subameスバメ",
     "pokedexNumber": 276,
     "abilities": ["Guts", "Scrappy"],
@@ -16420,7 +16420,7 @@
     "id": 685,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "talonflame",
+    "imgUrl": "/pokemon/images/talonflame.png",
     "japaneseName": "Fiarrowファイアロー",
     "pokedexNumber": 663,
     "abilities": ["Flame Body", "Gale Wings"],
@@ -16444,7 +16444,7 @@
     "id": 686,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "tangela",
+    "imgUrl": "/pokemon/images/tangela.png",
     "japaneseName": "Monjaraモンジャラ",
     "pokedexNumber": 114,
     "abilities": ["Chlorophyll", "Leaf Guard", "Regenerator"],
@@ -16468,7 +16468,7 @@
     "id": 687,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "tangrowth",
+    "imgUrl": "/pokemon/images/tangrowth.png",
     "japaneseName": "Mojumboモジャンボ",
     "pokedexNumber": 465,
     "abilities": ["Chlorophyll", "Leaf Guard", "Regenerator"],
@@ -16492,7 +16492,7 @@
     "id": 688,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "tapu-bulu",
+    "imgUrl": "/pokemon/images/tapu-bulu.png",
     "japaneseName": "Kapu-bululカプ・ブルル",
     "pokedexNumber": 787,
     "abilities": ["Grassy Surge", "Telepathy"],
@@ -16516,7 +16516,7 @@
     "id": 689,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "tapu-fini",
+    "imgUrl": "/pokemon/images/tapu-fini.png",
     "japaneseName": "Kapu-rehireカプ・レヒレ",
     "pokedexNumber": 788,
     "abilities": ["Misty Surge", "Telepathy"],
@@ -16540,7 +16540,7 @@
     "id": 690,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "tapu-koko",
+    "imgUrl": "/pokemon/images/tapu-koko.png",
     "japaneseName": "Kapu-kokekoカプ・コケコ",
     "pokedexNumber": 785,
     "abilities": ["Electric Surge", "Telepathy"],
@@ -16564,7 +16564,7 @@
     "id": 691,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "tapu-lele",
+    "imgUrl": "/pokemon/images/tapu-lele.png",
     "japaneseName": "Kapu-tetefuカプ・テテフ",
     "pokedexNumber": 786,
     "abilities": ["Psychic Surge", "Telepathy"],
@@ -16588,7 +16588,7 @@
     "id": 692,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "tauros",
+    "imgUrl": "/pokemon/images/tauros.png",
     "japaneseName": "Kentaurosケンタロス",
     "pokedexNumber": 128,
     "abilities": ["Intimidate", "Anger Point", "Sheer Force"],
@@ -16612,7 +16612,7 @@
     "id": 693,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "teddiursa",
+    "imgUrl": "/pokemon/images/teddiursa.png",
     "japaneseName": "Himegumaヒメグマ",
     "pokedexNumber": 216,
     "abilities": ["Pickup", "Quick Feet", "Honey Gather"],
@@ -16636,7 +16636,7 @@
     "id": 694,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "tentacool",
+    "imgUrl": "/pokemon/images/tentacool.png",
     "japaneseName": "Menokurageメノクラゲ",
     "pokedexNumber": 72,
     "abilities": ["Clear Body", "Liquid Ooze", "Rain Dish"],
@@ -16660,7 +16660,7 @@
     "id": 695,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "tentacruel",
+    "imgUrl": "/pokemon/images/tentacruel.png",
     "japaneseName": "Dokukurageドククラゲ",
     "pokedexNumber": 73,
     "abilities": ["Clear Body", "Liquid Ooze", "Rain Dish"],
@@ -16684,7 +16684,7 @@
     "id": 696,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "tepig",
+    "imgUrl": "/pokemon/images/tepig.png",
     "japaneseName": "Pokabuポカブ",
     "pokedexNumber": 498,
     "abilities": ["Blaze", "Thick Fat"],
@@ -16708,7 +16708,7 @@
     "id": 697,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "terrakion",
+    "imgUrl": "/pokemon/images/terrakion.png",
     "japaneseName": "Terrakionテラキオン",
     "pokedexNumber": 639,
     "abilities": ["Justified"],
@@ -16732,7 +16732,7 @@
     "id": 698,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "throh",
+    "imgUrl": "/pokemon/images/throh.png",
     "japaneseName": "Nagekiナゲキ",
     "pokedexNumber": 538,
     "abilities": ["Guts", "Inner Focus", "Mold Breaker"],
@@ -16756,7 +16756,7 @@
     "id": 699,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "thundurus-incarnate",
+    "imgUrl": "/pokemon/images/thundurus-incarnate.png",
     "japaneseName": "Voltolos (keshin Forme)ボルトロス",
     "pokedexNumber": 642,
     "abilities": ["Prankster", "Defiant", "Volt Absorb"],
@@ -16780,7 +16780,7 @@
     "id": 700,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "timburr",
+    "imgUrl": "/pokemon/images/timburr.png",
     "japaneseName": "Dokkorerドッコラー",
     "pokedexNumber": 532,
     "abilities": ["Guts", "Sheer Force", "Iron Fist"],
@@ -16804,7 +16804,7 @@
     "id": 701,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "tirtouga",
+    "imgUrl": "/pokemon/images/tirtouga.png",
     "japaneseName": "Protogaプロトーガ",
     "pokedexNumber": 564,
     "abilities": ["Solid Rock", "Sturdy", "Swift Swim"],
@@ -16828,7 +16828,7 @@
     "id": 702,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "togedemaru",
+    "imgUrl": "/pokemon/images/togedemaru.png",
     "japaneseName": "Togedemaruトゲデマル",
     "pokedexNumber": 777,
     "abilities": ["Iron Barbs", "Lightningrod", "Sturdy"],
@@ -16852,7 +16852,7 @@
     "id": 703,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "togekiss",
+    "imgUrl": "/pokemon/images/togekiss.png",
     "japaneseName": "Togekissトゲキッス",
     "pokedexNumber": 468,
     "abilities": ["Hustle", "Serene Grace", "Super Luck"],
@@ -16876,7 +16876,7 @@
     "id": 704,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "togepi",
+    "imgUrl": "/pokemon/images/togepi.png",
     "japaneseName": "Togepyトゲピー",
     "pokedexNumber": 175,
     "abilities": ["Hustle", "Serene Grace", "Super Luck"],
@@ -16900,7 +16900,7 @@
     "id": 705,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "togetic",
+    "imgUrl": "/pokemon/images/togetic.png",
     "japaneseName": "Togechickトゲチック",
     "pokedexNumber": 176,
     "abilities": ["Hustle", "Serene Grace", "Super Luck"],
@@ -16924,7 +16924,7 @@
     "id": 706,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "torchic",
+    "imgUrl": "/pokemon/images/torchic.png",
     "japaneseName": "Achamoアチャモ",
     "pokedexNumber": 255,
     "abilities": ["Blaze", "Speed Boost"],
@@ -16948,7 +16948,7 @@
     "id": 707,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "torkoal",
+    "imgUrl": "/pokemon/images/torkoal.png",
     "japaneseName": "Cotoiseコータス",
     "pokedexNumber": 324,
     "abilities": ["White Smoke", "Drought", "Shell Armor"],
@@ -16972,7 +16972,7 @@
     "id": 708,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "tornadus-incarnate",
+    "imgUrl": "/pokemon/images/tornadus-incarnate.png",
     "japaneseName": "Tornelos (keshin Forme)トルネロス",
     "pokedexNumber": 641,
     "abilities": ["Prankster", "Defiant", "Regenerator"],
@@ -16996,7 +16996,7 @@
     "id": 709,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "torracat",
+    "imgUrl": "/pokemon/images/torracat.png",
     "japaneseName": "Nyaheatニャヒート",
     "pokedexNumber": 726,
     "abilities": ["Blaze", "Intimidate"],
@@ -17020,7 +17020,7 @@
     "id": 710,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "torterra",
+    "imgUrl": "/pokemon/images/torterra.png",
     "japaneseName": "Dodaitoseドダイトス",
     "pokedexNumber": 389,
     "abilities": ["Overgrow", "Shell Armor"],
@@ -17044,7 +17044,7 @@
     "id": 711,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "totodile",
+    "imgUrl": "/pokemon/images/totodile.png",
     "japaneseName": "Waninokoワニノコ",
     "pokedexNumber": 158,
     "abilities": ["Torrent", "Sheer Force"],
@@ -17068,7 +17068,7 @@
     "id": 712,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "toucannon",
+    "imgUrl": "/pokemon/images/toucannon.png",
     "japaneseName": "Dodekabashiドデカバシ",
     "pokedexNumber": 733,
     "abilities": ["Keen Eye", "Skill Link", "Sheer Force"],
@@ -17092,7 +17092,7 @@
     "id": 713,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "toxapex",
+    "imgUrl": "/pokemon/images/toxapex.png",
     "japaneseName": "Dohidoideドヒドイデ",
     "pokedexNumber": 748,
     "abilities": ["Merciless", "Limber", "Regenerator"],
@@ -17116,7 +17116,7 @@
     "id": 714,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "toxicroak",
+    "imgUrl": "/pokemon/images/toxicroak.png",
     "japaneseName": "Dokurogドクロッグ",
     "pokedexNumber": 454,
     "abilities": ["Anticipation", "Dry Skin", "Poison Touch"],
@@ -17140,7 +17140,7 @@
     "id": 715,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "tranquill",
+    "imgUrl": "/pokemon/images/tranquill.png",
     "japaneseName": "Hatobohハトーボー",
     "pokedexNumber": 520,
     "abilities": ["Big Pecks", "Super Luck", "Rivalry"],
@@ -17164,7 +17164,7 @@
     "id": 716,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "trapinch",
+    "imgUrl": "/pokemon/images/trapinch.png",
     "japaneseName": "Nuckrarナックラー",
     "pokedexNumber": 328,
     "abilities": ["Hyper Cutter", "Arena Trap", "Sheer Force"],
@@ -17188,7 +17188,7 @@
     "id": 717,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "treecko",
+    "imgUrl": "/pokemon/images/treecko.png",
     "japaneseName": "Kimoriキモリ",
     "pokedexNumber": 252,
     "abilities": ["Overgrow", "Unburden"],
@@ -17212,7 +17212,7 @@
     "id": 718,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "trevenant",
+    "imgUrl": "/pokemon/images/trevenant.png",
     "japaneseName": "Ohrotオーロット",
     "pokedexNumber": 709,
     "abilities": ["Natural Cure", "Frisk", "Harvest"],
@@ -17236,7 +17236,7 @@
     "id": 719,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "tropius",
+    "imgUrl": "/pokemon/images/tropius.png",
     "japaneseName": "Tropiusトロピウス",
     "pokedexNumber": 357,
     "abilities": ["Chlorophyll", "Solar Power", "Harvest"],
@@ -17260,7 +17260,7 @@
     "id": 720,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "trubbish",
+    "imgUrl": "/pokemon/images/trubbish.png",
     "japaneseName": "Yabukuronヤブクロン",
     "pokedexNumber": 568,
     "abilities": ["Stench", "Sticky Hold", "Aftermath"],
@@ -17284,7 +17284,7 @@
     "id": 721,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "trumbeak",
+    "imgUrl": "/pokemon/images/trumbeak.png",
     "japaneseName": "Kerarappaケララッパ",
     "pokedexNumber": 732,
     "abilities": ["Keen Eye", "Skill Link", "Pickup"],
@@ -17308,7 +17308,7 @@
     "id": 722,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "tsareena",
+    "imgUrl": "/pokemon/images/tsareena.png",
     "japaneseName": "Amajoアマージョ",
     "pokedexNumber": 763,
     "abilities": ["Leaf Guard", "Queenly Majesty", "Sweet Veil"],
@@ -17332,7 +17332,7 @@
     "id": 723,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "turtonator",
+    "imgUrl": "/pokemon/images/turtonator.png",
     "japaneseName": "Bakugamesバクガメス",
     "pokedexNumber": 776,
     "abilities": ["Shell Armor"],
@@ -17356,7 +17356,7 @@
     "id": 724,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "turtwig",
+    "imgUrl": "/pokemon/images/turtwig.png",
     "japaneseName": "Naetleナエトル",
     "pokedexNumber": 387,
     "abilities": ["Overgrow", "Shell Armor"],
@@ -17380,7 +17380,7 @@
     "id": 725,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "tympole",
+    "imgUrl": "/pokemon/images/tympole.png",
     "japaneseName": "Otamaroオタマロ",
     "pokedexNumber": 535,
     "abilities": ["Swift Swim", "Hydration", "Water Absorb"],
@@ -17404,7 +17404,7 @@
     "id": 726,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "tynamo",
+    "imgUrl": "/pokemon/images/tynamo.png",
     "japaneseName": "Shibishirasuシビシラス",
     "pokedexNumber": 602,
     "abilities": ["Levitate"],
@@ -17428,7 +17428,7 @@
     "id": 727,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "type-null",
+    "imgUrl": "/pokemon/images/type-null.png",
     "japaneseName": "Type: Nullタイプ:ヌル",
     "pokedexNumber": 772,
     "abilities": ["Battle Armor"],
@@ -17452,7 +17452,7 @@
     "id": 728,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "typhlosion",
+    "imgUrl": "/pokemon/images/typhlosion.png",
     "japaneseName": "Bakphoonバクフーン",
     "pokedexNumber": 157,
     "abilities": ["Blaze", "Flash Fire"],
@@ -17476,7 +17476,7 @@
     "id": 729,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "tyranitar",
+    "imgUrl": "/pokemon/images/tyranitar.png",
     "japaneseName": "Bangirasバンギラス",
     "pokedexNumber": 248,
     "abilities": ["Sand Stream", "Unnerve"],
@@ -17500,7 +17500,7 @@
     "id": 730,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "tyrantrum",
+    "imgUrl": "/pokemon/images/tyrantrum.png",
     "japaneseName": "Gachigorasガチゴラス",
     "pokedexNumber": 697,
     "abilities": ["Strong Jaw", "Rock Head"],
@@ -17524,7 +17524,7 @@
     "id": 731,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "tyrogue",
+    "imgUrl": "/pokemon/images/tyrogue.png",
     "japaneseName": "Balkieバルキー",
     "pokedexNumber": 236,
     "abilities": ["Guts", "Steadfast", "Vital Spirit"],
@@ -17548,7 +17548,7 @@
     "id": 732,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "tyrunt",
+    "imgUrl": "/pokemon/images/tyrunt.png",
     "japaneseName": "Chigorasチゴラス",
     "pokedexNumber": 696,
     "abilities": ["Strong Jaw", "Sturdy"],
@@ -17572,7 +17572,7 @@
     "id": 733,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "umbreon",
+    "imgUrl": "/pokemon/images/umbreon.png",
     "japaneseName": "Blackyブラッキー",
     "pokedexNumber": 197,
     "abilities": ["Synchronize", "Inner Focus"],
@@ -17596,7 +17596,7 @@
     "id": 734,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "unfezant",
+    "imgUrl": "/pokemon/images/unfezant.png",
     "japaneseName": "Kenhallowケンホロウ",
     "pokedexNumber": 521,
     "abilities": ["Big Pecks", "Super Luck", "Rivalry"],
@@ -17620,7 +17620,7 @@
     "id": 735,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "unown",
+    "imgUrl": "/pokemon/images/unown.png",
     "japaneseName": "Unknownアンノーン",
     "pokedexNumber": 201,
     "abilities": ["Levitate"],
@@ -17644,7 +17644,7 @@
     "id": 736,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "ursaring",
+    "imgUrl": "/pokemon/images/ursaring.png",
     "japaneseName": "Ringumaリングマ",
     "pokedexNumber": 217,
     "abilities": ["Guts", "Quick Feet", "Unnerve"],
@@ -17668,7 +17668,7 @@
     "id": 737,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "uxie",
+    "imgUrl": "/pokemon/images/uxie.png",
     "japaneseName": "Yuxieユクシー",
     "pokedexNumber": 480,
     "abilities": ["Levitate"],
@@ -17692,7 +17692,7 @@
     "id": 738,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "vanillish",
+    "imgUrl": "/pokemon/images/vanillish.png",
     "japaneseName": "Vanirichバニリッチ",
     "pokedexNumber": 583,
     "abilities": ["Ice Body", "Snow Cloak", "Weak Armor"],
@@ -17716,7 +17716,7 @@
     "id": 739,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "vanillite",
+    "imgUrl": "/pokemon/images/vanillite.png",
     "japaneseName": "Vanipetiバニプッチ",
     "pokedexNumber": 582,
     "abilities": ["Ice Body", "Snow Cloak", "Weak Armor"],
@@ -17740,7 +17740,7 @@
     "id": 740,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "vanilluxe",
+    "imgUrl": "/pokemon/images/vanilluxe.png",
     "japaneseName": "Baivanillaバイバニラ",
     "pokedexNumber": 584,
     "abilities": ["Ice Body", "Snow Warning", "Weak Armor"],
@@ -17764,7 +17764,7 @@
     "id": 741,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "vaporeon",
+    "imgUrl": "/pokemon/images/vaporeon.png",
     "japaneseName": "Showersシャワーズ",
     "pokedexNumber": 134,
     "abilities": ["Water Absorb", "Hydration"],
@@ -17788,7 +17788,7 @@
     "id": 742,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "venipede",
+    "imgUrl": "/pokemon/images/venipede.png",
     "japaneseName": "Fushideフシデ",
     "pokedexNumber": 543,
     "abilities": ["Poison Point", "Swarm", "Speed Boost"],
@@ -17812,7 +17812,7 @@
     "id": 743,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "venomoth",
+    "imgUrl": "/pokemon/images/venomoth.png",
     "japaneseName": "Morphonモルフォン",
     "pokedexNumber": 49,
     "abilities": ["Shield Dust", "Tinted Lens", "Wonder Skin "],
@@ -17836,7 +17836,7 @@
     "id": 744,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "venonat",
+    "imgUrl": "/pokemon/images/venonat.png",
     "japaneseName": "Kongpangコンパン",
     "pokedexNumber": 48,
     "abilities": ["Compoundeyes", "Tinted Lens", "Run Away"],
@@ -17860,7 +17860,7 @@
     "id": 745,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "venusaur",
+    "imgUrl": "/pokemon/images/venusaur.png",
     "japaneseName": "Fushigibanaフシギバナ",
     "pokedexNumber": 3,
     "abilities": ["Overgrow", "Chlorophyll"],
@@ -17884,7 +17884,7 @@
     "id": 746,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "vespiquen",
+    "imgUrl": "/pokemon/images/vespiquen.png",
     "japaneseName": "Beequenビークイン",
     "pokedexNumber": 416,
     "abilities": ["Pressure", "Unnerve"],
@@ -17908,7 +17908,7 @@
     "id": 747,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "vibrava",
+    "imgUrl": "/pokemon/images/vibrava.png",
     "japaneseName": "Vibravaビブラーバ",
     "pokedexNumber": 329,
     "abilities": ["Levitate"],
@@ -17932,7 +17932,7 @@
     "id": 748,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "victini",
+    "imgUrl": "/pokemon/images/victini.png",
     "japaneseName": "Victiniビクティニ",
     "pokedexNumber": 494,
     "abilities": ["Victory Star"],
@@ -17956,7 +17956,7 @@
     "id": 749,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "victreebel",
+    "imgUrl": "/pokemon/images/victreebel.png",
     "japaneseName": "Utsubotウツボット",
     "pokedexNumber": 71,
     "abilities": ["Chlorophyll", "Gluttony"],
@@ -17980,7 +17980,7 @@
     "id": 750,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "vigoroth",
+    "imgUrl": "/pokemon/images/vigoroth.png",
     "japaneseName": "Yarukimonoヤルキモノ",
     "pokedexNumber": 288,
     "abilities": ["Vital Spirit"],
@@ -18004,7 +18004,7 @@
     "id": 751,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "vikavolt",
+    "imgUrl": "/pokemon/images/vikavolt.png",
     "japaneseName": "Kuwagannonクワガノン",
     "pokedexNumber": 738,
     "abilities": ["Levitate"],
@@ -18028,7 +18028,7 @@
     "id": 752,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "vileplume",
+    "imgUrl": "/pokemon/images/vileplume.png",
     "japaneseName": "Ruffresiaラフレシア",
     "pokedexNumber": 45,
     "abilities": ["Chlorophyll", "Effect Spore"],
@@ -18052,7 +18052,7 @@
     "id": 753,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "virizion",
+    "imgUrl": "/pokemon/images/virizion.png",
     "japaneseName": "Virizionビリジオン",
     "pokedexNumber": 640,
     "abilities": ["Justified"],
@@ -18076,7 +18076,7 @@
     "id": 754,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "vivillon",
+    "imgUrl": "/pokemon/images/vivillon.png",
     "japaneseName": "Viviyonビビヨン",
     "pokedexNumber": 666,
     "abilities": ["Shield Dust", "Compoundeyes", "Friend Guard"],
@@ -18100,7 +18100,7 @@
     "id": 755,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "volbeat",
+    "imgUrl": "/pokemon/images/volbeat.png",
     "japaneseName": "Barubeatバルビート",
     "pokedexNumber": 313,
     "abilities": ["Illuminate", "Swarm", "Prankster"],
@@ -18124,7 +18124,7 @@
     "id": 756,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "volcanion",
+    "imgUrl": "/pokemon/images/volcanion.png",
     "japaneseName": "Volcanionボルケニオン",
     "pokedexNumber": 721,
     "abilities": ["Water Absorb"],
@@ -18148,7 +18148,7 @@
     "id": 757,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "volcarona",
+    "imgUrl": "/pokemon/images/volcarona.png",
     "japaneseName": "Ulgamothウルガモス",
     "pokedexNumber": 637,
     "abilities": ["Flame Body", "Swarm"],
@@ -18172,7 +18172,7 @@
     "id": 758,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "voltorb",
+    "imgUrl": "/pokemon/images/voltorb.png",
     "japaneseName": "Biriridamaビリリダマ",
     "pokedexNumber": 100,
     "abilities": ["Soundproof", "Static", "Aftermath"],
@@ -18196,7 +18196,7 @@
     "id": 759,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "vullaby",
+    "imgUrl": "/pokemon/images/vullaby.png",
     "japaneseName": "Valchaiバルチャイ",
     "pokedexNumber": 629,
     "abilities": ["Big Pecks", "Overcoat", "Weak Armor"],
@@ -18220,7 +18220,7 @@
     "id": 760,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "vulpix",
+    "imgUrl": "/pokemon/images/vulpix.png",
     "japaneseName": "Rokonロコン",
     "pokedexNumber": 37,
     "abilities": ["Flash Fire", "Drought", "Snow Cloak", "Snow Warning"],
@@ -18244,7 +18244,7 @@
     "id": 761,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "wailmer",
+    "imgUrl": "/pokemon/images/wailmer.png",
     "japaneseName": "Hoerukoホエルコ",
     "pokedexNumber": 320,
     "abilities": ["Water Veil", "Oblivious", "Pressure"],
@@ -18268,7 +18268,7 @@
     "id": 762,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "wailord",
+    "imgUrl": "/pokemon/images/wailord.png",
     "japaneseName": "Whalohホエルオー",
     "pokedexNumber": 321,
     "abilities": ["Water Veil", "Oblivious", "Pressure"],
@@ -18292,7 +18292,7 @@
     "id": 763,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "walrein",
+    "imgUrl": "/pokemon/images/walrein.png",
     "japaneseName": "Todoserugaトドゼルガ",
     "pokedexNumber": 365,
     "abilities": ["Thick Fat", "Ice Body", "Oblivious"],
@@ -18316,7 +18316,7 @@
     "id": 764,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "wartortle",
+    "imgUrl": "/pokemon/images/wartortle.png",
     "japaneseName": "Kameilカメール",
     "pokedexNumber": 8,
     "abilities": ["Torrent", "Rain Dish"],
@@ -18340,7 +18340,7 @@
     "id": 765,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "watchog",
+    "imgUrl": "/pokemon/images/watchog.png",
     "japaneseName": "Miruhogミルホッグ",
     "pokedexNumber": 505,
     "abilities": ["Illuminate", "Keen Eye", "Analytic"],
@@ -18364,7 +18364,7 @@
     "id": 766,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "weavile",
+    "imgUrl": "/pokemon/images/weavile.png",
     "japaneseName": "Manyulaマニューラ",
     "pokedexNumber": 461,
     "abilities": ["Pressure", "Pickpocket"],
@@ -18388,7 +18388,7 @@
     "id": 767,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "weedle",
+    "imgUrl": "/pokemon/images/weedle.png",
     "japaneseName": "Beedleビードル",
     "pokedexNumber": 13,
     "abilities": ["Shield Dust", "Run Away"],
@@ -18412,7 +18412,7 @@
     "id": 768,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "weepinbell",
+    "imgUrl": "/pokemon/images/weepinbell.png",
     "japaneseName": "Utsudonウツドン",
     "pokedexNumber": 70,
     "abilities": ["Chlorophyll", "Gluttony"],
@@ -18436,7 +18436,7 @@
     "id": 769,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "weezing",
+    "imgUrl": "/pokemon/images/weezing.png",
     "japaneseName": "Matadogasマタドガス",
     "pokedexNumber": 110,
     "abilities": ["Levitate"],
@@ -18460,7 +18460,7 @@
     "id": 770,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "whimsicott",
+    "imgUrl": "/pokemon/images/whimsicott.png",
     "japaneseName": "Elfuunエルフーン",
     "pokedexNumber": 547,
     "abilities": ["Prankster", "Infiltrator", "Chlorophyll"],
@@ -18484,7 +18484,7 @@
     "id": 771,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "whirlipede",
+    "imgUrl": "/pokemon/images/whirlipede.png",
     "japaneseName": "Wheegaホイーガ",
     "pokedexNumber": 544,
     "abilities": ["Poison Point", "Swarm", "Speed Boost"],
@@ -18508,7 +18508,7 @@
     "id": 772,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "whiscash",
+    "imgUrl": "/pokemon/images/whiscash.png",
     "japaneseName": "Namazunナマズン",
     "pokedexNumber": 340,
     "abilities": ["Oblivious", "Anticipation", "Hydration"],
@@ -18532,7 +18532,7 @@
     "id": 773,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "whismur",
+    "imgUrl": "/pokemon/images/whismur.png",
     "japaneseName": "Gonyonyoゴニョニョ",
     "pokedexNumber": 293,
     "abilities": ["Soundproof", "Rattled"],
@@ -18556,7 +18556,7 @@
     "id": 774,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "wigglytuff",
+    "imgUrl": "/pokemon/images/wigglytuff.png",
     "japaneseName": "Pukurinプクリン",
     "pokedexNumber": 40,
     "abilities": ["Cute Charm", "Competitive", "Frisk"],
@@ -18580,7 +18580,7 @@
     "id": 775,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "wimpod",
+    "imgUrl": "/pokemon/images/wimpod.png",
     "japaneseName": "Kosokumushiコソクムシ",
     "pokedexNumber": 767,
     "abilities": ["Wimp Out"],
@@ -18604,7 +18604,7 @@
     "id": 776,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "wingull",
+    "imgUrl": "/pokemon/images/wingull.png",
     "japaneseName": "Camomeキャモメ",
     "pokedexNumber": 278,
     "abilities": ["Keen Eye", "Hydration", "Rain Dish"],
@@ -18628,7 +18628,7 @@
     "id": 777,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "wishiwashi-solo",
+    "imgUrl": "/pokemon/images/wishiwashi-solo.png",
     "japaneseName": "Yowashi (tandoku No Sugata)ヨワシ",
     "pokedexNumber": 746,
     "abilities": ["Schooling"],
@@ -18652,7 +18652,7 @@
     "id": 778,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "wobbuffet",
+    "imgUrl": "/pokemon/images/wobbuffet.png",
     "japaneseName": "Sonansソーナンス",
     "pokedexNumber": 202,
     "abilities": ["Shadow Tag", "Telepathy"],
@@ -18676,7 +18676,7 @@
     "id": 779,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "woobat",
+    "imgUrl": "/pokemon/images/woobat.png",
     "japaneseName": "Koromoriコロモリ",
     "pokedexNumber": 527,
     "abilities": ["Unaware", "Klutz", "Simple"],
@@ -18700,7 +18700,7 @@
     "id": 780,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "wooper",
+    "imgUrl": "/pokemon/images/wooper.png",
     "japaneseName": "Upahウパー",
     "pokedexNumber": 194,
     "abilities": ["Damp", "Water Absorb", "Unaware"],
@@ -18724,7 +18724,7 @@
     "id": 781,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "wormadam-plant",
+    "imgUrl": "/pokemon/images/wormadam-plant.png",
     "japaneseName": "Minomadam (kusaki No Mino)ミノマダム",
     "pokedexNumber": 413,
     "abilities": ["Anticipation", "Overcoat"],
@@ -18748,7 +18748,7 @@
     "id": 782,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "wurmple",
+    "imgUrl": "/pokemon/images/wurmple.png",
     "japaneseName": "Kemussoケムッソ",
     "pokedexNumber": 265,
     "abilities": ["Shield Dust", "Run Away"],
@@ -18772,7 +18772,7 @@
     "id": 783,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "wynaut",
+    "imgUrl": "/pokemon/images/wynaut.png",
     "japaneseName": "Sohnanoソーナノ",
     "pokedexNumber": 360,
     "abilities": ["Shadow Tag", "Telepathy"],
@@ -18796,7 +18796,7 @@
     "id": 784,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "xatu",
+    "imgUrl": "/pokemon/images/xatu.png",
     "japaneseName": "Natioネイティオ",
     "pokedexNumber": 178,
     "abilities": ["Synchronize", "Early Bird", "Magic Bounce"],
@@ -18820,7 +18820,7 @@
     "id": 785,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "xerneas",
+    "imgUrl": "/pokemon/images/xerneas.png",
     "japaneseName": "Xerneasゼルネアス",
     "pokedexNumber": 716,
     "abilities": ["Fairy Aura"],
@@ -18844,7 +18844,7 @@
     "id": 786,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "xurkitree",
+    "imgUrl": "/pokemon/images/xurkitree.png",
     "japaneseName": "Denjyumokuデンジュモク",
     "pokedexNumber": 796,
     "abilities": ["Beast Boost"],
@@ -18868,7 +18868,7 @@
     "id": 787,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "yamask",
+    "imgUrl": "/pokemon/images/yamask.png",
     "japaneseName": "Desumasuデスマス",
     "pokedexNumber": 562,
     "abilities": ["Mummy"],
@@ -18892,7 +18892,7 @@
     "id": 788,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "yanma",
+    "imgUrl": "/pokemon/images/yanma.png",
     "japaneseName": "Yanyanmaヤンヤンマ",
     "pokedexNumber": 193,
     "abilities": ["Speed Boost", "Compoundeyes", "Frisk"],
@@ -18916,7 +18916,7 @@
     "id": 789,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "yanmega",
+    "imgUrl": "/pokemon/images/yanmega.png",
     "japaneseName": "Megayanmaメガヤンマ",
     "pokedexNumber": 469,
     "abilities": ["Speed Boost", "Tinted Lens", "Frisk"],
@@ -18940,7 +18940,7 @@
     "id": 790,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "yungoos",
+    "imgUrl": "/pokemon/images/yungoos.png",
     "japaneseName": "Youngooseヤングース",
     "pokedexNumber": 734,
     "abilities": ["Stakeout", "Strong Jaw", "Adaptability"],
@@ -18964,7 +18964,7 @@
     "id": 791,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "yveltal",
+    "imgUrl": "/pokemon/images/yveltal.png",
     "japaneseName": "Yveltalイベルタル",
     "pokedexNumber": 717,
     "abilities": ["Dark Aura"],
@@ -18988,7 +18988,7 @@
     "id": 792,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "zangoose",
+    "imgUrl": "/pokemon/images/zangoose.png",
     "japaneseName": "Zangooseザングース",
     "pokedexNumber": 335,
     "abilities": ["Immunity", "Toxic Boost"],
@@ -19012,7 +19012,7 @@
     "id": 793,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "zapdos",
+    "imgUrl": "/pokemon/images/zapdos.png",
     "japaneseName": "Thunderサンダー",
     "pokedexNumber": 145,
     "abilities": ["Pressure", "Static"],
@@ -19036,7 +19036,7 @@
     "id": 794,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "zebstrika",
+    "imgUrl": "/pokemon/images/zebstrika.png",
     "japaneseName": "Zebraikaゼブライカ",
     "pokedexNumber": 523,
     "abilities": ["Lightningrod", "Motor Drive", "Sap Sipper"],
@@ -19060,7 +19060,7 @@
     "id": 795,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "zekrom",
+    "imgUrl": "/pokemon/images/zekrom.png",
     "japaneseName": "Zekromゼクロム",
     "pokedexNumber": 644,
     "abilities": ["Teravolt"],
@@ -19084,7 +19084,7 @@
     "id": 796,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "zigzagoon",
+    "imgUrl": "/pokemon/images/zigzagoon.png",
     "japaneseName": "Jiguzagumaジグザグマ",
     "pokedexNumber": 263,
     "abilities": ["Pickup", "Gluttony", "Quick Feet"],
@@ -19108,7 +19108,7 @@
     "id": 797,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "zoroark",
+    "imgUrl": "/pokemon/images/zoroark.png",
     "japaneseName": "Zoroarkゾロアーク",
     "pokedexNumber": 571,
     "abilities": ["Illusion"],
@@ -19132,7 +19132,7 @@
     "id": 798,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "zorua",
+    "imgUrl": "/pokemon/images/zorua.png",
     "japaneseName": "Zoruaゾロア",
     "pokedexNumber": 570,
     "abilities": ["Illusion"],
@@ -19156,7 +19156,7 @@
     "id": 799,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "zubat",
+    "imgUrl": "/pokemon/images/zubat.png",
     "japaneseName": "Zubatズバット",
     "pokedexNumber": 41,
     "abilities": ["Inner Focus", "Infiltrator"],
@@ -19180,7 +19180,7 @@
     "id": 800,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "zweilous",
+    "imgUrl": "/pokemon/images/zweilous.png",
     "japaneseName": "Diheadジヘッド",
     "pokedexNumber": 634,
     "abilities": ["Hustle"],
@@ -19204,7 +19204,7 @@
     "id": 801,
     "created": "24/04/2024",
     "lastUpDate": "24/04/2024",
-    "imgUrl": "zygarde-50",
+    "imgUrl": "/pokemon/images/zygarde-50.png",
     "japaneseName": "Zygarde (10% Forme)ジガルデ",
     "pokedexNumber": 718,
     "abilities": ["Aura Break", "Power Construct"],
diff --git a/src/main/webapp/WEB-INF/web.xml b/src/main/webapp/WEB-INF/web.xml
new file mode 100644
index 0000000000000000000000000000000000000000..9a3a4db24219f75d6ac90305fd8bf0ce3f924bd0
--- /dev/null
+++ b/src/main/webapp/WEB-INF/web.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
+		 http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
+         version="3.1">
+
+    <welcome-file-list>
+        <welcome-file>index.html</welcome-file>
+    </welcome-file-list>
+
+    <servlet>
+        <description>Pokemon Servlet</description>
+        <display-name>PokemonTrainerDatabase</display-name>
+        <servlet-name>PokemonTrainerDatabase</servlet-name>
+        <servlet-class>nl.utwente.mod4.pokemon.PokemonTrainerDatabase</servlet-class>
+    </servlet>
+
+    <servlet-mapping>
+        <servlet-name>PokemonTrainerDatabase</servlet-name>
+        <url-pattern>/pokemon</url-pattern>
+    </servlet-mapping>
+</web-app>
\ No newline at end of file
diff --git a/src/main/webapp/images/missingno.png b/src/main/webapp/images/missingno.png
new file mode 100644
index 0000000000000000000000000000000000000000..708e199807d2f5a9edd448058cb09a387940d3f4
Binary files /dev/null and b/src/main/webapp/images/missingno.png differ
diff --git a/src/main/webapp/index.html b/src/main/webapp/index.html
index 76bb1d7ce581151061125edeb04115db779ce0ab..21f91561d5365c5fd9102499a444728c103f8f43 100644
--- a/src/main/webapp/index.html
+++ b/src/main/webapp/index.html
@@ -6,6 +6,6 @@
 </head>
 <body>
 <p>Hello there</p>
-<img src="images/abra.png"/>
+<img src="/images/abra.png"/>
 </body>
 </html>
\ No newline at end of file