create table pokedata ( pokeID int(10) UNSIGNED not null, name varchar(100) not null, classification varchar(100) not null, generation int(11) not null, defense int(11) not null, attack int(11) not null, sp_attack int(11) not null, sp_defense int(11) not null, hp int(11) not null, height_m int(11) , weight_kg int(11), speed int(11) not null, primary key(pokeID) ); create table pokeabilities ( pokeID int(10) UNSIGNED not null, ability varchar(100) not null, primary key(pokeID,ability), foreign key(pokeID) references pokedata(pokeID) ); create table poketypes ( pokeID int(10) UNSIGNED not null, type varchar(100) not null, primary key(pokeID,type), foreign key(pokeID) references pokedata(pokeID) ); insert into pokedata (pokeID,name,classification,generation,defense,attack,sp_attack,sp_defense,hp,height_m,weight_kg,speed) values (1,'Bulbasaur','Seed Pokemon',1,49,49,65,65,45,0.7,6.9,45), (2,'Ivysaur','Seed Pokemon',1,63,62,80,80,60,1,13,60), (3,'Venusaur','Seed Pokemon',1,123,100,122,120,80,2,100,80), (4,'Charmander','Lizard Pokemon',1,43,52,60,50,39,0.6,8.5,65), (5,'Charmeleon','Flame Pokemon',1,58,64,80,65,58,1.1,19,80), (6,'Charizard','Flame Pokemon',1,78,104,159,115,78,1.7,90.5,100), (7,'Squirtle','Tiny Turtle Pokemon',1,65,48,50,64,44,0.5,9,43), (8,'Wartortle','Turtle Pokemon',1,80,63,65,80,59,1,22.5,58), (9,'Blastoise','Shellfish Pokemon',1,120,103,135,115,79,1.6,85.5,78), (10,'Caterpie','Worm Pokemon',1,35,30,20,20,45,0.3,2.9,45), (11,'Metapod','Cocoon Pokemon',1,55,20,25,25,50,0.7,9.9,30), (12,'Butterfree','Butterfly Pokemon',1,50,45,90,80,60,1.1,32,70), (13,'Weedle','Hairy Pokemon',1,30,35,20,20,40,0.3,3.2,50), (14,'Kakuna','Cocoon Pokemon',1,50,25,25,25,45,0.6,10,35), (15,'Beedrill','Poison Bee Pokemon',1,40,150,15,80,65,1,29.5,145), (16,'Pidgey','Tiny Bird Pokemon',1,40,45,35,35,40,0.3,1.8,56), (17,'Pidgeotto','Bird Pokemon',1,55,60,50,50,63,1.1,30,71), (18,'Pidgeot','Bird Pokemon',1,80,80,135,80,83,1.5,39.5,121), (19,'Rattata','Mouse Pokemon',1,35,56,25,35,30,NULL,NULL,72), (20,'Raticate','Mouse Pokemon',1,70,71,40,80,75,NULL,NULL,77), (21,'Spearow','Tiny Bird Pokemon',1,30,60,31,31,40,0.3,2,70), (22,'Fearow','Beak Pokemon',1,65,90,61,61,65,1.2,38,100), (23,'Ekans','Snake Pokemon',1,44,60,40,54,35,2,6.9,55), (24,'Arbok','Cobra Pokemon',1,69,95,65,79,60,3.5,65,80), (25,'Pikachu','Mouse Pokemon',1,40,55,50,50,35,0.4,6,90), (26,'Raichu','Mouse Pokemon',1,50,85,95,85,60,NULL,NULL,110), (27,'Sandshrew','Mouse Pokemon',1,90,75,10,35,50,NULL,NULL,40), (28,'Sandslash','Mouse Pokemon',1,120,100,25,65,75,NULL,NULL,65), (29,'Nidoran♀','Poison Pin Pokemon',1,52,47,40,40,55,0.4,7,41), (30,'Nidorina','Poison Pin Pokemon',1,67,62,55,55,70,0.8,20,56), (31,'Nidoqueen','Drill Pokemon',1,87,92,75,85,90,1.3,60,76), (32,'Nidoran♂','Poison Pin Pokemon',1,40,57,40,40,46,0.5,9,50), (33,'Nidorino','Poison Pin Pokemon',1,57,72,55,55,61,0.9,19.5,65), (34,'Nidoking','Drill Pokemon',1,77,102,85,75,81,1.4,62,85), (35,'Clefairy','Fairy Pokemon',1,48,45,60,65,70,0.6,7.5,35), (36,'Clefable','Fairy Pokemon',1,73,70,95,90,95,1.3,40,60), (37,'Vulpix','Fox Pokemon',1,40,41,50,65,38,NULL,NULL,65), (38,'Ninetales','Fox Pokemon',1,75,67,81,100,73,NULL,NULL,109), (39,'Jigglypuff','Balloon Pokemon',1,20,45,45,25,115,0.5,5.5,20), (40,'Wigglytuff','Balloon Pokemon',1,45,70,85,50,140,1,12,45), (41,'Zubat','Bat Pokemon',1,35,45,30,40,40,0.8,7.5,55), (42,'Golbat','Bat Pokemon',1,70,80,65,75,75,1.6,55,90), (43,'Oddish','Weed Pokemon',1,55,50,75,65,45,0.5,5.4,30), (44,'Gloom','Weed Pokemon',1,70,65,85,75,60,0.8,8.6,40), (45,'Vileplume','Flower Pokemon',1,85,80,110,90,75,1.2,18.6,50), (46,'Paras','Mushroom Pokemon',1,55,70,45,55,35,0.3,5.4,25), (47,'Parasect','Mushroom Pokemon',1,80,95,60,80,60,1,29.5,30), (48,'Venonat','Insect Pokemon',1,50,55,40,55,60,1,30,45), (49,'Venomoth','Poison Moth Pokemon',1,60,65,90,75,70,1.5,12.5,90), (50,'Diglett','Mole Pokemon',1,30,55,35,45,10,NULL,NULL,90), (51,'Dugtrio','Mole Pokemon',1,60,100,50,70,35,NULL,NULL,110), (52,'Meowth','Scratch Cat Pokemon',1,35,35,50,40,40,NULL,NULL,90), (53,'Persian','Classy Cat Pokemon',1,60,60,75,65,65,NULL,NULL,115), (54,'Psyduck','Duck Pokemon',1,48,52,65,50,50,0.8,19.6,55), (55,'Golduck','Duck Pokemon',1,78,82,95,80,80,1.7,76.6,85), (56,'Mankey','Pig Monkey Pokemon',1,35,80,35,45,40,0.5,28,70), (57,'Primeape','Pig Monkey Pokemon',1,60,105,60,70,65,1,32,95), (58,'Growlithe','Puppy Pokemon',1,45,70,70,50,55,0.7,19,60), (59,'Arcanine','Legendary Pokemon',1,80,110,100,80,90,1.9,155,95), (60,'Poliwag','Tadpole Pokemon',1,40,50,40,40,40,0.6,12.4,90), (61,'Poliwhirl','Tadpole Pokemon',1,65,65,50,50,65,1,20,90), (62,'Poliwrath','Tadpole Pokemon',1,95,95,70,90,90,1.3,54,70), (63,'Abra','Psi Pokemon',1,15,20,105,55,25,0.9,19.5,90), (64,'Kadabra','Psi Pokemon',1,30,35,120,70,40,1.3,56.5,105), (65,'Alakazam','Psi Pokemon',1,65,50,175,105,55,1.5,48,150), (66,'Machop','Superpower Pokemon',1,50,80,35,35,70,0.8,19.5,35), (67,'Machoke','Superpower Pokemon',1,70,100,50,60,80,1.5,70.5,45), (68,'Machamp','Superpower Pokemon',1,80,130,65,85,90,1.6,130,55), (69,'Bellsprout','Flower Pokemon',1,35,75,70,30,50,0.7,4,40), (70,'Weepinbell','Flycatcher Pokemon',1,50,90,85,45,65,1,6.4,55), (71,'Victreebel','Flycatcher Pokemon',1,65,105,100,70,80,1.7,15.5,70), (72,'Tentacool','Jellyfish Pokemon',1,35,40,50,100,40,0.9,45.5,70), (73,'Tentacruel','Jellyfish Pokemon',1,65,70,80,120,80,1.6,55,100), (74,'Geodude','Rock Pokemon',1,100,80,30,30,40,NULL,NULL,20), (75,'Graveler','Rock Pokemon',1,115,95,45,45,55,NULL,NULL,35), (76,'Golem','Megaton Pokemon',1,130,120,55,65,80,NULL,NULL,45), (77,'Ponyta','Fire Horse Pokemon',1,55,85,65,65,50,1,30,90), (78,'Rapidash','Fire Horse Pokemon',1,70,100,80,80,65,1.7,95,105), (79,'Slowpoke','Dopey Pokemon',1,65,65,40,40,90,1.2,36,15), (80,'Slowbro','Hermit Crab Pokemon',1,180,75,130,80,95,1.6,78.5,30), (81,'Magnemite','Magnet Pokemon',1,70,35,95,55,25,0.3,6,45), (82,'Magneton','Magnet Pokemon',1,95,60,120,70,50,1,60,70), (83,'Farfetch''d','Wild Duck Pokemon',1,55,90,58,62,52,0.8,15,60), (84,'Doduo','Twin Bird Pokemon',1,45,85,35,35,35,1.4,39.2,75), (85,'Dodrio','Triple Bird Pokemon',1,70,110,60,60,60,1.8,85.2,110), (86,'Seel','Sea Lion Pokemon',1,55,45,45,70,65,1.1,90,45), (87,'Dewgong','Sea Lion Pokemon',1,80,70,70,95,90,1.7,120,70), (88,'Grimer','Sludge Pokemon',1,50,80,40,50,80,NULL,NULL,25), (89,'Muk','Sludge Pokemon',1,75,105,65,100,105,NULL,NULL,50), (90,'Shellder','Bivalve Pokemon',1,100,65,45,25,30,0.3,4,40), (91,'Cloyster','Bivalve Pokemon',1,180,95,85,45,50,1.5,132.5,70), (92,'Gastly','Gas Pokemon',1,30,35,100,35,30,1.3,0.1,80), (93,'Haunter','Gas Pokemon',1,45,50,115,55,45,1.6,0.1,95), (94,'Gengar','Shadow Pokemon',1,80,65,170,95,60,1.5,40.5,130), (95,'Onix','Rock Snake Pokemon',1,160,45,30,45,35,8.8,210,70), (96,'Drowzee','Hypnosis Pokemon',1,45,48,43,90,60,1,32.4,42), (97,'Hypno','Hypnosis Pokemon',1,70,73,73,115,85,1.6,75.6,67), (98,'Krabby','River Crab Pokemon',1,90,105,25,25,30,0.4,6.5,50), (99,'Kingler','Pincer Pokemon',1,115,130,50,50,55,1.3,60,75), (100,'Voltorb','Ball Pokemon',1,50,30,55,55,40,0.5,10.4,100), (101,'Electrode','Ball Pokemon',1,70,50,80,80,60,1.2,66.6,150), (102,'Exeggcute','Egg Pokemon',1,80,40,60,45,60,0.4,2.5,40), (103,'Exeggutor','Coconut Pokemon',1,85,105,125,75,95,NULL,NULL,45), (104,'Cubone','Lonely Pokemon',1,95,50,40,50,50,0.4,6.5,35), (105,'Marowak','Bone Keeper Pokemon',1,110,80,50,80,60,NULL,NULL,45), (106,'Hitmonlee','Kicking Pokemon',1,53,120,35,110,50,1.5,49.8,87), (107,'Hitmonchan','Punching Pokemon',1,79,105,35,110,50,1.4,50.2,76), (108,'Lickitung','Licking Pokemon',1,75,55,60,75,90,1.2,65.5,30), (109,'Koffing','Poison Gas Pokemon',1,95,65,60,45,40,0.6,1,35), (110,'Weezing','Poison Gas Pokemon',1,120,90,85,70,65,1.2,9.5,60), (111,'Rhyhorn','Spikes Pokemon',1,95,85,30,30,80,1,115,25), (112,'Rhydon','Drill Pokemon',1,120,130,45,45,105,1.9,120,40), (113,'Chansey','Egg Pokemon',1,5,5,35,105,250,1.1,34.6,50), (114,'Tangela','Vine Pokemon',1,115,55,100,40,65,1,35,60), (115,'Kangaskhan','Parent Pokemon',1,100,125,60,100,105,2.2,80,100), (116,'Horsea','Dragon Pokemon',1,70,40,70,25,30,0.4,8,60), (117,'Seadra','Dragon Pokemon',1,95,65,95,45,55,1.2,25,85), (118,'Goldeen','Goldfish Pokemon',1,60,67,35,50,45,0.6,15,63), (119,'Seaking','Goldfish Pokemon',1,65,92,65,80,80,1.3,39,68), (120,'Staryu','Starshape Pokemon',1,55,45,70,55,30,0.8,34.5,85), (121,'Starmie','Mysterious Pokemon',1,85,75,100,85,60,1.1,80,115), (122,'Mr. Mime','Barrier Pokemon',1,65,45,100,120,40,1.3,54.5,90), (123,'Scyther','Mantis Pokemon',1,80,110,55,80,70,1.5,56,105), (124,'Jynx','Humanshape Pokemon',1,35,50,115,95,65,1.4,40.6,95), (125,'Electabuzz','Electric Pokemon',1,57,83,95,85,65,1.1,30,105), (126,'Magmar','Spitfire Pokemon',1,57,95,100,85,65,1.3,44.5,93), (127,'Pinsir','Stagbeetle Pokemon',1,120,155,65,90,65,1.5,55,105), (128,'Tauros','Wild Bull Pokemon',1,95,100,40,70,75,1.4,88.4,110), (129,'Magikarp','Fish Pokemon',1,55,10,15,20,20,0.9,10,80), (130,'Gyarados','Atrocious Pokemon',1,109,155,70,130,95,6.5,235,81), (131,'Lapras','Transport Pokemon',1,80,85,85,95,130,2.5,220,60), (132,'Ditto','Transform Pokemon',1,48,48,48,48,48,0.3,4,48), (133,'Eevee','Evolution Pokemon',1,50,55,45,65,55,0.3,6.5,55), (134,'Vaporeon','Bubble Jet Pokemon',1,60,65,110,95,130,1,29,65), (135,'Jolteon','Lightning Pokemon',1,60,65,110,95,65,0.8,24.5,130), (136,'Flareon','Flame Pokemon',1,60,130,95,110,65,0.9,25,65), (137,'Porygon','Virtual Pokemon',1,70,60,85,75,65,0.8,36.5,40), (138,'Omanyte','Spiral Pokemon',1,100,40,90,55,35,0.4,7.5,35), (139,'Omastar','Spiral Pokemon',1,125,60,115,70,70,1,35,55), (140,'Kabuto','Shellfish Pokemon',1,90,80,55,45,30,0.5,11.5,55), (141,'Kabutops','Shellfish Pokemon',1,105,115,65,70,60,1.3,40.5,80), (142,'Aerodactyl','Fossil Pokemon',1,85,135,70,95,80,1.8,59,150), (143,'Snorlax','Sleeping Pokemon',1,65,110,65,110,160,2.1,460,30), (144,'Articuno','Freeze Pokemon',1,100,85,95,125,90,1.7,55.4,85), (145,'Zapdos','Electric Pokemon',1,85,90,125,90,90,1.6,52.6,100), (146,'Moltres','Flame Pokemon',1,90,100,125,85,90,2,60,90), (147,'Dratini','Dragon Pokemon',1,45,64,50,50,41,1.8,3.3,50), (148,'Dragonair','Dragon Pokemon',1,65,84,70,70,61,4,16.5,70), (149,'Dragonite','Dragon Pokemon',1,95,134,100,100,91,2.2,210,80), (150,'Mewtwo','Genetic Pokemon',1,70,150,194,120,106,2,122,140), (151,'Mew','New Species Pokemon',1,100,100,100,100,100,0.4,4,100), (152,'Chikorita','Leaf Pokemon',2,65,49,49,65,45,0.9,6.4,45), (153,'Bayleef','Leaf Pokemon',2,80,62,63,80,60,1.2,15.8,60), (154,'Meganium','Herb Pokemon',2,100,82,83,100,80,1.8,100.5,80), (155,'Cyndaquil','Fire Mouse Pokemon',2,43,52,60,50,39,0.5,7.9,65), (156,'Quilava','Volcano Pokemon',2,58,64,80,65,58,0.9,19,80), (157,'Typhlosion','Volcano Pokemon',2,78,84,109,85,78,1.7,79.5,100), (158,'Totodile','Big Jaw Pokemon',2,64,65,44,48,50,0.6,9.5,43), (159,'Croconaw','Big Jaw Pokemon',2,80,80,59,63,65,1.1,25,58), (160,'Feraligatr','Big Jaw Pokemon',2,100,105,79,83,85,2.3,88.8,78), (161,'Sentret','Scout Pokemon',2,34,46,35,45,35,0.8,6,20), (162,'Furret','Long Body Pokemon',2,64,76,45,55,85,1.8,32.5,90), (163,'Hoothoot','Owl Pokemon',2,30,30,36,56,60,0.7,21.2,50), (164,'Noctowl','Owl Pokemon',2,50,50,86,96,100,1.6,40.8,70), (165,'Ledyba','Five Star Pokemon',2,30,20,40,80,40,1,10.8,55), (166,'Ledian','Five Star Pokemon',2,50,35,55,110,55,1.4,35.6,85), (167,'Spinarak','String Spit Pokemon',2,40,60,40,40,40,0.5,8.5,30), (168,'Ariados','Long Leg Pokemon',2,70,90,60,70,70,1.1,33.5,40), (169,'Crobat','Bat Pokemon',2,80,90,70,80,85,1.8,75,130), (170,'Chinchou','Angler Pokemon',2,38,38,56,56,75,0.5,12,67), (171,'Lanturn','Light Pokemon',2,58,58,76,76,125,1.2,22.5,67), (172,'Pichu','Tiny Mouse Pokemon',2,15,40,35,35,20,0.3,2,60), (173,'Cleffa','Star Shape Pokemon',2,28,25,45,55,50,0.3,3,15), (174,'Igglybuff','Balloon Pokemon',2,15,30,40,20,90,0.3,1,15), (175,'Togepi','Spike Ball Pokemon',2,65,20,40,65,35,0.3,1.5,20), (176,'Togetic','Happiness Pokemon',2,85,40,80,105,55,0.6,3.2,40), (177,'Natu','Little Bird Pokemon',2,45,50,70,45,40,0.2,2,70), (178,'Xatu','Mystic Pokemon',2,70,75,95,70,65,1.5,15,95), (179,'Mareep','Wool Pokemon',2,40,40,65,45,55,0.6,7.8,35), (180,'Flaaffy','Wool Pokemon',2,55,55,80,60,70,0.8,13.3,45), (181,'Ampharos','Light Pokemon',2,105,95,165,110,90,1.4,61.5,45), (182,'Bellossom','Flower Pokemon',2,95,80,90,100,75,0.4,5.8,50), (183,'Marill','Aquamouse Pokemon',2,50,20,20,50,70,0.4,8.5,40), (184,'Azumarill','Aquarabbit Pokemon',2,80,50,60,80,100,0.8,28.5,50), (185,'Sudowoodo','Imitation Pokemon',2,115,100,30,65,70,1.2,38,30), (186,'Politoed','Frog Pokemon',2,75,75,90,100,90,1.1,33.9,70), (187,'Hoppip','Cottonweed Pokemon',2,40,35,35,55,35,0.4,0.5,50), (188,'Skiploom','Cottonweed Pokemon',2,50,45,45,65,55,0.6,1,80), (189,'Jumpluff','Cottonweed Pokemon',2,70,55,55,95,75,0.8,3,110), (190,'Aipom','Long Tail Pokemon',2,55,70,40,55,55,0.8,11.5,85), (191,'Sunkern','Seed Pokemon',2,30,30,30,30,30,0.3,1.8,30), (192,'Sunflora','Sun Pokemon',2,55,75,105,85,75,0.8,8.5,30), (193,'Yanma','Clear Wing Pokemon',2,45,65,75,45,65,1.2,38,95), (194,'Wooper','Water Fish Pokemon',2,45,45,25,25,55,0.4,8.5,15), (195,'Quagsire','Water Fish Pokemon',2,85,85,65,65,95,1.4,75,35), (196,'Espeon','Sun Pokemon',2,60,65,130,95,65,0.9,26.5,110), (197,'Umbreon','Moonlight Pokemon',2,110,65,60,130,95,1,27,65), (198,'Murkrow','Darkness Pokemon',2,42,85,85,42,60,0.5,2.1,91), (199,'Slowking','Royal Pokemon',2,80,75,100,110,95,2,79.5,30), (200,'Misdreavus','Screech Pokemon',2,60,60,85,85,60,0.7,1,85), (201,'Unown','Symbol Pokemon',2,48,72,72,48,48,0.5,5,48), (202,'Wobbuffet','Patient Pokemon',2,58,33,33,58,190,1.3,28.5,33), (203,'Girafarig','Long Neck Pokemon',2,65,80,90,65,70,1.5,41.5,85), (204,'Pineco','Bagworm Pokemon',2,90,65,35,35,50,0.6,7.2,15), (205,'Forretress','Bagworm Pokemon',2,140,90,60,60,75,1.2,125.8,40), (206,'Dunsparce','Land Snake Pokemon',2,70,70,65,65,100,1.5,14,45), (207,'Gligar','Flyscorpion Pokemon',2,105,75,35,65,65,1.1,64.8,85), (208,'Steelix','Iron Snake Pokemon',2,230,125,55,95,75,9.2,400,30), (209,'Snubbull','Fairy Pokemon',2,50,80,40,40,60,0.6,7.8,30), (210,'Granbull','Fairy Pokemon',2,75,120,60,60,90,1.4,48.7,45), (211,'Qwilfish','Balloon Pokemon',2,85,95,55,55,65,0.5,3.9,85), (212,'Scizor','Pincer Pokemon',2,140,150,65,100,70,1.8,118,75), (213,'Shuckle','Mold Pokemon',2,230,10,10,230,20,0.6,20.5,5), (214,'Heracross','Singlehorn Pokemon',2,115,185,40,105,80,1.5,54,75), (215,'Sneasel','Sharp Claw Pokemon',2,55,95,35,75,55,0.9,28,115), (216,'Teddiursa','Little Bear Pokemon',2,50,80,50,50,60,0.6,8.8,40), (217,'Ursaring','Hibernator Pokemon',2,75,130,75,75,90,1.8,125.8,55), (218,'Slugma','Lava Pokemon',2,40,40,70,40,40,0.7,35,20), (219,'Magcargo','Lava Pokemon',2,120,50,90,80,60,0.8,55,30), (220,'Swinub','Pig Pokemon',2,40,50,30,30,50,0.4,6.5,50), (221,'Piloswine','Swine Pokemon',2,80,100,60,60,100,1.1,55.8,50), (222,'Corsola','Coral Pokemon',2,95,55,65,95,65,0.6,5,35), (223,'Remoraid','Jet Pokemon',2,35,65,65,35,35,0.6,12,65), (224,'Octillery','Jet Pokemon',2,75,105,105,75,75,0.9,28.5,45), (225,'Delibird','Delivery Pokemon',2,45,55,65,45,45,0.9,16,75), (226,'Mantine','Kite Pokemon',2,70,40,80,140,85,2.1,220,70), (227,'Skarmory','Armor Bird Pokemon',2,140,80,40,70,65,1.7,50.5,70), (228,'Houndour','Dark Pokemon',2,30,60,80,50,45,0.6,10.8,65), (229,'Houndoom','Dark Pokemon',2,90,90,140,90,75,1.4,35,115), (230,'Kingdra','Dragon Pokemon',2,95,95,95,95,75,1.8,152,85), (231,'Phanpy','Long Nose Pokemon',2,60,60,40,40,90,0.5,33.5,40), (232,'Donphan','Armor Pokemon',2,120,120,60,60,90,1.1,120,50), (233,'Porygon2','Virtual Pokemon',2,90,80,105,95,85,0.6,32.5,60), (234,'Stantler','Big Horn Pokemon',2,62,95,85,65,73,1.4,71.2,85), (235,'Smeargle','Painter Pokemon',2,35,20,20,45,55,1.2,58,75), (236,'Tyrogue','Scuffle Pokemon',2,35,35,35,35,35,0.7,21,35), (237,'Hitmontop','Handstand Pokemon',2,95,95,35,110,50,1.4,48,70), (238,'Smoochum','Kiss Pokemon',2,15,30,85,65,45,0.4,6,65), (239,'Elekid','Electric Pokemon',2,37,63,65,55,45,0.6,23.5,95), (240,'Magby','Live Coal Pokemon',2,37,75,70,55,45,0.7,21.4,83), (241,'Miltank','Milk Cow Pokemon',2,105,80,40,70,95,1.2,75.5,100), (242,'Blissey','Happiness Pokemon',2,10,10,75,135,255,1.5,46.8,55), (243,'Raikou','Thunder Pokemon',2,75,85,115,100,90,1.9,178,115), (244,'Entei','Volcano Pokemon',2,85,115,90,75,115,2.1,198,100), (245,'Suicune','Aurora Pokemon',2,115,75,90,115,100,2,187,85), (246,'Larvitar','Rock Skin Pokemon',2,50,64,45,50,50,0.6,72,41), (247,'Pupitar','Hard Shell Pokemon',2,70,84,65,70,70,1.2,152,51), (248,'Tyranitar','Armor Pokemon',2,150,164,95,120,100,2,202,71), (249,'Lugia','Diving Pokemon',2,130,90,90,154,106,5.2,216,110), (250,'Ho-Oh','Rainbow Pokemon',2,90,130,110,154,106,3.8,199,90), (251,'Celebi','Time Travel Pokemon',2,100,100,100,100,100,0.6,5,100), (252,'Treecko','Wood Gecko Pokemon',3,35,45,65,55,40,0.5,5,70), (253,'Grovyle','Wood Gecko Pokemon',3,45,65,85,65,50,0.9,21.6,95), (254,'Sceptile','Forest Pokemon',3,75,110,145,85,70,1.7,52.2,145), (255,'Torchic','Chick Pokemon',3,40,60,70,50,45,0.4,2.5,45), (256,'Combusken','Young Fowl Pokemon',3,60,85,85,60,60,0.9,19.5,55), (257,'Blaziken','Blaze Pokemon',3,80,160,130,80,80,1.9,52,100), (258,'Mudkip','Mud Fish Pokemon',3,50,70,50,50,50,0.4,7.6,40), (259,'Marshtomp','Mud Fish Pokemon',3,70,85,60,70,70,0.7,28,50), (260,'Swampert','Mud Fish Pokemon',3,110,150,95,110,100,1.5,81.9,70), (261,'Poochyena','Bite Pokemon',3,35,55,30,30,35,0.5,13.6,35), (262,'Mightyena','Bite Pokemon',3,70,90,60,60,70,1,37,70), (263,'Zigzagoon','Tiny Racoon Pokemon',3,41,30,30,41,38,0.4,17.5,60), (264,'Linoone','Rush Pokemon',3,61,70,50,61,78,0.5,32.5,100), (265,'Wurmple','Worm Pokemon',3,35,45,20,30,45,0.3,3.6,20), (266,'Silcoon','Cocoon Pokemon',3,55,35,25,25,50,0.6,10,15), (267,'Beautifly','Butterfly Pokemon',3,50,70,100,50,60,1,28.4,65), (268,'Cascoon','Cocoon Pokemon',3,55,35,25,25,50,0.7,11.5,15), (269,'Dustox','Poison Moth Pokemon',3,70,50,50,90,60,1.2,31.6,65), (270,'Lotad','Water Weed Pokemon',3,30,30,40,50,40,0.5,2.6,30), (271,'Lombre','Jolly Pokemon',3,50,50,60,70,60,1.2,32.5,50), (272,'Ludicolo','Carefree Pokemon',3,70,70,90,100,80,1.5,55,70), (273,'Seedot','Acorn Pokemon',3,50,40,30,30,40,0.5,4,30), (274,'Nuzleaf','Wily Pokemon',3,40,70,60,40,70,1,28,60), (275,'Shiftry','Wickid Pokemon',3,60,100,90,60,90,1.3,59.6,80), (276,'Taillow','TinySwallow Pokemon',3,30,55,30,30,40,0.3,2.3,85), (277,'Swellow','Swallow Pokemon',3,60,85,75,50,60,0.7,19.8,125), (278,'Wingull','Seagull Pokemon',3,30,30,55,30,40,0.6,9.5,85), (279,'Pelipper','Water Bird Pokemon',3,100,50,95,70,60,1.2,28,65), (280,'Ralts','Feeling Pokemon',3,25,25,45,35,28,0.4,6.6,40), (281,'Kirlia','Emotion Pokemon',3,35,35,65,55,38,0.8,20.2,50), (282,'Gardevoir','Embrace Pokemon',3,65,85,165,135,68,1.6,48.4,100), (283,'Surskit','Pond Skater Pokemon',3,32,30,50,52,40,0.5,1.7,65), (284,'Masquerain','Eyeball Pokemon',3,62,60,100,82,70,0.8,3.6,80), (285,'Shroomish','Mushroom Pokemon',3,60,40,40,60,60,0.4,4.5,35), (286,'Breloom','Mushroom Pokemon',3,80,130,60,60,60,1.2,39.2,70), (287,'Slakoth','Slacker Pokemon',3,60,60,35,35,60,0.8,24,30), (288,'Vigoroth','Wild Monkey Pokemon',3,80,80,55,55,80,1.4,46.5,90), (289,'Slaking','Lazy Pokemon',3,100,160,95,65,150,2,130.5,100), (290,'Nincada','Trainee Pokemon',3,90,45,30,30,31,0.5,5.5,40), (291,'Ninjask','Ninja Pokemon',3,45,90,50,50,61,0.8,12,160), (292,'Shedinja','Shed Pokemon',3,45,90,30,30,1,0.8,1.2,40), (293,'Whismur','Whisper Pokemon',3,23,51,51,23,64,0.6,16.3,28), (294,'Loudred','Big Voice Pokemon',3,43,71,71,43,84,1,40.5,48), (295,'Exploud','Loud Noise Pokemon',3,63,91,91,73,104,1.5,84,68), (296,'Makuhita','Guts Pokemon',3,30,60,20,30,72,1,86.4,25), (297,'Hariyama','Arm Thrust Pokemon',3,60,120,40,60,144,2.3,253.8,50), (298,'Azurill','Polka Dot Pokemon',3,40,20,20,40,50,0.2,2,20), (299,'Nosepass','Compass Pokemon',3,135,45,45,90,30,1,97,30), (300,'Skitty','Kitten Pokemon',3,45,45,35,35,50,0.6,11,50), (301,'Delcatty','Prim Pokemon',3,65,65,55,55,70,1.1,32.6,90), (302,'Sableye','Darkness Pokemon',3,125,85,85,115,50,0.5,11,20), (303,'Mawile','Deceiver Pokemon',3,125,105,55,95,50,0.6,11.5,50), (304,'Aron','Iron Armor Pokemon',3,100,70,40,40,50,0.4,60,30), (305,'Lairon','Iron Armor Pokemon',3,140,90,50,50,60,0.9,120,40), (306,'Aggron','Iron Armor Pokemon',3,230,140,60,80,70,2.1,360,50), (307,'Meditite','Meditate Pokemon',3,55,40,40,55,30,0.6,11.2,60), (308,'Medicham','Meditate Pokemon',3,85,100,80,85,60,1.3,31.5,100), (309,'Electrike','Lightning Pokemon',3,40,45,65,40,40,0.6,15.2,65), (310,'Manectric','Discharge Pokemon',3,80,75,135,80,70,1.5,40.2,135), (311,'Plusle','Cheering Pokemon',3,40,50,85,75,60,0.4,4.2,95), (312,'Minun','Cheering Pokemon',3,50,40,75,85,60,0.4,4.2,95), (313,'Volbeat','Firefly Pokemon',3,75,73,47,85,65,0.7,17.7,85), (314,'Illumise','Firefly Pokemon',3,75,47,73,85,65,0.6,17.7,85), (315,'Roselia','Thorn Pokemon',3,45,60,100,80,50,0.3,2,65), (316,'Gulpin','Stomach Pokemon',3,53,43,43,53,70,0.4,10.3,40), (317,'Swalot','Poison Bag Pokemon',3,83,73,73,83,100,1.7,80,55), (318,'Carvanha','Savage Pokemon',3,20,90,65,20,45,0.8,20.8,65), (319,'Sharpedo','Brutal Pokemon',3,70,140,110,65,70,1.8,88.8,105), (320,'Wailmer','Ball Whale Pokemon',3,35,70,70,35,130,2,130,60), (321,'Wailord','Float Whale Pokemon',3,45,90,90,45,170,14.5,398,60), (322,'Numel','Numb Pokemon',3,40,60,65,45,60,0.7,24,35), (323,'Camerupt','Eruption Pokemon',3,100,120,145,105,70,1.9,220,20), (324,'Torkoal','Coal Pokemon',3,140,85,85,70,70,0.5,80.4,20), (325,'Spoink','Bounce Pokemon',3,35,25,70,80,60,0.7,30.6,60), (326,'Grumpig','Manipulate Pokemon',3,65,45,90,110,80,0.9,71.5,80), (327,'Spinda','Spot Panda Pokemon',3,60,60,60,60,60,1.1,5,60), (328,'Trapinch','Ant Pit Pokemon',3,45,100,45,45,45,0.7,15,10), (329,'Vibrava','Vibration Pokemon',3,50,70,50,50,50,1.1,15.3,70), (330,'Flygon','Mystic Pokemon',3,80,100,80,80,80,2,82,100), (331,'Cacnea','Cactus Pokemon',3,40,85,85,40,50,0.4,51.3,35), (332,'Cacturne','Scarecrow Pokemon',3,60,115,115,60,70,1.3,77.4,55), (333,'Swablu','Cotton Bird Pokemon',3,60,40,40,75,45,0.4,1.2,50), (334,'Altaria','Humming Pokemon',3,110,110,110,105,75,1.1,20.6,80), (335,'Zangoose','Cat Ferret Pokemon',3,60,115,60,60,73,1.3,40.3,90), (336,'Seviper','Fang Snake Pokemon',3,60,100,100,60,73,2.7,52.5,65), (337,'Lunatone','Meteorite Pokemon',3,65,55,95,85,90,1,168,70), (338,'Solrock','Meteorite Pokemon',3,85,95,55,65,90,1.2,154,70), (339,'Barboach','Whiskers Pokemon',3,43,48,46,41,50,0.4,1.9,60), (340,'Whiscash','Whiskers Pokemon',3,73,78,76,71,110,0.9,23.6,60), (341,'Corphish','Ruffian Pokemon',3,65,80,50,35,43,0.6,11.5,35), (342,'Crawdaunt','Rogue Pokemon',3,85,120,90,55,63,1.1,32.8,55), (343,'Baltoy','Clay Doll Pokemon',3,55,40,40,70,40,0.5,21.5,55), (344,'Claydol','Clay Doll Pokemon',3,105,70,70,120,60,1.5,108,75), (345,'Lileep','Sea Lily Pokemon',3,77,41,61,87,66,1,23.8,23), (346,'Cradily','Barnacle Pokemon',3,97,81,81,107,86,1.5,60.4,43), (347,'Anorith','Old Shrimp Pokemon',3,50,95,40,50,45,0.7,12.5,75), (348,'Armaldo','Plate Pokemon',3,100,125,70,80,75,1.5,68.2,45), (349,'Feebas','Fish Pokemon',3,20,15,10,55,20,0.6,7.4,80), (350,'Milotic','Tender Pokemon',3,79,60,100,125,95,6.2,162,81), (351,'Castform','Weather Pokemon',3,70,70,70,70,70,0.3,0.8,70), (352,'Kecleon','Color Swap Pokemon',3,70,90,60,120,60,1,22,40), (353,'Shuppet','Puppet Pokemon',3,35,75,63,33,44,0.6,2.3,45), (354,'Banette','Marionette Pokemon',3,75,165,93,83,64,1.1,12.5,75), (355,'Duskull','Requiem Pokemon',3,90,40,30,90,20,0.8,15,25), (356,'Dusclops','Beckon Pokemon',3,130,70,60,130,40,1.6,30.6,25), (357,'Tropius','Fruit Pokemon',3,83,68,72,87,99,2,100,51), (358,'Chimecho','Wind Chime Pokemon',3,80,50,95,90,75,0.6,1,65), (359,'Absol','Disaster Pokemon',3,60,150,115,60,65,1.2,47,115), (360,'Wynaut','Bright Pokemon',3,48,23,23,48,95,0.6,14,23), (361,'Snorunt','Snow Hat Pokemon',3,50,50,50,50,50,0.7,16.8,50), (362,'Glalie','Face Pokemon',3,80,120,120,80,80,1.5,256.5,100), (363,'Spheal','Clap Pokemon',3,50,40,55,50,70,0.8,39.5,25), (364,'Sealeo','Ball Roll Pokemon',3,70,60,75,70,90,1.1,87.6,45), (365,'Walrein','Ice Break Pokemon',3,90,80,95,90,110,1.4,150.6,65), (366,'Clamperl','Bivalve Pokemon',3,85,64,74,55,35,0.4,52.5,32), (367,'Huntail','Deep Sea Pokemon',3,105,104,94,75,55,1.7,27,52), (368,'Gorebyss','South Sea Pokemon',3,105,84,114,75,55,1.8,22.6,52), (369,'Relicanth','Longevity Pokemon',3,130,90,45,65,100,1,23.4,55), (370,'Luvdisc','Rendezvous Pokemon',3,55,30,40,65,43,0.6,8.7,97), (371,'Bagon','Rock Head Pokemon',3,60,75,40,30,45,0.6,42.1,50), (372,'Shelgon','Endurance Pokemon',3,100,95,60,50,65,1.1,110.5,50), (373,'Salamence','Dragon Pokemon',3,130,145,120,90,95,1.5,102.6,120), (374,'Beldum','Iron Ball Pokemon',3,80,55,35,60,40,0.6,95.2,30), (375,'Metang','Iron Claw Pokemon',3,100,75,55,80,60,1.2,202.5,50), (376,'Metagross','Iron Leg Pokemon',3,150,145,105,110,80,1.6,550,110), (377,'Regirock','Rock Peak Pokemon',3,200,100,50,100,80,1.7,230,50), (378,'Regice','Iceberg Pokemon',3,100,50,100,200,80,1.8,175,50), (379,'Registeel','Iron Pokemon',3,150,75,75,150,80,1.9,205,50), (380,'Latias','Eon Pokemon',3,120,100,140,150,80,1.4,40,110), (381,'Latios','Eon Pokemon',3,100,130,160,120,80,2,60,110), (382,'Kyogre','Sea Basin Pokemon',3,90,150,180,160,100,4.5,352,90), (383,'Groudon','Continent Pokemon',3,160,180,150,90,100,3.5,950,90), (384,'Rayquaza','Sky High Pokemon',3,100,180,180,100,105,7,206.5,115), (385,'Jirachi','Wish Pokemon',3,100,100,100,100,100,0.3,1.1,100), (386,'Deoxys','DNA Pokemon',3,90,95,95,90,50,1.7,60.8,180), (387,'Turtwig','Tiny Leaf Pokemon',4,64,68,45,55,55,0.4,10.2,31), (388,'Grotle','Grove Pokemon',4,85,89,55,65,75,1.1,97,36), (389,'Torterra','Continent Pokemon',4,105,109,75,85,95,2.2,310,56), (390,'Chimchar','Chimp Pokemon',4,44,58,58,44,44,0.5,6.2,61), (391,'Monferno','Playful Pokemon',4,52,78,78,52,64,0.9,22,81), (392,'Infernape','Flame Pokemon',4,71,104,104,71,76,1.2,55,108), (393,'Piplup','Penguin Pokemon',4,53,51,61,56,53,0.4,5.2,40), (394,'Prinplup','Penguin Pokemon',4,68,66,81,76,64,0.8,23,50), (395,'Empoleon','Emperor Pokemon',4,88,86,111,101,84,1.7,84.5,60), (396,'Starly','Starling Pokemon',4,30,55,30,30,40,0.3,2,60), (397,'Staravia','Starling Pokemon',4,50,75,40,40,55,0.6,15.5,80), (398,'Staraptor','Predator Pokemon',4,70,120,50,60,85,1.2,24.9,100), (399,'Bidoof','Plump Mouse Pokemon',4,40,45,35,40,59,0.5,20,31), (400,'Bibarel','Beaver Pokemon',4,60,85,55,60,79,1,31.5,71), (401,'Kricketot','Cricket Pokemon',4,41,25,25,41,37,0.3,2.2,25), (402,'Kricketune','Cricket Pokemon',4,51,85,55,51,77,1,25.5,65), (403,'Shinx','Flash Pokemon',4,34,65,40,34,45,0.5,9.5,45), (404,'Luxio','Spark Pokemon',4,49,85,60,49,60,0.9,30.5,60), (405,'Luxray','Gleam Eyes Pokemon',4,79,120,95,79,80,1.4,42,70), (406,'Budew','Bud Pokemon',4,35,30,50,70,40,0.2,1.2,55), (407,'Roserade','Bouquet Pokemon',4,65,70,125,105,60,0.9,14.5,90), (408,'Cranidos','Head Butt Pokemon',4,40,125,30,30,67,0.9,31.5,58), (409,'Rampardos','Head Butt Pokemon',4,60,165,65,50,97,1.6,102.5,58), (410,'Shieldon','Shield Pokemon',4,118,42,42,88,30,0.5,57,30), (411,'Bastiodon','Shield Pokemon',4,168,52,47,138,60,1.3,149.5,30), (412,'Burmy','Bagworm Pokemon',4,45,29,29,45,40,0.2,3.4,36), (413,'Wormadam','Bagworm Pokemon',4,95,69,69,95,60,0.5,6.5,36), (414,'Mothim','Moth Pokemon',4,50,94,94,50,70,0.9,23.3,66), (415,'Combee','Tiny Bee Pokemon',4,42,30,30,42,30,0.3,5.5,70), (416,'Vespiquen','Beehive Pokemon',4,102,80,80,102,70,1.2,38.5,40), (417,'Pachirisu','EleSquirrel Pokemon',4,70,45,45,90,60,0.4,3.9,95), (418,'Buizel','Sea Weasel Pokemon',4,35,65,60,30,55,0.7,29.5,85), (419,'Floatzel','Sea Weasel Pokemon',4,55,105,85,50,85,1.1,33.5,115), (420,'Cherubi','Cherry Pokemon',4,45,35,62,53,45,0.4,3.3,35), (421,'Cherrim','Blossom Pokemon',4,70,60,87,78,70,0.5,9.3,85), (422,'Shellos','Sea Slug Pokemon',4,48,48,57,62,76,0.3,6.3,34), (423,'Gastrodon','Sea Slug Pokemon',4,68,83,92,82,111,0.9,29.9,39), (424,'Ambipom','Long Tail Pokemon',4,66,100,60,66,75,1.2,20.3,115), (425,'Drifloon','Balloon Pokemon',4,34,50,60,44,90,0.4,1.2,70), (426,'Drifblim','Blimp Pokemon',4,44,80,90,54,150,1.2,15,80), (427,'Buneary','Rabbit Pokemon',4,44,66,44,56,55,0.4,5.5,85), (428,'Lopunny','Rabbit Pokemon',4,94,136,54,96,65,1.2,33.3,135), (429,'Mismagius','Magical Pokemon',4,60,60,105,105,60,0.9,4.4,105), (430,'Honchkrow','Big Boss Pokemon',4,52,125,105,52,100,0.9,27.3,71), (431,'Glameow','Catty Pokemon',4,42,55,42,37,49,0.5,3.9,85), (432,'Purugly','Tiger Cat Pokemon',4,64,82,64,59,71,1,43.8,112), (433,'Chingling','Bell Pokemon',4,50,30,65,50,45,0.2,0.6,45), (434,'Stunky','Skunk Pokemon',4,47,63,41,41,63,0.4,19.2,74), (435,'Skuntank','Skunk Pokemon',4,67,93,71,61,103,1,38,84), (436,'Bronzor','Bronze Pokemon',4,86,24,24,86,57,0.5,60.5,23), (437,'Bronzong','Bronze Bell Pokemon',4,116,89,79,116,67,1.3,187,33), (438,'Bonsly','Bonsai Pokemon',4,95,80,10,45,50,0.5,15,10), (439,'Mime Jr.','Mime Pokemon',4,45,25,70,90,20,0.6,13,60), (440,'Happiny','Playhouse Pokemon',4,5,5,15,65,100,0.6,24.4,30), (441,'Chatot','Music Note Pokemon',4,45,65,92,42,76,0.5,1.9,91), (442,'Spiritomb','Forbidden Pokemon',4,108,92,92,108,50,1,108,35), (443,'Gible','Land Shark Pokemon',4,45,70,40,45,58,0.7,20.5,42), (444,'Gabite','Cave Pokemon',4,65,90,50,55,68,1.4,56,82), (445,'Garchomp','Mach Pokemon',4,115,170,120,95,108,1.9,95,92), (446,'Munchlax','Big Eater Pokemon',4,40,85,40,85,135,0.6,105,5), (447,'Riolu','Emanation Pokemon',4,40,70,35,40,40,0.7,20.2,60), (448,'Lucario','Aura Pokemon',4,88,145,140,70,70,1.2,54,112), (449,'Hippopotas','Hippo Pokemon',4,78,72,38,42,68,0.8,49.5,32), (450,'Hippowdon','Heavyweight Pokemon',4,118,112,68,72,108,2,300,47), (451,'Skorupi','Scorpion Pokemon',4,90,50,30,55,40,0.8,12,65), (452,'Drapion','Ogre Scorp Pokemon',4,110,90,60,75,70,1.3,61.5,95), (453,'Croagunk','Toxic Mouth Pokemon',4,40,61,61,40,48,0.7,23,50), (454,'Toxicroak','Toxic Mouth Pokemon',4,65,106,86,65,83,1.3,44.4,85), (455,'Carnivine','Bug Catcher Pokemon',4,72,100,90,72,74,1.4,27,46), (456,'Finneon','Wing Fish Pokemon',4,56,49,49,61,49,0.4,7,66), (457,'Lumineon','Neon Pokemon',4,76,69,69,86,69,1.2,24,91), (458,'Mantyke','Kite Pokemon',4,50,20,60,120,45,1,65,50), (459,'Snover','Frosted Tree Pokemon',4,50,62,62,60,60,1,50.5,40), (460,'Abomasnow','Frosted Tree Pokemon',4,105,132,132,105,90,2.2,135.5,30), (461,'Weavile','Sharp Claw Pokemon',4,65,120,45,85,70,1.1,34,125), (462,'Magnezone','Magnet Area Pokemon',4,115,70,130,90,70,1.2,180,60), (463,'Lickilicky','Licking Pokemon',4,95,85,80,95,110,1.7,140,50), (464,'Rhyperior','Drill Pokemon',4,130,140,55,55,115,2.4,282.8,40), (465,'Tangrowth','Vine Pokemon',4,125,100,110,50,100,2,128.6,50), (466,'Electivire','Thunderbolt Pokemon',4,67,123,95,85,75,1.8,138.6,95), (467,'Magmortar','Blast Pokemon',4,67,95,125,95,75,1.6,68,83), (468,'Togekiss','Jubilee Pokemon',4,95,50,120,115,85,1.5,38,80), (469,'Yanmega','Ogre Darner Pokemon',4,86,76,116,56,86,1.9,51.5,95), (470,'Leafeon','Verdant Pokemon',4,130,110,60,65,65,1,25.5,95), (471,'Glaceon','Fresh Snow Pokemon',4,110,60,130,95,65,0.8,25.9,65), (472,'Gliscor','Fang Scorp Pokemon',4,125,95,45,75,75,2,42.5,95), (473,'Mamoswine','Twin Tusk Pokemon',4,80,130,70,60,110,2.5,291,80), (474,'Porygon-Z','Virtual Pokemon',4,70,80,135,75,85,0.9,34,90), (475,'Gallade','Blade Pokemon',4,95,165,65,115,68,1.6,52,110), (476,'Probopass','Compass Pokemon',4,145,55,75,150,60,1.4,340,40), (477,'Dusknoir','Gripper Pokemon',4,135,100,65,135,45,2.2,106.6,45), (478,'Froslass','Snow Land Pokemon',4,70,80,80,70,70,1.3,26.6,110), (479,'Rotom','Plasma Pokemon',4,107,65,105,107,50,0.3,0.3,86), (480,'Uxie','Knowledge Pokemon',4,130,75,75,130,75,0.3,0.3,95), (481,'Mesprit','Emotion Pokemon',4,105,105,105,105,80,0.3,0.3,80), (482,'Azelf','Willpower Pokemon',4,70,125,125,70,75,0.3,0.3,115), (483,'Dialga','Temporal Pokemon',4,120,120,150,100,100,5.4,683,90), (484,'Palkia','Spatial Pokemon',4,100,120,150,120,90,4.2,336,100), (485,'Heatran','Lava Dome Pokemon',4,106,90,130,106,91,1.7,430,77), (486,'Regigigas','Colossal Pokemon',4,110,160,80,110,110,3.7,420,100), (487,'Giratina','Renegade Pokemon',4,100,120,120,100,150,4.5,750,90), (488,'Cresselia','Lunar Pokemon',4,120,70,75,130,120,1.5,85.6,85), (489,'Phione','Sea Drifter Pokemon',4,80,80,80,80,80,0.4,3.1,80), (490,'Manaphy','Seafaring Pokemon',4,100,100,100,100,100,0.3,1.4,100), (491,'Darkrai','Pitch-Black Pokemon',4,90,90,135,90,70,1.5,50.5,125), (492,'Shaymin','Gratitude Pokemon',4,75,103,120,75,100,0.2,2.1,127), (493,'Arceus','Alpha Pokemon',4,120,120,120,120,120,3.2,320,120), (494,'Victini','Victory Pokemon',5,100,100,100,100,100,0.4,4,100), (495,'Snivy','Grass Snake Pokemon',5,55,45,45,55,45,0.6,8.1,63), (496,'Servine','Grass Snake Pokemon',5,75,60,60,75,60,0.8,16,83), (497,'Serperior','Regal Pokemon',5,95,75,75,95,75,3.3,63,113), (498,'Tepig','Fire Pig Pokemon',5,45,63,45,45,65,0.5,9.9,45), (499,'Pignite','Fire Pig Pokemon',5,55,93,70,55,90,1,55.5,55), (500,'Emboar','Mega Fire Pig Pokemon',5,65,123,100,65,110,1.6,150,65), (501,'Oshawott','Sea Otter Pokemon',5,45,55,63,45,55,0.5,5.9,45), (502,'Dewott','Discipline Pokemon',5,60,75,83,60,75,0.8,24.5,60), (503,'Samurott','Formidable Pokemon',5,85,100,108,70,95,1.5,94.6,70), (504,'Patrat','Scout Pokemon',5,39,55,35,39,45,0.5,11.6,42), (505,'Watchog','Lookout Pokemon',5,69,85,60,69,60,1.1,27,77), (506,'Lillipup','Puppy Pokemon',5,45,60,25,45,45,0.4,4.1,55), (507,'Herdier','Loyal Dog Pokemon',5,65,80,35,65,65,0.9,14.7,60), (508,'Stoutland','Big-Hearted Pokemon',5,90,110,45,90,85,1.2,61,80), (509,'Purrloin','Devious Pokemon',5,37,50,50,37,41,0.4,10.1,66), (510,'Liepard','Cruel Pokemon',5,50,88,88,50,64,1.1,37.5,106), (511,'Pansage','Grass Monkey Pokemon',5,48,53,53,48,50,0.6,10.5,64), (512,'Simisage','Thorn Monkey Pokemon',5,63,98,98,63,75,1.1,30.5,101), (513,'Pansear','High Temp Pokemon',5,48,53,53,48,50,0.6,11,64), (514,'Simisear','Ember Pokemon',5,63,98,98,63,75,1,28,101), (515,'Panpour','Spray Pokemon',5,48,53,53,48,50,0.6,13.5,64), (516,'Simipour','Geyser Pokemon',5,63,98,98,63,75,1,29,101), (517,'Munna','Dream Eater Pokemon',5,45,25,67,55,76,0.6,23.3,24), (518,'Musharna','Drowsing Pokemon',5,85,55,107,95,116,1.1,60.5,29), (519,'Pidove','Tiny Pigeon Pokemon',5,50,55,36,30,50,0.3,2.1,43), (520,'Tranquill','Wild Pigeon Pokemon',5,62,77,50,42,62,0.6,15,65), (521,'Unfezant','Proud Pokemon',5,80,115,65,55,80,1.2,29,93), (522,'Blitzle','Electrified Pokemon',5,32,60,50,32,45,0.8,29.8,76), (523,'Zebstrika','Thunderbolt Pokemon',5,63,100,80,63,75,1.6,79.5,116), (524,'Roggenrola','Mantle Pokemon',5,85,75,25,25,55,0.4,18,15), (525,'Boldore','Ore Pokemon',5,105,105,50,40,70,0.9,102,20), (526,'Gigalith','Compressed Pokemon',5,130,135,60,80,85,1.7,260,25), (527,'Woobat','Bat Pokemon',5,43,45,55,43,65,0.4,2.1,72), (528,'Swoobat','Courting Pokemon',5,55,57,77,55,67,0.9,10.5,114), (529,'Drilbur','Mole Pokemon',5,40,85,30,45,60,0.3,8.5,68), (530,'Excadrill','Subterrene Pokemon',5,60,135,50,65,110,0.7,40.4,88), (531,'Audino','Hearing Pokemon',5,126,60,80,126,103,1.1,31,50), (532,'Timburr','Muscular Pokemon',5,55,80,25,35,75,0.6,12.5,35), (533,'Gurdurr','Muscular Pokemon',5,85,105,40,50,85,1.2,40,40), (534,'Conkeldurr','Muscular Pokemon',5,95,140,55,65,105,1.4,87,45), (535,'Tympole','Tadpole Pokemon',5,40,50,50,40,50,0.5,4.5,64), (536,'Palpitoad','Vibration Pokemon',5,55,65,65,55,75,0.8,17,69), (537,'Seismitoad','Vibration Pokemon',5,75,95,85,75,105,1.5,62,74), (538,'Throh','Judo Pokemon',5,85,100,30,85,120,1.3,55.5,45), (539,'Sawk','Karate Pokemon',5,75,125,30,75,75,1.4,51,85), (540,'Sewaddle','Sewing Pokemon',5,70,53,40,60,45,0.3,2.5,42), (541,'Swadloon','Leaf-Wrapped Pokemon',5,90,63,50,80,55,0.5,7.3,42), (542,'Leavanny','Nurturing Pokemon',5,80,103,70,80,75,1.2,20.5,92), (543,'Venipede','Centipede Pokemon',5,59,45,30,39,30,0.4,5.3,57), (544,'Whirlipede','Curlipede Pokemon',5,99,55,40,79,40,1.2,58.5,47), (545,'Scolipede','Megapede Pokemon',5,89,100,55,69,60,2.5,200.5,112), (546,'Cottonee','Cotton Puff Pokemon',5,60,27,37,50,40,0.3,0.6,66), (547,'Whimsicott','Windveiled Pokemon',5,85,67,77,75,60,0.7,6.6,116), (548,'Petilil','Bulb Pokemon',5,50,35,70,50,45,0.5,6.6,30), (549,'Lilligant','Flowering Pokemon',5,75,60,110,75,70,1.1,16.3,90), (550,'Basculin','Hostile Pokemon',5,65,92,80,55,70,1,18,98), (551,'Sandile','Desert Croc Pokemon',5,35,72,35,35,50,0.7,15.2,65), (552,'Krokorok','Desert Croc Pokemon',5,45,82,45,45,60,1,33.4,74), (553,'Krookodile','Intimidation Pokemon',5,80,117,65,70,95,1.5,96.3,92), (554,'Darumaka','Zen Charm Pokemon',5,45,90,15,45,70,0.6,37.5,50), (555,'Darmanitan','Blazing Pokemon',5,105,30,140,105,105,1.3,92.9,55), (556,'Maractus','Cactus Pokemon',5,67,86,106,67,75,1,28,60), (557,'Dwebble','Rock Inn Pokemon',5,85,65,35,35,50,0.3,14.5,55), (558,'Crustle','Stone Home Pokemon',5,125,105,65,75,70,1.4,200,45), (559,'Scraggy','Shedding Pokemon',5,70,75,35,70,50,0.6,11.8,48), (560,'Scrafty','Hoodlum Pokemon',5,115,90,45,115,65,1.1,30,58), (561,'Sigilyph','Avianoid Pokemon',5,80,58,103,80,72,1.4,14,97), (562,'Yamask','Spirit Pokemon',5,85,30,55,65,38,0.5,1.5,30), (563,'Cofagrigus','Coffin Pokemon',5,145,50,95,105,58,1.7,76.5,30), (564,'Tirtouga','Prototurtle Pokemon',5,103,78,53,45,54,0.7,16.5,22), (565,'Carracosta','Prototurtle Pokemon',5,133,108,83,65,74,1.2,81,32), (566,'Archen','First Bird Pokemon',5,45,112,74,45,55,0.5,9.5,70), (567,'Archeops','First Bird Pokemon',5,65,140,112,65,75,1.4,32,110), (568,'Trubbish','Trash Bag Pokemon',5,62,50,40,62,50,0.6,31,65), (569,'Garbodor','Trash Heap Pokemon',5,82,95,60,82,80,1.9,107.3,75), (570,'Zorua','Tricky Fox Pokemon',5,40,65,80,40,40,0.7,12.5,65), (571,'Zoroark','Illusion Fox Pokemon',5,60,105,120,60,60,1.6,81.1,105), (572,'Minccino','Chinchilla Pokemon',5,40,50,40,40,55,0.4,5.8,75), (573,'Cinccino','Scarf Pokemon',5,60,95,65,60,75,0.5,7.5,115), (574,'Gothita','Fixation Pokemon',5,50,30,55,65,45,0.4,5.8,45), (575,'Gothorita','Manipulate Pokemon',5,70,45,75,85,60,0.7,18,55), (576,'Gothitelle','Astral Body Pokemon',5,95,55,95,110,70,1.5,44,65), (577,'Solosis','Cell Pokemon',5,40,30,105,50,45,0.3,1,20), (578,'Duosion','Mitosis Pokemon',5,50,40,125,60,65,0.6,8,30), (579,'Reuniclus','Multiplying Pokemon',5,75,65,125,85,110,1,20.1,30), (580,'Ducklett','Water Bird Pokemon',5,50,44,44,50,62,0.5,5.5,55), (581,'Swanna','White Bird Pokemon',5,63,87,87,63,75,1.3,24.2,98), (582,'Vanillite','Fresh Snow Pokemon',5,50,50,65,60,36,0.4,5.7,44), (583,'Vanillish','Icy Snow Pokemon',5,65,65,80,75,51,1.1,41,59), (584,'Vanilluxe','Snowstorm Pokemon',5,85,95,110,95,71,1.3,57.5,79), (585,'Deerling','Season Pokemon',5,50,60,40,50,60,0.6,19.5,75), (586,'Sawsbuck','Season Pokemon',5,70,100,60,70,80,1.9,92.5,95), (587,'Emolga','Sky Squirrel Pokemon',5,60,75,75,60,55,0.4,5,103), (588,'Karrablast','Clamping Pokemon',5,45,75,40,45,50,0.5,5.9,60), (589,'Escavalier','Cavalry Pokemon',5,105,135,60,105,70,1,33,20), (590,'Foongus','Mushroom Pokemon',5,45,55,55,55,69,0.2,1,15), (591,'Amoonguss','Mushroom Pokemon',5,70,85,85,80,114,0.6,10.5,30), (592,'Frillish','Floating Pokemon',5,50,40,65,85,55,1.2,33,40), (593,'Jellicent','Floating Pokemon',5,70,60,85,105,100,2.2,135,60), (594,'Alomomola','Caring Pokemon',5,80,75,40,45,165,1.2,31.6,65), (595,'Joltik','Attaching Pokemon',5,50,47,57,50,50,0.1,0.6,65), (596,'Galvantula','EleSpider Pokemon',5,60,77,97,60,70,0.8,14.3,108), (597,'Ferroseed','Thorn Seed Pokemon',5,91,50,24,86,44,0.6,18.8,10), (598,'Ferrothorn','Thorn Pod Pokemon',5,131,94,54,116,74,1,110,20), (599,'Klink','Gear Pokemon',5,70,55,45,60,40,0.3,21,30), (600,'Klang','Gear Pokemon',5,95,80,70,85,60,0.6,51,50), (601,'Klinklang','Gear Pokemon',5,115,100,70,85,60,0.6,81,90), (602,'Tynamo','EleFish Pokemon',5,40,55,45,40,35,0.2,0.3,60), (603,'Eelektrik','EleFish Pokemon',5,70,85,75,70,65,1.2,22,40), (604,'Eelektross','EleFish Pokemon',5,80,115,105,80,85,2.1,80.5,50), (605,'Elgyem','Cerebral Pokemon',5,55,55,85,55,55,0.5,9,30), (606,'Beheeyem','Cerebral Pokemon',5,75,75,125,95,75,1,34.5,40), (607,'Litwick','Candle Pokemon',5,55,30,65,55,50,0.3,3.1,20), (608,'Lampent','Lamp Pokemon',5,60,40,95,60,60,0.6,13,55), (609,'Chandelure','Luring Pokemon',5,90,55,145,90,60,1,34.3,80), (610,'Axew','Tusk Pokemon',5,60,87,30,40,46,0.6,18,57), (611,'Fraxure','Axe Jaw Pokemon',5,70,117,40,50,66,1,36,67), (612,'Haxorus','Axe Jaw Pokemon',5,90,147,60,70,76,1.8,105.5,97), (613,'Cubchoo','Chill Pokemon',5,40,70,60,40,55,0.5,8.5,40), (614,'Beartic','Freezing Pokemon',5,80,130,70,80,95,2.6,260,50), (615,'Cryogonal','Crystallizing Pokemon',5,50,50,95,135,80,1.1,148,105), (616,'Shelmet','Snail Pokemon',5,85,40,40,65,50,0.4,7.7,25), (617,'Accelgor','Shell Out Pokemon',5,40,70,100,60,80,0.8,25.3,145), (618,'Stunfisk','Trap Pokemon',5,84,66,81,99,109,0.7,11,32), (619,'Mienfoo','Martial Arts Pokemon',5,50,85,55,50,45,0.9,20,65), (620,'Mienshao','Martial Arts Pokemon',5,60,125,95,60,65,1.4,35.5,105), (621,'Druddigon','Cave Pokemon',5,90,120,60,90,77,1.6,139,48), (622,'Golett','Automaton Pokemon',5,50,74,35,50,59,1,92,35), (623,'Golurk','Automaton Pokemon',5,80,124,55,80,89,2.8,330,55), (624,'Pawniard','Sharp Blade Pokemon',5,70,85,40,40,45,0.5,10.2,60), (625,'Bisharp','Sword Blade Pokemon',5,100,125,60,70,65,1.6,70,70), (626,'Bouffalant','Bash Buffalo Pokemon',5,95,110,40,95,95,1.6,94.6,55), (627,'Rufflet','Eaglet Pokemon',5,50,83,37,50,70,0.5,10.5,60), (628,'Braviary','Valiant Pokemon',5,75,123,57,75,100,1.5,41,80), (629,'Vullaby','Diapered Pokemon',5,75,55,45,65,70,0.5,9,60), (630,'Mandibuzz','Bone Vulture Pokemon',5,105,65,55,95,110,1.2,39.5,80), (631,'Heatmor','Anteater Pokemon',5,66,97,105,66,85,1.4,58,65), (632,'Durant','Iron Ant Pokemon',5,112,109,48,48,58,0.3,33,109), (633,'Deino','Irate Pokemon',5,50,65,45,50,52,0.8,17.3,38), (634,'Zweilous','Hostile Pokemon',5,70,85,65,70,72,1.4,50,58), (635,'Hydreigon','Brutal Pokemon',5,90,105,125,90,92,1.8,160,98), (636,'Larvesta','Torch Pokemon',5,55,85,50,55,55,1.1,28.8,60), (637,'Volcarona','Sun Pokemon',5,65,60,135,105,85,1.6,46,100), (638,'Cobalion','Iron Will Pokemon',5,129,90,90,72,91,2.1,250,108), (639,'Terrakion','Cavern Pokemon',5,90,129,72,90,91,1.9,260,108), (640,'Virizion','Grassland Pokemon',5,72,90,90,129,91,2,200,108), (641,'Tornadus','Cyclone Pokemon',5,80,100,110,90,79,1.5,63,121), (642,'Thundurus','Bolt Strike Pokemon',5,70,105,145,80,79,1.5,61,101), (643,'Reshiram','Vast White Pokemon',5,100,120,150,120,100,3.2,330,90), (644,'Zekrom','Deep Black Pokemon',5,120,150,120,100,100,2.9,345,90), (645,'Landorus','Abundance Pokemon',5,90,145,105,80,89,1.5,68,91), (646,'Kyurem','Boundary Pokemon',5,90,120,170,100,125,3,325,95), (647,'Keldeo','Colt Pokemon',5,90,72,129,90,91,1.4,48.5,108), (648,'Meloetta','Melody Pokemon',5,90,128,77,77,100,0.6,6.5,128), (649,'Genesect','Paleozoic Pokemon',5,95,120,120,95,71,1.5,82.5,99), (650,'Chespin','Spiky Nut Pokemon',6,65,61,48,45,56,0.4,9,38), (651,'Quilladin','Spiny Armor Pokemon',6,95,78,56,58,61,0.7,29,57), (652,'Chesnaught','Spiny Armor Pokemon',6,122,107,74,75,88,1.6,90,64), (653,'Fennekin','Fox Pokemon',6,40,45,62,60,40,0.4,9.4,60), (654,'Braixen','Fox Pokemon',6,58,59,90,70,59,1,14.5,73), (655,'Delphox','Fox Pokemon',6,72,69,114,100,75,1.5,39,104), (656,'Froakie','Bubble Frog Pokemon',6,40,56,62,44,41,0.3,7,71), (657,'Frogadier','Bubble Frog Pokemon',6,52,63,83,56,54,0.6,10.9,97), (658,'Greninja','Ninja Pokemon',6,67,145,153,71,72,1.5,40,132), (659,'Bunnelby','Digging Pokemon',6,38,36,32,36,38,0.4,5,57), (660,'Diggersby','Digging Pokemon',6,77,56,50,77,85,1,42.4,78), (661,'Fletchling','Tiny Robin Pokemon',6,43,50,40,38,45,0.3,1.7,62), (662,'Fletchinder','Ember Pokemon',6,55,73,56,52,62,0.7,16,84), (663,'Talonflame','Scorching Pokemon',6,71,81,74,69,78,1.2,24.5,126), (664,'Scatterbug','Scatterdust Pokemon',6,40,35,27,25,38,0.3,2.5,35), (665,'Spewpa','Scatterdust Pokemon',6,60,22,27,30,45,0.3,8.4,29), (666,'Vivillon','Scale Pokemon',6,50,52,90,50,80,1.2,17,89), (667,'Litleo','Lion Cub Pokemon',6,58,50,73,54,62,0.6,13.5,72), (668,'Pyroar','Royal Pokemon',6,72,68,109,66,86,1.5,81.5,106), (669,'Flabébé','Single Bloom Pokemon',6,39,38,61,79,44,0.1,0.1,42), (670,'Floette','Fairy Pokemon',6,67,65,125,128,74,0.2,0.9,92), (671,'Florges','Garden Pokemon',6,68,65,112,154,78,1.1,10,75), (672,'Skiddo','Mount Pokemon',6,48,65,62,57,66,0.9,31,52), (673,'Gogoat','Mount Pokemon',6,62,100,97,81,123,1.7,91,68), (674,'Pancham','Playful Pokemon',6,62,82,46,48,67,0.6,8,43), (675,'Pangoro','Daunting Pokemon',6,78,124,69,71,95,2.1,136,58), (676,'Furfrou','Poodle Pokemon',6,60,80,65,90,75,1.2,28,102), (677,'Espurr','Restraint Pokemon',6,54,48,63,60,62,0.3,3.5,68), (678,'Meowstic','Constraint Pokemon',6,76,48,83,81,74,0.6,8.5,104), (679,'Honedge','Sword Pokemon',6,100,80,35,37,45,0.8,2,28), (680,'Doublade','Sword Pokemon',6,150,110,45,49,59,0.8,4.5,35), (681,'Aegislash','Royal Sword Pokemon',6,50,150,150,50,60,1.7,53,60), (682,'Spritzee','Perfume Pokemon',6,60,52,63,65,78,0.2,0.5,23), (683,'Aromatisse','Fragrance Pokemon',6,72,72,99,89,101,0.8,15.5,29), (684,'Swirlix','Cotton Candy Pokemon',6,66,48,59,57,62,0.4,3.5,49), (685,'Slurpuff','Meringue Pokemon',6,86,80,85,75,82,0.8,5,72), (686,'Inkay','Revolving Pokemon',6,53,54,37,46,53,0.4,3.5,45), (687,'Malamar','Overturning Pokemon',6,88,92,68,75,86,1.5,47,73), (688,'Binacle','Two-Handed Pokemon',6,67,52,39,56,42,0.5,31,50), (689,'Barbaracle','Collective Pokemon',6,115,105,54,86,72,1.3,96,68), (690,'Skrelp','Mock Kelp Pokemon',6,60,60,60,60,50,0.5,7.3,30), (691,'Dragalge','Mock Kelp Pokemon',6,90,75,97,123,65,1.8,81.5,44), (692,'Clauncher','Water Gun Pokemon',6,62,53,58,63,50,0.5,8.3,44), (693,'Clawitzer','Howitzer Pokemon',6,88,73,120,89,71,1.3,35.3,59), (694,'Helioptile','Generator Pokemon',6,33,38,61,43,44,0.5,6,70), (695,'Heliolisk','Generator Pokemon',6,52,55,109,94,62,1,21,109), (696,'Tyrunt','Royal Heir Pokemon',6,77,89,45,45,58,0.8,26,48), (697,'Tyrantrum','Despot Pokemon',6,119,121,69,59,82,2.5,270,71), (698,'Amaura','Tundra Pokemon',6,50,59,67,63,77,1.3,25.2,46), (699,'Aurorus','Tundra Pokemon',6,72,77,99,92,123,2.7,225,58), (700,'Sylveon','Intertwining Pokemon',6,65,65,110,130,95,1,23.5,60), (701,'Hawlucha','Wrestling Pokemon',6,75,92,74,63,78,0.8,21.5,118), (702,'Dedenne','Antenna Pokemon',6,57,58,81,67,67,0.2,2.2,101), (703,'Carbink','Jewel Pokemon',6,150,50,50,150,50,0.3,5.7,50), (704,'Goomy','Soft Tissue Pokemon',6,35,50,55,75,45,0.3,2.8,40), (705,'Sliggoo','Soft Tissue Pokemon',6,53,75,83,113,68,0.8,17.5,60), (706,'Goodra','Dragon Pokemon',6,70,100,110,150,90,2,150.5,80), (707,'Klefki','Key Ring Pokemon',6,91,80,80,87,57,0.2,3,75), (708,'Phantump','Stump Pokemon',6,48,70,50,60,43,0.4,7,38), (709,'Trevenant','Elder Tree Pokemon',6,76,110,65,82,85,1.5,71,56), (710,'Pumpkaboo','Pumpkin Pokemon',6,70,66,44,55,59,0.8,15,41), (711,'Gourgeist','Pumpkin Pokemon',6,122,100,58,75,85,1.7,39,54), (712,'Bergmite','Ice Chunk Pokemon',6,85,69,32,35,55,1,99.5,28), (713,'Avalugg','Iceberg Pokemon',6,184,117,44,46,95,2,505,28), (714,'Noibat','Sound Wave Pokemon',6,35,30,45,40,40,0.5,8,55), (715,'Noivern','Sound Wave Pokemon',6,80,70,97,80,85,1.5,85,123), (716,'Xerneas','Life Pokemon',6,95,131,131,98,126,3,215,99), (717,'Yveltal','Destruction Pokemon',6,95,131,131,98,126,5.8,203,99), (718,'Zygarde','Order Pokemon',6,121,100,91,95,216,5,284.6,85), (719,'Diancie','Jewel Pokemon',6,110,160,160,110,50,0.7,8.8,110), (720,'Hoopa','Mischief Pokemon (Confined)Djinn Pokemonn (Unbound)',6,60,160,170,130,80,NULL,NULL,80), (721,'Volcanion','Steam Pokemon',6,120,110,130,90,80,1.7,195,70), (722,'Rowlet','Grass Quill Pokemon',7,55,55,50,50,68,0.3,1.5,42), (723,'Dartrix','Blade Quill Pokemon',7,75,75,70,70,78,0.7,16,52), (724,'Decidueye','Arrow Quill Pokemon',7,75,107,100,100,78,1.6,36.6,70), (725,'Litten','Fire Cat Pokemon',7,40,65,60,40,45,0.4,4.3,70), (726,'Torracat','Fire Cat Pokemon',7,50,85,80,50,65,0.7,25,90), (727,'Incineroar','Heel Pokemon',7,90,115,80,90,95,1.8,83,60), (728,'Popplio','Sea Lion Pokemon',7,54,54,66,56,50,0.4,7.5,40), (729,'Brionne','Pop Star Pokemon',7,69,69,91,81,60,0.6,17.5,50), (730,'Primarina','Soloist Pokemon',7,74,74,126,116,80,1.8,44,60), (731,'Pikipek','Woodpecker Pokemon',7,30,75,30,30,35,0.3,1.2,65), (732,'Trumbeak','Bugle Beak Pokemon',7,50,85,40,50,55,0.6,14.8,75), (733,'Toucannon','Cannon Pokemon',7,75,120,75,75,80,1.1,26,60), (734,'Yungoos','Loitering Pokemon',7,30,70,30,30,48,0.4,6,45), (735,'Gumshoos','Stakeout Pokemon',7,60,110,55,60,88,0.7,14.2,45), (736,'Grubbin','Larva Pokemon',7,45,62,55,45,47,0.4,4.4,46), (737,'Charjabug','Battery Pokemon',7,95,82,55,75,57,0.5,10.5,36), (738,'Vikavolt','Stag Beetle Pokemon',7,90,70,145,75,77,1.5,45,43), (739,'Crabrawler','Boxing Pokemon',7,57,82,42,47,47,0.6,7,63), (740,'Crabominable','Woolly Crab Pokemon',7,77,132,62,67,97,1.7,180,43), (741,'Oricorio','Dancing Pokemon',7,70,70,98,70,75,0.6,3.4,93), (742,'Cutiefly','Bee Fly Pokemon',7,40,45,55,40,40,0.1,0.2,84), (743,'Ribombee','Bee Fly Pokemon',7,60,55,95,70,60,0.2,0.5,124), (744,'Rockruff','Puppy Pokemon',7,40,65,30,40,45,0.5,9.2,60), (745,'Lycanroc','Wolf Pokemon',7,75,115,55,75,85,NULL,NULL,82), (746,'Wishiwashi','Small Fry Pokemon',7,130,140,140,135,45,0.2,0.3,30), (747,'Mareanie','Brutal Star Pokemon',7,62,53,43,52,50,0.4,8,45), (748,'Toxapex','Brutal Star Pokemon',7,152,63,53,142,50,0.7,14.5,35), (749,'Mudbray','Donkey Pokemon',7,70,100,45,55,70,1,110,45), (750,'Mudsdale','Draft Horse Pokemon',7,100,125,55,85,100,2.5,920,35), (751,'Dewpider','Water Bubble Pokemon',7,52,40,40,72,38,0.3,4,27), (752,'Araquanid','Water Bubble Pokemon',7,92,70,50,132,68,1.8,82,42), (753,'Fomantis','Sickle Grass Pokemon',7,35,55,50,35,40,0.3,1.5,35), (754,'Lurantis','Bloom Sickle Pokemon',7,90,105,80,90,70,0.9,18.5,45), (755,'Morelull','Illuminating Pokemon',7,55,35,65,75,40,0.2,1.5,15), (756,'Shiinotic','Illuminating Pokemon',7,80,45,90,100,60,1,11.5,30), (757,'Salandit','Toxic Lizard Pokemon',7,40,44,71,40,48,0.6,4.8,77), (758,'Salazzle','Toxic Lizard Pokemon',7,60,64,111,60,68,1.2,22.2,117), (759,'Stufful','Flailing Pokemon',7,50,75,45,50,70,0.5,6.8,50), (760,'Bewear','Strong Arm Pokemon',7,80,125,55,60,120,2.1,135,60), (761,'Bounsweet','Fruit Pokemon',7,38,30,30,38,42,0.3,3.2,32), (762,'Steenee','Fruit Pokemon',7,48,40,40,48,52,0.7,8.2,62), (763,'Tsareena','Fruit Pokemon',7,98,120,50,98,72,1.2,21.4,72), (764,'Comfey','Posy Picker Pokemon',7,90,52,82,110,51,0.1,0.3,100), (765,'Oranguru','Sage Pokemon',7,80,60,90,110,90,1.5,76,60), (766,'Passimian','Teamwork Pokemon',7,90,120,40,60,100,2,82.8,80), (767,'Wimpod','Turn Tail Pokemon',7,40,35,20,30,25,0.5,12,80), (768,'Golisopod','Hard Scale Pokemon',7,140,125,60,90,75,2,108,40), (769,'Sandygast','Sand Heap Pokemon',7,80,55,70,45,55,0.5,70,15), (770,'Palossand','Sand Castle Pokemon',7,110,75,100,75,85,1.3,250,35), (771,'Pyukumuku','Sea Cucumber Pokemon',7,130,60,30,130,55,0.3,1.2,5), (772,'Type: Null','Synthetic Pokemon',7,95,95,95,95,95,1.9,120.5,59), (773,'Silvally','Synthetic Pokemon',7,95,95,95,95,95,2.3,100.5,95), (774,'Minior','Meteor Pokemon',7,60,100,100,60,60,0.3,40,120), (775,'Komala','Drowsing Pokemon',7,65,115,75,95,65,0.4,19.9,65), (776,'Turtonator','Blast Turtle Pokemon',7,135,78,91,85,60,2,212,36), (777,'Togedemaru','Roly-Poly Pokemon',7,63,98,40,73,65,0.3,3.3,96), (778,'Mimikyu','Disguise Pokemon',7,80,90,50,105,55,0.2,0.7,96), (779,'Bruxish','Gnash Teeth Pokemon',7,70,105,70,70,68,0.9,19,92), (780,'Drampa','Placid Pokemon',7,85,60,135,91,78,3,185,36), (781,'Dhelmise','Sea Creeper Pokemon',7,100,131,86,90,70,3.9,210,40), (782,'Jangmo-o','Scaly Pokemon',7,65,55,45,45,45,0.6,29.7,45), (783,'Hakamo-o','Scaly Pokemon',7,90,75,65,70,55,1.2,47,65), (784,'Kommo-o','Scaly Pokemon',7,125,110,100,105,75,1.6,78.2,85), (785,'Tapu Koko','Land Spirit Pokemon',7,85,115,95,75,70,1.8,20.5,130), (786,'Tapu Lele','Land Spirit Pokemon',7,75,85,130,115,70,1.2,18.6,95), (787,'Tapu Bulu','Land Spirit Pokemon',7,115,130,85,95,70,1.9,45.5,75), (788,'Tapu Fini','Land Spirit Pokemon',7,115,75,95,130,70,1.3,21.2,85), (789,'Cosmog','Nebula Pokemon',7,31,29,29,31,43,0.2,0.1,37), (790,'Cosmoem','Protostar Pokemon',7,131,29,29,131,43,0.1,999.9,37), (791,'Solgaleo','Sunne Pokemon',7,107,137,113,89,137,3.4,230,97), (792,'Lunala','Moone Pokemon',7,89,113,137,107,137,4,120,97), (793,'Nihilego','Parasite Pokemon',7,47,53,127,131,109,1.2,55.5,103), (794,'Buzzwole','Swollen Pokemon',7,139,139,53,53,107,2.4,333.6,79), (795,'Pheromosa','Lissome Pokemon',7,37,137,137,37,71,1.8,25,151), (796,'Xurkitree','Glowing Pokemon',7,71,89,173,71,83,3.8,100,83), (797,'Celesteela','Launch Pokemon',7,103,101,107,101,97,9.2,999.9,61), (798,'Kartana','Drawn Sword Pokemon',7,131,181,59,31,59,0.3,0.1,109), (799,'Guzzlord','Junkivore Pokemon',7,53,101,97,53,223,5.5,888,43), (800,'Necrozma','Prism Pokemon',7,101,107,127,89,97,2.4,230,79), (801,'Magearna','Artificial Pokemon',7,115,95,130,115,80,1,80.5,65); insert into pokeabilities (pokeID,ability) values (1,'Chlorophyll'), (1,'Overgrow'), (2,'Chlorophyll'), (2,'Overgrow'), (3,'Chlorophyll'), (3,'Overgrow'), (4,'Blaze'), (4,'Solar Power'), (5,'Blaze'), (5,'Solar Power'), (6,'Blaze'), (6,'Solar Power'), (7,'Rain Dish'), (7,'Torrent'), (8,'Rain Dish'), (8,'Torrent'), (9,'Rain Dish'), (9,'Torrent'), (10,'Run Away'), (10,'Shield Dust'), (11,'Shed Skin'), (12,'Compoundeyes'), (12,'Tinted Lens'), (13,'Run Away'), (13,'Shield Dust'), (14,'Shed Skin'), (15,'Sniper'), (15,'Swarm'), (16,'Big Pecks'), (16,'Keen Eye'), (16,'Tangled Feet'), (17,'Big Pecks'), (17,'Keen Eye'), (17,'Tangled Feet'), (18,'Big Pecks'), (18,'Keen Eye'), (18,'Tangled Feet'), (19,'Gluttony'), (19,'Guts'), (19,'Hustle'), (19,'Run Away'), (19,'Thick Fat'), (20,'Gluttony'), (20,'Guts'), (20,'Hustle'), (20,'Run Away'), (20,'Thick Fat'), (21,'Keen Eye'), (21,'Sniper'), (22,'Keen Eye'), (22,'Sniper'), (23,'Intimidate'), (23,'Shed Skin'), (23,'Unnerve'), (24,'Intimidate'), (24,'Shed Skin'), (24,'Unnerve'), (25,'Lightningrod'), (25,'Static'), (26,'Lightningrod'), (26,'Static'), (26,'Surge Surfer'), (27,'Sand Rush'), (27,'Sand Veil'), (27,'Slush Rush'), (27,'Snow Cloak'), (28,'Sand Rush'), (28,'Sand Veil'), (28,'Slush Rush'), (28,'Snow Cloak'), (29,'Hustle'), (29,'Poison Point'), (29,'Rivalry'), (30,'Hustle'), (30,'Poison Point'), (30,'Rivalry'), (31,'Poison Point'), (31,'Rivalry'), (31,'Sheer Force'), (32,'Hustle'), (32,'Poison Point'), (32,'Rivalry'), (33,'Hustle'), (33,'Poison Point'), (33,'Rivalry'), (34,'Poison Point'), (34,'Rivalry'), (34,'Sheer Force'), (35,'Cute Charm'), (35,'Friend Guard'), (35,'Magic Guard'), (36,'Cute Charm'), (36,'Magic Guard'), (36,'Unaware'), (37,'Drought'), (37,'Flash Fire'), (37,'Snow Cloak'), (37,'Snow Warning'), (38,'Drought'), (38,'Flash Fire'), (38,'Snow Cloak'), (38,'Snow Warning'), (39,'Competitive'), (39,'Cute Charm'), (39,'Friend Guard'), (40,'Competitive'), (40,'Cute Charm'), (40,'Frisk'), (41,'Infiltrator'), (41,'Inner Focus'), (42,'Infiltrator'), (42,'Inner Focus'), (43,'Chlorophyll'), (43,'Run Away'), (44,'Chlorophyll'), (44,'Stench'), (45,'Chlorophyll'), (45,'Effect Spore'), (46,'Damp'), (46,'Dry Skin'), (46,'Effect Spore'), (47,'Damp'), (47,'Dry Skin'), (47,'Effect Spore'), (48,'Compoundeyes'), (48,'Run Away'), (48,'Tinted Lens'), (49,'Shield Dust'), (49,'Tinted Lens'), (49,'Wonder Skin'), (50,'Arena Trap'), (50,'Sand Force'), (50,'Sand Veil'), (50,'Tangling Hair'), (51,'Arena Trap'), (51,'Sand Force'), (51,'Sand Veil'), (51,'Tangling Hair'), (52,'Pickup'), (52,'Rattled'), (52,'Technician'), (52,'Unnerve'), (53,'Fur Coat'), (53,'Limber'), (53,'Rattled'), (53,'Technician'), (53,'Unnerve'), (54,'Cloud Nine'), (54,'Damp'), (54,'Swift Swim'), (55,'Cloud Nine'), (55,'Damp'), (55,'Swift Swim'), (56,'Anger Point'), (56,'Defiant'), (56,'Vital Spirit'), (57,'Anger Point'), (57,'Defiant'), (57,'Vital Spirit'), (58,'Flash Fire'), (58,'Intimidate'), (58,'Justified'), (59,'Flash Fire'), (59,'Intimidate'), (59,'Justified'), (60,'Damp'), (60,'Swift Swim'), (60,'Water Absorb'), (61,'Damp'), (61,'Swift Swim'), (61,'Water Absorb'), (62,'Damp'), (62,'Swift Swim'), (62,'Water Absorb'), (63,'Inner Focus'), (63,'Magic Guard'), (63,'Synchronize'), (64,'Inner Focus'), (64,'Magic Guard'), (64,'Synchronize'), (65,'Inner Focus'), (65,'Magic Guard'), (65,'Synchronize'), (66,'Guts'), (66,'No Guard'), (66,'Steadfast'), (67,'Guts'), (67,'No Guard'), (67,'Steadfast'), (68,'Guts'), (68,'No Guard'), (68,'Steadfast'), (69,'Chlorophyll'), (69,'Gluttony'), (70,'Chlorophyll'), (70,'Gluttony'), (71,'Chlorophyll'), (71,'Gluttony'), (72,'Clear Body'), (72,'Liquid Ooze'), (72,'Rain Dish'), (73,'Clear Body'), (73,'Liquid Ooze'), (73,'Rain Dish'), (74,'Galvanize'), (74,'Magnet Pull'), (74,'Rock Head'), (74,'Sand Veil'), (74,'Sturdy'), (75,'Galvanize'), (75,'Magnet Pull'), (75,'Rock Head'), (75,'Sand Veil'), (75,'Sturdy'), (76,'Galvanize'), (76,'Magnet Pull'), (76,'Rock Head'), (76,'Sand Veil'), (76,'Sturdy'), (77,'Flame Body'), (77,'Flash Fire'), (77,'Run Away'), (78,'Flame Body'), (78,'Flash Fire'), (78,'Run Away'), (79,'Oblivious'), (79,'Own Tempo'), (79,'Regenerator'), (80,'Oblivious'), (80,'Own Tempo'), (80,'Regenerator'), (81,'Analytic'), (81,'Magnet Pull'), (81,'Sturdy'), (82,'Analytic'), (82,'Magnet Pull'), (82,'Sturdy'), (83,'Defiant'), (83,'Inner Focus'), (83,'Keen Eye'), (84,'Early Bird'), (84,'Run Away'), (84,'Tangled Feet'), (85,'Early Bird'), (85,'Run Away'), (85,'Tangled Feet'), (86,'Hydration'), (86,'Ice Body'), (86,'Thick Fat'), (87,'Hydration'), (87,'Ice Body'), (87,'Thick Fat'), (88,'Gluttony'), (88,'Poison Touch'), (88,'Power of Alchemy'), (88,'Stench'), (88,'Sticky Hold'), (89,'Gluttony'), (89,'Poison Touch'), (89,'Power of Alchemy'), (89,'Stench'), (89,'Sticky Hold'), (90,'Overcoat'), (90,'Shell Armor'), (90,'Skill Link'), (91,'Overcoat'), (91,'Shell Armor'), (91,'Skill Link'), (92,'Levitate'), (93,'Levitate'), (94,'Cursed Body'), (95,'Rock Head'), (95,'Sturdy'), (95,'Weak Armor'), (96,'Forewarn'), (96,'Inner Focus'), (96,'Insomnia'), (97,'Forewarn'), (97,'Inner Focus'), (97,'Insomnia'), (98,'Hyper Cutter'), (98,'Sheer Force'), (98,'Shell Armor'), (99,'Hyper Cutter'), (99,'Sheer Force'), (99,'Shell Armor'), (100,'Aftermath'), (100,'Soundproof'), (100,'Static'), (101,'Aftermath'), (101,'Soundproof'), (101,'Static'), (102,'Chlorophyll'), (102,'Harvest'), (103,'Chlorophyll'), (103,'Frisk'), (103,'Harvest'), (104,'Battle Armor'), (104,'Lightningrod'), (104,'Rock Head'), (105,'Battle Armor'), (105,'Cursed Body'), (105,'Lightningrod'), (105,'Rock Head'), (106,'Limber'), (106,'Reckless'), (106,'Unburden'), (107,'Inner Focus'), (107,'Iron Fist'), (107,'Keen Eye'), (108,'Cloud Nine'), (108,'Oblivious'), (108,'Own Tempo'), (109,'Levitate'), (110,'Levitate'), (111,'Lightningrod'), (111,'Reckless'), (111,'Rock Head'), (112,'Lightningrod'), (112,'Reckless'), (112,'Rock Head'), (113,'Healer'), (113,'Natural Cure'), (113,'Serene Grace'), (114,'Chlorophyll'), (114,'Leaf Guard'), (114,'Regenerator'), (115,'Early Bird'), (115,'Inner Focus'), (115,'Scrappy'), (116,'Damp'), (116,'Sniper'), (116,'Swift Swim'), (117,'Damp'), (117,'Poison Point'), (117,'Sniper'), (118,'Lightningrod'), (118,'Swift Swim'), (118,'Water Veil'), (119,'Lightningrod'), (119,'Swift Swim'), (119,'Water Veil'), (120,'Analytic'), (120,'Illuminate'), (120,'Natural Cure'), (121,'Analytic'), (121,'Illuminate'), (121,'Natural Cure'), (122,'Filter'), (122,'Soundproof'), (122,'Technician'), (123,'Steadfast'), (123,'Swarm'), (123,'Technician'), (124,'Dry Skin'), (124,'Forewarn'), (124,'Oblivious'), (125,'Static'), (125,'Vital Spirit'), (126,'Flame Body'), (126,'Vital Spirit'), (127,'Hyper Cutter'), (127,'Mold Breaker'), (127,'Moxie'), (128,'Anger Point'), (128,'Intimidate'), (128,'Sheer Force'), (129,'Rattled'), (129,'Swift Swim'), (130,'Intimidate'), (130,'Moxie'), (131,'Hydration'), (131,'Shell Armor'), (131,'Water Absorb'), (132,'Imposter'), (132,'Limber'), (133,'Adaptability'), (133,'Anticipation'), (133,'Run Away'), (134,'Hydration'), (134,'Water Absorb'), (135,'Quick Feet'), (135,'Volt Absorb'), (136,'Flash Fire'), (136,'Guts'), (137,'Analytic'), (137,'Download'), (137,'Trace'), (138,'Shell Armor'), (138,'Swift Swim'), (138,'Weak Armor'), (139,'Shell Armor'), (139,'Swift Swim'), (139,'Weak Armor'), (140,'Battle Armor'), (140,'Swift Swim'), (140,'Weak Armor'), (141,'Battle Armor'), (141,'Swift Swim'), (141,'Weak Armor'), (142,'Pressure'), (142,'Rock Head'), (142,'Unnerve'), (143,'Gluttony'), (143,'Immunity'), (143,'Thick Fat'), (144,'Pressure'), (144,'Snow Cloak'), (145,'Pressure'), (145,'Static'), (146,'Flame Body'), (146,'Pressure'), (147,'Marvel Scale'), (147,'Shed Skin'), (148,'Marvel Scale'), (148,'Shed Skin'), (149,'Inner Focus'), (149,'Multiscale'), (150,'Pressure'), (150,'Unnerve'), (151,'Synchronize'), (152,'Leaf Guard'), (152,'Overgrow'), (153,'Leaf Guard'), (153,'Overgrow'), (154,'Leaf Guard'), (154,'Overgrow'), (155,'Blaze'), (155,'Flash Fire'), (156,'Blaze'), (156,'Flash Fire'), (157,'Blaze'), (157,'Flash Fire'), (158,'Sheer Force'), (158,'Torrent'), (159,'Sheer Force'), (159,'Torrent'), (160,'Sheer Force'), (160,'Torrent'), (161,'Frisk'), (161,'Keen Eye'), (161,'Run Away'), (162,'Frisk'), (162,'Keen Eye'), (162,'Run Away'), (163,'Insomnia'), (163,'Keen Eye'), (163,'Tinted Lens'), (164,'Insomnia'), (164,'Keen Eye'), (164,'Tinted Lens'), (165,'Early Bird'), (165,'Rattled'), (165,'Swarm'), (166,'Early Bird'), (166,'Iron Fist'), (166,'Swarm'), (167,'Insomnia'), (167,'Sniper'), (167,'Swarm'), (168,'Insomnia'), (168,'Sniper'), (168,'Swarm'), (169,'Infiltrator'), (169,'Inner Focus'), (170,'Illuminate'), (170,'Volt Absorb'), (170,'Water Absorb'), (171,'Illuminate'), (171,'Volt Absorb'), (171,'Water Absorb'), (172,'Lightningrod'), (172,'Static'), (173,'Cute Charm'), (173,'Friend Guard'), (173,'Magic Guard'), (174,'Competitive'), (174,'Cute Charm'), (174,'Friend Guard'), (175,'Hustle'), (175,'Serene Grace'), (175,'Super Luck'), (176,'Hustle'), (176,'Serene Grace'), (176,'Super Luck'), (177,'Early Bird'), (177,'Magic Bounce'), (177,'Synchronize'), (178,'Early Bird'), (178,'Magic Bounce'), (178,'Synchronize'), (179,'Plus'), (179,'Static'), (180,'Plus'), (180,'Static'), (181,'Plus'), (181,'Static'), (182,'Chlorophyll'), (182,'Healer'), (183,'Huge Power'), (183,'Sap Sipper'), (183,'Thick Fat'), (184,'Huge Power'), (184,'Sap Sipper'), (184,'Thick Fat'), (185,'Rattled'), (185,'Rock Head'), (185,'Sturdy'), (186,'Damp'), (186,'Drizzle'), (186,'Water Absorb'), (187,'Chlorophyll'), (187,'Infiltrator'), (187,'Leaf Guard'), (188,'Chlorophyll'), (188,'Infiltrator'), (188,'Leaf Guard'), (189,'Chlorophyll'), (189,'Infiltrator'), (189,'Leaf Guard'), (190,'Pickup'), (190,'Run Away'), (190,'Skill Link'), (191,'Chlorophyll'), (191,'Early Bird'), (191,'Solar Power'), (192,'Chlorophyll'), (192,'Early Bird'), (192,'Solar Power'), (193,'Compoundeyes'), (193,'Frisk'), (193,'Speed Boost'), (194,'Damp'), (194,'Unaware'), (194,'Water Absorb'), (195,'Damp'), (195,'Unaware'), (195,'Water Absorb'), (196,'Magic Bounce'), (196,'Synchronize'), (197,'Inner Focus'), (197,'Synchronize'), (198,'Insomnia'), (198,'Prankster'), (198,'Super Luck'), (199,'Oblivious'), (199,'Own Tempo'), (199,'Regenerator'), (200,'Levitate'), (201,'Levitate'), (202,'Shadow Tag'), (202,'Telepathy'), (203,'Early Bird'), (203,'Inner Focus'), (203,'Sap Sipper'), (204,'Overcoat'), (204,'Sturdy'), (205,'Overcoat'), (205,'Sturdy'), (206,'Rattled'), (206,'Run Away'), (206,'Serene Grace'), (207,'Hyper Cutter'), (207,'Immunity'), (207,'Sand Veil'), (208,'Rock Head'), (208,'Sheer Force'), (208,'Sturdy'), (209,'Intimidate'), (209,'Rattled'), (209,'Run Away'), (210,'Intimidate'), (210,'Quick Feet'), (210,'Rattled'), (211,'Intimidate'), (211,'Poison Point'), (211,'Swift Swim'), (212,'Light Metal'), (212,'Swarm'), (212,'Technician'), (213,'Contrary'), (213,'Gluttony'), (213,'Sturdy'), (214,'Guts'), (214,'Moxie'), (214,'Swarm'), (215,'Inner Focus'), (215,'Keen Eye'), (215,'Pickpocket'), (216,'Honey Gather'), (216,'Pickup'), (216,'Quick Feet'), (217,'Guts'), (217,'Quick Feet'), (217,'Unnerve'), (218,'Flame Body'), (218,'Magma Armor'), (218,'Weak Armor'), (219,'Flame Body'), (219,'Magma Armor'), (219,'Weak Armor'), (220,'Oblivious'), (220,'Snow Cloak'), (220,'Thick Fat'), (221,'Oblivious'), (221,'Snow Cloak'), (221,'Thick Fat'), (222,'Hustle'), (222,'Natural Cure'), (222,'Regenerator'), (223,'Hustle'), (223,'Moody'), (223,'Sniper'), (224,'Moody'), (224,'Sniper'), (224,'Suction Cups'), (225,'Hustle'), (225,'Insomnia'), (225,'Vital Spirit'), (226,'Swift Swim'), (226,'Water Absorb'), (226,'Water Veil'), (227,'Keen Eye'), (227,'Sturdy'), (227,'Weak Armor'), (228,'Early Bird'), (228,'Flash Fire'), (228,'Unnerve'), (229,'Early Bird'), (229,'Flash Fire'), (229,'Unnerve'), (230,'Damp'), (230,'Sniper'), (230,'Swift Swim'), (231,'Pickup'), (231,'Sand Veil'), (232,'Sand Veil'), (232,'Sturdy'), (233,'Analytic'), (233,'Download'), (233,'Trace'), (234,'Frisk'), (234,'Intimidate'), (234,'Sap Sipper'), (235,'Moody'), (235,'Own Tempo'), (235,'Technician'), (236,'Guts'), (236,'Steadfast'), (236,'Vital Spirit'), (237,'Intimidate'), (237,'Steadfast'), (237,'Technician'), (238,'Forewarn'), (238,'Hydration'), (238,'Oblivious'), (239,'Static'), (239,'Vital Spirit'), (240,'Flame Body'), (240,'Vital Spirit'), (241,'Sap Sipper'), (241,'Scrappy'), (241,'Thick Fat'), (242,'Healer'), (242,'Natural Cure'), (242,'Serene Grace'), (243,'Inner Focus'), (243,'Pressure'), (244,'Inner Focus'), (244,'Pressure'), (245,'Inner Focus'), (245,'Pressure'), (246,'Guts'), (246,'Sand Veil'), (247,'Shed Skin'), (248,'Sand Stream'), (248,'Unnerve'), (249,'Multiscale'), (249,'Pressure'), (250,'Pressure'), (250,'Regenerator'), (251,'Natural Cure'), (252,'Overgrow'), (252,'Unburden'), (253,'Overgrow'), (253,'Unburden'), (254,'Overgrow'), (254,'Unburden'), (255,'Blaze'), (255,'Speed Boost'), (256,'Blaze'), (256,'Speed Boost'), (257,'Blaze'), (257,'Speed Boost'), (258,'Damp'), (258,'Torrent'), (259,'Damp'), (259,'Torrent'), (260,'Damp'), (260,'Torrent'), (261,'Quick Feet'), (261,'Rattled'), (261,'Run Away'), (262,'Intimidate'), (262,'Moxie'), (262,'Quick Feet'), (263,'Gluttony'), (263,'Pickup'), (263,'Quick Feet'), (264,'Gluttony'), (264,'Pickup'), (264,'Quick Feet'), (265,'Run Away'), (265,'Shield Dust'), (266,'Shed Skin'), (267,'Rivalry'), (267,'Swarm'), (268,'Shed Skin'), (269,'Compoundeyes'), (269,'Shield Dust'), (270,'Own Tempo'), (270,'Rain Dish'), (270,'Swift Swim'), (271,'Own Tempo'), (271,'Rain Dish'), (271,'Swift Swim'), (272,'Own Tempo'), (272,'Rain Dish'), (272,'Swift Swim'), (273,'Chlorophyll'), (273,'Early Bird'), (273,'Pickpocket'), (274,'Chlorophyll'), (274,'Early Bird'), (274,'Pickpocket'), (275,'Chlorophyll'), (275,'Early Bird'), (275,'Pickpocket'), (276,'Guts'), (276,'Scrappy'), (277,'Guts'), (277,'Scrappy'), (278,'Hydration'), (278,'Keen Eye'), (278,'Rain Dish'), (279,'Drizzle'), (279,'Keen Eye'), (279,'Rain Dish'), (280,'Synchronize'), (280,'Telepathy'), (280,'Trace'), (281,'Synchronize'), (281,'Telepathy'), (281,'Trace'), (282,'Synchronize'), (282,'Telepathy'), (282,'Trace'), (283,'Rain Dish'), (283,'Swift Swim'), (284,'Intimidate'), (284,'Unnerve'), (285,'Effect Spore'), (285,'Poison Heal'), (285,'Quick Feet'), (286,'Effect Spore'), (286,'Poison Heal'), (286,'Technician'), (287,'Truant'), (288,'Vital Spirit'), (289,'Truant'), (290,'Compoundeyes'), (290,'Run Away'), (291,'Infiltrator'), (291,'Speed Boost'), (292,'Wonder Guard'), (293,'Rattled'), (293,'Soundproof'), (294,'Scrappy'), (294,'Soundproof'), (295,'Scrappy'), (295,'Soundproof'), (296,'Guts'), (296,'Sheer Force'), (296,'Thick Fat'), (297,'Guts'), (297,'Sheer Force'), (297,'Thick Fat'), (298,'Huge Power'), (298,'Sap Sipper'), (298,'Thick Fat'), (299,'Magnet Pull'), (299,'Sand Force'), (299,'Sturdy'), (300,'Cute Charm'), (300,'Normalize'), (300,'Wonder Skin'), (301,'Cute Charm'), (301,'Normalize'), (301,'Wonder Skin'), (302,'Keen Eye'), (302,'Prankster'), (302,'Stall'), (303,'Hyper Cutter'), (303,'Intimidate'), (303,'Sheer Force'), (304,'Heavy Metal'), (304,'Rock Head'), (304,'Sturdy'), (305,'Heavy Metal'), (305,'Rock Head'), (305,'Sturdy'), (306,'Heavy Metal'), (306,'Rock Head'), (306,'Sturdy'), (307,'Pure Power'), (307,'Telepathy'), (308,'Pure Power'), (308,'Telepathy'), (309,'Lightningrod'), (309,'Minus'), (309,'Static'), (310,'Lightningrod'), (310,'Minus'), (310,'Static'), (311,'Lightningrod'), (311,'Plus'), (312,'Minus'), (312,'Volt Absorb'), (313,'Illuminate'), (313,'Prankster'), (313,'Swarm'), (314,'Oblivious'), (314,'Prankster'), (314,'Tinted Lens'), (315,'Leaf Guard'), (315,'Natural Cure'), (315,'Poison Point'), (316,'Gluttony'), (316,'Liquid Ooze'), (316,'Sticky Hold'), (317,'Gluttony'), (317,'Liquid Ooze'), (317,'Sticky Hold'), (318,'Rough Skin'), (318,'Speed Boost'), (319,'Rough Skin'), (319,'Speed Boost'), (320,'Oblivious'), (320,'Pressure'), (320,'Water Veil'), (321,'Oblivious'), (321,'Pressure'), (321,'Water Veil'), (322,'Oblivious'), (322,'Own Tempo'), (322,'Simple'), (323,'Anger Point'), (323,'Magma Armor'), (323,'Solid Rock'), (324,'Drought'), (324,'Shell Armor'), (324,'White Smoke'), (325,'Gluttony'), (325,'Own Tempo'), (325,'Thick Fat'), (326,'Gluttony'), (326,'Own Tempo'), (326,'Thick Fat'), (327,'Contrary'), (327,'Own Tempo'), (327,'Tangled Feet'), (328,'Arena Trap'), (328,'Hyper Cutter'), (328,'Sheer Force'), (329,'Levitate'), (330,'Levitate'), (331,'Sand Veil'), (331,'Water Absorb'), (332,'Sand Veil'), (332,'Water Absorb'), (333,'Cloud Nine'), (333,'Natural Cure'), (334,'Cloud Nine'), (334,'Natural Cure'), (335,'Immunity'), (335,'Toxic Boost'), (336,'Infiltrator'), (336,'Shed Skin'), (337,'Levitate'), (338,'Levitate'), (339,'Anticipation'), (339,'Hydration'), (339,'Oblivious'), (340,'Anticipation'), (340,'Hydration'), (340,'Oblivious'), (341,'Adaptability'), (341,'Hyper Cutter'), (341,'Shell Armor'), (342,'Adaptability'), (342,'Hyper Cutter'), (342,'Shell Armor'), (343,'Levitate'), (344,'Levitate'), (345,'Storm Drain'), (345,'Suction Cups'), (346,'Storm Drain'), (346,'Suction Cups'), (347,'Battle Armor'), (347,'Swift Swim'), (348,'Battle Armor'), (348,'Swift Swim'), (349,'Adaptability'), (349,'Oblivious'), (349,'Swift Swim'), (350,'Competitive'), (350,'Cute Charm'), (350,'Marvel Scale'), (351,'Forecast'), (352,'Color Change'), (352,'Protean'), (353,'Cursed Body'), (353,'Frisk'), (353,'Insomnia'), (354,'Cursed Body'), (354,'Frisk'), (354,'Insomnia'), (355,'Frisk'), (355,'Levitate'), (356,'Frisk'), (356,'Pressure'), (357,'Chlorophyll'), (357,'Harvest'), (357,'Solar Power'), (358,'Levitate'), (359,'Justified'), (359,'Pressure'), (359,'Super Luck'), (360,'Shadow Tag'), (360,'Telepathy'), (361,'Ice Body'), (361,'Inner Focus'), (361,'Moody'), (362,'Ice Body'), (362,'Inner Focus'), (362,'Moody'), (363,'Ice Body'), (363,'Oblivious'), (363,'Thick Fat'), (364,'Ice Body'), (364,'Oblivious'), (364,'Thick Fat'), (365,'Ice Body'), (365,'Oblivious'), (365,'Thick Fat'), (366,'Rattled'), (366,'Shell Armor'), (367,'Swift Swim'), (367,'Water Veil'), (368,'Hydration'), (368,'Swift Swim'), (369,'Rock Head'), (369,'Sturdy'), (369,'Swift Swim'), (370,'Hydration'), (370,'Swift Swim'), (371,'Rock Head'), (371,'Sheer Force'), (372,'Overcoat'), (372,'Rock Head'), (373,'Intimidate'), (373,'Moxie'), (374,'Clear Body'), (374,'Light Metal'), (375,'Clear Body'), (375,'Light Metal'), (376,'Clear Body'), (376,'Light Metal'), (377,'Clear Body'), (377,'Sturdy'), (378,'Clear Body'), (378,'Ice Body'), (379,'Clear Body'), (379,'Light Metal'), (380,'Levitate'), (381,'Levitate'), (382,'Drizzle'), (383,'Drought'), (384,'Air Lock'), (385,'Serene Grace'), (386,'Pressure'), (387,'Overgrow'), (387,'Shell Armor'), (388,'Overgrow'), (388,'Shell Armor'), (389,'Overgrow'), (389,'Shell Armor'), (390,'Blaze'), (390,'Iron Fist'), (391,'Blaze'), (391,'Iron Fist'), (392,'Blaze'), (392,'Iron Fist'), (393,'Defiant'), (393,'Torrent'), (394,'Defiant'), (394,'Torrent'), (395,'Defiant'), (395,'Torrent'), (396,'Keen Eye'), (396,'Reckless'), (397,'Intimidate'), (397,'Reckless'), (398,'Intimidate'), (398,'Reckless'), (399,'Moody'), (399,'Simple'), (399,'Unaware'), (400,'Moody'), (400,'Simple'), (400,'Unaware'), (401,'Run Away'), (401,'Shed Skin'), (402,'Swarm'), (402,'Technician'), (403,'Guts'), (403,'Intimidate'), (403,'Rivalry'), (404,'Guts'), (404,'Intimidate'), (404,'Rivalry'), (405,'Guts'), (405,'Intimidate'), (405,'Rivalry'), (406,'Leaf Guard'), (406,'Natural Cure'), (406,'Poison Point'), (407,'Natural Cure'), (407,'Poison Point'), (407,'Technician'), (408,'Mold Breaker'), (408,'Sheer Force'), (409,'Mold Breaker'), (409,'Sheer Force'), (410,'Soundproof'), (410,'Sturdy'), (411,'Soundproof'), (411,'Sturdy'), (412,'Overcoat'), (412,'Shed Skin'), (413,'Anticipation'), (413,'Overcoat'), (414,'Swarm'), (414,'Tinted Lens'), (415,'Honey Gather'), (415,'Hustle'), (416,'Pressure'), (416,'Unnerve'), (417,'Pickup'), (417,'Run Away'), (417,'Volt Absorb'), (418,'Swift Swim'), (418,'Water Veil'), (419,'Swift Swim'), (419,'Water Veil'), (420,'Chlorophyll'), (421,'Flower Gift'), (422,'Sand Force'), (422,'Sticky Hold'), (422,'Storm Drain'), (423,'Sand Force'), (423,'Sticky Hold'), (423,'Storm Drain'), (424,'Pickup'), (424,'Skill Link'), (424,'Technician'), (425,'Aftermath'), (425,'Flare Boost'), (425,'Unburden'), (426,'Aftermath'), (426,'Flare Boost'), (426,'Unburden'), (427,'Klutz'), (427,'Limber'), (427,'Run Away'), (428,'Cute Charm'), (428,'Klutz'), (428,'Limber'), (429,'Levitate'), (430,'Insomnia'), (430,'Moxie'), (430,'Super Luck'), (431,'Keen Eye'), (431,'Limber'), (431,'Own Tempo'), (432,'Defiant'), (432,'Own Tempo'), (432,'Thick Fat'), (433,'Levitate'), (434,'Aftermath'), (434,'Keen Eye'), (434,'Stench'), (435,'Aftermath'), (435,'Keen Eye'), (435,'Stench'), (436,'Heatproof'), (436,'Heavy Metal'), (436,'Levitate'), (437,'Heatproof'), (437,'Heavy Metal'), (437,'Levitate'), (438,'Rattled'), (438,'Rock Head'), (438,'Sturdy'), (439,'Filter'), (439,'Soundproof'), (439,'Technician'), (440,'Friend Guard'), (440,'Natural Cure'), (440,'Serene Grace'), (441,'Big Pecks'), (441,'Keen Eye'), (441,'Tangled Feet'), (442,'Infiltrator'), (442,'Pressure'), (443,'Rough Skin'), (443,'Sand Veil'), (444,'Rough Skin'), (444,'Sand Veil'), (445,'Rough Skin'), (445,'Sand Veil'), (446,'Gluttony'), (446,'Pickup'), (446,'Thick Fat'), (447,'Inner Focus'), (447,'Prankster'), (447,'Steadfast'), (448,'Inner Focus'), (448,'Justified'), (448,'Steadfast'), (449,'Sand Force'), (449,'Sand Stream'), (450,'Sand Force'), (450,'Sand Stream'), (451,'Battle Armor'), (451,'Keen Eye'), (451,'Sniper'), (452,'Battle Armor'), (452,'Keen Eye'), (452,'Sniper'), (453,'Anticipation'), (453,'Dry Skin'), (453,'Poison Touch'), (454,'Anticipation'), (454,'Dry Skin'), (454,'Poison Touch'), (455,'Levitate'), (456,'Storm Drain'), (456,'Swift Swim'), (456,'Water Veil'), (457,'Storm Drain'), (457,'Swift Swim'), (457,'Water Veil'), (458,'Swift Swim'), (458,'Water Absorb'), (458,'Water Veil'), (459,'Snow Warning'), (459,'Soundproof'), (460,'Snow Warning'), (460,'Soundproof'), (461,'Pickpocket'), (461,'Pressure'), (462,'Analytic'), (462,'Magnet Pull'), (462,'Sturdy'), (463,'Cloud Nine'), (463,'Oblivious'), (463,'Own Tempo'), (464,'Lightningrod'), (464,'Reckless'), (464,'Solid Rock'), (465,'Chlorophyll'), (465,'Leaf Guard'), (465,'Regenerator'), (466,'Motor Drive'), (466,'Vital Spirit'), (467,'Flame Body'), (467,'Vital Spirit'), (468,'Hustle'), (468,'Serene Grace'), (468,'Super Luck'), (469,'Frisk'), (469,'Speed Boost'), (469,'Tinted Lens'), (470,'Chlorophyll'), (470,'Leaf Guard'), (471,'Ice Body'), (471,'Snow Cloak'), (472,'Hyper Cutter'), (472,'Poison Heal'), (472,'Sand Veil'), (473,'Oblivious'), (473,'Snow Cloak'), (473,'Thick Fat'), (474,'Adaptability'), (474,'Analytic'), (474,'Download'), (475,'Justified'), (475,'Steadfast'), (476,'Magnet Pull'), (476,'Sand Force'), (476,'Sturdy'), (477,'Frisk'), (477,'Pressure'), (478,'Cursed Body'), (478,'Snow Cloak'), (479,'Levitate'), (480,'Levitate'), (481,'Levitate'), (482,'Levitate'), (483,'Pressure'), (483,'Telepathy'), (484,'Pressure'), (484,'Telepathy'), (485,'Flame Body'), (485,'Flash Fire'), (486,'Slow Start'), (487,'Levitate'), (487,'Pressure'), (487,'Telepathy'), (488,'Levitate'), (489,'Hydration'), (490,'Hydration'), (491,'Bad Dreams'), (492,'Natural Cure'), (492,'Serene Grace'), (493,'Multitype'), (494,'Victory Star'), (495,'Contrary'), (495,'Overgrow'), (496,'Contrary'), (496,'Overgrow'), (497,'Contrary'), (497,'Overgrow'), (498,'Blaze'), (498,'Thick Fat'), (499,'Blaze'), (499,'Thick Fat'), (500,'Blaze'), (500,'Reckless'), (501,'Shell Armor'), (501,'Torrent'), (502,'Shell Armor'), (502,'Torrent'), (503,'Shell Armor'), (503,'Torrent'), (504,'Analytic'), (504,'Keen Eye'), (504,'Run Away'), (505,'Analytic'), (505,'Illuminate'), (505,'Keen Eye'), (506,'Pickup'), (506,'Run Away'), (506,'Vital Spirit'), (507,'Intimidate'), (507,'Sand Rush'), (507,'Scrappy'), (508,'Intimidate'), (508,'Sand Rush'), (508,'Scrappy'), (509,'Limber'), (509,'Prankster'), (509,'Unburden'), (510,'Limber'), (510,'Prankster'), (510,'Unburden'), (511,'Gluttony'), (511,'Overgrow'), (512,'Gluttony'), (512,'Overgrow'), (513,'Blaze'), (513,'Gluttony'), (514,'Blaze'), (514,'Gluttony'), (515,'Gluttony'), (515,'Torrent'), (516,'Gluttony'), (516,'Torrent'), (517,'Forewarn'), (517,'Synchronize'), (517,'Telepathy'), (518,'Forewarn'), (518,'Synchronize'), (518,'Telepathy'), (519,'Big Pecks'), (519,'Rivalry'), (519,'Super Luck'), (520,'Big Pecks'), (520,'Rivalry'), (520,'Super Luck'), (521,'Big Pecks'), (521,'Rivalry'), (521,'Super Luck'), (522,'Lightningrod'), (522,'Motor Drive'), (522,'Sap Sipper'), (523,'Lightningrod'), (523,'Motor Drive'), (523,'Sap Sipper'), (524,'Sand Force'), (524,'Sturdy'), (524,'Weak Armor'), (525,'Sand Force'), (525,'Sturdy'), (525,'Weak Armor'), (526,'Sand Force'), (526,'Sand Stream'), (526,'Sturdy'), (527,'Klutz'), (527,'Simple'), (527,'Unaware'), (528,'Klutz'), (528,'Simple'), (528,'Unaware'), (529,'Mold Breaker'), (529,'Sand Force'), (529,'Sand Rush'), (530,'Mold Breaker'), (530,'Sand Force'), (530,'Sand Rush'), (531,'Healer'), (531,'Klutz'), (531,'Regenerator'), (532,'Guts'), (532,'Iron Fist'), (532,'Sheer Force'), (533,'Guts'), (533,'Iron Fist'), (533,'Sheer Force'), (534,'Guts'), (534,'Iron Fist'), (534,'Sheer Force'), (535,'Hydration'), (535,'Swift Swim'), (535,'Water Absorb'), (536,'Hydration'), (536,'Swift Swim'), (536,'Water Absorb'), (537,'Poison Touch'), (537,'Swift Swim'), (537,'Water Absorb'), (538,'Guts'), (538,'Inner Focus'), (538,'Mold Breaker'), (539,'Inner Focus'), (539,'Mold Breaker'), (539,'Sturdy'), (540,'Chlorophyll'), (540,'Overcoat'), (540,'Swarm'), (541,'Chlorophyll'), (541,'Leaf Guard'), (541,'Overcoat'), (542,'Chlorophyll'), (542,'Overcoat'), (542,'Swarm'), (543,'Poison Point'), (543,'Speed Boost'), (543,'Swarm'), (544,'Poison Point'), (544,'Speed Boost'), (544,'Swarm'), (545,'Poison Point'), (545,'Speed Boost'), (545,'Swarm'), (546,'Chlorophyll'), (546,'Infiltrator'), (546,'Prankster'), (547,'Chlorophyll'), (547,'Infiltrator'), (547,'Prankster'), (548,'Chlorophyll'), (548,'Leaf Guard'), (548,'Own Tempo'), (549,'Chlorophyll'), (549,'Leaf Guard'), (549,'Own Tempo'), (550,'Adaptability'), (550,'Mold Breaker'), (550,'Reckless'), (550,'Rock Head'), (551,'Anger Point'), (551,'Intimidate'), (551,'Moxie'), (552,'Anger Point'), (552,'Intimidate'), (552,'Moxie'), (553,'Anger Point'), (553,'Intimidate'), (553,'Moxie'), (554,'Hustle'), (554,'Inner Focus'), (555,'Sheer Force'), (555,'Zen Mode'), (556,'Chlorophyll'), (556,'Storm Drain'), (556,'Water Absorb'), (557,'Shell Armor'), (557,'Sturdy'), (557,'Weak Armor'), (558,'Shell Armor'), (558,'Sturdy'), (558,'Weak Armor'), (559,'Intimidate'), (559,'Moxie'), (559,'Shed Skin'), (560,'Intimidate'), (560,'Moxie'), (560,'Shed Skin'), (561,'Magic Guard'), (561,'Tinted Lens'), (561,'Wonder Skin'), (562,'Mummy'), (563,'Mummy'), (564,'Solid Rock'), (564,'Sturdy'), (564,'Swift Swim'), (565,'Solid Rock'), (565,'Sturdy'), (565,'Swift Swim'), (566,'Defeatist'), (567,'Defeatist'), (568,'Aftermath'), (568,'Stench'), (568,'Sticky Hold'), (569,'Aftermath'), (569,'Stench'), (569,'Weak Armor'), (570,'Illusion'), (571,'Illusion'), (572,'Cute Charm'), (572,'Skill Link'), (572,'Technician'), (573,'Cute Charm'), (573,'Skill Link'), (573,'Technician'), (574,'Competitive'), (574,'Frisk'), (574,'Shadow Tag'), (575,'Competitive'), (575,'Frisk'), (575,'Shadow Tag'), (576,'Competitive'), (576,'Frisk'), (576,'Shadow Tag'), (577,'Magic Guard'), (577,'Overcoat'), (577,'Regenerator'), (578,'Magic Guard'), (578,'Overcoat'), (578,'Regenerator'), (579,'Magic Guard'), (579,'Overcoat'), (579,'Regenerator'), (580,'Big Pecks'), (580,'Hydration'), (580,'Keen Eye'), (581,'Big Pecks'), (581,'Hydration'), (581,'Keen Eye'), (582,'Ice Body'), (582,'Snow Cloak'), (582,'Weak Armor'), (583,'Ice Body'), (583,'Snow Cloak'), (583,'Weak Armor'), (584,'Ice Body'), (584,'Snow Warning'), (584,'Weak Armor'), (585,'Chlorophyll'), (585,'Sap Sipper'), (585,'Serene Grace'), (586,'Chlorophyll'), (586,'Sap Sipper'), (586,'Serene Grace'), (587,'Motor Drive'), (587,'Static'), (588,'No Guard'), (588,'Shed Skin'), (588,'Swarm'), (589,'Overcoat'), (589,'Shell Armor'), (589,'Swarm'), (590,'Effect Spore'), (590,'Regenerator'), (591,'Effect Spore'), (591,'Regenerator'), (592,'Cursed Body'), (592,'Damp'), (592,'Water Absorb'), (593,'Cursed Body'), (593,'Damp'), (593,'Water Absorb'), (594,'Healer'), (594,'Hydration'), (594,'Regenerator'), (595,'Compoundeyes'), (595,'Swarm'), (595,'Unnerve'), (596,'Compoundeyes'), (596,'Swarm'), (596,'Unnerve'), (597,'Iron Barbs'), (598,'Anticipation'), (598,'Iron Barbs'), (599,'Clear Body'), (599,'Minus'), (599,'Plus'), (600,'Clear Body'), (600,'Minus'), (600,'Plus'), (601,'Clear Body'), (601,'Minus'), (601,'Plus'), (602,'Levitate'), (603,'Levitate'), (604,'Levitate'), (605,'Analytic'), (605,'Synchronize'), (605,'Telepathy'), (606,'Analytic'), (606,'Synchronize'), (606,'Telepathy'), (607,'Flame Body'), (607,'Flash Fire'), (607,'Infiltrator'), (608,'Flame Body'), (608,'Flash Fire'), (608,'Infiltrator'), (609,'Flame Body'), (609,'Flash Fire'), (609,'Infiltrator'), (610,'Mold Breaker'), (610,'Rivalry'), (610,'Unnerve'), (611,'Mold Breaker'), (611,'Rivalry'), (611,'Unnerve'), (612,'Mold Breaker'), (612,'Rivalry'), (612,'Unnerve'), (613,'Rattled'), (613,'Slush Rush'), (613,'Snow Cloak'), (614,'Slush Rush'), (614,'Snow Cloak'), (614,'Swift Swim'), (615,'Levitate'), (616,'Hydration'), (616,'Overcoat'), (616,'Shell Armor'), (617,'Hydration'), (617,'Sticky Hold'), (617,'Unburden'), (618,'Limber'), (618,'Sand Veil'), (618,'Static'), (619,'Inner Focus'), (619,'Reckless'), (619,'Regenerator'), (620,'Inner Focus'), (620,'Reckless'), (620,'Regenerator'), (621,'Mold Breaker'), (621,'Rough Skin'), (621,'Sheer Force'), (622,'Iron Fist'), (622,'Klutz'), (622,'No Guard'), (623,'Iron Fist'), (623,'Klutz'), (623,'No Guard'), (624,'Defiant'), (624,'Inner Focus'), (624,'Pressure'), (625,'Defiant'), (625,'Inner Focus'), (625,'Pressure'), (626,'Reckless'), (626,'Sap Sipper'), (626,'Soundproof'), (627,'Hustle'), (627,'Keen Eye'), (627,'Sheer Force'), (628,'Defiant'), (628,'Keen Eye'), (628,'Sheer Force'), (629,'Big Pecks'), (629,'Overcoat'), (629,'Weak Armor'), (630,'Big Pecks'), (630,'Overcoat'), (630,'Weak Armor'), (631,'Flash Fire'), (631,'Gluttony'), (631,'White Smoke'), (632,'Hustle'), (632,'Swarm'), (632,'Truant'), (633,'Hustle'), (634,'Hustle'), (635,'Levitate'), (636,'Flame Body'), (636,'Swarm'), (637,'Flame Body'), (637,'Swarm'), (638,'Justified'), (639,'Justified'), (640,'Justified'), (641,'Defiant'), (641,'Prankster'), (641,'Regenerator'), (642,'Defiant'), (642,'Prankster'), (642,'Volt Absorb'), (643,'Turboblaze'), (644,'Teravolt'), (645,'Intimidate'), (645,'Sand Force'), (645,'Sheer Force'), (646,'Pressure'), (646,'Teravolt'), (646,'Turboblaze'), (647,'Justified'), (648,'Serene Grace'), (649,'Download'), (650,'Bulletproof'), (650,'Overgrow'), (651,'Bulletproof'), (651,'Overgrow'), (652,'Bulletproof'), (652,'Overgrow'), (653,'Blaze'), (653,'Magician'), (654,'Blaze'), (654,'Magician'), (655,'Blaze'), (655,'Magician'), (656,'Protean'), (656,'Torrent'), (657,'Protean'), (657,'Torrent'), (658,'Battle Bond'), (658,'Protean'), (658,'Torrent'), (659,'Cheek Pouch'), (659,'Huge Power'), (659,'Pickup'), (660,'Cheek Pouch'), (660,'Huge Power'), (660,'Pickup'), (661,'Big Pecks'), (661,'Gale Wings'), (662,'Flame Body'), (662,'Gale Wings'), (663,'Flame Body'), (663,'Gale Wings'), (664,'Compoundeyes'), (664,'Friend Guard'), (664,'Shield Dust'), (665,'Friend Guard'), (665,'Shed Skin'), (666,'Compoundeyes'), (666,'Friend Guard'), (666,'Shield Dust'), (667,'Moxie'), (667,'Rivalry'), (667,'Unnerve'), (668,'Moxie'), (668,'Rivalry'), (668,'Unnerve'), (669,'Flower Veil'), (669,'Symbiosis'), (670,'Flower Veil'), (670,'Symbiosis'), (671,'Flower Veil'), (671,'Symbiosis'), (672,'Grass Pelt'), (672,'Sap Sipper'), (673,'Grass Pelt'), (673,'Sap Sipper'), (674,'Iron Fist'), (674,'Mold Breaker'), (674,'Scrappy'), (675,'Iron Fist'), (675,'Mold Breaker'), (675,'Scrappy'), (676,'Fur Coat'), (677,'Infiltrator'), (677,'Keen Eye'), (677,'Own Tempo'), (678,'Competitive'), (678,'Infiltrator'), (678,'Keen Eye'), (678,'Prankster'), (679,'No Guard'), (680,'No Guard'), (681,'Stance Change'), (682,'Aroma Veil'), (682,'Healer'), (683,'Aroma Veil'), (683,'Healer'), (684,'Sweet Veil'), (684,'Unburden'), (685,'Sweet Veil'), (685,'Unburden'), (686,'Contrary'), (686,'Infiltrator'), (686,'Suction Cups'), (687,'Contrary'), (687,'Infiltrator'), (687,'Suction Cups'), (688,'Pickpocket'), (688,'Sniper'), (688,'Tough Claws'), (689,'Pickpocket'), (689,'Sniper'), (689,'Tough Claws'), (690,'Adaptability'), (690,'Poison Point'), (690,'Poison Touch'), (691,'Adaptability'), (691,'Poison Point'), (691,'Poison Touch'), (692,'Mega Launcher'), (693,'Mega Launcher'), (694,'Dry Skin'), (694,'Sand Veil'), (694,'Solar Power'), (695,'Dry Skin'), (695,'Sand Veil'), (695,'Solar Power'), (696,'Strong Jaw'), (696,'Sturdy'), (697,'Rock Head'), (697,'Strong Jaw'), (698,'Refrigerate'), (698,'Snow Warning'), (699,'Refrigerate'), (699,'Snow Warning'), (700,'Cute Charm'), (700,'Pixilate'), (701,'Limber'), (701,'Mold Breaker'), (701,'Unburden'), (702,'Cheek Pouch'), (702,'Pickup'), (702,'Plus'), (703,'Clear Body'), (703,'Sturdy'), (704,'Gooey'), (704,'Hydration'), (704,'Sap Sipper'), (705,'Gooey'), (705,'Hydration'), (705,'Sap Sipper'), (706,'Gooey'), (706,'Hydration'), (706,'Sap Sipper'), (707,'Magician'), (707,'Prankster'), (708,'Frisk'), (708,'Harvest'), (708,'Natural Cure'), (709,'Frisk'), (709,'Harvest'), (709,'Natural Cure'), (710,'Frisk'), (710,'Insomnia'), (710,'Pickup'), (711,'Frisk'), (711,'Insomnia'), (711,'Pickup'), (712,'Ice Body'), (712,'Own Tempo'), (712,'Sturdy'), (713,'Ice Body'), (713,'Own Tempo'), (713,'Sturdy'), (714,'Frisk'), (714,'Infiltrator'), (714,'Telepathy'), (715,'Frisk'), (715,'Infiltrator'), (715,'Telepathy'), (716,'Fairy Aura'), (717,'Dark Aura'), (718,'Aura Break'), (718,'Power Construct'), (719,'Clear Body'), (720,'Magician'), (721,'Water Absorb'), (722,'Long Reach'), (722,'Overgrow'), (723,'Long Reach'), (723,'Overgrow'), (724,'Long Reach'), (724,'Overgrow'), (725,'Blaze'), (725,'Intimidate'), (726,'Blaze'), (726,'Intimidate'), (727,'Blaze'), (727,'Intimidate'), (728,'Liquid Voice'), (728,'Torrent'), (729,'Liquid Voice'), (729,'Torrent'), (730,'Liquid Voice'), (730,'Torrent'), (731,'Keen Eye'), (731,'Pickup'), (731,'Skill Link'), (732,'Keen Eye'), (732,'Pickup'), (732,'Skill Link'), (733,'Keen Eye'), (733,'Sheer Force'), (733,'Skill Link'), (734,'Adaptability'), (734,'Stakeout'), (734,'Strong Jaw'), (735,'Adaptability'), (735,'Stakeout'), (735,'Strong Jaw'), (736,'Swarm'), (737,'Battery'), (738,'Levitate'), (739,'Anger Point'), (739,'Hyper Cutter'), (739,'Iron Fist'), (740,'Anger Point'), (740,'Hyper Cutter'), (740,'Iron Fist'), (741,'Dancer'), (742,'Honey Gather'), (742,'Shield Dust'), (742,'Sweet Veil'), (743,'Honey Gather'), (743,'Shield Dust'), (743,'Sweet Veil'), (744,'Keen Eye'), (744,'Steadfast'), (744,'Vital Spirit'), (745,'Keen Eye'), (745,'No Guard'), (745,'Sand Rush'), (745,'Steadfast'), (745,'Vital Spirit'), (746,'Schooling'), (747,'Limber'), (747,'Merciless'), (747,'Regenerator'), (748,'Limber'), (748,'Merciless'), (748,'Regenerator'), (749,'Inner Focus'), (749,'Own Tempo'), (749,'Stamina'), (750,'Inner Focus'), (750,'Own Tempo'), (750,'Stamina'), (751,'Water Absorb'), (751,'Water Bubble'), (752,'Water Absorb'), (752,'Water Bubble'), (753,'Contrary'), (753,'Leaf Guard'), (754,'Contrary'), (754,'Leaf Guard'), (755,'Effect Spore'), (755,'Illuminate'), (755,'Rain Dish'), (756,'Effect Spore'), (756,'Illuminate'), (756,'Rain Dish'), (757,'Corrosion'), (757,'Oblivious'), (758,'Corrosion'), (758,'Oblivious'), (759,'Cute Charm'), (759,'Fluffy'), (759,'Klutz'), (760,'Fluffy'), (760,'Klutz'), (760,'Unnerve'), (761,'Leaf Guard'), (761,'Oblivious'), (761,'Sweet Veil'), (762,'Leaf Guard'), (762,'Oblivious'), (762,'Sweet Veil'), (763,'Leaf Guard'), (763,'Queenly Majesty'), (763,'Sweet Veil'), (764,'Flower Veil'), (764,'Natural Cure'), (764,'Triage'), (765,'Inner Focus'), (765,'Symbiosis'), (765,'Telepathy'), (766,'Defiant'), (766,'Receiver'), (767,'Wimp Out'), (768,'Emergency Exit'), (769,'Sand Veil'), (769,'Water Compaction'), (770,'Sand Veil'), (770,'Water Compaction'), (771,'Innards Out'), (771,'Unaware'), (772,'Battle Armor'), (773,'RKS System'), (774,'Shields Down'), (775,'Comatose'), (776,'Shell Armor'), (777,'Iron Barbs'), (777,'Lightningrod'), (777,'Sturdy'), (778,'Disguise'), (779,'Dazzling'), (779,'Strong Jaw'), (779,'Wonder Skin'), (780,'Berserk'), (780,'Cloud Nine'), (780,'Sap Sipper'), (781,'Steelworker'), (782,'Bulletproof'), (782,'Overcoat'), (782,'Soundproof'), (783,'Bulletproof'), (783,'Overcoat'), (783,'Soundproof'), (784,'Bulletproof'), (784,'Overcoat'), (784,'Soundproof'), (785,'Electric Surge'), (785,'Telepathy'), (786,'Psychic Surge'), (786,'Telepathy'), (787,'Grassy Surge'), (787,'Telepathy'), (788,'Misty Surge'), (788,'Telepathy'), (789,'Unaware'), (790,'Sturdy'), (791,'Full Metal Body'), (792,'Shadow Shield'), (793,'Beast Boost'), (794,'Beast Boost'), (795,'Beast Boost'), (796,'Beast Boost'), (797,'Beast Boost'), (798,'Beast Boost'), (799,'Beast Boost'), (800,'Prism Armor'), (801,'Soul-Heart'); insert into poketypes (pokeID,type) values (1,'grass'), (1,'poison'), (2,'grass'), (2,'poison'), (3,'grass'), (3,'poison'), (4,'fire'), (5,'fire'), (6,'fire'), (6,'flying'), (7,'water'), (8,'water'), (9,'water'), (10,'bug'), (11,'bug'), (12,'bug'), (12,'flying'), (13,'bug'), (13,'poison'), (14,'bug'), (14,'poison'), (15,'bug'), (15,'poison'), (16,'flying'), (16,'normal'), (17,'flying'), (17,'normal'), (18,'flying'), (18,'normal'), (19,'dark'), (19,'normal'), (20,'dark'), (20,'normal'), (21,'flying'), (21,'normal'), (22,'flying'), (22,'normal'), (23,'poison'), (24,'poison'), (25,'electric'), (26,'electric'), (27,'ground'), (27,'ice'), (28,'ground'), (28,'ice'), (29,'poison'), (30,'poison'), (31,'ground'), (31,'poison'), (32,'poison'), (33,'poison'), (34,'ground'), (34,'poison'), (35,'fairy'), (36,'fairy'), (37,'fire'), (37,'ice'), (38,'fire'), (38,'ice'), (39,'fairy'), (39,'normal'), (40,'fairy'), (40,'normal'), (41,'flying'), (41,'poison'), (42,'flying'), (42,'poison'), (43,'grass'), (43,'poison'), (44,'grass'), (44,'poison'), (45,'grass'), (45,'poison'), (46,'bug'), (46,'grass'), (47,'bug'), (47,'grass'), (48,'bug'), (48,'poison'), (49,'bug'), (49,'poison'), (50,'ground'), (51,'ground'), (52,'dark'), (52,'normal'), (53,'dark'), (53,'normal'), (54,'water'), (55,'water'), (56,'fighting'), (57,'fighting'), (58,'fire'), (59,'fire'), (60,'water'), (61,'water'), (62,'fighting'), (62,'water'), (63,'psychic'), (64,'psychic'), (65,'psychic'), (66,'fighting'), (67,'fighting'), (68,'fighting'), (69,'grass'), (69,'poison'), (70,'grass'), (70,'poison'), (71,'grass'), (71,'poison'), (72,'poison'), (72,'water'), (73,'poison'), (73,'water'), (74,'ground'), (74,'rock'), (75,'ground'), (75,'rock'), (76,'ground'), (76,'rock'), (77,'fire'), (78,'fire'), (79,'psychic'), (79,'water'), (80,'psychic'), (80,'water'), (81,'electric'), (81,'steel'), (82,'electric'), (82,'steel'), (83,'flying'), (83,'normal'), (84,'flying'), (84,'normal'), (85,'flying'), (85,'normal'), (86,'water'), (87,'ice'), (87,'water'), (88,'poison'), (89,'poison'), (90,'water'), (91,'ice'), (91,'water'), (92,'ghost'), (92,'poison'), (93,'ghost'), (93,'poison'), (94,'ghost'), (94,'poison'), (95,'ground'), (95,'rock'), (96,'psychic'), (97,'psychic'), (98,'water'), (99,'water'), (100,'electric'), (101,'electric'), (102,'grass'), (102,'psychic'), (103,'grass'), (103,'psychic'), (104,'ground'), (105,'fire'), (105,'ground'), (106,'fighting'), (107,'fighting'), (108,'normal'), (109,'poison'), (110,'poison'), (111,'ground'), (111,'rock'), (112,'ground'), (112,'rock'), (113,'normal'), (114,'grass'), (115,'normal'), (116,'water'), (117,'water'), (118,'water'), (119,'water'), (120,'water'), (121,'psychic'), (121,'water'), (122,'fairy'), (122,'psychic'), (123,'bug'), (123,'flying'), (124,'ice'), (124,'psychic'), (125,'electric'), (126,'fire'), (127,'bug'), (128,'normal'), (129,'water'), (130,'flying'), (130,'water'), (131,'ice'), (131,'water'), (132,'normal'), (133,'normal'), (134,'water'), (135,'electric'), (136,'fire'), (137,'normal'), (138,'rock'), (138,'water'), (139,'rock'), (139,'water'), (140,'rock'), (140,'water'), (141,'rock'), (141,'water'), (142,'flying'), (142,'rock'), (143,'normal'), (144,'flying'), (144,'ice'), (145,'electric'), (145,'flying'), (146,'fire'), (146,'flying'), (147,'dragon'), (148,'dragon'), (149,'dragon'), (149,'flying'), (150,'psychic'), (151,'psychic'), (152,'grass'), (153,'grass'), (154,'grass'), (155,'fire'), (156,'fire'), (157,'fire'), (158,'water'), (159,'water'), (160,'water'), (161,'normal'), (162,'normal'), (163,'flying'), (163,'normal'), (164,'flying'), (164,'normal'), (165,'bug'), (165,'flying'), (166,'bug'), (166,'flying'), (167,'bug'), (167,'poison'), (168,'bug'), (168,'poison'), (169,'flying'), (169,'poison'), (170,'electric'), (170,'water'), (171,'electric'), (171,'water'), (172,'electric'), (173,'fairy'), (174,'fairy'), (174,'normal'), (175,'fairy'), (176,'fairy'), (176,'flying'), (177,'flying'), (177,'psychic'), (178,'flying'), (178,'psychic'), (179,'electric'), (180,'electric'), (181,'electric'), (182,'grass'), (183,'fairy'), (183,'water'), (184,'fairy'), (184,'water'), (185,'rock'), (186,'water'), (187,'flying'), (187,'grass'), (188,'flying'), (188,'grass'), (189,'flying'), (189,'grass'), (190,'normal'), (191,'grass'), (192,'grass'), (193,'bug'), (193,'flying'), (194,'ground'), (194,'water'), (195,'ground'), (195,'water'), (196,'psychic'), (197,'dark'), (198,'dark'), (198,'flying'), (199,'psychic'), (199,'water'), (200,'ghost'), (201,'psychic'), (202,'psychic'), (203,'normal'), (203,'psychic'), (204,'bug'), (205,'bug'), (205,'steel'), (206,'normal'), (207,'flying'), (207,'ground'), (208,'ground'), (208,'steel'), (209,'fairy'), (210,'fairy'), (211,'poison'), (211,'water'), (212,'bug'), (212,'steel'), (213,'bug'), (213,'rock'), (214,'bug'), (214,'fighting'), (215,'dark'), (215,'ice'), (216,'normal'), (217,'normal'), (218,'fire'), (219,'fire'), (219,'rock'), (220,'ground'), (220,'ice'), (221,'ground'), (221,'ice'), (222,'rock'), (222,'water'), (223,'water'), (224,'water'), (225,'flying'), (225,'ice'), (226,'flying'), (226,'water'), (227,'flying'), (227,'steel'), (228,'dark'), (228,'fire'), (229,'dark'), (229,'fire'), (230,'dragon'), (230,'water'), (231,'ground'), (232,'ground'), (233,'normal'), (234,'normal'), (235,'normal'), (236,'fighting'), (237,'fighting'), (238,'ice'), (238,'psychic'), (239,'electric'), (240,'fire'), (241,'normal'), (242,'normal'), (243,'electric'), (244,'fire'), (245,'water'), (246,'ground'), (246,'rock'), (247,'ground'), (247,'rock'), (248,'dark'), (248,'rock'), (249,'flying'), (249,'psychic'), (250,'fire'), (250,'flying'), (251,'grass'), (251,'psychic'), (252,'grass'), (253,'grass'), (254,'grass'), (255,'fire'), (256,'fighting'), (256,'fire'), (257,'fighting'), (257,'fire'), (258,'water'), (259,'ground'), (259,'water'), (260,'ground'), (260,'water'), (261,'dark'), (262,'dark'), (263,'normal'), (264,'normal'), (265,'bug'), (266,'bug'), (267,'bug'), (267,'flying'), (268,'bug'), (269,'bug'), (269,'poison'), (270,'grass'), (270,'water'), (271,'grass'), (271,'water'), (272,'grass'), (272,'water'), (273,'grass'), (274,'dark'), (274,'grass'), (275,'dark'), (275,'grass'), (276,'flying'), (276,'normal'), (277,'flying'), (277,'normal'), (278,'flying'), (278,'water'), (279,'flying'), (279,'water'), (280,'fairy'), (280,'psychic'), (281,'fairy'), (281,'psychic'), (282,'fairy'), (282,'psychic'), (283,'bug'), (283,'water'), (284,'bug'), (284,'flying'), (285,'grass'), (286,'fighting'), (286,'grass'), (287,'normal'), (288,'normal'), (289,'normal'), (290,'bug'), (290,'ground'), (291,'bug'), (291,'flying'), (292,'bug'), (292,'ghost'), (293,'normal'), (294,'normal'), (295,'normal'), (296,'fighting'), (297,'fighting'), (298,'fairy'), (298,'normal'), (299,'rock'), (300,'normal'), (301,'normal'), (302,'dark'), (302,'ghost'), (303,'fairy'), (303,'steel'), (304,'rock'), (304,'steel'), (305,'rock'), (305,'steel'), (306,'rock'), (306,'steel'), (307,'fighting'), (307,'psychic'), (308,'fighting'), (308,'psychic'), (309,'electric'), (310,'electric'), (311,'electric'), (312,'electric'), (313,'bug'), (314,'bug'), (315,'grass'), (315,'poison'), (316,'poison'), (317,'poison'), (318,'dark'), (318,'water'), (319,'dark'), (319,'water'), (320,'water'), (321,'water'), (322,'fire'), (322,'ground'), (323,'fire'), (323,'ground'), (324,'fire'), (325,'psychic'), (326,'psychic'), (327,'normal'), (328,'ground'), (329,'dragon'), (329,'ground'), (330,'dragon'), (330,'ground'), (331,'grass'), (332,'dark'), (332,'grass'), (333,'flying'), (333,'normal'), (334,'dragon'), (334,'flying'), (335,'normal'), (336,'poison'), (337,'psychic'), (337,'rock'), (338,'psychic'), (338,'rock'), (339,'ground'), (339,'water'), (340,'ground'), (340,'water'), (341,'water'), (342,'dark'), (342,'water'), (343,'ground'), (343,'psychic'), (344,'ground'), (344,'psychic'), (345,'grass'), (345,'rock'), (346,'grass'), (346,'rock'), (347,'bug'), (347,'rock'), (348,'bug'), (348,'rock'), (349,'water'), (350,'water'), (351,'normal'), (352,'normal'), (353,'ghost'), (354,'ghost'), (355,'ghost'), (356,'ghost'), (357,'flying'), (357,'grass'), (358,'psychic'), (359,'dark'), (360,'psychic'), (361,'ice'), (362,'ice'), (363,'ice'), (363,'water'), (364,'ice'), (364,'water'), (365,'ice'), (365,'water'), (366,'water'), (367,'water'), (368,'water'), (369,'rock'), (369,'water'), (370,'water'), (371,'dragon'), (372,'dragon'), (373,'dragon'), (373,'flying'), (374,'psychic'), (374,'steel'), (375,'psychic'), (375,'steel'), (376,'psychic'), (376,'steel'), (377,'rock'), (378,'ice'), (379,'steel'), (380,'dragon'), (380,'psychic'), (381,'dragon'), (381,'psychic'), (382,'water'), (383,'ground'), (384,'dragon'), (384,'flying'), (385,'psychic'), (385,'steel'), (386,'psychic'), (387,'grass'), (388,'grass'), (389,'grass'), (389,'ground'), (390,'fire'), (391,'fighting'), (391,'fire'), (392,'fighting'), (392,'fire'), (393,'water'), (394,'water'), (395,'steel'), (395,'water'), (396,'flying'), (396,'normal'), (397,'flying'), (397,'normal'), (398,'flying'), (398,'normal'), (399,'normal'), (400,'normal'), (400,'water'), (401,'bug'), (402,'bug'), (403,'electric'), (404,'electric'), (405,'electric'), (406,'grass'), (406,'poison'), (407,'grass'), (407,'poison'), (408,'rock'), (409,'rock'), (410,'rock'), (410,'steel'), (411,'rock'), (411,'steel'), (412,'bug'), (413,'bug'), (413,'grass'), (414,'bug'), (414,'flying'), (415,'bug'), (415,'flying'), (416,'bug'), (416,'flying'), (417,'electric'), (418,'water'), (419,'water'), (420,'grass'), (421,'grass'), (422,'water'), (423,'ground'), (423,'water'), (424,'normal'), (425,'flying'), (425,'ghost'), (426,'flying'), (426,'ghost'), (427,'normal'), (428,'normal'), (429,'ghost'), (430,'dark'), (430,'flying'), (431,'normal'), (432,'normal'), (433,'psychic'), (434,'dark'), (434,'poison'), (435,'dark'), (435,'poison'), (436,'psychic'), (436,'steel'), (437,'psychic'), (437,'steel'), (438,'rock'), (439,'fairy'), (439,'psychic'), (440,'normal'), (441,'flying'), (441,'normal'), (442,'dark'), (442,'ghost'), (443,'dragon'), (443,'ground'), (444,'dragon'), (444,'ground'), (445,'dragon'), (445,'ground'), (446,'normal'), (447,'fighting'), (448,'fighting'), (448,'steel'), (449,'ground'), (450,'ground'), (451,'bug'), (451,'poison'), (452,'dark'), (452,'poison'), (453,'fighting'), (453,'poison'), (454,'fighting'), (454,'poison'), (455,'grass'), (456,'water'), (457,'water'), (458,'flying'), (458,'water'), (459,'grass'), (459,'ice'), (460,'grass'), (460,'ice'), (461,'dark'), (461,'ice'), (462,'electric'), (462,'steel'), (463,'normal'), (464,'ground'), (464,'rock'), (465,'grass'), (466,'electric'), (467,'fire'), (468,'fairy'), (468,'flying'), (469,'bug'), (469,'flying'), (470,'grass'), (471,'ice'), (472,'flying'), (472,'ground'), (473,'ground'), (473,'ice'), (474,'normal'), (475,'fighting'), (475,'psychic'), (476,'rock'), (476,'steel'), (477,'ghost'), (478,'ghost'), (478,'ice'), (479,'electric'), (479,'ghost'), (480,'psychic'), (481,'psychic'), (482,'psychic'), (483,'dragon'), (483,'steel'), (484,'dragon'), (484,'water'), (485,'fire'), (485,'steel'), (486,'normal'), (487,'dragon'), (487,'ghost'), (488,'psychic'), (489,'water'), (490,'water'), (491,'dark'), (492,'grass'), (493,'normal'), (494,'fire'), (494,'psychic'), (495,'grass'), (496,'grass'), (497,'grass'), (498,'fire'), (499,'fighting'), (499,'fire'), (500,'fighting'), (500,'fire'), (501,'water'), (502,'water'), (503,'water'), (504,'normal'), (505,'normal'), (506,'normal'), (507,'normal'), (508,'normal'), (509,'dark'), (510,'dark'), (511,'grass'), (512,'grass'), (513,'fire'), (514,'fire'), (515,'water'), (516,'water'), (517,'psychic'), (518,'psychic'), (519,'flying'), (519,'normal'), (520,'flying'), (520,'normal'), (521,'flying'), (521,'normal'), (522,'electric'), (523,'electric'), (524,'rock'), (525,'rock'), (526,'rock'), (527,'flying'), (527,'psychic'), (528,'flying'), (528,'psychic'), (529,'ground'), (530,'ground'), (530,'steel'), (531,'normal'), (532,'fighting'), (533,'fighting'), (534,'fighting'), (535,'water'), (536,'ground'), (536,'water'), (537,'ground'), (537,'water'), (538,'fighting'), (539,'fighting'), (540,'bug'), (540,'grass'), (541,'bug'), (541,'grass'), (542,'bug'), (542,'grass'), (543,'bug'), (543,'poison'), (544,'bug'), (544,'poison'), (545,'bug'), (545,'poison'), (546,'fairy'), (546,'grass'), (547,'fairy'), (547,'grass'), (548,'grass'), (549,'grass'), (550,'water'), (551,'dark'), (551,'ground'), (552,'dark'), (552,'ground'), (553,'dark'), (553,'ground'), (554,'fire'), (555,'fire'), (556,'grass'), (557,'bug'), (557,'rock'), (558,'bug'), (558,'rock'), (559,'dark'), (559,'fighting'), (560,'dark'), (560,'fighting'), (561,'flying'), (561,'psychic'), (562,'ghost'), (563,'ghost'), (564,'rock'), (564,'water'), (565,'rock'), (565,'water'), (566,'flying'), (566,'rock'), (567,'flying'), (567,'rock'), (568,'poison'), (569,'poison'), (570,'dark'), (571,'dark'), (572,'normal'), (573,'normal'), (574,'psychic'), (575,'psychic'), (576,'psychic'), (577,'psychic'), (578,'psychic'), (579,'psychic'), (580,'flying'), (580,'water'), (581,'flying'), (581,'water'), (582,'ice'), (583,'ice'), (584,'ice'), (585,'grass'), (585,'normal'), (586,'grass'), (586,'normal'), (587,'electric'), (587,'flying'), (588,'bug'), (589,'bug'), (589,'steel'), (590,'grass'), (590,'poison'), (591,'grass'), (591,'poison'), (592,'ghost'), (592,'water'), (593,'ghost'), (593,'water'), (594,'water'), (595,'bug'), (595,'electric'), (596,'bug'), (596,'electric'), (597,'grass'), (597,'steel'), (598,'grass'), (598,'steel'), (599,'steel'), (600,'steel'), (601,'steel'), (602,'electric'), (603,'electric'), (604,'electric'), (605,'psychic'), (606,'psychic'), (607,'fire'), (607,'ghost'), (608,'fire'), (608,'ghost'), (609,'fire'), (609,'ghost'), (610,'dragon'), (611,'dragon'), (612,'dragon'), (613,'ice'), (614,'ice'), (615,'ice'), (616,'bug'), (617,'bug'), (618,'electric'), (618,'ground'), (619,'fighting'), (620,'fighting'), (621,'dragon'), (622,'ghost'), (622,'ground'), (623,'ghost'), (623,'ground'), (624,'dark'), (624,'steel'), (625,'dark'), (625,'steel'), (626,'normal'), (627,'flying'), (627,'normal'), (628,'flying'), (628,'normal'), (629,'dark'), (629,'flying'), (630,'dark'), (630,'flying'), (631,'fire'), (632,'bug'), (632,'steel'), (633,'dark'), (633,'dragon'), (634,'dark'), (634,'dragon'), (635,'dark'), (635,'dragon'), (636,'bug'), (636,'fire'), (637,'bug'), (637,'fire'), (638,'fighting'), (638,'steel'), (639,'fighting'), (639,'rock'), (640,'fighting'), (640,'grass'), (641,'flying'), (642,'electric'), (642,'flying'), (643,'dragon'), (643,'fire'), (644,'dragon'), (644,'electric'), (645,'flying'), (645,'ground'), (646,'dragon'), (646,'ice'), (647,'fighting'), (647,'water'), (648,'normal'), (648,'psychic'), (649,'bug'), (649,'steel'), (650,'grass'), (651,'grass'), (652,'fighting'), (652,'grass'), (653,'fire'), (654,'fire'), (655,'fire'), (655,'psychic'), (656,'water'), (657,'water'), (658,'dark'), (658,'water'), (659,'normal'), (660,'ground'), (660,'normal'), (661,'flying'), (661,'normal'), (662,'fire'), (662,'flying'), (663,'fire'), (663,'flying'), (664,'bug'), (665,'bug'), (666,'bug'), (666,'flying'), (667,'fire'), (667,'normal'), (668,'fire'), (668,'normal'), (669,'fairy'), (670,'fairy'), (671,'fairy'), (672,'grass'), (673,'grass'), (674,'fighting'), (675,'dark'), (675,'fighting'), (676,'normal'), (677,'psychic'), (678,'psychic'), (679,'ghost'), (679,'steel'), (680,'ghost'), (680,'steel'), (681,'ghost'), (681,'steel'), (682,'fairy'), (683,'fairy'), (684,'fairy'), (685,'fairy'), (686,'dark'), (686,'psychic'), (687,'dark'), (687,'psychic'), (688,'rock'), (688,'water'), (689,'rock'), (689,'water'), (690,'poison'), (690,'water'), (691,'dragon'), (691,'poison'), (692,'water'), (693,'water'), (694,'electric'), (694,'normal'), (695,'electric'), (695,'normal'), (696,'dragon'), (696,'rock'), (697,'dragon'), (697,'rock'), (698,'ice'), (698,'rock'), (699,'ice'), (699,'rock'), (700,'fairy'), (701,'fighting'), (701,'flying'), (702,'electric'), (702,'fairy'), (703,'fairy'), (703,'rock'), (704,'dragon'), (705,'dragon'), (706,'dragon'), (707,'fairy'), (707,'steel'), (708,'ghost'), (708,'grass'), (709,'ghost'), (709,'grass'), (710,'ghost'), (710,'grass'), (711,'ghost'), (711,'grass'), (712,'ice'), (713,'ice'), (714,'dragon'), (714,'flying'), (715,'dragon'), (715,'flying'), (716,'fairy'), (717,'dark'), (717,'flying'), (718,'dragon'), (718,'ground'), (719,'fairy'), (719,'rock'), (720,'ghost'), (720,'psychic'), (721,'fire'), (721,'water'), (722,'flying'), (722,'grass'), (723,'flying'), (723,'grass'), (724,'ghost'), (724,'grass'), (725,'fire'), (726,'fire'), (727,'dark'), (727,'fire'), (728,'water'), (729,'water'), (730,'fairy'), (730,'water'), (731,'flying'), (731,'normal'), (732,'flying'), (732,'normal'), (733,'flying'), (733,'normal'), (734,'normal'), (735,'normal'), (736,'bug'), (737,'bug'), (737,'electric'), (738,'bug'), (738,'electric'), (739,'fighting'), (740,'fighting'), (740,'ice'), (741,'fire'), (741,'flying'), (742,'bug'), (742,'fairy'), (743,'bug'), (743,'fairy'), (744,'rock'), (745,'rock'), (746,'water'), (747,'poison'), (747,'water'), (748,'poison'), (748,'water'), (749,'ground'), (750,'ground'), (751,'bug'), (751,'water'), (752,'bug'), (752,'water'), (753,'grass'), (754,'grass'), (755,'fairy'), (755,'grass'), (756,'fairy'), (756,'grass'), (757,'fire'), (757,'poison'), (758,'fire'), (758,'poison'), (759,'fighting'), (759,'normal'), (760,'fighting'), (760,'normal'), (761,'grass'), (762,'grass'), (763,'grass'), (764,'fairy'), (765,'normal'), (765,'psychic'), (766,'fighting'), (767,'bug'), (767,'water'), (768,'bug'), (768,'water'), (769,'ghost'), (769,'ground'), (770,'ghost'), (770,'ground'), (771,'water'), (772,'normal'), (773,'normal'), (774,'flying'), (774,'rock'), (775,'normal'), (776,'dragon'), (776,'fire'), (777,'electric'), (777,'steel'), (778,'fairy'), (778,'ghost'), (779,'psychic'), (779,'water'), (780,'dragon'), (780,'normal'), (781,'ghost'), (781,'grass'), (782,'dragon'), (783,'dragon'), (783,'fighting'), (784,'dragon'), (784,'fighting'), (785,'electric'), (785,'fairy'), (786,'fairy'), (786,'psychic'), (787,'fairy'), (787,'grass'), (788,'fairy'), (788,'water'), (789,'psychic'), (790,'psychic'), (791,'psychic'), (791,'steel'), (792,'ghost'), (792,'psychic'), (793,'poison'), (793,'rock'), (794,'bug'), (794,'fighting'), (795,'bug'), (795,'fighting'), (796,'electric'), (797,'flying'), (797,'steel'), (798,'grass'), (798,'steel'), (799,'dark'), (799,'dragon'), (800,'psychic'), (801,'fairy'), (801,'steel');