diff --git a/projects/challange 8/pokedex/README.md b/projects/challange 8/pokedex/README.md new file mode 100644 index 0000000..e69de29 diff --git a/projects/challange 8/pokedex/download-images.js b/projects/challange 8/pokedex/download-images.js new file mode 100644 index 0000000..ab787d4 --- /dev/null +++ b/projects/challange 8/pokedex/download-images.js @@ -0,0 +1,43 @@ +const fs = require('fs'); +const path = require('path'); +const https = require('https'); +const mysql = require('mysql'); +const { exec } = require('child_process'); + +const downloadDir = path.join(require('os').homedir(), 'Downloads', 'pokemon-images'); + +// Create the download directory if it doesn't exist +if (!fs.existsSync(downloadDir)) { + fs.mkdirSync(downloadDir, { recursive: true }); +} + +// Database connection +const connection = mysql.createConnection({ + host: 'localhost', + user: 'root', + password: '', + database: 'pokedex', +}); + +connection.connect(); + +// Fetch Pokémon data +connection.query('SELECT id, image_url FROM pokemon', (error, results) => { + if (error) throw error; + + results.forEach((pokemon) => { + const file = fs.createWriteStream(path.join(downloadDir, `${pokemon.id}.png`)); + https.get(pokemon.image_url, (response) => { + response.pipe(file); + file.on('finish', () => { + file.close(); + console.log(`Downloaded: ${pokemon.image_url}`); + }); + }).on('error', (err) => { + fs.unlink(path.join(downloadDir, `${pokemon.id}.png`)); + console.error(`Error downloading ${pokemon.image_url}: ${err.message}`); + }); + }); + + connection.end(); +}); diff --git a/projects/challange 8/pokedex/fetch_and_insert.js b/projects/challange 8/pokedex/fetch_and_insert.js new file mode 100644 index 0000000..a2a958d --- /dev/null +++ b/projects/challange 8/pokedex/fetch_and_insert.js @@ -0,0 +1,158 @@ +const fetch = (...args) => import('node-fetch').then(({default: fetch}) => fetch(...args)); +const mysql = require('mysql'); + +const connection = mysql.createConnection({ + host: 'localhost', + user: 'root', + password: '', // Add your MySQL password here + database: 'pokedex' +}); + +connection.connect(); + +const types = [ + 'normal', 'fire', 'water', 'electric', 'grass', 'ice', 'fighting', 'poison', 'ground', 'flying', 'psychic', 'bug', 'rock', 'ghost', 'dragon', 'dark', 'steel', 'fairy' +]; + +const insertTypes = () => { + types.forEach(type => { + const typeQuery = `INSERT INTO types (name) VALUES (?) ON DUPLICATE KEY UPDATE name=name`; + connection.query(typeQuery, [type], (error, results, fields) => { + if (error) throw error; + }); + }); +}; + +const insertAbilities = (abilities) => { + abilities.forEach(ability => { + const abilityQuery = `INSERT INTO abilities (name) VALUES (?) ON DUPLICATE KEY UPDATE name=name`; + connection.query(abilityQuery, [ability.ability.name], (error, results, fields) => { + if (error) throw error; + }); + }); +}; + +const insertEggGroups = (eggGroups) => { + eggGroups.forEach(group => { + const eggGroupQuery = `INSERT INTO egg_groups (name) VALUES (?) ON DUPLICATE KEY UPDATE name=name`; + connection.query(eggGroupQuery, [group.name], (error, results, fields) => { + if (error) throw error; + }); + }); +}; + +const fetchPokemonData = async (id) => { + const url = `https://pokeapi.co/api/v2/pokemon/${id}/`; + const url2 = `https://pokeapi.co/api/v2/pokemon-species/${id}/`; + const res = await fetch(url); + const res2 = await fetch(url2); + const data = await res.json(); + const data2 = await res2.json(); + return { data, data2 }; +}; + +const insertPokemonData = (pokemon) => { + const { data, data2 } = pokemon; + const pokemonQuery = ` + INSERT INTO pokemon (id, name, height, weight, base_experience, species_url, image_url) + VALUES (?, ?, ?, ?, ?, ?, ?) + ON DUPLICATE KEY UPDATE + name = VALUES(name), + height = VALUES(height), + weight = VALUES(weight), + base_experience = VALUES(base_experience), + species_url = VALUES(species_url), + image_url = VALUES(image_url) + `; + const pokemonValues = [data.id, data.name, data.height, data.weight, data.base_experience, data2.url, data.sprites.other['official-artwork'].front_default]; + + connection.query(pokemonQuery, pokemonValues, (error, results, fields) => { + if (error) throw error; + console.log(`Inserted/Updated Pokémon: ${data.name}`); + }); + + data.types.forEach(type => { + const typeQuery = ` + INSERT INTO pokemon_types (pokemon_id, type_id) + VALUES (?, (SELECT id FROM types WHERE name = ? LIMIT 1)) + ON DUPLICATE KEY UPDATE type_id = VALUES(type_id) + `; + const typeValues = [data.id, type.type.name]; + connection.query(typeQuery, typeValues, (error, results, fields) => { + if (error) throw error; + }); + }); + + data.abilities.forEach(ability => { + const abilityQuery = ` + INSERT INTO pokemon_abilities (pokemon_id, ability_id) + VALUES (?, (SELECT id FROM abilities WHERE name = ? LIMIT 1)) + ON DUPLICATE KEY UPDATE ability_id = VALUES(ability_id) + `; + const abilityValues = [data.id, ability.ability.name]; + connection.query(abilityQuery, abilityValues, (error, results, fields) => { + if (error) throw error; + }); + }); + + const statsQuery = ` + INSERT INTO stats (pokemon_id, hp, attack, defense, sp_attack, sp_defense, speed) + VALUES (?, ?, ?, ?, ?, ?, ?) + ON DUPLICATE KEY UPDATE + hp = VALUES(hp), + attack = VALUES(attack), + defense = VALUES(defense), + sp_attack = VALUES(sp_attack), + sp_defense = VALUES(sp_defense), + speed = VALUES(speed) + `; + const statsValues = [data.id, data.stats[0].base_stat, data.stats[1].base_stat, data.stats[2].base_stat, data.stats[3].base_stat, data.stats[4].base_stat, data.stats[5].base_stat]; + connection.query(statsQuery, statsValues, (error, results, fields) => { + if (error) throw error; + }); + + const speciesQuery = ` + INSERT INTO species (pokemon_id, genus, flavor_text, growth_rate, base_happiness, capture_rate, gender_rate) + VALUES (?, ?, ?, ?, ?, ?, ?) + ON DUPLICATE KEY UPDATE + genus = VALUES(genus), + flavor_text = VALUES(flavor_text), + growth_rate = VALUES(growth_rate), + base_happiness = VALUES(base_happiness), + capture_rate = VALUES(capture_rate), + gender_rate = VALUES(gender_rate) + `; + const speciesValues = [data.id, data2.genera[0].genus, data2.flavor_text_entries[0].flavor_text.replace("\f", " "), data2.growth_rate.name, data2.base_happiness, data2.capture_rate, data2.gender_rate]; + connection.query(speciesQuery, speciesValues, (error, results, fields) => { + if (error) throw error; + }); + + data2.egg_groups.forEach(group => { + const eggGroupQuery = ` + INSERT INTO pokemon_egg_groups (pokemon_id, egg_group_id) + VALUES (?, (SELECT id FROM egg_groups WHERE name = ? LIMIT 1)) + ON DUPLICATE KEY UPDATE egg_group_id = VALUES(egg_group_id) + `; + const eggGroupValues = [data.id, group.name]; + connection.query(eggGroupQuery, eggGroupValues, (error, results, fields) => { + if (error) throw error; + }); + }); +}; + +const fetchAndInsertAllPokemon = async () => { + insertTypes(); + for (let i = 1; i <= 1010; i++) { + try { + const pokemon = await fetchPokemonData(i); + insertAbilities(pokemon.data.abilities); + insertEggGroups(pokemon.data2.egg_groups); + insertPokemonData(pokemon); + } catch (error) { + console.error(`Error fetching/inserting Pokémon with ID ${i}:`, error); + } + } + connection.end(); +}; + +fetchAndInsertAllPokemon(); diff --git a/projects/challange 8/pokedex/pokedex1_2025-03-27_09-54-47.sql b/projects/challange 8/pokedex/pokedex1_2025-03-27_09-54-47.sql new file mode 100644 index 0000000..8fb6545 --- /dev/null +++ b/projects/challange 8/pokedex/pokedex1_2025-03-27_09-54-47.sql @@ -0,0 +1,355 @@ +-- MySQL dump 10.19 Distrib 10.3.39-MariaDB, for Linux (x86_64) +-- +-- Host: localhost Database: pokedex1 +-- ------------------------------------------------------ +-- Server version 10.3.39-MariaDB + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8mb4 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `abilities` +-- + +DROP TABLE IF EXISTS `abilities`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `abilities` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(100) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=2392 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `abilities` +-- + +LOCK TABLES `abilities` WRITE; +/*!40000 ALTER TABLE `abilities` DISABLE KEYS */; +INSERT INTO `abilities` VALUES (1,'overgrow'),(2,'chlorophyll'),(3,'overgrow'),(4,'chlorophyll'),(5,'overgrow'),(6,'chlorophyll'),(7,'overgrow'),(8,'chlorophyll'),(9,'blaze'),(10,'solar-power'),(11,'blaze'),(12,'solar-power'),(13,'blaze'),(14,'solar-power'),(15,'torrent'),(16,'rain-dish'),(17,'torrent'),(18,'rain-dish'),(19,'torrent'),(20,'rain-dish'),(21,'shield-dust'),(22,'run-away'),(23,'shed-skin'),(24,'compound-eyes'),(25,'tinted-lens'),(26,'shield-dust'),(27,'run-away'),(28,'shed-skin'),(29,'swarm'),(30,'sniper'),(31,'keen-eye'),(32,'tangled-feet'),(33,'big-pecks'),(34,'keen-eye'),(35,'tangled-feet'),(36,'big-pecks'),(37,'keen-eye'),(38,'tangled-feet'),(39,'big-pecks'),(40,'run-away'),(41,'guts'),(42,'hustle'),(43,'run-away'),(44,'guts'),(45,'hustle'),(46,'keen-eye'),(47,'sniper'),(48,'keen-eye'),(49,'sniper'),(50,'intimidate'),(51,'shed-skin'),(52,'unnerve'),(53,'intimidate'),(54,'shed-skin'),(55,'unnerve'),(56,'static'),(57,'lightning-rod'),(58,'static'),(59,'lightning-rod'),(60,'sand-veil'),(61,'sand-rush'),(62,'sand-veil'),(63,'sand-rush'),(64,'poison-point'),(65,'rivalry'),(66,'hustle'),(67,'poison-point'),(68,'rivalry'),(69,'hustle'),(70,'poison-point'),(71,'rivalry'),(72,'sheer-force'),(73,'poison-point'),(74,'rivalry'),(75,'hustle'),(76,'poison-point'),(77,'rivalry'),(78,'hustle'),(79,'poison-point'),(80,'rivalry'),(81,'sheer-force'),(82,'cute-charm'),(83,'magic-guard'),(84,'friend-guard'),(85,'cute-charm'),(86,'magic-guard'),(87,'unaware'),(88,'flash-fire'),(89,'drought'),(90,'flash-fire'),(91,'drought'),(92,'cute-charm'),(93,'competitive'),(94,'friend-guard'),(95,'cute-charm'),(96,'competitive'),(97,'frisk'),(98,'inner-focus'),(99,'infiltrator'),(100,'inner-focus'),(101,'infiltrator'),(102,'chlorophyll'),(103,'run-away'),(104,'chlorophyll'),(105,'stench'),(106,'chlorophyll'),(107,'effect-spore'),(108,'effect-spore'),(109,'dry-skin'),(110,'damp'),(111,'effect-spore'),(112,'dry-skin'),(113,'damp'),(114,'compound-eyes'),(115,'tinted-lens'),(116,'run-away'),(117,'shield-dust'),(118,'tinted-lens'),(119,'wonder-skin'),(120,'sand-veil'),(121,'arena-trap'),(122,'sand-force'),(123,'sand-veil'),(124,'arena-trap'),(125,'sand-force'),(126,'pickup'),(127,'technician'),(128,'unnerve'),(129,'limber'),(130,'technician'),(131,'unnerve'),(132,'damp'),(133,'cloud-nine'),(134,'swift-swim'),(135,'damp'),(136,'cloud-nine'),(137,'swift-swim'),(138,'vital-spirit'),(139,'anger-point'),(140,'defiant'),(141,'vital-spirit'),(142,'anger-point'),(143,'defiant'),(144,'intimidate'),(145,'flash-fire'),(146,'justified'),(147,'intimidate'),(148,'flash-fire'),(149,'justified'),(150,'water-absorb'),(151,'damp'),(152,'swift-swim'),(153,'water-absorb'),(154,'damp'),(155,'swift-swim'),(156,'water-absorb'),(157,'damp'),(158,'swift-swim'),(159,'synchronize'),(160,'inner-focus'),(161,'magic-guard'),(162,'synchronize'),(163,'inner-focus'),(164,'magic-guard'),(165,'synchronize'),(166,'inner-focus'),(167,'magic-guard'),(168,'guts'),(169,'no-guard'),(170,'steadfast'),(171,'guts'),(172,'no-guard'),(173,'steadfast'),(174,'guts'),(175,'no-guard'),(176,'steadfast'),(177,'chlorophyll'),(178,'gluttony'),(179,'chlorophyll'),(180,'gluttony'),(181,'chlorophyll'),(182,'gluttony'),(183,'clear-body'),(184,'liquid-ooze'),(185,'rain-dish'),(186,'clear-body'),(187,'liquid-ooze'),(188,'rain-dish'),(189,'rock-head'),(190,'sturdy'),(191,'sand-veil'),(192,'rock-head'),(193,'sturdy'),(194,'sand-veil'),(195,'rock-head'),(196,'sturdy'),(197,'sand-veil'),(198,'run-away'),(199,'flash-fire'),(200,'flame-body'),(201,'run-away'),(202,'flash-fire'),(203,'flame-body'),(204,'oblivious'),(205,'own-tempo'),(206,'regenerator'),(207,'oblivious'),(208,'own-tempo'),(209,'regenerator'),(210,'magnet-pull'),(211,'sturdy'),(212,'analytic'),(213,'magnet-pull'),(214,'sturdy'),(215,'analytic'),(216,'keen-eye'),(217,'inner-focus'),(218,'defiant'),(219,'run-away'),(220,'early-bird'),(221,'tangled-feet'),(222,'run-away'),(223,'early-bird'),(224,'tangled-feet'),(225,'thick-fat'),(226,'hydration'),(227,'ice-body'),(228,'thick-fat'),(229,'hydration'),(230,'ice-body'),(231,'stench'),(232,'sticky-hold'),(233,'poison-touch'),(234,'stench'),(235,'sticky-hold'),(236,'poison-touch'),(237,'shell-armor'),(238,'skill-link'),(239,'overcoat'),(240,'shell-armor'),(241,'skill-link'),(242,'overcoat'),(243,'levitate'),(244,'levitate'),(245,'cursed-body'),(246,'rock-head'),(247,'sturdy'),(248,'weak-armor'),(249,'insomnia'),(250,'forewarn'),(251,'inner-focus'),(252,'insomnia'),(253,'forewarn'),(254,'inner-focus'),(255,'hyper-cutter'),(256,'shell-armor'),(257,'sheer-force'),(258,'hyper-cutter'),(259,'shell-armor'),(260,'sheer-force'),(261,'soundproof'),(262,'static'),(263,'aftermath'),(264,'soundproof'),(265,'static'),(266,'aftermath'),(267,'chlorophyll'),(268,'harvest'),(269,'chlorophyll'),(270,'harvest'),(271,'rock-head'),(272,'lightning-rod'),(273,'battle-armor'),(274,'rock-head'),(275,'lightning-rod'),(276,'battle-armor'),(277,'limber'),(278,'reckless'),(279,'unburden'),(280,'keen-eye'),(281,'iron-fist'),(282,'inner-focus'),(283,'own-tempo'),(284,'oblivious'),(285,'cloud-nine'),(286,'levitate'),(287,'neutralizing-gas'),(288,'stench'),(289,'levitate'),(290,'neutralizing-gas'),(291,'stench'),(292,'lightning-rod'),(293,'rock-head'),(294,'reckless'),(295,'lightning-rod'),(296,'rock-head'),(297,'reckless'),(298,'natural-cure'),(299,'serene-grace'),(300,'healer'),(301,'chlorophyll'),(302,'leaf-guard'),(303,'regenerator'),(304,'early-bird'),(305,'scrappy'),(306,'inner-focus'),(307,'swift-swim'),(308,'sniper'),(309,'damp'),(310,'poison-point'),(311,'sniper'),(312,'damp'),(313,'swift-swim'),(314,'water-veil'),(315,'lightning-rod'),(316,'swift-swim'),(317,'water-veil'),(318,'lightning-rod'),(319,'illuminate'),(320,'natural-cure'),(321,'analytic'),(322,'illuminate'),(323,'natural-cure'),(324,'analytic'),(325,'soundproof'),(326,'filter'),(327,'technician'),(328,'swarm'),(329,'technician'),(330,'steadfast'),(331,'oblivious'),(332,'forewarn'),(333,'dry-skin'),(334,'static'),(335,'vital-spirit'),(336,'flame-body'),(337,'vital-spirit'),(338,'hyper-cutter'),(339,'mold-breaker'),(340,'moxie'),(341,'intimidate'),(342,'anger-point'),(343,'sheer-force'),(344,'swift-swim'),(345,'rattled'),(346,'intimidate'),(347,'moxie'),(348,'water-absorb'),(349,'shell-armor'),(350,'hydration'),(351,'limber'),(352,'imposter'),(353,'run-away'),(354,'adaptability'),(355,'anticipation'),(356,'water-absorb'),(357,'hydration'),(358,'volt-absorb'),(359,'quick-feet'),(360,'flash-fire'),(361,'guts'),(362,'trace'),(363,'download'),(364,'analytic'),(365,'swift-swim'),(366,'shell-armor'),(367,'weak-armor'),(368,'swift-swim'),(369,'shell-armor'),(370,'weak-armor'),(371,'swift-swim'),(372,'battle-armor'),(373,'weak-armor'),(374,'swift-swim'),(375,'battle-armor'),(376,'weak-armor'),(377,'rock-head'),(378,'pressure'),(379,'unnerve'),(380,'immunity'),(381,'thick-fat'),(382,'gluttony'),(383,'pressure'),(384,'snow-cloak'),(385,'pressure'),(386,'static'),(387,'pressure'),(388,'flame-body'),(389,'shed-skin'),(390,'marvel-scale'),(391,'shed-skin'),(392,'marvel-scale'),(393,'inner-focus'),(394,'multiscale'),(395,'pressure'),(396,'unnerve'),(397,'synchronize'),(398,'overgrow'),(399,'leaf-guard'),(400,'overgrow'),(401,'leaf-guard'),(402,'overgrow'),(403,'leaf-guard'),(404,'blaze'),(405,'flash-fire'),(406,'blaze'),(407,'flash-fire'),(408,'blaze'),(409,'flash-fire'),(410,'torrent'),(411,'sheer-force'),(412,'torrent'),(413,'sheer-force'),(414,'torrent'),(415,'sheer-force'),(416,'run-away'),(417,'keen-eye'),(418,'frisk'),(419,'run-away'),(420,'keen-eye'),(421,'frisk'),(422,'insomnia'),(423,'keen-eye'),(424,'tinted-lens'),(425,'insomnia'),(426,'keen-eye'),(427,'tinted-lens'),(428,'swarm'),(429,'early-bird'),(430,'rattled'),(431,'swarm'),(432,'early-bird'),(433,'iron-fist'),(434,'swarm'),(435,'insomnia'),(436,'sniper'),(437,'swarm'),(438,'insomnia'),(439,'sniper'),(440,'inner-focus'),(441,'infiltrator'),(442,'volt-absorb'),(443,'illuminate'),(444,'water-absorb'),(445,'volt-absorb'),(446,'illuminate'),(447,'water-absorb'),(448,'static'),(449,'lightning-rod'),(450,'cute-charm'),(451,'magic-guard'),(452,'friend-guard'),(453,'cute-charm'),(454,'competitive'),(455,'friend-guard'),(456,'hustle'),(457,'serene-grace'),(458,'super-luck'),(459,'hustle'),(460,'serene-grace'),(461,'super-luck'),(462,'synchronize'),(463,'early-bird'),(464,'magic-bounce'),(465,'synchronize'),(466,'early-bird'),(467,'magic-bounce'),(468,'static'),(469,'plus'),(470,'static'),(471,'plus'),(472,'static'),(473,'plus'),(474,'chlorophyll'),(475,'healer'),(476,'thick-fat'),(477,'huge-power'),(478,'sap-sipper'),(479,'thick-fat'),(480,'huge-power'),(481,'sap-sipper'),(482,'sturdy'),(483,'rock-head'),(484,'rattled'),(485,'water-absorb'),(486,'damp'),(487,'drizzle'),(488,'chlorophyll'),(489,'leaf-guard'),(490,'infiltrator'),(491,'chlorophyll'),(492,'leaf-guard'),(493,'infiltrator'),(494,'chlorophyll'),(495,'leaf-guard'),(496,'infiltrator'),(497,'run-away'),(498,'pickup'),(499,'skill-link'),(500,'chlorophyll'),(501,'solar-power'),(502,'early-bird'),(503,'chlorophyll'),(504,'solar-power'),(505,'early-bird'),(506,'speed-boost'),(507,'compound-eyes'),(508,'frisk'),(509,'damp'),(510,'water-absorb'),(511,'unaware'),(512,'damp'),(513,'water-absorb'),(514,'unaware'),(515,'synchronize'),(516,'magic-bounce'),(517,'synchronize'),(518,'inner-focus'),(519,'insomnia'),(520,'super-luck'),(521,'prankster'),(522,'oblivious'),(523,'own-tempo'),(524,'regenerator'),(525,'levitate'),(526,'levitate'),(527,'shadow-tag'),(528,'telepathy'),(529,'inner-focus'),(530,'early-bird'),(531,'sap-sipper'),(532,'sturdy'),(533,'overcoat'),(534,'sturdy'),(535,'overcoat'),(536,'serene-grace'),(537,'run-away'),(538,'rattled'),(539,'hyper-cutter'),(540,'sand-veil'),(541,'immunity'),(542,'rock-head'),(543,'sturdy'),(544,'sheer-force'),(545,'intimidate'),(546,'run-away'),(547,'rattled'),(548,'intimidate'),(549,'quick-feet'),(550,'rattled'),(551,'poison-point'),(552,'swift-swim'),(553,'intimidate'),(554,'swarm'),(555,'technician'),(556,'light-metal'),(557,'sturdy'),(558,'gluttony'),(559,'contrary'),(560,'swarm'),(561,'guts'),(562,'moxie'),(563,'inner-focus'),(564,'keen-eye'),(565,'pickpocket'),(566,'pickup'),(567,'quick-feet'),(568,'honey-gather'),(569,'guts'),(570,'quick-feet'),(571,'unnerve'),(572,'magma-armor'),(573,'flame-body'),(574,'weak-armor'),(575,'magma-armor'),(576,'flame-body'),(577,'weak-armor'),(578,'oblivious'),(579,'snow-cloak'),(580,'thick-fat'),(581,'oblivious'),(582,'snow-cloak'),(583,'thick-fat'),(584,'hustle'),(585,'natural-cure'),(586,'regenerator'),(587,'hustle'),(588,'sniper'),(589,'moody'),(590,'suction-cups'),(591,'sniper'),(592,'moody'),(593,'vital-spirit'),(594,'hustle'),(595,'insomnia'),(596,'swift-swim'),(597,'water-absorb'),(598,'water-veil'),(599,'keen-eye'),(600,'sturdy'),(601,'weak-armor'),(602,'early-bird'),(603,'flash-fire'),(604,'unnerve'),(605,'early-bird'),(606,'flash-fire'),(607,'unnerve'),(608,'swift-swim'),(609,'sniper'),(610,'damp'),(611,'pickup'),(612,'sand-veil'),(613,'sturdy'),(614,'sand-veil'),(615,'trace'),(616,'download'),(617,'analytic'),(618,'intimidate'),(619,'frisk'),(620,'sap-sipper'),(621,'own-tempo'),(622,'technician'),(623,'moody'),(624,'guts'),(625,'steadfast'),(626,'vital-spirit'),(627,'intimidate'),(628,'technician'),(629,'steadfast'),(630,'oblivious'),(631,'forewarn'),(632,'hydration'),(633,'static'),(634,'vital-spirit'),(635,'flame-body'),(636,'vital-spirit'),(637,'thick-fat'),(638,'scrappy'),(639,'sap-sipper'),(640,'natural-cure'),(641,'serene-grace'),(642,'healer'),(643,'pressure'),(644,'inner-focus'),(645,'pressure'),(646,'inner-focus'),(647,'pressure'),(648,'inner-focus'),(649,'guts'),(650,'sand-veil'),(651,'shed-skin'),(652,'sand-stream'),(653,'unnerve'),(654,'pressure'),(655,'multiscale'),(656,'pressure'),(657,'regenerator'),(658,'natural-cure'),(659,'overgrow'),(660,'unburden'),(661,'overgrow'),(662,'unburden'),(663,'overgrow'),(664,'unburden'),(665,'blaze'),(666,'speed-boost'),(667,'blaze'),(668,'speed-boost'),(669,'blaze'),(670,'speed-boost'),(671,'torrent'),(672,'damp'),(673,'torrent'),(674,'damp'),(675,'torrent'),(676,'damp'),(677,'run-away'),(678,'quick-feet'),(679,'rattled'),(680,'intimidate'),(681,'quick-feet'),(682,'moxie'),(683,'pickup'),(684,'gluttony'),(685,'quick-feet'),(686,'pickup'),(687,'gluttony'),(688,'quick-feet'),(689,'shield-dust'),(690,'run-away'),(691,'shed-skin'),(692,'swarm'),(693,'rivalry'),(694,'shed-skin'),(695,'shield-dust'),(696,'compound-eyes'),(697,'swift-swim'),(698,'rain-dish'),(699,'own-tempo'),(700,'swift-swim'),(701,'rain-dish'),(702,'own-tempo'),(703,'swift-swim'),(704,'rain-dish'),(705,'own-tempo'),(706,'chlorophyll'),(707,'early-bird'),(708,'pickpocket'),(709,'chlorophyll'),(710,'early-bird'),(711,'pickpocket'),(712,'chlorophyll'),(713,'wind-rider'),(714,'pickpocket'),(715,'guts'),(716,'scrappy'),(717,'guts'),(718,'scrappy'),(719,'keen-eye'),(720,'hydration'),(721,'rain-dish'),(722,'keen-eye'),(723,'drizzle'),(724,'rain-dish'),(725,'synchronize'),(726,'trace'),(727,'telepathy'),(728,'synchronize'),(729,'trace'),(730,'telepathy'),(731,'synchronize'),(732,'trace'),(733,'telepathy'),(734,'swift-swim'),(735,'rain-dish'),(736,'intimidate'),(737,'unnerve'),(738,'effect-spore'),(739,'poison-heal'),(740,'quick-feet'),(741,'effect-spore'),(742,'poison-heal'),(743,'technician'),(744,'truant'),(745,'vital-spirit'),(746,'truant'),(747,'compound-eyes'),(748,'run-away'),(749,'speed-boost'),(750,'infiltrator'),(751,'wonder-guard'),(752,'soundproof'),(753,'rattled'),(754,'soundproof'),(755,'scrappy'),(756,'soundproof'),(757,'scrappy'),(758,'thick-fat'),(759,'guts'),(760,'sheer-force'),(761,'thick-fat'),(762,'guts'),(763,'sheer-force'),(764,'thick-fat'),(765,'huge-power'),(766,'sap-sipper'),(767,'sturdy'),(768,'magnet-pull'),(769,'sand-force'),(770,'cute-charm'),(771,'normalize'),(772,'wonder-skin'),(773,'cute-charm'),(774,'normalize'),(775,'wonder-skin'),(776,'keen-eye'),(777,'stall'),(778,'prankster'),(779,'hyper-cutter'),(780,'intimidate'),(781,'sheer-force'),(782,'sturdy'),(783,'rock-head'),(784,'heavy-metal'),(785,'sturdy'),(786,'rock-head'),(787,'heavy-metal'),(788,'sturdy'),(789,'rock-head'),(790,'heavy-metal'),(791,'pure-power'),(792,'telepathy'),(793,'pure-power'),(794,'telepathy'),(795,'static'),(796,'lightning-rod'),(797,'minus'),(798,'static'),(799,'lightning-rod'),(800,'minus'),(801,'plus'),(802,'lightning-rod'),(803,'minus'),(804,'volt-absorb'),(805,'illuminate'),(806,'swarm'),(807,'prankster'),(808,'oblivious'),(809,'tinted-lens'),(810,'prankster'),(811,'natural-cure'),(812,'poison-point'),(813,'leaf-guard'),(814,'liquid-ooze'),(815,'sticky-hold'),(816,'gluttony'),(817,'liquid-ooze'),(818,'sticky-hold'),(819,'gluttony'),(820,'rough-skin'),(821,'speed-boost'),(822,'rough-skin'),(823,'speed-boost'),(824,'water-veil'),(825,'oblivious'),(826,'pressure'),(827,'water-veil'),(828,'oblivious'),(829,'pressure'),(830,'oblivious'),(831,'simple'),(832,'own-tempo'),(833,'magma-armor'),(834,'solid-rock'),(835,'anger-point'),(836,'white-smoke'),(837,'drought'),(838,'shell-armor'),(839,'thick-fat'),(840,'own-tempo'),(841,'gluttony'),(842,'thick-fat'),(843,'own-tempo'),(844,'gluttony'),(845,'own-tempo'),(846,'tangled-feet'),(847,'contrary'),(848,'hyper-cutter'),(849,'arena-trap'),(850,'sheer-force'),(851,'levitate'),(852,'levitate'),(853,'sand-veil'),(854,'water-absorb'),(855,'sand-veil'),(856,'water-absorb'),(857,'natural-cure'),(858,'cloud-nine'),(859,'natural-cure'),(860,'cloud-nine'),(861,'immunity'),(862,'toxic-boost'),(863,'shed-skin'),(864,'infiltrator'),(865,'levitate'),(866,'levitate'),(867,'oblivious'),(868,'anticipation'),(869,'hydration'),(870,'oblivious'),(871,'anticipation'),(872,'hydration'),(873,'hyper-cutter'),(874,'shell-armor'),(875,'adaptability'),(876,'hyper-cutter'),(877,'shell-armor'),(878,'adaptability'),(879,'levitate'),(880,'levitate'),(881,'suction-cups'),(882,'storm-drain'),(883,'suction-cups'),(884,'storm-drain'),(885,'battle-armor'),(886,'swift-swim'),(887,'battle-armor'),(888,'swift-swim'),(889,'swift-swim'),(890,'oblivious'),(891,'adaptability'),(892,'marvel-scale'),(893,'competitive'),(894,'cute-charm'),(895,'forecast'),(896,'color-change'),(897,'protean'),(898,'insomnia'),(899,'frisk'),(900,'cursed-body'),(901,'insomnia'),(902,'frisk'),(903,'cursed-body'),(904,'levitate'),(905,'frisk'),(906,'pressure'),(907,'frisk'),(908,'chlorophyll'),(909,'solar-power'),(910,'harvest'),(911,'levitate'),(912,'pressure'),(913,'super-luck'),(914,'justified'),(915,'shadow-tag'),(916,'telepathy'),(917,'inner-focus'),(918,'ice-body'),(919,'moody'),(920,'inner-focus'),(921,'ice-body'),(922,'moody'),(923,'thick-fat'),(924,'ice-body'),(925,'oblivious'),(926,'thick-fat'),(927,'ice-body'),(928,'oblivious'),(929,'thick-fat'),(930,'ice-body'),(931,'oblivious'),(932,'shell-armor'),(933,'rattled'),(934,'swift-swim'),(935,'water-veil'),(936,'swift-swim'),(937,'hydration'),(938,'swift-swim'),(939,'rock-head'),(940,'sturdy'),(941,'swift-swim'),(942,'hydration'),(943,'rock-head'),(944,'sheer-force'),(945,'rock-head'),(946,'overcoat'),(947,'intimidate'),(948,'moxie'),(949,'clear-body'),(950,'light-metal'),(951,'clear-body'),(952,'light-metal'),(953,'clear-body'),(954,'light-metal'),(955,'clear-body'),(956,'sturdy'),(957,'clear-body'),(958,'ice-body'),(959,'clear-body'),(960,'light-metal'),(961,'levitate'),(962,'levitate'),(963,'drizzle'),(964,'drought'),(965,'air-lock'),(966,'serene-grace'),(967,'pressure'),(968,'overgrow'),(969,'shell-armor'),(970,'overgrow'),(971,'shell-armor'),(972,'overgrow'),(973,'shell-armor'),(974,'blaze'),(975,'iron-fist'),(976,'blaze'),(977,'iron-fist'),(978,'blaze'),(979,'iron-fist'),(980,'torrent'),(981,'competitive'),(982,'torrent'),(983,'competitive'),(984,'torrent'),(985,'competitive'),(986,'keen-eye'),(987,'reckless'),(988,'intimidate'),(989,'reckless'),(990,'intimidate'),(991,'reckless'),(992,'simple'),(993,'unaware'),(994,'moody'),(995,'simple'),(996,'unaware'),(997,'moody'),(998,'shed-skin'),(999,'run-away'),(1000,'swarm'),(1001,'technician'),(1002,'rivalry'),(1003,'intimidate'),(1004,'guts'),(1005,'rivalry'),(1006,'intimidate'),(1007,'guts'),(1008,'rivalry'),(1009,'intimidate'),(1010,'guts'),(1011,'natural-cure'),(1012,'poison-point'),(1013,'leaf-guard'),(1014,'natural-cure'),(1015,'poison-point'),(1016,'technician'),(1017,'mold-breaker'),(1018,'sheer-force'),(1019,'mold-breaker'),(1020,'sheer-force'),(1021,'sturdy'),(1022,'soundproof'),(1023,'sturdy'),(1024,'soundproof'),(1025,'shed-skin'),(1026,'overcoat'),(1027,'anticipation'),(1028,'overcoat'),(1029,'swarm'),(1030,'tinted-lens'),(1031,'honey-gather'),(1032,'hustle'),(1033,'pressure'),(1034,'unnerve'),(1035,'run-away'),(1036,'pickup'),(1037,'volt-absorb'),(1038,'swift-swim'),(1039,'water-veil'),(1040,'swift-swim'),(1041,'water-veil'),(1042,'chlorophyll'),(1043,'flower-gift'),(1044,'sticky-hold'),(1045,'storm-drain'),(1046,'sand-force'),(1047,'sticky-hold'),(1048,'storm-drain'),(1049,'sand-force'),(1050,'technician'),(1051,'pickup'),(1052,'skill-link'),(1053,'aftermath'),(1054,'unburden'),(1055,'flare-boost'),(1056,'aftermath'),(1057,'unburden'),(1058,'flare-boost'),(1059,'run-away'),(1060,'klutz'),(1061,'limber'),(1062,'cute-charm'),(1063,'klutz'),(1064,'limber'),(1065,'levitate'),(1066,'insomnia'),(1067,'super-luck'),(1068,'moxie'),(1069,'limber'),(1070,'own-tempo'),(1071,'keen-eye'),(1072,'thick-fat'),(1073,'own-tempo'),(1074,'defiant'),(1075,'levitate'),(1076,'stench'),(1077,'aftermath'),(1078,'keen-eye'),(1079,'stench'),(1080,'aftermath'),(1081,'keen-eye'),(1082,'levitate'),(1083,'heatproof'),(1084,'heavy-metal'),(1085,'levitate'),(1086,'heatproof'),(1087,'heavy-metal'),(1088,'sturdy'),(1089,'rock-head'),(1090,'rattled'),(1091,'soundproof'),(1092,'filter'),(1093,'technician'),(1094,'natural-cure'),(1095,'serene-grace'),(1096,'friend-guard'),(1097,'keen-eye'),(1098,'tangled-feet'),(1099,'big-pecks'),(1100,'pressure'),(1101,'infiltrator'),(1102,'sand-veil'),(1103,'rough-skin'),(1104,'sand-veil'),(1105,'rough-skin'),(1106,'sand-veil'),(1107,'rough-skin'),(1108,'pickup'),(1109,'thick-fat'),(1110,'gluttony'),(1111,'steadfast'),(1112,'inner-focus'),(1113,'prankster'),(1114,'steadfast'),(1115,'inner-focus'),(1116,'justified'),(1117,'sand-stream'),(1118,'sand-force'),(1119,'sand-stream'),(1120,'sand-force'),(1121,'battle-armor'),(1122,'sniper'),(1123,'keen-eye'),(1124,'battle-armor'),(1125,'sniper'),(1126,'keen-eye'),(1127,'anticipation'),(1128,'dry-skin'),(1129,'poison-touch'),(1130,'anticipation'),(1131,'dry-skin'),(1132,'poison-touch'),(1133,'levitate'),(1134,'swift-swim'),(1135,'storm-drain'),(1136,'water-veil'),(1137,'swift-swim'),(1138,'storm-drain'),(1139,'water-veil'),(1140,'swift-swim'),(1141,'water-absorb'),(1142,'water-veil'),(1143,'snow-warning'),(1144,'soundproof'),(1145,'snow-warning'),(1146,'soundproof'),(1147,'pressure'),(1148,'pickpocket'),(1149,'magnet-pull'),(1150,'sturdy'),(1151,'analytic'),(1152,'own-tempo'),(1153,'oblivious'),(1154,'cloud-nine'),(1155,'lightning-rod'),(1156,'solid-rock'),(1157,'reckless'),(1158,'chlorophyll'),(1159,'leaf-guard'),(1160,'regenerator'),(1161,'motor-drive'),(1162,'vital-spirit'),(1163,'flame-body'),(1164,'vital-spirit'),(1165,'hustle'),(1166,'serene-grace'),(1167,'super-luck'),(1168,'speed-boost'),(1169,'tinted-lens'),(1170,'frisk'),(1171,'leaf-guard'),(1172,'chlorophyll'),(1173,'snow-cloak'),(1174,'ice-body'),(1175,'hyper-cutter'),(1176,'sand-veil'),(1177,'poison-heal'),(1178,'oblivious'),(1179,'snow-cloak'),(1180,'thick-fat'),(1181,'adaptability'),(1182,'download'),(1183,'analytic'),(1184,'steadfast'),(1185,'sharpness'),(1186,'justified'),(1187,'sturdy'),(1188,'magnet-pull'),(1189,'sand-force'),(1190,'pressure'),(1191,'frisk'),(1192,'snow-cloak'),(1193,'cursed-body'),(1194,'levitate'),(1195,'levitate'),(1196,'levitate'),(1197,'levitate'),(1198,'pressure'),(1199,'telepathy'),(1200,'pressure'),(1201,'telepathy'),(1202,'flash-fire'),(1203,'flame-body'),(1204,'slow-start'),(1205,'pressure'),(1206,'telepathy'),(1207,'levitate'),(1208,'hydration'),(1209,'hydration'),(1210,'bad-dreams'),(1211,'natural-cure'),(1212,'multitype'),(1213,'victory-star'),(1214,'overgrow'),(1215,'contrary'),(1216,'overgrow'),(1217,'contrary'),(1218,'overgrow'),(1219,'contrary'),(1220,'blaze'),(1221,'thick-fat'),(1222,'blaze'),(1223,'thick-fat'),(1224,'blaze'),(1225,'reckless'),(1226,'torrent'),(1227,'shell-armor'),(1228,'torrent'),(1229,'shell-armor'),(1230,'torrent'),(1231,'shell-armor'),(1232,'run-away'),(1233,'keen-eye'),(1234,'analytic'),(1235,'illuminate'),(1236,'keen-eye'),(1237,'analytic'),(1238,'vital-spirit'),(1239,'pickup'),(1240,'run-away'),(1241,'intimidate'),(1242,'sand-rush'),(1243,'scrappy'),(1244,'intimidate'),(1245,'sand-rush'),(1246,'scrappy'),(1247,'limber'),(1248,'unburden'),(1249,'prankster'),(1250,'limber'),(1251,'unburden'),(1252,'prankster'),(1253,'gluttony'),(1254,'overgrow'),(1255,'gluttony'),(1256,'overgrow'),(1257,'gluttony'),(1258,'blaze'),(1259,'gluttony'),(1260,'blaze'),(1261,'gluttony'),(1262,'torrent'),(1263,'gluttony'),(1264,'torrent'),(1265,'forewarn'),(1266,'synchronize'),(1267,'telepathy'),(1268,'forewarn'),(1269,'synchronize'),(1270,'telepathy'),(1271,'big-pecks'),(1272,'super-luck'),(1273,'rivalry'),(1274,'big-pecks'),(1275,'super-luck'),(1276,'rivalry'),(1277,'big-pecks'),(1278,'super-luck'),(1279,'rivalry'),(1280,'lightning-rod'),(1281,'motor-drive'),(1282,'sap-sipper'),(1283,'lightning-rod'),(1284,'motor-drive'),(1285,'sap-sipper'),(1286,'sturdy'),(1287,'weak-armor'),(1288,'sand-force'),(1289,'sturdy'),(1290,'weak-armor'),(1291,'sand-force'),(1292,'sturdy'),(1293,'sand-stream'),(1294,'sand-force'),(1295,'unaware'),(1296,'klutz'),(1297,'simple'),(1298,'unaware'),(1299,'klutz'),(1300,'simple'),(1301,'sand-rush'),(1302,'sand-force'),(1303,'mold-breaker'),(1304,'sand-rush'),(1305,'sand-force'),(1306,'mold-breaker'),(1307,'healer'),(1308,'regenerator'),(1309,'klutz'),(1310,'guts'),(1311,'sheer-force'),(1312,'iron-fist'),(1313,'guts'),(1314,'sheer-force'),(1315,'iron-fist'),(1316,'guts'),(1317,'sheer-force'),(1318,'iron-fist'),(1319,'swift-swim'),(1320,'hydration'),(1321,'water-absorb'),(1322,'swift-swim'),(1323,'hydration'),(1324,'water-absorb'),(1325,'swift-swim'),(1326,'poison-touch'),(1327,'water-absorb'),(1328,'guts'),(1329,'inner-focus'),(1330,'mold-breaker'),(1331,'sturdy'),(1332,'inner-focus'),(1333,'mold-breaker'),(1334,'swarm'),(1335,'chlorophyll'),(1336,'overcoat'),(1337,'leaf-guard'),(1338,'chlorophyll'),(1339,'overcoat'),(1340,'swarm'),(1341,'chlorophyll'),(1342,'overcoat'),(1343,'poison-point'),(1344,'swarm'),(1345,'speed-boost'),(1346,'poison-point'),(1347,'swarm'),(1348,'speed-boost'),(1349,'poison-point'),(1350,'swarm'),(1351,'speed-boost'),(1352,'prankster'),(1353,'infiltrator'),(1354,'chlorophyll'),(1355,'prankster'),(1356,'infiltrator'),(1357,'chlorophyll'),(1358,'chlorophyll'),(1359,'own-tempo'),(1360,'leaf-guard'),(1361,'chlorophyll'),(1362,'own-tempo'),(1363,'leaf-guard'),(1364,'reckless'),(1365,'adaptability'),(1366,'mold-breaker'),(1367,'intimidate'),(1368,'moxie'),(1369,'anger-point'),(1370,'intimidate'),(1371,'moxie'),(1372,'anger-point'),(1373,'intimidate'),(1374,'moxie'),(1375,'anger-point'),(1376,'hustle'),(1377,'inner-focus'),(1378,'sheer-force'),(1379,'zen-mode'),(1380,'water-absorb'),(1381,'chlorophyll'),(1382,'storm-drain'),(1383,'sturdy'),(1384,'shell-armor'),(1385,'weak-armor'),(1386,'sturdy'),(1387,'shell-armor'),(1388,'weak-armor'),(1389,'shed-skin'),(1390,'moxie'),(1391,'intimidate'),(1392,'shed-skin'),(1393,'moxie'),(1394,'intimidate'),(1395,'wonder-skin'),(1396,'magic-guard'),(1397,'tinted-lens'),(1398,'mummy'),(1399,'mummy'),(1400,'solid-rock'),(1401,'sturdy'),(1402,'swift-swim'),(1403,'solid-rock'),(1404,'sturdy'),(1405,'swift-swim'),(1406,'defeatist'),(1407,'defeatist'),(1408,'stench'),(1409,'sticky-hold'),(1410,'aftermath'),(1411,'stench'),(1412,'weak-armor'),(1413,'aftermath'),(1414,'illusion'),(1415,'illusion'),(1416,'cute-charm'),(1417,'technician'),(1418,'skill-link'),(1419,'cute-charm'),(1420,'technician'),(1421,'skill-link'),(1422,'frisk'),(1423,'competitive'),(1424,'shadow-tag'),(1425,'frisk'),(1426,'competitive'),(1427,'shadow-tag'),(1428,'frisk'),(1429,'competitive'),(1430,'shadow-tag'),(1431,'overcoat'),(1432,'magic-guard'),(1433,'regenerator'),(1434,'overcoat'),(1435,'magic-guard'),(1436,'regenerator'),(1437,'overcoat'),(1438,'magic-guard'),(1439,'regenerator'),(1440,'keen-eye'),(1441,'big-pecks'),(1442,'hydration'),(1443,'keen-eye'),(1444,'big-pecks'),(1445,'hydration'),(1446,'ice-body'),(1447,'snow-cloak'),(1448,'weak-armor'),(1449,'ice-body'),(1450,'snow-cloak'),(1451,'weak-armor'),(1452,'ice-body'),(1453,'snow-warning'),(1454,'weak-armor'),(1455,'chlorophyll'),(1456,'sap-sipper'),(1457,'serene-grace'),(1458,'chlorophyll'),(1459,'sap-sipper'),(1460,'serene-grace'),(1461,'static'),(1462,'motor-drive'),(1463,'swarm'),(1464,'shed-skin'),(1465,'no-guard'),(1466,'swarm'),(1467,'shell-armor'),(1468,'overcoat'),(1469,'effect-spore'),(1470,'regenerator'),(1471,'effect-spore'),(1472,'regenerator'),(1473,'water-absorb'),(1474,'cursed-body'),(1475,'damp'),(1476,'water-absorb'),(1477,'cursed-body'),(1478,'damp'),(1479,'healer'),(1480,'hydration'),(1481,'regenerator'),(1482,'compound-eyes'),(1483,'unnerve'),(1484,'swarm'),(1485,'compound-eyes'),(1486,'unnerve'),(1487,'swarm'),(1488,'iron-barbs'),(1489,'iron-barbs'),(1490,'anticipation'),(1491,'plus'),(1492,'minus'),(1493,'clear-body'),(1494,'plus'),(1495,'minus'),(1496,'clear-body'),(1497,'plus'),(1498,'minus'),(1499,'clear-body'),(1500,'levitate'),(1501,'levitate'),(1502,'levitate'),(1503,'telepathy'),(1504,'synchronize'),(1505,'analytic'),(1506,'telepathy'),(1507,'synchronize'),(1508,'analytic'),(1509,'flash-fire'),(1510,'flame-body'),(1511,'infiltrator'),(1512,'flash-fire'),(1513,'flame-body'),(1514,'infiltrator'),(1515,'flash-fire'),(1516,'flame-body'),(1517,'infiltrator'),(1518,'rivalry'),(1519,'mold-breaker'),(1520,'unnerve'),(1521,'rivalry'),(1522,'mold-breaker'),(1523,'unnerve'),(1524,'rivalry'),(1525,'mold-breaker'),(1526,'unnerve'),(1527,'snow-cloak'),(1528,'slush-rush'),(1529,'rattled'),(1530,'snow-cloak'),(1531,'slush-rush'),(1532,'swift-swim'),(1533,'levitate'),(1534,'hydration'),(1535,'shell-armor'),(1536,'overcoat'),(1537,'hydration'),(1538,'sticky-hold'),(1539,'unburden'),(1540,'static'),(1541,'limber'),(1542,'sand-veil'),(1543,'inner-focus'),(1544,'regenerator'),(1545,'reckless'),(1546,'inner-focus'),(1547,'regenerator'),(1548,'reckless'),(1549,'rough-skin'),(1550,'sheer-force'),(1551,'mold-breaker'),(1552,'iron-fist'),(1553,'klutz'),(1554,'no-guard'),(1555,'iron-fist'),(1556,'klutz'),(1557,'no-guard'),(1558,'defiant'),(1559,'inner-focus'),(1560,'pressure'),(1561,'defiant'),(1562,'inner-focus'),(1563,'pressure'),(1564,'reckless'),(1565,'sap-sipper'),(1566,'soundproof'),(1567,'keen-eye'),(1568,'sheer-force'),(1569,'hustle'),(1570,'keen-eye'),(1571,'sheer-force'),(1572,'defiant'),(1573,'big-pecks'),(1574,'overcoat'),(1575,'weak-armor'),(1576,'big-pecks'),(1577,'overcoat'),(1578,'weak-armor'),(1579,'gluttony'),(1580,'flash-fire'),(1581,'white-smoke'),(1582,'swarm'),(1583,'hustle'),(1584,'truant'),(1585,'hustle'),(1586,'hustle'),(1587,'levitate'),(1588,'flame-body'),(1589,'swarm'),(1590,'flame-body'),(1591,'swarm'),(1592,'justified'),(1593,'justified'),(1594,'justified'),(1595,'prankster'),(1596,'defiant'),(1597,'prankster'),(1598,'defiant'),(1599,'turboblaze'),(1600,'teravolt'),(1601,'sand-force'),(1602,'sheer-force'),(1603,'pressure'),(1604,'justified'),(1605,'serene-grace'),(1606,'download'),(1607,'overgrow'),(1608,'bulletproof'),(1609,'overgrow'),(1610,'bulletproof'),(1611,'overgrow'),(1612,'bulletproof'),(1613,'blaze'),(1614,'magician'),(1615,'blaze'),(1616,'magician'),(1617,'blaze'),(1618,'magician'),(1619,'torrent'),(1620,'protean'),(1621,'torrent'),(1622,'protean'),(1623,'torrent'),(1624,'protean'),(1625,'pickup'),(1626,'cheek-pouch'),(1627,'huge-power'),(1628,'pickup'),(1629,'cheek-pouch'),(1630,'huge-power'),(1631,'big-pecks'),(1632,'gale-wings'),(1633,'flame-body'),(1634,'gale-wings'),(1635,'flame-body'),(1636,'gale-wings'),(1637,'shield-dust'),(1638,'compound-eyes'),(1639,'friend-guard'),(1640,'shed-skin'),(1641,'friend-guard'),(1642,'shield-dust'),(1643,'compound-eyes'),(1644,'friend-guard'),(1645,'rivalry'),(1646,'unnerve'),(1647,'moxie'),(1648,'rivalry'),(1649,'unnerve'),(1650,'moxie'),(1651,'flower-veil'),(1652,'symbiosis'),(1653,'flower-veil'),(1654,'symbiosis'),(1655,'flower-veil'),(1656,'symbiosis'),(1657,'sap-sipper'),(1658,'grass-pelt'),(1659,'sap-sipper'),(1660,'grass-pelt'),(1661,'iron-fist'),(1662,'mold-breaker'),(1663,'scrappy'),(1664,'iron-fist'),(1665,'mold-breaker'),(1666,'scrappy'),(1667,'fur-coat'),(1668,'keen-eye'),(1669,'infiltrator'),(1670,'own-tempo'),(1671,'keen-eye'),(1672,'infiltrator'),(1673,'prankster'),(1674,'no-guard'),(1675,'no-guard'),(1676,'stance-change'),(1677,'healer'),(1678,'aroma-veil'),(1679,'healer'),(1680,'aroma-veil'),(1681,'sweet-veil'),(1682,'unburden'),(1683,'sweet-veil'),(1684,'unburden'),(1685,'contrary'),(1686,'suction-cups'),(1687,'infiltrator'),(1688,'contrary'),(1689,'suction-cups'),(1690,'infiltrator'),(1691,'tough-claws'),(1692,'sniper'),(1693,'pickpocket'),(1694,'tough-claws'),(1695,'sniper'),(1696,'pickpocket'),(1697,'poison-point'),(1698,'poison-touch'),(1699,'adaptability'),(1700,'poison-point'),(1701,'poison-touch'),(1702,'adaptability'),(1703,'mega-launcher'),(1704,'mega-launcher'),(1705,'dry-skin'),(1706,'sand-veil'),(1707,'solar-power'),(1708,'dry-skin'),(1709,'sand-veil'),(1710,'solar-power'),(1711,'strong-jaw'),(1712,'sturdy'),(1713,'strong-jaw'),(1714,'rock-head'),(1715,'refrigerate'),(1716,'snow-warning'),(1717,'refrigerate'),(1718,'snow-warning'),(1719,'cute-charm'),(1720,'pixilate'),(1721,'limber'),(1722,'unburden'),(1723,'mold-breaker'),(1724,'cheek-pouch'),(1725,'pickup'),(1726,'plus'),(1727,'clear-body'),(1728,'sturdy'),(1729,'sap-sipper'),(1730,'hydration'),(1731,'gooey'),(1732,'sap-sipper'),(1733,'hydration'),(1734,'gooey'),(1735,'sap-sipper'),(1736,'hydration'),(1737,'gooey'),(1738,'prankster'),(1739,'magician'),(1740,'natural-cure'),(1741,'frisk'),(1742,'harvest'),(1743,'natural-cure'),(1744,'frisk'),(1745,'harvest'),(1746,'pickup'),(1747,'frisk'),(1748,'insomnia'),(1749,'pickup'),(1750,'frisk'),(1751,'insomnia'),(1752,'own-tempo'),(1753,'ice-body'),(1754,'sturdy'),(1755,'own-tempo'),(1756,'ice-body'),(1757,'sturdy'),(1758,'frisk'),(1759,'infiltrator'),(1760,'telepathy'),(1761,'frisk'),(1762,'infiltrator'),(1763,'telepathy'),(1764,'fairy-aura'),(1765,'dark-aura'),(1766,'aura-break'),(1767,'clear-body'),(1768,'magician'),(1769,'water-absorb'),(1770,'overgrow'),(1771,'long-reach'),(1772,'overgrow'),(1773,'long-reach'),(1774,'overgrow'),(1775,'long-reach'),(1776,'blaze'),(1777,'intimidate'),(1778,'blaze'),(1779,'intimidate'),(1780,'blaze'),(1781,'intimidate'),(1782,'torrent'),(1783,'liquid-voice'),(1784,'torrent'),(1785,'liquid-voice'),(1786,'torrent'),(1787,'liquid-voice'),(1788,'keen-eye'),(1789,'skill-link'),(1790,'pickup'),(1791,'keen-eye'),(1792,'skill-link'),(1793,'pickup'),(1794,'keen-eye'),(1795,'skill-link'),(1796,'sheer-force'),(1797,'stakeout'),(1798,'strong-jaw'),(1799,'adaptability'),(1800,'stakeout'),(1801,'strong-jaw'),(1802,'adaptability'),(1803,'swarm'),(1804,'battery'),(1805,'levitate'),(1806,'hyper-cutter'),(1807,'iron-fist'),(1808,'anger-point'),(1809,'hyper-cutter'),(1810,'iron-fist'),(1811,'anger-point'),(1812,'dancer'),(1813,'honey-gather'),(1814,'shield-dust'),(1815,'sweet-veil'),(1816,'honey-gather'),(1817,'shield-dust'),(1818,'sweet-veil'),(1819,'keen-eye'),(1820,'vital-spirit'),(1821,'steadfast'),(1822,'keen-eye'),(1823,'sand-rush'),(1824,'steadfast'),(1825,'schooling'),(1826,'merciless'),(1827,'limber'),(1828,'regenerator'),(1829,'merciless'),(1830,'limber'),(1831,'regenerator'),(1832,'own-tempo'),(1833,'stamina'),(1834,'inner-focus'),(1835,'own-tempo'),(1836,'stamina'),(1837,'inner-focus'),(1838,'water-bubble'),(1839,'water-absorb'),(1840,'water-bubble'),(1841,'water-absorb'),(1842,'leaf-guard'),(1843,'contrary'),(1844,'leaf-guard'),(1845,'contrary'),(1846,'illuminate'),(1847,'effect-spore'),(1848,'rain-dish'),(1849,'illuminate'),(1850,'effect-spore'),(1851,'rain-dish'),(1852,'corrosion'),(1853,'oblivious'),(1854,'corrosion'),(1855,'oblivious'),(1856,'fluffy'),(1857,'klutz'),(1858,'cute-charm'),(1859,'fluffy'),(1860,'klutz'),(1861,'unnerve'),(1862,'leaf-guard'),(1863,'oblivious'),(1864,'sweet-veil'),(1865,'leaf-guard'),(1866,'oblivious'),(1867,'sweet-veil'),(1868,'leaf-guard'),(1869,'queenly-majesty'),(1870,'sweet-veil'),(1871,'flower-veil'),(1872,'triage'),(1873,'natural-cure'),(1874,'inner-focus'),(1875,'telepathy'),(1876,'symbiosis'),(1877,'receiver'),(1878,'defiant'),(1879,'wimp-out'),(1880,'emergency-exit'),(1881,'water-compaction'),(1882,'sand-veil'),(1883,'water-compaction'),(1884,'sand-veil'),(1885,'innards-out'),(1886,'unaware'),(1887,'battle-armor'),(1888,'rks-system'),(1889,'shields-down'),(1890,'comatose'),(1891,'shell-armor'),(1892,'iron-barbs'),(1893,'lightning-rod'),(1894,'sturdy'),(1895,'disguise'),(1896,'dazzling'),(1897,'strong-jaw'),(1898,'wonder-skin'),(1899,'berserk'),(1900,'sap-sipper'),(1901,'cloud-nine'),(1902,'steelworker'),(1903,'bulletproof'),(1904,'soundproof'),(1905,'overcoat'),(1906,'bulletproof'),(1907,'soundproof'),(1908,'overcoat'),(1909,'bulletproof'),(1910,'soundproof'),(1911,'overcoat'),(1912,'electric-surge'),(1913,'telepathy'),(1914,'psychic-surge'),(1915,'telepathy'),(1916,'grassy-surge'),(1917,'telepathy'),(1918,'misty-surge'),(1919,'telepathy'),(1920,'unaware'),(1921,'sturdy'),(1922,'full-metal-body'),(1923,'shadow-shield'),(1924,'beast-boost'),(1925,'beast-boost'),(1926,'beast-boost'),(1927,'beast-boost'),(1928,'beast-boost'),(1929,'beast-boost'),(1930,'beast-boost'),(1931,'prism-armor'),(1932,'soul-heart'),(1933,'technician'),(1934,'beast-boost'),(1935,'beast-boost'),(1936,'beast-boost'),(1937,'beast-boost'),(1938,'volt-absorb'),(1939,'magnet-pull'),(1940,'iron-fist'),(1941,'overgrow'),(1942,'grassy-surge'),(1943,'overgrow'),(1944,'grassy-surge'),(1945,'overgrow'),(1946,'grassy-surge'),(1947,'blaze'),(1948,'libero'),(1949,'blaze'),(1950,'libero'),(1951,'blaze'),(1952,'libero'),(1953,'torrent'),(1954,'sniper'),(1955,'torrent'),(1956,'sniper'),(1957,'torrent'),(1958,'sniper'),(1959,'cheek-pouch'),(1960,'gluttony'),(1961,'cheek-pouch'),(1962,'gluttony'),(1963,'keen-eye'),(1964,'unnerve'),(1965,'big-pecks'),(1966,'keen-eye'),(1967,'unnerve'),(1968,'big-pecks'),(1969,'pressure'),(1970,'unnerve'),(1971,'mirror-armor'),(1972,'swarm'),(1973,'compound-eyes'),(1974,'telepathy'),(1975,'swarm'),(1976,'compound-eyes'),(1977,'telepathy'),(1978,'swarm'),(1979,'frisk'),(1980,'telepathy'),(1981,'run-away'),(1982,'unburden'),(1983,'stakeout'),(1984,'run-away'),(1985,'unburden'),(1986,'stakeout'),(1987,'cotton-down'),(1988,'regenerator'),(1989,'effect-spore'),(1990,'cotton-down'),(1991,'regenerator'),(1992,'effect-spore'),(1993,'fluffy'),(1994,'run-away'),(1995,'bulletproof'),(1996,'fluffy'),(1997,'steadfast'),(1998,'bulletproof'),(1999,'strong-jaw'),(2000,'shell-armor'),(2001,'swift-swim'),(2002,'strong-jaw'),(2003,'shell-armor'),(2004,'swift-swim'),(2005,'ball-fetch'),(2006,'rattled'),(2007,'strong-jaw'),(2008,'competitive'),(2009,'steam-engine'),(2010,'heatproof'),(2011,'flash-fire'),(2012,'steam-engine'),(2013,'flame-body'),(2014,'flash-fire'),(2015,'steam-engine'),(2016,'flame-body'),(2017,'flash-fire'),(2018,'ripen'),(2019,'gluttony'),(2020,'bulletproof'),(2021,'ripen'),(2022,'gluttony'),(2023,'hustle'),(2024,'ripen'),(2025,'gluttony'),(2026,'thick-fat'),(2027,'sand-spit'),(2028,'shed-skin'),(2029,'sand-veil'),(2030,'sand-spit'),(2031,'shed-skin'),(2032,'sand-veil'),(2033,'gulp-missile'),(2034,'swift-swim'),(2035,'propeller-tail'),(2036,'swift-swim'),(2037,'propeller-tail'),(2038,'rattled'),(2039,'static'),(2040,'klutz'),(2041,'punk-rock'),(2042,'plus'),(2043,'technician'),(2044,'flash-fire'),(2045,'white-smoke'),(2046,'flame-body'),(2047,'flash-fire'),(2048,'white-smoke'),(2049,'flame-body'),(2050,'limber'),(2051,'technician'),(2052,'limber'),(2053,'technician'),(2054,'weak-armor'),(2055,'cursed-body'),(2056,'weak-armor'),(2057,'cursed-body'),(2058,'healer'),(2059,'anticipation'),(2060,'magic-bounce'),(2061,'healer'),(2062,'anticipation'),(2063,'magic-bounce'),(2064,'healer'),(2065,'anticipation'),(2066,'magic-bounce'),(2067,'prankster'),(2068,'frisk'),(2069,'pickpocket'),(2070,'prankster'),(2071,'frisk'),(2072,'pickpocket'),(2073,'prankster'),(2074,'frisk'),(2075,'pickpocket'),(2076,'reckless'),(2077,'guts'),(2078,'defiant'),(2079,'battle-armor'),(2080,'tough-claws'),(2081,'steely-spirit'),(2082,'weak-armor'),(2083,'perish-body'),(2084,'steadfast'),(2085,'scrappy'),(2086,'tangled-feet'),(2087,'screen-cleaner'),(2088,'ice-body'),(2089,'wandering-spirit'),(2090,'sweet-veil'),(2091,'aroma-veil'),(2092,'sweet-veil'),(2093,'aroma-veil'),(2094,'battle-armor'),(2095,'defiant'),(2096,'lightning-rod'),(2097,'electric-surge'),(2098,'shield-dust'),(2099,'ice-scales'),(2100,'shield-dust'),(2101,'ice-scales'),(2102,'power-spot'),(2103,'ice-face'),(2104,'inner-focus'),(2105,'synchronize'),(2106,'psychic-surge'),(2107,'hunger-switch'),(2108,'sheer-force'),(2109,'heavy-metal'),(2110,'sheer-force'),(2111,'heavy-metal'),(2112,'volt-absorb'),(2113,'hustle'),(2114,'sand-rush'),(2115,'volt-absorb'),(2116,'static'),(2117,'slush-rush'),(2118,'water-absorb'),(2119,'strong-jaw'),(2120,'sand-rush'),(2121,'water-absorb'),(2122,'ice-body'),(2123,'slush-rush'),(2124,'light-metal'),(2125,'heavy-metal'),(2126,'stalwart'),(2127,'clear-body'),(2128,'infiltrator'),(2129,'cursed-body'),(2130,'clear-body'),(2131,'infiltrator'),(2132,'cursed-body'),(2133,'clear-body'),(2134,'infiltrator'),(2135,'cursed-body'),(2136,'intrepid-sword'),(2137,'dauntless-shield'),(2138,'pressure'),(2139,'inner-focus'),(2140,'unseen-fist'),(2141,'leaf-guard'),(2142,'transistor'),(2143,'dragons-maw'),(2144,'chilling-neigh'),(2145,'grim-neigh'),(2146,'unnerve'),(2147,'intimidate'),(2148,'frisk'),(2149,'sap-sipper'),(2150,'swarm'),(2151,'sheer-force'),(2152,'sharpness'),(2153,'guts'),(2154,'bulletproof'),(2155,'unnerve'),(2156,'swift-swim'),(2157,'adaptability'),(2158,'mold-breaker'),(2159,'pressure'),(2160,'unburden'),(2161,'poison-touch'),(2162,'poison-point'),(2163,'swift-swim'),(2164,'intimidate'),(2165,'cute-charm'),(2166,'contrary'),(2167,'overgrow'),(2168,'protean'),(2169,'overgrow'),(2170,'protean'),(2171,'overgrow'),(2172,'protean'),(2173,'blaze'),(2174,'unaware'),(2175,'blaze'),(2176,'unaware'),(2177,'blaze'),(2178,'unaware'),(2179,'torrent'),(2180,'moxie'),(2181,'torrent'),(2182,'moxie'),(2183,'torrent'),(2184,'moxie'),(2185,'aroma-veil'),(2186,'gluttony'),(2187,'thick-fat'),(2188,'lingering-aroma'),(2189,'gluttony'),(2190,'thick-fat'),(2191,'insomnia'),(2192,'stakeout'),(2193,'insomnia'),(2194,'stakeout'),(2195,'swarm'),(2196,'tinted-lens'),(2197,'swarm'),(2198,'tinted-lens'),(2199,'static'),(2200,'natural-cure'),(2201,'iron-fist'),(2202,'volt-absorb'),(2203,'natural-cure'),(2204,'iron-fist'),(2205,'volt-absorb'),(2206,'natural-cure'),(2207,'iron-fist'),(2208,'run-away'),(2209,'pickup'),(2210,'own-tempo'),(2211,'friend-guard'),(2212,'cheek-pouch'),(2213,'technician'),(2214,'own-tempo'),(2215,'klutz'),(2216,'well-baked-body'),(2217,'aroma-veil'),(2218,'early-bird'),(2219,'harvest'),(2220,'early-bird'),(2221,'harvest'),(2222,'seed-sower'),(2223,'harvest'),(2224,'intimidate'),(2225,'hustle'),(2226,'guts'),(2227,'purifying-salt'),(2228,'sturdy'),(2229,'clear-body'),(2230,'purifying-salt'),(2231,'sturdy'),(2232,'clear-body'),(2233,'purifying-salt'),(2234,'sturdy'),(2235,'clear-body'),(2236,'flash-fire'),(2237,'flame-body'),(2238,'flash-fire'),(2239,'weak-armor'),(2240,'flash-fire'),(2241,'weak-armor'),(2242,'own-tempo'),(2243,'static'),(2244,'damp'),(2245,'electromorphosis'),(2246,'static'),(2247,'damp'),(2248,'wind-power'),(2249,'volt-absorb'),(2250,'competitive'),(2251,'wind-power'),(2252,'volt-absorb'),(2253,'competitive'),(2254,'intimidate'),(2255,'run-away'),(2256,'stakeout'),(2257,'intimidate'),(2258,'guard-dog'),(2259,'stakeout'),(2260,'unburden'),(2261,'pickpocket'),(2262,'prankster'),(2263,'unburden'),(2264,'poison-touch'),(2265,'prankster'),(2266,'wind-rider'),(2267,'infiltrator'),(2268,'wind-rider'),(2269,'infiltrator'),(2270,'mycelium-might'),(2271,'mycelium-might'),(2272,'mycelium-might'),(2273,'mycelium-might'),(2274,'anger-shell'),(2275,'shell-armor'),(2276,'regenerator'),(2277,'chlorophyll'),(2278,'insomnia'),(2279,'klutz'),(2280,'chlorophyll'),(2281,'insomnia'),(2282,'moody'),(2283,'compound-eyes'),(2284,'shed-skin'),(2285,'synchronize'),(2286,'telepathy'),(2287,'anticipation'),(2288,'frisk'),(2289,'speed-boost'),(2290,'opportunist'),(2291,'frisk'),(2292,'speed-boost'),(2293,'mold-breaker'),(2294,'own-tempo'),(2295,'pickpocket'),(2296,'mold-breaker'),(2297,'own-tempo'),(2298,'pickpocket'),(2299,'mold-breaker'),(2300,'own-tempo'),(2301,'pickpocket'),(2302,'gooey'),(2303,'rattled'),(2304,'sand-veil'),(2305,'gooey'),(2306,'rattled'),(2307,'sand-veil'),(2308,'big-pecks'),(2309,'keen-eye'),(2310,'rocky-payload'),(2311,'water-veil'),(2312,'water-veil'),(2313,'zero-to-hero'),(2314,'zero-to-hero'),(2315,'overcoat'),(2316,'slow-start'),(2317,'overcoat'),(2318,'filter'),(2319,'shed-skin'),(2320,'regenerator'),(2321,'earth-eater'),(2322,'sand-veil'),(2323,'toxic-debris'),(2324,'corrosion'),(2325,'toxic-debris'),(2326,'corrosion'),(2327,'pickup'),(2328,'fluffy'),(2329,'sand-rush'),(2330,'fluffy'),(2331,'scrappy'),(2332,'tangled-feet'),(2333,'costar'),(2334,'thick-fat'),(2335,'snow-cloak'),(2336,'sheer-force'),(2337,'thick-fat'),(2338,'slush-rush'),(2339,'sheer-force'),(2340,'mold-breaker'),(2341,'sharpness'),(2342,'unaware'),(2343,'oblivious'),(2344,'water-veil'),(2345,'commander'),(2346,'storm-drain'),(2347,'vital-spirit'),(2348,'inner-focus'),(2349,'defiant'),(2350,'poison-point'),(2351,'water-absorb'),(2352,'unaware'),(2353,'cud-chew'),(2354,'armor-tail'),(2355,'sap-sipper'),(2356,'serene-grace'),(2357,'run-away'),(2358,'rattled'),(2359,'defiant'),(2360,'supreme-overlord'),(2361,'pressure'),(2362,'protosynthesis'),(2363,'protosynthesis'),(2364,'protosynthesis'),(2365,'protosynthesis'),(2366,'protosynthesis'),(2367,'protosynthesis'),(2368,'quark-drive'),(2369,'quark-drive'),(2370,'quark-drive'),(2371,'quark-drive'),(2372,'quark-drive'),(2373,'quark-drive'),(2374,'thermal-exchange'),(2375,'ice-body'),(2376,'thermal-exchange'),(2377,'ice-body'),(2378,'thermal-exchange'),(2379,'ice-body'),(2380,'rattled'),(2381,'good-as-gold'),(2382,'tablets-of-ruin'),(2383,'sword-of-ruin'),(2384,'vessel-of-ruin'),(2385,'beads-of-ruin'),(2386,'protosynthesis'),(2387,'quark-drive'),(2388,'orichalcum-pulse'),(2389,'hadron-engine'),(2390,'protosynthesis'),(2391,'quark-drive'); +/*!40000 ALTER TABLE `abilities` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `egg_groups` +-- + +DROP TABLE IF EXISTS `egg_groups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `egg_groups` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(100) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=1285 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `egg_groups` +-- + +LOCK TABLES `egg_groups` WRITE; +/*!40000 ALTER TABLE `egg_groups` DISABLE KEYS */; +INSERT INTO `egg_groups` VALUES (1,'monster'),(2,'plant'),(3,'monster'),(4,'plant'),(5,'monster'),(6,'plant'),(7,'monster'),(8,'dragon'),(9,'monster'),(10,'dragon'),(11,'monster'),(12,'dragon'),(13,'monster'),(14,'water1'),(15,'monster'),(16,'water1'),(17,'monster'),(18,'water1'),(19,'bug'),(20,'bug'),(21,'bug'),(22,'bug'),(23,'bug'),(24,'bug'),(25,'flying'),(26,'flying'),(27,'flying'),(28,'ground'),(29,'ground'),(30,'flying'),(31,'flying'),(32,'ground'),(33,'dragon'),(34,'ground'),(35,'dragon'),(36,'ground'),(37,'fairy'),(38,'ground'),(39,'fairy'),(40,'ground'),(41,'ground'),(42,'monster'),(43,'ground'),(44,'no-eggs'),(45,'no-eggs'),(46,'monster'),(47,'ground'),(48,'monster'),(49,'ground'),(50,'monster'),(51,'ground'),(52,'fairy'),(53,'fairy'),(54,'ground'),(55,'ground'),(56,'fairy'),(57,'fairy'),(58,'flying'),(59,'flying'),(60,'plant'),(61,'plant'),(62,'plant'),(63,'bug'),(64,'plant'),(65,'bug'),(66,'plant'),(67,'bug'),(68,'bug'),(69,'ground'),(70,'ground'),(71,'ground'),(72,'ground'),(73,'water1'),(74,'ground'),(75,'water1'),(76,'ground'),(77,'ground'),(78,'ground'),(79,'ground'),(80,'ground'),(81,'water1'),(82,'water1'),(83,'water1'),(84,'humanshape'),(85,'humanshape'),(86,'humanshape'),(87,'humanshape'),(88,'humanshape'),(89,'humanshape'),(90,'plant'),(91,'plant'),(92,'plant'),(93,'water3'),(94,'water3'),(95,'mineral'),(96,'mineral'),(97,'mineral'),(98,'ground'),(99,'ground'),(100,'monster'),(101,'water1'),(102,'monster'),(103,'water1'),(104,'mineral'),(105,'mineral'),(106,'flying'),(107,'ground'),(108,'flying'),(109,'flying'),(110,'water1'),(111,'ground'),(112,'water1'),(113,'ground'),(114,'indeterminate'),(115,'indeterminate'),(116,'water3'),(117,'water3'),(118,'indeterminate'),(119,'indeterminate'),(120,'indeterminate'),(121,'mineral'),(122,'humanshape'),(123,'humanshape'),(124,'water3'),(125,'water3'),(126,'mineral'),(127,'mineral'),(128,'plant'),(129,'plant'),(130,'monster'),(131,'monster'),(132,'humanshape'),(133,'humanshape'),(134,'monster'),(135,'indeterminate'),(136,'indeterminate'),(137,'monster'),(138,'ground'),(139,'monster'),(140,'ground'),(141,'fairy'),(142,'plant'),(143,'monster'),(144,'water1'),(145,'dragon'),(146,'water1'),(147,'dragon'),(148,'water2'),(149,'water2'),(150,'water3'),(151,'water3'),(152,'humanshape'),(153,'bug'),(154,'humanshape'),(155,'humanshape'),(156,'humanshape'),(157,'bug'),(158,'ground'),(159,'water2'),(160,'dragon'),(161,'water2'),(162,'dragon'),(163,'monster'),(164,'water1'),(165,'ditto'),(166,'ground'),(167,'ground'),(168,'ground'),(169,'ground'),(170,'mineral'),(171,'water1'),(172,'water3'),(173,'water1'),(174,'water3'),(175,'water1'),(176,'water3'),(177,'water1'),(178,'water3'),(179,'flying'),(180,'monster'),(181,'no-eggs'),(182,'no-eggs'),(183,'no-eggs'),(184,'water1'),(185,'dragon'),(186,'water1'),(187,'dragon'),(188,'water1'),(189,'dragon'),(190,'no-eggs'),(191,'no-eggs'),(192,'monster'),(193,'plant'),(194,'monster'),(195,'plant'),(196,'monster'),(197,'plant'),(198,'ground'),(199,'ground'),(200,'ground'),(201,'monster'),(202,'water1'),(203,'monster'),(204,'water1'),(205,'monster'),(206,'water1'),(207,'ground'),(208,'ground'),(209,'flying'),(210,'flying'),(211,'bug'),(212,'bug'),(213,'bug'),(214,'bug'),(215,'flying'),(216,'water2'),(217,'water2'),(218,'no-eggs'),(219,'no-eggs'),(220,'no-eggs'),(221,'no-eggs'),(222,'flying'),(223,'fairy'),(224,'flying'),(225,'flying'),(226,'monster'),(227,'ground'),(228,'monster'),(229,'ground'),(230,'monster'),(231,'ground'),(232,'plant'),(233,'water1'),(234,'fairy'),(235,'water1'),(236,'fairy'),(237,'mineral'),(238,'water1'),(239,'fairy'),(240,'plant'),(241,'fairy'),(242,'plant'),(243,'fairy'),(244,'plant'),(245,'ground'),(246,'plant'),(247,'plant'),(248,'bug'),(249,'water1'),(250,'ground'),(251,'water1'),(252,'ground'),(253,'ground'),(254,'ground'),(255,'flying'),(256,'monster'),(257,'water1'),(258,'indeterminate'),(259,'no-eggs'),(260,'indeterminate'),(261,'ground'),(262,'bug'),(263,'bug'),(264,'ground'),(265,'bug'),(266,'mineral'),(267,'ground'),(268,'fairy'),(269,'ground'),(270,'fairy'),(271,'water2'),(272,'bug'),(273,'bug'),(274,'bug'),(275,'ground'),(276,'ground'),(277,'ground'),(278,'indeterminate'),(279,'indeterminate'),(280,'ground'),(281,'ground'),(282,'water1'),(283,'water3'),(284,'water1'),(285,'water2'),(286,'water1'),(287,'water2'),(288,'water1'),(289,'ground'),(290,'water1'),(291,'flying'),(292,'ground'),(293,'ground'),(294,'water1'),(295,'dragon'),(296,'ground'),(297,'ground'),(298,'mineral'),(299,'ground'),(300,'ground'),(301,'no-eggs'),(302,'humanshape'),(303,'no-eggs'),(304,'no-eggs'),(305,'no-eggs'),(306,'ground'),(307,'fairy'),(308,'no-eggs'),(309,'no-eggs'),(310,'no-eggs'),(311,'monster'),(312,'monster'),(313,'monster'),(314,'no-eggs'),(315,'no-eggs'),(316,'no-eggs'),(317,'monster'),(318,'dragon'),(319,'monster'),(320,'dragon'),(321,'monster'),(322,'dragon'),(323,'ground'),(324,'ground'),(325,'ground'),(326,'monster'),(327,'water1'),(328,'monster'),(329,'water1'),(330,'monster'),(331,'water1'),(332,'ground'),(333,'ground'),(334,'ground'),(335,'ground'),(336,'bug'),(337,'bug'),(338,'bug'),(339,'bug'),(340,'bug'),(341,'water1'),(342,'plant'),(343,'water1'),(344,'plant'),(345,'water1'),(346,'plant'),(347,'ground'),(348,'plant'),(349,'ground'),(350,'plant'),(351,'ground'),(352,'plant'),(353,'flying'),(354,'flying'),(355,'water1'),(356,'flying'),(357,'water1'),(358,'flying'),(359,'humanshape'),(360,'indeterminate'),(361,'humanshape'),(362,'indeterminate'),(363,'humanshape'),(364,'indeterminate'),(365,'water1'),(366,'bug'),(367,'water1'),(368,'bug'),(369,'fairy'),(370,'plant'),(371,'fairy'),(372,'plant'),(373,'ground'),(374,'ground'),(375,'ground'),(376,'bug'),(377,'bug'),(378,'mineral'),(379,'monster'),(380,'ground'),(381,'monster'),(382,'ground'),(383,'monster'),(384,'ground'),(385,'humanshape'),(386,'humanshape'),(387,'no-eggs'),(388,'mineral'),(389,'ground'),(390,'fairy'),(391,'ground'),(392,'fairy'),(393,'humanshape'),(394,'ground'),(395,'fairy'),(396,'monster'),(397,'monster'),(398,'monster'),(399,'humanshape'),(400,'humanshape'),(401,'ground'),(402,'ground'),(403,'fairy'),(404,'fairy'),(405,'bug'),(406,'humanshape'),(407,'bug'),(408,'humanshape'),(409,'fairy'),(410,'plant'),(411,'indeterminate'),(412,'indeterminate'),(413,'water2'),(414,'water2'),(415,'ground'),(416,'water2'),(417,'ground'),(418,'water2'),(419,'ground'),(420,'ground'),(421,'ground'),(422,'ground'),(423,'ground'),(424,'ground'),(425,'humanshape'),(426,'bug'),(427,'dragon'),(428,'bug'),(429,'dragon'),(430,'bug'),(431,'dragon'),(432,'plant'),(433,'humanshape'),(434,'plant'),(435,'humanshape'),(436,'flying'),(437,'dragon'),(438,'flying'),(439,'dragon'),(440,'ground'),(441,'ground'),(442,'dragon'),(443,'mineral'),(444,'mineral'),(445,'water2'),(446,'water2'),(447,'water1'),(448,'water3'),(449,'water1'),(450,'water3'),(451,'mineral'),(452,'mineral'),(453,'water3'),(454,'water3'),(455,'water3'),(456,'water3'),(457,'water1'),(458,'dragon'),(459,'water1'),(460,'dragon'),(461,'fairy'),(462,'indeterminate'),(463,'ground'),(464,'indeterminate'),(465,'indeterminate'),(466,'indeterminate'),(467,'indeterminate'),(468,'monster'),(469,'plant'),(470,'indeterminate'),(471,'ground'),(472,'no-eggs'),(473,'fairy'),(474,'mineral'),(475,'fairy'),(476,'mineral'),(477,'water1'),(478,'ground'),(479,'water1'),(480,'ground'),(481,'water1'),(482,'ground'),(483,'water1'),(484,'water1'),(485,'water1'),(486,'water1'),(487,'water2'),(488,'water2'),(489,'dragon'),(490,'dragon'),(491,'dragon'),(492,'mineral'),(493,'mineral'),(494,'mineral'),(495,'no-eggs'),(496,'no-eggs'),(497,'no-eggs'),(498,'no-eggs'),(499,'no-eggs'),(500,'no-eggs'),(501,'no-eggs'),(502,'no-eggs'),(503,'no-eggs'),(504,'no-eggs'),(505,'monster'),(506,'plant'),(507,'monster'),(508,'plant'),(509,'monster'),(510,'plant'),(511,'ground'),(512,'humanshape'),(513,'ground'),(514,'humanshape'),(515,'ground'),(516,'humanshape'),(517,'water1'),(518,'ground'),(519,'water1'),(520,'ground'),(521,'water1'),(522,'ground'),(523,'flying'),(524,'flying'),(525,'flying'),(526,'water1'),(527,'ground'),(528,'water1'),(529,'ground'),(530,'bug'),(531,'bug'),(532,'ground'),(533,'ground'),(534,'ground'),(535,'no-eggs'),(536,'fairy'),(537,'plant'),(538,'monster'),(539,'monster'),(540,'monster'),(541,'monster'),(542,'bug'),(543,'bug'),(544,'bug'),(545,'bug'),(546,'bug'),(547,'ground'),(548,'fairy'),(549,'water1'),(550,'ground'),(551,'water1'),(552,'ground'),(553,'fairy'),(554,'plant'),(555,'fairy'),(556,'plant'),(557,'water1'),(558,'indeterminate'),(559,'water1'),(560,'indeterminate'),(561,'ground'),(562,'indeterminate'),(563,'indeterminate'),(564,'ground'),(565,'humanshape'),(566,'ground'),(567,'humanshape'),(568,'indeterminate'),(569,'flying'),(570,'ground'),(571,'ground'),(572,'no-eggs'),(573,'ground'),(574,'ground'),(575,'mineral'),(576,'mineral'),(577,'no-eggs'),(578,'no-eggs'),(579,'no-eggs'),(580,'flying'),(581,'indeterminate'),(582,'monster'),(583,'dragon'),(584,'monster'),(585,'dragon'),(586,'monster'),(587,'dragon'),(588,'no-eggs'),(589,'no-eggs'),(590,'ground'),(591,'humanshape'),(592,'ground'),(593,'ground'),(594,'bug'),(595,'water3'),(596,'bug'),(597,'water3'),(598,'humanshape'),(599,'humanshape'),(600,'plant'),(601,'water2'),(602,'water2'),(603,'no-eggs'),(604,'monster'),(605,'plant'),(606,'monster'),(607,'plant'),(608,'ground'),(609,'mineral'),(610,'monster'),(611,'monster'),(612,'ground'),(613,'plant'),(614,'humanshape'),(615,'humanshape'),(616,'flying'),(617,'fairy'),(618,'bug'),(619,'ground'),(620,'ground'),(621,'bug'),(622,'ground'),(623,'mineral'),(624,'humanshape'),(625,'indeterminate'),(626,'mineral'),(627,'indeterminate'),(628,'fairy'),(629,'mineral'),(630,'indeterminate'),(631,'no-eggs'),(632,'no-eggs'),(633,'no-eggs'),(634,'no-eggs'),(635,'no-eggs'),(636,'no-eggs'),(637,'no-eggs'),(638,'no-eggs'),(639,'no-eggs'),(640,'water1'),(641,'fairy'),(642,'water1'),(643,'fairy'),(644,'no-eggs'),(645,'no-eggs'),(646,'no-eggs'),(647,'no-eggs'),(648,'ground'),(649,'plant'),(650,'ground'),(651,'plant'),(652,'ground'),(653,'plant'),(654,'ground'),(655,'ground'),(656,'ground'),(657,'ground'),(658,'ground'),(659,'ground'),(660,'ground'),(661,'ground'),(662,'ground'),(663,'ground'),(664,'ground'),(665,'ground'),(666,'ground'),(667,'ground'),(668,'ground'),(669,'ground'),(670,'ground'),(671,'ground'),(672,'ground'),(673,'ground'),(674,'ground'),(675,'flying'),(676,'flying'),(677,'flying'),(678,'ground'),(679,'ground'),(680,'mineral'),(681,'mineral'),(682,'mineral'),(683,'ground'),(684,'flying'),(685,'ground'),(686,'flying'),(687,'ground'),(688,'ground'),(689,'fairy'),(690,'humanshape'),(691,'humanshape'),(692,'humanshape'),(693,'water1'),(694,'water1'),(695,'water1'),(696,'humanshape'),(697,'humanshape'),(698,'bug'),(699,'bug'),(700,'bug'),(701,'bug'),(702,'bug'),(703,'bug'),(704,'plant'),(705,'fairy'),(706,'plant'),(707,'fairy'),(708,'plant'),(709,'plant'),(710,'water2'),(711,'ground'),(712,'ground'),(713,'ground'),(714,'ground'),(715,'ground'),(716,'plant'),(717,'bug'),(718,'mineral'),(719,'bug'),(720,'mineral'),(721,'ground'),(722,'dragon'),(723,'ground'),(724,'dragon'),(725,'flying'),(726,'mineral'),(727,'indeterminate'),(728,'mineral'),(729,'indeterminate'),(730,'water1'),(731,'water3'),(732,'water1'),(733,'water3'),(734,'flying'),(735,'water3'),(736,'flying'),(737,'water3'),(738,'mineral'),(739,'mineral'),(740,'ground'),(741,'ground'),(742,'ground'),(743,'ground'),(744,'humanshape'),(745,'humanshape'),(746,'humanshape'),(747,'indeterminate'),(748,'indeterminate'),(749,'indeterminate'),(750,'water1'),(751,'flying'),(752,'water1'),(753,'flying'),(754,'mineral'),(755,'mineral'),(756,'mineral'),(757,'ground'),(758,'ground'),(759,'ground'),(760,'bug'),(761,'bug'),(762,'plant'),(763,'plant'),(764,'indeterminate'),(765,'indeterminate'),(766,'water1'),(767,'water2'),(768,'bug'),(769,'bug'),(770,'plant'),(771,'mineral'),(772,'plant'),(773,'mineral'),(774,'mineral'),(775,'mineral'),(776,'mineral'),(777,'indeterminate'),(778,'indeterminate'),(779,'indeterminate'),(780,'humanshape'),(781,'humanshape'),(782,'indeterminate'),(783,'indeterminate'),(784,'indeterminate'),(785,'monster'),(786,'dragon'),(787,'monster'),(788,'dragon'),(789,'monster'),(790,'dragon'),(791,'ground'),(792,'ground'),(793,'mineral'),(794,'bug'),(795,'bug'),(796,'water1'),(797,'indeterminate'),(798,'ground'),(799,'humanshape'),(800,'ground'),(801,'humanshape'),(802,'dragon'),(803,'monster'),(804,'mineral'),(805,'mineral'),(806,'humanshape'),(807,'humanshape'),(808,'ground'),(809,'flying'),(810,'flying'),(811,'flying'),(812,'flying'),(813,'ground'),(814,'bug'),(815,'dragon'),(816,'dragon'),(817,'dragon'),(818,'bug'),(819,'bug'),(820,'no-eggs'),(821,'no-eggs'),(822,'no-eggs'),(823,'no-eggs'),(824,'no-eggs'),(825,'no-eggs'),(826,'no-eggs'),(827,'no-eggs'),(828,'no-eggs'),(829,'no-eggs'),(830,'no-eggs'),(831,'no-eggs'),(832,'ground'),(833,'ground'),(834,'ground'),(835,'ground'),(836,'ground'),(837,'ground'),(838,'water1'),(839,'water1'),(840,'water1'),(841,'ground'),(842,'ground'),(843,'flying'),(844,'flying'),(845,'flying'),(846,'bug'),(847,'bug'),(848,'bug'),(849,'ground'),(850,'ground'),(851,'fairy'),(852,'fairy'),(853,'fairy'),(854,'ground'),(855,'ground'),(856,'ground'),(857,'humanshape'),(858,'ground'),(859,'humanshape'),(860,'ground'),(861,'ground'),(862,'ground'),(863,'mineral'),(864,'mineral'),(865,'mineral'),(866,'fairy'),(867,'fairy'),(868,'fairy'),(869,'fairy'),(870,'water1'),(871,'water2'),(872,'water1'),(873,'water2'),(874,'water3'),(875,'water3'),(876,'water1'),(877,'dragon'),(878,'water1'),(879,'dragon'),(880,'water1'),(881,'water3'),(882,'water1'),(883,'water3'),(884,'monster'),(885,'dragon'),(886,'monster'),(887,'dragon'),(888,'monster'),(889,'dragon'),(890,'monster'),(891,'dragon'),(892,'monster'),(893,'monster'),(894,'ground'),(895,'flying'),(896,'humanshape'),(897,'ground'),(898,'fairy'),(899,'fairy'),(900,'mineral'),(901,'dragon'),(902,'dragon'),(903,'dragon'),(904,'mineral'),(905,'plant'),(906,'indeterminate'),(907,'plant'),(908,'indeterminate'),(909,'indeterminate'),(910,'indeterminate'),(911,'monster'),(912,'mineral'),(913,'monster'),(914,'mineral'),(915,'flying'),(916,'dragon'),(917,'flying'),(918,'dragon'),(919,'no-eggs'),(920,'no-eggs'),(921,'no-eggs'),(922,'no-eggs'),(923,'no-eggs'),(924,'no-eggs'),(925,'flying'),(926,'flying'),(927,'flying'),(928,'ground'),(929,'ground'),(930,'ground'),(931,'water1'),(932,'ground'),(933,'water1'),(934,'ground'),(935,'water1'),(936,'ground'),(937,'flying'),(938,'flying'),(939,'flying'),(940,'ground'),(941,'ground'),(942,'bug'),(943,'bug'),(944,'bug'),(945,'water3'),(946,'water3'),(947,'flying'),(948,'bug'),(949,'fairy'),(950,'bug'),(951,'fairy'),(952,'ground'),(953,'ground'),(954,'water2'),(955,'water1'),(956,'water1'),(957,'ground'),(958,'ground'),(959,'water1'),(960,'bug'),(961,'water1'),(962,'bug'),(963,'plant'),(964,'plant'),(965,'plant'),(966,'plant'),(967,'monster'),(968,'dragon'),(969,'monster'),(970,'dragon'),(971,'ground'),(972,'ground'),(973,'plant'),(974,'plant'),(975,'plant'),(976,'plant'),(977,'ground'),(978,'ground'),(979,'bug'),(980,'water3'),(981,'bug'),(982,'water3'),(983,'indeterminate'),(984,'indeterminate'),(985,'water1'),(986,'no-eggs'),(987,'no-eggs'),(988,'mineral'),(989,'ground'),(990,'monster'),(991,'dragon'),(992,'ground'),(993,'fairy'),(994,'indeterminate'),(995,'water2'),(996,'monster'),(997,'dragon'),(998,'mineral'),(999,'dragon'),(1000,'dragon'),(1001,'dragon'),(1002,'no-eggs'),(1003,'no-eggs'),(1004,'no-eggs'),(1005,'no-eggs'),(1006,'no-eggs'),(1007,'no-eggs'),(1008,'no-eggs'),(1009,'no-eggs'),(1010,'no-eggs'),(1011,'no-eggs'),(1012,'no-eggs'),(1013,'no-eggs'),(1014,'no-eggs'),(1015,'no-eggs'),(1016,'no-eggs'),(1017,'no-eggs'),(1018,'no-eggs'),(1019,'no-eggs'),(1020,'no-eggs'),(1021,'no-eggs'),(1022,'no-eggs'),(1023,'no-eggs'),(1024,'no-eggs'),(1025,'no-eggs'),(1026,'no-eggs'),(1027,'ground'),(1028,'plant'),(1029,'ground'),(1030,'plant'),(1031,'ground'),(1032,'plant'),(1033,'ground'),(1034,'humanshape'),(1035,'ground'),(1036,'humanshape'),(1037,'ground'),(1038,'humanshape'),(1039,'water1'),(1040,'ground'),(1041,'water1'),(1042,'ground'),(1043,'water1'),(1044,'ground'),(1045,'ground'),(1046,'ground'),(1047,'flying'),(1048,'flying'),(1049,'flying'),(1050,'bug'),(1051,'bug'),(1052,'bug'),(1053,'ground'),(1054,'ground'),(1055,'plant'),(1056,'plant'),(1057,'ground'),(1058,'ground'),(1059,'monster'),(1060,'water1'),(1061,'monster'),(1062,'water1'),(1063,'ground'),(1064,'ground'),(1065,'mineral'),(1066,'mineral'),(1067,'mineral'),(1068,'plant'),(1069,'dragon'),(1070,'plant'),(1071,'dragon'),(1072,'plant'),(1073,'dragon'),(1074,'ground'),(1075,'dragon'),(1076,'ground'),(1077,'dragon'),(1078,'water1'),(1079,'flying'),(1080,'water2'),(1081,'water2'),(1082,'no-eggs'),(1083,'humanshape'),(1084,'bug'),(1085,'bug'),(1086,'water1'),(1087,'humanshape'),(1088,'water1'),(1089,'humanshape'),(1090,'mineral'),(1091,'indeterminate'),(1092,'mineral'),(1093,'indeterminate'),(1094,'fairy'),(1095,'fairy'),(1096,'fairy'),(1097,'fairy'),(1098,'humanshape'),(1099,'fairy'),(1100,'humanshape'),(1101,'fairy'),(1102,'humanshape'),(1103,'ground'),(1104,'ground'),(1105,'water1'),(1106,'water3'),(1107,'flying'),(1108,'ground'),(1109,'humanshape'),(1110,'mineral'),(1111,'indeterminate'),(1112,'fairy'),(1113,'indeterminate'),(1114,'fairy'),(1115,'indeterminate'),(1116,'fairy'),(1117,'mineral'),(1118,'water1'),(1119,'indeterminate'),(1120,'bug'),(1121,'bug'),(1122,'mineral'),(1123,'water1'),(1124,'ground'),(1125,'fairy'),(1126,'ground'),(1127,'fairy'),(1128,'ground'),(1129,'mineral'),(1130,'ground'),(1131,'mineral'),(1132,'no-eggs'),(1133,'no-eggs'),(1134,'no-eggs'),(1135,'no-eggs'),(1136,'mineral'),(1137,'dragon'),(1138,'indeterminate'),(1139,'dragon'),(1140,'indeterminate'),(1141,'dragon'),(1142,'indeterminate'),(1143,'dragon'),(1144,'no-eggs'),(1145,'no-eggs'),(1146,'no-eggs'),(1147,'no-eggs'),(1148,'no-eggs'),(1149,'no-eggs'),(1150,'no-eggs'),(1151,'no-eggs'),(1152,'no-eggs'),(1153,'no-eggs'),(1154,'no-eggs'),(1155,'ground'),(1156,'bug'),(1157,'ground'),(1158,'water2'),(1159,'ground'),(1160,'water2'),(1161,'no-eggs'),(1162,'ground'),(1163,'plant'),(1164,'ground'),(1165,'plant'),(1166,'ground'),(1167,'plant'),(1168,'ground'),(1169,'ground'),(1170,'ground'),(1171,'flying'),(1172,'water1'),(1173,'flying'),(1174,'water1'),(1175,'flying'),(1176,'water1'),(1177,'ground'),(1178,'ground'),(1179,'bug'),(1180,'bug'),(1181,'bug'),(1182,'bug'),(1183,'ground'),(1184,'ground'),(1185,'ground'),(1186,'ground'),(1187,'fairy'),(1188,'ground'),(1189,'fairy'),(1190,'ground'),(1191,'mineral'),(1192,'ground'),(1193,'mineral'),(1194,'plant'),(1195,'plant'),(1196,'plant'),(1197,'flying'),(1198,'mineral'),(1199,'mineral'),(1200,'mineral'),(1201,'humanshape'),(1202,'humanshape'),(1203,'humanshape'),(1204,'water1'),(1205,'water1'),(1206,'water1'),(1207,'flying'),(1208,'water1'),(1209,'flying'),(1210,'ground'),(1211,'ground'),(1212,'ground'),(1213,'ground'),(1214,'plant'),(1215,'plant'),(1216,'plant'),(1217,'plant'),(1218,'water3'),(1219,'plant'),(1220,'plant'),(1221,'bug'),(1222,'bug'),(1223,'flying'),(1224,'flying'),(1225,'fairy'),(1226,'fairy'),(1227,'fairy'),(1228,'water3'),(1229,'water3'),(1230,'flying'),(1231,'ground'),(1232,'water2'),(1233,'ground'),(1234,'water2'),(1235,'mineral'),(1236,'mineral'),(1237,'ground'),(1238,'ground'),(1239,'mineral'),(1240,'mineral'),(1241,'ground'),(1242,'ground'),(1243,'flying'),(1244,'ground'),(1245,'ground'),(1246,'water2'),(1247,'water2'),(1248,'water2'),(1249,'ground'),(1250,'water1'),(1251,'ground'),(1252,'ground'),(1253,'ground'),(1254,'humanshape'),(1255,'no-eggs'),(1256,'no-eggs'),(1257,'no-eggs'),(1258,'no-eggs'),(1259,'no-eggs'),(1260,'no-eggs'),(1261,'no-eggs'),(1262,'no-eggs'),(1263,'no-eggs'),(1264,'no-eggs'),(1265,'no-eggs'),(1266,'no-eggs'),(1267,'dragon'),(1268,'mineral'),(1269,'dragon'),(1270,'mineral'),(1271,'dragon'),(1272,'mineral'),(1273,'no-eggs'),(1274,'no-eggs'),(1275,'no-eggs'),(1276,'no-eggs'),(1277,'no-eggs'),(1278,'no-eggs'),(1279,'no-eggs'),(1280,'no-eggs'),(1281,'no-eggs'),(1282,'no-eggs'),(1283,'no-eggs'),(1284,'no-eggs'); +/*!40000 ALTER TABLE `egg_groups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `evolution_chains` +-- + +DROP TABLE IF EXISTS `evolution_chains`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `evolution_chains` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `chain_url` varchar(255) NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `evolution_chains` +-- + +LOCK TABLES `evolution_chains` WRITE; +/*!40000 ALTER TABLE `evolution_chains` DISABLE KEYS */; +/*!40000 ALTER TABLE `evolution_chains` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `pokemon` +-- + +DROP TABLE IF EXISTS `pokemon`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `pokemon` ( + `id` int(11) NOT NULL, + `name` varchar(100) NOT NULL, + `height` int(11) DEFAULT NULL, + `weight` int(11) DEFAULT NULL, + `base_experience` int(11) DEFAULT NULL, + `species_url` varchar(255) DEFAULT NULL, + `image_url` varchar(255) DEFAULT NULL, + `image_url_low` varchar(255) DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `pokemon` +-- + +LOCK TABLES `pokemon` WRITE; +/*!40000 ALTER TABLE `pokemon` DISABLE KEYS */; +INSERT INTO `pokemon` VALUES (1,'bulbasaur',7,69,64,NULL,'./images/1.png','./small-images/1.png'),(2,'ivysaur',10,130,142,NULL,'./images/2.png','./small-images/2.png'),(3,'venusaur',20,1000,263,NULL,'./images/3.png','./small-images/3.png'),(4,'charmander',6,85,62,NULL,'./images/4.png','./small-images/4.png'),(5,'charmeleon',11,190,142,NULL,'./images/5.png','./small-images/5.png'),(6,'charizard',17,905,267,NULL,'./images/6.png','./small-images/6.png'),(7,'squirtle',5,90,63,NULL,'./images/7.png','./small-images/7.png'),(8,'wartortle',10,225,142,NULL,'./images/8.png','./small-images/8.png'),(9,'blastoise',16,855,265,NULL,'./images/9.png','./small-images/9.png'),(10,'caterpie',3,29,39,NULL,'./images/10.png','./small-images/10.png'),(11,'metapod',7,99,72,NULL,'./images/11.png','./small-images/11.png'),(12,'butterfree',11,320,198,NULL,'./images/12.png','./small-images/12.png'),(13,'weedle',3,32,39,NULL,'./images/13.png','./small-images/13.png'),(14,'kakuna',6,100,72,NULL,'./images/14.png','./small-images/14.png'),(15,'beedrill',10,295,178,NULL,'./images/15.png','./small-images/15.png'),(16,'pidgey',3,18,50,NULL,'./images/16.png','./small-images/16.png'),(17,'pidgeotto',11,300,122,NULL,'./images/17.png','./small-images/17.png'),(18,'pidgeot',15,395,216,NULL,'./images/18.png','./small-images/18.png'),(19,'rattata',3,35,51,NULL,'./images/19.png','./small-images/19.png'),(20,'raticate',7,185,145,NULL,'./images/20.png','./small-images/20.png'),(21,'spearow',3,20,52,NULL,'./images/21.png','./small-images/21.png'),(22,'fearow',12,380,155,NULL,'./images/22.png','./small-images/22.png'),(23,'ekans',20,69,58,NULL,'./images/23.png','./small-images/23.png'),(24,'arbok',35,650,157,NULL,'./images/24.png','./small-images/24.png'),(25,'pikachu',4,60,112,NULL,'./images/25.png','./small-images/25.png'),(26,'raichu',8,300,243,NULL,'./images/26.png','./small-images/26.png'),(27,'sandshrew',6,120,60,NULL,'./images/27.png','./small-images/27.png'),(28,'sandslash',10,295,158,NULL,'./images/28.png','./small-images/28.png'),(29,'nidoran-f',4,70,55,NULL,'./images/29.png','./small-images/29.png'),(30,'nidorina',8,200,128,NULL,'./images/30.png','./small-images/30.png'),(31,'nidoqueen',13,600,253,NULL,'./images/31.png','./small-images/31.png'),(32,'nidoran-m',5,90,55,NULL,'./images/32.png','./small-images/32.png'),(33,'nidorino',9,195,128,NULL,'./images/33.png','./small-images/33.png'),(34,'nidoking',14,620,253,NULL,'./images/34.png','./small-images/34.png'),(35,'clefairy',6,75,113,NULL,'./images/35.png','./small-images/35.png'),(36,'clefable',13,400,242,NULL,'./images/36.png','./small-images/36.png'),(37,'vulpix',6,99,60,NULL,'./images/37.png','./small-images/37.png'),(38,'ninetales',11,199,177,NULL,'./images/38.png','./small-images/38.png'),(39,'jigglypuff',5,55,95,NULL,'./images/39.png','./small-images/39.png'),(40,'wigglytuff',10,120,218,NULL,'./images/40.png','./small-images/40.png'),(41,'zubat',8,75,49,NULL,'./images/41.png','./small-images/41.png'),(42,'golbat',16,550,159,NULL,'./images/42.png','./small-images/42.png'),(43,'oddish',5,54,64,NULL,'./images/43.png','./small-images/43.png'),(44,'gloom',8,86,138,NULL,'./images/44.png','./small-images/44.png'),(45,'vileplume',12,186,245,NULL,'./images/45.png','./small-images/45.png'),(46,'paras',3,54,57,NULL,'./images/46.png','./small-images/46.png'),(47,'parasect',10,295,142,NULL,'./images/47.png','./small-images/47.png'),(48,'venonat',10,300,61,NULL,'./images/48.png','./small-images/48.png'),(49,'venomoth',15,125,158,NULL,'./images/49.png','./small-images/49.png'),(50,'diglett',2,8,53,NULL,'./images/50.png','./small-images/50.png'),(51,'dugtrio',7,333,149,NULL,'./images/51.png','./small-images/51.png'),(52,'meowth',4,42,58,NULL,'./images/52.png','./small-images/52.png'),(53,'persian',10,320,154,NULL,'./images/53.png','./small-images/53.png'),(54,'psyduck',8,196,64,NULL,'./images/54.png','./small-images/54.png'),(55,'golduck',17,766,175,NULL,'./images/55.png','./small-images/55.png'),(56,'mankey',5,280,61,NULL,'./images/56.png','./small-images/56.png'),(57,'primeape',10,320,159,NULL,'./images/57.png','./small-images/57.png'),(58,'growlithe',7,190,70,NULL,'./images/58.png','./small-images/58.png'),(59,'arcanine',19,1550,194,NULL,'./images/59.png','./small-images/59.png'),(60,'poliwag',6,124,60,NULL,'./images/60.png','./small-images/60.png'),(61,'poliwhirl',10,200,135,NULL,'./images/61.png','./small-images/61.png'),(62,'poliwrath',13,540,255,NULL,'./images/62.png','./small-images/62.png'),(63,'abra',9,195,62,NULL,'./images/63.png','./small-images/63.png'),(64,'kadabra',13,565,140,NULL,'./images/64.png','./small-images/64.png'),(65,'alakazam',15,480,250,NULL,'./images/65.png','./small-images/65.png'),(66,'machop',8,195,61,NULL,'./images/66.png','./small-images/66.png'),(67,'machoke',15,705,142,NULL,'./images/67.png','./small-images/67.png'),(68,'machamp',16,1300,253,NULL,'./images/68.png','./small-images/68.png'),(69,'bellsprout',7,40,60,NULL,'./images/69.png','./small-images/69.png'),(70,'weepinbell',10,64,137,NULL,'./images/70.png','./small-images/70.png'),(71,'victreebel',17,155,221,NULL,'./images/71.png','./small-images/71.png'),(72,'tentacool',9,455,67,NULL,'./images/72.png','./small-images/72.png'),(73,'tentacruel',16,550,180,NULL,'./images/73.png','./small-images/73.png'),(74,'geodude',4,200,60,NULL,'./images/74.png','./small-images/74.png'),(75,'graveler',10,1050,137,NULL,'./images/75.png','./small-images/75.png'),(76,'golem',14,3000,223,NULL,'./images/76.png','./small-images/76.png'),(77,'ponyta',10,300,82,NULL,'./images/77.png','./small-images/77.png'),(78,'rapidash',17,950,175,NULL,'./images/78.png','./small-images/78.png'),(79,'slowpoke',12,360,63,NULL,'./images/79.png','./small-images/79.png'),(80,'slowbro',16,785,172,NULL,'./images/80.png','./small-images/80.png'),(81,'magnemite',3,60,65,NULL,'./images/81.png','./small-images/81.png'),(82,'magneton',10,600,163,NULL,'./images/82.png','./small-images/82.png'),(83,'farfetchd',8,150,132,NULL,'./images/83.png','./small-images/83.png'),(84,'doduo',14,392,62,NULL,'./images/84.png','./small-images/84.png'),(85,'dodrio',18,852,165,NULL,'./images/85.png','./small-images/85.png'),(86,'seel',11,900,65,NULL,'./images/86.png','./small-images/86.png'),(87,'dewgong',17,1200,166,NULL,'./images/87.png','./small-images/87.png'),(88,'grimer',9,300,65,NULL,'./images/88.png','./small-images/88.png'),(89,'muk',12,300,175,NULL,'./images/89.png','./small-images/89.png'),(90,'shellder',3,40,61,NULL,'./images/90.png','./small-images/90.png'),(91,'cloyster',15,1325,184,NULL,'./images/91.png','./small-images/91.png'),(92,'gastly',13,1,62,NULL,'./images/92.png','./small-images/92.png'),(93,'haunter',16,1,142,NULL,'./images/93.png','./small-images/93.png'),(94,'gengar',15,405,250,NULL,'./images/94.png','./small-images/94.png'),(95,'onix',88,2100,77,NULL,'./images/95.png','./small-images/95.png'),(96,'drowzee',10,324,66,NULL,'./images/96.png','./small-images/96.png'),(97,'hypno',16,756,169,NULL,'./images/97.png','./small-images/97.png'),(98,'krabby',4,65,65,NULL,'./images/98.png','./small-images/98.png'),(99,'kingler',13,600,166,NULL,'./images/99.png','./small-images/99.png'),(100,'voltorb',5,104,66,NULL,'./images/100.png','./small-images/100.png'),(101,'electrode',12,666,172,NULL,'./images/101.png','./small-images/101.png'),(102,'exeggcute',4,25,65,NULL,'./images/102.png','./small-images/102.png'),(103,'exeggutor',20,1200,186,NULL,'./images/103.png','./small-images/103.png'),(104,'cubone',4,65,64,NULL,'./images/104.png','./small-images/104.png'),(105,'marowak',10,450,149,NULL,'./images/105.png','./small-images/105.png'),(106,'hitmonlee',15,498,159,NULL,'./images/106.png','./small-images/106.png'),(107,'hitmonchan',14,502,159,NULL,'./images/107.png','./small-images/107.png'),(108,'lickitung',12,655,77,NULL,'./images/108.png','./small-images/108.png'),(109,'koffing',6,10,68,NULL,'./images/109.png','./small-images/109.png'),(110,'weezing',12,95,172,NULL,'./images/110.png','./small-images/110.png'),(111,'rhyhorn',10,1150,69,NULL,'./images/111.png','./small-images/111.png'),(112,'rhydon',19,1200,170,NULL,'./images/112.png','./small-images/112.png'),(113,'chansey',11,346,395,NULL,'./images/113.png','./small-images/113.png'),(114,'tangela',10,350,87,NULL,'./images/114.png','./small-images/114.png'),(115,'kangaskhan',22,800,172,NULL,'./images/115.png','./small-images/115.png'),(116,'horsea',4,80,59,NULL,'./images/116.png','./small-images/116.png'),(117,'seadra',12,250,154,NULL,'./images/117.png','./small-images/117.png'),(118,'goldeen',6,150,64,NULL,'./images/118.png','./small-images/118.png'),(119,'seaking',13,390,158,NULL,'./images/119.png','./small-images/119.png'),(120,'staryu',8,345,68,NULL,'./images/120.png','./small-images/120.png'),(121,'starmie',11,800,182,NULL,'./images/121.png','./small-images/121.png'),(122,'mr-mime',13,545,161,NULL,'./images/122.png','./small-images/122.png'),(123,'scyther',15,560,100,NULL,'./images/123.png','./small-images/123.png'),(124,'jynx',14,406,159,NULL,'./images/124.png','./small-images/124.png'),(125,'electabuzz',11,300,172,NULL,'./images/125.png','./small-images/125.png'),(126,'magmar',13,445,173,NULL,'./images/126.png','./small-images/126.png'),(127,'pinsir',15,550,175,NULL,'./images/127.png','./small-images/127.png'),(128,'tauros',14,884,172,NULL,'./images/128.png','./small-images/128.png'),(129,'magikarp',9,100,40,NULL,'./images/129.png','./small-images/129.png'),(130,'gyarados',65,2350,189,NULL,'./images/130.png','./small-images/130.png'),(131,'lapras',25,2200,187,NULL,'./images/131.png','./small-images/131.png'),(132,'ditto',3,40,101,NULL,'./images/132.png','./small-images/132.png'),(133,'eevee',3,65,65,NULL,'./images/133.png','./small-images/133.png'),(134,'vaporeon',10,290,184,NULL,'./images/134.png','./small-images/134.png'),(135,'jolteon',8,245,184,NULL,'./images/135.png','./small-images/135.png'),(136,'flareon',9,250,184,NULL,'./images/136.png','./small-images/136.png'),(137,'porygon',8,365,79,NULL,'./images/137.png','./small-images/137.png'),(138,'omanyte',4,75,71,NULL,'./images/138.png','./small-images/138.png'),(139,'omastar',10,350,173,NULL,'./images/139.png','./small-images/139.png'),(140,'kabuto',5,115,71,NULL,'./images/140.png','./small-images/140.png'),(141,'kabutops',13,405,173,NULL,'./images/141.png','./small-images/141.png'),(142,'aerodactyl',18,590,180,NULL,'./images/142.png','./small-images/142.png'),(143,'snorlax',21,4600,189,NULL,'./images/143.png','./small-images/143.png'),(144,'articuno',17,554,290,NULL,'./images/144.png','./small-images/144.png'),(145,'zapdos',16,526,290,NULL,'./images/145.png','./small-images/145.png'),(146,'moltres',20,600,290,NULL,'./images/146.png','./small-images/146.png'),(147,'dratini',18,33,60,NULL,'./images/147.png','./small-images/147.png'),(148,'dragonair',40,165,147,NULL,'./images/148.png','./small-images/148.png'),(149,'dragonite',22,2100,300,NULL,'./images/149.png','./small-images/149.png'),(150,'mewtwo',20,1220,340,NULL,'./images/150.png','./small-images/150.png'),(151,'mew',4,40,300,NULL,'./images/151.png','./small-images/151.png'),(152,'chikorita',9,64,64,NULL,'./images/152.png','./small-images/152.png'),(153,'bayleef',12,158,142,NULL,'./images/153.png','./small-images/153.png'),(154,'meganium',18,1005,236,NULL,'./images/154.png','./small-images/154.png'),(155,'cyndaquil',5,79,62,NULL,'./images/155.png','./small-images/155.png'),(156,'quilava',9,190,142,NULL,'./images/156.png','./small-images/156.png'),(157,'typhlosion',17,795,240,NULL,'./images/157.png','./small-images/157.png'),(158,'totodile',6,95,63,NULL,'./images/158.png','./small-images/158.png'),(159,'croconaw',11,250,142,NULL,'./images/159.png','./small-images/159.png'),(160,'feraligatr',23,888,239,NULL,'./images/160.png','./small-images/160.png'),(161,'sentret',8,60,43,NULL,'./images/161.png','./small-images/161.png'),(162,'furret',18,325,145,NULL,'./images/162.png','./small-images/162.png'),(163,'hoothoot',7,212,52,NULL,'./images/163.png','./small-images/163.png'),(164,'noctowl',16,408,158,NULL,'./images/164.png','./small-images/164.png'),(165,'ledyba',10,108,53,NULL,'./images/165.png','./small-images/165.png'),(166,'ledian',14,356,137,NULL,'./images/166.png','./small-images/166.png'),(167,'spinarak',5,85,50,NULL,'./images/167.png','./small-images/167.png'),(168,'ariados',11,335,140,NULL,'./images/168.png','./small-images/168.png'),(169,'crobat',18,750,268,NULL,'./images/169.png','./small-images/169.png'),(170,'chinchou',5,120,66,NULL,'./images/170.png','./small-images/170.png'),(171,'lanturn',12,225,161,NULL,'./images/171.png','./small-images/171.png'),(172,'pichu',3,20,41,NULL,'./images/172.png','./small-images/172.png'),(173,'cleffa',3,30,44,NULL,'./images/173.png','./small-images/173.png'),(174,'igglybuff',3,10,42,NULL,'./images/174.png','./small-images/174.png'),(175,'togepi',3,15,49,NULL,'./images/175.png','./small-images/175.png'),(176,'togetic',6,32,142,NULL,'./images/176.png','./small-images/176.png'),(177,'natu',2,20,64,NULL,'./images/177.png','./small-images/177.png'),(178,'xatu',15,150,165,NULL,'./images/178.png','./small-images/178.png'),(179,'mareep',6,78,56,NULL,'./images/179.png','./small-images/179.png'),(180,'flaaffy',8,133,128,NULL,'./images/180.png','./small-images/180.png'),(181,'ampharos',14,615,230,NULL,'./images/181.png','./small-images/181.png'),(182,'bellossom',4,58,245,NULL,'./images/182.png','./small-images/182.png'),(183,'marill',4,85,88,NULL,'./images/183.png','./small-images/183.png'),(184,'azumarill',8,285,210,NULL,'./images/184.png','./small-images/184.png'),(185,'sudowoodo',12,380,144,NULL,'./images/185.png','./small-images/185.png'),(186,'politoed',11,339,250,NULL,'./images/186.png','./small-images/186.png'),(187,'hoppip',4,5,50,NULL,'./images/187.png','./small-images/187.png'),(188,'skiploom',6,10,119,NULL,'./images/188.png','./small-images/188.png'),(189,'jumpluff',8,30,207,NULL,'./images/189.png','./small-images/189.png'),(190,'aipom',8,115,72,NULL,'./images/190.png','./small-images/190.png'),(191,'sunkern',3,18,36,NULL,'./images/191.png','./small-images/191.png'),(192,'sunflora',8,85,149,NULL,'./images/192.png','./small-images/192.png'),(193,'yanma',12,380,78,NULL,'./images/193.png','./small-images/193.png'),(194,'wooper',4,85,42,NULL,'./images/194.png','./small-images/194.png'),(195,'quagsire',14,750,151,NULL,'./images/195.png','./small-images/195.png'),(196,'espeon',9,265,184,NULL,'./images/196.png','./small-images/196.png'),(197,'umbreon',10,270,184,NULL,'./images/197.png','./small-images/197.png'),(198,'murkrow',5,21,81,NULL,'./images/198.png','./small-images/198.png'),(199,'slowking',20,795,172,NULL,'./images/199.png','./small-images/199.png'),(200,'misdreavus',7,10,87,NULL,'./images/200.png','./small-images/200.png'),(201,'unown',5,50,118,NULL,'./images/201.png','./small-images/201.png'),(202,'wobbuffet',13,285,142,NULL,'./images/202.png','./small-images/202.png'),(203,'girafarig',15,415,159,NULL,'./images/203.png','./small-images/203.png'),(204,'pineco',6,72,58,NULL,'./images/204.png','./small-images/204.png'),(205,'forretress',12,1258,163,NULL,'./images/205.png','./small-images/205.png'),(206,'dunsparce',15,140,145,NULL,'./images/206.png','./small-images/206.png'),(207,'gligar',11,648,86,NULL,'./images/207.png','./small-images/207.png'),(208,'steelix',92,4000,179,NULL,'./images/208.png','./small-images/208.png'),(209,'snubbull',6,78,60,NULL,'./images/209.png','./small-images/209.png'),(210,'granbull',14,487,158,NULL,'./images/210.png','./small-images/210.png'),(211,'qwilfish',5,39,88,NULL,'./images/211.png','./small-images/211.png'),(212,'scizor',18,1180,175,NULL,'./images/212.png','./small-images/212.png'),(213,'shuckle',6,205,177,NULL,'./images/213.png','./small-images/213.png'),(214,'heracross',15,540,175,NULL,'./images/214.png','./small-images/214.png'),(215,'sneasel',9,280,86,NULL,'./images/215.png','./small-images/215.png'),(216,'teddiursa',6,88,66,NULL,'./images/216.png','./small-images/216.png'),(217,'ursaring',18,1258,175,NULL,'./images/217.png','./small-images/217.png'),(218,'slugma',7,350,50,NULL,'./images/218.png','./small-images/218.png'),(219,'magcargo',8,550,151,NULL,'./images/219.png','./small-images/219.png'),(220,'swinub',4,65,50,NULL,'./images/220.png','./small-images/220.png'),(221,'piloswine',11,558,158,NULL,'./images/221.png','./small-images/221.png'),(222,'corsola',6,50,144,NULL,'./images/222.png','./small-images/222.png'),(223,'remoraid',6,120,60,NULL,'./images/223.png','./small-images/223.png'),(224,'octillery',9,285,168,NULL,'./images/224.png','./small-images/224.png'),(225,'delibird',9,160,116,NULL,'./images/225.png','./small-images/225.png'),(226,'mantine',21,2200,170,NULL,'./images/226.png','./small-images/226.png'),(227,'skarmory',17,505,163,NULL,'./images/227.png','./small-images/227.png'),(228,'houndour',6,108,66,NULL,'./images/228.png','./small-images/228.png'),(229,'houndoom',14,350,175,NULL,'./images/229.png','./small-images/229.png'),(230,'kingdra',18,1520,270,NULL,'./images/230.png','./small-images/230.png'),(231,'phanpy',5,335,66,NULL,'./images/231.png','./small-images/231.png'),(232,'donphan',11,1200,175,NULL,'./images/232.png','./small-images/232.png'),(233,'porygon2',6,325,180,NULL,'./images/233.png','./small-images/233.png'),(234,'stantler',14,712,163,NULL,'./images/234.png','./small-images/234.png'),(235,'smeargle',12,580,88,NULL,'./images/235.png','./small-images/235.png'),(236,'tyrogue',7,210,42,NULL,'./images/236.png','./small-images/236.png'),(237,'hitmontop',14,480,159,NULL,'./images/237.png','./small-images/237.png'),(238,'smoochum',4,60,61,NULL,'./images/238.png','./small-images/238.png'),(239,'elekid',6,235,72,NULL,'./images/239.png','./small-images/239.png'),(240,'magby',7,214,73,NULL,'./images/240.png','./small-images/240.png'),(241,'miltank',12,755,172,NULL,'./images/241.png','./small-images/241.png'),(242,'blissey',15,468,635,NULL,'./images/242.png','./small-images/242.png'),(243,'raikou',19,1780,290,NULL,'./images/243.png','./small-images/243.png'),(244,'entei',21,1980,290,NULL,'./images/244.png','./small-images/244.png'),(245,'suicune',20,1870,290,NULL,'./images/245.png','./small-images/245.png'),(246,'larvitar',6,720,60,NULL,'./images/246.png','./small-images/246.png'),(247,'pupitar',12,1520,144,NULL,'./images/247.png','./small-images/247.png'),(248,'tyranitar',20,2020,300,NULL,'./images/248.png','./small-images/248.png'),(249,'lugia',52,2160,340,NULL,'./images/249.png','./small-images/249.png'),(250,'ho-oh',38,1990,340,NULL,'./images/250.png','./small-images/250.png'),(251,'celebi',6,50,300,NULL,'./images/251.png','./small-images/251.png'),(252,'treecko',5,50,62,NULL,'./images/252.png','./small-images/252.png'),(253,'grovyle',9,216,142,NULL,'./images/253.png','./small-images/253.png'),(254,'sceptile',17,522,265,NULL,'./images/254.png','./small-images/254.png'),(255,'torchic',4,25,62,NULL,'./images/255.png','./small-images/255.png'),(256,'combusken',9,195,142,NULL,'./images/256.png','./small-images/256.png'),(257,'blaziken',19,520,265,NULL,'./images/257.png','./small-images/257.png'),(258,'mudkip',4,76,62,NULL,'./images/258.png','./small-images/258.png'),(259,'marshtomp',7,280,142,NULL,'./images/259.png','./small-images/259.png'),(260,'swampert',15,819,268,NULL,'./images/260.png','./small-images/260.png'),(261,'poochyena',5,136,56,NULL,'./images/261.png','./small-images/261.png'),(262,'mightyena',10,370,147,NULL,'./images/262.png','./small-images/262.png'),(263,'zigzagoon',4,175,56,NULL,'./images/263.png','./small-images/263.png'),(264,'linoone',5,325,147,NULL,'./images/264.png','./small-images/264.png'),(265,'wurmple',3,36,56,NULL,'./images/265.png','./small-images/265.png'),(266,'silcoon',6,100,72,NULL,'./images/266.png','./small-images/266.png'),(267,'beautifly',10,284,178,NULL,'./images/267.png','./small-images/267.png'),(268,'cascoon',7,115,72,NULL,'./images/268.png','./small-images/268.png'),(269,'dustox',12,316,173,NULL,'./images/269.png','./small-images/269.png'),(270,'lotad',5,26,44,NULL,'./images/270.png','./small-images/270.png'),(271,'lombre',12,325,119,NULL,'./images/271.png','./small-images/271.png'),(272,'ludicolo',15,550,240,NULL,'./images/272.png','./small-images/272.png'),(273,'seedot',5,40,44,NULL,'./images/273.png','./small-images/273.png'),(274,'nuzleaf',10,280,119,NULL,'./images/274.png','./small-images/274.png'),(275,'shiftry',13,596,240,NULL,'./images/275.png','./small-images/275.png'),(276,'taillow',3,23,54,NULL,'./images/276.png','./small-images/276.png'),(277,'swellow',7,198,159,NULL,'./images/277.png','./small-images/277.png'),(278,'wingull',6,95,54,NULL,'./images/278.png','./small-images/278.png'),(279,'pelipper',12,280,154,NULL,'./images/279.png','./small-images/279.png'),(280,'ralts',4,66,40,NULL,'./images/280.png','./small-images/280.png'),(281,'kirlia',8,202,97,NULL,'./images/281.png','./small-images/281.png'),(282,'gardevoir',16,484,259,NULL,'./images/282.png','./small-images/282.png'),(283,'surskit',5,17,54,NULL,'./images/283.png','./small-images/283.png'),(284,'masquerain',8,36,159,NULL,'./images/284.png','./small-images/284.png'),(285,'shroomish',4,45,59,NULL,'./images/285.png','./small-images/285.png'),(286,'breloom',12,392,161,NULL,'./images/286.png','./small-images/286.png'),(287,'slakoth',8,240,56,NULL,'./images/287.png','./small-images/287.png'),(288,'vigoroth',14,465,154,NULL,'./images/288.png','./small-images/288.png'),(289,'slaking',20,1305,252,NULL,'./images/289.png','./small-images/289.png'),(290,'nincada',5,55,53,NULL,'./images/290.png','./small-images/290.png'),(291,'ninjask',8,120,160,NULL,'./images/291.png','./small-images/291.png'),(292,'shedinja',8,12,83,NULL,'./images/292.png','./small-images/292.png'),(293,'whismur',6,163,48,NULL,'./images/293.png','./small-images/293.png'),(294,'loudred',10,405,126,NULL,'./images/294.png','./small-images/294.png'),(295,'exploud',15,840,245,NULL,'./images/295.png','./small-images/295.png'),(296,'makuhita',10,864,47,NULL,'./images/296.png','./small-images/296.png'),(297,'hariyama',23,2538,166,NULL,'./images/297.png','./small-images/297.png'),(298,'azurill',2,20,38,NULL,'./images/298.png','./small-images/298.png'),(299,'nosepass',10,970,75,NULL,'./images/299.png','./small-images/299.png'),(300,'skitty',6,110,52,NULL,'./images/300.png','./small-images/300.png'),(301,'delcatty',11,326,140,NULL,'./images/301.png','./small-images/301.png'),(302,'sableye',5,110,133,NULL,'./images/302.png','./small-images/302.png'),(303,'mawile',6,115,133,NULL,'./images/303.png','./small-images/303.png'),(304,'aron',4,600,66,NULL,'./images/304.png','./small-images/304.png'),(305,'lairon',9,1200,151,NULL,'./images/305.png','./small-images/305.png'),(306,'aggron',21,3600,265,NULL,'./images/306.png','./small-images/306.png'),(307,'meditite',6,112,56,NULL,'./images/307.png','./small-images/307.png'),(308,'medicham',13,315,144,NULL,'./images/308.png','./small-images/308.png'),(309,'electrike',6,152,59,NULL,'./images/309.png','./small-images/309.png'),(310,'manectric',15,402,166,NULL,'./images/310.png','./small-images/310.png'),(311,'plusle',4,42,142,NULL,'./images/311.png','./small-images/311.png'),(312,'minun',4,42,142,NULL,'./images/312.png','./small-images/312.png'),(313,'volbeat',7,177,151,NULL,'./images/313.png','./small-images/313.png'),(314,'illumise',6,177,151,NULL,'./images/314.png','./small-images/314.png'),(315,'roselia',3,20,140,NULL,'./images/315.png','./small-images/315.png'),(316,'gulpin',4,103,60,NULL,'./images/316.png','./small-images/316.png'),(317,'swalot',17,800,163,NULL,'./images/317.png','./small-images/317.png'),(318,'carvanha',8,208,61,NULL,'./images/318.png','./small-images/318.png'),(319,'sharpedo',18,888,161,NULL,'./images/319.png','./small-images/319.png'),(320,'wailmer',20,1300,80,NULL,'./images/320.png','./small-images/320.png'),(321,'wailord',145,3980,175,NULL,'./images/321.png','./small-images/321.png'),(322,'numel',7,240,61,NULL,'./images/322.png','./small-images/322.png'),(323,'camerupt',19,2200,161,NULL,'./images/323.png','./small-images/323.png'),(324,'torkoal',5,804,165,NULL,'./images/324.png','./small-images/324.png'),(325,'spoink',7,306,66,NULL,'./images/325.png','./small-images/325.png'),(326,'grumpig',9,715,165,NULL,'./images/326.png','./small-images/326.png'),(327,'spinda',11,50,126,NULL,'./images/327.png','./small-images/327.png'),(328,'trapinch',7,150,58,NULL,'./images/328.png','./small-images/328.png'),(329,'vibrava',11,153,119,NULL,'./images/329.png','./small-images/329.png'),(330,'flygon',20,820,260,NULL,'./images/330.png','./small-images/330.png'),(331,'cacnea',4,513,67,NULL,'./images/331.png','./small-images/331.png'),(332,'cacturne',13,774,166,NULL,'./images/332.png','./small-images/332.png'),(333,'swablu',4,12,62,NULL,'./images/333.png','./small-images/333.png'),(334,'altaria',11,206,172,NULL,'./images/334.png','./small-images/334.png'),(335,'zangoose',13,403,160,NULL,'./images/335.png','./small-images/335.png'),(336,'seviper',27,525,160,NULL,'./images/336.png','./small-images/336.png'),(337,'lunatone',10,1680,161,NULL,'./images/337.png','./small-images/337.png'),(338,'solrock',12,1540,161,NULL,'./images/338.png','./small-images/338.png'),(339,'barboach',4,19,58,NULL,'./images/339.png','./small-images/339.png'),(340,'whiscash',9,236,164,NULL,'./images/340.png','./small-images/340.png'),(341,'corphish',6,115,62,NULL,'./images/341.png','./small-images/341.png'),(342,'crawdaunt',11,328,164,NULL,'./images/342.png','./small-images/342.png'),(343,'baltoy',5,215,60,NULL,'./images/343.png','./small-images/343.png'),(344,'claydol',15,1080,175,NULL,'./images/344.png','./small-images/344.png'),(345,'lileep',10,238,71,NULL,'./images/345.png','./small-images/345.png'),(346,'cradily',15,604,173,NULL,'./images/346.png','./small-images/346.png'),(347,'anorith',7,125,71,NULL,'./images/347.png','./small-images/347.png'),(348,'armaldo',15,682,173,NULL,'./images/348.png','./small-images/348.png'),(349,'feebas',6,74,40,NULL,'./images/349.png','./small-images/349.png'),(350,'milotic',62,1620,189,NULL,'./images/350.png','./small-images/350.png'),(351,'castform',3,8,147,NULL,'./images/351.png','./small-images/351.png'),(352,'kecleon',10,220,154,NULL,'./images/352.png','./small-images/352.png'),(353,'shuppet',6,23,59,NULL,'./images/353.png','./small-images/353.png'),(354,'banette',11,125,159,NULL,'./images/354.png','./small-images/354.png'),(355,'duskull',8,150,59,NULL,'./images/355.png','./small-images/355.png'),(356,'dusclops',16,306,159,NULL,'./images/356.png','./small-images/356.png'),(357,'tropius',20,1000,161,NULL,'./images/357.png','./small-images/357.png'),(358,'chimecho',6,10,159,NULL,'./images/358.png','./small-images/358.png'),(359,'absol',12,470,163,NULL,'./images/359.png','./small-images/359.png'),(360,'wynaut',6,140,52,NULL,'./images/360.png','./small-images/360.png'),(361,'snorunt',7,168,60,NULL,'./images/361.png','./small-images/361.png'),(362,'glalie',15,2565,168,NULL,'./images/362.png','./small-images/362.png'),(363,'spheal',8,395,58,NULL,'./images/363.png','./small-images/363.png'),(364,'sealeo',11,876,144,NULL,'./images/364.png','./small-images/364.png'),(365,'walrein',14,1506,265,NULL,'./images/365.png','./small-images/365.png'),(366,'clamperl',4,525,69,NULL,'./images/366.png','./small-images/366.png'),(367,'huntail',17,270,170,NULL,'./images/367.png','./small-images/367.png'),(368,'gorebyss',18,226,170,NULL,'./images/368.png','./small-images/368.png'),(369,'relicanth',10,234,170,NULL,'./images/369.png','./small-images/369.png'),(370,'luvdisc',6,87,116,NULL,'./images/370.png','./small-images/370.png'),(371,'bagon',6,421,60,NULL,'./images/371.png','./small-images/371.png'),(372,'shelgon',11,1105,147,NULL,'./images/372.png','./small-images/372.png'),(373,'salamence',15,1026,300,NULL,'./images/373.png','./small-images/373.png'),(374,'beldum',6,952,60,NULL,'./images/374.png','./small-images/374.png'),(375,'metang',12,2025,147,NULL,'./images/375.png','./small-images/375.png'),(376,'metagross',16,5500,300,NULL,'./images/376.png','./small-images/376.png'),(377,'regirock',17,2300,290,NULL,'./images/377.png','./small-images/377.png'),(378,'regice',18,1750,290,NULL,'./images/378.png','./small-images/378.png'),(379,'registeel',19,2050,290,NULL,'./images/379.png','./small-images/379.png'),(380,'latias',14,400,300,NULL,'./images/380.png','./small-images/380.png'),(381,'latios',20,600,300,NULL,'./images/381.png','./small-images/381.png'),(382,'kyogre',45,3520,335,NULL,'./images/382.png','./small-images/382.png'),(383,'groudon',35,9500,335,NULL,'./images/383.png','./small-images/383.png'),(384,'rayquaza',70,2065,340,NULL,'./images/384.png','./small-images/384.png'),(385,'jirachi',3,11,300,NULL,'./images/385.png','./small-images/385.png'),(386,'deoxys-normal',17,608,270,NULL,'./images/386.png','./small-images/386.png'),(387,'turtwig',4,102,64,NULL,'./images/387.png','./small-images/387.png'),(388,'grotle',11,970,142,NULL,'./images/388.png','./small-images/388.png'),(389,'torterra',22,3100,236,NULL,'./images/389.png','./small-images/389.png'),(390,'chimchar',5,62,62,NULL,'./images/390.png','./small-images/390.png'),(391,'monferno',9,220,142,NULL,'./images/391.png','./small-images/391.png'),(392,'infernape',12,550,240,NULL,'./images/392.png','./small-images/392.png'),(393,'piplup',4,52,63,NULL,'./images/393.png','./small-images/393.png'),(394,'prinplup',8,230,142,NULL,'./images/394.png','./small-images/394.png'),(395,'empoleon',17,845,239,NULL,'./images/395.png','./small-images/395.png'),(396,'starly',3,20,49,NULL,'./images/396.png','./small-images/396.png'),(397,'staravia',6,155,119,NULL,'./images/397.png','./small-images/397.png'),(398,'staraptor',12,249,218,NULL,'./images/398.png','./small-images/398.png'),(399,'bidoof',5,200,50,NULL,'./images/399.png','./small-images/399.png'),(400,'bibarel',10,315,144,NULL,'./images/400.png','./small-images/400.png'),(401,'kricketot',3,22,39,NULL,'./images/401.png','./small-images/401.png'),(402,'kricketune',10,255,134,NULL,'./images/402.png','./small-images/402.png'),(403,'shinx',5,95,53,NULL,'./images/403.png','./small-images/403.png'),(404,'luxio',9,305,127,NULL,'./images/404.png','./small-images/404.png'),(405,'luxray',14,420,262,NULL,'./images/405.png','./small-images/405.png'),(406,'budew',2,12,56,NULL,'./images/406.png','./small-images/406.png'),(407,'roserade',9,145,258,NULL,'./images/407.png','./small-images/407.png'),(408,'cranidos',9,315,70,NULL,'./images/408.png','./small-images/408.png'),(409,'rampardos',16,1025,173,NULL,'./images/409.png','./small-images/409.png'),(410,'shieldon',5,570,70,NULL,'./images/410.png','./small-images/410.png'),(411,'bastiodon',13,1495,173,NULL,'./images/411.png','./small-images/411.png'),(412,'burmy',2,34,45,NULL,'./images/412.png','./small-images/412.png'),(413,'wormadam-plant',5,65,148,NULL,'./images/413.png','./small-images/413.png'),(414,'mothim',9,233,148,NULL,'./images/414.png','./small-images/414.png'),(415,'combee',3,55,49,NULL,'./images/415.png','./small-images/415.png'),(416,'vespiquen',12,385,166,NULL,'./images/416.png','./small-images/416.png'),(417,'pachirisu',4,39,142,NULL,'./images/417.png','./small-images/417.png'),(418,'buizel',7,295,66,NULL,'./images/418.png','./small-images/418.png'),(419,'floatzel',11,335,173,NULL,'./images/419.png','./small-images/419.png'),(420,'cherubi',4,33,55,NULL,'./images/420.png','./small-images/420.png'),(421,'cherrim',5,93,158,NULL,'./images/421.png','./small-images/421.png'),(422,'shellos',3,63,65,NULL,'./images/422.png','./small-images/422.png'),(423,'gastrodon',9,299,166,NULL,'./images/423.png','./small-images/423.png'),(424,'ambipom',12,203,169,NULL,'./images/424.png','./small-images/424.png'),(425,'drifloon',4,12,70,NULL,'./images/425.png','./small-images/425.png'),(426,'drifblim',12,150,174,NULL,'./images/426.png','./small-images/426.png'),(427,'buneary',4,55,70,NULL,'./images/427.png','./small-images/427.png'),(428,'lopunny',12,333,168,NULL,'./images/428.png','./small-images/428.png'),(429,'mismagius',9,44,173,NULL,'./images/429.png','./small-images/429.png'),(430,'honchkrow',9,273,177,NULL,'./images/430.png','./small-images/430.png'),(431,'glameow',5,39,62,NULL,'./images/431.png','./small-images/431.png'),(432,'purugly',10,438,158,NULL,'./images/432.png','./small-images/432.png'),(433,'chingling',2,6,57,NULL,'./images/433.png','./small-images/433.png'),(434,'stunky',4,192,66,NULL,'./images/434.png','./small-images/434.png'),(435,'skuntank',10,380,168,NULL,'./images/435.png','./small-images/435.png'),(436,'bronzor',5,605,60,NULL,'./images/436.png','./small-images/436.png'),(437,'bronzong',13,1870,175,NULL,'./images/437.png','./small-images/437.png'),(438,'bonsly',5,150,58,NULL,'./images/438.png','./small-images/438.png'),(439,'mime-jr',6,130,62,NULL,'./images/439.png','./small-images/439.png'),(440,'happiny',6,244,110,NULL,'./images/440.png','./small-images/440.png'),(441,'chatot',5,19,144,NULL,'./images/441.png','./small-images/441.png'),(442,'spiritomb',10,1080,170,NULL,'./images/442.png','./small-images/442.png'),(443,'gible',7,205,60,NULL,'./images/443.png','./small-images/443.png'),(444,'gabite',14,560,144,NULL,'./images/444.png','./small-images/444.png'),(445,'garchomp',19,950,300,NULL,'./images/445.png','./small-images/445.png'),(446,'munchlax',6,1050,78,NULL,'./images/446.png','./small-images/446.png'),(447,'riolu',7,202,57,NULL,'./images/447.png','./small-images/447.png'),(448,'lucario',12,540,184,NULL,'./images/448.png','./small-images/448.png'),(449,'hippopotas',8,495,66,NULL,'./images/449.png','./small-images/449.png'),(450,'hippowdon',20,3000,184,NULL,'./images/450.png','./small-images/450.png'),(451,'skorupi',8,120,66,NULL,'./images/451.png','./small-images/451.png'),(452,'drapion',13,615,175,NULL,'./images/452.png','./small-images/452.png'),(453,'croagunk',7,230,60,NULL,'./images/453.png','./small-images/453.png'),(454,'toxicroak',13,444,172,NULL,'./images/454.png','./small-images/454.png'),(455,'carnivine',14,270,159,NULL,'./images/455.png','./small-images/455.png'),(456,'finneon',4,70,66,NULL,'./images/456.png','./small-images/456.png'),(457,'lumineon',12,240,161,NULL,'./images/457.png','./small-images/457.png'),(458,'mantyke',10,650,69,NULL,'./images/458.png','./small-images/458.png'),(459,'snover',10,505,67,NULL,'./images/459.png','./small-images/459.png'),(460,'abomasnow',22,1355,173,NULL,'./images/460.png','./small-images/460.png'),(461,'weavile',11,340,179,NULL,'./images/461.png','./small-images/461.png'),(462,'magnezone',12,1800,268,NULL,'./images/462.png','./small-images/462.png'),(463,'lickilicky',17,1400,180,NULL,'./images/463.png','./small-images/463.png'),(464,'rhyperior',24,2828,268,NULL,'./images/464.png','./small-images/464.png'),(465,'tangrowth',20,1286,187,NULL,'./images/465.png','./small-images/465.png'),(466,'electivire',18,1386,270,NULL,'./images/466.png','./small-images/466.png'),(467,'magmortar',16,680,270,NULL,'./images/467.png','./small-images/467.png'),(468,'togekiss',15,380,273,NULL,'./images/468.png','./small-images/468.png'),(469,'yanmega',19,515,180,NULL,'./images/469.png','./small-images/469.png'),(470,'leafeon',10,255,184,NULL,'./images/470.png','./small-images/470.png'),(471,'glaceon',8,259,184,NULL,'./images/471.png','./small-images/471.png'),(472,'gliscor',20,425,179,NULL,'./images/472.png','./small-images/472.png'),(473,'mamoswine',25,2910,265,NULL,'./images/473.png','./small-images/473.png'),(474,'porygon-z',9,340,268,NULL,'./images/474.png','./small-images/474.png'),(475,'gallade',16,520,259,NULL,'./images/475.png','./small-images/475.png'),(476,'probopass',14,3400,184,NULL,'./images/476.png','./small-images/476.png'),(477,'dusknoir',22,1066,263,NULL,'./images/477.png','./small-images/477.png'),(478,'froslass',13,266,168,NULL,'./images/478.png','./small-images/478.png'),(479,'rotom',3,3,154,NULL,'./images/479.png','./small-images/479.png'),(480,'uxie',3,3,290,NULL,'./images/480.png','./small-images/480.png'),(481,'mesprit',3,3,290,NULL,'./images/481.png','./small-images/481.png'),(482,'azelf',3,3,290,NULL,'./images/482.png','./small-images/482.png'),(483,'dialga',54,6830,340,NULL,'./images/483.png','./small-images/483.png'),(484,'palkia',42,3360,340,NULL,'./images/484.png','./small-images/484.png'),(485,'heatran',17,4300,300,NULL,'./images/485.png','./small-images/485.png'),(486,'regigigas',37,4200,335,NULL,'./images/486.png','./small-images/486.png'),(487,'giratina-altered',45,7500,340,NULL,'./images/487.png','./small-images/487.png'),(488,'cresselia',15,856,300,NULL,'./images/488.png','./small-images/488.png'),(489,'phione',4,31,216,NULL,'./images/489.png','./small-images/489.png'),(490,'manaphy',3,14,270,NULL,'./images/490.png','./small-images/490.png'),(491,'darkrai',15,505,270,NULL,'./images/491.png','./small-images/491.png'),(492,'shaymin-land',2,21,270,NULL,'./images/492.png','./small-images/492.png'),(493,'arceus',32,3200,324,NULL,'./images/493.png','./small-images/493.png'),(494,'victini',4,40,300,NULL,'./images/494.png','./small-images/494.png'),(495,'snivy',6,81,62,NULL,'./images/495.png','./small-images/495.png'),(496,'servine',8,160,145,NULL,'./images/496.png','./small-images/496.png'),(497,'serperior',33,630,238,NULL,'./images/497.png','./small-images/497.png'),(498,'tepig',5,99,62,NULL,'./images/498.png','./small-images/498.png'),(499,'pignite',10,555,146,NULL,'./images/499.png','./small-images/499.png'),(500,'emboar',16,1500,238,NULL,'./images/500.png','./small-images/500.png'),(501,'oshawott',5,59,62,NULL,'./images/501.png','./small-images/501.png'),(502,'dewott',8,245,145,NULL,'./images/502.png','./small-images/502.png'),(503,'samurott',15,946,238,NULL,'./images/503.png','./small-images/503.png'),(504,'patrat',5,116,51,NULL,'./images/504.png','./small-images/504.png'),(505,'watchog',11,270,147,NULL,'./images/505.png','./small-images/505.png'),(506,'lillipup',4,41,55,NULL,'./images/506.png','./small-images/506.png'),(507,'herdier',9,147,130,NULL,'./images/507.png','./small-images/507.png'),(508,'stoutland',12,610,250,NULL,'./images/508.png','./small-images/508.png'),(509,'purrloin',4,101,56,NULL,'./images/509.png','./small-images/509.png'),(510,'liepard',11,375,156,NULL,'./images/510.png','./small-images/510.png'),(511,'pansage',6,105,63,NULL,'./images/511.png','./small-images/511.png'),(512,'simisage',11,305,174,NULL,'./images/512.png','./small-images/512.png'),(513,'pansear',6,110,63,NULL,'./images/513.png','./small-images/513.png'),(514,'simisear',10,280,174,NULL,'./images/514.png','./small-images/514.png'),(515,'panpour',6,135,63,NULL,'./images/515.png','./small-images/515.png'),(516,'simipour',10,290,174,NULL,'./images/516.png','./small-images/516.png'),(517,'munna',6,233,58,NULL,'./images/517.png','./small-images/517.png'),(518,'musharna',11,605,170,NULL,'./images/518.png','./small-images/518.png'),(519,'pidove',3,21,53,NULL,'./images/519.png','./small-images/519.png'),(520,'tranquill',6,150,125,NULL,'./images/520.png','./small-images/520.png'),(521,'unfezant',12,290,244,NULL,'./images/521.png','./small-images/521.png'),(522,'blitzle',8,298,59,NULL,'./images/522.png','./small-images/522.png'),(523,'zebstrika',16,795,174,NULL,'./images/523.png','./small-images/523.png'),(524,'roggenrola',4,180,56,NULL,'./images/524.png','./small-images/524.png'),(525,'boldore',9,1020,137,NULL,'./images/525.png','./small-images/525.png'),(526,'gigalith',17,2600,258,NULL,'./images/526.png','./small-images/526.png'),(527,'woobat',4,21,65,NULL,'./images/527.png','./small-images/527.png'),(528,'swoobat',9,105,149,NULL,'./images/528.png','./small-images/528.png'),(529,'drilbur',3,85,66,NULL,'./images/529.png','./small-images/529.png'),(530,'excadrill',7,404,178,NULL,'./images/530.png','./small-images/530.png'),(531,'audino',11,310,390,NULL,'./images/531.png','./small-images/531.png'),(532,'timburr',6,125,61,NULL,'./images/532.png','./small-images/532.png'),(533,'gurdurr',12,400,142,NULL,'./images/533.png','./small-images/533.png'),(534,'conkeldurr',14,870,253,NULL,'./images/534.png','./small-images/534.png'),(535,'tympole',5,45,59,NULL,'./images/535.png','./small-images/535.png'),(536,'palpitoad',8,170,134,NULL,'./images/536.png','./small-images/536.png'),(537,'seismitoad',15,620,255,NULL,'./images/537.png','./small-images/537.png'),(538,'throh',13,555,163,NULL,'./images/538.png','./small-images/538.png'),(539,'sawk',14,510,163,NULL,'./images/539.png','./small-images/539.png'),(540,'sewaddle',3,25,62,NULL,'./images/540.png','./small-images/540.png'),(541,'swadloon',5,73,133,NULL,'./images/541.png','./small-images/541.png'),(542,'leavanny',12,205,225,NULL,'./images/542.png','./small-images/542.png'),(543,'venipede',4,53,52,NULL,'./images/543.png','./small-images/543.png'),(544,'whirlipede',12,585,126,NULL,'./images/544.png','./small-images/544.png'),(545,'scolipede',25,2005,243,NULL,'./images/545.png','./small-images/545.png'),(546,'cottonee',3,6,56,NULL,'./images/546.png','./small-images/546.png'),(547,'whimsicott',7,66,168,NULL,'./images/547.png','./small-images/547.png'),(548,'petilil',5,66,56,NULL,'./images/548.png','./small-images/548.png'),(549,'lilligant',11,163,168,NULL,'./images/549.png','./small-images/549.png'),(550,'basculin-red-striped',10,180,161,NULL,'./images/550.png','./small-images/550.png'),(551,'sandile',7,152,58,NULL,'./images/551.png','./small-images/551.png'),(552,'krokorok',10,334,123,NULL,'./images/552.png','./small-images/552.png'),(553,'krookodile',15,963,260,NULL,'./images/553.png','./small-images/553.png'),(554,'darumaka',6,375,63,NULL,'./images/554.png','./small-images/554.png'),(555,'darmanitan-standard',13,929,168,NULL,'./images/555.png','./small-images/555.png'),(556,'maractus',10,280,161,NULL,'./images/556.png','./small-images/556.png'),(557,'dwebble',3,145,65,NULL,'./images/557.png','./small-images/557.png'),(558,'crustle',14,2000,170,NULL,'./images/558.png','./small-images/558.png'),(559,'scraggy',6,118,70,NULL,'./images/559.png','./small-images/559.png'),(560,'scrafty',11,300,171,NULL,'./images/560.png','./small-images/560.png'),(561,'sigilyph',14,140,172,NULL,'./images/561.png','./small-images/561.png'),(562,'yamask',5,15,61,NULL,'./images/562.png','./small-images/562.png'),(563,'cofagrigus',17,765,169,NULL,'./images/563.png','./small-images/563.png'),(564,'tirtouga',7,165,71,NULL,'./images/564.png','./small-images/564.png'),(565,'carracosta',12,810,173,NULL,'./images/565.png','./small-images/565.png'),(566,'archen',5,95,71,NULL,'./images/566.png','./small-images/566.png'),(567,'archeops',14,320,177,NULL,'./images/567.png','./small-images/567.png'),(568,'trubbish',6,310,66,NULL,'./images/568.png','./small-images/568.png'),(569,'garbodor',19,1073,166,NULL,'./images/569.png','./small-images/569.png'),(570,'zorua',7,125,66,NULL,'./images/570.png','./small-images/570.png'),(571,'zoroark',16,811,179,NULL,'./images/571.png','./small-images/571.png'),(572,'minccino',4,58,60,NULL,'./images/572.png','./small-images/572.png'),(573,'cinccino',5,75,165,NULL,'./images/573.png','./small-images/573.png'),(574,'gothita',4,58,58,NULL,'./images/574.png','./small-images/574.png'),(575,'gothorita',7,180,137,NULL,'./images/575.png','./small-images/575.png'),(576,'gothitelle',15,440,245,NULL,'./images/576.png','./small-images/576.png'),(577,'solosis',3,10,58,NULL,'./images/577.png','./small-images/577.png'),(578,'duosion',6,80,130,NULL,'./images/578.png','./small-images/578.png'),(579,'reuniclus',10,201,245,NULL,'./images/579.png','./small-images/579.png'),(580,'ducklett',5,55,61,NULL,'./images/580.png','./small-images/580.png'),(581,'swanna',13,242,166,NULL,'./images/581.png','./small-images/581.png'),(582,'vanillite',4,57,61,NULL,'./images/582.png','./small-images/582.png'),(583,'vanillish',11,410,138,NULL,'./images/583.png','./small-images/583.png'),(584,'vanilluxe',13,575,268,NULL,'./images/584.png','./small-images/584.png'),(585,'deerling',6,195,67,NULL,'./images/585.png','./small-images/585.png'),(586,'sawsbuck',19,925,166,NULL,'./images/586.png','./small-images/586.png'),(587,'emolga',4,50,150,NULL,'./images/587.png','./small-images/587.png'),(588,'karrablast',5,59,63,NULL,'./images/588.png','./small-images/588.png'),(589,'escavalier',10,330,173,NULL,'./images/589.png','./small-images/589.png'),(590,'foongus',2,10,59,NULL,'./images/590.png','./small-images/590.png'),(591,'amoonguss',6,105,162,NULL,'./images/591.png','./small-images/591.png'),(592,'frillish',12,330,67,NULL,'./images/592.png','./small-images/592.png'),(593,'jellicent',22,1350,168,NULL,'./images/593.png','./small-images/593.png'),(594,'alomomola',12,316,165,NULL,'./images/594.png','./small-images/594.png'),(595,'joltik',1,6,64,NULL,'./images/595.png','./small-images/595.png'),(596,'galvantula',8,143,165,NULL,'./images/596.png','./small-images/596.png'),(597,'ferroseed',6,188,61,NULL,'./images/597.png','./small-images/597.png'),(598,'ferrothorn',10,1100,171,NULL,'./images/598.png','./small-images/598.png'),(599,'klink',3,210,60,NULL,'./images/599.png','./small-images/599.png'),(600,'klang',6,510,154,NULL,'./images/600.png','./small-images/600.png'),(601,'klinklang',6,810,260,NULL,'./images/601.png','./small-images/601.png'),(602,'tynamo',2,3,55,NULL,'./images/602.png','./small-images/602.png'),(603,'eelektrik',12,220,142,NULL,'./images/603.png','./small-images/603.png'),(604,'eelektross',21,805,232,NULL,'./images/604.png','./small-images/604.png'),(605,'elgyem',5,90,67,NULL,'./images/605.png','./small-images/605.png'),(606,'beheeyem',10,345,170,NULL,'./images/606.png','./small-images/606.png'),(607,'litwick',3,31,55,NULL,'./images/607.png','./small-images/607.png'),(608,'lampent',6,130,130,NULL,'./images/608.png','./small-images/608.png'),(609,'chandelure',10,343,260,NULL,'./images/609.png','./small-images/609.png'),(610,'axew',6,180,64,NULL,'./images/610.png','./small-images/610.png'),(611,'fraxure',10,360,144,NULL,'./images/611.png','./small-images/611.png'),(612,'haxorus',18,1055,270,NULL,'./images/612.png','./small-images/612.png'),(613,'cubchoo',5,85,61,NULL,'./images/613.png','./small-images/613.png'),(614,'beartic',26,2600,177,NULL,'./images/614.png','./small-images/614.png'),(615,'cryogonal',11,1480,180,NULL,'./images/615.png','./small-images/615.png'),(616,'shelmet',4,77,61,NULL,'./images/616.png','./small-images/616.png'),(617,'accelgor',8,253,173,NULL,'./images/617.png','./small-images/617.png'),(618,'stunfisk',7,110,165,NULL,'./images/618.png','./small-images/618.png'),(619,'mienfoo',9,200,70,NULL,'./images/619.png','./small-images/619.png'),(620,'mienshao',14,355,179,NULL,'./images/620.png','./small-images/620.png'),(621,'druddigon',16,1390,170,NULL,'./images/621.png','./small-images/621.png'),(622,'golett',10,920,61,NULL,'./images/622.png','./small-images/622.png'),(623,'golurk',28,3300,169,NULL,'./images/623.png','./small-images/623.png'),(624,'pawniard',5,102,68,NULL,'./images/624.png','./small-images/624.png'),(625,'bisharp',16,700,172,NULL,'./images/625.png','./small-images/625.png'),(626,'bouffalant',16,946,172,NULL,'./images/626.png','./small-images/626.png'),(627,'rufflet',5,105,70,NULL,'./images/627.png','./small-images/627.png'),(628,'braviary',15,410,179,NULL,'./images/628.png','./small-images/628.png'),(629,'vullaby',5,90,74,NULL,'./images/629.png','./small-images/629.png'),(630,'mandibuzz',12,395,179,NULL,'./images/630.png','./small-images/630.png'),(631,'heatmor',14,580,169,NULL,'./images/631.png','./small-images/631.png'),(632,'durant',3,330,169,NULL,'./images/632.png','./small-images/632.png'),(633,'deino',8,173,60,NULL,'./images/633.png','./small-images/633.png'),(634,'zweilous',14,500,147,NULL,'./images/634.png','./small-images/634.png'),(635,'hydreigon',18,1600,300,NULL,'./images/635.png','./small-images/635.png'),(636,'larvesta',11,288,72,NULL,'./images/636.png','./small-images/636.png'),(637,'volcarona',16,460,275,NULL,'./images/637.png','./small-images/637.png'),(638,'cobalion',21,2500,290,NULL,'./images/638.png','./small-images/638.png'),(639,'terrakion',19,2600,290,NULL,'./images/639.png','./small-images/639.png'),(640,'virizion',20,2000,290,NULL,'./images/640.png','./small-images/640.png'),(641,'tornadus-incarnate',15,630,290,NULL,'./images/641.png','./small-images/641.png'),(642,'thundurus-incarnate',15,610,290,NULL,'./images/642.png','./small-images/642.png'),(643,'reshiram',32,3300,340,NULL,'./images/643.png','./small-images/643.png'),(644,'zekrom',29,3450,340,NULL,'./images/644.png','./small-images/644.png'),(645,'landorus-incarnate',15,680,300,NULL,'./images/645.png','./small-images/645.png'),(646,'kyurem',30,3250,330,NULL,'./images/646.png','./small-images/646.png'),(647,'keldeo-ordinary',14,485,290,NULL,'./images/647.png','./small-images/647.png'),(648,'meloetta-aria',6,65,270,NULL,'./images/648.png','./small-images/648.png'),(649,'genesect',15,825,300,NULL,'./images/649.png','./small-images/649.png'),(650,'chespin',4,90,63,NULL,'./images/650.png','./small-images/650.png'),(651,'quilladin',7,290,142,NULL,'./images/651.png','./small-images/651.png'),(652,'chesnaught',16,900,239,NULL,'./images/652.png','./small-images/652.png'),(653,'fennekin',4,94,61,NULL,'./images/653.png','./small-images/653.png'),(654,'braixen',10,145,143,NULL,'./images/654.png','./small-images/654.png'),(655,'delphox',15,390,240,NULL,'./images/655.png','./small-images/655.png'),(656,'froakie',3,70,63,NULL,'./images/656.png','./small-images/656.png'),(657,'frogadier',6,109,142,NULL,'./images/657.png','./small-images/657.png'),(658,'greninja',15,400,239,NULL,'./images/658.png','./small-images/658.png'),(659,'bunnelby',4,50,47,NULL,'./images/659.png','./small-images/659.png'),(660,'diggersby',10,424,148,NULL,'./images/660.png','./small-images/660.png'),(661,'fletchling',3,17,56,NULL,'./images/661.png','./small-images/661.png'),(662,'fletchinder',7,160,134,NULL,'./images/662.png','./small-images/662.png'),(663,'talonflame',12,245,175,NULL,'./images/663.png','./small-images/663.png'),(664,'scatterbug',3,25,40,NULL,'./images/664.png','./small-images/664.png'),(665,'spewpa',3,84,75,NULL,'./images/665.png','./small-images/665.png'),(666,'vivillon',12,170,185,NULL,'./images/666.png','./small-images/666.png'),(667,'litleo',6,135,74,NULL,'./images/667.png','./small-images/667.png'),(668,'pyroar',15,815,177,NULL,'./images/668.png','./small-images/668.png'),(669,'flabebe',1,1,61,NULL,'./images/669.png','./small-images/669.png'),(670,'floette',2,9,130,NULL,'./images/670.png','./small-images/670.png'),(671,'florges',11,100,248,NULL,'./images/671.png','./small-images/671.png'),(672,'skiddo',9,310,70,NULL,'./images/672.png','./small-images/672.png'),(673,'gogoat',17,910,186,NULL,'./images/673.png','./small-images/673.png'),(674,'pancham',6,80,70,NULL,'./images/674.png','./small-images/674.png'),(675,'pangoro',21,1360,173,NULL,'./images/675.png','./small-images/675.png'),(676,'furfrou',12,280,165,NULL,'./images/676.png','./small-images/676.png'),(677,'espurr',3,35,71,NULL,'./images/677.png','./small-images/677.png'),(678,'meowstic-male',6,85,163,NULL,'./images/678.png','./small-images/678.png'),(679,'honedge',8,20,65,NULL,'./images/679.png','./small-images/679.png'),(680,'doublade',8,45,157,NULL,'./images/680.png','./small-images/680.png'),(681,'aegislash-shield',17,530,250,NULL,'./images/681.png','./small-images/681.png'),(682,'spritzee',2,5,68,NULL,'./images/682.png','./small-images/682.png'),(683,'aromatisse',8,155,162,NULL,'./images/683.png','./small-images/683.png'),(684,'swirlix',4,35,68,NULL,'./images/684.png','./small-images/684.png'),(685,'slurpuff',8,50,168,NULL,'./images/685.png','./small-images/685.png'),(686,'inkay',4,35,58,NULL,'./images/686.png','./small-images/686.png'),(687,'malamar',15,470,169,NULL,'./images/687.png','./small-images/687.png'),(688,'binacle',5,310,61,NULL,'./images/688.png','./small-images/688.png'),(689,'barbaracle',13,960,175,NULL,'./images/689.png','./small-images/689.png'),(690,'skrelp',5,73,64,NULL,'./images/690.png','./small-images/690.png'),(691,'dragalge',18,815,173,NULL,'./images/691.png','./small-images/691.png'),(692,'clauncher',5,83,66,NULL,'./images/692.png','./small-images/692.png'),(693,'clawitzer',13,353,100,NULL,'./images/693.png','./small-images/693.png'),(694,'helioptile',5,60,58,NULL,'./images/694.png','./small-images/694.png'),(695,'heliolisk',10,210,168,NULL,'./images/695.png','./small-images/695.png'),(696,'tyrunt',8,260,72,NULL,'./images/696.png','./small-images/696.png'),(697,'tyrantrum',25,2700,182,NULL,'./images/697.png','./small-images/697.png'),(698,'amaura',13,252,72,NULL,'./images/698.png','./small-images/698.png'),(699,'aurorus',27,2250,104,NULL,'./images/699.png','./small-images/699.png'),(700,'sylveon',10,235,184,NULL,'./images/700.png','./small-images/700.png'),(701,'hawlucha',8,215,175,NULL,'./images/701.png','./small-images/701.png'),(702,'dedenne',2,22,151,NULL,'./images/702.png','./small-images/702.png'),(703,'carbink',3,57,100,NULL,'./images/703.png','./small-images/703.png'),(704,'goomy',3,28,60,NULL,'./images/704.png','./small-images/704.png'),(705,'sliggoo',8,175,158,NULL,'./images/705.png','./small-images/705.png'),(706,'goodra',20,1505,300,NULL,'./images/706.png','./small-images/706.png'),(707,'klefki',2,30,165,NULL,'./images/707.png','./small-images/707.png'),(708,'phantump',4,70,62,NULL,'./images/708.png','./small-images/708.png'),(709,'trevenant',15,710,166,NULL,'./images/709.png','./small-images/709.png'),(710,'pumpkaboo-average',4,50,67,NULL,'./images/710.png','./small-images/710.png'),(711,'gourgeist-average',9,125,173,NULL,'./images/711.png','./small-images/711.png'),(712,'bergmite',10,995,61,NULL,'./images/712.png','./small-images/712.png'),(713,'avalugg',20,5050,180,NULL,'./images/713.png','./small-images/713.png'),(714,'noibat',5,80,49,NULL,'./images/714.png','./small-images/714.png'),(715,'noivern',15,850,187,NULL,'./images/715.png','./small-images/715.png'),(716,'xerneas',30,2150,340,NULL,'./images/716.png','./small-images/716.png'),(717,'yveltal',58,2030,340,NULL,'./images/717.png','./small-images/717.png'),(718,'zygarde-50',50,3050,300,NULL,'./images/718.png','./small-images/718.png'),(719,'diancie',7,88,300,NULL,'./images/719.png','./small-images/719.png'),(720,'hoopa',5,90,270,NULL,'./images/720.png','./small-images/720.png'),(721,'volcanion',17,1950,300,NULL,'./images/721.png','./small-images/721.png'),(722,'rowlet',3,15,64,NULL,'./images/722.png','./small-images/722.png'),(723,'dartrix',7,160,147,NULL,'./images/723.png','./small-images/723.png'),(724,'decidueye',16,366,265,NULL,'./images/724.png','./small-images/724.png'),(725,'litten',4,43,64,NULL,'./images/725.png','./small-images/725.png'),(726,'torracat',7,250,147,NULL,'./images/726.png','./small-images/726.png'),(727,'incineroar',18,830,265,NULL,'./images/727.png','./small-images/727.png'),(728,'popplio',4,75,64,NULL,'./images/728.png','./small-images/728.png'),(729,'brionne',6,175,147,NULL,'./images/729.png','./small-images/729.png'),(730,'primarina',18,440,265,NULL,'./images/730.png','./small-images/730.png'),(731,'pikipek',3,12,53,NULL,'./images/731.png','./small-images/731.png'),(732,'trumbeak',6,148,124,NULL,'./images/732.png','./small-images/732.png'),(733,'toucannon',11,260,218,NULL,'./images/733.png','./small-images/733.png'),(734,'yungoos',4,60,51,NULL,'./images/734.png','./small-images/734.png'),(735,'gumshoos',7,142,146,NULL,'./images/735.png','./small-images/735.png'),(736,'grubbin',4,44,60,NULL,'./images/736.png','./small-images/736.png'),(737,'charjabug',5,105,140,NULL,'./images/737.png','./small-images/737.png'),(738,'vikavolt',15,450,250,NULL,'./images/738.png','./small-images/738.png'),(739,'crabrawler',6,70,68,NULL,'./images/739.png','./small-images/739.png'),(740,'crabominable',17,1800,167,NULL,'./images/740.png','./small-images/740.png'),(741,'oricorio-baile',6,34,167,NULL,'./images/741.png','./small-images/741.png'),(742,'cutiefly',1,2,61,NULL,'./images/742.png','./small-images/742.png'),(743,'ribombee',2,5,162,NULL,'./images/743.png','./small-images/743.png'),(744,'rockruff',5,92,56,NULL,'./images/744.png','./small-images/744.png'),(745,'lycanroc-midday',8,250,170,NULL,'./images/745.png','./small-images/745.png'),(746,'wishiwashi-solo',2,3,61,NULL,'./images/746.png','./small-images/746.png'),(747,'mareanie',4,80,61,NULL,'./images/747.png','./small-images/747.png'),(748,'toxapex',7,145,173,NULL,'./images/748.png','./small-images/748.png'),(749,'mudbray',10,1100,77,NULL,'./images/749.png','./small-images/749.png'),(750,'mudsdale',25,9200,175,NULL,'./images/750.png','./small-images/750.png'),(751,'dewpider',3,40,54,NULL,'./images/751.png','./small-images/751.png'),(752,'araquanid',18,820,159,NULL,'./images/752.png','./small-images/752.png'),(753,'fomantis',3,15,50,NULL,'./images/753.png','./small-images/753.png'),(754,'lurantis',9,185,168,NULL,'./images/754.png','./small-images/754.png'),(755,'morelull',2,15,57,NULL,'./images/755.png','./small-images/755.png'),(756,'shiinotic',10,115,142,NULL,'./images/756.png','./small-images/756.png'),(757,'salandit',6,48,64,NULL,'./images/757.png','./small-images/757.png'),(758,'salazzle',12,222,168,NULL,'./images/758.png','./small-images/758.png'),(759,'stufful',5,68,68,NULL,'./images/759.png','./small-images/759.png'),(760,'bewear',21,1350,175,NULL,'./images/760.png','./small-images/760.png'),(761,'bounsweet',3,32,42,NULL,'./images/761.png','./small-images/761.png'),(762,'steenee',7,82,102,NULL,'./images/762.png','./small-images/762.png'),(763,'tsareena',12,214,255,NULL,'./images/763.png','./small-images/763.png'),(764,'comfey',1,3,170,NULL,'./images/764.png','./small-images/764.png'),(765,'oranguru',15,760,172,NULL,'./images/765.png','./small-images/765.png'),(766,'passimian',20,828,172,NULL,'./images/766.png','./small-images/766.png'),(767,'wimpod',5,120,46,NULL,'./images/767.png','./small-images/767.png'),(768,'golisopod',20,1080,186,NULL,'./images/768.png','./small-images/768.png'),(769,'sandygast',5,700,64,NULL,'./images/769.png','./small-images/769.png'),(770,'palossand',13,2500,168,NULL,'./images/770.png','./small-images/770.png'),(771,'pyukumuku',3,12,144,NULL,'./images/771.png','./small-images/771.png'),(772,'type-null',19,1205,107,NULL,'./images/772.png','./small-images/772.png'),(773,'silvally',23,1005,285,NULL,'./images/773.png','./small-images/773.png'),(774,'minior-red-meteor',3,400,154,NULL,'./images/774.png','./small-images/774.png'),(775,'komala',4,199,168,NULL,'./images/775.png','./small-images/775.png'),(776,'turtonator',20,2120,170,NULL,'./images/776.png','./small-images/776.png'),(777,'togedemaru',3,33,152,NULL,'./images/777.png','./small-images/777.png'),(778,'mimikyu-disguised',2,7,167,NULL,'./images/778.png','./small-images/778.png'),(779,'bruxish',9,190,166,NULL,'./images/779.png','./small-images/779.png'),(780,'drampa',30,1850,170,NULL,'./images/780.png','./small-images/780.png'),(781,'dhelmise',39,2100,181,NULL,'./images/781.png','./small-images/781.png'),(782,'jangmo-o',6,297,60,NULL,'./images/782.png','./small-images/782.png'),(783,'hakamo-o',12,470,147,NULL,'./images/783.png','./small-images/783.png'),(784,'kommo-o',16,782,300,NULL,'./images/784.png','./small-images/784.png'),(785,'tapu-koko',18,205,285,NULL,'./images/785.png','./small-images/785.png'),(786,'tapu-lele',12,186,285,NULL,'./images/786.png','./small-images/786.png'),(787,'tapu-bulu',19,455,285,NULL,'./images/787.png','./small-images/787.png'),(788,'tapu-fini',13,212,285,NULL,'./images/788.png','./small-images/788.png'),(789,'cosmog',2,1,40,NULL,'./images/789.png','./small-images/789.png'),(790,'cosmoem',1,9999,140,NULL,'./images/790.png','./small-images/790.png'),(791,'solgaleo',34,2300,340,NULL,'./images/791.png','./small-images/791.png'),(792,'lunala',40,1200,340,NULL,'./images/792.png','./small-images/792.png'),(793,'nihilego',12,555,285,NULL,'./images/793.png','./small-images/793.png'),(794,'buzzwole',24,3336,285,NULL,'./images/794.png','./small-images/794.png'),(795,'pheromosa',18,250,285,NULL,'./images/795.png','./small-images/795.png'),(796,'xurkitree',38,1000,285,NULL,'./images/796.png','./small-images/796.png'),(797,'celesteela',92,9999,285,NULL,'./images/797.png','./small-images/797.png'),(798,'kartana',3,1,285,NULL,'./images/798.png','./small-images/798.png'),(799,'guzzlord',55,8880,285,NULL,'./images/799.png','./small-images/799.png'),(800,'necrozma',24,2300,300,NULL,'./images/800.png','./small-images/800.png'),(801,'magearna',10,805,300,NULL,'./images/801.png','./small-images/801.png'),(802,'marshadow',7,222,300,NULL,'./images/802.png','./small-images/802.png'),(803,'poipole',6,18,210,NULL,'./images/803.png','./small-images/803.png'),(804,'naganadel',36,1500,270,NULL,'./images/804.png','./small-images/804.png'),(805,'stakataka',55,8200,285,NULL,'./images/805.png','./small-images/805.png'),(806,'blacephalon',18,130,285,NULL,'./images/806.png','./small-images/806.png'),(807,'zeraora',15,445,300,NULL,'./images/807.png','./small-images/807.png'),(808,'meltan',2,80,150,NULL,'./images/808.png','./small-images/808.png'),(809,'melmetal',25,8000,300,NULL,'./images/809.png','./small-images/809.png'),(810,'grookey',3,50,62,NULL,'./images/810.png','./small-images/810.png'),(811,'thwackey',7,140,147,NULL,'./images/811.png','./small-images/811.png'),(812,'rillaboom',21,900,265,NULL,'./images/812.png','./small-images/812.png'),(813,'scorbunny',3,45,62,NULL,'./images/813.png','./small-images/813.png'),(814,'raboot',6,90,147,NULL,'./images/814.png','./small-images/814.png'),(815,'cinderace',14,330,265,NULL,'./images/815.png','./small-images/815.png'),(816,'sobble',3,40,62,NULL,'./images/816.png','./small-images/816.png'),(817,'drizzile',7,115,147,NULL,'./images/817.png','./small-images/817.png'),(818,'inteleon',19,452,265,NULL,'./images/818.png','./small-images/818.png'),(819,'skwovet',3,25,55,NULL,'./images/819.png','./small-images/819.png'),(820,'greedent',6,60,161,NULL,'./images/820.png','./small-images/820.png'),(821,'rookidee',2,18,49,NULL,'./images/821.png','./small-images/821.png'),(822,'corvisquire',8,160,128,NULL,'./images/822.png','./small-images/822.png'),(823,'corviknight',22,750,248,NULL,'./images/823.png','./small-images/823.png'),(824,'blipbug',4,80,36,NULL,'./images/824.png','./small-images/824.png'),(825,'dottler',4,195,117,NULL,'./images/825.png','./small-images/825.png'),(826,'orbeetle',4,408,253,NULL,'./images/826.png','./small-images/826.png'),(827,'nickit',6,89,49,NULL,'./images/827.png','./small-images/827.png'),(828,'thievul',12,199,159,NULL,'./images/828.png','./small-images/828.png'),(829,'gossifleur',4,22,50,NULL,'./images/829.png','./small-images/829.png'),(830,'eldegoss',5,25,161,NULL,'./images/830.png','./small-images/830.png'),(831,'wooloo',6,60,122,NULL,'./images/831.png','./small-images/831.png'),(832,'dubwool',13,430,172,NULL,'./images/832.png','./small-images/832.png'),(833,'chewtle',3,85,57,NULL,'./images/833.png','./small-images/833.png'),(834,'drednaw',10,1155,170,NULL,'./images/834.png','./small-images/834.png'),(835,'yamper',3,135,54,NULL,'./images/835.png','./small-images/835.png'),(836,'boltund',10,340,172,NULL,'./images/836.png','./small-images/836.png'),(837,'rolycoly',3,120,48,NULL,'./images/837.png','./small-images/837.png'),(838,'carkol',11,780,144,NULL,'./images/838.png','./small-images/838.png'),(839,'coalossal',28,3105,255,NULL,'./images/839.png','./small-images/839.png'),(840,'applin',2,5,52,NULL,'./images/840.png','./small-images/840.png'),(841,'flapple',3,10,170,NULL,'./images/841.png','./small-images/841.png'),(842,'appletun',4,130,170,NULL,'./images/842.png','./small-images/842.png'),(843,'silicobra',22,76,63,NULL,'./images/843.png','./small-images/843.png'),(844,'sandaconda',38,655,179,NULL,'./images/844.png','./small-images/844.png'),(845,'cramorant',8,180,166,NULL,'./images/845.png','./small-images/845.png'),(846,'arrokuda',5,10,56,NULL,'./images/846.png','./small-images/846.png'),(847,'barraskewda',13,300,172,NULL,'./images/847.png','./small-images/847.png'),(848,'toxel',4,110,48,NULL,'./images/848.png','./small-images/848.png'),(849,'toxtricity-amped',16,400,176,NULL,'./images/849.png','./small-images/849.png'),(850,'sizzlipede',7,10,61,NULL,'./images/850.png','./small-images/850.png'),(851,'centiskorch',30,1200,184,NULL,'./images/851.png','./small-images/851.png'),(852,'clobbopus',6,40,62,NULL,'./images/852.png','./small-images/852.png'),(853,'grapploct',16,390,168,NULL,'./images/853.png','./small-images/853.png'),(854,'sinistea',1,2,62,NULL,'./images/854.png','./small-images/854.png'),(855,'polteageist',2,4,178,NULL,'./images/855.png','./small-images/855.png'),(856,'hatenna',4,34,53,NULL,'./images/856.png','./small-images/856.png'),(857,'hattrem',6,48,130,NULL,'./images/857.png','./small-images/857.png'),(858,'hatterene',21,51,255,NULL,'./images/858.png','./small-images/858.png'),(859,'impidimp',4,55,53,NULL,'./images/859.png','./small-images/859.png'),(860,'morgrem',8,125,130,NULL,'./images/860.png','./small-images/860.png'),(861,'grimmsnarl',15,610,255,NULL,'./images/861.png','./small-images/861.png'),(862,'obstagoon',16,460,260,NULL,'./images/862.png','./small-images/862.png'),(863,'perrserker',8,280,154,NULL,'./images/863.png','./small-images/863.png'),(864,'cursola',10,4,179,NULL,'./images/864.png','./small-images/864.png'),(865,'sirfetchd',8,1170,177,NULL,'./images/865.png','./small-images/865.png'),(866,'mr-rime',15,582,182,NULL,'./images/866.png','./small-images/866.png'),(867,'runerigus',16,666,169,NULL,'./images/867.png','./small-images/867.png'),(868,'milcery',2,3,54,NULL,'./images/868.png','./small-images/868.png'),(869,'alcremie',3,5,173,NULL,'./images/869.png','./small-images/869.png'),(870,'falinks',30,620,165,NULL,'./images/870.png','./small-images/870.png'),(871,'pincurchin',3,10,152,NULL,'./images/871.png','./small-images/871.png'),(872,'snom',3,38,37,NULL,'./images/872.png','./small-images/872.png'),(873,'frosmoth',13,420,166,NULL,'./images/873.png','./small-images/873.png'),(874,'stonjourner',25,5200,165,NULL,'./images/874.png','./small-images/874.png'),(875,'eiscue-ice',14,890,165,NULL,'./images/875.png','./small-images/875.png'),(876,'indeedee-male',9,280,166,NULL,'./images/876.png','./small-images/876.png'),(877,'morpeko-full-belly',3,30,153,NULL,'./images/877.png','./small-images/877.png'),(878,'cufant',12,1000,66,NULL,'./images/878.png','./small-images/878.png'),(879,'copperajah',30,6500,175,NULL,'./images/879.png','./small-images/879.png'),(880,'dracozolt',18,1900,177,NULL,'./images/880.png','./small-images/880.png'),(881,'arctozolt',23,1500,177,NULL,'./images/881.png','./small-images/881.png'),(882,'dracovish',23,2150,177,NULL,'./images/882.png','./small-images/882.png'),(883,'arctovish',20,1750,177,NULL,'./images/883.png','./small-images/883.png'),(884,'duraludon',18,400,187,NULL,'./images/884.png','./small-images/884.png'),(885,'dreepy',5,20,54,NULL,'./images/885.png','./small-images/885.png'),(886,'drakloak',14,110,144,NULL,'./images/886.png','./small-images/886.png'),(887,'dragapult',30,500,300,NULL,'./images/887.png','./small-images/887.png'),(888,'zacian',28,1100,335,NULL,'./images/888.png','./small-images/888.png'),(889,'zamazenta',29,2100,335,NULL,'./images/889.png','./small-images/889.png'),(890,'eternatus',200,9500,345,NULL,'./images/890.png','./small-images/890.png'),(891,'kubfu',6,120,77,NULL,'./images/891.png','./small-images/891.png'),(892,'urshifu-single-strike',19,1050,275,NULL,'./images/892.png','./small-images/892.png'),(893,'zarude',18,700,300,NULL,'./images/893.png','./small-images/893.png'),(894,'regieleki',12,1450,290,NULL,'./images/894.png','./small-images/894.png'),(895,'regidrago',21,2000,290,NULL,'./images/895.png','./small-images/895.png'),(896,'glastrier',22,8000,290,NULL,'./images/896.png','./small-images/896.png'),(897,'spectrier',20,445,290,NULL,'./images/897.png','./small-images/897.png'),(898,'calyrex',11,77,250,NULL,'./images/898.png','./small-images/898.png'),(899,'wyrdeer',18,951,263,NULL,'./images/899.png','./small-images/899.png'),(900,'kleavor',18,890,175,NULL,'./images/900.png','./small-images/900.png'),(901,'ursaluna',24,2900,275,NULL,'./images/901.png','./small-images/901.png'),(902,'basculegion-male',30,1100,265,NULL,'./images/902.png','./small-images/902.png'),(903,'sneasler',13,430,102,NULL,'./images/903.png','./small-images/903.png'),(904,'overqwil',25,605,179,NULL,'./images/904.png','./small-images/904.png'),(905,'enamorus-incarnate',16,480,116,NULL,'./images/905.png','./small-images/905.png'),(906,'sprigatito',4,41,62,NULL,'./images/906.png','./small-images/906.png'),(907,'floragato',9,122,144,NULL,'./images/907.png','./small-images/907.png'),(908,'meowscarada',15,312,265,NULL,'./images/908.png','./small-images/908.png'),(909,'fuecoco',4,98,62,NULL,'./images/909.png','./small-images/909.png'),(910,'crocalor',10,307,144,NULL,'./images/910.png','./small-images/910.png'),(911,'skeledirge',16,3265,265,NULL,'./images/911.png','./small-images/911.png'),(912,'quaxly',5,61,62,NULL,'./images/912.png','./small-images/912.png'),(913,'quaxwell',12,215,144,NULL,'./images/913.png','./small-images/913.png'),(914,'quaquaval',18,619,265,NULL,'./images/914.png','./small-images/914.png'),(915,'lechonk',5,102,51,NULL,'./images/915.png','./small-images/915.png'),(916,'oinkologne-male',10,1200,171,NULL,'./images/916.png','./small-images/916.png'),(917,'tarountula',3,40,42,NULL,'./images/917.png','./small-images/917.png'),(918,'spidops',10,165,141,NULL,'./images/918.png','./small-images/918.png'),(919,'nymble',2,10,42,NULL,'./images/919.png','./small-images/919.png'),(920,'lokix',10,175,158,NULL,'./images/920.png','./small-images/920.png'),(921,'pawmi',3,25,48,NULL,'./images/921.png','./small-images/921.png'),(922,'pawmo',4,65,123,NULL,'./images/922.png','./small-images/922.png'),(923,'pawmot',9,410,245,NULL,'./images/923.png','./small-images/923.png'),(924,'tandemaus',3,18,61,NULL,'./images/924.png','./small-images/924.png'),(925,'maushold-family-of-four',3,23,165,NULL,'./images/925.png','./small-images/925.png'),(926,'fidough',3,109,62,NULL,'./images/926.png','./small-images/926.png'),(927,'dachsbun',5,149,167,NULL,'./images/927.png','./small-images/927.png'),(928,'smoliv',3,65,52,NULL,'./images/928.png','./small-images/928.png'),(929,'dolliv',6,119,124,NULL,'./images/929.png','./small-images/929.png'),(930,'arboliva',14,482,255,NULL,'./images/930.png','./small-images/930.png'),(931,'squawkabilly-green-plumage',6,24,146,NULL,'./images/931.png','./small-images/931.png'),(932,'nacli',4,160,56,NULL,'./images/932.png','./small-images/932.png'),(933,'naclstack',6,1050,124,NULL,'./images/933.png','./small-images/933.png'),(934,'garganacl',23,2400,250,NULL,'./images/934.png','./small-images/934.png'),(935,'charcadet',6,105,51,NULL,'./images/935.png','./small-images/935.png'),(936,'armarouge',15,850,263,NULL,'./images/936.png','./small-images/936.png'),(937,'ceruledge',16,620,263,NULL,'./images/937.png','./small-images/937.png'),(938,'tadbulb',3,4,54,NULL,'./images/938.png','./small-images/938.png'),(939,'bellibolt',12,1130,173,NULL,'./images/939.png','./small-images/939.png'),(940,'wattrel',4,36,56,NULL,'./images/940.png','./small-images/940.png'),(941,'kilowattrel',14,386,172,NULL,'./images/941.png','./small-images/941.png'),(942,'maschiff',5,160,68,NULL,'./images/942.png','./small-images/942.png'),(943,'mabosstiff',11,610,177,NULL,'./images/943.png','./small-images/943.png'),(944,'shroodle',2,7,58,NULL,'./images/944.png','./small-images/944.png'),(945,'grafaiai',7,272,170,NULL,'./images/945.png','./small-images/945.png'),(946,'bramblin',6,6,55,NULL,'./images/946.png','./small-images/946.png'),(947,'brambleghast',12,60,168,NULL,'./images/947.png','./small-images/947.png'),(948,'toedscool',9,330,67,NULL,'./images/948.png','./small-images/948.png'),(949,'toedscruel',19,580,180,NULL,'./images/949.png','./small-images/949.png'),(950,'klawf',13,790,158,NULL,'./images/950.png','./small-images/950.png'),(951,'capsakid',3,30,61,NULL,'./images/951.png','./small-images/951.png'),(952,'scovillain',9,150,170,NULL,'./images/952.png','./small-images/952.png'),(953,'rellor',2,10,54,NULL,'./images/953.png','./small-images/953.png'),(954,'rabsca',3,35,165,NULL,'./images/954.png','./small-images/954.png'),(955,'flittle',2,15,51,NULL,'./images/955.png','./small-images/955.png'),(956,'espathra',19,900,168,NULL,'./images/956.png','./small-images/956.png'),(957,'tinkatink',4,89,59,NULL,'./images/957.png','./small-images/957.png'),(958,'tinkatuff',7,591,133,NULL,'./images/958.png','./small-images/958.png'),(959,'tinkaton',7,1128,253,NULL,'./images/959.png','./small-images/959.png'),(960,'wiglett',12,18,49,NULL,'./images/960.png','./small-images/960.png'),(961,'wugtrio',12,54,149,NULL,'./images/961.png','./small-images/961.png'),(962,'bombirdier',15,429,243,NULL,'./images/962.png','./small-images/962.png'),(963,'finizen',13,602,63,NULL,'./images/963.png','./small-images/963.png'),(964,'palafin-zero',13,602,160,NULL,'./images/964.png','./small-images/964.png'),(965,'varoom',10,350,60,NULL,'./images/965.png','./small-images/965.png'),(966,'revavroom',18,1200,175,NULL,'./images/966.png','./small-images/966.png'),(967,'cyclizar',16,630,175,NULL,'./images/967.png','./small-images/967.png'),(968,'orthworm',25,3100,240,NULL,'./images/968.png','./small-images/968.png'),(969,'glimmet',7,80,70,NULL,'./images/969.png','./small-images/969.png'),(970,'glimmora',15,450,184,NULL,'./images/970.png','./small-images/970.png'),(971,'greavard',6,350,58,NULL,'./images/971.png','./small-images/971.png'),(972,'houndstone',20,150,171,NULL,'./images/972.png','./small-images/972.png'),(973,'flamigo',16,370,175,NULL,'./images/973.png','./small-images/973.png'),(974,'cetoddle',12,450,67,NULL,'./images/974.png','./small-images/974.png'),(975,'cetitan',45,7000,182,NULL,'./images/975.png','./small-images/975.png'),(976,'veluza',25,900,167,NULL,'./images/976.png','./small-images/976.png'),(977,'dondozo',120,2200,265,NULL,'./images/977.png','./small-images/977.png'),(978,'tatsugiri-curly',3,80,166,NULL,'./images/978.png','./small-images/978.png'),(979,'annihilape',12,560,268,NULL,'./images/979.png','./small-images/979.png'),(980,'clodsire',18,2230,151,NULL,'./images/980.png','./small-images/980.png'),(981,'farigiraf',32,1600,260,NULL,'./images/981.png','./small-images/981.png'),(982,'dudunsparce-two-segment',36,392,182,NULL,'./images/982.png','./small-images/982.png'),(983,'kingambit',20,1200,275,NULL,'./images/983.png','./small-images/983.png'),(984,'great-tusk',22,3200,285,NULL,'./images/984.png','./small-images/984.png'),(985,'scream-tail',12,80,285,NULL,'./images/985.png','./small-images/985.png'),(986,'brute-bonnet',12,210,285,NULL,'./images/986.png','./small-images/986.png'),(987,'flutter-mane',14,40,285,NULL,'./images/987.png','./small-images/987.png'),(988,'slither-wing',32,920,285,NULL,'./images/988.png','./small-images/988.png'),(989,'sandy-shocks',23,600,285,NULL,'./images/989.png','./small-images/989.png'),(990,'iron-treads',9,2400,285,NULL,'./images/990.png','./small-images/990.png'),(991,'iron-bundle',6,110,285,NULL,'./images/991.png','./small-images/991.png'),(992,'iron-hands',18,3807,285,NULL,'./images/992.png','./small-images/992.png'),(993,'iron-jugulis',13,1110,285,NULL,'./images/993.png','./small-images/993.png'),(994,'iron-moth',12,360,285,NULL,'./images/994.png','./small-images/994.png'),(995,'iron-thorns',16,3030,285,NULL,'./images/995.png','./small-images/995.png'),(996,'frigibax',5,170,64,NULL,'./images/996.png','./small-images/996.png'),(997,'arctibax',8,300,148,NULL,'./images/997.png','./small-images/997.png'),(998,'baxcalibur',21,2100,300,NULL,'./images/998.png','./small-images/998.png'),(999,'gimmighoul',3,50,60,NULL,'./images/999.png','./small-images/999.png'),(1000,'gholdengo',12,300,275,NULL,'./images/1000.png','./small-images/1000.png'),(1001,'wo-chien',15,742,285,NULL,'./images/1001.png','./small-images/1001.png'),(1002,'chien-pao',19,1522,285,NULL,'./images/1002.png','./small-images/1002.png'),(1003,'ting-lu',27,6997,285,NULL,'./images/1003.png','./small-images/1003.png'),(1004,'chi-yu',4,49,285,NULL,'./images/1004.png','./small-images/1004.png'),(1005,'roaring-moon',20,3800,295,NULL,'./images/1005.png','./small-images/1005.png'),(1006,'iron-valiant',14,350,295,NULL,'./images/1006.png','./small-images/1006.png'),(1007,'koraidon',25,3030,335,NULL,'./images/1007.png','./small-images/1007.png'),(1008,'miraidon',35,2400,335,NULL,'./images/1008.png','./small-images/1008.png'),(1009,'walking-wake',35,2800,295,NULL,'./images/1009.png','./small-images/1009.png'),(1010,'iron-leaves',15,1250,295,NULL,'./images/1010.png','./small-images/1010.png'); +/*!40000 ALTER TABLE `pokemon` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `pokemon_abilities` +-- + +DROP TABLE IF EXISTS `pokemon_abilities`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `pokemon_abilities` ( + `pokemon_id` int(11) NOT NULL, + `ability_id` int(11) NOT NULL, + PRIMARY KEY (`pokemon_id`,`ability_id`), + KEY `ability_id` (`ability_id`), + CONSTRAINT `pokemon_abilities_ibfk_1` FOREIGN KEY (`pokemon_id`) REFERENCES `pokemon` (`id`), + CONSTRAINT `pokemon_abilities_ibfk_2` FOREIGN KEY (`ability_id`) REFERENCES `abilities` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `pokemon_abilities` +-- + +LOCK TABLES `pokemon_abilities` WRITE; +/*!40000 ALTER TABLE `pokemon_abilities` DISABLE KEYS */; +INSERT INTO `pokemon_abilities` VALUES (1,1),(1,2),(2,1),(2,2),(3,1),(3,2),(4,9),(4,10),(5,9),(5,10),(6,9),(6,10),(7,15),(7,16),(8,15),(8,16),(9,15),(9,16),(10,21),(10,22),(11,23),(12,24),(12,25),(13,21),(13,22),(14,23),(15,29),(15,30),(16,31),(16,32),(16,33),(17,31),(17,32),(17,33),(18,31),(18,32),(18,33),(19,22),(19,41),(19,42),(20,22),(20,41),(20,42),(21,30),(21,31),(22,30),(22,31),(23,23),(23,50),(23,52),(24,23),(24,50),(24,52),(25,56),(25,57),(26,56),(26,57),(27,60),(27,61),(28,60),(28,61),(29,42),(29,64),(29,65),(30,42),(30,64),(30,65),(31,64),(31,65),(31,72),(32,42),(32,64),(32,65),(33,42),(33,64),(33,65),(34,64),(34,65),(34,72),(35,82),(35,83),(35,84),(36,82),(36,83),(36,87),(37,88),(37,89),(38,88),(38,89),(39,82),(39,84),(39,93),(40,82),(40,93),(40,97),(41,98),(41,99),(42,98),(42,99),(43,2),(43,22),(44,2),(44,105),(45,2),(45,107),(46,107),(46,109),(46,110),(47,107),(47,109),(47,110),(48,22),(48,24),(48,25),(49,21),(49,25),(49,119),(50,60),(50,121),(50,122),(51,60),(51,121),(51,122),(52,52),(52,126),(52,127),(53,52),(53,127),(53,129),(54,110),(54,133),(54,134),(55,110),(55,133),(55,134),(56,138),(56,139),(56,140),(57,138),(57,139),(57,140),(58,50),(58,88),(58,146),(59,50),(59,88),(59,146),(60,110),(60,134),(60,150),(61,110),(61,134),(61,150),(62,110),(62,134),(62,150),(63,83),(63,98),(63,159),(64,83),(64,98),(64,159),(65,83),(65,98),(65,159),(66,41),(66,169),(66,170),(67,41),(67,169),(67,170),(68,41),(68,169),(68,170),(69,2),(69,178),(70,2),(70,178),(71,2),(71,178),(72,16),(72,183),(72,184),(73,16),(73,183),(73,184),(74,60),(74,189),(74,190),(75,60),(75,189),(75,190),(76,60),(76,189),(76,190),(77,22),(77,88),(77,200),(78,22),(78,88),(78,200),(79,204),(79,205),(79,206),(80,204),(80,205),(80,206),(81,190),(81,210),(81,212),(82,190),(82,210),(82,212),(83,31),(83,98),(83,140),(84,22),(84,32),(84,220),(85,22),(85,32),(85,220),(86,225),(86,226),(86,227),(87,225),(87,226),(87,227),(88,105),(88,232),(88,233),(89,105),(89,232),(89,233),(90,237),(90,238),(90,239),(91,237),(91,238),(91,239),(92,243),(93,243),(94,245),(95,189),(95,190),(95,248),(96,98),(96,249),(96,250),(97,98),(97,249),(97,250),(98,72),(98,237),(98,255),(99,72),(99,237),(99,255),(100,56),(100,261),(100,263),(101,56),(101,261),(101,263),(102,2),(102,268),(103,2),(103,268),(104,57),(104,189),(104,273),(105,57),(105,189),(105,273),(106,129),(106,278),(106,279),(107,31),(107,98),(107,281),(108,133),(108,204),(108,205),(109,105),(109,243),(109,287),(110,105),(110,243),(110,287),(111,57),(111,189),(111,278),(112,57),(112,189),(112,278),(113,298),(113,299),(113,300),(114,2),(114,206),(114,302),(115,98),(115,220),(115,305),(116,30),(116,110),(116,134),(117,30),(117,64),(117,110),(118,57),(118,134),(118,314),(119,57),(119,134),(119,314),(120,212),(120,298),(120,319),(121,212),(121,298),(121,319),(122,127),(122,261),(122,326),(123,29),(123,127),(123,170),(124,109),(124,204),(124,250),(125,56),(125,138),(126,138),(126,200),(127,255),(127,339),(127,340),(128,50),(128,72),(128,139),(129,134),(129,345),(130,50),(130,340),(131,150),(131,226),(131,237),(132,129),(132,352),(133,22),(133,354),(133,355),(134,150),(134,226),(135,358),(135,359),(136,41),(136,88),(137,212),(137,362),(137,363),(138,134),(138,237),(138,248),(139,134),(139,237),(139,248),(140,134),(140,248),(140,273),(141,134),(141,248),(141,273),(142,52),(142,189),(142,378),(143,178),(143,225),(143,380),(144,378),(144,384),(145,56),(145,378),(146,200),(146,378),(147,23),(147,390),(148,23),(148,390),(149,98),(149,394),(150,52),(150,378),(151,159),(152,1),(152,302),(153,1),(153,302),(154,1),(154,302),(155,9),(155,88),(156,9),(156,88),(157,9),(157,88),(158,15),(158,72),(159,15),(159,72),(160,15),(160,72),(161,22),(161,31),(161,97),(162,22),(162,31),(162,97),(163,25),(163,31),(163,249),(164,25),(164,31),(164,249),(165,29),(165,220),(165,345),(166,29),(166,220),(166,281),(167,29),(167,30),(167,249),(168,29),(168,30),(168,249),(169,98),(169,99),(170,150),(170,319),(170,358),(171,150),(171,319),(171,358),(172,56),(172,57),(173,82),(173,83),(173,84),(174,82),(174,84),(174,93),(175,42),(175,299),(175,458),(176,42),(176,299),(176,458),(177,159),(177,220),(177,464),(178,159),(178,220),(178,464),(179,56),(179,469),(180,56),(180,469),(181,56),(181,469),(182,2),(182,300),(183,225),(183,477),(183,478),(184,225),(184,477),(184,478),(185,189),(185,190),(185,345),(186,110),(186,150),(186,487),(187,2),(187,99),(187,302),(188,2),(188,99),(188,302),(189,2),(189,99),(189,302),(190,22),(190,126),(190,238),(191,2),(191,10),(191,220),(192,2),(192,10),(192,220),(193,24),(193,97),(193,506),(194,87),(194,110),(194,150),(195,87),(195,110),(195,150),(196,159),(196,464),(197,98),(197,159),(198,249),(198,458),(198,521),(199,204),(199,205),(199,206),(200,243),(201,243),(202,527),(202,528),(203,98),(203,220),(203,478),(204,190),(204,239),(205,190),(205,239),(206,22),(206,299),(206,345),(207,60),(207,255),(207,380),(208,72),(208,189),(208,190),(209,22),(209,50),(209,345),(210,50),(210,345),(210,359),(211,50),(211,64),(211,134),(212,29),(212,127),(212,556),(213,178),(213,190),(213,559),(214,29),(214,41),(214,340),(215,31),(215,98),(215,565),(216,126),(216,359),(216,568),(217,41),(217,52),(217,359),(218,200),(218,248),(218,572),(219,200),(219,248),(219,572),(220,204),(220,225),(220,384),(221,204),(221,225),(221,384),(222,42),(222,206),(222,298),(223,30),(223,42),(223,589),(224,30),(224,589),(224,590),(225,42),(225,138),(225,249),(226,134),(226,150),(226,314),(227,31),(227,190),(227,248),(228,52),(228,88),(228,220),(229,52),(229,88),(229,220),(230,30),(230,110),(230,134),(231,60),(231,126),(232,60),(232,190),(233,212),(233,362),(233,363),(234,50),(234,97),(234,478),(235,127),(235,205),(235,589),(236,41),(236,138),(236,170),(237,50),(237,127),(237,170),(238,204),(238,226),(238,250),(239,56),(239,138),(240,138),(240,200),(241,225),(241,305),(241,478),(242,298),(242,299),(242,300),(243,98),(243,378),(244,98),(244,378),(245,98),(245,378),(246,41),(246,60),(247,23),(248,52),(248,652),(249,378),(249,394),(250,206),(250,378),(251,298),(252,1),(252,279),(253,1),(253,279),(254,1),(254,279),(255,9),(255,506),(256,9),(256,506),(257,9),(257,506),(258,15),(258,110),(259,15),(259,110),(260,15),(260,110),(261,22),(261,345),(261,359),(262,50),(262,340),(262,359),(263,126),(263,178),(263,359),(264,126),(264,178),(264,359),(265,21),(265,22),(266,23),(267,29),(267,65),(268,23),(269,21),(269,24),(270,16),(270,134),(270,205),(271,16),(271,134),(271,205),(272,16),(272,134),(272,205),(273,2),(273,220),(273,565),(274,2),(274,220),(274,565),(275,2),(275,565),(275,713),(276,41),(276,305),(277,41),(277,305),(278,16),(278,31),(278,226),(279,16),(279,31),(279,487),(280,159),(280,362),(280,528),(281,159),(281,362),(281,528),(282,159),(282,362),(282,528),(283,16),(283,134),(284,50),(284,52),(285,107),(285,359),(285,739),(286,107),(286,127),(286,739),(287,744),(288,138),(289,744),(290,22),(290,24),(291,99),(291,506),(292,751),(293,261),(293,345),(294,261),(294,305),(295,261),(295,305),(296,41),(296,72),(296,225),(297,41),(297,72),(297,225),(298,225),(298,477),(298,478),(299,122),(299,190),(299,210),(300,82),(300,119),(300,771),(301,82),(301,119),(301,771),(302,31),(302,521),(302,777),(303,50),(303,72),(303,255),(304,189),(304,190),(304,784),(305,189),(305,190),(305,784),(306,189),(306,190),(306,784),(307,528),(307,791),(308,528),(308,791),(309,56),(309,57),(309,797),(310,56),(310,57),(310,797),(311,57),(311,469),(312,358),(312,797),(313,29),(313,319),(313,521),(314,25),(314,204),(314,521),(315,64),(315,298),(315,302),(316,178),(316,184),(316,232),(317,178),(317,184),(317,232),(318,506),(318,820),(319,506),(319,820),(320,204),(320,314),(320,378),(321,204),(321,314),(321,378),(322,204),(322,205),(322,831),(323,139),(323,572),(323,834),(324,89),(324,237),(324,836),(325,178),(325,205),(325,225),(326,178),(326,205),(326,225),(327,32),(327,205),(327,559),(328,72),(328,121),(328,255),(329,243),(330,243),(331,60),(331,150),(332,60),(332,150),(333,133),(333,298),(334,133),(334,298),(335,380),(335,862),(336,23),(336,99),(337,243),(338,243),(339,204),(339,226),(339,355),(340,204),(340,226),(340,355),(341,237),(341,255),(341,354),(342,237),(342,255),(342,354),(343,243),(344,243),(345,590),(345,882),(346,590),(346,882),(347,134),(347,273),(348,134),(348,273),(349,134),(349,204),(349,354),(350,82),(350,93),(350,390),(351,895),(352,896),(352,897),(353,97),(353,245),(353,249),(354,97),(354,245),(354,249),(355,97),(355,243),(356,97),(356,378),(357,2),(357,10),(357,268),(358,243),(359,146),(359,378),(359,458),(360,527),(360,528),(361,98),(361,227),(361,589),(362,98),(362,227),(362,589),(363,204),(363,225),(363,227),(364,204),(364,225),(364,227),(365,204),(365,225),(365,227),(366,237),(366,345),(367,134),(367,314),(368,134),(368,226),(369,134),(369,189),(369,190),(370,134),(370,226),(371,72),(371,189),(372,189),(372,239),(373,50),(373,340),(374,183),(374,556),(375,183),(375,556),(376,183),(376,556),(377,183),(377,190),(378,183),(378,227),(379,183),(379,556),(380,243),(381,243),(382,487),(383,89),(384,965),(385,299),(386,378),(387,1),(387,237),(388,1),(388,237),(389,1),(389,237),(390,9),(390,281),(391,9),(391,281),(392,9),(392,281),(393,15),(393,93),(394,15),(394,93),(395,15),(395,93),(396,31),(396,278),(397,50),(397,278),(398,50),(398,278),(399,87),(399,589),(399,831),(400,87),(400,589),(400,831),(401,22),(401,23),(402,29),(402,127),(403,41),(403,50),(403,65),(404,41),(404,50),(404,65),(405,41),(405,50),(405,65),(406,64),(406,298),(406,302),(407,64),(407,127),(407,298),(408,72),(408,339),(409,72),(409,339),(410,190),(410,261),(411,190),(411,261),(412,23),(412,239),(413,239),(413,355),(414,25),(414,29),(415,42),(415,568),(416,52),(416,378),(417,22),(417,126),(417,358),(418,134),(418,314),(419,134),(419,314),(420,2),(421,1043),(422,122),(422,232),(422,882),(423,122),(423,232),(423,882),(424,126),(424,127),(424,238),(425,263),(425,279),(425,1055),(426,263),(426,279),(426,1055),(427,22),(427,129),(427,1060),(428,82),(428,129),(428,1060),(429,243),(430,249),(430,340),(430,458),(431,31),(431,129),(431,205),(432,140),(432,205),(432,225),(433,243),(434,31),(434,105),(434,263),(435,31),(435,105),(435,263),(436,243),(436,784),(436,1083),(437,243),(437,784),(437,1083),(438,189),(438,190),(438,345),(439,127),(439,261),(439,326),(440,84),(440,298),(440,299),(441,31),(441,32),(441,33),(442,99),(442,378),(443,60),(443,820),(444,60),(444,820),(445,60),(445,820),(446,126),(446,178),(446,225),(447,98),(447,170),(447,521),(448,98),(448,146),(448,170),(449,122),(449,652),(450,122),(450,652),(451,30),(451,31),(451,273),(452,30),(452,31),(452,273),(453,109),(453,233),(453,355),(454,109),(454,233),(454,355),(455,243),(456,134),(456,314),(456,882),(457,134),(457,314),(457,882),(458,134),(458,150),(458,314),(459,261),(459,1143),(460,261),(460,1143),(461,378),(461,565),(462,190),(462,210),(462,212),(463,133),(463,204),(463,205),(464,57),(464,278),(464,834),(465,2),(465,206),(465,302),(466,138),(466,1161),(467,138),(467,200),(468,42),(468,299),(468,458),(469,25),(469,97),(469,506),(470,2),(470,302),(471,227),(471,384),(472,60),(472,255),(472,739),(473,204),(473,225),(473,384),(474,212),(474,354),(474,363),(475,146),(475,170),(475,1185),(476,122),(476,190),(476,210),(477,97),(477,378),(478,245),(478,384),(479,243),(480,243),(481,243),(482,243),(483,378),(483,528),(484,378),(484,528),(485,88),(485,200),(486,1204),(487,378),(487,528),(488,243),(489,226),(490,226),(491,1210),(492,298),(493,1212),(494,1213),(495,1),(495,559),(496,1),(496,559),(497,1),(497,559),(498,9),(498,225),(499,9),(499,225),(500,9),(500,278),(501,15),(501,237),(502,15),(502,237),(503,15),(503,237),(504,22),(504,31),(504,212),(505,31),(505,212),(505,319),(506,22),(506,126),(506,138),(507,50),(507,61),(507,305),(508,50),(508,61),(508,305),(509,129),(509,279),(509,521),(510,129),(510,279),(510,521),(511,1),(511,178),(512,1),(512,178),(513,9),(513,178),(514,9),(514,178),(515,15),(515,178),(516,15),(516,178),(517,159),(517,250),(517,528),(518,159),(518,250),(518,528),(519,33),(519,65),(519,458),(520,33),(520,65),(520,458),(521,33),(521,65),(521,458),(522,57),(522,478),(522,1161),(523,57),(523,478),(523,1161),(524,122),(524,190),(524,248),(525,122),(525,190),(525,248),(526,122),(526,190),(526,652),(527,87),(527,831),(527,1060),(528,87),(528,831),(528,1060),(529,61),(529,122),(529,339),(530,61),(530,122),(530,339),(531,206),(531,300),(531,1060),(532,41),(532,72),(532,281),(533,41),(533,72),(533,281),(534,41),(534,72),(534,281),(535,134),(535,150),(535,226),(536,134),(536,150),(536,226),(537,134),(537,150),(537,233),(538,41),(538,98),(538,339),(539,98),(539,190),(539,339),(540,2),(540,29),(540,239),(541,2),(541,239),(541,302),(542,2),(542,29),(542,239),(543,29),(543,64),(543,506),(544,29),(544,64),(544,506),(545,29),(545,64),(545,506),(546,2),(546,99),(546,521),(547,2),(547,99),(547,521),(548,2),(548,205),(548,302),(549,2),(549,205),(549,302),(550,278),(550,339),(550,354),(551,50),(551,139),(551,340),(552,50),(552,139),(552,340),(553,50),(553,139),(553,340),(554,42),(554,98),(555,72),(555,1379),(556,2),(556,150),(556,882),(557,190),(557,237),(557,248),(558,190),(558,237),(558,248),(559,23),(559,50),(559,340),(560,23),(560,50),(560,340),(561,25),(561,83),(561,119),(562,1398),(563,1398),(564,134),(564,190),(564,834),(565,134),(565,190),(565,834),(566,1406),(567,1406),(568,105),(568,232),(568,263),(569,105),(569,248),(569,263),(570,1414),(571,1414),(572,82),(572,127),(572,238),(573,82),(573,127),(573,238),(574,93),(574,97),(574,527),(575,93),(575,97),(575,527),(576,93),(576,97),(576,527),(577,83),(577,206),(577,239),(578,83),(578,206),(578,239),(579,83),(579,206),(579,239),(580,31),(580,33),(580,226),(581,31),(581,33),(581,226),(582,227),(582,248),(582,384),(583,227),(583,248),(583,384),(584,227),(584,248),(584,1143),(585,2),(585,299),(585,478),(586,2),(586,299),(586,478),(587,56),(587,1161),(588,23),(588,29),(588,169),(589,29),(589,237),(589,239),(590,107),(590,206),(591,107),(591,206),(592,110),(592,150),(592,245),(593,110),(593,150),(593,245),(594,206),(594,226),(594,300),(595,24),(595,29),(595,52),(596,24),(596,29),(596,52),(597,1488),(598,355),(598,1488),(599,183),(599,469),(599,797),(600,183),(600,469),(600,797),(601,183),(601,469),(601,797),(602,243),(603,243),(604,243),(605,159),(605,212),(605,528),(606,159),(606,212),(606,528),(607,88),(607,99),(607,200),(608,88),(608,99),(608,200),(609,88),(609,99),(609,200),(610,52),(610,65),(610,339),(611,52),(611,65),(611,339),(612,52),(612,65),(612,339),(613,345),(613,384),(613,1528),(614,134),(614,384),(614,1528),(615,243),(616,226),(616,237),(616,239),(617,226),(617,232),(617,279),(618,56),(618,60),(618,129),(619,98),(619,206),(619,278),(620,98),(620,206),(620,278),(621,72),(621,339),(621,820),(622,169),(622,281),(622,1060),(623,169),(623,281),(623,1060),(624,98),(624,140),(624,378),(625,98),(625,140),(625,378),(626,261),(626,278),(626,478),(627,31),(627,42),(627,72),(628,31),(628,72),(628,140),(629,33),(629,239),(629,248),(630,33),(630,239),(630,248),(631,88),(631,178),(631,836),(632,29),(632,42),(632,744),(633,42),(634,42),(635,243),(636,29),(636,200),(637,29),(637,200),(638,146),(639,146),(640,146),(641,140),(641,521),(642,140),(642,521),(643,1599),(644,1600),(645,72),(645,122),(646,378),(647,146),(648,299),(649,363),(650,1),(650,1608),(651,1),(651,1608),(652,1),(652,1608),(653,9),(653,1614),(654,9),(654,1614),(655,9),(655,1614),(656,15),(656,897),(657,15),(657,897),(658,15),(658,897),(659,126),(659,477),(659,1626),(660,126),(660,477),(660,1626),(661,33),(661,1632),(662,200),(662,1632),(663,200),(663,1632),(664,21),(664,24),(664,84),(665,23),(665,84),(666,21),(666,24),(666,84),(667,52),(667,65),(667,340),(668,52),(668,65),(668,340),(669,1651),(669,1652),(670,1651),(670,1652),(671,1651),(671,1652),(672,478),(672,1658),(673,478),(673,1658),(674,281),(674,305),(674,339),(675,281),(675,305),(675,339),(676,1667),(677,31),(677,99),(677,205),(678,31),(678,99),(678,521),(679,169),(680,169),(681,1676),(682,300),(682,1678),(683,300),(683,1678),(684,279),(684,1681),(685,279),(685,1681),(686,99),(686,559),(686,590),(687,99),(687,559),(687,590),(688,30),(688,565),(688,1691),(689,30),(689,565),(689,1691),(690,64),(690,233),(690,354),(691,64),(691,233),(691,354),(692,1703),(693,1703),(694,10),(694,60),(694,109),(695,10),(695,60),(695,109),(696,190),(696,1711),(697,189),(697,1711),(698,1143),(698,1715),(699,1143),(699,1715),(700,82),(700,1720),(701,129),(701,279),(701,339),(702,126),(702,469),(702,1626),(703,183),(703,190),(704,226),(704,478),(704,1731),(705,226),(705,478),(705,1731),(706,226),(706,478),(706,1731),(707,521),(707,1614),(708,97),(708,268),(708,298),(709,97),(709,268),(709,298),(710,97),(710,126),(710,249),(711,97),(711,126),(711,249),(712,190),(712,205),(712,227),(713,190),(713,205),(713,227),(714,97),(714,99),(714,528),(715,97),(715,99),(715,528),(716,1764),(717,1765),(718,1766),(719,183),(720,1614),(721,150),(722,1),(722,1771),(723,1),(723,1771),(724,1),(724,1771),(725,9),(725,50),(726,9),(726,50),(727,9),(727,50),(728,15),(728,1783),(729,15),(729,1783),(730,15),(730,1783),(731,31),(731,126),(731,238),(732,31),(732,126),(732,238),(733,31),(733,72),(733,238),(734,354),(734,1711),(734,1797),(735,354),(735,1711),(735,1797),(736,29),(737,1804),(738,243),(739,139),(739,255),(739,281),(740,139),(740,255),(740,281),(741,1812),(742,21),(742,568),(742,1681),(743,21),(743,568),(743,1681),(744,31),(744,138),(744,170),(745,31),(745,61),(745,170),(746,1825),(747,129),(747,206),(747,1826),(748,129),(748,206),(748,1826),(749,98),(749,205),(749,1833),(750,98),(750,205),(750,1833),(751,150),(751,1838),(752,150),(752,1838),(753,302),(753,559),(754,302),(754,559),(755,16),(755,107),(755,319),(756,16),(756,107),(756,319),(757,204),(757,1852),(758,204),(758,1852),(759,82),(759,1060),(759,1856),(760,52),(760,1060),(760,1856),(761,204),(761,302),(761,1681),(762,204),(762,302),(762,1681),(763,302),(763,1681),(763,1869),(764,298),(764,1651),(764,1872),(765,98),(765,528),(765,1652),(766,140),(766,1877),(767,1879),(768,1880),(769,60),(769,1881),(770,60),(770,1881),(771,87),(771,1885),(772,273),(773,1888),(774,1889),(775,1890),(776,237),(777,57),(777,190),(777,1488),(778,1895),(779,119),(779,1711),(779,1896),(780,133),(780,478),(780,1899),(781,1902),(782,239),(782,261),(782,1608),(783,239),(783,261),(783,1608),(784,239),(784,261),(784,1608),(785,528),(785,1912),(786,528),(786,1914),(787,528),(787,1916),(788,528),(788,1918),(789,87),(790,190),(791,1922),(792,1923),(793,1924),(794,1924),(795,1924),(796,1924),(797,1924),(798,1924),(799,1924),(800,1931),(801,1932),(802,127),(803,1924),(804,1924),(805,1924),(806,1924),(807,358),(808,210),(809,281),(810,1),(810,1916),(811,1),(811,1916),(812,1),(812,1916),(813,9),(813,1948),(814,9),(814,1948),(815,9),(815,1948),(816,15),(816,30),(817,15),(817,30),(818,15),(818,30),(819,178),(819,1626),(820,178),(820,1626),(821,31),(821,33),(821,52),(822,31),(822,33),(822,52),(823,52),(823,378),(823,1971),(824,24),(824,29),(824,528),(825,24),(825,29),(825,528),(826,29),(826,97),(826,528),(827,22),(827,279),(827,1797),(828,22),(828,279),(828,1797),(829,107),(829,206),(829,1987),(830,107),(830,206),(830,1987),(831,22),(831,1608),(831,1856),(832,170),(832,1608),(832,1856),(833,134),(833,237),(833,1711),(834,134),(834,237),(834,1711),(835,345),(835,2005),(836,93),(836,1711),(837,88),(837,1083),(837,2009),(838,88),(838,200),(838,2009),(839,88),(839,200),(839,2009),(840,178),(840,1608),(840,2018),(841,42),(841,178),(841,2018),(842,178),(842,225),(842,2018),(843,23),(843,60),(843,2027),(844,23),(844,60),(844,2027),(845,2033),(846,134),(846,2035),(847,134),(847,2035),(848,56),(848,345),(848,1060),(849,127),(849,469),(849,2041),(850,88),(850,200),(850,836),(851,88),(851,200),(851,836),(852,127),(852,129),(853,127),(853,129),(854,245),(854,248),(855,245),(855,248),(856,300),(856,355),(856,464),(857,300),(857,355),(857,464),(858,300),(858,355),(858,464),(859,97),(859,521),(859,565),(860,97),(860,521),(860,565),(861,97),(861,521),(861,565),(862,41),(862,140),(862,278),(863,273),(863,1691),(863,2081),(864,248),(864,2083),(865,170),(865,305),(866,32),(866,227),(866,2087),(867,2089),(868,1678),(868,1681),(869,1678),(869,1681),(870,140),(870,273),(871,57),(871,1912),(872,21),(872,2099),(873,21),(873,2099),(874,2102),(875,2103),(876,98),(876,159),(876,1914),(877,2107),(878,72),(878,784),(879,72),(879,784),(880,42),(880,61),(880,358),(881,56),(881,358),(881,1528),(882,61),(882,150),(882,1711),(883,150),(883,227),(883,1528),(884,556),(884,784),(884,2126),(885,99),(885,183),(885,245),(886,99),(886,183),(886,245),(887,99),(887,183),(887,245),(888,2136),(889,2137),(890,378),(891,98),(892,2140),(893,302),(894,2142),(895,2143),(896,2144),(897,2145),(898,52),(899,50),(899,97),(899,478),(900,29),(900,72),(900,1185),(901,41),(901,52),(901,1608),(902,134),(902,339),(902,354),(903,233),(903,279),(903,378),(904,50),(904,64),(904,134),(905,82),(905,559),(906,1),(906,897),(907,1),(907,897),(908,1),(908,897),(909,9),(909,87),(910,9),(910,87),(911,9),(911,87),(912,15),(912,340),(913,15),(913,340),(914,15),(914,340),(915,178),(915,225),(915,1678),(916,178),(916,225),(916,2188),(917,249),(917,1797),(918,249),(918,1797),(919,25),(919,29),(920,25),(920,29),(921,56),(921,281),(921,298),(922,281),(922,298),(922,358),(923,281),(923,298),(923,358),(924,22),(924,126),(924,205),(925,84),(925,127),(925,1626),(926,205),(926,1060),(927,1678),(927,2216),(928,220),(928,268),(929,220),(929,268),(930,268),(930,2222),(931,41),(931,42),(931,50),(932,183),(932,190),(932,2227),(933,183),(933,190),(933,2227),(934,183),(934,190),(934,2227),(935,88),(935,200),(936,88),(936,248),(937,88),(937,248),(938,56),(938,110),(938,205),(939,56),(939,110),(939,2245),(940,93),(940,358),(940,2248),(941,93),(941,358),(941,2248),(942,22),(942,50),(942,1797),(943,50),(943,1797),(943,2258),(944,279),(944,521),(944,565),(945,233),(945,279),(945,521),(946,99),(946,713),(947,99),(947,713),(948,2270),(949,2270),(950,206),(950,237),(950,2274),(951,2),(951,249),(951,1060),(952,2),(952,249),(952,589),(953,23),(953,24),(954,159),(954,528),(955,97),(955,355),(955,506),(956,97),(956,506),(956,2290),(957,205),(957,339),(957,565),(958,205),(958,339),(958,565),(959,205),(959,339),(959,565),(960,60),(960,345),(960,1731),(961,60),(961,345),(961,1731),(962,31),(962,33),(962,2310),(963,314),(964,2313),(965,239),(965,1204),(966,239),(966,326),(967,23),(967,206),(968,60),(968,2321),(969,1852),(969,2323),(970,1852),(970,2323),(971,126),(971,1856),(972,61),(972,1856),(973,32),(973,305),(973,2333),(974,72),(974,225),(974,384),(975,72),(975,225),(975,1528),(976,339),(976,1185),(977,87),(977,204),(977,314),(978,882),(978,2345),(979,98),(979,138),(979,140),(980,64),(980,87),(980,150),(981,478),(981,2353),(981,2354),(982,22),(982,299),(982,345),(983,140),(983,378),(983,2360),(984,2362),(985,2362),(986,2362),(987,2362),(988,2362),(989,2362),(990,2368),(991,2368),(992,2368),(993,2368),(994,2368),(995,2368),(996,227),(996,2374),(997,227),(997,2374),(998,227),(998,2374),(999,345),(1000,2381),(1001,2382),(1002,2383),(1003,2384),(1004,2385),(1005,2362),(1006,2368),(1007,2388),(1008,2389),(1009,2362),(1010,2368); +/*!40000 ALTER TABLE `pokemon_abilities` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `pokemon_egg_groups` +-- + +DROP TABLE IF EXISTS `pokemon_egg_groups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `pokemon_egg_groups` ( + `pokemon_id` int(11) NOT NULL, + `egg_group_id` int(11) NOT NULL, + PRIMARY KEY (`pokemon_id`,`egg_group_id`), + KEY `egg_group_id` (`egg_group_id`), + CONSTRAINT `pokemon_egg_groups_ibfk_1` FOREIGN KEY (`pokemon_id`) REFERENCES `pokemon` (`id`), + CONSTRAINT `pokemon_egg_groups_ibfk_2` FOREIGN KEY (`egg_group_id`) REFERENCES `egg_groups` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `pokemon_egg_groups` +-- + +LOCK TABLES `pokemon_egg_groups` WRITE; +/*!40000 ALTER TABLE `pokemon_egg_groups` DISABLE KEYS */; +INSERT INTO `pokemon_egg_groups` VALUES (1,1),(1,2),(2,1),(2,2),(3,1),(3,2),(4,1),(4,8),(5,1),(5,8),(6,1),(6,8),(7,1),(7,14),(8,1),(8,14),(9,1),(9,14),(10,19),(11,19),(12,19),(13,19),(14,19),(15,19),(16,25),(17,25),(18,25),(19,28),(20,28),(21,25),(22,25),(23,8),(23,28),(24,8),(24,28),(25,28),(25,37),(26,28),(26,37),(27,28),(28,28),(29,1),(29,28),(30,44),(31,44),(32,1),(32,28),(33,1),(33,28),(34,1),(34,28),(35,37),(36,37),(37,28),(38,28),(39,37),(40,37),(41,25),(42,25),(43,2),(44,2),(45,2),(46,2),(46,19),(47,2),(47,19),(48,19),(49,19),(50,28),(51,28),(52,28),(53,28),(54,14),(54,28),(55,14),(55,28),(56,28),(57,28),(58,28),(59,28),(60,14),(61,14),(62,14),(63,84),(64,84),(65,84),(66,84),(67,84),(68,84),(69,2),(70,2),(71,2),(72,93),(73,93),(74,95),(75,95),(76,95),(77,28),(78,28),(79,1),(79,14),(80,1),(80,14),(81,95),(82,95),(83,25),(83,28),(84,25),(85,25),(86,14),(86,28),(87,14),(87,28),(88,114),(89,114),(90,93),(91,93),(92,114),(93,114),(94,114),(95,95),(96,84),(97,84),(98,93),(99,93),(100,95),(101,95),(102,2),(103,2),(104,1),(105,1),(106,84),(107,84),(108,1),(109,114),(110,114),(111,1),(111,28),(112,1),(112,28),(113,37),(114,2),(115,1),(116,8),(116,14),(117,8),(117,14),(118,148),(119,148),(120,93),(121,93),(122,84),(123,19),(124,84),(125,84),(126,84),(127,19),(128,28),(129,8),(129,148),(130,8),(130,148),(131,1),(131,14),(132,165),(133,28),(134,28),(135,28),(136,28),(137,95),(138,14),(138,93),(139,14),(139,93),(140,14),(140,93),(141,14),(141,93),(142,25),(143,1),(144,44),(145,44),(146,44),(147,8),(147,14),(148,8),(148,14),(149,8),(149,14),(150,44),(151,44),(152,1),(152,2),(153,1),(153,2),(154,1),(154,2),(155,28),(156,28),(157,28),(158,1),(158,14),(159,1),(159,14),(160,1),(160,14),(161,28),(162,28),(163,25),(164,25),(165,19),(166,19),(167,19),(168,19),(169,25),(170,148),(171,148),(172,44),(173,44),(174,44),(175,44),(176,25),(176,37),(177,25),(178,25),(179,1),(179,28),(180,1),(180,28),(181,1),(181,28),(182,2),(183,14),(183,37),(184,14),(184,37),(185,95),(186,14),(187,2),(187,37),(188,2),(188,37),(189,2),(189,37),(190,28),(191,2),(192,2),(193,19),(194,14),(194,28),(195,14),(195,28),(196,28),(197,28),(198,25),(199,1),(199,14),(200,114),(201,44),(202,114),(203,28),(204,19),(205,19),(206,28),(207,19),(208,95),(209,28),(209,37),(210,28),(210,37),(211,148),(212,19),(213,19),(214,19),(215,28),(216,28),(217,28),(218,114),(219,114),(220,28),(221,28),(222,14),(222,93),(223,14),(223,148),(224,14),(224,148),(225,14),(225,28),(226,14),(227,25),(228,28),(229,28),(230,8),(230,14),(231,28),(232,28),(233,95),(234,28),(235,28),(236,44),(237,84),(238,44),(239,44),(240,44),(241,28),(242,37),(243,44),(244,44),(245,44),(246,1),(247,1),(248,1),(249,44),(250,44),(251,44),(252,1),(252,8),(253,1),(253,8),(254,1),(254,8),(255,28),(256,28),(257,28),(258,1),(258,14),(259,1),(259,14),(260,1),(260,14),(261,28),(262,28),(263,28),(264,28),(265,19),(266,19),(267,19),(268,19),(269,19),(270,2),(270,14),(271,2),(271,14),(272,2),(272,14),(273,2),(273,28),(274,2),(274,28),(275,2),(275,28),(276,25),(277,25),(278,14),(278,25),(279,14),(279,25),(280,84),(280,114),(281,84),(281,114),(282,84),(282,114),(283,14),(283,19),(284,14),(284,19),(285,2),(285,37),(286,2),(286,37),(287,28),(288,28),(289,28),(290,19),(291,19),(292,95),(293,1),(293,28),(294,1),(294,28),(295,1),(295,28),(296,84),(297,84),(298,44),(299,95),(300,28),(300,37),(301,28),(301,37),(302,84),(303,28),(303,37),(304,1),(305,1),(306,1),(307,84),(308,84),(309,28),(310,28),(311,37),(312,37),(313,19),(313,84),(314,19),(314,84),(315,2),(315,37),(316,114),(317,114),(318,148),(319,148),(320,28),(320,148),(321,28),(321,148),(322,28),(323,28),(324,28),(325,28),(326,28),(327,28),(327,84),(328,8),(328,19),(329,8),(329,19),(330,8),(330,19),(331,2),(331,84),(332,2),(332,84),(333,8),(333,25),(334,8),(334,25),(335,28),(336,8),(336,28),(337,95),(338,95),(339,148),(340,148),(341,14),(341,93),(342,14),(342,93),(343,95),(344,95),(345,93),(346,93),(347,93),(348,93),(349,8),(349,14),(350,8),(350,14),(351,37),(351,114),(352,28),(353,114),(354,114),(355,114),(356,114),(357,1),(357,2),(358,114),(359,28),(360,44),(361,37),(361,95),(362,37),(362,95),(363,14),(363,28),(364,14),(364,28),(365,14),(365,28),(366,14),(367,14),(368,14),(369,14),(369,148),(370,148),(371,8),(372,8),(373,8),(374,95),(375,95),(376,95),(377,44),(378,44),(379,44),(380,44),(381,44),(382,44),(383,44),(384,44),(385,44),(386,44),(387,1),(387,2),(388,1),(388,2),(389,1),(389,2),(390,28),(390,84),(391,28),(391,84),(392,28),(392,84),(393,14),(393,28),(394,14),(394,28),(395,14),(395,28),(396,25),(397,25),(398,25),(399,14),(399,28),(400,14),(400,28),(401,19),(402,19),(403,28),(404,28),(405,28),(406,44),(407,2),(407,37),(408,1),(409,1),(410,1),(411,1),(412,19),(413,19),(414,19),(415,19),(416,19),(417,28),(417,37),(418,14),(418,28),(419,14),(419,28),(420,2),(420,37),(421,2),(421,37),(422,14),(422,114),(423,14),(423,114),(424,28),(425,114),(426,114),(427,28),(427,84),(428,28),(428,84),(429,114),(430,25),(431,28),(432,28),(433,44),(434,28),(435,28),(436,95),(437,95),(438,44),(439,44),(440,44),(441,25),(442,114),(443,1),(443,8),(444,1),(444,8),(445,1),(445,8),(446,44),(447,44),(448,28),(448,84),(449,28),(450,28),(451,19),(451,93),(452,19),(452,93),(453,84),(454,84),(455,2),(456,148),(457,148),(458,44),(459,1),(459,2),(460,1),(460,2),(461,28),(462,95),(463,1),(464,1),(464,28),(465,2),(466,84),(467,84),(468,25),(468,37),(469,19),(470,28),(471,28),(472,19),(473,28),(474,95),(475,84),(475,114),(476,95),(477,114),(478,37),(478,95),(479,114),(480,44),(481,44),(482,44),(483,44),(484,44),(485,44),(486,44),(487,44),(488,44),(489,14),(489,37),(490,14),(490,37),(491,44),(492,44),(493,44),(494,44),(495,2),(495,28),(496,2),(496,28),(497,2),(497,28),(498,28),(499,28),(500,28),(501,28),(502,28),(503,28),(504,28),(505,28),(506,28),(507,28),(508,28),(509,28),(510,28),(511,28),(512,28),(513,28),(514,28),(515,28),(516,28),(517,28),(518,28),(519,25),(520,25),(521,25),(522,28),(523,28),(524,95),(525,95),(526,95),(527,25),(527,28),(528,25),(528,28),(529,28),(530,28),(531,37),(532,84),(533,84),(534,84),(535,14),(536,14),(537,14),(538,84),(539,84),(540,19),(541,19),(542,19),(543,19),(544,19),(545,19),(546,2),(546,37),(547,2),(547,37),(548,2),(549,2),(550,148),(551,28),(552,28),(553,28),(554,28),(555,28),(556,2),(557,19),(557,95),(558,19),(558,95),(559,8),(559,28),(560,8),(560,28),(561,25),(562,95),(562,114),(563,95),(563,114),(564,14),(564,93),(565,14),(565,93),(566,25),(566,93),(567,25),(567,93),(568,95),(569,95),(570,28),(571,28),(572,28),(573,28),(574,84),(575,84),(576,84),(577,114),(578,114),(579,114),(580,14),(580,25),(581,14),(581,25),(582,95),(583,95),(584,95),(585,28),(586,28),(587,28),(588,19),(589,19),(590,2),(591,2),(592,114),(593,114),(594,14),(594,148),(595,19),(596,19),(597,2),(597,95),(598,2),(598,95),(599,95),(600,95),(601,95),(602,114),(603,114),(604,114),(605,84),(606,84),(607,114),(608,114),(609,114),(610,1),(610,8),(611,1),(611,8),(612,1),(612,8),(613,28),(614,28),(615,95),(616,19),(617,19),(618,14),(618,114),(619,28),(619,84),(620,28),(620,84),(621,1),(621,8),(622,95),(623,95),(624,84),(625,84),(626,28),(627,25),(628,25),(629,25),(630,25),(631,28),(632,19),(633,8),(634,8),(635,8),(636,19),(637,19),(638,44),(639,44),(640,44),(641,44),(642,44),(643,44),(644,44),(645,44),(646,44),(647,44),(648,44),(649,44),(650,28),(651,28),(652,28),(653,28),(654,28),(655,28),(656,14),(657,14),(658,14),(659,28),(660,28),(661,25),(662,25),(663,25),(664,19),(665,19),(666,19),(667,28),(668,28),(669,37),(670,37),(671,37),(672,28),(673,28),(674,28),(674,84),(675,28),(675,84),(676,28),(677,28),(678,28),(679,95),(680,95),(681,95),(682,37),(683,37),(684,37),(685,37),(686,14),(686,148),(687,14),(687,148),(688,93),(689,93),(690,8),(690,14),(691,8),(691,14),(692,14),(692,93),(693,14),(693,93),(694,1),(694,8),(695,1),(695,8),(696,1),(696,8),(697,1),(697,8),(698,1),(699,1),(700,28),(701,25),(701,84),(702,28),(702,37),(703,37),(703,95),(704,8),(705,8),(706,8),(707,95),(708,2),(708,114),(709,2),(709,114),(710,114),(711,114),(712,1),(712,95),(713,1),(713,95),(714,8),(714,25),(715,8),(715,25),(716,44),(717,44),(718,44),(719,44),(720,44),(721,44),(722,25),(723,25),(724,25),(725,28),(726,28),(727,28),(728,14),(728,28),(729,14),(729,28),(730,14),(730,28),(731,25),(732,25),(733,25),(734,28),(735,28),(736,19),(737,19),(738,19),(739,93),(740,93),(741,25),(742,19),(742,37),(743,19),(743,37),(744,28),(745,28),(746,148),(747,14),(748,14),(749,28),(750,28),(751,14),(751,19),(752,14),(752,19),(753,2),(754,2),(755,2),(756,2),(757,1),(757,8),(758,1),(758,8),(759,28),(760,28),(761,2),(762,2),(763,2),(764,2),(765,28),(766,28),(767,19),(767,93),(768,19),(768,93),(769,114),(770,114),(771,14),(772,44),(773,44),(774,95),(775,28),(776,1),(776,8),(777,28),(777,37),(778,114),(779,148),(780,1),(780,8),(781,95),(782,8),(783,8),(784,8),(785,44),(786,44),(787,44),(788,44),(789,44),(790,44),(791,44),(792,44),(793,44),(794,44),(795,44),(796,44),(797,44),(798,44),(799,44),(800,44),(801,44),(802,44),(803,44),(804,44),(805,44),(806,44),(807,44),(808,44),(809,44),(810,2),(810,28),(811,2),(811,28),(812,2),(812,28),(813,28),(813,84),(814,28),(814,84),(815,28),(815,84),(816,14),(816,28),(817,14),(817,28),(818,14),(818,28),(819,28),(820,28),(821,25),(822,25),(823,25),(824,19),(825,19),(826,19),(827,28),(828,28),(829,2),(830,2),(831,28),(832,28),(833,1),(833,14),(834,1),(834,14),(835,28),(836,28),(837,95),(838,95),(839,95),(840,2),(840,8),(841,2),(841,8),(842,2),(842,8),(843,8),(843,28),(844,8),(844,28),(845,14),(845,25),(846,148),(847,148),(848,44),(849,84),(850,19),(851,19),(852,14),(852,84),(853,14),(853,84),(854,95),(854,114),(855,95),(855,114),(856,37),(857,37),(858,37),(859,37),(859,84),(860,37),(860,84),(861,37),(861,84),(862,28),(863,28),(864,14),(864,93),(865,25),(865,28),(866,84),(867,95),(867,114),(868,37),(868,114),(869,37),(869,114),(870,37),(870,95),(871,14),(871,114),(872,19),(873,19),(874,95),(875,14),(875,28),(876,37),(877,28),(877,37),(878,28),(878,95),(879,28),(879,95),(880,44),(881,44),(882,44),(883,44),(884,8),(884,95),(885,8),(885,114),(886,8),(886,114),(887,8),(887,114),(888,44),(889,44),(890,44),(891,44),(892,44),(893,44),(894,44),(895,44),(896,44),(897,44),(898,44),(899,28),(900,19),(901,28),(902,148),(903,28),(904,148),(905,44),(906,2),(906,28),(907,2),(907,28),(908,2),(908,28),(909,28),(910,28),(911,28),(912,14),(912,25),(913,14),(913,25),(914,14),(914,25),(915,28),(916,28),(917,19),(918,19),(919,19),(920,19),(921,28),(922,28),(923,28),(924,28),(924,37),(925,28),(925,37),(926,28),(926,95),(927,28),(927,95),(928,2),(929,2),(930,2),(931,25),(932,95),(933,95),(934,95),(935,84),(936,84),(937,84),(938,14),(939,14),(940,14),(940,25),(941,14),(941,25),(942,28),(943,28),(944,28),(945,28),(946,2),(947,2),(948,2),(949,2),(950,93),(951,2),(952,2),(953,19),(954,19),(955,25),(956,25),(957,37),(958,37),(959,37),(960,93),(961,93),(962,25),(963,28),(963,148),(964,28),(964,148),(965,95),(966,95),(967,28),(968,28),(969,95),(970,95),(971,28),(972,28),(973,25),(974,28),(975,28),(976,148),(977,148),(978,148),(979,28),(980,14),(980,28),(981,28),(982,28),(983,84),(984,44),(985,44),(986,44),(987,44),(988,44),(989,44),(990,44),(991,44),(992,44),(993,44),(994,44),(995,44),(996,8),(996,95),(997,8),(997,95),(998,8),(998,95),(999,44),(1000,44),(1001,44),(1002,44),(1003,44),(1004,44),(1005,44),(1006,44),(1007,44),(1008,44),(1009,44),(1010,44); +/*!40000 ALTER TABLE `pokemon_egg_groups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `pokemon_types` +-- + +DROP TABLE IF EXISTS `pokemon_types`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `pokemon_types` ( + `pokemon_id` int(11) NOT NULL, + `type_id` int(11) NOT NULL, + PRIMARY KEY (`pokemon_id`,`type_id`), + KEY `type_id` (`type_id`), + CONSTRAINT `pokemon_types_ibfk_1` FOREIGN KEY (`pokemon_id`) REFERENCES `pokemon` (`id`), + CONSTRAINT `pokemon_types_ibfk_2` FOREIGN KEY (`type_id`) REFERENCES `types` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `pokemon_types` +-- + +LOCK TABLES `pokemon_types` WRITE; +/*!40000 ALTER TABLE `pokemon_types` DISABLE KEYS */; +INSERT INTO `pokemon_types` VALUES (1,5),(1,8),(2,5),(2,8),(3,5),(3,8),(4,2),(5,2),(6,2),(6,10),(7,3),(8,3),(9,3),(10,12),(11,12),(12,10),(12,12),(13,8),(13,12),(14,8),(14,12),(15,8),(15,12),(16,1),(16,10),(17,1),(17,10),(18,1),(18,10),(19,1),(20,1),(21,1),(21,10),(22,1),(22,10),(23,8),(24,8),(25,4),(26,4),(27,9),(28,9),(29,8),(30,8),(31,8),(31,9),(32,8),(33,8),(34,8),(34,9),(35,18),(36,18),(37,2),(38,2),(39,1),(39,18),(40,1),(40,18),(41,8),(41,10),(42,8),(42,10),(43,5),(43,8),(44,5),(44,8),(45,5),(45,8),(46,5),(46,12),(47,5),(47,12),(48,8),(48,12),(49,8),(49,12),(50,9),(51,9),(52,1),(53,1),(54,3),(55,3),(56,7),(57,7),(58,2),(59,2),(60,3),(61,3),(62,3),(62,7),(63,11),(64,11),(65,11),(66,7),(67,7),(68,7),(69,5),(69,8),(70,5),(70,8),(71,5),(71,8),(72,3),(72,8),(73,3),(73,8),(74,9),(74,13),(75,9),(75,13),(76,9),(76,13),(77,2),(78,2),(79,3),(79,11),(80,3),(80,11),(81,4),(81,17),(82,4),(82,17),(83,1),(83,10),(84,1),(84,10),(85,1),(85,10),(86,3),(87,3),(87,6),(88,8),(89,8),(90,3),(91,3),(91,6),(92,8),(92,14),(93,8),(93,14),(94,8),(94,14),(95,9),(95,13),(96,11),(97,11),(98,3),(99,3),(100,4),(101,4),(102,5),(102,11),(103,5),(103,11),(104,9),(105,9),(106,7),(107,7),(108,1),(109,8),(110,8),(111,9),(111,13),(112,9),(112,13),(113,1),(114,5),(115,1),(116,3),(117,3),(118,3),(119,3),(120,3),(121,3),(121,11),(122,11),(122,18),(123,10),(123,12),(124,6),(124,11),(125,4),(126,2),(127,12),(128,1),(129,3),(130,3),(130,10),(131,3),(131,6),(132,1),(133,1),(134,3),(135,4),(136,2),(137,1),(138,3),(138,13),(139,3),(139,13),(140,3),(140,13),(141,3),(141,13),(142,10),(142,13),(143,1),(144,6),(144,10),(145,4),(145,10),(146,2),(146,10),(147,15),(148,15),(149,10),(149,15),(150,11),(151,11),(152,5),(153,5),(154,5),(155,2),(156,2),(157,2),(158,3),(159,3),(160,3),(161,1),(162,1),(163,1),(163,10),(164,1),(164,10),(165,10),(165,12),(166,10),(166,12),(167,8),(167,12),(168,8),(168,12),(169,8),(169,10),(170,3),(170,4),(171,3),(171,4),(172,4),(173,18),(174,1),(174,18),(175,18),(176,10),(176,18),(177,10),(177,11),(178,10),(178,11),(179,4),(180,4),(181,4),(182,5),(183,3),(183,18),(184,3),(184,18),(185,13),(186,3),(187,5),(187,10),(188,5),(188,10),(189,5),(189,10),(190,1),(191,5),(192,5),(193,10),(193,12),(194,3),(194,9),(195,3),(195,9),(196,11),(197,16),(198,10),(198,16),(199,3),(199,11),(200,14),(201,11),(202,11),(203,1),(203,11),(204,12),(205,12),(205,17),(206,1),(207,9),(207,10),(208,9),(208,17),(209,18),(210,18),(211,3),(211,8),(212,12),(212,17),(213,12),(213,13),(214,7),(214,12),(215,6),(215,16),(216,1),(217,1),(218,2),(219,2),(219,13),(220,6),(220,9),(221,6),(221,9),(222,3),(222,13),(223,3),(224,3),(225,6),(225,10),(226,3),(226,10),(227,10),(227,17),(228,2),(228,16),(229,2),(229,16),(230,3),(230,15),(231,9),(232,9),(233,1),(234,1),(235,1),(236,7),(237,7),(238,6),(238,11),(239,4),(240,2),(241,1),(242,1),(243,4),(244,2),(245,3),(246,9),(246,13),(247,9),(247,13),(248,13),(248,16),(249,10),(249,11),(250,2),(250,10),(251,5),(251,11),(252,5),(253,5),(254,5),(255,2),(256,2),(256,7),(257,2),(257,7),(258,3),(259,3),(259,9),(260,3),(260,9),(261,16),(262,16),(263,1),(264,1),(265,12),(266,12),(267,10),(267,12),(268,12),(269,8),(269,12),(270,3),(270,5),(271,3),(271,5),(272,3),(272,5),(273,5),(274,5),(274,16),(275,5),(275,16),(276,1),(276,10),(277,1),(277,10),(278,3),(278,10),(279,3),(279,10),(280,11),(280,18),(281,11),(281,18),(282,11),(282,18),(283,3),(283,12),(284,10),(284,12),(285,5),(286,5),(286,7),(287,1),(288,1),(289,1),(290,9),(290,12),(291,10),(291,12),(292,12),(292,14),(293,1),(294,1),(295,1),(296,7),(297,7),(298,1),(298,18),(299,13),(300,1),(301,1),(302,14),(302,16),(303,17),(303,18),(304,13),(304,17),(305,13),(305,17),(306,13),(306,17),(307,7),(307,11),(308,7),(308,11),(309,4),(310,4),(311,4),(312,4),(313,12),(314,12),(315,5),(315,8),(316,8),(317,8),(318,3),(318,16),(319,3),(319,16),(320,3),(321,3),(322,2),(322,9),(323,2),(323,9),(324,2),(325,11),(326,11),(327,1),(328,9),(329,9),(329,15),(330,9),(330,15),(331,5),(332,5),(332,16),(333,1),(333,10),(334,10),(334,15),(335,1),(336,8),(337,11),(337,13),(338,11),(338,13),(339,3),(339,9),(340,3),(340,9),(341,3),(342,3),(342,16),(343,9),(343,11),(344,9),(344,11),(345,5),(345,13),(346,5),(346,13),(347,12),(347,13),(348,12),(348,13),(349,3),(350,3),(351,1),(352,1),(353,14),(354,14),(355,14),(356,14),(357,5),(357,10),(358,11),(359,16),(360,11),(361,6),(362,6),(363,3),(363,6),(364,3),(364,6),(365,3),(365,6),(366,3),(367,3),(368,3),(369,3),(369,13),(370,3),(371,15),(372,15),(373,10),(373,15),(374,11),(374,17),(375,11),(375,17),(376,11),(376,17),(377,13),(378,6),(379,17),(380,11),(380,15),(381,11),(381,15),(382,3),(383,9),(384,10),(384,15),(385,11),(385,17),(386,11),(387,5),(388,5),(389,5),(389,9),(390,2),(391,2),(391,7),(392,2),(392,7),(393,3),(394,3),(395,3),(395,17),(396,1),(396,10),(397,1),(397,10),(398,1),(398,10),(399,1),(400,1),(400,3),(401,12),(402,12),(403,4),(404,4),(405,4),(406,5),(406,8),(407,5),(407,8),(408,13),(409,13),(410,13),(410,17),(411,13),(411,17),(412,12),(413,5),(413,12),(414,10),(414,12),(415,10),(415,12),(416,10),(416,12),(417,4),(418,3),(419,3),(420,5),(421,5),(422,3),(423,3),(423,9),(424,1),(425,10),(425,14),(426,10),(426,14),(427,1),(428,1),(429,14),(430,10),(430,16),(431,1),(432,1),(433,11),(434,8),(434,16),(435,8),(435,16),(436,11),(436,17),(437,11),(437,17),(438,13),(439,11),(439,18),(440,1),(441,1),(441,10),(442,14),(442,16),(443,9),(443,15),(444,9),(444,15),(445,9),(445,15),(446,1),(447,7),(448,7),(448,17),(449,9),(450,9),(451,8),(451,12),(452,8),(452,16),(453,7),(453,8),(454,7),(454,8),(455,5),(456,3),(457,3),(458,3),(458,10),(459,5),(459,6),(460,5),(460,6),(461,6),(461,16),(462,4),(462,17),(463,1),(464,9),(464,13),(465,5),(466,4),(467,2),(468,10),(468,18),(469,10),(469,12),(470,5),(471,6),(472,9),(472,10),(473,6),(473,9),(474,1),(475,7),(475,11),(476,13),(476,17),(477,14),(478,6),(478,14),(479,4),(479,14),(480,11),(481,11),(482,11),(483,15),(483,17),(484,3),(484,15),(485,2),(485,17),(486,1),(487,14),(487,15),(488,11),(489,3),(490,3),(491,16),(492,5),(493,1),(494,2),(494,11),(495,5),(496,5),(497,5),(498,2),(499,2),(499,7),(500,2),(500,7),(501,3),(502,3),(503,3),(504,1),(505,1),(506,1),(507,1),(508,1),(509,16),(510,16),(511,5),(512,5),(513,2),(514,2),(515,3),(516,3),(517,11),(518,11),(519,1),(519,10),(520,1),(520,10),(521,1),(521,10),(522,4),(523,4),(524,13),(525,13),(526,13),(527,10),(527,11),(528,10),(528,11),(529,9),(530,9),(530,17),(531,1),(532,7),(533,7),(534,7),(535,3),(536,3),(536,9),(537,3),(537,9),(538,7),(539,7),(540,5),(540,12),(541,5),(541,12),(542,5),(542,12),(543,8),(543,12),(544,8),(544,12),(545,8),(545,12),(546,5),(546,18),(547,5),(547,18),(548,5),(549,5),(550,3),(551,9),(551,16),(552,9),(552,16),(553,9),(553,16),(554,2),(555,2),(556,5),(557,12),(557,13),(558,12),(558,13),(559,7),(559,16),(560,7),(560,16),(561,10),(561,11),(562,14),(563,14),(564,3),(564,13),(565,3),(565,13),(566,10),(566,13),(567,10),(567,13),(568,8),(569,8),(570,16),(571,16),(572,1),(573,1),(574,11),(575,11),(576,11),(577,11),(578,11),(579,11),(580,3),(580,10),(581,3),(581,10),(582,6),(583,6),(584,6),(585,1),(585,5),(586,1),(586,5),(587,4),(587,10),(588,12),(589,12),(589,17),(590,5),(590,8),(591,5),(591,8),(592,3),(592,14),(593,3),(593,14),(594,3),(595,4),(595,12),(596,4),(596,12),(597,5),(597,17),(598,5),(598,17),(599,17),(600,17),(601,17),(602,4),(603,4),(604,4),(605,11),(606,11),(607,2),(607,14),(608,2),(608,14),(609,2),(609,14),(610,15),(611,15),(612,15),(613,6),(614,6),(615,6),(616,12),(617,12),(618,4),(618,9),(619,7),(620,7),(621,15),(622,9),(622,14),(623,9),(623,14),(624,16),(624,17),(625,16),(625,17),(626,1),(627,1),(627,10),(628,1),(628,10),(629,10),(629,16),(630,10),(630,16),(631,2),(632,12),(632,17),(633,15),(633,16),(634,15),(634,16),(635,15),(635,16),(636,2),(636,12),(637,2),(637,12),(638,7),(638,17),(639,7),(639,13),(640,5),(640,7),(641,10),(642,4),(642,10),(643,2),(643,15),(644,4),(644,15),(645,9),(645,10),(646,6),(646,15),(647,3),(647,7),(648,1),(648,11),(649,12),(649,17),(650,5),(651,5),(652,5),(652,7),(653,2),(654,2),(655,2),(655,11),(656,3),(657,3),(658,3),(658,16),(659,1),(660,1),(660,9),(661,1),(661,10),(662,2),(662,10),(663,2),(663,10),(664,12),(665,12),(666,10),(666,12),(667,1),(667,2),(668,1),(668,2),(669,18),(670,18),(671,18),(672,5),(673,5),(674,7),(675,7),(675,16),(676,1),(677,11),(678,11),(679,14),(679,17),(680,14),(680,17),(681,14),(681,17),(682,18),(683,18),(684,18),(685,18),(686,11),(686,16),(687,11),(687,16),(688,3),(688,13),(689,3),(689,13),(690,3),(690,8),(691,8),(691,15),(692,3),(693,3),(694,1),(694,4),(695,1),(695,4),(696,13),(696,15),(697,13),(697,15),(698,6),(698,13),(699,6),(699,13),(700,18),(701,7),(701,10),(702,4),(702,18),(703,13),(703,18),(704,15),(705,15),(706,15),(707,17),(707,18),(708,5),(708,14),(709,5),(709,14),(710,5),(710,14),(711,5),(711,14),(712,6),(713,6),(714,10),(714,15),(715,10),(715,15),(716,18),(717,10),(717,16),(718,9),(718,15),(719,13),(719,18),(720,11),(720,14),(721,2),(721,3),(722,5),(722,10),(723,5),(723,10),(724,5),(724,14),(725,2),(726,2),(727,2),(727,16),(728,3),(729,3),(730,3),(730,18),(731,1),(731,10),(732,1),(732,10),(733,1),(733,10),(734,1),(735,1),(736,12),(737,4),(737,12),(738,4),(738,12),(739,7),(740,6),(740,7),(741,2),(741,10),(742,12),(742,18),(743,12),(743,18),(744,13),(745,13),(746,3),(747,3),(747,8),(748,3),(748,8),(749,9),(750,9),(751,3),(751,12),(752,3),(752,12),(753,5),(754,5),(755,5),(755,18),(756,5),(756,18),(757,2),(757,8),(758,2),(758,8),(759,1),(759,7),(760,1),(760,7),(761,5),(762,5),(763,5),(764,18),(765,1),(765,11),(766,7),(767,3),(767,12),(768,3),(768,12),(769,9),(769,14),(770,9),(770,14),(771,3),(772,1),(773,1),(774,10),(774,13),(775,1),(776,2),(776,15),(777,4),(777,17),(778,14),(778,18),(779,3),(779,11),(780,1),(780,15),(781,5),(781,14),(782,15),(783,7),(783,15),(784,7),(784,15),(785,4),(785,18),(786,11),(786,18),(787,5),(787,18),(788,3),(788,18),(789,11),(790,11),(791,11),(791,17),(792,11),(792,14),(793,8),(793,13),(794,7),(794,12),(795,7),(795,12),(796,4),(797,10),(797,17),(798,5),(798,17),(799,15),(799,16),(800,11),(801,17),(801,18),(802,7),(802,14),(803,8),(804,8),(804,15),(805,13),(805,17),(806,2),(806,14),(807,4),(808,17),(809,17),(810,5),(811,5),(812,5),(813,2),(814,2),(815,2),(816,3),(817,3),(818,3),(819,1),(820,1),(821,10),(822,10),(823,10),(823,17),(824,12),(825,11),(825,12),(826,11),(826,12),(827,16),(828,16),(829,5),(830,5),(831,1),(832,1),(833,3),(834,3),(834,13),(835,4),(836,4),(837,13),(838,2),(838,13),(839,2),(839,13),(840,5),(840,15),(841,5),(841,15),(842,5),(842,15),(843,9),(844,9),(845,3),(845,10),(846,3),(847,3),(848,4),(848,8),(849,4),(849,8),(850,2),(850,12),(851,2),(851,12),(852,7),(853,7),(854,14),(855,14),(856,11),(857,11),(858,11),(858,18),(859,16),(859,18),(860,16),(860,18),(861,16),(861,18),(862,1),(862,16),(863,17),(864,14),(865,7),(866,6),(866,11),(867,9),(867,14),(868,18),(869,18),(870,7),(871,4),(872,6),(872,12),(873,6),(873,12),(874,13),(875,6),(876,1),(876,11),(877,4),(877,16),(878,17),(879,17),(880,4),(880,15),(881,4),(881,6),(882,3),(882,15),(883,3),(883,6),(884,15),(884,17),(885,14),(885,15),(886,14),(886,15),(887,14),(887,15),(888,18),(889,7),(890,8),(890,15),(891,7),(892,7),(892,16),(893,5),(893,16),(894,4),(895,15),(896,6),(897,14),(898,5),(898,11),(899,1),(899,11),(900,12),(900,13),(901,1),(901,9),(902,3),(902,14),(903,7),(903,8),(904,8),(904,16),(905,10),(905,18),(906,5),(907,5),(908,5),(908,16),(909,2),(910,2),(911,2),(911,14),(912,3),(913,3),(914,3),(914,7),(915,1),(916,1),(917,12),(918,12),(919,12),(920,12),(920,16),(921,4),(922,4),(922,7),(923,4),(923,7),(924,1),(925,1),(926,18),(927,18),(928,1),(928,5),(929,1),(929,5),(930,1),(930,5),(931,1),(931,10),(932,13),(933,13),(934,13),(935,2),(936,2),(936,11),(937,2),(937,14),(938,4),(939,4),(940,4),(940,10),(941,4),(941,10),(942,16),(943,16),(944,1),(944,8),(945,1),(945,8),(946,5),(946,14),(947,5),(947,14),(948,5),(948,9),(949,5),(949,9),(950,13),(951,5),(952,2),(952,5),(953,12),(954,11),(954,12),(955,11),(956,11),(957,17),(957,18),(958,17),(958,18),(959,17),(959,18),(960,3),(961,3),(962,10),(962,16),(963,3),(964,3),(965,8),(965,17),(966,8),(966,17),(967,1),(967,15),(968,17),(969,8),(969,13),(970,8),(970,13),(971,14),(972,14),(973,7),(973,10),(974,6),(975,6),(976,3),(976,11),(977,3),(978,3),(978,15),(979,7),(979,14),(980,8),(980,9),(981,1),(981,11),(982,1),(983,16),(983,17),(984,7),(984,9),(985,11),(985,18),(986,5),(986,16),(987,14),(987,18),(988,7),(988,12),(989,4),(989,9),(990,9),(990,17),(991,3),(991,6),(992,4),(992,7),(993,10),(993,16),(994,2),(994,8),(995,4),(995,13),(996,6),(996,15),(997,6),(997,15),(998,6),(998,15),(999,14),(1000,14),(1000,17),(1001,5),(1001,16),(1002,6),(1002,16),(1003,9),(1003,16),(1004,2),(1004,16),(1005,15),(1005,16),(1006,7),(1006,18),(1007,7),(1007,15),(1008,4),(1008,15),(1009,3),(1009,15),(1010,5),(1010,11); +/*!40000 ALTER TABLE `pokemon_types` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `species` +-- + +DROP TABLE IF EXISTS `species`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `species` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `pokemon_id` int(11) DEFAULT NULL, + `genus` varchar(100) DEFAULT NULL, + `flavor_text` text DEFAULT NULL, + `growth_rate` varchar(100) DEFAULT NULL, + `base_happiness` int(11) DEFAULT NULL, + `capture_rate` int(11) DEFAULT NULL, + `gender_rate` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `pokemon_id` (`pokemon_id`), + CONSTRAINT `species_ibfk_1` FOREIGN KEY (`pokemon_id`) REFERENCES `pokemon` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=1012 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `species` +-- + +LOCK TABLES `species` WRITE; +/*!40000 ALTER TABLE `species` DISABLE KEYS */; +INSERT INTO `species` VALUES (1,1,'たねポケモン','A strange seed was\nplanted on its\nback at birth. The plant sprouts\nand grows with\nthis POKéMON.','medium-slow',50,45,1),(2,1,'たねポケモン','A strange seed was\nplanted on its\nback at birth. The plant sprouts\nand grows with\nthis POKéMON.','medium-slow',50,45,1),(3,2,'たねポケモン','When the bulb on\nits back grows\nlarge, it appears to lose the\nability to stand\non its hind legs.','medium-slow',50,45,1),(4,3,'たねポケモン','The plant blooms\nwhen it is\nabsorbing solar energy. It stays\non the move to\nseek sunlight.','medium-slow',50,45,1),(5,4,'とかげポケモン','Obviously prefers\nhot places. When\nit rains, steam is said to spout\nfrom the tip of\nits tail.','medium-slow',50,45,1),(6,5,'かえんポケモン','When it swings\nits burning tail,\nit elevates the temperature to\nunbearably high\nlevels.','medium-slow',50,45,1),(7,6,'かえんポケモン','Spits fire that\nis hot enough to\nmelt boulders. Known to cause\nforest fires\nunintentionally.','medium-slow',50,45,1),(8,7,'かめのこポケモン','After birth, its\nback swells and\nhardens into a shell. Powerfully\nsprays foam from\nits mouth.','medium-slow',50,45,1),(9,8,'かめポケモン','Often hides in\nwater to stalk\nunwary prey. For swimming fast, it\nmoves its ears to\nmaintain balance.','medium-slow',50,45,1),(10,9,'こうらポケモン','A brutal POKéMON\nwith pressurized\nwater jets on its shell. They are\nused for high\nspeed tackles.','medium-slow',50,45,1),(11,10,'いもむしポケモン','如果碰到牠頭上的觸角,\n牠就會分泌強烈的臭味\n來保護自己。','medium',50,255,4),(12,11,'さなぎポケモン','This POKéMON is\nvulnerable to\nattack while its shell is soft,\nexposing its weak\nand tender body.','medium',50,120,4),(13,12,'ちょうちょポケモン','In battle, it\nflaps its wings\nat high speed to release highly\ntoxic dust into\nthe air.','medium',50,45,4),(14,13,'けむしポケモン','Often found in\nforests, eating\nleaves. It has a sharp\nvenomous stinger\non its head.','medium',70,255,4),(15,14,'さなぎポケモン','Almost incapable\nof moving, this\nPOKéMON can only harden its shell\nto protect itself\nfrom predators.','medium',70,120,4),(16,15,'どくばちポケモン','It has three poisonous stingers on its forelegs and\nits tail. They are used to jab its enemy repeatedly.','medium',70,45,4),(17,16,'ことりポケモン','A common sight in\nforests and woods.\nIt flaps its wings at ground\nlevel to kick up\nblinding sand.','medium-slow',70,255,4),(18,17,'とりポケモン','Very protective\nof its sprawling\nterritorial area, this POKéMON will\nfiercely peck at\nany intruder.','medium-slow',70,120,4),(19,18,'とりポケモン','When hunting, it\nskims the surface\nof water at high speed to pick off\nunwary prey such\nas MAGIKARP.','medium-slow',70,45,4),(20,19,'ねずみポケモン','キバが2つ。とにかく なんでも\nかじってみる。1ぴき みつけたら\n40ぴきは そこに すんでるはず。','medium',70,255,4),(21,20,'ねずみポケモン','Ses pattes arrière lui permettent de traverser les\nrivières. Il est toujours en quête de nourriture.','medium',70,127,4),(22,21,'ことりポケモン','It flaps its small wings busily to\nfly. Using its beak, it searches\nin grass for prey.','medium',70,255,4),(23,22,'くちばしポケモン','With its huge and\nmagnificent wings,\nit can keep aloft without ever\nhaving to land\nfor rest.','medium',70,90,4),(24,23,'へびポケモン','Moves silently\nand stealthily.\nEats the eggs of birds, such as\nPIDGEY and\nSPEAROW, whole.','medium',70,255,4),(25,24,'コブラポケモン','It is rumored that\nthe ferocious\nwarning markings on its belly\ndiffer from area\nto area.','medium',70,90,4),(26,25,'ねずみポケモン','When several of\nthese POKéMON\ngather, their electricity could\nbuild and cause\nlightning storms.','medium',50,190,4),(27,26,'ねずみポケモン','Its long tail serves as a ground to protect itself\nfrom its own high-voltage power.','medium',50,75,4),(28,27,'ねずみポケモン','Burrows deep\nunderground in\narid locations far from water.\nIt only emerges\nto hunt for food.','medium',50,255,4),(29,28,'ねずみポケモン','Curls up into a\nspiny ball when\nthreatened. It can roll while\ncurled up to\nattack or escape.','medium',50,90,4),(30,29,'どくばりポケモン','Although small,\nits venomous\nbarbs render this POKéMON dangerous.\nThe female has\nsmaller horns.','medium-slow',50,235,8),(31,30,'どくばりポケモン','The female\'s horn\ndevelops slowly.\nPrefers physical attacks such as\nclawing and\nbiting.','medium-slow',50,120,8),(32,31,'ドリルポケモン','Its hard scales\nprovide strong\nprotection. It uses its hefty\nbulk to execute\npowerful moves.','medium-slow',50,45,8),(33,32,'どくばりポケモン','Stiffens its ears\nto sense danger.\nThe larger its horns, the more\npowerful its\nsecreted venom.','medium-slow',50,235,0),(34,33,'どくばりポケモン','神經質且容易發脾氣打架。\n當體內的腎上腺素增加時,\n毒素的濃度也會提升。','medium-slow',50,120,0),(35,34,'ドリルポケモン','It uses its\npowerful tail in\nbattle to smash, constrict, then\nbreak the prey\'s\nbones.','medium-slow',50,45,0),(36,35,'ようせいポケモン','Its magical and\ncute appeal has\nmany admirers. It is rare and\nfound only in\ncertain areas.','fast',140,150,6),(37,36,'ようせいポケモン','A timid fairy\nPOKéMON that is\nrarely seen. It will run and hide\nthe moment it\nsenses people.','fast',140,25,6),(38,37,'きつねポケモン','At the time of\nbirth, it has\njust one tail. The tail splits\nfrom its tip as\nit grows older.','medium',50,190,6),(39,38,'きつねポケモン','Very smart and\nvery vengeful.\nGrabbing one of its many tails\ncould result in a\n1000-year curse.','medium',50,75,6),(40,39,'ふうせんポケモン','When its huge eyes\nlight up, it sings\na mysteriously soothing melody\nthat lulls its\nenemies to sleep.','fast',50,170,6),(41,40,'ふうせんポケモン','The body is soft\nand rubbery. When\nangered, it will suck in air and\ninflate itself to\nan enormous size.','fast',50,50,6),(42,41,'こうもりポケモン','因為沒有眼珠所以看不見東西。\n會從口中發出超音波\n來探測周圍的狀況。','medium',50,255,4),(43,42,'こうもりポケモン','Once it strikes,\nit will not stop\ndraining energy from the victim\neven if it gets\ntoo heavy to fly.','medium',50,90,4),(44,43,'ざっそうポケモン','During the day,\nit keeps its face\nburied in the ground. At night,\nit wanders around\nsowing its seeds.','medium-slow',50,255,4),(45,44,'ざっそうポケモン','The fluid that\noozes from its\nmouth isn\'t drool. It is a nectar\nthat is used to\nattract prey.','medium-slow',50,120,4),(46,45,'フラワーポケモン','It has the world’s largest petals. With every step,\nthe petals shake out heavy clouds of toxic pollen.','medium-slow',50,45,4),(47,46,'きのこポケモン','Burrows to suck\ntree roots. The\nmushrooms on its back grow by draw­\ning nutrients from\nthe bug host.','medium',70,190,4),(48,47,'きのこポケモン','A host-parasite\npair in which the\nparasite mushroom has taken over the\nhost bug. Prefers\ndamp places.','medium',70,75,4),(49,48,'こんちゅうポケモン','Lives in the\nshadows of tall\ntrees where it eats insects. It\nis attracted by\nlight at night.','medium',70,190,4),(50,49,'どくがポケモン','The dustlike scales covering its wings\nare color-coded to indicate the kinds of\npoison it has.','medium',70,75,4),(51,50,'もぐらポケモン','피부가 매우 얇아서\n빛을 쪼이게 되면 혈액이\n데워져 약해진다.','medium',50,255,4),(52,51,'もぐらポケモン','A team of DIGLETT\ntriplets.\nIt triggers huge earthquakes by\nburrowing 60 miles\nunderground.','medium',50,50,4),(53,52,'ばけねこポケモン','It washes its face regularly to keep the coin on\nits forehead spotless. It doesn’t get along with\nGalarian Meowth.','medium',50,255,4),(54,53,'シャムネコポケモン','Although its fur\nhas many admirers,\nit is tough to raise as a pet\nbecause of its\nfickle meanness.','medium',50,90,4),(55,54,'あひるポケモン','While lulling its\nenemies with its\nvacant look, this wily POKéMON will\nuse psychokinetic\npowers.','medium',50,190,4),(56,55,'あひるポケモン','Often seen swim­\nming elegantly by\nlake shores. It is often mistaken\nfor the Japanese\nmonster, Kappa.','medium',50,75,4),(57,56,'ぶたざるポケモン','Extremely quick to\nanger. It could\nbe docile one moment then\nthrashing away\nthe next instant.','medium',70,190,4),(58,57,'ぶたざるポケモン','Always furious\nand tenacious to\nboot. It will not abandon chasing\nits quarry until\nit is caught.','medium',70,75,4),(59,58,'こいぬポケモン','Very protective\nof its territory.\nIt will bark and bite to repel\nintruders from\nits space.','slow',50,190,2),(60,59,'でんせつポケモン','A POKéMON that\nhas been admired\nsince the past for its beauty.\nIt runs agilely\nas if on wings.','slow',50,75,2),(61,60,'おたまポケモン','Its newly grown\nlegs prevent it\nfrom running. It appears to prefer\nswimming than\ntrying to stand.','medium-slow',50,255,4),(62,61,'おたまポケモン','Capable of living\nin or out of\nwater. When out of water, it\nsweats to keep\nits body slimy.','medium-slow',50,120,4),(63,62,'おたまポケモン','An adept swimmer\nat both the front\ncrawl and breast stroke. Easily\novertakes the best\nhuman swimmers.','medium-slow',50,45,4),(64,63,'ねんりきポケモン','Using its ability\nto read minds, it\nwill identify impending danger\nand TELEPORT to\nsafety.','medium-slow',50,200,2),(65,64,'ねんりきポケモン','It emits special\nalpha waves from\nits body that induce headaches\njust by being\nclose by.','medium-slow',50,100,2),(66,65,'ねんりきポケモン','Its brain can out­\nperform a super­\ncomputer. Its intelligence\nquotient is said\nto be 5,000.','medium-slow',50,50,2),(67,66,'かいりきポケモン','Malgré sa petite taille, sa force\nlui permet de soulever plusieurs\nRacaillou à la fois.','medium-slow',50,180,2),(68,67,'かいりきポケモン','Its muscular body\nis so powerful, it\nmust wear a power save belt to be\nable to regulate\nits motions.','medium-slow',50,90,2),(69,68,'かいりきポケモン','Using its heavy\nmuscles, it throws\npowerful punches that can send the\nvictim clear over\nthe horizon.','medium-slow',50,45,2),(70,69,'フラワーポケモン','A carnivorous\nPOKéMON that traps\nand eats bugs. It uses its root\nfeet to soak up\nneeded moisture.','medium-slow',70,255,4),(71,70,'ハエとりポケモン','It spits out\nPOISONPOWDER to\nimmobilize the enemy and then\nfinishes it with\na spray of ACID.','medium-slow',70,120,4),(72,71,'ハエとりポケモン','Dieses Pokémon soll in großen Kolonien\ntief im Dschungel leben, doch niemand\nkann dies bestätigen.','medium-slow',70,45,4),(73,72,'くらげポケモン','Drifts in shallow\nseas. Anglers who\nhook them by accident are\noften punished by\nits stinging acid.','slow',50,190,4),(74,73,'くらげポケモン','The tentacles are\nnormally kept\nshort. On hunts, they are extended\nto ensnare and\nimmobilize prey.','slow',50,60,4),(75,74,'がんせきポケモン','Found in fields\nand mountains.\nMistaking them for boulders,\npeople often step\nor trip on them.','medium-slow',70,255,4),(76,75,'がんせきポケモン','De naturaleza descuidada y libre, no le importa\ndañarse cuando baja rodando montañas.','medium-slow',70,120,4),(77,76,'メガトンポケモン','Its boulder-like\nbody is extremely\nhard. It can easily withstand\ndynamite blasts\nwithout damage.','medium-slow',70,45,4),(78,77,'ひのうまポケモン','Its hooves are 10\ntimes harder than\ndiamonds. It can trample anything\ncompletely flat\nin little time.','medium',50,190,4),(79,78,'ひのうまポケモン','Galopa a casi 240 km por hora. Su crin ardiente\nparece una flecha cuando corre.','medium',50,60,4),(80,79,'まぬけポケモン','Descansa ocioso junto al agua. Si algo muerde su\ncola, no lo notará en todo el día.','medium',50,190,4),(81,80,'やどかりポケモン','The SHELLDER that\nis latched onto\nSLOWPOKE\'s tail is said to feed\non the host\'s left\nover scraps.','medium',50,75,4),(82,81,'じしゃくポケモン','Uses anti-gravity\nto stay suspended.\nAppears without warning and uses\nTHUNDER WAVE and\nsimilar moves.','medium',50,190,-1),(83,82,'じしゃくポケモン','Formed by several\nMAGNEMITEs linked\ntogether. They frequently appear\nwhen sunspots\nflare up.','medium',50,60,-1),(84,83,'かるがもポケモン','The sprig of\ngreen onions it\nholds is its weapon. It is\nused much like a\nmetal sword.','medium',50,45,4),(85,84,'ふたごどりポケモン','A bird that makes\nup for its poor\nflying with its fast foot speed.\nLeaves giant\nfootprints.','medium',70,190,4),(86,85,'みつごどりポケモン','由嘟嘟的某个头分裂\n出的变种。以60千米的\n时速在草原上奔跑。','medium',70,45,4),(87,86,'あしかポケモン','The protruding\nhorn on its head\nis very hard. It is used for\nbashing through\nthick ice.','medium',70,190,4),(88,87,'あしかポケモン','Stores thermal\nenergy in its\nbody. Swims at a steady 8 knots\neven in intensely\ncold waters.','medium',70,75,4),(89,88,'ヘドロポケモン','Appears in filthy\nareas. Thrives by\nsucking up polluted sludge\nthat is pumped\nout of factories.','medium',70,190,4),(90,89,'ヘドロポケモン','Thickly covered\nwith a filthy,\nvile sludge. It is so toxic, even\nits footprints\ncontain poison.','medium',70,75,4),(91,90,'2まいがいポケモン','Its hard shell\nrepels any kind\nof attack. It is vulnerable\nonly when its\nshell is open.','slow',50,190,4),(92,91,'2まいがいポケモン','When attacked, it\nlaunches its\nhorns in quick volleys. Its\ninnards have\nnever been seen.','slow',50,60,4),(93,92,'ガスじょうポケモン','Almost invisible,\nthis gaseous\nPOKéMON cloaks the target and\nputs it to sleep\nwithout notice.','medium-slow',50,190,4),(94,93,'ガスじょうポケモン','Because of its\nability to slip\nthrough block walls, it is said\nto be from an­\nother dimension.','medium-slow',50,90,4),(95,94,'シャドーポケモン','Under a full moon,\nthis POKéMON\nlikes to mimic the shadows of\npeople and laugh\nat their fright.','medium-slow',50,45,4),(96,95,'いわへびポケモン','As it grows, the\nstone portions of\nits body harden to become similar\nto a diamond, but\ncolored black.','medium',50,45,4),(97,96,'さいみんポケモン','Puts enemies to\nsleep then eats\ntheir dreams. Occasionally gets\nsick from eating\nbad dreams.','medium',70,190,4),(98,97,'さいみんポケモン','When it locks eyes\nwith an enemy, it\nwill use a mix of PSI moves such as\nHYPNOSIS and\nCONFUSION.','medium',70,75,4),(99,98,'さわがにポケモン','Its pincers are\nnot only powerful\nweapons, they are used for balance\nwhen walking\nsideways.','medium',50,225,4),(100,99,'はさみポケモン','The large pincer\nhas 10000 hp of\ncrushing power. However, its huge\nsize makes it\nunwieldy to use.','medium',50,60,4),(101,100,'ボールポケモン','Usually found in\npower plants.\nEasily mistaken for a POKé BALL,\nthey have zapped\nmany people.','medium',70,190,-1),(102,101,'ボールポケモン','It stores electric\nenergy under very\nhigh pressure. It often explodes\nwith little or no\nprovocation.','medium',70,60,-1),(103,102,'たまごポケモン','Often mistaken\nfor eggs.\nWhen disturbed, they quickly\ngather and attack\nin swarms.','slow',50,90,4),(104,103,'やしのみポケモン','Legend has it that\non rare occasions,\none of its heads will drop off and\ncontinue on as an\nEXEGGCUTE.','slow',50,45,4),(105,104,'こどくポケモン','Because it never\nremoves its skull\nhelmet, no one has ever seen\nthis POKéMON\'s\nreal face.','medium',50,190,4),(106,105,'ほねずきポケモン','将骨头像回力镖一样扔出去,\n击落天敌秃鹰娜来复仇。','medium',50,75,4),(107,106,'キックポケモン','When in a hurry,\nits legs lengthen\nprogressively. It runs smoothly\nwith extra long,\nloping strides.','medium',50,45,0),(108,107,'パンチポケモン','While apparently\ndoing nothing, it\nfires punches in lightning fast\nvolleys that are\nimpossible to see.','medium',50,45,0),(109,108,'なめまわしポケモン','Its tongue can be\nextended like a\nchameleon\'s. It leaves a tingling\nsensation when it\nlicks enemies.','medium',50,45,4),(110,109,'どくガスポケモン','Because it stores\nseveral kinds of\ntoxic gases in its body, it is\nprone to exploding\nwithout warning.','medium',50,190,4),(111,110,'どくガスポケモン','Where two kinds\nof poison gases\nmeet, 2 KOFFINGs can fuse into a\nWEEZING over many\nyears.','medium',50,60,4),(112,111,'とげとげポケモン','A POKéMON with a\none-track mind.\nOnce it charges, it won\'t stop\nrunning until it\nfalls asleep.','slow',50,120,4),(113,112,'ドリルポケモン','Protected by an\narmor-like hide,\nit is capable of living in molten\nlava of 3,600\ndegrees.','slow',50,60,4),(114,113,'たまごポケモン','A rare and elusive\nPOKéMON that is\nsaid to bring happiness to those\nwho manage to get\nit.','fast',140,30,8),(115,114,'ツルじょうポケモン','The whole body is\nswathed with wide\nvines that are similar to sea­\nweed. Its vines\nshake as it walks.','medium',50,45,4),(116,115,'おやこポケモン','The infant rarely\nventures out of\nits mother\'s protective pouch\nuntil it is 3\nyears old.','medium',50,45,8),(117,116,'ドラゴンポケモン','Known to shoot\ndown flying bugs\nwith precision blasts of ink\nfrom the surface\nof the water.','medium',50,225,4),(118,117,'ドラゴンポケモン','Capable of swim­\nming backwards by\nrapidly flapping its wing-like\npectoral fins and\nstout tail.','medium',50,75,4),(119,118,'きんぎょポケモン','Its tail fin\nbillows like an\nelegant ballroom dress, giving it\nthe nickname of\nthe Water Queen.','medium',50,225,4),(120,119,'きんぎょポケモン','In the autumn spawning season, they can\nbe seen swimming powerfully up rivers and\ncreeks.','medium',50,60,4),(121,120,'ほしがたポケモン','If its body is torn, it can grow\nback if the red core remains.\nThe core flashes at midnight.','slow',50,225,-1),(122,121,'なぞのポケモン','Its central core\nglows with the\nseven colors of the rainbow. Some\npeople value the\ncore as a gem.','slow',50,60,-1),(123,122,'バリアーポケモン','If interrupted\nwhile it is\nmiming, it will slap around the\noffender with its\nbroad hands.','medium',50,45,4),(124,123,'かまきりポケモン','With ninja-like\nagility and speed,\nit can create the illusion that\nthere is more\nthan one.','medium',50,45,4),(125,124,'ひとがたポケモン','It seductively\nwiggles its hips\nas it walks. It can cause people\nto dance in\nunison with it.','medium',50,45,8),(126,125,'でんげきポケモン','Normally found\nnear power plants,\nthey can wander away and cause\nmajor blackouts\nin cities.','medium',50,45,2),(127,126,'ひふきポケモン','Its body always\nburns with an\norange glow that enables it to\nhide perfectly\namong flames.','medium',50,45,2),(128,127,'くわがたポケモン','If it fails to\ncrush the victim\nin its pincers, it will swing it\naround and toss\nit hard.','slow',50,45,4),(129,128,'あばれうしポケモン','When it targets\nan enemy, it\ncharges furiously while whipping its\nbody with its\nlong tails.','slow',50,45,0),(130,129,'さかなポケモン','In the distant\npast, it was\nsomewhat stronger than the horribly\nweak descendants\nthat exist today.','slow',50,255,4),(131,130,'きょうあくポケモン','Once it begins to rampage, a\nGYARADOS will burn everything\ndown, even in a harsh storm.','slow',50,45,4),(132,131,'のりものポケモン','A POKéMON that\nhas been over­\nhunted almost to extinction. It\ncan ferry people\nacross the water.','slow',50,45,4),(133,132,'へんしんポケモン','Capable of copying\nan enemy\'s genetic\ncode to instantly transform itself\ninto a duplicate\nof the enemy.','medium',50,35,-1),(134,133,'しんかポケモン','Its genetic code\nis irregular.\nIt may mutate if it is exposed to\nradiation from\nelement STONEs.','medium',50,45,1),(135,134,'あわはきポケモン','Lives close to\nwater. Its long\ntail is ridged with a fin which\nis often mistaken\nfor a mermaid\'s.','medium',50,45,1),(136,135,'かみなりポケモン','It accumulates\nnegative ions in\nthe atmosphere to blast out 10000-\nvolt lightning\nbolts.','medium',50,45,1),(137,136,'ほのおポケモン','When storing\nthermal energy in\nits body, its temperature could\nsoar to over 1600\ndegrees.','medium',50,45,1),(138,137,'バーチャルポケモン','A POKéMON that\nconsists entirely\nof programming code. Capable of\nmoving freely in\ncyberspace.','medium',50,45,-1),(139,138,'うずまきポケモン','Although long\nextinct, in rare\ncases, it can be genetically\nresurrected from\nfossils.','medium',50,45,1),(140,139,'うずまきポケモン','A prehistoric\nPOKéMON that died\nout when its heavy shell made\nit impossible to\ncatch prey.','medium',50,45,1),(141,140,'こうらポケモン','A POKéMON that\nwas resurrected\nfrom a fossil found in what was\nonce the ocean\nfloor eons ago.','medium',50,45,1),(142,141,'こうらポケモン','È un perfetto nuotatore. Taglia la preda\ncon le sue falci e ne succhia il sangue.','medium',50,45,1),(143,142,'かせきポケモン','A Pokémon that roamed the skies\nin the dinosaur era. Its teeth are\nlike saw blades.','slow',50,45,1),(144,143,'いねむりポケモン','Very lazy. Just\neats and sleeps.\nAs its rotund bulk builds, it\nbecomes steadily\nmore slothful.','slow',50,25,1),(145,144,'れいとうポケモン','A legendary bird\nPOKéMON that is\nsaid to appear to doomed people who\nare lost in icy\nmountains.','slow',35,3,-1),(146,145,'でんげきポケモン','かみなりぐもの なかに いると\nいわれる でんせつの ポケモン。\nカミナリを じざいに あやつる。','slow',35,3,-1),(147,146,'かえんポケモン','Known as the\nlegendary bird of\nfire. Every flap of its wings\ncreates a dazzling\nflash of flames.','slow',35,3,-1),(148,147,'ドラゴンポケモン','Long considered a\nmythical POKéMON\nuntil recently when a small\ncolony was found\nliving underwater.','slow',35,45,4),(149,148,'ドラゴンポケモン','人们相信它能操纵天气,\n所以在哈克龙栖息的湖里,\n供品总是源源不断。','slow',35,45,4),(150,149,'ドラゴンポケモン','An extremely\nrarely seen\nmarine POKéMON. Its intelligence\nis said to match\nthat of humans.','slow',35,45,4),(151,150,'いでんしポケモン','It was created by\na scientist after\nyears of horrific gene splicing and\nDNA engineering\nexperiments.','slow',0,3,-1),(152,151,'しんしゅポケモン','So rare that it\nis still said to\nbe a mirage by many experts. Only\na few people have\nseen it worldwide.','medium-slow',100,45,-1),(153,152,'はっぱポケモン','A sweet aroma\ngently wafts from\nthe leaf on its head. It is docile\nand loves to soak\nup the sun\'s rays.','medium-slow',70,45,1),(154,153,'はっぱポケモン','The scent of\nspices comes from\naround its neck. Somehow, sniffing\nit makes you want\nto fight.','medium-slow',70,45,1),(155,154,'ハーブポケモン','The aroma that\nrises from its\npetals contains a substance that\ncalms aggressive\nfeelings.','medium-slow',70,45,1),(156,155,'ひねずみポケモン','It has a timid nature. If it is startled, the flames on\nits back burn more vigorously.','medium-slow',70,45,1),(157,156,'かざんポケモン','Be careful if it\nturns its back\nduring battle. It means that it will\nattack with the\nfire on its back.','medium-slow',70,45,1),(158,157,'かざんポケモン','If its rage peaks,\nit becomes so hot\nthat anything that touches it will\ninstantly go\nup in flames.','medium-slow',70,45,1),(159,158,'おおあごポケモン','Its well-developed\njaws are powerful\nand capable of crushing anything.\nEven its trainer\nmust be careful.','medium-slow',70,45,1),(160,159,'おおあごポケモン','If it loses a\nfang, a new one\ngrows back in its place. There are\nalways 48 fangs\nlining its mouth.','medium-slow',70,45,1),(161,160,'おおあごポケモン','When it bites with\nits massive and\npowerful jaws, it shakes its head\nand savagely tears\nits victim up.','medium-slow',70,45,1),(162,161,'みはりポケモン','A very cautious\nPOKéMON, it raises\nitself up using its tail to get a\nbetter view of its\nsurroundings.','medium',70,255,4),(163,162,'どうながポケモン','It makes a nest to\nsuit its long and\nskinny body. The nest is impossible\nfor other POKéMON\nto enter.','medium',70,90,4),(164,163,'ふくろうポケモン','It always stands\non one foot. It\nchanges feet so fast, the movement\ncan rarely be\nseen.','medium',50,255,4),(165,164,'ふくろうポケモン','Its eyes are\nspecially adapted.\nThey concentrate even faint light\nand enable it to\nsee in the dark.','medium',50,90,4),(166,165,'いつつぼしポケモン','It is very timid.\nIt will be afraid\nto move if it is alone. But it will\nbe active if it is\nin a group.','fast',70,255,4),(167,166,'いつつぼしポケモン','When the stars\nflicker in the\nnight sky, it flutters about,\nscattering a\nglowing powder.','fast',70,90,4),(168,167,'いとはきポケモン','It lies still in\nthe same pose for\ndays in its web, waiting for its\nunsuspecting prey\nto wander close.','fast',70,255,4),(169,168,'あしながポケモン','也有地区会使用\n阿利多斯的丝来织布。\n因布料结实而广受好评。','fast',70,90,4),(170,169,'こうもりポケモン','It flies so si­\nlently through the\ndark on its four wings that it may\nnot be noticed\neven when nearby.','medium',50,90,4),(171,170,'아귀포켓몬','Chinchou blink their shining antennae at one\nanother to claim their respective turf.','slow',50,190,4),(172,171,'ライトポケモン','The light it emits\nis so bright that\nit can illuminate the sea\'s surface\nfrom a depth of\nover three miles.','slow',50,75,4),(173,172,'こねずみポケモン','It is not yet\nskilled at storing\nelectricity. It may send out a\njolt if amused\nor startled.','medium',50,190,4),(174,173,'ほしがたポケモン','Because of its\nunusual, star-like\nsilhouette, people believe that it\ncame here on\na meteor.','fast',140,150,6),(175,174,'ふうせんポケモン','It has a very soft\nbody. If it starts\nto roll, it will bounce all over\nand be impossible\nto stop.','fast',50,170,6),(176,175,'はりたまポケモン','The shell seems to\nbe filled with\njoy. It is said that it will share\ngood luck when\ntreated kindly.','fast',50,190,1),(177,176,'しあわせポケモン','They say that it\nwill appear before\nkindhearted, car­ ing people and\nshower them with\nhappiness.','fast',50,75,1),(178,177,'ことりポケモン','Because its wings\naren\'t yet fully\ngrown, it has to hop to get around.\nIt is always star­\ning at something.','medium',50,190,4),(179,178,'せいれいポケモン','They say that it\nstays still and\nquiet because it is seeing both the\npast and future at\nthe same time.','medium',50,75,4),(180,179,'わたげポケモン','If static elec­\ntricity builds in\nits body, its fleece doubles in\nvolume. Touching\nit will shock you.','medium-slow',70,235,4),(181,180,'わたげポケモン','푹신푹신한 털은 전기를\n모으기 쉽지만 고무 같은 피부\n덕분에 자신은 마비되지 않는다.','medium-slow',70,120,4),(182,181,'ライトポケモン','The tail\'s tip\nshines brightly\nand can be seen from far away. It\nacts as a beacon\nfor lost people.','medium-slow',70,45,4),(183,182,'フラワーポケモン','Plentiful in the tropics. When it\ndances, its petals rub together and\nmake a pleasant ringing sound.','medium-slow',50,45,4),(184,183,'みずねずみポケモン','The tip of its\ntail, which con­\ntains oil that is lighter than wa­\nter, lets it swim\nwithout drowning.','fast',50,190,4),(185,184,'みずうさぎポケモン','It lives in water virtually all day long.\nIts body color and pattern act as\ncamouflage that makes it tough for\nenemies to spot in water.','fast',50,75,4),(186,185,'まねポケモン','Although it always\npretends to be a\ntree, its composi­ tion appears to be\ncloser to a rock\nthan a plant.','medium',50,65,4),(187,186,'かえるポケモン','If POLIWAG and\nPOLIWHIRL hear its\nechoing cry, they respond by gather­\ning from far and\nwide.','medium-slow',50,45,4),(188,187,'わたくさポケモン','To keep from being\nblown away by the\nwind, they gather in clusters. They\ndo enjoy gentle\nbreezes, though.','medium-slow',70,255,4),(189,188,'わたくさポケモン','The bloom on top\nof its head opens\nand closes as the temperature fluc­\ntuates up and\ndown.','medium-slow',70,120,4),(190,189,'わたくさポケモン','Once it catches\nthe wind, it deft­\nly controls its cotton-puff spores\nto float, even\naround the world.','medium-slow',70,45,4),(191,190,'おながポケモン','Sa queue est aussi agile que ses\nmains. Il vit en haut des grands\narbres.','fast',70,45,4),(192,191,'たねポケモン','It may drop out of\nthe sky suddenly.\nIf attacked by a SPEAROW, it will\nviolently shake\nits leaves.','medium-slow',70,235,4),(193,192,'たいようポケモン','It converts sun­\nlight into energy.\nIn the darkness after sunset, it\ncloses its petals\nand becomes still.','medium-slow',70,120,4),(194,193,'うすばねポケモン','If it flaps its\nwings really fast,\nit can generate shock waves that\nwill shatter win­\ndows in the area.','medium',70,75,4),(195,194,'みずうおポケモン','This POKéMON lives\nin cold water. It\nwill leave the water to search\nfor food when it\ngets cold outside.','medium',50,255,4),(196,195,'みずうおポケモン','This carefree\nPOKéMON has an\neasy-going nature. While swimming, it\nalways bumps into\nboat hulls.','medium',50,90,4),(197,196,'たいようポケモン','It uses the fine\nhair that covers\nits body to sense air currents and\npredict its ene­\nmy\'s actions.','medium',50,45,1),(198,197,'げっこうポケモン','When agitated,\nthis POKéMON pro­\ntects itself by spraying poisonous\nsweat from its\npores.','medium',35,45,1),(199,198,'くらやみポケモン','Feared and loathed\nby many, it is\nbelieved to bring misfortune to all\nthose who see it\nat night.','medium-slow',35,30,4),(200,199,'おうじゃポケモン','It has incredible\nintellect and in­\ntuition. Whatever the situation, it\nremains calm and\ncollected.','medium',50,70,4),(201,200,'よなきポケモン','It likes playing\nmischievous tricks\nsuch as screaming and wailing to\nstartle people at\nnight.','fast',35,45,4),(202,201,'シンボルポケモン','Their shapes look\nlike hieroglyphs\non ancient tab­ lets. It is said\nthat the two are\nsomehow related.','medium',70,225,-1),(203,202,'がまんポケモン','Odia la luz y las sacudidas. Si le atacan, infla su\ncuerpo para aumentar su contraataque.','medium',50,45,4),(204,203,'くびながポケモン','Its tail has a\nsmall brain of its\nown. Beware! If you get close, it\nmay react to your\nscent and bite.','medium',70,60,4),(205,204,'みのむしポケモン','It likes to make\nits shell thicker\nby adding layers of tree bark. The\nadditional weight\ndoesn\'t bother it.','medium',70,190,4),(206,205,'みのむしポケモン','Its entire body is\nshielded by a\nsteel-hard shell. What lurks inside\nthe armor is a\ntotal mystery.','medium',70,75,4),(207,206,'つちへびポケモン','When spotted, this\nPOKéMON escapes\nbackward by furi­ ously boring into\nthe ground with\nits tail.','medium',50,190,4),(208,207,'とびさそりポケモン','It flies straight\nat its target\'s\nface then clamps down on the star­\ntled victim to\ninject poison.','medium-slow',70,60,4),(209,208,'てつへびポケモン','It is thought its body transformed\nas a result of iron accumulating\ninternally from swallowing soil.','medium',50,25,4),(210,209,'ようせいポケモン','Although it looks\nfrightening, it is\nactually kind and affectionate. It\nis very popular\namong women.','fast',70,190,6),(211,210,'ようせいポケモン','It is actually\ntimid and easily\nspooked. If at­ tacked, it flails\nabout to fend off\nits attacker.','fast',70,75,6),(212,211,'ふうせんポケモン','To fire its poison\nspikes, it must\ninflate its body by drinking over\n2.6 gallons of\nwater all at once.','medium',50,45,4),(213,212,'はさみポケモン','It has a steel-hard body. It\nintimidates foes by upraising its\neye-patterned pincers.','medium',50,25,4),(214,213,'はっこうポケモン','The BERRIES it\nstores in its\nvase-like shell decompose and\nbecome a gooey\nliquid.','medium-slow',50,190,4),(215,214,'1ぽんヅノポケモン','It is usually docile, but if it is\ndisturbed while sipping honey,\nit chases off the intruder with its horn.','slow',50,45,4),(216,215,'かぎづめポケモン','性格狡猾且兇猛。\n會趁著雙親不在時\n侵入巢穴把蛋盜走。','medium-slow',35,60,4),(217,216,'こぐまポケモン','If it finds honey,\nits crescent mark\nglows. It always licks its paws\nbecause they are\nsoaked with honey.','medium',70,120,4),(218,217,'とうみんポケモン','Although it is a\ngood climber, it\nprefers to snap trees with its\nforelegs and eat\nfallen BERRIES.','medium',70,60,4),(219,218,'ようがんポケモン','Asiduo a las zonas volcánicas, se desliza lentamente\nen busca de lugares calientes.','medium',70,190,4),(220,219,'ようがんポケモン','The shell on its\nback is just skin\nthat has cooled and hardened. It\nbreaks easily with\na slight touch.','medium',70,75,4),(221,220,'いのぶたポケモン','It rubs its snout\non the ground to\nfind and dig up food. It sometimes\ndiscovers hot\nsprings.','slow',50,225,4),(222,221,'いのししポケモン','Because the long\nhair all over its\nbody obscures its sight, it just\nkeeps charging\nrepeatedly.','slow',50,75,4),(223,222,'さんごポケモン','It continuously\nsheds and grows.\nThe tip of its head is prized as\na treasure for its\nbeauty.','fast',50,60,6),(224,223,'ふんしゃポケモン','It has superb ac­\ncuracy. The water\nit shoots out can strike even moving\nprey from more\nthan 300 feet.','medium',50,190,4),(225,224,'ふんしゃポケモン','It traps enemies\nwith its suction-\ncupped tentacles then smashes them\nwith its rock-hard\nhead.','medium',50,75,4),(226,225,'はこびやポケモン','It carries food\nall day long.\nThere are tales about lost people\nwho were saved by\nthe food it had.','fast',50,45,4),(227,226,'カイトポケモン','As it majestically\nswims, it doesn\'t\ncare if REMORAID attach to it for\nscavenging its\nleftovers.','slow',50,25,4),(228,227,'よろいどりポケモン','Its sturdy wings\nlook heavy, but\nthey are actually hollow and light,\nallowing it to fly\nfreely in the sky.','slow',50,25,4),(229,228,'ダークポケモン','It uses different\nkinds of cries for\ncommunicating with others of its kind\nand for pursuing\nits prey.','slow',35,120,4),(230,229,'ダークポケモン','If you are burned\nby the flames it\nshoots from its mouth, the pain\nwill never go\naway.','slow',35,45,4),(231,230,'ドラゴンポケモン','It is said that it\nusually hides in\nunderwater caves. It can create\nwhirlpools by\nyawning.','medium',50,45,4),(232,231,'ながはなポケモン','It swings its long\nsnout around play­\nfully, but because it is so strong,\nthat can be dan­\ngerous.','medium',70,120,4),(233,232,'よろいポケモン','It has sharp, hard\ntusks and a rugged\nhide. Its TACKLE is strong enough\nto knock down a\nhouse.','medium',70,60,4),(234,233,'バーチャルポケモン','This upgraded\nversion of PORYGON\nis designed for space exploration.\nIt can\'t fly,\nthough.','medium',50,45,-1),(235,234,'おおツノポケモン','The curved antlers\nsubtly change the\nflow of air to create a strange\nspace where real­\nity is distorted.','slow',70,45,4),(236,235,'えかきポケモン','A special fluid\noozes from the tip\nof its tail. It paints the fluid\neverywhere to mark\nits territory.','fast',70,45,4),(237,236,'けんかポケモン','It is always\nbursting with en­\nergy. To make it­ self stronger, it\nkeeps on fighting\neven if it loses.','medium',50,75,0),(238,237,'さかだちポケモン','If you become\nenchanted by its\nsmooth, elegant, dance-like kicks,\nyou may get\ndrilled hard.','medium',50,45,0),(239,238,'くちづけポケモン','Its lips are the\nmost sensitive\nparts on its body. It always uses its\nlips first to\nexamine things.','medium',50,45,8),(240,239,'でんきポケモン','常常跟來搶奪電力的\n托戈德瑪爾打架。\n結果通常是不分上下。','medium',50,45,2),(241,240,'ひだねポケモン','Each and every\ntime it inhales\nand exhales, hot embers dribble out\nof its mouth and\nnostrils.','medium',50,45,2),(242,241,'ちちうしポケモン','Si tiene crías, la leche que produce contiene muchos\nmás nutrientes de lo normal.','slow',50,45,8),(243,242,'しあわせポケモン','Anyone who takes\neven one bite of\nBLISSEY\'s egg be­ comes unfailingly\ncaring and pleas­\nant to everyone.','fast',140,30,8),(244,243,'いかずちポケモン','The rain clouds it\ncarries let it\nfire thunderbolts at will. They say\nthat it descended\nwith lightning.','slow',35,3,-1),(245,244,'かざんポケモン','Volcanoes erupt\nwhen it barks. Un­\nable to restrain its extreme power,\nit races headlong\naround the land.','slow',35,3,-1),(246,245,'オーロラポケモン','It races around the world to\npurify fouled water. It dashes\naway with the north wind.','slow',35,3,-1),(247,246,'いわはだポケモン','It feeds on soil.\nAfter it has eaten\na large mountain, it will fall\nasleep so it can\ngrow.','slow',35,45,4),(248,247,'だんがんポケモン','Its shell is as\nhard as sheet\nrock, and it is also very strong.\nIts THRASHING can\ntopple a mountain.','slow',35,45,4),(249,248,'よろいポケモン','Its body can\'t be\nharmed by any sort\nof attack, so it is very eager to\nmake challenges\nagainst enemies.','slow',35,45,4),(250,249,'せんすいポケモン','It is said that it\nquietly spends its\ntime deep at the bottom of the sea\nbecause its powers\nare too strong.','slow',0,3,-1),(251,250,'にじいろポケモン','Legends claim this\nPOKéMON flies the\nworld\'s skies con­ tinuously on its\nmagnificent seven-\ncolored wings.','slow',0,3,-1),(252,251,'ときわたりポケモン','This POKéMON wan­\nders across time.\nGrass and trees flourish in the\nforests in which\nit has appeared.','medium-slow',100,45,-1),(253,252,'もりトカゲポケモン','TREECKO has small hooks on the bottom\nof its feet that enable it to scale\nvertical walls. This POKéMON attacks by slamming foes\nwith its thick tail.','medium-slow',50,45,1),(254,253,'もりトカゲポケモン','발달한 넓적다리의 근육이\n경이로운 순발력과\n도약력을 만들어 낸다.','medium-slow',50,45,1),(255,254,'みつりんポケモン','The leaves growing on SCEPTILE’s body\nare very sharp edged. This POKéMON is\nvery agile - it leaps all over the branches of trees and jumps on its foe\nfrom above or behind.','medium-slow',50,45,1),(256,255,'ひよこポケモン','TORCHIC sticks with its TRAINER,\nfollowing behind with unsteady\nsteps. This POKéMON breathes fire of over\n1,800 degrees F, including fireballs\nthat leave the foe scorched black.','medium-slow',50,45,1),(257,256,'わかどりポケモン','COMBUSKEN toughens up its legs and\nthighs by running through fields and\nmountains. This POKéMON’s legs possess both speed\nand power, enabling it to dole out ten\nkicks in one second.','medium-slow',50,45,1),(258,257,'もうかポケモン','In battle, BLAZIKEN blows out intense\nflames from its wrists and attacks foes\ncourageously. The stronger the foe, the more\nintensely this POKéMON’s wrists burn.','medium-slow',50,45,1),(259,258,'ぬまうおポケモン','The fin on MUDKIP’s head acts as highly\nsensitive radar. Using this fin to sense\nmovements of water and air, this POKéMON can determine what is taking\nplace around it without using its eyes.','medium-slow',50,45,1),(260,259,'ぬまうおポケモン','The surface of MARSHTOMP’s body is\nenveloped by a thin, sticky film that\nenables it to live on land. This POKéMON plays in mud on beaches\nwhen the ocean tide is low.','medium-slow',50,45,1),(261,260,'ぬまうおポケモン','SWAMPERT is very strong. It has enough\npower to easily drag a boulder weighing\nmore than a ton. This POKéMON also has powerful vision\nthat lets it see even in murky water.','medium-slow',50,45,1),(262,261,'かみつきポケモン','At first sight, POOCHYENA takes a bite\nat anything that moves.\nThis POKéMON chases after prey until the victim becomes exhausted.\nHowever, it may turn tail if the prey\nstrikes back.','medium',70,255,4),(263,262,'かみつきポケモン','Les Grahyèna forment des meutes de dix qui\nexcellent au travail de groupe pour capturer leurs\nproies.','medium',70,127,4),(264,263,'まめだぬきポケモン','ZIGZAGOON restlessly wanders\neverywhere at all times. This POKéMON\ndoes so because it is very curious. It becomes interested in anything\nthat it happens to see.','medium',50,255,4),(265,264,'とっしんポケモン','LINOONE always runs full speed and only\nin straight lines. If facing an obstacle,\nit makes a right-angle turn to evade it. This POKéMON is very challenged by\ngently curving roads.','medium',50,90,4),(266,265,'いもむしポケモン','Le encanta comer hojas. Si le ataca un Starly, se\ndefenderá con sus púas.','medium',70,255,4),(267,266,'さなぎポケモン','SILCOON tethers itself to a tree branch\nusing silk to keep from falling. There, \nthis POKéMON hangs quietly while it awaits evolution.\nIt peers out of the silk cocoon through\na small hole.','medium',70,120,4),(268,267,'ちょうちょポケモン','BEAUTIFLY’s favorite food is the sweet\npollen of flowers. If you want to see\nthis POKéMON, just leave a potted flower by an open window. BEAUTIFLY\nis sure to come looking for pollen.','medium',70,45,4),(269,268,'さなぎポケモン','CASCOON makes its protective cocoon\nby wrapping its body entirely with a\nfine silk from its mouth. Once the silk goes around its body, it hardens.\nThis POKéMON prepares for its evolution\ninside the cocoon.','medium',70,120,4),(270,269,'どくがポケモン','DUSTOX is instinctively drawn to light.\nSwarms of this POKéMON are attracted\nby the bright lights of cities, where they wreak havoc by stripping the\nleaves off roadside trees for food.','medium',70,45,4),(271,270,'うきくさポケモン','It searches about for clean water. If it does not\ndrink water for too long, the leaf on its head wilts.','medium-slow',50,255,4),(272,271,'ようきポケモン','It lives at the water’s edge where it is\nsunny. It sleeps on a bed of water grass\nby day and becomes active at night.','medium-slow',50,120,4),(273,272,'のうてんきポケモン','LUDICOLO begins dancing as soon as\nit hears cheerful, festive music.\nThis POKéMON is said to appear when it hears the singing of children on hiking\noutings.','medium-slow',50,45,4),(274,273,'どんぐりポケモン','SEEDOT attaches itself to a tree\nbranch using the top of its head.\nIt sucks moisture from the tree while hanging off the branch.\nThe more water it drinks, the glossier\nthis POKéMON’s body becomes.','medium-slow',50,255,4),(275,274,'いじわるポケモン','NUZLEAF live in densely overgrown\nforests. They occasionally venture out\nof the forest to startle people. This POKéMON dislikes having its long\nnose pinched.','medium-slow',50,120,4),(276,275,'よこしまポケモン','It lives quietly in the deep forest.\nIt is said to create chilly winter\nwinds with the fans it holds.','medium-slow',50,45,4),(277,276,'こツバメポケモン','TAILLOW courageously stands its\nground against foes, however strong\nthey may be. This gutsy POKéMON will remain defiant\neven after a loss. On the other hand,\nit cries loudly if it becomes hungry.','medium-slow',70,200,4),(278,277,'ツバメポケモン','SWELLOW flies high above our heads,\nmaking graceful arcs in the sky.\nThis POKéMON dives at a steep angle as soon as it spots its prey. The hapless\nprey is tightly grasped by SWELLOW’s\nclawed feet, preventing escape.','medium-slow',70,45,4),(279,278,'うみねこポケモン','WINGULL has the habit of carrying prey\nand valuables in its beak and hiding\nthem in all sorts of locations. This POKéMON rides the winds and flies\nas if it were skating across the sky.','medium',50,190,4),(280,279,'みずどりポケモン','It is a messenger of the skies,\ncarrying small Pokémon and\neggs to safety in its bill.','medium',50,45,4),(281,280,'きもちポケモン','RALTS senses the emotions of\npeople using the horns on its head.\nThis POKéMON rarely appears before people. But when it does, it draws\ncloser if it senses that the person has\na positive disposition.','slow',35,235,4),(282,281,'かんじょうポケモン','It is said that a KIRLIA that is\nexposed to the positive emotions of\nits TRAINER grows beautiful. This POKéMON controls psychokinetic\npowers with its highly developed brain.','slow',35,120,4),(283,282,'ほうようポケモン','GARDEVOIR has the ability to read the\nfuture. If it senses impending danger\nto its TRAINER, this POKéMON is said to unleash its psychokinetic energy at\nfull power.','slow',35,45,4),(284,283,'あめんぼポケモン','すいめんを すべるように あるく。\nあたまの さきから あまい においを\nだして えものを さそう。','medium',70,200,4),(285,284,'めだまポケモン','MASQUERAIN intimidates enemies with\nthe eyelike patterns on its antennas.\nThis POKéMON flaps its four wings to freely fly in any direction - even\nsideways and backwards - as if it were\na helicopter.','medium',70,75,4),(286,285,'きのこポケモン','SHROOMISH live in damp soil in the dark\ndepths of forests. They are often\nfound keeping still under fallen leaves. This POKéMON feeds on compost that\nis made up of fallen, rotted leaves.','fast-then-very-slow',70,255,4),(287,286,'きのこポケモン','Erst lässt es den Gegner seine giftigen Sporen\neinatmen, dann traktiert es ihn mit Boxschlägen.','fast-then-very-slow',70,90,4),(288,287,'なまけものポケモン','SLAKOTH lolls around for over twenty\nhours every day. Because it moves so\nlittle, it does not need much food. This POKéMON’s sole daily meal consists\nof just three leaves.','slow',70,255,4),(289,288,'あばれザルポケモン','VIGOROTH is always itching and agitated\nto go on a wild rampage. It simply can’t\ntolerate sitting still for even a minute. This POKéMON’s stress level rises if it\ncan’t be moving constantly.','slow',70,120,4),(290,289,'ものぐさポケモン','SLAKING spends all day lying down and\nlolling about.\nIt eats grass growing within its reach. If it eats all the grass it can reach,\nthis POKéMON reluctantly moves to\nanother spot.','slow',70,45,4),(291,290,'したづみポケモン','NINCADA lives underground for many\nyears in complete darkness.\nThis POKéMON absorbs nutrients from the roots of trees. It stays motionless\nas it waits for evolution.','slow-then-very-fast',50,255,4),(292,291,'しのびポケモン','NINJASK moves around at such a high\nspeed that it cannot be seen, even\nwhile its crying can be clearly heard. For that reason, this POKéMON was long\nbelieved to be invisible.','slow-then-very-fast',50,120,4),(293,292,'ぬけがらポケモン','SHEDINJA’s hard body doesn’t move -\nnot even a twitch. In fact, its body\nappears to be merely a hollow shell. It is believed that this POKéMON will\nsteal the spirit of anyone peering into\nits hollow body from its back.','slow-then-very-fast',50,45,-1),(294,293,'ささやきポケモン','Normally, WHISMUR’s voice is very quiet -\nit is barely audible even if one is\npaying close attention. However, if this POKéMON senses danger,\nit starts crying at an earsplitting\nvolume.','medium-slow',50,190,4),(295,294,'おおごえポケモン','LOUDRED’s bellowing can completely\ndecimate a wood-frame house. It uses\nits voice to punish its foes. This POKéMON’s round ears serve as\nloudspeakers.','medium-slow',50,120,4),(296,295,'そうおんポケモン','EXPLOUD triggers earthquakes with the\ntremors it creates by bellowing. If this\nPOKéMON violently inhales from the ports on its body, it’s a sign that it is\npreparing to let loose a huge bellow.','medium-slow',50,45,4),(297,296,'こんじょうポケモン','MAKUHITA is tenacious - it will keep\ngetting up and attacking its foe\nhowever many times it is knocked down. Every time it gets back up, this\nPOKéMON stores more energy in its body\nfor evolving.','fast-then-very-slow',70,180,2),(298,297,'つっぱりポケモン','It has the habit of challenging others\nwithout hesitation to tests of strength.\nIt’s been known to stand on train tracks\nand stop trains using forearm thrusts.','fast-then-very-slow',70,200,2),(299,298,'みずたまポケモン','A Pokémon that lives by water.\nIt moves quickly on land by\nbouncing on its big tail.','fast',50,150,6),(300,299,'コンパスポケモン','NOSEPASS’s magnetic nose is always\npointed to the north. If two of these\nPOKéMON meet, they cannot turn their faces to each other when they\nare close because their magnetic noses\nrepel one another.','medium',70,255,4),(301,300,'こねこポケモン','SKITTY has the habit of becoming\nfascinated by moving objects and\nchasing them around. This POKéMON is known to chase after\nits own tail and become dizzy.','fast',70,255,6),(302,301,'おすましポケモン','DELCATTY prefers to live an unfettered\nexistence in which it can do as it\npleases at its own pace. Because this POKéMON eats and sleeps\nwhenever it decides, its daily routines\nare completely random.','fast',70,60,6),(303,302,'くらやみポケモン','SABLEYE lead quiet lives deep inside\ncaverns. They are feared, however,\nbecause these POKéMON are thought to steal the spirits of people when their\neyes burn with a sinister glow in the\ndarkness.','medium-slow',35,45,4),(304,303,'あざむきポケモン','MAWHILE’s huge jaws are actually steel\nhorns that have been transformed.\nIts docile-looking face serves to lull its foe into letting down its guard.\nWhen the foe least expects it, MAWHILE\nchomps it with its gaping jaws.','fast',50,45,4),(305,304,'てつヨロイポケモン','This POKéMON has a body of steel.\nTo make its body, ARON feeds on\niron ore that it digs from mountains. Occasionally, it causes major trouble by\neating bridges and rails.','slow',35,180,4),(306,305,'てつヨロイポケモン','LAIRON tempers its steel body by\ndrinking highly nutritious mineral\nspringwater until it is bloated. This POKéMON makes its nest close to\nsprings of delicious water.','slow',35,90,4),(307,306,'てつヨロイポケモン','AGGRON claims an entire mountain as its\nown territory. It mercilessly beats up\nanything that violates its environment. This POKéMON vigilantly patrols its\nterritory at all times.','slow',35,45,4),(308,307,'めいそうポケモン','1にち 1こだけ きのみを たべる。\nくうふくに たえることで\nこころが とぎすまされていく。','medium',70,180,4),(309,308,'めいそうポケモン','It is said that through meditation,\nMEDICHAM heightens energy inside\nits body and sharpens its sixth sense. This POKéMON hides its presence by\nmerging itself with fields and\nmountains.','medium',70,90,4),(310,309,'いなずまポケモン','ELECTRIKE stores electricity in its\nlong body hair. This POKéMON stimulates\nits leg muscles with electric charges. These jolts of power give its legs\nexplosive acceleration performance.','slow',50,120,4),(311,310,'ほうでんポケモン','MANECTRIC is constantly discharging\nelectricity from its mane. The sparks\nsometimes ignite forest fires. When it enters a battle, this POKéMON\ncreates thunderclouds.','slow',50,45,4),(312,311,'おうえんポケモン','PLUSLE always acts as a cheerleader\nfor its partners. Whenever a teammate\nputs out a good effort in battle, this POKéMON shorts out its body to create\nthe crackling noises of sparks to show\nits joy.','medium',70,200,4),(313,312,'おうえんポケモン','MINUN is more concerned about cheering\non its partners than its own safety.\nIt shorts out the electricity in its body to create brilliant showers of\nsparks to cheer on its teammates.','medium',70,200,4),(314,313,'ほたるポケモン','With the arrival of night, VOLBEAT emits\nlight from its tail. It communicates with\nothers by adjusting the intensity and flashing of its light.\nThis POKéMON is attracted by the sweet\naroma of ILLUMISE.','slow-then-very-fast',70,150,0),(315,314,'ほたるポケモン','With its sweet aroma, it guides\nVolbeat to draw signs with light in\nthe night sky.','fast-then-very-slow',70,150,8),(316,315,'いばらポケモン','ROSELIA shoots sharp thorns as\nprojectiles at any opponent that tries\nto steal the flowers on its arms. The aroma of this POKéMON brings\nserenity to living things.','medium-slow',50,150,4),(317,316,'いぶくろポケモン','Virtually all of GULPIN’s body is its\nstomach. As a result, it can swallow\nsomething its own size. This POKéMON’s stomach contains a\nspecial fluid that digests anything.','fast-then-very-slow',70,225,4),(318,317,'どくぶくろポケモン','Es verschluckt, was in sein Maul passt, und verdaut es\nmit seiner alles zersetzenden Magensäure.','fast-then-very-slow',70,75,4),(319,318,'どうもうポケモン','CARVANHA’s strongly developed jaws\nand its sharply pointed fangs pack the\ndestructive power to rip out boat hulls. Many boats have been attacked and\nsunk by this POKéMON.','slow',35,225,4),(320,319,'きょうぼうポケモン','Nicknamed “the bully of the sea,”\nSHARPEDO is widely feared.\nIts cruel fangs grow back immediately if they snap off.\nJust one of these POKéMON can\nthoroughly tear apart a supertanker.','slow',35,60,4),(321,320,'たまくじらポケモン','WAILMER’s nostrils are located above\nits eyes. This playful POKéMON loves\nto startle people by forcefully snorting out seawater it stores inside its body\nout of its nostrils.','fast-then-very-slow',50,125,4),(322,321,'うきくじらポケモン','WAILORD is the largest of all identified\nPOKéMON up to now.\nThis giant POKéMON swims languorously in the vast open sea, eating massive\namounts of food at once with its\nenormous mouth.','fast-then-very-slow',50,60,4),(323,322,'どんかんポケモン','NUMEL is extremely dull witted - it\ndoesn’t notice being hit. However, it\ncan’t stand hunger for even a second. This POKéMON’s body is a seething\ncauldron of boiling magma.','medium',70,255,4),(324,323,'ふんかポケモン','CAMERUPT has a volcano inside its body.\nMagma of 18,000 degrees F courses\nthrough its body. Occasionally, the humps on this\nPOKéMON’s back erupt, spewing the\nsuperheated magma.','medium',70,150,4),(325,324,'せきたんポケモン','You can tell how it’s feeling by the smoke\nspouting from its shell. Tremendous velocity\nis a sign of good health.','medium',50,90,4),(326,325,'とびはねポケモン','SPOINK bounces around on its tail.\nThe shock of its bouncing makes its\nheart pump. As a result, this POKéMON cannot afford to stop bouncing - if it\nstops, its heart will stop.','fast',70,255,4),(327,326,'あやつりポケモン','GRUMPIG uses the black pearls on its\nbody to amplify its psychic power waves\nfor gaining total control over its foe. When this POKéMON uses its special\npower, its snorting breath grows\nlabored.','fast',70,60,4),(328,327,'ぶちパンダポケモン','No two Spinda have the same\npattern of spots. Its tottering\nstep fouls the aim of foes.','fast',70,255,4),(329,328,'ありじごくポケモン','TRAPINCH’s nest is a sloped, bowl-like\npit dug in sand. This POKéMON patiently\nwaits for prey to tumble down the pit. Its giant jaws have enough strength\nto crush even boulders.','medium-slow',50,255,4),(330,329,'しんどうポケモン','2片翅膀高速振動\n產生的超音波會\n引起劇烈的頭痛。','medium-slow',50,120,4),(331,330,'せいれいポケモン','FLYGON is nicknamed “the elemental \nspirit of the desert.” Because its\nflapping wings whip up a cloud of sand, this POKéMON is always enveloped in a\nsandstorm while flying.','medium-slow',50,45,4),(332,331,'サボテンポケモン','En stockant l’eau dans son corps,\ncet habitant du désert peut \nsurvivre 30 jours sans boire.','medium-slow',35,190,4),(333,332,'カカシぐさポケモン','During the daytime, CACTURNE remains\nunmoving so that it does not lose any\nmoisture to the harsh desert sun. This POKéMON becomes active at night\nwhen the temperature drops.','medium-slow',35,60,4),(334,333,'わたどりポケモン','SWABLU has light and fluffy wings that\nare like cottony clouds. This POKéMON\nis not frightened of people. It lands on the heads of people and\nsits there like a cotton-fluff hat.','slow-then-very-fast',50,255,4),(335,334,'ハミングポケモン','Il vole librement en se cachant dans les nuages.\nSon chant est digne de celui de la plus douée des\nsopranos.','slow-then-very-fast',50,45,4),(336,335,'ネコイタチポケモン','Memories of battling its arch-rival\nSEVIPER are etched into every cell of\nZANGOOSE’s body. This POKéMON adroitly dodges attacks\nwith incredible agility.','slow-then-very-fast',70,90,4),(337,336,'キバへびポケモン','SEVIPER shares a generations-long\nfeud with ZANGOOSE. The scars on its\nbody are evidence of vicious battles. This POKéMON attacks using its sword-\nedged tail.','fast-then-very-slow',70,90,4),(338,337,'いんせきポケモン','LUNATONE was discovered at a location\nwhere a meteorite fell. As a result, some\npeople theorize that this POKéMON came from space. However, no one has\nbeen able to prove this theory so far.','fast',50,45,-1),(339,338,'いんせきポケモン','Solar energy is the source of its power,\nso it is strong during the daytime.\nWhen it spins, its body shines.','fast',50,45,-1),(340,339,'ひげうおポケモン','BARBOACH’s sensitive whiskers serve\nas a superb radar system.\nThis POKéMON hides in mud, leaving only its two whiskers exposed while it waits\nfor prey to come along.','medium',50,190,4),(341,340,'ひげうおポケモン','WHISCASH is extremely territorial.\nJust one of these POKéMON will claim a\nlarge pond as its exclusive territory. If a foe approaches it, it thrashes\nabout and triggers a massive\nearthquake.','medium',50,75,4),(342,341,'ごろつきポケモン','Its hardy vitality enables it to\nadapt to any environment. Its\npincers will never release prey.','fast-then-very-slow',50,205,4),(343,342,'ならずものポケモン','CRAWDAUNT has an extremely violent\nnature that compels it to challenge\nother living things to battle. Other life-forms refuse to live in\nponds inhabited by this POKéMON,\nmaking them desolate places.','fast-then-very-slow',50,155,4),(344,343,'どぐうポケモン','BALTOY moves while spinning around on\nits one foot. Primitive wall paintings\ndepicting this POKéMON living among people were discovered in some ancient\nruins.','medium',50,255,-1),(345,344,'どぐうポケモン','CLAYDOL are said to be dolls of mud made\nby primitive humans and brought to life\nby exposure to a mysterious ray. This POKéMON moves about while\nlevitating.','medium',50,90,-1),(346,345,'ウミユリポケモン','LILEEP became extinct approximately\na hundred million years ago.\nThis ancient POKéMON attaches itself to a rock on the seafloor and catches\napproaching prey using tentacles \nshaped like flower petals.','slow-then-very-fast',50,45,1),(347,346,'いわつぼポケモン','CRADILY roams around the ocean floor\nin search of food. This POKéMON freely\nextends its tree trunk-like neck and captures unwary prey using its eight\ntentacles.','slow-then-very-fast',50,45,1),(348,347,'むかしエビポケモン','ANORITH was regenerated from a\nprehistoric fossil. This primitive\nPOKéMON once lived in warm seas. It grips its prey firmly between its\ntwo large claws.','slow-then-very-fast',50,45,1),(349,348,'かっちゅうポケモン','ARMALDO’s tough armor makes all attacks\nbounce off. This POKéMON’s two\nenormous claws can be freely extended or contracted. They have the power to\npunch right through a steel slab.','slow-then-very-fast',50,45,1),(350,349,'さかなポケモン','FEEBAS’s fins are ragged and\ntattered from the start of its life.\nBecause of its shoddy appearance, this POKéMON is largely ignored.\nIt is capable of living in both the sea\nand in rivers.','slow-then-very-fast',50,255,4),(351,350,'いつくしみポケモン','Ses splendides écailles aux couleurs\nde l’arc-en-ciel changent de teinte\nselon l’angle de vue.','slow-then-very-fast',50,60,4),(352,351,'てんきポケモン','CASTFORM’s appearance changes with\nthe weather.\nThis POKéMON gained the ability to use the vast power of nature to protect\nits tiny body.','medium',70,45,4),(353,352,'いろへんげポケモン','It changes body color to blend in with\nits surroundings. It also changes color if\nit is happy or sad.','medium-slow',70,200,4),(354,353,'にんぎょうポケモン','SHUPPET is attracted by feelings\nof jealousy and vindictiveness.\nIf someone develops strong feelings of vengeance, this POKéMON will appear\nin a swarm and line up beneath the eaves\nof that person’s home.','fast',35,225,4),(355,354,'ぬいぐるみポケモン','BANETTE generates energy for laying\nstrong curses by sticking pins into its\nown body. This POKéMON was originally a pitiful\nplush doll that was thrown away.','fast',35,45,4),(356,355,'おむかえポケモン','DUSKULL can pass through any wall no\nmatter how thick it may be.\nOnce this POKéMON chooses a target, it will doggedly pursue the intended\nvictim until the break of dawn.','fast',35,190,4),(357,356,'てまねきポケモン','DUSCLOPS’s body is completely hollow -\nthere is nothing at all inside.\nIt is said that its body is like a black hole. This POKéMON will absorb anything\ninto its body, but nothing will ever come\nback out.','fast',35,90,4),(358,357,'フルーツポケモン','Puede volar al agitar sus grandes hojas. Reparte entre\nlos niños la codiciada fruta dulce que crece de su\ncuello.','slow',70,200,4),(359,358,'ふうりんポケモン','CHIMECHO makes its cries echo\ninside its hollow body. When this\nPOKéMON becomes enraged, its cries result in ultrasonic waves that have\nthe power to knock foes flying.','fast',70,45,4),(360,359,'わざわいポケモン','Every time ABSOL appears before people,\nit is followed by a disaster such as an\nearthquake or a tidal wave. As a result, it came to be known as the\ndisaster POKéMON.','medium-slow',35,30,4),(361,360,'ほがらかポケモン','WYNAUT can always be seen with a big,\nhappy smile on its face. Look at its tail\nto determine if it is angry. When angered, this POKéMON will be\nslapping the ground with its tail.','medium',50,125,4),(362,361,'ゆきかさポケモン','SNORUNT live in regions with heavy\nsnowfall. In seasons without snow, such\nas spring and summer, this POKéMON steals away to live quietly among\nstalactites and stalagmites deep in\ncaverns.','medium',50,190,4),(363,362,'がんめんポケモン','GLALIE has a body made of rock, which it\nhardens with an armor of ice.\nThis POKéMON has the ability to freeze moisture in the atmosphere into any\nshape it desires.','medium',50,75,4),(364,363,'てたたきポケモン','SPHEAL is much faster rolling than \nwalking to get around. When groups of\nthis POKéMON eat, they all clap at once to show their pleasure. Because of this,\ntheir mealtimes are noisy.','medium-slow',50,255,4),(365,364,'たままわしポケモン','SEALEO has the habit of always juggling\non the tip of its nose anything it sees\nfor the first time. This POKéMON occasionally entertains\nitself by balancing and rolling a SPHEAL\non its nose.','medium-slow',50,120,4),(366,365,'こおりわりポケモン','It swims through icy seas while shattering\nice floes with its large tusks. It is\nprotected by its thick blubber.','medium-slow',50,45,4),(367,366,'2まいがいポケモン','CLAMPERL’s sturdy shell is not only good\nfor protection - it is also used for\nclamping and catching prey. A fully grown CLAMPERL’s shell will be\nscored with nicks and scratches all\nover.','slow-then-very-fast',70,255,4),(368,367,'しんかいポケモン','HUNTAIL’s presence went unnoticed by\npeople for a long time because it lives\nat extreme depths in the sea. This POKéMON’s eyes can see clearly\neven in the murky dark depths of the\nocean.','slow-then-very-fast',70,60,4),(369,368,'なんかいポケモン','헤엄치는 모습이 굉장히 우아하다.\n가는 입으로 바위 틈새에 나 있는\n해초를 먹는다.','slow-then-very-fast',70,60,4),(370,369,'ちょうじゅポケモン','RELICANTH is a POKéMON species that\nexisted for a hundred million years\nwithout ever changing its form. This ancient POKéMON feeds on\nmicroscopic organisms with its\ntoothless mouth.','slow',50,25,1),(371,370,'ランデブーポケモン','LUVDISC live in shallow seas in the\ntropics. This heart-shaped POKéMON\nearned its name by swimming after loving couples it spotted in the\nocean’s waves.','fast',70,225,6),(372,371,'いしあたまポケモン','Dreaming of one day flying, it practices by leaping\noff cliffs every day.','slow',35,45,4),(373,372,'にんたいポケモン','Inside SHELGON’s armor-like shell, cells\nare in the midst of transformation\nto create an entirely new body. This POKéMON’s shell is extremely heavy,\nmaking its movements sluggish.','slow',35,45,4),(374,373,'ドラゴンポケモン','SALAMENCE came about as a result of a\nstrong, long-held dream of growing\nwings. It is said that this powerful desire triggered a sudden mutation in\nthis POKéMON’s cells, causing it to\nsprout its magnificent wings.','slow',35,45,4),(375,374,'てっきゅうポケモン','Il dégage un champ magnétique opposé à celui\nde la terre, ce qui lui permet de léviter.','slow',35,3,-1),(376,375,'てつツメポケモン','When two BELDUM fuse together, METANG\nis formed. The brains of the BELDUM are\njoined by a magnetic nervous system. By linking its brains magnetically,\nthis POKéMON generates strong\npsychokinetic power.','slow',35,3,-1),(377,376,'てつあしポケモン','METAGROSS has four brains in total.\nCombined, the four brains can breeze\nthrough difficult calculations faster than a supercomputer.\nThis POKéMON can float in the air by\ntucking in its four legs.','slow',35,3,-1),(378,377,'いわやまポケモン','Its entire body is made of rock.\nIf any part chips off in battle, it\nattaches rocks to repair itself.','slow',35,3,-1),(379,378,'ひょうざんポケモン','REGICE’s body was made during an ice\nage. The deep-frozen body can’t be\nmelted, even by fire. This POKéMON controls frigid air of\nminus 328 degrees F.','slow',35,3,-1),(380,379,'くろがねポケモン','REGISTEEL has a body that is harder\nthan any kind of metal.\nIts body is apparently hollow. No one has any idea what this POKéMON\neats.','slow',35,3,-1),(381,380,'むげんポケモン','LATIAS is highly sensitive to the\nemotions of people. If it senses any\nhostility, this POKéMON ruffles the feathers all over its body and cries\nshrilly to intimidate the foe.','slow',90,3,8),(382,381,'むげんポケモン','LATIOS has the ability to make its foe\nsee an image of what it has seen or\nimagines in its head. This POKéMON is intelligent and\nunderstands human speech.','slow',90,3,0),(383,382,'かいていポケモン','KYOGRE has the power to create massive\nrain clouds that cover the entire sky\nand bring about torrential downpours. This POKéMON saved people who were\nsuffering from droughts.','slow',0,3,-1),(384,383,'たいりくポケモン','Dicen que este Pokémon legendario simboliza la tierra.\nTras batirse en duelo con Kyogre se echó a dormir.','slow',0,3,-1),(385,384,'てんくうポケモン','RAYQUAZA lived for hundreds of millions\nof years in the earth’s ozone layer, \nnever descending to the ground. This POKéMON appears to feed on water\nand particles in the atmosphere.','slow',0,45,-1),(386,385,'ねがいごとポケモン','A legend states that JIRACHI will make\ntrue any wish that is written on notes\nattached to its head when it awakens. If this POKéMON senses danger, it will\nfight without awakening.','slow',100,3,-1),(387,386,'DNAポケモン','The DNA of a space virus underwent a\nsudden mutation upon exposure to a\nlaser beam and resulted in DEOXYS. The crystalline organ on this POKéMON’s\nchest appears to be its brain.','slow',0,3,-1),(388,387,'わかばポケモン','Made from soil, the shell on its\nback hardens when it drinks water.\nIt lives along lakes.','medium-slow',70,45,1),(389,388,'こだちポケモン','It knows where pure water wells\nup. It carries fellow Pokémon there\non its back.','medium-slow',70,45,1),(390,389,'たいりくポケモン','Small Pokémon occasionally gather\non its unmoving back to begin\nbuilding their nests.','medium-slow',70,45,1),(391,390,'こざるポケモン','It agilely scales sheer cliffs to\nlive atop craggy mountains. Its\nfire is put out when it sleeps.','medium-slow',70,45,1),(392,391,'やんちゃポケモン','To intimidate attackers, it\nstretches the fire on its tail\nto make itself appear bigger.','medium-slow',70,45,1),(393,392,'かえんポケモン','It uses a special kind of martial\narts involving all its limbs.\nIts fire never goes out.','medium-slow',70,45,1),(394,393,'ペンギンポケモン','Because it is very proud, it hates\naccepting food from people. Its\nthick down guards it from cold.','medium-slow',70,45,1),(395,394,'ペンギンポケモン','It lives alone, away from others.\nApparently, every one of them\nbelieves it is the most important.','medium-slow',70,45,1),(396,395,'こうていポケモン','The three horns that extend from\nits beak attest to its power. The\nleader has the biggest horns.','medium-slow',70,45,1),(397,396,'むくどりポケモン','They flock in great numbers.\nThough small, they flap their\nwings with great power.','medium-slow',70,255,4),(398,397,'むくどりポケモン','It flies around forests and fields\nin search of bug Pokémon.\nIt stays within a huge flock.','medium-slow',70,120,4),(399,398,'もうきんポケモン','It has a savage nature. It will\ncourageously challenge foes that\nare much larger.','medium-slow',70,45,4),(400,399,'まるねずみポケモン','With nerves of steel, nothing can\nperturb it. It is more agile and\nactive than it appears.','medium',70,255,4),(401,400,'ビーバーポケモン','It makes its nest by damming\nstreams with bark and mud. It is\nknown as an industrious worker.','medium',70,127,4),(402,401,'こおろぎポケモン','It shakes its head back to front,\ncausing its antennae to hit each\nother and sound like a xylophone.','medium-slow',70,255,4),(403,402,'こおろぎポケモン','It crosses its knifelike arms in\nfront of its chest when it cries.\nIt can compose melodies ad lib.','medium-slow',70,45,4),(404,403,'せんこうポケモン','All of its fur dazzles if danger is\nsensed. It flees while the foe is\nmomentarily blinded.','medium-slow',50,235,4),(405,404,'でんこうポケモン','遇到敌人时会从脚\n伸出有着百万伏特\n威力的爪子来迎战。','medium-slow',100,120,4),(406,405,'がんこうポケモン','It has eyes that can see through\nanything. It spots and captures\nprey hiding behind objects.','medium-slow',50,45,4),(407,406,'つぼみポケモン','Over the winter, it closes its bud\nand endures the cold. In spring,\nthe bud opens and releases pollen.','medium-slow',50,255,4),(408,407,'ブーケポケモン','Con i movimenti di una ballerina, colpisce con le\nfruste, piene di spine velenose.','medium-slow',50,75,4),(409,408,'ずつきポケモン','It lived in jungles around 100\nmillion years ago. Its skull is as\nhard as iron.','slow-then-very-fast',70,45,1),(410,409,'ずつきポケモン','Its powerful head butt has enough\npower to shatter even the most\ndurable things upon impact.','slow-then-very-fast',70,45,1),(411,410,'シールドポケモン','A Pokémon that lived in jungles\naround 100 million years ago. Its\nfacial hide is extremely hard.','slow-then-very-fast',70,45,1),(412,411,'シールドポケモン','Any frontal attack is repulsed.\nIt is a docile Pokémon that\nfeeds on grass and berries.','slow-then-very-fast',70,45,1),(413,412,'みのむしポケモン','To shelter itself from cold, wintry\nwinds, it covers itself with a cloak\nmade of twigs and leaves.','medium',70,120,4),(414,413,'みのむしポケモン','When BURMY evolved, its cloak\nbecame a part of this Pokémon’s\nbody. The cloak is never shed.','medium',70,45,8),(415,414,'ミノガポケモン','It loves the honey of flowers\nand steals honey collected by\nCOMBEE.','medium',70,45,0),(416,415,'はちのこポケモン','A Pokémon formed by three others.\nIt busily carries sweet floral\nhoney to VESPIQUEN.','medium-slow',50,120,1),(417,416,'はちのすポケモン','Its abdomen is a honeycomb for\ngrubs. It raises its grubs on\nhoney collected by COMBEE.','medium-slow',50,45,8),(418,417,'でんきりすポケモン','It makes fur balls that crackle\nwith static electricity. It stores\nthem with berries in tree holes.','medium',100,200,4),(419,418,'うみイタチポケモン','It has a flotation sac that is\nlike an inflatable collar. It floats\non water with its head out.','medium',70,190,4),(420,419,'うみイタチポケモン','It floats using its well-developed\nflotation sac. It assists in the\nrescues of drowning people.','medium',70,75,4),(421,420,'さくらんぼポケモン','栄養の 詰まった 玉は\n鳥ポケモンの 大好物。\nついばまれないよう 逃げまわる。','medium',50,190,4),(422,421,'サクラポケモン','It blooms during times of strong\nsunlight. It tries to make up for\neverything it endured as a bud.','medium',50,75,4),(423,422,'ウミウシポケモン','Its colors and shapes differ from\nregion to region. In the Sinnoh\nregion, two types are confirmed.','medium',50,190,4),(424,423,'ウミウシポケモン','Attaqué par un prédateur, il fuit en libérant un liquide mauve.','medium',50,75,4),(425,424,'おながポケモン','To eat, it deftly shucks nuts\nwith its two tails. It rarely uses\nits arms now.','fast',100,45,4),(426,425,'ふうせんポケモン','A Pokémon formed by the spirits\nof people and Pokémon. It loves\ndamp, humid seasons.','fast-then-very-slow',50,125,4),(427,426,'ききゅうポケモン','At dusk, swarms of them are\ncarried aloft on winds. When\nnoticed, they suddenly vanish.','fast-then-very-slow',50,60,4),(428,427,'うさぎポケモン','It slams foes by sharply uncoiling\nits rolled ears. It stings enough\nto make a grown-up cry in pain.','medium',0,190,4),(429,428,'うさぎポケモン','An extremely cautious Pokémon.\nIt cloaks its body with its fluffy\near fur when it senses danger.','medium',140,60,4),(430,429,'マジカルポケモン','Its cries sound like incantations.\nThose hearing it are tormented\nby headaches and hallucinations.','fast',35,45,4),(431,430,'おおボスポケモン','Becoming active at night, it is\nknown to swarm with numerous\nMURKROW in tow.','medium-slow',35,30,4),(432,431,'ねこかぶりポケモン','It claws if displeased and purrs\nwhen affectionate. Its fickleness\nis very popular among some.','fast',70,190,6),(433,432,'Pokémon Tigre Gato','It is a brazen brute that barges\nits way into another Pokémon’s\nnest and claims it as its own.','fast',70,75,6),(434,433,'すずポケモン','It emits cries by agitating an orb\nat the back of its throat.\nIt moves with flouncing hops.','fast',70,120,4),(435,434,'スカンクポケモン','It protects itself by spraying a\nnoxious fluid from its rear. The\nstench lingers for 24 hours.','medium',50,225,4),(436,435,'スカンクポケモン','It sprays a vile-smelling fluid\nfrom the tip of its tail to attack.\nIts range is over 160 feet.','medium',50,60,4),(437,436,'せいどうポケモン','Se dice que brilla y refleja la verdad al pulirlo,\naunque es algo que detesta.','medium',50,255,-1),(438,437,'どうたくポケモン','One caused a news sensation when\nit was dug up at a construction\nsite after a 2,000-year sleep.','medium',50,90,-1),(439,438,'ぼんさいポケモン','It looks as if it is always crying.\nIt is actually adjusting its body’s\nfluid levels by eliminating excess.','medium',50,255,4),(440,439,'マイムポケモン','It habitually mimics foes. Once\nmimicked, the foe cannot take its\neyes off this Pokémon.','medium',50,145,4),(441,440,'ままごとポケモン','It loves round white things.\nIt carries an egg-shaped rock in\nimitation of CHANSEY.','fast',140,130,8),(442,441,'おんぷポケモン','It can learn and speak human\nwords. If they gather, they all\nlearn the same saying.','medium-slow',35,30,4),(443,442,'ふういんポケモン','A Pokémon that was formed by 108\nspirits. It is bound to a fissure\nin an odd keystone.','medium',50,100,4),(444,443,'りくザメポケモン','It nests in small, horizontal holes\nin cave walls. It pounces to catch\nprey that stray too close.','slow',50,45,4),(445,444,'ほらあなポケモン','There is a long-held belief that\nmedicine made from its scales will\nheal even incurable illnesses.','slow',50,45,4),(446,445,'マッハポケモン','When it folds up its body and\nextends its wings, it looks like a\njet plane. It flies at sonic speed.','slow',50,45,4),(447,446,'おおぐいポケモン','It wolfs down its weight in food\nonce a day, swallowing food whole\nwith almost no chewing.','slow',50,50,1),(448,447,'はもんポケモン','The aura that emanates from its\nbody intensifies to alert others\nif it is afraid or sad.','medium-slow',50,75,1),(449,448,'はどうポケモン','It has the ability to sense the\nauras of all things.\nIt understands human speech.','medium-slow',50,45,1),(450,449,'カバポケモン','It lives in arid places. Instead\nof perspiration, it expels grainy\nsand from its body.','slow',50,140,4),(451,450,'じゅうりょうポケモン','It blasts internally stored sand\nfrom ports on its body to create\na towering twister for attack.','slow',50,60,4),(452,451,'さそりポケモン','It grips prey with its tail claws\nand injects poison. It tenaciously\nhangs on until the poison takes.','slow',50,120,4),(453,452,'ばけさそりポケモン','It has the power in its clawed\narms to make scrap of a car. The\ntips of its claws release poison.','slow',50,45,4),(454,453,'どくづきポケモン','Its cheeks hold poison sacs.\nIt tries to catch foes off guard\nto jab them with toxic fingers.','medium',100,140,4),(455,454,'どくづきポケモン','Its knuckle claws secrete a toxin\nso vile that even a scratch could\nprove fatal.','medium',50,75,4),(456,455,'むしとりポケモン','It attracts prey with its sweet-\nsmelling saliva, then chomps down.\nIt takes a whole day to eat prey.','slow',70,200,4),(457,456,'はねうおポケモン','Die Linie an seiner Seite kann Sonnenlicht\nspeichern. Nachts leuchtet es sehr intensiv.','slow-then-very-fast',70,190,4),(458,457,'ネオンポケモン','Il vit au plus profond de l’océan. Il attire sa proie en illuminant\nles motifs de ses quatre nageoires.','slow-then-very-fast',70,75,4),(459,458,'カイトポケモン','A friendly Pokémon that captures\nthe subtle flows of seawater using\nits two antennae.','slow',50,25,4),(460,459,'じゅひょうポケモン','It lives on snowy mountains.\nHaving had little contact with\nhumans, it is boldly inquisitive.','slow',50,120,4),(461,460,'じゅひょうポケモン','It whips up blizzards in mountains\nthat are always buried in snow.\nIt is the abominable snowman.','slow',50,60,4),(462,461,'かぎづめポケモン','They live in cold regions, forming\ngroups of four or five that hunt\nprey with impressive coordination.','medium-slow',35,45,4),(463,462,'じばポケモン','It evolved from exposure to a\nspecial magnetic field.\nThree units generate magnetism.','medium',50,30,-1),(464,463,'なめまわしポケモン','타액에는 어떤 것도 녹이는\n성분이 충분히 포함되어 있어\n핥으면 언제까지나 마비된다.','medium',50,30,4),(465,464,'ドリルポケモン','It puts rocks in holes in its palms\nand uses its muscles to shoot them.\nGEODUDE are shot at rare times.','slow',50,30,4),(466,465,'ツルじょうポケモン','It ensnares prey by extending\narms made of vines. Losing arms to\npredators does not trouble it.','medium',50,30,4),(467,466,'らいでんポケモン','As its electric charge amplifies,\nblue sparks begin to crackle between\nits horns.','medium',50,30,2),(468,467,'ばくえんポケモン','It blasts fireballs of over 3,600\ndegrees F from the ends of its\narms. It lives in volcanic craters.','medium',50,30,2),(469,468,'しゅくふくポケモン','Es zeigt sich nie an Orten, wo Streit und\nZwietracht herrschen. In letzter Zeit wird es\nkaum noch gesehen.','fast',50,30,1),(470,469,'オニトンボポケモン','By churning its wings, it creates\nshock waves that inflict critical\ninternal injuries to foes.','medium',70,30,4),(471,470,'しんりょくポケモン','Just like a plant, it uses\nphotosynthesis. As a result, it is\nalways enveloped in clear air.','medium',35,45,1),(472,471,'しんせつポケモン','As a protective technique, it can\ncompletely freeze its fur to make\nits hairs stand like needles.','medium',35,45,1),(473,472,'キバさそりポケモン','It observes prey while hanging\ninverted from branches. When the\nchance presents itself, it swoops!','medium-slow',70,30,4),(474,473,'2ほんキバポケモン','Its impressive tusks are made of\nice. The population thinned when it\nturned warm after the ice age.','slow',50,50,4),(475,474,'バーチャルポケモン','Additional software was installed\nto make it a better Pokémon.\nIt began acting oddly, however.','medium',50,30,-1),(476,475,'やいばポケモン','Comme il peut lire les pensées de ses adversaires,\nil frappe toujours en premier.','slow',35,45,0),(477,476,'コンパスポケモン','It freely controls three small\nunits called Mini-Noses using\nmagnetic force.','medium',70,60,4),(478,477,'てづかみポケモン','Die Antenne auf seinem Kopf empfängt Radiowellen\naus einer anderen Dimension.','fast',35,45,4),(479,478,'ゆきぐにポケモン','It freezes foes with an icy breath\nnearly -60 degrees F. What seems\nto be its body is actually hollow.','medium',50,75,8),(480,479,'プラズマポケモン','某位少年的发明\n促使人们开始制造\n各种活用洛托姆的机器 。','medium',50,45,-1),(481,480,'ちしきポケモン','Known as “The Being of Knowledge.”\nIt is said that it can wipe out the\nmemory of those who see its eyes.','slow',140,3,-1),(482,481,'かんじょうポケモン','Known as “The Being of Emotion.”\nIt taught humans the nobility of\nsorrow, pain, and joy.','slow',140,3,-1),(483,482,'いしポケモン','Known as “The Being of Willpower.”\nIt sleeps at the bottom of a lake\nto keep the world in balance.','slow',140,3,-1),(484,483,'じかんポケモン','It has the power to control time.\nIt appears in Sinnoh-region myths\nas an ancient deity.','slow',0,3,-1),(485,484,'くうかんポケモン','It has the ability to distort\nspace. It is described as a deity\nin Sinnoh-region mythology.','slow',0,3,-1),(486,485,'かこうポケモン','It dwells in volcanic caves. It\ndigs in with its cross-shaped feet\nto crawl on ceilings and walls.','slow',100,3,4),(487,486,'きょだいポケモン','There is an enduring legend that\nstates this Pokémon towed\ncontinents with ropes.','slow',0,3,-1),(488,487,'はんこつポケモン','A Pokémon that is said to live in a\nworld on the reverse side of ours.\nIt appears in an ancient cemetery.','slow',0,3,-1),(489,488,'みかづきポケモン','Shiny particles are released from\nits wings like a veil. It is said\nto represent the crescent moon.','slow',100,3,8),(490,489,'かいようポケモン','Si sposta nei mari caldi. Torna sempre dove è nato, anche se\nsi trova molto lontano.','slow',70,30,-1),(491,490,'かいゆうポケモン','Born on a cold seafloor, it\nwill swim great distances to\nreturn to its birthplace.','slow',70,3,-1),(492,491,'あんこくポケモン','It can lull people to sleep and\nmake them dream. It is active\nduring nights of the new moon.','slow',0,3,-1),(493,492,'かんしゃポケモン','Puede disolver las toxinas del aire para transformar\ntierra yerma en campos de flores.','medium-slow',100,45,-1),(494,493,'そうぞうポケモン','It is described in mythology as\nthe Pokémon that shaped the\nuniverse with its 1,000 arms.','slow',0,3,-1),(495,494,'しょうりポケモン','Un Pokémon qui amène la victoire. On dit\nque les Dresseurs qui le possèdent\npeuvent gagner n’importe quel combat.','slow',100,3,-1),(496,495,'くさへびポケモン','Un Pokémon intelligent et très calme.\nLorsqu’il a reçu suffisamment de\nlumière du soleil, il devient plus agile.','medium-slow',70,45,1),(497,496,'くさへびポケモン','Il court comme s’il glissait sur le sol.\nIl déroute l’ennemi par ses mouvements\net l’assomme d’un coup de liane.','medium-slow',70,45,1),(498,497,'ロイヤルポケモン','Il peut paralyser l’ennemi d’un regard.\nIl amplifie l’énergie du soleil dans\nson corps.','medium-slow',70,45,1),(499,498,'ひぶたポケモン','Il évite agilement les attaques ennemies\net crache des boules de feu par le groin.\nIl aime griller des Baies pour les manger.','medium-slow',70,45,1),(500,499,'ひぶたポケモン','Quand le feu dans son corps s’embrase,\nsa vitesse et son agilité augmentent.\nEn cas d’urgence, il crache de la fumée.','medium-slow',70,45,1),(501,500,'おおひぶたポケモン','Il embrase ses poings avec les flammes\nsur son menton et cogne l’ennemi avec.\nC’est un Pokémon très solidaire.','medium-slow',70,45,1),(502,501,'ラッコポケモン','Il combat avec le coupillage de son\nventre. Il peut parer un assaut et\nimmédiatement contre-attaquer.','medium-slow',70,45,1),(503,502,'しゅぎょうポケモン','L’apprentissage de sa technique de\ncombat, qui utilise élégamment ses deux\ncoupillages, est extrêmement rigoureux.','medium-slow',70,45,1),(504,503,'かんろくポケモン','Il peut terrasser ses ennemis d’un coup\nde la lame enchâssée dans son armure,\net les faire taire d’un seul regard.','medium-slow',70,45,1),(505,504,'みはりポケモン','Ils stockent à manger dans leurs\nbajoues et font le guet indéfiniment. Ils\nse font des signes en remuant la queue.','medium',70,255,4),(506,505,'Pokémon Alerta','Il attaque en crachant les graines des\nBaies qu’il accumule dans ses bajoues.\nS’il voit un ennemi, il dresse la queue.','medium',70,255,4),(507,506,'こいぬポケモン','Il fait vaillamment face à des ennemis\ntrès puissants, mais il est intelligent\net évite les combats trop inégaux.','medium-slow',50,255,4),(508,507,'ちゅうけんポケモン','Les poils qui entourent son corps\ncomme un manteau sont extrêmement\ndurs et amortissent les coups.','medium-slow',50,120,4),(509,508,'かんだいポケモン','Il sauve les gens bloqués dans les\nmontagnes par des tempêtes de neige.\nSes longs poils le protègent du froid.','medium-slow',50,45,4),(510,509,'しょうわるポケモン','Il vole les gens pour le plaisir, mais il\nest tellement mignon que ses victimes\nfinissent toujours par lui pardonner.','medium',50,255,4),(511,510,'れいこくポケモン','Un Pokémon insaisissable. Son style\net son pelage magnifique attirent de\nnombreux Dresseurs.','medium',50,90,4),(512,511,'くさざるポケモン','Il vit dans les forêts profondes.\nManger la feuille qui pousse sur\nsa tête fait disparaître la fatigue.','medium',70,190,1),(513,512,'とげざるポケモン','Il a un tempérament violent et se\nbat avec sa queue pleine d’épines.\nLa feuille sur sa tête est très amère.','medium',70,75,1),(514,513,'こうおんポケモン','Quand il s’énerve, la mèche sur sa\ntête chauffe à 300 °C. Il s’en sert\npour griller des Baies et les manger.','medium',70,190,1),(515,514,'ひのこポケモン','Il adore les aliments sucrés. Ils lui\nservent d’énergie pour alimenter le\nfeu à l’intérieur de son corps.','medium',70,75,1),(516,515,'みずかけポケモン','L’eau contenue dans la mèche sur sa\ntête est pleine de nutriments. Elle fait\npousser les plantes avec vigueur.','medium',70,190,1),(517,516,'ほうすいポケモン','Il stocke de l’eau dans les mèches de sa\ntête. Quand il est à sec, il se ravitaille\nen aspirant de l’eau par la queue.','medium',70,75,1),(518,517,'ゆめくいポケモン','Quand Munna mange un rêve, celui-ci\nest aussitôt oublié par le rêveur.\nIl lévite en permanence.','fast',50,190,4),(519,518,'ゆめうつつポケモン','La fumée qui sort de son front contient\nles rêves de nombreuses personnes et\nceux de nombreux Pokémon.','fast',50,75,4),(520,519,'こばとポケモン','Il suit scrupuleusement les consignes\nde son Dresseur, mais il a du mal à\ncomprendre les ordres trop compliqués.','medium-slow',50,255,4),(521,520,'のばとポケモン','Aussi éloigné qu’il puisse se trouver,\nil parvient toujours à retourner\nauprès de son Dresseur.','medium-slow',50,120,4),(522,521,'プライドポケモン','Le mâle intimide ses ennemis\navec ses caroncules.\nLa femelle vole mieux que le mâle.','medium-slow',50,45,4),(523,522,'たいでんポケモン','When thunderclouds cover the sky, it will appear.\nIt can catch lightning with its mane and store\nthe electricity.','medium',70,190,4),(524,523,'らいでんポケモン','Il réagit à la vitesse de l’éclair.\nLorsqu’il est en plein galop, on peut\nentendre le grondement du tonnerre.','medium',70,75,4),(525,524,'マントルポケモン','Il a une oreille hexagonale. Son\ncorps, compressé dans des strates\nprofondes, est dur comme de l’acier.','medium-slow',50,255,4),(526,525,'こうせきポケモン','Quand il est gonflé à bloc, ses cristaux\norangés scintillent. Il cherche de l’eau\nsouterraine dans les grottes.','medium-slow',50,120,4),(527,526,'こうあつポケモン','Il comprime de l’énergie dans son corps,\net ses attaques sont assez puissantes\npour renverser des montagnes.','medium-slow',50,45,4),(528,527,'こうもりポケモン','Il vit dans les forêts sombres et les\ngrottes. Il émet des ultrasons par\nle nez pour se diriger.','medium',50,190,4),(529,528,'きゅうあいポケモン','コンクリートも こわせるほどの\nつよい ちょうおんぱを だすとき\nしっぽが はげしく ふるえる。','medium',50,45,4),(530,529,'もぐらポケモン','Il peut creuser à plus de 50 km/h et\nfaire la course avec une voiture roulant\nsur le terrain qu’il creuse.','medium',50,120,4),(531,530,'ちていポケモン','Ses vrilles en acier peuvent transpercer\ndes poutres en fer. Il est très employé\ndans la construction de tunnels.','medium',50,60,4),(532,531,'ヒヤリングポケモン','Il ausculte les gens avec ses antennes\nauriculaires pour juger de leurs\némotions ou de leur santé.','fast',50,255,4),(533,532,'きんこつポケモン','Il combat avec une poutre. Quand il en\narrive à transporter de lourds madriers\nsans problème, l’évolution est proche.','medium-slow',70,180,2),(534,533,'きんこつポケモン','Même une armée de catcheurs se\njetant sur son corps hyper musclé\nne le ferait pas ciller.','medium-slow',50,90,2),(535,534,'きんこつポケモン','On pense que la recette du ciment\na été enseignée aux humains par\nun Bétochef il y a 2 000 ans.','medium-slow',50,45,2),(536,535,'おたまポケモン','Il prévient ses camarades du danger en\nfaisant vibrer ses joues pour générer\nun signal d’alarme très aigu.','medium-slow',50,255,4),(537,536,'しんどうポケモン','Quand il fait vibrer la bosse sur sa tête,\nil provoque des ondulations dans l’eau,\nmais aussi des tremblements de terre.','medium-slow',50,120,4),(538,537,'しんどうポケモン','Il fait gicler un liquide paralysant des\npustules sur sa tête, et attaque\nses ennemis à coups de vibrations.','medium-slow',50,45,4),(539,538,'じゅうどうポケモン','Quand il noue sa ceinture, il devient\nplus puissant. Les Judokrak sauvages\ntressent leur ceinture avec des lianes.','medium',50,45,0),(540,539,'からてポケモン','Es lebt zurückgezogen in den Bergen und trainiert Tag\nund Nacht, um seinen Karateschlag zu perfektionieren.','medium',50,45,0),(541,540,'さいほうポケモン','Quand il éclot, Manternel lui coud son\nvêtement. Il dort en cachant son\nvisage sous sa capuche.','medium-slow',70,255,4),(542,541,'はごもりポケモン','Dans les forêts où il vit, la végétation\npousse bien car il transforme les\nfeuilles mortes en engrais.','medium-slow',70,120,4),(543,542,'こそだてポケモン','Quand il trouve de petits Pokémon, il\nleur coud des vêtements de feuilles en\nutilisant ses coupoirs et son fil adhésif.','medium-slow',70,45,4),(544,543,'ムカデポケモン','Sa morsure est très venimeuse.\nElle paralyse même les grands\nPokémon Oiseaux, ses prédateurs.','medium-slow',50,255,4),(545,544,'まゆムカデポケモン','Protégé par sa solide carapace,\nil fonce sur ses ennemis en\nroulant comme un pneu.','medium-slow',50,120,4),(546,545,'メガムカデポケモン','Il accule l’ennemi par ses mouvements\nrapides et l’attaque avec ses cornes.\nIl ne s’arrête qu’au coup de grâce.','medium-slow',50,45,4),(547,546,'わたたまポケモン','Si on l’attaque, il projette un nuage de\ncoton. L’ennemi le confond avec lui, ce\nqui permet à Doudouvet de s’enfuir.','medium',50,190,4),(548,547,'かぜかくれポケモン','沒有特定的棲息地。\n會乘著旋風移動,\n到處現身去惡作劇。','medium',50,75,4),(549,548,'ねっこポケモン','Les feuilles sur sa tête sont très\namères, mais elles remettent d’aplomb\nles corps les plus éreintés.','medium',50,190,8),(550,549,'はなかざりポケモン','Même les Dresseurs confirmés ont\ndu mal à faire éclore sa belle fleur.\nUn Pokémon apprécié des célébrités.','medium',50,75,8),(551,550,'らんぼうポケモン','Les bleus et les rouges se détestent\ncordialement et se battent dès qu’ils\ns’aperçoivent. Un Pokémon très violent.','medium',50,25,4),(552,551,'さばくワニポケモン','Il vit dans le sable des déserts.\nLe sable chauffé par le soleil empêche\nson corps de refroidir.','medium-slow',50,180,4),(553,552,'さばくワニポケモン','Ils vivent en petits groupes.\nLa membrane qui couvre leurs yeux\nles protège du soleil.','medium-slow',50,90,4),(554,553,'いかくポケモン','Il ne laisse jamais échapper ses proies.\nSes mâchoires surpuissantes peuvent\nbroyer une voiture.','medium-slow',50,45,4),(555,554,'だるまポケモン','Quand le feu brûle dans son corps,\nil est tout excité et court partout.\nQuand le feu s’apaise, il s’endort.','medium-slow',50,120,4),(556,555,'えんじょうポケモン','Il entretient des flammes à 1 400 °C\ndans son corps. De quoi détruire un\ncamion-benne d’un coup de poing!','medium-slow',50,60,4),(557,556,'サボテンポケモン','Avec une danse et des sons saccadés,\nil fait fuir ses prédateurs, les Pokémon\nOiseaux dévoreurs de graines de fleur.','medium',50,255,4),(558,557,'いしやどポケモン','Il peut facilement creuser son trou\ndans les pierres les plus dures grâce\nau liquide sécrété par sa bouche.','medium',50,190,4),(559,558,'いわやどポケモン','Entre eux, les querelles de territoire\nsont fréquentes et violentes. Celui qui\nse fait briser son rocher a perdu.','medium',50,75,4),(560,559,'だっぴポケモン','Il remonte sa peau jusqu’à son cou pour\nse protéger. Elle a une constitution\nélastique qui absorbe les coups.','medium',35,180,4),(561,560,'あくとうポケモン','Ils se regroupent pour rosser ceux\nqui pénètrent sur leur territoire.\nIls crachent un venin corrosif.','medium',50,90,4),(562,561,'とりもどきポケモン','On dit qu’il parcourt toujours le même\nitinéraire parce qu’il a gardé la mémoire\nde la ville antique qu’il protégeait.','medium',50,45,4),(563,562,'たましいポケモン','Le motif de son masque est son visage\nquand il était humain. Parfois, il le\nregarde et se met à pleurer.','medium',50,190,4),(564,563,'かんおけポケモン','황금으로 된 반짝거리는 몸.\n자신이 인간이었다는 사실을\n이제는 기억하지 못할 것이다.','medium',50,90,4),(565,564,'こだいがめポケモン','Il a été recréé à partir d’un fossile\npréhistorique. Il peut plonger jusqu’à\n1 000 mètres de profondeur.','medium',50,45,1),(566,565,'こだいがめポケモン','Il vit sur terre et en mer.\nSes bras surpuissants peuvent percer\ndes trous dans la coque des paquebots.','medium',50,45,1),(567,566,'さいこどりポケモン','On dit qu’il serait l’ancêtre de tous les\nPokémon Oiseaux. Il ne sait pas voler et\nse déplace en sautant d’arbre en arbre.','medium',50,45,1),(568,567,'さいこどりポケモン','Il s’envole après avoir pris de l’élan.\nIl est assez intelligent pour chasser\nses proies en groupe.','medium',50,45,1),(569,568,'ゴミぶくろポケモン','Il aime les endroits mal tenus.\nLe gaz qu’il rote endort\npendant une semaine.','medium',50,190,4),(570,569,'ゴミすてばポケモン','Il étrangle ses ennemis avec son bras\ndroit et les achève avec le gaz puant et\nempoisonné qu’il exhale par la bouche.','medium',50,60,4),(571,570,'わるぎつねポケモン','Il a le pouvoir de prendre l’apparence\ndes autres. On dit qu’il se transforme\nsouvent en petit enfant silencieux.','medium-slow',50,75,1),(572,571,'ばけぎつねポケモン','Ces Pokémon protègent les leurs en\nprenant l’apparence de leurs ennemis.\nIls forment des groupes très soudés.','medium-slow',50,45,1),(573,572,'チンチラポケモン','Ils se saluent en se caressant\nmutuellement le corps avec la queue,\nqu’ils gardent toujours immaculée.','fast',50,255,6),(574,573,'スカーフポケモン','Leurs poils blancs sont recouverts\nd’une graisse spéciale qui leur permet\nd’esquiver facilement les attaques.','fast',50,60,6),(575,574,'ぎょうしポケモン','Concentre des pouvoirs psychiques dans\nses antennes semblables à des rubans,\net regarde fixement... mais quoi?','medium-slow',50,200,6),(576,575,'あやつりポケモン','Hypnotise les Pokémon et les gens. Il y a\nde nombreuses légendes de gens enlevés\ndans leur sommeil par des Mesmérella.','medium-slow',50,100,6),(577,576,'てんたいポケモン','Ses pouvoirs psychiques plient l’espace\naux alentours. On y voit des étoiles\néloignées de millions d’années-lumière.','medium-slow',50,50,6),(578,577,'さいぼうポケモン','Ils repoussent leurs assaillants\navec leurs pouvoirs psychiques et\ncommuniquent entre eux par télépathie.','medium-slow',50,200,4),(579,578,'ぶんかつポケモン','Cuando las dos partes de su cerebro piensan lo\nmismo, saca todo su poder a relucir.','medium-slow',50,100,4),(580,579,'ぞうふくポケモン','Quand ils se tiennent par la main,\nleurs cerveaux forment un réseau qui\ndémultiplie leurs pouvoirs psychiques.','medium-slow',50,50,4),(581,580,'みずどりポケモン','Un Pokémon Oiseau doué pour la plongée.\nIl nage sous l’eau à la recherche de\nsphaigne, son plat préféré.','medium',70,190,4),(582,581,'しらとりポケモン','Ils se mettent à danser à la tombée\nde la nuit. Le Lakmécygne qui danse\nau centre est le chef de la troupe.','medium',70,45,4),(583,582,'しんせつポケモン','Il exhale une haleine à -50 °C.\nIl fabrique des cristaux de neige\net fait neiger autour de lui.','slow',50,255,4),(584,583,'ひょうせつポケモン','Un Pokémon qui vit dans les montagnes\nenneigées. Il a émigré au sud durant\nl’ère glaciaire, il y a bien longtemps.','slow',50,120,4),(585,584,'ブリザードポケモン','Il avale de l’eau en grande quantité\net la transforme en nuages neigeux.\nIl souffle du blizzard sur ses ennemis.','slow',50,45,4),(586,585,'きせつポケモン','Son pelage prend la même couleur et la\nmême odeur que les hautes herbes. S’il\nsent un ennemi, il court s’y réfugier.','medium',70,190,4),(587,586,'きせつポケモン','Il change d’habitat selon les saisons.\nLes gens constatent le passage des\nsaisons en regardant ses ramures.','medium',70,75,4),(588,587,'モモンガポケモン','Il accumule dans ses membranes\nl’électricité qu’il produit dans ses\nbajoues, et la relâche tout en planant.','medium',50,200,4),(589,588,'かぶりつきポケモン','Un Pokémon mystérieux qui évolue quand\nil reçoit un stimulus électrique en étant\nproche d’un Escargaume.','medium',50,200,4),(590,589,'きへいポケモン','Ce Pokémon se protège avec la carapace dérobée à un\nEscargaume et attaque avec ses deux redoutables lances.','medium',50,75,4),(591,590,'きのこポケモン','Grâce à sa ressemblance mystérieuse\navec une Poké Ball, il attire ses ennemis\net relâche des spores empoisonnées.','medium',50,190,4),(592,591,'きのこポケモン','Il danse en faisant tournoyer les\ncoupoles en forme de Poké Ball de\nses bras pour attirer ses proies.','medium',50,75,4),(593,592,'ふゆうポケモン','Il s’enfonce dans les profondeurs de la\nmer en emmenant son ennemi, qu’il ligote\navec ses bras fins comme des voiles.','medium',50,190,4),(594,593,'ふゆうポケモン','Les bateaux qui s’aventurent sur\nson territoire coulent, et Moyade\naspire l’énergie vitale des marins.','medium',50,60,4),(595,594,'かいほうポケモン','La membrane spéciale qui entoure\nson corps a la capacité de guérir\nles blessures.','fast',70,75,4),(596,595,'くっつきポケモン','Les Statitik qui vivent en ville ont\nappris à aspirer le courant depuis\nles prises électriques des maisons.','medium',50,190,4),(597,596,'でんきグモポケモン','Quand on l’attaque, il projette une\nmultitude de fils électrifiés pour\ncréer une barrière électrique.','medium',50,75,4),(598,597,'とげのみポケモン','Quand il sent un danger, il réagit en\nprojetant toutes ses épines d’un coup\net s’enfuit en roulant sur lui-même.','medium',50,255,4),(599,598,'とげだまポケモン','Il combat avec ses trois tentacules\népineux. Un coup de ses épines d’acier\npeut briser en deux de gros rochers.','medium',50,90,4),(600,599,'はぐるまポケモン','La compatibilité entre ses deux rouages\nest prédéterminée. Ceux-ci ne se\nfixeront à aucun autre.','medium-slow',50,130,-1),(601,600,'はぐるまポケモン','Ils communiquent entre eux en changeant\nleur sens de rotation. Plus ils sont en\ncolère, plus ils tournent vite.','medium-slow',50,60,-1),(602,601,'はぐるまポケモン','Il accumule rapidement de l’énergie en\nfaisant tourner très vite le rouage\nqui contient son noyau rouge.','medium-slow',50,30,-1),(603,602,'でんきうおポケモン','Tout seuls, ils ne dégagent pas beaucoup\nd’électricité, mais un banc d’Anchwatt\nproduit la même puissance qu’un éclair.','slow',70,190,4),(604,603,'でんきうおポケモン','Ses taches rondes émettent de\nl’électricité. Il s’enroule autour\nde ses proies et les électrocute.','slow',70,60,4),(605,604,'でんきうおポケモン','Il peut sortir de l’eau à la force de ses\nbras pour attraper des proies sur la\nrive. Il retourne à l’eau en un instant.','slow',70,30,4),(606,605,'ブレインポケモン','Avec son puissant pouvoir psychique,\nil peut compresser le cerveau de ses\nennemis et déclencher des migraines.','medium',50,255,4),(607,606,'ブレインポケモン','会用精神力量改写对手的记忆。\n你说不定也已经被改写了。','medium',50,90,4),(608,607,'ろうそくポケモン','Sa flamme brûle en consumant\nl’énergie vitale des gens et\ndes Pokémon.','medium-slow',50,190,4),(609,608,'ランプポケモン','Un Pokémon craint pour être de mauvais\naugure. Il erre dans les villes à la\nrecherche d’âmes de défunts.','medium-slow',50,90,4),(610,609,'いざないポケモン','Il brûle en aspirant les âmes, et\nhypnotise ses ennemis en faisant\nosciller les flammes de ses bras.','medium-slow',50,45,4),(611,610,'キバポケモン','Il broie les Baies à grands coups de\ncrocs. Ceux-ci repoussent plusieurs\nfois, toujours plus forts et aiguisés.','slow',35,75,4),(612,611,'あごオノポケモン','Comme ses crocs brisés ne repoussent\npas, il les aiguise après le combat grâce\nà une pierre ramassée près d’un fleuve.','slow',35,60,4),(613,612,'あごオノポケモン','Il est doux, mais ne pardonne pas à ceux\nqui viennent saccager son territoire.\nSes crocs peuvent découper de l’acier.','slow',35,45,4),(614,613,'ひょうけつポケモン','Quand il est malade, sa goutte au nez\ndégèle et ses capacités de type Glace\ndeviennent moins efficaces.','medium',50,120,4),(615,614,'とうけつポケモン','Il fait lui-même geler son haleine. Il\nest bon nageur et sillonne les mers\ndu nord à la recherche de ses proies.','medium',50,60,4),(616,615,'けっしょうポケモン','會操縱用冰做成的鎖鏈\n凍住遇見的獵物,然後\n把牠帶去不知名的地方。','medium',50,25,-1),(617,616,'マイマイポケモン','Quand on l’attaque, il referme sa\nvisière pour se défendre, et\nprojette un poison visqueux.','medium',50,200,4),(618,617,'からぬけポケモン','Quand son corps s’assèche, il faiblit.\nIl s’en prémunit en s’enroulant dans\nplusieurs couches d’une fine muqueuse.','medium',50,75,4),(619,618,'トラップポケモン','Sa peau est si dure qu’il peut se faire\npiétiner par un sumo sans rien sentir.\nIl sourit en émettant de l’électricité.','medium',70,75,4),(620,619,'ぶじゅつポケモン','Il découpe ses ennemis avec ses griffes\nacérées et les terrasse avec ses\nenchaînements de coups hyper fluides.','medium-slow',50,180,4),(621,620,'ぶじゅつポケモン','快到無法看清的踢腿\n非常強烈,即使是\n巨大的岩石也能粉碎。','medium-slow',50,45,4),(622,621,'ほらあなポケモン','Il utilise ses ailes pour emmagasiner la\nchaleur du soleil. Si la température de\nson corps baisse, il ne peut plus bouger.','medium',50,45,4),(623,622,'ゴーレムポケモン','Il se meut grâce à l’énergie stockée\ndans son corps. Personne ne sait d’où\nvient cette énergie mystérieuse.','medium',50,190,-1),(624,623,'ゴーレムポケモン','Il vole à la vitesse du son. Si le\nsceau sur sa poitrine est retiré,\nil perd tout contrôle de lui-même.','medium',50,90,-1),(625,624,'はものポケモン','Tout son corps est fait de lames.\nSi une lame s’émousse, il va l’aiguiser\ncontre une pierre au bord d’une rivière.','medium',35,120,4),(626,625,'とうじんポケモン','Ils dirigent les groupes de Scalpion.\nIls se battent pour la suprématie sur le\ngroupe, et les perdants en sont exclus.','medium',35,45,4),(627,626,'ずつきうしポケモン','Son pelage fourni absorbe les chocs\net lui permet d’asséner sans broncher\nle plus violent des coups de tête.','medium',50,45,4),(628,627,'ヒナわしポケモン','They crush berries with their talons. They bravely\nstand up to any opponent, no matter how strong\nit is.','slow',50,190,0),(629,628,'ゆうもうポケモン','Pour les siens, il combat au mépris du\ndanger. Il est capable de soulever\nune voiture haut dans le ciel.','slow',50,60,0),(630,629,'おむつポケモン','Their wings are too tiny to allow them to fly.\nThey guard their posteriors with bones that were\ngathered by Mandibuzz.','slow',35,190,8),(631,630,'ほねわしポケモン','Il construit des nids en os. Il attrape\nles proies affaiblies avec ses serres\net les transporte allègrement au nid.','slow',35,60,8),(632,631,'アリクイポケモン','Il aspire de l’air par la queue et\nentretient un brasier dans son corps.\nC’est le prédateur des Fermite.','medium',50,90,4),(633,632,'てつアリポケモン','Ils portent une armure de fer et se\nregroupent pour contrer les attaques\nde leurs prédateurs, les Aflamanoir.','medium',50,90,4),(634,633,'そぼうポケモン','Il mord tout ce qui bouge, et mange tout\nce qu’il trouve. Il vaut mieux éviter\nde s’en approcher.','slow',35,45,4),(635,634,'らんぼうポケモン','After it has eaten up all the food in its territory,\nit moves to another area. Its two heads do not\nget along.','slow',35,45,4),(636,635,'きょうぼうポケモン','Un Pokémon violent qui patrouille le ciel\navec ses six ailes et se jette sur tout\nce qui bouge, pensant voir un ennemi.','slow',35,45,4),(637,636,'たいまつポケモン','On dit que ce Pokémon serait né du\nsoleil. Lorsqu’il évolue, tout son\ncorps est enveloppé de flammes.','slow',50,45,4),(638,637,'たいようポケモン','On dit que quand le ciel s’est obscurci à\ncause des cendres d’un volcan, le feu\nd’un Pyrax aurait remplacé le soleil.','slow',50,15,4),(639,638,'てっしんポケモン','Un Pokémon légendaire qui a combattu\nles humains pour protéger les Pokémon.\nIl est d’un naturel calme et posé.','slow',35,3,-1),(640,639,'がんくつポケモン','Il a combattu les humains pour protéger\nles Pokémon ayant perdu leur foyer à\ncause de leurs guerres fratricides.','slow',35,3,-1),(641,640,'そうげんポケモン','Il a défié les humains pour protéger\nles siens. Son nom est resté dans\nla légende.','slow',35,3,-1),(642,641,'せんぷうポケモン','Le bas de son corps est entouré d’une\nmasse d’énergie semblable à un nuage.\nIl vole dans le ciel à 300 km/h.','slow',90,3,0),(643,642,'らいげきポケモン','Les terres qu’il a survolées sont\nrecouvertes d’innombrables traces\ndes éclairs qu’il y a fait tomber.','slow',90,3,0),(644,643,'はくようポケモン','Un Pokémon mythique.\nIl projette de sa queue un tourbillon\nde flammes capable de tout emporter.','slow',0,3,-1),(645,644,'こくいんポケモン','Sa queue produit de l’électricité.\nIl dissimule son corps dans un nuage\nélectrique et plane dans le ciel d’Unys.','slow',0,3,-1),(646,645,'ほうじょうポケモン','Il fait fructifier les cultures partout\noù il passe, c’est pourquoi on l’appelle\n“le dieu des moissons”.','slow',90,3,0),(647,646,'きょうかいポケモン','레시라무와 제크로무를 능가할 정도의\n힘을 가졌으나 극저온의\n냉기에 봉인되어 있다.','slow',0,3,-1),(648,647,'わかごまポケモン','Il projette de l’eau depuis ses sabots\net se déplace ainsi à grande vitesse.\nSa botte secrète est le coup de sabot.','slow',35,3,-1),(649,648,'せんりつポケモン','Its melodies are sung with a special vocalization\nmethod that can control the feelings of those who\nhear it.','slow',100,3,-1),(650,649,'こせいだいポケモン','Il y a 300 millions d’années, il était\ncraint comme l’ultime prédateur. Il a\nété modifié par la Team Plasma.','slow',0,3,-1),(651,650,'いがぐりポケモン','ふだん やわらかい あたまの トゲは\nちからを こめると するどく とがり\nいわをも つらぬくほど かたくなる。','medium-slow',70,45,1),(652,651,'とげよろいポケモン','からだを おおう がんじょうな カラが\nてきの こうげきを はじきかえし\nするどい トゲで はんげきする。','medium-slow',70,45,1),(653,652,'とげよろいポケモン','たいあたりで 50トンの せんしゃを\nひっくりかえす パワー。じぶんが\nたてと なって なかまを まもる。','medium-slow',70,45,1),(654,653,'キツネポケモン','こえだを たべると げんきになって\nせっし200どを こえる ねっきを\nおおきな みみから ふきだす。','medium-slow',70,45,1),(655,654,'キツネポケモン','きのえだを しっぽに さしている。\nしっぽの けの まさつねつで\nえだに ひをつけて たたかう。','medium-slow',70,45,1),(656,655,'キツネポケモン','つえの せんたんで もえる ほのおを\nみつめて せいしんとういつすると\nみらいの できごとを みとおせる。','medium-slow',70,45,1),(657,656,'あわがえるポケモン','むねと せなかから あわを だす。\nだんりょくのある あわで こうげきを\nうけとめて ダメージを へらす。','medium-slow',70,45,1),(658,657,'あわがえるポケモン','あわで つつんだ こいしを なげる\nわざを つかう。30メートル さきの\nあきかんに あてる コントロール。','medium-slow',70,45,1),(659,658,'しのびポケモン','みずを あっしゅくして しゅりけんを\nつくりだす。こうそくかいてんさせて\nとばすと きんぞくも まっぷたつ。','medium-slow',70,45,1),(660,659,'あなほりポケモン','おおきな みみで じめんを ほって\nすあなを つくる。ひとばんじゅう\nやすまずに ほりつづけられる。','medium',50,255,4),(661,660,'あなほりポケモン','おおきな みみは 1トンを こえる\nいわを らくに もちあげる パワー。\nこうじげんばで だいかつやくする。','medium',50,127,4),(662,661,'コマドリポケモン','ひとなつっこい せいかく。うつくしい\nさえずりと おばねを ふる うごきで\nなかまに あいずを おくる。','medium-slow',50,255,4),(663,662,'ひのこポケモン','ひのこを クチバシから とばして\nくさむらを こがし おどろいて\nとびだした えものを つかまえる。','medium-slow',50,120,4),(664,663,'れっかポケモン','主要的獵物是鳥寶可夢。\n會急速接近對手,然後用\n猛烈的腳踢把對手擊落到地面。','medium-slow',50,45,4),(665,664,'こなふきポケモン','とりポケモンに おそわれると\nくろい こなを まきちらす。\nふれると マヒする どくのこなだ。','medium',70,255,4),(666,665,'こなふきポケモン','しげみの かげに かくれて くらす。\nてきに おそわれると からだの けを\nするどく さかだてて いかくする。','medium',70,120,4),(667,666,'りんぷんポケモン','せかいには さまざまな はねもようの\nビビヨンがいる。すんでいる とちの\nきこうが えいきょうしているようだ。','medium',70,45,4),(668,667,'わかじしポケモン','つよい あいてに たちむかうときほど\nたてがみが こうおんになり\nぜんしんに ちからが みなぎるのだ。','medium-slow',70,220,7),(669,668,'おうじゃポケモン','The male with the largest mane of fire\nis the leader of the pride.','medium-slow',70,65,7),(670,669,'いちりんポケモン','Die Krone auf seinem Kopf hat es sich aus\nPollen von Blumen gebastelt. Sie besitzt eine\nheilende Wirkung.','medium',70,225,8),(671,670,'いちりんポケモン','はなばたけを とびまわり かれかけた\nはなを せわする。はなの ひめられた\nちからを ひきだして たたかう。','medium',70,120,8),(672,671,'ガーデンポケモン','テリトリーは みごとな はなぞの。\nくさばなが はなつ エネルギーを\nあびて じぶんの パワーにするのだ。','medium',70,45,8),(673,672,'ライドポケモン','ひとと くらすようになった\nさいしょの ポケモンと いわれる。\nおだやかな せいかくの ポケモン。','medium',70,200,4),(674,673,'ライドポケモン','ツノを にぎる わずかな ちがいから\nトレーナーの きもちを よみとるので\nいったいとなって はしれるのだ。','medium',70,45,4),(675,674,'やんちゃポケモン','Il fait de son mieux pour avoir un air patibulaire,\nmais il sourit béatement dès qu’on lui caresse la tête.','medium',50,220,4),(676,675,'こわもてポケモン','きしょうが あらく けんかっぱやいが\nよわいものいじめは ゆるさない。\nはっぱで てきの うごきを よむ。','medium',50,65,4),(677,676,'プードルポケモン','ボサボサの たいもうを かりこむと\nすがたが うつくしくなる だけでなく\nからだの キレが よくなるのだ。','medium',70,160,4),(678,677,'じせいポケモン','きょうりょくな サイコパワーが\nもれださないように ほうしゅつする\nきかんを みみで ふさいでいるのだ。','medium',50,190,4),(679,678,'よくせいポケモン','きけんが せまると みみを もちあげ\n10トン トラックを ひねりつぶす\nサイコパワーを かいほうする。','medium',50,75,4),(680,679,'とうけんポケモン','ししゃの たましいが こだいの\nつるぎに やどって うまれたらしい。\nひとに とりつき いのちを すう。','medium',50,180,4),(681,680,'とうけんポケモン','しんかして 2ほんに ぶんれつした。\nテレパシーで かいわして れんけい\nこうげきで てきを きりきざむ。','medium',50,90,4),(682,681,'おうけんポケモン','れきだいの おうが つれていた。\nれいりょくで ひとや ポケモンの\nこころを あやつり したがわせる。','medium',50,45,4),(683,682,'こうすいポケモン','かいだ ものを うっとりさせる\nかおりを からだから ただよわせる。\nたべた もので かおりが かわる。','medium',50,200,4),(684,683,'ほうこうポケモン','さまざまな においを つくりだす。\nあいての いやがる においを だして\nたたかいを ゆうりに すすめるのだ。','medium',50,140,4),(685,684,'わたあめポケモン','わたあめのような あまくて ベタつく\nしろい いとを だして あいてを\nからめとり うごきを ふうじる。','medium',50,200,4),(686,685,'ホイップポケモン','体臭から 心と 体の\n調子を 嗅ぎとる。 医療への\n応用が 期待されている。','medium',50,140,4),(687,686,'かいてんポケモン','はっこうたいの てんめつを みつめた\nあいては めが くらみ たたかう\nきもちが なくなってしまうのだ。','medium',50,190,4),(688,687,'ぎゃくてんポケモン','ポケモンで いちばん きょうりょくな\nさいみんじゅつを つかう。あいてを\nいのままに あやつってしまうのだ。','medium',50,80,4),(689,688,'ふたてポケモン','2ひきの カメテテが ひとつの\nいわで くらす。ケンカすると\nどちらかが ほかの いわに うつる。','medium',50,120,4),(690,689,'しゅうごうポケモン','しんかのとき 2ひきの カメテテが\n7ひきに ぶんれつした ポケモン。\n7ひきぶんの パワーで たたかう。','medium',50,45,4),(691,690,'クサモドキポケモン','くさった かいそうに ぎたいする。\nきづかずに ちかよってきた えものに\nどくえきを あびせて しとめる。','medium',50,225,4),(692,691,'クサモドキポケモン','タンカーの せんたいを くさらせる\nもうどくを なわばりに はいりこんだ\nものに みさかいなく はきかける。','medium',50,55,4),(693,692,'みずでっぽうポケモン','おおきな ハサミから あっしゅくした\nみずを ピストルのように うちだし\nとんでいる えものを うちおとす。','slow',50,225,4),(694,693,'ランチャーポケモン','みずの ほうだんを はっしゃする\nきょだいな ハサミを もつ。\nタンカーの せんたいを うちぬくぞ。','slow',50,55,4),(695,694,'はつでんポケモン','さばくで せいかつする。たいようの\nひかりを あびて はつでんすれば\nエサを たべなくても へいきなのだ。','medium',50,190,4),(696,695,'はつでんポケモン','L’électricité que produit un seul Iguolta en agitant\nsa collerette suffit à alimenter un immeuble entier.','medium',50,75,4),(697,696,'ようくんポケモン','かせきから ふっかつした ポケモン。\nきにいらない ことが あると\nかんしゃくを おこして おおあばれ。','medium',50,45,1),(698,697,'ぼうくんポケモン','ぶあつい てっぱんを かみのように\nかみちぎる おおあごで こだいの\nせかいでは むてきを ほこった。','medium',50,45,1),(699,698,'ツンドラポケモン','1おくねんまえから こおりづけに\nなっていた からだの いちぶから\nふっかつした こだいの ポケモン。','medium',50,45,1),(700,699,'ツンドラポケモン','マイナス150どの れいきを\nひしがたの けっしょうから だして\nてきを つつみ こおりづけにする。','medium',50,45,1),(701,700,'むすびつきポケモン','リボンのような しょっかくから\nきもちを やわらげる はどうを\nおくりこみ たたかいを やめさせる。','medium',50,45,1),(702,701,'レスリングポケモン','たいかくは こがらだが カイリキーや\nハリテヤマなど おおきな ポケモンと\nごかくに たたかう テクニシャン。','medium',50,100,4),(703,702,'アンテナポケモン','能用鬍鬚接收來自夥伴們\n的電波,藉此向彼此分享\n哪裡有食物或電力。','medium',50,180,4),(704,703,'ほうせきポケモン','ちかふかくの こうおん こうあつな\nかんきょうで うまれた。あたまの\nいしから エネルギーを はなつ。','slow',50,60,-1),(705,704,'なんたいポケモン','Il suo corpo è coperto da una membrana viscida che fa\nscivolare e devia i colpi dei nemici.','slow',35,45,4),(706,705,'なんたいポケモン','なんでも とかしてしまう ねんえきを\nぶんぴつして てきを げきたいする。\nめだまは たいかして みえていない。','slow',35,45,4),(707,706,'ドラゴンポケモン','ひとなつっこい ドラゴンポケモン。\nだいすきな トレーナーに だきついて\nねんえきで ヌルヌルにしてしまう。','slow',35,45,4),(708,707,'かぎたばポケモン','カギを あつめる しゅうせい。\nてきに おそわれると ジャラジャラと\nカギを うちならして いかくする。','fast',50,75,4),(709,708,'きりかぶポケモン','くさった きりかぶに たましいが\nやどり ポケモンに なった。\nひとの よりつかない もりに すむ。','medium',50,120,4),(710,709,'ろうぼくポケモン','ほかの きぎを じざいに あやつる。\nもりを あらす にんげんは しぬまで\nもりから でられないようにするのだ。','medium',50,60,4),(711,710,'かぼちゃポケモン','じょうぶつできない たましいを\nかぼちゃの からだに いれている。\nひぐれと ともに うごきはじめる。','medium',50,120,4),(712,711,'かぼちゃポケモン','しんげつの よるに ぶきみな こえで\nうたいながら まちなかを さまよう。\nその うたを きくと のろわれる。','medium',50,60,4),(713,712,'ひょうかいポケモン','からだを おおう こおりが てきの\nこうげきを ふせぐ。わられても\nれいきで すぐに こおりを はる。','medium',50,190,4),(714,713,'ひょうざんポケモン','こおりついた からだは こうてつの\nように かたい。たちふさがる ものを\nきょたいで おしつぶし いどうする。','medium',50,55,4),(715,714,'おんぱポケモン','まっくらな どうくつで くらす。\n20まんヘルツの ちょうおんぱを\nおおきな みみから はっしゃする。','medium',50,190,4),(716,715,'おんぱポケモン','つきあかりすら ない やみよを とび\nゆだんしている えものを おそう。\nくらやみの たたかいでは むてきだ。','medium',50,45,4),(717,716,'せいめいポケモン','えいえんの いのちを わけあたえると\nいわれている。じゅもくの すがたで\n1000ねん ねむり ふっかつする。','slow',0,45,-1),(718,717,'はかいポケモン','つばさと おばねを ひろげて あかく\nかがやくとき いきものの いのちを\nすいとる でんせつの ポケモン。','slow',0,45,-1),(719,718,'ちつじょポケモン','カロスちほうの せいたいけいが\nくずれると すがたを あらわして\nひめた ちからを はっきするらしい。','slow',0,3,-1),(720,719,'ほうせきポケモン','メレシーの とつぜんへんい。\nピンクいろに かがやく からだは\nせかいいち うつくしいと いわれる。','slow',50,3,-1),(721,720,'いたずらポケモン','くうかんを ゆがめる リングで\nあらゆる ものを はなれた ばしょへ\nとばしてしまう トラブルメーカー。','slow',100,3,-1),(722,721,'スチームポケモン','Expulsa vapor y desaparece entre la densa niebla. Dicen que\nhabita en montañas solitarias.','slow',100,3,-1),(723,722,'くさばねポケモン','けいかいしんが つよい。 ひるは\nこうごうせいで ちからを ためて\nよるに なったら かつどうかいし。','medium-slow',50,45,1),(724,723,'はばねポケモン','きどりやで ひまが あれば つばさの\nていれ。 うもうの よごれが きに\nなりすぎて たたかえないことも。','medium-slow',50,45,1),(725,724,'やばねポケモン','つばさに しこまれた やばねを\nつがえてはなつ。 100メートルさきの\nこいしも つらぬく せいど。','medium-slow',50,45,1),(726,725,'ひねこポケモン','けづくろいで おなかに たまった\nぬけげを もやして ひを ふく。\nけの はきかたで ほのおも へんか。','medium-slow',50,45,1),(727,726,'ひねこポケモン','くびの つけねに ほのおの スズが\nある。 ほのおが ふきだすとき\nリンリンと たかいおとが なる。','medium-slow',50,45,1),(728,727,'ヒールポケモン','강렬한 펀치와 킥을\n가한 후 배꼽 부근에서\n불꽃을 뿜어내 마무리한다.','medium-slow',50,45,1),(729,728,'あしかポケモン','がんばりやな せいしつで ゆうめい。\nたいえきを はなで ふくらませた\nバルーンを てきに ぶつける。','medium-slow',50,45,1),(730,729,'アイドルポケモン','ダンスが とくいで おどりながら\nつぎつぎに みずの バルーンを\nつくりだし てきに ぶつけるぞ。','medium-slow',50,45,1),(731,730,'ソリストポケモン','みずのバルーンを うたで あやつる。\nそのメロディは なかまに まなび\nだいだい むれに ひきつがれていく。','medium-slow',50,45,1),(732,731,'きつつきポケモン','びょうかん16れんだ で きを つつき\nあなを ほる。 あけた あなは エサを\nしまう ちょぞうこや すに つかう。','medium',70,255,4),(733,732,'ラッパぐちポケモン','クチバシに くった きのみの タネを\nためこむ。 てきや えものに\nであうと いっきに はっしゃする。','medium',70,120,4),(734,733,'おおづつポケモン','クチバシを はつねつさせ たたかう。\nそのおんどは 100どを ゆうに こえ\nつつかれるだけで おおやけど。','medium',70,45,4),(735,734,'うろつきポケモン','무엇이든 먹지만 신선하고\n살아 있는 것을 좋아해서\n먹이를 찾아 길을 누비고 다닌다.','medium',70,255,4),(736,735,'はりこみポケモン','えものの こんせきを みつけると\nねばりづよく そのばに はりこむが\nひぐれには うつらうつら している。','medium',70,127,4),(737,736,'ようちゅうポケモン','じょうぶな アゴで じゅもくを\nけずり じゅえきを すする。\nふだんは じめんの なかで くらす。','medium',50,255,4),(738,737,'バッテリーポケモン','たいないに ちくでんきのうを もつ。\nキャンプの ときなど 1ぴき いると\nとても ありがたい ポケモンだ。','medium',50,120,4),(739,738,'くわがたポケモン','腹部有著發電器官,\n會將能量集中在大顎上,\n發出驚人的電擊。','medium',50,45,4),(740,739,'けんとうポケモン','ハサミで じゃくてんを ガードしつつ\nスキを うかがい パンチを はなつ。\nまけたほうは アワを ふいて ダウン。','medium',70,225,4),(741,740,'けがにポケモン','トップを めざすはずが ゆきやまに\nまよいのぼり さむさに たえるうちに\nけが はえてきて しんかしていた。','medium',70,60,4),(742,741,'ダンスポケモン','はねを うちあわせて はっか。\nかれいな ステップを ふみながら\nはげしい ほのおを あびせかけるぞ。','medium',70,45,6),(743,742,'ツリアブポケモン','はなのミツや かふんが エサ。\nオーラを かんじる ちからを もち\nさきそうな はなを みわけている。','medium',50,190,4),(744,743,'ツリアブポケモン','かふんを まるめ だんごを つくる。\nしょくよう から せんとうよう まで\nたくさんの しゅるいが あるよ。','medium',50,75,4),(745,744,'こいぬポケモン','よく なつくので しょしんしゃに\nおすすめのポケモンと いわれるが\nそだつと きしょうは あらくなる。','medium',50,190,4),(746,745,'オオカミポケモン','すばやく うごき てきを まどわす。\nツメや キバの ほか タテガミの\nとがった いわも ぶきの ひとつ。','medium',50,90,4),(747,746,'こざかなポケモン','ピンチになると めが うるみだし\nかがやく。 そのひかりに むれる\nなかまと てきに たちむかうのだ。','fast',50,60,4),(748,747,'ヒトデナシポケモン','あたまに ある どくトゲで えものを\nズブリ。よわったところを 10ぽんの\nしょくしゅで とらえ とどめを さす。','medium',50,190,4),(749,748,'ヒトデナシポケモン','12ほんのあしで かいていを はう。\nドヒドイデの はったあとには\nサニーゴのカスが ちらばっている。','medium',50,75,4),(750,749,'うさぎうまポケモン','最喜歡玩泥巴。\n如果沒有每天到泥巴裡玩的話,\n會因為壓力累積而變得不聽話。','medium',50,190,4),(751,750,'ばんばポケモン','从嘴里吐出的泥凝固后,\n即便是风雨也能经得住,\n所以常被涂在以前家里的外墙上。','medium',50,60,4),(752,751,'すいほうポケモン','エサを もとめ ちじょうに あがる。\nすいほうを かぶるのは こきゅうと\nやわらかい あたまを まもるため。','medium',50,200,4),(753,752,'すいほうポケモン','とうぶの すいほうで ヘッドバット。\nちいさなポケモンで あれば そのまま\nすいほうに とりこまれ おぼれしぬ。','medium',50,100,4),(754,753,'かまくさポケモン','ひるまは ひかりをあびて ねむり\nよるに なると より あんぜんな\nねどこを さがし あるきだす。','medium',50,190,4),(755,754,'はなかまポケモン','あざやかな たいしょくを たもつには\nひじょうに てまが かかるが それを\nしゅみにする こうずかも いるのだ。','medium',50,75,4),(756,755,'はっこうポケモン','てんめつしながら ひかる ほうしを\nあたりに ばらまく。 そのひかりを\nみたものは ふかいねむりに おちる。','medium',50,190,4),(757,756,'はっこうポケモン','よなかに マシェードのすむ もりに\nいくのは きけん。 あやしいひかりに\nまどわされ にどと かえれなくなる。','medium',50,75,4),(758,757,'どくトカゲポケモン','たいえきを もやし どくガスを たく。\nガスを すった てきが フラフラに\nなったあと おそいかかるのだ。','medium',50,120,1),(759,758,'どくトカゲポケモン','なぜか ♀しか みつかっていない。\nヤトウモリの ♂を ひきつれて\nぎゃくハーレムを つくって くらす。','medium',50,45,8),(760,759,'じたばたポケモン','あいくるしい みためだが おこって\nジタバタする てあしに ぶつかると\nプロレスラーでも ふっとばされる。','medium',50,140,4),(761,760,'ごうわんポケモン','あっとうてきな きんりょくを もつ\nひじょうに きけんな ポケモン。\nせいそくちは きほん たちいりきんし。','medium',50,70,4),(762,761,'フルーツポケモン','おいしそうな かおりが からだから\nもれだしている。 においに さそわれた\nドデカバシに まるのみに される。','medium-slow',50,235,8),(763,762,'Pokémon Frutto','みを まもるため ヘタが はったつ。\nかなりの かたさで とりポケモンに\nつつかれても ぜんぜん へいきだ。','medium-slow',50,120,8),(764,763,'フルーツポケモン','あしを いかした けりが とくい。\nたおした あいてを あしげに して\nたかわらいで しょうりを アピール。','medium-slow',50,45,8),(765,764,'はなつみポケモン','えいようまんてんの ツルに はなを\nくっつける。 はなは かっせいかし\nかぐわしい アロマが ただよいだす。','fast',50,60,6),(766,765,'けんじゃポケモン','ひじょうに かしこいことで しられる。\nみじゅくな トレーナーは みくだす\nベテランむけの ポケモンだぞ。','slow',50,45,4),(767,766,'れんけいポケモン','20ぴきぜんごの グループを つくる。\nそのけっそくは ひじょうに かたく\nぜったい なかまを みすてない。','slow',50,45,4),(768,767,'そうこうポケモン','おくびょうで たくさんの あしを\nばたつかせ ひっしに にげまわる。\nにげたあとは ピカピカ きれい。','medium',50,90,4),(769,768,'そうこうポケモン','するどく きょだいな ツメで\nいっせん。 くうきや かいすいさえ\nいっとうりょうだんの うでまえ。','medium',50,45,4),(770,769,'すなやまポケモン','いきだおれたものの おんねんが\nこどもが つくった すなやまに\nとりつき たんじょう したのだ。','medium',50,140,4),(771,770,'すなのしろポケモン','ひとを あやつり すなのやまを\nすなのしろまで しんか させた。\nのろいの ちからも あがっている。','medium',50,60,4),(772,771,'なまこポケモン','It’s covered in a slime that keeps its skin moist,\nallowing it to stay on land for days without\ndrying up.','fast',50,60,4),(773,772,'じんこうポケモン','おもい せいぎょマスクを つけており\nほんらいの のうりょくを だせない。\nとくべつな ちからを ひめている。','slow',0,3,-1),(774,773,'じんこうポケモン','パートナーとの しんらいで かくせい。\nじざいに タイプを チェンジする\nのうりょくを はっきし たたかう。','slow',0,3,-1),(775,774,'ながれぼしポケモン','もともと オゾンそうに すんでおり\nからだの カラが おもくなると\nちじょうに むかって おちてくる。','medium-slow',70,30,-1),(776,775,'ゆめうつつポケモン','ねたまま うまれ ねたまま しぬ。\nすべての こうどうは みている\nゆめに よる ねぞう らしい。','slow',70,45,4),(777,776,'ばくはつがめポケモン','せなかの こうらは ばくはつぶつ。\nうっかり なぐれば だいばくはつ。\nおなかの あなが じゃくてん。','medium',50,70,4),(778,777,'まるまりポケモン','せなかの ハリの けは ふだんは\nねている。 こうふんすると さかだち\nおそってくる てきを つきさすのだ。','medium',50,180,4),(779,778,'ばけのかわポケモン','しょうたいふめい。 ボロきれの\nなかみを みた とある がくしゃは\nきょうふの あまり ショックしした。','medium',50,45,4),(780,779,'はぎしりポケモン','あたまの とっきから サイコパワーを\nはなつとき とても みみざわりな\nはぎしりの おとが あたりに ひびく。','medium',70,80,4),(781,780,'ゆうゆうポケモン','こころやさしい せいしつ。 だが\nいちど いかりに かられると はげしい\nいぶきで あたりを はかい しつくす。','medium',50,70,4),(782,781,'もくずポケモン','でかい イカリを ブンブン ふりまわし\nホエルオーさえ いちげきで KO。\nみどりの モズクが ほんたいだ。','medium',50,25,-1),(783,782,'うろこポケモン','ウロコを たたき きもちを つたえる。\nジャラコの すむ こうざんでは\nきんぞくおんが こだまする。','slow',50,45,4),(784,783,'うろこポケモン','おたけびと ともに えものに\nとびかかる。 ウロコの パンチは\nあいてを ズタズタに ひきさくぞ。','slow',50,45,4),(785,784,'うろこポケモン','遇到敵人便會敲響尾部的\n鱗片來威嚇對方。只會與\n不畏懼自己的強者戰鬥。','slow',50,45,4),(786,785,'とちがみポケモン','こうきしんおうせいな メレメレの\nまもりがみ。 かみなりぐもを よび\nいかずちを からだに ためこむ。','slow',50,3,-1),(787,786,'とちがみポケモン','むじゃきで ざんこくな アーカラの\nまもりがみ。 はなの かぐわしい\nかおりが エネルギーの みなもと。','slow',50,3,-1),(788,787,'とちがみポケモン','たいぼくを ひきぬき ブンブン\nふりまわす。 くさきを しげらせて\nそのエネルギーを きゅうしゅうする。','slow',50,3,-1),(789,788,'とちがみポケモン','ふかいきりで てきを まどわせ\nじめつさせる おそろしさを もつ。\nかいりゅうが エネルギーの みなもと。','slow',50,3,-1),(790,789,'せいうんポケモン','はかない ガスじょうの からだ。\nたいきの チリを あつめながら\nゆっくりと せいちょうしていく。','slow',0,45,-1),(791,790,'げんしせいポケモン','しんだように まったく うごかないが\nふれると ほのかに あたたかい。\nおおむかしは ほしのマユと よばれた。','slow',0,45,-1),(792,791,'にちりんポケモン','べつせかいに すむと いわれる。\nぜんしんから はげしいひかりを はなち\nやみよも まひるのように てらすのだ。','slow',0,45,-1),(793,792,'がちりんポケモン','Si dice che viva in un altro mondo.\nAssorbe la luce facendo calare le tenebre anche\nsulle giornate più luminose.','slow',0,45,-1),(794,793,'きせいポケモン','なぞに つつまれた UBの いっしゅ。\nまちゆく ひとが きせいされ\nあばれだす すがたが もくげきされた。','slow',0,45,-1),(795,794,'ぼうちょうポケモン','べつせかいから あらわれた UB。\nみずからの からだを みせつけてくるが\nじまんなのか いかくなのか ふめい。','slow',0,45,-1),(796,795,'えんびポケモン','きけんなUBの いっしゅ。 すさまじい\nそくどで だいちを しっそうする\nすがたが もくげき されている。','slow',0,45,-1),(797,796,'でんしょくポケモン','ぜんしんから すさまじい でんげきを\nほとばしらせる こうけいを もくげき。\nなぞの せいぶつ UBの いっしゅだ。','slow',0,45,-1),(798,797,'うちあげポケモン','ウルトラホールから あらわれた。\nこうそくで そらを とぶ すがたが\nもくげき された ウルトラビースト。','slow',0,45,-1),(799,798,'ばっとうポケモン','ウルトラホールから あらわれた UB。\nみずから てきを おそわないようだが\nするどい ぜんしんは きょうきだ。','slow',0,45,-1),(800,799,'あくじきポケモン','やまを くらい けずり ビルを\nのみこむ すがたが ほうこく された。\nウルトラビーストの いっしゅ。','slow',0,45,-1),(801,800,'プリズムポケモン','光似乎是牠的能量來源。\n毫無節制地不停發射雷射,\n性格非常凶暴。','slow',0,255,-1),(802,801,'じんぞうポケモン','500ねんいじょうまえに つくられた\nじんぞうポケモン。 ひとの ことばを\nりかいするが しゃべれない。','slow',0,3,-1),(803,802,'かげすみポケモン','かげのなかに ひそむことが でき\nひとまえに すがたを みせないので\nそのそんざいは まぼろし だった。','slow',0,3,-1),(804,803,'どくばりポケモン','いせかいに おいては たびだちの\nパートナーに えらばれるほど\nしたしまれている ウルトラビースト。','slow',0,45,-1),(805,804,'どくばりポケモン','たいないに すうひゃくリットルの\nどくえきを ためている。 UBと\nよばれる せいぶつの いっしゅ。','slow',0,45,-1),(806,805,'いしがきポケモン','ウルトラホールから しゅつげんした。\nふくすうの せいめいが つみあがり\n1ぴきを けいせいしている ようだ。','slow',0,30,-1),(807,806,'はなびポケモン','クネクネうごいて ひとに ちかづくと\nとつぜん あたまを ばくはつさせた。\nウルトラビーストの いっしゅらしい。','slow',0,30,-1),(808,807,'じんらいポケモン','りょうてあしの ツメを たいでんさせ\nあいてを やつざき。 かわされても\nとびちる でんげきで かんでんさせる。','slow',0,3,-1),(809,808,'ナットポケモン','とろりと とけた はがねの からだ。\nちちゅうの てつぶんや きんぞくを\nとかして きゅうしゅうする。','slow',0,3,-1),(810,809,'ナットポケモン','てつを うみだす ちからを もつと\nあがめられていた。 3000ねんの\nときを へて なぜか よみがえった。','slow',0,3,-1),(811,810,'こざるポケモン','とくべつな スティックで リズムを\nきざむと くさばなを げんきにする\nパワーが おんぱになって ひろがる。','medium-slow',50,45,1),(812,811,'ビートポケモン','2ほんの スティックで はげしい\nビートを きざめる バチンキーほど\nなかまたちの そんけいを あつめる。','medium-slow',50,45,1),(813,812,'ドラマーポケモン','とくべつな きりかぶの パワーを\nドラミングで コントロール。\nねっこを あやつって たたかう。','medium-slow',50,45,1),(814,813,'うさぎポケモン','はしりまわって たいおんを あげると\nほのおエネルギーが からだを めぐり\nほんらいの ちからを はっきできる。','medium-slow',50,45,1),(815,814,'うさぎポケモン','ふかふかの たいもうで さむさに\nつよくなり さらに こうおんの\nほのおわざを だせるようになった。','medium-slow',50,45,1),(816,815,'ストライカーポケモン','こいしを リフティングして ほのおの\nサッカーボールを つくる。 するどい\nシュートで あいてを もやす。','medium-slow',50,45,1),(817,816,'みずとかげポケモン','おびえると タマネギ100コぶんの\nさいるいせいぶんを もつ なみだを\nながして もらいなき させる。','medium-slow',50,45,1),(818,817,'みずとかげポケモン','ての ひらから でる すいぶんを\nまるめて つくった みずの たまを\nつかい ずのうせんを くりひろげる。','medium-slow',50,45,1),(819,818,'エージェントポケモン','たさいな きのうを かくしもつ。\nゆびから みずを ふんしゃして\nせなかの ひまくで かぜに のる。','medium-slow',50,45,1),(820,819,'ほおばりポケモン','ガラルの いたるところに いる。\nさゆうの ほっぺに きのみを\nたくわえていないと ふあん。','medium',50,255,4),(821,820,'よくばりポケモン','Sus incisivos, de fuerza y dureza extraordinarias,\nle permiten mordisquear incluso las bayas más\nduras. Es un Pokémon muy común en Galar.','medium',50,90,4),(822,821,'ことりポケモン','どんな きょうてきにも いどみかかる\nゆうかんな せいしつ。 かえりうちに\nあいながらも きたえられていく。','medium-slow',50,255,4),(823,822,'カラスポケモン','あしで こいしを つかんで なげたり\nロープを てきに まきつけるなど\nどうぐを あつかう ちえを もつ。','medium-slow',50,120,4),(824,823,'カラスポケモン','ガラルちほうの そらでは てきなし。\nくろびかりする はがねの すがたは\nあいてを いあつし おそれさせる。','medium-slow',50,45,4),(825,824,'ようちゅうポケモン','いつも せっせと じょうほうを\nあつめているので かしこい。\nただし ちからは いまいちだ。','medium',50,255,4),(826,825,'レドームポケモン','ほぼ うごかないが いきている。\nのまずくわずで からに こもるうち\nちょうのうりょくに めざめたらしい。','medium',50,120,4),(827,826,'ななほしポケモン','かしこい ポケモンとして ゆうめい。\nおおきな のうみそは きょうりょくな\nサイコパワーを もつ あかし。','medium',50,45,4),(828,827,'きつねポケモン','ほかの ポケモンが みつけた エサを\nかすめて くらしている。 ふかふかの\nにくきゅうは あしおとを たてない。','fast',50,255,4),(829,828,'きつねポケモン','ねらった エモノは こっそり\nマーキング。 においを たどって\nゆだん したころ ぬすみに くるぞ。','fast',50,127,4),(830,829,'はなかざりポケモン','いっぽんあしを じめんに さして\nひのひかりを たっぷり あびると\nはなびらが あざやかに いろづく。','medium',50,190,4),(831,830,'わたかざりポケモン','わたげの タネは えいようまんてん。\nかぜに のせて とばして くさきや\nポケモンたちを げんきにさせる。','medium',50,75,4),(832,831,'ひつじポケモン','パーマの かかった たいもうは\nたかい クッションせいが ある。\nがけから おちても へっちゃら。','medium',50,255,4),(833,832,'ひつじポケモン','だんりょくの ある けで おった\nカーペットは トランポリンみたいで\nのれば ピョンピョン はねるのだ。','medium',50,127,4),(834,833,'くいつきポケモン','めのまえの ものに すぐに かみつく\nしゅうせい。 はえかけの まえばが\nかゆいので かみついてしまうらしい。','medium',50,255,4),(835,834,'かみつきポケモン','きょうぼうな せいしつ。 てつぼうを\nかみちぎる ほどの アゴの ちからで\nえものに ばくりと かみつく。','medium',50,75,4),(836,835,'こいぬポケモン','はしる ときに しっぽの ねもとから\nでんきを うみだす。 ガラルでは\nぼくようけん として にんき。','fast',50,255,4),(837,836,'いぬポケモン','でんきを つくって あしに おくり\nはしりを アシスト。 みっかみばん\nやすまず はしれるのだ。','fast',50,45,4),(838,837,'せきたんポケモン','およそ400ねんまえに たんこうで\nみつかった。 からだの ほとんどが\nせきたんと おなじ せいぶん。','medium-slow',50,255,4),(839,838,'せきたんポケモン','たいないで せきたんを つくりだす。\nむかしの ガラルでは おとした\nせきたんを せいかつに りようした。','medium-slow',50,120,4),(840,839,'せきたんポケモン','平时性情温和,但在人类\n破坏矿山时会大发雷霆,\n用1500度的大火将他们烧尽。','medium-slow',50,45,4),(841,840,'りんごぐらしポケモン','いっしょう りんごの なかで くらし\nてんてきの とりポケモンに であうと\nりんごの ふりをして みをまもる。','slow-then-very-fast',50,255,4),(842,841,'りんごはねポケモン','すっぱい りんごを たべて しんか。\nやけどする ほど きょうさんせいの\nえきたいを ほほぶくろに ためる。','slow-then-very-fast',50,45,4),(843,842,'りんごじるポケモン','あまい りんごを たべて しんか。\nからだから あまい においを だして\nエサの むしポケモンを ひきよせる。','slow-then-very-fast',50,45,4),(844,843,'すなへびポケモン','あなを ほりながら たべた すなを\nくびの ふくろに ためている。\n8キロもの すなが はいるのだ。','medium',50,255,4),(845,844,'すなへびポケモン','ぜんしんを ちぢめ 100キロの\nすなを はなの あなから ふんしゃ。\nすなが ないと よわきに なるぞ。','medium',50,120,4),(846,845,'うのみポケモン','あいてを いちげきで うちまかすほど\nパワフルだが わすれっぽいので\nたたかっている あいてを わすれる。','medium',50,45,4),(847,846,'とつげきポケモン','するどく とがった あごが じまん。\nすこしでも うごくものを みつけると\nいっちょくせんに とつげきする。','slow',50,255,4),(848,847,'くしざしポケモン','やりの ように とがった あごは\nはがねの かたさ。 その みは\nおどろくほど おいしい らしい。','slow',50,60,4),(849,848,'あかごポケモン','たいないの どくぶくろに ためた\nどくそを ひふから ぶんぴつ。\nさわると ピリピリと しびれる。','medium-slow',50,75,4),(850,849,'パンクポケモン','むねの とっきを かきむしり\nでんきを おこすとき あたりに\nギターのような おとが ひびく。','medium-slow',50,45,4),(851,850,'はつねつポケモン','からだに ためた かねんガスで\nはつねつ。 とくに おなかの\nきいろい ぶぶんが あついのだ。','medium',50,190,4),(852,851,'はつねつポケモン','はつねつじの たいおんは およそ\n800ど。 からだを ムチのように\nしならせて とびかかってくるぞ。','medium',50,75,4),(853,852,'だだっこポケモン','えさを もとめ ちじょうに あがる。\nこうきしんおうせいで めにしたものは\nとりあえず しょくしゅで なぐる。','medium-slow',50,180,4),(854,853,'じゅうじゅつポケモン','ぜんしんが きんにくの かたまり。\nしょくしゅを つかって くりだす\nしめわざの いりょくは すさまじい。','medium-slow',50,45,4),(855,854,'こうちゃポケモン','のこされ ひえきった こうちゃに\nさみしがりやな たましいが やどり\nポケモンに なったと いわれている。','medium',50,120,-1),(856,855,'こうちゃポケモン','アンティークの ポットに すみつく。\nほとんどが がんさくだが ごくまれに\nしんさくが みつかる ことも。','medium',50,60,-1),(857,856,'おだやかポケモン','あたまの とっきで せいぶつの\nきもちを かんじとる。 おだやかな\nものにしか こころを ひらかない。','slow',50,235,8),(858,857,'せいしゅくポケモン','つよい かんじょうを もつ ものは\nそれが だれであれ だまらせる。\nそのしゅだんは じつに らんぼう。','slow',50,120,8),(859,858,'せいじゃくポケモン','ずつうになるほどの サイコパワーを\nしゅういに はなって ほかの\nせいぶつを とおざけているのだ。','slow',50,45,8),(860,859,'いじわるポケモン','ひとや ポケモンが いやがる ときに\nはっする マイナスエネルギーを\nはなから すいこみ げんきになる。','medium',50,255,0),(861,860,'しょうわるポケモン','どげざして あやまる ふりをして\nやりのように とがった うしろがみで\nつきさしてくる せんぽうを つかう。','medium',50,120,0),(862,861,'ビルドアップポケモン','かみのけを ぜんしんに まきつけると\nきんりょくが アップ。 カイリキーを\nねじふせる パワーを はっきする。','medium',50,45,0),(863,862,'ていしポケモン','すさまじい せいりょうを もつ。\nシャウトとともに いかくするさまは\nブロッキングと よばれている。','medium',50,45,4),(864,863,'バイキングポケモン','あたまの たいもうが こうしつかして\nてつの ヘルメットのように なった。\nとても こうせんてきな せいしつ。','medium',50,90,4),(865,864,'さんごポケモン','れいりょくが たかまり カラから\nときはなたれた。 れいたいで\nかくの たましいを まもっている。','fast',50,30,6),(866,865,'かるがもポケモン','れきせんを いきぬいた ものが\nこのすがたに しんかする。 ネギが\nかれるとき せんじょうを さる。','medium',50,45,4),(867,866,'コメディアンポケモン','タップダンスの たつじん。\nこおりで できた ステッキを ふり\nかろやかな ステップを ひろうする。','medium',50,45,4),(868,867,'おんねんポケモン','つよい のろいを こめて かかれた\nこだいの えが デスマスの\nたましいを とりこみ うごきだした。','medium',50,90,4),(869,868,'クリームポケモン','クリームで できた からだを もつ。\nくうきちゅうの あまい かおりの\nせいぶんが あつまって うまれた。','medium',50,200,8),(870,869,'クリームポケモン','しんらいする トレーナーには\nクリームで デコレーションした\nきのみを ふるまって くれるのだ。','medium',50,100,8),(871,870,'じんけいポケモン','ヘイチョーと よばれる 1ぴきと\nヘイと よばれる 5ひきで ひとつ。\nヘイチョーの めいれいは ぜったい。','medium',50,45,-1),(872,871,'うにポケモン','トゲの さきから でんきを はなつ。\nするどい はで いわに ついた\nかいそうを こそいで たべる。','medium',50,75,4),(873,872,'いもむしポケモン','れいきの まざった いとを はく。\nいとで からだを えだに まきつけ\nつららの ふりをして ねむるのだ。','medium',50,190,4),(874,873,'こおりがポケモン','はねの おんどは マイナス180ど。\nれいきを こめた りんぷんを ゆきの\nように ふりまき のやまを とぶ。','medium',50,75,4),(875,874,'きょせきポケモン','だいそうげんの なかで たたずみ\nひの かたむきを ながめて くらす。\nダイナミックな けりわざが とくい。','slow',50,60,4),(876,875,'ペンギンポケモン','とても さむい ばしょから ながれ\nながされ やってきた。 こおりで\nかおを つねに ひやして いるのだ。','slow',50,60,4),(877,876,'かんじょうポケモン','あたまの ツノで あいての きもちを\nかんじとる。 オスは じゅうしゃの\nように あるじのそばで せわをやく。','fast',140,30,4),(878,877,'にめんポケモン','いつも おなかを すかせている。\nポケットの ような ふくろに いれた\nタネを たべて でんきを つくる。','medium',50,180,4),(879,878,'どうぞうポケモン','5トンの にもつを もっても\nへいきな ちからもち ポケモン。\nはなを つかって つちを ほる。','medium',50,190,4),(880,879,'どうぞうポケモン','みどりのひふは みずにも つよい。\nむかし ほかのとちから やってきて\nひとと いっしょに はたらいた。','medium',50,90,4),(881,880,'かせきポケモン','こだいでは たくましい かはんしんで\nむてきだったが エサの しょくぶつを\nたべつくしてしまい ぜつめつした。','slow',50,45,-1),(882,881,'かせきポケモン','こおりづけの じょうはんしんが\nふるえると でんきが つくられる。\nあるくことが ひじょうに にがて。','slow',50,45,-1),(883,882,'かせきポケモン','ずばぬけた きゃくりょくと アゴの\nちからで こだいでは むてきだったが\nえものを とりつくし ぜつめつした。','slow',50,45,-1),(884,883,'かせきポケモン','しゅういを こおりつかせて えものを\nつかまえるが くちが あたまの\nうえに あるので たべづらい。','slow',50,45,-1),(885,884,'ごうきんポケモン','みがきあげた きんぞくの ような\nからだは かるいうえに かたいが\nさびやすいのが けってんなのだ。','medium',50,45,4),(886,885,'うらめしポケモン','こだいの うみで くらしていた。\nゴーストポケモンとして よみがえり\nかつての すみかを さまよっている。','slow',50,45,4),(887,886,'せわやくポケモン','ひこう そくどは じそく200キロ。\nドラメシヤと いっしょに たたかい\nぶじに しんかするまで せわをする。','slow',50,45,4),(888,887,'ステルスポケモン','ツノの あなに ドラメシヤを いれて\nくらす。 たたかいになると マッハの\nスピードで ドラメシヤを とばす。','slow',50,45,4),(889,888,'つわものポケモン','でんせつの えいゆうと よばれる\nポケモン。 きんぞくを とりこみ\nぶぐに へんかさせ たたかう。','slow',0,10,-1),(890,889,'つわものポケモン','ひとのおうと ちからを あわせ\nガラルを すくった ポケモン。\nきんぞくを とりこみ たたかう。','slow',0,10,-1),(891,890,'キョダイポケモン','むねの コアが ガラルちほうの\nだいちから わきだす エネルギーを\nきゅうしゅうして かつどうしている。','slow',0,255,-1),(892,891,'けんぽうポケモン','きびしい たんれんを つみ わざを\nみがく。 たいとくした わざによって\nしんかしたときに すがたが かわる。','slow',50,3,1),(893,892,'けんぽうポケモン','いちげきひっさつが しんじょう。\nあいての ふところに とびこみ\nきたえられた こぶしを たたきこむ。','slow',50,3,1),(894,893,'わるざるポケモン','むれを つくり みつりんで くらす。\nとても こうげきてきで もりにすむ\nポケモンたちから おそれられている。','slow',0,3,-1),(895,894,'エレクトロンポケモン','でんきエネルギーの かたまり。\nからだの リングを はずすと ひめた\nちからが ときはなたれるらしい。','slow',35,3,-1),(896,895,'りゅうぎょくポケモン','うでの かたちは こだいの ドラゴン\nポケモンの あたまという がくせつも\nあるが しょうめいされていない。','slow',35,3,-1),(897,896,'あばれうまポケモン','ひづめから きょうりょくな れいきを\nはなつ。 ほしいものは なんでも\nちからずくで うばう あばれんぼう。','slow',35,3,-1),(898,897,'しゅんばポケモン','しかく いがいの ごかんを つかい\nようすを さぐる。 けられたものは\nたましいを ぬかれてしまうという。','slow',35,3,-1),(899,898,'キングポケモン','いやしと めぐみの ちからを もつ\nじあいに みちた ポケモン。 はるか\nむかし ガラルに くんりんしていた。','slow',100,3,-1),(900,899,'おおツノポケモン','The black orbs shine with an uncanny light when the Pokémon is\nerecting invisible barriers. The fur shed from its beard retains\nheat well and is a highly useful material for winter clothing.','slow',NULL,135,4),(901,900,'まさかりポケモン','A violent creature that fells towering trees with its crude axes\nand shields itself with hard stone. If one should chance upon\nthis Pokémon in the wilds, one\'s only recourse is to flee.','medium',NULL,115,4),(902,901,'でいたんポケモン','I believe it was Hisui\'s swampy terrain that gave Ursaluna its\nburly physique and newfound capacity to manipulate peat\nat will.','medium',NULL,75,4),(903,902,'おおうおポケモン','Clads itself in the souls of comrades that perished before\nfulfilling their goals of journeying upstream. No other species\nthroughout all Hisui\'s rivers is Basculegion\'s equal.','medium',NULL,135,4),(904,903,'クライミングポケモン','Because of Sneasler\'s virulent poison and daunting physical\nprowess, no other species could hope to best it on the frozen\nhighlands. Preferring solitude, this species does not form packs.','medium-slow',NULL,135,4),(905,904,'けんざんポケモン','Its lancelike spikes and savage temperament have earned it the\nnickname ”sea fiend.” It slurps up poison to nourish itself.','medium',NULL,135,4),(906,905,'あいぞうポケモン','When it flies to this land from across the sea, the bitter winter\ncomes to an end. According to legend, this Pokémon\'s love\ngives rise to the budding of fresh life across Hisui.','slow',NULL,3,8),(907,906,'くさねこポケモン','Its fluffy fur is similar in composition to plants. This Pokémon frequently washes its face to keep it from drying out.','medium-slow',50,45,1),(908,907,'くさねこポケモン','Floragato deftly wields the vine hidden beneath its long fur, slamming the hard flower bud against its opponents.','medium-slow',50,45,1),(909,908,'マジシャンポケモン','This Pokémon uses the reflective fur lining its cape to camouflage the stem of its flower, creating the illusion that the flower is floating.','medium-slow',50,45,1),(910,909,'ほのおワニポケモン','It lies on warm rocks and uses the heat absorbed by its square-shaped scales to create fire energy.','medium-slow',50,45,1),(911,910,'ほのおワニポケモン','The combination of Crocalor’s fire energy and overflowing vitality has caused an egg-shaped fireball to appear on the Pokémon’s head.','medium-slow',50,45,1),(912,911,'シンガーポケモン','The fiery bird changes shape when Skeledirge sings. Rumor has it that the bird was born when the fireball on Skeledirge’s head gained a soul.','medium-slow',50,45,1),(913,912,'こがもポケモン','This Pokémon migrated to Paldea from distant lands long ago. The gel secreted by its feathers repels water and grime.\"','medium-slow',50,45,1),(914,913,'レッスンポケモン','These Pokémon constantly run through shallow waters to train their legs, then compete with each other to see which of them kicks most gracefully.','medium-slow',50,45,1),(915,914,'ダンサーポケモン','A single kick from a Quaquaval can send a truck rolling. This Pokémon uses its powerful legs to perform striking dances from far-off lands.','medium-slow',50,45,1),(916,915,'ぶたポケモン','It searches for food all day. It possesses a keen sense of smell but doesn’t use it for anything other than foraging.','medium',50,255,4),(917,916,'ぶたポケモン','Oinkologne is proud of its fine, glossy skin. It emits a concentrated scent from the tip of its tail.','medium',50,100,0),(918,917,'Fadenkugel','The ball of threads wrapped around its body is elastic enough to deflect the scythes of Scyther, this Pokémon’s natural enemy.','slow-then-very-fast',50,255,4),(919,918,'トラップポケモン','It clings to branches and ceilings using its threads and moves without a sound. It takes out its prey before the prey even notices it.','slow-then-very-fast',50,120,4),(920,919,'バッタポケモン','It has its third set of legs folded up. When it’s in a tough spot, this Pokémon jumps over 30 feet using the strength of its legs.','medium',20,190,4),(921,920,'バッタポケモン','When it decides to fight all out, it stands on its previously folded legs to enter Showdown Mode. It neutralizes its enemies in short order.','medium',0,30,4),(922,921,'ねずみポケモン','It has underdeveloped electric sacs on its cheeks. These sacs can produce electricity only if Pawmi rubs them furiously with the pads on its forepaws.','medium',50,190,4),(923,922,'ねずみポケモン','When its group is attacked, Pawmo is the first to leap into battle, defeating enemies with a fighting technique that utilizes electric shocks.','medium',50,80,4),(924,923,'てあてポケモン','This Pokémon normally is slow to react, but once it enters battle, it will strike down its enemies with lightning-fast movements.','medium',50,45,4),(925,924,'カップルポケモン','Exhibiting great teamwork, they use their incisors to cut pieces out of any material that might be useful for a nest, then make off with them.','fast',50,150,-1),(926,925,'ファミリーポケモン','The two little ones just appeared one day. The group might be a family of related Pokémon, but nobody knows for sure.','fast',50,75,-1),(927,926,'こいぬポケモン','This Pokémon is smooth and moist to the touch. Yeast in Fidough’s breath induces fermentation in the Pokémon’s vicinity.','medium-slow',50,190,4),(928,927,'いぬポケモン','The pleasant aroma that emanates from this Pokémon’s body helps wheat grow, so Dachsbun has been treasured by farming villages.','medium-slow',50,90,4),(929,928,'オリーブポケモン','It protects itself from enemies by emitting oil from the fruit on its head. This oil is bitter and astringent enough to make someone flinch.','medium-slow',50,255,4),(930,929,'オリーブポケモン','Dolliv shares its tasty, fresh-scented oil with others. This species has coexisted with humans since times long gone.','medium-slow',50,120,4),(931,930,'オリーブポケモン','This calm Pokémon is very compassionate. It will share its delicious, nutrient-rich oil with weakened Pokémon.','medium-slow',50,45,4),(932,931,'インコポケモン','These Pokémon prefer to live in cities. They form flocks based on the color of their feathers, and they fight over territory.','slow-then-very-fast',50,190,4),(933,932,'がんえんポケモン','It was born in a layer of rock salt deep under the earth. This species was particularly treasured in the old days, as they would share precious salt.','medium-slow',50,255,4),(934,933,'がんえんポケモン','This Pokémon dry cures its prey by spraying salt over them. The curing process steals away the water in the prey’s body.','medium-slow',50,120,4),(935,934,'がんえんポケモン','Garganacl will rub its fingertips together and sprinkle injured Pokémon with salt. Even severe wounds will promptly heal afterward.','medium-slow',50,45,4),(936,935,'ひのこポケモン','Burnt charcoal came to life and became a Pokémon. Possessing a fiery fighting spirit, Charcadet will battle even tough opponents.','slow',50,90,4),(937,936,'ひのせんしポケモン','Armarouge evolved through the use of a set of armor that belonged to a distinguished warrior. This Pokémon is incredibly loyal.','slow',20,25,4),(938,937,'ひのけんしポケモン','The fiery blades on its arms burn fiercely with the lingering resentment of a sword wielder who fell before accomplishing their goal.','slow',20,25,4),(939,938,'でんきおたまポケモン','Tadbulb shakes its tail to generate electricity. If it senses danger, it will make its head blink on and off to alert its allies.','medium',50,190,4),(940,939,'でんきがえるポケモン','When this Pokémon expands and contracts its wobbly body, the belly-button dynamo in its stomach produces a huge amount of electricity.','medium',50,50,4),(941,940,'うみつばめポケモン','When its wings catch the wind, the bones within produce electricity. This Pokémon dives into the ocean, catching prey by electrocuting them.','medium-slow',50,180,4),(942,941,'ぐんかんどりポケモン','Kilowattrel inflates its throat sac to amplify its electricity. By riding the wind, this Pokémon can fly over 430 miles in a day.','medium-slow',50,90,4),(943,942,'わかぞうポケモン','It always scowls in an attempt to make opponents take it seriously, but even crying children will burst into laughter when they see Maschiff’s face.','medium-slow',50,150,4),(944,943,'おやぶんポケモン','This Pokémon can store energy in its large dewlap. Mabosstiff unleashes this energy all at once to blow away enemies.','medium-slow',50,75,4),(945,944,'どくねずみポケモン','Though usually a mellow Pokémon, it will sink its sharp, poison-soaked front teeth into any that anger it, causing paralysis in the object of its ire.','medium-slow',50,190,4),(946,945,'どくざるポケモン','The color of the poisonous saliva depends on what the Pokémon eats. Grafaiai covers its fingers in its saliva and draws patterns on trees in forests.','medium-slow',50,90,4),(947,946,'ころがりぐさポケモン','A soul unable to move on to the afterlife was blown around by the wind until it got tangled up with dried grass and became a Pokémon.','medium',50,190,4),(948,947,'ころがりぐさポケモン','It will open the branches of its head to envelop its prey. Once it absorbs all the life energy it needs, it expels the prey and discards it.','medium',50,45,4),(949,948,'きくらげポケモン','Toedscool lives in muggy forests. The flaps that fall from its body are chewy and very delicious.','medium-slow',50,190,4),(950,949,'きくらげポケモン','These Pokémon gather into groups and form colonies deep within forests. They absolutely hate it when strangers approach.','medium-slow',50,90,4),(951,950,'まちぶせポケモン','Klawf hangs upside-down from cliffs, waiting for prey. But Klawf can’t remain in this position for long because its blood rushes to its head.','medium',50,120,4),(952,951,'ハバネロポケモン','The more sunlight this Pokémon bathes in, the more spicy chemicals are produced by its body, and thus the spicier its moves become.','medium',50,190,4),(953,952,'ハバネロポケモン','The red head converts spicy chemicals into fire energy and blasts the surrounding area with a super spicy stream of flame.','medium',50,75,4),(954,953,'ころがしポケモン','This Pokémon creates a mud ball by mixing sand and dirt with psychic energy. It treasures its mud ball more than its own life.','fast',50,190,4),(955,954,'ころがしポケモン','The body that supports the ball barely moves. Therefore, it is thought that the true body of this Pokémon is actually inside the ball.','fast',50,45,4),(956,955,'フリルポケモン','Flittle’s toes levitate about half an inch above the ground because of the psychic power emitted from the frills on the Pokémon’s belly.','medium-slow',50,120,4),(957,956,'ダチョウポケモン','It immobilizes opponents by bathing them in psychic power from its large eyes. Despite its appearance, it has a vicious temperament.','medium-slow',50,60,4),(958,957,'かなうちポケモン','It swings its handmade hammer around to protect itself, but the hammer is often stolen by Pokémon that eat metal.','medium-slow',50,190,8),(959,958,'ハンマーポケモン','This Pokémon will attack groups of Pawniard and Bisharp, gathering metal from them in order to create a large and sturdy hammer.','medium-slow',50,90,8),(960,959,'ハンマーポケモン','This intelligent Pokémon has a very daring disposition. It knocks rocks into the sky with its hammer, aiming for flying Corviknight.','medium-slow',50,45,8),(961,960,'あなごポケモン','This Pokémon can pick up the scent of a Veluza just over 65 feet away and will hide itself in the sand.','medium',50,255,4),(962,961,'あなごポケモン','It has a vicious temperament, contrary to what its appearance may suggest. It wraps its long bodies around prey, then drags the prey into its den.','medium',50,50,4),(963,962,'おとしものポケモン','It gathers things up in an apron made from shed feathers added to the Pokémon’s chest feathers, then drops those things from high places for fun.','slow',50,25,4),(964,963,'イルカポケモン','It likes playing with others of its kind using the water ring on its tail. It uses ultrasonic waves to sense the emotions of other living creatures.','slow',50,200,4),(965,964,'イルカポケモン','This Pokémon changes its appearance if it hears its allies calling for help. Palafin will never show anybody its moment of transformation.','slow',50,45,4),(966,965,'たんきとうポケモン','It is said that this Pokémon was born when an unknown poison Pokémon entered and inspirited an engine left at a scrap-processing factory.','medium',50,190,4),(967,966,'たきとうポケモン','It creates a gas out of poison and minerals from rocks. It then detonates the gas in its cylinders—now numbering eight—to generate energy.','medium',50,75,4),(968,967,'ライドポケモン','Apparently Cyclizar has been allowing people to ride on its back since ancient times. Depictions of this have been found in 10,000-year-old murals.','medium-slow',50,190,4),(969,968,'ミミズポケモン','When attacked, this Pokémon will wield the tendrils on its body like fists and pelt the opponent with a storm of punches.','slow',50,25,4),(970,969,'こうせきポケモン','It absorbs nutrients from cave walls. The petals it wears are made of crystallized poison.','medium-slow',50,70,4),(971,970,'こうせきポケモン','When this Pokémon detects danger, it will open up its crystalline petals and fire beams from its conical body.','medium-slow',50,25,4),(972,971,'おばけいぬポケモン','It is said that a dog Pokémon that died in the wild without ever interacting with a human was reborn as this Pokémon.','medium-slow',50,120,4),(973,972,'おばけいぬポケモン','Houndstone spends most of its time sleeping in graveyards. Among all the dog Pokémon, this one is most loyal to its master.','medium-slow',50,60,4),(974,973,'シンクロポケモン','This Pokémon apparently ties the base of its neck into a knot so that energy stored in its belly does not escape from its beak.','medium-slow',50,100,4),(975,974,'りくくじらポケモン','This species left the ocean and began living on land a very long time ago. It seems to be closely related to Wailmer.','medium-slow',50,150,4),(976,975,'りくくじらポケモン','This Pokémon wanders around snowy, icy areas. It protects its body with powerful muscles and a thick layer of fat under its skin.','medium-slow',50,50,4),(977,976,'きりはなしポケモン','When Veluza discards unnecessary flesh, its mind becomes honed and its psychic power increases. The spare flesh has a mild but delicious flavor.','fast',50,100,4),(978,977,'おおなまずポケモン','This Pokémon is a glutton, but it’s bad at getting food. It teams up with a Tatsugiri to catch prey.','slow',50,25,4),(979,978,'ぎたいポケモン','This is a small dragon Pokémon. It lives inside the mouth of Dondozo to protect itself from enemies on the outside.','medium-slow',50,100,4),(980,979,'ふんどざるポケモン','When its anger rose beyond a critical point, this Pokémon gained power that is unfettered by the limits of its physical body.','medium',50,45,4),(981,980,'とげうおポケモン','When attacked, this Pokémon will retaliate by sticking thick spines out from its body. It’s a risky move that puts everything on the line.','medium',50,90,4),(982,981,'くびながポケモン','Now that the brain waves from the head and tail are synced up, the psychic power of this Pokémon is 10 times stronger than Girafarig’s.','medium',50,45,4),(983,982,'つちへびポケモン','This Pokémon uses its hard tail to make its nest by boring holes into bedrock deep underground. The nest can reach lengths of over six miles.','medium',50,45,4),(984,983,'だいとうポケモン','Only a Bisharp that stands above all others in its vast army can evolve into Kingambit.','medium',50,25,4),(985,984,'パラドックスポケモン','Sightings of this Pokémon have occurred in recent years. The name Great Tusk was taken from a creature listed in a certain book.','slow',0,30,-1),(986,985,'パラドックスポケモン','There has been only one reported sighting of this Pokémon. It resembles a mysterious creature depicted in an old expedition journal.','slow',0,50,-1),(987,986,'パラドックスポケモン','It is possible that the creature listed as Brute Bonnet in a certain book could actually be this Pokémon.','slow',0,50,-1),(988,987,'パラドックスポケモン','This Pokémon has characteristics similar to those of Flutter Mane, a creature mentioned in a certain book.','slow',0,30,-1),(989,988,'パラドックスポケモン','This mysterious Pokémon has some similarities to a creature that an old book introduced as Slither Wing.','slow',0,30,-1),(990,989,'パラドックスポケモン','No records exist of this Pokémon being caught. Data is lacking, but the Pokémon’s traits match up with a creature shown in an expedition journal.','slow',0,30,-1),(991,990,'パラドックスポケモン','This Pokémon closely resembles a scientific weapon that a paranormal magazine claimed was sent to this planet by aliens.','slow',0,30,-1),(992,991,'パラドックスポケモン','Its shape is similar to a robot featured in a paranormal magazine article. The robot was said to have been created by an ancient civilization.','slow',0,50,-1),(993,992,'パラドックスポケモン','It is very similar to a cyborg covered exclusively by a paranormal magazine. The cyborg was said to be the modified form of a certain athlete.','slow',0,50,-1),(994,993,'パラドックスポケモン','It resembles a certain Pokémon introduced in a paranormal magazine, described as the offspring of a Hydreigon that fell in love with a robot.','slow',0,30,-1),(995,994,'パラドックスポケモン','This Pokémon resembles an unknown object described in a paranormal magazine as a UFO sent to observe humanity.','slow',0,30,-1),(996,995,'パラドックスポケモン','It has some similarities to a Pokémon introduced in a dubious magazine as a Tyranitar from one billion years into the future.','slow',0,30,-1),(997,996,'こおりビレポケモン','Frigibax absorbs heat through its dorsal fin and converts the heat into ice energy. The higher the temperature, the more energy Frigibax stores.','slow',50,45,4),(998,997,'こおりビレポケモン','Arctibax freezes the air around it, protecting its face with an ice mask and turning its dorsal fin into a blade of ice.','slow',50,25,4),(999,998,'ひょうりゅうポケモン','This Pokémon blasts cryogenic air out from its mouth. This air can instantly freeze even liquid-hot lava.','slow',50,10,4),(1000,999,'たからばこポケモン','This Pokémon was born inside a treasure chest about 1,500 years ago. It sucks the life-force out of scoundrels who try to steal the treasure.','slow',50,45,-1),(1001,1000,'たからものポケモン','Its body seems to be made up of 1,000 coins. This Pokémon gets along well with others and is quick to make friends with anybody.','slow',50,45,-1),(1002,1001,'さいやくポケモン','The grudge of a person punished for writing the king’s evil deeds upon wooden tablets has clad itself in dead leaves to become a Pokémon.','slow',0,6,-1),(1003,1002,'さいやくポケモン','This Pokémon can control 100 tons of fallen snow. It plays around innocently by leaping in and out of avalanches it has caused.','slow',0,6,-1),(1004,1003,'さいやくポケモン','The fear poured into an ancient ritual vessel has clad itself in rocks and dirt to become a Pokémon.','slow',0,6,-1),(1005,1004,'さいやくポケモン','It controls flames burning at over 5,400 degrees Fahrenheit. It casually swims through the sea of lava it creates by melting rock and sand.','slow',0,6,-1),(1006,1005,'パラドックスポケモン','It is possible that this is the creature listed as Roaring Moon in an expedition journal that still holds many mysteries.','slow',0,10,-1),(1007,1006,'パラドックスポケモン','It has some similarities to a mad scientist’s invention covered in a paranormal magazine.','slow',0,10,-1),(1008,1007,'パラドックスポケモン','This seems to be the Winged King mentioned in an old expedition journal. It was said to have split the land with its bare fists.','slow',0,3,-1),(1009,1008,'パラドックスポケモン','Much remains unknown about this creature. It resembles Cyclizar, but it is far more ruthless and powerful.','slow',0,3,-1),(1010,1009,'パラドックスポケモン','This ferocious creature is shrouded in mystery. It\'s named after an aquatic monster mentioned in an old expedition journal.','slow',0,5,-1),(1011,1010,'パラドックスポケモン','Many of its physical characteristics match those of a Virizion from the future that was covered in a paranormal magazine.','slow',0,5,-1); +/*!40000 ALTER TABLE `species` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `stats` +-- + +DROP TABLE IF EXISTS `stats`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `stats` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `pokemon_id` int(11) DEFAULT NULL, + `hp` int(11) DEFAULT NULL, + `attack` int(11) DEFAULT NULL, + `defense` int(11) DEFAULT NULL, + `sp_attack` int(11) DEFAULT NULL, + `sp_defense` int(11) DEFAULT NULL, + `speed` int(11) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `pokemon_id` (`pokemon_id`), + CONSTRAINT `stats_ibfk_1` FOREIGN KEY (`pokemon_id`) REFERENCES `pokemon` (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=1012 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `stats` +-- + +LOCK TABLES `stats` WRITE; +/*!40000 ALTER TABLE `stats` DISABLE KEYS */; +INSERT INTO `stats` VALUES (1,1,45,49,49,65,65,45),(2,1,45,49,49,65,65,45),(3,2,60,62,63,80,80,60),(4,3,80,82,83,100,100,80),(5,4,39,52,43,60,50,65),(6,5,58,64,58,80,65,80),(7,6,78,84,78,109,85,100),(8,7,44,48,65,50,64,43),(9,8,59,63,80,65,80,58),(10,9,79,83,100,85,105,78),(11,10,45,30,35,20,20,45),(12,11,50,20,55,25,25,30),(13,12,60,45,50,90,80,70),(14,13,40,35,30,20,20,50),(15,14,45,25,50,25,25,35),(16,15,65,90,40,45,80,75),(17,16,40,45,40,35,35,56),(18,17,63,60,55,50,50,71),(19,18,83,80,75,70,70,101),(20,19,30,56,35,25,35,72),(21,20,55,81,60,50,70,97),(22,21,40,60,30,31,31,70),(23,22,65,90,65,61,61,100),(24,23,35,60,44,40,54,55),(25,24,60,95,69,65,79,80),(26,25,35,55,40,50,50,90),(27,26,60,90,55,90,80,110),(28,27,50,75,85,20,30,40),(29,28,75,100,110,45,55,65),(30,29,55,47,52,40,40,41),(31,30,70,62,67,55,55,56),(32,31,90,92,87,75,85,76),(33,32,46,57,40,40,40,50),(34,33,61,72,57,55,55,65),(35,34,81,102,77,85,75,85),(36,35,70,45,48,60,65,35),(37,36,95,70,73,95,90,60),(38,37,38,41,40,50,65,65),(39,38,73,76,75,81,100,100),(40,39,115,45,20,45,25,20),(41,40,140,70,45,85,50,45),(42,41,40,45,35,30,40,55),(43,42,75,80,70,65,75,90),(44,43,45,50,55,75,65,30),(45,44,60,65,70,85,75,40),(46,45,75,80,85,110,90,50),(47,46,35,70,55,45,55,25),(48,47,60,95,80,60,80,30),(49,48,60,55,50,40,55,45),(50,49,70,65,60,90,75,90),(51,50,10,55,25,35,45,95),(52,51,35,100,50,50,70,120),(53,52,40,45,35,40,40,90),(54,53,65,70,60,65,65,115),(55,54,50,52,48,65,50,55),(56,55,80,82,78,95,80,85),(57,56,40,80,35,35,45,70),(58,57,65,105,60,60,70,95),(59,58,55,70,45,70,50,60),(60,59,90,110,80,100,80,95),(61,60,40,50,40,40,40,90),(62,61,65,65,65,50,50,90),(63,62,90,95,95,70,90,70),(64,63,25,20,15,105,55,90),(65,64,40,35,30,120,70,105),(66,65,55,50,45,135,95,120),(67,66,70,80,50,35,35,35),(68,67,80,100,70,50,60,45),(69,68,90,130,80,65,85,55),(70,69,50,75,35,70,30,40),(71,70,65,90,50,85,45,55),(72,71,80,105,65,100,70,70),(73,72,40,40,35,50,100,70),(74,73,80,70,65,80,120,100),(75,74,40,80,100,30,30,20),(76,75,55,95,115,45,45,35),(77,76,80,120,130,55,65,45),(78,77,50,85,55,65,65,90),(79,78,65,100,70,80,80,105),(80,79,90,65,65,40,40,15),(81,80,95,75,110,100,80,30),(82,81,25,35,70,95,55,45),(83,82,50,60,95,120,70,70),(84,83,52,90,55,58,62,60),(85,84,35,85,45,35,35,75),(86,85,60,110,70,60,60,110),(87,86,65,45,55,45,70,45),(88,87,90,70,80,70,95,70),(89,88,80,80,50,40,50,25),(90,89,105,105,75,65,100,50),(91,90,30,65,100,45,25,40),(92,91,50,95,180,85,45,70),(93,92,30,35,30,100,35,80),(94,93,45,50,45,115,55,95),(95,94,60,65,60,130,75,110),(96,95,35,45,160,30,45,70),(97,96,60,48,45,43,90,42),(98,97,85,73,70,73,115,67),(99,98,30,105,90,25,25,50),(100,99,55,130,115,50,50,75),(101,100,40,30,50,55,55,100),(102,101,60,50,70,80,80,150),(103,102,60,40,80,60,45,40),(104,103,95,95,85,125,75,55),(105,104,50,50,95,40,50,35),(106,105,60,80,110,50,80,45),(107,106,50,120,53,35,110,87),(108,107,50,105,79,35,110,76),(109,108,90,55,75,60,75,30),(110,109,40,65,95,60,45,35),(111,110,65,90,120,85,70,60),(112,111,80,85,95,30,30,25),(113,112,105,130,120,45,45,40),(114,113,250,5,5,35,105,50),(115,114,65,55,115,100,40,60),(116,115,105,95,80,40,80,90),(117,116,30,40,70,70,25,60),(118,117,55,65,95,95,45,85),(119,118,45,67,60,35,50,63),(120,119,80,92,65,65,80,68),(121,120,30,45,55,70,55,85),(122,121,60,75,85,100,85,115),(123,122,40,45,65,100,120,90),(124,123,70,110,80,55,80,105),(125,124,65,50,35,115,95,95),(126,125,65,83,57,95,85,105),(127,126,65,95,57,100,85,93),(128,127,65,125,100,55,70,85),(129,128,75,100,95,40,70,110),(130,129,20,10,55,15,20,80),(131,130,95,125,79,60,100,81),(132,131,130,85,80,85,95,60),(133,132,48,48,48,48,48,48),(134,133,55,55,50,45,65,55),(135,134,130,65,60,110,95,65),(136,135,65,65,60,110,95,130),(137,136,65,130,60,95,110,65),(138,137,65,60,70,85,75,40),(139,138,35,40,100,90,55,35),(140,139,70,60,125,115,70,55),(141,140,30,80,90,55,45,55),(142,141,60,115,105,65,70,80),(143,142,80,105,65,60,75,130),(144,143,160,110,65,65,110,30),(145,144,90,85,100,95,125,85),(146,145,90,90,85,125,90,100),(147,146,90,100,90,125,85,90),(148,147,41,64,45,50,50,50),(149,148,61,84,65,70,70,70),(150,149,91,134,95,100,100,80),(151,150,106,110,90,154,90,130),(152,151,100,100,100,100,100,100),(153,152,45,49,65,49,65,45),(154,153,60,62,80,63,80,60),(155,154,80,82,100,83,100,80),(156,155,39,52,43,60,50,65),(157,156,58,64,58,80,65,80),(158,157,78,84,78,109,85,100),(159,158,50,65,64,44,48,43),(160,159,65,80,80,59,63,58),(161,160,85,105,100,79,83,78),(162,161,35,46,34,35,45,20),(163,162,85,76,64,45,55,90),(164,163,60,30,30,36,56,50),(165,164,100,50,50,86,96,70),(166,165,40,20,30,40,80,55),(167,166,55,35,50,55,110,85),(168,167,40,60,40,40,40,30),(169,168,70,90,70,60,70,40),(170,169,85,90,80,70,80,130),(171,170,75,38,38,56,56,67),(172,171,125,58,58,76,76,67),(173,172,20,40,15,35,35,60),(174,173,50,25,28,45,55,15),(175,174,90,30,15,40,20,15),(176,175,35,20,65,40,65,20),(177,176,55,40,85,80,105,40),(178,177,40,50,45,70,45,70),(179,178,65,75,70,95,70,95),(180,179,55,40,40,65,45,35),(181,180,70,55,55,80,60,45),(182,181,90,75,85,115,90,55),(183,182,75,80,95,90,100,50),(184,183,70,20,50,20,50,40),(185,184,100,50,80,60,80,50),(186,185,70,100,115,30,65,30),(187,186,90,75,75,90,100,70),(188,187,35,35,40,35,55,50),(189,188,55,45,50,45,65,80),(190,189,75,55,70,55,95,110),(191,190,55,70,55,40,55,85),(192,191,30,30,30,30,30,30),(193,192,75,75,55,105,85,30),(194,193,65,65,45,75,45,95),(195,194,55,45,45,25,25,15),(196,195,95,85,85,65,65,35),(197,196,65,65,60,130,95,110),(198,197,95,65,110,60,130,65),(199,198,60,85,42,85,42,91),(200,199,95,75,80,100,110,30),(201,200,60,60,60,85,85,85),(202,201,48,72,48,72,48,48),(203,202,190,33,58,33,58,33),(204,203,70,80,65,90,65,85),(205,204,50,65,90,35,35,15),(206,205,75,90,140,60,60,40),(207,206,100,70,70,65,65,45),(208,207,65,75,105,35,65,85),(209,208,75,85,200,55,65,30),(210,209,60,80,50,40,40,30),(211,210,90,120,75,60,60,45),(212,211,65,95,85,55,55,85),(213,212,70,130,100,55,80,65),(214,213,20,10,230,10,230,5),(215,214,80,125,75,40,95,85),(216,215,55,95,55,35,75,115),(217,216,60,80,50,50,50,40),(218,217,90,130,75,75,75,55),(219,218,40,40,40,70,40,20),(220,219,60,50,120,90,80,30),(221,220,50,50,40,30,30,50),(222,221,100,100,80,60,60,50),(223,222,65,55,95,65,95,35),(224,223,35,65,35,65,35,65),(225,224,75,105,75,105,75,45),(226,225,45,55,45,65,45,75),(227,226,85,40,70,80,140,70),(228,227,65,80,140,40,70,70),(229,228,45,60,30,80,50,65),(230,229,75,90,50,110,80,95),(231,230,75,95,95,95,95,85),(232,231,90,60,60,40,40,40),(233,232,90,120,120,60,60,50),(234,233,85,80,90,105,95,60),(235,234,73,95,62,85,65,85),(236,235,55,20,35,20,45,75),(237,236,35,35,35,35,35,35),(238,237,50,95,95,35,110,70),(239,238,45,30,15,85,65,65),(240,239,45,63,37,65,55,95),(241,240,45,75,37,70,55,83),(242,241,95,80,105,40,70,100),(243,242,255,10,10,75,135,55),(244,243,90,85,75,115,100,115),(245,244,115,115,85,90,75,100),(246,245,100,75,115,90,115,85),(247,246,50,64,50,45,50,41),(248,247,70,84,70,65,70,51),(249,248,100,134,110,95,100,61),(250,249,106,90,130,90,154,110),(251,250,106,130,90,110,154,90),(252,251,100,100,100,100,100,100),(253,252,40,45,35,65,55,70),(254,253,50,65,45,85,65,95),(255,254,70,85,65,105,85,120),(256,255,45,60,40,70,50,45),(257,256,60,85,60,85,60,55),(258,257,80,120,70,110,70,80),(259,258,50,70,50,50,50,40),(260,259,70,85,70,60,70,50),(261,260,100,110,90,85,90,60),(262,261,35,55,35,30,30,35),(263,262,70,90,70,60,60,70),(264,263,38,30,41,30,41,60),(265,264,78,70,61,50,61,100),(266,265,45,45,35,20,30,20),(267,266,50,35,55,25,25,15),(268,267,60,70,50,100,50,65),(269,268,50,35,55,25,25,15),(270,269,60,50,70,50,90,65),(271,270,40,30,30,40,50,30),(272,271,60,50,50,60,70,50),(273,272,80,70,70,90,100,70),(274,273,40,40,50,30,30,30),(275,274,70,70,40,60,40,60),(276,275,90,100,60,90,60,80),(277,276,40,55,30,30,30,85),(278,277,60,85,60,75,50,125),(279,278,40,30,30,55,30,85),(280,279,60,50,100,95,70,65),(281,280,28,25,25,45,35,40),(282,281,38,35,35,65,55,50),(283,282,68,65,65,125,115,80),(284,283,40,30,32,50,52,65),(285,284,70,60,62,100,82,80),(286,285,60,40,60,40,60,35),(287,286,60,130,80,60,60,70),(288,287,60,60,60,35,35,30),(289,288,80,80,80,55,55,90),(290,289,150,160,100,95,65,100),(291,290,31,45,90,30,30,40),(292,291,61,90,45,50,50,160),(293,292,1,90,45,30,30,40),(294,293,64,51,23,51,23,28),(295,294,84,71,43,71,43,48),(296,295,104,91,63,91,73,68),(297,296,72,60,30,20,30,25),(298,297,144,120,60,40,60,50),(299,298,50,20,40,20,40,20),(300,299,30,45,135,45,90,30),(301,300,50,45,45,35,35,50),(302,301,70,65,65,55,55,90),(303,302,50,75,75,65,65,50),(304,303,50,85,85,55,55,50),(305,304,50,70,100,40,40,30),(306,305,60,90,140,50,50,40),(307,306,70,110,180,60,60,50),(308,307,30,40,55,40,55,60),(309,308,60,60,75,60,75,80),(310,309,40,45,40,65,40,65),(311,310,70,75,60,105,60,105),(312,311,60,50,40,85,75,95),(313,312,60,40,50,75,85,95),(314,313,65,73,75,47,85,85),(315,314,65,47,75,73,85,85),(316,315,50,60,45,100,80,65),(317,316,70,43,53,43,53,40),(318,317,100,73,83,73,83,55),(319,318,45,90,20,65,20,65),(320,319,70,120,40,95,40,95),(321,320,130,70,35,70,35,60),(322,321,170,90,45,90,45,60),(323,322,60,60,40,65,45,35),(324,323,70,100,70,105,75,40),(325,324,70,85,140,85,70,20),(326,325,60,25,35,70,80,60),(327,326,80,45,65,90,110,80),(328,327,60,60,60,60,60,60),(329,328,45,100,45,45,45,10),(330,329,50,70,50,50,50,70),(331,330,80,100,80,80,80,100),(332,331,50,85,40,85,40,35),(333,332,70,115,60,115,60,55),(334,333,45,40,60,40,75,50),(335,334,75,70,90,70,105,80),(336,335,73,115,60,60,60,90),(337,336,73,100,60,100,60,65),(338,337,90,55,65,95,85,70),(339,338,90,95,85,55,65,70),(340,339,50,48,43,46,41,60),(341,340,110,78,73,76,71,60),(342,341,43,80,65,50,35,35),(343,342,63,120,85,90,55,55),(344,343,40,40,55,40,70,55),(345,344,60,70,105,70,120,75),(346,345,66,41,77,61,87,23),(347,346,86,81,97,81,107,43),(348,347,45,95,50,40,50,75),(349,348,75,125,100,70,80,45),(350,349,20,15,20,10,55,80),(351,350,95,60,79,100,125,81),(352,351,70,70,70,70,70,70),(353,352,60,90,70,60,120,40),(354,353,44,75,35,63,33,45),(355,354,64,115,65,83,63,65),(356,355,20,40,90,30,90,25),(357,356,40,70,130,60,130,25),(358,357,99,68,83,72,87,51),(359,358,75,50,80,95,90,65),(360,359,65,130,60,75,60,75),(361,360,95,23,48,23,48,23),(362,361,50,50,50,50,50,50),(363,362,80,80,80,80,80,80),(364,363,70,40,50,55,50,25),(365,364,90,60,70,75,70,45),(366,365,110,80,90,95,90,65),(367,366,35,64,85,74,55,32),(368,367,55,104,105,94,75,52),(369,368,55,84,105,114,75,52),(370,369,100,90,130,45,65,55),(371,370,43,30,55,40,65,97),(372,371,45,75,60,40,30,50),(373,372,65,95,100,60,50,50),(374,373,95,135,80,110,80,100),(375,374,40,55,80,35,60,30),(376,375,60,75,100,55,80,50),(377,376,80,135,130,95,90,70),(378,377,80,100,200,50,100,50),(379,378,80,50,100,100,200,50),(380,379,80,75,150,75,150,50),(381,380,80,80,90,110,130,110),(382,381,80,90,80,130,110,110),(383,382,100,100,90,150,140,90),(384,383,100,150,140,100,90,90),(385,384,105,150,90,150,90,95),(386,385,100,100,100,100,100,100),(387,386,50,150,50,150,50,150),(388,387,55,68,64,45,55,31),(389,388,75,89,85,55,65,36),(390,389,95,109,105,75,85,56),(391,390,44,58,44,58,44,61),(392,391,64,78,52,78,52,81),(393,392,76,104,71,104,71,108),(394,393,53,51,53,61,56,40),(395,394,64,66,68,81,76,50),(396,395,84,86,88,111,101,60),(397,396,40,55,30,30,30,60),(398,397,55,75,50,40,40,80),(399,398,85,120,70,50,60,100),(400,399,59,45,40,35,40,31),(401,400,79,85,60,55,60,71),(402,401,37,25,41,25,41,25),(403,402,77,85,51,55,51,65),(404,403,45,65,34,40,34,45),(405,404,60,85,49,60,49,60),(406,405,80,120,79,95,79,70),(407,406,40,30,35,50,70,55),(408,407,60,70,65,125,105,90),(409,408,67,125,40,30,30,58),(410,409,97,165,60,65,50,58),(411,410,30,42,118,42,88,30),(412,411,60,52,168,47,138,30),(413,412,40,29,45,29,45,36),(414,413,60,59,85,79,105,36),(415,414,70,94,50,94,50,66),(416,415,30,30,42,30,42,70),(417,416,70,80,102,80,102,40),(418,417,60,45,70,45,90,95),(419,418,55,65,35,60,30,85),(420,419,85,105,55,85,50,115),(421,420,45,35,45,62,53,35),(422,421,70,60,70,87,78,85),(423,422,76,48,48,57,62,34),(424,423,111,83,68,92,82,39),(425,424,75,100,66,60,66,115),(426,425,90,50,34,60,44,70),(427,426,150,80,44,90,54,80),(428,427,55,66,44,44,56,85),(429,428,65,76,84,54,96,105),(430,429,60,60,60,105,105,105),(431,430,100,125,52,105,52,71),(432,431,49,55,42,42,37,85),(433,432,71,82,64,64,59,112),(434,433,45,30,50,65,50,45),(435,434,63,63,47,41,41,74),(436,435,103,93,67,71,61,84),(437,436,57,24,86,24,86,23),(438,437,67,89,116,79,116,33),(439,438,50,80,95,10,45,10),(440,439,20,25,45,70,90,60),(441,440,100,5,5,15,65,30),(442,441,76,65,45,92,42,91),(443,442,50,92,108,92,108,35),(444,443,58,70,45,40,45,42),(445,444,68,90,65,50,55,82),(446,445,108,130,95,80,85,102),(447,446,135,85,40,40,85,5),(448,447,40,70,40,35,40,60),(449,448,70,110,70,115,70,90),(450,449,68,72,78,38,42,32),(451,450,108,112,118,68,72,47),(452,451,40,50,90,30,55,65),(453,452,70,90,110,60,75,95),(454,453,48,61,40,61,40,50),(455,454,83,106,65,86,65,85),(456,455,74,100,72,90,72,46),(457,456,49,49,56,49,61,66),(458,457,69,69,76,69,86,91),(459,458,45,20,50,60,120,50),(460,459,60,62,50,62,60,40),(461,460,90,92,75,92,85,60),(462,461,70,120,65,45,85,125),(463,462,70,70,115,130,90,60),(464,463,110,85,95,80,95,50),(465,464,115,140,130,55,55,40),(466,465,100,100,125,110,50,50),(467,466,75,123,67,95,85,95),(468,467,75,95,67,125,95,83),(469,468,85,50,95,120,115,80),(470,469,86,76,86,116,56,95),(471,470,65,110,130,60,65,95),(472,471,65,60,110,130,95,65),(473,472,75,95,125,45,75,95),(474,473,110,130,80,70,60,80),(475,474,85,80,70,135,75,90),(476,475,68,125,65,65,115,80),(477,476,60,55,145,75,150,40),(478,477,45,100,135,65,135,45),(479,478,70,80,70,80,70,110),(480,479,50,50,77,95,77,91),(481,480,75,75,130,75,130,95),(482,481,80,105,105,105,105,80),(483,482,75,125,70,125,70,115),(484,483,100,120,120,150,100,90),(485,484,90,120,100,150,120,100),(486,485,91,90,106,130,106,77),(487,486,110,160,110,80,110,100),(488,487,150,100,120,100,120,90),(489,488,120,70,110,75,120,85),(490,489,80,80,80,80,80,80),(491,490,100,100,100,100,100,100),(492,491,70,90,90,135,90,125),(493,492,100,100,100,100,100,100),(494,493,120,120,120,120,120,120),(495,494,100,100,100,100,100,100),(496,495,45,45,55,45,55,63),(497,496,60,60,75,60,75,83),(498,497,75,75,95,75,95,113),(499,498,65,63,45,45,45,45),(500,499,90,93,55,70,55,55),(501,500,110,123,65,100,65,65),(502,501,55,55,45,63,45,45),(503,502,75,75,60,83,60,60),(504,503,95,100,85,108,70,70),(505,504,45,55,39,35,39,42),(506,505,60,85,69,60,69,77),(507,506,45,60,45,25,45,55),(508,507,65,80,65,35,65,60),(509,508,85,110,90,45,90,80),(510,509,41,50,37,50,37,66),(511,510,64,88,50,88,50,106),(512,511,50,53,48,53,48,64),(513,512,75,98,63,98,63,101),(514,513,50,53,48,53,48,64),(515,514,75,98,63,98,63,101),(516,515,50,53,48,53,48,64),(517,516,75,98,63,98,63,101),(518,517,76,25,45,67,55,24),(519,518,116,55,85,107,95,29),(520,519,50,55,50,36,30,43),(521,520,62,77,62,50,42,65),(522,521,80,115,80,65,55,93),(523,522,45,60,32,50,32,76),(524,523,75,100,63,80,63,116),(525,524,55,75,85,25,25,15),(526,525,70,105,105,50,40,20),(527,526,85,135,130,60,80,25),(528,527,65,45,43,55,43,72),(529,528,67,57,55,77,55,114),(530,529,60,85,40,30,45,68),(531,530,110,135,60,50,65,88),(532,531,103,60,86,60,86,50),(533,532,75,80,55,25,35,35),(534,533,85,105,85,40,50,40),(535,534,105,140,95,55,65,45),(536,535,50,50,40,50,40,64),(537,536,75,65,55,65,55,69),(538,537,105,95,75,85,75,74),(539,538,120,100,85,30,85,45),(540,539,75,125,75,30,75,85),(541,540,45,53,70,40,60,42),(542,541,55,63,90,50,80,42),(543,542,75,103,80,70,80,92),(544,543,30,45,59,30,39,57),(545,544,40,55,99,40,79,47),(546,545,60,100,89,55,69,112),(547,546,40,27,60,37,50,66),(548,547,60,67,85,77,75,116),(549,548,45,35,50,70,50,30),(550,549,70,60,75,110,75,90),(551,550,70,92,65,80,55,98),(552,551,50,72,35,35,35,65),(553,552,60,82,45,45,45,74),(554,553,95,117,80,65,70,92),(555,554,70,90,45,15,45,50),(556,555,105,140,55,30,55,95),(557,556,75,86,67,106,67,60),(558,557,50,65,85,35,35,55),(559,558,70,105,125,65,75,45),(560,559,50,75,70,35,70,48),(561,560,65,90,115,45,115,58),(562,561,72,58,80,103,80,97),(563,562,38,30,85,55,65,30),(564,563,58,50,145,95,105,30),(565,564,54,78,103,53,45,22),(566,565,74,108,133,83,65,32),(567,566,55,112,45,74,45,70),(568,567,75,140,65,112,65,110),(569,568,50,50,62,40,62,65),(570,569,80,95,82,60,82,75),(571,570,40,65,40,80,40,65),(572,571,60,105,60,120,60,105),(573,572,55,50,40,40,40,75),(574,573,75,95,60,65,60,115),(575,574,45,30,50,55,65,45),(576,575,60,45,70,75,85,55),(577,576,70,55,95,95,110,65),(578,577,45,30,40,105,50,20),(579,578,65,40,50,125,60,30),(580,579,110,65,75,125,85,30),(581,580,62,44,50,44,50,55),(582,581,75,87,63,87,63,98),(583,582,36,50,50,65,60,44),(584,583,51,65,65,80,75,59),(585,584,71,95,85,110,95,79),(586,585,60,60,50,40,50,75),(587,586,80,100,70,60,70,95),(588,587,55,75,60,75,60,103),(589,588,50,75,45,40,45,60),(590,589,70,135,105,60,105,20),(591,590,69,55,45,55,55,15),(592,591,114,85,70,85,80,30),(593,592,55,40,50,65,85,40),(594,593,100,60,70,85,105,60),(595,594,165,75,80,40,45,65),(596,595,50,47,50,57,50,65),(597,596,70,77,60,97,60,108),(598,597,44,50,91,24,86,10),(599,598,74,94,131,54,116,20),(600,599,40,55,70,45,60,30),(601,600,60,80,95,70,85,50),(602,601,60,100,115,70,85,90),(603,602,35,55,40,45,40,60),(604,603,65,85,70,75,70,40),(605,604,85,115,80,105,80,50),(606,605,55,55,55,85,55,30),(607,606,75,75,75,125,95,40),(608,607,50,30,55,65,55,20),(609,608,60,40,60,95,60,55),(610,609,60,55,90,145,90,80),(611,610,46,87,60,30,40,57),(612,611,66,117,70,40,50,67),(613,612,76,147,90,60,70,97),(614,613,55,70,40,60,40,40),(615,614,95,130,80,70,80,50),(616,615,80,50,50,95,135,105),(617,616,50,40,85,40,65,25),(618,617,80,70,40,100,60,145),(619,618,109,66,84,81,99,32),(620,619,45,85,50,55,50,65),(621,620,65,125,60,95,60,105),(622,621,77,120,90,60,90,48),(623,622,59,74,50,35,50,35),(624,623,89,124,80,55,80,55),(625,624,45,85,70,40,40,60),(626,625,65,125,100,60,70,70),(627,626,95,110,95,40,95,55),(628,627,70,83,50,37,50,60),(629,628,100,123,75,57,75,80),(630,629,70,55,75,45,65,60),(631,630,110,65,105,55,95,80),(632,631,85,97,66,105,66,65),(633,632,58,109,112,48,48,109),(634,633,52,65,50,45,50,38),(635,634,72,85,70,65,70,58),(636,635,92,105,90,125,90,98),(637,636,55,85,55,50,55,60),(638,637,85,60,65,135,105,100),(639,638,91,90,129,90,72,108),(640,639,91,129,90,72,90,108),(641,640,91,90,72,90,129,108),(642,641,79,115,70,125,80,111),(643,642,79,115,70,125,80,111),(644,643,100,120,100,150,120,90),(645,644,100,150,120,120,100,90),(646,645,89,125,90,115,80,101),(647,646,125,130,90,130,90,95),(648,647,91,72,90,129,90,108),(649,648,100,77,77,128,128,90),(650,649,71,120,95,120,95,99),(651,650,56,61,65,48,45,38),(652,651,61,78,95,56,58,57),(653,652,88,107,122,74,75,64),(654,653,40,45,40,62,60,60),(655,654,59,59,58,90,70,73),(656,655,75,69,72,114,100,104),(657,656,41,56,40,62,44,71),(658,657,54,63,52,83,56,97),(659,658,72,95,67,103,71,122),(660,659,38,36,38,32,36,57),(661,660,85,56,77,50,77,78),(662,661,45,50,43,40,38,62),(663,662,62,73,55,56,52,84),(664,663,78,81,71,74,69,126),(665,664,38,35,40,27,25,35),(666,665,45,22,60,27,30,29),(667,666,80,52,50,90,50,89),(668,667,62,50,58,73,54,72),(669,668,86,68,72,109,66,106),(670,669,44,38,39,61,79,42),(671,670,54,45,47,75,98,52),(672,671,78,65,68,112,154,75),(673,672,66,65,48,62,57,52),(674,673,123,100,62,97,81,68),(675,674,67,82,62,46,48,43),(676,675,95,124,78,69,71,58),(677,676,75,80,60,65,90,102),(678,677,62,48,54,63,60,68),(679,678,74,48,76,83,81,104),(680,679,45,80,100,35,37,28),(681,680,59,110,150,45,49,35),(682,681,60,50,140,50,140,60),(683,682,78,52,60,63,65,23),(684,683,101,72,72,99,89,29),(685,684,62,48,66,59,57,49),(686,685,82,80,86,85,75,72),(687,686,53,54,53,37,46,45),(688,687,86,92,88,68,75,73),(689,688,42,52,67,39,56,50),(690,689,72,105,115,54,86,68),(691,690,50,60,60,60,60,30),(692,691,65,75,90,97,123,44),(693,692,50,53,62,58,63,44),(694,693,71,73,88,120,89,59),(695,694,44,38,33,61,43,70),(696,695,62,55,52,109,94,109),(697,696,58,89,77,45,45,48),(698,697,82,121,119,69,59,71),(699,698,77,59,50,67,63,46),(700,699,123,77,72,99,92,58),(701,700,95,65,65,110,130,60),(702,701,78,92,75,74,63,118),(703,702,67,58,57,81,67,101),(704,703,50,50,150,50,150,50),(705,704,45,50,35,55,75,40),(706,705,68,75,53,83,113,60),(707,706,90,100,70,110,150,80),(708,707,57,80,91,80,87,75),(709,708,43,70,48,50,60,38),(710,709,85,110,76,65,82,56),(711,710,49,66,70,44,55,51),(712,711,65,90,122,58,75,84),(713,712,55,69,85,32,35,28),(714,713,95,117,184,44,46,28),(715,714,40,30,35,45,40,55),(716,715,85,70,80,97,80,123),(717,716,126,131,95,131,98,99),(718,717,126,131,95,131,98,99),(719,718,108,100,121,81,95,95),(720,719,50,100,150,100,150,50),(721,720,80,110,60,150,130,70),(722,721,80,110,120,130,90,70),(723,722,68,55,55,50,50,42),(724,723,78,75,75,70,70,52),(725,724,78,107,75,100,100,70),(726,725,45,65,40,60,40,70),(727,726,65,85,50,80,50,90),(728,727,95,115,90,80,90,60),(729,728,50,54,54,66,56,40),(730,729,60,69,69,91,81,50),(731,730,80,74,74,126,116,60),(732,731,35,75,30,30,30,65),(733,732,55,85,50,40,50,75),(734,733,80,120,75,75,75,60),(735,734,48,70,30,30,30,45),(736,735,88,110,60,55,60,45),(737,736,47,62,45,55,45,46),(738,737,57,82,95,55,75,36),(739,738,77,70,90,145,75,43),(740,739,47,82,57,42,47,63),(741,740,97,132,77,62,67,43),(742,741,75,70,70,98,70,93),(743,742,40,45,40,55,40,84),(744,743,60,55,60,95,70,124),(745,744,45,65,40,30,40,60),(746,745,75,115,65,55,65,112),(747,746,45,20,20,25,25,40),(748,747,50,53,62,43,52,45),(749,748,50,63,152,53,142,35),(750,749,70,100,70,45,55,45),(751,750,100,125,100,55,85,35),(752,751,38,40,52,40,72,27),(753,752,68,70,92,50,132,42),(754,753,40,55,35,50,35,35),(755,754,70,105,90,80,90,45),(756,755,40,35,55,65,75,15),(757,756,60,45,80,90,100,30),(758,757,48,44,40,71,40,77),(759,758,68,64,60,111,60,117),(760,759,70,75,50,45,50,50),(761,760,120,125,80,55,60,60),(762,761,42,30,38,30,38,32),(763,762,52,40,48,40,48,62),(764,763,72,120,98,50,98,72),(765,764,51,52,90,82,110,100),(766,765,90,60,80,90,110,60),(767,766,100,120,90,40,60,80),(768,767,25,35,40,20,30,80),(769,768,75,125,140,60,90,40),(770,769,55,55,80,70,45,15),(771,770,85,75,110,100,75,35),(772,771,55,60,130,30,130,5),(773,772,95,95,95,95,95,59),(774,773,95,95,95,95,95,95),(775,774,60,60,100,60,100,60),(776,775,65,115,65,75,95,65),(777,776,60,78,135,91,85,36),(778,777,65,98,63,40,73,96),(779,778,55,90,80,50,105,96),(780,779,68,105,70,70,70,92),(781,780,78,60,85,135,91,36),(782,781,70,131,100,86,90,40),(783,782,45,55,65,45,45,45),(784,783,55,75,90,65,70,65),(785,784,75,110,125,100,105,85),(786,785,70,115,85,95,75,130),(787,786,70,85,75,130,115,95),(788,787,70,130,115,85,95,75),(789,788,70,75,115,95,130,85),(790,789,43,29,31,29,31,37),(791,790,43,29,131,29,131,37),(792,791,137,137,107,113,89,97),(793,792,137,113,89,137,107,97),(794,793,109,53,47,127,131,103),(795,794,107,139,139,53,53,79),(796,795,71,137,37,137,37,151),(797,796,83,89,71,173,71,83),(798,797,97,101,103,107,101,61),(799,798,59,181,131,59,31,109),(800,799,223,101,53,97,53,43),(801,800,97,107,101,127,89,79),(802,801,80,95,115,130,115,65),(803,802,90,125,80,90,90,125),(804,803,67,73,67,73,67,73),(805,804,73,73,73,127,73,121),(806,805,61,131,211,53,101,13),(807,806,53,127,53,151,79,107),(808,807,88,112,75,102,80,143),(809,808,46,65,65,55,35,34),(810,809,135,143,143,80,65,34),(811,810,50,65,50,40,40,65),(812,811,70,85,70,55,60,80),(813,812,100,125,90,60,70,85),(814,813,50,71,40,40,40,69),(815,814,65,86,60,55,60,94),(816,815,80,116,75,65,75,119),(817,816,50,40,40,70,40,70),(818,817,65,60,55,95,55,90),(819,818,70,85,65,125,65,120),(820,819,70,55,55,35,35,25),(821,820,120,95,95,55,75,20),(822,821,38,47,35,33,35,57),(823,822,68,67,55,43,55,77),(824,823,98,87,105,53,85,67),(825,824,25,20,20,25,45,45),(826,825,50,35,80,50,90,30),(827,826,60,45,110,80,120,90),(828,827,40,28,28,47,52,50),(829,828,70,58,58,87,92,90),(830,829,40,40,60,40,60,10),(831,830,60,50,90,80,120,60),(832,831,42,40,55,40,45,48),(833,832,72,80,100,60,90,88),(834,833,50,64,50,38,38,44),(835,834,90,115,90,48,68,74),(836,835,59,45,50,40,50,26),(837,836,69,90,60,90,60,121),(838,837,30,40,50,40,50,30),(839,838,80,60,90,60,70,50),(840,839,110,80,120,80,90,30),(841,840,40,40,80,40,40,20),(842,841,70,110,80,95,60,70),(843,842,110,85,80,100,80,30),(844,843,52,57,75,35,50,46),(845,844,72,107,125,65,70,71),(846,845,70,85,55,85,95,85),(847,846,41,63,40,40,30,66),(848,847,61,123,60,60,50,136),(849,848,40,38,35,54,35,40),(850,849,75,98,70,114,70,75),(851,850,50,65,45,50,50,45),(852,851,100,115,65,90,90,65),(853,852,50,68,60,50,50,32),(854,853,80,118,90,70,80,42),(855,854,40,45,45,74,54,50),(856,855,60,65,65,134,114,70),(857,856,42,30,45,56,53,39),(858,857,57,40,65,86,73,49),(859,858,57,90,95,136,103,29),(860,859,45,45,30,55,40,50),(861,860,65,60,45,75,55,70),(862,861,95,120,65,95,75,60),(863,862,93,90,101,60,81,95),(864,863,70,110,100,50,60,50),(865,864,60,95,50,145,130,30),(866,865,62,135,95,68,82,65),(867,866,80,85,75,110,100,70),(868,867,58,95,145,50,105,30),(869,868,45,40,40,50,61,34),(870,869,65,60,75,110,121,64),(871,870,65,100,100,70,60,75),(872,871,48,101,95,91,85,15),(873,872,30,25,35,45,30,20),(874,873,70,65,60,125,90,65),(875,874,100,125,135,20,20,70),(876,875,75,80,110,65,90,50),(877,876,60,65,55,105,95,95),(878,877,58,95,58,70,58,97),(879,878,72,80,49,40,49,40),(880,879,122,130,69,80,69,30),(881,880,90,100,90,80,70,75),(882,881,90,100,90,90,80,55),(883,882,90,90,100,70,80,75),(884,883,90,90,100,80,90,55),(885,884,70,95,115,120,50,85),(886,885,28,60,30,40,30,82),(887,886,68,80,50,60,50,102),(888,887,88,120,75,100,75,142),(889,888,92,120,115,80,115,138),(890,889,92,120,115,80,115,138),(891,890,140,85,95,145,95,130),(892,891,60,90,60,53,50,72),(893,892,100,130,100,63,60,97),(894,893,105,120,105,70,95,105),(895,894,80,100,50,100,50,200),(896,895,200,100,50,100,50,80),(897,896,100,145,130,65,110,30),(898,897,100,65,60,145,80,130),(899,898,100,80,80,80,80,80),(900,899,103,105,72,105,75,65),(901,900,70,135,95,45,70,85),(902,901,130,140,105,45,80,50),(903,902,120,112,65,80,75,78),(904,903,80,130,60,40,80,120),(905,904,85,115,95,65,65,85),(906,905,74,115,70,135,80,106),(907,906,40,61,54,45,45,65),(908,907,61,80,63,60,63,83),(909,908,76,110,70,81,70,123),(910,909,67,45,59,63,40,36),(911,910,81,55,78,90,58,49),(912,911,104,75,100,110,75,66),(913,912,55,65,45,50,45,50),(914,913,70,85,65,65,60,65),(915,914,85,120,80,85,75,85),(916,915,54,45,40,35,45,35),(917,916,110,100,75,59,80,65),(918,917,35,41,45,29,40,20),(919,918,60,79,92,52,86,35),(920,919,33,46,40,21,25,45),(921,920,71,102,78,52,55,92),(922,921,45,50,20,40,25,60),(923,922,60,75,40,50,40,85),(924,923,70,115,70,70,60,105),(925,924,50,50,45,40,45,75),(926,925,74,75,70,65,75,111),(927,926,37,55,70,30,55,65),(928,927,57,80,115,50,80,95),(929,928,41,35,45,58,51,30),(930,929,52,53,60,78,78,33),(931,930,78,69,90,125,109,39),(932,931,82,96,51,45,51,92),(933,932,55,55,75,35,35,25),(934,933,60,60,100,35,65,35),(935,934,100,100,130,45,90,35),(936,935,40,50,40,50,40,35),(937,936,85,60,100,125,80,75),(938,937,75,125,80,60,100,85),(939,938,61,31,41,59,35,45),(940,939,109,64,91,103,83,45),(941,940,40,40,35,55,40,70),(942,941,70,70,60,105,60,125),(943,942,60,78,60,40,51,51),(944,943,80,120,90,60,70,85),(945,944,40,65,35,40,35,75),(946,945,63,95,65,80,72,110),(947,946,40,65,30,45,35,60),(948,947,55,115,70,80,70,90),(949,948,40,40,35,50,100,70),(950,949,80,70,65,80,120,100),(951,950,70,100,115,35,55,75),(952,951,50,62,40,62,40,50),(953,952,65,108,65,108,65,75),(954,953,41,50,60,31,58,30),(955,954,75,50,85,115,100,45),(956,955,30,35,30,55,30,75),(957,956,95,60,60,101,60,105),(958,957,50,45,45,35,64,58),(959,958,65,55,55,45,82,78),(960,959,85,75,77,70,105,94),(961,960,10,55,25,35,25,95),(962,961,35,100,50,50,70,120),(963,962,70,103,85,60,85,82),(964,963,70,45,40,45,40,75),(965,964,100,70,72,53,62,100),(966,965,45,70,63,30,45,47),(967,966,80,119,90,54,67,90),(968,967,70,95,65,85,65,121),(969,968,70,85,145,60,55,65),(970,969,48,35,42,105,60,60),(971,970,83,55,90,130,81,86),(972,971,50,61,60,30,55,34),(973,972,72,101,100,50,97,68),(974,973,82,115,74,75,64,90),(975,974,108,68,45,30,40,43),(976,975,170,113,65,45,55,73),(977,976,90,102,73,78,65,70),(978,977,150,100,115,65,65,35),(979,978,68,50,60,120,95,82),(980,979,110,115,80,50,90,90),(981,980,130,75,60,45,100,20),(982,981,120,90,70,110,70,60),(983,982,125,100,80,85,75,55),(984,983,100,135,120,60,85,50),(985,984,115,131,131,53,53,87),(986,985,115,65,99,65,115,111),(987,986,111,127,99,79,99,55),(988,987,55,55,55,135,135,135),(989,988,85,135,79,85,105,81),(990,989,85,81,97,121,85,101),(991,990,90,112,120,72,70,106),(992,991,56,80,114,124,60,136),(993,992,154,140,108,50,68,50),(994,993,94,80,86,122,80,108),(995,994,80,70,60,140,110,110),(996,995,100,134,110,70,84,72),(997,996,65,75,45,35,45,55),(998,997,90,95,66,45,65,62),(999,998,115,145,92,75,86,87),(1000,999,45,30,70,75,70,10),(1001,1000,87,60,95,133,91,84),(1002,1001,85,85,100,95,135,70),(1003,1002,80,120,80,90,65,135),(1004,1003,155,110,125,55,80,45),(1005,1004,55,80,80,135,120,100),(1006,1005,105,139,71,55,101,119),(1007,1006,74,130,90,120,60,116),(1008,1007,100,135,115,85,100,135),(1009,1008,100,85,100,135,115,135),(1010,1009,99,83,91,125,83,109),(1011,1010,90,130,88,70,108,104); +/*!40000 ALTER TABLE `stats` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `types` +-- + +DROP TABLE IF EXISTS `types`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `types` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(50) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `types` +-- + +LOCK TABLES `types` WRITE; +/*!40000 ALTER TABLE `types` DISABLE KEYS */; +INSERT INTO `types` VALUES (12,'bug'),(16,'dark'),(15,'dragon'),(4,'electric'),(18,'fairy'),(7,'fighting'),(2,'fire'),(10,'flying'),(14,'ghost'),(5,'grass'),(9,'ground'),(6,'ice'),(1,'normal'),(8,'poison'),(11,'psychic'),(13,'rock'),(17,'steel'),(3,'water'); +/*!40000 ALTER TABLE `types` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `user_pokemon` +-- + +DROP TABLE IF EXISTS `user_pokemon`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `user_pokemon` ( + `user_id` int(11) NOT NULL, + `pokemon_id` int(11) NOT NULL, + PRIMARY KEY (`user_id`,`pokemon_id`), + KEY `pokemon_id` (`pokemon_id`), + CONSTRAINT `user_pokemon_ibfk_1` FOREIGN KEY (`pokemon_id`) REFERENCES `pokemon` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `user_pokemon` +-- + +LOCK TABLES `user_pokemon` WRITE; +/*!40000 ALTER TABLE `user_pokemon` DISABLE KEYS */; +INSERT INTO `user_pokemon` VALUES (1,1),(1,2),(2,3),(2,4),(3,5),(3,6); +/*!40000 ALTER TABLE `user_pokemon` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `varieties` +-- + +DROP TABLE IF EXISTS `varieties`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `varieties` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `pokemon_id` int(11) DEFAULT NULL, + `variety_name` varchar(100) DEFAULT NULL, + `image_url` varchar(255) DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `pokemon_id` (`pokemon_id`), + CONSTRAINT `varieties_ibfk_1` FOREIGN KEY (`pokemon_id`) REFERENCES `pokemon` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `varieties` +-- + +LOCK TABLES `varieties` WRITE; +/*!40000 ALTER TABLE `varieties` DISABLE KEYS */; +/*!40000 ALTER TABLE `varieties` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Dumping routines for database 'pokedex1' +-- +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2025-03-27 9:54:51 diff --git a/projects/challange 8/pokedex/pokedex_database.sql b/projects/challange 8/pokedex/pokedex_database.sql new file mode 100644 index 0000000..52926ba --- /dev/null +++ b/projects/challange 8/pokedex/pokedex_database.sql @@ -0,0 +1,116 @@ +CREATE DATABASE IF NOT EXISTS pokedex1; +USE pokedex1; + +-- Table to store Pokémon details +CREATE TABLE IF NOT EXISTS pokemon ( + id INT PRIMARY KEY, + name VARCHAR(100) NOT NULL, + height INT, + weight INT, + base_experience INT, + species_url VARCHAR(255), + image_url VARCHAR(255) +); + +-- Table to store Pokémon types +CREATE TABLE IF NOT EXISTS types ( + id INT PRIMARY KEY AUTO_INCREMENT, + name VARCHAR(50) NOT NULL UNIQUE +); + +-- Table to store Pokémon abilities +CREATE TABLE IF NOT EXISTS abilities ( + id INT PRIMARY KEY AUTO_INCREMENT, + name VARCHAR(100) NOT NULL +); + +-- Table to store Pokémon stats +CREATE TABLE IF NOT EXISTS stats ( + id INT PRIMARY KEY AUTO_INCREMENT, + pokemon_id INT, + hp INT, + attack INT, + defense INT, + sp_attack INT, + sp_defense INT, + speed INT, + FOREIGN KEY (pokemon_id) REFERENCES pokemon(id) +); + +-- Table to store Pokémon type relationships +CREATE TABLE IF NOT EXISTS pokemon_types ( + pokemon_id INT, + type_id INT, + PRIMARY KEY (pokemon_id, type_id), + FOREIGN KEY (pokemon_id) REFERENCES pokemon(id), + FOREIGN KEY (type_id) REFERENCES types(id) +); + +-- Table to store Pokémon ability relationships +CREATE TABLE IF NOT EXISTS pokemon_abilities ( + pokemon_id INT, + ability_id INT, + PRIMARY KEY (pokemon_id, ability_id), + FOREIGN KEY (pokemon_id) REFERENCES pokemon(id), + FOREIGN KEY (ability_id) REFERENCES abilities(id) +); + +-- Table to store Pokémon evolution chains +CREATE TABLE IF NOT EXISTS evolution_chains ( + id INT PRIMARY KEY AUTO_INCREMENT, + chain_url VARCHAR(255) NOT NULL +); + +-- Table to store Pokémon varieties +CREATE TABLE IF NOT EXISTS varieties ( + id INT PRIMARY KEY AUTO_INCREMENT, + pokemon_id INT, + variety_name VARCHAR(100), + image_url VARCHAR(255), + FOREIGN KEY (pokemon_id) REFERENCES pokemon(id) +); + +-- Table to store Pokémon species details +CREATE TABLE IF NOT EXISTS species ( + id INT PRIMARY KEY AUTO_INCREMENT, + pokemon_id INT, + genus VARCHAR(100), + flavor_text TEXT, + growth_rate VARCHAR(100), + base_happiness INT, + capture_rate INT, + gender_rate INT, + FOREIGN KEY (pokemon_id) REFERENCES pokemon(id) +); + +-- Table to store Pokémon egg groups +CREATE TABLE IF NOT EXISTS egg_groups ( + id INT PRIMARY KEY AUTO_INCREMENT, + name VARCHAR(100) NOT NULL +); + +-- Table to store Pokémon egg group relationships +CREATE TABLE IF NOT EXISTS pokemon_egg_groups ( + pokemon_id INT, + egg_group_id INT, + PRIMARY KEY (pokemon_id, egg_group_id), + FOREIGN KEY (pokemon_id) REFERENCES pokemon(id), + FOREIGN KEY (egg_group_id) REFERENCES egg_groups(id) +); + +-- Table to store user Pokémon relationships +CREATE TABLE IF NOT EXISTS user_pokemon ( + user_id INT NOT NULL, + pokemon_id INT NOT NULL, + PRIMARY KEY (user_id, pokemon_id), + FOREIGN KEY (pokemon_id) REFERENCES pokemon(id) +); + +-- Insert sample data into the user_pokemon table +INSERT INTO user_pokemon (user_id, pokemon_id) VALUES +(1, 1), +(1, 2), +(2, 3), +(2, 4), +(3, 5), +(3, 6); diff --git a/projects/challange 8/pokedex/update-image-urls.js b/projects/challange 8/pokedex/update-image-urls.js new file mode 100644 index 0000000..6e30a79 --- /dev/null +++ b/projects/challange 8/pokedex/update-image-urls.js @@ -0,0 +1,30 @@ +const mysql = require('mysql'); + +// Database connection +const connection = mysql.createConnection({ + host: 'localhost', + user: 'root', + password: '', + database: 'pokedex', +}); + +connection.connect(); + +// Fetch Pokémon data +connection.query('SELECT id FROM pokemon', (error, results) => { + if (error) throw error; + + results.forEach((pokemon) => { + const newImageUrl = `./images/${pokemon.id}.png`; + connection.query( + 'UPDATE pokemon SET image_url = ? WHERE id = ?', + [newImageUrl, pokemon.id], + (updateError) => { + if (updateError) throw updateError; + console.log(`Updated image URL for Pokémon ID: ${pokemon.id}`); + } + ); + }); + + connection.end(); +}); diff --git a/projects/challange 8/pokedex/update_low_res_images.js b/projects/challange 8/pokedex/update_low_res_images.js new file mode 100644 index 0000000..b027392 --- /dev/null +++ b/projects/challange 8/pokedex/update_low_res_images.js @@ -0,0 +1,49 @@ +const mysql = require('mysql'); + +const connection = mysql.createConnection({ + host: 'localhost', + user: 'root', + password: '', + database: 'pokedex1' +}); + +connection.connect((err) => { + if (err) { + console.error('Error connecting to the database:', err); + return; + } + console.log('Connected to the database.'); + updateLowResImages(); +}); + +function updateLowResImages() { + const query = 'SELECT id FROM pokemon'; + connection.query(query, (err, results) => { + if (err) { + console.error('Error fetching Pokémon IDs:', err); + return; + } + + results.forEach((row) => { + const id = row.id; + const imageUrlLow = `./small-images/${id}.png`; + const updateQuery = 'UPDATE pokemon SET image_url_low = ? WHERE id = ?'; + + connection.query(updateQuery, [imageUrlLow, id], (err, result) => { + if (err) { + console.error(`Error updating image_url_low for Pokémon ID ${id}:`, err); + return; + } + console.log(`Updated image_url_low for Pokémon ID ${id}`); + }); + }); + + connection.end((err) => { + if (err) { + console.error('Error closing the database connection:', err); + return; + } + console.log('Database connection closed.'); + }); + }); +} diff --git a/projects/challange 8/pokedex/v1/pokedex/.vscode/settings.json b/projects/challange 8/pokedex/v1/pokedex/.vscode/settings.json new file mode 100644 index 0000000..6f3a291 --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} \ No newline at end of file diff --git a/projects/challange 8/pokedex/v1/pokedex/Fonts/Moltors.ttf b/projects/challange 8/pokedex/v1/pokedex/Fonts/Moltors.ttf new file mode 100644 index 0000000..158a7a9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/Fonts/Moltors.ttf differ diff --git a/projects/challange 8/pokedex/v1/pokedex/Fonts/PocketMonk.ttf b/projects/challange 8/pokedex/v1/pokedex/Fonts/PocketMonk.ttf new file mode 100644 index 0000000..83222e2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/Fonts/PocketMonk.ttf differ diff --git a/projects/challange 8/pokedex/v1/pokedex/Fonts/PokemonGb.ttf b/projects/challange 8/pokedex/v1/pokedex/Fonts/PokemonGb.ttf new file mode 100644 index 0000000..b5025f0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/Fonts/PokemonGb.ttf differ diff --git a/projects/challange 8/pokedex/v1/pokedex/Fonts/SlumbersWeight.ttf b/projects/challange 8/pokedex/v1/pokedex/Fonts/SlumbersWeight.ttf new file mode 100644 index 0000000..1d470a5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/Fonts/SlumbersWeight.ttf differ diff --git a/projects/challange 8/pokedex/v1/pokedex/Icons/bug.svg b/projects/challange 8/pokedex/v1/pokedex/Icons/bug.svg new file mode 100644 index 0000000..413a67d --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/Icons/bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/projects/challange 8/pokedex/v1/pokedex/Icons/dark.svg b/projects/challange 8/pokedex/v1/pokedex/Icons/dark.svg new file mode 100644 index 0000000..6144e6b --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/Icons/dark.svg @@ -0,0 +1,3 @@ + + + diff --git a/projects/challange 8/pokedex/v1/pokedex/Icons/default/logo.png b/projects/challange 8/pokedex/v1/pokedex/Icons/default/logo.png new file mode 100644 index 0000000..0eabc8a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/Icons/default/logo.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/Icons/default/pokeball.png b/projects/challange 8/pokedex/v1/pokedex/Icons/default/pokeball.png new file mode 100644 index 0000000..a847086 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/Icons/default/pokeball.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/Icons/default/pokeball.svg b/projects/challange 8/pokedex/v1/pokedex/Icons/default/pokeball.svg new file mode 100644 index 0000000..d1daf3d --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/Icons/default/pokeball.svg @@ -0,0 +1,14 @@ + + + + + + + + + diff --git a/projects/challange 8/pokedex/v1/pokedex/Icons/dragon.svg b/projects/challange 8/pokedex/v1/pokedex/Icons/dragon.svg new file mode 100644 index 0000000..0a805ed --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/Icons/dragon.svg @@ -0,0 +1,3 @@ + + + diff --git a/projects/challange 8/pokedex/v1/pokedex/Icons/electric.svg b/projects/challange 8/pokedex/v1/pokedex/Icons/electric.svg new file mode 100644 index 0000000..ec93a5a --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/Icons/electric.svg @@ -0,0 +1,3 @@ + + + diff --git a/projects/challange 8/pokedex/v1/pokedex/Icons/fairy.svg b/projects/challange 8/pokedex/v1/pokedex/Icons/fairy.svg new file mode 100644 index 0000000..352ff1e --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/Icons/fairy.svg @@ -0,0 +1,3 @@ + + + diff --git a/projects/challange 8/pokedex/v1/pokedex/Icons/fighting.svg b/projects/challange 8/pokedex/v1/pokedex/Icons/fighting.svg new file mode 100644 index 0000000..77271b2 --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/Icons/fighting.svg @@ -0,0 +1,3 @@ + + + diff --git a/projects/challange 8/pokedex/v1/pokedex/Icons/fire.svg b/projects/challange 8/pokedex/v1/pokedex/Icons/fire.svg new file mode 100644 index 0000000..956fb8b --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/Icons/fire.svg @@ -0,0 +1,3 @@ + + + diff --git a/projects/challange 8/pokedex/v1/pokedex/Icons/flying.svg b/projects/challange 8/pokedex/v1/pokedex/Icons/flying.svg new file mode 100644 index 0000000..f96cb3b --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/Icons/flying.svg @@ -0,0 +1,3 @@ + + + diff --git a/projects/challange 8/pokedex/v1/pokedex/Icons/ghost.svg b/projects/challange 8/pokedex/v1/pokedex/Icons/ghost.svg new file mode 100644 index 0000000..397fe82 --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/Icons/ghost.svg @@ -0,0 +1,3 @@ + + + diff --git a/projects/challange 8/pokedex/v1/pokedex/Icons/grass.svg b/projects/challange 8/pokedex/v1/pokedex/Icons/grass.svg new file mode 100644 index 0000000..5c7ba8d --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/Icons/grass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/projects/challange 8/pokedex/v1/pokedex/Icons/ground.svg b/projects/challange 8/pokedex/v1/pokedex/Icons/ground.svg new file mode 100644 index 0000000..36277c4 --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/Icons/ground.svg @@ -0,0 +1,3 @@ + + + diff --git a/projects/challange 8/pokedex/v1/pokedex/Icons/ice.svg b/projects/challange 8/pokedex/v1/pokedex/Icons/ice.svg new file mode 100644 index 0000000..59a6897 --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/Icons/ice.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/projects/challange 8/pokedex/v1/pokedex/Icons/normal.svg b/projects/challange 8/pokedex/v1/pokedex/Icons/normal.svg new file mode 100644 index 0000000..6994e4f --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/Icons/normal.svg @@ -0,0 +1,3 @@ + + + diff --git a/projects/challange 8/pokedex/v1/pokedex/Icons/poison.svg b/projects/challange 8/pokedex/v1/pokedex/Icons/poison.svg new file mode 100644 index 0000000..94388d8 --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/Icons/poison.svg @@ -0,0 +1,3 @@ + + + diff --git a/projects/challange 8/pokedex/v1/pokedex/Icons/pokeball.png b/projects/challange 8/pokedex/v1/pokedex/Icons/pokeball.png new file mode 100644 index 0000000..d4e8fdd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/Icons/pokeball.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/Icons/psychic.svg b/projects/challange 8/pokedex/v1/pokedex/Icons/psychic.svg new file mode 100644 index 0000000..2bd1453 --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/Icons/psychic.svg @@ -0,0 +1,3 @@ + + + diff --git a/projects/challange 8/pokedex/v1/pokedex/Icons/rock.svg b/projects/challange 8/pokedex/v1/pokedex/Icons/rock.svg new file mode 100644 index 0000000..a84a9d9 --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/Icons/rock.svg @@ -0,0 +1,3 @@ + + + diff --git a/projects/challange 8/pokedex/v1/pokedex/Icons/steel.svg b/projects/challange 8/pokedex/v1/pokedex/Icons/steel.svg new file mode 100644 index 0000000..62e2db1 --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/Icons/steel.svg @@ -0,0 +1,3 @@ + + + diff --git a/projects/challange 8/pokedex/v1/pokedex/Icons/water.svg b/projects/challange 8/pokedex/v1/pokedex/Icons/water.svg new file mode 100644 index 0000000..ecc1da2 --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/Icons/water.svg @@ -0,0 +1,3 @@ + + + diff --git a/projects/challange 8/pokedex/v1/pokedex/details.html b/projects/challange 8/pokedex/v1/pokedex/details.html new file mode 100644 index 0000000..b1c4de5 --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/details.html @@ -0,0 +1,44 @@ + + + + + + + Pokemon Details + + + + +
+
+ + +
+
+ Overview + Stats + Evolution +
+ +
+
+
+
+
+
+
+
+
+ + +
+
+
+
+
+
+ + + + + \ No newline at end of file diff --git a/projects/challange 8/pokedex/v1/pokedex/get_pokemon.php b/projects/challange 8/pokedex/v1/pokedex/get_pokemon.php new file mode 100644 index 0000000..8e15558 --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/get_pokemon.php @@ -0,0 +1,47 @@ +connect_error) { + die("Connection failed: " . $conn->connect_error); +} + +if (isset($_GET['id'])) { + $id = intval($_GET['id']); + + $sql = "SELECT p.id, p.name, p.height, p.weight, p.base_experience, p.image_url, s.genus AS japanese_name, s.flavor_text, s.growth_rate, s.base_happiness, s.capture_rate, s.gender_rate, GROUP_CONCAT(DISTINCT t.name) AS types, GROUP_CONCAT(DISTINCT a.name) AS abilities, GROUP_CONCAT(DISTINCT e.name) AS egg_groups, st.hp, st.attack, st.defense, st.sp_attack, st.sp_defense, st.speed + FROM pokemon p + LEFT JOIN species s ON p.id = s.pokemon_id + LEFT JOIN pokemon_types pt ON p.id = pt.pokemon_id + LEFT JOIN types t ON pt.type_id = t.id + LEFT JOIN pokemon_abilities pa ON p.id = pa.pokemon_id + LEFT JOIN abilities a ON pa.ability_id = a.id + LEFT JOIN pokemon_egg_groups peg ON p.id = peg.pokemon_id + LEFT JOIN egg_groups e ON peg.egg_group_id = e.id + LEFT JOIN stats st ON p.id = st.pokemon_id + WHERE p.id = $id + GROUP BY p.id"; + + $result = $conn->query($sql); + + if ($result->num_rows > 0) { + $row = $result->fetch_assoc(); + $row['types'] = explode(',', $row['types']); + $row['abilities'] = explode(',', $row['abilities']); + $row['egg_groups'] = explode(',', $row['egg_groups']); + echo json_encode($row); + } else { + echo json_encode([]); + } +} else { + echo json_encode(["error" => "No ID provided"]); +} + +$conn->close(); +?> diff --git a/projects/challange 8/pokedex/v1/pokedex/get_pokemons.php b/projects/challange 8/pokedex/v1/pokedex/get_pokemons.php new file mode 100644 index 0000000..f9560ba --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/get_pokemons.php @@ -0,0 +1,38 @@ +connect_error) { + die("Connection failed: " . $conn->connect_error); +} + +$start = intval($_GET['start']); +$end = intval($_GET['end']); + +$sql = "SELECT p.id, p.name, p.height, p.weight, p.image_url, GROUP_CONCAT(DISTINCT t.name) AS types + FROM pokemon p + LEFT JOIN pokemon_types pt ON p.id = pt.pokemon_id + LEFT JOIN types t ON pt.type_id = t.id + WHERE p.id BETWEEN $start AND $end + GROUP BY p.id"; + +$result = $conn->query($sql); + +$pokemons = array(); +if ($result->num_rows > 0) { + while($row = $result->fetch_assoc()) { + $row['types'] = explode(',', $row['types']); + $pokemons[] = $row; + } +} + +echo json_encode($pokemons); + +$conn->close(); +?> diff --git a/projects/challange 8/pokedex/v1/pokedex/images/1.png b/projects/challange 8/pokedex/v1/pokedex/images/1.png new file mode 100644 index 0000000..ff6d416 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/1.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/10.png b/projects/challange 8/pokedex/v1/pokedex/images/10.png new file mode 100644 index 0000000..b9a9b71 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/10.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/100.png b/projects/challange 8/pokedex/v1/pokedex/images/100.png new file mode 100644 index 0000000..6c16bf1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/100.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/1000.png b/projects/challange 8/pokedex/v1/pokedex/images/1000.png new file mode 100644 index 0000000..1f3a2c0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/1000.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/1001.png b/projects/challange 8/pokedex/v1/pokedex/images/1001.png new file mode 100644 index 0000000..0fa02cc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/1001.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/1002.png b/projects/challange 8/pokedex/v1/pokedex/images/1002.png new file mode 100644 index 0000000..f725016 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/1002.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/1003.png b/projects/challange 8/pokedex/v1/pokedex/images/1003.png new file mode 100644 index 0000000..ffe8859 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/1003.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/1004.png b/projects/challange 8/pokedex/v1/pokedex/images/1004.png new file mode 100644 index 0000000..835b95c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/1004.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/1005.png b/projects/challange 8/pokedex/v1/pokedex/images/1005.png new file mode 100644 index 0000000..2fcea65 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/1005.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/1006.png b/projects/challange 8/pokedex/v1/pokedex/images/1006.png new file mode 100644 index 0000000..1f342ba Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/1006.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/1007.png b/projects/challange 8/pokedex/v1/pokedex/images/1007.png new file mode 100644 index 0000000..bddc5a6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/1007.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/1008.png b/projects/challange 8/pokedex/v1/pokedex/images/1008.png new file mode 100644 index 0000000..60c2e39 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/1008.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/1009.png b/projects/challange 8/pokedex/v1/pokedex/images/1009.png new file mode 100644 index 0000000..daee793 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/1009.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/101.png b/projects/challange 8/pokedex/v1/pokedex/images/101.png new file mode 100644 index 0000000..6ee73d8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/101.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/1010.png b/projects/challange 8/pokedex/v1/pokedex/images/1010.png new file mode 100644 index 0000000..2bcb97c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/1010.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/102.png b/projects/challange 8/pokedex/v1/pokedex/images/102.png new file mode 100644 index 0000000..b590a3f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/102.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/103.png b/projects/challange 8/pokedex/v1/pokedex/images/103.png new file mode 100644 index 0000000..0301671 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/103.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/104.png b/projects/challange 8/pokedex/v1/pokedex/images/104.png new file mode 100644 index 0000000..5293f3d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/104.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/105.png b/projects/challange 8/pokedex/v1/pokedex/images/105.png new file mode 100644 index 0000000..b1c5a30 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/105.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/106.png b/projects/challange 8/pokedex/v1/pokedex/images/106.png new file mode 100644 index 0000000..f226485 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/106.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/107.png b/projects/challange 8/pokedex/v1/pokedex/images/107.png new file mode 100644 index 0000000..732eaf5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/107.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/108.png b/projects/challange 8/pokedex/v1/pokedex/images/108.png new file mode 100644 index 0000000..cf66fc8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/108.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/109.png b/projects/challange 8/pokedex/v1/pokedex/images/109.png new file mode 100644 index 0000000..5d8eefd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/109.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/11.png b/projects/challange 8/pokedex/v1/pokedex/images/11.png new file mode 100644 index 0000000..2294193 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/11.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/110.png b/projects/challange 8/pokedex/v1/pokedex/images/110.png new file mode 100644 index 0000000..745c6f8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/110.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/111.png b/projects/challange 8/pokedex/v1/pokedex/images/111.png new file mode 100644 index 0000000..3840b6c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/111.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/112.png b/projects/challange 8/pokedex/v1/pokedex/images/112.png new file mode 100644 index 0000000..fc06599 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/112.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/113.png b/projects/challange 8/pokedex/v1/pokedex/images/113.png new file mode 100644 index 0000000..ac8d37b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/113.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/114.png b/projects/challange 8/pokedex/v1/pokedex/images/114.png new file mode 100644 index 0000000..6831cbd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/114.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/115.png b/projects/challange 8/pokedex/v1/pokedex/images/115.png new file mode 100644 index 0000000..7453e49 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/115.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/116.png b/projects/challange 8/pokedex/v1/pokedex/images/116.png new file mode 100644 index 0000000..aec31e6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/116.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/117.png b/projects/challange 8/pokedex/v1/pokedex/images/117.png new file mode 100644 index 0000000..17e4f80 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/117.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/118.png b/projects/challange 8/pokedex/v1/pokedex/images/118.png new file mode 100644 index 0000000..f55a4da Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/118.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/119.png b/projects/challange 8/pokedex/v1/pokedex/images/119.png new file mode 100644 index 0000000..f12b0f5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/119.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/12.png b/projects/challange 8/pokedex/v1/pokedex/images/12.png new file mode 100644 index 0000000..ea0dfea Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/12.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/120.png b/projects/challange 8/pokedex/v1/pokedex/images/120.png new file mode 100644 index 0000000..f933d1c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/120.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/121.png b/projects/challange 8/pokedex/v1/pokedex/images/121.png new file mode 100644 index 0000000..d46a630 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/121.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/122.png b/projects/challange 8/pokedex/v1/pokedex/images/122.png new file mode 100644 index 0000000..808f351 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/122.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/123.png b/projects/challange 8/pokedex/v1/pokedex/images/123.png new file mode 100644 index 0000000..92d1c55 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/123.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/124.png b/projects/challange 8/pokedex/v1/pokedex/images/124.png new file mode 100644 index 0000000..4f8faf7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/124.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/125.png b/projects/challange 8/pokedex/v1/pokedex/images/125.png new file mode 100644 index 0000000..5e9780f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/125.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/126.png b/projects/challange 8/pokedex/v1/pokedex/images/126.png new file mode 100644 index 0000000..4bef3fc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/126.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/127.png b/projects/challange 8/pokedex/v1/pokedex/images/127.png new file mode 100644 index 0000000..758d92a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/127.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/128.png b/projects/challange 8/pokedex/v1/pokedex/images/128.png new file mode 100644 index 0000000..45fdd93 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/128.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/129.png b/projects/challange 8/pokedex/v1/pokedex/images/129.png new file mode 100644 index 0000000..f748e54 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/129.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/13.png b/projects/challange 8/pokedex/v1/pokedex/images/13.png new file mode 100644 index 0000000..b3ffa32 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/13.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/130.png b/projects/challange 8/pokedex/v1/pokedex/images/130.png new file mode 100644 index 0000000..4e81f5e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/130.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/131.png b/projects/challange 8/pokedex/v1/pokedex/images/131.png new file mode 100644 index 0000000..477b304 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/131.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/132.png b/projects/challange 8/pokedex/v1/pokedex/images/132.png new file mode 100644 index 0000000..7013ce4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/132.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/133.png b/projects/challange 8/pokedex/v1/pokedex/images/133.png new file mode 100644 index 0000000..4406687 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/133.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/134.png b/projects/challange 8/pokedex/v1/pokedex/images/134.png new file mode 100644 index 0000000..6748ae7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/134.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/135.png b/projects/challange 8/pokedex/v1/pokedex/images/135.png new file mode 100644 index 0000000..883e1c7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/135.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/136.png b/projects/challange 8/pokedex/v1/pokedex/images/136.png new file mode 100644 index 0000000..2e8d72c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/136.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/137.png b/projects/challange 8/pokedex/v1/pokedex/images/137.png new file mode 100644 index 0000000..6a2121e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/137.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/138.png b/projects/challange 8/pokedex/v1/pokedex/images/138.png new file mode 100644 index 0000000..3e94444 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/138.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/139.png b/projects/challange 8/pokedex/v1/pokedex/images/139.png new file mode 100644 index 0000000..14947a1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/139.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/14.png b/projects/challange 8/pokedex/v1/pokedex/images/14.png new file mode 100644 index 0000000..97d0304 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/14.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/140.png b/projects/challange 8/pokedex/v1/pokedex/images/140.png new file mode 100644 index 0000000..aa62722 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/140.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/141.png b/projects/challange 8/pokedex/v1/pokedex/images/141.png new file mode 100644 index 0000000..2b70b36 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/141.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/142.png b/projects/challange 8/pokedex/v1/pokedex/images/142.png new file mode 100644 index 0000000..eaa4190 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/142.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/143.png b/projects/challange 8/pokedex/v1/pokedex/images/143.png new file mode 100644 index 0000000..8fa2360 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/143.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/144.png b/projects/challange 8/pokedex/v1/pokedex/images/144.png new file mode 100644 index 0000000..8332b67 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/144.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/145.png b/projects/challange 8/pokedex/v1/pokedex/images/145.png new file mode 100644 index 0000000..7325730 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/145.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/146.png b/projects/challange 8/pokedex/v1/pokedex/images/146.png new file mode 100644 index 0000000..b85ed58 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/146.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/147.png b/projects/challange 8/pokedex/v1/pokedex/images/147.png new file mode 100644 index 0000000..60b06dc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/147.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/148.png b/projects/challange 8/pokedex/v1/pokedex/images/148.png new file mode 100644 index 0000000..426feb8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/148.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/149.png b/projects/challange 8/pokedex/v1/pokedex/images/149.png new file mode 100644 index 0000000..ed9b580 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/149.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/15.png b/projects/challange 8/pokedex/v1/pokedex/images/15.png new file mode 100644 index 0000000..c37bd2e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/15.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/150.png b/projects/challange 8/pokedex/v1/pokedex/images/150.png new file mode 100644 index 0000000..6cc7469 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/150.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/151.png b/projects/challange 8/pokedex/v1/pokedex/images/151.png new file mode 100644 index 0000000..e99f365 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/151.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/152.png b/projects/challange 8/pokedex/v1/pokedex/images/152.png new file mode 100644 index 0000000..98b182a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/152.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/153.png b/projects/challange 8/pokedex/v1/pokedex/images/153.png new file mode 100644 index 0000000..18a1edd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/153.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/154.png b/projects/challange 8/pokedex/v1/pokedex/images/154.png new file mode 100644 index 0000000..5fb2fd7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/154.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/155.png b/projects/challange 8/pokedex/v1/pokedex/images/155.png new file mode 100644 index 0000000..5dacf4a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/155.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/156.png b/projects/challange 8/pokedex/v1/pokedex/images/156.png new file mode 100644 index 0000000..61c629e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/156.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/157.png b/projects/challange 8/pokedex/v1/pokedex/images/157.png new file mode 100644 index 0000000..2a99800 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/157.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/158.png b/projects/challange 8/pokedex/v1/pokedex/images/158.png new file mode 100644 index 0000000..0818e31 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/158.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/159.png b/projects/challange 8/pokedex/v1/pokedex/images/159.png new file mode 100644 index 0000000..2c1f24f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/159.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/16.png b/projects/challange 8/pokedex/v1/pokedex/images/16.png new file mode 100644 index 0000000..1fcdebb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/16.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/160.png b/projects/challange 8/pokedex/v1/pokedex/images/160.png new file mode 100644 index 0000000..439c62f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/160.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/161.png b/projects/challange 8/pokedex/v1/pokedex/images/161.png new file mode 100644 index 0000000..2934962 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/161.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/162.png b/projects/challange 8/pokedex/v1/pokedex/images/162.png new file mode 100644 index 0000000..4d6e5e5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/162.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/163.png b/projects/challange 8/pokedex/v1/pokedex/images/163.png new file mode 100644 index 0000000..e003840 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/163.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/164.png b/projects/challange 8/pokedex/v1/pokedex/images/164.png new file mode 100644 index 0000000..7948da4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/164.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/165.png b/projects/challange 8/pokedex/v1/pokedex/images/165.png new file mode 100644 index 0000000..523163f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/165.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/166.png b/projects/challange 8/pokedex/v1/pokedex/images/166.png new file mode 100644 index 0000000..f53237b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/166.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/167.png b/projects/challange 8/pokedex/v1/pokedex/images/167.png new file mode 100644 index 0000000..820569f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/167.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/168.png b/projects/challange 8/pokedex/v1/pokedex/images/168.png new file mode 100644 index 0000000..8cdc992 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/168.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/169.png b/projects/challange 8/pokedex/v1/pokedex/images/169.png new file mode 100644 index 0000000..df0cc71 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/169.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/17.png b/projects/challange 8/pokedex/v1/pokedex/images/17.png new file mode 100644 index 0000000..9c5e9bf Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/17.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/170.png b/projects/challange 8/pokedex/v1/pokedex/images/170.png new file mode 100644 index 0000000..b735988 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/170.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/171.png b/projects/challange 8/pokedex/v1/pokedex/images/171.png new file mode 100644 index 0000000..0267980 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/171.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/172.png b/projects/challange 8/pokedex/v1/pokedex/images/172.png new file mode 100644 index 0000000..40a8e74 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/172.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/173.png b/projects/challange 8/pokedex/v1/pokedex/images/173.png new file mode 100644 index 0000000..cd78dcd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/173.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/174.png b/projects/challange 8/pokedex/v1/pokedex/images/174.png new file mode 100644 index 0000000..198aeb5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/174.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/175.png b/projects/challange 8/pokedex/v1/pokedex/images/175.png new file mode 100644 index 0000000..53d6fc7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/175.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/176.png b/projects/challange 8/pokedex/v1/pokedex/images/176.png new file mode 100644 index 0000000..7153ceb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/176.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/177.png b/projects/challange 8/pokedex/v1/pokedex/images/177.png new file mode 100644 index 0000000..ea1a5cd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/177.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/178.png b/projects/challange 8/pokedex/v1/pokedex/images/178.png new file mode 100644 index 0000000..c774661 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/178.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/179.png b/projects/challange 8/pokedex/v1/pokedex/images/179.png new file mode 100644 index 0000000..2888984 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/179.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/18.png b/projects/challange 8/pokedex/v1/pokedex/images/18.png new file mode 100644 index 0000000..e3ae6c0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/18.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/180.png b/projects/challange 8/pokedex/v1/pokedex/images/180.png new file mode 100644 index 0000000..babf4d5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/180.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/181.png b/projects/challange 8/pokedex/v1/pokedex/images/181.png new file mode 100644 index 0000000..1a3d3e1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/181.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/182.png b/projects/challange 8/pokedex/v1/pokedex/images/182.png new file mode 100644 index 0000000..bfe9b79 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/182.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/183.png b/projects/challange 8/pokedex/v1/pokedex/images/183.png new file mode 100644 index 0000000..0f2bfbd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/183.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/184.png b/projects/challange 8/pokedex/v1/pokedex/images/184.png new file mode 100644 index 0000000..98a8d05 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/184.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/185.png b/projects/challange 8/pokedex/v1/pokedex/images/185.png new file mode 100644 index 0000000..3188a65 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/185.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/186.png b/projects/challange 8/pokedex/v1/pokedex/images/186.png new file mode 100644 index 0000000..925a5d5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/186.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/187.png b/projects/challange 8/pokedex/v1/pokedex/images/187.png new file mode 100644 index 0000000..73125d2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/187.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/188.png b/projects/challange 8/pokedex/v1/pokedex/images/188.png new file mode 100644 index 0000000..2cb03e7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/188.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/189.png b/projects/challange 8/pokedex/v1/pokedex/images/189.png new file mode 100644 index 0000000..3a24fbf Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/189.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/19.png b/projects/challange 8/pokedex/v1/pokedex/images/19.png new file mode 100644 index 0000000..cbf1fb9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/19.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/190.png b/projects/challange 8/pokedex/v1/pokedex/images/190.png new file mode 100644 index 0000000..0e1b6c8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/190.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/191.png b/projects/challange 8/pokedex/v1/pokedex/images/191.png new file mode 100644 index 0000000..482be60 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/191.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/192.png b/projects/challange 8/pokedex/v1/pokedex/images/192.png new file mode 100644 index 0000000..bf4d0d4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/192.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/193.png b/projects/challange 8/pokedex/v1/pokedex/images/193.png new file mode 100644 index 0000000..4939972 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/193.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/194.png b/projects/challange 8/pokedex/v1/pokedex/images/194.png new file mode 100644 index 0000000..40ada8b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/194.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/195.png b/projects/challange 8/pokedex/v1/pokedex/images/195.png new file mode 100644 index 0000000..10213b5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/195.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/196.png b/projects/challange 8/pokedex/v1/pokedex/images/196.png new file mode 100644 index 0000000..3e649bb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/196.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/197.png b/projects/challange 8/pokedex/v1/pokedex/images/197.png new file mode 100644 index 0000000..dad1299 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/197.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/198.png b/projects/challange 8/pokedex/v1/pokedex/images/198.png new file mode 100644 index 0000000..244faaa Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/198.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/199.png b/projects/challange 8/pokedex/v1/pokedex/images/199.png new file mode 100644 index 0000000..7c07fea Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/199.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/2.png b/projects/challange 8/pokedex/v1/pokedex/images/2.png new file mode 100644 index 0000000..bab075e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/2.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/20.png b/projects/challange 8/pokedex/v1/pokedex/images/20.png new file mode 100644 index 0000000..c7ae6f2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/20.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/200.png b/projects/challange 8/pokedex/v1/pokedex/images/200.png new file mode 100644 index 0000000..6c0eb88 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/200.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/201.png b/projects/challange 8/pokedex/v1/pokedex/images/201.png new file mode 100644 index 0000000..d1335e1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/201.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/202.png b/projects/challange 8/pokedex/v1/pokedex/images/202.png new file mode 100644 index 0000000..7efbed1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/202.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/203.png b/projects/challange 8/pokedex/v1/pokedex/images/203.png new file mode 100644 index 0000000..a976e9c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/203.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/204.png b/projects/challange 8/pokedex/v1/pokedex/images/204.png new file mode 100644 index 0000000..e571532 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/204.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/205.png b/projects/challange 8/pokedex/v1/pokedex/images/205.png new file mode 100644 index 0000000..5194425 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/205.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/206.png b/projects/challange 8/pokedex/v1/pokedex/images/206.png new file mode 100644 index 0000000..f6091b5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/206.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/207.png b/projects/challange 8/pokedex/v1/pokedex/images/207.png new file mode 100644 index 0000000..67e9743 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/207.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/208.png b/projects/challange 8/pokedex/v1/pokedex/images/208.png new file mode 100644 index 0000000..a1d8875 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/208.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/209.png b/projects/challange 8/pokedex/v1/pokedex/images/209.png new file mode 100644 index 0000000..cadd553 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/209.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/21.png b/projects/challange 8/pokedex/v1/pokedex/images/21.png new file mode 100644 index 0000000..ace1270 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/21.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/210.png b/projects/challange 8/pokedex/v1/pokedex/images/210.png new file mode 100644 index 0000000..3549bf6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/210.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/211.png b/projects/challange 8/pokedex/v1/pokedex/images/211.png new file mode 100644 index 0000000..a502952 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/211.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/212.png b/projects/challange 8/pokedex/v1/pokedex/images/212.png new file mode 100644 index 0000000..7bd224a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/212.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/213.png b/projects/challange 8/pokedex/v1/pokedex/images/213.png new file mode 100644 index 0000000..85b5495 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/213.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/214.png b/projects/challange 8/pokedex/v1/pokedex/images/214.png new file mode 100644 index 0000000..3b69b9a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/214.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/215.png b/projects/challange 8/pokedex/v1/pokedex/images/215.png new file mode 100644 index 0000000..1eb5fa7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/215.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/216.png b/projects/challange 8/pokedex/v1/pokedex/images/216.png new file mode 100644 index 0000000..b235bbe Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/216.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/217.png b/projects/challange 8/pokedex/v1/pokedex/images/217.png new file mode 100644 index 0000000..3ccf5a0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/217.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/218.png b/projects/challange 8/pokedex/v1/pokedex/images/218.png new file mode 100644 index 0000000..91a7ea4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/218.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/219.png b/projects/challange 8/pokedex/v1/pokedex/images/219.png new file mode 100644 index 0000000..d49643c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/219.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/22.png b/projects/challange 8/pokedex/v1/pokedex/images/22.png new file mode 100644 index 0000000..95be62d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/22.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/220.png b/projects/challange 8/pokedex/v1/pokedex/images/220.png new file mode 100644 index 0000000..e7c7af8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/220.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/221.png b/projects/challange 8/pokedex/v1/pokedex/images/221.png new file mode 100644 index 0000000..ea22409 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/221.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/222.png b/projects/challange 8/pokedex/v1/pokedex/images/222.png new file mode 100644 index 0000000..6fc7f28 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/222.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/223.png b/projects/challange 8/pokedex/v1/pokedex/images/223.png new file mode 100644 index 0000000..7c2a7e7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/223.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/224.png b/projects/challange 8/pokedex/v1/pokedex/images/224.png new file mode 100644 index 0000000..4991c08 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/224.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/225.png b/projects/challange 8/pokedex/v1/pokedex/images/225.png new file mode 100644 index 0000000..1fa9814 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/225.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/226.png b/projects/challange 8/pokedex/v1/pokedex/images/226.png new file mode 100644 index 0000000..04dd11b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/226.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/227.png b/projects/challange 8/pokedex/v1/pokedex/images/227.png new file mode 100644 index 0000000..6364e05 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/227.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/228.png b/projects/challange 8/pokedex/v1/pokedex/images/228.png new file mode 100644 index 0000000..00d75c5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/228.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/229.png b/projects/challange 8/pokedex/v1/pokedex/images/229.png new file mode 100644 index 0000000..77b4c1c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/229.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/23.png b/projects/challange 8/pokedex/v1/pokedex/images/23.png new file mode 100644 index 0000000..ad79a42 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/23.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/230.png b/projects/challange 8/pokedex/v1/pokedex/images/230.png new file mode 100644 index 0000000..35cae5c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/230.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/231.png b/projects/challange 8/pokedex/v1/pokedex/images/231.png new file mode 100644 index 0000000..865a166 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/231.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/232.png b/projects/challange 8/pokedex/v1/pokedex/images/232.png new file mode 100644 index 0000000..b8671d3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/232.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/233.png b/projects/challange 8/pokedex/v1/pokedex/images/233.png new file mode 100644 index 0000000..ca4e42e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/233.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/234.png b/projects/challange 8/pokedex/v1/pokedex/images/234.png new file mode 100644 index 0000000..534d5f8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/234.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/235.png b/projects/challange 8/pokedex/v1/pokedex/images/235.png new file mode 100644 index 0000000..86db16c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/235.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/236.png b/projects/challange 8/pokedex/v1/pokedex/images/236.png new file mode 100644 index 0000000..b0d660d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/236.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/237.png b/projects/challange 8/pokedex/v1/pokedex/images/237.png new file mode 100644 index 0000000..481a8de Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/237.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/238.png b/projects/challange 8/pokedex/v1/pokedex/images/238.png new file mode 100644 index 0000000..3858885 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/238.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/239.png b/projects/challange 8/pokedex/v1/pokedex/images/239.png new file mode 100644 index 0000000..dd7a4e9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/239.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/24.png b/projects/challange 8/pokedex/v1/pokedex/images/24.png new file mode 100644 index 0000000..e30c8f5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/24.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/240.png b/projects/challange 8/pokedex/v1/pokedex/images/240.png new file mode 100644 index 0000000..f6c7981 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/240.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/241.png b/projects/challange 8/pokedex/v1/pokedex/images/241.png new file mode 100644 index 0000000..8630e66 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/241.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/242.png b/projects/challange 8/pokedex/v1/pokedex/images/242.png new file mode 100644 index 0000000..8caa755 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/242.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/243.png b/projects/challange 8/pokedex/v1/pokedex/images/243.png new file mode 100644 index 0000000..cc59ec0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/243.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/244.png b/projects/challange 8/pokedex/v1/pokedex/images/244.png new file mode 100644 index 0000000..c537aab Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/244.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/245.png b/projects/challange 8/pokedex/v1/pokedex/images/245.png new file mode 100644 index 0000000..cff81ee Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/245.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/246.png b/projects/challange 8/pokedex/v1/pokedex/images/246.png new file mode 100644 index 0000000..56f047e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/246.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/247.png b/projects/challange 8/pokedex/v1/pokedex/images/247.png new file mode 100644 index 0000000..d06c16b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/247.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/248.png b/projects/challange 8/pokedex/v1/pokedex/images/248.png new file mode 100644 index 0000000..6aa9434 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/248.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/249.png b/projects/challange 8/pokedex/v1/pokedex/images/249.png new file mode 100644 index 0000000..2ff09c7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/249.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/25.png b/projects/challange 8/pokedex/v1/pokedex/images/25.png new file mode 100644 index 0000000..16c1182 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/25.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/250.png b/projects/challange 8/pokedex/v1/pokedex/images/250.png new file mode 100644 index 0000000..932f99f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/250.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/251.png b/projects/challange 8/pokedex/v1/pokedex/images/251.png new file mode 100644 index 0000000..68bd937 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/251.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/252.png b/projects/challange 8/pokedex/v1/pokedex/images/252.png new file mode 100644 index 0000000..04d7e84 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/252.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/253.png b/projects/challange 8/pokedex/v1/pokedex/images/253.png new file mode 100644 index 0000000..c56a5c7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/253.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/254.png b/projects/challange 8/pokedex/v1/pokedex/images/254.png new file mode 100644 index 0000000..3405519 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/254.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/255.png b/projects/challange 8/pokedex/v1/pokedex/images/255.png new file mode 100644 index 0000000..5054907 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/255.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/256.png b/projects/challange 8/pokedex/v1/pokedex/images/256.png new file mode 100644 index 0000000..c10b580 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/256.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/257.png b/projects/challange 8/pokedex/v1/pokedex/images/257.png new file mode 100644 index 0000000..cb96685 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/257.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/258.png b/projects/challange 8/pokedex/v1/pokedex/images/258.png new file mode 100644 index 0000000..5ceb9c5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/258.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/259.png b/projects/challange 8/pokedex/v1/pokedex/images/259.png new file mode 100644 index 0000000..20e94e4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/259.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/26.png b/projects/challange 8/pokedex/v1/pokedex/images/26.png new file mode 100644 index 0000000..d13b218 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/26.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/260.png b/projects/challange 8/pokedex/v1/pokedex/images/260.png new file mode 100644 index 0000000..70a0860 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/260.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/261.png b/projects/challange 8/pokedex/v1/pokedex/images/261.png new file mode 100644 index 0000000..8379182 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/261.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/262.png b/projects/challange 8/pokedex/v1/pokedex/images/262.png new file mode 100644 index 0000000..9098b32 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/262.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/263.png b/projects/challange 8/pokedex/v1/pokedex/images/263.png new file mode 100644 index 0000000..049a21e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/263.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/264.png b/projects/challange 8/pokedex/v1/pokedex/images/264.png new file mode 100644 index 0000000..772b79f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/264.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/265.png b/projects/challange 8/pokedex/v1/pokedex/images/265.png new file mode 100644 index 0000000..7322e9e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/265.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/266.png b/projects/challange 8/pokedex/v1/pokedex/images/266.png new file mode 100644 index 0000000..b15085b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/266.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/267.png b/projects/challange 8/pokedex/v1/pokedex/images/267.png new file mode 100644 index 0000000..246c38a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/267.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/268.png b/projects/challange 8/pokedex/v1/pokedex/images/268.png new file mode 100644 index 0000000..3912f03 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/268.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/269.png b/projects/challange 8/pokedex/v1/pokedex/images/269.png new file mode 100644 index 0000000..7d2d366 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/269.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/27.png b/projects/challange 8/pokedex/v1/pokedex/images/27.png new file mode 100644 index 0000000..793a327 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/27.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/270.png b/projects/challange 8/pokedex/v1/pokedex/images/270.png new file mode 100644 index 0000000..880434c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/270.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/271.png b/projects/challange 8/pokedex/v1/pokedex/images/271.png new file mode 100644 index 0000000..5665e84 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/271.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/272.png b/projects/challange 8/pokedex/v1/pokedex/images/272.png new file mode 100644 index 0000000..30eba3d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/272.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/273.png b/projects/challange 8/pokedex/v1/pokedex/images/273.png new file mode 100644 index 0000000..f533e34 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/273.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/274.png b/projects/challange 8/pokedex/v1/pokedex/images/274.png new file mode 100644 index 0000000..1b2908c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/274.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/275.png b/projects/challange 8/pokedex/v1/pokedex/images/275.png new file mode 100644 index 0000000..b769608 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/275.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/276.png b/projects/challange 8/pokedex/v1/pokedex/images/276.png new file mode 100644 index 0000000..ece91ec Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/276.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/277.png b/projects/challange 8/pokedex/v1/pokedex/images/277.png new file mode 100644 index 0000000..2e6db30 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/277.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/278.png b/projects/challange 8/pokedex/v1/pokedex/images/278.png new file mode 100644 index 0000000..b9e1b3a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/278.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/279.png b/projects/challange 8/pokedex/v1/pokedex/images/279.png new file mode 100644 index 0000000..1e64edd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/279.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/28.png b/projects/challange 8/pokedex/v1/pokedex/images/28.png new file mode 100644 index 0000000..e227e26 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/28.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/280.png b/projects/challange 8/pokedex/v1/pokedex/images/280.png new file mode 100644 index 0000000..ae079f4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/280.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/281.png b/projects/challange 8/pokedex/v1/pokedex/images/281.png new file mode 100644 index 0000000..0bfe5b0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/281.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/282.png b/projects/challange 8/pokedex/v1/pokedex/images/282.png new file mode 100644 index 0000000..ecc763f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/282.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/283.png b/projects/challange 8/pokedex/v1/pokedex/images/283.png new file mode 100644 index 0000000..58e6a51 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/283.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/284.png b/projects/challange 8/pokedex/v1/pokedex/images/284.png new file mode 100644 index 0000000..b2a43ef Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/284.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/285.png b/projects/challange 8/pokedex/v1/pokedex/images/285.png new file mode 100644 index 0000000..3004dc4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/285.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/286.png b/projects/challange 8/pokedex/v1/pokedex/images/286.png new file mode 100644 index 0000000..45704d9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/286.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/287.png b/projects/challange 8/pokedex/v1/pokedex/images/287.png new file mode 100644 index 0000000..76bbe7a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/287.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/288.png b/projects/challange 8/pokedex/v1/pokedex/images/288.png new file mode 100644 index 0000000..e1fb6a0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/288.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/289.png b/projects/challange 8/pokedex/v1/pokedex/images/289.png new file mode 100644 index 0000000..3709223 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/289.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/29.png b/projects/challange 8/pokedex/v1/pokedex/images/29.png new file mode 100644 index 0000000..752c033 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/29.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/290.png b/projects/challange 8/pokedex/v1/pokedex/images/290.png new file mode 100644 index 0000000..c5c15cb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/290.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/291.png b/projects/challange 8/pokedex/v1/pokedex/images/291.png new file mode 100644 index 0000000..97e1d7e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/291.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/292.png b/projects/challange 8/pokedex/v1/pokedex/images/292.png new file mode 100644 index 0000000..ae8554c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/292.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/293.png b/projects/challange 8/pokedex/v1/pokedex/images/293.png new file mode 100644 index 0000000..7d6b6a6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/293.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/294.png b/projects/challange 8/pokedex/v1/pokedex/images/294.png new file mode 100644 index 0000000..1377939 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/294.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/295.png b/projects/challange 8/pokedex/v1/pokedex/images/295.png new file mode 100644 index 0000000..13a2ead Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/295.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/296.png b/projects/challange 8/pokedex/v1/pokedex/images/296.png new file mode 100644 index 0000000..29b1ad6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/296.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/297.png b/projects/challange 8/pokedex/v1/pokedex/images/297.png new file mode 100644 index 0000000..26ef621 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/297.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/298.png b/projects/challange 8/pokedex/v1/pokedex/images/298.png new file mode 100644 index 0000000..d69da15 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/298.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/299.png b/projects/challange 8/pokedex/v1/pokedex/images/299.png new file mode 100644 index 0000000..ebf5ca7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/299.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/3.png b/projects/challange 8/pokedex/v1/pokedex/images/3.png new file mode 100644 index 0000000..969dae8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/3.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/30.png b/projects/challange 8/pokedex/v1/pokedex/images/30.png new file mode 100644 index 0000000..593a914 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/30.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/300.png b/projects/challange 8/pokedex/v1/pokedex/images/300.png new file mode 100644 index 0000000..694f9f9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/300.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/301.png b/projects/challange 8/pokedex/v1/pokedex/images/301.png new file mode 100644 index 0000000..8975f00 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/301.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/302.png b/projects/challange 8/pokedex/v1/pokedex/images/302.png new file mode 100644 index 0000000..0fe02b8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/302.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/303.png b/projects/challange 8/pokedex/v1/pokedex/images/303.png new file mode 100644 index 0000000..7c2b3f3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/303.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/304.png b/projects/challange 8/pokedex/v1/pokedex/images/304.png new file mode 100644 index 0000000..78f51fb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/304.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/305.png b/projects/challange 8/pokedex/v1/pokedex/images/305.png new file mode 100644 index 0000000..7ecbc75 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/305.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/306.png b/projects/challange 8/pokedex/v1/pokedex/images/306.png new file mode 100644 index 0000000..02622f2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/306.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/307.png b/projects/challange 8/pokedex/v1/pokedex/images/307.png new file mode 100644 index 0000000..a9bdb91 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/307.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/308.png b/projects/challange 8/pokedex/v1/pokedex/images/308.png new file mode 100644 index 0000000..12065a4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/308.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/309.png b/projects/challange 8/pokedex/v1/pokedex/images/309.png new file mode 100644 index 0000000..d4e4824 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/309.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/31.png b/projects/challange 8/pokedex/v1/pokedex/images/31.png new file mode 100644 index 0000000..558b6c7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/31.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/310.png b/projects/challange 8/pokedex/v1/pokedex/images/310.png new file mode 100644 index 0000000..a399c91 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/310.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/311.png b/projects/challange 8/pokedex/v1/pokedex/images/311.png new file mode 100644 index 0000000..0636c75 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/311.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/312.png b/projects/challange 8/pokedex/v1/pokedex/images/312.png new file mode 100644 index 0000000..366f8b7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/312.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/313.png b/projects/challange 8/pokedex/v1/pokedex/images/313.png new file mode 100644 index 0000000..1a256bd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/313.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/314.png b/projects/challange 8/pokedex/v1/pokedex/images/314.png new file mode 100644 index 0000000..15e2a2b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/314.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/315.png b/projects/challange 8/pokedex/v1/pokedex/images/315.png new file mode 100644 index 0000000..f3939c5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/315.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/316.png b/projects/challange 8/pokedex/v1/pokedex/images/316.png new file mode 100644 index 0000000..d6280c9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/316.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/317.png b/projects/challange 8/pokedex/v1/pokedex/images/317.png new file mode 100644 index 0000000..4e111fd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/317.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/318.png b/projects/challange 8/pokedex/v1/pokedex/images/318.png new file mode 100644 index 0000000..cf79d82 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/318.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/319.png b/projects/challange 8/pokedex/v1/pokedex/images/319.png new file mode 100644 index 0000000..bdad393 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/319.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/32.png b/projects/challange 8/pokedex/v1/pokedex/images/32.png new file mode 100644 index 0000000..fb7ecf7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/32.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/320.png b/projects/challange 8/pokedex/v1/pokedex/images/320.png new file mode 100644 index 0000000..dd0a66f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/320.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/321.png b/projects/challange 8/pokedex/v1/pokedex/images/321.png new file mode 100644 index 0000000..96db060 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/321.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/322.png b/projects/challange 8/pokedex/v1/pokedex/images/322.png new file mode 100644 index 0000000..1cf97dd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/322.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/323.png b/projects/challange 8/pokedex/v1/pokedex/images/323.png new file mode 100644 index 0000000..9a765c9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/323.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/324.png b/projects/challange 8/pokedex/v1/pokedex/images/324.png new file mode 100644 index 0000000..8549b0f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/324.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/325.png b/projects/challange 8/pokedex/v1/pokedex/images/325.png new file mode 100644 index 0000000..3f68778 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/325.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/326.png b/projects/challange 8/pokedex/v1/pokedex/images/326.png new file mode 100644 index 0000000..b7428b8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/326.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/327.png b/projects/challange 8/pokedex/v1/pokedex/images/327.png new file mode 100644 index 0000000..bc8e609 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/327.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/328.png b/projects/challange 8/pokedex/v1/pokedex/images/328.png new file mode 100644 index 0000000..26fc44f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/328.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/329.png b/projects/challange 8/pokedex/v1/pokedex/images/329.png new file mode 100644 index 0000000..aead94a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/329.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/33.png b/projects/challange 8/pokedex/v1/pokedex/images/33.png new file mode 100644 index 0000000..59eab38 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/33.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/330.png b/projects/challange 8/pokedex/v1/pokedex/images/330.png new file mode 100644 index 0000000..5618208 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/330.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/331.png b/projects/challange 8/pokedex/v1/pokedex/images/331.png new file mode 100644 index 0000000..258e40a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/331.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/332.png b/projects/challange 8/pokedex/v1/pokedex/images/332.png new file mode 100644 index 0000000..baa84e1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/332.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/333.png b/projects/challange 8/pokedex/v1/pokedex/images/333.png new file mode 100644 index 0000000..e5fa240 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/333.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/334.png b/projects/challange 8/pokedex/v1/pokedex/images/334.png new file mode 100644 index 0000000..7734c1b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/334.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/335.png b/projects/challange 8/pokedex/v1/pokedex/images/335.png new file mode 100644 index 0000000..21f61bc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/335.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/336.png b/projects/challange 8/pokedex/v1/pokedex/images/336.png new file mode 100644 index 0000000..101b04c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/336.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/337.png b/projects/challange 8/pokedex/v1/pokedex/images/337.png new file mode 100644 index 0000000..0866140 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/337.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/338.png b/projects/challange 8/pokedex/v1/pokedex/images/338.png new file mode 100644 index 0000000..8414d25 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/338.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/339.png b/projects/challange 8/pokedex/v1/pokedex/images/339.png new file mode 100644 index 0000000..8aad47a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/339.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/34.png b/projects/challange 8/pokedex/v1/pokedex/images/34.png new file mode 100644 index 0000000..d8a9686 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/34.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/340.png b/projects/challange 8/pokedex/v1/pokedex/images/340.png new file mode 100644 index 0000000..ff00914 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/340.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/341.png b/projects/challange 8/pokedex/v1/pokedex/images/341.png new file mode 100644 index 0000000..9dd5b1a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/341.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/342.png b/projects/challange 8/pokedex/v1/pokedex/images/342.png new file mode 100644 index 0000000..2732f77 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/342.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/343.png b/projects/challange 8/pokedex/v1/pokedex/images/343.png new file mode 100644 index 0000000..cc54cab Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/343.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/344.png b/projects/challange 8/pokedex/v1/pokedex/images/344.png new file mode 100644 index 0000000..4c5600f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/344.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/345.png b/projects/challange 8/pokedex/v1/pokedex/images/345.png new file mode 100644 index 0000000..b0f901a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/345.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/346.png b/projects/challange 8/pokedex/v1/pokedex/images/346.png new file mode 100644 index 0000000..7b07b6c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/346.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/347.png b/projects/challange 8/pokedex/v1/pokedex/images/347.png new file mode 100644 index 0000000..9ba725a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/347.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/348.png b/projects/challange 8/pokedex/v1/pokedex/images/348.png new file mode 100644 index 0000000..eb3b322 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/348.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/349.png b/projects/challange 8/pokedex/v1/pokedex/images/349.png new file mode 100644 index 0000000..f351ac0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/349.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/35.png b/projects/challange 8/pokedex/v1/pokedex/images/35.png new file mode 100644 index 0000000..fb33cd8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/35.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/350.png b/projects/challange 8/pokedex/v1/pokedex/images/350.png new file mode 100644 index 0000000..7c88259 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/350.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/351.png b/projects/challange 8/pokedex/v1/pokedex/images/351.png new file mode 100644 index 0000000..4dd48e8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/351.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/352.png b/projects/challange 8/pokedex/v1/pokedex/images/352.png new file mode 100644 index 0000000..ae3283c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/352.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/353.png b/projects/challange 8/pokedex/v1/pokedex/images/353.png new file mode 100644 index 0000000..92eadd2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/353.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/354.png b/projects/challange 8/pokedex/v1/pokedex/images/354.png new file mode 100644 index 0000000..fe95ef5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/354.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/355.png b/projects/challange 8/pokedex/v1/pokedex/images/355.png new file mode 100644 index 0000000..0176d9d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/355.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/356.png b/projects/challange 8/pokedex/v1/pokedex/images/356.png new file mode 100644 index 0000000..42b740a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/356.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/357.png b/projects/challange 8/pokedex/v1/pokedex/images/357.png new file mode 100644 index 0000000..7b32690 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/357.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/358.png b/projects/challange 8/pokedex/v1/pokedex/images/358.png new file mode 100644 index 0000000..989b9c1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/358.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/359.png b/projects/challange 8/pokedex/v1/pokedex/images/359.png new file mode 100644 index 0000000..2c4d5ab Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/359.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/36.png b/projects/challange 8/pokedex/v1/pokedex/images/36.png new file mode 100644 index 0000000..696421d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/36.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/360.png b/projects/challange 8/pokedex/v1/pokedex/images/360.png new file mode 100644 index 0000000..c66191c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/360.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/361.png b/projects/challange 8/pokedex/v1/pokedex/images/361.png new file mode 100644 index 0000000..97ea980 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/361.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/362.png b/projects/challange 8/pokedex/v1/pokedex/images/362.png new file mode 100644 index 0000000..df44d57 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/362.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/363.png b/projects/challange 8/pokedex/v1/pokedex/images/363.png new file mode 100644 index 0000000..f4fb133 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/363.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/364.png b/projects/challange 8/pokedex/v1/pokedex/images/364.png new file mode 100644 index 0000000..37eb94f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/364.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/365.png b/projects/challange 8/pokedex/v1/pokedex/images/365.png new file mode 100644 index 0000000..0358301 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/365.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/366.png b/projects/challange 8/pokedex/v1/pokedex/images/366.png new file mode 100644 index 0000000..8f69bbb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/366.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/367.png b/projects/challange 8/pokedex/v1/pokedex/images/367.png new file mode 100644 index 0000000..e8f3f99 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/367.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/368.png b/projects/challange 8/pokedex/v1/pokedex/images/368.png new file mode 100644 index 0000000..7d1f248 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/368.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/369.png b/projects/challange 8/pokedex/v1/pokedex/images/369.png new file mode 100644 index 0000000..538f137 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/369.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/37.png b/projects/challange 8/pokedex/v1/pokedex/images/37.png new file mode 100644 index 0000000..50ee946 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/37.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/370.png b/projects/challange 8/pokedex/v1/pokedex/images/370.png new file mode 100644 index 0000000..33d5e20 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/370.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/371.png b/projects/challange 8/pokedex/v1/pokedex/images/371.png new file mode 100644 index 0000000..e118bca Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/371.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/372.png b/projects/challange 8/pokedex/v1/pokedex/images/372.png new file mode 100644 index 0000000..1f797a4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/372.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/373.png b/projects/challange 8/pokedex/v1/pokedex/images/373.png new file mode 100644 index 0000000..875a192 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/373.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/374.png b/projects/challange 8/pokedex/v1/pokedex/images/374.png new file mode 100644 index 0000000..eb1603d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/374.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/375.png b/projects/challange 8/pokedex/v1/pokedex/images/375.png new file mode 100644 index 0000000..5644a84 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/375.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/376.png b/projects/challange 8/pokedex/v1/pokedex/images/376.png new file mode 100644 index 0000000..b6c6e93 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/376.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/377.png b/projects/challange 8/pokedex/v1/pokedex/images/377.png new file mode 100644 index 0000000..ddd6245 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/377.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/378.png b/projects/challange 8/pokedex/v1/pokedex/images/378.png new file mode 100644 index 0000000..6b42033 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/378.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/379.png b/projects/challange 8/pokedex/v1/pokedex/images/379.png new file mode 100644 index 0000000..52bd979 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/379.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/38.png b/projects/challange 8/pokedex/v1/pokedex/images/38.png new file mode 100644 index 0000000..4c27925 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/38.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/380.png b/projects/challange 8/pokedex/v1/pokedex/images/380.png new file mode 100644 index 0000000..9408eeb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/380.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/381.png b/projects/challange 8/pokedex/v1/pokedex/images/381.png new file mode 100644 index 0000000..8cc0f4a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/381.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/382.png b/projects/challange 8/pokedex/v1/pokedex/images/382.png new file mode 100644 index 0000000..d529d56 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/382.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/383.png b/projects/challange 8/pokedex/v1/pokedex/images/383.png new file mode 100644 index 0000000..eda0a06 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/383.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/384.png b/projects/challange 8/pokedex/v1/pokedex/images/384.png new file mode 100644 index 0000000..2306f2c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/384.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/385.png b/projects/challange 8/pokedex/v1/pokedex/images/385.png new file mode 100644 index 0000000..c45ad14 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/385.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/386.png b/projects/challange 8/pokedex/v1/pokedex/images/386.png new file mode 100644 index 0000000..650d960 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/386.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/387.png b/projects/challange 8/pokedex/v1/pokedex/images/387.png new file mode 100644 index 0000000..004e424 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/387.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/388.png b/projects/challange 8/pokedex/v1/pokedex/images/388.png new file mode 100644 index 0000000..cb33df2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/388.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/389.png b/projects/challange 8/pokedex/v1/pokedex/images/389.png new file mode 100644 index 0000000..8909ee0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/389.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/39.png b/projects/challange 8/pokedex/v1/pokedex/images/39.png new file mode 100644 index 0000000..6dc8041 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/39.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/390.png b/projects/challange 8/pokedex/v1/pokedex/images/390.png new file mode 100644 index 0000000..6bf229f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/390.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/391.png b/projects/challange 8/pokedex/v1/pokedex/images/391.png new file mode 100644 index 0000000..b944036 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/391.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/392.png b/projects/challange 8/pokedex/v1/pokedex/images/392.png new file mode 100644 index 0000000..d2c1cb9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/392.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/393.png b/projects/challange 8/pokedex/v1/pokedex/images/393.png new file mode 100644 index 0000000..efdb7ac Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/393.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/394.png b/projects/challange 8/pokedex/v1/pokedex/images/394.png new file mode 100644 index 0000000..cf57947 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/394.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/395.png b/projects/challange 8/pokedex/v1/pokedex/images/395.png new file mode 100644 index 0000000..9fa3cfd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/395.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/396.png b/projects/challange 8/pokedex/v1/pokedex/images/396.png new file mode 100644 index 0000000..c8e8980 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/396.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/397.png b/projects/challange 8/pokedex/v1/pokedex/images/397.png new file mode 100644 index 0000000..64c9d9b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/397.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/398.png b/projects/challange 8/pokedex/v1/pokedex/images/398.png new file mode 100644 index 0000000..bf89d7c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/398.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/399.png b/projects/challange 8/pokedex/v1/pokedex/images/399.png new file mode 100644 index 0000000..085cbe6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/399.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/4.png b/projects/challange 8/pokedex/v1/pokedex/images/4.png new file mode 100644 index 0000000..6b91d79 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/4.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/40.png b/projects/challange 8/pokedex/v1/pokedex/images/40.png new file mode 100644 index 0000000..abd7487 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/40.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/400.png b/projects/challange 8/pokedex/v1/pokedex/images/400.png new file mode 100644 index 0000000..580ea45 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/400.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/401.png b/projects/challange 8/pokedex/v1/pokedex/images/401.png new file mode 100644 index 0000000..5f1ccbf Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/401.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/402.png b/projects/challange 8/pokedex/v1/pokedex/images/402.png new file mode 100644 index 0000000..cf59a5a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/402.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/403.png b/projects/challange 8/pokedex/v1/pokedex/images/403.png new file mode 100644 index 0000000..9a7d89f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/403.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/404.png b/projects/challange 8/pokedex/v1/pokedex/images/404.png new file mode 100644 index 0000000..37aff26 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/404.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/405.png b/projects/challange 8/pokedex/v1/pokedex/images/405.png new file mode 100644 index 0000000..e65f5b2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/405.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/406.png b/projects/challange 8/pokedex/v1/pokedex/images/406.png new file mode 100644 index 0000000..c3ad6df Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/406.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/407.png b/projects/challange 8/pokedex/v1/pokedex/images/407.png new file mode 100644 index 0000000..f1bb938 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/407.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/408.png b/projects/challange 8/pokedex/v1/pokedex/images/408.png new file mode 100644 index 0000000..54e5c6e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/408.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/409.png b/projects/challange 8/pokedex/v1/pokedex/images/409.png new file mode 100644 index 0000000..141a8b2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/409.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/41.png b/projects/challange 8/pokedex/v1/pokedex/images/41.png new file mode 100644 index 0000000..efc69db Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/41.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/410.png b/projects/challange 8/pokedex/v1/pokedex/images/410.png new file mode 100644 index 0000000..774507c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/410.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/411.png b/projects/challange 8/pokedex/v1/pokedex/images/411.png new file mode 100644 index 0000000..1c969bb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/411.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/412.png b/projects/challange 8/pokedex/v1/pokedex/images/412.png new file mode 100644 index 0000000..6e48ba4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/412.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/413.png b/projects/challange 8/pokedex/v1/pokedex/images/413.png new file mode 100644 index 0000000..fa4b96a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/413.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/414.png b/projects/challange 8/pokedex/v1/pokedex/images/414.png new file mode 100644 index 0000000..7a1337a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/414.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/415.png b/projects/challange 8/pokedex/v1/pokedex/images/415.png new file mode 100644 index 0000000..2a6de4f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/415.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/416.png b/projects/challange 8/pokedex/v1/pokedex/images/416.png new file mode 100644 index 0000000..35b3d76 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/416.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/417.png b/projects/challange 8/pokedex/v1/pokedex/images/417.png new file mode 100644 index 0000000..311d783 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/417.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/418.png b/projects/challange 8/pokedex/v1/pokedex/images/418.png new file mode 100644 index 0000000..bb57c68 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/418.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/419.png b/projects/challange 8/pokedex/v1/pokedex/images/419.png new file mode 100644 index 0000000..68d078e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/419.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/42.png b/projects/challange 8/pokedex/v1/pokedex/images/42.png new file mode 100644 index 0000000..f71f7a5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/42.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/420.png b/projects/challange 8/pokedex/v1/pokedex/images/420.png new file mode 100644 index 0000000..324332f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/420.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/421.png b/projects/challange 8/pokedex/v1/pokedex/images/421.png new file mode 100644 index 0000000..d923fd4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/421.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/422.png b/projects/challange 8/pokedex/v1/pokedex/images/422.png new file mode 100644 index 0000000..2fd5324 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/422.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/423.png b/projects/challange 8/pokedex/v1/pokedex/images/423.png new file mode 100644 index 0000000..5e6a9b9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/423.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/424.png b/projects/challange 8/pokedex/v1/pokedex/images/424.png new file mode 100644 index 0000000..f3689e3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/424.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/425.png b/projects/challange 8/pokedex/v1/pokedex/images/425.png new file mode 100644 index 0000000..90bebb7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/425.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/426.png b/projects/challange 8/pokedex/v1/pokedex/images/426.png new file mode 100644 index 0000000..a5e2361 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/426.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/427.png b/projects/challange 8/pokedex/v1/pokedex/images/427.png new file mode 100644 index 0000000..9cab756 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/427.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/428.png b/projects/challange 8/pokedex/v1/pokedex/images/428.png new file mode 100644 index 0000000..939f466 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/428.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/429.png b/projects/challange 8/pokedex/v1/pokedex/images/429.png new file mode 100644 index 0000000..7d0b436 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/429.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/43.png b/projects/challange 8/pokedex/v1/pokedex/images/43.png new file mode 100644 index 0000000..38a3f71 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/43.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/430.png b/projects/challange 8/pokedex/v1/pokedex/images/430.png new file mode 100644 index 0000000..d49196a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/430.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/431.png b/projects/challange 8/pokedex/v1/pokedex/images/431.png new file mode 100644 index 0000000..51fcb67 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/431.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/432.png b/projects/challange 8/pokedex/v1/pokedex/images/432.png new file mode 100644 index 0000000..0ed60cf Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/432.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/433.png b/projects/challange 8/pokedex/v1/pokedex/images/433.png new file mode 100644 index 0000000..848b345 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/433.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/434.png b/projects/challange 8/pokedex/v1/pokedex/images/434.png new file mode 100644 index 0000000..29f6c29 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/434.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/435.png b/projects/challange 8/pokedex/v1/pokedex/images/435.png new file mode 100644 index 0000000..8c57aad Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/435.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/436.png b/projects/challange 8/pokedex/v1/pokedex/images/436.png new file mode 100644 index 0000000..f38be31 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/436.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/437.png b/projects/challange 8/pokedex/v1/pokedex/images/437.png new file mode 100644 index 0000000..33094e5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/437.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/438.png b/projects/challange 8/pokedex/v1/pokedex/images/438.png new file mode 100644 index 0000000..204dbf2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/438.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/439.png b/projects/challange 8/pokedex/v1/pokedex/images/439.png new file mode 100644 index 0000000..cd689ac Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/439.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/44.png b/projects/challange 8/pokedex/v1/pokedex/images/44.png new file mode 100644 index 0000000..d051c44 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/44.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/440.png b/projects/challange 8/pokedex/v1/pokedex/images/440.png new file mode 100644 index 0000000..4bba828 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/440.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/441.png b/projects/challange 8/pokedex/v1/pokedex/images/441.png new file mode 100644 index 0000000..6afab51 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/441.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/442.png b/projects/challange 8/pokedex/v1/pokedex/images/442.png new file mode 100644 index 0000000..4542f7c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/442.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/443.png b/projects/challange 8/pokedex/v1/pokedex/images/443.png new file mode 100644 index 0000000..a2aef1a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/443.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/444.png b/projects/challange 8/pokedex/v1/pokedex/images/444.png new file mode 100644 index 0000000..02fe4cf Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/444.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/445.png b/projects/challange 8/pokedex/v1/pokedex/images/445.png new file mode 100644 index 0000000..5ab8b88 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/445.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/446.png b/projects/challange 8/pokedex/v1/pokedex/images/446.png new file mode 100644 index 0000000..598db82 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/446.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/447.png b/projects/challange 8/pokedex/v1/pokedex/images/447.png new file mode 100644 index 0000000..2842d5c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/447.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/448.png b/projects/challange 8/pokedex/v1/pokedex/images/448.png new file mode 100644 index 0000000..ccfcc50 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/448.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/449.png b/projects/challange 8/pokedex/v1/pokedex/images/449.png new file mode 100644 index 0000000..70ebf64 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/449.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/45.png b/projects/challange 8/pokedex/v1/pokedex/images/45.png new file mode 100644 index 0000000..0118cf6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/45.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/450.png b/projects/challange 8/pokedex/v1/pokedex/images/450.png new file mode 100644 index 0000000..ef4c92a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/450.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/451.png b/projects/challange 8/pokedex/v1/pokedex/images/451.png new file mode 100644 index 0000000..5922361 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/451.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/452.png b/projects/challange 8/pokedex/v1/pokedex/images/452.png new file mode 100644 index 0000000..e2bd9a0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/452.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/453.png b/projects/challange 8/pokedex/v1/pokedex/images/453.png new file mode 100644 index 0000000..61aeb02 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/453.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/454.png b/projects/challange 8/pokedex/v1/pokedex/images/454.png new file mode 100644 index 0000000..ee86e2a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/454.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/455.png b/projects/challange 8/pokedex/v1/pokedex/images/455.png new file mode 100644 index 0000000..d19c585 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/455.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/456.png b/projects/challange 8/pokedex/v1/pokedex/images/456.png new file mode 100644 index 0000000..d72c9f6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/456.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/457.png b/projects/challange 8/pokedex/v1/pokedex/images/457.png new file mode 100644 index 0000000..c7f4a52 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/457.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/458.png b/projects/challange 8/pokedex/v1/pokedex/images/458.png new file mode 100644 index 0000000..042a3aa Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/458.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/459.png b/projects/challange 8/pokedex/v1/pokedex/images/459.png new file mode 100644 index 0000000..c68da71 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/459.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/46.png b/projects/challange 8/pokedex/v1/pokedex/images/46.png new file mode 100644 index 0000000..87258e3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/46.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/460.png b/projects/challange 8/pokedex/v1/pokedex/images/460.png new file mode 100644 index 0000000..55fc212 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/460.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/461.png b/projects/challange 8/pokedex/v1/pokedex/images/461.png new file mode 100644 index 0000000..26ac840 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/461.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/462.png b/projects/challange 8/pokedex/v1/pokedex/images/462.png new file mode 100644 index 0000000..24bb120 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/462.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/463.png b/projects/challange 8/pokedex/v1/pokedex/images/463.png new file mode 100644 index 0000000..9c6152a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/463.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/464.png b/projects/challange 8/pokedex/v1/pokedex/images/464.png new file mode 100644 index 0000000..3717d4f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/464.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/465.png b/projects/challange 8/pokedex/v1/pokedex/images/465.png new file mode 100644 index 0000000..bd16197 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/465.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/466.png b/projects/challange 8/pokedex/v1/pokedex/images/466.png new file mode 100644 index 0000000..7a973ff Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/466.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/467.png b/projects/challange 8/pokedex/v1/pokedex/images/467.png new file mode 100644 index 0000000..622a16d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/467.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/468.png b/projects/challange 8/pokedex/v1/pokedex/images/468.png new file mode 100644 index 0000000..e44cdfd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/468.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/469.png b/projects/challange 8/pokedex/v1/pokedex/images/469.png new file mode 100644 index 0000000..010fb1d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/469.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/47.png b/projects/challange 8/pokedex/v1/pokedex/images/47.png new file mode 100644 index 0000000..e9b96ca Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/47.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/470.png b/projects/challange 8/pokedex/v1/pokedex/images/470.png new file mode 100644 index 0000000..11996d1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/470.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/471.png b/projects/challange 8/pokedex/v1/pokedex/images/471.png new file mode 100644 index 0000000..311f03c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/471.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/472.png b/projects/challange 8/pokedex/v1/pokedex/images/472.png new file mode 100644 index 0000000..d748ce7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/472.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/473.png b/projects/challange 8/pokedex/v1/pokedex/images/473.png new file mode 100644 index 0000000..8b9a309 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/473.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/474.png b/projects/challange 8/pokedex/v1/pokedex/images/474.png new file mode 100644 index 0000000..f25065f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/474.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/475.png b/projects/challange 8/pokedex/v1/pokedex/images/475.png new file mode 100644 index 0000000..e4b2094 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/475.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/476.png b/projects/challange 8/pokedex/v1/pokedex/images/476.png new file mode 100644 index 0000000..fe8bf71 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/476.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/477.png b/projects/challange 8/pokedex/v1/pokedex/images/477.png new file mode 100644 index 0000000..15307ac Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/477.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/478.png b/projects/challange 8/pokedex/v1/pokedex/images/478.png new file mode 100644 index 0000000..581a1de Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/478.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/479.png b/projects/challange 8/pokedex/v1/pokedex/images/479.png new file mode 100644 index 0000000..1cbe0a4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/479.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/48.png b/projects/challange 8/pokedex/v1/pokedex/images/48.png new file mode 100644 index 0000000..0eb9d07 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/48.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/480.png b/projects/challange 8/pokedex/v1/pokedex/images/480.png new file mode 100644 index 0000000..899a55b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/480.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/481.png b/projects/challange 8/pokedex/v1/pokedex/images/481.png new file mode 100644 index 0000000..ad60160 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/481.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/482.png b/projects/challange 8/pokedex/v1/pokedex/images/482.png new file mode 100644 index 0000000..7689b5a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/482.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/483.png b/projects/challange 8/pokedex/v1/pokedex/images/483.png new file mode 100644 index 0000000..9f7b016 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/483.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/484.png b/projects/challange 8/pokedex/v1/pokedex/images/484.png new file mode 100644 index 0000000..fa88f58 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/484.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/485.png b/projects/challange 8/pokedex/v1/pokedex/images/485.png new file mode 100644 index 0000000..0407667 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/485.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/486.png b/projects/challange 8/pokedex/v1/pokedex/images/486.png new file mode 100644 index 0000000..76c0713 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/486.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/487.png b/projects/challange 8/pokedex/v1/pokedex/images/487.png new file mode 100644 index 0000000..eba2655 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/487.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/488.png b/projects/challange 8/pokedex/v1/pokedex/images/488.png new file mode 100644 index 0000000..389858b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/488.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/489.png b/projects/challange 8/pokedex/v1/pokedex/images/489.png new file mode 100644 index 0000000..71ee51e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/489.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/49.png b/projects/challange 8/pokedex/v1/pokedex/images/49.png new file mode 100644 index 0000000..6eccb74 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/49.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/490.png b/projects/challange 8/pokedex/v1/pokedex/images/490.png new file mode 100644 index 0000000..cdb564b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/490.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/491.png b/projects/challange 8/pokedex/v1/pokedex/images/491.png new file mode 100644 index 0000000..afe9ce5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/491.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/492.png b/projects/challange 8/pokedex/v1/pokedex/images/492.png new file mode 100644 index 0000000..69a61e8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/492.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/493.png b/projects/challange 8/pokedex/v1/pokedex/images/493.png new file mode 100644 index 0000000..4e35ea7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/493.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/494.png b/projects/challange 8/pokedex/v1/pokedex/images/494.png new file mode 100644 index 0000000..e5a5c54 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/494.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/495.png b/projects/challange 8/pokedex/v1/pokedex/images/495.png new file mode 100644 index 0000000..2875f11 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/495.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/496.png b/projects/challange 8/pokedex/v1/pokedex/images/496.png new file mode 100644 index 0000000..388c36b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/496.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/497.png b/projects/challange 8/pokedex/v1/pokedex/images/497.png new file mode 100644 index 0000000..5ccac55 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/497.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/498.png b/projects/challange 8/pokedex/v1/pokedex/images/498.png new file mode 100644 index 0000000..0219b63 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/498.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/499.png b/projects/challange 8/pokedex/v1/pokedex/images/499.png new file mode 100644 index 0000000..dca43ce Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/499.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/5.png b/projects/challange 8/pokedex/v1/pokedex/images/5.png new file mode 100644 index 0000000..8bf5151 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/5.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/50.png b/projects/challange 8/pokedex/v1/pokedex/images/50.png new file mode 100644 index 0000000..fc3e813 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/50.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/500.png b/projects/challange 8/pokedex/v1/pokedex/images/500.png new file mode 100644 index 0000000..8111918 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/500.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/501.png b/projects/challange 8/pokedex/v1/pokedex/images/501.png new file mode 100644 index 0000000..07a07d6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/501.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/502.png b/projects/challange 8/pokedex/v1/pokedex/images/502.png new file mode 100644 index 0000000..6dd035b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/502.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/503.png b/projects/challange 8/pokedex/v1/pokedex/images/503.png new file mode 100644 index 0000000..bc85145 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/503.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/504.png b/projects/challange 8/pokedex/v1/pokedex/images/504.png new file mode 100644 index 0000000..685df5b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/504.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/505.png b/projects/challange 8/pokedex/v1/pokedex/images/505.png new file mode 100644 index 0000000..1874359 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/505.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/506.png b/projects/challange 8/pokedex/v1/pokedex/images/506.png new file mode 100644 index 0000000..9a04b3e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/506.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/507.png b/projects/challange 8/pokedex/v1/pokedex/images/507.png new file mode 100644 index 0000000..6cae42f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/507.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/508.png b/projects/challange 8/pokedex/v1/pokedex/images/508.png new file mode 100644 index 0000000..3820b78 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/508.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/509.png b/projects/challange 8/pokedex/v1/pokedex/images/509.png new file mode 100644 index 0000000..f9b28c4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/509.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/51.png b/projects/challange 8/pokedex/v1/pokedex/images/51.png new file mode 100644 index 0000000..80d4d5b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/51.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/510.png b/projects/challange 8/pokedex/v1/pokedex/images/510.png new file mode 100644 index 0000000..1e1dd36 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/510.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/511.png b/projects/challange 8/pokedex/v1/pokedex/images/511.png new file mode 100644 index 0000000..40220f1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/511.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/512.png b/projects/challange 8/pokedex/v1/pokedex/images/512.png new file mode 100644 index 0000000..5020786 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/512.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/513.png b/projects/challange 8/pokedex/v1/pokedex/images/513.png new file mode 100644 index 0000000..f963503 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/513.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/514.png b/projects/challange 8/pokedex/v1/pokedex/images/514.png new file mode 100644 index 0000000..bd6475b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/514.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/515.png b/projects/challange 8/pokedex/v1/pokedex/images/515.png new file mode 100644 index 0000000..8a9135e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/515.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/516.png b/projects/challange 8/pokedex/v1/pokedex/images/516.png new file mode 100644 index 0000000..b042b67 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/516.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/517.png b/projects/challange 8/pokedex/v1/pokedex/images/517.png new file mode 100644 index 0000000..618af24 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/517.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/518.png b/projects/challange 8/pokedex/v1/pokedex/images/518.png new file mode 100644 index 0000000..632bd22 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/518.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/519.png b/projects/challange 8/pokedex/v1/pokedex/images/519.png new file mode 100644 index 0000000..a762d02 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/519.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/52.png b/projects/challange 8/pokedex/v1/pokedex/images/52.png new file mode 100644 index 0000000..a5034bc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/52.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/520.png b/projects/challange 8/pokedex/v1/pokedex/images/520.png new file mode 100644 index 0000000..2492f90 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/520.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/521.png b/projects/challange 8/pokedex/v1/pokedex/images/521.png new file mode 100644 index 0000000..6b8a6b5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/521.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/522.png b/projects/challange 8/pokedex/v1/pokedex/images/522.png new file mode 100644 index 0000000..d986c6d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/522.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/523.png b/projects/challange 8/pokedex/v1/pokedex/images/523.png new file mode 100644 index 0000000..ce417f8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/523.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/524.png b/projects/challange 8/pokedex/v1/pokedex/images/524.png new file mode 100644 index 0000000..59521fb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/524.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/525.png b/projects/challange 8/pokedex/v1/pokedex/images/525.png new file mode 100644 index 0000000..c13e35d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/525.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/526.png b/projects/challange 8/pokedex/v1/pokedex/images/526.png new file mode 100644 index 0000000..f91ed9d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/526.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/527.png b/projects/challange 8/pokedex/v1/pokedex/images/527.png new file mode 100644 index 0000000..f82719a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/527.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/528.png b/projects/challange 8/pokedex/v1/pokedex/images/528.png new file mode 100644 index 0000000..aee6523 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/528.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/529.png b/projects/challange 8/pokedex/v1/pokedex/images/529.png new file mode 100644 index 0000000..ce6eaf1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/529.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/53.png b/projects/challange 8/pokedex/v1/pokedex/images/53.png new file mode 100644 index 0000000..6192c9d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/53.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/530.png b/projects/challange 8/pokedex/v1/pokedex/images/530.png new file mode 100644 index 0000000..c2026c0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/530.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/531.png b/projects/challange 8/pokedex/v1/pokedex/images/531.png new file mode 100644 index 0000000..0505532 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/531.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/532.png b/projects/challange 8/pokedex/v1/pokedex/images/532.png new file mode 100644 index 0000000..596faa7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/532.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/533.png b/projects/challange 8/pokedex/v1/pokedex/images/533.png new file mode 100644 index 0000000..65ec566 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/533.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/534.png b/projects/challange 8/pokedex/v1/pokedex/images/534.png new file mode 100644 index 0000000..86934fd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/534.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/535.png b/projects/challange 8/pokedex/v1/pokedex/images/535.png new file mode 100644 index 0000000..81fc51e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/535.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/536.png b/projects/challange 8/pokedex/v1/pokedex/images/536.png new file mode 100644 index 0000000..dcee170 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/536.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/537.png b/projects/challange 8/pokedex/v1/pokedex/images/537.png new file mode 100644 index 0000000..6cdb37c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/537.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/538.png b/projects/challange 8/pokedex/v1/pokedex/images/538.png new file mode 100644 index 0000000..3ae63b4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/538.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/539.png b/projects/challange 8/pokedex/v1/pokedex/images/539.png new file mode 100644 index 0000000..04691d5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/539.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/54.png b/projects/challange 8/pokedex/v1/pokedex/images/54.png new file mode 100644 index 0000000..4609316 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/54.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/540.png b/projects/challange 8/pokedex/v1/pokedex/images/540.png new file mode 100644 index 0000000..2e54606 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/540.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/541.png b/projects/challange 8/pokedex/v1/pokedex/images/541.png new file mode 100644 index 0000000..57d46fd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/541.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/542.png b/projects/challange 8/pokedex/v1/pokedex/images/542.png new file mode 100644 index 0000000..1d00b21 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/542.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/543.png b/projects/challange 8/pokedex/v1/pokedex/images/543.png new file mode 100644 index 0000000..0ab0b48 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/543.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/544.png b/projects/challange 8/pokedex/v1/pokedex/images/544.png new file mode 100644 index 0000000..cb53a9d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/544.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/545.png b/projects/challange 8/pokedex/v1/pokedex/images/545.png new file mode 100644 index 0000000..5c99345 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/545.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/546.png b/projects/challange 8/pokedex/v1/pokedex/images/546.png new file mode 100644 index 0000000..81d5d48 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/546.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/547.png b/projects/challange 8/pokedex/v1/pokedex/images/547.png new file mode 100644 index 0000000..cc0c614 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/547.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/548.png b/projects/challange 8/pokedex/v1/pokedex/images/548.png new file mode 100644 index 0000000..4f02b97 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/548.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/549.png b/projects/challange 8/pokedex/v1/pokedex/images/549.png new file mode 100644 index 0000000..2bbe04e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/549.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/55.png b/projects/challange 8/pokedex/v1/pokedex/images/55.png new file mode 100644 index 0000000..b7902ec Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/55.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/550.png b/projects/challange 8/pokedex/v1/pokedex/images/550.png new file mode 100644 index 0000000..a90fb56 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/550.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/551.png b/projects/challange 8/pokedex/v1/pokedex/images/551.png new file mode 100644 index 0000000..3b6bd91 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/551.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/552.png b/projects/challange 8/pokedex/v1/pokedex/images/552.png new file mode 100644 index 0000000..10050ef Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/552.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/553.png b/projects/challange 8/pokedex/v1/pokedex/images/553.png new file mode 100644 index 0000000..73c436f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/553.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/554.png b/projects/challange 8/pokedex/v1/pokedex/images/554.png new file mode 100644 index 0000000..1fc6a7a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/554.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/555.png b/projects/challange 8/pokedex/v1/pokedex/images/555.png new file mode 100644 index 0000000..1bcc467 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/555.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/556.png b/projects/challange 8/pokedex/v1/pokedex/images/556.png new file mode 100644 index 0000000..116040d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/556.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/557.png b/projects/challange 8/pokedex/v1/pokedex/images/557.png new file mode 100644 index 0000000..9dadaaf Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/557.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/558.png b/projects/challange 8/pokedex/v1/pokedex/images/558.png new file mode 100644 index 0000000..2fb3845 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/558.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/559.png b/projects/challange 8/pokedex/v1/pokedex/images/559.png new file mode 100644 index 0000000..dde9d79 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/559.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/56.png b/projects/challange 8/pokedex/v1/pokedex/images/56.png new file mode 100644 index 0000000..82d8f0b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/56.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/560.png b/projects/challange 8/pokedex/v1/pokedex/images/560.png new file mode 100644 index 0000000..22ef579 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/560.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/561.png b/projects/challange 8/pokedex/v1/pokedex/images/561.png new file mode 100644 index 0000000..64164e9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/561.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/562.png b/projects/challange 8/pokedex/v1/pokedex/images/562.png new file mode 100644 index 0000000..167a150 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/562.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/563.png b/projects/challange 8/pokedex/v1/pokedex/images/563.png new file mode 100644 index 0000000..e0d0bcb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/563.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/564.png b/projects/challange 8/pokedex/v1/pokedex/images/564.png new file mode 100644 index 0000000..5375212 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/564.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/565.png b/projects/challange 8/pokedex/v1/pokedex/images/565.png new file mode 100644 index 0000000..71ccaa8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/565.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/566.png b/projects/challange 8/pokedex/v1/pokedex/images/566.png new file mode 100644 index 0000000..4f2dc85 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/566.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/567.png b/projects/challange 8/pokedex/v1/pokedex/images/567.png new file mode 100644 index 0000000..e35e691 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/567.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/568.png b/projects/challange 8/pokedex/v1/pokedex/images/568.png new file mode 100644 index 0000000..4bc5b2f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/568.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/569.png b/projects/challange 8/pokedex/v1/pokedex/images/569.png new file mode 100644 index 0000000..8c77c08 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/569.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/57.png b/projects/challange 8/pokedex/v1/pokedex/images/57.png new file mode 100644 index 0000000..b145174 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/57.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/570.png b/projects/challange 8/pokedex/v1/pokedex/images/570.png new file mode 100644 index 0000000..a6364b8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/570.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/571.png b/projects/challange 8/pokedex/v1/pokedex/images/571.png new file mode 100644 index 0000000..a001edb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/571.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/572.png b/projects/challange 8/pokedex/v1/pokedex/images/572.png new file mode 100644 index 0000000..ced0f45 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/572.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/573.png b/projects/challange 8/pokedex/v1/pokedex/images/573.png new file mode 100644 index 0000000..370868c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/573.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/574.png b/projects/challange 8/pokedex/v1/pokedex/images/574.png new file mode 100644 index 0000000..c6b07c8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/574.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/575.png b/projects/challange 8/pokedex/v1/pokedex/images/575.png new file mode 100644 index 0000000..1f542cd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/575.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/576.png b/projects/challange 8/pokedex/v1/pokedex/images/576.png new file mode 100644 index 0000000..7c0d5f0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/576.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/577.png b/projects/challange 8/pokedex/v1/pokedex/images/577.png new file mode 100644 index 0000000..7f86d14 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/577.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/578.png b/projects/challange 8/pokedex/v1/pokedex/images/578.png new file mode 100644 index 0000000..53170cf Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/578.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/579.png b/projects/challange 8/pokedex/v1/pokedex/images/579.png new file mode 100644 index 0000000..3b344f9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/579.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/58.png b/projects/challange 8/pokedex/v1/pokedex/images/58.png new file mode 100644 index 0000000..3f2a0b4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/58.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/580.png b/projects/challange 8/pokedex/v1/pokedex/images/580.png new file mode 100644 index 0000000..9efa4aa Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/580.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/581.png b/projects/challange 8/pokedex/v1/pokedex/images/581.png new file mode 100644 index 0000000..86e653a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/581.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/582.png b/projects/challange 8/pokedex/v1/pokedex/images/582.png new file mode 100644 index 0000000..f0dc3fc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/582.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/583.png b/projects/challange 8/pokedex/v1/pokedex/images/583.png new file mode 100644 index 0000000..dfbfbf1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/583.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/584.png b/projects/challange 8/pokedex/v1/pokedex/images/584.png new file mode 100644 index 0000000..2d1e7b8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/584.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/585.png b/projects/challange 8/pokedex/v1/pokedex/images/585.png new file mode 100644 index 0000000..d4dfca3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/585.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/586.png b/projects/challange 8/pokedex/v1/pokedex/images/586.png new file mode 100644 index 0000000..47adfd4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/586.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/587.png b/projects/challange 8/pokedex/v1/pokedex/images/587.png new file mode 100644 index 0000000..9866eb1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/587.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/588.png b/projects/challange 8/pokedex/v1/pokedex/images/588.png new file mode 100644 index 0000000..f0728fc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/588.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/589.png b/projects/challange 8/pokedex/v1/pokedex/images/589.png new file mode 100644 index 0000000..82cc472 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/589.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/59.png b/projects/challange 8/pokedex/v1/pokedex/images/59.png new file mode 100644 index 0000000..b35ca18 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/59.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/590.png b/projects/challange 8/pokedex/v1/pokedex/images/590.png new file mode 100644 index 0000000..c535205 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/590.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/591.png b/projects/challange 8/pokedex/v1/pokedex/images/591.png new file mode 100644 index 0000000..c7e19ef Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/591.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/592.png b/projects/challange 8/pokedex/v1/pokedex/images/592.png new file mode 100644 index 0000000..02d1e7d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/592.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/593.png b/projects/challange 8/pokedex/v1/pokedex/images/593.png new file mode 100644 index 0000000..ee5e89f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/593.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/594.png b/projects/challange 8/pokedex/v1/pokedex/images/594.png new file mode 100644 index 0000000..1237a23 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/594.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/595.png b/projects/challange 8/pokedex/v1/pokedex/images/595.png new file mode 100644 index 0000000..4f148e9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/595.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/596.png b/projects/challange 8/pokedex/v1/pokedex/images/596.png new file mode 100644 index 0000000..35efbf2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/596.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/597.png b/projects/challange 8/pokedex/v1/pokedex/images/597.png new file mode 100644 index 0000000..28f432f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/597.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/598.png b/projects/challange 8/pokedex/v1/pokedex/images/598.png new file mode 100644 index 0000000..1b5a6d5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/598.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/599.png b/projects/challange 8/pokedex/v1/pokedex/images/599.png new file mode 100644 index 0000000..5a36246 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/599.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/6.png b/projects/challange 8/pokedex/v1/pokedex/images/6.png new file mode 100644 index 0000000..4c4fb91 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/6.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/60.png b/projects/challange 8/pokedex/v1/pokedex/images/60.png new file mode 100644 index 0000000..94fc4d5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/60.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/600.png b/projects/challange 8/pokedex/v1/pokedex/images/600.png new file mode 100644 index 0000000..aa91aa2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/600.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/601.png b/projects/challange 8/pokedex/v1/pokedex/images/601.png new file mode 100644 index 0000000..c6cabda Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/601.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/602.png b/projects/challange 8/pokedex/v1/pokedex/images/602.png new file mode 100644 index 0000000..464e90f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/602.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/603.png b/projects/challange 8/pokedex/v1/pokedex/images/603.png new file mode 100644 index 0000000..beada2d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/603.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/604.png b/projects/challange 8/pokedex/v1/pokedex/images/604.png new file mode 100644 index 0000000..ecafd74 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/604.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/605.png b/projects/challange 8/pokedex/v1/pokedex/images/605.png new file mode 100644 index 0000000..eae13fa Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/605.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/606.png b/projects/challange 8/pokedex/v1/pokedex/images/606.png new file mode 100644 index 0000000..69d8fa8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/606.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/607.png b/projects/challange 8/pokedex/v1/pokedex/images/607.png new file mode 100644 index 0000000..f875825 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/607.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/608.png b/projects/challange 8/pokedex/v1/pokedex/images/608.png new file mode 100644 index 0000000..45c3040 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/608.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/609.png b/projects/challange 8/pokedex/v1/pokedex/images/609.png new file mode 100644 index 0000000..7fe41dd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/609.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/61.png b/projects/challange 8/pokedex/v1/pokedex/images/61.png new file mode 100644 index 0000000..b0bb7b4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/61.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/610.png b/projects/challange 8/pokedex/v1/pokedex/images/610.png new file mode 100644 index 0000000..2a04b11 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/610.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/611.png b/projects/challange 8/pokedex/v1/pokedex/images/611.png new file mode 100644 index 0000000..0f6195f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/611.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/612.png b/projects/challange 8/pokedex/v1/pokedex/images/612.png new file mode 100644 index 0000000..51f5b2c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/612.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/613.png b/projects/challange 8/pokedex/v1/pokedex/images/613.png new file mode 100644 index 0000000..608cc87 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/613.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/614.png b/projects/challange 8/pokedex/v1/pokedex/images/614.png new file mode 100644 index 0000000..a207e14 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/614.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/615.png b/projects/challange 8/pokedex/v1/pokedex/images/615.png new file mode 100644 index 0000000..719b373 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/615.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/616.png b/projects/challange 8/pokedex/v1/pokedex/images/616.png new file mode 100644 index 0000000..eb5eeaf Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/616.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/617.png b/projects/challange 8/pokedex/v1/pokedex/images/617.png new file mode 100644 index 0000000..5013562 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/617.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/618.png b/projects/challange 8/pokedex/v1/pokedex/images/618.png new file mode 100644 index 0000000..580fd7e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/618.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/619.png b/projects/challange 8/pokedex/v1/pokedex/images/619.png new file mode 100644 index 0000000..f9700ca Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/619.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/62.png b/projects/challange 8/pokedex/v1/pokedex/images/62.png new file mode 100644 index 0000000..4b695f3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/62.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/620.png b/projects/challange 8/pokedex/v1/pokedex/images/620.png new file mode 100644 index 0000000..aa76540 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/620.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/621.png b/projects/challange 8/pokedex/v1/pokedex/images/621.png new file mode 100644 index 0000000..80fee6b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/621.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/622.png b/projects/challange 8/pokedex/v1/pokedex/images/622.png new file mode 100644 index 0000000..c72e2c5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/622.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/623.png b/projects/challange 8/pokedex/v1/pokedex/images/623.png new file mode 100644 index 0000000..1846c4a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/623.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/624.png b/projects/challange 8/pokedex/v1/pokedex/images/624.png new file mode 100644 index 0000000..7441070 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/624.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/625.png b/projects/challange 8/pokedex/v1/pokedex/images/625.png new file mode 100644 index 0000000..e565a1f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/625.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/626.png b/projects/challange 8/pokedex/v1/pokedex/images/626.png new file mode 100644 index 0000000..c1e6cad Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/626.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/627.png b/projects/challange 8/pokedex/v1/pokedex/images/627.png new file mode 100644 index 0000000..5ea22df Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/627.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/628.png b/projects/challange 8/pokedex/v1/pokedex/images/628.png new file mode 100644 index 0000000..211dbf7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/628.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/629.png b/projects/challange 8/pokedex/v1/pokedex/images/629.png new file mode 100644 index 0000000..f182704 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/629.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/63.png b/projects/challange 8/pokedex/v1/pokedex/images/63.png new file mode 100644 index 0000000..928924a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/63.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/630.png b/projects/challange 8/pokedex/v1/pokedex/images/630.png new file mode 100644 index 0000000..9588819 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/630.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/631.png b/projects/challange 8/pokedex/v1/pokedex/images/631.png new file mode 100644 index 0000000..0345a35 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/631.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/632.png b/projects/challange 8/pokedex/v1/pokedex/images/632.png new file mode 100644 index 0000000..686291d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/632.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/633.png b/projects/challange 8/pokedex/v1/pokedex/images/633.png new file mode 100644 index 0000000..f9fcae8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/633.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/634.png b/projects/challange 8/pokedex/v1/pokedex/images/634.png new file mode 100644 index 0000000..6f0557c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/634.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/635.png b/projects/challange 8/pokedex/v1/pokedex/images/635.png new file mode 100644 index 0000000..cabf320 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/635.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/636.png b/projects/challange 8/pokedex/v1/pokedex/images/636.png new file mode 100644 index 0000000..eefa694 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/636.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/637.png b/projects/challange 8/pokedex/v1/pokedex/images/637.png new file mode 100644 index 0000000..6f1a128 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/637.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/638.png b/projects/challange 8/pokedex/v1/pokedex/images/638.png new file mode 100644 index 0000000..4cb5e3c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/638.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/639.png b/projects/challange 8/pokedex/v1/pokedex/images/639.png new file mode 100644 index 0000000..3c55703 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/639.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/64.png b/projects/challange 8/pokedex/v1/pokedex/images/64.png new file mode 100644 index 0000000..2b7b5e8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/64.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/640.png b/projects/challange 8/pokedex/v1/pokedex/images/640.png new file mode 100644 index 0000000..33a1992 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/640.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/641.png b/projects/challange 8/pokedex/v1/pokedex/images/641.png new file mode 100644 index 0000000..419f74e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/641.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/642.png b/projects/challange 8/pokedex/v1/pokedex/images/642.png new file mode 100644 index 0000000..5a8e8f3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/642.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/643.png b/projects/challange 8/pokedex/v1/pokedex/images/643.png new file mode 100644 index 0000000..78d02c8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/643.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/644.png b/projects/challange 8/pokedex/v1/pokedex/images/644.png new file mode 100644 index 0000000..af2bf98 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/644.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/645.png b/projects/challange 8/pokedex/v1/pokedex/images/645.png new file mode 100644 index 0000000..8d7aece Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/645.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/646.png b/projects/challange 8/pokedex/v1/pokedex/images/646.png new file mode 100644 index 0000000..fcd439a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/646.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/647.png b/projects/challange 8/pokedex/v1/pokedex/images/647.png new file mode 100644 index 0000000..4402f11 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/647.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/648.png b/projects/challange 8/pokedex/v1/pokedex/images/648.png new file mode 100644 index 0000000..470e63d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/648.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/649.png b/projects/challange 8/pokedex/v1/pokedex/images/649.png new file mode 100644 index 0000000..c3b26d2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/649.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/65.png b/projects/challange 8/pokedex/v1/pokedex/images/65.png new file mode 100644 index 0000000..24dcf83 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/65.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/650.png b/projects/challange 8/pokedex/v1/pokedex/images/650.png new file mode 100644 index 0000000..21d2781 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/650.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/651.png b/projects/challange 8/pokedex/v1/pokedex/images/651.png new file mode 100644 index 0000000..78eab17 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/651.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/652.png b/projects/challange 8/pokedex/v1/pokedex/images/652.png new file mode 100644 index 0000000..aecebf5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/652.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/653.png b/projects/challange 8/pokedex/v1/pokedex/images/653.png new file mode 100644 index 0000000..a20b8e7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/653.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/654.png b/projects/challange 8/pokedex/v1/pokedex/images/654.png new file mode 100644 index 0000000..991201d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/654.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/655.png b/projects/challange 8/pokedex/v1/pokedex/images/655.png new file mode 100644 index 0000000..6b5016f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/655.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/656.png b/projects/challange 8/pokedex/v1/pokedex/images/656.png new file mode 100644 index 0000000..58bba96 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/656.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/657.png b/projects/challange 8/pokedex/v1/pokedex/images/657.png new file mode 100644 index 0000000..3cb82c1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/657.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/658.png b/projects/challange 8/pokedex/v1/pokedex/images/658.png new file mode 100644 index 0000000..709af93 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/658.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/659.png b/projects/challange 8/pokedex/v1/pokedex/images/659.png new file mode 100644 index 0000000..c009aa8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/659.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/66.png b/projects/challange 8/pokedex/v1/pokedex/images/66.png new file mode 100644 index 0000000..ce89c88 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/66.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/660.png b/projects/challange 8/pokedex/v1/pokedex/images/660.png new file mode 100644 index 0000000..69e36a0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/660.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/661.png b/projects/challange 8/pokedex/v1/pokedex/images/661.png new file mode 100644 index 0000000..148234e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/661.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/662.png b/projects/challange 8/pokedex/v1/pokedex/images/662.png new file mode 100644 index 0000000..1c8b917 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/662.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/663.png b/projects/challange 8/pokedex/v1/pokedex/images/663.png new file mode 100644 index 0000000..43e56ab Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/663.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/664.png b/projects/challange 8/pokedex/v1/pokedex/images/664.png new file mode 100644 index 0000000..f2c9599 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/664.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/665.png b/projects/challange 8/pokedex/v1/pokedex/images/665.png new file mode 100644 index 0000000..e58f28c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/665.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/666.png b/projects/challange 8/pokedex/v1/pokedex/images/666.png new file mode 100644 index 0000000..4cdc975 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/666.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/667.png b/projects/challange 8/pokedex/v1/pokedex/images/667.png new file mode 100644 index 0000000..a553420 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/667.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/668.png b/projects/challange 8/pokedex/v1/pokedex/images/668.png new file mode 100644 index 0000000..4e7b04c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/668.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/669.png b/projects/challange 8/pokedex/v1/pokedex/images/669.png new file mode 100644 index 0000000..b5a5db5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/669.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/67.png b/projects/challange 8/pokedex/v1/pokedex/images/67.png new file mode 100644 index 0000000..4b495de Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/67.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/670.png b/projects/challange 8/pokedex/v1/pokedex/images/670.png new file mode 100644 index 0000000..68bbdd1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/670.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/671.png b/projects/challange 8/pokedex/v1/pokedex/images/671.png new file mode 100644 index 0000000..a5ec5a0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/671.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/672.png b/projects/challange 8/pokedex/v1/pokedex/images/672.png new file mode 100644 index 0000000..95838a5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/672.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/673.png b/projects/challange 8/pokedex/v1/pokedex/images/673.png new file mode 100644 index 0000000..ab9bea6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/673.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/674.png b/projects/challange 8/pokedex/v1/pokedex/images/674.png new file mode 100644 index 0000000..9f91a8a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/674.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/675.png b/projects/challange 8/pokedex/v1/pokedex/images/675.png new file mode 100644 index 0000000..9d4748c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/675.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/676.png b/projects/challange 8/pokedex/v1/pokedex/images/676.png new file mode 100644 index 0000000..a8e14c1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/676.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/677.png b/projects/challange 8/pokedex/v1/pokedex/images/677.png new file mode 100644 index 0000000..ae0f7eb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/677.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/678.png b/projects/challange 8/pokedex/v1/pokedex/images/678.png new file mode 100644 index 0000000..f894f75 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/678.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/679.png b/projects/challange 8/pokedex/v1/pokedex/images/679.png new file mode 100644 index 0000000..7f017d8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/679.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/68.png b/projects/challange 8/pokedex/v1/pokedex/images/68.png new file mode 100644 index 0000000..4adb2ce Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/68.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/680.png b/projects/challange 8/pokedex/v1/pokedex/images/680.png new file mode 100644 index 0000000..2aa5075 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/680.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/681.png b/projects/challange 8/pokedex/v1/pokedex/images/681.png new file mode 100644 index 0000000..43da47f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/681.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/682.png b/projects/challange 8/pokedex/v1/pokedex/images/682.png new file mode 100644 index 0000000..88bbaa0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/682.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/683.png b/projects/challange 8/pokedex/v1/pokedex/images/683.png new file mode 100644 index 0000000..8e0bd7a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/683.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/684.png b/projects/challange 8/pokedex/v1/pokedex/images/684.png new file mode 100644 index 0000000..25bf15d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/684.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/685.png b/projects/challange 8/pokedex/v1/pokedex/images/685.png new file mode 100644 index 0000000..9d50cd3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/685.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/686.png b/projects/challange 8/pokedex/v1/pokedex/images/686.png new file mode 100644 index 0000000..a7d7a0f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/686.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/687.png b/projects/challange 8/pokedex/v1/pokedex/images/687.png new file mode 100644 index 0000000..26184db Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/687.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/688.png b/projects/challange 8/pokedex/v1/pokedex/images/688.png new file mode 100644 index 0000000..9d2bb73 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/688.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/689.png b/projects/challange 8/pokedex/v1/pokedex/images/689.png new file mode 100644 index 0000000..d918592 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/689.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/69.png b/projects/challange 8/pokedex/v1/pokedex/images/69.png new file mode 100644 index 0000000..4d28341 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/69.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/690.png b/projects/challange 8/pokedex/v1/pokedex/images/690.png new file mode 100644 index 0000000..4e30493 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/690.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/691.png b/projects/challange 8/pokedex/v1/pokedex/images/691.png new file mode 100644 index 0000000..01ad6a2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/691.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/692.png b/projects/challange 8/pokedex/v1/pokedex/images/692.png new file mode 100644 index 0000000..da33486 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/692.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/693.png b/projects/challange 8/pokedex/v1/pokedex/images/693.png new file mode 100644 index 0000000..949d857 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/693.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/694.png b/projects/challange 8/pokedex/v1/pokedex/images/694.png new file mode 100644 index 0000000..5a22071 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/694.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/695.png b/projects/challange 8/pokedex/v1/pokedex/images/695.png new file mode 100644 index 0000000..c7a164d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/695.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/696.png b/projects/challange 8/pokedex/v1/pokedex/images/696.png new file mode 100644 index 0000000..9ad1ff4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/696.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/697.png b/projects/challange 8/pokedex/v1/pokedex/images/697.png new file mode 100644 index 0000000..49f9624 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/697.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/698.png b/projects/challange 8/pokedex/v1/pokedex/images/698.png new file mode 100644 index 0000000..59bc0c7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/698.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/699.png b/projects/challange 8/pokedex/v1/pokedex/images/699.png new file mode 100644 index 0000000..88acd4b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/699.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/7.png b/projects/challange 8/pokedex/v1/pokedex/images/7.png new file mode 100644 index 0000000..299b74d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/7.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/70.png b/projects/challange 8/pokedex/v1/pokedex/images/70.png new file mode 100644 index 0000000..86606fe Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/70.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/700.png b/projects/challange 8/pokedex/v1/pokedex/images/700.png new file mode 100644 index 0000000..75a355d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/700.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/701.png b/projects/challange 8/pokedex/v1/pokedex/images/701.png new file mode 100644 index 0000000..b54100e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/701.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/702.png b/projects/challange 8/pokedex/v1/pokedex/images/702.png new file mode 100644 index 0000000..f62a9a4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/702.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/703.png b/projects/challange 8/pokedex/v1/pokedex/images/703.png new file mode 100644 index 0000000..c516925 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/703.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/704.png b/projects/challange 8/pokedex/v1/pokedex/images/704.png new file mode 100644 index 0000000..fee5bb2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/704.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/705.png b/projects/challange 8/pokedex/v1/pokedex/images/705.png new file mode 100644 index 0000000..33f1e61 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/705.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/706.png b/projects/challange 8/pokedex/v1/pokedex/images/706.png new file mode 100644 index 0000000..da62b85 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/706.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/707.png b/projects/challange 8/pokedex/v1/pokedex/images/707.png new file mode 100644 index 0000000..65e0b41 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/707.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/708.png b/projects/challange 8/pokedex/v1/pokedex/images/708.png new file mode 100644 index 0000000..7430601 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/708.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/709.png b/projects/challange 8/pokedex/v1/pokedex/images/709.png new file mode 100644 index 0000000..e456a75 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/709.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/71.png b/projects/challange 8/pokedex/v1/pokedex/images/71.png new file mode 100644 index 0000000..acc4b65 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/71.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/710.png b/projects/challange 8/pokedex/v1/pokedex/images/710.png new file mode 100644 index 0000000..cf8bb22 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/710.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/711.png b/projects/challange 8/pokedex/v1/pokedex/images/711.png new file mode 100644 index 0000000..dceb21d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/711.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/712.png b/projects/challange 8/pokedex/v1/pokedex/images/712.png new file mode 100644 index 0000000..613b75f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/712.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/713.png b/projects/challange 8/pokedex/v1/pokedex/images/713.png new file mode 100644 index 0000000..fcf4bcd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/713.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/714.png b/projects/challange 8/pokedex/v1/pokedex/images/714.png new file mode 100644 index 0000000..fecd726 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/714.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/715.png b/projects/challange 8/pokedex/v1/pokedex/images/715.png new file mode 100644 index 0000000..db624d3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/715.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/716.png b/projects/challange 8/pokedex/v1/pokedex/images/716.png new file mode 100644 index 0000000..8dcb0b4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/716.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/717.png b/projects/challange 8/pokedex/v1/pokedex/images/717.png new file mode 100644 index 0000000..65d9209 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/717.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/718.png b/projects/challange 8/pokedex/v1/pokedex/images/718.png new file mode 100644 index 0000000..27b726b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/718.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/719.png b/projects/challange 8/pokedex/v1/pokedex/images/719.png new file mode 100644 index 0000000..c7a3fc4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/719.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/72.png b/projects/challange 8/pokedex/v1/pokedex/images/72.png new file mode 100644 index 0000000..cb4a923 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/72.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/720.png b/projects/challange 8/pokedex/v1/pokedex/images/720.png new file mode 100644 index 0000000..ecf6a42 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/720.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/721.png b/projects/challange 8/pokedex/v1/pokedex/images/721.png new file mode 100644 index 0000000..f8b6bc3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/721.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/722.png b/projects/challange 8/pokedex/v1/pokedex/images/722.png new file mode 100644 index 0000000..4a538e1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/722.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/723.png b/projects/challange 8/pokedex/v1/pokedex/images/723.png new file mode 100644 index 0000000..4bd99ee Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/723.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/724.png b/projects/challange 8/pokedex/v1/pokedex/images/724.png new file mode 100644 index 0000000..9fcd0cb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/724.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/725.png b/projects/challange 8/pokedex/v1/pokedex/images/725.png new file mode 100644 index 0000000..95ab1f9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/725.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/726.png b/projects/challange 8/pokedex/v1/pokedex/images/726.png new file mode 100644 index 0000000..74cd5b0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/726.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/727.png b/projects/challange 8/pokedex/v1/pokedex/images/727.png new file mode 100644 index 0000000..54b9cb8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/727.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/728.png b/projects/challange 8/pokedex/v1/pokedex/images/728.png new file mode 100644 index 0000000..a9a980f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/728.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/729.png b/projects/challange 8/pokedex/v1/pokedex/images/729.png new file mode 100644 index 0000000..5d8274b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/729.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/73.png b/projects/challange 8/pokedex/v1/pokedex/images/73.png new file mode 100644 index 0000000..df4d060 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/73.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/730.png b/projects/challange 8/pokedex/v1/pokedex/images/730.png new file mode 100644 index 0000000..cc69b40 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/730.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/731.png b/projects/challange 8/pokedex/v1/pokedex/images/731.png new file mode 100644 index 0000000..e12e39c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/731.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/732.png b/projects/challange 8/pokedex/v1/pokedex/images/732.png new file mode 100644 index 0000000..62224d6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/732.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/733.png b/projects/challange 8/pokedex/v1/pokedex/images/733.png new file mode 100644 index 0000000..0a9e84d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/733.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/734.png b/projects/challange 8/pokedex/v1/pokedex/images/734.png new file mode 100644 index 0000000..c6a9061 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/734.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/735.png b/projects/challange 8/pokedex/v1/pokedex/images/735.png new file mode 100644 index 0000000..98c181a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/735.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/736.png b/projects/challange 8/pokedex/v1/pokedex/images/736.png new file mode 100644 index 0000000..e55cddd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/736.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/737.png b/projects/challange 8/pokedex/v1/pokedex/images/737.png new file mode 100644 index 0000000..9502905 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/737.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/738.png b/projects/challange 8/pokedex/v1/pokedex/images/738.png new file mode 100644 index 0000000..ccf4532 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/738.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/739.png b/projects/challange 8/pokedex/v1/pokedex/images/739.png new file mode 100644 index 0000000..858e346 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/739.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/74.png b/projects/challange 8/pokedex/v1/pokedex/images/74.png new file mode 100644 index 0000000..eb2b09b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/74.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/740.png b/projects/challange 8/pokedex/v1/pokedex/images/740.png new file mode 100644 index 0000000..9a7a547 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/740.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/741.png b/projects/challange 8/pokedex/v1/pokedex/images/741.png new file mode 100644 index 0000000..4be7e43 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/741.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/742.png b/projects/challange 8/pokedex/v1/pokedex/images/742.png new file mode 100644 index 0000000..6f98148 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/742.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/743.png b/projects/challange 8/pokedex/v1/pokedex/images/743.png new file mode 100644 index 0000000..18e99c8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/743.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/744.png b/projects/challange 8/pokedex/v1/pokedex/images/744.png new file mode 100644 index 0000000..3ff7ca5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/744.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/745.png b/projects/challange 8/pokedex/v1/pokedex/images/745.png new file mode 100644 index 0000000..d178916 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/745.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/746.png b/projects/challange 8/pokedex/v1/pokedex/images/746.png new file mode 100644 index 0000000..baccae1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/746.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/747.png b/projects/challange 8/pokedex/v1/pokedex/images/747.png new file mode 100644 index 0000000..c165bc4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/747.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/748.png b/projects/challange 8/pokedex/v1/pokedex/images/748.png new file mode 100644 index 0000000..c4753fc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/748.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/749.png b/projects/challange 8/pokedex/v1/pokedex/images/749.png new file mode 100644 index 0000000..1835458 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/749.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/75.png b/projects/challange 8/pokedex/v1/pokedex/images/75.png new file mode 100644 index 0000000..2cca0d3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/75.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/750.png b/projects/challange 8/pokedex/v1/pokedex/images/750.png new file mode 100644 index 0000000..f662c3c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/750.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/751.png b/projects/challange 8/pokedex/v1/pokedex/images/751.png new file mode 100644 index 0000000..d270868 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/751.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/752.png b/projects/challange 8/pokedex/v1/pokedex/images/752.png new file mode 100644 index 0000000..e985ee5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/752.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/753.png b/projects/challange 8/pokedex/v1/pokedex/images/753.png new file mode 100644 index 0000000..f064727 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/753.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/754.png b/projects/challange 8/pokedex/v1/pokedex/images/754.png new file mode 100644 index 0000000..cc90fd1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/754.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/755.png b/projects/challange 8/pokedex/v1/pokedex/images/755.png new file mode 100644 index 0000000..eb2ce3b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/755.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/756.png b/projects/challange 8/pokedex/v1/pokedex/images/756.png new file mode 100644 index 0000000..551b8b7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/756.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/757.png b/projects/challange 8/pokedex/v1/pokedex/images/757.png new file mode 100644 index 0000000..40b941f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/757.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/758.png b/projects/challange 8/pokedex/v1/pokedex/images/758.png new file mode 100644 index 0000000..6b0b464 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/758.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/759.png b/projects/challange 8/pokedex/v1/pokedex/images/759.png new file mode 100644 index 0000000..92661e4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/759.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/76.png b/projects/challange 8/pokedex/v1/pokedex/images/76.png new file mode 100644 index 0000000..cb2d769 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/76.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/760.png b/projects/challange 8/pokedex/v1/pokedex/images/760.png new file mode 100644 index 0000000..96510d3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/760.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/761.png b/projects/challange 8/pokedex/v1/pokedex/images/761.png new file mode 100644 index 0000000..d09ea50 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/761.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/762.png b/projects/challange 8/pokedex/v1/pokedex/images/762.png new file mode 100644 index 0000000..fc81719 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/762.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/763.png b/projects/challange 8/pokedex/v1/pokedex/images/763.png new file mode 100644 index 0000000..4af5722 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/763.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/764.png b/projects/challange 8/pokedex/v1/pokedex/images/764.png new file mode 100644 index 0000000..7f5edf8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/764.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/765.png b/projects/challange 8/pokedex/v1/pokedex/images/765.png new file mode 100644 index 0000000..6af0edd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/765.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/766.png b/projects/challange 8/pokedex/v1/pokedex/images/766.png new file mode 100644 index 0000000..d371e13 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/766.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/767.png b/projects/challange 8/pokedex/v1/pokedex/images/767.png new file mode 100644 index 0000000..f156ea6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/767.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/768.png b/projects/challange 8/pokedex/v1/pokedex/images/768.png new file mode 100644 index 0000000..ff5be85 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/768.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/769.png b/projects/challange 8/pokedex/v1/pokedex/images/769.png new file mode 100644 index 0000000..c627cac Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/769.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/77.png b/projects/challange 8/pokedex/v1/pokedex/images/77.png new file mode 100644 index 0000000..b409750 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/77.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/770.png b/projects/challange 8/pokedex/v1/pokedex/images/770.png new file mode 100644 index 0000000..df41268 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/770.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/771.png b/projects/challange 8/pokedex/v1/pokedex/images/771.png new file mode 100644 index 0000000..215bbd4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/771.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/772.png b/projects/challange 8/pokedex/v1/pokedex/images/772.png new file mode 100644 index 0000000..bd2f1c2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/772.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/773.png b/projects/challange 8/pokedex/v1/pokedex/images/773.png new file mode 100644 index 0000000..e3c44ed Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/773.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/774.png b/projects/challange 8/pokedex/v1/pokedex/images/774.png new file mode 100644 index 0000000..7d8693b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/774.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/775.png b/projects/challange 8/pokedex/v1/pokedex/images/775.png new file mode 100644 index 0000000..30f907f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/775.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/776.png b/projects/challange 8/pokedex/v1/pokedex/images/776.png new file mode 100644 index 0000000..5f9a5c6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/776.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/777.png b/projects/challange 8/pokedex/v1/pokedex/images/777.png new file mode 100644 index 0000000..9d3b01c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/777.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/778.png b/projects/challange 8/pokedex/v1/pokedex/images/778.png new file mode 100644 index 0000000..35127f0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/778.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/779.png b/projects/challange 8/pokedex/v1/pokedex/images/779.png new file mode 100644 index 0000000..028f19e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/779.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/78.png b/projects/challange 8/pokedex/v1/pokedex/images/78.png new file mode 100644 index 0000000..6d4afc6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/78.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/780.png b/projects/challange 8/pokedex/v1/pokedex/images/780.png new file mode 100644 index 0000000..f35fe0b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/780.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/781.png b/projects/challange 8/pokedex/v1/pokedex/images/781.png new file mode 100644 index 0000000..e9fe0d1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/781.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/782.png b/projects/challange 8/pokedex/v1/pokedex/images/782.png new file mode 100644 index 0000000..1ce56b3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/782.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/783.png b/projects/challange 8/pokedex/v1/pokedex/images/783.png new file mode 100644 index 0000000..eb34661 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/783.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/784.png b/projects/challange 8/pokedex/v1/pokedex/images/784.png new file mode 100644 index 0000000..b8688ea Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/784.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/785.png b/projects/challange 8/pokedex/v1/pokedex/images/785.png new file mode 100644 index 0000000..6e1d958 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/785.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/786.png b/projects/challange 8/pokedex/v1/pokedex/images/786.png new file mode 100644 index 0000000..ac55b43 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/786.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/787.png b/projects/challange 8/pokedex/v1/pokedex/images/787.png new file mode 100644 index 0000000..ff9a10f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/787.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/788.png b/projects/challange 8/pokedex/v1/pokedex/images/788.png new file mode 100644 index 0000000..8a36c21 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/788.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/789.png b/projects/challange 8/pokedex/v1/pokedex/images/789.png new file mode 100644 index 0000000..0030d6b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/789.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/79.png b/projects/challange 8/pokedex/v1/pokedex/images/79.png new file mode 100644 index 0000000..6c11b1e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/79.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/790.png b/projects/challange 8/pokedex/v1/pokedex/images/790.png new file mode 100644 index 0000000..5d3250c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/790.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/791.png b/projects/challange 8/pokedex/v1/pokedex/images/791.png new file mode 100644 index 0000000..2391a70 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/791.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/792.png b/projects/challange 8/pokedex/v1/pokedex/images/792.png new file mode 100644 index 0000000..cf5297e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/792.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/793.png b/projects/challange 8/pokedex/v1/pokedex/images/793.png new file mode 100644 index 0000000..71e7ab0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/793.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/794.png b/projects/challange 8/pokedex/v1/pokedex/images/794.png new file mode 100644 index 0000000..85773ba Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/794.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/795.png b/projects/challange 8/pokedex/v1/pokedex/images/795.png new file mode 100644 index 0000000..44745e1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/795.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/796.png b/projects/challange 8/pokedex/v1/pokedex/images/796.png new file mode 100644 index 0000000..ef728f7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/796.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/797.png b/projects/challange 8/pokedex/v1/pokedex/images/797.png new file mode 100644 index 0000000..7d9449b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/797.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/798.png b/projects/challange 8/pokedex/v1/pokedex/images/798.png new file mode 100644 index 0000000..05244e9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/798.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/799.png b/projects/challange 8/pokedex/v1/pokedex/images/799.png new file mode 100644 index 0000000..00fa7b7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/799.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/8.png b/projects/challange 8/pokedex/v1/pokedex/images/8.png new file mode 100644 index 0000000..88d620c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/8.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/80.png b/projects/challange 8/pokedex/v1/pokedex/images/80.png new file mode 100644 index 0000000..ece52b7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/80.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/800.png b/projects/challange 8/pokedex/v1/pokedex/images/800.png new file mode 100644 index 0000000..638d0fe Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/800.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/801.png b/projects/challange 8/pokedex/v1/pokedex/images/801.png new file mode 100644 index 0000000..7990820 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/801.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/802.png b/projects/challange 8/pokedex/v1/pokedex/images/802.png new file mode 100644 index 0000000..5ca9d4f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/802.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/803.png b/projects/challange 8/pokedex/v1/pokedex/images/803.png new file mode 100644 index 0000000..84ee90b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/803.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/804.png b/projects/challange 8/pokedex/v1/pokedex/images/804.png new file mode 100644 index 0000000..f9caf15 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/804.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/805.png b/projects/challange 8/pokedex/v1/pokedex/images/805.png new file mode 100644 index 0000000..f515c1e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/805.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/806.png b/projects/challange 8/pokedex/v1/pokedex/images/806.png new file mode 100644 index 0000000..1034564 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/806.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/807.png b/projects/challange 8/pokedex/v1/pokedex/images/807.png new file mode 100644 index 0000000..d34049a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/807.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/808.png b/projects/challange 8/pokedex/v1/pokedex/images/808.png new file mode 100644 index 0000000..583251e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/808.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/809.png b/projects/challange 8/pokedex/v1/pokedex/images/809.png new file mode 100644 index 0000000..1c27ac6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/809.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/81.png b/projects/challange 8/pokedex/v1/pokedex/images/81.png new file mode 100644 index 0000000..d7df60f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/81.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/810.png b/projects/challange 8/pokedex/v1/pokedex/images/810.png new file mode 100644 index 0000000..32f287c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/810.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/811.png b/projects/challange 8/pokedex/v1/pokedex/images/811.png new file mode 100644 index 0000000..f9e5cce Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/811.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/812.png b/projects/challange 8/pokedex/v1/pokedex/images/812.png new file mode 100644 index 0000000..80a38c5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/812.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/813.png b/projects/challange 8/pokedex/v1/pokedex/images/813.png new file mode 100644 index 0000000..5961874 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/813.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/814.png b/projects/challange 8/pokedex/v1/pokedex/images/814.png new file mode 100644 index 0000000..bee6ef0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/814.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/815.png b/projects/challange 8/pokedex/v1/pokedex/images/815.png new file mode 100644 index 0000000..f564db0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/815.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/816.png b/projects/challange 8/pokedex/v1/pokedex/images/816.png new file mode 100644 index 0000000..9669af6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/816.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/817.png b/projects/challange 8/pokedex/v1/pokedex/images/817.png new file mode 100644 index 0000000..8dbd9e7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/817.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/818.png b/projects/challange 8/pokedex/v1/pokedex/images/818.png new file mode 100644 index 0000000..93d31ab Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/818.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/819.png b/projects/challange 8/pokedex/v1/pokedex/images/819.png new file mode 100644 index 0000000..8259c25 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/819.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/82.png b/projects/challange 8/pokedex/v1/pokedex/images/82.png new file mode 100644 index 0000000..2be2115 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/82.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/820.png b/projects/challange 8/pokedex/v1/pokedex/images/820.png new file mode 100644 index 0000000..1f2d295 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/820.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/821.png b/projects/challange 8/pokedex/v1/pokedex/images/821.png new file mode 100644 index 0000000..a3fd34c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/821.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/822.png b/projects/challange 8/pokedex/v1/pokedex/images/822.png new file mode 100644 index 0000000..d8294c1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/822.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/823.png b/projects/challange 8/pokedex/v1/pokedex/images/823.png new file mode 100644 index 0000000..47baa79 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/823.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/824.png b/projects/challange 8/pokedex/v1/pokedex/images/824.png new file mode 100644 index 0000000..3257caa Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/824.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/825.png b/projects/challange 8/pokedex/v1/pokedex/images/825.png new file mode 100644 index 0000000..e0395be Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/825.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/826.png b/projects/challange 8/pokedex/v1/pokedex/images/826.png new file mode 100644 index 0000000..06af6fa Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/826.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/827.png b/projects/challange 8/pokedex/v1/pokedex/images/827.png new file mode 100644 index 0000000..0bb87d0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/827.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/828.png b/projects/challange 8/pokedex/v1/pokedex/images/828.png new file mode 100644 index 0000000..9c57ce6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/828.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/829.png b/projects/challange 8/pokedex/v1/pokedex/images/829.png new file mode 100644 index 0000000..b3b23a4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/829.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/83.png b/projects/challange 8/pokedex/v1/pokedex/images/83.png new file mode 100644 index 0000000..5b54011 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/83.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/830.png b/projects/challange 8/pokedex/v1/pokedex/images/830.png new file mode 100644 index 0000000..1492e05 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/830.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/831.png b/projects/challange 8/pokedex/v1/pokedex/images/831.png new file mode 100644 index 0000000..eede3e2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/831.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/832.png b/projects/challange 8/pokedex/v1/pokedex/images/832.png new file mode 100644 index 0000000..dd3e2b0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/832.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/833.png b/projects/challange 8/pokedex/v1/pokedex/images/833.png new file mode 100644 index 0000000..3035c1e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/833.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/834.png b/projects/challange 8/pokedex/v1/pokedex/images/834.png new file mode 100644 index 0000000..4048b6d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/834.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/835.png b/projects/challange 8/pokedex/v1/pokedex/images/835.png new file mode 100644 index 0000000..5b10763 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/835.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/836.png b/projects/challange 8/pokedex/v1/pokedex/images/836.png new file mode 100644 index 0000000..03ddd70 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/836.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/837.png b/projects/challange 8/pokedex/v1/pokedex/images/837.png new file mode 100644 index 0000000..e6f31b3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/837.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/838.png b/projects/challange 8/pokedex/v1/pokedex/images/838.png new file mode 100644 index 0000000..f5868ce Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/838.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/839.png b/projects/challange 8/pokedex/v1/pokedex/images/839.png new file mode 100644 index 0000000..8533953 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/839.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/84.png b/projects/challange 8/pokedex/v1/pokedex/images/84.png new file mode 100644 index 0000000..bc59ae7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/84.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/840.png b/projects/challange 8/pokedex/v1/pokedex/images/840.png new file mode 100644 index 0000000..a255227 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/840.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/841.png b/projects/challange 8/pokedex/v1/pokedex/images/841.png new file mode 100644 index 0000000..afc759c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/841.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/842.png b/projects/challange 8/pokedex/v1/pokedex/images/842.png new file mode 100644 index 0000000..cc1035f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/842.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/843.png b/projects/challange 8/pokedex/v1/pokedex/images/843.png new file mode 100644 index 0000000..73cf1e9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/843.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/844.png b/projects/challange 8/pokedex/v1/pokedex/images/844.png new file mode 100644 index 0000000..998c9a1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/844.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/845.png b/projects/challange 8/pokedex/v1/pokedex/images/845.png new file mode 100644 index 0000000..11a33cc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/845.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/846.png b/projects/challange 8/pokedex/v1/pokedex/images/846.png new file mode 100644 index 0000000..9588359 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/846.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/847.png b/projects/challange 8/pokedex/v1/pokedex/images/847.png new file mode 100644 index 0000000..b4e154a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/847.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/848.png b/projects/challange 8/pokedex/v1/pokedex/images/848.png new file mode 100644 index 0000000..90a162f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/848.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/849.png b/projects/challange 8/pokedex/v1/pokedex/images/849.png new file mode 100644 index 0000000..13afe65 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/849.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/85.png b/projects/challange 8/pokedex/v1/pokedex/images/85.png new file mode 100644 index 0000000..01e979a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/85.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/850.png b/projects/challange 8/pokedex/v1/pokedex/images/850.png new file mode 100644 index 0000000..9f03f2e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/850.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/851.png b/projects/challange 8/pokedex/v1/pokedex/images/851.png new file mode 100644 index 0000000..3cfb837 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/851.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/852.png b/projects/challange 8/pokedex/v1/pokedex/images/852.png new file mode 100644 index 0000000..0b1b759 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/852.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/853.png b/projects/challange 8/pokedex/v1/pokedex/images/853.png new file mode 100644 index 0000000..5c94e21 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/853.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/854.png b/projects/challange 8/pokedex/v1/pokedex/images/854.png new file mode 100644 index 0000000..7bc5964 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/854.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/855.png b/projects/challange 8/pokedex/v1/pokedex/images/855.png new file mode 100644 index 0000000..cf420cf Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/855.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/856.png b/projects/challange 8/pokedex/v1/pokedex/images/856.png new file mode 100644 index 0000000..06414f6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/856.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/857.png b/projects/challange 8/pokedex/v1/pokedex/images/857.png new file mode 100644 index 0000000..88fc492 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/857.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/858.png b/projects/challange 8/pokedex/v1/pokedex/images/858.png new file mode 100644 index 0000000..49549b7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/858.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/859.png b/projects/challange 8/pokedex/v1/pokedex/images/859.png new file mode 100644 index 0000000..77e4748 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/859.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/86.png b/projects/challange 8/pokedex/v1/pokedex/images/86.png new file mode 100644 index 0000000..f95fa6f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/86.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/860.png b/projects/challange 8/pokedex/v1/pokedex/images/860.png new file mode 100644 index 0000000..cb200f8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/860.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/861.png b/projects/challange 8/pokedex/v1/pokedex/images/861.png new file mode 100644 index 0000000..c283711 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/861.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/862.png b/projects/challange 8/pokedex/v1/pokedex/images/862.png new file mode 100644 index 0000000..dc359fd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/862.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/863.png b/projects/challange 8/pokedex/v1/pokedex/images/863.png new file mode 100644 index 0000000..076dfb7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/863.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/864.png b/projects/challange 8/pokedex/v1/pokedex/images/864.png new file mode 100644 index 0000000..c365d29 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/864.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/865.png b/projects/challange 8/pokedex/v1/pokedex/images/865.png new file mode 100644 index 0000000..ec712ee Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/865.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/866.png b/projects/challange 8/pokedex/v1/pokedex/images/866.png new file mode 100644 index 0000000..b93651f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/866.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/867.png b/projects/challange 8/pokedex/v1/pokedex/images/867.png new file mode 100644 index 0000000..5879d01 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/867.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/868.png b/projects/challange 8/pokedex/v1/pokedex/images/868.png new file mode 100644 index 0000000..3277a0a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/868.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/869.png b/projects/challange 8/pokedex/v1/pokedex/images/869.png new file mode 100644 index 0000000..7e2a79b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/869.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/87.png b/projects/challange 8/pokedex/v1/pokedex/images/87.png new file mode 100644 index 0000000..fde985f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/87.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/870.png b/projects/challange 8/pokedex/v1/pokedex/images/870.png new file mode 100644 index 0000000..c6c4785 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/870.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/871.png b/projects/challange 8/pokedex/v1/pokedex/images/871.png new file mode 100644 index 0000000..9253834 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/871.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/872.png b/projects/challange 8/pokedex/v1/pokedex/images/872.png new file mode 100644 index 0000000..7b34f54 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/872.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/873.png b/projects/challange 8/pokedex/v1/pokedex/images/873.png new file mode 100644 index 0000000..2d1e77a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/873.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/874.png b/projects/challange 8/pokedex/v1/pokedex/images/874.png new file mode 100644 index 0000000..5c02595 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/874.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/875.png b/projects/challange 8/pokedex/v1/pokedex/images/875.png new file mode 100644 index 0000000..b540313 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/875.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/876.png b/projects/challange 8/pokedex/v1/pokedex/images/876.png new file mode 100644 index 0000000..e22e789 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/876.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/877.png b/projects/challange 8/pokedex/v1/pokedex/images/877.png new file mode 100644 index 0000000..5a91f25 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/877.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/878.png b/projects/challange 8/pokedex/v1/pokedex/images/878.png new file mode 100644 index 0000000..f7824ad Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/878.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/879.png b/projects/challange 8/pokedex/v1/pokedex/images/879.png new file mode 100644 index 0000000..06db659 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/879.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/88.png b/projects/challange 8/pokedex/v1/pokedex/images/88.png new file mode 100644 index 0000000..5d7bba0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/88.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/880.png b/projects/challange 8/pokedex/v1/pokedex/images/880.png new file mode 100644 index 0000000..73cd00e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/880.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/881.png b/projects/challange 8/pokedex/v1/pokedex/images/881.png new file mode 100644 index 0000000..52763c8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/881.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/882.png b/projects/challange 8/pokedex/v1/pokedex/images/882.png new file mode 100644 index 0000000..0adf1a7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/882.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/883.png b/projects/challange 8/pokedex/v1/pokedex/images/883.png new file mode 100644 index 0000000..05cc068 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/883.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/884.png b/projects/challange 8/pokedex/v1/pokedex/images/884.png new file mode 100644 index 0000000..a47bd6f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/884.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/885.png b/projects/challange 8/pokedex/v1/pokedex/images/885.png new file mode 100644 index 0000000..114ef58 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/885.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/886.png b/projects/challange 8/pokedex/v1/pokedex/images/886.png new file mode 100644 index 0000000..b467030 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/886.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/887.png b/projects/challange 8/pokedex/v1/pokedex/images/887.png new file mode 100644 index 0000000..0fecedc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/887.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/888.png b/projects/challange 8/pokedex/v1/pokedex/images/888.png new file mode 100644 index 0000000..a6b68cd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/888.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/889.png b/projects/challange 8/pokedex/v1/pokedex/images/889.png new file mode 100644 index 0000000..5dc85ad Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/889.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/89.png b/projects/challange 8/pokedex/v1/pokedex/images/89.png new file mode 100644 index 0000000..55a2ea4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/89.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/890.png b/projects/challange 8/pokedex/v1/pokedex/images/890.png new file mode 100644 index 0000000..fdb9edb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/890.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/891.png b/projects/challange 8/pokedex/v1/pokedex/images/891.png new file mode 100644 index 0000000..7b2e1bd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/891.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/892.png b/projects/challange 8/pokedex/v1/pokedex/images/892.png new file mode 100644 index 0000000..79b71e0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/892.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/893.png b/projects/challange 8/pokedex/v1/pokedex/images/893.png new file mode 100644 index 0000000..7c45b83 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/893.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/894.png b/projects/challange 8/pokedex/v1/pokedex/images/894.png new file mode 100644 index 0000000..568f02b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/894.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/895.png b/projects/challange 8/pokedex/v1/pokedex/images/895.png new file mode 100644 index 0000000..37c5e02 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/895.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/896.png b/projects/challange 8/pokedex/v1/pokedex/images/896.png new file mode 100644 index 0000000..99c3579 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/896.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/897.png b/projects/challange 8/pokedex/v1/pokedex/images/897.png new file mode 100644 index 0000000..f73cd9f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/897.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/898.png b/projects/challange 8/pokedex/v1/pokedex/images/898.png new file mode 100644 index 0000000..f9d5737 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/898.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/899.png b/projects/challange 8/pokedex/v1/pokedex/images/899.png new file mode 100644 index 0000000..013c437 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/899.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/9.png b/projects/challange 8/pokedex/v1/pokedex/images/9.png new file mode 100644 index 0000000..7af9de8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/9.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/90.png b/projects/challange 8/pokedex/v1/pokedex/images/90.png new file mode 100644 index 0000000..8e654e0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/90.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/900.png b/projects/challange 8/pokedex/v1/pokedex/images/900.png new file mode 100644 index 0000000..be59cbc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/900.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/901.png b/projects/challange 8/pokedex/v1/pokedex/images/901.png new file mode 100644 index 0000000..4b83f22 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/901.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/902.png b/projects/challange 8/pokedex/v1/pokedex/images/902.png new file mode 100644 index 0000000..6dafc09 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/902.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/903.png b/projects/challange 8/pokedex/v1/pokedex/images/903.png new file mode 100644 index 0000000..d0adcf7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/903.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/904.png b/projects/challange 8/pokedex/v1/pokedex/images/904.png new file mode 100644 index 0000000..63334bc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/904.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/905.png b/projects/challange 8/pokedex/v1/pokedex/images/905.png new file mode 100644 index 0000000..a5fac99 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/905.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/906.png b/projects/challange 8/pokedex/v1/pokedex/images/906.png new file mode 100644 index 0000000..2804e01 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/906.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/907.png b/projects/challange 8/pokedex/v1/pokedex/images/907.png new file mode 100644 index 0000000..e681160 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/907.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/908.png b/projects/challange 8/pokedex/v1/pokedex/images/908.png new file mode 100644 index 0000000..2078db8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/908.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/909.png b/projects/challange 8/pokedex/v1/pokedex/images/909.png new file mode 100644 index 0000000..7049480 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/909.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/91.png b/projects/challange 8/pokedex/v1/pokedex/images/91.png new file mode 100644 index 0000000..cdec88c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/91.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/910.png b/projects/challange 8/pokedex/v1/pokedex/images/910.png new file mode 100644 index 0000000..bc1465a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/910.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/911.png b/projects/challange 8/pokedex/v1/pokedex/images/911.png new file mode 100644 index 0000000..fd211be Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/911.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/912.png b/projects/challange 8/pokedex/v1/pokedex/images/912.png new file mode 100644 index 0000000..e331182 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/912.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/913.png b/projects/challange 8/pokedex/v1/pokedex/images/913.png new file mode 100644 index 0000000..3be60b5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/913.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/914.png b/projects/challange 8/pokedex/v1/pokedex/images/914.png new file mode 100644 index 0000000..168caab Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/914.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/915.png b/projects/challange 8/pokedex/v1/pokedex/images/915.png new file mode 100644 index 0000000..23bb8eb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/915.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/916.png b/projects/challange 8/pokedex/v1/pokedex/images/916.png new file mode 100644 index 0000000..a7e46ed Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/916.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/917.png b/projects/challange 8/pokedex/v1/pokedex/images/917.png new file mode 100644 index 0000000..3e51d98 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/917.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/918.png b/projects/challange 8/pokedex/v1/pokedex/images/918.png new file mode 100644 index 0000000..b945708 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/918.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/919.png b/projects/challange 8/pokedex/v1/pokedex/images/919.png new file mode 100644 index 0000000..84e6d67 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/919.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/92.png b/projects/challange 8/pokedex/v1/pokedex/images/92.png new file mode 100644 index 0000000..4f94a64 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/92.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/920.png b/projects/challange 8/pokedex/v1/pokedex/images/920.png new file mode 100644 index 0000000..e47d8b5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/920.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/921.png b/projects/challange 8/pokedex/v1/pokedex/images/921.png new file mode 100644 index 0000000..12bc1db Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/921.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/922.png b/projects/challange 8/pokedex/v1/pokedex/images/922.png new file mode 100644 index 0000000..81893b9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/922.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/923.png b/projects/challange 8/pokedex/v1/pokedex/images/923.png new file mode 100644 index 0000000..c35aaed Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/923.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/924.png b/projects/challange 8/pokedex/v1/pokedex/images/924.png new file mode 100644 index 0000000..cf3e3d8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/924.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/925.png b/projects/challange 8/pokedex/v1/pokedex/images/925.png new file mode 100644 index 0000000..93e70d7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/925.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/926.png b/projects/challange 8/pokedex/v1/pokedex/images/926.png new file mode 100644 index 0000000..93207bc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/926.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/927.png b/projects/challange 8/pokedex/v1/pokedex/images/927.png new file mode 100644 index 0000000..81871cd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/927.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/928.png b/projects/challange 8/pokedex/v1/pokedex/images/928.png new file mode 100644 index 0000000..38c8295 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/928.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/929.png b/projects/challange 8/pokedex/v1/pokedex/images/929.png new file mode 100644 index 0000000..2caa65e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/929.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/93.png b/projects/challange 8/pokedex/v1/pokedex/images/93.png new file mode 100644 index 0000000..b42c565 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/93.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/930.png b/projects/challange 8/pokedex/v1/pokedex/images/930.png new file mode 100644 index 0000000..cd73c49 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/930.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/931.png b/projects/challange 8/pokedex/v1/pokedex/images/931.png new file mode 100644 index 0000000..764d34c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/931.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/932.png b/projects/challange 8/pokedex/v1/pokedex/images/932.png new file mode 100644 index 0000000..ceaa7bc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/932.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/933.png b/projects/challange 8/pokedex/v1/pokedex/images/933.png new file mode 100644 index 0000000..d5ffa46 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/933.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/934.png b/projects/challange 8/pokedex/v1/pokedex/images/934.png new file mode 100644 index 0000000..999a945 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/934.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/935.png b/projects/challange 8/pokedex/v1/pokedex/images/935.png new file mode 100644 index 0000000..399442d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/935.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/936.png b/projects/challange 8/pokedex/v1/pokedex/images/936.png new file mode 100644 index 0000000..dd13cd7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/936.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/937.png b/projects/challange 8/pokedex/v1/pokedex/images/937.png new file mode 100644 index 0000000..defae62 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/937.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/938.png b/projects/challange 8/pokedex/v1/pokedex/images/938.png new file mode 100644 index 0000000..7ef35d2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/938.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/939.png b/projects/challange 8/pokedex/v1/pokedex/images/939.png new file mode 100644 index 0000000..77aac80 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/939.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/94.png b/projects/challange 8/pokedex/v1/pokedex/images/94.png new file mode 100644 index 0000000..91ed467 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/94.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/940.png b/projects/challange 8/pokedex/v1/pokedex/images/940.png new file mode 100644 index 0000000..a77b71a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/940.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/941.png b/projects/challange 8/pokedex/v1/pokedex/images/941.png new file mode 100644 index 0000000..50968cc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/941.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/942.png b/projects/challange 8/pokedex/v1/pokedex/images/942.png new file mode 100644 index 0000000..fff443e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/942.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/943.png b/projects/challange 8/pokedex/v1/pokedex/images/943.png new file mode 100644 index 0000000..8276a7b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/943.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/944.png b/projects/challange 8/pokedex/v1/pokedex/images/944.png new file mode 100644 index 0000000..5db4f5e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/944.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/945.png b/projects/challange 8/pokedex/v1/pokedex/images/945.png new file mode 100644 index 0000000..5903adf Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/945.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/946.png b/projects/challange 8/pokedex/v1/pokedex/images/946.png new file mode 100644 index 0000000..8205883 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/946.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/947.png b/projects/challange 8/pokedex/v1/pokedex/images/947.png new file mode 100644 index 0000000..7595bd7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/947.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/948.png b/projects/challange 8/pokedex/v1/pokedex/images/948.png new file mode 100644 index 0000000..a972266 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/948.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/949.png b/projects/challange 8/pokedex/v1/pokedex/images/949.png new file mode 100644 index 0000000..5c216f4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/949.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/95.png b/projects/challange 8/pokedex/v1/pokedex/images/95.png new file mode 100644 index 0000000..f6d6b9a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/95.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/950.png b/projects/challange 8/pokedex/v1/pokedex/images/950.png new file mode 100644 index 0000000..1cd4363 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/950.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/951.png b/projects/challange 8/pokedex/v1/pokedex/images/951.png new file mode 100644 index 0000000..6eb2f7e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/951.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/952.png b/projects/challange 8/pokedex/v1/pokedex/images/952.png new file mode 100644 index 0000000..ad321d2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/952.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/953.png b/projects/challange 8/pokedex/v1/pokedex/images/953.png new file mode 100644 index 0000000..b953552 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/953.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/954.png b/projects/challange 8/pokedex/v1/pokedex/images/954.png new file mode 100644 index 0000000..ec15f9d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/954.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/955.png b/projects/challange 8/pokedex/v1/pokedex/images/955.png new file mode 100644 index 0000000..62def54 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/955.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/956.png b/projects/challange 8/pokedex/v1/pokedex/images/956.png new file mode 100644 index 0000000..58a0ed0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/956.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/957.png b/projects/challange 8/pokedex/v1/pokedex/images/957.png new file mode 100644 index 0000000..867ad10 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/957.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/958.png b/projects/challange 8/pokedex/v1/pokedex/images/958.png new file mode 100644 index 0000000..ccc98cd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/958.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/959.png b/projects/challange 8/pokedex/v1/pokedex/images/959.png new file mode 100644 index 0000000..3ac0c9c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/959.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/96.png b/projects/challange 8/pokedex/v1/pokedex/images/96.png new file mode 100644 index 0000000..7c43969 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/96.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/960.png b/projects/challange 8/pokedex/v1/pokedex/images/960.png new file mode 100644 index 0000000..1880b08 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/960.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/961.png b/projects/challange 8/pokedex/v1/pokedex/images/961.png new file mode 100644 index 0000000..c9f3dba Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/961.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/962.png b/projects/challange 8/pokedex/v1/pokedex/images/962.png new file mode 100644 index 0000000..050ae5e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/962.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/963.png b/projects/challange 8/pokedex/v1/pokedex/images/963.png new file mode 100644 index 0000000..00c1372 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/963.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/964.png b/projects/challange 8/pokedex/v1/pokedex/images/964.png new file mode 100644 index 0000000..411a7b2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/964.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/965.png b/projects/challange 8/pokedex/v1/pokedex/images/965.png new file mode 100644 index 0000000..da1c611 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/965.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/966.png b/projects/challange 8/pokedex/v1/pokedex/images/966.png new file mode 100644 index 0000000..52c9a04 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/966.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/967.png b/projects/challange 8/pokedex/v1/pokedex/images/967.png new file mode 100644 index 0000000..20a6e49 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/967.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/968.png b/projects/challange 8/pokedex/v1/pokedex/images/968.png new file mode 100644 index 0000000..8b85b8e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/968.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/969.png b/projects/challange 8/pokedex/v1/pokedex/images/969.png new file mode 100644 index 0000000..023df5b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/969.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/97.png b/projects/challange 8/pokedex/v1/pokedex/images/97.png new file mode 100644 index 0000000..44bbfa3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/97.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/970.png b/projects/challange 8/pokedex/v1/pokedex/images/970.png new file mode 100644 index 0000000..fb0121d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/970.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/971.png b/projects/challange 8/pokedex/v1/pokedex/images/971.png new file mode 100644 index 0000000..cb4cbaa Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/971.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/972.png b/projects/challange 8/pokedex/v1/pokedex/images/972.png new file mode 100644 index 0000000..2c33fba Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/972.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/973.png b/projects/challange 8/pokedex/v1/pokedex/images/973.png new file mode 100644 index 0000000..ba8731b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/973.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/974.png b/projects/challange 8/pokedex/v1/pokedex/images/974.png new file mode 100644 index 0000000..8a4fcab Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/974.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/975.png b/projects/challange 8/pokedex/v1/pokedex/images/975.png new file mode 100644 index 0000000..2f6c068 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/975.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/976.png b/projects/challange 8/pokedex/v1/pokedex/images/976.png new file mode 100644 index 0000000..0ef364d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/976.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/977.png b/projects/challange 8/pokedex/v1/pokedex/images/977.png new file mode 100644 index 0000000..2505859 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/977.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/978.png b/projects/challange 8/pokedex/v1/pokedex/images/978.png new file mode 100644 index 0000000..2da6e57 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/978.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/979.png b/projects/challange 8/pokedex/v1/pokedex/images/979.png new file mode 100644 index 0000000..b204819 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/979.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/98.png b/projects/challange 8/pokedex/v1/pokedex/images/98.png new file mode 100644 index 0000000..113f028 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/98.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/980.png b/projects/challange 8/pokedex/v1/pokedex/images/980.png new file mode 100644 index 0000000..314a075 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/980.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/981.png b/projects/challange 8/pokedex/v1/pokedex/images/981.png new file mode 100644 index 0000000..98d0df5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/981.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/982.png b/projects/challange 8/pokedex/v1/pokedex/images/982.png new file mode 100644 index 0000000..cea1615 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/982.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/983.png b/projects/challange 8/pokedex/v1/pokedex/images/983.png new file mode 100644 index 0000000..efcec89 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/983.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/984.png b/projects/challange 8/pokedex/v1/pokedex/images/984.png new file mode 100644 index 0000000..8a33bfe Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/984.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/985.png b/projects/challange 8/pokedex/v1/pokedex/images/985.png new file mode 100644 index 0000000..50b7714 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/985.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/986.png b/projects/challange 8/pokedex/v1/pokedex/images/986.png new file mode 100644 index 0000000..23ad50f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/986.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/987.png b/projects/challange 8/pokedex/v1/pokedex/images/987.png new file mode 100644 index 0000000..c06c515 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/987.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/988.png b/projects/challange 8/pokedex/v1/pokedex/images/988.png new file mode 100644 index 0000000..ac611fe Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/988.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/989.png b/projects/challange 8/pokedex/v1/pokedex/images/989.png new file mode 100644 index 0000000..7e2dee7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/989.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/99.png b/projects/challange 8/pokedex/v1/pokedex/images/99.png new file mode 100644 index 0000000..29ac439 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/99.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/990.png b/projects/challange 8/pokedex/v1/pokedex/images/990.png new file mode 100644 index 0000000..05abb82 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/990.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/991.png b/projects/challange 8/pokedex/v1/pokedex/images/991.png new file mode 100644 index 0000000..cef1b9d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/991.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/992.png b/projects/challange 8/pokedex/v1/pokedex/images/992.png new file mode 100644 index 0000000..cc2701d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/992.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/993.png b/projects/challange 8/pokedex/v1/pokedex/images/993.png new file mode 100644 index 0000000..81ecab4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/993.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/994.png b/projects/challange 8/pokedex/v1/pokedex/images/994.png new file mode 100644 index 0000000..7065f1a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/994.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/995.png b/projects/challange 8/pokedex/v1/pokedex/images/995.png new file mode 100644 index 0000000..b334bd3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/995.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/996.png b/projects/challange 8/pokedex/v1/pokedex/images/996.png new file mode 100644 index 0000000..4a7b3bd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/996.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/997.png b/projects/challange 8/pokedex/v1/pokedex/images/997.png new file mode 100644 index 0000000..34e0f81 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/997.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/998.png b/projects/challange 8/pokedex/v1/pokedex/images/998.png new file mode 100644 index 0000000..a6b9b11 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/998.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/images/999.png b/projects/challange 8/pokedex/v1/pokedex/images/999.png new file mode 100644 index 0000000..21bdcfc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/images/999.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/index.html b/projects/challange 8/pokedex/v1/pokedex/index.html new file mode 100644 index 0000000..7050b54 --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/index.html @@ -0,0 +1,74 @@ + + + + + + + + + Pokedex + + +
+
+ + + +
+ +
+ +
+
+
+ Dark Mode + +
+
+ +
+ +
+ +
+
+ Kanto + Johto + Hoenn + Sinnoh + Unova + Kalos + Alola + Galar + Hisui + Paldea +
+
+ +
+
+
+
+
+
+
+ + +
+ + + + + + + diff --git a/projects/challange 8/pokedex/v1/pokedex/script.js b/projects/challange 8/pokedex/v1/pokedex/script.js new file mode 100644 index 0000000..d5fe7f0 --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/script.js @@ -0,0 +1,232 @@ +const poke_container = document.getElementById("poke-container"); +const colors = { + fire: "#e03a3a", + grass: "#50C878", + electric: "#fad343", + water: "#1E90FF", + ground: "#735139", + rock: "#63594f", + fairy: "#EE99AC", + poison: "#b34fb3", + bug: "#A8B820", + dragon: "#fc883a", + psychic: "#882eff", + flying: "#87CEEB", + fighting: "#bf5858", + normal: "#D2B48C", + ghost: "#7B62A3", + dark: "#414063", + steel: "#808080", + ice: "#98D8D8", +}; +const regions = { + kanto: { + start: 1, + end: 151, + }, + johto: { + start: 152, + end: 251, + }, + hoenn: { + start: 252, + end: 386, + }, + sinnoh: { + start: 387, + end: 493, + }, + unova: { + start: 494, + end: 649, + }, + kalos: { + start: 650, + end: 721, + }, + alola: { + start: 722, + end: 809, + }, + galar: { + start: 810, + end: 898, + }, + hisui: { + start: 899, + end: 905, + }, + paldea: { + start: 906, + end: 1010, + }, +}; + +const loader = document.querySelector(".lds-ring"); +const fetchPokemons = async (region) => { + const { start, end } = regions[region]; + loader.classList.add("ring-active"); + + const url = `http://localhost/pokedex/pokedex/get_pokemons.php?start=${start}&end=${end}`; + try { + const res = await fetch(url); + if (!res.ok) { + throw new Error(`HTTP error! status: ${res.status}`); + } + const data = await res.json(); + loader.classList.remove('ring-active'); + data.forEach(pokemon => createPokemonCard(pokemon)); + } catch (error) { + console.error('Error fetching Pokémon data:', error); + } +}; + +const main_types = Object.keys(colors); + +const createPokemonCard = (pokemon) => { + const pokemonEl = document.createElement("div"); + pokemonEl.classList.add("card"); + pokemonEl.id = pokemon.id; + + let name = pokemon.name[0].toUpperCase() + pokemon.name.slice(1); + if (name.length > 9) { + name = name.split("-")[0]; + } else { + name = name; + } + const id = pokemon.id.toString().padStart(3, "0"); + + let weight = pokemon.weight / 10 + "kg"; + let height = pokemon.height / 10 + "m"; + + const poke_types = pokemon.types; + const type = main_types.find((type) => poke_types.indexOf(type) > -1); + const color = colors[type]; + const frontImg = pokemon.image_url; + + pokemonEl.style.backgroundColor = color; + + const pokemonInnerHTML = ` +
+
+ pokeball + ${name} +
+ #${id} +

${name}

+
+ ${poke_types.map(type => ` +
+ Type +
+ `).join("")} +
+
+
+
+ ${name} + pokeball +
+ #${id} +
+
Weight:
${weight}
+
Height:
${height}
+
+
+ `; + + pokemonEl.innerHTML = pokemonInnerHTML; + pokemonEl.addEventListener("click", () => { + window.open(`details.html?id=${id}`, "_self"); + }); + + const pokemonElHolder = document.createElement("div"); + pokemonElHolder.classList.add("cardContainer"); + pokemonElHolder.appendChild(pokemonEl); + + poke_container.appendChild(pokemonElHolder); +}; + +const changeRegion = () => { + const regionSelect = document.getElementById("regionSelect"); + regionSelect.addEventListener("click", (event) => { + const selectedRegion = event.target.getAttribute("data-value"); + const activeRegion = document.querySelector(".active"); + if (selectedRegion) { + poke_container.innerHTML = ""; + fetchPokemons(selectedRegion); + activeRegion.classList.remove("active"); + event.target.classList.add("active"); + } + }); +}; + +fetchPokemons("kanto"); + +window.addEventListener("scroll", function () { + var scrollToTopBtn = document.getElementById("scrollToTopBtn"); + if (window.scrollY > 100) { + scrollToTopBtn.style.display = "block"; + } else { + scrollToTopBtn.style.display = "none"; + } +}); + +document.getElementById("scrollToTopBtn").addEventListener("click", function () { + window.scrollTo({ + top: 0, + behavior: "smooth", + }); +}); + +window.addEventListener("scroll", function () { + var scrollToDownBtn = document.getElementById("scrollToDownBtn"); + if (window.scrollY > 100) { + scrollToDownBtn.style.display = "block"; + } else { + scrollToDownBtn.style.display = "none"; + } +}); + +document.getElementById("scrollToDownBtn").addEventListener("click", function () { + window.scrollTo({ + top: 999999, + behavior: "smooth", + }); +}); + +function search_pokemon() { + let input = document.getElementById("searchbar").value; + input = input.toLowerCase(); + input = input.replace(/\s+/g, ""); // removing all spaces from search box + let x = document.getElementsByClassName("cardContainer"); + + for (i = 0; i < x.length; i++) { + if (!x[i].innerHTML.toLowerCase().includes(input)) { + x[i].style.display = "none"; + } else { + x[i].style.display = "block"; + } + } +} + +const darkModeButton = document.getElementById("dark"); + +darkModeButton.addEventListener("click", () => { + let element = document.body; + element.classList.toggle("dark-mode"); + document.body.classList.toggle("dark-mode"); + + const regions = document.querySelectorAll(".regionvalue"); + regions.forEach(region => { + region.classList.toggle("dark-mode"); + }); +}); + +const darkModeIcon = document.getElementById("dark"); +darkModeButton.addEventListener("click", () => { + document.body.classList.toggle("dark-mode"); + darkModeIcon.classList.toggle("fa-toggle-on"); +}); + +changeRegion(); diff --git a/projects/challange 8/pokedex/v1/pokedex/script2.js b/projects/challange 8/pokedex/v1/pokedex/script2.js new file mode 100644 index 0000000..c9be91f --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/script2.js @@ -0,0 +1,208 @@ +const params = new URLSearchParams(window.location.search); +const id = parseInt(params.get("id")); + +const colors = { + fire: "#e03a3a", + grass: "#50C878", + electric: "#fad343", + water: "#1E90FF", + ground: "#735139", + rock: "#63594f", + fairy: "#EE99AC", + poison: "#b34fb3", + bug: "#A8B820", + dragon: "#fc883a", + psychic: "#882eff", + flying: "#87CEEB", + fighting: "#bf5858", + normal: "#D2B48C", + ghost: "#7B62A3", + dark: "#414063", + steel: "#808080", + ice: "#98D8D8", +}; +const main_types = Object.keys(colors); + +const fetchPokemonDetails = async () => { + const url = `http://localhost/pokedex/pokedex/get_pokemon.php?id=${id}`; + const res = await fetch(url); + const data = await res.json(); + displayPokemonDetails(data); +}; + +const displayPokemonDetails = (pokemon) => { + const name = pokemon.name; + const japaneseName = pokemon.japanese_name; + const id = pokemon.id.toString().padStart(3, "0"); + const imageSrc = pokemon.image_url; + const poke_types = pokemon.types; + const type = poke_types[0]; + const color = colors[type]; + + const hp = pokemon.stats?.hp || 0; + const attack = pokemon.stats?.attack || 0; + const spAttack = pokemon.stats?.sp_attack || 0; + const spDefense = pokemon.stats?.sp_defense || 0; + const defense = pokemon.stats?.defense || 0; + const speed = pokemon.stats?.speed || 0; + + const abilities = pokemon.abilities; + const eggGroups = pokemon.egg_groups; + document.body.style.backgroundColor = color; + + let tab2 = document.getElementById("tab_2"); + tab2.innerHTML = ` +
+
+
+ Health: + ${hp} +
+ +
+
+
+ Attack: + ${attack} +
+ +
+
+
+ Defense: + ${defense} +
+ +
+
+
+ Sp. Atk: + ${spAttack} +
+ +
+
+
+ Sp. Def: + ${spDefense} +
+ +
+
+
+ Speed: + ${speed} +
+ +
+
+
+ Total: + ${speed + hp + attack + defense + spAttack + spDefense} +
+ +
+
+ `; + + let pokemonDetailsEl = document.getElementById("pokemon-details"); + pokemonDetailsEl.innerHTML = ` +
+ + +
+
+
${japaneseName}
+
${name}
+
+
+
+ ${name} + pokeball +
+
+ `; + + const height = pokemon.height / 10 + "m"; + const weight = pokemon.weight / 10 + "kg"; + const genderRate = pokemon.gender_rate; + let male = ""; + let female = ""; + if (genderRate === -1) { + male = "??"; + female = "??"; + } else if (genderRate === 0) { + male = "100%"; + female = "0%"; + } else if (genderRate === 8) { + male = "0%"; + female = "100%"; + } else { + female = (genderRate / 8) * 100 + "%"; + male = 100 - (genderRate / 8) * 100 + "%"; + } + const friendship = pokemon.base_happiness; + const catchRate = pokemon.capture_rate; + + let tab1 = document.getElementById("tab_1"); + tab1.innerHTML = ` +
+
+

${pokemon.genus}
${pokemon.flavor_text}

+
+ Height:
${height}
+ Weight:
${weight}
+
+
+ ${poke_types.map(type => ` +
+ Type +
+ `).join("")} +
+
+
+
Id: #${id}
+
Gender: ${male} ${female}
+ Abilities: ${abilities.join(", ")} + Catch Rate: ${catchRate} (${((catchRate / 255) * 100).toFixed(2)}% chance) + Base Friendship: ${friendship} (${friendship < 50 ? "lower" : friendship < 100 ? "normal" : "higher"}) + Base Exp: ${pokemon.base_experience} + Growth Rate: ${pokemon.growth_rate} + Egg Groups: ${eggGroups.join(", ")} +
+
+ `; +}; + +const tabs = document.querySelectorAll("[data-tab-value]"); +const tabsContainer = document.querySelector(".tabs"); +const tabInfos = document.querySelectorAll("[data-tab-info]"); + +tabs.forEach((tab) => { + tab.addEventListener("click", () => { + const target = document.querySelector(tab.dataset.tabValue); + + tabInfos.forEach((tabInfo) => { + tabInfo.classList.remove("active"); + }); + target.classList.add("active"); + target.scrollIntoView({ behavior: "smooth" }); + }); +}); +const nextPokemon = (e) => { + window.location.href = `details.html?id=${id + 1}`; + e.preventDefault(); +}; +const backButton = (e) => { + window.history.back(); + e.preventDefault(); +}; + +fetchPokemonDetails(); + +//preloader +window.addEventListener("load", function () { + document.querySelector("body").classList.add("loaded"); +}); + diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/1.png b/projects/challange 8/pokedex/v1/pokedex/small-images/1.png new file mode 100644 index 0000000..faf989b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/1.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/10.png b/projects/challange 8/pokedex/v1/pokedex/small-images/10.png new file mode 100644 index 0000000..85b7c83 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/10.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/100.png b/projects/challange 8/pokedex/v1/pokedex/small-images/100.png new file mode 100644 index 0000000..14e94e8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/100.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/1000.png b/projects/challange 8/pokedex/v1/pokedex/small-images/1000.png new file mode 100644 index 0000000..69c2fe3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/1000.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/1001.png b/projects/challange 8/pokedex/v1/pokedex/small-images/1001.png new file mode 100644 index 0000000..4a58c8f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/1001.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/1002.png b/projects/challange 8/pokedex/v1/pokedex/small-images/1002.png new file mode 100644 index 0000000..aee6769 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/1002.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/1003.png b/projects/challange 8/pokedex/v1/pokedex/small-images/1003.png new file mode 100644 index 0000000..f8ee790 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/1003.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/1004.png b/projects/challange 8/pokedex/v1/pokedex/small-images/1004.png new file mode 100644 index 0000000..dc5a78f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/1004.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/1005.png b/projects/challange 8/pokedex/v1/pokedex/small-images/1005.png new file mode 100644 index 0000000..0c1b1f1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/1005.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/1006.png b/projects/challange 8/pokedex/v1/pokedex/small-images/1006.png new file mode 100644 index 0000000..a4c3e20 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/1006.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/1007.png b/projects/challange 8/pokedex/v1/pokedex/small-images/1007.png new file mode 100644 index 0000000..c0c1648 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/1007.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/1008.png b/projects/challange 8/pokedex/v1/pokedex/small-images/1008.png new file mode 100644 index 0000000..aebb0f3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/1008.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/1009.png b/projects/challange 8/pokedex/v1/pokedex/small-images/1009.png new file mode 100644 index 0000000..74934de Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/1009.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/101.png b/projects/challange 8/pokedex/v1/pokedex/small-images/101.png new file mode 100644 index 0000000..a5dcc52 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/101.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/1010.png b/projects/challange 8/pokedex/v1/pokedex/small-images/1010.png new file mode 100644 index 0000000..61cec52 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/1010.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/102.png b/projects/challange 8/pokedex/v1/pokedex/small-images/102.png new file mode 100644 index 0000000..e95bd2e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/102.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/103.png b/projects/challange 8/pokedex/v1/pokedex/small-images/103.png new file mode 100644 index 0000000..df8f036 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/103.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/104.png b/projects/challange 8/pokedex/v1/pokedex/small-images/104.png new file mode 100644 index 0000000..ba58c88 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/104.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/105.png b/projects/challange 8/pokedex/v1/pokedex/small-images/105.png new file mode 100644 index 0000000..ae95b9f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/105.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/106.png b/projects/challange 8/pokedex/v1/pokedex/small-images/106.png new file mode 100644 index 0000000..a72e8a9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/106.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/107.png b/projects/challange 8/pokedex/v1/pokedex/small-images/107.png new file mode 100644 index 0000000..03b1140 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/107.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/108.png b/projects/challange 8/pokedex/v1/pokedex/small-images/108.png new file mode 100644 index 0000000..7f6a785 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/108.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/109.png b/projects/challange 8/pokedex/v1/pokedex/small-images/109.png new file mode 100644 index 0000000..705dc95 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/109.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/11.png b/projects/challange 8/pokedex/v1/pokedex/small-images/11.png new file mode 100644 index 0000000..49b2cb8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/11.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/110.png b/projects/challange 8/pokedex/v1/pokedex/small-images/110.png new file mode 100644 index 0000000..98150be Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/110.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/111.png b/projects/challange 8/pokedex/v1/pokedex/small-images/111.png new file mode 100644 index 0000000..872bf56 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/111.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/112.png b/projects/challange 8/pokedex/v1/pokedex/small-images/112.png new file mode 100644 index 0000000..63c1540 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/112.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/113.png b/projects/challange 8/pokedex/v1/pokedex/small-images/113.png new file mode 100644 index 0000000..175122d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/113.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/114.png b/projects/challange 8/pokedex/v1/pokedex/small-images/114.png new file mode 100644 index 0000000..052dd8d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/114.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/115.png b/projects/challange 8/pokedex/v1/pokedex/small-images/115.png new file mode 100644 index 0000000..a27b592 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/115.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/116.png b/projects/challange 8/pokedex/v1/pokedex/small-images/116.png new file mode 100644 index 0000000..e5345d6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/116.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/117.png b/projects/challange 8/pokedex/v1/pokedex/small-images/117.png new file mode 100644 index 0000000..1ba9a03 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/117.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/118.png b/projects/challange 8/pokedex/v1/pokedex/small-images/118.png new file mode 100644 index 0000000..bf8e26e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/118.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/119.png b/projects/challange 8/pokedex/v1/pokedex/small-images/119.png new file mode 100644 index 0000000..ef11d23 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/119.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/12.png b/projects/challange 8/pokedex/v1/pokedex/small-images/12.png new file mode 100644 index 0000000..fd38c8d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/12.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/120.png b/projects/challange 8/pokedex/v1/pokedex/small-images/120.png new file mode 100644 index 0000000..e159e0a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/120.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/121.png b/projects/challange 8/pokedex/v1/pokedex/small-images/121.png new file mode 100644 index 0000000..b0ed978 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/121.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/122.png b/projects/challange 8/pokedex/v1/pokedex/small-images/122.png new file mode 100644 index 0000000..372209b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/122.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/123.png b/projects/challange 8/pokedex/v1/pokedex/small-images/123.png new file mode 100644 index 0000000..9f2cf59 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/123.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/124.png b/projects/challange 8/pokedex/v1/pokedex/small-images/124.png new file mode 100644 index 0000000..87b354a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/124.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/125.png b/projects/challange 8/pokedex/v1/pokedex/small-images/125.png new file mode 100644 index 0000000..eac6dea Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/125.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/126.png b/projects/challange 8/pokedex/v1/pokedex/small-images/126.png new file mode 100644 index 0000000..817706a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/126.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/127.png b/projects/challange 8/pokedex/v1/pokedex/small-images/127.png new file mode 100644 index 0000000..c8c54b9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/127.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/128.png b/projects/challange 8/pokedex/v1/pokedex/small-images/128.png new file mode 100644 index 0000000..599bb89 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/128.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/129.png b/projects/challange 8/pokedex/v1/pokedex/small-images/129.png new file mode 100644 index 0000000..9e78788 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/129.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/13.png b/projects/challange 8/pokedex/v1/pokedex/small-images/13.png new file mode 100644 index 0000000..7a587bf Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/13.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/130.png b/projects/challange 8/pokedex/v1/pokedex/small-images/130.png new file mode 100644 index 0000000..f77b52b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/130.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/131.png b/projects/challange 8/pokedex/v1/pokedex/small-images/131.png new file mode 100644 index 0000000..41f6b97 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/131.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/132.png b/projects/challange 8/pokedex/v1/pokedex/small-images/132.png new file mode 100644 index 0000000..f739f05 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/132.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/133.png b/projects/challange 8/pokedex/v1/pokedex/small-images/133.png new file mode 100644 index 0000000..9820dea Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/133.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/134.png b/projects/challange 8/pokedex/v1/pokedex/small-images/134.png new file mode 100644 index 0000000..bfaa8b0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/134.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/135.png b/projects/challange 8/pokedex/v1/pokedex/small-images/135.png new file mode 100644 index 0000000..a0b8e9d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/135.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/136.png b/projects/challange 8/pokedex/v1/pokedex/small-images/136.png new file mode 100644 index 0000000..1db968d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/136.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/137.png b/projects/challange 8/pokedex/v1/pokedex/small-images/137.png new file mode 100644 index 0000000..69dcbbb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/137.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/138.png b/projects/challange 8/pokedex/v1/pokedex/small-images/138.png new file mode 100644 index 0000000..0b17f4f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/138.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/139.png b/projects/challange 8/pokedex/v1/pokedex/small-images/139.png new file mode 100644 index 0000000..6707b4b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/139.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/14.png b/projects/challange 8/pokedex/v1/pokedex/small-images/14.png new file mode 100644 index 0000000..e3bed96 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/14.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/140.png b/projects/challange 8/pokedex/v1/pokedex/small-images/140.png new file mode 100644 index 0000000..3fd3f68 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/140.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/141.png b/projects/challange 8/pokedex/v1/pokedex/small-images/141.png new file mode 100644 index 0000000..2114428 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/141.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/142.png b/projects/challange 8/pokedex/v1/pokedex/small-images/142.png new file mode 100644 index 0000000..86860e5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/142.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/143.png b/projects/challange 8/pokedex/v1/pokedex/small-images/143.png new file mode 100644 index 0000000..bb91820 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/143.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/144.png b/projects/challange 8/pokedex/v1/pokedex/small-images/144.png new file mode 100644 index 0000000..f772df6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/144.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/145.png b/projects/challange 8/pokedex/v1/pokedex/small-images/145.png new file mode 100644 index 0000000..1fd3757 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/145.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/146.png b/projects/challange 8/pokedex/v1/pokedex/small-images/146.png new file mode 100644 index 0000000..69057e5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/146.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/147.png b/projects/challange 8/pokedex/v1/pokedex/small-images/147.png new file mode 100644 index 0000000..c0fef5f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/147.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/148.png b/projects/challange 8/pokedex/v1/pokedex/small-images/148.png new file mode 100644 index 0000000..af7d955 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/148.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/149.png b/projects/challange 8/pokedex/v1/pokedex/small-images/149.png new file mode 100644 index 0000000..061a0a2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/149.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/15.png b/projects/challange 8/pokedex/v1/pokedex/small-images/15.png new file mode 100644 index 0000000..9b89258 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/15.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/150.png b/projects/challange 8/pokedex/v1/pokedex/small-images/150.png new file mode 100644 index 0000000..17778ab Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/150.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/151.png b/projects/challange 8/pokedex/v1/pokedex/small-images/151.png new file mode 100644 index 0000000..b3ba48f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/151.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/152.png b/projects/challange 8/pokedex/v1/pokedex/small-images/152.png new file mode 100644 index 0000000..6bc4e85 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/152.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/153.png b/projects/challange 8/pokedex/v1/pokedex/small-images/153.png new file mode 100644 index 0000000..a2f9ff5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/153.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/154.png b/projects/challange 8/pokedex/v1/pokedex/small-images/154.png new file mode 100644 index 0000000..6a73dc0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/154.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/155.png b/projects/challange 8/pokedex/v1/pokedex/small-images/155.png new file mode 100644 index 0000000..63c4186 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/155.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/156.png b/projects/challange 8/pokedex/v1/pokedex/small-images/156.png new file mode 100644 index 0000000..9d9b27b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/156.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/157.png b/projects/challange 8/pokedex/v1/pokedex/small-images/157.png new file mode 100644 index 0000000..772adbe Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/157.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/158.png b/projects/challange 8/pokedex/v1/pokedex/small-images/158.png new file mode 100644 index 0000000..4c36a29 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/158.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/159.png b/projects/challange 8/pokedex/v1/pokedex/small-images/159.png new file mode 100644 index 0000000..d96def0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/159.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/16.png b/projects/challange 8/pokedex/v1/pokedex/small-images/16.png new file mode 100644 index 0000000..ab45eec Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/16.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/160.png b/projects/challange 8/pokedex/v1/pokedex/small-images/160.png new file mode 100644 index 0000000..540b72d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/160.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/161.png b/projects/challange 8/pokedex/v1/pokedex/small-images/161.png new file mode 100644 index 0000000..b2ee3ce Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/161.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/162.png b/projects/challange 8/pokedex/v1/pokedex/small-images/162.png new file mode 100644 index 0000000..c2f8653 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/162.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/163.png b/projects/challange 8/pokedex/v1/pokedex/small-images/163.png new file mode 100644 index 0000000..d452378 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/163.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/164.png b/projects/challange 8/pokedex/v1/pokedex/small-images/164.png new file mode 100644 index 0000000..17d5a51 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/164.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/165.png b/projects/challange 8/pokedex/v1/pokedex/small-images/165.png new file mode 100644 index 0000000..a940fc5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/165.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/166.png b/projects/challange 8/pokedex/v1/pokedex/small-images/166.png new file mode 100644 index 0000000..c6782a6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/166.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/167.png b/projects/challange 8/pokedex/v1/pokedex/small-images/167.png new file mode 100644 index 0000000..900147f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/167.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/168.png b/projects/challange 8/pokedex/v1/pokedex/small-images/168.png new file mode 100644 index 0000000..07529fd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/168.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/169.png b/projects/challange 8/pokedex/v1/pokedex/small-images/169.png new file mode 100644 index 0000000..69b5ec3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/169.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/17.png b/projects/challange 8/pokedex/v1/pokedex/small-images/17.png new file mode 100644 index 0000000..6197fd3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/17.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/170.png b/projects/challange 8/pokedex/v1/pokedex/small-images/170.png new file mode 100644 index 0000000..0acf57b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/170.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/171.png b/projects/challange 8/pokedex/v1/pokedex/small-images/171.png new file mode 100644 index 0000000..860a9c7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/171.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/172.png b/projects/challange 8/pokedex/v1/pokedex/small-images/172.png new file mode 100644 index 0000000..3e43ea0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/172.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/173.png b/projects/challange 8/pokedex/v1/pokedex/small-images/173.png new file mode 100644 index 0000000..3205349 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/173.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/174.png b/projects/challange 8/pokedex/v1/pokedex/small-images/174.png new file mode 100644 index 0000000..7eec329 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/174.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/175.png b/projects/challange 8/pokedex/v1/pokedex/small-images/175.png new file mode 100644 index 0000000..586b92f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/175.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/176.png b/projects/challange 8/pokedex/v1/pokedex/small-images/176.png new file mode 100644 index 0000000..89b2b5a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/176.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/177.png b/projects/challange 8/pokedex/v1/pokedex/small-images/177.png new file mode 100644 index 0000000..eb49af6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/177.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/178.png b/projects/challange 8/pokedex/v1/pokedex/small-images/178.png new file mode 100644 index 0000000..3a311a5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/178.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/179.png b/projects/challange 8/pokedex/v1/pokedex/small-images/179.png new file mode 100644 index 0000000..84db4e9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/179.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/18.png b/projects/challange 8/pokedex/v1/pokedex/small-images/18.png new file mode 100644 index 0000000..cb8034b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/18.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/180.png b/projects/challange 8/pokedex/v1/pokedex/small-images/180.png new file mode 100644 index 0000000..f9af831 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/180.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/181.png b/projects/challange 8/pokedex/v1/pokedex/small-images/181.png new file mode 100644 index 0000000..8e67f1b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/181.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/182.png b/projects/challange 8/pokedex/v1/pokedex/small-images/182.png new file mode 100644 index 0000000..fe02d8b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/182.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/183.png b/projects/challange 8/pokedex/v1/pokedex/small-images/183.png new file mode 100644 index 0000000..e052503 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/183.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/184.png b/projects/challange 8/pokedex/v1/pokedex/small-images/184.png new file mode 100644 index 0000000..24e9b03 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/184.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/185.png b/projects/challange 8/pokedex/v1/pokedex/small-images/185.png new file mode 100644 index 0000000..a1f82b7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/185.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/186.png b/projects/challange 8/pokedex/v1/pokedex/small-images/186.png new file mode 100644 index 0000000..462f30d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/186.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/187.png b/projects/challange 8/pokedex/v1/pokedex/small-images/187.png new file mode 100644 index 0000000..ecef991 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/187.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/188.png b/projects/challange 8/pokedex/v1/pokedex/small-images/188.png new file mode 100644 index 0000000..5892d31 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/188.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/189.png b/projects/challange 8/pokedex/v1/pokedex/small-images/189.png new file mode 100644 index 0000000..d3ce844 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/189.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/19.png b/projects/challange 8/pokedex/v1/pokedex/small-images/19.png new file mode 100644 index 0000000..e6f6fed Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/19.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/190.png b/projects/challange 8/pokedex/v1/pokedex/small-images/190.png new file mode 100644 index 0000000..9f14232 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/190.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/191.png b/projects/challange 8/pokedex/v1/pokedex/small-images/191.png new file mode 100644 index 0000000..1ec39d1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/191.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/192.png b/projects/challange 8/pokedex/v1/pokedex/small-images/192.png new file mode 100644 index 0000000..34229a9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/192.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/193.png b/projects/challange 8/pokedex/v1/pokedex/small-images/193.png new file mode 100644 index 0000000..b0177df Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/193.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/194.png b/projects/challange 8/pokedex/v1/pokedex/small-images/194.png new file mode 100644 index 0000000..fc2b9a8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/194.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/195.png b/projects/challange 8/pokedex/v1/pokedex/small-images/195.png new file mode 100644 index 0000000..39a5ad9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/195.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/196.png b/projects/challange 8/pokedex/v1/pokedex/small-images/196.png new file mode 100644 index 0000000..9f55d1f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/196.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/197.png b/projects/challange 8/pokedex/v1/pokedex/small-images/197.png new file mode 100644 index 0000000..1ee4c2a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/197.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/198.png b/projects/challange 8/pokedex/v1/pokedex/small-images/198.png new file mode 100644 index 0000000..a435ffd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/198.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/199.png b/projects/challange 8/pokedex/v1/pokedex/small-images/199.png new file mode 100644 index 0000000..26af459 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/199.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/2.png b/projects/challange 8/pokedex/v1/pokedex/small-images/2.png new file mode 100644 index 0000000..233f68e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/2.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/20.png b/projects/challange 8/pokedex/v1/pokedex/small-images/20.png new file mode 100644 index 0000000..f8021b6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/20.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/200.png b/projects/challange 8/pokedex/v1/pokedex/small-images/200.png new file mode 100644 index 0000000..0b3f214 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/200.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/201.png b/projects/challange 8/pokedex/v1/pokedex/small-images/201.png new file mode 100644 index 0000000..09e7eaf Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/201.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/202.png b/projects/challange 8/pokedex/v1/pokedex/small-images/202.png new file mode 100644 index 0000000..87d7455 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/202.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/203.png b/projects/challange 8/pokedex/v1/pokedex/small-images/203.png new file mode 100644 index 0000000..270f367 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/203.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/204.png b/projects/challange 8/pokedex/v1/pokedex/small-images/204.png new file mode 100644 index 0000000..6213515 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/204.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/205.png b/projects/challange 8/pokedex/v1/pokedex/small-images/205.png new file mode 100644 index 0000000..890614c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/205.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/206.png b/projects/challange 8/pokedex/v1/pokedex/small-images/206.png new file mode 100644 index 0000000..40ffe1d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/206.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/207.png b/projects/challange 8/pokedex/v1/pokedex/small-images/207.png new file mode 100644 index 0000000..c7ffb55 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/207.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/208.png b/projects/challange 8/pokedex/v1/pokedex/small-images/208.png new file mode 100644 index 0000000..409f8e5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/208.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/209.png b/projects/challange 8/pokedex/v1/pokedex/small-images/209.png new file mode 100644 index 0000000..31b051c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/209.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/21.png b/projects/challange 8/pokedex/v1/pokedex/small-images/21.png new file mode 100644 index 0000000..4c0b542 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/21.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/210.png b/projects/challange 8/pokedex/v1/pokedex/small-images/210.png new file mode 100644 index 0000000..f3fe05f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/210.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/211.png b/projects/challange 8/pokedex/v1/pokedex/small-images/211.png new file mode 100644 index 0000000..019a553 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/211.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/212.png b/projects/challange 8/pokedex/v1/pokedex/small-images/212.png new file mode 100644 index 0000000..875e892 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/212.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/213.png b/projects/challange 8/pokedex/v1/pokedex/small-images/213.png new file mode 100644 index 0000000..1e47d4c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/213.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/214.png b/projects/challange 8/pokedex/v1/pokedex/small-images/214.png new file mode 100644 index 0000000..2642646 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/214.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/215.png b/projects/challange 8/pokedex/v1/pokedex/small-images/215.png new file mode 100644 index 0000000..9c7f416 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/215.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/216.png b/projects/challange 8/pokedex/v1/pokedex/small-images/216.png new file mode 100644 index 0000000..99dedbe Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/216.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/217.png b/projects/challange 8/pokedex/v1/pokedex/small-images/217.png new file mode 100644 index 0000000..4c91dd2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/217.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/218.png b/projects/challange 8/pokedex/v1/pokedex/small-images/218.png new file mode 100644 index 0000000..f27bc71 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/218.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/219.png b/projects/challange 8/pokedex/v1/pokedex/small-images/219.png new file mode 100644 index 0000000..dd655e3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/219.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/22.png b/projects/challange 8/pokedex/v1/pokedex/small-images/22.png new file mode 100644 index 0000000..7f27fd5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/22.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/220.png b/projects/challange 8/pokedex/v1/pokedex/small-images/220.png new file mode 100644 index 0000000..c6a5823 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/220.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/221.png b/projects/challange 8/pokedex/v1/pokedex/small-images/221.png new file mode 100644 index 0000000..4d858bf Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/221.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/222.png b/projects/challange 8/pokedex/v1/pokedex/small-images/222.png new file mode 100644 index 0000000..4de748c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/222.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/223.png b/projects/challange 8/pokedex/v1/pokedex/small-images/223.png new file mode 100644 index 0000000..d692175 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/223.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/224.png b/projects/challange 8/pokedex/v1/pokedex/small-images/224.png new file mode 100644 index 0000000..6923a5a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/224.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/225.png b/projects/challange 8/pokedex/v1/pokedex/small-images/225.png new file mode 100644 index 0000000..c9ebd7a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/225.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/226.png b/projects/challange 8/pokedex/v1/pokedex/small-images/226.png new file mode 100644 index 0000000..73d8f7e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/226.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/227.png b/projects/challange 8/pokedex/v1/pokedex/small-images/227.png new file mode 100644 index 0000000..0f43732 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/227.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/228.png b/projects/challange 8/pokedex/v1/pokedex/small-images/228.png new file mode 100644 index 0000000..179d05e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/228.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/229.png b/projects/challange 8/pokedex/v1/pokedex/small-images/229.png new file mode 100644 index 0000000..8e68aa6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/229.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/23.png b/projects/challange 8/pokedex/v1/pokedex/small-images/23.png new file mode 100644 index 0000000..2691365 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/23.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/230.png b/projects/challange 8/pokedex/v1/pokedex/small-images/230.png new file mode 100644 index 0000000..4538636 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/230.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/231.png b/projects/challange 8/pokedex/v1/pokedex/small-images/231.png new file mode 100644 index 0000000..81281f0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/231.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/232.png b/projects/challange 8/pokedex/v1/pokedex/small-images/232.png new file mode 100644 index 0000000..fb67b5a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/232.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/233.png b/projects/challange 8/pokedex/v1/pokedex/small-images/233.png new file mode 100644 index 0000000..c4b7c02 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/233.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/234.png b/projects/challange 8/pokedex/v1/pokedex/small-images/234.png new file mode 100644 index 0000000..fbad897 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/234.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/235.png b/projects/challange 8/pokedex/v1/pokedex/small-images/235.png new file mode 100644 index 0000000..ff587ce Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/235.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/236.png b/projects/challange 8/pokedex/v1/pokedex/small-images/236.png new file mode 100644 index 0000000..199bd7a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/236.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/237.png b/projects/challange 8/pokedex/v1/pokedex/small-images/237.png new file mode 100644 index 0000000..4c70ff6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/237.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/238.png b/projects/challange 8/pokedex/v1/pokedex/small-images/238.png new file mode 100644 index 0000000..1f6ba7e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/238.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/239.png b/projects/challange 8/pokedex/v1/pokedex/small-images/239.png new file mode 100644 index 0000000..72d7cc8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/239.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/24.png b/projects/challange 8/pokedex/v1/pokedex/small-images/24.png new file mode 100644 index 0000000..bf47daf Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/24.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/240.png b/projects/challange 8/pokedex/v1/pokedex/small-images/240.png new file mode 100644 index 0000000..2a7d11f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/240.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/241.png b/projects/challange 8/pokedex/v1/pokedex/small-images/241.png new file mode 100644 index 0000000..b312445 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/241.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/242.png b/projects/challange 8/pokedex/v1/pokedex/small-images/242.png new file mode 100644 index 0000000..0d500f5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/242.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/243.png b/projects/challange 8/pokedex/v1/pokedex/small-images/243.png new file mode 100644 index 0000000..5e7a740 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/243.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/244.png b/projects/challange 8/pokedex/v1/pokedex/small-images/244.png new file mode 100644 index 0000000..a5b6d01 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/244.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/245.png b/projects/challange 8/pokedex/v1/pokedex/small-images/245.png new file mode 100644 index 0000000..c97db04 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/245.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/246.png b/projects/challange 8/pokedex/v1/pokedex/small-images/246.png new file mode 100644 index 0000000..ebb764d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/246.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/247.png b/projects/challange 8/pokedex/v1/pokedex/small-images/247.png new file mode 100644 index 0000000..7e070fd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/247.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/248.png b/projects/challange 8/pokedex/v1/pokedex/small-images/248.png new file mode 100644 index 0000000..180e0e9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/248.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/249.png b/projects/challange 8/pokedex/v1/pokedex/small-images/249.png new file mode 100644 index 0000000..4fb437c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/249.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/25.png b/projects/challange 8/pokedex/v1/pokedex/small-images/25.png new file mode 100644 index 0000000..2f93cf9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/25.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/250.png b/projects/challange 8/pokedex/v1/pokedex/small-images/250.png new file mode 100644 index 0000000..a0ab113 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/250.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/251.png b/projects/challange 8/pokedex/v1/pokedex/small-images/251.png new file mode 100644 index 0000000..ba0682f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/251.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/252.png b/projects/challange 8/pokedex/v1/pokedex/small-images/252.png new file mode 100644 index 0000000..8ff2c97 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/252.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/253.png b/projects/challange 8/pokedex/v1/pokedex/small-images/253.png new file mode 100644 index 0000000..0787224 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/253.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/254.png b/projects/challange 8/pokedex/v1/pokedex/small-images/254.png new file mode 100644 index 0000000..57d1caf Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/254.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/255.png b/projects/challange 8/pokedex/v1/pokedex/small-images/255.png new file mode 100644 index 0000000..31a4962 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/255.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/256.png b/projects/challange 8/pokedex/v1/pokedex/small-images/256.png new file mode 100644 index 0000000..98c4d41 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/256.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/257.png b/projects/challange 8/pokedex/v1/pokedex/small-images/257.png new file mode 100644 index 0000000..7039127 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/257.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/258.png b/projects/challange 8/pokedex/v1/pokedex/small-images/258.png new file mode 100644 index 0000000..495b0d5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/258.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/259.png b/projects/challange 8/pokedex/v1/pokedex/small-images/259.png new file mode 100644 index 0000000..d590855 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/259.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/26.png b/projects/challange 8/pokedex/v1/pokedex/small-images/26.png new file mode 100644 index 0000000..ed960f2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/26.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/260.png b/projects/challange 8/pokedex/v1/pokedex/small-images/260.png new file mode 100644 index 0000000..28dd7f1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/260.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/261.png b/projects/challange 8/pokedex/v1/pokedex/small-images/261.png new file mode 100644 index 0000000..984c79b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/261.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/262.png b/projects/challange 8/pokedex/v1/pokedex/small-images/262.png new file mode 100644 index 0000000..1a7c703 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/262.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/263.png b/projects/challange 8/pokedex/v1/pokedex/small-images/263.png new file mode 100644 index 0000000..0be4c9f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/263.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/264.png b/projects/challange 8/pokedex/v1/pokedex/small-images/264.png new file mode 100644 index 0000000..9183c88 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/264.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/265.png b/projects/challange 8/pokedex/v1/pokedex/small-images/265.png new file mode 100644 index 0000000..b1f6b42 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/265.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/266.png b/projects/challange 8/pokedex/v1/pokedex/small-images/266.png new file mode 100644 index 0000000..8147ae2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/266.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/267.png b/projects/challange 8/pokedex/v1/pokedex/small-images/267.png new file mode 100644 index 0000000..c73117f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/267.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/268.png b/projects/challange 8/pokedex/v1/pokedex/small-images/268.png new file mode 100644 index 0000000..b8284f7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/268.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/269.png b/projects/challange 8/pokedex/v1/pokedex/small-images/269.png new file mode 100644 index 0000000..8af1826 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/269.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/27.png b/projects/challange 8/pokedex/v1/pokedex/small-images/27.png new file mode 100644 index 0000000..a82f8cc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/27.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/270.png b/projects/challange 8/pokedex/v1/pokedex/small-images/270.png new file mode 100644 index 0000000..9e0e036 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/270.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/271.png b/projects/challange 8/pokedex/v1/pokedex/small-images/271.png new file mode 100644 index 0000000..f2f62bd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/271.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/272.png b/projects/challange 8/pokedex/v1/pokedex/small-images/272.png new file mode 100644 index 0000000..4a941e9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/272.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/273.png b/projects/challange 8/pokedex/v1/pokedex/small-images/273.png new file mode 100644 index 0000000..5fe4191 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/273.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/274.png b/projects/challange 8/pokedex/v1/pokedex/small-images/274.png new file mode 100644 index 0000000..333d20b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/274.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/275.png b/projects/challange 8/pokedex/v1/pokedex/small-images/275.png new file mode 100644 index 0000000..b80496f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/275.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/276.png b/projects/challange 8/pokedex/v1/pokedex/small-images/276.png new file mode 100644 index 0000000..0ffca8b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/276.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/277.png b/projects/challange 8/pokedex/v1/pokedex/small-images/277.png new file mode 100644 index 0000000..a31b37b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/277.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/278.png b/projects/challange 8/pokedex/v1/pokedex/small-images/278.png new file mode 100644 index 0000000..86e00d1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/278.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/279.png b/projects/challange 8/pokedex/v1/pokedex/small-images/279.png new file mode 100644 index 0000000..07e7d73 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/279.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/28.png b/projects/challange 8/pokedex/v1/pokedex/small-images/28.png new file mode 100644 index 0000000..417943f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/28.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/280.png b/projects/challange 8/pokedex/v1/pokedex/small-images/280.png new file mode 100644 index 0000000..a713300 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/280.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/281.png b/projects/challange 8/pokedex/v1/pokedex/small-images/281.png new file mode 100644 index 0000000..3b78e21 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/281.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/282.png b/projects/challange 8/pokedex/v1/pokedex/small-images/282.png new file mode 100644 index 0000000..d2d0578 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/282.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/283.png b/projects/challange 8/pokedex/v1/pokedex/small-images/283.png new file mode 100644 index 0000000..d7a1450 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/283.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/284.png b/projects/challange 8/pokedex/v1/pokedex/small-images/284.png new file mode 100644 index 0000000..7bf75c8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/284.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/285.png b/projects/challange 8/pokedex/v1/pokedex/small-images/285.png new file mode 100644 index 0000000..16ab131 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/285.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/286.png b/projects/challange 8/pokedex/v1/pokedex/small-images/286.png new file mode 100644 index 0000000..1cbab7b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/286.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/287.png b/projects/challange 8/pokedex/v1/pokedex/small-images/287.png new file mode 100644 index 0000000..ff4c525 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/287.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/288.png b/projects/challange 8/pokedex/v1/pokedex/small-images/288.png new file mode 100644 index 0000000..9f05e38 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/288.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/289.png b/projects/challange 8/pokedex/v1/pokedex/small-images/289.png new file mode 100644 index 0000000..3a5bdc0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/289.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/29.png b/projects/challange 8/pokedex/v1/pokedex/small-images/29.png new file mode 100644 index 0000000..82a0992 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/29.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/290.png b/projects/challange 8/pokedex/v1/pokedex/small-images/290.png new file mode 100644 index 0000000..84db4a9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/290.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/291.png b/projects/challange 8/pokedex/v1/pokedex/small-images/291.png new file mode 100644 index 0000000..cca20a5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/291.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/292.png b/projects/challange 8/pokedex/v1/pokedex/small-images/292.png new file mode 100644 index 0000000..9f3dec1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/292.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/293.png b/projects/challange 8/pokedex/v1/pokedex/small-images/293.png new file mode 100644 index 0000000..49cba1e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/293.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/294.png b/projects/challange 8/pokedex/v1/pokedex/small-images/294.png new file mode 100644 index 0000000..57d4d6f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/294.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/295.png b/projects/challange 8/pokedex/v1/pokedex/small-images/295.png new file mode 100644 index 0000000..8855c35 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/295.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/296.png b/projects/challange 8/pokedex/v1/pokedex/small-images/296.png new file mode 100644 index 0000000..0ea1162 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/296.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/297.png b/projects/challange 8/pokedex/v1/pokedex/small-images/297.png new file mode 100644 index 0000000..76b78b3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/297.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/298.png b/projects/challange 8/pokedex/v1/pokedex/small-images/298.png new file mode 100644 index 0000000..5155e95 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/298.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/299.png b/projects/challange 8/pokedex/v1/pokedex/small-images/299.png new file mode 100644 index 0000000..6d7153a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/299.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/3.png b/projects/challange 8/pokedex/v1/pokedex/small-images/3.png new file mode 100644 index 0000000..3efe1b5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/3.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/30.png b/projects/challange 8/pokedex/v1/pokedex/small-images/30.png new file mode 100644 index 0000000..e8f1d8c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/30.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/300.png b/projects/challange 8/pokedex/v1/pokedex/small-images/300.png new file mode 100644 index 0000000..c5bde59 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/300.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/301.png b/projects/challange 8/pokedex/v1/pokedex/small-images/301.png new file mode 100644 index 0000000..15a4d31 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/301.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/302.png b/projects/challange 8/pokedex/v1/pokedex/small-images/302.png new file mode 100644 index 0000000..b1cf891 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/302.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/303.png b/projects/challange 8/pokedex/v1/pokedex/small-images/303.png new file mode 100644 index 0000000..f3e348b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/303.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/304.png b/projects/challange 8/pokedex/v1/pokedex/small-images/304.png new file mode 100644 index 0000000..5c86fdf Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/304.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/305.png b/projects/challange 8/pokedex/v1/pokedex/small-images/305.png new file mode 100644 index 0000000..7c169e5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/305.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/306.png b/projects/challange 8/pokedex/v1/pokedex/small-images/306.png new file mode 100644 index 0000000..c920467 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/306.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/307.png b/projects/challange 8/pokedex/v1/pokedex/small-images/307.png new file mode 100644 index 0000000..2ef3455 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/307.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/308.png b/projects/challange 8/pokedex/v1/pokedex/small-images/308.png new file mode 100644 index 0000000..4826b5e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/308.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/309.png b/projects/challange 8/pokedex/v1/pokedex/small-images/309.png new file mode 100644 index 0000000..6bd996b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/309.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/31.png b/projects/challange 8/pokedex/v1/pokedex/small-images/31.png new file mode 100644 index 0000000..bccad5f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/31.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/310.png b/projects/challange 8/pokedex/v1/pokedex/small-images/310.png new file mode 100644 index 0000000..9715ede Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/310.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/311.png b/projects/challange 8/pokedex/v1/pokedex/small-images/311.png new file mode 100644 index 0000000..4c76a12 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/311.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/312.png b/projects/challange 8/pokedex/v1/pokedex/small-images/312.png new file mode 100644 index 0000000..d709d5c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/312.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/313.png b/projects/challange 8/pokedex/v1/pokedex/small-images/313.png new file mode 100644 index 0000000..9f4746b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/313.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/314.png b/projects/challange 8/pokedex/v1/pokedex/small-images/314.png new file mode 100644 index 0000000..6f1cda1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/314.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/315.png b/projects/challange 8/pokedex/v1/pokedex/small-images/315.png new file mode 100644 index 0000000..f5dea00 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/315.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/316.png b/projects/challange 8/pokedex/v1/pokedex/small-images/316.png new file mode 100644 index 0000000..1f78ee5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/316.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/317.png b/projects/challange 8/pokedex/v1/pokedex/small-images/317.png new file mode 100644 index 0000000..56416d4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/317.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/318.png b/projects/challange 8/pokedex/v1/pokedex/small-images/318.png new file mode 100644 index 0000000..75007d4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/318.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/319.png b/projects/challange 8/pokedex/v1/pokedex/small-images/319.png new file mode 100644 index 0000000..192f99e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/319.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/32.png b/projects/challange 8/pokedex/v1/pokedex/small-images/32.png new file mode 100644 index 0000000..8fe1175 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/32.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/320.png b/projects/challange 8/pokedex/v1/pokedex/small-images/320.png new file mode 100644 index 0000000..a751090 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/320.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/321.png b/projects/challange 8/pokedex/v1/pokedex/small-images/321.png new file mode 100644 index 0000000..7a35d45 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/321.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/322.png b/projects/challange 8/pokedex/v1/pokedex/small-images/322.png new file mode 100644 index 0000000..7128461 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/322.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/323.png b/projects/challange 8/pokedex/v1/pokedex/small-images/323.png new file mode 100644 index 0000000..85339d4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/323.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/324.png b/projects/challange 8/pokedex/v1/pokedex/small-images/324.png new file mode 100644 index 0000000..8f93621 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/324.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/325.png b/projects/challange 8/pokedex/v1/pokedex/small-images/325.png new file mode 100644 index 0000000..4a0ce45 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/325.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/326.png b/projects/challange 8/pokedex/v1/pokedex/small-images/326.png new file mode 100644 index 0000000..6b10c1f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/326.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/327.png b/projects/challange 8/pokedex/v1/pokedex/small-images/327.png new file mode 100644 index 0000000..7b1002d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/327.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/328.png b/projects/challange 8/pokedex/v1/pokedex/small-images/328.png new file mode 100644 index 0000000..19bd477 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/328.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/329.png b/projects/challange 8/pokedex/v1/pokedex/small-images/329.png new file mode 100644 index 0000000..8d0b430 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/329.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/33.png b/projects/challange 8/pokedex/v1/pokedex/small-images/33.png new file mode 100644 index 0000000..caf90d9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/33.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/330.png b/projects/challange 8/pokedex/v1/pokedex/small-images/330.png new file mode 100644 index 0000000..4ba1ef9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/330.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/331.png b/projects/challange 8/pokedex/v1/pokedex/small-images/331.png new file mode 100644 index 0000000..c3de17f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/331.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/332.png b/projects/challange 8/pokedex/v1/pokedex/small-images/332.png new file mode 100644 index 0000000..1da0b05 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/332.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/333.png b/projects/challange 8/pokedex/v1/pokedex/small-images/333.png new file mode 100644 index 0000000..dc1af71 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/333.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/334.png b/projects/challange 8/pokedex/v1/pokedex/small-images/334.png new file mode 100644 index 0000000..6c3f72f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/334.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/335.png b/projects/challange 8/pokedex/v1/pokedex/small-images/335.png new file mode 100644 index 0000000..e9b89af Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/335.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/336.png b/projects/challange 8/pokedex/v1/pokedex/small-images/336.png new file mode 100644 index 0000000..95c4bdc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/336.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/337.png b/projects/challange 8/pokedex/v1/pokedex/small-images/337.png new file mode 100644 index 0000000..2d37f88 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/337.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/338.png b/projects/challange 8/pokedex/v1/pokedex/small-images/338.png new file mode 100644 index 0000000..f21aa7e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/338.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/339.png b/projects/challange 8/pokedex/v1/pokedex/small-images/339.png new file mode 100644 index 0000000..f363e86 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/339.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/34.png b/projects/challange 8/pokedex/v1/pokedex/small-images/34.png new file mode 100644 index 0000000..02d2eb5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/34.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/340.png b/projects/challange 8/pokedex/v1/pokedex/small-images/340.png new file mode 100644 index 0000000..30b5ac8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/340.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/341.png b/projects/challange 8/pokedex/v1/pokedex/small-images/341.png new file mode 100644 index 0000000..f7063b6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/341.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/342.png b/projects/challange 8/pokedex/v1/pokedex/small-images/342.png new file mode 100644 index 0000000..5709960 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/342.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/343.png b/projects/challange 8/pokedex/v1/pokedex/small-images/343.png new file mode 100644 index 0000000..5825094 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/343.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/344.png b/projects/challange 8/pokedex/v1/pokedex/small-images/344.png new file mode 100644 index 0000000..eccad92 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/344.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/345.png b/projects/challange 8/pokedex/v1/pokedex/small-images/345.png new file mode 100644 index 0000000..40fda68 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/345.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/346.png b/projects/challange 8/pokedex/v1/pokedex/small-images/346.png new file mode 100644 index 0000000..34f6f97 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/346.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/347.png b/projects/challange 8/pokedex/v1/pokedex/small-images/347.png new file mode 100644 index 0000000..695e2e8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/347.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/348.png b/projects/challange 8/pokedex/v1/pokedex/small-images/348.png new file mode 100644 index 0000000..4185521 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/348.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/349.png b/projects/challange 8/pokedex/v1/pokedex/small-images/349.png new file mode 100644 index 0000000..c15d029 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/349.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/35.png b/projects/challange 8/pokedex/v1/pokedex/small-images/35.png new file mode 100644 index 0000000..0f6385d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/35.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/350.png b/projects/challange 8/pokedex/v1/pokedex/small-images/350.png new file mode 100644 index 0000000..77eafb3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/350.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/351.png b/projects/challange 8/pokedex/v1/pokedex/small-images/351.png new file mode 100644 index 0000000..2c0598b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/351.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/352.png b/projects/challange 8/pokedex/v1/pokedex/small-images/352.png new file mode 100644 index 0000000..5be60d7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/352.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/353.png b/projects/challange 8/pokedex/v1/pokedex/small-images/353.png new file mode 100644 index 0000000..d30e4a0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/353.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/354.png b/projects/challange 8/pokedex/v1/pokedex/small-images/354.png new file mode 100644 index 0000000..5f30ffa Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/354.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/355.png b/projects/challange 8/pokedex/v1/pokedex/small-images/355.png new file mode 100644 index 0000000..2cc68f6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/355.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/356.png b/projects/challange 8/pokedex/v1/pokedex/small-images/356.png new file mode 100644 index 0000000..591e41b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/356.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/357.png b/projects/challange 8/pokedex/v1/pokedex/small-images/357.png new file mode 100644 index 0000000..5cedef0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/357.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/358.png b/projects/challange 8/pokedex/v1/pokedex/small-images/358.png new file mode 100644 index 0000000..bfe2ef6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/358.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/359.png b/projects/challange 8/pokedex/v1/pokedex/small-images/359.png new file mode 100644 index 0000000..2883705 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/359.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/36.png b/projects/challange 8/pokedex/v1/pokedex/small-images/36.png new file mode 100644 index 0000000..0aa5ae2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/36.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/360.png b/projects/challange 8/pokedex/v1/pokedex/small-images/360.png new file mode 100644 index 0000000..b765cff Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/360.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/361.png b/projects/challange 8/pokedex/v1/pokedex/small-images/361.png new file mode 100644 index 0000000..381a41c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/361.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/362.png b/projects/challange 8/pokedex/v1/pokedex/small-images/362.png new file mode 100644 index 0000000..a4f6da1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/362.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/363.png b/projects/challange 8/pokedex/v1/pokedex/small-images/363.png new file mode 100644 index 0000000..9c1c3ac Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/363.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/364.png b/projects/challange 8/pokedex/v1/pokedex/small-images/364.png new file mode 100644 index 0000000..6381eed Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/364.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/365.png b/projects/challange 8/pokedex/v1/pokedex/small-images/365.png new file mode 100644 index 0000000..ba80e22 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/365.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/366.png b/projects/challange 8/pokedex/v1/pokedex/small-images/366.png new file mode 100644 index 0000000..0738334 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/366.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/367.png b/projects/challange 8/pokedex/v1/pokedex/small-images/367.png new file mode 100644 index 0000000..d6c9f2d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/367.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/368.png b/projects/challange 8/pokedex/v1/pokedex/small-images/368.png new file mode 100644 index 0000000..f1c74b6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/368.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/369.png b/projects/challange 8/pokedex/v1/pokedex/small-images/369.png new file mode 100644 index 0000000..bcaf5b5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/369.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/37.png b/projects/challange 8/pokedex/v1/pokedex/small-images/37.png new file mode 100644 index 0000000..f2da5dc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/37.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/370.png b/projects/challange 8/pokedex/v1/pokedex/small-images/370.png new file mode 100644 index 0000000..ea9440a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/370.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/371.png b/projects/challange 8/pokedex/v1/pokedex/small-images/371.png new file mode 100644 index 0000000..09aa98c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/371.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/372.png b/projects/challange 8/pokedex/v1/pokedex/small-images/372.png new file mode 100644 index 0000000..cf9d730 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/372.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/373.png b/projects/challange 8/pokedex/v1/pokedex/small-images/373.png new file mode 100644 index 0000000..d7bc000 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/373.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/374.png b/projects/challange 8/pokedex/v1/pokedex/small-images/374.png new file mode 100644 index 0000000..d8abfcb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/374.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/375.png b/projects/challange 8/pokedex/v1/pokedex/small-images/375.png new file mode 100644 index 0000000..4076c62 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/375.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/376.png b/projects/challange 8/pokedex/v1/pokedex/small-images/376.png new file mode 100644 index 0000000..d0c3073 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/376.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/377.png b/projects/challange 8/pokedex/v1/pokedex/small-images/377.png new file mode 100644 index 0000000..e44792b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/377.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/378.png b/projects/challange 8/pokedex/v1/pokedex/small-images/378.png new file mode 100644 index 0000000..0d86e88 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/378.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/379.png b/projects/challange 8/pokedex/v1/pokedex/small-images/379.png new file mode 100644 index 0000000..67865d8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/379.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/38.png b/projects/challange 8/pokedex/v1/pokedex/small-images/38.png new file mode 100644 index 0000000..76d9c50 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/38.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/380.png b/projects/challange 8/pokedex/v1/pokedex/small-images/380.png new file mode 100644 index 0000000..ca9779b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/380.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/381.png b/projects/challange 8/pokedex/v1/pokedex/small-images/381.png new file mode 100644 index 0000000..1e381ec Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/381.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/382.png b/projects/challange 8/pokedex/v1/pokedex/small-images/382.png new file mode 100644 index 0000000..183025a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/382.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/383.png b/projects/challange 8/pokedex/v1/pokedex/small-images/383.png new file mode 100644 index 0000000..eb80afa Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/383.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/384.png b/projects/challange 8/pokedex/v1/pokedex/small-images/384.png new file mode 100644 index 0000000..bf0b76e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/384.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/385.png b/projects/challange 8/pokedex/v1/pokedex/small-images/385.png new file mode 100644 index 0000000..4b0adc4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/385.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/386.png b/projects/challange 8/pokedex/v1/pokedex/small-images/386.png new file mode 100644 index 0000000..c983c4b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/386.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/387.png b/projects/challange 8/pokedex/v1/pokedex/small-images/387.png new file mode 100644 index 0000000..cd22dbe Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/387.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/388.png b/projects/challange 8/pokedex/v1/pokedex/small-images/388.png new file mode 100644 index 0000000..7349a2d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/388.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/389.png b/projects/challange 8/pokedex/v1/pokedex/small-images/389.png new file mode 100644 index 0000000..ab29b01 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/389.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/39.png b/projects/challange 8/pokedex/v1/pokedex/small-images/39.png new file mode 100644 index 0000000..e20f53b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/39.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/390.png b/projects/challange 8/pokedex/v1/pokedex/small-images/390.png new file mode 100644 index 0000000..261ecdd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/390.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/391.png b/projects/challange 8/pokedex/v1/pokedex/small-images/391.png new file mode 100644 index 0000000..cf2e1c3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/391.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/392.png b/projects/challange 8/pokedex/v1/pokedex/small-images/392.png new file mode 100644 index 0000000..17fe2d3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/392.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/393.png b/projects/challange 8/pokedex/v1/pokedex/small-images/393.png new file mode 100644 index 0000000..9125ddf Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/393.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/394.png b/projects/challange 8/pokedex/v1/pokedex/small-images/394.png new file mode 100644 index 0000000..6cb8573 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/394.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/395.png b/projects/challange 8/pokedex/v1/pokedex/small-images/395.png new file mode 100644 index 0000000..c314afc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/395.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/396.png b/projects/challange 8/pokedex/v1/pokedex/small-images/396.png new file mode 100644 index 0000000..ca7dc27 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/396.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/397.png b/projects/challange 8/pokedex/v1/pokedex/small-images/397.png new file mode 100644 index 0000000..9798297 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/397.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/398.png b/projects/challange 8/pokedex/v1/pokedex/small-images/398.png new file mode 100644 index 0000000..d6ad509 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/398.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/399.png b/projects/challange 8/pokedex/v1/pokedex/small-images/399.png new file mode 100644 index 0000000..cab5783 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/399.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/4.png b/projects/challange 8/pokedex/v1/pokedex/small-images/4.png new file mode 100644 index 0000000..c540db8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/4.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/40.png b/projects/challange 8/pokedex/v1/pokedex/small-images/40.png new file mode 100644 index 0000000..e597ba6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/40.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/400.png b/projects/challange 8/pokedex/v1/pokedex/small-images/400.png new file mode 100644 index 0000000..9b361e7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/400.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/401.png b/projects/challange 8/pokedex/v1/pokedex/small-images/401.png new file mode 100644 index 0000000..f4ffd79 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/401.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/402.png b/projects/challange 8/pokedex/v1/pokedex/small-images/402.png new file mode 100644 index 0000000..993c333 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/402.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/403.png b/projects/challange 8/pokedex/v1/pokedex/small-images/403.png new file mode 100644 index 0000000..1e42a6b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/403.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/404.png b/projects/challange 8/pokedex/v1/pokedex/small-images/404.png new file mode 100644 index 0000000..ea67cc3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/404.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/405.png b/projects/challange 8/pokedex/v1/pokedex/small-images/405.png new file mode 100644 index 0000000..8c448b4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/405.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/406.png b/projects/challange 8/pokedex/v1/pokedex/small-images/406.png new file mode 100644 index 0000000..1ca592e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/406.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/407.png b/projects/challange 8/pokedex/v1/pokedex/small-images/407.png new file mode 100644 index 0000000..447c513 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/407.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/408.png b/projects/challange 8/pokedex/v1/pokedex/small-images/408.png new file mode 100644 index 0000000..5cb7b19 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/408.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/409.png b/projects/challange 8/pokedex/v1/pokedex/small-images/409.png new file mode 100644 index 0000000..fcc7986 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/409.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/41.png b/projects/challange 8/pokedex/v1/pokedex/small-images/41.png new file mode 100644 index 0000000..b003a3a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/41.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/410.png b/projects/challange 8/pokedex/v1/pokedex/small-images/410.png new file mode 100644 index 0000000..75f9f35 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/410.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/411.png b/projects/challange 8/pokedex/v1/pokedex/small-images/411.png new file mode 100644 index 0000000..32e496a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/411.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/412.png b/projects/challange 8/pokedex/v1/pokedex/small-images/412.png new file mode 100644 index 0000000..8e86ffe Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/412.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/413.png b/projects/challange 8/pokedex/v1/pokedex/small-images/413.png new file mode 100644 index 0000000..605485e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/413.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/414.png b/projects/challange 8/pokedex/v1/pokedex/small-images/414.png new file mode 100644 index 0000000..7f9d2d8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/414.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/415.png b/projects/challange 8/pokedex/v1/pokedex/small-images/415.png new file mode 100644 index 0000000..3567d88 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/415.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/416.png b/projects/challange 8/pokedex/v1/pokedex/small-images/416.png new file mode 100644 index 0000000..0ae509c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/416.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/417.png b/projects/challange 8/pokedex/v1/pokedex/small-images/417.png new file mode 100644 index 0000000..78b9ea3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/417.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/418.png b/projects/challange 8/pokedex/v1/pokedex/small-images/418.png new file mode 100644 index 0000000..e54c078 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/418.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/419.png b/projects/challange 8/pokedex/v1/pokedex/small-images/419.png new file mode 100644 index 0000000..6a15128 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/419.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/42.png b/projects/challange 8/pokedex/v1/pokedex/small-images/42.png new file mode 100644 index 0000000..dd25935 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/42.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/420.png b/projects/challange 8/pokedex/v1/pokedex/small-images/420.png new file mode 100644 index 0000000..9922322 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/420.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/421.png b/projects/challange 8/pokedex/v1/pokedex/small-images/421.png new file mode 100644 index 0000000..620d193 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/421.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/422.png b/projects/challange 8/pokedex/v1/pokedex/small-images/422.png new file mode 100644 index 0000000..fe24c47 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/422.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/423.png b/projects/challange 8/pokedex/v1/pokedex/small-images/423.png new file mode 100644 index 0000000..a5d8118 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/423.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/424.png b/projects/challange 8/pokedex/v1/pokedex/small-images/424.png new file mode 100644 index 0000000..46fe4ad Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/424.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/425.png b/projects/challange 8/pokedex/v1/pokedex/small-images/425.png new file mode 100644 index 0000000..ddd3e18 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/425.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/426.png b/projects/challange 8/pokedex/v1/pokedex/small-images/426.png new file mode 100644 index 0000000..edcffd9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/426.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/427.png b/projects/challange 8/pokedex/v1/pokedex/small-images/427.png new file mode 100644 index 0000000..9d3cbb0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/427.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/428.png b/projects/challange 8/pokedex/v1/pokedex/small-images/428.png new file mode 100644 index 0000000..0a4edbf Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/428.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/429.png b/projects/challange 8/pokedex/v1/pokedex/small-images/429.png new file mode 100644 index 0000000..3e86e16 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/429.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/43.png b/projects/challange 8/pokedex/v1/pokedex/small-images/43.png new file mode 100644 index 0000000..e988750 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/43.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/430.png b/projects/challange 8/pokedex/v1/pokedex/small-images/430.png new file mode 100644 index 0000000..8cfe895 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/430.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/431.png b/projects/challange 8/pokedex/v1/pokedex/small-images/431.png new file mode 100644 index 0000000..04b81eb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/431.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/432.png b/projects/challange 8/pokedex/v1/pokedex/small-images/432.png new file mode 100644 index 0000000..e974220 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/432.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/433.png b/projects/challange 8/pokedex/v1/pokedex/small-images/433.png new file mode 100644 index 0000000..86b1d97 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/433.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/434.png b/projects/challange 8/pokedex/v1/pokedex/small-images/434.png new file mode 100644 index 0000000..6e99b3c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/434.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/435.png b/projects/challange 8/pokedex/v1/pokedex/small-images/435.png new file mode 100644 index 0000000..91d45b8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/435.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/436.png b/projects/challange 8/pokedex/v1/pokedex/small-images/436.png new file mode 100644 index 0000000..e459b2d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/436.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/437.png b/projects/challange 8/pokedex/v1/pokedex/small-images/437.png new file mode 100644 index 0000000..6bf0409 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/437.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/438.png b/projects/challange 8/pokedex/v1/pokedex/small-images/438.png new file mode 100644 index 0000000..8f6991f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/438.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/439.png b/projects/challange 8/pokedex/v1/pokedex/small-images/439.png new file mode 100644 index 0000000..9d25bef Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/439.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/44.png b/projects/challange 8/pokedex/v1/pokedex/small-images/44.png new file mode 100644 index 0000000..3cc7804 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/44.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/440.png b/projects/challange 8/pokedex/v1/pokedex/small-images/440.png new file mode 100644 index 0000000..fc46b92 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/440.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/441.png b/projects/challange 8/pokedex/v1/pokedex/small-images/441.png new file mode 100644 index 0000000..179ffeb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/441.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/442.png b/projects/challange 8/pokedex/v1/pokedex/small-images/442.png new file mode 100644 index 0000000..3035a38 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/442.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/443.png b/projects/challange 8/pokedex/v1/pokedex/small-images/443.png new file mode 100644 index 0000000..c61e825 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/443.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/444.png b/projects/challange 8/pokedex/v1/pokedex/small-images/444.png new file mode 100644 index 0000000..401dab2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/444.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/445.png b/projects/challange 8/pokedex/v1/pokedex/small-images/445.png new file mode 100644 index 0000000..83936e1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/445.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/446.png b/projects/challange 8/pokedex/v1/pokedex/small-images/446.png new file mode 100644 index 0000000..cba8869 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/446.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/447.png b/projects/challange 8/pokedex/v1/pokedex/small-images/447.png new file mode 100644 index 0000000..3cc3f73 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/447.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/448.png b/projects/challange 8/pokedex/v1/pokedex/small-images/448.png new file mode 100644 index 0000000..e4cc2f3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/448.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/449.png b/projects/challange 8/pokedex/v1/pokedex/small-images/449.png new file mode 100644 index 0000000..844746f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/449.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/45.png b/projects/challange 8/pokedex/v1/pokedex/small-images/45.png new file mode 100644 index 0000000..ddf5599 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/45.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/450.png b/projects/challange 8/pokedex/v1/pokedex/small-images/450.png new file mode 100644 index 0000000..ab6515f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/450.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/451.png b/projects/challange 8/pokedex/v1/pokedex/small-images/451.png new file mode 100644 index 0000000..680a433 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/451.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/452.png b/projects/challange 8/pokedex/v1/pokedex/small-images/452.png new file mode 100644 index 0000000..326d134 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/452.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/453.png b/projects/challange 8/pokedex/v1/pokedex/small-images/453.png new file mode 100644 index 0000000..633cb31 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/453.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/454.png b/projects/challange 8/pokedex/v1/pokedex/small-images/454.png new file mode 100644 index 0000000..67af74f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/454.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/455.png b/projects/challange 8/pokedex/v1/pokedex/small-images/455.png new file mode 100644 index 0000000..a134553 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/455.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/456.png b/projects/challange 8/pokedex/v1/pokedex/small-images/456.png new file mode 100644 index 0000000..44e088a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/456.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/457.png b/projects/challange 8/pokedex/v1/pokedex/small-images/457.png new file mode 100644 index 0000000..f9655f2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/457.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/458.png b/projects/challange 8/pokedex/v1/pokedex/small-images/458.png new file mode 100644 index 0000000..656409d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/458.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/459.png b/projects/challange 8/pokedex/v1/pokedex/small-images/459.png new file mode 100644 index 0000000..3612bf4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/459.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/46.png b/projects/challange 8/pokedex/v1/pokedex/small-images/46.png new file mode 100644 index 0000000..c2eccde Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/46.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/460.png b/projects/challange 8/pokedex/v1/pokedex/small-images/460.png new file mode 100644 index 0000000..d4b40e7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/460.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/461.png b/projects/challange 8/pokedex/v1/pokedex/small-images/461.png new file mode 100644 index 0000000..4582cde Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/461.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/462.png b/projects/challange 8/pokedex/v1/pokedex/small-images/462.png new file mode 100644 index 0000000..e4e7b8c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/462.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/463.png b/projects/challange 8/pokedex/v1/pokedex/small-images/463.png new file mode 100644 index 0000000..e088dcd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/463.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/464.png b/projects/challange 8/pokedex/v1/pokedex/small-images/464.png new file mode 100644 index 0000000..e65a87f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/464.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/465.png b/projects/challange 8/pokedex/v1/pokedex/small-images/465.png new file mode 100644 index 0000000..de8dfad Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/465.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/466.png b/projects/challange 8/pokedex/v1/pokedex/small-images/466.png new file mode 100644 index 0000000..ceb343e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/466.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/467.png b/projects/challange 8/pokedex/v1/pokedex/small-images/467.png new file mode 100644 index 0000000..2c310bf Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/467.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/468.png b/projects/challange 8/pokedex/v1/pokedex/small-images/468.png new file mode 100644 index 0000000..e408bd2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/468.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/469.png b/projects/challange 8/pokedex/v1/pokedex/small-images/469.png new file mode 100644 index 0000000..a009d4f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/469.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/47.png b/projects/challange 8/pokedex/v1/pokedex/small-images/47.png new file mode 100644 index 0000000..33f63fd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/47.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/470.png b/projects/challange 8/pokedex/v1/pokedex/small-images/470.png new file mode 100644 index 0000000..d4fc0a5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/470.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/471.png b/projects/challange 8/pokedex/v1/pokedex/small-images/471.png new file mode 100644 index 0000000..e41ac14 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/471.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/472.png b/projects/challange 8/pokedex/v1/pokedex/small-images/472.png new file mode 100644 index 0000000..61825c7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/472.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/473.png b/projects/challange 8/pokedex/v1/pokedex/small-images/473.png new file mode 100644 index 0000000..a38ac44 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/473.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/474.png b/projects/challange 8/pokedex/v1/pokedex/small-images/474.png new file mode 100644 index 0000000..2cdde19 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/474.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/475.png b/projects/challange 8/pokedex/v1/pokedex/small-images/475.png new file mode 100644 index 0000000..0d9350e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/475.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/476.png b/projects/challange 8/pokedex/v1/pokedex/small-images/476.png new file mode 100644 index 0000000..9477e7a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/476.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/477.png b/projects/challange 8/pokedex/v1/pokedex/small-images/477.png new file mode 100644 index 0000000..9626f66 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/477.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/478.png b/projects/challange 8/pokedex/v1/pokedex/small-images/478.png new file mode 100644 index 0000000..4e29601 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/478.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/479.png b/projects/challange 8/pokedex/v1/pokedex/small-images/479.png new file mode 100644 index 0000000..74e16b8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/479.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/48.png b/projects/challange 8/pokedex/v1/pokedex/small-images/48.png new file mode 100644 index 0000000..7ce73e7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/48.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/480.png b/projects/challange 8/pokedex/v1/pokedex/small-images/480.png new file mode 100644 index 0000000..1122f5b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/480.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/481.png b/projects/challange 8/pokedex/v1/pokedex/small-images/481.png new file mode 100644 index 0000000..0831acb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/481.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/482.png b/projects/challange 8/pokedex/v1/pokedex/small-images/482.png new file mode 100644 index 0000000..ceb5966 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/482.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/483.png b/projects/challange 8/pokedex/v1/pokedex/small-images/483.png new file mode 100644 index 0000000..4e78374 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/483.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/484.png b/projects/challange 8/pokedex/v1/pokedex/small-images/484.png new file mode 100644 index 0000000..aacd9e4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/484.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/485.png b/projects/challange 8/pokedex/v1/pokedex/small-images/485.png new file mode 100644 index 0000000..a8e6149 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/485.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/486.png b/projects/challange 8/pokedex/v1/pokedex/small-images/486.png new file mode 100644 index 0000000..54f724f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/486.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/487.png b/projects/challange 8/pokedex/v1/pokedex/small-images/487.png new file mode 100644 index 0000000..b587498 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/487.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/488.png b/projects/challange 8/pokedex/v1/pokedex/small-images/488.png new file mode 100644 index 0000000..9668980 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/488.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/489.png b/projects/challange 8/pokedex/v1/pokedex/small-images/489.png new file mode 100644 index 0000000..c15e6eb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/489.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/49.png b/projects/challange 8/pokedex/v1/pokedex/small-images/49.png new file mode 100644 index 0000000..ae7605a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/49.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/490.png b/projects/challange 8/pokedex/v1/pokedex/small-images/490.png new file mode 100644 index 0000000..0358e1a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/490.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/491.png b/projects/challange 8/pokedex/v1/pokedex/small-images/491.png new file mode 100644 index 0000000..a1ce55e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/491.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/492.png b/projects/challange 8/pokedex/v1/pokedex/small-images/492.png new file mode 100644 index 0000000..b17af08 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/492.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/493.png b/projects/challange 8/pokedex/v1/pokedex/small-images/493.png new file mode 100644 index 0000000..3feebc1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/493.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/494.png b/projects/challange 8/pokedex/v1/pokedex/small-images/494.png new file mode 100644 index 0000000..9fcff30 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/494.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/495.png b/projects/challange 8/pokedex/v1/pokedex/small-images/495.png new file mode 100644 index 0000000..056bdaa Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/495.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/496.png b/projects/challange 8/pokedex/v1/pokedex/small-images/496.png new file mode 100644 index 0000000..9b89ee6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/496.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/497.png b/projects/challange 8/pokedex/v1/pokedex/small-images/497.png new file mode 100644 index 0000000..bc1258d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/497.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/498.png b/projects/challange 8/pokedex/v1/pokedex/small-images/498.png new file mode 100644 index 0000000..17dc290 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/498.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/499.png b/projects/challange 8/pokedex/v1/pokedex/small-images/499.png new file mode 100644 index 0000000..b52fcba Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/499.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/5.png b/projects/challange 8/pokedex/v1/pokedex/small-images/5.png new file mode 100644 index 0000000..61c57be Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/5.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/50.png b/projects/challange 8/pokedex/v1/pokedex/small-images/50.png new file mode 100644 index 0000000..0de9308 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/50.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/500.png b/projects/challange 8/pokedex/v1/pokedex/small-images/500.png new file mode 100644 index 0000000..3368583 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/500.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/501.png b/projects/challange 8/pokedex/v1/pokedex/small-images/501.png new file mode 100644 index 0000000..cc24d64 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/501.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/502.png b/projects/challange 8/pokedex/v1/pokedex/small-images/502.png new file mode 100644 index 0000000..0d64e09 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/502.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/503.png b/projects/challange 8/pokedex/v1/pokedex/small-images/503.png new file mode 100644 index 0000000..1829866 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/503.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/504.png b/projects/challange 8/pokedex/v1/pokedex/small-images/504.png new file mode 100644 index 0000000..0dd5401 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/504.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/505.png b/projects/challange 8/pokedex/v1/pokedex/small-images/505.png new file mode 100644 index 0000000..125df29 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/505.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/506.png b/projects/challange 8/pokedex/v1/pokedex/small-images/506.png new file mode 100644 index 0000000..5e1c610 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/506.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/507.png b/projects/challange 8/pokedex/v1/pokedex/small-images/507.png new file mode 100644 index 0000000..a92ad93 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/507.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/508.png b/projects/challange 8/pokedex/v1/pokedex/small-images/508.png new file mode 100644 index 0000000..687f7e1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/508.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/509.png b/projects/challange 8/pokedex/v1/pokedex/small-images/509.png new file mode 100644 index 0000000..bcf2521 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/509.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/51.png b/projects/challange 8/pokedex/v1/pokedex/small-images/51.png new file mode 100644 index 0000000..98e503e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/51.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/510.png b/projects/challange 8/pokedex/v1/pokedex/small-images/510.png new file mode 100644 index 0000000..18807ee Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/510.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/511.png b/projects/challange 8/pokedex/v1/pokedex/small-images/511.png new file mode 100644 index 0000000..07e0dfc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/511.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/512.png b/projects/challange 8/pokedex/v1/pokedex/small-images/512.png new file mode 100644 index 0000000..136512f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/512.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/513.png b/projects/challange 8/pokedex/v1/pokedex/small-images/513.png new file mode 100644 index 0000000..2616b2f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/513.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/514.png b/projects/challange 8/pokedex/v1/pokedex/small-images/514.png new file mode 100644 index 0000000..293ac88 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/514.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/515.png b/projects/challange 8/pokedex/v1/pokedex/small-images/515.png new file mode 100644 index 0000000..1861ee7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/515.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/516.png b/projects/challange 8/pokedex/v1/pokedex/small-images/516.png new file mode 100644 index 0000000..efa1ece Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/516.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/517.png b/projects/challange 8/pokedex/v1/pokedex/small-images/517.png new file mode 100644 index 0000000..e99d1a5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/517.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/518.png b/projects/challange 8/pokedex/v1/pokedex/small-images/518.png new file mode 100644 index 0000000..618de66 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/518.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/519.png b/projects/challange 8/pokedex/v1/pokedex/small-images/519.png new file mode 100644 index 0000000..3b06e6b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/519.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/52.png b/projects/challange 8/pokedex/v1/pokedex/small-images/52.png new file mode 100644 index 0000000..f35a276 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/52.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/520.png b/projects/challange 8/pokedex/v1/pokedex/small-images/520.png new file mode 100644 index 0000000..3e58c92 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/520.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/521.png b/projects/challange 8/pokedex/v1/pokedex/small-images/521.png new file mode 100644 index 0000000..cfeb4a7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/521.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/522.png b/projects/challange 8/pokedex/v1/pokedex/small-images/522.png new file mode 100644 index 0000000..458a4d8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/522.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/523.png b/projects/challange 8/pokedex/v1/pokedex/small-images/523.png new file mode 100644 index 0000000..3f873b1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/523.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/524.png b/projects/challange 8/pokedex/v1/pokedex/small-images/524.png new file mode 100644 index 0000000..44194af Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/524.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/525.png b/projects/challange 8/pokedex/v1/pokedex/small-images/525.png new file mode 100644 index 0000000..5b5b2d4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/525.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/526.png b/projects/challange 8/pokedex/v1/pokedex/small-images/526.png new file mode 100644 index 0000000..a3d728e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/526.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/527.png b/projects/challange 8/pokedex/v1/pokedex/small-images/527.png new file mode 100644 index 0000000..2723da5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/527.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/528.png b/projects/challange 8/pokedex/v1/pokedex/small-images/528.png new file mode 100644 index 0000000..aaea346 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/528.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/529.png b/projects/challange 8/pokedex/v1/pokedex/small-images/529.png new file mode 100644 index 0000000..4cec6ac Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/529.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/53.png b/projects/challange 8/pokedex/v1/pokedex/small-images/53.png new file mode 100644 index 0000000..43fb723 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/53.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/530.png b/projects/challange 8/pokedex/v1/pokedex/small-images/530.png new file mode 100644 index 0000000..baebd8c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/530.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/531.png b/projects/challange 8/pokedex/v1/pokedex/small-images/531.png new file mode 100644 index 0000000..52b147b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/531.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/532.png b/projects/challange 8/pokedex/v1/pokedex/small-images/532.png new file mode 100644 index 0000000..bc3ad31 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/532.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/533.png b/projects/challange 8/pokedex/v1/pokedex/small-images/533.png new file mode 100644 index 0000000..e81686c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/533.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/534.png b/projects/challange 8/pokedex/v1/pokedex/small-images/534.png new file mode 100644 index 0000000..69e8ac6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/534.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/535.png b/projects/challange 8/pokedex/v1/pokedex/small-images/535.png new file mode 100644 index 0000000..6d66311 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/535.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/536.png b/projects/challange 8/pokedex/v1/pokedex/small-images/536.png new file mode 100644 index 0000000..df2831e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/536.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/537.png b/projects/challange 8/pokedex/v1/pokedex/small-images/537.png new file mode 100644 index 0000000..003e8ba Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/537.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/538.png b/projects/challange 8/pokedex/v1/pokedex/small-images/538.png new file mode 100644 index 0000000..dbd03f0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/538.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/539.png b/projects/challange 8/pokedex/v1/pokedex/small-images/539.png new file mode 100644 index 0000000..be0f1cb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/539.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/54.png b/projects/challange 8/pokedex/v1/pokedex/small-images/54.png new file mode 100644 index 0000000..385b52b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/54.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/540.png b/projects/challange 8/pokedex/v1/pokedex/small-images/540.png new file mode 100644 index 0000000..069eb95 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/540.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/541.png b/projects/challange 8/pokedex/v1/pokedex/small-images/541.png new file mode 100644 index 0000000..90a2ac7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/541.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/542.png b/projects/challange 8/pokedex/v1/pokedex/small-images/542.png new file mode 100644 index 0000000..e3185f1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/542.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/543.png b/projects/challange 8/pokedex/v1/pokedex/small-images/543.png new file mode 100644 index 0000000..9e3fd9a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/543.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/544.png b/projects/challange 8/pokedex/v1/pokedex/small-images/544.png new file mode 100644 index 0000000..2d0436e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/544.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/545.png b/projects/challange 8/pokedex/v1/pokedex/small-images/545.png new file mode 100644 index 0000000..5e2a8f8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/545.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/546.png b/projects/challange 8/pokedex/v1/pokedex/small-images/546.png new file mode 100644 index 0000000..9f5462a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/546.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/547.png b/projects/challange 8/pokedex/v1/pokedex/small-images/547.png new file mode 100644 index 0000000..ffe42cd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/547.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/548.png b/projects/challange 8/pokedex/v1/pokedex/small-images/548.png new file mode 100644 index 0000000..75c85a6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/548.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/549.png b/projects/challange 8/pokedex/v1/pokedex/small-images/549.png new file mode 100644 index 0000000..40ac65f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/549.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/55.png b/projects/challange 8/pokedex/v1/pokedex/small-images/55.png new file mode 100644 index 0000000..efb09d6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/55.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/550.png b/projects/challange 8/pokedex/v1/pokedex/small-images/550.png new file mode 100644 index 0000000..b910859 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/550.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/551.png b/projects/challange 8/pokedex/v1/pokedex/small-images/551.png new file mode 100644 index 0000000..2a2bb3b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/551.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/552.png b/projects/challange 8/pokedex/v1/pokedex/small-images/552.png new file mode 100644 index 0000000..e1d7473 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/552.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/553.png b/projects/challange 8/pokedex/v1/pokedex/small-images/553.png new file mode 100644 index 0000000..d4c321a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/553.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/554.png b/projects/challange 8/pokedex/v1/pokedex/small-images/554.png new file mode 100644 index 0000000..f396398 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/554.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/555.png b/projects/challange 8/pokedex/v1/pokedex/small-images/555.png new file mode 100644 index 0000000..901d0af Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/555.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/556.png b/projects/challange 8/pokedex/v1/pokedex/small-images/556.png new file mode 100644 index 0000000..4807bf0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/556.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/557.png b/projects/challange 8/pokedex/v1/pokedex/small-images/557.png new file mode 100644 index 0000000..a30762d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/557.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/558.png b/projects/challange 8/pokedex/v1/pokedex/small-images/558.png new file mode 100644 index 0000000..f06fe29 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/558.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/559.png b/projects/challange 8/pokedex/v1/pokedex/small-images/559.png new file mode 100644 index 0000000..6c97fdc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/559.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/56.png b/projects/challange 8/pokedex/v1/pokedex/small-images/56.png new file mode 100644 index 0000000..85c3f59 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/56.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/560.png b/projects/challange 8/pokedex/v1/pokedex/small-images/560.png new file mode 100644 index 0000000..23e257f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/560.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/561.png b/projects/challange 8/pokedex/v1/pokedex/small-images/561.png new file mode 100644 index 0000000..6b965ac Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/561.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/562.png b/projects/challange 8/pokedex/v1/pokedex/small-images/562.png new file mode 100644 index 0000000..d207b4f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/562.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/563.png b/projects/challange 8/pokedex/v1/pokedex/small-images/563.png new file mode 100644 index 0000000..2efa1e7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/563.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/564.png b/projects/challange 8/pokedex/v1/pokedex/small-images/564.png new file mode 100644 index 0000000..749118d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/564.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/565.png b/projects/challange 8/pokedex/v1/pokedex/small-images/565.png new file mode 100644 index 0000000..618eab0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/565.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/566.png b/projects/challange 8/pokedex/v1/pokedex/small-images/566.png new file mode 100644 index 0000000..31ef4e9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/566.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/567.png b/projects/challange 8/pokedex/v1/pokedex/small-images/567.png new file mode 100644 index 0000000..55fbc6f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/567.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/568.png b/projects/challange 8/pokedex/v1/pokedex/small-images/568.png new file mode 100644 index 0000000..603c1ca Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/568.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/569.png b/projects/challange 8/pokedex/v1/pokedex/small-images/569.png new file mode 100644 index 0000000..4135a35 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/569.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/57.png b/projects/challange 8/pokedex/v1/pokedex/small-images/57.png new file mode 100644 index 0000000..7b46ca0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/57.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/570.png b/projects/challange 8/pokedex/v1/pokedex/small-images/570.png new file mode 100644 index 0000000..60b9cbe Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/570.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/571.png b/projects/challange 8/pokedex/v1/pokedex/small-images/571.png new file mode 100644 index 0000000..cb7064d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/571.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/572.png b/projects/challange 8/pokedex/v1/pokedex/small-images/572.png new file mode 100644 index 0000000..122dd8c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/572.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/573.png b/projects/challange 8/pokedex/v1/pokedex/small-images/573.png new file mode 100644 index 0000000..c6320c7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/573.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/574.png b/projects/challange 8/pokedex/v1/pokedex/small-images/574.png new file mode 100644 index 0000000..f36f4af Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/574.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/575.png b/projects/challange 8/pokedex/v1/pokedex/small-images/575.png new file mode 100644 index 0000000..0873204 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/575.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/576.png b/projects/challange 8/pokedex/v1/pokedex/small-images/576.png new file mode 100644 index 0000000..71fb4f9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/576.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/577.png b/projects/challange 8/pokedex/v1/pokedex/small-images/577.png new file mode 100644 index 0000000..8175f50 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/577.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/578.png b/projects/challange 8/pokedex/v1/pokedex/small-images/578.png new file mode 100644 index 0000000..4976cec Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/578.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/579.png b/projects/challange 8/pokedex/v1/pokedex/small-images/579.png new file mode 100644 index 0000000..a343915 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/579.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/58.png b/projects/challange 8/pokedex/v1/pokedex/small-images/58.png new file mode 100644 index 0000000..322523a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/58.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/580.png b/projects/challange 8/pokedex/v1/pokedex/small-images/580.png new file mode 100644 index 0000000..5d4b9cb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/580.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/581.png b/projects/challange 8/pokedex/v1/pokedex/small-images/581.png new file mode 100644 index 0000000..5716b8b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/581.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/582.png b/projects/challange 8/pokedex/v1/pokedex/small-images/582.png new file mode 100644 index 0000000..0405460 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/582.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/583.png b/projects/challange 8/pokedex/v1/pokedex/small-images/583.png new file mode 100644 index 0000000..475a2be Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/583.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/584.png b/projects/challange 8/pokedex/v1/pokedex/small-images/584.png new file mode 100644 index 0000000..5030961 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/584.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/585.png b/projects/challange 8/pokedex/v1/pokedex/small-images/585.png new file mode 100644 index 0000000..0d66b97 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/585.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/586.png b/projects/challange 8/pokedex/v1/pokedex/small-images/586.png new file mode 100644 index 0000000..ad84176 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/586.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/587.png b/projects/challange 8/pokedex/v1/pokedex/small-images/587.png new file mode 100644 index 0000000..951dd19 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/587.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/588.png b/projects/challange 8/pokedex/v1/pokedex/small-images/588.png new file mode 100644 index 0000000..34ccd8c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/588.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/589.png b/projects/challange 8/pokedex/v1/pokedex/small-images/589.png new file mode 100644 index 0000000..d116bea Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/589.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/59.png b/projects/challange 8/pokedex/v1/pokedex/small-images/59.png new file mode 100644 index 0000000..c3c7445 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/59.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/590.png b/projects/challange 8/pokedex/v1/pokedex/small-images/590.png new file mode 100644 index 0000000..b6178a2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/590.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/591.png b/projects/challange 8/pokedex/v1/pokedex/small-images/591.png new file mode 100644 index 0000000..c499f3a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/591.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/592.png b/projects/challange 8/pokedex/v1/pokedex/small-images/592.png new file mode 100644 index 0000000..22af4d0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/592.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/593.png b/projects/challange 8/pokedex/v1/pokedex/small-images/593.png new file mode 100644 index 0000000..19f4d7e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/593.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/594.png b/projects/challange 8/pokedex/v1/pokedex/small-images/594.png new file mode 100644 index 0000000..80f3b6c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/594.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/595.png b/projects/challange 8/pokedex/v1/pokedex/small-images/595.png new file mode 100644 index 0000000..63878c2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/595.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/596.png b/projects/challange 8/pokedex/v1/pokedex/small-images/596.png new file mode 100644 index 0000000..60086ac Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/596.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/597.png b/projects/challange 8/pokedex/v1/pokedex/small-images/597.png new file mode 100644 index 0000000..74a6c9d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/597.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/598.png b/projects/challange 8/pokedex/v1/pokedex/small-images/598.png new file mode 100644 index 0000000..24783f3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/598.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/599.png b/projects/challange 8/pokedex/v1/pokedex/small-images/599.png new file mode 100644 index 0000000..c2983c7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/599.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/6.png b/projects/challange 8/pokedex/v1/pokedex/small-images/6.png new file mode 100644 index 0000000..52e0d5a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/6.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/60.png b/projects/challange 8/pokedex/v1/pokedex/small-images/60.png new file mode 100644 index 0000000..5a99f62 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/60.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/600.png b/projects/challange 8/pokedex/v1/pokedex/small-images/600.png new file mode 100644 index 0000000..61ca7f1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/600.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/601.png b/projects/challange 8/pokedex/v1/pokedex/small-images/601.png new file mode 100644 index 0000000..698825f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/601.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/602.png b/projects/challange 8/pokedex/v1/pokedex/small-images/602.png new file mode 100644 index 0000000..5b1ef88 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/602.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/603.png b/projects/challange 8/pokedex/v1/pokedex/small-images/603.png new file mode 100644 index 0000000..5fb13ee Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/603.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/604.png b/projects/challange 8/pokedex/v1/pokedex/small-images/604.png new file mode 100644 index 0000000..81cd8a4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/604.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/605.png b/projects/challange 8/pokedex/v1/pokedex/small-images/605.png new file mode 100644 index 0000000..b5604ba Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/605.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/606.png b/projects/challange 8/pokedex/v1/pokedex/small-images/606.png new file mode 100644 index 0000000..545d4c6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/606.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/607.png b/projects/challange 8/pokedex/v1/pokedex/small-images/607.png new file mode 100644 index 0000000..99b2694 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/607.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/608.png b/projects/challange 8/pokedex/v1/pokedex/small-images/608.png new file mode 100644 index 0000000..620a6a6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/608.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/609.png b/projects/challange 8/pokedex/v1/pokedex/small-images/609.png new file mode 100644 index 0000000..d01451a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/609.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/61.png b/projects/challange 8/pokedex/v1/pokedex/small-images/61.png new file mode 100644 index 0000000..4c311e6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/61.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/610.png b/projects/challange 8/pokedex/v1/pokedex/small-images/610.png new file mode 100644 index 0000000..f72a080 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/610.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/611.png b/projects/challange 8/pokedex/v1/pokedex/small-images/611.png new file mode 100644 index 0000000..7238dd4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/611.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/612.png b/projects/challange 8/pokedex/v1/pokedex/small-images/612.png new file mode 100644 index 0000000..6c18ad7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/612.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/613.png b/projects/challange 8/pokedex/v1/pokedex/small-images/613.png new file mode 100644 index 0000000..fea3037 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/613.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/614.png b/projects/challange 8/pokedex/v1/pokedex/small-images/614.png new file mode 100644 index 0000000..f296a39 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/614.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/615.png b/projects/challange 8/pokedex/v1/pokedex/small-images/615.png new file mode 100644 index 0000000..f35e56b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/615.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/616.png b/projects/challange 8/pokedex/v1/pokedex/small-images/616.png new file mode 100644 index 0000000..651f528 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/616.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/617.png b/projects/challange 8/pokedex/v1/pokedex/small-images/617.png new file mode 100644 index 0000000..2fe2c19 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/617.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/618.png b/projects/challange 8/pokedex/v1/pokedex/small-images/618.png new file mode 100644 index 0000000..943881f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/618.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/619.png b/projects/challange 8/pokedex/v1/pokedex/small-images/619.png new file mode 100644 index 0000000..69f4c23 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/619.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/62.png b/projects/challange 8/pokedex/v1/pokedex/small-images/62.png new file mode 100644 index 0000000..4c0b1ec Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/62.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/620.png b/projects/challange 8/pokedex/v1/pokedex/small-images/620.png new file mode 100644 index 0000000..772b623 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/620.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/621.png b/projects/challange 8/pokedex/v1/pokedex/small-images/621.png new file mode 100644 index 0000000..9206270 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/621.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/622.png b/projects/challange 8/pokedex/v1/pokedex/small-images/622.png new file mode 100644 index 0000000..5b1afe4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/622.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/623.png b/projects/challange 8/pokedex/v1/pokedex/small-images/623.png new file mode 100644 index 0000000..6891a33 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/623.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/624.png b/projects/challange 8/pokedex/v1/pokedex/small-images/624.png new file mode 100644 index 0000000..a3df356 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/624.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/625.png b/projects/challange 8/pokedex/v1/pokedex/small-images/625.png new file mode 100644 index 0000000..5303a11 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/625.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/626.png b/projects/challange 8/pokedex/v1/pokedex/small-images/626.png new file mode 100644 index 0000000..267b796 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/626.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/627.png b/projects/challange 8/pokedex/v1/pokedex/small-images/627.png new file mode 100644 index 0000000..41075f7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/627.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/628.png b/projects/challange 8/pokedex/v1/pokedex/small-images/628.png new file mode 100644 index 0000000..64e3929 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/628.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/629.png b/projects/challange 8/pokedex/v1/pokedex/small-images/629.png new file mode 100644 index 0000000..fb116ca Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/629.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/63.png b/projects/challange 8/pokedex/v1/pokedex/small-images/63.png new file mode 100644 index 0000000..50433d3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/63.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/630.png b/projects/challange 8/pokedex/v1/pokedex/small-images/630.png new file mode 100644 index 0000000..e39dd3f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/630.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/631.png b/projects/challange 8/pokedex/v1/pokedex/small-images/631.png new file mode 100644 index 0000000..19133ee Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/631.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/632.png b/projects/challange 8/pokedex/v1/pokedex/small-images/632.png new file mode 100644 index 0000000..4582bfe Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/632.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/633.png b/projects/challange 8/pokedex/v1/pokedex/small-images/633.png new file mode 100644 index 0000000..d457a0d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/633.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/634.png b/projects/challange 8/pokedex/v1/pokedex/small-images/634.png new file mode 100644 index 0000000..67be73f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/634.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/635.png b/projects/challange 8/pokedex/v1/pokedex/small-images/635.png new file mode 100644 index 0000000..c6dde43 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/635.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/636.png b/projects/challange 8/pokedex/v1/pokedex/small-images/636.png new file mode 100644 index 0000000..f8964c4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/636.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/637.png b/projects/challange 8/pokedex/v1/pokedex/small-images/637.png new file mode 100644 index 0000000..b8ae153 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/637.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/638.png b/projects/challange 8/pokedex/v1/pokedex/small-images/638.png new file mode 100644 index 0000000..e9bc4a3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/638.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/639.png b/projects/challange 8/pokedex/v1/pokedex/small-images/639.png new file mode 100644 index 0000000..ae603dc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/639.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/64.png b/projects/challange 8/pokedex/v1/pokedex/small-images/64.png new file mode 100644 index 0000000..8df5fce Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/64.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/640.png b/projects/challange 8/pokedex/v1/pokedex/small-images/640.png new file mode 100644 index 0000000..1b3b118 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/640.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/641.png b/projects/challange 8/pokedex/v1/pokedex/small-images/641.png new file mode 100644 index 0000000..6957814 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/641.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/642.png b/projects/challange 8/pokedex/v1/pokedex/small-images/642.png new file mode 100644 index 0000000..4bd3b73 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/642.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/643.png b/projects/challange 8/pokedex/v1/pokedex/small-images/643.png new file mode 100644 index 0000000..59c8efd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/643.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/644.png b/projects/challange 8/pokedex/v1/pokedex/small-images/644.png new file mode 100644 index 0000000..f0d049c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/644.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/645.png b/projects/challange 8/pokedex/v1/pokedex/small-images/645.png new file mode 100644 index 0000000..e83599e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/645.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/646.png b/projects/challange 8/pokedex/v1/pokedex/small-images/646.png new file mode 100644 index 0000000..707555c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/646.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/647.png b/projects/challange 8/pokedex/v1/pokedex/small-images/647.png new file mode 100644 index 0000000..d218399 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/647.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/648.png b/projects/challange 8/pokedex/v1/pokedex/small-images/648.png new file mode 100644 index 0000000..bcdf373 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/648.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/649.png b/projects/challange 8/pokedex/v1/pokedex/small-images/649.png new file mode 100644 index 0000000..74016e0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/649.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/65.png b/projects/challange 8/pokedex/v1/pokedex/small-images/65.png new file mode 100644 index 0000000..024333f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/65.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/650.png b/projects/challange 8/pokedex/v1/pokedex/small-images/650.png new file mode 100644 index 0000000..1cc9ceb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/650.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/651.png b/projects/challange 8/pokedex/v1/pokedex/small-images/651.png new file mode 100644 index 0000000..e2bd111 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/651.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/652.png b/projects/challange 8/pokedex/v1/pokedex/small-images/652.png new file mode 100644 index 0000000..2644d2a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/652.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/653.png b/projects/challange 8/pokedex/v1/pokedex/small-images/653.png new file mode 100644 index 0000000..e18b729 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/653.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/654.png b/projects/challange 8/pokedex/v1/pokedex/small-images/654.png new file mode 100644 index 0000000..32ca1c5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/654.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/655.png b/projects/challange 8/pokedex/v1/pokedex/small-images/655.png new file mode 100644 index 0000000..7af0762 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/655.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/656.png b/projects/challange 8/pokedex/v1/pokedex/small-images/656.png new file mode 100644 index 0000000..8b60a7b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/656.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/657.png b/projects/challange 8/pokedex/v1/pokedex/small-images/657.png new file mode 100644 index 0000000..f5f8e3a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/657.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/658.png b/projects/challange 8/pokedex/v1/pokedex/small-images/658.png new file mode 100644 index 0000000..68fc249 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/658.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/659.png b/projects/challange 8/pokedex/v1/pokedex/small-images/659.png new file mode 100644 index 0000000..6283f5c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/659.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/66.png b/projects/challange 8/pokedex/v1/pokedex/small-images/66.png new file mode 100644 index 0000000..925b8aa Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/66.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/660.png b/projects/challange 8/pokedex/v1/pokedex/small-images/660.png new file mode 100644 index 0000000..d1432e3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/660.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/661.png b/projects/challange 8/pokedex/v1/pokedex/small-images/661.png new file mode 100644 index 0000000..3a85921 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/661.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/662.png b/projects/challange 8/pokedex/v1/pokedex/small-images/662.png new file mode 100644 index 0000000..4095dab Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/662.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/663.png b/projects/challange 8/pokedex/v1/pokedex/small-images/663.png new file mode 100644 index 0000000..bc03950 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/663.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/664.png b/projects/challange 8/pokedex/v1/pokedex/small-images/664.png new file mode 100644 index 0000000..42e6d93 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/664.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/665.png b/projects/challange 8/pokedex/v1/pokedex/small-images/665.png new file mode 100644 index 0000000..f13c95d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/665.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/666.png b/projects/challange 8/pokedex/v1/pokedex/small-images/666.png new file mode 100644 index 0000000..fe25324 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/666.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/667.png b/projects/challange 8/pokedex/v1/pokedex/small-images/667.png new file mode 100644 index 0000000..ca0e3d2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/667.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/668.png b/projects/challange 8/pokedex/v1/pokedex/small-images/668.png new file mode 100644 index 0000000..111fbb8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/668.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/669.png b/projects/challange 8/pokedex/v1/pokedex/small-images/669.png new file mode 100644 index 0000000..c894380 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/669.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/67.png b/projects/challange 8/pokedex/v1/pokedex/small-images/67.png new file mode 100644 index 0000000..fc9ebac Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/67.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/670.png b/projects/challange 8/pokedex/v1/pokedex/small-images/670.png new file mode 100644 index 0000000..4fdc090 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/670.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/671.png b/projects/challange 8/pokedex/v1/pokedex/small-images/671.png new file mode 100644 index 0000000..7a9a38b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/671.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/672.png b/projects/challange 8/pokedex/v1/pokedex/small-images/672.png new file mode 100644 index 0000000..2de7e59 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/672.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/673.png b/projects/challange 8/pokedex/v1/pokedex/small-images/673.png new file mode 100644 index 0000000..8f222b6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/673.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/674.png b/projects/challange 8/pokedex/v1/pokedex/small-images/674.png new file mode 100644 index 0000000..2ac432e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/674.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/675.png b/projects/challange 8/pokedex/v1/pokedex/small-images/675.png new file mode 100644 index 0000000..7c64b31 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/675.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/676.png b/projects/challange 8/pokedex/v1/pokedex/small-images/676.png new file mode 100644 index 0000000..1afc5ea Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/676.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/677.png b/projects/challange 8/pokedex/v1/pokedex/small-images/677.png new file mode 100644 index 0000000..a96fc7b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/677.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/678.png b/projects/challange 8/pokedex/v1/pokedex/small-images/678.png new file mode 100644 index 0000000..a3f0873 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/678.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/679.png b/projects/challange 8/pokedex/v1/pokedex/small-images/679.png new file mode 100644 index 0000000..7597f5f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/679.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/68.png b/projects/challange 8/pokedex/v1/pokedex/small-images/68.png new file mode 100644 index 0000000..d3b6f05 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/68.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/680.png b/projects/challange 8/pokedex/v1/pokedex/small-images/680.png new file mode 100644 index 0000000..27532b2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/680.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/681.png b/projects/challange 8/pokedex/v1/pokedex/small-images/681.png new file mode 100644 index 0000000..d64bc02 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/681.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/682.png b/projects/challange 8/pokedex/v1/pokedex/small-images/682.png new file mode 100644 index 0000000..c94a23f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/682.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/683.png b/projects/challange 8/pokedex/v1/pokedex/small-images/683.png new file mode 100644 index 0000000..371014d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/683.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/684.png b/projects/challange 8/pokedex/v1/pokedex/small-images/684.png new file mode 100644 index 0000000..c0bf06b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/684.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/685.png b/projects/challange 8/pokedex/v1/pokedex/small-images/685.png new file mode 100644 index 0000000..d466c34 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/685.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/686.png b/projects/challange 8/pokedex/v1/pokedex/small-images/686.png new file mode 100644 index 0000000..d7df846 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/686.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/687.png b/projects/challange 8/pokedex/v1/pokedex/small-images/687.png new file mode 100644 index 0000000..559f3bd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/687.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/688.png b/projects/challange 8/pokedex/v1/pokedex/small-images/688.png new file mode 100644 index 0000000..cd840fb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/688.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/689.png b/projects/challange 8/pokedex/v1/pokedex/small-images/689.png new file mode 100644 index 0000000..39b652d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/689.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/69.png b/projects/challange 8/pokedex/v1/pokedex/small-images/69.png new file mode 100644 index 0000000..f22dc95 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/69.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/690.png b/projects/challange 8/pokedex/v1/pokedex/small-images/690.png new file mode 100644 index 0000000..c83a6ec Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/690.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/691.png b/projects/challange 8/pokedex/v1/pokedex/small-images/691.png new file mode 100644 index 0000000..0d16e17 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/691.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/692.png b/projects/challange 8/pokedex/v1/pokedex/small-images/692.png new file mode 100644 index 0000000..4217b61 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/692.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/693.png b/projects/challange 8/pokedex/v1/pokedex/small-images/693.png new file mode 100644 index 0000000..ee7de4f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/693.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/694.png b/projects/challange 8/pokedex/v1/pokedex/small-images/694.png new file mode 100644 index 0000000..7b6e3c5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/694.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/695.png b/projects/challange 8/pokedex/v1/pokedex/small-images/695.png new file mode 100644 index 0000000..54a9d36 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/695.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/696.png b/projects/challange 8/pokedex/v1/pokedex/small-images/696.png new file mode 100644 index 0000000..3a28cd8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/696.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/697.png b/projects/challange 8/pokedex/v1/pokedex/small-images/697.png new file mode 100644 index 0000000..d352a97 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/697.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/698.png b/projects/challange 8/pokedex/v1/pokedex/small-images/698.png new file mode 100644 index 0000000..2edef44 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/698.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/699.png b/projects/challange 8/pokedex/v1/pokedex/small-images/699.png new file mode 100644 index 0000000..739925f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/699.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/7.png b/projects/challange 8/pokedex/v1/pokedex/small-images/7.png new file mode 100644 index 0000000..a6d4f01 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/7.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/70.png b/projects/challange 8/pokedex/v1/pokedex/small-images/70.png new file mode 100644 index 0000000..bac83ea Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/70.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/700.png b/projects/challange 8/pokedex/v1/pokedex/small-images/700.png new file mode 100644 index 0000000..0d895d2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/700.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/701.png b/projects/challange 8/pokedex/v1/pokedex/small-images/701.png new file mode 100644 index 0000000..f64a517 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/701.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/702.png b/projects/challange 8/pokedex/v1/pokedex/small-images/702.png new file mode 100644 index 0000000..41cc798 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/702.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/703.png b/projects/challange 8/pokedex/v1/pokedex/small-images/703.png new file mode 100644 index 0000000..587fe8a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/703.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/704.png b/projects/challange 8/pokedex/v1/pokedex/small-images/704.png new file mode 100644 index 0000000..e5c2679 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/704.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/705.png b/projects/challange 8/pokedex/v1/pokedex/small-images/705.png new file mode 100644 index 0000000..21cbc97 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/705.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/706.png b/projects/challange 8/pokedex/v1/pokedex/small-images/706.png new file mode 100644 index 0000000..14c48cd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/706.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/707.png b/projects/challange 8/pokedex/v1/pokedex/small-images/707.png new file mode 100644 index 0000000..9888191 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/707.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/708.png b/projects/challange 8/pokedex/v1/pokedex/small-images/708.png new file mode 100644 index 0000000..37f179c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/708.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/709.png b/projects/challange 8/pokedex/v1/pokedex/small-images/709.png new file mode 100644 index 0000000..dd77bc3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/709.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/71.png b/projects/challange 8/pokedex/v1/pokedex/small-images/71.png new file mode 100644 index 0000000..d0bf23e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/71.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/710.png b/projects/challange 8/pokedex/v1/pokedex/small-images/710.png new file mode 100644 index 0000000..b30296e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/710.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/711.png b/projects/challange 8/pokedex/v1/pokedex/small-images/711.png new file mode 100644 index 0000000..fe79a54 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/711.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/712.png b/projects/challange 8/pokedex/v1/pokedex/small-images/712.png new file mode 100644 index 0000000..b2626d7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/712.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/713.png b/projects/challange 8/pokedex/v1/pokedex/small-images/713.png new file mode 100644 index 0000000..a6e5b6f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/713.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/714.png b/projects/challange 8/pokedex/v1/pokedex/small-images/714.png new file mode 100644 index 0000000..743ccb1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/714.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/715.png b/projects/challange 8/pokedex/v1/pokedex/small-images/715.png new file mode 100644 index 0000000..a712430 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/715.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/716.png b/projects/challange 8/pokedex/v1/pokedex/small-images/716.png new file mode 100644 index 0000000..765016c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/716.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/717.png b/projects/challange 8/pokedex/v1/pokedex/small-images/717.png new file mode 100644 index 0000000..03f9c06 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/717.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/718.png b/projects/challange 8/pokedex/v1/pokedex/small-images/718.png new file mode 100644 index 0000000..606e9f0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/718.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/719.png b/projects/challange 8/pokedex/v1/pokedex/small-images/719.png new file mode 100644 index 0000000..ea257ff Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/719.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/72.png b/projects/challange 8/pokedex/v1/pokedex/small-images/72.png new file mode 100644 index 0000000..a9dfc58 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/72.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/720.png b/projects/challange 8/pokedex/v1/pokedex/small-images/720.png new file mode 100644 index 0000000..e6cee51 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/720.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/721.png b/projects/challange 8/pokedex/v1/pokedex/small-images/721.png new file mode 100644 index 0000000..597f59e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/721.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/722.png b/projects/challange 8/pokedex/v1/pokedex/small-images/722.png new file mode 100644 index 0000000..6594854 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/722.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/723.png b/projects/challange 8/pokedex/v1/pokedex/small-images/723.png new file mode 100644 index 0000000..1b19a5d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/723.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/724.png b/projects/challange 8/pokedex/v1/pokedex/small-images/724.png new file mode 100644 index 0000000..1f4ff39 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/724.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/725.png b/projects/challange 8/pokedex/v1/pokedex/small-images/725.png new file mode 100644 index 0000000..64c2967 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/725.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/726.png b/projects/challange 8/pokedex/v1/pokedex/small-images/726.png new file mode 100644 index 0000000..1f620f0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/726.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/727.png b/projects/challange 8/pokedex/v1/pokedex/small-images/727.png new file mode 100644 index 0000000..c49a9a7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/727.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/728.png b/projects/challange 8/pokedex/v1/pokedex/small-images/728.png new file mode 100644 index 0000000..721c434 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/728.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/729.png b/projects/challange 8/pokedex/v1/pokedex/small-images/729.png new file mode 100644 index 0000000..3cf94f5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/729.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/73.png b/projects/challange 8/pokedex/v1/pokedex/small-images/73.png new file mode 100644 index 0000000..01809be Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/73.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/730.png b/projects/challange 8/pokedex/v1/pokedex/small-images/730.png new file mode 100644 index 0000000..89362f6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/730.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/731.png b/projects/challange 8/pokedex/v1/pokedex/small-images/731.png new file mode 100644 index 0000000..cdd8b5f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/731.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/732.png b/projects/challange 8/pokedex/v1/pokedex/small-images/732.png new file mode 100644 index 0000000..84bdadd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/732.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/733.png b/projects/challange 8/pokedex/v1/pokedex/small-images/733.png new file mode 100644 index 0000000..0b3e335 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/733.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/734.png b/projects/challange 8/pokedex/v1/pokedex/small-images/734.png new file mode 100644 index 0000000..c35a164 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/734.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/735.png b/projects/challange 8/pokedex/v1/pokedex/small-images/735.png new file mode 100644 index 0000000..fa9603c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/735.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/736.png b/projects/challange 8/pokedex/v1/pokedex/small-images/736.png new file mode 100644 index 0000000..fd9e508 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/736.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/737.png b/projects/challange 8/pokedex/v1/pokedex/small-images/737.png new file mode 100644 index 0000000..3376158 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/737.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/738.png b/projects/challange 8/pokedex/v1/pokedex/small-images/738.png new file mode 100644 index 0000000..257ff41 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/738.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/739.png b/projects/challange 8/pokedex/v1/pokedex/small-images/739.png new file mode 100644 index 0000000..069866b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/739.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/74.png b/projects/challange 8/pokedex/v1/pokedex/small-images/74.png new file mode 100644 index 0000000..d7f01b1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/74.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/740.png b/projects/challange 8/pokedex/v1/pokedex/small-images/740.png new file mode 100644 index 0000000..00c3380 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/740.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/741.png b/projects/challange 8/pokedex/v1/pokedex/small-images/741.png new file mode 100644 index 0000000..ce0756c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/741.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/742.png b/projects/challange 8/pokedex/v1/pokedex/small-images/742.png new file mode 100644 index 0000000..c21b762 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/742.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/743.png b/projects/challange 8/pokedex/v1/pokedex/small-images/743.png new file mode 100644 index 0000000..91b2fca Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/743.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/744.png b/projects/challange 8/pokedex/v1/pokedex/small-images/744.png new file mode 100644 index 0000000..dc1f073 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/744.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/745.png b/projects/challange 8/pokedex/v1/pokedex/small-images/745.png new file mode 100644 index 0000000..5cd1e4b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/745.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/746.png b/projects/challange 8/pokedex/v1/pokedex/small-images/746.png new file mode 100644 index 0000000..6f61b71 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/746.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/747.png b/projects/challange 8/pokedex/v1/pokedex/small-images/747.png new file mode 100644 index 0000000..85810b1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/747.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/748.png b/projects/challange 8/pokedex/v1/pokedex/small-images/748.png new file mode 100644 index 0000000..3c700b6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/748.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/749.png b/projects/challange 8/pokedex/v1/pokedex/small-images/749.png new file mode 100644 index 0000000..b6e52a1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/749.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/75.png b/projects/challange 8/pokedex/v1/pokedex/small-images/75.png new file mode 100644 index 0000000..91c7b80 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/75.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/750.png b/projects/challange 8/pokedex/v1/pokedex/small-images/750.png new file mode 100644 index 0000000..e317101 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/750.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/751.png b/projects/challange 8/pokedex/v1/pokedex/small-images/751.png new file mode 100644 index 0000000..f4f1b7b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/751.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/752.png b/projects/challange 8/pokedex/v1/pokedex/small-images/752.png new file mode 100644 index 0000000..fbabd94 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/752.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/753.png b/projects/challange 8/pokedex/v1/pokedex/small-images/753.png new file mode 100644 index 0000000..2cb4887 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/753.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/754.png b/projects/challange 8/pokedex/v1/pokedex/small-images/754.png new file mode 100644 index 0000000..d099d09 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/754.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/755.png b/projects/challange 8/pokedex/v1/pokedex/small-images/755.png new file mode 100644 index 0000000..8fd8e57 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/755.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/756.png b/projects/challange 8/pokedex/v1/pokedex/small-images/756.png new file mode 100644 index 0000000..9bfae3a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/756.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/757.png b/projects/challange 8/pokedex/v1/pokedex/small-images/757.png new file mode 100644 index 0000000..667745e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/757.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/758.png b/projects/challange 8/pokedex/v1/pokedex/small-images/758.png new file mode 100644 index 0000000..c829072 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/758.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/759.png b/projects/challange 8/pokedex/v1/pokedex/small-images/759.png new file mode 100644 index 0000000..86590cb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/759.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/76.png b/projects/challange 8/pokedex/v1/pokedex/small-images/76.png new file mode 100644 index 0000000..8f3f3df Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/76.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/760.png b/projects/challange 8/pokedex/v1/pokedex/small-images/760.png new file mode 100644 index 0000000..812bb1e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/760.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/761.png b/projects/challange 8/pokedex/v1/pokedex/small-images/761.png new file mode 100644 index 0000000..d10da42 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/761.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/762.png b/projects/challange 8/pokedex/v1/pokedex/small-images/762.png new file mode 100644 index 0000000..4cdb3c5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/762.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/763.png b/projects/challange 8/pokedex/v1/pokedex/small-images/763.png new file mode 100644 index 0000000..c4a8c84 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/763.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/764.png b/projects/challange 8/pokedex/v1/pokedex/small-images/764.png new file mode 100644 index 0000000..f9b3ba0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/764.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/765.png b/projects/challange 8/pokedex/v1/pokedex/small-images/765.png new file mode 100644 index 0000000..7e7e677 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/765.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/766.png b/projects/challange 8/pokedex/v1/pokedex/small-images/766.png new file mode 100644 index 0000000..708d7c9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/766.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/767.png b/projects/challange 8/pokedex/v1/pokedex/small-images/767.png new file mode 100644 index 0000000..20bd857 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/767.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/768.png b/projects/challange 8/pokedex/v1/pokedex/small-images/768.png new file mode 100644 index 0000000..df36eb9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/768.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/769.png b/projects/challange 8/pokedex/v1/pokedex/small-images/769.png new file mode 100644 index 0000000..8186b4c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/769.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/77.png b/projects/challange 8/pokedex/v1/pokedex/small-images/77.png new file mode 100644 index 0000000..55ab487 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/77.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/770.png b/projects/challange 8/pokedex/v1/pokedex/small-images/770.png new file mode 100644 index 0000000..465cfc3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/770.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/771.png b/projects/challange 8/pokedex/v1/pokedex/small-images/771.png new file mode 100644 index 0000000..475f16b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/771.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/772.png b/projects/challange 8/pokedex/v1/pokedex/small-images/772.png new file mode 100644 index 0000000..ea3b7aa Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/772.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/773.png b/projects/challange 8/pokedex/v1/pokedex/small-images/773.png new file mode 100644 index 0000000..d5cdc26 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/773.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/774.png b/projects/challange 8/pokedex/v1/pokedex/small-images/774.png new file mode 100644 index 0000000..b79e361 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/774.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/775.png b/projects/challange 8/pokedex/v1/pokedex/small-images/775.png new file mode 100644 index 0000000..99d33e9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/775.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/776.png b/projects/challange 8/pokedex/v1/pokedex/small-images/776.png new file mode 100644 index 0000000..082ccbf Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/776.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/777.png b/projects/challange 8/pokedex/v1/pokedex/small-images/777.png new file mode 100644 index 0000000..3bb6f4a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/777.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/778.png b/projects/challange 8/pokedex/v1/pokedex/small-images/778.png new file mode 100644 index 0000000..80283dd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/778.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/779.png b/projects/challange 8/pokedex/v1/pokedex/small-images/779.png new file mode 100644 index 0000000..00a643b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/779.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/78.png b/projects/challange 8/pokedex/v1/pokedex/small-images/78.png new file mode 100644 index 0000000..27b1679 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/78.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/780.png b/projects/challange 8/pokedex/v1/pokedex/small-images/780.png new file mode 100644 index 0000000..2318bdd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/780.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/781.png b/projects/challange 8/pokedex/v1/pokedex/small-images/781.png new file mode 100644 index 0000000..69b78af Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/781.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/782.png b/projects/challange 8/pokedex/v1/pokedex/small-images/782.png new file mode 100644 index 0000000..60bc6a6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/782.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/783.png b/projects/challange 8/pokedex/v1/pokedex/small-images/783.png new file mode 100644 index 0000000..68bfb27 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/783.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/784.png b/projects/challange 8/pokedex/v1/pokedex/small-images/784.png new file mode 100644 index 0000000..aaca027 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/784.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/785.png b/projects/challange 8/pokedex/v1/pokedex/small-images/785.png new file mode 100644 index 0000000..d13121e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/785.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/786.png b/projects/challange 8/pokedex/v1/pokedex/small-images/786.png new file mode 100644 index 0000000..e13f0b5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/786.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/787.png b/projects/challange 8/pokedex/v1/pokedex/small-images/787.png new file mode 100644 index 0000000..4d2ccd0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/787.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/788.png b/projects/challange 8/pokedex/v1/pokedex/small-images/788.png new file mode 100644 index 0000000..9cbc350 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/788.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/789.png b/projects/challange 8/pokedex/v1/pokedex/small-images/789.png new file mode 100644 index 0000000..9547c3f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/789.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/79.png b/projects/challange 8/pokedex/v1/pokedex/small-images/79.png new file mode 100644 index 0000000..526e830 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/79.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/790.png b/projects/challange 8/pokedex/v1/pokedex/small-images/790.png new file mode 100644 index 0000000..381af1f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/790.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/791.png b/projects/challange 8/pokedex/v1/pokedex/small-images/791.png new file mode 100644 index 0000000..6db59e7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/791.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/792.png b/projects/challange 8/pokedex/v1/pokedex/small-images/792.png new file mode 100644 index 0000000..04c0f1b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/792.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/793.png b/projects/challange 8/pokedex/v1/pokedex/small-images/793.png new file mode 100644 index 0000000..f693537 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/793.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/794.png b/projects/challange 8/pokedex/v1/pokedex/small-images/794.png new file mode 100644 index 0000000..c7f3f6f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/794.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/795.png b/projects/challange 8/pokedex/v1/pokedex/small-images/795.png new file mode 100644 index 0000000..6d549a3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/795.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/796.png b/projects/challange 8/pokedex/v1/pokedex/small-images/796.png new file mode 100644 index 0000000..f0ba581 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/796.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/797.png b/projects/challange 8/pokedex/v1/pokedex/small-images/797.png new file mode 100644 index 0000000..9cfea7b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/797.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/798.png b/projects/challange 8/pokedex/v1/pokedex/small-images/798.png new file mode 100644 index 0000000..7c21174 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/798.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/799.png b/projects/challange 8/pokedex/v1/pokedex/small-images/799.png new file mode 100644 index 0000000..3022da7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/799.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/8.png b/projects/challange 8/pokedex/v1/pokedex/small-images/8.png new file mode 100644 index 0000000..606eb8f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/8.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/80.png b/projects/challange 8/pokedex/v1/pokedex/small-images/80.png new file mode 100644 index 0000000..366f6d1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/80.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/800.png b/projects/challange 8/pokedex/v1/pokedex/small-images/800.png new file mode 100644 index 0000000..e298d93 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/800.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/801.png b/projects/challange 8/pokedex/v1/pokedex/small-images/801.png new file mode 100644 index 0000000..ef54ecc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/801.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/802.png b/projects/challange 8/pokedex/v1/pokedex/small-images/802.png new file mode 100644 index 0000000..14d2c2a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/802.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/803.png b/projects/challange 8/pokedex/v1/pokedex/small-images/803.png new file mode 100644 index 0000000..bed1e07 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/803.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/804.png b/projects/challange 8/pokedex/v1/pokedex/small-images/804.png new file mode 100644 index 0000000..1b2bec6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/804.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/805.png b/projects/challange 8/pokedex/v1/pokedex/small-images/805.png new file mode 100644 index 0000000..a058ae6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/805.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/806.png b/projects/challange 8/pokedex/v1/pokedex/small-images/806.png new file mode 100644 index 0000000..ebf30f1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/806.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/807.png b/projects/challange 8/pokedex/v1/pokedex/small-images/807.png new file mode 100644 index 0000000..b4382da Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/807.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/808.png b/projects/challange 8/pokedex/v1/pokedex/small-images/808.png new file mode 100644 index 0000000..ce7e257 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/808.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/809.png b/projects/challange 8/pokedex/v1/pokedex/small-images/809.png new file mode 100644 index 0000000..c625833 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/809.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/81.png b/projects/challange 8/pokedex/v1/pokedex/small-images/81.png new file mode 100644 index 0000000..f7d155d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/81.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/810.png b/projects/challange 8/pokedex/v1/pokedex/small-images/810.png new file mode 100644 index 0000000..dbdf6e3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/810.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/811.png b/projects/challange 8/pokedex/v1/pokedex/small-images/811.png new file mode 100644 index 0000000..3b9492b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/811.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/812.png b/projects/challange 8/pokedex/v1/pokedex/small-images/812.png new file mode 100644 index 0000000..3567d3e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/812.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/813.png b/projects/challange 8/pokedex/v1/pokedex/small-images/813.png new file mode 100644 index 0000000..f4b7dd2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/813.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/814.png b/projects/challange 8/pokedex/v1/pokedex/small-images/814.png new file mode 100644 index 0000000..b774766 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/814.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/815.png b/projects/challange 8/pokedex/v1/pokedex/small-images/815.png new file mode 100644 index 0000000..24f1ab6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/815.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/816.png b/projects/challange 8/pokedex/v1/pokedex/small-images/816.png new file mode 100644 index 0000000..51ad7cb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/816.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/817.png b/projects/challange 8/pokedex/v1/pokedex/small-images/817.png new file mode 100644 index 0000000..d794d84 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/817.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/818.png b/projects/challange 8/pokedex/v1/pokedex/small-images/818.png new file mode 100644 index 0000000..bcd163c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/818.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/819.png b/projects/challange 8/pokedex/v1/pokedex/small-images/819.png new file mode 100644 index 0000000..e9d4915 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/819.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/82.png b/projects/challange 8/pokedex/v1/pokedex/small-images/82.png new file mode 100644 index 0000000..3dba080 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/82.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/820.png b/projects/challange 8/pokedex/v1/pokedex/small-images/820.png new file mode 100644 index 0000000..40f445f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/820.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/821.png b/projects/challange 8/pokedex/v1/pokedex/small-images/821.png new file mode 100644 index 0000000..3eba58d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/821.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/822.png b/projects/challange 8/pokedex/v1/pokedex/small-images/822.png new file mode 100644 index 0000000..e7a7ce6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/822.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/823.png b/projects/challange 8/pokedex/v1/pokedex/small-images/823.png new file mode 100644 index 0000000..0e01e3e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/823.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/824.png b/projects/challange 8/pokedex/v1/pokedex/small-images/824.png new file mode 100644 index 0000000..230fc5a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/824.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/825.png b/projects/challange 8/pokedex/v1/pokedex/small-images/825.png new file mode 100644 index 0000000..bc0f2aa Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/825.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/826.png b/projects/challange 8/pokedex/v1/pokedex/small-images/826.png new file mode 100644 index 0000000..1669933 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/826.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/827.png b/projects/challange 8/pokedex/v1/pokedex/small-images/827.png new file mode 100644 index 0000000..add7d13 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/827.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/828.png b/projects/challange 8/pokedex/v1/pokedex/small-images/828.png new file mode 100644 index 0000000..b72bb69 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/828.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/829.png b/projects/challange 8/pokedex/v1/pokedex/small-images/829.png new file mode 100644 index 0000000..898df24 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/829.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/83.png b/projects/challange 8/pokedex/v1/pokedex/small-images/83.png new file mode 100644 index 0000000..f49617b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/83.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/830.png b/projects/challange 8/pokedex/v1/pokedex/small-images/830.png new file mode 100644 index 0000000..0944275 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/830.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/831.png b/projects/challange 8/pokedex/v1/pokedex/small-images/831.png new file mode 100644 index 0000000..270926d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/831.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/832.png b/projects/challange 8/pokedex/v1/pokedex/small-images/832.png new file mode 100644 index 0000000..a5d7f34 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/832.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/833.png b/projects/challange 8/pokedex/v1/pokedex/small-images/833.png new file mode 100644 index 0000000..0f3fba8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/833.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/834.png b/projects/challange 8/pokedex/v1/pokedex/small-images/834.png new file mode 100644 index 0000000..92b27ab Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/834.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/835.png b/projects/challange 8/pokedex/v1/pokedex/small-images/835.png new file mode 100644 index 0000000..f031697 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/835.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/836.png b/projects/challange 8/pokedex/v1/pokedex/small-images/836.png new file mode 100644 index 0000000..d1228c2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/836.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/837.png b/projects/challange 8/pokedex/v1/pokedex/small-images/837.png new file mode 100644 index 0000000..f88ded5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/837.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/838.png b/projects/challange 8/pokedex/v1/pokedex/small-images/838.png new file mode 100644 index 0000000..815883d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/838.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/839.png b/projects/challange 8/pokedex/v1/pokedex/small-images/839.png new file mode 100644 index 0000000..567f2b1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/839.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/84.png b/projects/challange 8/pokedex/v1/pokedex/small-images/84.png new file mode 100644 index 0000000..66c9d23 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/84.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/840.png b/projects/challange 8/pokedex/v1/pokedex/small-images/840.png new file mode 100644 index 0000000..25143cb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/840.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/841.png b/projects/challange 8/pokedex/v1/pokedex/small-images/841.png new file mode 100644 index 0000000..cfd5e6e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/841.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/842.png b/projects/challange 8/pokedex/v1/pokedex/small-images/842.png new file mode 100644 index 0000000..ed47e23 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/842.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/843.png b/projects/challange 8/pokedex/v1/pokedex/small-images/843.png new file mode 100644 index 0000000..9ad1fb0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/843.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/844.png b/projects/challange 8/pokedex/v1/pokedex/small-images/844.png new file mode 100644 index 0000000..3b6d7be Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/844.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/845.png b/projects/challange 8/pokedex/v1/pokedex/small-images/845.png new file mode 100644 index 0000000..46d7c9b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/845.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/846.png b/projects/challange 8/pokedex/v1/pokedex/small-images/846.png new file mode 100644 index 0000000..745df25 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/846.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/847.png b/projects/challange 8/pokedex/v1/pokedex/small-images/847.png new file mode 100644 index 0000000..e299718 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/847.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/848.png b/projects/challange 8/pokedex/v1/pokedex/small-images/848.png new file mode 100644 index 0000000..fcc6959 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/848.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/849.png b/projects/challange 8/pokedex/v1/pokedex/small-images/849.png new file mode 100644 index 0000000..16e9c0a Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/849.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/85.png b/projects/challange 8/pokedex/v1/pokedex/small-images/85.png new file mode 100644 index 0000000..46145a8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/85.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/850.png b/projects/challange 8/pokedex/v1/pokedex/small-images/850.png new file mode 100644 index 0000000..a797eed Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/850.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/851.png b/projects/challange 8/pokedex/v1/pokedex/small-images/851.png new file mode 100644 index 0000000..051c3f7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/851.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/852.png b/projects/challange 8/pokedex/v1/pokedex/small-images/852.png new file mode 100644 index 0000000..9db1195 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/852.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/853.png b/projects/challange 8/pokedex/v1/pokedex/small-images/853.png new file mode 100644 index 0000000..1ac219c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/853.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/854.png b/projects/challange 8/pokedex/v1/pokedex/small-images/854.png new file mode 100644 index 0000000..ed0a07e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/854.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/855.png b/projects/challange 8/pokedex/v1/pokedex/small-images/855.png new file mode 100644 index 0000000..bcf4fa3 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/855.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/856.png b/projects/challange 8/pokedex/v1/pokedex/small-images/856.png new file mode 100644 index 0000000..9c84ee5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/856.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/857.png b/projects/challange 8/pokedex/v1/pokedex/small-images/857.png new file mode 100644 index 0000000..f70d680 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/857.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/858.png b/projects/challange 8/pokedex/v1/pokedex/small-images/858.png new file mode 100644 index 0000000..df12ca7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/858.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/859.png b/projects/challange 8/pokedex/v1/pokedex/small-images/859.png new file mode 100644 index 0000000..9714225 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/859.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/86.png b/projects/challange 8/pokedex/v1/pokedex/small-images/86.png new file mode 100644 index 0000000..0c4b23d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/86.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/860.png b/projects/challange 8/pokedex/v1/pokedex/small-images/860.png new file mode 100644 index 0000000..2b5dff2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/860.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/861.png b/projects/challange 8/pokedex/v1/pokedex/small-images/861.png new file mode 100644 index 0000000..bc0c139 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/861.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/862.png b/projects/challange 8/pokedex/v1/pokedex/small-images/862.png new file mode 100644 index 0000000..0cfa4e8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/862.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/863.png b/projects/challange 8/pokedex/v1/pokedex/small-images/863.png new file mode 100644 index 0000000..72da7fb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/863.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/864.png b/projects/challange 8/pokedex/v1/pokedex/small-images/864.png new file mode 100644 index 0000000..3204d60 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/864.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/865.png b/projects/challange 8/pokedex/v1/pokedex/small-images/865.png new file mode 100644 index 0000000..ae8dcb8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/865.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/866.png b/projects/challange 8/pokedex/v1/pokedex/small-images/866.png new file mode 100644 index 0000000..b9bb015 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/866.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/867.png b/projects/challange 8/pokedex/v1/pokedex/small-images/867.png new file mode 100644 index 0000000..7a97f69 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/867.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/868.png b/projects/challange 8/pokedex/v1/pokedex/small-images/868.png new file mode 100644 index 0000000..31dd42f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/868.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/869.png b/projects/challange 8/pokedex/v1/pokedex/small-images/869.png new file mode 100644 index 0000000..54bf928 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/869.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/87.png b/projects/challange 8/pokedex/v1/pokedex/small-images/87.png new file mode 100644 index 0000000..a527be0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/87.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/870.png b/projects/challange 8/pokedex/v1/pokedex/small-images/870.png new file mode 100644 index 0000000..9e10510 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/870.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/871.png b/projects/challange 8/pokedex/v1/pokedex/small-images/871.png new file mode 100644 index 0000000..9757753 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/871.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/872.png b/projects/challange 8/pokedex/v1/pokedex/small-images/872.png new file mode 100644 index 0000000..bc614f7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/872.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/873.png b/projects/challange 8/pokedex/v1/pokedex/small-images/873.png new file mode 100644 index 0000000..161542b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/873.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/874.png b/projects/challange 8/pokedex/v1/pokedex/small-images/874.png new file mode 100644 index 0000000..25b654e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/874.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/875.png b/projects/challange 8/pokedex/v1/pokedex/small-images/875.png new file mode 100644 index 0000000..bc7a8de Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/875.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/876.png b/projects/challange 8/pokedex/v1/pokedex/small-images/876.png new file mode 100644 index 0000000..8fe93fd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/876.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/877.png b/projects/challange 8/pokedex/v1/pokedex/small-images/877.png new file mode 100644 index 0000000..fe00366 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/877.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/878.png b/projects/challange 8/pokedex/v1/pokedex/small-images/878.png new file mode 100644 index 0000000..a5d3899 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/878.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/879.png b/projects/challange 8/pokedex/v1/pokedex/small-images/879.png new file mode 100644 index 0000000..c0c00a2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/879.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/88.png b/projects/challange 8/pokedex/v1/pokedex/small-images/88.png new file mode 100644 index 0000000..d5beb64 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/88.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/880.png b/projects/challange 8/pokedex/v1/pokedex/small-images/880.png new file mode 100644 index 0000000..844f20f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/880.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/881.png b/projects/challange 8/pokedex/v1/pokedex/small-images/881.png new file mode 100644 index 0000000..74a2c9c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/881.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/882.png b/projects/challange 8/pokedex/v1/pokedex/small-images/882.png new file mode 100644 index 0000000..27979ec Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/882.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/883.png b/projects/challange 8/pokedex/v1/pokedex/small-images/883.png new file mode 100644 index 0000000..34de760 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/883.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/884.png b/projects/challange 8/pokedex/v1/pokedex/small-images/884.png new file mode 100644 index 0000000..2cad8f1 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/884.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/885.png b/projects/challange 8/pokedex/v1/pokedex/small-images/885.png new file mode 100644 index 0000000..ae8c519 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/885.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/886.png b/projects/challange 8/pokedex/v1/pokedex/small-images/886.png new file mode 100644 index 0000000..fcfd224 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/886.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/887.png b/projects/challange 8/pokedex/v1/pokedex/small-images/887.png new file mode 100644 index 0000000..f7a9279 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/887.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/888.png b/projects/challange 8/pokedex/v1/pokedex/small-images/888.png new file mode 100644 index 0000000..c0ae9fd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/888.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/889.png b/projects/challange 8/pokedex/v1/pokedex/small-images/889.png new file mode 100644 index 0000000..64f455e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/889.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/89.png b/projects/challange 8/pokedex/v1/pokedex/small-images/89.png new file mode 100644 index 0000000..0687d53 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/89.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/890.png b/projects/challange 8/pokedex/v1/pokedex/small-images/890.png new file mode 100644 index 0000000..31df2f7 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/890.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/891.png b/projects/challange 8/pokedex/v1/pokedex/small-images/891.png new file mode 100644 index 0000000..a83c041 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/891.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/892.png b/projects/challange 8/pokedex/v1/pokedex/small-images/892.png new file mode 100644 index 0000000..6529398 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/892.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/893.png b/projects/challange 8/pokedex/v1/pokedex/small-images/893.png new file mode 100644 index 0000000..3bf0692 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/893.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/894.png b/projects/challange 8/pokedex/v1/pokedex/small-images/894.png new file mode 100644 index 0000000..9978b3f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/894.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/895.png b/projects/challange 8/pokedex/v1/pokedex/small-images/895.png new file mode 100644 index 0000000..112b34f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/895.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/896.png b/projects/challange 8/pokedex/v1/pokedex/small-images/896.png new file mode 100644 index 0000000..92d8424 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/896.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/897.png b/projects/challange 8/pokedex/v1/pokedex/small-images/897.png new file mode 100644 index 0000000..66e8277 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/897.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/898.png b/projects/challange 8/pokedex/v1/pokedex/small-images/898.png new file mode 100644 index 0000000..70692c9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/898.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/899.png b/projects/challange 8/pokedex/v1/pokedex/small-images/899.png new file mode 100644 index 0000000..d5f40a2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/899.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/9.png b/projects/challange 8/pokedex/v1/pokedex/small-images/9.png new file mode 100644 index 0000000..309b49c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/9.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/90.png b/projects/challange 8/pokedex/v1/pokedex/small-images/90.png new file mode 100644 index 0000000..6fdba88 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/90.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/900.png b/projects/challange 8/pokedex/v1/pokedex/small-images/900.png new file mode 100644 index 0000000..d9f3601 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/900.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/901.png b/projects/challange 8/pokedex/v1/pokedex/small-images/901.png new file mode 100644 index 0000000..2c3d841 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/901.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/902.png b/projects/challange 8/pokedex/v1/pokedex/small-images/902.png new file mode 100644 index 0000000..44d9c86 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/902.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/903.png b/projects/challange 8/pokedex/v1/pokedex/small-images/903.png new file mode 100644 index 0000000..b6851fa Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/903.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/904.png b/projects/challange 8/pokedex/v1/pokedex/small-images/904.png new file mode 100644 index 0000000..a813c0f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/904.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/905.png b/projects/challange 8/pokedex/v1/pokedex/small-images/905.png new file mode 100644 index 0000000..e179fcc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/905.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/906.png b/projects/challange 8/pokedex/v1/pokedex/small-images/906.png new file mode 100644 index 0000000..433a397 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/906.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/907.png b/projects/challange 8/pokedex/v1/pokedex/small-images/907.png new file mode 100644 index 0000000..f9668da Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/907.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/908.png b/projects/challange 8/pokedex/v1/pokedex/small-images/908.png new file mode 100644 index 0000000..b11f4e0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/908.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/909.png b/projects/challange 8/pokedex/v1/pokedex/small-images/909.png new file mode 100644 index 0000000..9e9b845 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/909.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/91.png b/projects/challange 8/pokedex/v1/pokedex/small-images/91.png new file mode 100644 index 0000000..3a44237 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/91.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/910.png b/projects/challange 8/pokedex/v1/pokedex/small-images/910.png new file mode 100644 index 0000000..7065b66 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/910.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/911.png b/projects/challange 8/pokedex/v1/pokedex/small-images/911.png new file mode 100644 index 0000000..d6d4217 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/911.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/912.png b/projects/challange 8/pokedex/v1/pokedex/small-images/912.png new file mode 100644 index 0000000..17fa95d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/912.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/913.png b/projects/challange 8/pokedex/v1/pokedex/small-images/913.png new file mode 100644 index 0000000..230c719 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/913.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/914.png b/projects/challange 8/pokedex/v1/pokedex/small-images/914.png new file mode 100644 index 0000000..ae2d865 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/914.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/915.png b/projects/challange 8/pokedex/v1/pokedex/small-images/915.png new file mode 100644 index 0000000..1dcaea4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/915.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/916.png b/projects/challange 8/pokedex/v1/pokedex/small-images/916.png new file mode 100644 index 0000000..5d32208 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/916.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/917.png b/projects/challange 8/pokedex/v1/pokedex/small-images/917.png new file mode 100644 index 0000000..b3b7299 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/917.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/918.png b/projects/challange 8/pokedex/v1/pokedex/small-images/918.png new file mode 100644 index 0000000..428fd30 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/918.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/919.png b/projects/challange 8/pokedex/v1/pokedex/small-images/919.png new file mode 100644 index 0000000..c8e617b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/919.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/92.png b/projects/challange 8/pokedex/v1/pokedex/small-images/92.png new file mode 100644 index 0000000..c1bc783 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/92.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/920.png b/projects/challange 8/pokedex/v1/pokedex/small-images/920.png new file mode 100644 index 0000000..bce5dcc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/920.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/921.png b/projects/challange 8/pokedex/v1/pokedex/small-images/921.png new file mode 100644 index 0000000..3752a1e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/921.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/922.png b/projects/challange 8/pokedex/v1/pokedex/small-images/922.png new file mode 100644 index 0000000..2e7f7d5 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/922.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/923.png b/projects/challange 8/pokedex/v1/pokedex/small-images/923.png new file mode 100644 index 0000000..d7fe86b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/923.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/924.png b/projects/challange 8/pokedex/v1/pokedex/small-images/924.png new file mode 100644 index 0000000..6d6945b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/924.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/925.png b/projects/challange 8/pokedex/v1/pokedex/small-images/925.png new file mode 100644 index 0000000..3331305 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/925.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/926.png b/projects/challange 8/pokedex/v1/pokedex/small-images/926.png new file mode 100644 index 0000000..fd078c0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/926.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/927.png b/projects/challange 8/pokedex/v1/pokedex/small-images/927.png new file mode 100644 index 0000000..3a2c90e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/927.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/928.png b/projects/challange 8/pokedex/v1/pokedex/small-images/928.png new file mode 100644 index 0000000..0d22129 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/928.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/929.png b/projects/challange 8/pokedex/v1/pokedex/small-images/929.png new file mode 100644 index 0000000..616025b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/929.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/93.png b/projects/challange 8/pokedex/v1/pokedex/small-images/93.png new file mode 100644 index 0000000..168447c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/93.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/930.png b/projects/challange 8/pokedex/v1/pokedex/small-images/930.png new file mode 100644 index 0000000..d94eb65 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/930.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/931.png b/projects/challange 8/pokedex/v1/pokedex/small-images/931.png new file mode 100644 index 0000000..64483b0 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/931.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/932.png b/projects/challange 8/pokedex/v1/pokedex/small-images/932.png new file mode 100644 index 0000000..9b2db4d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/932.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/933.png b/projects/challange 8/pokedex/v1/pokedex/small-images/933.png new file mode 100644 index 0000000..a1dbd01 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/933.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/934.png b/projects/challange 8/pokedex/v1/pokedex/small-images/934.png new file mode 100644 index 0000000..181162c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/934.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/935.png b/projects/challange 8/pokedex/v1/pokedex/small-images/935.png new file mode 100644 index 0000000..ba65008 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/935.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/936.png b/projects/challange 8/pokedex/v1/pokedex/small-images/936.png new file mode 100644 index 0000000..31f6e69 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/936.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/937.png b/projects/challange 8/pokedex/v1/pokedex/small-images/937.png new file mode 100644 index 0000000..f5ba916 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/937.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/938.png b/projects/challange 8/pokedex/v1/pokedex/small-images/938.png new file mode 100644 index 0000000..baf7ab9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/938.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/939.png b/projects/challange 8/pokedex/v1/pokedex/small-images/939.png new file mode 100644 index 0000000..9868dfc Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/939.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/94.png b/projects/challange 8/pokedex/v1/pokedex/small-images/94.png new file mode 100644 index 0000000..a234178 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/94.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/940.png b/projects/challange 8/pokedex/v1/pokedex/small-images/940.png new file mode 100644 index 0000000..7377700 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/940.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/941.png b/projects/challange 8/pokedex/v1/pokedex/small-images/941.png new file mode 100644 index 0000000..8c338a8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/941.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/942.png b/projects/challange 8/pokedex/v1/pokedex/small-images/942.png new file mode 100644 index 0000000..92c63e4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/942.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/943.png b/projects/challange 8/pokedex/v1/pokedex/small-images/943.png new file mode 100644 index 0000000..28e3792 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/943.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/944.png b/projects/challange 8/pokedex/v1/pokedex/small-images/944.png new file mode 100644 index 0000000..6dd16ba Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/944.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/945.png b/projects/challange 8/pokedex/v1/pokedex/small-images/945.png new file mode 100644 index 0000000..28f9915 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/945.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/946.png b/projects/challange 8/pokedex/v1/pokedex/small-images/946.png new file mode 100644 index 0000000..970dc78 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/946.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/947.png b/projects/challange 8/pokedex/v1/pokedex/small-images/947.png new file mode 100644 index 0000000..e8146a9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/947.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/948.png b/projects/challange 8/pokedex/v1/pokedex/small-images/948.png new file mode 100644 index 0000000..50e5cfd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/948.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/949.png b/projects/challange 8/pokedex/v1/pokedex/small-images/949.png new file mode 100644 index 0000000..b1223a9 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/949.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/95.png b/projects/challange 8/pokedex/v1/pokedex/small-images/95.png new file mode 100644 index 0000000..b43b249 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/95.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/950.png b/projects/challange 8/pokedex/v1/pokedex/small-images/950.png new file mode 100644 index 0000000..958e51f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/950.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/951.png b/projects/challange 8/pokedex/v1/pokedex/small-images/951.png new file mode 100644 index 0000000..1c88f99 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/951.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/952.png b/projects/challange 8/pokedex/v1/pokedex/small-images/952.png new file mode 100644 index 0000000..4b2cc35 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/952.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/953.png b/projects/challange 8/pokedex/v1/pokedex/small-images/953.png new file mode 100644 index 0000000..e9b44e6 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/953.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/954.png b/projects/challange 8/pokedex/v1/pokedex/small-images/954.png new file mode 100644 index 0000000..bc1cc50 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/954.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/955.png b/projects/challange 8/pokedex/v1/pokedex/small-images/955.png new file mode 100644 index 0000000..deef970 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/955.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/956.png b/projects/challange 8/pokedex/v1/pokedex/small-images/956.png new file mode 100644 index 0000000..1153f93 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/956.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/957.png b/projects/challange 8/pokedex/v1/pokedex/small-images/957.png new file mode 100644 index 0000000..4ad6b8d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/957.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/958.png b/projects/challange 8/pokedex/v1/pokedex/small-images/958.png new file mode 100644 index 0000000..fe7de91 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/958.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/959.png b/projects/challange 8/pokedex/v1/pokedex/small-images/959.png new file mode 100644 index 0000000..889b62b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/959.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/96.png b/projects/challange 8/pokedex/v1/pokedex/small-images/96.png new file mode 100644 index 0000000..ca07454 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/96.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/960.png b/projects/challange 8/pokedex/v1/pokedex/small-images/960.png new file mode 100644 index 0000000..fa62ebb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/960.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/961.png b/projects/challange 8/pokedex/v1/pokedex/small-images/961.png new file mode 100644 index 0000000..a88c780 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/961.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/962.png b/projects/challange 8/pokedex/v1/pokedex/small-images/962.png new file mode 100644 index 0000000..713204c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/962.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/963.png b/projects/challange 8/pokedex/v1/pokedex/small-images/963.png new file mode 100644 index 0000000..e46834b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/963.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/964.png b/projects/challange 8/pokedex/v1/pokedex/small-images/964.png new file mode 100644 index 0000000..3154496 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/964.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/965.png b/projects/challange 8/pokedex/v1/pokedex/small-images/965.png new file mode 100644 index 0000000..dadb561 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/965.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/966.png b/projects/challange 8/pokedex/v1/pokedex/small-images/966.png new file mode 100644 index 0000000..a5714ae Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/966.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/967.png b/projects/challange 8/pokedex/v1/pokedex/small-images/967.png new file mode 100644 index 0000000..72bdb07 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/967.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/968.png b/projects/challange 8/pokedex/v1/pokedex/small-images/968.png new file mode 100644 index 0000000..8f7a13f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/968.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/969.png b/projects/challange 8/pokedex/v1/pokedex/small-images/969.png new file mode 100644 index 0000000..d00e356 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/969.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/97.png b/projects/challange 8/pokedex/v1/pokedex/small-images/97.png new file mode 100644 index 0000000..b7d20a4 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/97.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/970.png b/projects/challange 8/pokedex/v1/pokedex/small-images/970.png new file mode 100644 index 0000000..0e6d807 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/970.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/971.png b/projects/challange 8/pokedex/v1/pokedex/small-images/971.png new file mode 100644 index 0000000..2726cd8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/971.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/972.png b/projects/challange 8/pokedex/v1/pokedex/small-images/972.png new file mode 100644 index 0000000..d5e4d2d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/972.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/973.png b/projects/challange 8/pokedex/v1/pokedex/small-images/973.png new file mode 100644 index 0000000..8386925 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/973.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/974.png b/projects/challange 8/pokedex/v1/pokedex/small-images/974.png new file mode 100644 index 0000000..1ae50f8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/974.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/975.png b/projects/challange 8/pokedex/v1/pokedex/small-images/975.png new file mode 100644 index 0000000..3c79a16 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/975.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/976.png b/projects/challange 8/pokedex/v1/pokedex/small-images/976.png new file mode 100644 index 0000000..fbb2366 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/976.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/977.png b/projects/challange 8/pokedex/v1/pokedex/small-images/977.png new file mode 100644 index 0000000..0b402c2 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/977.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/978.png b/projects/challange 8/pokedex/v1/pokedex/small-images/978.png new file mode 100644 index 0000000..f9c34fd Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/978.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/979.png b/projects/challange 8/pokedex/v1/pokedex/small-images/979.png new file mode 100644 index 0000000..5ff39be Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/979.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/98.png b/projects/challange 8/pokedex/v1/pokedex/small-images/98.png new file mode 100644 index 0000000..82ae51d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/98.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/980.png b/projects/challange 8/pokedex/v1/pokedex/small-images/980.png new file mode 100644 index 0000000..c6c3069 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/980.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/981.png b/projects/challange 8/pokedex/v1/pokedex/small-images/981.png new file mode 100644 index 0000000..b491c9c Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/981.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/982.png b/projects/challange 8/pokedex/v1/pokedex/small-images/982.png new file mode 100644 index 0000000..f62f496 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/982.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/983.png b/projects/challange 8/pokedex/v1/pokedex/small-images/983.png new file mode 100644 index 0000000..9b45d4b Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/983.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/984.png b/projects/challange 8/pokedex/v1/pokedex/small-images/984.png new file mode 100644 index 0000000..d494930 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/984.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/985.png b/projects/challange 8/pokedex/v1/pokedex/small-images/985.png new file mode 100644 index 0000000..f243118 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/985.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/986.png b/projects/challange 8/pokedex/v1/pokedex/small-images/986.png new file mode 100644 index 0000000..5c59fb8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/986.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/987.png b/projects/challange 8/pokedex/v1/pokedex/small-images/987.png new file mode 100644 index 0000000..cb04ca8 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/987.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/988.png b/projects/challange 8/pokedex/v1/pokedex/small-images/988.png new file mode 100644 index 0000000..20c9602 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/988.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/989.png b/projects/challange 8/pokedex/v1/pokedex/small-images/989.png new file mode 100644 index 0000000..fae9f67 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/989.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/99.png b/projects/challange 8/pokedex/v1/pokedex/small-images/99.png new file mode 100644 index 0000000..f20e0fb Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/99.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/990.png b/projects/challange 8/pokedex/v1/pokedex/small-images/990.png new file mode 100644 index 0000000..483e584 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/990.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/991.png b/projects/challange 8/pokedex/v1/pokedex/small-images/991.png new file mode 100644 index 0000000..9dd868e Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/991.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/992.png b/projects/challange 8/pokedex/v1/pokedex/small-images/992.png new file mode 100644 index 0000000..118ddfe Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/992.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/993.png b/projects/challange 8/pokedex/v1/pokedex/small-images/993.png new file mode 100644 index 0000000..c267724 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/993.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/994.png b/projects/challange 8/pokedex/v1/pokedex/small-images/994.png new file mode 100644 index 0000000..b59108f Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/994.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/995.png b/projects/challange 8/pokedex/v1/pokedex/small-images/995.png new file mode 100644 index 0000000..6850481 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/995.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/996.png b/projects/challange 8/pokedex/v1/pokedex/small-images/996.png new file mode 100644 index 0000000..fec2f9d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/996.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/997.png b/projects/challange 8/pokedex/v1/pokedex/small-images/997.png new file mode 100644 index 0000000..fa7bb38 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/997.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/998.png b/projects/challange 8/pokedex/v1/pokedex/small-images/998.png new file mode 100644 index 0000000..a716a8d Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/998.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/small-images/999.png b/projects/challange 8/pokedex/v1/pokedex/small-images/999.png new file mode 100644 index 0000000..1aa2699 Binary files /dev/null and b/projects/challange 8/pokedex/v1/pokedex/small-images/999.png differ diff --git a/projects/challange 8/pokedex/v1/pokedex/style.css b/projects/challange 8/pokedex/v1/pokedex/style.css new file mode 100644 index 0000000..f4dbb03 --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/style.css @@ -0,0 +1,641 @@ +@import url("https://fonts.googleapis.com/css?family=Lato:300,400&display=swap"); + +@font-face { + font-family: pocketMonk; + src: url(./Fonts/PocketMonk.ttf); +} +@font-face { + font-family: slumbersWeight; + src: url(./Fonts/SlumbersWeight.ttf); +} +@font-face { + font-family: moltors; + src: url(./Fonts/Moltors.ttf); +} + +* { + box-sizing: border-box; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + margin: 0; + padding: 0; +} + +:root { + --grass: #5fbd58; + --bug: #92bc2c; + --dark: #595761; + --dragon: #0c69c8; + --electric: #f2d94e; + --fairy: #ee90e6; + --fighting: #d3425f; + --fire: #dc872f; + --flying: #a1bbec; + --ghost: #5f6dbc; + --ground: #da7c4d; + --ice: #75d0c1; + --normal: #a0a29f; + --poison: #b763cf; + --psychic: #ff2ca8; + --rock: #a38c21; + --steel: #5695a3; + --water: #539ddf; +} + +body { + background: #efefbb; + /* background: linear-gradient(to right, #ffffff, #827eff); */ + background-color: whitesmoke; +} + +h1 { + letter-spacing: 3px; + font-weight: 800; + font-size: 2.5em; + + padding: 20px; + color: black; +} + +.poke-container { + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: center; + margin: 0 auto; + max-width: 1200px; +} + +.cardContainer { + margin: 10px; +} + +.card { + background-color: #eee; + border-radius: 10px; + box-shadow: 0 3px 15px rgba(0, 0, 0, 0.5); + padding: 20px; + align-items: center; + text-align: center; + transform-style: preserve-3d; + transition: 0.25s ease-in; + max-width: 210px; + min-width: 210px; + min-height: 330px; + max-height: 330px; + color: #202020; + perspective: 150rem; + position: relative; +} + +@media screen and (max-width: 600px) { + .card { + min-width: 45vw !important; + max-width: 45vw !important; + } +} + +.cardContainer:hover .card { + transform: rotateY(180deg); + cursor: pointer; + transition: 0.25s ease-in-out; + transition-delay: .2s; +} + +/* Handle card flip behavior on touch-screen */ +@media(hover: none) { + .cardContainer:hover .card { + transform: none; + transition: none; + } + + .back { + visibility: hidden; + } +} + +.types { + display: flex; +} + +.front, +.back { + backface-visibility: hidden; + position: absolute; + display: flex; + justify-content: center; + align-items: center; + transform-style: preserve-3d; +} + +.back { + transform: rotateY(-180deg); +} + +.back .background { + width: 150px; + position: absolute; + left: 0; + z-index: -10; + opacity: 0.4; + animation: rotate 5s linear infinite; +} +.side { + width: 80%; + display: flex; + flex-direction: column; + justify-content: space-between !important; + align-items: center; +} +.image-container { + position: relative; +} +.image { + width: 150px; + top: 10px; + position: relative; + aspect-ratio: 1/1; + z-index: 10; + image-rendering: pixelated; +} +.background { + width: 150px; + position: absolute; + z-index: -10; + opacity: 0.4; + animation: rotate 5s linear infinite; +} +@keyframes rotate { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } +} +.number { + background-color: rgba(0, 0, 0, 0.1); + padding: 10px 10px; + margin-top: 10px; + border-radius: 10px; + font-size: 1em; + font-family: moltors, sans-serif; +} +.name { + padding: 10px; + letter-spacing: 5px; + font-family: "pocketMonk", sans-serif; + font-size: 1.5em; + white-space: nowrap; + text-overflow: clip; +} +.stats { + display: flex; + justify-content: space-evenly; + margin-top: 20px; + margin-bottom: 10px; + padding: 0; + font-family: "slumbersWeight", sans-serif; + font-size: 1.5em; + font-style: italic; + letter-spacing: 2px; +} + +.select-wrapper .regions { + display: flex; + align-items: center; + justify-content: center; + gap: 10px; + -ms-overflow-style: none; + scrollbar-width: none; + scroll-behavior: smooth; + +} + +.nav.github, +a:hover { + color: #310d15; + transform: scale(1.2); + transition: color 0.2s, transform 0.2s; +} + +.header { + position: sticky; + top: 0; + display: flex; + justify-content: space-around; + align-items: center; + height: 5em; + width: 100%; + margin-bottom: 20px; + z-index: 100; + background-color: #e0e0e0; +} + +.header .logo img { + border-radius: 50%; + width: 50px; + cursor: pointer; +} + +.logo { + display: inline-block; + transition: transform 0.6s; +} + +.logo:hover { + transform: rotate(360deg); +} + +.nav .github, +a { + color: #202020; + font-size: 1.5em; + width: 10%; +} + +#scrollToTopBtn { + width: 40px; + height: 40px; + display: none; + position: fixed; + bottom: 30px; + right: 20px; + z-index: 99999; + border: none; + outline: none; + background-color: #202020; + color: white; + cursor: pointer; + border-radius: 50%; +} +#scrollToDownBtn { + width: 40px; + height: 40px; + display: none; + position: fixed; + bottom: 30px; + left: 20px; + z-index: 99999; + border: none; + outline: none; + background-color: #202020; + color: white; + cursor: pointer; + border-radius: 50%; +} + +#searchbar{ + border-radius: 15px; + color: black; + box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px; + border: 2px solid rgb(32, 32, 32); +} +::placeholder{ + font-weight: 400; + color: #121212; +} +#searchbar:hover{ + color: rgb(28, 28, 18); + + background-color:#f1eeee; + + +} + +#searchbar:focus::placeholder { + opacity: 0.1; +} + +.box input { + width: 100%; + height: 50px; + border-radius: 10px; + border: none; + outline: none; + font-size: 1.7em; + background-color: rgba(0, 0, 0, 0.1); + font-weight: 300; + letter-spacing: 5px; + font-family: "slumbersWeight", sans-serif; + text-align: center; +} + +.box input:focus { + border: 2px solid #202020; +} + +.poke__type__bg > img { + width: 20px; + height: 20px; + transition: all 0.3s ease; /* Add a smooth transition effect */ +} + +.poke__type__bg:hover > img { + transform: scale(1.2); /* Enlarge the type on hover */ +} + +.poke__type__bg { + width: 40px; + height: 40px; + border-radius: 100%; + margin: 0px 10px; + display: flex; + align-items: center; + justify-content: space-around; +} + +.grass { + background: var(--grass); + box-shadow: 0 0 20px var(--grass); +} + +.bug { + background: var(--bug); + box-shadow: 0 0 20px var(--bug); +} + +.dark { + background: var(--dark); + box-shadow: 0 0 20px var(--dark); +} + +.dragon { + background: var(--dragon); + box-shadow: 0 0 20px var(--dragon); +} + +.electric { + background: var(--electric); + box-shadow: 0 0 20px #796d26; +} + +.fairy { + background: var(--fairy); + box-shadow: 0 0 20px var(--fairy); +} + +.fighting { + background: var(--fighting); + box-shadow: 0 0 20px var(--fighting); +} + +.flying { + background: var(--flying); + box-shadow: 0 0 20px var(--flying); +} + +.ghost { + background: var(--ghost); + box-shadow: 0 0 20px var(--ghost); +} + +.ground { + background: var(--ground); + box-shadow: 0 0 20px var(--ground); +} + +.ice { + background: var(--ice); + box-shadow: 0 0 20px var(--ice); +} + +.normal { + background: var(--normal); + box-shadow: 0 0 20px var(--normal); +} + +.poison { + background: var(--poison); + box-shadow: 0 0 20px var(--poison); +} + +.psychic { + background: var(--psychic); + box-shadow: 0 0 20px var(--psychic); +} + +.rock { + background: var(--rock); + box-shadow: 0 0 20px var(--rock); +} + +.steel { + background: var(--steel); + box-shadow: 0 0 20px var(--steel); +} + +.water { + background: var(--water); + box-shadow: 0 0 20px var(--water); +} + +.fire { + background: var(--fire); + box-shadow: 0 0 20px var(--fire); +} + +.select-wrapper { + overflow: hidden; + max-width: 95%; + width: max-content; + margin: auto; + margin-bottom: 20px; + font-family: "slumbersWeight", sans-serif; + font-size: 1.5em; + font-style: italic; + letter-spacing: 2px; + text-align: center; + position: relative; +} + +#regionSelect{ + display: flex; + align-items: center; + justify-content: start; + gap: 10px; + overflow-x: scroll; + -ms-overflow-style: none; + scrollbar-width: none; + scroll-behavior: smooth; +} + +#regionSelect::-webkit-scrollbar { + display: none; +} + +#regionSelect span { + background-color: rgba(46, 46, 46, 0.1); + + padding: 5px 15px; + border-radius: 10px; + + border: 2px solid #202020; + outline: none; + cursor: pointer; + box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px; +} + +#regionSelect span:hover{ + background-color: #bbbbbb; + outline: none; + cursor: pointer; + transition: border-color 0.25s ease-in-out; +} + +::-webkit-scrollbar { + width: 10px; + height: 10px; + background-color: rgba(46, 46, 46, 0.1); + border-radius: 10px; +} +::-webkit-scrollbar-thumb { + background-color: #202020; + border-radius: 10px; +} + +.active { + background-color: black !important; + color: white !important; +} + +.lds-ring { + margin-top: 30vh; + display: none; + position: relative; + width: 80px; + height: 80px; + margin-inline: auto; +} +.lds-ring div { + box-sizing: border-box; + display: block; + position: absolute; + width: 64px; + height: 64px; + margin: 8px; + border: 8px solid #fff; + border-radius: 50%; + animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite; + border-color: cornflowerblue transparent transparent transparent; +} +.lds-ring div:nth-child(1) { + animation-delay: -0.45s; +} +.lds-ring div:nth-child(2) { + animation-delay: -0.3s; +} +.lds-ring div:nth-child(3) { + animation-delay: -0.15s; +} +@keyframes lds-ring { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(360deg); + } +} + +.ring-active { + display: block; +} + + +.features{ + display: flex; + justify-content: space-around; + align-items: center; +} + +#dark:hover { + cursor: pointer; +} + +.darkmode-container{ + margin-right: 2.5em; +} + +.darkmode-content{ + position: relative; + left: 15%; + z-index: 999; + font-size: 1.5em; + font-family: pocketMonk; + display: flex; +} + + +.darkmode-text{ + margin-right: 0.3em; +} + +.github { + min-height: 2rem; + min-width: 2rem; + display: flex; + align-items: center; + justify-content: center; +} + +.dark-mode { + background-color: #333; + color: #fff; +} +.dark-mode .header { + background-color: #222; + color: #fff; +} +.dark-mode .darkmode-button-icon { + color: #fff; +} + +.dark-mode .github-icon { + color: #fff; +} + +.dark-mode .box input { + background-color: #787878; + color: #ab0101; +} + +.dark-mode #regionSelect span { + border: 1px solid #ccc; +} + +.dark-mode #regionSelect span:hover{ + color: black; + background-color: #ead51d; + outline: none; + cursor: pointer; + transition: border-color 0.25s ease-in-out; +} + +/* Media query for smaller screens */ +@media (max-width: 924px) { + .header { + height: 6em; + padding-top: 35px; + } + .logo { + position: absolute; + left: 10px; + } + + .features { + display: flex; + align-items: center; + justify-content: center; + position: absolute; + padding-left: 10px; + padding-right: 10px; + padding-top: 10px; + top: 0; + width: 100%; + height: 25px; + } + + .darkmode-content { + left: 0; + } +} \ No newline at end of file diff --git a/projects/challange 8/pokedex/v1/pokedex/style2.css b/projects/challange 8/pokedex/v1/pokedex/style2.css new file mode 100644 index 0000000..c70fdd9 --- /dev/null +++ b/projects/challange 8/pokedex/v1/pokedex/style2.css @@ -0,0 +1,687 @@ +@import url('https://fonts.googleapis.com/css?family=Lato:300,400&display=swap'); +@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap'); + +@font-face { + font-family: pocketMonk; + src: url(./Fonts/PocketMonk.ttf); +} + +@font-face { + font-family: slumbersWeight; + src: url(./Fonts/SlumbersWeight.ttf); +} + +@font-face { + font-family: moltors; + src: url(./Fonts/Moltors.ttf); +} + +* { + box-sizing: border-box; + margin: 0; + padding: 0; +} + +:root { + --grass: #5FBD58; + --bug: #92BC2C; + --dark: #595761; + --dragon: #0C69C8; + --electric: #F2D94E; + --fairy: #EE90E6; + --fighting: #D3425F; + --fire: #dc872f; + --flying: #A1BBEC; + --ghost: #5F6DBC; + --ground: #DA7C4D; + --ice: #75D0C1; + --normal: #A0A29F; + --poison: #B763CF; + --psychic: #ff2ca8; + --rock: #a38c21; + --steel: #5695A3; + --water: #539DDF; +} +.grass { + background: var(--grass); + box-shadow: 0 0 20px var(--grass); +} + +.bug { + background: var(--bug); + box-shadow: 0 0 20px var(--bug); +} + +.dark { + background: var(--dark); + box-shadow: 0 0 20px var(--dark); +} + +.dragon { + background: var(--dragon); + box-shadow: 0 0 20px var(--dragon); +} + +.electric { + background: var(--electric); + box-shadow: 0 0 20px #796d26; +} + +.fairy { + background: var(--fairy); + box-shadow: 0 0 20px var(--fairy); +} + +.fighting { + background: var(--fighting); + box-shadow: 0 0 20px var(--fighting); +} + +.flying { + background: var(--flying); + box-shadow: 0 0 20px var(--flying); +} + +.ghost { + background: var(--ghost); + box-shadow: 0 0 20px var(--ghost); +} + +.ground { + background: var(--ground); + box-shadow: 0 0 20px var(--ground); +} + +.ice { + background: var(--ice); + box-shadow: 0 0 20px var(--ice); +} + +.normal { + background: var(--normal); + box-shadow: 0 0 20px var(--normal); +} + +.poison { + background: var(--poison); + box-shadow: 0 0 20px var(--poison); +} + +.psychic { + background: var(--psychic); + box-shadow: 0 0 20px var(--psychic); +} + +.rock { + background: var(--rock); + box-shadow: 0 0 20px var(--rock); +} + +.steel { + background: var(--steel); + box-shadow: 0 0 20px var(--steel); +} + +.water { + background: var(--water); + box-shadow: 0 0 20px var(--water); +} + +.fire { + background: var(--fire); + box-shadow: 0 0 20px var(--fire); +} +/* ::-webkit-scrollbar { + width: 10px; + height: 10px; + background-color: rgba(46, 46, 46, 0.1); + border-radius: 10px; +} + +::-webkit-scrollbar-thumb { + background-color: #202020; + border-radius: 10px; +} */ + +.image { + position: relative; +} +.image .imgFront{ + width: 30vh; + height: 30vh; + top: 7vh; + position: relative; + aspect-ratio: 1/1; + z-index: 10; +} +.imgBack{ + position: absolute; + width: 30vh; + z-index: -10; + top: 3vh; + opacity: 0.5; + animation: rotate 5s linear infinite; + right: 0px; +} +.names{ + display: flex; + flex-direction: column; + align-items: center; + position: relative; + top: 2vh; +} +.name{ + font-size: 3em; + font-weight: 800; + letter-spacing: 5px; + font-family: 'pocketMonk', sans-serif; + top: 5vh; + text-align: center; + z-index: 99; +} +.japaneseName{ + font-size: 2em; + font-weight: 800; + letter-spacing: 5px; + font-family: 'pocketMonk', sans-serif; + top: 5vh; + text-align: center; + z-index: 99; + color: rgba(255, 255, 255, 0.253); +} + + +@keyframes rotate { + 0% { + transform: rotate(0deg); + } + + 100% { + transform: rotate(360deg); + } +} + +/* .image img:hover{ + filter: contrast(1); + transition: 0.5s; +} */ + +.top{ + text-align: center; + display: flex; + flex-direction: column; + align-items: center; + /* background-color: white; + border-bottom-left-radius: 50px; + border-bottom-right-radius: 50px; */ + + +} + + +.top .name{ + font-size: 2.5em; + font-weight: 800; + letter-spacing: 5px; + font-family: 'pocketMonk', sans-serif; + margin-top: 10px; + margin-bottom: 5px; + +} +.id{ + background-color: rgba(0, 0, 0, 0.151); + border-radius: 10px; + padding: 5px; +} + +[data-tab-info] { + display: none; +} + +.active[data-tab-info] { + display: block; +} + +.tab-content { + font-size: 1em; + font-weight: bold; + color: rgb(82, 75, 75); +} + +.tabs { + font-size: 1em; + justify-content:space-evenly; + color: black; + font-family: 'Montserrat', sans-serif; + letter-spacing: 5px; + display: flex; + border-bottom: 2px solid rgba(207, 207, 207, 0.26); + align-items: center; + margin-top: 20px; + padding-top: 40px; + position: relative; +} + + +.tabs span { + padding: 10px; + transform: scale(0.9); +} + +.tabs span:hover { + transform: scale(1.1); + transition: 0.5s; + cursor: pointer; + font-weight: bolder; +} + +.listWrapper{ + display: flex; + flex-direction: column; + align-items: center; + margin-top: 20px; + font-size: 1.25em; + font-style: oblique; + +} + +.listItem{ + font-size: 1.25em; + font-family: 'Montserrat', sans-serif; + margin: auto; + padding: 1.5rem; +} + +.stats{ + display: flex; + flex-direction: column; + font-size: 1em; + font-weight: 900; + font-family: 'Montserrat', sans-serif; + margin-top: 10px; + margin-bottom: 10px; +} +.stats hr{ + width: 100%; + margin: 5px, 10px; + padding: 5px, 10px; + border: none; + border-bottom: 2px solid rgba(255, 255, 255, 0.6); +} +.stats .stat{ + display: flex; + justify-content: space-around; + width: 100%; +} +.stat div{ + text-align: left; + margin-top: 5px; + width: 35%; + padding: 7px; + display: flex; + justify-content: space-between; +} + +.stats meter{ + width: 60%; + height: 1.5em; + border-radius: 10px; + border: none; + position: relative; + top: 8px; + padding-right: 5px; +} + +meter::-webkit-meter-optimum-value{ + background-color: #23dd48be; +} +meter::-webkit-meter-suboptimum-value{ + background-color: #fdc945e6; +} +meter::-webkit-meter-even-less-good-value{ + background-color: #ff4545e2; +} +.stats meter::-webkit-meter-bar{ + background-color: rgba(183, 183, 183, 0.3); + border: none; +} +.statTypes{ + + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + margin: 1%; +} +.statTypes .statTypeText{ + + + width: 35%; + margin-bottom: 1%; + display: flex; + justify-content: center; + align-items: center; + +} + +.statTypes img{ + height: 35px; + border-radius: 15px; + margin: 10px; +} +.statTypes .statIconHolder{ + font-size: 14px; +} + + +.poke__type__bg img { + width: 20px; + height: 20px; + margin: 10px; + overflow: visible; + border-radius: 100%; + +} + +.poke__type__bg { + width: 40px; + height: 40px; + margin: 10px; + overflow: visible; + border-radius: 100%; +} + + + +.details{ + background-color: rgb(245, 245, 245); + box-shadow: 10px 10px 50px 10px rgba(0, 0, 0, 0.6); + border-radius: 40px 40px 0px 0px; + padding-top: 10px; + padding-bottom: 10px; + margin-top: 20px; +} + +.overview p{ + font-size: 1em; + font-weight: 600; + padding: 25px 20px; + text-align: justify; + font-family: 'Montserrat', sans-serif; +} +.genus{ + font-size: 1em; + font-weight: lighter; + font-family: 'moltors', sans-serif; +} +.types{ + display: flex; + justify-content: center; + align-items: center; +} +.heightWeight{ + display: flex; + font-family: 'Montserrat', sans-serif; + background-color: rgba(255, 255, 255, 0.329); + box-shadow: 0px 0px 50px 0px rgba(0,0,0,0.2); + border-radius: 20px; + padding: 10px 50px; + font-size: 1.25em; + width: max-content; + margin: 20px auto; + text-align: center; +} +.about{ + font-size: 1em; + display: flex; + flex-direction: column; + align-items: start; + gap: 20px; + text-transform: capitalize; + padding: 25px 20px; + text-align: justify; + letter-spacing: 2px; + font-family: 'Montserrat', sans-serif; +} + +.previousBtn{ + width: 40px; + height: 40px; + position: fixed; + top: 10px; + left: 10px; + z-index: 99999; + border: none; + outline: none; + background-color: #202020; + color: white; + cursor: pointer; + border-radius: 50%; +} +.nextBtn { + width: 40px; + height: 40px; + top: 10px; + right: 10px; + position: fixed; + z-index: 99999; + border: none; + outline: none; + background-color: #202020; + color: white; + cursor: pointer; + border-radius: 50%; +} +.btn{ + display: flex; + justify-content: space-between; +} + + +.evolution { + display: grid; + grid-template-columns: repeat(6, 1fr); + align-items: center !important; + overflow: scroll; + gap: 20px; + margin-top: 20px; + padding: 30px; + font-size: 0.5em; + font-weight: 600; + text-align: center; + letter-spacing: 2px; + text-transform: capitalize; + border-bottom: 2px solid rgba(207, 207, 207, 0.26); +} +::-webkit-scrollbar{ + display: none; +} + +.evolution__pokemon { + display: flex; + flex-direction: column; + justify-content: space-around; + align-items: center; +} + +.evolution__pokemon img { + width: 200px; + height: 200px; + cursor: pointer; + filter: contrast(1.5) brightness(0.8) saturate(1.2) drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.37)); +} +.evolution__pokemon h1{ + text-align: center; + margin-bottom: 30px; + font-family: 'moltors', sans-serif; + +} + +.varieties__pokemon img{ + width: 300px; + height: 300px; + filter: contrast(1.5) brightness(0.8) saturate(1.2) drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.37)); +} +.varieties__pokemon h1{ + text-align: center; + margin-bottom: 30px; + font-family: 'moltors', sans-serif; +} +.varieties{ + display: grid; + grid-template-columns: repeat(1, 2fr); + align-items: center !important; + overflow: scroll; + gap: 20px; + margin-top: 20px; + padding: 30px; + font-size: 0.5em; + font-weight: 600; + text-align: center; + letter-spacing: 2px; + text-transform: capitalize; + +} + +/* preloader css*/ +/* General Styling */ +.container { + display: flex; + justify-content: center; + align-items: center; + height: 100vh; + padding: 1rem; + } + + @media (max-width: 567px) { + h1 { + font-size: 7vw; + text-align: center; + } + } + + + /* Loader Styles start here */ + .loader-wrapper { + --line-width: 5px; + --curtain-color: #f1faee; + --outer-line-color: #a8dadc; + --middle-line-color: #457b9d; + --inner-line-color: #1d3557; + position:fixed; + top:0; + left:0; + width:100%; + height:100%; + z-index:1000; + } + + .loader { + display:block; + position: relative; + top:50%; + left:50%; + /* transform: translate(-50%, -50%); */ + width:150px; + height:150px; + margin:-75px 0 0 -75px; + border:var(--line-width) solid transparent; + border-top-color: var(--outer-line-color); + border-radius:100%; + -webkit-animation: spin 2s linear infinite; + animation: spin 2s linear infinite; + z-index:1001; + } + + .loader:before { + content:""; + position: absolute; + top:4px; + left:4px; + right:4px; + bottom:4px; + border:var(--line-width) solid transparent; + border-top-color: var(--inner-line-color); + border-radius:100%; + -webkit-animation: spin 3s linear infinite; + animation: spin 3s linear infinite; + } + + .loader:after { + content:""; + position: absolute; + top:14px; + left:14px; + right:14px; + bottom:14px; + border:var(--line-width) solid transparent; + border-top-color: var(--middle-line-color); + border-radius:100%; + -webkit-animation: spin 1.5s linear infinite; + animation: spin 1.5s linear infinite; + } + + @-webkit-keyframes spin { + 0% { + -webkit-transform: rotate(0deg); + -ms-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(360deg); + -ms-transform: rotate(360deg); + transform: rotate(360deg); + } + } + @keyframes spin { + 0% { + -webkit-transform: rotate(0deg); + -ms-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(360deg); + -ms-transform: rotate(360deg); + transform: rotate(360deg); + } + } + + .loader-wrapper .loader-section { + position:fixed; + top:0; + background:var(--curtain-color); + width:51%; + height:100%; + z-index:1000; + } + + .loader-wrapper .loader-section.section-left { + left:0 + } + .loader-wrapper .loader-section.section-right { + right:0; + } + + /* Loaded Styles */ + .loaded .loader-wrapper .loader-section.section-left { + transform: translateX(-100%); + transition: all 0.7s 0.3s cubic-bezier(0.645,0.045,0.355,1.000); + } + .loaded .loader-wrapper .loader-section.section-right { + transform: translateX(100%); + transition: all 0.7s 0.3s cubic-bezier(0.645,0.045,0.355,1.000); + } + .loaded .loader { + opacity: 0; + transition: all 0.3s ease-out; + } + .loaded .loader-wrapper { + visibility: hidden; + transform:translateY(-100%); + transition: all .3s 1s ease-out; + } + .statIconHolder{ + + + + } \ No newline at end of file diff --git a/projects/challange 8/pokedex/v2/.vscode/settings.json b/projects/challange 8/pokedex/v2/.vscode/settings.json new file mode 100644 index 0000000..6b665aa --- /dev/null +++ b/projects/challange 8/pokedex/v2/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} diff --git a/projects/challange 8/pokedex/v2/actions.js b/projects/challange 8/pokedex/v2/actions.js new file mode 100644 index 0000000..ecb4d3d --- /dev/null +++ b/projects/challange 8/pokedex/v2/actions.js @@ -0,0 +1,118 @@ +document.querySelector("#register-pokemon").addEventListener("click", registerPokemon); +document.querySelector("#edit-pokemon").addEventListener("click", editPokemon); +document.querySelector("#delete-pokemon").addEventListener("click", deletePokemon); +document.querySelector("#toggle-competitors").addEventListener("click", toggleCompetitors); + +function registerPokemon() { + const name = prompt("Enter Pokémon name:"); + const id = prompt("Enter Pokémon ID:"); + const height = prompt("Enter Pokémon height:"); + const weight = prompt("Enter Pokémon weight:"); + const base_experience = prompt("Enter Pokémon base experience:"); + const species_url = prompt("Enter Pokémon species URL:"); + const image_url = prompt("Enter Pokémon image URL:"); + + if (name && id && height && weight && base_experience && species_url && image_url) { + fetch(`./register-pokemon.php`, { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ name, id, height, weight, base_experience, species_url, image_url }), + }) + .then((response) => response.json()) + .then((data) => { + if (data.success) { + alert("Pokémon registered successfully!"); + location.reload(); + } else { + alert("Failed to register Pokémon."); + } + }) + .catch((error) => { + console.error("Error registering Pokémon:", error); + }); + } else { + alert("All fields are required."); + } +} + +function editPokemon() { + const id = prompt("Enter Pokémon ID to edit:"); + if (!id) { + alert("Pokémon ID is required."); + return; + } + + const name = prompt("Enter new Pokémon name:"); + const height = prompt("Enter new Pokémon height:"); + const weight = prompt("Enter new Pokémon weight:"); + const base_experience = prompt("Enter new Pokémon base experience:"); + const species_url = prompt("Enter new Pokémon species URL:"); + const image_url = prompt("Enter new Pokémon image URL:"); + + if (name && height && weight && base_experience && species_url && image_url) { + fetch(`./edit-pokemon.php`, { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ id, name, height, weight, base_experience, species_url, image_url }), + }) + .then((response) => response.json()) + .then((data) => { + if (data.success) { + alert("Pokémon edited successfully!"); + location.reload(); + } else { + alert("Failed to edit Pokémon."); + } + }) + .catch((error) => { + console.error("Error editing Pokémon:", error); + }); + } else { + alert("All fields are required."); + } +} + +function deletePokemon() { + const id = prompt("Enter Pokémon ID to delete:"); + if (!id) { + alert("Pokémon ID is required."); + return; + } + + fetch(`./delete-pokemon.php`, { + method: "POST", + headers: { + "Content-Type": "application/json", + }, + body: JSON.stringify({ id }), + }) + .then((response) => response.json()) + .then((data) => { + if (data.success) { + alert("Pokémon marked as deleted successfully!"); + location.reload(); + } else { + alert("Failed to mark Pokémon as deleted."); + } + }) + .catch((error) => { + console.error("Error marking Pokémon as deleted:", error); + }); +} + +function toggleCompetitors() { + const competitorsWrapper = document.querySelector("#competitors-wrapper"); + const toggleButton = document.querySelector("#toggle-competitors"); + + if (competitorsWrapper.classList.contains("hidden")) { + competitorsWrapper.classList.remove("hidden"); + toggleButton.textContent = "Hide"; + } else { + competitorsWrapper.classList.add("hidden"); + toggleButton.textContent = "Show"; + } +} diff --git a/projects/challange 8/pokedex/v2/assets/back-to-home.svg b/projects/challange 8/pokedex/v2/assets/back-to-home.svg new file mode 100644 index 0000000..d1f9126 --- /dev/null +++ b/projects/challange 8/pokedex/v2/assets/back-to-home.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/projects/challange 8/pokedex/v2/assets/chevron_left.svg b/projects/challange 8/pokedex/v2/assets/chevron_left.svg new file mode 100644 index 0000000..39c498b --- /dev/null +++ b/projects/challange 8/pokedex/v2/assets/chevron_left.svg @@ -0,0 +1,3 @@ + + + diff --git a/projects/challange 8/pokedex/v2/assets/chevron_right.svg b/projects/challange 8/pokedex/v2/assets/chevron_right.svg new file mode 100644 index 0000000..0e27809 --- /dev/null +++ b/projects/challange 8/pokedex/v2/assets/chevron_right.svg @@ -0,0 +1,3 @@ + + + diff --git a/projects/challange 8/pokedex/v2/assets/cross.svg b/projects/challange 8/pokedex/v2/assets/cross.svg new file mode 100644 index 0000000..53b50a1 --- /dev/null +++ b/projects/challange 8/pokedex/v2/assets/cross.svg @@ -0,0 +1,3 @@ + + + diff --git a/projects/challange 8/pokedex/v2/assets/height.svg b/projects/challange 8/pokedex/v2/assets/height.svg new file mode 100644 index 0000000..e5a0bbc --- /dev/null +++ b/projects/challange 8/pokedex/v2/assets/height.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/projects/challange 8/pokedex/v2/assets/pokeball.png b/projects/challange 8/pokedex/v2/assets/pokeball.png new file mode 100644 index 0000000..d4e8fdd Binary files /dev/null and b/projects/challange 8/pokedex/v2/assets/pokeball.png differ diff --git a/projects/challange 8/pokedex/v2/assets/pokeball.svg b/projects/challange 8/pokedex/v2/assets/pokeball.svg new file mode 100644 index 0000000..99c3555 --- /dev/null +++ b/projects/challange 8/pokedex/v2/assets/pokeball.svg @@ -0,0 +1,18 @@ + + + + \ No newline at end of file diff --git a/projects/challange 8/pokedex/v2/assets/pokedex.svg b/projects/challange 8/pokedex/v2/assets/pokedex.svg new file mode 100644 index 0000000..62539f8 --- /dev/null +++ b/projects/challange 8/pokedex/v2/assets/pokedex.svg @@ -0,0 +1,4 @@ + + + + diff --git a/projects/challange 8/pokedex/v2/assets/search.svg b/projects/challange 8/pokedex/v2/assets/search.svg new file mode 100644 index 0000000..69fc7a7 --- /dev/null +++ b/projects/challange 8/pokedex/v2/assets/search.svg @@ -0,0 +1,3 @@ + + + diff --git a/projects/challange 8/pokedex/v2/assets/sorting.svg b/projects/challange 8/pokedex/v2/assets/sorting.svg new file mode 100644 index 0000000..685553c --- /dev/null +++ b/projects/challange 8/pokedex/v2/assets/sorting.svg @@ -0,0 +1,3 @@ + + + diff --git a/projects/challange 8/pokedex/v2/assets/weight.svg b/projects/challange 8/pokedex/v2/assets/weight.svg new file mode 100644 index 0000000..a58c0e9 --- /dev/null +++ b/projects/challange 8/pokedex/v2/assets/weight.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/projects/challange 8/pokedex/v2/delete-pokemon.php b/projects/challange 8/pokedex/v2/delete-pokemon.php new file mode 100644 index 0000000..ea896c8 --- /dev/null +++ b/projects/challange 8/pokedex/v2/delete-pokemon.php @@ -0,0 +1,45 @@ +connect_error) { + logMessage("Connection failed: " . $conn->connect_error); + die("Connection failed: " . $conn->connect_error); +} + +header("Content-Type: application/json"); + +$data = json_decode(file_get_contents("php://input"), true); + +if (isset($data['id'])) { + $id = intval($data['id']); + $sql = "UPDATE pokemon SET deleted = 1 WHERE id = $id"; + logMessage("Executing query: $sql"); + + if ($conn->query($sql) === TRUE) { + logMessage("Pokémon marked as deleted successfully."); + echo json_encode(["success" => true]); + } else { + logMessage("Error: " . $conn->error); + echo json_encode(["success" => false, "error" => $conn->error]); + } +} else { + logMessage("Invalid input data."); + echo json_encode(["success" => false, "error" => "Invalid input data."]); +} + +$conn->close(); +?> diff --git a/projects/challange 8/pokedex/v2/detail.html b/projects/challange 8/pokedex/v2/detail.html new file mode 100644 index 0000000..c3c1c53 --- /dev/null +++ b/projects/challange 8/pokedex/v2/detail.html @@ -0,0 +1,98 @@ + + + + + + Pokemon Detail + + + + + +
+
+
+
+ + back to home + +
+

+
+
+
+

+
+
+
+ +
+
+

+

+
+

About

+
+
+
+ weight +

+
+

Weight

+
+
+
+ height +

+
+

Height

+
+
+
+

Abilities

+
+
+

+

Base Stats

+
+
+

HP

+

+ +
+
+

ATK

+

+ +
+
+

DEF

+

+ +
+
+

SATK

+

+ +
+
+
+ pokedex +
+ + diff --git a/projects/challange 8/pokedex/v2/error_log.txt b/projects/challange 8/pokedex/v2/error_log.txt new file mode 100644 index 0000000..e69de29 diff --git a/projects/challange 8/pokedex/v2/get-competitors.php b/projects/challange 8/pokedex/v2/get-competitors.php new file mode 100644 index 0000000..5d89995 --- /dev/null +++ b/projects/challange 8/pokedex/v2/get-competitors.php @@ -0,0 +1,62 @@ +connect_error) { + logMessage("Connection failed: " . $conn->connect_error); + header("Content-Type: application/json"); + http_response_code(500); + echo json_encode(["error" => "Database connection failed"]); + exit; +} + +header("Cache-Control: max-age=86400"); // Cache for 24 hours +header("Content-Type: application/json"); // Ensure JSON response + +try { + // Fetch competitors data with Pokémon details + $sql = "SELECT u.user_id, COUNT(u.pokemon_id) AS pokemon_count, p.name, p.image_url + FROM user_pokemon u + JOIN pokemon p ON u.pokemon_id = p.id + GROUP BY u.user_id, p.name, p.image_url + ORDER BY pokemon_count DESC"; + logMessage("Executing query: $sql"); + $result = $conn->query($sql); + + if ($result === false) { + throw new Exception("Query failed: " . $conn->error); + } + + $competitors = []; + while ($row = $result->fetch_assoc()) { + $competitors[] = $row; + } + + if (empty($competitors)) { + logMessage("No competitors data found."); + echo json_encode(["error" => "No competitors data found"]); + } else { + logMessage("Query result: " . json_encode($competitors)); + echo json_encode($competitors); + } +} catch (Exception $e) { + logMessage("Exception: " . $e->getMessage()); + http_response_code(500); + echo json_encode(["error" => "An error occurred while fetching competitors data"]); +} + +$conn->close(); +?> diff --git a/projects/challange 8/pokedex/v2/get-pokemon.php b/projects/challange 8/pokedex/v2/get-pokemon.php new file mode 100644 index 0000000..2561e7c --- /dev/null +++ b/projects/challange 8/pokedex/v2/get-pokemon.php @@ -0,0 +1,90 @@ +connect_error) { + logMessage("Connection failed: " . $conn->connect_error); + header("Content-Type: application/json"); + http_response_code(500); + echo json_encode(["error" => "Database connection failed"]); + exit; +} + +header("Cache-Control: max-age=86400"); // Cache for 24 hours +header("Content-Type: application/json"); // Ensure JSON response + +if (isset($_GET['id'])) { + $id = intval($_GET['id']); + if ($id <= 0) { + logMessage("Invalid Pokémon ID: $id"); + echo json_encode(["error" => "Invalid Pokémon ID"]); + exit; + } + + $sql = "SELECT p.*, + COALESCE(s.flavor_text, '') AS flavor_text, + GROUP_CONCAT(DISTINCT t.name) AS types, + GROUP_CONCAT(DISTINCT a.name) AS abilities, + st.hp, st.attack, st.defense, st.sp_attack, st.sp_defense, st.speed + FROM pokemon p + LEFT JOIN species s ON p.id = s.pokemon_id + LEFT JOIN pokemon_types pt ON p.id = pt.pokemon_id + LEFT JOIN types t ON pt.type_id = t.id + LEFT JOIN pokemon_abilities pa ON p.id = pa.pokemon_id + LEFT JOIN abilities a ON pa.ability_id = a.id + LEFT JOIN stats st ON p.id = st.pokemon_id + WHERE p.id = $id + GROUP BY p.id"; + logMessage("Executing query for Pokémon ID: $id"); + $result = $conn->query($sql); + + if ($result === false) { + logMessage("Error executing query: " . $conn->error); + echo json_encode(["error" => "Error executing query"]); + exit; + } + + if ($result->num_rows > 0) { + $pokemon = $result->fetch_assoc(); + $pokemon['types'] = $pokemon['types'] ? explode(',', $pokemon['types']) : []; + $pokemon['abilities'] = $pokemon['abilities'] ? explode(',', $pokemon['abilities']) : []; + echo json_encode($pokemon); // Only return JSON data + } else { + logMessage("No Pokémon found for ID: $id"); + echo json_encode(["error" => "No Pokémon found"]); + } +} else { + // Handle requests without an 'id' parameter + $sql = "SELECT id, name, height, weight, base_experience, image_url FROM pokemon"; + logMessage("Executing query to fetch all Pokémon"); + $result = $conn->query($sql); + + if ($result === false) { + logMessage("Error executing query: " . $conn->error); + echo json_encode(["error" => "Error executing query"]); + exit; + } + + $pokemons = []; + while ($row = $result->fetch_assoc()) { + $pokemons[] = $row; + } + + echo json_encode($pokemons); // Only return JSON data +} + +$conn->close(); +?> diff --git a/projects/challange 8/pokedex/v2/images/1.png b/projects/challange 8/pokedex/v2/images/1.png new file mode 100644 index 0000000..ff6d416 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/1.png differ diff --git a/projects/challange 8/pokedex/v2/images/10.png b/projects/challange 8/pokedex/v2/images/10.png new file mode 100644 index 0000000..b9a9b71 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/10.png differ diff --git a/projects/challange 8/pokedex/v2/images/100.png b/projects/challange 8/pokedex/v2/images/100.png new file mode 100644 index 0000000..6c16bf1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/100.png differ diff --git a/projects/challange 8/pokedex/v2/images/1000.png b/projects/challange 8/pokedex/v2/images/1000.png new file mode 100644 index 0000000..1f3a2c0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/1000.png differ diff --git a/projects/challange 8/pokedex/v2/images/1001.png b/projects/challange 8/pokedex/v2/images/1001.png new file mode 100644 index 0000000..0fa02cc Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/1001.png differ diff --git a/projects/challange 8/pokedex/v2/images/1002.png b/projects/challange 8/pokedex/v2/images/1002.png new file mode 100644 index 0000000..f725016 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/1002.png differ diff --git a/projects/challange 8/pokedex/v2/images/1003.png b/projects/challange 8/pokedex/v2/images/1003.png new file mode 100644 index 0000000..ffe8859 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/1003.png differ diff --git a/projects/challange 8/pokedex/v2/images/1004.png b/projects/challange 8/pokedex/v2/images/1004.png new file mode 100644 index 0000000..835b95c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/1004.png differ diff --git a/projects/challange 8/pokedex/v2/images/1005.png b/projects/challange 8/pokedex/v2/images/1005.png new file mode 100644 index 0000000..2fcea65 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/1005.png differ diff --git a/projects/challange 8/pokedex/v2/images/1006.png b/projects/challange 8/pokedex/v2/images/1006.png new file mode 100644 index 0000000..1f342ba Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/1006.png differ diff --git a/projects/challange 8/pokedex/v2/images/1007.png b/projects/challange 8/pokedex/v2/images/1007.png new file mode 100644 index 0000000..bddc5a6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/1007.png differ diff --git a/projects/challange 8/pokedex/v2/images/1008.png b/projects/challange 8/pokedex/v2/images/1008.png new file mode 100644 index 0000000..60c2e39 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/1008.png differ diff --git a/projects/challange 8/pokedex/v2/images/1009.png b/projects/challange 8/pokedex/v2/images/1009.png new file mode 100644 index 0000000..daee793 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/1009.png differ diff --git a/projects/challange 8/pokedex/v2/images/101.png b/projects/challange 8/pokedex/v2/images/101.png new file mode 100644 index 0000000..6ee73d8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/101.png differ diff --git a/projects/challange 8/pokedex/v2/images/1010.png b/projects/challange 8/pokedex/v2/images/1010.png new file mode 100644 index 0000000..2bcb97c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/1010.png differ diff --git a/projects/challange 8/pokedex/v2/images/102.png b/projects/challange 8/pokedex/v2/images/102.png new file mode 100644 index 0000000..b590a3f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/102.png differ diff --git a/projects/challange 8/pokedex/v2/images/103.png b/projects/challange 8/pokedex/v2/images/103.png new file mode 100644 index 0000000..0301671 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/103.png differ diff --git a/projects/challange 8/pokedex/v2/images/104.png b/projects/challange 8/pokedex/v2/images/104.png new file mode 100644 index 0000000..5293f3d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/104.png differ diff --git a/projects/challange 8/pokedex/v2/images/105.png b/projects/challange 8/pokedex/v2/images/105.png new file mode 100644 index 0000000..b1c5a30 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/105.png differ diff --git a/projects/challange 8/pokedex/v2/images/106.png b/projects/challange 8/pokedex/v2/images/106.png new file mode 100644 index 0000000..f226485 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/106.png differ diff --git a/projects/challange 8/pokedex/v2/images/107.png b/projects/challange 8/pokedex/v2/images/107.png new file mode 100644 index 0000000..732eaf5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/107.png differ diff --git a/projects/challange 8/pokedex/v2/images/108.png b/projects/challange 8/pokedex/v2/images/108.png new file mode 100644 index 0000000..cf66fc8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/108.png differ diff --git a/projects/challange 8/pokedex/v2/images/109.png b/projects/challange 8/pokedex/v2/images/109.png new file mode 100644 index 0000000..5d8eefd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/109.png differ diff --git a/projects/challange 8/pokedex/v2/images/11.png b/projects/challange 8/pokedex/v2/images/11.png new file mode 100644 index 0000000..2294193 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/11.png differ diff --git a/projects/challange 8/pokedex/v2/images/110.png b/projects/challange 8/pokedex/v2/images/110.png new file mode 100644 index 0000000..745c6f8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/110.png differ diff --git a/projects/challange 8/pokedex/v2/images/111.png b/projects/challange 8/pokedex/v2/images/111.png new file mode 100644 index 0000000..3840b6c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/111.png differ diff --git a/projects/challange 8/pokedex/v2/images/112.png b/projects/challange 8/pokedex/v2/images/112.png new file mode 100644 index 0000000..fc06599 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/112.png differ diff --git a/projects/challange 8/pokedex/v2/images/113.png b/projects/challange 8/pokedex/v2/images/113.png new file mode 100644 index 0000000..ac8d37b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/113.png differ diff --git a/projects/challange 8/pokedex/v2/images/114.png b/projects/challange 8/pokedex/v2/images/114.png new file mode 100644 index 0000000..6831cbd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/114.png differ diff --git a/projects/challange 8/pokedex/v2/images/115.png b/projects/challange 8/pokedex/v2/images/115.png new file mode 100644 index 0000000..7453e49 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/115.png differ diff --git a/projects/challange 8/pokedex/v2/images/116.png b/projects/challange 8/pokedex/v2/images/116.png new file mode 100644 index 0000000..aec31e6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/116.png differ diff --git a/projects/challange 8/pokedex/v2/images/117.png b/projects/challange 8/pokedex/v2/images/117.png new file mode 100644 index 0000000..17e4f80 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/117.png differ diff --git a/projects/challange 8/pokedex/v2/images/118.png b/projects/challange 8/pokedex/v2/images/118.png new file mode 100644 index 0000000..f55a4da Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/118.png differ diff --git a/projects/challange 8/pokedex/v2/images/119.png b/projects/challange 8/pokedex/v2/images/119.png new file mode 100644 index 0000000..f12b0f5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/119.png differ diff --git a/projects/challange 8/pokedex/v2/images/12.png b/projects/challange 8/pokedex/v2/images/12.png new file mode 100644 index 0000000..ea0dfea Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/12.png differ diff --git a/projects/challange 8/pokedex/v2/images/120.png b/projects/challange 8/pokedex/v2/images/120.png new file mode 100644 index 0000000..f933d1c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/120.png differ diff --git a/projects/challange 8/pokedex/v2/images/121.png b/projects/challange 8/pokedex/v2/images/121.png new file mode 100644 index 0000000..d46a630 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/121.png differ diff --git a/projects/challange 8/pokedex/v2/images/122.png b/projects/challange 8/pokedex/v2/images/122.png new file mode 100644 index 0000000..808f351 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/122.png differ diff --git a/projects/challange 8/pokedex/v2/images/123.png b/projects/challange 8/pokedex/v2/images/123.png new file mode 100644 index 0000000..92d1c55 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/123.png differ diff --git a/projects/challange 8/pokedex/v2/images/124.png b/projects/challange 8/pokedex/v2/images/124.png new file mode 100644 index 0000000..4f8faf7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/124.png differ diff --git a/projects/challange 8/pokedex/v2/images/125.png b/projects/challange 8/pokedex/v2/images/125.png new file mode 100644 index 0000000..5e9780f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/125.png differ diff --git a/projects/challange 8/pokedex/v2/images/126.png b/projects/challange 8/pokedex/v2/images/126.png new file mode 100644 index 0000000..4bef3fc Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/126.png differ diff --git a/projects/challange 8/pokedex/v2/images/127.png b/projects/challange 8/pokedex/v2/images/127.png new file mode 100644 index 0000000..758d92a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/127.png differ diff --git a/projects/challange 8/pokedex/v2/images/128.png b/projects/challange 8/pokedex/v2/images/128.png new file mode 100644 index 0000000..45fdd93 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/128.png differ diff --git a/projects/challange 8/pokedex/v2/images/129.png b/projects/challange 8/pokedex/v2/images/129.png new file mode 100644 index 0000000..f748e54 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/129.png differ diff --git a/projects/challange 8/pokedex/v2/images/13.png b/projects/challange 8/pokedex/v2/images/13.png new file mode 100644 index 0000000..b3ffa32 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/13.png differ diff --git a/projects/challange 8/pokedex/v2/images/130.png b/projects/challange 8/pokedex/v2/images/130.png new file mode 100644 index 0000000..4e81f5e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/130.png differ diff --git a/projects/challange 8/pokedex/v2/images/131.png b/projects/challange 8/pokedex/v2/images/131.png new file mode 100644 index 0000000..477b304 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/131.png differ diff --git a/projects/challange 8/pokedex/v2/images/132.png b/projects/challange 8/pokedex/v2/images/132.png new file mode 100644 index 0000000..7013ce4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/132.png differ diff --git a/projects/challange 8/pokedex/v2/images/133.png b/projects/challange 8/pokedex/v2/images/133.png new file mode 100644 index 0000000..4406687 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/133.png differ diff --git a/projects/challange 8/pokedex/v2/images/134.png b/projects/challange 8/pokedex/v2/images/134.png new file mode 100644 index 0000000..6748ae7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/134.png differ diff --git a/projects/challange 8/pokedex/v2/images/135.png b/projects/challange 8/pokedex/v2/images/135.png new file mode 100644 index 0000000..883e1c7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/135.png differ diff --git a/projects/challange 8/pokedex/v2/images/136.png b/projects/challange 8/pokedex/v2/images/136.png new file mode 100644 index 0000000..2e8d72c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/136.png differ diff --git a/projects/challange 8/pokedex/v2/images/137.png b/projects/challange 8/pokedex/v2/images/137.png new file mode 100644 index 0000000..6a2121e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/137.png differ diff --git a/projects/challange 8/pokedex/v2/images/138.png b/projects/challange 8/pokedex/v2/images/138.png new file mode 100644 index 0000000..3e94444 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/138.png differ diff --git a/projects/challange 8/pokedex/v2/images/139.png b/projects/challange 8/pokedex/v2/images/139.png new file mode 100644 index 0000000..14947a1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/139.png differ diff --git a/projects/challange 8/pokedex/v2/images/14.png b/projects/challange 8/pokedex/v2/images/14.png new file mode 100644 index 0000000..97d0304 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/14.png differ diff --git a/projects/challange 8/pokedex/v2/images/140.png b/projects/challange 8/pokedex/v2/images/140.png new file mode 100644 index 0000000..aa62722 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/140.png differ diff --git a/projects/challange 8/pokedex/v2/images/141.png b/projects/challange 8/pokedex/v2/images/141.png new file mode 100644 index 0000000..2b70b36 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/141.png differ diff --git a/projects/challange 8/pokedex/v2/images/142.png b/projects/challange 8/pokedex/v2/images/142.png new file mode 100644 index 0000000..eaa4190 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/142.png differ diff --git a/projects/challange 8/pokedex/v2/images/143.png b/projects/challange 8/pokedex/v2/images/143.png new file mode 100644 index 0000000..8fa2360 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/143.png differ diff --git a/projects/challange 8/pokedex/v2/images/144.png b/projects/challange 8/pokedex/v2/images/144.png new file mode 100644 index 0000000..8332b67 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/144.png differ diff --git a/projects/challange 8/pokedex/v2/images/145.png b/projects/challange 8/pokedex/v2/images/145.png new file mode 100644 index 0000000..7325730 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/145.png differ diff --git a/projects/challange 8/pokedex/v2/images/146.png b/projects/challange 8/pokedex/v2/images/146.png new file mode 100644 index 0000000..b85ed58 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/146.png differ diff --git a/projects/challange 8/pokedex/v2/images/147.png b/projects/challange 8/pokedex/v2/images/147.png new file mode 100644 index 0000000..60b06dc Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/147.png differ diff --git a/projects/challange 8/pokedex/v2/images/148.png b/projects/challange 8/pokedex/v2/images/148.png new file mode 100644 index 0000000..426feb8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/148.png differ diff --git a/projects/challange 8/pokedex/v2/images/149.png b/projects/challange 8/pokedex/v2/images/149.png new file mode 100644 index 0000000..ed9b580 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/149.png differ diff --git a/projects/challange 8/pokedex/v2/images/15.png b/projects/challange 8/pokedex/v2/images/15.png new file mode 100644 index 0000000..c37bd2e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/15.png differ diff --git a/projects/challange 8/pokedex/v2/images/150.png b/projects/challange 8/pokedex/v2/images/150.png new file mode 100644 index 0000000..6cc7469 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/150.png differ diff --git a/projects/challange 8/pokedex/v2/images/151.png b/projects/challange 8/pokedex/v2/images/151.png new file mode 100644 index 0000000..e99f365 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/151.png differ diff --git a/projects/challange 8/pokedex/v2/images/152.png b/projects/challange 8/pokedex/v2/images/152.png new file mode 100644 index 0000000..98b182a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/152.png differ diff --git a/projects/challange 8/pokedex/v2/images/153.png b/projects/challange 8/pokedex/v2/images/153.png new file mode 100644 index 0000000..18a1edd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/153.png differ diff --git a/projects/challange 8/pokedex/v2/images/154.png b/projects/challange 8/pokedex/v2/images/154.png new file mode 100644 index 0000000..5fb2fd7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/154.png differ diff --git a/projects/challange 8/pokedex/v2/images/155.png b/projects/challange 8/pokedex/v2/images/155.png new file mode 100644 index 0000000..5dacf4a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/155.png differ diff --git a/projects/challange 8/pokedex/v2/images/156.png b/projects/challange 8/pokedex/v2/images/156.png new file mode 100644 index 0000000..61c629e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/156.png differ diff --git a/projects/challange 8/pokedex/v2/images/157.png b/projects/challange 8/pokedex/v2/images/157.png new file mode 100644 index 0000000..2a99800 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/157.png differ diff --git a/projects/challange 8/pokedex/v2/images/158.png b/projects/challange 8/pokedex/v2/images/158.png new file mode 100644 index 0000000..0818e31 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/158.png differ diff --git a/projects/challange 8/pokedex/v2/images/159.png b/projects/challange 8/pokedex/v2/images/159.png new file mode 100644 index 0000000..2c1f24f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/159.png differ diff --git a/projects/challange 8/pokedex/v2/images/16.png b/projects/challange 8/pokedex/v2/images/16.png new file mode 100644 index 0000000..1fcdebb Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/16.png differ diff --git a/projects/challange 8/pokedex/v2/images/160.png b/projects/challange 8/pokedex/v2/images/160.png new file mode 100644 index 0000000..439c62f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/160.png differ diff --git a/projects/challange 8/pokedex/v2/images/161.png b/projects/challange 8/pokedex/v2/images/161.png new file mode 100644 index 0000000..2934962 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/161.png differ diff --git a/projects/challange 8/pokedex/v2/images/162.png b/projects/challange 8/pokedex/v2/images/162.png new file mode 100644 index 0000000..4d6e5e5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/162.png differ diff --git a/projects/challange 8/pokedex/v2/images/163.png b/projects/challange 8/pokedex/v2/images/163.png new file mode 100644 index 0000000..e003840 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/163.png differ diff --git a/projects/challange 8/pokedex/v2/images/164.png b/projects/challange 8/pokedex/v2/images/164.png new file mode 100644 index 0000000..7948da4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/164.png differ diff --git a/projects/challange 8/pokedex/v2/images/165.png b/projects/challange 8/pokedex/v2/images/165.png new file mode 100644 index 0000000..523163f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/165.png differ diff --git a/projects/challange 8/pokedex/v2/images/166.png b/projects/challange 8/pokedex/v2/images/166.png new file mode 100644 index 0000000..f53237b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/166.png differ diff --git a/projects/challange 8/pokedex/v2/images/167.png b/projects/challange 8/pokedex/v2/images/167.png new file mode 100644 index 0000000..820569f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/167.png differ diff --git a/projects/challange 8/pokedex/v2/images/168.png b/projects/challange 8/pokedex/v2/images/168.png new file mode 100644 index 0000000..8cdc992 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/168.png differ diff --git a/projects/challange 8/pokedex/v2/images/169.png b/projects/challange 8/pokedex/v2/images/169.png new file mode 100644 index 0000000..df0cc71 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/169.png differ diff --git a/projects/challange 8/pokedex/v2/images/17.png b/projects/challange 8/pokedex/v2/images/17.png new file mode 100644 index 0000000..9c5e9bf Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/17.png differ diff --git a/projects/challange 8/pokedex/v2/images/170.png b/projects/challange 8/pokedex/v2/images/170.png new file mode 100644 index 0000000..b735988 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/170.png differ diff --git a/projects/challange 8/pokedex/v2/images/171.png b/projects/challange 8/pokedex/v2/images/171.png new file mode 100644 index 0000000..0267980 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/171.png differ diff --git a/projects/challange 8/pokedex/v2/images/172.png b/projects/challange 8/pokedex/v2/images/172.png new file mode 100644 index 0000000..40a8e74 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/172.png differ diff --git a/projects/challange 8/pokedex/v2/images/173.png b/projects/challange 8/pokedex/v2/images/173.png new file mode 100644 index 0000000..cd78dcd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/173.png differ diff --git a/projects/challange 8/pokedex/v2/images/174.png b/projects/challange 8/pokedex/v2/images/174.png new file mode 100644 index 0000000..198aeb5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/174.png differ diff --git a/projects/challange 8/pokedex/v2/images/175.png b/projects/challange 8/pokedex/v2/images/175.png new file mode 100644 index 0000000..53d6fc7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/175.png differ diff --git a/projects/challange 8/pokedex/v2/images/176.png b/projects/challange 8/pokedex/v2/images/176.png new file mode 100644 index 0000000..7153ceb Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/176.png differ diff --git a/projects/challange 8/pokedex/v2/images/177.png b/projects/challange 8/pokedex/v2/images/177.png new file mode 100644 index 0000000..ea1a5cd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/177.png differ diff --git a/projects/challange 8/pokedex/v2/images/178.png b/projects/challange 8/pokedex/v2/images/178.png new file mode 100644 index 0000000..c774661 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/178.png differ diff --git a/projects/challange 8/pokedex/v2/images/179.png b/projects/challange 8/pokedex/v2/images/179.png new file mode 100644 index 0000000..2888984 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/179.png differ diff --git a/projects/challange 8/pokedex/v2/images/18.png b/projects/challange 8/pokedex/v2/images/18.png new file mode 100644 index 0000000..e3ae6c0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/18.png differ diff --git a/projects/challange 8/pokedex/v2/images/180.png b/projects/challange 8/pokedex/v2/images/180.png new file mode 100644 index 0000000..babf4d5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/180.png differ diff --git a/projects/challange 8/pokedex/v2/images/181.png b/projects/challange 8/pokedex/v2/images/181.png new file mode 100644 index 0000000..1a3d3e1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/181.png differ diff --git a/projects/challange 8/pokedex/v2/images/182.png b/projects/challange 8/pokedex/v2/images/182.png new file mode 100644 index 0000000..bfe9b79 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/182.png differ diff --git a/projects/challange 8/pokedex/v2/images/183.png b/projects/challange 8/pokedex/v2/images/183.png new file mode 100644 index 0000000..0f2bfbd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/183.png differ diff --git a/projects/challange 8/pokedex/v2/images/184.png b/projects/challange 8/pokedex/v2/images/184.png new file mode 100644 index 0000000..98a8d05 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/184.png differ diff --git a/projects/challange 8/pokedex/v2/images/185.png b/projects/challange 8/pokedex/v2/images/185.png new file mode 100644 index 0000000..3188a65 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/185.png differ diff --git a/projects/challange 8/pokedex/v2/images/186.png b/projects/challange 8/pokedex/v2/images/186.png new file mode 100644 index 0000000..925a5d5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/186.png differ diff --git a/projects/challange 8/pokedex/v2/images/187.png b/projects/challange 8/pokedex/v2/images/187.png new file mode 100644 index 0000000..73125d2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/187.png differ diff --git a/projects/challange 8/pokedex/v2/images/188.png b/projects/challange 8/pokedex/v2/images/188.png new file mode 100644 index 0000000..2cb03e7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/188.png differ diff --git a/projects/challange 8/pokedex/v2/images/189.png b/projects/challange 8/pokedex/v2/images/189.png new file mode 100644 index 0000000..3a24fbf Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/189.png differ diff --git a/projects/challange 8/pokedex/v2/images/19.png b/projects/challange 8/pokedex/v2/images/19.png new file mode 100644 index 0000000..cbf1fb9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/19.png differ diff --git a/projects/challange 8/pokedex/v2/images/190.png b/projects/challange 8/pokedex/v2/images/190.png new file mode 100644 index 0000000..0e1b6c8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/190.png differ diff --git a/projects/challange 8/pokedex/v2/images/191.png b/projects/challange 8/pokedex/v2/images/191.png new file mode 100644 index 0000000..482be60 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/191.png differ diff --git a/projects/challange 8/pokedex/v2/images/192.png b/projects/challange 8/pokedex/v2/images/192.png new file mode 100644 index 0000000..bf4d0d4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/192.png differ diff --git a/projects/challange 8/pokedex/v2/images/193.png b/projects/challange 8/pokedex/v2/images/193.png new file mode 100644 index 0000000..4939972 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/193.png differ diff --git a/projects/challange 8/pokedex/v2/images/194.png b/projects/challange 8/pokedex/v2/images/194.png new file mode 100644 index 0000000..40ada8b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/194.png differ diff --git a/projects/challange 8/pokedex/v2/images/195.png b/projects/challange 8/pokedex/v2/images/195.png new file mode 100644 index 0000000..10213b5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/195.png differ diff --git a/projects/challange 8/pokedex/v2/images/196.png b/projects/challange 8/pokedex/v2/images/196.png new file mode 100644 index 0000000..3e649bb Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/196.png differ diff --git a/projects/challange 8/pokedex/v2/images/197.png b/projects/challange 8/pokedex/v2/images/197.png new file mode 100644 index 0000000..dad1299 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/197.png differ diff --git a/projects/challange 8/pokedex/v2/images/198.png b/projects/challange 8/pokedex/v2/images/198.png new file mode 100644 index 0000000..244faaa Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/198.png differ diff --git a/projects/challange 8/pokedex/v2/images/199.png b/projects/challange 8/pokedex/v2/images/199.png new file mode 100644 index 0000000..7c07fea Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/199.png differ diff --git a/projects/challange 8/pokedex/v2/images/2.png b/projects/challange 8/pokedex/v2/images/2.png new file mode 100644 index 0000000..bab075e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/2.png differ diff --git a/projects/challange 8/pokedex/v2/images/20.png b/projects/challange 8/pokedex/v2/images/20.png new file mode 100644 index 0000000..c7ae6f2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/20.png differ diff --git a/projects/challange 8/pokedex/v2/images/200.png b/projects/challange 8/pokedex/v2/images/200.png new file mode 100644 index 0000000..6c0eb88 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/200.png differ diff --git a/projects/challange 8/pokedex/v2/images/201.png b/projects/challange 8/pokedex/v2/images/201.png new file mode 100644 index 0000000..d1335e1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/201.png differ diff --git a/projects/challange 8/pokedex/v2/images/202.png b/projects/challange 8/pokedex/v2/images/202.png new file mode 100644 index 0000000..7efbed1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/202.png differ diff --git a/projects/challange 8/pokedex/v2/images/203.png b/projects/challange 8/pokedex/v2/images/203.png new file mode 100644 index 0000000..a976e9c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/203.png differ diff --git a/projects/challange 8/pokedex/v2/images/204.png b/projects/challange 8/pokedex/v2/images/204.png new file mode 100644 index 0000000..e571532 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/204.png differ diff --git a/projects/challange 8/pokedex/v2/images/205.png b/projects/challange 8/pokedex/v2/images/205.png new file mode 100644 index 0000000..5194425 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/205.png differ diff --git a/projects/challange 8/pokedex/v2/images/206.png b/projects/challange 8/pokedex/v2/images/206.png new file mode 100644 index 0000000..f6091b5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/206.png differ diff --git a/projects/challange 8/pokedex/v2/images/207.png b/projects/challange 8/pokedex/v2/images/207.png new file mode 100644 index 0000000..67e9743 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/207.png differ diff --git a/projects/challange 8/pokedex/v2/images/208.png b/projects/challange 8/pokedex/v2/images/208.png new file mode 100644 index 0000000..a1d8875 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/208.png differ diff --git a/projects/challange 8/pokedex/v2/images/209.png b/projects/challange 8/pokedex/v2/images/209.png new file mode 100644 index 0000000..cadd553 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/209.png differ diff --git a/projects/challange 8/pokedex/v2/images/21.png b/projects/challange 8/pokedex/v2/images/21.png new file mode 100644 index 0000000..ace1270 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/21.png differ diff --git a/projects/challange 8/pokedex/v2/images/210.png b/projects/challange 8/pokedex/v2/images/210.png new file mode 100644 index 0000000..3549bf6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/210.png differ diff --git a/projects/challange 8/pokedex/v2/images/211.png b/projects/challange 8/pokedex/v2/images/211.png new file mode 100644 index 0000000..a502952 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/211.png differ diff --git a/projects/challange 8/pokedex/v2/images/212.png b/projects/challange 8/pokedex/v2/images/212.png new file mode 100644 index 0000000..7bd224a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/212.png differ diff --git a/projects/challange 8/pokedex/v2/images/213.png b/projects/challange 8/pokedex/v2/images/213.png new file mode 100644 index 0000000..85b5495 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/213.png differ diff --git a/projects/challange 8/pokedex/v2/images/214.png b/projects/challange 8/pokedex/v2/images/214.png new file mode 100644 index 0000000..3b69b9a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/214.png differ diff --git a/projects/challange 8/pokedex/v2/images/215.png b/projects/challange 8/pokedex/v2/images/215.png new file mode 100644 index 0000000..1eb5fa7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/215.png differ diff --git a/projects/challange 8/pokedex/v2/images/216.png b/projects/challange 8/pokedex/v2/images/216.png new file mode 100644 index 0000000..b235bbe Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/216.png differ diff --git a/projects/challange 8/pokedex/v2/images/217.png b/projects/challange 8/pokedex/v2/images/217.png new file mode 100644 index 0000000..3ccf5a0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/217.png differ diff --git a/projects/challange 8/pokedex/v2/images/218.png b/projects/challange 8/pokedex/v2/images/218.png new file mode 100644 index 0000000..91a7ea4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/218.png differ diff --git a/projects/challange 8/pokedex/v2/images/219.png b/projects/challange 8/pokedex/v2/images/219.png new file mode 100644 index 0000000..d49643c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/219.png differ diff --git a/projects/challange 8/pokedex/v2/images/22.png b/projects/challange 8/pokedex/v2/images/22.png new file mode 100644 index 0000000..95be62d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/22.png differ diff --git a/projects/challange 8/pokedex/v2/images/220.png b/projects/challange 8/pokedex/v2/images/220.png new file mode 100644 index 0000000..e7c7af8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/220.png differ diff --git a/projects/challange 8/pokedex/v2/images/221.png b/projects/challange 8/pokedex/v2/images/221.png new file mode 100644 index 0000000..ea22409 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/221.png differ diff --git a/projects/challange 8/pokedex/v2/images/222.png b/projects/challange 8/pokedex/v2/images/222.png new file mode 100644 index 0000000..6fc7f28 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/222.png differ diff --git a/projects/challange 8/pokedex/v2/images/223.png b/projects/challange 8/pokedex/v2/images/223.png new file mode 100644 index 0000000..7c2a7e7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/223.png differ diff --git a/projects/challange 8/pokedex/v2/images/224.png b/projects/challange 8/pokedex/v2/images/224.png new file mode 100644 index 0000000..4991c08 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/224.png differ diff --git a/projects/challange 8/pokedex/v2/images/225.png b/projects/challange 8/pokedex/v2/images/225.png new file mode 100644 index 0000000..1fa9814 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/225.png differ diff --git a/projects/challange 8/pokedex/v2/images/226.png b/projects/challange 8/pokedex/v2/images/226.png new file mode 100644 index 0000000..04dd11b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/226.png differ diff --git a/projects/challange 8/pokedex/v2/images/227.png b/projects/challange 8/pokedex/v2/images/227.png new file mode 100644 index 0000000..6364e05 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/227.png differ diff --git a/projects/challange 8/pokedex/v2/images/228.png b/projects/challange 8/pokedex/v2/images/228.png new file mode 100644 index 0000000..00d75c5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/228.png differ diff --git a/projects/challange 8/pokedex/v2/images/229.png b/projects/challange 8/pokedex/v2/images/229.png new file mode 100644 index 0000000..77b4c1c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/229.png differ diff --git a/projects/challange 8/pokedex/v2/images/23.png b/projects/challange 8/pokedex/v2/images/23.png new file mode 100644 index 0000000..ad79a42 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/23.png differ diff --git a/projects/challange 8/pokedex/v2/images/230.png b/projects/challange 8/pokedex/v2/images/230.png new file mode 100644 index 0000000..35cae5c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/230.png differ diff --git a/projects/challange 8/pokedex/v2/images/231.png b/projects/challange 8/pokedex/v2/images/231.png new file mode 100644 index 0000000..865a166 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/231.png differ diff --git a/projects/challange 8/pokedex/v2/images/232.png b/projects/challange 8/pokedex/v2/images/232.png new file mode 100644 index 0000000..b8671d3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/232.png differ diff --git a/projects/challange 8/pokedex/v2/images/233.png b/projects/challange 8/pokedex/v2/images/233.png new file mode 100644 index 0000000..ca4e42e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/233.png differ diff --git a/projects/challange 8/pokedex/v2/images/234.png b/projects/challange 8/pokedex/v2/images/234.png new file mode 100644 index 0000000..534d5f8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/234.png differ diff --git a/projects/challange 8/pokedex/v2/images/235.png b/projects/challange 8/pokedex/v2/images/235.png new file mode 100644 index 0000000..86db16c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/235.png differ diff --git a/projects/challange 8/pokedex/v2/images/236.png b/projects/challange 8/pokedex/v2/images/236.png new file mode 100644 index 0000000..b0d660d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/236.png differ diff --git a/projects/challange 8/pokedex/v2/images/237.png b/projects/challange 8/pokedex/v2/images/237.png new file mode 100644 index 0000000..481a8de Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/237.png differ diff --git a/projects/challange 8/pokedex/v2/images/238.png b/projects/challange 8/pokedex/v2/images/238.png new file mode 100644 index 0000000..3858885 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/238.png differ diff --git a/projects/challange 8/pokedex/v2/images/239.png b/projects/challange 8/pokedex/v2/images/239.png new file mode 100644 index 0000000..dd7a4e9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/239.png differ diff --git a/projects/challange 8/pokedex/v2/images/24.png b/projects/challange 8/pokedex/v2/images/24.png new file mode 100644 index 0000000..e30c8f5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/24.png differ diff --git a/projects/challange 8/pokedex/v2/images/240.png b/projects/challange 8/pokedex/v2/images/240.png new file mode 100644 index 0000000..f6c7981 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/240.png differ diff --git a/projects/challange 8/pokedex/v2/images/241.png b/projects/challange 8/pokedex/v2/images/241.png new file mode 100644 index 0000000..8630e66 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/241.png differ diff --git a/projects/challange 8/pokedex/v2/images/242.png b/projects/challange 8/pokedex/v2/images/242.png new file mode 100644 index 0000000..8caa755 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/242.png differ diff --git a/projects/challange 8/pokedex/v2/images/243.png b/projects/challange 8/pokedex/v2/images/243.png new file mode 100644 index 0000000..cc59ec0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/243.png differ diff --git a/projects/challange 8/pokedex/v2/images/244.png b/projects/challange 8/pokedex/v2/images/244.png new file mode 100644 index 0000000..c537aab Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/244.png differ diff --git a/projects/challange 8/pokedex/v2/images/245.png b/projects/challange 8/pokedex/v2/images/245.png new file mode 100644 index 0000000..cff81ee Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/245.png differ diff --git a/projects/challange 8/pokedex/v2/images/246.png b/projects/challange 8/pokedex/v2/images/246.png new file mode 100644 index 0000000..56f047e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/246.png differ diff --git a/projects/challange 8/pokedex/v2/images/247.png b/projects/challange 8/pokedex/v2/images/247.png new file mode 100644 index 0000000..d06c16b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/247.png differ diff --git a/projects/challange 8/pokedex/v2/images/248.png b/projects/challange 8/pokedex/v2/images/248.png new file mode 100644 index 0000000..6aa9434 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/248.png differ diff --git a/projects/challange 8/pokedex/v2/images/249.png b/projects/challange 8/pokedex/v2/images/249.png new file mode 100644 index 0000000..2ff09c7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/249.png differ diff --git a/projects/challange 8/pokedex/v2/images/25.png b/projects/challange 8/pokedex/v2/images/25.png new file mode 100644 index 0000000..16c1182 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/25.png differ diff --git a/projects/challange 8/pokedex/v2/images/250.png b/projects/challange 8/pokedex/v2/images/250.png new file mode 100644 index 0000000..932f99f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/250.png differ diff --git a/projects/challange 8/pokedex/v2/images/251.png b/projects/challange 8/pokedex/v2/images/251.png new file mode 100644 index 0000000..68bd937 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/251.png differ diff --git a/projects/challange 8/pokedex/v2/images/252.png b/projects/challange 8/pokedex/v2/images/252.png new file mode 100644 index 0000000..04d7e84 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/252.png differ diff --git a/projects/challange 8/pokedex/v2/images/253.png b/projects/challange 8/pokedex/v2/images/253.png new file mode 100644 index 0000000..c56a5c7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/253.png differ diff --git a/projects/challange 8/pokedex/v2/images/254.png b/projects/challange 8/pokedex/v2/images/254.png new file mode 100644 index 0000000..3405519 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/254.png differ diff --git a/projects/challange 8/pokedex/v2/images/255.png b/projects/challange 8/pokedex/v2/images/255.png new file mode 100644 index 0000000..5054907 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/255.png differ diff --git a/projects/challange 8/pokedex/v2/images/256.png b/projects/challange 8/pokedex/v2/images/256.png new file mode 100644 index 0000000..c10b580 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/256.png differ diff --git a/projects/challange 8/pokedex/v2/images/257.png b/projects/challange 8/pokedex/v2/images/257.png new file mode 100644 index 0000000..cb96685 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/257.png differ diff --git a/projects/challange 8/pokedex/v2/images/258.png b/projects/challange 8/pokedex/v2/images/258.png new file mode 100644 index 0000000..5ceb9c5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/258.png differ diff --git a/projects/challange 8/pokedex/v2/images/259.png b/projects/challange 8/pokedex/v2/images/259.png new file mode 100644 index 0000000..20e94e4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/259.png differ diff --git a/projects/challange 8/pokedex/v2/images/26.png b/projects/challange 8/pokedex/v2/images/26.png new file mode 100644 index 0000000..d13b218 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/26.png differ diff --git a/projects/challange 8/pokedex/v2/images/260.png b/projects/challange 8/pokedex/v2/images/260.png new file mode 100644 index 0000000..70a0860 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/260.png differ diff --git a/projects/challange 8/pokedex/v2/images/261.png b/projects/challange 8/pokedex/v2/images/261.png new file mode 100644 index 0000000..8379182 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/261.png differ diff --git a/projects/challange 8/pokedex/v2/images/262.png b/projects/challange 8/pokedex/v2/images/262.png new file mode 100644 index 0000000..9098b32 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/262.png differ diff --git a/projects/challange 8/pokedex/v2/images/263.png b/projects/challange 8/pokedex/v2/images/263.png new file mode 100644 index 0000000..049a21e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/263.png differ diff --git a/projects/challange 8/pokedex/v2/images/264.png b/projects/challange 8/pokedex/v2/images/264.png new file mode 100644 index 0000000..772b79f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/264.png differ diff --git a/projects/challange 8/pokedex/v2/images/265.png b/projects/challange 8/pokedex/v2/images/265.png new file mode 100644 index 0000000..7322e9e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/265.png differ diff --git a/projects/challange 8/pokedex/v2/images/266.png b/projects/challange 8/pokedex/v2/images/266.png new file mode 100644 index 0000000..b15085b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/266.png differ diff --git a/projects/challange 8/pokedex/v2/images/267.png b/projects/challange 8/pokedex/v2/images/267.png new file mode 100644 index 0000000..246c38a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/267.png differ diff --git a/projects/challange 8/pokedex/v2/images/268.png b/projects/challange 8/pokedex/v2/images/268.png new file mode 100644 index 0000000..3912f03 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/268.png differ diff --git a/projects/challange 8/pokedex/v2/images/269.png b/projects/challange 8/pokedex/v2/images/269.png new file mode 100644 index 0000000..7d2d366 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/269.png differ diff --git a/projects/challange 8/pokedex/v2/images/27.png b/projects/challange 8/pokedex/v2/images/27.png new file mode 100644 index 0000000..793a327 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/27.png differ diff --git a/projects/challange 8/pokedex/v2/images/270.png b/projects/challange 8/pokedex/v2/images/270.png new file mode 100644 index 0000000..880434c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/270.png differ diff --git a/projects/challange 8/pokedex/v2/images/271.png b/projects/challange 8/pokedex/v2/images/271.png new file mode 100644 index 0000000..5665e84 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/271.png differ diff --git a/projects/challange 8/pokedex/v2/images/272.png b/projects/challange 8/pokedex/v2/images/272.png new file mode 100644 index 0000000..30eba3d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/272.png differ diff --git a/projects/challange 8/pokedex/v2/images/273.png b/projects/challange 8/pokedex/v2/images/273.png new file mode 100644 index 0000000..f533e34 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/273.png differ diff --git a/projects/challange 8/pokedex/v2/images/274.png b/projects/challange 8/pokedex/v2/images/274.png new file mode 100644 index 0000000..1b2908c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/274.png differ diff --git a/projects/challange 8/pokedex/v2/images/275.png b/projects/challange 8/pokedex/v2/images/275.png new file mode 100644 index 0000000..b769608 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/275.png differ diff --git a/projects/challange 8/pokedex/v2/images/276.png b/projects/challange 8/pokedex/v2/images/276.png new file mode 100644 index 0000000..ece91ec Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/276.png differ diff --git a/projects/challange 8/pokedex/v2/images/277.png b/projects/challange 8/pokedex/v2/images/277.png new file mode 100644 index 0000000..2e6db30 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/277.png differ diff --git a/projects/challange 8/pokedex/v2/images/278.png b/projects/challange 8/pokedex/v2/images/278.png new file mode 100644 index 0000000..b9e1b3a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/278.png differ diff --git a/projects/challange 8/pokedex/v2/images/279.png b/projects/challange 8/pokedex/v2/images/279.png new file mode 100644 index 0000000..1e64edd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/279.png differ diff --git a/projects/challange 8/pokedex/v2/images/28.png b/projects/challange 8/pokedex/v2/images/28.png new file mode 100644 index 0000000..e227e26 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/28.png differ diff --git a/projects/challange 8/pokedex/v2/images/280.png b/projects/challange 8/pokedex/v2/images/280.png new file mode 100644 index 0000000..ae079f4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/280.png differ diff --git a/projects/challange 8/pokedex/v2/images/281.png b/projects/challange 8/pokedex/v2/images/281.png new file mode 100644 index 0000000..0bfe5b0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/281.png differ diff --git a/projects/challange 8/pokedex/v2/images/282.png b/projects/challange 8/pokedex/v2/images/282.png new file mode 100644 index 0000000..ecc763f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/282.png differ diff --git a/projects/challange 8/pokedex/v2/images/283.png b/projects/challange 8/pokedex/v2/images/283.png new file mode 100644 index 0000000..58e6a51 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/283.png differ diff --git a/projects/challange 8/pokedex/v2/images/284.png b/projects/challange 8/pokedex/v2/images/284.png new file mode 100644 index 0000000..b2a43ef Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/284.png differ diff --git a/projects/challange 8/pokedex/v2/images/285.png b/projects/challange 8/pokedex/v2/images/285.png new file mode 100644 index 0000000..3004dc4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/285.png differ diff --git a/projects/challange 8/pokedex/v2/images/286.png b/projects/challange 8/pokedex/v2/images/286.png new file mode 100644 index 0000000..45704d9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/286.png differ diff --git a/projects/challange 8/pokedex/v2/images/287.png b/projects/challange 8/pokedex/v2/images/287.png new file mode 100644 index 0000000..76bbe7a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/287.png differ diff --git a/projects/challange 8/pokedex/v2/images/288.png b/projects/challange 8/pokedex/v2/images/288.png new file mode 100644 index 0000000..e1fb6a0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/288.png differ diff --git a/projects/challange 8/pokedex/v2/images/289.png b/projects/challange 8/pokedex/v2/images/289.png new file mode 100644 index 0000000..3709223 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/289.png differ diff --git a/projects/challange 8/pokedex/v2/images/29.png b/projects/challange 8/pokedex/v2/images/29.png new file mode 100644 index 0000000..752c033 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/29.png differ diff --git a/projects/challange 8/pokedex/v2/images/290.png b/projects/challange 8/pokedex/v2/images/290.png new file mode 100644 index 0000000..c5c15cb Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/290.png differ diff --git a/projects/challange 8/pokedex/v2/images/291.png b/projects/challange 8/pokedex/v2/images/291.png new file mode 100644 index 0000000..97e1d7e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/291.png differ diff --git a/projects/challange 8/pokedex/v2/images/292.png b/projects/challange 8/pokedex/v2/images/292.png new file mode 100644 index 0000000..ae8554c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/292.png differ diff --git a/projects/challange 8/pokedex/v2/images/293.png b/projects/challange 8/pokedex/v2/images/293.png new file mode 100644 index 0000000..7d6b6a6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/293.png differ diff --git a/projects/challange 8/pokedex/v2/images/294.png b/projects/challange 8/pokedex/v2/images/294.png new file mode 100644 index 0000000..1377939 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/294.png differ diff --git a/projects/challange 8/pokedex/v2/images/295.png b/projects/challange 8/pokedex/v2/images/295.png new file mode 100644 index 0000000..13a2ead Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/295.png differ diff --git a/projects/challange 8/pokedex/v2/images/296.png b/projects/challange 8/pokedex/v2/images/296.png new file mode 100644 index 0000000..29b1ad6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/296.png differ diff --git a/projects/challange 8/pokedex/v2/images/297.png b/projects/challange 8/pokedex/v2/images/297.png new file mode 100644 index 0000000..26ef621 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/297.png differ diff --git a/projects/challange 8/pokedex/v2/images/298.png b/projects/challange 8/pokedex/v2/images/298.png new file mode 100644 index 0000000..d69da15 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/298.png differ diff --git a/projects/challange 8/pokedex/v2/images/299.png b/projects/challange 8/pokedex/v2/images/299.png new file mode 100644 index 0000000..ebf5ca7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/299.png differ diff --git a/projects/challange 8/pokedex/v2/images/3.png b/projects/challange 8/pokedex/v2/images/3.png new file mode 100644 index 0000000..969dae8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/3.png differ diff --git a/projects/challange 8/pokedex/v2/images/30.png b/projects/challange 8/pokedex/v2/images/30.png new file mode 100644 index 0000000..593a914 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/30.png differ diff --git a/projects/challange 8/pokedex/v2/images/300.png b/projects/challange 8/pokedex/v2/images/300.png new file mode 100644 index 0000000..694f9f9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/300.png differ diff --git a/projects/challange 8/pokedex/v2/images/301.png b/projects/challange 8/pokedex/v2/images/301.png new file mode 100644 index 0000000..8975f00 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/301.png differ diff --git a/projects/challange 8/pokedex/v2/images/302.png b/projects/challange 8/pokedex/v2/images/302.png new file mode 100644 index 0000000..0fe02b8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/302.png differ diff --git a/projects/challange 8/pokedex/v2/images/303.png b/projects/challange 8/pokedex/v2/images/303.png new file mode 100644 index 0000000..7c2b3f3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/303.png differ diff --git a/projects/challange 8/pokedex/v2/images/304.png b/projects/challange 8/pokedex/v2/images/304.png new file mode 100644 index 0000000..78f51fb Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/304.png differ diff --git a/projects/challange 8/pokedex/v2/images/305.png b/projects/challange 8/pokedex/v2/images/305.png new file mode 100644 index 0000000..7ecbc75 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/305.png differ diff --git a/projects/challange 8/pokedex/v2/images/306.png b/projects/challange 8/pokedex/v2/images/306.png new file mode 100644 index 0000000..02622f2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/306.png differ diff --git a/projects/challange 8/pokedex/v2/images/307.png b/projects/challange 8/pokedex/v2/images/307.png new file mode 100644 index 0000000..a9bdb91 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/307.png differ diff --git a/projects/challange 8/pokedex/v2/images/308.png b/projects/challange 8/pokedex/v2/images/308.png new file mode 100644 index 0000000..12065a4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/308.png differ diff --git a/projects/challange 8/pokedex/v2/images/309.png b/projects/challange 8/pokedex/v2/images/309.png new file mode 100644 index 0000000..d4e4824 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/309.png differ diff --git a/projects/challange 8/pokedex/v2/images/31.png b/projects/challange 8/pokedex/v2/images/31.png new file mode 100644 index 0000000..558b6c7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/31.png differ diff --git a/projects/challange 8/pokedex/v2/images/310.png b/projects/challange 8/pokedex/v2/images/310.png new file mode 100644 index 0000000..a399c91 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/310.png differ diff --git a/projects/challange 8/pokedex/v2/images/311.png b/projects/challange 8/pokedex/v2/images/311.png new file mode 100644 index 0000000..0636c75 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/311.png differ diff --git a/projects/challange 8/pokedex/v2/images/312.png b/projects/challange 8/pokedex/v2/images/312.png new file mode 100644 index 0000000..366f8b7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/312.png differ diff --git a/projects/challange 8/pokedex/v2/images/313.png b/projects/challange 8/pokedex/v2/images/313.png new file mode 100644 index 0000000..1a256bd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/313.png differ diff --git a/projects/challange 8/pokedex/v2/images/314.png b/projects/challange 8/pokedex/v2/images/314.png new file mode 100644 index 0000000..15e2a2b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/314.png differ diff --git a/projects/challange 8/pokedex/v2/images/315.png b/projects/challange 8/pokedex/v2/images/315.png new file mode 100644 index 0000000..f3939c5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/315.png differ diff --git a/projects/challange 8/pokedex/v2/images/316.png b/projects/challange 8/pokedex/v2/images/316.png new file mode 100644 index 0000000..d6280c9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/316.png differ diff --git a/projects/challange 8/pokedex/v2/images/317.png b/projects/challange 8/pokedex/v2/images/317.png new file mode 100644 index 0000000..4e111fd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/317.png differ diff --git a/projects/challange 8/pokedex/v2/images/318.png b/projects/challange 8/pokedex/v2/images/318.png new file mode 100644 index 0000000..cf79d82 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/318.png differ diff --git a/projects/challange 8/pokedex/v2/images/319.png b/projects/challange 8/pokedex/v2/images/319.png new file mode 100644 index 0000000..bdad393 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/319.png differ diff --git a/projects/challange 8/pokedex/v2/images/32.png b/projects/challange 8/pokedex/v2/images/32.png new file mode 100644 index 0000000..fb7ecf7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/32.png differ diff --git a/projects/challange 8/pokedex/v2/images/320.png b/projects/challange 8/pokedex/v2/images/320.png new file mode 100644 index 0000000..dd0a66f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/320.png differ diff --git a/projects/challange 8/pokedex/v2/images/321.png b/projects/challange 8/pokedex/v2/images/321.png new file mode 100644 index 0000000..96db060 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/321.png differ diff --git a/projects/challange 8/pokedex/v2/images/322.png b/projects/challange 8/pokedex/v2/images/322.png new file mode 100644 index 0000000..1cf97dd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/322.png differ diff --git a/projects/challange 8/pokedex/v2/images/323.png b/projects/challange 8/pokedex/v2/images/323.png new file mode 100644 index 0000000..9a765c9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/323.png differ diff --git a/projects/challange 8/pokedex/v2/images/324.png b/projects/challange 8/pokedex/v2/images/324.png new file mode 100644 index 0000000..8549b0f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/324.png differ diff --git a/projects/challange 8/pokedex/v2/images/325.png b/projects/challange 8/pokedex/v2/images/325.png new file mode 100644 index 0000000..3f68778 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/325.png differ diff --git a/projects/challange 8/pokedex/v2/images/326.png b/projects/challange 8/pokedex/v2/images/326.png new file mode 100644 index 0000000..b7428b8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/326.png differ diff --git a/projects/challange 8/pokedex/v2/images/327.png b/projects/challange 8/pokedex/v2/images/327.png new file mode 100644 index 0000000..bc8e609 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/327.png differ diff --git a/projects/challange 8/pokedex/v2/images/328.png b/projects/challange 8/pokedex/v2/images/328.png new file mode 100644 index 0000000..26fc44f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/328.png differ diff --git a/projects/challange 8/pokedex/v2/images/329.png b/projects/challange 8/pokedex/v2/images/329.png new file mode 100644 index 0000000..aead94a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/329.png differ diff --git a/projects/challange 8/pokedex/v2/images/33.png b/projects/challange 8/pokedex/v2/images/33.png new file mode 100644 index 0000000..59eab38 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/33.png differ diff --git a/projects/challange 8/pokedex/v2/images/330.png b/projects/challange 8/pokedex/v2/images/330.png new file mode 100644 index 0000000..5618208 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/330.png differ diff --git a/projects/challange 8/pokedex/v2/images/331.png b/projects/challange 8/pokedex/v2/images/331.png new file mode 100644 index 0000000..258e40a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/331.png differ diff --git a/projects/challange 8/pokedex/v2/images/332.png b/projects/challange 8/pokedex/v2/images/332.png new file mode 100644 index 0000000..baa84e1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/332.png differ diff --git a/projects/challange 8/pokedex/v2/images/333.png b/projects/challange 8/pokedex/v2/images/333.png new file mode 100644 index 0000000..e5fa240 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/333.png differ diff --git a/projects/challange 8/pokedex/v2/images/334.png b/projects/challange 8/pokedex/v2/images/334.png new file mode 100644 index 0000000..7734c1b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/334.png differ diff --git a/projects/challange 8/pokedex/v2/images/335.png b/projects/challange 8/pokedex/v2/images/335.png new file mode 100644 index 0000000..21f61bc Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/335.png differ diff --git a/projects/challange 8/pokedex/v2/images/336.png b/projects/challange 8/pokedex/v2/images/336.png new file mode 100644 index 0000000..101b04c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/336.png differ diff --git a/projects/challange 8/pokedex/v2/images/337.png b/projects/challange 8/pokedex/v2/images/337.png new file mode 100644 index 0000000..0866140 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/337.png differ diff --git a/projects/challange 8/pokedex/v2/images/338.png b/projects/challange 8/pokedex/v2/images/338.png new file mode 100644 index 0000000..8414d25 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/338.png differ diff --git a/projects/challange 8/pokedex/v2/images/339.png b/projects/challange 8/pokedex/v2/images/339.png new file mode 100644 index 0000000..8aad47a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/339.png differ diff --git a/projects/challange 8/pokedex/v2/images/34.png b/projects/challange 8/pokedex/v2/images/34.png new file mode 100644 index 0000000..d8a9686 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/34.png differ diff --git a/projects/challange 8/pokedex/v2/images/340.png b/projects/challange 8/pokedex/v2/images/340.png new file mode 100644 index 0000000..ff00914 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/340.png differ diff --git a/projects/challange 8/pokedex/v2/images/341.png b/projects/challange 8/pokedex/v2/images/341.png new file mode 100644 index 0000000..9dd5b1a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/341.png differ diff --git a/projects/challange 8/pokedex/v2/images/342.png b/projects/challange 8/pokedex/v2/images/342.png new file mode 100644 index 0000000..2732f77 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/342.png differ diff --git a/projects/challange 8/pokedex/v2/images/343.png b/projects/challange 8/pokedex/v2/images/343.png new file mode 100644 index 0000000..cc54cab Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/343.png differ diff --git a/projects/challange 8/pokedex/v2/images/344.png b/projects/challange 8/pokedex/v2/images/344.png new file mode 100644 index 0000000..4c5600f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/344.png differ diff --git a/projects/challange 8/pokedex/v2/images/345.png b/projects/challange 8/pokedex/v2/images/345.png new file mode 100644 index 0000000..b0f901a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/345.png differ diff --git a/projects/challange 8/pokedex/v2/images/346.png b/projects/challange 8/pokedex/v2/images/346.png new file mode 100644 index 0000000..7b07b6c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/346.png differ diff --git a/projects/challange 8/pokedex/v2/images/347.png b/projects/challange 8/pokedex/v2/images/347.png new file mode 100644 index 0000000..9ba725a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/347.png differ diff --git a/projects/challange 8/pokedex/v2/images/348.png b/projects/challange 8/pokedex/v2/images/348.png new file mode 100644 index 0000000..eb3b322 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/348.png differ diff --git a/projects/challange 8/pokedex/v2/images/349.png b/projects/challange 8/pokedex/v2/images/349.png new file mode 100644 index 0000000..f351ac0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/349.png differ diff --git a/projects/challange 8/pokedex/v2/images/35.png b/projects/challange 8/pokedex/v2/images/35.png new file mode 100644 index 0000000..fb33cd8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/35.png differ diff --git a/projects/challange 8/pokedex/v2/images/350.png b/projects/challange 8/pokedex/v2/images/350.png new file mode 100644 index 0000000..7c88259 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/350.png differ diff --git a/projects/challange 8/pokedex/v2/images/351.png b/projects/challange 8/pokedex/v2/images/351.png new file mode 100644 index 0000000..4dd48e8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/351.png differ diff --git a/projects/challange 8/pokedex/v2/images/352.png b/projects/challange 8/pokedex/v2/images/352.png new file mode 100644 index 0000000..ae3283c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/352.png differ diff --git a/projects/challange 8/pokedex/v2/images/353.png b/projects/challange 8/pokedex/v2/images/353.png new file mode 100644 index 0000000..92eadd2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/353.png differ diff --git a/projects/challange 8/pokedex/v2/images/354.png b/projects/challange 8/pokedex/v2/images/354.png new file mode 100644 index 0000000..fe95ef5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/354.png differ diff --git a/projects/challange 8/pokedex/v2/images/355.png b/projects/challange 8/pokedex/v2/images/355.png new file mode 100644 index 0000000..0176d9d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/355.png differ diff --git a/projects/challange 8/pokedex/v2/images/356.png b/projects/challange 8/pokedex/v2/images/356.png new file mode 100644 index 0000000..42b740a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/356.png differ diff --git a/projects/challange 8/pokedex/v2/images/357.png b/projects/challange 8/pokedex/v2/images/357.png new file mode 100644 index 0000000..7b32690 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/357.png differ diff --git a/projects/challange 8/pokedex/v2/images/358.png b/projects/challange 8/pokedex/v2/images/358.png new file mode 100644 index 0000000..989b9c1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/358.png differ diff --git a/projects/challange 8/pokedex/v2/images/359.png b/projects/challange 8/pokedex/v2/images/359.png new file mode 100644 index 0000000..2c4d5ab Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/359.png differ diff --git a/projects/challange 8/pokedex/v2/images/36.png b/projects/challange 8/pokedex/v2/images/36.png new file mode 100644 index 0000000..696421d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/36.png differ diff --git a/projects/challange 8/pokedex/v2/images/360.png b/projects/challange 8/pokedex/v2/images/360.png new file mode 100644 index 0000000..c66191c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/360.png differ diff --git a/projects/challange 8/pokedex/v2/images/361.png b/projects/challange 8/pokedex/v2/images/361.png new file mode 100644 index 0000000..97ea980 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/361.png differ diff --git a/projects/challange 8/pokedex/v2/images/362.png b/projects/challange 8/pokedex/v2/images/362.png new file mode 100644 index 0000000..df44d57 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/362.png differ diff --git a/projects/challange 8/pokedex/v2/images/363.png b/projects/challange 8/pokedex/v2/images/363.png new file mode 100644 index 0000000..f4fb133 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/363.png differ diff --git a/projects/challange 8/pokedex/v2/images/364.png b/projects/challange 8/pokedex/v2/images/364.png new file mode 100644 index 0000000..37eb94f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/364.png differ diff --git a/projects/challange 8/pokedex/v2/images/365.png b/projects/challange 8/pokedex/v2/images/365.png new file mode 100644 index 0000000..0358301 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/365.png differ diff --git a/projects/challange 8/pokedex/v2/images/366.png b/projects/challange 8/pokedex/v2/images/366.png new file mode 100644 index 0000000..8f69bbb Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/366.png differ diff --git a/projects/challange 8/pokedex/v2/images/367.png b/projects/challange 8/pokedex/v2/images/367.png new file mode 100644 index 0000000..e8f3f99 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/367.png differ diff --git a/projects/challange 8/pokedex/v2/images/368.png b/projects/challange 8/pokedex/v2/images/368.png new file mode 100644 index 0000000..7d1f248 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/368.png differ diff --git a/projects/challange 8/pokedex/v2/images/369.png b/projects/challange 8/pokedex/v2/images/369.png new file mode 100644 index 0000000..538f137 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/369.png differ diff --git a/projects/challange 8/pokedex/v2/images/37.png b/projects/challange 8/pokedex/v2/images/37.png new file mode 100644 index 0000000..50ee946 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/37.png differ diff --git a/projects/challange 8/pokedex/v2/images/370.png b/projects/challange 8/pokedex/v2/images/370.png new file mode 100644 index 0000000..33d5e20 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/370.png differ diff --git a/projects/challange 8/pokedex/v2/images/371.png b/projects/challange 8/pokedex/v2/images/371.png new file mode 100644 index 0000000..e118bca Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/371.png differ diff --git a/projects/challange 8/pokedex/v2/images/372.png b/projects/challange 8/pokedex/v2/images/372.png new file mode 100644 index 0000000..1f797a4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/372.png differ diff --git a/projects/challange 8/pokedex/v2/images/373.png b/projects/challange 8/pokedex/v2/images/373.png new file mode 100644 index 0000000..875a192 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/373.png differ diff --git a/projects/challange 8/pokedex/v2/images/374.png b/projects/challange 8/pokedex/v2/images/374.png new file mode 100644 index 0000000..eb1603d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/374.png differ diff --git a/projects/challange 8/pokedex/v2/images/375.png b/projects/challange 8/pokedex/v2/images/375.png new file mode 100644 index 0000000..5644a84 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/375.png differ diff --git a/projects/challange 8/pokedex/v2/images/376.png b/projects/challange 8/pokedex/v2/images/376.png new file mode 100644 index 0000000..b6c6e93 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/376.png differ diff --git a/projects/challange 8/pokedex/v2/images/377.png b/projects/challange 8/pokedex/v2/images/377.png new file mode 100644 index 0000000..ddd6245 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/377.png differ diff --git a/projects/challange 8/pokedex/v2/images/378.png b/projects/challange 8/pokedex/v2/images/378.png new file mode 100644 index 0000000..6b42033 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/378.png differ diff --git a/projects/challange 8/pokedex/v2/images/379.png b/projects/challange 8/pokedex/v2/images/379.png new file mode 100644 index 0000000..52bd979 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/379.png differ diff --git a/projects/challange 8/pokedex/v2/images/38.png b/projects/challange 8/pokedex/v2/images/38.png new file mode 100644 index 0000000..4c27925 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/38.png differ diff --git a/projects/challange 8/pokedex/v2/images/380.png b/projects/challange 8/pokedex/v2/images/380.png new file mode 100644 index 0000000..9408eeb Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/380.png differ diff --git a/projects/challange 8/pokedex/v2/images/381.png b/projects/challange 8/pokedex/v2/images/381.png new file mode 100644 index 0000000..8cc0f4a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/381.png differ diff --git a/projects/challange 8/pokedex/v2/images/382.png b/projects/challange 8/pokedex/v2/images/382.png new file mode 100644 index 0000000..d529d56 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/382.png differ diff --git a/projects/challange 8/pokedex/v2/images/383.png b/projects/challange 8/pokedex/v2/images/383.png new file mode 100644 index 0000000..eda0a06 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/383.png differ diff --git a/projects/challange 8/pokedex/v2/images/384.png b/projects/challange 8/pokedex/v2/images/384.png new file mode 100644 index 0000000..2306f2c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/384.png differ diff --git a/projects/challange 8/pokedex/v2/images/385.png b/projects/challange 8/pokedex/v2/images/385.png new file mode 100644 index 0000000..c45ad14 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/385.png differ diff --git a/projects/challange 8/pokedex/v2/images/386.png b/projects/challange 8/pokedex/v2/images/386.png new file mode 100644 index 0000000..650d960 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/386.png differ diff --git a/projects/challange 8/pokedex/v2/images/387.png b/projects/challange 8/pokedex/v2/images/387.png new file mode 100644 index 0000000..004e424 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/387.png differ diff --git a/projects/challange 8/pokedex/v2/images/388.png b/projects/challange 8/pokedex/v2/images/388.png new file mode 100644 index 0000000..cb33df2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/388.png differ diff --git a/projects/challange 8/pokedex/v2/images/389.png b/projects/challange 8/pokedex/v2/images/389.png new file mode 100644 index 0000000..8909ee0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/389.png differ diff --git a/projects/challange 8/pokedex/v2/images/39.png b/projects/challange 8/pokedex/v2/images/39.png new file mode 100644 index 0000000..6dc8041 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/39.png differ diff --git a/projects/challange 8/pokedex/v2/images/390.png b/projects/challange 8/pokedex/v2/images/390.png new file mode 100644 index 0000000..6bf229f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/390.png differ diff --git a/projects/challange 8/pokedex/v2/images/391.png b/projects/challange 8/pokedex/v2/images/391.png new file mode 100644 index 0000000..b944036 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/391.png differ diff --git a/projects/challange 8/pokedex/v2/images/392.png b/projects/challange 8/pokedex/v2/images/392.png new file mode 100644 index 0000000..d2c1cb9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/392.png differ diff --git a/projects/challange 8/pokedex/v2/images/393.png b/projects/challange 8/pokedex/v2/images/393.png new file mode 100644 index 0000000..efdb7ac Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/393.png differ diff --git a/projects/challange 8/pokedex/v2/images/394.png b/projects/challange 8/pokedex/v2/images/394.png new file mode 100644 index 0000000..cf57947 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/394.png differ diff --git a/projects/challange 8/pokedex/v2/images/395.png b/projects/challange 8/pokedex/v2/images/395.png new file mode 100644 index 0000000..9fa3cfd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/395.png differ diff --git a/projects/challange 8/pokedex/v2/images/396.png b/projects/challange 8/pokedex/v2/images/396.png new file mode 100644 index 0000000..c8e8980 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/396.png differ diff --git a/projects/challange 8/pokedex/v2/images/397.png b/projects/challange 8/pokedex/v2/images/397.png new file mode 100644 index 0000000..64c9d9b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/397.png differ diff --git a/projects/challange 8/pokedex/v2/images/398.png b/projects/challange 8/pokedex/v2/images/398.png new file mode 100644 index 0000000..bf89d7c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/398.png differ diff --git a/projects/challange 8/pokedex/v2/images/399.png b/projects/challange 8/pokedex/v2/images/399.png new file mode 100644 index 0000000..085cbe6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/399.png differ diff --git a/projects/challange 8/pokedex/v2/images/4.png b/projects/challange 8/pokedex/v2/images/4.png new file mode 100644 index 0000000..6b91d79 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/4.png differ diff --git a/projects/challange 8/pokedex/v2/images/40.png b/projects/challange 8/pokedex/v2/images/40.png new file mode 100644 index 0000000..abd7487 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/40.png differ diff --git a/projects/challange 8/pokedex/v2/images/400.png b/projects/challange 8/pokedex/v2/images/400.png new file mode 100644 index 0000000..580ea45 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/400.png differ diff --git a/projects/challange 8/pokedex/v2/images/401.png b/projects/challange 8/pokedex/v2/images/401.png new file mode 100644 index 0000000..5f1ccbf Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/401.png differ diff --git a/projects/challange 8/pokedex/v2/images/402.png b/projects/challange 8/pokedex/v2/images/402.png new file mode 100644 index 0000000..cf59a5a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/402.png differ diff --git a/projects/challange 8/pokedex/v2/images/403.png b/projects/challange 8/pokedex/v2/images/403.png new file mode 100644 index 0000000..9a7d89f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/403.png differ diff --git a/projects/challange 8/pokedex/v2/images/404.png b/projects/challange 8/pokedex/v2/images/404.png new file mode 100644 index 0000000..37aff26 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/404.png differ diff --git a/projects/challange 8/pokedex/v2/images/405.png b/projects/challange 8/pokedex/v2/images/405.png new file mode 100644 index 0000000..e65f5b2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/405.png differ diff --git a/projects/challange 8/pokedex/v2/images/406.png b/projects/challange 8/pokedex/v2/images/406.png new file mode 100644 index 0000000..c3ad6df Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/406.png differ diff --git a/projects/challange 8/pokedex/v2/images/407.png b/projects/challange 8/pokedex/v2/images/407.png new file mode 100644 index 0000000..f1bb938 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/407.png differ diff --git a/projects/challange 8/pokedex/v2/images/408.png b/projects/challange 8/pokedex/v2/images/408.png new file mode 100644 index 0000000..54e5c6e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/408.png differ diff --git a/projects/challange 8/pokedex/v2/images/409.png b/projects/challange 8/pokedex/v2/images/409.png new file mode 100644 index 0000000..141a8b2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/409.png differ diff --git a/projects/challange 8/pokedex/v2/images/41.png b/projects/challange 8/pokedex/v2/images/41.png new file mode 100644 index 0000000..efc69db Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/41.png differ diff --git a/projects/challange 8/pokedex/v2/images/410.png b/projects/challange 8/pokedex/v2/images/410.png new file mode 100644 index 0000000..774507c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/410.png differ diff --git a/projects/challange 8/pokedex/v2/images/411.png b/projects/challange 8/pokedex/v2/images/411.png new file mode 100644 index 0000000..1c969bb Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/411.png differ diff --git a/projects/challange 8/pokedex/v2/images/412.png b/projects/challange 8/pokedex/v2/images/412.png new file mode 100644 index 0000000..6e48ba4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/412.png differ diff --git a/projects/challange 8/pokedex/v2/images/413.png b/projects/challange 8/pokedex/v2/images/413.png new file mode 100644 index 0000000..fa4b96a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/413.png differ diff --git a/projects/challange 8/pokedex/v2/images/414.png b/projects/challange 8/pokedex/v2/images/414.png new file mode 100644 index 0000000..7a1337a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/414.png differ diff --git a/projects/challange 8/pokedex/v2/images/415.png b/projects/challange 8/pokedex/v2/images/415.png new file mode 100644 index 0000000..2a6de4f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/415.png differ diff --git a/projects/challange 8/pokedex/v2/images/416.png b/projects/challange 8/pokedex/v2/images/416.png new file mode 100644 index 0000000..35b3d76 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/416.png differ diff --git a/projects/challange 8/pokedex/v2/images/417.png b/projects/challange 8/pokedex/v2/images/417.png new file mode 100644 index 0000000..311d783 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/417.png differ diff --git a/projects/challange 8/pokedex/v2/images/418.png b/projects/challange 8/pokedex/v2/images/418.png new file mode 100644 index 0000000..bb57c68 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/418.png differ diff --git a/projects/challange 8/pokedex/v2/images/419.png b/projects/challange 8/pokedex/v2/images/419.png new file mode 100644 index 0000000..68d078e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/419.png differ diff --git a/projects/challange 8/pokedex/v2/images/42.png b/projects/challange 8/pokedex/v2/images/42.png new file mode 100644 index 0000000..f71f7a5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/42.png differ diff --git a/projects/challange 8/pokedex/v2/images/420.png b/projects/challange 8/pokedex/v2/images/420.png new file mode 100644 index 0000000..324332f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/420.png differ diff --git a/projects/challange 8/pokedex/v2/images/421.png b/projects/challange 8/pokedex/v2/images/421.png new file mode 100644 index 0000000..d923fd4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/421.png differ diff --git a/projects/challange 8/pokedex/v2/images/422.png b/projects/challange 8/pokedex/v2/images/422.png new file mode 100644 index 0000000..2fd5324 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/422.png differ diff --git a/projects/challange 8/pokedex/v2/images/423.png b/projects/challange 8/pokedex/v2/images/423.png new file mode 100644 index 0000000..5e6a9b9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/423.png differ diff --git a/projects/challange 8/pokedex/v2/images/424.png b/projects/challange 8/pokedex/v2/images/424.png new file mode 100644 index 0000000..f3689e3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/424.png differ diff --git a/projects/challange 8/pokedex/v2/images/425.png b/projects/challange 8/pokedex/v2/images/425.png new file mode 100644 index 0000000..90bebb7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/425.png differ diff --git a/projects/challange 8/pokedex/v2/images/426.png b/projects/challange 8/pokedex/v2/images/426.png new file mode 100644 index 0000000..a5e2361 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/426.png differ diff --git a/projects/challange 8/pokedex/v2/images/427.png b/projects/challange 8/pokedex/v2/images/427.png new file mode 100644 index 0000000..9cab756 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/427.png differ diff --git a/projects/challange 8/pokedex/v2/images/428.png b/projects/challange 8/pokedex/v2/images/428.png new file mode 100644 index 0000000..939f466 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/428.png differ diff --git a/projects/challange 8/pokedex/v2/images/429.png b/projects/challange 8/pokedex/v2/images/429.png new file mode 100644 index 0000000..7d0b436 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/429.png differ diff --git a/projects/challange 8/pokedex/v2/images/43.png b/projects/challange 8/pokedex/v2/images/43.png new file mode 100644 index 0000000..38a3f71 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/43.png differ diff --git a/projects/challange 8/pokedex/v2/images/430.png b/projects/challange 8/pokedex/v2/images/430.png new file mode 100644 index 0000000..d49196a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/430.png differ diff --git a/projects/challange 8/pokedex/v2/images/431.png b/projects/challange 8/pokedex/v2/images/431.png new file mode 100644 index 0000000..51fcb67 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/431.png differ diff --git a/projects/challange 8/pokedex/v2/images/432.png b/projects/challange 8/pokedex/v2/images/432.png new file mode 100644 index 0000000..0ed60cf Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/432.png differ diff --git a/projects/challange 8/pokedex/v2/images/433.png b/projects/challange 8/pokedex/v2/images/433.png new file mode 100644 index 0000000..848b345 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/433.png differ diff --git a/projects/challange 8/pokedex/v2/images/434.png b/projects/challange 8/pokedex/v2/images/434.png new file mode 100644 index 0000000..29f6c29 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/434.png differ diff --git a/projects/challange 8/pokedex/v2/images/435.png b/projects/challange 8/pokedex/v2/images/435.png new file mode 100644 index 0000000..8c57aad Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/435.png differ diff --git a/projects/challange 8/pokedex/v2/images/436.png b/projects/challange 8/pokedex/v2/images/436.png new file mode 100644 index 0000000..f38be31 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/436.png differ diff --git a/projects/challange 8/pokedex/v2/images/437.png b/projects/challange 8/pokedex/v2/images/437.png new file mode 100644 index 0000000..33094e5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/437.png differ diff --git a/projects/challange 8/pokedex/v2/images/438.png b/projects/challange 8/pokedex/v2/images/438.png new file mode 100644 index 0000000..204dbf2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/438.png differ diff --git a/projects/challange 8/pokedex/v2/images/439.png b/projects/challange 8/pokedex/v2/images/439.png new file mode 100644 index 0000000..cd689ac Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/439.png differ diff --git a/projects/challange 8/pokedex/v2/images/44.png b/projects/challange 8/pokedex/v2/images/44.png new file mode 100644 index 0000000..d051c44 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/44.png differ diff --git a/projects/challange 8/pokedex/v2/images/440.png b/projects/challange 8/pokedex/v2/images/440.png new file mode 100644 index 0000000..4bba828 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/440.png differ diff --git a/projects/challange 8/pokedex/v2/images/441.png b/projects/challange 8/pokedex/v2/images/441.png new file mode 100644 index 0000000..6afab51 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/441.png differ diff --git a/projects/challange 8/pokedex/v2/images/442.png b/projects/challange 8/pokedex/v2/images/442.png new file mode 100644 index 0000000..4542f7c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/442.png differ diff --git a/projects/challange 8/pokedex/v2/images/443.png b/projects/challange 8/pokedex/v2/images/443.png new file mode 100644 index 0000000..a2aef1a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/443.png differ diff --git a/projects/challange 8/pokedex/v2/images/444.png b/projects/challange 8/pokedex/v2/images/444.png new file mode 100644 index 0000000..02fe4cf Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/444.png differ diff --git a/projects/challange 8/pokedex/v2/images/445.png b/projects/challange 8/pokedex/v2/images/445.png new file mode 100644 index 0000000..5ab8b88 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/445.png differ diff --git a/projects/challange 8/pokedex/v2/images/446.png b/projects/challange 8/pokedex/v2/images/446.png new file mode 100644 index 0000000..598db82 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/446.png differ diff --git a/projects/challange 8/pokedex/v2/images/447.png b/projects/challange 8/pokedex/v2/images/447.png new file mode 100644 index 0000000..2842d5c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/447.png differ diff --git a/projects/challange 8/pokedex/v2/images/448.png b/projects/challange 8/pokedex/v2/images/448.png new file mode 100644 index 0000000..ccfcc50 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/448.png differ diff --git a/projects/challange 8/pokedex/v2/images/449.png b/projects/challange 8/pokedex/v2/images/449.png new file mode 100644 index 0000000..70ebf64 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/449.png differ diff --git a/projects/challange 8/pokedex/v2/images/45.png b/projects/challange 8/pokedex/v2/images/45.png new file mode 100644 index 0000000..0118cf6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/45.png differ diff --git a/projects/challange 8/pokedex/v2/images/450.png b/projects/challange 8/pokedex/v2/images/450.png new file mode 100644 index 0000000..ef4c92a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/450.png differ diff --git a/projects/challange 8/pokedex/v2/images/451.png b/projects/challange 8/pokedex/v2/images/451.png new file mode 100644 index 0000000..5922361 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/451.png differ diff --git a/projects/challange 8/pokedex/v2/images/452.png b/projects/challange 8/pokedex/v2/images/452.png new file mode 100644 index 0000000..e2bd9a0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/452.png differ diff --git a/projects/challange 8/pokedex/v2/images/453.png b/projects/challange 8/pokedex/v2/images/453.png new file mode 100644 index 0000000..61aeb02 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/453.png differ diff --git a/projects/challange 8/pokedex/v2/images/454.png b/projects/challange 8/pokedex/v2/images/454.png new file mode 100644 index 0000000..ee86e2a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/454.png differ diff --git a/projects/challange 8/pokedex/v2/images/455.png b/projects/challange 8/pokedex/v2/images/455.png new file mode 100644 index 0000000..d19c585 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/455.png differ diff --git a/projects/challange 8/pokedex/v2/images/456.png b/projects/challange 8/pokedex/v2/images/456.png new file mode 100644 index 0000000..d72c9f6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/456.png differ diff --git a/projects/challange 8/pokedex/v2/images/457.png b/projects/challange 8/pokedex/v2/images/457.png new file mode 100644 index 0000000..c7f4a52 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/457.png differ diff --git a/projects/challange 8/pokedex/v2/images/458.png b/projects/challange 8/pokedex/v2/images/458.png new file mode 100644 index 0000000..042a3aa Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/458.png differ diff --git a/projects/challange 8/pokedex/v2/images/459.png b/projects/challange 8/pokedex/v2/images/459.png new file mode 100644 index 0000000..c68da71 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/459.png differ diff --git a/projects/challange 8/pokedex/v2/images/46.png b/projects/challange 8/pokedex/v2/images/46.png new file mode 100644 index 0000000..87258e3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/46.png differ diff --git a/projects/challange 8/pokedex/v2/images/460.png b/projects/challange 8/pokedex/v2/images/460.png new file mode 100644 index 0000000..55fc212 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/460.png differ diff --git a/projects/challange 8/pokedex/v2/images/461.png b/projects/challange 8/pokedex/v2/images/461.png new file mode 100644 index 0000000..26ac840 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/461.png differ diff --git a/projects/challange 8/pokedex/v2/images/462.png b/projects/challange 8/pokedex/v2/images/462.png new file mode 100644 index 0000000..24bb120 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/462.png differ diff --git a/projects/challange 8/pokedex/v2/images/463.png b/projects/challange 8/pokedex/v2/images/463.png new file mode 100644 index 0000000..9c6152a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/463.png differ diff --git a/projects/challange 8/pokedex/v2/images/464.png b/projects/challange 8/pokedex/v2/images/464.png new file mode 100644 index 0000000..3717d4f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/464.png differ diff --git a/projects/challange 8/pokedex/v2/images/465.png b/projects/challange 8/pokedex/v2/images/465.png new file mode 100644 index 0000000..bd16197 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/465.png differ diff --git a/projects/challange 8/pokedex/v2/images/466.png b/projects/challange 8/pokedex/v2/images/466.png new file mode 100644 index 0000000..7a973ff Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/466.png differ diff --git a/projects/challange 8/pokedex/v2/images/467.png b/projects/challange 8/pokedex/v2/images/467.png new file mode 100644 index 0000000..622a16d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/467.png differ diff --git a/projects/challange 8/pokedex/v2/images/468.png b/projects/challange 8/pokedex/v2/images/468.png new file mode 100644 index 0000000..e44cdfd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/468.png differ diff --git a/projects/challange 8/pokedex/v2/images/469.png b/projects/challange 8/pokedex/v2/images/469.png new file mode 100644 index 0000000..010fb1d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/469.png differ diff --git a/projects/challange 8/pokedex/v2/images/47.png b/projects/challange 8/pokedex/v2/images/47.png new file mode 100644 index 0000000..e9b96ca Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/47.png differ diff --git a/projects/challange 8/pokedex/v2/images/470.png b/projects/challange 8/pokedex/v2/images/470.png new file mode 100644 index 0000000..11996d1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/470.png differ diff --git a/projects/challange 8/pokedex/v2/images/471.png b/projects/challange 8/pokedex/v2/images/471.png new file mode 100644 index 0000000..311f03c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/471.png differ diff --git a/projects/challange 8/pokedex/v2/images/472.png b/projects/challange 8/pokedex/v2/images/472.png new file mode 100644 index 0000000..d748ce7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/472.png differ diff --git a/projects/challange 8/pokedex/v2/images/473.png b/projects/challange 8/pokedex/v2/images/473.png new file mode 100644 index 0000000..8b9a309 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/473.png differ diff --git a/projects/challange 8/pokedex/v2/images/474.png b/projects/challange 8/pokedex/v2/images/474.png new file mode 100644 index 0000000..f25065f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/474.png differ diff --git a/projects/challange 8/pokedex/v2/images/475.png b/projects/challange 8/pokedex/v2/images/475.png new file mode 100644 index 0000000..e4b2094 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/475.png differ diff --git a/projects/challange 8/pokedex/v2/images/476.png b/projects/challange 8/pokedex/v2/images/476.png new file mode 100644 index 0000000..fe8bf71 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/476.png differ diff --git a/projects/challange 8/pokedex/v2/images/477.png b/projects/challange 8/pokedex/v2/images/477.png new file mode 100644 index 0000000..15307ac Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/477.png differ diff --git a/projects/challange 8/pokedex/v2/images/478.png b/projects/challange 8/pokedex/v2/images/478.png new file mode 100644 index 0000000..581a1de Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/478.png differ diff --git a/projects/challange 8/pokedex/v2/images/479.png b/projects/challange 8/pokedex/v2/images/479.png new file mode 100644 index 0000000..1cbe0a4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/479.png differ diff --git a/projects/challange 8/pokedex/v2/images/48.png b/projects/challange 8/pokedex/v2/images/48.png new file mode 100644 index 0000000..0eb9d07 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/48.png differ diff --git a/projects/challange 8/pokedex/v2/images/480.png b/projects/challange 8/pokedex/v2/images/480.png new file mode 100644 index 0000000..899a55b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/480.png differ diff --git a/projects/challange 8/pokedex/v2/images/481.png b/projects/challange 8/pokedex/v2/images/481.png new file mode 100644 index 0000000..ad60160 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/481.png differ diff --git a/projects/challange 8/pokedex/v2/images/482.png b/projects/challange 8/pokedex/v2/images/482.png new file mode 100644 index 0000000..7689b5a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/482.png differ diff --git a/projects/challange 8/pokedex/v2/images/483.png b/projects/challange 8/pokedex/v2/images/483.png new file mode 100644 index 0000000..9f7b016 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/483.png differ diff --git a/projects/challange 8/pokedex/v2/images/484.png b/projects/challange 8/pokedex/v2/images/484.png new file mode 100644 index 0000000..fa88f58 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/484.png differ diff --git a/projects/challange 8/pokedex/v2/images/485.png b/projects/challange 8/pokedex/v2/images/485.png new file mode 100644 index 0000000..0407667 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/485.png differ diff --git a/projects/challange 8/pokedex/v2/images/486.png b/projects/challange 8/pokedex/v2/images/486.png new file mode 100644 index 0000000..76c0713 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/486.png differ diff --git a/projects/challange 8/pokedex/v2/images/487.png b/projects/challange 8/pokedex/v2/images/487.png new file mode 100644 index 0000000..eba2655 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/487.png differ diff --git a/projects/challange 8/pokedex/v2/images/488.png b/projects/challange 8/pokedex/v2/images/488.png new file mode 100644 index 0000000..389858b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/488.png differ diff --git a/projects/challange 8/pokedex/v2/images/489.png b/projects/challange 8/pokedex/v2/images/489.png new file mode 100644 index 0000000..71ee51e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/489.png differ diff --git a/projects/challange 8/pokedex/v2/images/49.png b/projects/challange 8/pokedex/v2/images/49.png new file mode 100644 index 0000000..6eccb74 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/49.png differ diff --git a/projects/challange 8/pokedex/v2/images/490.png b/projects/challange 8/pokedex/v2/images/490.png new file mode 100644 index 0000000..cdb564b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/490.png differ diff --git a/projects/challange 8/pokedex/v2/images/491.png b/projects/challange 8/pokedex/v2/images/491.png new file mode 100644 index 0000000..afe9ce5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/491.png differ diff --git a/projects/challange 8/pokedex/v2/images/492.png b/projects/challange 8/pokedex/v2/images/492.png new file mode 100644 index 0000000..69a61e8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/492.png differ diff --git a/projects/challange 8/pokedex/v2/images/493.png b/projects/challange 8/pokedex/v2/images/493.png new file mode 100644 index 0000000..4e35ea7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/493.png differ diff --git a/projects/challange 8/pokedex/v2/images/494.png b/projects/challange 8/pokedex/v2/images/494.png new file mode 100644 index 0000000..e5a5c54 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/494.png differ diff --git a/projects/challange 8/pokedex/v2/images/495.png b/projects/challange 8/pokedex/v2/images/495.png new file mode 100644 index 0000000..2875f11 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/495.png differ diff --git a/projects/challange 8/pokedex/v2/images/496.png b/projects/challange 8/pokedex/v2/images/496.png new file mode 100644 index 0000000..388c36b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/496.png differ diff --git a/projects/challange 8/pokedex/v2/images/497.png b/projects/challange 8/pokedex/v2/images/497.png new file mode 100644 index 0000000..5ccac55 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/497.png differ diff --git a/projects/challange 8/pokedex/v2/images/498.png b/projects/challange 8/pokedex/v2/images/498.png new file mode 100644 index 0000000..0219b63 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/498.png differ diff --git a/projects/challange 8/pokedex/v2/images/499.png b/projects/challange 8/pokedex/v2/images/499.png new file mode 100644 index 0000000..dca43ce Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/499.png differ diff --git a/projects/challange 8/pokedex/v2/images/5.png b/projects/challange 8/pokedex/v2/images/5.png new file mode 100644 index 0000000..8bf5151 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/5.png differ diff --git a/projects/challange 8/pokedex/v2/images/50.png b/projects/challange 8/pokedex/v2/images/50.png new file mode 100644 index 0000000..fc3e813 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/50.png differ diff --git a/projects/challange 8/pokedex/v2/images/500.png b/projects/challange 8/pokedex/v2/images/500.png new file mode 100644 index 0000000..8111918 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/500.png differ diff --git a/projects/challange 8/pokedex/v2/images/501.png b/projects/challange 8/pokedex/v2/images/501.png new file mode 100644 index 0000000..07a07d6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/501.png differ diff --git a/projects/challange 8/pokedex/v2/images/502.png b/projects/challange 8/pokedex/v2/images/502.png new file mode 100644 index 0000000..6dd035b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/502.png differ diff --git a/projects/challange 8/pokedex/v2/images/503.png b/projects/challange 8/pokedex/v2/images/503.png new file mode 100644 index 0000000..bc85145 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/503.png differ diff --git a/projects/challange 8/pokedex/v2/images/504.png b/projects/challange 8/pokedex/v2/images/504.png new file mode 100644 index 0000000..685df5b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/504.png differ diff --git a/projects/challange 8/pokedex/v2/images/505.png b/projects/challange 8/pokedex/v2/images/505.png new file mode 100644 index 0000000..1874359 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/505.png differ diff --git a/projects/challange 8/pokedex/v2/images/506.png b/projects/challange 8/pokedex/v2/images/506.png new file mode 100644 index 0000000..9a04b3e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/506.png differ diff --git a/projects/challange 8/pokedex/v2/images/507.png b/projects/challange 8/pokedex/v2/images/507.png new file mode 100644 index 0000000..6cae42f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/507.png differ diff --git a/projects/challange 8/pokedex/v2/images/508.png b/projects/challange 8/pokedex/v2/images/508.png new file mode 100644 index 0000000..3820b78 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/508.png differ diff --git a/projects/challange 8/pokedex/v2/images/509.png b/projects/challange 8/pokedex/v2/images/509.png new file mode 100644 index 0000000..f9b28c4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/509.png differ diff --git a/projects/challange 8/pokedex/v2/images/51.png b/projects/challange 8/pokedex/v2/images/51.png new file mode 100644 index 0000000..80d4d5b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/51.png differ diff --git a/projects/challange 8/pokedex/v2/images/510.png b/projects/challange 8/pokedex/v2/images/510.png new file mode 100644 index 0000000..1e1dd36 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/510.png differ diff --git a/projects/challange 8/pokedex/v2/images/511.png b/projects/challange 8/pokedex/v2/images/511.png new file mode 100644 index 0000000..40220f1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/511.png differ diff --git a/projects/challange 8/pokedex/v2/images/512.png b/projects/challange 8/pokedex/v2/images/512.png new file mode 100644 index 0000000..5020786 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/512.png differ diff --git a/projects/challange 8/pokedex/v2/images/513.png b/projects/challange 8/pokedex/v2/images/513.png new file mode 100644 index 0000000..f963503 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/513.png differ diff --git a/projects/challange 8/pokedex/v2/images/514.png b/projects/challange 8/pokedex/v2/images/514.png new file mode 100644 index 0000000..bd6475b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/514.png differ diff --git a/projects/challange 8/pokedex/v2/images/515.png b/projects/challange 8/pokedex/v2/images/515.png new file mode 100644 index 0000000..8a9135e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/515.png differ diff --git a/projects/challange 8/pokedex/v2/images/516.png b/projects/challange 8/pokedex/v2/images/516.png new file mode 100644 index 0000000..b042b67 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/516.png differ diff --git a/projects/challange 8/pokedex/v2/images/517.png b/projects/challange 8/pokedex/v2/images/517.png new file mode 100644 index 0000000..618af24 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/517.png differ diff --git a/projects/challange 8/pokedex/v2/images/518.png b/projects/challange 8/pokedex/v2/images/518.png new file mode 100644 index 0000000..632bd22 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/518.png differ diff --git a/projects/challange 8/pokedex/v2/images/519.png b/projects/challange 8/pokedex/v2/images/519.png new file mode 100644 index 0000000..a762d02 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/519.png differ diff --git a/projects/challange 8/pokedex/v2/images/52.png b/projects/challange 8/pokedex/v2/images/52.png new file mode 100644 index 0000000..a5034bc Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/52.png differ diff --git a/projects/challange 8/pokedex/v2/images/520.png b/projects/challange 8/pokedex/v2/images/520.png new file mode 100644 index 0000000..2492f90 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/520.png differ diff --git a/projects/challange 8/pokedex/v2/images/521.png b/projects/challange 8/pokedex/v2/images/521.png new file mode 100644 index 0000000..6b8a6b5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/521.png differ diff --git a/projects/challange 8/pokedex/v2/images/522.png b/projects/challange 8/pokedex/v2/images/522.png new file mode 100644 index 0000000..d986c6d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/522.png differ diff --git a/projects/challange 8/pokedex/v2/images/523.png b/projects/challange 8/pokedex/v2/images/523.png new file mode 100644 index 0000000..ce417f8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/523.png differ diff --git a/projects/challange 8/pokedex/v2/images/524.png b/projects/challange 8/pokedex/v2/images/524.png new file mode 100644 index 0000000..59521fb Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/524.png differ diff --git a/projects/challange 8/pokedex/v2/images/525.png b/projects/challange 8/pokedex/v2/images/525.png new file mode 100644 index 0000000..c13e35d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/525.png differ diff --git a/projects/challange 8/pokedex/v2/images/526.png b/projects/challange 8/pokedex/v2/images/526.png new file mode 100644 index 0000000..f91ed9d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/526.png differ diff --git a/projects/challange 8/pokedex/v2/images/527.png b/projects/challange 8/pokedex/v2/images/527.png new file mode 100644 index 0000000..f82719a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/527.png differ diff --git a/projects/challange 8/pokedex/v2/images/528.png b/projects/challange 8/pokedex/v2/images/528.png new file mode 100644 index 0000000..aee6523 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/528.png differ diff --git a/projects/challange 8/pokedex/v2/images/529.png b/projects/challange 8/pokedex/v2/images/529.png new file mode 100644 index 0000000..ce6eaf1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/529.png differ diff --git a/projects/challange 8/pokedex/v2/images/53.png b/projects/challange 8/pokedex/v2/images/53.png new file mode 100644 index 0000000..6192c9d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/53.png differ diff --git a/projects/challange 8/pokedex/v2/images/530.png b/projects/challange 8/pokedex/v2/images/530.png new file mode 100644 index 0000000..c2026c0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/530.png differ diff --git a/projects/challange 8/pokedex/v2/images/531.png b/projects/challange 8/pokedex/v2/images/531.png new file mode 100644 index 0000000..0505532 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/531.png differ diff --git a/projects/challange 8/pokedex/v2/images/532.png b/projects/challange 8/pokedex/v2/images/532.png new file mode 100644 index 0000000..596faa7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/532.png differ diff --git a/projects/challange 8/pokedex/v2/images/533.png b/projects/challange 8/pokedex/v2/images/533.png new file mode 100644 index 0000000..65ec566 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/533.png differ diff --git a/projects/challange 8/pokedex/v2/images/534.png b/projects/challange 8/pokedex/v2/images/534.png new file mode 100644 index 0000000..86934fd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/534.png differ diff --git a/projects/challange 8/pokedex/v2/images/535.png b/projects/challange 8/pokedex/v2/images/535.png new file mode 100644 index 0000000..81fc51e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/535.png differ diff --git a/projects/challange 8/pokedex/v2/images/536.png b/projects/challange 8/pokedex/v2/images/536.png new file mode 100644 index 0000000..dcee170 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/536.png differ diff --git a/projects/challange 8/pokedex/v2/images/537.png b/projects/challange 8/pokedex/v2/images/537.png new file mode 100644 index 0000000..6cdb37c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/537.png differ diff --git a/projects/challange 8/pokedex/v2/images/538.png b/projects/challange 8/pokedex/v2/images/538.png new file mode 100644 index 0000000..3ae63b4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/538.png differ diff --git a/projects/challange 8/pokedex/v2/images/539.png b/projects/challange 8/pokedex/v2/images/539.png new file mode 100644 index 0000000..04691d5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/539.png differ diff --git a/projects/challange 8/pokedex/v2/images/54.png b/projects/challange 8/pokedex/v2/images/54.png new file mode 100644 index 0000000..4609316 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/54.png differ diff --git a/projects/challange 8/pokedex/v2/images/540.png b/projects/challange 8/pokedex/v2/images/540.png new file mode 100644 index 0000000..2e54606 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/540.png differ diff --git a/projects/challange 8/pokedex/v2/images/541.png b/projects/challange 8/pokedex/v2/images/541.png new file mode 100644 index 0000000..57d46fd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/541.png differ diff --git a/projects/challange 8/pokedex/v2/images/542.png b/projects/challange 8/pokedex/v2/images/542.png new file mode 100644 index 0000000..1d00b21 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/542.png differ diff --git a/projects/challange 8/pokedex/v2/images/543.png b/projects/challange 8/pokedex/v2/images/543.png new file mode 100644 index 0000000..0ab0b48 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/543.png differ diff --git a/projects/challange 8/pokedex/v2/images/544.png b/projects/challange 8/pokedex/v2/images/544.png new file mode 100644 index 0000000..cb53a9d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/544.png differ diff --git a/projects/challange 8/pokedex/v2/images/545.png b/projects/challange 8/pokedex/v2/images/545.png new file mode 100644 index 0000000..5c99345 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/545.png differ diff --git a/projects/challange 8/pokedex/v2/images/546.png b/projects/challange 8/pokedex/v2/images/546.png new file mode 100644 index 0000000..81d5d48 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/546.png differ diff --git a/projects/challange 8/pokedex/v2/images/547.png b/projects/challange 8/pokedex/v2/images/547.png new file mode 100644 index 0000000..cc0c614 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/547.png differ diff --git a/projects/challange 8/pokedex/v2/images/548.png b/projects/challange 8/pokedex/v2/images/548.png new file mode 100644 index 0000000..4f02b97 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/548.png differ diff --git a/projects/challange 8/pokedex/v2/images/549.png b/projects/challange 8/pokedex/v2/images/549.png new file mode 100644 index 0000000..2bbe04e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/549.png differ diff --git a/projects/challange 8/pokedex/v2/images/55.png b/projects/challange 8/pokedex/v2/images/55.png new file mode 100644 index 0000000..b7902ec Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/55.png differ diff --git a/projects/challange 8/pokedex/v2/images/550.png b/projects/challange 8/pokedex/v2/images/550.png new file mode 100644 index 0000000..a90fb56 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/550.png differ diff --git a/projects/challange 8/pokedex/v2/images/551.png b/projects/challange 8/pokedex/v2/images/551.png new file mode 100644 index 0000000..3b6bd91 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/551.png differ diff --git a/projects/challange 8/pokedex/v2/images/552.png b/projects/challange 8/pokedex/v2/images/552.png new file mode 100644 index 0000000..10050ef Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/552.png differ diff --git a/projects/challange 8/pokedex/v2/images/553.png b/projects/challange 8/pokedex/v2/images/553.png new file mode 100644 index 0000000..73c436f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/553.png differ diff --git a/projects/challange 8/pokedex/v2/images/554.png b/projects/challange 8/pokedex/v2/images/554.png new file mode 100644 index 0000000..1fc6a7a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/554.png differ diff --git a/projects/challange 8/pokedex/v2/images/555.png b/projects/challange 8/pokedex/v2/images/555.png new file mode 100644 index 0000000..1bcc467 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/555.png differ diff --git a/projects/challange 8/pokedex/v2/images/556.png b/projects/challange 8/pokedex/v2/images/556.png new file mode 100644 index 0000000..116040d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/556.png differ diff --git a/projects/challange 8/pokedex/v2/images/557.png b/projects/challange 8/pokedex/v2/images/557.png new file mode 100644 index 0000000..9dadaaf Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/557.png differ diff --git a/projects/challange 8/pokedex/v2/images/558.png b/projects/challange 8/pokedex/v2/images/558.png new file mode 100644 index 0000000..2fb3845 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/558.png differ diff --git a/projects/challange 8/pokedex/v2/images/559.png b/projects/challange 8/pokedex/v2/images/559.png new file mode 100644 index 0000000..dde9d79 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/559.png differ diff --git a/projects/challange 8/pokedex/v2/images/56.png b/projects/challange 8/pokedex/v2/images/56.png new file mode 100644 index 0000000..82d8f0b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/56.png differ diff --git a/projects/challange 8/pokedex/v2/images/560.png b/projects/challange 8/pokedex/v2/images/560.png new file mode 100644 index 0000000..22ef579 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/560.png differ diff --git a/projects/challange 8/pokedex/v2/images/561.png b/projects/challange 8/pokedex/v2/images/561.png new file mode 100644 index 0000000..64164e9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/561.png differ diff --git a/projects/challange 8/pokedex/v2/images/562.png b/projects/challange 8/pokedex/v2/images/562.png new file mode 100644 index 0000000..167a150 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/562.png differ diff --git a/projects/challange 8/pokedex/v2/images/563.png b/projects/challange 8/pokedex/v2/images/563.png new file mode 100644 index 0000000..e0d0bcb Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/563.png differ diff --git a/projects/challange 8/pokedex/v2/images/564.png b/projects/challange 8/pokedex/v2/images/564.png new file mode 100644 index 0000000..5375212 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/564.png differ diff --git a/projects/challange 8/pokedex/v2/images/565.png b/projects/challange 8/pokedex/v2/images/565.png new file mode 100644 index 0000000..71ccaa8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/565.png differ diff --git a/projects/challange 8/pokedex/v2/images/566.png b/projects/challange 8/pokedex/v2/images/566.png new file mode 100644 index 0000000..4f2dc85 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/566.png differ diff --git a/projects/challange 8/pokedex/v2/images/567.png b/projects/challange 8/pokedex/v2/images/567.png new file mode 100644 index 0000000..e35e691 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/567.png differ diff --git a/projects/challange 8/pokedex/v2/images/568.png b/projects/challange 8/pokedex/v2/images/568.png new file mode 100644 index 0000000..4bc5b2f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/568.png differ diff --git a/projects/challange 8/pokedex/v2/images/569.png b/projects/challange 8/pokedex/v2/images/569.png new file mode 100644 index 0000000..8c77c08 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/569.png differ diff --git a/projects/challange 8/pokedex/v2/images/57.png b/projects/challange 8/pokedex/v2/images/57.png new file mode 100644 index 0000000..b145174 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/57.png differ diff --git a/projects/challange 8/pokedex/v2/images/570.png b/projects/challange 8/pokedex/v2/images/570.png new file mode 100644 index 0000000..a6364b8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/570.png differ diff --git a/projects/challange 8/pokedex/v2/images/571.png b/projects/challange 8/pokedex/v2/images/571.png new file mode 100644 index 0000000..a001edb Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/571.png differ diff --git a/projects/challange 8/pokedex/v2/images/572.png b/projects/challange 8/pokedex/v2/images/572.png new file mode 100644 index 0000000..ced0f45 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/572.png differ diff --git a/projects/challange 8/pokedex/v2/images/573.png b/projects/challange 8/pokedex/v2/images/573.png new file mode 100644 index 0000000..370868c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/573.png differ diff --git a/projects/challange 8/pokedex/v2/images/574.png b/projects/challange 8/pokedex/v2/images/574.png new file mode 100644 index 0000000..c6b07c8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/574.png differ diff --git a/projects/challange 8/pokedex/v2/images/575.png b/projects/challange 8/pokedex/v2/images/575.png new file mode 100644 index 0000000..1f542cd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/575.png differ diff --git a/projects/challange 8/pokedex/v2/images/576.png b/projects/challange 8/pokedex/v2/images/576.png new file mode 100644 index 0000000..7c0d5f0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/576.png differ diff --git a/projects/challange 8/pokedex/v2/images/577.png b/projects/challange 8/pokedex/v2/images/577.png new file mode 100644 index 0000000..7f86d14 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/577.png differ diff --git a/projects/challange 8/pokedex/v2/images/578.png b/projects/challange 8/pokedex/v2/images/578.png new file mode 100644 index 0000000..53170cf Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/578.png differ diff --git a/projects/challange 8/pokedex/v2/images/579.png b/projects/challange 8/pokedex/v2/images/579.png new file mode 100644 index 0000000..3b344f9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/579.png differ diff --git a/projects/challange 8/pokedex/v2/images/58.png b/projects/challange 8/pokedex/v2/images/58.png new file mode 100644 index 0000000..3f2a0b4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/58.png differ diff --git a/projects/challange 8/pokedex/v2/images/580.png b/projects/challange 8/pokedex/v2/images/580.png new file mode 100644 index 0000000..9efa4aa Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/580.png differ diff --git a/projects/challange 8/pokedex/v2/images/581.png b/projects/challange 8/pokedex/v2/images/581.png new file mode 100644 index 0000000..86e653a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/581.png differ diff --git a/projects/challange 8/pokedex/v2/images/582.png b/projects/challange 8/pokedex/v2/images/582.png new file mode 100644 index 0000000..f0dc3fc Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/582.png differ diff --git a/projects/challange 8/pokedex/v2/images/583.png b/projects/challange 8/pokedex/v2/images/583.png new file mode 100644 index 0000000..dfbfbf1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/583.png differ diff --git a/projects/challange 8/pokedex/v2/images/584.png b/projects/challange 8/pokedex/v2/images/584.png new file mode 100644 index 0000000..2d1e7b8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/584.png differ diff --git a/projects/challange 8/pokedex/v2/images/585.png b/projects/challange 8/pokedex/v2/images/585.png new file mode 100644 index 0000000..d4dfca3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/585.png differ diff --git a/projects/challange 8/pokedex/v2/images/586.png b/projects/challange 8/pokedex/v2/images/586.png new file mode 100644 index 0000000..47adfd4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/586.png differ diff --git a/projects/challange 8/pokedex/v2/images/587.png b/projects/challange 8/pokedex/v2/images/587.png new file mode 100644 index 0000000..9866eb1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/587.png differ diff --git a/projects/challange 8/pokedex/v2/images/588.png b/projects/challange 8/pokedex/v2/images/588.png new file mode 100644 index 0000000..f0728fc Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/588.png differ diff --git a/projects/challange 8/pokedex/v2/images/589.png b/projects/challange 8/pokedex/v2/images/589.png new file mode 100644 index 0000000..82cc472 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/589.png differ diff --git a/projects/challange 8/pokedex/v2/images/59.png b/projects/challange 8/pokedex/v2/images/59.png new file mode 100644 index 0000000..b35ca18 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/59.png differ diff --git a/projects/challange 8/pokedex/v2/images/590.png b/projects/challange 8/pokedex/v2/images/590.png new file mode 100644 index 0000000..c535205 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/590.png differ diff --git a/projects/challange 8/pokedex/v2/images/591.png b/projects/challange 8/pokedex/v2/images/591.png new file mode 100644 index 0000000..c7e19ef Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/591.png differ diff --git a/projects/challange 8/pokedex/v2/images/592.png b/projects/challange 8/pokedex/v2/images/592.png new file mode 100644 index 0000000..02d1e7d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/592.png differ diff --git a/projects/challange 8/pokedex/v2/images/593.png b/projects/challange 8/pokedex/v2/images/593.png new file mode 100644 index 0000000..ee5e89f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/593.png differ diff --git a/projects/challange 8/pokedex/v2/images/594.png b/projects/challange 8/pokedex/v2/images/594.png new file mode 100644 index 0000000..1237a23 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/594.png differ diff --git a/projects/challange 8/pokedex/v2/images/595.png b/projects/challange 8/pokedex/v2/images/595.png new file mode 100644 index 0000000..4f148e9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/595.png differ diff --git a/projects/challange 8/pokedex/v2/images/596.png b/projects/challange 8/pokedex/v2/images/596.png new file mode 100644 index 0000000..35efbf2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/596.png differ diff --git a/projects/challange 8/pokedex/v2/images/597.png b/projects/challange 8/pokedex/v2/images/597.png new file mode 100644 index 0000000..28f432f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/597.png differ diff --git a/projects/challange 8/pokedex/v2/images/598.png b/projects/challange 8/pokedex/v2/images/598.png new file mode 100644 index 0000000..1b5a6d5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/598.png differ diff --git a/projects/challange 8/pokedex/v2/images/599.png b/projects/challange 8/pokedex/v2/images/599.png new file mode 100644 index 0000000..5a36246 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/599.png differ diff --git a/projects/challange 8/pokedex/v2/images/6.png b/projects/challange 8/pokedex/v2/images/6.png new file mode 100644 index 0000000..4c4fb91 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/6.png differ diff --git a/projects/challange 8/pokedex/v2/images/60.png b/projects/challange 8/pokedex/v2/images/60.png new file mode 100644 index 0000000..94fc4d5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/60.png differ diff --git a/projects/challange 8/pokedex/v2/images/600.png b/projects/challange 8/pokedex/v2/images/600.png new file mode 100644 index 0000000..aa91aa2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/600.png differ diff --git a/projects/challange 8/pokedex/v2/images/601.png b/projects/challange 8/pokedex/v2/images/601.png new file mode 100644 index 0000000..c6cabda Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/601.png differ diff --git a/projects/challange 8/pokedex/v2/images/602.png b/projects/challange 8/pokedex/v2/images/602.png new file mode 100644 index 0000000..464e90f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/602.png differ diff --git a/projects/challange 8/pokedex/v2/images/603.png b/projects/challange 8/pokedex/v2/images/603.png new file mode 100644 index 0000000..beada2d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/603.png differ diff --git a/projects/challange 8/pokedex/v2/images/604.png b/projects/challange 8/pokedex/v2/images/604.png new file mode 100644 index 0000000..ecafd74 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/604.png differ diff --git a/projects/challange 8/pokedex/v2/images/605.png b/projects/challange 8/pokedex/v2/images/605.png new file mode 100644 index 0000000..eae13fa Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/605.png differ diff --git a/projects/challange 8/pokedex/v2/images/606.png b/projects/challange 8/pokedex/v2/images/606.png new file mode 100644 index 0000000..69d8fa8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/606.png differ diff --git a/projects/challange 8/pokedex/v2/images/607.png b/projects/challange 8/pokedex/v2/images/607.png new file mode 100644 index 0000000..f875825 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/607.png differ diff --git a/projects/challange 8/pokedex/v2/images/608.png b/projects/challange 8/pokedex/v2/images/608.png new file mode 100644 index 0000000..45c3040 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/608.png differ diff --git a/projects/challange 8/pokedex/v2/images/609.png b/projects/challange 8/pokedex/v2/images/609.png new file mode 100644 index 0000000..7fe41dd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/609.png differ diff --git a/projects/challange 8/pokedex/v2/images/61.png b/projects/challange 8/pokedex/v2/images/61.png new file mode 100644 index 0000000..b0bb7b4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/61.png differ diff --git a/projects/challange 8/pokedex/v2/images/610.png b/projects/challange 8/pokedex/v2/images/610.png new file mode 100644 index 0000000..2a04b11 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/610.png differ diff --git a/projects/challange 8/pokedex/v2/images/611.png b/projects/challange 8/pokedex/v2/images/611.png new file mode 100644 index 0000000..0f6195f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/611.png differ diff --git a/projects/challange 8/pokedex/v2/images/612.png b/projects/challange 8/pokedex/v2/images/612.png new file mode 100644 index 0000000..51f5b2c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/612.png differ diff --git a/projects/challange 8/pokedex/v2/images/613.png b/projects/challange 8/pokedex/v2/images/613.png new file mode 100644 index 0000000..608cc87 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/613.png differ diff --git a/projects/challange 8/pokedex/v2/images/614.png b/projects/challange 8/pokedex/v2/images/614.png new file mode 100644 index 0000000..a207e14 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/614.png differ diff --git a/projects/challange 8/pokedex/v2/images/615.png b/projects/challange 8/pokedex/v2/images/615.png new file mode 100644 index 0000000..719b373 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/615.png differ diff --git a/projects/challange 8/pokedex/v2/images/616.png b/projects/challange 8/pokedex/v2/images/616.png new file mode 100644 index 0000000..eb5eeaf Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/616.png differ diff --git a/projects/challange 8/pokedex/v2/images/617.png b/projects/challange 8/pokedex/v2/images/617.png new file mode 100644 index 0000000..5013562 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/617.png differ diff --git a/projects/challange 8/pokedex/v2/images/618.png b/projects/challange 8/pokedex/v2/images/618.png new file mode 100644 index 0000000..580fd7e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/618.png differ diff --git a/projects/challange 8/pokedex/v2/images/619.png b/projects/challange 8/pokedex/v2/images/619.png new file mode 100644 index 0000000..f9700ca Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/619.png differ diff --git a/projects/challange 8/pokedex/v2/images/62.png b/projects/challange 8/pokedex/v2/images/62.png new file mode 100644 index 0000000..4b695f3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/62.png differ diff --git a/projects/challange 8/pokedex/v2/images/620.png b/projects/challange 8/pokedex/v2/images/620.png new file mode 100644 index 0000000..aa76540 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/620.png differ diff --git a/projects/challange 8/pokedex/v2/images/621.png b/projects/challange 8/pokedex/v2/images/621.png new file mode 100644 index 0000000..80fee6b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/621.png differ diff --git a/projects/challange 8/pokedex/v2/images/622.png b/projects/challange 8/pokedex/v2/images/622.png new file mode 100644 index 0000000..c72e2c5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/622.png differ diff --git a/projects/challange 8/pokedex/v2/images/623.png b/projects/challange 8/pokedex/v2/images/623.png new file mode 100644 index 0000000..1846c4a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/623.png differ diff --git a/projects/challange 8/pokedex/v2/images/624.png b/projects/challange 8/pokedex/v2/images/624.png new file mode 100644 index 0000000..7441070 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/624.png differ diff --git a/projects/challange 8/pokedex/v2/images/625.png b/projects/challange 8/pokedex/v2/images/625.png new file mode 100644 index 0000000..e565a1f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/625.png differ diff --git a/projects/challange 8/pokedex/v2/images/626.png b/projects/challange 8/pokedex/v2/images/626.png new file mode 100644 index 0000000..c1e6cad Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/626.png differ diff --git a/projects/challange 8/pokedex/v2/images/627.png b/projects/challange 8/pokedex/v2/images/627.png new file mode 100644 index 0000000..5ea22df Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/627.png differ diff --git a/projects/challange 8/pokedex/v2/images/628.png b/projects/challange 8/pokedex/v2/images/628.png new file mode 100644 index 0000000..211dbf7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/628.png differ diff --git a/projects/challange 8/pokedex/v2/images/629.png b/projects/challange 8/pokedex/v2/images/629.png new file mode 100644 index 0000000..f182704 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/629.png differ diff --git a/projects/challange 8/pokedex/v2/images/63.png b/projects/challange 8/pokedex/v2/images/63.png new file mode 100644 index 0000000..928924a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/63.png differ diff --git a/projects/challange 8/pokedex/v2/images/630.png b/projects/challange 8/pokedex/v2/images/630.png new file mode 100644 index 0000000..9588819 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/630.png differ diff --git a/projects/challange 8/pokedex/v2/images/631.png b/projects/challange 8/pokedex/v2/images/631.png new file mode 100644 index 0000000..0345a35 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/631.png differ diff --git a/projects/challange 8/pokedex/v2/images/632.png b/projects/challange 8/pokedex/v2/images/632.png new file mode 100644 index 0000000..686291d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/632.png differ diff --git a/projects/challange 8/pokedex/v2/images/633.png b/projects/challange 8/pokedex/v2/images/633.png new file mode 100644 index 0000000..f9fcae8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/633.png differ diff --git a/projects/challange 8/pokedex/v2/images/634.png b/projects/challange 8/pokedex/v2/images/634.png new file mode 100644 index 0000000..6f0557c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/634.png differ diff --git a/projects/challange 8/pokedex/v2/images/635.png b/projects/challange 8/pokedex/v2/images/635.png new file mode 100644 index 0000000..cabf320 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/635.png differ diff --git a/projects/challange 8/pokedex/v2/images/636.png b/projects/challange 8/pokedex/v2/images/636.png new file mode 100644 index 0000000..eefa694 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/636.png differ diff --git a/projects/challange 8/pokedex/v2/images/637.png b/projects/challange 8/pokedex/v2/images/637.png new file mode 100644 index 0000000..6f1a128 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/637.png differ diff --git a/projects/challange 8/pokedex/v2/images/638.png b/projects/challange 8/pokedex/v2/images/638.png new file mode 100644 index 0000000..4cb5e3c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/638.png differ diff --git a/projects/challange 8/pokedex/v2/images/639.png b/projects/challange 8/pokedex/v2/images/639.png new file mode 100644 index 0000000..3c55703 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/639.png differ diff --git a/projects/challange 8/pokedex/v2/images/64.png b/projects/challange 8/pokedex/v2/images/64.png new file mode 100644 index 0000000..2b7b5e8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/64.png differ diff --git a/projects/challange 8/pokedex/v2/images/640.png b/projects/challange 8/pokedex/v2/images/640.png new file mode 100644 index 0000000..33a1992 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/640.png differ diff --git a/projects/challange 8/pokedex/v2/images/641.png b/projects/challange 8/pokedex/v2/images/641.png new file mode 100644 index 0000000..419f74e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/641.png differ diff --git a/projects/challange 8/pokedex/v2/images/642.png b/projects/challange 8/pokedex/v2/images/642.png new file mode 100644 index 0000000..5a8e8f3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/642.png differ diff --git a/projects/challange 8/pokedex/v2/images/643.png b/projects/challange 8/pokedex/v2/images/643.png new file mode 100644 index 0000000..78d02c8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/643.png differ diff --git a/projects/challange 8/pokedex/v2/images/644.png b/projects/challange 8/pokedex/v2/images/644.png new file mode 100644 index 0000000..af2bf98 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/644.png differ diff --git a/projects/challange 8/pokedex/v2/images/645.png b/projects/challange 8/pokedex/v2/images/645.png new file mode 100644 index 0000000..8d7aece Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/645.png differ diff --git a/projects/challange 8/pokedex/v2/images/646.png b/projects/challange 8/pokedex/v2/images/646.png new file mode 100644 index 0000000..fcd439a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/646.png differ diff --git a/projects/challange 8/pokedex/v2/images/647.png b/projects/challange 8/pokedex/v2/images/647.png new file mode 100644 index 0000000..4402f11 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/647.png differ diff --git a/projects/challange 8/pokedex/v2/images/648.png b/projects/challange 8/pokedex/v2/images/648.png new file mode 100644 index 0000000..470e63d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/648.png differ diff --git a/projects/challange 8/pokedex/v2/images/649.png b/projects/challange 8/pokedex/v2/images/649.png new file mode 100644 index 0000000..c3b26d2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/649.png differ diff --git a/projects/challange 8/pokedex/v2/images/65.png b/projects/challange 8/pokedex/v2/images/65.png new file mode 100644 index 0000000..24dcf83 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/65.png differ diff --git a/projects/challange 8/pokedex/v2/images/650.png b/projects/challange 8/pokedex/v2/images/650.png new file mode 100644 index 0000000..21d2781 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/650.png differ diff --git a/projects/challange 8/pokedex/v2/images/651.png b/projects/challange 8/pokedex/v2/images/651.png new file mode 100644 index 0000000..78eab17 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/651.png differ diff --git a/projects/challange 8/pokedex/v2/images/652.png b/projects/challange 8/pokedex/v2/images/652.png new file mode 100644 index 0000000..aecebf5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/652.png differ diff --git a/projects/challange 8/pokedex/v2/images/653.png b/projects/challange 8/pokedex/v2/images/653.png new file mode 100644 index 0000000..a20b8e7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/653.png differ diff --git a/projects/challange 8/pokedex/v2/images/654.png b/projects/challange 8/pokedex/v2/images/654.png new file mode 100644 index 0000000..991201d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/654.png differ diff --git a/projects/challange 8/pokedex/v2/images/655.png b/projects/challange 8/pokedex/v2/images/655.png new file mode 100644 index 0000000..6b5016f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/655.png differ diff --git a/projects/challange 8/pokedex/v2/images/656.png b/projects/challange 8/pokedex/v2/images/656.png new file mode 100644 index 0000000..58bba96 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/656.png differ diff --git a/projects/challange 8/pokedex/v2/images/657.png b/projects/challange 8/pokedex/v2/images/657.png new file mode 100644 index 0000000..3cb82c1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/657.png differ diff --git a/projects/challange 8/pokedex/v2/images/658.png b/projects/challange 8/pokedex/v2/images/658.png new file mode 100644 index 0000000..709af93 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/658.png differ diff --git a/projects/challange 8/pokedex/v2/images/659.png b/projects/challange 8/pokedex/v2/images/659.png new file mode 100644 index 0000000..c009aa8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/659.png differ diff --git a/projects/challange 8/pokedex/v2/images/66.png b/projects/challange 8/pokedex/v2/images/66.png new file mode 100644 index 0000000..ce89c88 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/66.png differ diff --git a/projects/challange 8/pokedex/v2/images/660.png b/projects/challange 8/pokedex/v2/images/660.png new file mode 100644 index 0000000..69e36a0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/660.png differ diff --git a/projects/challange 8/pokedex/v2/images/661.png b/projects/challange 8/pokedex/v2/images/661.png new file mode 100644 index 0000000..148234e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/661.png differ diff --git a/projects/challange 8/pokedex/v2/images/662.png b/projects/challange 8/pokedex/v2/images/662.png new file mode 100644 index 0000000..1c8b917 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/662.png differ diff --git a/projects/challange 8/pokedex/v2/images/663.png b/projects/challange 8/pokedex/v2/images/663.png new file mode 100644 index 0000000..43e56ab Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/663.png differ diff --git a/projects/challange 8/pokedex/v2/images/664.png b/projects/challange 8/pokedex/v2/images/664.png new file mode 100644 index 0000000..f2c9599 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/664.png differ diff --git a/projects/challange 8/pokedex/v2/images/665.png b/projects/challange 8/pokedex/v2/images/665.png new file mode 100644 index 0000000..e58f28c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/665.png differ diff --git a/projects/challange 8/pokedex/v2/images/666.png b/projects/challange 8/pokedex/v2/images/666.png new file mode 100644 index 0000000..4cdc975 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/666.png differ diff --git a/projects/challange 8/pokedex/v2/images/667.png b/projects/challange 8/pokedex/v2/images/667.png new file mode 100644 index 0000000..a553420 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/667.png differ diff --git a/projects/challange 8/pokedex/v2/images/668.png b/projects/challange 8/pokedex/v2/images/668.png new file mode 100644 index 0000000..4e7b04c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/668.png differ diff --git a/projects/challange 8/pokedex/v2/images/669.png b/projects/challange 8/pokedex/v2/images/669.png new file mode 100644 index 0000000..b5a5db5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/669.png differ diff --git a/projects/challange 8/pokedex/v2/images/67.png b/projects/challange 8/pokedex/v2/images/67.png new file mode 100644 index 0000000..4b495de Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/67.png differ diff --git a/projects/challange 8/pokedex/v2/images/670.png b/projects/challange 8/pokedex/v2/images/670.png new file mode 100644 index 0000000..68bbdd1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/670.png differ diff --git a/projects/challange 8/pokedex/v2/images/671.png b/projects/challange 8/pokedex/v2/images/671.png new file mode 100644 index 0000000..a5ec5a0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/671.png differ diff --git a/projects/challange 8/pokedex/v2/images/672.png b/projects/challange 8/pokedex/v2/images/672.png new file mode 100644 index 0000000..95838a5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/672.png differ diff --git a/projects/challange 8/pokedex/v2/images/673.png b/projects/challange 8/pokedex/v2/images/673.png new file mode 100644 index 0000000..ab9bea6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/673.png differ diff --git a/projects/challange 8/pokedex/v2/images/674.png b/projects/challange 8/pokedex/v2/images/674.png new file mode 100644 index 0000000..9f91a8a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/674.png differ diff --git a/projects/challange 8/pokedex/v2/images/675.png b/projects/challange 8/pokedex/v2/images/675.png new file mode 100644 index 0000000..9d4748c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/675.png differ diff --git a/projects/challange 8/pokedex/v2/images/676.png b/projects/challange 8/pokedex/v2/images/676.png new file mode 100644 index 0000000..a8e14c1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/676.png differ diff --git a/projects/challange 8/pokedex/v2/images/677.png b/projects/challange 8/pokedex/v2/images/677.png new file mode 100644 index 0000000..ae0f7eb Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/677.png differ diff --git a/projects/challange 8/pokedex/v2/images/678.png b/projects/challange 8/pokedex/v2/images/678.png new file mode 100644 index 0000000..f894f75 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/678.png differ diff --git a/projects/challange 8/pokedex/v2/images/679.png b/projects/challange 8/pokedex/v2/images/679.png new file mode 100644 index 0000000..7f017d8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/679.png differ diff --git a/projects/challange 8/pokedex/v2/images/68.png b/projects/challange 8/pokedex/v2/images/68.png new file mode 100644 index 0000000..4adb2ce Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/68.png differ diff --git a/projects/challange 8/pokedex/v2/images/680.png b/projects/challange 8/pokedex/v2/images/680.png new file mode 100644 index 0000000..2aa5075 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/680.png differ diff --git a/projects/challange 8/pokedex/v2/images/681.png b/projects/challange 8/pokedex/v2/images/681.png new file mode 100644 index 0000000..43da47f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/681.png differ diff --git a/projects/challange 8/pokedex/v2/images/682.png b/projects/challange 8/pokedex/v2/images/682.png new file mode 100644 index 0000000..88bbaa0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/682.png differ diff --git a/projects/challange 8/pokedex/v2/images/683.png b/projects/challange 8/pokedex/v2/images/683.png new file mode 100644 index 0000000..8e0bd7a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/683.png differ diff --git a/projects/challange 8/pokedex/v2/images/684.png b/projects/challange 8/pokedex/v2/images/684.png new file mode 100644 index 0000000..25bf15d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/684.png differ diff --git a/projects/challange 8/pokedex/v2/images/685.png b/projects/challange 8/pokedex/v2/images/685.png new file mode 100644 index 0000000..9d50cd3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/685.png differ diff --git a/projects/challange 8/pokedex/v2/images/686.png b/projects/challange 8/pokedex/v2/images/686.png new file mode 100644 index 0000000..a7d7a0f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/686.png differ diff --git a/projects/challange 8/pokedex/v2/images/687.png b/projects/challange 8/pokedex/v2/images/687.png new file mode 100644 index 0000000..26184db Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/687.png differ diff --git a/projects/challange 8/pokedex/v2/images/688.png b/projects/challange 8/pokedex/v2/images/688.png new file mode 100644 index 0000000..9d2bb73 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/688.png differ diff --git a/projects/challange 8/pokedex/v2/images/689.png b/projects/challange 8/pokedex/v2/images/689.png new file mode 100644 index 0000000..d918592 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/689.png differ diff --git a/projects/challange 8/pokedex/v2/images/69.png b/projects/challange 8/pokedex/v2/images/69.png new file mode 100644 index 0000000..4d28341 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/69.png differ diff --git a/projects/challange 8/pokedex/v2/images/690.png b/projects/challange 8/pokedex/v2/images/690.png new file mode 100644 index 0000000..4e30493 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/690.png differ diff --git a/projects/challange 8/pokedex/v2/images/691.png b/projects/challange 8/pokedex/v2/images/691.png new file mode 100644 index 0000000..01ad6a2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/691.png differ diff --git a/projects/challange 8/pokedex/v2/images/692.png b/projects/challange 8/pokedex/v2/images/692.png new file mode 100644 index 0000000..da33486 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/692.png differ diff --git a/projects/challange 8/pokedex/v2/images/693.png b/projects/challange 8/pokedex/v2/images/693.png new file mode 100644 index 0000000..949d857 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/693.png differ diff --git a/projects/challange 8/pokedex/v2/images/694.png b/projects/challange 8/pokedex/v2/images/694.png new file mode 100644 index 0000000..5a22071 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/694.png differ diff --git a/projects/challange 8/pokedex/v2/images/695.png b/projects/challange 8/pokedex/v2/images/695.png new file mode 100644 index 0000000..c7a164d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/695.png differ diff --git a/projects/challange 8/pokedex/v2/images/696.png b/projects/challange 8/pokedex/v2/images/696.png new file mode 100644 index 0000000..9ad1ff4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/696.png differ diff --git a/projects/challange 8/pokedex/v2/images/697.png b/projects/challange 8/pokedex/v2/images/697.png new file mode 100644 index 0000000..49f9624 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/697.png differ diff --git a/projects/challange 8/pokedex/v2/images/698.png b/projects/challange 8/pokedex/v2/images/698.png new file mode 100644 index 0000000..59bc0c7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/698.png differ diff --git a/projects/challange 8/pokedex/v2/images/699.png b/projects/challange 8/pokedex/v2/images/699.png new file mode 100644 index 0000000..88acd4b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/699.png differ diff --git a/projects/challange 8/pokedex/v2/images/7.png b/projects/challange 8/pokedex/v2/images/7.png new file mode 100644 index 0000000..299b74d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/7.png differ diff --git a/projects/challange 8/pokedex/v2/images/70.png b/projects/challange 8/pokedex/v2/images/70.png new file mode 100644 index 0000000..86606fe Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/70.png differ diff --git a/projects/challange 8/pokedex/v2/images/700.png b/projects/challange 8/pokedex/v2/images/700.png new file mode 100644 index 0000000..75a355d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/700.png differ diff --git a/projects/challange 8/pokedex/v2/images/701.png b/projects/challange 8/pokedex/v2/images/701.png new file mode 100644 index 0000000..b54100e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/701.png differ diff --git a/projects/challange 8/pokedex/v2/images/702.png b/projects/challange 8/pokedex/v2/images/702.png new file mode 100644 index 0000000..f62a9a4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/702.png differ diff --git a/projects/challange 8/pokedex/v2/images/703.png b/projects/challange 8/pokedex/v2/images/703.png new file mode 100644 index 0000000..c516925 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/703.png differ diff --git a/projects/challange 8/pokedex/v2/images/704.png b/projects/challange 8/pokedex/v2/images/704.png new file mode 100644 index 0000000..fee5bb2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/704.png differ diff --git a/projects/challange 8/pokedex/v2/images/705.png b/projects/challange 8/pokedex/v2/images/705.png new file mode 100644 index 0000000..33f1e61 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/705.png differ diff --git a/projects/challange 8/pokedex/v2/images/706.png b/projects/challange 8/pokedex/v2/images/706.png new file mode 100644 index 0000000..da62b85 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/706.png differ diff --git a/projects/challange 8/pokedex/v2/images/707.png b/projects/challange 8/pokedex/v2/images/707.png new file mode 100644 index 0000000..65e0b41 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/707.png differ diff --git a/projects/challange 8/pokedex/v2/images/708.png b/projects/challange 8/pokedex/v2/images/708.png new file mode 100644 index 0000000..7430601 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/708.png differ diff --git a/projects/challange 8/pokedex/v2/images/709.png b/projects/challange 8/pokedex/v2/images/709.png new file mode 100644 index 0000000..e456a75 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/709.png differ diff --git a/projects/challange 8/pokedex/v2/images/71.png b/projects/challange 8/pokedex/v2/images/71.png new file mode 100644 index 0000000..acc4b65 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/71.png differ diff --git a/projects/challange 8/pokedex/v2/images/710.png b/projects/challange 8/pokedex/v2/images/710.png new file mode 100644 index 0000000..cf8bb22 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/710.png differ diff --git a/projects/challange 8/pokedex/v2/images/711.png b/projects/challange 8/pokedex/v2/images/711.png new file mode 100644 index 0000000..dceb21d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/711.png differ diff --git a/projects/challange 8/pokedex/v2/images/712.png b/projects/challange 8/pokedex/v2/images/712.png new file mode 100644 index 0000000..613b75f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/712.png differ diff --git a/projects/challange 8/pokedex/v2/images/713.png b/projects/challange 8/pokedex/v2/images/713.png new file mode 100644 index 0000000..fcf4bcd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/713.png differ diff --git a/projects/challange 8/pokedex/v2/images/714.png b/projects/challange 8/pokedex/v2/images/714.png new file mode 100644 index 0000000..fecd726 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/714.png differ diff --git a/projects/challange 8/pokedex/v2/images/715.png b/projects/challange 8/pokedex/v2/images/715.png new file mode 100644 index 0000000..db624d3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/715.png differ diff --git a/projects/challange 8/pokedex/v2/images/716.png b/projects/challange 8/pokedex/v2/images/716.png new file mode 100644 index 0000000..8dcb0b4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/716.png differ diff --git a/projects/challange 8/pokedex/v2/images/717.png b/projects/challange 8/pokedex/v2/images/717.png new file mode 100644 index 0000000..65d9209 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/717.png differ diff --git a/projects/challange 8/pokedex/v2/images/718.png b/projects/challange 8/pokedex/v2/images/718.png new file mode 100644 index 0000000..27b726b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/718.png differ diff --git a/projects/challange 8/pokedex/v2/images/719.png b/projects/challange 8/pokedex/v2/images/719.png new file mode 100644 index 0000000..c7a3fc4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/719.png differ diff --git a/projects/challange 8/pokedex/v2/images/72.png b/projects/challange 8/pokedex/v2/images/72.png new file mode 100644 index 0000000..cb4a923 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/72.png differ diff --git a/projects/challange 8/pokedex/v2/images/720.png b/projects/challange 8/pokedex/v2/images/720.png new file mode 100644 index 0000000..ecf6a42 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/720.png differ diff --git a/projects/challange 8/pokedex/v2/images/721.png b/projects/challange 8/pokedex/v2/images/721.png new file mode 100644 index 0000000..f8b6bc3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/721.png differ diff --git a/projects/challange 8/pokedex/v2/images/722.png b/projects/challange 8/pokedex/v2/images/722.png new file mode 100644 index 0000000..4a538e1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/722.png differ diff --git a/projects/challange 8/pokedex/v2/images/723.png b/projects/challange 8/pokedex/v2/images/723.png new file mode 100644 index 0000000..4bd99ee Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/723.png differ diff --git a/projects/challange 8/pokedex/v2/images/724.png b/projects/challange 8/pokedex/v2/images/724.png new file mode 100644 index 0000000..9fcd0cb Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/724.png differ diff --git a/projects/challange 8/pokedex/v2/images/725.png b/projects/challange 8/pokedex/v2/images/725.png new file mode 100644 index 0000000..95ab1f9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/725.png differ diff --git a/projects/challange 8/pokedex/v2/images/726.png b/projects/challange 8/pokedex/v2/images/726.png new file mode 100644 index 0000000..74cd5b0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/726.png differ diff --git a/projects/challange 8/pokedex/v2/images/727.png b/projects/challange 8/pokedex/v2/images/727.png new file mode 100644 index 0000000..54b9cb8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/727.png differ diff --git a/projects/challange 8/pokedex/v2/images/728.png b/projects/challange 8/pokedex/v2/images/728.png new file mode 100644 index 0000000..a9a980f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/728.png differ diff --git a/projects/challange 8/pokedex/v2/images/729.png b/projects/challange 8/pokedex/v2/images/729.png new file mode 100644 index 0000000..5d8274b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/729.png differ diff --git a/projects/challange 8/pokedex/v2/images/73.png b/projects/challange 8/pokedex/v2/images/73.png new file mode 100644 index 0000000..df4d060 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/73.png differ diff --git a/projects/challange 8/pokedex/v2/images/730.png b/projects/challange 8/pokedex/v2/images/730.png new file mode 100644 index 0000000..cc69b40 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/730.png differ diff --git a/projects/challange 8/pokedex/v2/images/731.png b/projects/challange 8/pokedex/v2/images/731.png new file mode 100644 index 0000000..e12e39c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/731.png differ diff --git a/projects/challange 8/pokedex/v2/images/732.png b/projects/challange 8/pokedex/v2/images/732.png new file mode 100644 index 0000000..62224d6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/732.png differ diff --git a/projects/challange 8/pokedex/v2/images/733.png b/projects/challange 8/pokedex/v2/images/733.png new file mode 100644 index 0000000..0a9e84d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/733.png differ diff --git a/projects/challange 8/pokedex/v2/images/734.png b/projects/challange 8/pokedex/v2/images/734.png new file mode 100644 index 0000000..c6a9061 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/734.png differ diff --git a/projects/challange 8/pokedex/v2/images/735.png b/projects/challange 8/pokedex/v2/images/735.png new file mode 100644 index 0000000..98c181a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/735.png differ diff --git a/projects/challange 8/pokedex/v2/images/736.png b/projects/challange 8/pokedex/v2/images/736.png new file mode 100644 index 0000000..e55cddd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/736.png differ diff --git a/projects/challange 8/pokedex/v2/images/737.png b/projects/challange 8/pokedex/v2/images/737.png new file mode 100644 index 0000000..9502905 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/737.png differ diff --git a/projects/challange 8/pokedex/v2/images/738.png b/projects/challange 8/pokedex/v2/images/738.png new file mode 100644 index 0000000..ccf4532 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/738.png differ diff --git a/projects/challange 8/pokedex/v2/images/739.png b/projects/challange 8/pokedex/v2/images/739.png new file mode 100644 index 0000000..858e346 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/739.png differ diff --git a/projects/challange 8/pokedex/v2/images/74.png b/projects/challange 8/pokedex/v2/images/74.png new file mode 100644 index 0000000..eb2b09b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/74.png differ diff --git a/projects/challange 8/pokedex/v2/images/740.png b/projects/challange 8/pokedex/v2/images/740.png new file mode 100644 index 0000000..9a7a547 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/740.png differ diff --git a/projects/challange 8/pokedex/v2/images/741.png b/projects/challange 8/pokedex/v2/images/741.png new file mode 100644 index 0000000..4be7e43 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/741.png differ diff --git a/projects/challange 8/pokedex/v2/images/742.png b/projects/challange 8/pokedex/v2/images/742.png new file mode 100644 index 0000000..6f98148 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/742.png differ diff --git a/projects/challange 8/pokedex/v2/images/743.png b/projects/challange 8/pokedex/v2/images/743.png new file mode 100644 index 0000000..18e99c8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/743.png differ diff --git a/projects/challange 8/pokedex/v2/images/744.png b/projects/challange 8/pokedex/v2/images/744.png new file mode 100644 index 0000000..3ff7ca5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/744.png differ diff --git a/projects/challange 8/pokedex/v2/images/745.png b/projects/challange 8/pokedex/v2/images/745.png new file mode 100644 index 0000000..d178916 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/745.png differ diff --git a/projects/challange 8/pokedex/v2/images/746.png b/projects/challange 8/pokedex/v2/images/746.png new file mode 100644 index 0000000..baccae1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/746.png differ diff --git a/projects/challange 8/pokedex/v2/images/747.png b/projects/challange 8/pokedex/v2/images/747.png new file mode 100644 index 0000000..c165bc4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/747.png differ diff --git a/projects/challange 8/pokedex/v2/images/748.png b/projects/challange 8/pokedex/v2/images/748.png new file mode 100644 index 0000000..c4753fc Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/748.png differ diff --git a/projects/challange 8/pokedex/v2/images/749.png b/projects/challange 8/pokedex/v2/images/749.png new file mode 100644 index 0000000..1835458 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/749.png differ diff --git a/projects/challange 8/pokedex/v2/images/75.png b/projects/challange 8/pokedex/v2/images/75.png new file mode 100644 index 0000000..2cca0d3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/75.png differ diff --git a/projects/challange 8/pokedex/v2/images/750.png b/projects/challange 8/pokedex/v2/images/750.png new file mode 100644 index 0000000..f662c3c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/750.png differ diff --git a/projects/challange 8/pokedex/v2/images/751.png b/projects/challange 8/pokedex/v2/images/751.png new file mode 100644 index 0000000..d270868 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/751.png differ diff --git a/projects/challange 8/pokedex/v2/images/752.png b/projects/challange 8/pokedex/v2/images/752.png new file mode 100644 index 0000000..e985ee5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/752.png differ diff --git a/projects/challange 8/pokedex/v2/images/753.png b/projects/challange 8/pokedex/v2/images/753.png new file mode 100644 index 0000000..f064727 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/753.png differ diff --git a/projects/challange 8/pokedex/v2/images/754.png b/projects/challange 8/pokedex/v2/images/754.png new file mode 100644 index 0000000..cc90fd1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/754.png differ diff --git a/projects/challange 8/pokedex/v2/images/755.png b/projects/challange 8/pokedex/v2/images/755.png new file mode 100644 index 0000000..eb2ce3b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/755.png differ diff --git a/projects/challange 8/pokedex/v2/images/756.png b/projects/challange 8/pokedex/v2/images/756.png new file mode 100644 index 0000000..551b8b7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/756.png differ diff --git a/projects/challange 8/pokedex/v2/images/757.png b/projects/challange 8/pokedex/v2/images/757.png new file mode 100644 index 0000000..40b941f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/757.png differ diff --git a/projects/challange 8/pokedex/v2/images/758.png b/projects/challange 8/pokedex/v2/images/758.png new file mode 100644 index 0000000..6b0b464 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/758.png differ diff --git a/projects/challange 8/pokedex/v2/images/759.png b/projects/challange 8/pokedex/v2/images/759.png new file mode 100644 index 0000000..92661e4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/759.png differ diff --git a/projects/challange 8/pokedex/v2/images/76.png b/projects/challange 8/pokedex/v2/images/76.png new file mode 100644 index 0000000..cb2d769 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/76.png differ diff --git a/projects/challange 8/pokedex/v2/images/760.png b/projects/challange 8/pokedex/v2/images/760.png new file mode 100644 index 0000000..96510d3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/760.png differ diff --git a/projects/challange 8/pokedex/v2/images/761.png b/projects/challange 8/pokedex/v2/images/761.png new file mode 100644 index 0000000..d09ea50 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/761.png differ diff --git a/projects/challange 8/pokedex/v2/images/762.png b/projects/challange 8/pokedex/v2/images/762.png new file mode 100644 index 0000000..fc81719 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/762.png differ diff --git a/projects/challange 8/pokedex/v2/images/763.png b/projects/challange 8/pokedex/v2/images/763.png new file mode 100644 index 0000000..4af5722 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/763.png differ diff --git a/projects/challange 8/pokedex/v2/images/764.png b/projects/challange 8/pokedex/v2/images/764.png new file mode 100644 index 0000000..7f5edf8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/764.png differ diff --git a/projects/challange 8/pokedex/v2/images/765.png b/projects/challange 8/pokedex/v2/images/765.png new file mode 100644 index 0000000..6af0edd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/765.png differ diff --git a/projects/challange 8/pokedex/v2/images/766.png b/projects/challange 8/pokedex/v2/images/766.png new file mode 100644 index 0000000..d371e13 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/766.png differ diff --git a/projects/challange 8/pokedex/v2/images/767.png b/projects/challange 8/pokedex/v2/images/767.png new file mode 100644 index 0000000..f156ea6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/767.png differ diff --git a/projects/challange 8/pokedex/v2/images/768.png b/projects/challange 8/pokedex/v2/images/768.png new file mode 100644 index 0000000..ff5be85 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/768.png differ diff --git a/projects/challange 8/pokedex/v2/images/769.png b/projects/challange 8/pokedex/v2/images/769.png new file mode 100644 index 0000000..c627cac Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/769.png differ diff --git a/projects/challange 8/pokedex/v2/images/77.png b/projects/challange 8/pokedex/v2/images/77.png new file mode 100644 index 0000000..b409750 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/77.png differ diff --git a/projects/challange 8/pokedex/v2/images/770.png b/projects/challange 8/pokedex/v2/images/770.png new file mode 100644 index 0000000..df41268 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/770.png differ diff --git a/projects/challange 8/pokedex/v2/images/771.png b/projects/challange 8/pokedex/v2/images/771.png new file mode 100644 index 0000000..215bbd4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/771.png differ diff --git a/projects/challange 8/pokedex/v2/images/772.png b/projects/challange 8/pokedex/v2/images/772.png new file mode 100644 index 0000000..bd2f1c2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/772.png differ diff --git a/projects/challange 8/pokedex/v2/images/773.png b/projects/challange 8/pokedex/v2/images/773.png new file mode 100644 index 0000000..e3c44ed Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/773.png differ diff --git a/projects/challange 8/pokedex/v2/images/774.png b/projects/challange 8/pokedex/v2/images/774.png new file mode 100644 index 0000000..7d8693b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/774.png differ diff --git a/projects/challange 8/pokedex/v2/images/775.png b/projects/challange 8/pokedex/v2/images/775.png new file mode 100644 index 0000000..30f907f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/775.png differ diff --git a/projects/challange 8/pokedex/v2/images/776.png b/projects/challange 8/pokedex/v2/images/776.png new file mode 100644 index 0000000..5f9a5c6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/776.png differ diff --git a/projects/challange 8/pokedex/v2/images/777.png b/projects/challange 8/pokedex/v2/images/777.png new file mode 100644 index 0000000..9d3b01c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/777.png differ diff --git a/projects/challange 8/pokedex/v2/images/778.png b/projects/challange 8/pokedex/v2/images/778.png new file mode 100644 index 0000000..35127f0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/778.png differ diff --git a/projects/challange 8/pokedex/v2/images/779.png b/projects/challange 8/pokedex/v2/images/779.png new file mode 100644 index 0000000..028f19e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/779.png differ diff --git a/projects/challange 8/pokedex/v2/images/78.png b/projects/challange 8/pokedex/v2/images/78.png new file mode 100644 index 0000000..6d4afc6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/78.png differ diff --git a/projects/challange 8/pokedex/v2/images/780.png b/projects/challange 8/pokedex/v2/images/780.png new file mode 100644 index 0000000..f35fe0b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/780.png differ diff --git a/projects/challange 8/pokedex/v2/images/781.png b/projects/challange 8/pokedex/v2/images/781.png new file mode 100644 index 0000000..e9fe0d1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/781.png differ diff --git a/projects/challange 8/pokedex/v2/images/782.png b/projects/challange 8/pokedex/v2/images/782.png new file mode 100644 index 0000000..1ce56b3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/782.png differ diff --git a/projects/challange 8/pokedex/v2/images/783.png b/projects/challange 8/pokedex/v2/images/783.png new file mode 100644 index 0000000..eb34661 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/783.png differ diff --git a/projects/challange 8/pokedex/v2/images/784.png b/projects/challange 8/pokedex/v2/images/784.png new file mode 100644 index 0000000..b8688ea Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/784.png differ diff --git a/projects/challange 8/pokedex/v2/images/785.png b/projects/challange 8/pokedex/v2/images/785.png new file mode 100644 index 0000000..6e1d958 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/785.png differ diff --git a/projects/challange 8/pokedex/v2/images/786.png b/projects/challange 8/pokedex/v2/images/786.png new file mode 100644 index 0000000..ac55b43 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/786.png differ diff --git a/projects/challange 8/pokedex/v2/images/787.png b/projects/challange 8/pokedex/v2/images/787.png new file mode 100644 index 0000000..ff9a10f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/787.png differ diff --git a/projects/challange 8/pokedex/v2/images/788.png b/projects/challange 8/pokedex/v2/images/788.png new file mode 100644 index 0000000..8a36c21 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/788.png differ diff --git a/projects/challange 8/pokedex/v2/images/789.png b/projects/challange 8/pokedex/v2/images/789.png new file mode 100644 index 0000000..0030d6b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/789.png differ diff --git a/projects/challange 8/pokedex/v2/images/79.png b/projects/challange 8/pokedex/v2/images/79.png new file mode 100644 index 0000000..6c11b1e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/79.png differ diff --git a/projects/challange 8/pokedex/v2/images/790.png b/projects/challange 8/pokedex/v2/images/790.png new file mode 100644 index 0000000..5d3250c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/790.png differ diff --git a/projects/challange 8/pokedex/v2/images/791.png b/projects/challange 8/pokedex/v2/images/791.png new file mode 100644 index 0000000..2391a70 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/791.png differ diff --git a/projects/challange 8/pokedex/v2/images/792.png b/projects/challange 8/pokedex/v2/images/792.png new file mode 100644 index 0000000..cf5297e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/792.png differ diff --git a/projects/challange 8/pokedex/v2/images/793.png b/projects/challange 8/pokedex/v2/images/793.png new file mode 100644 index 0000000..71e7ab0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/793.png differ diff --git a/projects/challange 8/pokedex/v2/images/794.png b/projects/challange 8/pokedex/v2/images/794.png new file mode 100644 index 0000000..85773ba Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/794.png differ diff --git a/projects/challange 8/pokedex/v2/images/795.png b/projects/challange 8/pokedex/v2/images/795.png new file mode 100644 index 0000000..44745e1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/795.png differ diff --git a/projects/challange 8/pokedex/v2/images/796.png b/projects/challange 8/pokedex/v2/images/796.png new file mode 100644 index 0000000..ef728f7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/796.png differ diff --git a/projects/challange 8/pokedex/v2/images/797.png b/projects/challange 8/pokedex/v2/images/797.png new file mode 100644 index 0000000..7d9449b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/797.png differ diff --git a/projects/challange 8/pokedex/v2/images/798.png b/projects/challange 8/pokedex/v2/images/798.png new file mode 100644 index 0000000..05244e9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/798.png differ diff --git a/projects/challange 8/pokedex/v2/images/799.png b/projects/challange 8/pokedex/v2/images/799.png new file mode 100644 index 0000000..00fa7b7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/799.png differ diff --git a/projects/challange 8/pokedex/v2/images/8.png b/projects/challange 8/pokedex/v2/images/8.png new file mode 100644 index 0000000..88d620c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/8.png differ diff --git a/projects/challange 8/pokedex/v2/images/80.png b/projects/challange 8/pokedex/v2/images/80.png new file mode 100644 index 0000000..ece52b7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/80.png differ diff --git a/projects/challange 8/pokedex/v2/images/800.png b/projects/challange 8/pokedex/v2/images/800.png new file mode 100644 index 0000000..638d0fe Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/800.png differ diff --git a/projects/challange 8/pokedex/v2/images/801.png b/projects/challange 8/pokedex/v2/images/801.png new file mode 100644 index 0000000..7990820 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/801.png differ diff --git a/projects/challange 8/pokedex/v2/images/802.png b/projects/challange 8/pokedex/v2/images/802.png new file mode 100644 index 0000000..5ca9d4f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/802.png differ diff --git a/projects/challange 8/pokedex/v2/images/803.png b/projects/challange 8/pokedex/v2/images/803.png new file mode 100644 index 0000000..84ee90b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/803.png differ diff --git a/projects/challange 8/pokedex/v2/images/804.png b/projects/challange 8/pokedex/v2/images/804.png new file mode 100644 index 0000000..f9caf15 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/804.png differ diff --git a/projects/challange 8/pokedex/v2/images/805.png b/projects/challange 8/pokedex/v2/images/805.png new file mode 100644 index 0000000..f515c1e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/805.png differ diff --git a/projects/challange 8/pokedex/v2/images/806.png b/projects/challange 8/pokedex/v2/images/806.png new file mode 100644 index 0000000..1034564 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/806.png differ diff --git a/projects/challange 8/pokedex/v2/images/807.png b/projects/challange 8/pokedex/v2/images/807.png new file mode 100644 index 0000000..d34049a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/807.png differ diff --git a/projects/challange 8/pokedex/v2/images/808.png b/projects/challange 8/pokedex/v2/images/808.png new file mode 100644 index 0000000..583251e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/808.png differ diff --git a/projects/challange 8/pokedex/v2/images/809.png b/projects/challange 8/pokedex/v2/images/809.png new file mode 100644 index 0000000..1c27ac6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/809.png differ diff --git a/projects/challange 8/pokedex/v2/images/81.png b/projects/challange 8/pokedex/v2/images/81.png new file mode 100644 index 0000000..d7df60f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/81.png differ diff --git a/projects/challange 8/pokedex/v2/images/810.png b/projects/challange 8/pokedex/v2/images/810.png new file mode 100644 index 0000000..32f287c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/810.png differ diff --git a/projects/challange 8/pokedex/v2/images/811.png b/projects/challange 8/pokedex/v2/images/811.png new file mode 100644 index 0000000..f9e5cce Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/811.png differ diff --git a/projects/challange 8/pokedex/v2/images/812.png b/projects/challange 8/pokedex/v2/images/812.png new file mode 100644 index 0000000..80a38c5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/812.png differ diff --git a/projects/challange 8/pokedex/v2/images/813.png b/projects/challange 8/pokedex/v2/images/813.png new file mode 100644 index 0000000..5961874 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/813.png differ diff --git a/projects/challange 8/pokedex/v2/images/814.png b/projects/challange 8/pokedex/v2/images/814.png new file mode 100644 index 0000000..bee6ef0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/814.png differ diff --git a/projects/challange 8/pokedex/v2/images/815.png b/projects/challange 8/pokedex/v2/images/815.png new file mode 100644 index 0000000..f564db0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/815.png differ diff --git a/projects/challange 8/pokedex/v2/images/816.png b/projects/challange 8/pokedex/v2/images/816.png new file mode 100644 index 0000000..9669af6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/816.png differ diff --git a/projects/challange 8/pokedex/v2/images/817.png b/projects/challange 8/pokedex/v2/images/817.png new file mode 100644 index 0000000..8dbd9e7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/817.png differ diff --git a/projects/challange 8/pokedex/v2/images/818.png b/projects/challange 8/pokedex/v2/images/818.png new file mode 100644 index 0000000..93d31ab Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/818.png differ diff --git a/projects/challange 8/pokedex/v2/images/819.png b/projects/challange 8/pokedex/v2/images/819.png new file mode 100644 index 0000000..8259c25 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/819.png differ diff --git a/projects/challange 8/pokedex/v2/images/82.png b/projects/challange 8/pokedex/v2/images/82.png new file mode 100644 index 0000000..2be2115 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/82.png differ diff --git a/projects/challange 8/pokedex/v2/images/820.png b/projects/challange 8/pokedex/v2/images/820.png new file mode 100644 index 0000000..1f2d295 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/820.png differ diff --git a/projects/challange 8/pokedex/v2/images/821.png b/projects/challange 8/pokedex/v2/images/821.png new file mode 100644 index 0000000..a3fd34c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/821.png differ diff --git a/projects/challange 8/pokedex/v2/images/822.png b/projects/challange 8/pokedex/v2/images/822.png new file mode 100644 index 0000000..d8294c1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/822.png differ diff --git a/projects/challange 8/pokedex/v2/images/823.png b/projects/challange 8/pokedex/v2/images/823.png new file mode 100644 index 0000000..47baa79 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/823.png differ diff --git a/projects/challange 8/pokedex/v2/images/824.png b/projects/challange 8/pokedex/v2/images/824.png new file mode 100644 index 0000000..3257caa Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/824.png differ diff --git a/projects/challange 8/pokedex/v2/images/825.png b/projects/challange 8/pokedex/v2/images/825.png new file mode 100644 index 0000000..e0395be Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/825.png differ diff --git a/projects/challange 8/pokedex/v2/images/826.png b/projects/challange 8/pokedex/v2/images/826.png new file mode 100644 index 0000000..06af6fa Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/826.png differ diff --git a/projects/challange 8/pokedex/v2/images/827.png b/projects/challange 8/pokedex/v2/images/827.png new file mode 100644 index 0000000..0bb87d0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/827.png differ diff --git a/projects/challange 8/pokedex/v2/images/828.png b/projects/challange 8/pokedex/v2/images/828.png new file mode 100644 index 0000000..9c57ce6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/828.png differ diff --git a/projects/challange 8/pokedex/v2/images/829.png b/projects/challange 8/pokedex/v2/images/829.png new file mode 100644 index 0000000..b3b23a4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/829.png differ diff --git a/projects/challange 8/pokedex/v2/images/83.png b/projects/challange 8/pokedex/v2/images/83.png new file mode 100644 index 0000000..5b54011 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/83.png differ diff --git a/projects/challange 8/pokedex/v2/images/830.png b/projects/challange 8/pokedex/v2/images/830.png new file mode 100644 index 0000000..1492e05 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/830.png differ diff --git a/projects/challange 8/pokedex/v2/images/831.png b/projects/challange 8/pokedex/v2/images/831.png new file mode 100644 index 0000000..eede3e2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/831.png differ diff --git a/projects/challange 8/pokedex/v2/images/832.png b/projects/challange 8/pokedex/v2/images/832.png new file mode 100644 index 0000000..dd3e2b0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/832.png differ diff --git a/projects/challange 8/pokedex/v2/images/833.png b/projects/challange 8/pokedex/v2/images/833.png new file mode 100644 index 0000000..3035c1e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/833.png differ diff --git a/projects/challange 8/pokedex/v2/images/834.png b/projects/challange 8/pokedex/v2/images/834.png new file mode 100644 index 0000000..4048b6d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/834.png differ diff --git a/projects/challange 8/pokedex/v2/images/835.png b/projects/challange 8/pokedex/v2/images/835.png new file mode 100644 index 0000000..5b10763 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/835.png differ diff --git a/projects/challange 8/pokedex/v2/images/836.png b/projects/challange 8/pokedex/v2/images/836.png new file mode 100644 index 0000000..03ddd70 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/836.png differ diff --git a/projects/challange 8/pokedex/v2/images/837.png b/projects/challange 8/pokedex/v2/images/837.png new file mode 100644 index 0000000..e6f31b3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/837.png differ diff --git a/projects/challange 8/pokedex/v2/images/838.png b/projects/challange 8/pokedex/v2/images/838.png new file mode 100644 index 0000000..f5868ce Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/838.png differ diff --git a/projects/challange 8/pokedex/v2/images/839.png b/projects/challange 8/pokedex/v2/images/839.png new file mode 100644 index 0000000..8533953 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/839.png differ diff --git a/projects/challange 8/pokedex/v2/images/84.png b/projects/challange 8/pokedex/v2/images/84.png new file mode 100644 index 0000000..bc59ae7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/84.png differ diff --git a/projects/challange 8/pokedex/v2/images/840.png b/projects/challange 8/pokedex/v2/images/840.png new file mode 100644 index 0000000..a255227 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/840.png differ diff --git a/projects/challange 8/pokedex/v2/images/841.png b/projects/challange 8/pokedex/v2/images/841.png new file mode 100644 index 0000000..afc759c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/841.png differ diff --git a/projects/challange 8/pokedex/v2/images/842.png b/projects/challange 8/pokedex/v2/images/842.png new file mode 100644 index 0000000..cc1035f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/842.png differ diff --git a/projects/challange 8/pokedex/v2/images/843.png b/projects/challange 8/pokedex/v2/images/843.png new file mode 100644 index 0000000..73cf1e9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/843.png differ diff --git a/projects/challange 8/pokedex/v2/images/844.png b/projects/challange 8/pokedex/v2/images/844.png new file mode 100644 index 0000000..998c9a1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/844.png differ diff --git a/projects/challange 8/pokedex/v2/images/845.png b/projects/challange 8/pokedex/v2/images/845.png new file mode 100644 index 0000000..11a33cc Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/845.png differ diff --git a/projects/challange 8/pokedex/v2/images/846.png b/projects/challange 8/pokedex/v2/images/846.png new file mode 100644 index 0000000..9588359 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/846.png differ diff --git a/projects/challange 8/pokedex/v2/images/847.png b/projects/challange 8/pokedex/v2/images/847.png new file mode 100644 index 0000000..b4e154a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/847.png differ diff --git a/projects/challange 8/pokedex/v2/images/848.png b/projects/challange 8/pokedex/v2/images/848.png new file mode 100644 index 0000000..90a162f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/848.png differ diff --git a/projects/challange 8/pokedex/v2/images/849.png b/projects/challange 8/pokedex/v2/images/849.png new file mode 100644 index 0000000..13afe65 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/849.png differ diff --git a/projects/challange 8/pokedex/v2/images/85.png b/projects/challange 8/pokedex/v2/images/85.png new file mode 100644 index 0000000..01e979a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/85.png differ diff --git a/projects/challange 8/pokedex/v2/images/850.png b/projects/challange 8/pokedex/v2/images/850.png new file mode 100644 index 0000000..9f03f2e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/850.png differ diff --git a/projects/challange 8/pokedex/v2/images/851.png b/projects/challange 8/pokedex/v2/images/851.png new file mode 100644 index 0000000..3cfb837 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/851.png differ diff --git a/projects/challange 8/pokedex/v2/images/852.png b/projects/challange 8/pokedex/v2/images/852.png new file mode 100644 index 0000000..0b1b759 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/852.png differ diff --git a/projects/challange 8/pokedex/v2/images/853.png b/projects/challange 8/pokedex/v2/images/853.png new file mode 100644 index 0000000..5c94e21 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/853.png differ diff --git a/projects/challange 8/pokedex/v2/images/854.png b/projects/challange 8/pokedex/v2/images/854.png new file mode 100644 index 0000000..7bc5964 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/854.png differ diff --git a/projects/challange 8/pokedex/v2/images/855.png b/projects/challange 8/pokedex/v2/images/855.png new file mode 100644 index 0000000..cf420cf Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/855.png differ diff --git a/projects/challange 8/pokedex/v2/images/856.png b/projects/challange 8/pokedex/v2/images/856.png new file mode 100644 index 0000000..06414f6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/856.png differ diff --git a/projects/challange 8/pokedex/v2/images/857.png b/projects/challange 8/pokedex/v2/images/857.png new file mode 100644 index 0000000..88fc492 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/857.png differ diff --git a/projects/challange 8/pokedex/v2/images/858.png b/projects/challange 8/pokedex/v2/images/858.png new file mode 100644 index 0000000..49549b7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/858.png differ diff --git a/projects/challange 8/pokedex/v2/images/859.png b/projects/challange 8/pokedex/v2/images/859.png new file mode 100644 index 0000000..77e4748 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/859.png differ diff --git a/projects/challange 8/pokedex/v2/images/86.png b/projects/challange 8/pokedex/v2/images/86.png new file mode 100644 index 0000000..f95fa6f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/86.png differ diff --git a/projects/challange 8/pokedex/v2/images/860.png b/projects/challange 8/pokedex/v2/images/860.png new file mode 100644 index 0000000..cb200f8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/860.png differ diff --git a/projects/challange 8/pokedex/v2/images/861.png b/projects/challange 8/pokedex/v2/images/861.png new file mode 100644 index 0000000..c283711 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/861.png differ diff --git a/projects/challange 8/pokedex/v2/images/862.png b/projects/challange 8/pokedex/v2/images/862.png new file mode 100644 index 0000000..dc359fd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/862.png differ diff --git a/projects/challange 8/pokedex/v2/images/863.png b/projects/challange 8/pokedex/v2/images/863.png new file mode 100644 index 0000000..076dfb7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/863.png differ diff --git a/projects/challange 8/pokedex/v2/images/864.png b/projects/challange 8/pokedex/v2/images/864.png new file mode 100644 index 0000000..c365d29 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/864.png differ diff --git a/projects/challange 8/pokedex/v2/images/865.png b/projects/challange 8/pokedex/v2/images/865.png new file mode 100644 index 0000000..ec712ee Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/865.png differ diff --git a/projects/challange 8/pokedex/v2/images/866.png b/projects/challange 8/pokedex/v2/images/866.png new file mode 100644 index 0000000..b93651f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/866.png differ diff --git a/projects/challange 8/pokedex/v2/images/867.png b/projects/challange 8/pokedex/v2/images/867.png new file mode 100644 index 0000000..5879d01 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/867.png differ diff --git a/projects/challange 8/pokedex/v2/images/868.png b/projects/challange 8/pokedex/v2/images/868.png new file mode 100644 index 0000000..3277a0a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/868.png differ diff --git a/projects/challange 8/pokedex/v2/images/869.png b/projects/challange 8/pokedex/v2/images/869.png new file mode 100644 index 0000000..7e2a79b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/869.png differ diff --git a/projects/challange 8/pokedex/v2/images/87.png b/projects/challange 8/pokedex/v2/images/87.png new file mode 100644 index 0000000..fde985f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/87.png differ diff --git a/projects/challange 8/pokedex/v2/images/870.png b/projects/challange 8/pokedex/v2/images/870.png new file mode 100644 index 0000000..c6c4785 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/870.png differ diff --git a/projects/challange 8/pokedex/v2/images/871.png b/projects/challange 8/pokedex/v2/images/871.png new file mode 100644 index 0000000..9253834 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/871.png differ diff --git a/projects/challange 8/pokedex/v2/images/872.png b/projects/challange 8/pokedex/v2/images/872.png new file mode 100644 index 0000000..7b34f54 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/872.png differ diff --git a/projects/challange 8/pokedex/v2/images/873.png b/projects/challange 8/pokedex/v2/images/873.png new file mode 100644 index 0000000..2d1e77a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/873.png differ diff --git a/projects/challange 8/pokedex/v2/images/874.png b/projects/challange 8/pokedex/v2/images/874.png new file mode 100644 index 0000000..5c02595 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/874.png differ diff --git a/projects/challange 8/pokedex/v2/images/875.png b/projects/challange 8/pokedex/v2/images/875.png new file mode 100644 index 0000000..b540313 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/875.png differ diff --git a/projects/challange 8/pokedex/v2/images/876.png b/projects/challange 8/pokedex/v2/images/876.png new file mode 100644 index 0000000..e22e789 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/876.png differ diff --git a/projects/challange 8/pokedex/v2/images/877.png b/projects/challange 8/pokedex/v2/images/877.png new file mode 100644 index 0000000..5a91f25 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/877.png differ diff --git a/projects/challange 8/pokedex/v2/images/878.png b/projects/challange 8/pokedex/v2/images/878.png new file mode 100644 index 0000000..f7824ad Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/878.png differ diff --git a/projects/challange 8/pokedex/v2/images/879.png b/projects/challange 8/pokedex/v2/images/879.png new file mode 100644 index 0000000..06db659 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/879.png differ diff --git a/projects/challange 8/pokedex/v2/images/88.png b/projects/challange 8/pokedex/v2/images/88.png new file mode 100644 index 0000000..5d7bba0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/88.png differ diff --git a/projects/challange 8/pokedex/v2/images/880.png b/projects/challange 8/pokedex/v2/images/880.png new file mode 100644 index 0000000..73cd00e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/880.png differ diff --git a/projects/challange 8/pokedex/v2/images/881.png b/projects/challange 8/pokedex/v2/images/881.png new file mode 100644 index 0000000..52763c8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/881.png differ diff --git a/projects/challange 8/pokedex/v2/images/882.png b/projects/challange 8/pokedex/v2/images/882.png new file mode 100644 index 0000000..0adf1a7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/882.png differ diff --git a/projects/challange 8/pokedex/v2/images/883.png b/projects/challange 8/pokedex/v2/images/883.png new file mode 100644 index 0000000..05cc068 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/883.png differ diff --git a/projects/challange 8/pokedex/v2/images/884.png b/projects/challange 8/pokedex/v2/images/884.png new file mode 100644 index 0000000..a47bd6f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/884.png differ diff --git a/projects/challange 8/pokedex/v2/images/885.png b/projects/challange 8/pokedex/v2/images/885.png new file mode 100644 index 0000000..114ef58 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/885.png differ diff --git a/projects/challange 8/pokedex/v2/images/886.png b/projects/challange 8/pokedex/v2/images/886.png new file mode 100644 index 0000000..b467030 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/886.png differ diff --git a/projects/challange 8/pokedex/v2/images/887.png b/projects/challange 8/pokedex/v2/images/887.png new file mode 100644 index 0000000..0fecedc Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/887.png differ diff --git a/projects/challange 8/pokedex/v2/images/888.png b/projects/challange 8/pokedex/v2/images/888.png new file mode 100644 index 0000000..a6b68cd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/888.png differ diff --git a/projects/challange 8/pokedex/v2/images/889.png b/projects/challange 8/pokedex/v2/images/889.png new file mode 100644 index 0000000..5dc85ad Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/889.png differ diff --git a/projects/challange 8/pokedex/v2/images/89.png b/projects/challange 8/pokedex/v2/images/89.png new file mode 100644 index 0000000..55a2ea4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/89.png differ diff --git a/projects/challange 8/pokedex/v2/images/890.png b/projects/challange 8/pokedex/v2/images/890.png new file mode 100644 index 0000000..fdb9edb Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/890.png differ diff --git a/projects/challange 8/pokedex/v2/images/891.png b/projects/challange 8/pokedex/v2/images/891.png new file mode 100644 index 0000000..7b2e1bd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/891.png differ diff --git a/projects/challange 8/pokedex/v2/images/892.png b/projects/challange 8/pokedex/v2/images/892.png new file mode 100644 index 0000000..79b71e0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/892.png differ diff --git a/projects/challange 8/pokedex/v2/images/893.png b/projects/challange 8/pokedex/v2/images/893.png new file mode 100644 index 0000000..7c45b83 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/893.png differ diff --git a/projects/challange 8/pokedex/v2/images/894.png b/projects/challange 8/pokedex/v2/images/894.png new file mode 100644 index 0000000..568f02b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/894.png differ diff --git a/projects/challange 8/pokedex/v2/images/895.png b/projects/challange 8/pokedex/v2/images/895.png new file mode 100644 index 0000000..37c5e02 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/895.png differ diff --git a/projects/challange 8/pokedex/v2/images/896.png b/projects/challange 8/pokedex/v2/images/896.png new file mode 100644 index 0000000..99c3579 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/896.png differ diff --git a/projects/challange 8/pokedex/v2/images/897.png b/projects/challange 8/pokedex/v2/images/897.png new file mode 100644 index 0000000..f73cd9f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/897.png differ diff --git a/projects/challange 8/pokedex/v2/images/898.png b/projects/challange 8/pokedex/v2/images/898.png new file mode 100644 index 0000000..f9d5737 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/898.png differ diff --git a/projects/challange 8/pokedex/v2/images/899.png b/projects/challange 8/pokedex/v2/images/899.png new file mode 100644 index 0000000..013c437 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/899.png differ diff --git a/projects/challange 8/pokedex/v2/images/9.png b/projects/challange 8/pokedex/v2/images/9.png new file mode 100644 index 0000000..7af9de8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/9.png differ diff --git a/projects/challange 8/pokedex/v2/images/90.png b/projects/challange 8/pokedex/v2/images/90.png new file mode 100644 index 0000000..8e654e0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/90.png differ diff --git a/projects/challange 8/pokedex/v2/images/900.png b/projects/challange 8/pokedex/v2/images/900.png new file mode 100644 index 0000000..be59cbc Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/900.png differ diff --git a/projects/challange 8/pokedex/v2/images/901.png b/projects/challange 8/pokedex/v2/images/901.png new file mode 100644 index 0000000..4b83f22 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/901.png differ diff --git a/projects/challange 8/pokedex/v2/images/902.png b/projects/challange 8/pokedex/v2/images/902.png new file mode 100644 index 0000000..6dafc09 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/902.png differ diff --git a/projects/challange 8/pokedex/v2/images/903.png b/projects/challange 8/pokedex/v2/images/903.png new file mode 100644 index 0000000..d0adcf7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/903.png differ diff --git a/projects/challange 8/pokedex/v2/images/904.png b/projects/challange 8/pokedex/v2/images/904.png new file mode 100644 index 0000000..63334bc Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/904.png differ diff --git a/projects/challange 8/pokedex/v2/images/905.png b/projects/challange 8/pokedex/v2/images/905.png new file mode 100644 index 0000000..a5fac99 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/905.png differ diff --git a/projects/challange 8/pokedex/v2/images/906.png b/projects/challange 8/pokedex/v2/images/906.png new file mode 100644 index 0000000..2804e01 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/906.png differ diff --git a/projects/challange 8/pokedex/v2/images/907.png b/projects/challange 8/pokedex/v2/images/907.png new file mode 100644 index 0000000..e681160 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/907.png differ diff --git a/projects/challange 8/pokedex/v2/images/908.png b/projects/challange 8/pokedex/v2/images/908.png new file mode 100644 index 0000000..2078db8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/908.png differ diff --git a/projects/challange 8/pokedex/v2/images/909.png b/projects/challange 8/pokedex/v2/images/909.png new file mode 100644 index 0000000..7049480 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/909.png differ diff --git a/projects/challange 8/pokedex/v2/images/91.png b/projects/challange 8/pokedex/v2/images/91.png new file mode 100644 index 0000000..cdec88c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/91.png differ diff --git a/projects/challange 8/pokedex/v2/images/910.png b/projects/challange 8/pokedex/v2/images/910.png new file mode 100644 index 0000000..bc1465a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/910.png differ diff --git a/projects/challange 8/pokedex/v2/images/911.png b/projects/challange 8/pokedex/v2/images/911.png new file mode 100644 index 0000000..fd211be Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/911.png differ diff --git a/projects/challange 8/pokedex/v2/images/912.png b/projects/challange 8/pokedex/v2/images/912.png new file mode 100644 index 0000000..e331182 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/912.png differ diff --git a/projects/challange 8/pokedex/v2/images/913.png b/projects/challange 8/pokedex/v2/images/913.png new file mode 100644 index 0000000..3be60b5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/913.png differ diff --git a/projects/challange 8/pokedex/v2/images/914.png b/projects/challange 8/pokedex/v2/images/914.png new file mode 100644 index 0000000..168caab Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/914.png differ diff --git a/projects/challange 8/pokedex/v2/images/915.png b/projects/challange 8/pokedex/v2/images/915.png new file mode 100644 index 0000000..23bb8eb Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/915.png differ diff --git a/projects/challange 8/pokedex/v2/images/916.png b/projects/challange 8/pokedex/v2/images/916.png new file mode 100644 index 0000000..a7e46ed Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/916.png differ diff --git a/projects/challange 8/pokedex/v2/images/917.png b/projects/challange 8/pokedex/v2/images/917.png new file mode 100644 index 0000000..3e51d98 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/917.png differ diff --git a/projects/challange 8/pokedex/v2/images/918.png b/projects/challange 8/pokedex/v2/images/918.png new file mode 100644 index 0000000..b945708 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/918.png differ diff --git a/projects/challange 8/pokedex/v2/images/919.png b/projects/challange 8/pokedex/v2/images/919.png new file mode 100644 index 0000000..84e6d67 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/919.png differ diff --git a/projects/challange 8/pokedex/v2/images/92.png b/projects/challange 8/pokedex/v2/images/92.png new file mode 100644 index 0000000..4f94a64 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/92.png differ diff --git a/projects/challange 8/pokedex/v2/images/920.png b/projects/challange 8/pokedex/v2/images/920.png new file mode 100644 index 0000000..e47d8b5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/920.png differ diff --git a/projects/challange 8/pokedex/v2/images/921.png b/projects/challange 8/pokedex/v2/images/921.png new file mode 100644 index 0000000..12bc1db Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/921.png differ diff --git a/projects/challange 8/pokedex/v2/images/922.png b/projects/challange 8/pokedex/v2/images/922.png new file mode 100644 index 0000000..81893b9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/922.png differ diff --git a/projects/challange 8/pokedex/v2/images/923.png b/projects/challange 8/pokedex/v2/images/923.png new file mode 100644 index 0000000..c35aaed Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/923.png differ diff --git a/projects/challange 8/pokedex/v2/images/924.png b/projects/challange 8/pokedex/v2/images/924.png new file mode 100644 index 0000000..cf3e3d8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/924.png differ diff --git a/projects/challange 8/pokedex/v2/images/925.png b/projects/challange 8/pokedex/v2/images/925.png new file mode 100644 index 0000000..93e70d7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/925.png differ diff --git a/projects/challange 8/pokedex/v2/images/926.png b/projects/challange 8/pokedex/v2/images/926.png new file mode 100644 index 0000000..93207bc Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/926.png differ diff --git a/projects/challange 8/pokedex/v2/images/927.png b/projects/challange 8/pokedex/v2/images/927.png new file mode 100644 index 0000000..81871cd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/927.png differ diff --git a/projects/challange 8/pokedex/v2/images/928.png b/projects/challange 8/pokedex/v2/images/928.png new file mode 100644 index 0000000..38c8295 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/928.png differ diff --git a/projects/challange 8/pokedex/v2/images/929.png b/projects/challange 8/pokedex/v2/images/929.png new file mode 100644 index 0000000..2caa65e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/929.png differ diff --git a/projects/challange 8/pokedex/v2/images/93.png b/projects/challange 8/pokedex/v2/images/93.png new file mode 100644 index 0000000..b42c565 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/93.png differ diff --git a/projects/challange 8/pokedex/v2/images/930.png b/projects/challange 8/pokedex/v2/images/930.png new file mode 100644 index 0000000..cd73c49 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/930.png differ diff --git a/projects/challange 8/pokedex/v2/images/931.png b/projects/challange 8/pokedex/v2/images/931.png new file mode 100644 index 0000000..764d34c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/931.png differ diff --git a/projects/challange 8/pokedex/v2/images/932.png b/projects/challange 8/pokedex/v2/images/932.png new file mode 100644 index 0000000..ceaa7bc Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/932.png differ diff --git a/projects/challange 8/pokedex/v2/images/933.png b/projects/challange 8/pokedex/v2/images/933.png new file mode 100644 index 0000000..d5ffa46 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/933.png differ diff --git a/projects/challange 8/pokedex/v2/images/934.png b/projects/challange 8/pokedex/v2/images/934.png new file mode 100644 index 0000000..999a945 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/934.png differ diff --git a/projects/challange 8/pokedex/v2/images/935.png b/projects/challange 8/pokedex/v2/images/935.png new file mode 100644 index 0000000..399442d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/935.png differ diff --git a/projects/challange 8/pokedex/v2/images/936.png b/projects/challange 8/pokedex/v2/images/936.png new file mode 100644 index 0000000..dd13cd7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/936.png differ diff --git a/projects/challange 8/pokedex/v2/images/937.png b/projects/challange 8/pokedex/v2/images/937.png new file mode 100644 index 0000000..defae62 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/937.png differ diff --git a/projects/challange 8/pokedex/v2/images/938.png b/projects/challange 8/pokedex/v2/images/938.png new file mode 100644 index 0000000..7ef35d2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/938.png differ diff --git a/projects/challange 8/pokedex/v2/images/939.png b/projects/challange 8/pokedex/v2/images/939.png new file mode 100644 index 0000000..77aac80 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/939.png differ diff --git a/projects/challange 8/pokedex/v2/images/94.png b/projects/challange 8/pokedex/v2/images/94.png new file mode 100644 index 0000000..91ed467 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/94.png differ diff --git a/projects/challange 8/pokedex/v2/images/940.png b/projects/challange 8/pokedex/v2/images/940.png new file mode 100644 index 0000000..a77b71a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/940.png differ diff --git a/projects/challange 8/pokedex/v2/images/941.png b/projects/challange 8/pokedex/v2/images/941.png new file mode 100644 index 0000000..50968cc Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/941.png differ diff --git a/projects/challange 8/pokedex/v2/images/942.png b/projects/challange 8/pokedex/v2/images/942.png new file mode 100644 index 0000000..fff443e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/942.png differ diff --git a/projects/challange 8/pokedex/v2/images/943.png b/projects/challange 8/pokedex/v2/images/943.png new file mode 100644 index 0000000..8276a7b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/943.png differ diff --git a/projects/challange 8/pokedex/v2/images/944.png b/projects/challange 8/pokedex/v2/images/944.png new file mode 100644 index 0000000..5db4f5e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/944.png differ diff --git a/projects/challange 8/pokedex/v2/images/945.png b/projects/challange 8/pokedex/v2/images/945.png new file mode 100644 index 0000000..5903adf Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/945.png differ diff --git a/projects/challange 8/pokedex/v2/images/946.png b/projects/challange 8/pokedex/v2/images/946.png new file mode 100644 index 0000000..8205883 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/946.png differ diff --git a/projects/challange 8/pokedex/v2/images/947.png b/projects/challange 8/pokedex/v2/images/947.png new file mode 100644 index 0000000..7595bd7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/947.png differ diff --git a/projects/challange 8/pokedex/v2/images/948.png b/projects/challange 8/pokedex/v2/images/948.png new file mode 100644 index 0000000..a972266 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/948.png differ diff --git a/projects/challange 8/pokedex/v2/images/949.png b/projects/challange 8/pokedex/v2/images/949.png new file mode 100644 index 0000000..5c216f4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/949.png differ diff --git a/projects/challange 8/pokedex/v2/images/95.png b/projects/challange 8/pokedex/v2/images/95.png new file mode 100644 index 0000000..f6d6b9a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/95.png differ diff --git a/projects/challange 8/pokedex/v2/images/950.png b/projects/challange 8/pokedex/v2/images/950.png new file mode 100644 index 0000000..1cd4363 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/950.png differ diff --git a/projects/challange 8/pokedex/v2/images/951.png b/projects/challange 8/pokedex/v2/images/951.png new file mode 100644 index 0000000..6eb2f7e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/951.png differ diff --git a/projects/challange 8/pokedex/v2/images/952.png b/projects/challange 8/pokedex/v2/images/952.png new file mode 100644 index 0000000..ad321d2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/952.png differ diff --git a/projects/challange 8/pokedex/v2/images/953.png b/projects/challange 8/pokedex/v2/images/953.png new file mode 100644 index 0000000..b953552 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/953.png differ diff --git a/projects/challange 8/pokedex/v2/images/954.png b/projects/challange 8/pokedex/v2/images/954.png new file mode 100644 index 0000000..ec15f9d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/954.png differ diff --git a/projects/challange 8/pokedex/v2/images/955.png b/projects/challange 8/pokedex/v2/images/955.png new file mode 100644 index 0000000..62def54 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/955.png differ diff --git a/projects/challange 8/pokedex/v2/images/956.png b/projects/challange 8/pokedex/v2/images/956.png new file mode 100644 index 0000000..58a0ed0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/956.png differ diff --git a/projects/challange 8/pokedex/v2/images/957.png b/projects/challange 8/pokedex/v2/images/957.png new file mode 100644 index 0000000..867ad10 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/957.png differ diff --git a/projects/challange 8/pokedex/v2/images/958.png b/projects/challange 8/pokedex/v2/images/958.png new file mode 100644 index 0000000..ccc98cd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/958.png differ diff --git a/projects/challange 8/pokedex/v2/images/959.png b/projects/challange 8/pokedex/v2/images/959.png new file mode 100644 index 0000000..3ac0c9c Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/959.png differ diff --git a/projects/challange 8/pokedex/v2/images/96.png b/projects/challange 8/pokedex/v2/images/96.png new file mode 100644 index 0000000..7c43969 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/96.png differ diff --git a/projects/challange 8/pokedex/v2/images/960.png b/projects/challange 8/pokedex/v2/images/960.png new file mode 100644 index 0000000..1880b08 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/960.png differ diff --git a/projects/challange 8/pokedex/v2/images/961.png b/projects/challange 8/pokedex/v2/images/961.png new file mode 100644 index 0000000..c9f3dba Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/961.png differ diff --git a/projects/challange 8/pokedex/v2/images/962.png b/projects/challange 8/pokedex/v2/images/962.png new file mode 100644 index 0000000..050ae5e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/962.png differ diff --git a/projects/challange 8/pokedex/v2/images/963.png b/projects/challange 8/pokedex/v2/images/963.png new file mode 100644 index 0000000..00c1372 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/963.png differ diff --git a/projects/challange 8/pokedex/v2/images/964.png b/projects/challange 8/pokedex/v2/images/964.png new file mode 100644 index 0000000..411a7b2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/964.png differ diff --git a/projects/challange 8/pokedex/v2/images/965.png b/projects/challange 8/pokedex/v2/images/965.png new file mode 100644 index 0000000..da1c611 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/965.png differ diff --git a/projects/challange 8/pokedex/v2/images/966.png b/projects/challange 8/pokedex/v2/images/966.png new file mode 100644 index 0000000..52c9a04 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/966.png differ diff --git a/projects/challange 8/pokedex/v2/images/967.png b/projects/challange 8/pokedex/v2/images/967.png new file mode 100644 index 0000000..20a6e49 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/967.png differ diff --git a/projects/challange 8/pokedex/v2/images/968.png b/projects/challange 8/pokedex/v2/images/968.png new file mode 100644 index 0000000..8b85b8e Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/968.png differ diff --git a/projects/challange 8/pokedex/v2/images/969.png b/projects/challange 8/pokedex/v2/images/969.png new file mode 100644 index 0000000..023df5b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/969.png differ diff --git a/projects/challange 8/pokedex/v2/images/97.png b/projects/challange 8/pokedex/v2/images/97.png new file mode 100644 index 0000000..44bbfa3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/97.png differ diff --git a/projects/challange 8/pokedex/v2/images/970.png b/projects/challange 8/pokedex/v2/images/970.png new file mode 100644 index 0000000..fb0121d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/970.png differ diff --git a/projects/challange 8/pokedex/v2/images/971.png b/projects/challange 8/pokedex/v2/images/971.png new file mode 100644 index 0000000..cb4cbaa Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/971.png differ diff --git a/projects/challange 8/pokedex/v2/images/972.png b/projects/challange 8/pokedex/v2/images/972.png new file mode 100644 index 0000000..2c33fba Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/972.png differ diff --git a/projects/challange 8/pokedex/v2/images/973.png b/projects/challange 8/pokedex/v2/images/973.png new file mode 100644 index 0000000..ba8731b Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/973.png differ diff --git a/projects/challange 8/pokedex/v2/images/974.png b/projects/challange 8/pokedex/v2/images/974.png new file mode 100644 index 0000000..8a4fcab Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/974.png differ diff --git a/projects/challange 8/pokedex/v2/images/975.png b/projects/challange 8/pokedex/v2/images/975.png new file mode 100644 index 0000000..2f6c068 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/975.png differ diff --git a/projects/challange 8/pokedex/v2/images/976.png b/projects/challange 8/pokedex/v2/images/976.png new file mode 100644 index 0000000..0ef364d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/976.png differ diff --git a/projects/challange 8/pokedex/v2/images/977.png b/projects/challange 8/pokedex/v2/images/977.png new file mode 100644 index 0000000..2505859 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/977.png differ diff --git a/projects/challange 8/pokedex/v2/images/978.png b/projects/challange 8/pokedex/v2/images/978.png new file mode 100644 index 0000000..2da6e57 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/978.png differ diff --git a/projects/challange 8/pokedex/v2/images/979.png b/projects/challange 8/pokedex/v2/images/979.png new file mode 100644 index 0000000..b204819 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/979.png differ diff --git a/projects/challange 8/pokedex/v2/images/98.png b/projects/challange 8/pokedex/v2/images/98.png new file mode 100644 index 0000000..113f028 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/98.png differ diff --git a/projects/challange 8/pokedex/v2/images/980.png b/projects/challange 8/pokedex/v2/images/980.png new file mode 100644 index 0000000..314a075 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/980.png differ diff --git a/projects/challange 8/pokedex/v2/images/981.png b/projects/challange 8/pokedex/v2/images/981.png new file mode 100644 index 0000000..98d0df5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/981.png differ diff --git a/projects/challange 8/pokedex/v2/images/982.png b/projects/challange 8/pokedex/v2/images/982.png new file mode 100644 index 0000000..cea1615 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/982.png differ diff --git a/projects/challange 8/pokedex/v2/images/983.png b/projects/challange 8/pokedex/v2/images/983.png new file mode 100644 index 0000000..efcec89 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/983.png differ diff --git a/projects/challange 8/pokedex/v2/images/984.png b/projects/challange 8/pokedex/v2/images/984.png new file mode 100644 index 0000000..8a33bfe Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/984.png differ diff --git a/projects/challange 8/pokedex/v2/images/985.png b/projects/challange 8/pokedex/v2/images/985.png new file mode 100644 index 0000000..50b7714 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/985.png differ diff --git a/projects/challange 8/pokedex/v2/images/986.png b/projects/challange 8/pokedex/v2/images/986.png new file mode 100644 index 0000000..23ad50f Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/986.png differ diff --git a/projects/challange 8/pokedex/v2/images/987.png b/projects/challange 8/pokedex/v2/images/987.png new file mode 100644 index 0000000..c06c515 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/987.png differ diff --git a/projects/challange 8/pokedex/v2/images/988.png b/projects/challange 8/pokedex/v2/images/988.png new file mode 100644 index 0000000..ac611fe Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/988.png differ diff --git a/projects/challange 8/pokedex/v2/images/989.png b/projects/challange 8/pokedex/v2/images/989.png new file mode 100644 index 0000000..7e2dee7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/989.png differ diff --git a/projects/challange 8/pokedex/v2/images/99.png b/projects/challange 8/pokedex/v2/images/99.png new file mode 100644 index 0000000..29ac439 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/99.png differ diff --git a/projects/challange 8/pokedex/v2/images/990.png b/projects/challange 8/pokedex/v2/images/990.png new file mode 100644 index 0000000..05abb82 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/990.png differ diff --git a/projects/challange 8/pokedex/v2/images/991.png b/projects/challange 8/pokedex/v2/images/991.png new file mode 100644 index 0000000..cef1b9d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/991.png differ diff --git a/projects/challange 8/pokedex/v2/images/992.png b/projects/challange 8/pokedex/v2/images/992.png new file mode 100644 index 0000000..cc2701d Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/992.png differ diff --git a/projects/challange 8/pokedex/v2/images/993.png b/projects/challange 8/pokedex/v2/images/993.png new file mode 100644 index 0000000..81ecab4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/993.png differ diff --git a/projects/challange 8/pokedex/v2/images/994.png b/projects/challange 8/pokedex/v2/images/994.png new file mode 100644 index 0000000..7065f1a Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/994.png differ diff --git a/projects/challange 8/pokedex/v2/images/995.png b/projects/challange 8/pokedex/v2/images/995.png new file mode 100644 index 0000000..b334bd3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/995.png differ diff --git a/projects/challange 8/pokedex/v2/images/996.png b/projects/challange 8/pokedex/v2/images/996.png new file mode 100644 index 0000000..4a7b3bd Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/996.png differ diff --git a/projects/challange 8/pokedex/v2/images/997.png b/projects/challange 8/pokedex/v2/images/997.png new file mode 100644 index 0000000..34e0f81 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/997.png differ diff --git a/projects/challange 8/pokedex/v2/images/998.png b/projects/challange 8/pokedex/v2/images/998.png new file mode 100644 index 0000000..a6b9b11 Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/998.png differ diff --git a/projects/challange 8/pokedex/v2/images/999.png b/projects/challange 8/pokedex/v2/images/999.png new file mode 100644 index 0000000..21bdcfc Binary files /dev/null and b/projects/challange 8/pokedex/v2/images/999.png differ diff --git a/projects/challange 8/pokedex/v2/index.html b/projects/challange 8/pokedex/v2/index.html new file mode 100644 index 0000000..057a574 --- /dev/null +++ b/projects/challange 8/pokedex/v2/index.html @@ -0,0 +1,139 @@ + + + + + + Pokedex + + + + + + + + +
+
+
+
+ pokeball +

Pokedex

+
+
+
+ search icon + + cross icon +
+
+
+ sorting +
+
+

Sort by:

+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+
+
+ + + +
+
+
+
+
+
+
+
+

#${pokemon.id}

+
+
+ ${pokemon.name} +
+
+

${pokemon.name}

+
+
+
+
+
Pokemon not found
+
+
+
+

+ Competitors + +

+
+ +
+
+
+
+

jeremy heeft minder dan niks gedaan

+
+
+ + + + + diff --git a/projects/challange 8/pokedex/v2/pokemon-detail.js b/projects/challange 8/pokedex/v2/pokemon-detail.js new file mode 100644 index 0000000..440f2ec --- /dev/null +++ b/projects/challange 8/pokedex/v2/pokemon-detail.js @@ -0,0 +1,254 @@ +let currentPokemonId = null; + +document.addEventListener("DOMContentLoaded", () => { + const MAX_POKEMONS = 1050; + const pokemonID = new URLSearchParams(window.location.search).get("id"); + const id = parseInt(pokemonID, 10); + + if (isNaN(id) || id < 1 || id > MAX_POKEMONS) { + console.error(`Invalid Pokémon ID: ${id}`); + return (window.location.href = "./index.html"); + } + + currentPokemonId = id; + loadPokemon(id); +}); + +async function loadPokemon(id) { + try { + console.log(`Loading data for Pokémon ID ${id}...`); + const pokemon = await fetch(`./get-pokemon.php?id=${id}`).then((res) => + res.json() + ); + + if (pokemon.error) { + throw new Error(pokemon.error); + } + + // Ensure the data is logged for debugging + console.log("Fetched Pokémon data:", pokemon); + + const abilitiesWrapper = document.querySelector( + ".pokemon-detail-wrap .pokemon-detail.move" + ); + abilitiesWrapper.innerHTML = ""; + + if (currentPokemonId === id) { + displayPokemonDetails(pokemon); + + // Ensure flavor text is updated + document.querySelector(".body3-fonts.pokemon-description").textContent = + pokemon.flavor_text || "No description available."; + + // Update navigation arrows + const [leftArrow, rightArrow] = ["#leftArrow", "#rightArrow"].map((sel) => + document.querySelector(sel) + ); + leftArrow.classList.toggle("hidden", id === 1); + rightArrow.classList.toggle("hidden", id === 1050); + + leftArrow.onclick = id > 1 ? () => navigatePokemon(id - 1) : null; + rightArrow.onclick = id < 1050 ? () => navigatePokemon(id + 1) : null; + + // Update URL without reloading + window.history.pushState({}, "", `./detail.html?id=${id}`); + } + + return true; + } catch (error) { + console.error("An error occurred while fetching Pokémon data:", error); + return (window.location.href = "./index.html"); + } +} + +async function navigatePokemon(id) { + currentPokemonId = id; + await loadPokemon(id); +} + +const typeColors = { + normal: "#A8A878", + fire: "#F08030", + water: "#6890F0", + electric: "#F8D030", + grass: "#78C850", + ice: "#98D8D8", + fighting: "#C03028", + poison: "#A040A0", + ground: "#E0C068", + flying: "#A890F0", + psychic: "#F85888", + bug: "#A8B820", + rock: "#B8A038", + ghost: "#705898", + dragon: "#7038F8", + dark: "#705848", + steel: "#B8B8D0", + dark: "#EE99AC", +}; + +function setElementStyles(elements, cssProperty, value) { + elements.forEach((element) => { + element.style[cssProperty] = value; + }); +} + +function rgbaFromHex(hexColor) { + return [ + parseInt(hexColor.slice(1, 3), 16), + parseInt(hexColor.slice(3, 5), 16), + parseInt(hexColor.slice(5, 7), 16), + ].join(", "); +} + +function setTypeBackgroundColor(pokemon) { + const mainType = pokemon.types[0]; + const color = typeColors[mainType]; + + if (!color) { + console.warn(`Color not defined for type: ${mainType}`); + return; + } + + const detailMainElement = document.querySelector(".detail-main"); + setElementStyles([detailMainElement], "backgroundColor", color); + setElementStyles([detailMainElement], "borderColor", color); + + setElementStyles( + document.querySelectorAll(".power-wrapper > p"), + "backgroundColor", + color + ); + + setElementStyles( + document.querySelectorAll(".stats-wrap p.stats"), + "color", + color + ); + + setElementStyles( + document.querySelectorAll(".stats-wrap .progress-bar"), + "color", + color + ); + + const rgbaColor = rgbaFromHex(color); + const styleTag = document.createElement("style"); + styleTag.innerHTML = ` + .stats-wrap .progress-bar::-webkit-progress-bar { + background-color: rgba(${rgbaColor}, 0.5); + } + .stats-wrap .progress-bar::-webkit-progress-value { + background-color: ${color}; + } + `; + document.head.appendChild(styleTag); +} + +function capitalizeFirstLetter(string) { + return string.charAt(0).toUpperCase() + string.slice(1).toLowerCase(); +} + +function createAndAppendElement(parent, tag, options = {}) { + const element = document.createElement(tag); + Object.keys(options).forEach((key) => { + element[key] = options[key]; + }); + parent.appendChild(element); + return element; +} + +function displayPokemonDetails(pokemon) { + const { name, id, types, weight, height, abilities, hp, attack, defense, sp_attack, sp_defense, speed } = pokemon; + const capitalizePokemonName = capitalizeFirstLetter(name); + + document.querySelector("title").textContent = capitalizePokemonName; + + const detailMainElement = document.querySelector(".detail-main"); + detailMainElement.classList.add(name.toLowerCase()); + + document.querySelector(".name-wrap .name").textContent = + capitalizePokemonName; + + document.querySelector( + ".pokemon-id-wrap .body2-fonts" + ).textContent = `#${String(id).padStart(3, "0")}`; + + const imageElement = document.querySelector(".detail-img-wrapper img"); + imageElement.src = pokemon.image_url; + imageElement.alt = name; + + const typeWrapper = document.querySelector(".power-wrapper"); + typeWrapper.innerHTML = ""; + types.forEach((type) => { + createAndAppendElement(typeWrapper, "p", { + className: `body3-fonts type ${type}`, + textContent: type, + }); + }); + + document.querySelector( + ".pokemon-detail-wrap .pokemon-detail p.body3-fonts.weight" + ).textContent = `${weight / 10}kg`; + document.querySelector( + ".pokemon-detail-wrap .pokemon-detail p.body3-fonts.height" + ).textContent = `${height / 10}m`; + + const abilitiesWrapper = document.querySelector( + ".pokemon-detail-wrap .pokemon-detail.move" + ); + abilities.forEach((ability) => { + createAndAppendElement(abilitiesWrapper, "p", { + className: "body3-fonts", + textContent: ability, + }); + }); + + const statsWrapper = document.querySelector(".stats-wrapper"); + statsWrapper.innerHTML = ""; + + const statNameMapping = { + hp: "HP", + attack: "ATK", + defense: "DEF", + sp_attack: "SATK", + sp_defense: "SDEF", + speed: "SPD", + }; + + const stats = { hp, attack, defense, sp_attack, sp_defense, speed }; + + Object.keys(stats).forEach((stat) => { + const statDiv = document.createElement("div"); + statDiv.className = "stats-wrap"; + statsWrapper.appendChild(statDiv); + + createAndAppendElement(statDiv, "p", { + className: "body3-fonts stats", + textContent: statNameMapping[stat], + }); + + createAndAppendElement(statDiv, "p", { + className: "body3-fonts", + textContent: String(stats[stat]).padStart(3, "0"), + }); + + createAndAppendElement(statDiv, "progress", { + className: "progress-bar", + value: stats[stat], + max: 100, + }); + }); + + setTypeBackgroundColor(pokemon); +} + +function getEnglishFlavorText(pokemonSpecies) { + for (let entry of pokemonSpecies.flavor_text_entries) { + if (entry.language.name === "en") { + let flavor = entry.flavor_text.replace(/\f/g, " "); + return flavor; + } + } + return ""; +} diff --git a/projects/challange 8/pokedex/v2/pokemon.js b/projects/challange 8/pokedex/v2/pokemon.js new file mode 100644 index 0000000..e8f5854 --- /dev/null +++ b/projects/challange 8/pokedex/v2/pokemon.js @@ -0,0 +1,265 @@ +(() => { + const MAX_POKEMON = 1050; + const CACHE_DURATION = 24 * 60 * 60 * 1000; // 24 hours in milliseconds + const listWrapper = document.querySelector(".list-wrapper"); + const searchInput = document.querySelector("#search-input"); + const numberAscFilter = document.querySelector("#number-asc"); + const numberDescFilter = document.querySelector("#number-desc"); + const nameAscFilter = document.querySelector("#name-asc"); + const nameDescFilter = document.querySelector("#name-desc"); + const notFoundMessage = document.querySelector("#not-found-message"); + const competitorsWrapper = document.querySelector("#competitors-wrapper"); + + let allPokemons = []; + let filteredPokemons = []; + + document.addEventListener("DOMContentLoaded", () => { + const cachedData = localStorage.getItem("pokemons"); + const cacheTimestamp = localStorage.getItem("pokemons_timestamp"); + + if (cachedData && cacheTimestamp && (Date.now() - cacheTimestamp) < CACHE_DURATION) { + allPokemons = JSON.parse(cachedData); + console.log("Loaded Pokémon data from cache:", allPokemons); + filteredPokemons = allPokemons.filter(pokemon => !pokemon.deleted); + displayPokemons(filteredPokemons); + fetchCompetitors(); + } else { + fetchPokemons(); + } + }); + + function fetchPokemons() { + console.log("Fetching Pokémon data from server..."); + fetch(`./get-pokemon.php`) + .then((response) => response.text()) + .then((text) => { + console.log("Server response:", text); + try { + const data = JSON.parse(text); + if (Array.isArray(data)) { + allPokemons = data; + localStorage.setItem("pokemons", JSON.stringify(allPokemons)); + localStorage.setItem("pokemons_timestamp", Date.now().toString()); + console.log("Fetched and cached Pokémon data:", allPokemons); + filteredPokemons = allPokemons.filter(pokemon => !pokemon.deleted); + displayPokemons(filteredPokemons); + fetchCompetitors(); + } else { + console.error("Unexpected response format:", data); + } + } catch (error) { + console.error("Error parsing JSON:", error); + } + }) + .catch((error) => { + console.error("Error fetching Pokémon data:", error); + }); + } + + async function fetchPokemonDataBeforeRedirect(id) { + try { + console.log(`Fetching data for Pokémon ID ${id} before redirect...`); + const response = await fetch(`./get-pokemon.php?id=${id}`); + const text = await response.text(); + console.log(`Response for Pokémon ID ${id}:`, text); + if (!text) { + throw new Error("Empty response from server"); + } + const pokemon = JSON.parse(text); + + if (pokemon.error) { + throw new Error(pokemon.error); + } + + return true; + } catch (error) { + console.error(`Failed to fetch Pokémon data before redirect for ID ${id}:`, error); + return false; + } + } + + function displayPokemons(pokemons) { + console.log("Displaying Pokémon data:", pokemons); + listWrapper.innerHTML = ""; + + pokemons.forEach((pokemon) => { + const listItem = document.createElement("div"); + listItem.className = "list-item"; + listItem.innerHTML = ` +
+

#${pokemon.id}

+
+
+ ${pokemon.name} +
+
+

${pokemon.name}

+
+ `; + + listItem.addEventListener("click", async () => { + const success = await fetchPokemonDataBeforeRedirect(pokemon.id); + if (success) { + window.location.href = `./detail.html?id=${pokemon.id}`; + } else { + console.error(`Failed to fetch data for Pokémon ID: ${pokemon.id}`); + } + }); + + listWrapper.appendChild(listItem); + }); + + lazyLoadImages(); + } + + function lazyLoadImages() { + console.log("Initializing lazy loading for images..."); + const images = document.querySelectorAll('.img-wrap img[data-src]'); + const config = { + root: null, + rootMargin: '0px', + threshold: 0.1 + }; + + let observer = new IntersectionObserver((entries, self) => { + entries.forEach(entry => { + if (entry.isIntersecting) { + preloadLowResImage(entry.target); + self.unobserve(entry.target); + } + }); + }, config); + + images.forEach(image => { + observer.observe(image); + }); + } + + function preloadLowResImage(img) { + const srcLow = img.getAttribute('data-src-low'); + if (!srcLow) { + return; + } + console.log("Preloading low-resolution image:", srcLow); + img.src = srcLow; + preloadHighResImage(img); + } + + function preloadHighResImage(img) { + const src = img.getAttribute('data-src'); + if (!src) { + return; + } + const highResImg = new Image(); + highResImg.src = src; + highResImg.onload = () => { + console.log("Preloading high-resolution image:", src); + setTimeout(() => { + img.src = src; + }, 2000); // Wait for 2 seconds before switching to high-resolution image + }; + } + + searchInput.addEventListener("keyup", handleSearch); + numberAscFilter.addEventListener("change", handleSort); + numberDescFilter.addEventListener("change", handleSort); + nameAscFilter.addEventListener("change", handleSort); + nameDescFilter.addEventListener("change", handleSort); + + function handleSearch() { + const searchTerm = searchInput.value.toLowerCase(); + console.log("Handling search with term:", searchTerm); + + filteredPokemons = allPokemons.filter((pokemon) => { + const pokemonID = pokemon.id.toString(); + const pokemonName = pokemon.name.toLowerCase(); + return (pokemonID.startsWith(searchTerm) || pokemonName.startsWith(searchTerm)) && !pokemon.deleted; + }); + + displayPokemons(filteredPokemons); + + if (filteredPokemons.length === 0) { + notFoundMessage.style.display = "block"; + } else { + notFoundMessage.style.display = "none"; + } + } + + function handleSort() { + if (numberAscFilter.checked) { + filteredPokemons.sort((a, b) => a.id - b.id); + } else if (numberDescFilter.checked) { + filteredPokemons.sort((a, b) => b.id - a.id); + } else if (nameAscFilter.checked) { + filteredPokemons.sort((a, b) => a.name.localeCompare(b.name)); + } else if (nameDescFilter.checked) { + filteredPokemons.sort((a, b) => b.name.localeCompare(a.name)); + } + + displayPokemons(filteredPokemons); + } + + const closeButton = document.querySelector(".search-close-icon"); + closeButton.addEventListener("click", clearSearch); + + function clearSearch() { + console.log("Clearing search input and displaying all Pokémon..."); + searchInput.value = ""; + filteredPokemons = allPokemons.filter(pokemon => !pokemon.deleted); + displayPokemons(filteredPokemons); + notFoundMessage.style.display = "none"; + } + + function fetchCompetitors() { + console.log("Fetching competitors data from server..."); + fetch(`./get-competitors.php`) + .then((response) => { + if (!response.ok) { + throw new Error(`HTTP error! status: ${response.status}`); + } + return response.json(); + }) + .then((data) => { + if (data.error) { + console.error("Error from server:", data.error); + displayCompetitorsError(data.error); + } else { + displayCompetitors(data); + } + }) + .catch((error) => { + console.error("Error fetching competitors data:", error); + displayCompetitorsError("Failed to load competitors data. Please try again later."); + }); + } + + function displayCompetitorsError(message) { + const competitorsWrapper = document.querySelector("#competitors-wrapper"); + competitorsWrapper.innerHTML = `

${message}

`; + } + + function displayCompetitors(competitors) { + competitorsWrapper.innerHTML = ""; + + competitors.forEach((competitor) => { + const listItem = document.createElement("div"); + listItem.className = "list-item"; + listItem.innerHTML = ` +
+

User ID: ${competitor.user_id}

+
+
+ ${competitor.name} +
+
+

${competitor.name}

+
+
+

Pokémon Count: ${competitor.pokemon_count}

+
+ `; + + competitorsWrapper.appendChild(listItem); + }); + } +})(); \ No newline at end of file diff --git a/projects/challange 8/pokedex/v2/register-pokemon.php b/projects/challange 8/pokedex/v2/register-pokemon.php new file mode 100644 index 0000000..fdf1bd4 --- /dev/null +++ b/projects/challange 8/pokedex/v2/register-pokemon.php @@ -0,0 +1,53 @@ +connect_error) { + logMessage("Connection failed: " . $conn->connect_error); + die("Connection failed: " . $conn->connect_error); +} + +header("Content-Type: application/json"); + +$data = json_decode(file_get_contents("php://input"), true); + +if (isset($data['id'], $data['name'], $data['height'], $data['weight'], $data['base_experience'], $data['species_url'], $data['image_url'])) { + $id = intval($data['id']); + $name = $conn->real_escape_string($data['name']); + $height = intval($data['height']); + $weight = intval($data['weight']); + $base_experience = intval($data['base_experience']); + $species_url = $conn->real_escape_string($data['species_url']); + $image_url = $conn->real_escape_string($data['image_url']); + + $sql = "INSERT INTO pokemon (id, name, height, weight, base_experience, species_url, image_url) + VALUES ($id, '$name', $height, $weight, $base_experience, '$species_url', '$image_url')"; + logMessage("Executing query: $sql"); + + if ($conn->query($sql) === TRUE) { + logMessage("Pokémon registered successfully."); + echo json_encode(["success" => true]); + } else { + logMessage("Error: " . $conn->error); + echo json_encode(["success" => false, "error" => $conn->error]); + } +} else { + logMessage("Invalid input data."); + echo json_encode(["success" => false, "error" => "Invalid input data."]); +} + +$conn->close(); +?> diff --git a/projects/challange 8/pokedex/v2/search.js b/projects/challange 8/pokedex/v2/search.js new file mode 100644 index 0000000..6eae27b --- /dev/null +++ b/projects/challange 8/pokedex/v2/search.js @@ -0,0 +1,40 @@ +(() => { + const inputElement = document.querySelector("#search-input"); + const searchIcon = document.querySelector("#search-close-icon"); + const sortWrapper = document.querySelector(".sort-wrapper"); + + inputElement.addEventListener("input", () => { + handleInputChange(inputElement); + }); + searchIcon.addEventListener("click", handleSearchCloseOnClick); + sortWrapper.addEventListener("click", handleSortIconOnClick); + + function handleInputChange(inputElement) { + const inputValue = inputElement.value; + + if (inputValue !== "") { + document + .querySelector("#search-close-icon") + .classList.add("search-close-icon-visible"); + } else { + document + .querySelector("#search-close-icon") + .classList.remove("search-close-icon-visible"); + } + } + + function handleSearchCloseOnClick() { + document.querySelector("#search-input").value = ""; + document + .querySelector("#search-close-icon") + .classList.remove("search-close-icon-visible"); + clearSearch(); + } + + function handleSortIconOnClick() { + document + .querySelector(".filter-wrapper") + .classList.toggle("filter-wrapper-open"); + document.querySelector("body").classList.toggle("filter-wrapper-overlay"); + } +})(); diff --git a/projects/challange 8/pokedex/v2/small-images/1.png b/projects/challange 8/pokedex/v2/small-images/1.png new file mode 100644 index 0000000..faf989b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/1.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/10.png b/projects/challange 8/pokedex/v2/small-images/10.png new file mode 100644 index 0000000..85b7c83 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/10.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/100.png b/projects/challange 8/pokedex/v2/small-images/100.png new file mode 100644 index 0000000..14e94e8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/100.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/1000.png b/projects/challange 8/pokedex/v2/small-images/1000.png new file mode 100644 index 0000000..69c2fe3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/1000.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/1001.png b/projects/challange 8/pokedex/v2/small-images/1001.png new file mode 100644 index 0000000..4a58c8f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/1001.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/1002.png b/projects/challange 8/pokedex/v2/small-images/1002.png new file mode 100644 index 0000000..aee6769 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/1002.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/1003.png b/projects/challange 8/pokedex/v2/small-images/1003.png new file mode 100644 index 0000000..f8ee790 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/1003.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/1004.png b/projects/challange 8/pokedex/v2/small-images/1004.png new file mode 100644 index 0000000..dc5a78f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/1004.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/1005.png b/projects/challange 8/pokedex/v2/small-images/1005.png new file mode 100644 index 0000000..0c1b1f1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/1005.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/1006.png b/projects/challange 8/pokedex/v2/small-images/1006.png new file mode 100644 index 0000000..a4c3e20 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/1006.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/1007.png b/projects/challange 8/pokedex/v2/small-images/1007.png new file mode 100644 index 0000000..c0c1648 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/1007.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/1008.png b/projects/challange 8/pokedex/v2/small-images/1008.png new file mode 100644 index 0000000..aebb0f3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/1008.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/1009.png b/projects/challange 8/pokedex/v2/small-images/1009.png new file mode 100644 index 0000000..74934de Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/1009.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/101.png b/projects/challange 8/pokedex/v2/small-images/101.png new file mode 100644 index 0000000..a5dcc52 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/101.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/1010.png b/projects/challange 8/pokedex/v2/small-images/1010.png new file mode 100644 index 0000000..61cec52 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/1010.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/102.png b/projects/challange 8/pokedex/v2/small-images/102.png new file mode 100644 index 0000000..e95bd2e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/102.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/103.png b/projects/challange 8/pokedex/v2/small-images/103.png new file mode 100644 index 0000000..df8f036 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/103.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/104.png b/projects/challange 8/pokedex/v2/small-images/104.png new file mode 100644 index 0000000..ba58c88 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/104.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/105.png b/projects/challange 8/pokedex/v2/small-images/105.png new file mode 100644 index 0000000..ae95b9f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/105.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/106.png b/projects/challange 8/pokedex/v2/small-images/106.png new file mode 100644 index 0000000..a72e8a9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/106.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/107.png b/projects/challange 8/pokedex/v2/small-images/107.png new file mode 100644 index 0000000..03b1140 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/107.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/108.png b/projects/challange 8/pokedex/v2/small-images/108.png new file mode 100644 index 0000000..7f6a785 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/108.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/109.png b/projects/challange 8/pokedex/v2/small-images/109.png new file mode 100644 index 0000000..705dc95 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/109.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/11.png b/projects/challange 8/pokedex/v2/small-images/11.png new file mode 100644 index 0000000..49b2cb8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/11.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/110.png b/projects/challange 8/pokedex/v2/small-images/110.png new file mode 100644 index 0000000..98150be Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/110.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/111.png b/projects/challange 8/pokedex/v2/small-images/111.png new file mode 100644 index 0000000..872bf56 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/111.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/112.png b/projects/challange 8/pokedex/v2/small-images/112.png new file mode 100644 index 0000000..63c1540 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/112.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/113.png b/projects/challange 8/pokedex/v2/small-images/113.png new file mode 100644 index 0000000..175122d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/113.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/114.png b/projects/challange 8/pokedex/v2/small-images/114.png new file mode 100644 index 0000000..052dd8d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/114.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/115.png b/projects/challange 8/pokedex/v2/small-images/115.png new file mode 100644 index 0000000..a27b592 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/115.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/116.png b/projects/challange 8/pokedex/v2/small-images/116.png new file mode 100644 index 0000000..e5345d6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/116.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/117.png b/projects/challange 8/pokedex/v2/small-images/117.png new file mode 100644 index 0000000..1ba9a03 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/117.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/118.png b/projects/challange 8/pokedex/v2/small-images/118.png new file mode 100644 index 0000000..bf8e26e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/118.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/119.png b/projects/challange 8/pokedex/v2/small-images/119.png new file mode 100644 index 0000000..ef11d23 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/119.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/12.png b/projects/challange 8/pokedex/v2/small-images/12.png new file mode 100644 index 0000000..fd38c8d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/12.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/120.png b/projects/challange 8/pokedex/v2/small-images/120.png new file mode 100644 index 0000000..e159e0a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/120.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/121.png b/projects/challange 8/pokedex/v2/small-images/121.png new file mode 100644 index 0000000..b0ed978 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/121.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/122.png b/projects/challange 8/pokedex/v2/small-images/122.png new file mode 100644 index 0000000..372209b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/122.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/123.png b/projects/challange 8/pokedex/v2/small-images/123.png new file mode 100644 index 0000000..9f2cf59 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/123.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/124.png b/projects/challange 8/pokedex/v2/small-images/124.png new file mode 100644 index 0000000..87b354a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/124.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/125.png b/projects/challange 8/pokedex/v2/small-images/125.png new file mode 100644 index 0000000..eac6dea Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/125.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/126.png b/projects/challange 8/pokedex/v2/small-images/126.png new file mode 100644 index 0000000..817706a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/126.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/127.png b/projects/challange 8/pokedex/v2/small-images/127.png new file mode 100644 index 0000000..c8c54b9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/127.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/128.png b/projects/challange 8/pokedex/v2/small-images/128.png new file mode 100644 index 0000000..599bb89 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/128.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/129.png b/projects/challange 8/pokedex/v2/small-images/129.png new file mode 100644 index 0000000..9e78788 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/129.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/13.png b/projects/challange 8/pokedex/v2/small-images/13.png new file mode 100644 index 0000000..7a587bf Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/13.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/130.png b/projects/challange 8/pokedex/v2/small-images/130.png new file mode 100644 index 0000000..f77b52b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/130.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/131.png b/projects/challange 8/pokedex/v2/small-images/131.png new file mode 100644 index 0000000..41f6b97 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/131.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/132.png b/projects/challange 8/pokedex/v2/small-images/132.png new file mode 100644 index 0000000..f739f05 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/132.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/133.png b/projects/challange 8/pokedex/v2/small-images/133.png new file mode 100644 index 0000000..9820dea Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/133.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/134.png b/projects/challange 8/pokedex/v2/small-images/134.png new file mode 100644 index 0000000..bfaa8b0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/134.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/135.png b/projects/challange 8/pokedex/v2/small-images/135.png new file mode 100644 index 0000000..a0b8e9d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/135.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/136.png b/projects/challange 8/pokedex/v2/small-images/136.png new file mode 100644 index 0000000..1db968d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/136.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/137.png b/projects/challange 8/pokedex/v2/small-images/137.png new file mode 100644 index 0000000..69dcbbb Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/137.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/138.png b/projects/challange 8/pokedex/v2/small-images/138.png new file mode 100644 index 0000000..0b17f4f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/138.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/139.png b/projects/challange 8/pokedex/v2/small-images/139.png new file mode 100644 index 0000000..6707b4b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/139.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/14.png b/projects/challange 8/pokedex/v2/small-images/14.png new file mode 100644 index 0000000..e3bed96 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/14.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/140.png b/projects/challange 8/pokedex/v2/small-images/140.png new file mode 100644 index 0000000..3fd3f68 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/140.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/141.png b/projects/challange 8/pokedex/v2/small-images/141.png new file mode 100644 index 0000000..2114428 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/141.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/142.png b/projects/challange 8/pokedex/v2/small-images/142.png new file mode 100644 index 0000000..86860e5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/142.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/143.png b/projects/challange 8/pokedex/v2/small-images/143.png new file mode 100644 index 0000000..bb91820 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/143.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/144.png b/projects/challange 8/pokedex/v2/small-images/144.png new file mode 100644 index 0000000..f772df6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/144.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/145.png b/projects/challange 8/pokedex/v2/small-images/145.png new file mode 100644 index 0000000..1fd3757 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/145.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/146.png b/projects/challange 8/pokedex/v2/small-images/146.png new file mode 100644 index 0000000..69057e5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/146.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/147.png b/projects/challange 8/pokedex/v2/small-images/147.png new file mode 100644 index 0000000..c0fef5f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/147.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/148.png b/projects/challange 8/pokedex/v2/small-images/148.png new file mode 100644 index 0000000..af7d955 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/148.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/149.png b/projects/challange 8/pokedex/v2/small-images/149.png new file mode 100644 index 0000000..061a0a2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/149.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/15.png b/projects/challange 8/pokedex/v2/small-images/15.png new file mode 100644 index 0000000..9b89258 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/15.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/150.png b/projects/challange 8/pokedex/v2/small-images/150.png new file mode 100644 index 0000000..17778ab Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/150.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/151.png b/projects/challange 8/pokedex/v2/small-images/151.png new file mode 100644 index 0000000..b3ba48f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/151.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/152.png b/projects/challange 8/pokedex/v2/small-images/152.png new file mode 100644 index 0000000..6bc4e85 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/152.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/153.png b/projects/challange 8/pokedex/v2/small-images/153.png new file mode 100644 index 0000000..a2f9ff5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/153.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/154.png b/projects/challange 8/pokedex/v2/small-images/154.png new file mode 100644 index 0000000..6a73dc0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/154.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/155.png b/projects/challange 8/pokedex/v2/small-images/155.png new file mode 100644 index 0000000..63c4186 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/155.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/156.png b/projects/challange 8/pokedex/v2/small-images/156.png new file mode 100644 index 0000000..9d9b27b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/156.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/157.png b/projects/challange 8/pokedex/v2/small-images/157.png new file mode 100644 index 0000000..772adbe Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/157.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/158.png b/projects/challange 8/pokedex/v2/small-images/158.png new file mode 100644 index 0000000..4c36a29 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/158.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/159.png b/projects/challange 8/pokedex/v2/small-images/159.png new file mode 100644 index 0000000..d96def0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/159.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/16.png b/projects/challange 8/pokedex/v2/small-images/16.png new file mode 100644 index 0000000..ab45eec Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/16.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/160.png b/projects/challange 8/pokedex/v2/small-images/160.png new file mode 100644 index 0000000..540b72d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/160.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/161.png b/projects/challange 8/pokedex/v2/small-images/161.png new file mode 100644 index 0000000..b2ee3ce Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/161.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/162.png b/projects/challange 8/pokedex/v2/small-images/162.png new file mode 100644 index 0000000..c2f8653 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/162.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/163.png b/projects/challange 8/pokedex/v2/small-images/163.png new file mode 100644 index 0000000..d452378 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/163.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/164.png b/projects/challange 8/pokedex/v2/small-images/164.png new file mode 100644 index 0000000..17d5a51 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/164.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/165.png b/projects/challange 8/pokedex/v2/small-images/165.png new file mode 100644 index 0000000..a940fc5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/165.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/166.png b/projects/challange 8/pokedex/v2/small-images/166.png new file mode 100644 index 0000000..c6782a6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/166.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/167.png b/projects/challange 8/pokedex/v2/small-images/167.png new file mode 100644 index 0000000..900147f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/167.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/168.png b/projects/challange 8/pokedex/v2/small-images/168.png new file mode 100644 index 0000000..07529fd Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/168.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/169.png b/projects/challange 8/pokedex/v2/small-images/169.png new file mode 100644 index 0000000..69b5ec3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/169.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/17.png b/projects/challange 8/pokedex/v2/small-images/17.png new file mode 100644 index 0000000..6197fd3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/17.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/170.png b/projects/challange 8/pokedex/v2/small-images/170.png new file mode 100644 index 0000000..0acf57b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/170.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/171.png b/projects/challange 8/pokedex/v2/small-images/171.png new file mode 100644 index 0000000..860a9c7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/171.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/172.png b/projects/challange 8/pokedex/v2/small-images/172.png new file mode 100644 index 0000000..3e43ea0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/172.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/173.png b/projects/challange 8/pokedex/v2/small-images/173.png new file mode 100644 index 0000000..3205349 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/173.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/174.png b/projects/challange 8/pokedex/v2/small-images/174.png new file mode 100644 index 0000000..7eec329 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/174.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/175.png b/projects/challange 8/pokedex/v2/small-images/175.png new file mode 100644 index 0000000..586b92f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/175.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/176.png b/projects/challange 8/pokedex/v2/small-images/176.png new file mode 100644 index 0000000..89b2b5a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/176.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/177.png b/projects/challange 8/pokedex/v2/small-images/177.png new file mode 100644 index 0000000..eb49af6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/177.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/178.png b/projects/challange 8/pokedex/v2/small-images/178.png new file mode 100644 index 0000000..3a311a5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/178.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/179.png b/projects/challange 8/pokedex/v2/small-images/179.png new file mode 100644 index 0000000..84db4e9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/179.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/18.png b/projects/challange 8/pokedex/v2/small-images/18.png new file mode 100644 index 0000000..cb8034b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/18.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/180.png b/projects/challange 8/pokedex/v2/small-images/180.png new file mode 100644 index 0000000..f9af831 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/180.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/181.png b/projects/challange 8/pokedex/v2/small-images/181.png new file mode 100644 index 0000000..8e67f1b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/181.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/182.png b/projects/challange 8/pokedex/v2/small-images/182.png new file mode 100644 index 0000000..fe02d8b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/182.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/183.png b/projects/challange 8/pokedex/v2/small-images/183.png new file mode 100644 index 0000000..e052503 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/183.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/184.png b/projects/challange 8/pokedex/v2/small-images/184.png new file mode 100644 index 0000000..24e9b03 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/184.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/185.png b/projects/challange 8/pokedex/v2/small-images/185.png new file mode 100644 index 0000000..a1f82b7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/185.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/186.png b/projects/challange 8/pokedex/v2/small-images/186.png new file mode 100644 index 0000000..462f30d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/186.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/187.png b/projects/challange 8/pokedex/v2/small-images/187.png new file mode 100644 index 0000000..ecef991 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/187.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/188.png b/projects/challange 8/pokedex/v2/small-images/188.png new file mode 100644 index 0000000..5892d31 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/188.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/189.png b/projects/challange 8/pokedex/v2/small-images/189.png new file mode 100644 index 0000000..d3ce844 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/189.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/19.png b/projects/challange 8/pokedex/v2/small-images/19.png new file mode 100644 index 0000000..e6f6fed Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/19.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/190.png b/projects/challange 8/pokedex/v2/small-images/190.png new file mode 100644 index 0000000..9f14232 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/190.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/191.png b/projects/challange 8/pokedex/v2/small-images/191.png new file mode 100644 index 0000000..1ec39d1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/191.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/192.png b/projects/challange 8/pokedex/v2/small-images/192.png new file mode 100644 index 0000000..34229a9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/192.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/193.png b/projects/challange 8/pokedex/v2/small-images/193.png new file mode 100644 index 0000000..b0177df Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/193.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/194.png b/projects/challange 8/pokedex/v2/small-images/194.png new file mode 100644 index 0000000..fc2b9a8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/194.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/195.png b/projects/challange 8/pokedex/v2/small-images/195.png new file mode 100644 index 0000000..39a5ad9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/195.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/196.png b/projects/challange 8/pokedex/v2/small-images/196.png new file mode 100644 index 0000000..9f55d1f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/196.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/197.png b/projects/challange 8/pokedex/v2/small-images/197.png new file mode 100644 index 0000000..1ee4c2a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/197.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/198.png b/projects/challange 8/pokedex/v2/small-images/198.png new file mode 100644 index 0000000..a435ffd Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/198.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/199.png b/projects/challange 8/pokedex/v2/small-images/199.png new file mode 100644 index 0000000..26af459 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/199.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/2.png b/projects/challange 8/pokedex/v2/small-images/2.png new file mode 100644 index 0000000..233f68e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/2.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/20.png b/projects/challange 8/pokedex/v2/small-images/20.png new file mode 100644 index 0000000..f8021b6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/20.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/200.png b/projects/challange 8/pokedex/v2/small-images/200.png new file mode 100644 index 0000000..0b3f214 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/200.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/201.png b/projects/challange 8/pokedex/v2/small-images/201.png new file mode 100644 index 0000000..09e7eaf Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/201.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/202.png b/projects/challange 8/pokedex/v2/small-images/202.png new file mode 100644 index 0000000..87d7455 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/202.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/203.png b/projects/challange 8/pokedex/v2/small-images/203.png new file mode 100644 index 0000000..270f367 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/203.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/204.png b/projects/challange 8/pokedex/v2/small-images/204.png new file mode 100644 index 0000000..6213515 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/204.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/205.png b/projects/challange 8/pokedex/v2/small-images/205.png new file mode 100644 index 0000000..890614c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/205.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/206.png b/projects/challange 8/pokedex/v2/small-images/206.png new file mode 100644 index 0000000..40ffe1d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/206.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/207.png b/projects/challange 8/pokedex/v2/small-images/207.png new file mode 100644 index 0000000..c7ffb55 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/207.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/208.png b/projects/challange 8/pokedex/v2/small-images/208.png new file mode 100644 index 0000000..409f8e5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/208.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/209.png b/projects/challange 8/pokedex/v2/small-images/209.png new file mode 100644 index 0000000..31b051c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/209.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/21.png b/projects/challange 8/pokedex/v2/small-images/21.png new file mode 100644 index 0000000..4c0b542 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/21.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/210.png b/projects/challange 8/pokedex/v2/small-images/210.png new file mode 100644 index 0000000..f3fe05f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/210.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/211.png b/projects/challange 8/pokedex/v2/small-images/211.png new file mode 100644 index 0000000..019a553 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/211.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/212.png b/projects/challange 8/pokedex/v2/small-images/212.png new file mode 100644 index 0000000..875e892 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/212.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/213.png b/projects/challange 8/pokedex/v2/small-images/213.png new file mode 100644 index 0000000..1e47d4c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/213.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/214.png b/projects/challange 8/pokedex/v2/small-images/214.png new file mode 100644 index 0000000..2642646 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/214.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/215.png b/projects/challange 8/pokedex/v2/small-images/215.png new file mode 100644 index 0000000..9c7f416 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/215.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/216.png b/projects/challange 8/pokedex/v2/small-images/216.png new file mode 100644 index 0000000..99dedbe Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/216.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/217.png b/projects/challange 8/pokedex/v2/small-images/217.png new file mode 100644 index 0000000..4c91dd2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/217.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/218.png b/projects/challange 8/pokedex/v2/small-images/218.png new file mode 100644 index 0000000..f27bc71 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/218.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/219.png b/projects/challange 8/pokedex/v2/small-images/219.png new file mode 100644 index 0000000..dd655e3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/219.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/22.png b/projects/challange 8/pokedex/v2/small-images/22.png new file mode 100644 index 0000000..7f27fd5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/22.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/220.png b/projects/challange 8/pokedex/v2/small-images/220.png new file mode 100644 index 0000000..c6a5823 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/220.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/221.png b/projects/challange 8/pokedex/v2/small-images/221.png new file mode 100644 index 0000000..4d858bf Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/221.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/222.png b/projects/challange 8/pokedex/v2/small-images/222.png new file mode 100644 index 0000000..4de748c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/222.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/223.png b/projects/challange 8/pokedex/v2/small-images/223.png new file mode 100644 index 0000000..d692175 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/223.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/224.png b/projects/challange 8/pokedex/v2/small-images/224.png new file mode 100644 index 0000000..6923a5a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/224.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/225.png b/projects/challange 8/pokedex/v2/small-images/225.png new file mode 100644 index 0000000..c9ebd7a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/225.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/226.png b/projects/challange 8/pokedex/v2/small-images/226.png new file mode 100644 index 0000000..73d8f7e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/226.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/227.png b/projects/challange 8/pokedex/v2/small-images/227.png new file mode 100644 index 0000000..0f43732 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/227.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/228.png b/projects/challange 8/pokedex/v2/small-images/228.png new file mode 100644 index 0000000..179d05e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/228.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/229.png b/projects/challange 8/pokedex/v2/small-images/229.png new file mode 100644 index 0000000..8e68aa6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/229.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/23.png b/projects/challange 8/pokedex/v2/small-images/23.png new file mode 100644 index 0000000..2691365 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/23.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/230.png b/projects/challange 8/pokedex/v2/small-images/230.png new file mode 100644 index 0000000..4538636 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/230.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/231.png b/projects/challange 8/pokedex/v2/small-images/231.png new file mode 100644 index 0000000..81281f0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/231.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/232.png b/projects/challange 8/pokedex/v2/small-images/232.png new file mode 100644 index 0000000..fb67b5a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/232.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/233.png b/projects/challange 8/pokedex/v2/small-images/233.png new file mode 100644 index 0000000..c4b7c02 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/233.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/234.png b/projects/challange 8/pokedex/v2/small-images/234.png new file mode 100644 index 0000000..fbad897 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/234.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/235.png b/projects/challange 8/pokedex/v2/small-images/235.png new file mode 100644 index 0000000..ff587ce Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/235.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/236.png b/projects/challange 8/pokedex/v2/small-images/236.png new file mode 100644 index 0000000..199bd7a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/236.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/237.png b/projects/challange 8/pokedex/v2/small-images/237.png new file mode 100644 index 0000000..4c70ff6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/237.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/238.png b/projects/challange 8/pokedex/v2/small-images/238.png new file mode 100644 index 0000000..1f6ba7e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/238.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/239.png b/projects/challange 8/pokedex/v2/small-images/239.png new file mode 100644 index 0000000..72d7cc8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/239.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/24.png b/projects/challange 8/pokedex/v2/small-images/24.png new file mode 100644 index 0000000..bf47daf Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/24.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/240.png b/projects/challange 8/pokedex/v2/small-images/240.png new file mode 100644 index 0000000..2a7d11f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/240.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/241.png b/projects/challange 8/pokedex/v2/small-images/241.png new file mode 100644 index 0000000..b312445 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/241.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/242.png b/projects/challange 8/pokedex/v2/small-images/242.png new file mode 100644 index 0000000..0d500f5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/242.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/243.png b/projects/challange 8/pokedex/v2/small-images/243.png new file mode 100644 index 0000000..5e7a740 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/243.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/244.png b/projects/challange 8/pokedex/v2/small-images/244.png new file mode 100644 index 0000000..a5b6d01 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/244.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/245.png b/projects/challange 8/pokedex/v2/small-images/245.png new file mode 100644 index 0000000..c97db04 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/245.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/246.png b/projects/challange 8/pokedex/v2/small-images/246.png new file mode 100644 index 0000000..ebb764d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/246.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/247.png b/projects/challange 8/pokedex/v2/small-images/247.png new file mode 100644 index 0000000..7e070fd Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/247.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/248.png b/projects/challange 8/pokedex/v2/small-images/248.png new file mode 100644 index 0000000..180e0e9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/248.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/249.png b/projects/challange 8/pokedex/v2/small-images/249.png new file mode 100644 index 0000000..4fb437c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/249.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/25.png b/projects/challange 8/pokedex/v2/small-images/25.png new file mode 100644 index 0000000..2f93cf9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/25.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/250.png b/projects/challange 8/pokedex/v2/small-images/250.png new file mode 100644 index 0000000..a0ab113 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/250.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/251.png b/projects/challange 8/pokedex/v2/small-images/251.png new file mode 100644 index 0000000..ba0682f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/251.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/252.png b/projects/challange 8/pokedex/v2/small-images/252.png new file mode 100644 index 0000000..8ff2c97 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/252.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/253.png b/projects/challange 8/pokedex/v2/small-images/253.png new file mode 100644 index 0000000..0787224 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/253.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/254.png b/projects/challange 8/pokedex/v2/small-images/254.png new file mode 100644 index 0000000..57d1caf Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/254.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/255.png b/projects/challange 8/pokedex/v2/small-images/255.png new file mode 100644 index 0000000..31a4962 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/255.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/256.png b/projects/challange 8/pokedex/v2/small-images/256.png new file mode 100644 index 0000000..98c4d41 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/256.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/257.png b/projects/challange 8/pokedex/v2/small-images/257.png new file mode 100644 index 0000000..7039127 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/257.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/258.png b/projects/challange 8/pokedex/v2/small-images/258.png new file mode 100644 index 0000000..495b0d5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/258.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/259.png b/projects/challange 8/pokedex/v2/small-images/259.png new file mode 100644 index 0000000..d590855 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/259.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/26.png b/projects/challange 8/pokedex/v2/small-images/26.png new file mode 100644 index 0000000..ed960f2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/26.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/260.png b/projects/challange 8/pokedex/v2/small-images/260.png new file mode 100644 index 0000000..28dd7f1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/260.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/261.png b/projects/challange 8/pokedex/v2/small-images/261.png new file mode 100644 index 0000000..984c79b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/261.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/262.png b/projects/challange 8/pokedex/v2/small-images/262.png new file mode 100644 index 0000000..1a7c703 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/262.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/263.png b/projects/challange 8/pokedex/v2/small-images/263.png new file mode 100644 index 0000000..0be4c9f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/263.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/264.png b/projects/challange 8/pokedex/v2/small-images/264.png new file mode 100644 index 0000000..9183c88 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/264.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/265.png b/projects/challange 8/pokedex/v2/small-images/265.png new file mode 100644 index 0000000..b1f6b42 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/265.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/266.png b/projects/challange 8/pokedex/v2/small-images/266.png new file mode 100644 index 0000000..8147ae2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/266.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/267.png b/projects/challange 8/pokedex/v2/small-images/267.png new file mode 100644 index 0000000..c73117f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/267.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/268.png b/projects/challange 8/pokedex/v2/small-images/268.png new file mode 100644 index 0000000..b8284f7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/268.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/269.png b/projects/challange 8/pokedex/v2/small-images/269.png new file mode 100644 index 0000000..8af1826 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/269.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/27.png b/projects/challange 8/pokedex/v2/small-images/27.png new file mode 100644 index 0000000..a82f8cc Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/27.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/270.png b/projects/challange 8/pokedex/v2/small-images/270.png new file mode 100644 index 0000000..9e0e036 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/270.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/271.png b/projects/challange 8/pokedex/v2/small-images/271.png new file mode 100644 index 0000000..f2f62bd Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/271.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/272.png b/projects/challange 8/pokedex/v2/small-images/272.png new file mode 100644 index 0000000..4a941e9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/272.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/273.png b/projects/challange 8/pokedex/v2/small-images/273.png new file mode 100644 index 0000000..5fe4191 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/273.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/274.png b/projects/challange 8/pokedex/v2/small-images/274.png new file mode 100644 index 0000000..333d20b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/274.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/275.png b/projects/challange 8/pokedex/v2/small-images/275.png new file mode 100644 index 0000000..b80496f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/275.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/276.png b/projects/challange 8/pokedex/v2/small-images/276.png new file mode 100644 index 0000000..0ffca8b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/276.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/277.png b/projects/challange 8/pokedex/v2/small-images/277.png new file mode 100644 index 0000000..a31b37b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/277.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/278.png b/projects/challange 8/pokedex/v2/small-images/278.png new file mode 100644 index 0000000..86e00d1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/278.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/279.png b/projects/challange 8/pokedex/v2/small-images/279.png new file mode 100644 index 0000000..07e7d73 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/279.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/28.png b/projects/challange 8/pokedex/v2/small-images/28.png new file mode 100644 index 0000000..417943f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/28.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/280.png b/projects/challange 8/pokedex/v2/small-images/280.png new file mode 100644 index 0000000..a713300 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/280.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/281.png b/projects/challange 8/pokedex/v2/small-images/281.png new file mode 100644 index 0000000..3b78e21 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/281.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/282.png b/projects/challange 8/pokedex/v2/small-images/282.png new file mode 100644 index 0000000..d2d0578 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/282.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/283.png b/projects/challange 8/pokedex/v2/small-images/283.png new file mode 100644 index 0000000..d7a1450 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/283.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/284.png b/projects/challange 8/pokedex/v2/small-images/284.png new file mode 100644 index 0000000..7bf75c8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/284.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/285.png b/projects/challange 8/pokedex/v2/small-images/285.png new file mode 100644 index 0000000..16ab131 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/285.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/286.png b/projects/challange 8/pokedex/v2/small-images/286.png new file mode 100644 index 0000000..1cbab7b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/286.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/287.png b/projects/challange 8/pokedex/v2/small-images/287.png new file mode 100644 index 0000000..ff4c525 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/287.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/288.png b/projects/challange 8/pokedex/v2/small-images/288.png new file mode 100644 index 0000000..9f05e38 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/288.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/289.png b/projects/challange 8/pokedex/v2/small-images/289.png new file mode 100644 index 0000000..3a5bdc0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/289.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/29.png b/projects/challange 8/pokedex/v2/small-images/29.png new file mode 100644 index 0000000..82a0992 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/29.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/290.png b/projects/challange 8/pokedex/v2/small-images/290.png new file mode 100644 index 0000000..84db4a9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/290.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/291.png b/projects/challange 8/pokedex/v2/small-images/291.png new file mode 100644 index 0000000..cca20a5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/291.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/292.png b/projects/challange 8/pokedex/v2/small-images/292.png new file mode 100644 index 0000000..9f3dec1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/292.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/293.png b/projects/challange 8/pokedex/v2/small-images/293.png new file mode 100644 index 0000000..49cba1e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/293.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/294.png b/projects/challange 8/pokedex/v2/small-images/294.png new file mode 100644 index 0000000..57d4d6f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/294.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/295.png b/projects/challange 8/pokedex/v2/small-images/295.png new file mode 100644 index 0000000..8855c35 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/295.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/296.png b/projects/challange 8/pokedex/v2/small-images/296.png new file mode 100644 index 0000000..0ea1162 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/296.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/297.png b/projects/challange 8/pokedex/v2/small-images/297.png new file mode 100644 index 0000000..76b78b3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/297.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/298.png b/projects/challange 8/pokedex/v2/small-images/298.png new file mode 100644 index 0000000..5155e95 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/298.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/299.png b/projects/challange 8/pokedex/v2/small-images/299.png new file mode 100644 index 0000000..6d7153a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/299.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/3.png b/projects/challange 8/pokedex/v2/small-images/3.png new file mode 100644 index 0000000..3efe1b5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/3.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/30.png b/projects/challange 8/pokedex/v2/small-images/30.png new file mode 100644 index 0000000..e8f1d8c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/30.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/300.png b/projects/challange 8/pokedex/v2/small-images/300.png new file mode 100644 index 0000000..c5bde59 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/300.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/301.png b/projects/challange 8/pokedex/v2/small-images/301.png new file mode 100644 index 0000000..15a4d31 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/301.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/302.png b/projects/challange 8/pokedex/v2/small-images/302.png new file mode 100644 index 0000000..b1cf891 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/302.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/303.png b/projects/challange 8/pokedex/v2/small-images/303.png new file mode 100644 index 0000000..f3e348b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/303.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/304.png b/projects/challange 8/pokedex/v2/small-images/304.png new file mode 100644 index 0000000..5c86fdf Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/304.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/305.png b/projects/challange 8/pokedex/v2/small-images/305.png new file mode 100644 index 0000000..7c169e5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/305.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/306.png b/projects/challange 8/pokedex/v2/small-images/306.png new file mode 100644 index 0000000..c920467 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/306.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/307.png b/projects/challange 8/pokedex/v2/small-images/307.png new file mode 100644 index 0000000..2ef3455 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/307.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/308.png b/projects/challange 8/pokedex/v2/small-images/308.png new file mode 100644 index 0000000..4826b5e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/308.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/309.png b/projects/challange 8/pokedex/v2/small-images/309.png new file mode 100644 index 0000000..6bd996b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/309.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/31.png b/projects/challange 8/pokedex/v2/small-images/31.png new file mode 100644 index 0000000..bccad5f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/31.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/310.png b/projects/challange 8/pokedex/v2/small-images/310.png new file mode 100644 index 0000000..9715ede Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/310.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/311.png b/projects/challange 8/pokedex/v2/small-images/311.png new file mode 100644 index 0000000..4c76a12 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/311.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/312.png b/projects/challange 8/pokedex/v2/small-images/312.png new file mode 100644 index 0000000..d709d5c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/312.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/313.png b/projects/challange 8/pokedex/v2/small-images/313.png new file mode 100644 index 0000000..9f4746b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/313.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/314.png b/projects/challange 8/pokedex/v2/small-images/314.png new file mode 100644 index 0000000..6f1cda1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/314.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/315.png b/projects/challange 8/pokedex/v2/small-images/315.png new file mode 100644 index 0000000..f5dea00 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/315.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/316.png b/projects/challange 8/pokedex/v2/small-images/316.png new file mode 100644 index 0000000..1f78ee5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/316.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/317.png b/projects/challange 8/pokedex/v2/small-images/317.png new file mode 100644 index 0000000..56416d4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/317.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/318.png b/projects/challange 8/pokedex/v2/small-images/318.png new file mode 100644 index 0000000..75007d4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/318.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/319.png b/projects/challange 8/pokedex/v2/small-images/319.png new file mode 100644 index 0000000..192f99e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/319.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/32.png b/projects/challange 8/pokedex/v2/small-images/32.png new file mode 100644 index 0000000..8fe1175 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/32.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/320.png b/projects/challange 8/pokedex/v2/small-images/320.png new file mode 100644 index 0000000..a751090 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/320.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/321.png b/projects/challange 8/pokedex/v2/small-images/321.png new file mode 100644 index 0000000..7a35d45 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/321.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/322.png b/projects/challange 8/pokedex/v2/small-images/322.png new file mode 100644 index 0000000..7128461 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/322.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/323.png b/projects/challange 8/pokedex/v2/small-images/323.png new file mode 100644 index 0000000..85339d4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/323.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/324.png b/projects/challange 8/pokedex/v2/small-images/324.png new file mode 100644 index 0000000..8f93621 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/324.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/325.png b/projects/challange 8/pokedex/v2/small-images/325.png new file mode 100644 index 0000000..4a0ce45 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/325.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/326.png b/projects/challange 8/pokedex/v2/small-images/326.png new file mode 100644 index 0000000..6b10c1f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/326.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/327.png b/projects/challange 8/pokedex/v2/small-images/327.png new file mode 100644 index 0000000..7b1002d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/327.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/328.png b/projects/challange 8/pokedex/v2/small-images/328.png new file mode 100644 index 0000000..19bd477 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/328.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/329.png b/projects/challange 8/pokedex/v2/small-images/329.png new file mode 100644 index 0000000..8d0b430 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/329.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/33.png b/projects/challange 8/pokedex/v2/small-images/33.png new file mode 100644 index 0000000..caf90d9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/33.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/330.png b/projects/challange 8/pokedex/v2/small-images/330.png new file mode 100644 index 0000000..4ba1ef9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/330.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/331.png b/projects/challange 8/pokedex/v2/small-images/331.png new file mode 100644 index 0000000..c3de17f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/331.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/332.png b/projects/challange 8/pokedex/v2/small-images/332.png new file mode 100644 index 0000000..1da0b05 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/332.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/333.png b/projects/challange 8/pokedex/v2/small-images/333.png new file mode 100644 index 0000000..dc1af71 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/333.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/334.png b/projects/challange 8/pokedex/v2/small-images/334.png new file mode 100644 index 0000000..6c3f72f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/334.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/335.png b/projects/challange 8/pokedex/v2/small-images/335.png new file mode 100644 index 0000000..e9b89af Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/335.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/336.png b/projects/challange 8/pokedex/v2/small-images/336.png new file mode 100644 index 0000000..95c4bdc Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/336.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/337.png b/projects/challange 8/pokedex/v2/small-images/337.png new file mode 100644 index 0000000..2d37f88 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/337.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/338.png b/projects/challange 8/pokedex/v2/small-images/338.png new file mode 100644 index 0000000..f21aa7e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/338.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/339.png b/projects/challange 8/pokedex/v2/small-images/339.png new file mode 100644 index 0000000..f363e86 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/339.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/34.png b/projects/challange 8/pokedex/v2/small-images/34.png new file mode 100644 index 0000000..02d2eb5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/34.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/340.png b/projects/challange 8/pokedex/v2/small-images/340.png new file mode 100644 index 0000000..30b5ac8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/340.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/341.png b/projects/challange 8/pokedex/v2/small-images/341.png new file mode 100644 index 0000000..f7063b6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/341.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/342.png b/projects/challange 8/pokedex/v2/small-images/342.png new file mode 100644 index 0000000..5709960 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/342.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/343.png b/projects/challange 8/pokedex/v2/small-images/343.png new file mode 100644 index 0000000..5825094 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/343.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/344.png b/projects/challange 8/pokedex/v2/small-images/344.png new file mode 100644 index 0000000..eccad92 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/344.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/345.png b/projects/challange 8/pokedex/v2/small-images/345.png new file mode 100644 index 0000000..40fda68 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/345.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/346.png b/projects/challange 8/pokedex/v2/small-images/346.png new file mode 100644 index 0000000..34f6f97 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/346.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/347.png b/projects/challange 8/pokedex/v2/small-images/347.png new file mode 100644 index 0000000..695e2e8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/347.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/348.png b/projects/challange 8/pokedex/v2/small-images/348.png new file mode 100644 index 0000000..4185521 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/348.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/349.png b/projects/challange 8/pokedex/v2/small-images/349.png new file mode 100644 index 0000000..c15d029 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/349.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/35.png b/projects/challange 8/pokedex/v2/small-images/35.png new file mode 100644 index 0000000..0f6385d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/35.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/350.png b/projects/challange 8/pokedex/v2/small-images/350.png new file mode 100644 index 0000000..77eafb3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/350.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/351.png b/projects/challange 8/pokedex/v2/small-images/351.png new file mode 100644 index 0000000..2c0598b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/351.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/352.png b/projects/challange 8/pokedex/v2/small-images/352.png new file mode 100644 index 0000000..5be60d7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/352.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/353.png b/projects/challange 8/pokedex/v2/small-images/353.png new file mode 100644 index 0000000..d30e4a0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/353.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/354.png b/projects/challange 8/pokedex/v2/small-images/354.png new file mode 100644 index 0000000..5f30ffa Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/354.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/355.png b/projects/challange 8/pokedex/v2/small-images/355.png new file mode 100644 index 0000000..2cc68f6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/355.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/356.png b/projects/challange 8/pokedex/v2/small-images/356.png new file mode 100644 index 0000000..591e41b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/356.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/357.png b/projects/challange 8/pokedex/v2/small-images/357.png new file mode 100644 index 0000000..5cedef0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/357.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/358.png b/projects/challange 8/pokedex/v2/small-images/358.png new file mode 100644 index 0000000..bfe2ef6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/358.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/359.png b/projects/challange 8/pokedex/v2/small-images/359.png new file mode 100644 index 0000000..2883705 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/359.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/36.png b/projects/challange 8/pokedex/v2/small-images/36.png new file mode 100644 index 0000000..0aa5ae2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/36.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/360.png b/projects/challange 8/pokedex/v2/small-images/360.png new file mode 100644 index 0000000..b765cff Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/360.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/361.png b/projects/challange 8/pokedex/v2/small-images/361.png new file mode 100644 index 0000000..381a41c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/361.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/362.png b/projects/challange 8/pokedex/v2/small-images/362.png new file mode 100644 index 0000000..a4f6da1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/362.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/363.png b/projects/challange 8/pokedex/v2/small-images/363.png new file mode 100644 index 0000000..9c1c3ac Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/363.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/364.png b/projects/challange 8/pokedex/v2/small-images/364.png new file mode 100644 index 0000000..6381eed Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/364.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/365.png b/projects/challange 8/pokedex/v2/small-images/365.png new file mode 100644 index 0000000..ba80e22 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/365.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/366.png b/projects/challange 8/pokedex/v2/small-images/366.png new file mode 100644 index 0000000..0738334 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/366.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/367.png b/projects/challange 8/pokedex/v2/small-images/367.png new file mode 100644 index 0000000..d6c9f2d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/367.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/368.png b/projects/challange 8/pokedex/v2/small-images/368.png new file mode 100644 index 0000000..f1c74b6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/368.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/369.png b/projects/challange 8/pokedex/v2/small-images/369.png new file mode 100644 index 0000000..bcaf5b5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/369.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/37.png b/projects/challange 8/pokedex/v2/small-images/37.png new file mode 100644 index 0000000..f2da5dc Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/37.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/370.png b/projects/challange 8/pokedex/v2/small-images/370.png new file mode 100644 index 0000000..ea9440a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/370.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/371.png b/projects/challange 8/pokedex/v2/small-images/371.png new file mode 100644 index 0000000..09aa98c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/371.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/372.png b/projects/challange 8/pokedex/v2/small-images/372.png new file mode 100644 index 0000000..cf9d730 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/372.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/373.png b/projects/challange 8/pokedex/v2/small-images/373.png new file mode 100644 index 0000000..d7bc000 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/373.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/374.png b/projects/challange 8/pokedex/v2/small-images/374.png new file mode 100644 index 0000000..d8abfcb Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/374.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/375.png b/projects/challange 8/pokedex/v2/small-images/375.png new file mode 100644 index 0000000..4076c62 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/375.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/376.png b/projects/challange 8/pokedex/v2/small-images/376.png new file mode 100644 index 0000000..d0c3073 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/376.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/377.png b/projects/challange 8/pokedex/v2/small-images/377.png new file mode 100644 index 0000000..e44792b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/377.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/378.png b/projects/challange 8/pokedex/v2/small-images/378.png new file mode 100644 index 0000000..0d86e88 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/378.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/379.png b/projects/challange 8/pokedex/v2/small-images/379.png new file mode 100644 index 0000000..67865d8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/379.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/38.png b/projects/challange 8/pokedex/v2/small-images/38.png new file mode 100644 index 0000000..76d9c50 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/38.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/380.png b/projects/challange 8/pokedex/v2/small-images/380.png new file mode 100644 index 0000000..ca9779b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/380.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/381.png b/projects/challange 8/pokedex/v2/small-images/381.png new file mode 100644 index 0000000..1e381ec Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/381.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/382.png b/projects/challange 8/pokedex/v2/small-images/382.png new file mode 100644 index 0000000..183025a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/382.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/383.png b/projects/challange 8/pokedex/v2/small-images/383.png new file mode 100644 index 0000000..eb80afa Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/383.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/384.png b/projects/challange 8/pokedex/v2/small-images/384.png new file mode 100644 index 0000000..bf0b76e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/384.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/385.png b/projects/challange 8/pokedex/v2/small-images/385.png new file mode 100644 index 0000000..4b0adc4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/385.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/386.png b/projects/challange 8/pokedex/v2/small-images/386.png new file mode 100644 index 0000000..c983c4b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/386.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/387.png b/projects/challange 8/pokedex/v2/small-images/387.png new file mode 100644 index 0000000..cd22dbe Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/387.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/388.png b/projects/challange 8/pokedex/v2/small-images/388.png new file mode 100644 index 0000000..7349a2d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/388.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/389.png b/projects/challange 8/pokedex/v2/small-images/389.png new file mode 100644 index 0000000..ab29b01 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/389.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/39.png b/projects/challange 8/pokedex/v2/small-images/39.png new file mode 100644 index 0000000..e20f53b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/39.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/390.png b/projects/challange 8/pokedex/v2/small-images/390.png new file mode 100644 index 0000000..261ecdd Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/390.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/391.png b/projects/challange 8/pokedex/v2/small-images/391.png new file mode 100644 index 0000000..cf2e1c3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/391.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/392.png b/projects/challange 8/pokedex/v2/small-images/392.png new file mode 100644 index 0000000..17fe2d3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/392.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/393.png b/projects/challange 8/pokedex/v2/small-images/393.png new file mode 100644 index 0000000..9125ddf Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/393.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/394.png b/projects/challange 8/pokedex/v2/small-images/394.png new file mode 100644 index 0000000..6cb8573 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/394.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/395.png b/projects/challange 8/pokedex/v2/small-images/395.png new file mode 100644 index 0000000..c314afc Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/395.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/396.png b/projects/challange 8/pokedex/v2/small-images/396.png new file mode 100644 index 0000000..ca7dc27 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/396.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/397.png b/projects/challange 8/pokedex/v2/small-images/397.png new file mode 100644 index 0000000..9798297 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/397.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/398.png b/projects/challange 8/pokedex/v2/small-images/398.png new file mode 100644 index 0000000..d6ad509 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/398.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/399.png b/projects/challange 8/pokedex/v2/small-images/399.png new file mode 100644 index 0000000..cab5783 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/399.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/4.png b/projects/challange 8/pokedex/v2/small-images/4.png new file mode 100644 index 0000000..c540db8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/4.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/40.png b/projects/challange 8/pokedex/v2/small-images/40.png new file mode 100644 index 0000000..e597ba6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/40.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/400.png b/projects/challange 8/pokedex/v2/small-images/400.png new file mode 100644 index 0000000..9b361e7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/400.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/401.png b/projects/challange 8/pokedex/v2/small-images/401.png new file mode 100644 index 0000000..f4ffd79 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/401.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/402.png b/projects/challange 8/pokedex/v2/small-images/402.png new file mode 100644 index 0000000..993c333 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/402.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/403.png b/projects/challange 8/pokedex/v2/small-images/403.png new file mode 100644 index 0000000..1e42a6b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/403.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/404.png b/projects/challange 8/pokedex/v2/small-images/404.png new file mode 100644 index 0000000..ea67cc3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/404.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/405.png b/projects/challange 8/pokedex/v2/small-images/405.png new file mode 100644 index 0000000..8c448b4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/405.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/406.png b/projects/challange 8/pokedex/v2/small-images/406.png new file mode 100644 index 0000000..1ca592e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/406.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/407.png b/projects/challange 8/pokedex/v2/small-images/407.png new file mode 100644 index 0000000..447c513 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/407.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/408.png b/projects/challange 8/pokedex/v2/small-images/408.png new file mode 100644 index 0000000..5cb7b19 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/408.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/409.png b/projects/challange 8/pokedex/v2/small-images/409.png new file mode 100644 index 0000000..fcc7986 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/409.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/41.png b/projects/challange 8/pokedex/v2/small-images/41.png new file mode 100644 index 0000000..b003a3a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/41.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/410.png b/projects/challange 8/pokedex/v2/small-images/410.png new file mode 100644 index 0000000..75f9f35 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/410.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/411.png b/projects/challange 8/pokedex/v2/small-images/411.png new file mode 100644 index 0000000..32e496a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/411.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/412.png b/projects/challange 8/pokedex/v2/small-images/412.png new file mode 100644 index 0000000..8e86ffe Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/412.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/413.png b/projects/challange 8/pokedex/v2/small-images/413.png new file mode 100644 index 0000000..605485e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/413.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/414.png b/projects/challange 8/pokedex/v2/small-images/414.png new file mode 100644 index 0000000..7f9d2d8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/414.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/415.png b/projects/challange 8/pokedex/v2/small-images/415.png new file mode 100644 index 0000000..3567d88 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/415.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/416.png b/projects/challange 8/pokedex/v2/small-images/416.png new file mode 100644 index 0000000..0ae509c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/416.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/417.png b/projects/challange 8/pokedex/v2/small-images/417.png new file mode 100644 index 0000000..78b9ea3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/417.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/418.png b/projects/challange 8/pokedex/v2/small-images/418.png new file mode 100644 index 0000000..e54c078 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/418.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/419.png b/projects/challange 8/pokedex/v2/small-images/419.png new file mode 100644 index 0000000..6a15128 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/419.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/42.png b/projects/challange 8/pokedex/v2/small-images/42.png new file mode 100644 index 0000000..dd25935 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/42.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/420.png b/projects/challange 8/pokedex/v2/small-images/420.png new file mode 100644 index 0000000..9922322 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/420.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/421.png b/projects/challange 8/pokedex/v2/small-images/421.png new file mode 100644 index 0000000..620d193 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/421.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/422.png b/projects/challange 8/pokedex/v2/small-images/422.png new file mode 100644 index 0000000..fe24c47 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/422.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/423.png b/projects/challange 8/pokedex/v2/small-images/423.png new file mode 100644 index 0000000..a5d8118 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/423.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/424.png b/projects/challange 8/pokedex/v2/small-images/424.png new file mode 100644 index 0000000..46fe4ad Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/424.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/425.png b/projects/challange 8/pokedex/v2/small-images/425.png new file mode 100644 index 0000000..ddd3e18 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/425.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/426.png b/projects/challange 8/pokedex/v2/small-images/426.png new file mode 100644 index 0000000..edcffd9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/426.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/427.png b/projects/challange 8/pokedex/v2/small-images/427.png new file mode 100644 index 0000000..9d3cbb0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/427.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/428.png b/projects/challange 8/pokedex/v2/small-images/428.png new file mode 100644 index 0000000..0a4edbf Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/428.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/429.png b/projects/challange 8/pokedex/v2/small-images/429.png new file mode 100644 index 0000000..3e86e16 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/429.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/43.png b/projects/challange 8/pokedex/v2/small-images/43.png new file mode 100644 index 0000000..e988750 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/43.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/430.png b/projects/challange 8/pokedex/v2/small-images/430.png new file mode 100644 index 0000000..8cfe895 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/430.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/431.png b/projects/challange 8/pokedex/v2/small-images/431.png new file mode 100644 index 0000000..04b81eb Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/431.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/432.png b/projects/challange 8/pokedex/v2/small-images/432.png new file mode 100644 index 0000000..e974220 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/432.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/433.png b/projects/challange 8/pokedex/v2/small-images/433.png new file mode 100644 index 0000000..86b1d97 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/433.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/434.png b/projects/challange 8/pokedex/v2/small-images/434.png new file mode 100644 index 0000000..6e99b3c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/434.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/435.png b/projects/challange 8/pokedex/v2/small-images/435.png new file mode 100644 index 0000000..91d45b8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/435.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/436.png b/projects/challange 8/pokedex/v2/small-images/436.png new file mode 100644 index 0000000..e459b2d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/436.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/437.png b/projects/challange 8/pokedex/v2/small-images/437.png new file mode 100644 index 0000000..6bf0409 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/437.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/438.png b/projects/challange 8/pokedex/v2/small-images/438.png new file mode 100644 index 0000000..8f6991f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/438.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/439.png b/projects/challange 8/pokedex/v2/small-images/439.png new file mode 100644 index 0000000..9d25bef Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/439.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/44.png b/projects/challange 8/pokedex/v2/small-images/44.png new file mode 100644 index 0000000..3cc7804 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/44.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/440.png b/projects/challange 8/pokedex/v2/small-images/440.png new file mode 100644 index 0000000..fc46b92 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/440.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/441.png b/projects/challange 8/pokedex/v2/small-images/441.png new file mode 100644 index 0000000..179ffeb Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/441.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/442.png b/projects/challange 8/pokedex/v2/small-images/442.png new file mode 100644 index 0000000..3035a38 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/442.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/443.png b/projects/challange 8/pokedex/v2/small-images/443.png new file mode 100644 index 0000000..c61e825 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/443.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/444.png b/projects/challange 8/pokedex/v2/small-images/444.png new file mode 100644 index 0000000..401dab2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/444.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/445.png b/projects/challange 8/pokedex/v2/small-images/445.png new file mode 100644 index 0000000..83936e1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/445.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/446.png b/projects/challange 8/pokedex/v2/small-images/446.png new file mode 100644 index 0000000..cba8869 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/446.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/447.png b/projects/challange 8/pokedex/v2/small-images/447.png new file mode 100644 index 0000000..3cc3f73 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/447.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/448.png b/projects/challange 8/pokedex/v2/small-images/448.png new file mode 100644 index 0000000..e4cc2f3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/448.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/449.png b/projects/challange 8/pokedex/v2/small-images/449.png new file mode 100644 index 0000000..844746f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/449.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/45.png b/projects/challange 8/pokedex/v2/small-images/45.png new file mode 100644 index 0000000..ddf5599 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/45.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/450.png b/projects/challange 8/pokedex/v2/small-images/450.png new file mode 100644 index 0000000..ab6515f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/450.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/451.png b/projects/challange 8/pokedex/v2/small-images/451.png new file mode 100644 index 0000000..680a433 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/451.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/452.png b/projects/challange 8/pokedex/v2/small-images/452.png new file mode 100644 index 0000000..326d134 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/452.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/453.png b/projects/challange 8/pokedex/v2/small-images/453.png new file mode 100644 index 0000000..633cb31 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/453.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/454.png b/projects/challange 8/pokedex/v2/small-images/454.png new file mode 100644 index 0000000..67af74f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/454.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/455.png b/projects/challange 8/pokedex/v2/small-images/455.png new file mode 100644 index 0000000..a134553 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/455.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/456.png b/projects/challange 8/pokedex/v2/small-images/456.png new file mode 100644 index 0000000..44e088a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/456.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/457.png b/projects/challange 8/pokedex/v2/small-images/457.png new file mode 100644 index 0000000..f9655f2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/457.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/458.png b/projects/challange 8/pokedex/v2/small-images/458.png new file mode 100644 index 0000000..656409d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/458.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/459.png b/projects/challange 8/pokedex/v2/small-images/459.png new file mode 100644 index 0000000..3612bf4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/459.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/46.png b/projects/challange 8/pokedex/v2/small-images/46.png new file mode 100644 index 0000000..c2eccde Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/46.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/460.png b/projects/challange 8/pokedex/v2/small-images/460.png new file mode 100644 index 0000000..d4b40e7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/460.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/461.png b/projects/challange 8/pokedex/v2/small-images/461.png new file mode 100644 index 0000000..4582cde Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/461.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/462.png b/projects/challange 8/pokedex/v2/small-images/462.png new file mode 100644 index 0000000..e4e7b8c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/462.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/463.png b/projects/challange 8/pokedex/v2/small-images/463.png new file mode 100644 index 0000000..e088dcd Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/463.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/464.png b/projects/challange 8/pokedex/v2/small-images/464.png new file mode 100644 index 0000000..e65a87f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/464.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/465.png b/projects/challange 8/pokedex/v2/small-images/465.png new file mode 100644 index 0000000..de8dfad Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/465.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/466.png b/projects/challange 8/pokedex/v2/small-images/466.png new file mode 100644 index 0000000..ceb343e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/466.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/467.png b/projects/challange 8/pokedex/v2/small-images/467.png new file mode 100644 index 0000000..2c310bf Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/467.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/468.png b/projects/challange 8/pokedex/v2/small-images/468.png new file mode 100644 index 0000000..e408bd2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/468.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/469.png b/projects/challange 8/pokedex/v2/small-images/469.png new file mode 100644 index 0000000..a009d4f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/469.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/47.png b/projects/challange 8/pokedex/v2/small-images/47.png new file mode 100644 index 0000000..33f63fd Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/47.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/470.png b/projects/challange 8/pokedex/v2/small-images/470.png new file mode 100644 index 0000000..d4fc0a5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/470.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/471.png b/projects/challange 8/pokedex/v2/small-images/471.png new file mode 100644 index 0000000..e41ac14 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/471.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/472.png b/projects/challange 8/pokedex/v2/small-images/472.png new file mode 100644 index 0000000..61825c7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/472.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/473.png b/projects/challange 8/pokedex/v2/small-images/473.png new file mode 100644 index 0000000..a38ac44 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/473.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/474.png b/projects/challange 8/pokedex/v2/small-images/474.png new file mode 100644 index 0000000..2cdde19 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/474.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/475.png b/projects/challange 8/pokedex/v2/small-images/475.png new file mode 100644 index 0000000..0d9350e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/475.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/476.png b/projects/challange 8/pokedex/v2/small-images/476.png new file mode 100644 index 0000000..9477e7a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/476.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/477.png b/projects/challange 8/pokedex/v2/small-images/477.png new file mode 100644 index 0000000..9626f66 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/477.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/478.png b/projects/challange 8/pokedex/v2/small-images/478.png new file mode 100644 index 0000000..4e29601 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/478.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/479.png b/projects/challange 8/pokedex/v2/small-images/479.png new file mode 100644 index 0000000..74e16b8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/479.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/48.png b/projects/challange 8/pokedex/v2/small-images/48.png new file mode 100644 index 0000000..7ce73e7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/48.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/480.png b/projects/challange 8/pokedex/v2/small-images/480.png new file mode 100644 index 0000000..1122f5b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/480.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/481.png b/projects/challange 8/pokedex/v2/small-images/481.png new file mode 100644 index 0000000..0831acb Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/481.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/482.png b/projects/challange 8/pokedex/v2/small-images/482.png new file mode 100644 index 0000000..ceb5966 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/482.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/483.png b/projects/challange 8/pokedex/v2/small-images/483.png new file mode 100644 index 0000000..4e78374 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/483.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/484.png b/projects/challange 8/pokedex/v2/small-images/484.png new file mode 100644 index 0000000..aacd9e4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/484.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/485.png b/projects/challange 8/pokedex/v2/small-images/485.png new file mode 100644 index 0000000..a8e6149 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/485.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/486.png b/projects/challange 8/pokedex/v2/small-images/486.png new file mode 100644 index 0000000..54f724f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/486.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/487.png b/projects/challange 8/pokedex/v2/small-images/487.png new file mode 100644 index 0000000..b587498 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/487.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/488.png b/projects/challange 8/pokedex/v2/small-images/488.png new file mode 100644 index 0000000..9668980 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/488.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/489.png b/projects/challange 8/pokedex/v2/small-images/489.png new file mode 100644 index 0000000..c15e6eb Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/489.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/49.png b/projects/challange 8/pokedex/v2/small-images/49.png new file mode 100644 index 0000000..ae7605a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/49.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/490.png b/projects/challange 8/pokedex/v2/small-images/490.png new file mode 100644 index 0000000..0358e1a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/490.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/491.png b/projects/challange 8/pokedex/v2/small-images/491.png new file mode 100644 index 0000000..a1ce55e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/491.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/492.png b/projects/challange 8/pokedex/v2/small-images/492.png new file mode 100644 index 0000000..b17af08 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/492.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/493.png b/projects/challange 8/pokedex/v2/small-images/493.png new file mode 100644 index 0000000..3feebc1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/493.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/494.png b/projects/challange 8/pokedex/v2/small-images/494.png new file mode 100644 index 0000000..9fcff30 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/494.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/495.png b/projects/challange 8/pokedex/v2/small-images/495.png new file mode 100644 index 0000000..056bdaa Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/495.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/496.png b/projects/challange 8/pokedex/v2/small-images/496.png new file mode 100644 index 0000000..9b89ee6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/496.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/497.png b/projects/challange 8/pokedex/v2/small-images/497.png new file mode 100644 index 0000000..bc1258d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/497.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/498.png b/projects/challange 8/pokedex/v2/small-images/498.png new file mode 100644 index 0000000..17dc290 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/498.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/499.png b/projects/challange 8/pokedex/v2/small-images/499.png new file mode 100644 index 0000000..b52fcba Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/499.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/5.png b/projects/challange 8/pokedex/v2/small-images/5.png new file mode 100644 index 0000000..61c57be Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/5.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/50.png b/projects/challange 8/pokedex/v2/small-images/50.png new file mode 100644 index 0000000..0de9308 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/50.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/500.png b/projects/challange 8/pokedex/v2/small-images/500.png new file mode 100644 index 0000000..3368583 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/500.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/501.png b/projects/challange 8/pokedex/v2/small-images/501.png new file mode 100644 index 0000000..cc24d64 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/501.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/502.png b/projects/challange 8/pokedex/v2/small-images/502.png new file mode 100644 index 0000000..0d64e09 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/502.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/503.png b/projects/challange 8/pokedex/v2/small-images/503.png new file mode 100644 index 0000000..1829866 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/503.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/504.png b/projects/challange 8/pokedex/v2/small-images/504.png new file mode 100644 index 0000000..0dd5401 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/504.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/505.png b/projects/challange 8/pokedex/v2/small-images/505.png new file mode 100644 index 0000000..125df29 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/505.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/506.png b/projects/challange 8/pokedex/v2/small-images/506.png new file mode 100644 index 0000000..5e1c610 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/506.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/507.png b/projects/challange 8/pokedex/v2/small-images/507.png new file mode 100644 index 0000000..a92ad93 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/507.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/508.png b/projects/challange 8/pokedex/v2/small-images/508.png new file mode 100644 index 0000000..687f7e1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/508.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/509.png b/projects/challange 8/pokedex/v2/small-images/509.png new file mode 100644 index 0000000..bcf2521 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/509.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/51.png b/projects/challange 8/pokedex/v2/small-images/51.png new file mode 100644 index 0000000..98e503e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/51.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/510.png b/projects/challange 8/pokedex/v2/small-images/510.png new file mode 100644 index 0000000..18807ee Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/510.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/511.png b/projects/challange 8/pokedex/v2/small-images/511.png new file mode 100644 index 0000000..07e0dfc Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/511.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/512.png b/projects/challange 8/pokedex/v2/small-images/512.png new file mode 100644 index 0000000..136512f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/512.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/513.png b/projects/challange 8/pokedex/v2/small-images/513.png new file mode 100644 index 0000000..2616b2f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/513.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/514.png b/projects/challange 8/pokedex/v2/small-images/514.png new file mode 100644 index 0000000..293ac88 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/514.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/515.png b/projects/challange 8/pokedex/v2/small-images/515.png new file mode 100644 index 0000000..1861ee7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/515.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/516.png b/projects/challange 8/pokedex/v2/small-images/516.png new file mode 100644 index 0000000..efa1ece Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/516.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/517.png b/projects/challange 8/pokedex/v2/small-images/517.png new file mode 100644 index 0000000..e99d1a5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/517.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/518.png b/projects/challange 8/pokedex/v2/small-images/518.png new file mode 100644 index 0000000..618de66 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/518.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/519.png b/projects/challange 8/pokedex/v2/small-images/519.png new file mode 100644 index 0000000..3b06e6b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/519.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/52.png b/projects/challange 8/pokedex/v2/small-images/52.png new file mode 100644 index 0000000..f35a276 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/52.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/520.png b/projects/challange 8/pokedex/v2/small-images/520.png new file mode 100644 index 0000000..3e58c92 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/520.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/521.png b/projects/challange 8/pokedex/v2/small-images/521.png new file mode 100644 index 0000000..cfeb4a7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/521.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/522.png b/projects/challange 8/pokedex/v2/small-images/522.png new file mode 100644 index 0000000..458a4d8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/522.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/523.png b/projects/challange 8/pokedex/v2/small-images/523.png new file mode 100644 index 0000000..3f873b1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/523.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/524.png b/projects/challange 8/pokedex/v2/small-images/524.png new file mode 100644 index 0000000..44194af Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/524.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/525.png b/projects/challange 8/pokedex/v2/small-images/525.png new file mode 100644 index 0000000..5b5b2d4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/525.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/526.png b/projects/challange 8/pokedex/v2/small-images/526.png new file mode 100644 index 0000000..a3d728e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/526.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/527.png b/projects/challange 8/pokedex/v2/small-images/527.png new file mode 100644 index 0000000..2723da5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/527.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/528.png b/projects/challange 8/pokedex/v2/small-images/528.png new file mode 100644 index 0000000..aaea346 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/528.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/529.png b/projects/challange 8/pokedex/v2/small-images/529.png new file mode 100644 index 0000000..4cec6ac Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/529.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/53.png b/projects/challange 8/pokedex/v2/small-images/53.png new file mode 100644 index 0000000..43fb723 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/53.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/530.png b/projects/challange 8/pokedex/v2/small-images/530.png new file mode 100644 index 0000000..baebd8c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/530.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/531.png b/projects/challange 8/pokedex/v2/small-images/531.png new file mode 100644 index 0000000..52b147b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/531.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/532.png b/projects/challange 8/pokedex/v2/small-images/532.png new file mode 100644 index 0000000..bc3ad31 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/532.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/533.png b/projects/challange 8/pokedex/v2/small-images/533.png new file mode 100644 index 0000000..e81686c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/533.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/534.png b/projects/challange 8/pokedex/v2/small-images/534.png new file mode 100644 index 0000000..69e8ac6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/534.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/535.png b/projects/challange 8/pokedex/v2/small-images/535.png new file mode 100644 index 0000000..6d66311 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/535.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/536.png b/projects/challange 8/pokedex/v2/small-images/536.png new file mode 100644 index 0000000..df2831e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/536.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/537.png b/projects/challange 8/pokedex/v2/small-images/537.png new file mode 100644 index 0000000..003e8ba Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/537.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/538.png b/projects/challange 8/pokedex/v2/small-images/538.png new file mode 100644 index 0000000..dbd03f0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/538.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/539.png b/projects/challange 8/pokedex/v2/small-images/539.png new file mode 100644 index 0000000..be0f1cb Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/539.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/54.png b/projects/challange 8/pokedex/v2/small-images/54.png new file mode 100644 index 0000000..385b52b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/54.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/540.png b/projects/challange 8/pokedex/v2/small-images/540.png new file mode 100644 index 0000000..069eb95 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/540.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/541.png b/projects/challange 8/pokedex/v2/small-images/541.png new file mode 100644 index 0000000..90a2ac7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/541.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/542.png b/projects/challange 8/pokedex/v2/small-images/542.png new file mode 100644 index 0000000..e3185f1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/542.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/543.png b/projects/challange 8/pokedex/v2/small-images/543.png new file mode 100644 index 0000000..9e3fd9a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/543.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/544.png b/projects/challange 8/pokedex/v2/small-images/544.png new file mode 100644 index 0000000..2d0436e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/544.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/545.png b/projects/challange 8/pokedex/v2/small-images/545.png new file mode 100644 index 0000000..5e2a8f8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/545.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/546.png b/projects/challange 8/pokedex/v2/small-images/546.png new file mode 100644 index 0000000..9f5462a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/546.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/547.png b/projects/challange 8/pokedex/v2/small-images/547.png new file mode 100644 index 0000000..ffe42cd Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/547.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/548.png b/projects/challange 8/pokedex/v2/small-images/548.png new file mode 100644 index 0000000..75c85a6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/548.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/549.png b/projects/challange 8/pokedex/v2/small-images/549.png new file mode 100644 index 0000000..40ac65f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/549.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/55.png b/projects/challange 8/pokedex/v2/small-images/55.png new file mode 100644 index 0000000..efb09d6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/55.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/550.png b/projects/challange 8/pokedex/v2/small-images/550.png new file mode 100644 index 0000000..b910859 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/550.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/551.png b/projects/challange 8/pokedex/v2/small-images/551.png new file mode 100644 index 0000000..2a2bb3b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/551.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/552.png b/projects/challange 8/pokedex/v2/small-images/552.png new file mode 100644 index 0000000..e1d7473 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/552.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/553.png b/projects/challange 8/pokedex/v2/small-images/553.png new file mode 100644 index 0000000..d4c321a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/553.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/554.png b/projects/challange 8/pokedex/v2/small-images/554.png new file mode 100644 index 0000000..f396398 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/554.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/555.png b/projects/challange 8/pokedex/v2/small-images/555.png new file mode 100644 index 0000000..901d0af Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/555.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/556.png b/projects/challange 8/pokedex/v2/small-images/556.png new file mode 100644 index 0000000..4807bf0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/556.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/557.png b/projects/challange 8/pokedex/v2/small-images/557.png new file mode 100644 index 0000000..a30762d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/557.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/558.png b/projects/challange 8/pokedex/v2/small-images/558.png new file mode 100644 index 0000000..f06fe29 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/558.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/559.png b/projects/challange 8/pokedex/v2/small-images/559.png new file mode 100644 index 0000000..6c97fdc Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/559.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/56.png b/projects/challange 8/pokedex/v2/small-images/56.png new file mode 100644 index 0000000..85c3f59 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/56.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/560.png b/projects/challange 8/pokedex/v2/small-images/560.png new file mode 100644 index 0000000..23e257f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/560.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/561.png b/projects/challange 8/pokedex/v2/small-images/561.png new file mode 100644 index 0000000..6b965ac Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/561.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/562.png b/projects/challange 8/pokedex/v2/small-images/562.png new file mode 100644 index 0000000..d207b4f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/562.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/563.png b/projects/challange 8/pokedex/v2/small-images/563.png new file mode 100644 index 0000000..2efa1e7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/563.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/564.png b/projects/challange 8/pokedex/v2/small-images/564.png new file mode 100644 index 0000000..749118d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/564.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/565.png b/projects/challange 8/pokedex/v2/small-images/565.png new file mode 100644 index 0000000..618eab0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/565.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/566.png b/projects/challange 8/pokedex/v2/small-images/566.png new file mode 100644 index 0000000..31ef4e9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/566.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/567.png b/projects/challange 8/pokedex/v2/small-images/567.png new file mode 100644 index 0000000..55fbc6f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/567.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/568.png b/projects/challange 8/pokedex/v2/small-images/568.png new file mode 100644 index 0000000..603c1ca Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/568.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/569.png b/projects/challange 8/pokedex/v2/small-images/569.png new file mode 100644 index 0000000..4135a35 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/569.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/57.png b/projects/challange 8/pokedex/v2/small-images/57.png new file mode 100644 index 0000000..7b46ca0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/57.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/570.png b/projects/challange 8/pokedex/v2/small-images/570.png new file mode 100644 index 0000000..60b9cbe Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/570.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/571.png b/projects/challange 8/pokedex/v2/small-images/571.png new file mode 100644 index 0000000..cb7064d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/571.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/572.png b/projects/challange 8/pokedex/v2/small-images/572.png new file mode 100644 index 0000000..122dd8c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/572.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/573.png b/projects/challange 8/pokedex/v2/small-images/573.png new file mode 100644 index 0000000..c6320c7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/573.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/574.png b/projects/challange 8/pokedex/v2/small-images/574.png new file mode 100644 index 0000000..f36f4af Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/574.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/575.png b/projects/challange 8/pokedex/v2/small-images/575.png new file mode 100644 index 0000000..0873204 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/575.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/576.png b/projects/challange 8/pokedex/v2/small-images/576.png new file mode 100644 index 0000000..71fb4f9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/576.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/577.png b/projects/challange 8/pokedex/v2/small-images/577.png new file mode 100644 index 0000000..8175f50 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/577.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/578.png b/projects/challange 8/pokedex/v2/small-images/578.png new file mode 100644 index 0000000..4976cec Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/578.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/579.png b/projects/challange 8/pokedex/v2/small-images/579.png new file mode 100644 index 0000000..a343915 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/579.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/58.png b/projects/challange 8/pokedex/v2/small-images/58.png new file mode 100644 index 0000000..322523a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/58.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/580.png b/projects/challange 8/pokedex/v2/small-images/580.png new file mode 100644 index 0000000..5d4b9cb Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/580.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/581.png b/projects/challange 8/pokedex/v2/small-images/581.png new file mode 100644 index 0000000..5716b8b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/581.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/582.png b/projects/challange 8/pokedex/v2/small-images/582.png new file mode 100644 index 0000000..0405460 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/582.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/583.png b/projects/challange 8/pokedex/v2/small-images/583.png new file mode 100644 index 0000000..475a2be Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/583.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/584.png b/projects/challange 8/pokedex/v2/small-images/584.png new file mode 100644 index 0000000..5030961 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/584.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/585.png b/projects/challange 8/pokedex/v2/small-images/585.png new file mode 100644 index 0000000..0d66b97 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/585.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/586.png b/projects/challange 8/pokedex/v2/small-images/586.png new file mode 100644 index 0000000..ad84176 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/586.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/587.png b/projects/challange 8/pokedex/v2/small-images/587.png new file mode 100644 index 0000000..951dd19 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/587.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/588.png b/projects/challange 8/pokedex/v2/small-images/588.png new file mode 100644 index 0000000..34ccd8c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/588.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/589.png b/projects/challange 8/pokedex/v2/small-images/589.png new file mode 100644 index 0000000..d116bea Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/589.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/59.png b/projects/challange 8/pokedex/v2/small-images/59.png new file mode 100644 index 0000000..c3c7445 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/59.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/590.png b/projects/challange 8/pokedex/v2/small-images/590.png new file mode 100644 index 0000000..b6178a2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/590.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/591.png b/projects/challange 8/pokedex/v2/small-images/591.png new file mode 100644 index 0000000..c499f3a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/591.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/592.png b/projects/challange 8/pokedex/v2/small-images/592.png new file mode 100644 index 0000000..22af4d0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/592.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/593.png b/projects/challange 8/pokedex/v2/small-images/593.png new file mode 100644 index 0000000..19f4d7e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/593.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/594.png b/projects/challange 8/pokedex/v2/small-images/594.png new file mode 100644 index 0000000..80f3b6c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/594.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/595.png b/projects/challange 8/pokedex/v2/small-images/595.png new file mode 100644 index 0000000..63878c2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/595.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/596.png b/projects/challange 8/pokedex/v2/small-images/596.png new file mode 100644 index 0000000..60086ac Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/596.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/597.png b/projects/challange 8/pokedex/v2/small-images/597.png new file mode 100644 index 0000000..74a6c9d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/597.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/598.png b/projects/challange 8/pokedex/v2/small-images/598.png new file mode 100644 index 0000000..24783f3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/598.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/599.png b/projects/challange 8/pokedex/v2/small-images/599.png new file mode 100644 index 0000000..c2983c7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/599.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/6.png b/projects/challange 8/pokedex/v2/small-images/6.png new file mode 100644 index 0000000..52e0d5a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/6.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/60.png b/projects/challange 8/pokedex/v2/small-images/60.png new file mode 100644 index 0000000..5a99f62 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/60.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/600.png b/projects/challange 8/pokedex/v2/small-images/600.png new file mode 100644 index 0000000..61ca7f1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/600.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/601.png b/projects/challange 8/pokedex/v2/small-images/601.png new file mode 100644 index 0000000..698825f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/601.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/602.png b/projects/challange 8/pokedex/v2/small-images/602.png new file mode 100644 index 0000000..5b1ef88 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/602.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/603.png b/projects/challange 8/pokedex/v2/small-images/603.png new file mode 100644 index 0000000..5fb13ee Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/603.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/604.png b/projects/challange 8/pokedex/v2/small-images/604.png new file mode 100644 index 0000000..81cd8a4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/604.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/605.png b/projects/challange 8/pokedex/v2/small-images/605.png new file mode 100644 index 0000000..b5604ba Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/605.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/606.png b/projects/challange 8/pokedex/v2/small-images/606.png new file mode 100644 index 0000000..545d4c6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/606.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/607.png b/projects/challange 8/pokedex/v2/small-images/607.png new file mode 100644 index 0000000..99b2694 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/607.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/608.png b/projects/challange 8/pokedex/v2/small-images/608.png new file mode 100644 index 0000000..620a6a6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/608.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/609.png b/projects/challange 8/pokedex/v2/small-images/609.png new file mode 100644 index 0000000..d01451a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/609.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/61.png b/projects/challange 8/pokedex/v2/small-images/61.png new file mode 100644 index 0000000..4c311e6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/61.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/610.png b/projects/challange 8/pokedex/v2/small-images/610.png new file mode 100644 index 0000000..f72a080 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/610.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/611.png b/projects/challange 8/pokedex/v2/small-images/611.png new file mode 100644 index 0000000..7238dd4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/611.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/612.png b/projects/challange 8/pokedex/v2/small-images/612.png new file mode 100644 index 0000000..6c18ad7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/612.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/613.png b/projects/challange 8/pokedex/v2/small-images/613.png new file mode 100644 index 0000000..fea3037 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/613.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/614.png b/projects/challange 8/pokedex/v2/small-images/614.png new file mode 100644 index 0000000..f296a39 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/614.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/615.png b/projects/challange 8/pokedex/v2/small-images/615.png new file mode 100644 index 0000000..f35e56b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/615.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/616.png b/projects/challange 8/pokedex/v2/small-images/616.png new file mode 100644 index 0000000..651f528 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/616.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/617.png b/projects/challange 8/pokedex/v2/small-images/617.png new file mode 100644 index 0000000..2fe2c19 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/617.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/618.png b/projects/challange 8/pokedex/v2/small-images/618.png new file mode 100644 index 0000000..943881f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/618.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/619.png b/projects/challange 8/pokedex/v2/small-images/619.png new file mode 100644 index 0000000..69f4c23 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/619.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/62.png b/projects/challange 8/pokedex/v2/small-images/62.png new file mode 100644 index 0000000..4c0b1ec Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/62.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/620.png b/projects/challange 8/pokedex/v2/small-images/620.png new file mode 100644 index 0000000..772b623 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/620.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/621.png b/projects/challange 8/pokedex/v2/small-images/621.png new file mode 100644 index 0000000..9206270 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/621.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/622.png b/projects/challange 8/pokedex/v2/small-images/622.png new file mode 100644 index 0000000..5b1afe4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/622.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/623.png b/projects/challange 8/pokedex/v2/small-images/623.png new file mode 100644 index 0000000..6891a33 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/623.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/624.png b/projects/challange 8/pokedex/v2/small-images/624.png new file mode 100644 index 0000000..a3df356 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/624.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/625.png b/projects/challange 8/pokedex/v2/small-images/625.png new file mode 100644 index 0000000..5303a11 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/625.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/626.png b/projects/challange 8/pokedex/v2/small-images/626.png new file mode 100644 index 0000000..267b796 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/626.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/627.png b/projects/challange 8/pokedex/v2/small-images/627.png new file mode 100644 index 0000000..41075f7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/627.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/628.png b/projects/challange 8/pokedex/v2/small-images/628.png new file mode 100644 index 0000000..64e3929 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/628.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/629.png b/projects/challange 8/pokedex/v2/small-images/629.png new file mode 100644 index 0000000..fb116ca Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/629.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/63.png b/projects/challange 8/pokedex/v2/small-images/63.png new file mode 100644 index 0000000..50433d3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/63.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/630.png b/projects/challange 8/pokedex/v2/small-images/630.png new file mode 100644 index 0000000..e39dd3f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/630.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/631.png b/projects/challange 8/pokedex/v2/small-images/631.png new file mode 100644 index 0000000..19133ee Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/631.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/632.png b/projects/challange 8/pokedex/v2/small-images/632.png new file mode 100644 index 0000000..4582bfe Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/632.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/633.png b/projects/challange 8/pokedex/v2/small-images/633.png new file mode 100644 index 0000000..d457a0d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/633.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/634.png b/projects/challange 8/pokedex/v2/small-images/634.png new file mode 100644 index 0000000..67be73f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/634.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/635.png b/projects/challange 8/pokedex/v2/small-images/635.png new file mode 100644 index 0000000..c6dde43 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/635.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/636.png b/projects/challange 8/pokedex/v2/small-images/636.png new file mode 100644 index 0000000..f8964c4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/636.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/637.png b/projects/challange 8/pokedex/v2/small-images/637.png new file mode 100644 index 0000000..b8ae153 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/637.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/638.png b/projects/challange 8/pokedex/v2/small-images/638.png new file mode 100644 index 0000000..e9bc4a3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/638.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/639.png b/projects/challange 8/pokedex/v2/small-images/639.png new file mode 100644 index 0000000..ae603dc Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/639.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/64.png b/projects/challange 8/pokedex/v2/small-images/64.png new file mode 100644 index 0000000..8df5fce Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/64.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/640.png b/projects/challange 8/pokedex/v2/small-images/640.png new file mode 100644 index 0000000..1b3b118 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/640.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/641.png b/projects/challange 8/pokedex/v2/small-images/641.png new file mode 100644 index 0000000..6957814 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/641.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/642.png b/projects/challange 8/pokedex/v2/small-images/642.png new file mode 100644 index 0000000..4bd3b73 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/642.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/643.png b/projects/challange 8/pokedex/v2/small-images/643.png new file mode 100644 index 0000000..59c8efd Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/643.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/644.png b/projects/challange 8/pokedex/v2/small-images/644.png new file mode 100644 index 0000000..f0d049c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/644.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/645.png b/projects/challange 8/pokedex/v2/small-images/645.png new file mode 100644 index 0000000..e83599e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/645.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/646.png b/projects/challange 8/pokedex/v2/small-images/646.png new file mode 100644 index 0000000..707555c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/646.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/647.png b/projects/challange 8/pokedex/v2/small-images/647.png new file mode 100644 index 0000000..d218399 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/647.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/648.png b/projects/challange 8/pokedex/v2/small-images/648.png new file mode 100644 index 0000000..bcdf373 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/648.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/649.png b/projects/challange 8/pokedex/v2/small-images/649.png new file mode 100644 index 0000000..74016e0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/649.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/65.png b/projects/challange 8/pokedex/v2/small-images/65.png new file mode 100644 index 0000000..024333f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/65.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/650.png b/projects/challange 8/pokedex/v2/small-images/650.png new file mode 100644 index 0000000..1cc9ceb Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/650.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/651.png b/projects/challange 8/pokedex/v2/small-images/651.png new file mode 100644 index 0000000..e2bd111 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/651.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/652.png b/projects/challange 8/pokedex/v2/small-images/652.png new file mode 100644 index 0000000..2644d2a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/652.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/653.png b/projects/challange 8/pokedex/v2/small-images/653.png new file mode 100644 index 0000000..e18b729 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/653.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/654.png b/projects/challange 8/pokedex/v2/small-images/654.png new file mode 100644 index 0000000..32ca1c5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/654.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/655.png b/projects/challange 8/pokedex/v2/small-images/655.png new file mode 100644 index 0000000..7af0762 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/655.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/656.png b/projects/challange 8/pokedex/v2/small-images/656.png new file mode 100644 index 0000000..8b60a7b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/656.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/657.png b/projects/challange 8/pokedex/v2/small-images/657.png new file mode 100644 index 0000000..f5f8e3a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/657.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/658.png b/projects/challange 8/pokedex/v2/small-images/658.png new file mode 100644 index 0000000..68fc249 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/658.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/659.png b/projects/challange 8/pokedex/v2/small-images/659.png new file mode 100644 index 0000000..6283f5c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/659.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/66.png b/projects/challange 8/pokedex/v2/small-images/66.png new file mode 100644 index 0000000..925b8aa Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/66.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/660.png b/projects/challange 8/pokedex/v2/small-images/660.png new file mode 100644 index 0000000..d1432e3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/660.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/661.png b/projects/challange 8/pokedex/v2/small-images/661.png new file mode 100644 index 0000000..3a85921 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/661.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/662.png b/projects/challange 8/pokedex/v2/small-images/662.png new file mode 100644 index 0000000..4095dab Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/662.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/663.png b/projects/challange 8/pokedex/v2/small-images/663.png new file mode 100644 index 0000000..bc03950 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/663.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/664.png b/projects/challange 8/pokedex/v2/small-images/664.png new file mode 100644 index 0000000..42e6d93 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/664.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/665.png b/projects/challange 8/pokedex/v2/small-images/665.png new file mode 100644 index 0000000..f13c95d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/665.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/666.png b/projects/challange 8/pokedex/v2/small-images/666.png new file mode 100644 index 0000000..fe25324 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/666.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/667.png b/projects/challange 8/pokedex/v2/small-images/667.png new file mode 100644 index 0000000..ca0e3d2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/667.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/668.png b/projects/challange 8/pokedex/v2/small-images/668.png new file mode 100644 index 0000000..111fbb8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/668.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/669.png b/projects/challange 8/pokedex/v2/small-images/669.png new file mode 100644 index 0000000..c894380 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/669.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/67.png b/projects/challange 8/pokedex/v2/small-images/67.png new file mode 100644 index 0000000..fc9ebac Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/67.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/670.png b/projects/challange 8/pokedex/v2/small-images/670.png new file mode 100644 index 0000000..4fdc090 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/670.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/671.png b/projects/challange 8/pokedex/v2/small-images/671.png new file mode 100644 index 0000000..7a9a38b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/671.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/672.png b/projects/challange 8/pokedex/v2/small-images/672.png new file mode 100644 index 0000000..2de7e59 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/672.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/673.png b/projects/challange 8/pokedex/v2/small-images/673.png new file mode 100644 index 0000000..8f222b6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/673.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/674.png b/projects/challange 8/pokedex/v2/small-images/674.png new file mode 100644 index 0000000..2ac432e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/674.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/675.png b/projects/challange 8/pokedex/v2/small-images/675.png new file mode 100644 index 0000000..7c64b31 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/675.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/676.png b/projects/challange 8/pokedex/v2/small-images/676.png new file mode 100644 index 0000000..1afc5ea Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/676.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/677.png b/projects/challange 8/pokedex/v2/small-images/677.png new file mode 100644 index 0000000..a96fc7b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/677.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/678.png b/projects/challange 8/pokedex/v2/small-images/678.png new file mode 100644 index 0000000..a3f0873 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/678.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/679.png b/projects/challange 8/pokedex/v2/small-images/679.png new file mode 100644 index 0000000..7597f5f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/679.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/68.png b/projects/challange 8/pokedex/v2/small-images/68.png new file mode 100644 index 0000000..d3b6f05 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/68.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/680.png b/projects/challange 8/pokedex/v2/small-images/680.png new file mode 100644 index 0000000..27532b2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/680.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/681.png b/projects/challange 8/pokedex/v2/small-images/681.png new file mode 100644 index 0000000..d64bc02 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/681.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/682.png b/projects/challange 8/pokedex/v2/small-images/682.png new file mode 100644 index 0000000..c94a23f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/682.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/683.png b/projects/challange 8/pokedex/v2/small-images/683.png new file mode 100644 index 0000000..371014d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/683.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/684.png b/projects/challange 8/pokedex/v2/small-images/684.png new file mode 100644 index 0000000..c0bf06b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/684.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/685.png b/projects/challange 8/pokedex/v2/small-images/685.png new file mode 100644 index 0000000..d466c34 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/685.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/686.png b/projects/challange 8/pokedex/v2/small-images/686.png new file mode 100644 index 0000000..d7df846 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/686.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/687.png b/projects/challange 8/pokedex/v2/small-images/687.png new file mode 100644 index 0000000..559f3bd Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/687.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/688.png b/projects/challange 8/pokedex/v2/small-images/688.png new file mode 100644 index 0000000..cd840fb Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/688.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/689.png b/projects/challange 8/pokedex/v2/small-images/689.png new file mode 100644 index 0000000..39b652d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/689.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/69.png b/projects/challange 8/pokedex/v2/small-images/69.png new file mode 100644 index 0000000..f22dc95 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/69.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/690.png b/projects/challange 8/pokedex/v2/small-images/690.png new file mode 100644 index 0000000..c83a6ec Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/690.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/691.png b/projects/challange 8/pokedex/v2/small-images/691.png new file mode 100644 index 0000000..0d16e17 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/691.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/692.png b/projects/challange 8/pokedex/v2/small-images/692.png new file mode 100644 index 0000000..4217b61 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/692.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/693.png b/projects/challange 8/pokedex/v2/small-images/693.png new file mode 100644 index 0000000..ee7de4f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/693.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/694.png b/projects/challange 8/pokedex/v2/small-images/694.png new file mode 100644 index 0000000..7b6e3c5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/694.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/695.png b/projects/challange 8/pokedex/v2/small-images/695.png new file mode 100644 index 0000000..54a9d36 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/695.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/696.png b/projects/challange 8/pokedex/v2/small-images/696.png new file mode 100644 index 0000000..3a28cd8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/696.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/697.png b/projects/challange 8/pokedex/v2/small-images/697.png new file mode 100644 index 0000000..d352a97 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/697.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/698.png b/projects/challange 8/pokedex/v2/small-images/698.png new file mode 100644 index 0000000..2edef44 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/698.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/699.png b/projects/challange 8/pokedex/v2/small-images/699.png new file mode 100644 index 0000000..739925f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/699.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/7.png b/projects/challange 8/pokedex/v2/small-images/7.png new file mode 100644 index 0000000..a6d4f01 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/7.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/70.png b/projects/challange 8/pokedex/v2/small-images/70.png new file mode 100644 index 0000000..bac83ea Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/70.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/700.png b/projects/challange 8/pokedex/v2/small-images/700.png new file mode 100644 index 0000000..0d895d2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/700.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/701.png b/projects/challange 8/pokedex/v2/small-images/701.png new file mode 100644 index 0000000..f64a517 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/701.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/702.png b/projects/challange 8/pokedex/v2/small-images/702.png new file mode 100644 index 0000000..41cc798 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/702.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/703.png b/projects/challange 8/pokedex/v2/small-images/703.png new file mode 100644 index 0000000..587fe8a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/703.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/704.png b/projects/challange 8/pokedex/v2/small-images/704.png new file mode 100644 index 0000000..e5c2679 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/704.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/705.png b/projects/challange 8/pokedex/v2/small-images/705.png new file mode 100644 index 0000000..21cbc97 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/705.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/706.png b/projects/challange 8/pokedex/v2/small-images/706.png new file mode 100644 index 0000000..14c48cd Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/706.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/707.png b/projects/challange 8/pokedex/v2/small-images/707.png new file mode 100644 index 0000000..9888191 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/707.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/708.png b/projects/challange 8/pokedex/v2/small-images/708.png new file mode 100644 index 0000000..37f179c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/708.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/709.png b/projects/challange 8/pokedex/v2/small-images/709.png new file mode 100644 index 0000000..dd77bc3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/709.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/71.png b/projects/challange 8/pokedex/v2/small-images/71.png new file mode 100644 index 0000000..d0bf23e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/71.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/710.png b/projects/challange 8/pokedex/v2/small-images/710.png new file mode 100644 index 0000000..b30296e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/710.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/711.png b/projects/challange 8/pokedex/v2/small-images/711.png new file mode 100644 index 0000000..fe79a54 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/711.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/712.png b/projects/challange 8/pokedex/v2/small-images/712.png new file mode 100644 index 0000000..b2626d7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/712.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/713.png b/projects/challange 8/pokedex/v2/small-images/713.png new file mode 100644 index 0000000..a6e5b6f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/713.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/714.png b/projects/challange 8/pokedex/v2/small-images/714.png new file mode 100644 index 0000000..743ccb1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/714.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/715.png b/projects/challange 8/pokedex/v2/small-images/715.png new file mode 100644 index 0000000..a712430 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/715.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/716.png b/projects/challange 8/pokedex/v2/small-images/716.png new file mode 100644 index 0000000..765016c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/716.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/717.png b/projects/challange 8/pokedex/v2/small-images/717.png new file mode 100644 index 0000000..03f9c06 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/717.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/718.png b/projects/challange 8/pokedex/v2/small-images/718.png new file mode 100644 index 0000000..606e9f0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/718.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/719.png b/projects/challange 8/pokedex/v2/small-images/719.png new file mode 100644 index 0000000..ea257ff Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/719.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/72.png b/projects/challange 8/pokedex/v2/small-images/72.png new file mode 100644 index 0000000..a9dfc58 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/72.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/720.png b/projects/challange 8/pokedex/v2/small-images/720.png new file mode 100644 index 0000000..e6cee51 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/720.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/721.png b/projects/challange 8/pokedex/v2/small-images/721.png new file mode 100644 index 0000000..597f59e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/721.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/722.png b/projects/challange 8/pokedex/v2/small-images/722.png new file mode 100644 index 0000000..6594854 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/722.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/723.png b/projects/challange 8/pokedex/v2/small-images/723.png new file mode 100644 index 0000000..1b19a5d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/723.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/724.png b/projects/challange 8/pokedex/v2/small-images/724.png new file mode 100644 index 0000000..1f4ff39 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/724.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/725.png b/projects/challange 8/pokedex/v2/small-images/725.png new file mode 100644 index 0000000..64c2967 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/725.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/726.png b/projects/challange 8/pokedex/v2/small-images/726.png new file mode 100644 index 0000000..1f620f0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/726.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/727.png b/projects/challange 8/pokedex/v2/small-images/727.png new file mode 100644 index 0000000..c49a9a7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/727.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/728.png b/projects/challange 8/pokedex/v2/small-images/728.png new file mode 100644 index 0000000..721c434 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/728.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/729.png b/projects/challange 8/pokedex/v2/small-images/729.png new file mode 100644 index 0000000..3cf94f5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/729.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/73.png b/projects/challange 8/pokedex/v2/small-images/73.png new file mode 100644 index 0000000..01809be Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/73.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/730.png b/projects/challange 8/pokedex/v2/small-images/730.png new file mode 100644 index 0000000..89362f6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/730.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/731.png b/projects/challange 8/pokedex/v2/small-images/731.png new file mode 100644 index 0000000..cdd8b5f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/731.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/732.png b/projects/challange 8/pokedex/v2/small-images/732.png new file mode 100644 index 0000000..84bdadd Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/732.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/733.png b/projects/challange 8/pokedex/v2/small-images/733.png new file mode 100644 index 0000000..0b3e335 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/733.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/734.png b/projects/challange 8/pokedex/v2/small-images/734.png new file mode 100644 index 0000000..c35a164 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/734.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/735.png b/projects/challange 8/pokedex/v2/small-images/735.png new file mode 100644 index 0000000..fa9603c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/735.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/736.png b/projects/challange 8/pokedex/v2/small-images/736.png new file mode 100644 index 0000000..fd9e508 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/736.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/737.png b/projects/challange 8/pokedex/v2/small-images/737.png new file mode 100644 index 0000000..3376158 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/737.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/738.png b/projects/challange 8/pokedex/v2/small-images/738.png new file mode 100644 index 0000000..257ff41 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/738.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/739.png b/projects/challange 8/pokedex/v2/small-images/739.png new file mode 100644 index 0000000..069866b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/739.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/74.png b/projects/challange 8/pokedex/v2/small-images/74.png new file mode 100644 index 0000000..d7f01b1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/74.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/740.png b/projects/challange 8/pokedex/v2/small-images/740.png new file mode 100644 index 0000000..00c3380 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/740.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/741.png b/projects/challange 8/pokedex/v2/small-images/741.png new file mode 100644 index 0000000..ce0756c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/741.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/742.png b/projects/challange 8/pokedex/v2/small-images/742.png new file mode 100644 index 0000000..c21b762 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/742.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/743.png b/projects/challange 8/pokedex/v2/small-images/743.png new file mode 100644 index 0000000..91b2fca Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/743.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/744.png b/projects/challange 8/pokedex/v2/small-images/744.png new file mode 100644 index 0000000..dc1f073 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/744.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/745.png b/projects/challange 8/pokedex/v2/small-images/745.png new file mode 100644 index 0000000..5cd1e4b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/745.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/746.png b/projects/challange 8/pokedex/v2/small-images/746.png new file mode 100644 index 0000000..6f61b71 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/746.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/747.png b/projects/challange 8/pokedex/v2/small-images/747.png new file mode 100644 index 0000000..85810b1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/747.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/748.png b/projects/challange 8/pokedex/v2/small-images/748.png new file mode 100644 index 0000000..3c700b6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/748.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/749.png b/projects/challange 8/pokedex/v2/small-images/749.png new file mode 100644 index 0000000..b6e52a1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/749.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/75.png b/projects/challange 8/pokedex/v2/small-images/75.png new file mode 100644 index 0000000..91c7b80 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/75.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/750.png b/projects/challange 8/pokedex/v2/small-images/750.png new file mode 100644 index 0000000..e317101 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/750.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/751.png b/projects/challange 8/pokedex/v2/small-images/751.png new file mode 100644 index 0000000..f4f1b7b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/751.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/752.png b/projects/challange 8/pokedex/v2/small-images/752.png new file mode 100644 index 0000000..fbabd94 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/752.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/753.png b/projects/challange 8/pokedex/v2/small-images/753.png new file mode 100644 index 0000000..2cb4887 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/753.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/754.png b/projects/challange 8/pokedex/v2/small-images/754.png new file mode 100644 index 0000000..d099d09 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/754.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/755.png b/projects/challange 8/pokedex/v2/small-images/755.png new file mode 100644 index 0000000..8fd8e57 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/755.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/756.png b/projects/challange 8/pokedex/v2/small-images/756.png new file mode 100644 index 0000000..9bfae3a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/756.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/757.png b/projects/challange 8/pokedex/v2/small-images/757.png new file mode 100644 index 0000000..667745e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/757.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/758.png b/projects/challange 8/pokedex/v2/small-images/758.png new file mode 100644 index 0000000..c829072 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/758.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/759.png b/projects/challange 8/pokedex/v2/small-images/759.png new file mode 100644 index 0000000..86590cb Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/759.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/76.png b/projects/challange 8/pokedex/v2/small-images/76.png new file mode 100644 index 0000000..8f3f3df Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/76.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/760.png b/projects/challange 8/pokedex/v2/small-images/760.png new file mode 100644 index 0000000..812bb1e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/760.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/761.png b/projects/challange 8/pokedex/v2/small-images/761.png new file mode 100644 index 0000000..d10da42 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/761.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/762.png b/projects/challange 8/pokedex/v2/small-images/762.png new file mode 100644 index 0000000..4cdb3c5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/762.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/763.png b/projects/challange 8/pokedex/v2/small-images/763.png new file mode 100644 index 0000000..c4a8c84 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/763.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/764.png b/projects/challange 8/pokedex/v2/small-images/764.png new file mode 100644 index 0000000..f9b3ba0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/764.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/765.png b/projects/challange 8/pokedex/v2/small-images/765.png new file mode 100644 index 0000000..7e7e677 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/765.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/766.png b/projects/challange 8/pokedex/v2/small-images/766.png new file mode 100644 index 0000000..708d7c9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/766.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/767.png b/projects/challange 8/pokedex/v2/small-images/767.png new file mode 100644 index 0000000..20bd857 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/767.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/768.png b/projects/challange 8/pokedex/v2/small-images/768.png new file mode 100644 index 0000000..df36eb9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/768.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/769.png b/projects/challange 8/pokedex/v2/small-images/769.png new file mode 100644 index 0000000..8186b4c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/769.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/77.png b/projects/challange 8/pokedex/v2/small-images/77.png new file mode 100644 index 0000000..55ab487 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/77.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/770.png b/projects/challange 8/pokedex/v2/small-images/770.png new file mode 100644 index 0000000..465cfc3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/770.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/771.png b/projects/challange 8/pokedex/v2/small-images/771.png new file mode 100644 index 0000000..475f16b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/771.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/772.png b/projects/challange 8/pokedex/v2/small-images/772.png new file mode 100644 index 0000000..ea3b7aa Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/772.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/773.png b/projects/challange 8/pokedex/v2/small-images/773.png new file mode 100644 index 0000000..d5cdc26 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/773.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/774.png b/projects/challange 8/pokedex/v2/small-images/774.png new file mode 100644 index 0000000..b79e361 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/774.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/775.png b/projects/challange 8/pokedex/v2/small-images/775.png new file mode 100644 index 0000000..99d33e9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/775.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/776.png b/projects/challange 8/pokedex/v2/small-images/776.png new file mode 100644 index 0000000..082ccbf Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/776.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/777.png b/projects/challange 8/pokedex/v2/small-images/777.png new file mode 100644 index 0000000..3bb6f4a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/777.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/778.png b/projects/challange 8/pokedex/v2/small-images/778.png new file mode 100644 index 0000000..80283dd Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/778.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/779.png b/projects/challange 8/pokedex/v2/small-images/779.png new file mode 100644 index 0000000..00a643b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/779.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/78.png b/projects/challange 8/pokedex/v2/small-images/78.png new file mode 100644 index 0000000..27b1679 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/78.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/780.png b/projects/challange 8/pokedex/v2/small-images/780.png new file mode 100644 index 0000000..2318bdd Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/780.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/781.png b/projects/challange 8/pokedex/v2/small-images/781.png new file mode 100644 index 0000000..69b78af Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/781.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/782.png b/projects/challange 8/pokedex/v2/small-images/782.png new file mode 100644 index 0000000..60bc6a6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/782.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/783.png b/projects/challange 8/pokedex/v2/small-images/783.png new file mode 100644 index 0000000..68bfb27 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/783.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/784.png b/projects/challange 8/pokedex/v2/small-images/784.png new file mode 100644 index 0000000..aaca027 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/784.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/785.png b/projects/challange 8/pokedex/v2/small-images/785.png new file mode 100644 index 0000000..d13121e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/785.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/786.png b/projects/challange 8/pokedex/v2/small-images/786.png new file mode 100644 index 0000000..e13f0b5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/786.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/787.png b/projects/challange 8/pokedex/v2/small-images/787.png new file mode 100644 index 0000000..4d2ccd0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/787.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/788.png b/projects/challange 8/pokedex/v2/small-images/788.png new file mode 100644 index 0000000..9cbc350 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/788.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/789.png b/projects/challange 8/pokedex/v2/small-images/789.png new file mode 100644 index 0000000..9547c3f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/789.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/79.png b/projects/challange 8/pokedex/v2/small-images/79.png new file mode 100644 index 0000000..526e830 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/79.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/790.png b/projects/challange 8/pokedex/v2/small-images/790.png new file mode 100644 index 0000000..381af1f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/790.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/791.png b/projects/challange 8/pokedex/v2/small-images/791.png new file mode 100644 index 0000000..6db59e7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/791.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/792.png b/projects/challange 8/pokedex/v2/small-images/792.png new file mode 100644 index 0000000..04c0f1b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/792.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/793.png b/projects/challange 8/pokedex/v2/small-images/793.png new file mode 100644 index 0000000..f693537 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/793.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/794.png b/projects/challange 8/pokedex/v2/small-images/794.png new file mode 100644 index 0000000..c7f3f6f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/794.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/795.png b/projects/challange 8/pokedex/v2/small-images/795.png new file mode 100644 index 0000000..6d549a3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/795.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/796.png b/projects/challange 8/pokedex/v2/small-images/796.png new file mode 100644 index 0000000..f0ba581 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/796.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/797.png b/projects/challange 8/pokedex/v2/small-images/797.png new file mode 100644 index 0000000..9cfea7b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/797.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/798.png b/projects/challange 8/pokedex/v2/small-images/798.png new file mode 100644 index 0000000..7c21174 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/798.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/799.png b/projects/challange 8/pokedex/v2/small-images/799.png new file mode 100644 index 0000000..3022da7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/799.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/8.png b/projects/challange 8/pokedex/v2/small-images/8.png new file mode 100644 index 0000000..606eb8f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/8.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/80.png b/projects/challange 8/pokedex/v2/small-images/80.png new file mode 100644 index 0000000..366f6d1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/80.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/800.png b/projects/challange 8/pokedex/v2/small-images/800.png new file mode 100644 index 0000000..e298d93 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/800.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/801.png b/projects/challange 8/pokedex/v2/small-images/801.png new file mode 100644 index 0000000..ef54ecc Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/801.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/802.png b/projects/challange 8/pokedex/v2/small-images/802.png new file mode 100644 index 0000000..14d2c2a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/802.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/803.png b/projects/challange 8/pokedex/v2/small-images/803.png new file mode 100644 index 0000000..bed1e07 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/803.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/804.png b/projects/challange 8/pokedex/v2/small-images/804.png new file mode 100644 index 0000000..1b2bec6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/804.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/805.png b/projects/challange 8/pokedex/v2/small-images/805.png new file mode 100644 index 0000000..a058ae6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/805.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/806.png b/projects/challange 8/pokedex/v2/small-images/806.png new file mode 100644 index 0000000..ebf30f1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/806.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/807.png b/projects/challange 8/pokedex/v2/small-images/807.png new file mode 100644 index 0000000..b4382da Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/807.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/808.png b/projects/challange 8/pokedex/v2/small-images/808.png new file mode 100644 index 0000000..ce7e257 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/808.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/809.png b/projects/challange 8/pokedex/v2/small-images/809.png new file mode 100644 index 0000000..c625833 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/809.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/81.png b/projects/challange 8/pokedex/v2/small-images/81.png new file mode 100644 index 0000000..f7d155d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/81.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/810.png b/projects/challange 8/pokedex/v2/small-images/810.png new file mode 100644 index 0000000..dbdf6e3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/810.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/811.png b/projects/challange 8/pokedex/v2/small-images/811.png new file mode 100644 index 0000000..3b9492b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/811.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/812.png b/projects/challange 8/pokedex/v2/small-images/812.png new file mode 100644 index 0000000..3567d3e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/812.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/813.png b/projects/challange 8/pokedex/v2/small-images/813.png new file mode 100644 index 0000000..f4b7dd2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/813.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/814.png b/projects/challange 8/pokedex/v2/small-images/814.png new file mode 100644 index 0000000..b774766 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/814.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/815.png b/projects/challange 8/pokedex/v2/small-images/815.png new file mode 100644 index 0000000..24f1ab6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/815.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/816.png b/projects/challange 8/pokedex/v2/small-images/816.png new file mode 100644 index 0000000..51ad7cb Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/816.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/817.png b/projects/challange 8/pokedex/v2/small-images/817.png new file mode 100644 index 0000000..d794d84 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/817.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/818.png b/projects/challange 8/pokedex/v2/small-images/818.png new file mode 100644 index 0000000..bcd163c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/818.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/819.png b/projects/challange 8/pokedex/v2/small-images/819.png new file mode 100644 index 0000000..e9d4915 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/819.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/82.png b/projects/challange 8/pokedex/v2/small-images/82.png new file mode 100644 index 0000000..3dba080 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/82.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/820.png b/projects/challange 8/pokedex/v2/small-images/820.png new file mode 100644 index 0000000..40f445f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/820.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/821.png b/projects/challange 8/pokedex/v2/small-images/821.png new file mode 100644 index 0000000..3eba58d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/821.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/822.png b/projects/challange 8/pokedex/v2/small-images/822.png new file mode 100644 index 0000000..e7a7ce6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/822.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/823.png b/projects/challange 8/pokedex/v2/small-images/823.png new file mode 100644 index 0000000..0e01e3e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/823.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/824.png b/projects/challange 8/pokedex/v2/small-images/824.png new file mode 100644 index 0000000..230fc5a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/824.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/825.png b/projects/challange 8/pokedex/v2/small-images/825.png new file mode 100644 index 0000000..bc0f2aa Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/825.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/826.png b/projects/challange 8/pokedex/v2/small-images/826.png new file mode 100644 index 0000000..1669933 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/826.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/827.png b/projects/challange 8/pokedex/v2/small-images/827.png new file mode 100644 index 0000000..add7d13 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/827.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/828.png b/projects/challange 8/pokedex/v2/small-images/828.png new file mode 100644 index 0000000..b72bb69 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/828.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/829.png b/projects/challange 8/pokedex/v2/small-images/829.png new file mode 100644 index 0000000..898df24 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/829.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/83.png b/projects/challange 8/pokedex/v2/small-images/83.png new file mode 100644 index 0000000..f49617b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/83.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/830.png b/projects/challange 8/pokedex/v2/small-images/830.png new file mode 100644 index 0000000..0944275 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/830.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/831.png b/projects/challange 8/pokedex/v2/small-images/831.png new file mode 100644 index 0000000..270926d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/831.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/832.png b/projects/challange 8/pokedex/v2/small-images/832.png new file mode 100644 index 0000000..a5d7f34 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/832.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/833.png b/projects/challange 8/pokedex/v2/small-images/833.png new file mode 100644 index 0000000..0f3fba8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/833.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/834.png b/projects/challange 8/pokedex/v2/small-images/834.png new file mode 100644 index 0000000..92b27ab Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/834.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/835.png b/projects/challange 8/pokedex/v2/small-images/835.png new file mode 100644 index 0000000..f031697 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/835.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/836.png b/projects/challange 8/pokedex/v2/small-images/836.png new file mode 100644 index 0000000..d1228c2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/836.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/837.png b/projects/challange 8/pokedex/v2/small-images/837.png new file mode 100644 index 0000000..f88ded5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/837.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/838.png b/projects/challange 8/pokedex/v2/small-images/838.png new file mode 100644 index 0000000..815883d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/838.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/839.png b/projects/challange 8/pokedex/v2/small-images/839.png new file mode 100644 index 0000000..567f2b1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/839.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/84.png b/projects/challange 8/pokedex/v2/small-images/84.png new file mode 100644 index 0000000..66c9d23 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/84.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/840.png b/projects/challange 8/pokedex/v2/small-images/840.png new file mode 100644 index 0000000..25143cb Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/840.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/841.png b/projects/challange 8/pokedex/v2/small-images/841.png new file mode 100644 index 0000000..cfd5e6e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/841.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/842.png b/projects/challange 8/pokedex/v2/small-images/842.png new file mode 100644 index 0000000..ed47e23 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/842.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/843.png b/projects/challange 8/pokedex/v2/small-images/843.png new file mode 100644 index 0000000..9ad1fb0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/843.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/844.png b/projects/challange 8/pokedex/v2/small-images/844.png new file mode 100644 index 0000000..3b6d7be Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/844.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/845.png b/projects/challange 8/pokedex/v2/small-images/845.png new file mode 100644 index 0000000..46d7c9b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/845.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/846.png b/projects/challange 8/pokedex/v2/small-images/846.png new file mode 100644 index 0000000..745df25 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/846.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/847.png b/projects/challange 8/pokedex/v2/small-images/847.png new file mode 100644 index 0000000..e299718 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/847.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/848.png b/projects/challange 8/pokedex/v2/small-images/848.png new file mode 100644 index 0000000..fcc6959 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/848.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/849.png b/projects/challange 8/pokedex/v2/small-images/849.png new file mode 100644 index 0000000..16e9c0a Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/849.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/85.png b/projects/challange 8/pokedex/v2/small-images/85.png new file mode 100644 index 0000000..46145a8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/85.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/850.png b/projects/challange 8/pokedex/v2/small-images/850.png new file mode 100644 index 0000000..a797eed Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/850.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/851.png b/projects/challange 8/pokedex/v2/small-images/851.png new file mode 100644 index 0000000..051c3f7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/851.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/852.png b/projects/challange 8/pokedex/v2/small-images/852.png new file mode 100644 index 0000000..9db1195 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/852.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/853.png b/projects/challange 8/pokedex/v2/small-images/853.png new file mode 100644 index 0000000..1ac219c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/853.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/854.png b/projects/challange 8/pokedex/v2/small-images/854.png new file mode 100644 index 0000000..ed0a07e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/854.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/855.png b/projects/challange 8/pokedex/v2/small-images/855.png new file mode 100644 index 0000000..bcf4fa3 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/855.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/856.png b/projects/challange 8/pokedex/v2/small-images/856.png new file mode 100644 index 0000000..9c84ee5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/856.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/857.png b/projects/challange 8/pokedex/v2/small-images/857.png new file mode 100644 index 0000000..f70d680 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/857.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/858.png b/projects/challange 8/pokedex/v2/small-images/858.png new file mode 100644 index 0000000..df12ca7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/858.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/859.png b/projects/challange 8/pokedex/v2/small-images/859.png new file mode 100644 index 0000000..9714225 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/859.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/86.png b/projects/challange 8/pokedex/v2/small-images/86.png new file mode 100644 index 0000000..0c4b23d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/86.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/860.png b/projects/challange 8/pokedex/v2/small-images/860.png new file mode 100644 index 0000000..2b5dff2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/860.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/861.png b/projects/challange 8/pokedex/v2/small-images/861.png new file mode 100644 index 0000000..bc0c139 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/861.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/862.png b/projects/challange 8/pokedex/v2/small-images/862.png new file mode 100644 index 0000000..0cfa4e8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/862.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/863.png b/projects/challange 8/pokedex/v2/small-images/863.png new file mode 100644 index 0000000..72da7fb Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/863.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/864.png b/projects/challange 8/pokedex/v2/small-images/864.png new file mode 100644 index 0000000..3204d60 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/864.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/865.png b/projects/challange 8/pokedex/v2/small-images/865.png new file mode 100644 index 0000000..ae8dcb8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/865.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/866.png b/projects/challange 8/pokedex/v2/small-images/866.png new file mode 100644 index 0000000..b9bb015 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/866.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/867.png b/projects/challange 8/pokedex/v2/small-images/867.png new file mode 100644 index 0000000..7a97f69 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/867.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/868.png b/projects/challange 8/pokedex/v2/small-images/868.png new file mode 100644 index 0000000..31dd42f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/868.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/869.png b/projects/challange 8/pokedex/v2/small-images/869.png new file mode 100644 index 0000000..54bf928 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/869.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/87.png b/projects/challange 8/pokedex/v2/small-images/87.png new file mode 100644 index 0000000..a527be0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/87.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/870.png b/projects/challange 8/pokedex/v2/small-images/870.png new file mode 100644 index 0000000..9e10510 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/870.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/871.png b/projects/challange 8/pokedex/v2/small-images/871.png new file mode 100644 index 0000000..9757753 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/871.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/872.png b/projects/challange 8/pokedex/v2/small-images/872.png new file mode 100644 index 0000000..bc614f7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/872.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/873.png b/projects/challange 8/pokedex/v2/small-images/873.png new file mode 100644 index 0000000..161542b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/873.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/874.png b/projects/challange 8/pokedex/v2/small-images/874.png new file mode 100644 index 0000000..25b654e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/874.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/875.png b/projects/challange 8/pokedex/v2/small-images/875.png new file mode 100644 index 0000000..bc7a8de Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/875.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/876.png b/projects/challange 8/pokedex/v2/small-images/876.png new file mode 100644 index 0000000..8fe93fd Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/876.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/877.png b/projects/challange 8/pokedex/v2/small-images/877.png new file mode 100644 index 0000000..fe00366 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/877.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/878.png b/projects/challange 8/pokedex/v2/small-images/878.png new file mode 100644 index 0000000..a5d3899 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/878.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/879.png b/projects/challange 8/pokedex/v2/small-images/879.png new file mode 100644 index 0000000..c0c00a2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/879.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/88.png b/projects/challange 8/pokedex/v2/small-images/88.png new file mode 100644 index 0000000..d5beb64 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/88.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/880.png b/projects/challange 8/pokedex/v2/small-images/880.png new file mode 100644 index 0000000..844f20f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/880.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/881.png b/projects/challange 8/pokedex/v2/small-images/881.png new file mode 100644 index 0000000..74a2c9c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/881.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/882.png b/projects/challange 8/pokedex/v2/small-images/882.png new file mode 100644 index 0000000..27979ec Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/882.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/883.png b/projects/challange 8/pokedex/v2/small-images/883.png new file mode 100644 index 0000000..34de760 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/883.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/884.png b/projects/challange 8/pokedex/v2/small-images/884.png new file mode 100644 index 0000000..2cad8f1 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/884.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/885.png b/projects/challange 8/pokedex/v2/small-images/885.png new file mode 100644 index 0000000..ae8c519 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/885.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/886.png b/projects/challange 8/pokedex/v2/small-images/886.png new file mode 100644 index 0000000..fcfd224 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/886.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/887.png b/projects/challange 8/pokedex/v2/small-images/887.png new file mode 100644 index 0000000..f7a9279 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/887.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/888.png b/projects/challange 8/pokedex/v2/small-images/888.png new file mode 100644 index 0000000..c0ae9fd Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/888.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/889.png b/projects/challange 8/pokedex/v2/small-images/889.png new file mode 100644 index 0000000..64f455e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/889.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/89.png b/projects/challange 8/pokedex/v2/small-images/89.png new file mode 100644 index 0000000..0687d53 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/89.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/890.png b/projects/challange 8/pokedex/v2/small-images/890.png new file mode 100644 index 0000000..31df2f7 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/890.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/891.png b/projects/challange 8/pokedex/v2/small-images/891.png new file mode 100644 index 0000000..a83c041 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/891.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/892.png b/projects/challange 8/pokedex/v2/small-images/892.png new file mode 100644 index 0000000..6529398 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/892.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/893.png b/projects/challange 8/pokedex/v2/small-images/893.png new file mode 100644 index 0000000..3bf0692 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/893.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/894.png b/projects/challange 8/pokedex/v2/small-images/894.png new file mode 100644 index 0000000..9978b3f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/894.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/895.png b/projects/challange 8/pokedex/v2/small-images/895.png new file mode 100644 index 0000000..112b34f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/895.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/896.png b/projects/challange 8/pokedex/v2/small-images/896.png new file mode 100644 index 0000000..92d8424 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/896.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/897.png b/projects/challange 8/pokedex/v2/small-images/897.png new file mode 100644 index 0000000..66e8277 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/897.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/898.png b/projects/challange 8/pokedex/v2/small-images/898.png new file mode 100644 index 0000000..70692c9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/898.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/899.png b/projects/challange 8/pokedex/v2/small-images/899.png new file mode 100644 index 0000000..d5f40a2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/899.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/9.png b/projects/challange 8/pokedex/v2/small-images/9.png new file mode 100644 index 0000000..309b49c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/9.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/90.png b/projects/challange 8/pokedex/v2/small-images/90.png new file mode 100644 index 0000000..6fdba88 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/90.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/900.png b/projects/challange 8/pokedex/v2/small-images/900.png new file mode 100644 index 0000000..d9f3601 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/900.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/901.png b/projects/challange 8/pokedex/v2/small-images/901.png new file mode 100644 index 0000000..2c3d841 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/901.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/902.png b/projects/challange 8/pokedex/v2/small-images/902.png new file mode 100644 index 0000000..44d9c86 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/902.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/903.png b/projects/challange 8/pokedex/v2/small-images/903.png new file mode 100644 index 0000000..b6851fa Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/903.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/904.png b/projects/challange 8/pokedex/v2/small-images/904.png new file mode 100644 index 0000000..a813c0f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/904.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/905.png b/projects/challange 8/pokedex/v2/small-images/905.png new file mode 100644 index 0000000..e179fcc Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/905.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/906.png b/projects/challange 8/pokedex/v2/small-images/906.png new file mode 100644 index 0000000..433a397 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/906.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/907.png b/projects/challange 8/pokedex/v2/small-images/907.png new file mode 100644 index 0000000..f9668da Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/907.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/908.png b/projects/challange 8/pokedex/v2/small-images/908.png new file mode 100644 index 0000000..b11f4e0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/908.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/909.png b/projects/challange 8/pokedex/v2/small-images/909.png new file mode 100644 index 0000000..9e9b845 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/909.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/91.png b/projects/challange 8/pokedex/v2/small-images/91.png new file mode 100644 index 0000000..3a44237 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/91.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/910.png b/projects/challange 8/pokedex/v2/small-images/910.png new file mode 100644 index 0000000..7065b66 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/910.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/911.png b/projects/challange 8/pokedex/v2/small-images/911.png new file mode 100644 index 0000000..d6d4217 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/911.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/912.png b/projects/challange 8/pokedex/v2/small-images/912.png new file mode 100644 index 0000000..17fa95d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/912.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/913.png b/projects/challange 8/pokedex/v2/small-images/913.png new file mode 100644 index 0000000..230c719 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/913.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/914.png b/projects/challange 8/pokedex/v2/small-images/914.png new file mode 100644 index 0000000..ae2d865 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/914.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/915.png b/projects/challange 8/pokedex/v2/small-images/915.png new file mode 100644 index 0000000..1dcaea4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/915.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/916.png b/projects/challange 8/pokedex/v2/small-images/916.png new file mode 100644 index 0000000..5d32208 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/916.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/917.png b/projects/challange 8/pokedex/v2/small-images/917.png new file mode 100644 index 0000000..b3b7299 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/917.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/918.png b/projects/challange 8/pokedex/v2/small-images/918.png new file mode 100644 index 0000000..428fd30 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/918.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/919.png b/projects/challange 8/pokedex/v2/small-images/919.png new file mode 100644 index 0000000..c8e617b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/919.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/92.png b/projects/challange 8/pokedex/v2/small-images/92.png new file mode 100644 index 0000000..c1bc783 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/92.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/920.png b/projects/challange 8/pokedex/v2/small-images/920.png new file mode 100644 index 0000000..bce5dcc Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/920.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/921.png b/projects/challange 8/pokedex/v2/small-images/921.png new file mode 100644 index 0000000..3752a1e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/921.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/922.png b/projects/challange 8/pokedex/v2/small-images/922.png new file mode 100644 index 0000000..2e7f7d5 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/922.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/923.png b/projects/challange 8/pokedex/v2/small-images/923.png new file mode 100644 index 0000000..d7fe86b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/923.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/924.png b/projects/challange 8/pokedex/v2/small-images/924.png new file mode 100644 index 0000000..6d6945b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/924.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/925.png b/projects/challange 8/pokedex/v2/small-images/925.png new file mode 100644 index 0000000..3331305 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/925.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/926.png b/projects/challange 8/pokedex/v2/small-images/926.png new file mode 100644 index 0000000..fd078c0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/926.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/927.png b/projects/challange 8/pokedex/v2/small-images/927.png new file mode 100644 index 0000000..3a2c90e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/927.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/928.png b/projects/challange 8/pokedex/v2/small-images/928.png new file mode 100644 index 0000000..0d22129 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/928.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/929.png b/projects/challange 8/pokedex/v2/small-images/929.png new file mode 100644 index 0000000..616025b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/929.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/93.png b/projects/challange 8/pokedex/v2/small-images/93.png new file mode 100644 index 0000000..168447c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/93.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/930.png b/projects/challange 8/pokedex/v2/small-images/930.png new file mode 100644 index 0000000..d94eb65 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/930.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/931.png b/projects/challange 8/pokedex/v2/small-images/931.png new file mode 100644 index 0000000..64483b0 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/931.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/932.png b/projects/challange 8/pokedex/v2/small-images/932.png new file mode 100644 index 0000000..9b2db4d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/932.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/933.png b/projects/challange 8/pokedex/v2/small-images/933.png new file mode 100644 index 0000000..a1dbd01 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/933.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/934.png b/projects/challange 8/pokedex/v2/small-images/934.png new file mode 100644 index 0000000..181162c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/934.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/935.png b/projects/challange 8/pokedex/v2/small-images/935.png new file mode 100644 index 0000000..ba65008 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/935.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/936.png b/projects/challange 8/pokedex/v2/small-images/936.png new file mode 100644 index 0000000..31f6e69 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/936.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/937.png b/projects/challange 8/pokedex/v2/small-images/937.png new file mode 100644 index 0000000..f5ba916 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/937.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/938.png b/projects/challange 8/pokedex/v2/small-images/938.png new file mode 100644 index 0000000..baf7ab9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/938.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/939.png b/projects/challange 8/pokedex/v2/small-images/939.png new file mode 100644 index 0000000..9868dfc Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/939.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/94.png b/projects/challange 8/pokedex/v2/small-images/94.png new file mode 100644 index 0000000..a234178 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/94.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/940.png b/projects/challange 8/pokedex/v2/small-images/940.png new file mode 100644 index 0000000..7377700 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/940.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/941.png b/projects/challange 8/pokedex/v2/small-images/941.png new file mode 100644 index 0000000..8c338a8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/941.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/942.png b/projects/challange 8/pokedex/v2/small-images/942.png new file mode 100644 index 0000000..92c63e4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/942.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/943.png b/projects/challange 8/pokedex/v2/small-images/943.png new file mode 100644 index 0000000..28e3792 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/943.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/944.png b/projects/challange 8/pokedex/v2/small-images/944.png new file mode 100644 index 0000000..6dd16ba Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/944.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/945.png b/projects/challange 8/pokedex/v2/small-images/945.png new file mode 100644 index 0000000..28f9915 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/945.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/946.png b/projects/challange 8/pokedex/v2/small-images/946.png new file mode 100644 index 0000000..970dc78 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/946.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/947.png b/projects/challange 8/pokedex/v2/small-images/947.png new file mode 100644 index 0000000..e8146a9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/947.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/948.png b/projects/challange 8/pokedex/v2/small-images/948.png new file mode 100644 index 0000000..50e5cfd Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/948.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/949.png b/projects/challange 8/pokedex/v2/small-images/949.png new file mode 100644 index 0000000..b1223a9 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/949.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/95.png b/projects/challange 8/pokedex/v2/small-images/95.png new file mode 100644 index 0000000..b43b249 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/95.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/950.png b/projects/challange 8/pokedex/v2/small-images/950.png new file mode 100644 index 0000000..958e51f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/950.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/951.png b/projects/challange 8/pokedex/v2/small-images/951.png new file mode 100644 index 0000000..1c88f99 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/951.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/952.png b/projects/challange 8/pokedex/v2/small-images/952.png new file mode 100644 index 0000000..4b2cc35 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/952.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/953.png b/projects/challange 8/pokedex/v2/small-images/953.png new file mode 100644 index 0000000..e9b44e6 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/953.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/954.png b/projects/challange 8/pokedex/v2/small-images/954.png new file mode 100644 index 0000000..bc1cc50 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/954.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/955.png b/projects/challange 8/pokedex/v2/small-images/955.png new file mode 100644 index 0000000..deef970 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/955.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/956.png b/projects/challange 8/pokedex/v2/small-images/956.png new file mode 100644 index 0000000..1153f93 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/956.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/957.png b/projects/challange 8/pokedex/v2/small-images/957.png new file mode 100644 index 0000000..4ad6b8d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/957.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/958.png b/projects/challange 8/pokedex/v2/small-images/958.png new file mode 100644 index 0000000..fe7de91 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/958.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/959.png b/projects/challange 8/pokedex/v2/small-images/959.png new file mode 100644 index 0000000..889b62b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/959.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/96.png b/projects/challange 8/pokedex/v2/small-images/96.png new file mode 100644 index 0000000..ca07454 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/96.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/960.png b/projects/challange 8/pokedex/v2/small-images/960.png new file mode 100644 index 0000000..fa62ebb Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/960.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/961.png b/projects/challange 8/pokedex/v2/small-images/961.png new file mode 100644 index 0000000..a88c780 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/961.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/962.png b/projects/challange 8/pokedex/v2/small-images/962.png new file mode 100644 index 0000000..713204c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/962.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/963.png b/projects/challange 8/pokedex/v2/small-images/963.png new file mode 100644 index 0000000..e46834b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/963.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/964.png b/projects/challange 8/pokedex/v2/small-images/964.png new file mode 100644 index 0000000..3154496 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/964.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/965.png b/projects/challange 8/pokedex/v2/small-images/965.png new file mode 100644 index 0000000..dadb561 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/965.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/966.png b/projects/challange 8/pokedex/v2/small-images/966.png new file mode 100644 index 0000000..a5714ae Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/966.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/967.png b/projects/challange 8/pokedex/v2/small-images/967.png new file mode 100644 index 0000000..72bdb07 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/967.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/968.png b/projects/challange 8/pokedex/v2/small-images/968.png new file mode 100644 index 0000000..8f7a13f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/968.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/969.png b/projects/challange 8/pokedex/v2/small-images/969.png new file mode 100644 index 0000000..d00e356 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/969.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/97.png b/projects/challange 8/pokedex/v2/small-images/97.png new file mode 100644 index 0000000..b7d20a4 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/97.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/970.png b/projects/challange 8/pokedex/v2/small-images/970.png new file mode 100644 index 0000000..0e6d807 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/970.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/971.png b/projects/challange 8/pokedex/v2/small-images/971.png new file mode 100644 index 0000000..2726cd8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/971.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/972.png b/projects/challange 8/pokedex/v2/small-images/972.png new file mode 100644 index 0000000..d5e4d2d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/972.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/973.png b/projects/challange 8/pokedex/v2/small-images/973.png new file mode 100644 index 0000000..8386925 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/973.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/974.png b/projects/challange 8/pokedex/v2/small-images/974.png new file mode 100644 index 0000000..1ae50f8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/974.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/975.png b/projects/challange 8/pokedex/v2/small-images/975.png new file mode 100644 index 0000000..3c79a16 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/975.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/976.png b/projects/challange 8/pokedex/v2/small-images/976.png new file mode 100644 index 0000000..fbb2366 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/976.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/977.png b/projects/challange 8/pokedex/v2/small-images/977.png new file mode 100644 index 0000000..0b402c2 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/977.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/978.png b/projects/challange 8/pokedex/v2/small-images/978.png new file mode 100644 index 0000000..f9c34fd Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/978.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/979.png b/projects/challange 8/pokedex/v2/small-images/979.png new file mode 100644 index 0000000..5ff39be Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/979.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/98.png b/projects/challange 8/pokedex/v2/small-images/98.png new file mode 100644 index 0000000..82ae51d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/98.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/980.png b/projects/challange 8/pokedex/v2/small-images/980.png new file mode 100644 index 0000000..c6c3069 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/980.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/981.png b/projects/challange 8/pokedex/v2/small-images/981.png new file mode 100644 index 0000000..b491c9c Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/981.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/982.png b/projects/challange 8/pokedex/v2/small-images/982.png new file mode 100644 index 0000000..f62f496 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/982.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/983.png b/projects/challange 8/pokedex/v2/small-images/983.png new file mode 100644 index 0000000..9b45d4b Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/983.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/984.png b/projects/challange 8/pokedex/v2/small-images/984.png new file mode 100644 index 0000000..d494930 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/984.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/985.png b/projects/challange 8/pokedex/v2/small-images/985.png new file mode 100644 index 0000000..f243118 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/985.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/986.png b/projects/challange 8/pokedex/v2/small-images/986.png new file mode 100644 index 0000000..5c59fb8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/986.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/987.png b/projects/challange 8/pokedex/v2/small-images/987.png new file mode 100644 index 0000000..cb04ca8 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/987.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/988.png b/projects/challange 8/pokedex/v2/small-images/988.png new file mode 100644 index 0000000..20c9602 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/988.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/989.png b/projects/challange 8/pokedex/v2/small-images/989.png new file mode 100644 index 0000000..fae9f67 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/989.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/99.png b/projects/challange 8/pokedex/v2/small-images/99.png new file mode 100644 index 0000000..f20e0fb Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/99.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/990.png b/projects/challange 8/pokedex/v2/small-images/990.png new file mode 100644 index 0000000..483e584 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/990.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/991.png b/projects/challange 8/pokedex/v2/small-images/991.png new file mode 100644 index 0000000..9dd868e Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/991.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/992.png b/projects/challange 8/pokedex/v2/small-images/992.png new file mode 100644 index 0000000..118ddfe Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/992.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/993.png b/projects/challange 8/pokedex/v2/small-images/993.png new file mode 100644 index 0000000..c267724 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/993.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/994.png b/projects/challange 8/pokedex/v2/small-images/994.png new file mode 100644 index 0000000..b59108f Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/994.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/995.png b/projects/challange 8/pokedex/v2/small-images/995.png new file mode 100644 index 0000000..6850481 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/995.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/996.png b/projects/challange 8/pokedex/v2/small-images/996.png new file mode 100644 index 0000000..fec2f9d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/996.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/997.png b/projects/challange 8/pokedex/v2/small-images/997.png new file mode 100644 index 0000000..fa7bb38 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/997.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/998.png b/projects/challange 8/pokedex/v2/small-images/998.png new file mode 100644 index 0000000..a716a8d Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/998.png differ diff --git a/projects/challange 8/pokedex/v2/small-images/999.png b/projects/challange 8/pokedex/v2/small-images/999.png new file mode 100644 index 0000000..1aa2699 Binary files /dev/null and b/projects/challange 8/pokedex/v2/small-images/999.png differ diff --git a/projects/challange 8/pokedex/v2/style.css b/projects/challange 8/pokedex/v2/style.css new file mode 100644 index 0000000..babf46a --- /dev/null +++ b/projects/challange 8/pokedex/v2/style.css @@ -0,0 +1,594 @@ +:root { + --identity-primary: #0394fc; + + --grayscale-dark: #212121; + --grayscale-medium: #666666; + --grayscale-light: #e0e0e0; + --grayscale-background: #efefef; + --grayscale-white: #ffffff; + + --headline-font-size: 24px; + --body1-font-size: 14px; + --body2-font-size: 12px; + --body3-font-size: 10px; + --subtitle1-font-size: 14px; + --subtitle2-font-size: 12px; + --subtitle3-font-size: 10px; + --caption-font-size: 8px; + + --headline-line-height: 32px; + --common-line-height: 16px; + --caption-line-height: 12px; + + --font-weight-regular: 400; + --font-weight-bold: 700; + + --drop-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.2); + --drop-shadow-hover: 0px 3px 12px 3px rgba(0, 0, 0, 0.2); + --drop-shadow-inner: 0px 1px 3px 1px rgba(0, 0, 0, 0.25) inset; +} + +h2, +h3, +h4, +.body1-fonts, +.body2-fonts, +.body3-fonts { + line-height: var(--common-line-height); +} + +h1 { + font-size: var(--headline-font-size); + line-height: var(--headline-line-height); +} + +h2 { + font-size: var(--subtitle1-font-size); +} + +h3 { + font-size: var(--subtitle2-font-size); +} + +h4 { + font-size: var(--subtitle3-font-size); +} + +.body1-fonts { + font-size: var(--body1-font-size); +} + +.body2-fonts { + font-size: var(--body2-font-size); +} + +.body3-fonts { + font-size: var(--body3-font-size); +} + +.caption-fonts { + font-size: var(--caption-font-size); + line-height: var(--caption-line-height); +} + +input:focus-visible { + outline: 0; +} + +.featured-img a.arrow.hidden { + display: none; +} + +.arrow.hidden { + display: none; +} + +body { + margin: 0; + height: 100vh; + width: 100vw; + box-sizing: border-box; + font-family: "Poppins", sans-serif; +} + +.main { + margin: 0; + padding: 0; + background-color: var(--identity-primary); + height: 100vh; + width: 100vw; + display: flex; + flex-direction: column; + align-items: center; + gap: 1rem; +} + +.header.home { + width: 90%; +} + +.container { + width: 100%; + margin: 0; +} + +.logo-wrapper { + display: flex; + align-items: center; +} + +.logo-wrapper > h1 { + color: var(--grayscale-white); +} + +.logo-wrapper > img { + margin-right: 16px; +} + +.search-wrapper, +.search-wrap { + display: flex; + align-items: center; + width: 100%; + gap: 16px; +} + +.search-wrap { + position: relative; + background-color: var(--grayscale-white); + border-radius: 16px; + box-shadow: var(--drop-shadow-inner); + height: 32px; + gap: 8px; +} + +.search-icon { + margin-left: 16px; +} + +.search-wrap svg path { + fill: var(--identity-primary); +} + +.search-wrap > input { + width: 60%; + border: none; +} + +.sort-wrapper { + position: relative; +} + +.sort-wrap { + background-color: var(--grayscale-white); + border-radius: 100%; + min-width: 2rem; + min-height: 2rem; + box-shadow: var(--drop-shadow-inner); + display: flex; + align-items: center; + justify-content: center; + position: relative; +} + +.search-close-icon { + position: absolute; + right: 1rem; + display: none; + cursor: pointer; +} + +.search-close-icon-visible { + display: block; +} + +.filter-wrapper { + position: absolute; + background: var(--identity-primary); + border: 4px solid var(--identity-primary); + border-top: 0; + border-radius: 12px; + padding: 0px 4px 4px 4px; + right: 0px; + box-shadow: var(--drop-shadow-hover); + min-width: 113px; + top: 40px; + display: none; + z-index: 5000; +} + +.filter-wrapper-open { + display: block; +} + +.filter-wrapper-overlay .main::before { + background-color: rgba(0, 0, 0, 0.4); + width: 100%; + height: 100%; + position: absolute; + left: 0; + right: 0; + top: 0; + bottom: 0; + z-index: 2; +} + +.filter-wrapper > .body2-fonts { + color: var(--grayscale-white); + font-weight: var(--font-weight-bold); + padding: 16px 20px; +} + +.filter-wrap { + background-color: var(--grayscale-white); + box-shadow: var(--drop-shadow-inner); + padding: 16px 20px; + border-radius: 8px; +} + +.filter-wrap > div { + display: flex; + align-items: center; + gap: 8px; + margin-bottom: 16px; +} + +.filter-wrap > div:last-child { + margin-bottom: 0px; +} + +.filter-wrap input { + accent-color: var(--identity-primary); +} + +.pokemon-list { + background-color: var(--grayscale-white); + box-shadow: var(--drop-shadow-inner); + border-radius: 0.75rem; + min-height: calc(85.5% - 1rem); + width: calc(100% - 1rem); + max-height: 100px; + overflow-y: auto; +} + +.list-wrapper { + margin: 1rem 0; + display: flex; + align-items: center; + justify-content: center; + flex-wrap: wrap; + gap: 0.75rem; +} + +.list-item { + border-radius: 8px; + box-shadow: var(--drop-shadow); + background-color: var(--grayscale-white); + width: 8.85rem; + height: 8.85rem; + text-align: center; + text-decoration: none; + cursor: pointer; +} + +.list-item .number-wrap { + min-height: 16px; + text-align: right; + padding: 0 8px; + color: var(--grayscale-medium); +} + +.list-item .name-wrap { + border-radius: 7px; + background-color: var(--grayscale-background); + padding: 24px 8px 4px 8px; + color: var(--grayscale-dark); + margin-top: -18px; +} + +.list-item .img-wrap { + width: 72px; + height: 72px; + margin: auto; +} + +.list-item .img-wrap img { + width: 100%; + height: 100%; +} + +/* detail page */ + +.detail-main .header { + padding: 20px 20px 24px 20px; + position: relative; + z-index: 2; +} + +.detail-main .header-wrapper { + display: flex; + align-items: center; + justify-content: space-between; + column-gap: 15px; +} + +.detail-main .header-wrap { + display: flex; + align-items: center; + column-gap: 8px; +} + +.detail-main .back-btn-wrap { + max-height: 32px; +} + +.detail-main .back-btn-wrap path, +.detail-main .header-wrapper p, +.detail-main .header-wrapper h1 { + fill: var(--grayscale-white); + color: var(--grayscale-white); +} + +.detail-main .pokemon-id-wrap p { + font-weight: var(--font-weight-bold); +} + +.detail-img-wrapper { + width: 200px; + height: 200px; + margin: auto; + position: relative; + z-index: 3; +} + +.detail-img-wrapper img { + width: 100%; + height: 100%; +} + +.detail-card-detail-wrapper { + border-radius: 8px; + background-color: var(--grayscale-white); + box-shadow: var(--drop-shadow-inner); + padding: 56px 20px 20px 20px; + margin-top: -50px; + display: flex; + flex-direction: column; + position: relative; + z-index: 2; +} + +.power-wrapper { + display: flex; + justify-content: center; + align-items: center; + flex-wrap: wrap; + gap: 16px; +} + +.power-wrapper > p { + border-radius: 10px; + padding: 2px 8px; + font-weight: var(--font-weight-bold); + color: var(--grayscale-white); + text-transform: capitalize; + background-color: #74cb48; +} + +.pokemon-detail.move p { + text-transform: capitalize; + word-break: break-all; +} + +.list-item .name-wrap p { + text-transform: capitalize; +} + +.detail-card-detail-wrapper .about-text { + font-weight: var(--font-weight-bold); + text-align: center; +} + +.pokemon-detail-wrapper { + display: flex; + align-items: flex-end; +} + +.pokemon-detail-wrapper .pokemon-detail-wrap { + flex: 1; + text-align: center; + position: relative; +} + +.pokemon-detail-wrap:before { + content: ""; + background-color: var(--grayscale-light); + width: 1px; + height: 100%; + position: absolute; + right: 0; + top: 0; + bottom: 0; + margin: auto; +} + +.pokemon-detail-wrap:last-child::before { + display: none; +} + +.pokemon-detail { + display: flex; + justify-content: center; + align-items: center; + padding: 8px 20px; + gap: 8px; +} + +.pokemon-detail-wrapper { + min-height: 76px; +} + +.pokemon-detail.move { + flex-direction: column; + gap: 0; + align-items: center; + padding: 8px 5px; +} + +.pokemon-detail-wrap > .caption-fonts { + color: var(--grayscale-medium); +} + +.pokemon-detail-wrap .straighten { + transform: rotate(90deg); +} + +.detail-card-detail-wrapper .pokemon-description { + color: var(--grayscale-dark); + text-align: center; +} + +.stats-wrap { + display: flex; + align-items: center; +} + +.stats-wrap p { + color: var(--grayscale-dark); + margin-right: 8px; + min-width: 19px; +} + +.stats-wrap p.stats { + text-align: right; + padding-right: 8px; + min-width: 35px; + border-right: 1px solid var(--grayscale-light); + font-weight: var(--font-weight-bold); +} + +.stats-wrap .progress-bar { + flex: 1; + border-radius: 4px; + height: 4px; +} + +.stats-wrap .progress-bar::-webkit-progress-bar { + border-radius: 4px; +} + +.stats-wrap .progress-bar::-webkit-progress-value { + border-radius: 4px; +} + +.detail-bg { + position: absolute; + z-index: 1; + right: 8px; + top: 8px; + opacity: 0.1; +} + +.detail-bg path { + fill: var(--grayscale-white); +} + +div#not-found-message { + display: none; + position: absolute; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); + font-size: 20px; + font-weight: 600; +} + +.arrow img { + -webkit-filter: brightness(0) grayscale(1) invert(1); + filter: brightness(0) grayscale(1) invert(1); + width: 28px; +} + +.featured-img { + position: relative; +} + +.featured-img a.arrow { + display: inline-block; + position: absolute; + top: 50%; + transform: translateY(-50%); + z-index: 999; +} + +.featured-img a.arrow.left-arrow { + left: -2rem; +} + +.featured-img a.arrow.right-arrow { + right: -2rem; +} + +.detail-main.main { + height: max-content; + border-color: transparent; + background-color: transparent; +} + +.actions-wrapper { + display: flex; + gap: 10px; + margin-top: 10px; +} + +.action-button { + padding: 10px 20px; + background-color: var(--identity-primary); + color: var(--grayscale-white); + border: none; + border-radius: 5px; + cursor: pointer; +} + +.action-button:hover { + background-color: darken(var(--identity-primary), 10%); +} + +.competitors-list { + margin-top: 20px; +} + +.competitors-list h2 { + text-align: center; + color: var(--grayscale-dark); +} + +#competitors-wrapper { + display: flex; + justify-content: center; + gap: 10px; +} + +.collapsible { + transition: max-height 0.3s ease-out, opacity 0.3s ease-out; + overflow: hidden; +} + +.collapsible.hidden { + max-height: 0; + opacity: 0; +} + +.toggle-button { + background-color: var(--identity-primary); + color: var(--grayscale-white); + border: none; + border-radius: 5px; + padding: 5px 10px; + cursor: pointer; + font-size: var(--body2-font-size); +} + +.toggle-button:hover { + background-color: darken(var(--identity-primary), 10%); +}