diff --git a/OriginDex.py b/OriginDex.py index 6c17e30..ea47c4b 100644 --- a/OriginDex.py +++ b/OriginDex.py @@ -1,30 +1,65 @@ -import csv -from flask import Flask, render_template +import sqlite3 +from flask import Flask, render_template, jsonify app = Flask(__name__) def load_pokemon_data(): pokemon_list = [] - earliest_games = {} + + conn = sqlite3.connect('pokemon_database.db') + cursor = conn.cursor() - # Load Pokemon Home list - with open('pokemon_home_list.csv', 'r') as file: - reader = csv.DictReader(file) - for row in reader: - pokemon_list.append(row) + cursor.execute(''' + SELECT p.national_dex_number, p.name, pf.form_name, pf.image_path, pf.is_default + FROM pokemon p + JOIN pokemon_forms pf ON p.national_dex_number = pf.pokemon_id + ORDER BY p.national_dex_number, pf.is_default DESC, pf.form_name + ''') + + for row in cursor.fetchall(): + national_dex_number, name, form_name, image_path, is_default = row + + pokemon_list.append({ + 'ID': national_dex_number, + 'Name': name, + 'Form': form_name, + 'Image': image_path, + 'IsDefault': is_default + }) - # Load earliest games data - with open('pokemon_earliest_games.csv', 'r') as file: - reader = csv.DictReader(file) - for row in reader: - earliest_games[row['Pokemon']] = row['Earliest Game'] - - return pokemon_list, earliest_games + conn.close() + return pokemon_list @app.route('/') def index(): - pokemon_list, earliest_games = load_pokemon_data() - return render_template('index.html', pokemon_list=pokemon_list, earliest_games=earliest_games) + pokemon_list = load_pokemon_data() + # Create a list of lists, each inner list containing up to 30 Pokémon forms + grouped_pokemon = [pokemon_list[i:i+30] for i in range(0, len(pokemon_list), 30)] + return render_template('index.html', grouped_pokemon=grouped_pokemon) + +@app.route('/pokemon/') +def pokemon_details(dex_number): + conn = sqlite3.connect('pokemon_database.db') + cursor = conn.cursor() + + cursor.execute(''' + SELECT pf.form_name, g.name, l.name, em.name + FROM form_encounters fe + JOIN games g ON fe.game_id = g.id + JOIN locations l ON fe.location_id = l.id + JOIN encounter_methods em ON fe.encounter_method_id = em.id + JOIN pokemon_forms pf ON fe.form_id = pf.id + WHERE pf.pokemon_id = ? + ORDER BY pf.is_default DESC, pf.form_name, g.generation, g.name, l.name + ''', (dex_number,)) + + encounters = [ + {'form': form, 'game': game, 'location': location, 'method': method} + for form, game, location, method in cursor.fetchall() + ] + + conn.close() + return jsonify(encounters) if __name__ == '__main__': app.run(debug=True) diff --git a/Utilities/DBVisualiser.py b/Utilities/DBVisualiser.py index 356c616..7e07180 100644 --- a/Utilities/DBVisualiser.py +++ b/Utilities/DBVisualiser.py @@ -51,6 +51,11 @@ class PokemonDatabaseApp(QMainWindow): main_layout.addWidget(self.tab_widget) + # Add export button + self.export_button = QPushButton("Export Production Database") + self.export_button.clicked.connect(self.export_production_database) + main_layout.addWidget(self.export_button) + container = QWidget() container.setLayout(main_layout) self.setCentralWidget(container) @@ -578,8 +583,27 @@ class PokemonDatabaseApp(QMainWindow): locations = [row[0] for row in self.cursor.fetchall()] self.locations_list.addItems(locations) + def export_production_database(self): + try: + # Create a new connection for the production database + production_db_path = QFileDialog.getSaveFileName(self, "Save Production Database", "", "SQLite Database (*.db)")[0] + if not production_db_path: + return # User cancelled the file dialog + + production_conn = sqlite3.connect(production_db_path) + + # Copy the current in-memory database to the production database + self.conn.backup(production_conn) + + # Close the production database connection + production_conn.close() + + QMessageBox.information(self, "Success", f"Production database exported successfully to {production_db_path}") + except sqlite3.Error as e: + QMessageBox.warning(self, "Error", f"An error occurred while exporting the production database: {e}") + if __name__ == '__main__': app = QApplication(sys.argv) window = PokemonDatabaseApp() window.show() - sys.exit(app.exec()) + sys.exit(app.exec()) \ No newline at end of file diff --git a/Utilities/DatabaseBuilder.py b/Utilities/DatabaseBuilder.py index e95a4ac..d83f70a 100644 --- a/Utilities/DatabaseBuilder.py +++ b/Utilities/DatabaseBuilder.py @@ -4,6 +4,7 @@ import re def create_connection(): conn = sqlite3.connect('pokemon_database.db') + conn.text_factory = str return conn def create_tables(conn): @@ -109,12 +110,11 @@ def tidy_location_name(name): # Replace '-' with spaces name = name.replace('-', ' ') + name = name.replace('#', '') + # Remove 'area' from the end if present name = re.sub(r'\sarea$', '', name, flags=re.IGNORECASE) - - # Capitalize the first letter of the first word - name = name.capitalize() - + # Check for cardinal directions at the end cardinal_directions = ['north', 'south', 'east', 'west', 'northeast', 'northwest', 'southeast', 'southwest'] for direction in cardinal_directions: @@ -128,6 +128,9 @@ def tidy_location_name(name): name = "Route " + name name = name.replace("Routes", "Route") + + # Capitalize the first letter of the first word + name = name.capitalize() return name @@ -235,7 +238,7 @@ def load_mark_data(conn): def load_pokemon_data(conn): cursor = conn.cursor() - with open('pokemon_home_list.csv', 'r') as f: + with open('pokemon_home_list.csv', 'r', encoding='utf-8') as f: reader = csv.reader(f) next(reader) # Skip header row if it exists for row in reader: @@ -275,7 +278,7 @@ def load_pokemon_data(conn): def load_encounter_data(conn): cursor = conn.cursor() - with open('pokemon_earliest_games.csv', 'r') as f: + with open('pokemon_earliest_games.csv', 'r', encoding='utf-8') as f: reader = csv.DictReader(f) for row in reader: national_dex_number = int(row['number']) diff --git a/Utilities/DetermineOriginGame.py b/Utilities/DetermineOriginGame.py index d34c61f..bc69909 100644 --- a/Utilities/DetermineOriginGame.py +++ b/Utilities/DetermineOriginGame.py @@ -335,12 +335,6 @@ def extract_stage_form(td: Tag) -> Optional[str]: return stage_tag.get_text(strip=True) return None -def extract_is_baby(td: Tag) -> bool: - stage_tag = td.find('table').find('small') - if stage_tag: - return 'Baby' in stage_tag.get_text(strip=True) - return False - def read_pokemon_list(filename, limit=50): pokemon_list = [] with open(filename, 'r', newline='', encoding='utf-8') as csvfile: @@ -360,132 +354,6 @@ def read_pokemon_list(filename, limit=50): return pokemon_list -def sanitize_name_and_form(name, form): - adjusted_form = None - if form: - adjusted_form = form.lower() - #Some stupid special cases - if name.lower() == 'tauros': - if adjusted_form == 'paldean form': - adjusted_form = 'paldea combat breed' - elif 'blaze' in adjusted_form: - adjusted_form = 'paldea blaze breed' - elif 'aqua' in adjusted_form: - adjusted_form = 'paldea aqua breed' - - replacements = {'forme': '', - 'form': '', - 'alolan': 'alola', - 'galarian': 'galar', - 'hisuian': 'hisui', - 'paldean': 'paldea', - 'size': '', - '10%': '10 power construct', - 'hoopa': '', - 'style': '', - 'core': '', - 'color': '', - 'blood moon': 'bloodmoon'}; - for old, new in replacements.items(): - adjusted_form = adjusted_form.replace(old, new).strip() - - missing_forms = ['burmy', - 'shellos', - 'gastrodon', - 'wormadam', - 'unown', - "deerling", - "sawsbuck", - "vivillon", - "flabébé", - "floette", - "florges", - "furfrou", - "sinistea", - "polteageist", - "alcremie", - "poltchageist", - "sinistcha"] - - if name.lower() in missing_forms: - adjusted_form = None - - if name.lower() == 'wormadam': - adjusted_form = adjusted_form.replace('cloak', '').strip() - if name.lower() == 'rotom': - adjusted_form = adjusted_form.replace('rotom', '').strip() - if name.lower() == 'darmanitan': - adjusted_form = adjusted_form + ' standard' - - else: - default_forms = {'deoxys': 'normal', - 'wormadam': 'plant', - 'giratina': 'origin', - 'tornadus': 'incarnate', - 'shaymin': 'land', - 'basculin': 'red-striped', - 'darmanitan': 'standard', - 'thundurus': 'incarnate', - 'landorus': 'incarnate', - 'enamorus': 'incarnate', - 'keldeo': 'ordinary', - 'meloetta': 'aria', - 'meowstic': 'male', - 'aegislash': 'shield', - 'pumpkaboo': 'average', - 'gourgeist': 'average', - 'minior': 'red-meteor', - 'zygarde': '50 power construct', - 'oricorio': 'baile', - 'lycanroc': 'midday', - 'wishiwashi': 'solo', - 'mimikyu': 'disguised', - 'cramorant': 'gulping', - 'toxtricity': 'low-key', - 'eiscue': 'ice', - 'indeedee': 'male', - 'urshifu': 'single-strike', - 'morpeko': 'full belly', - 'oinkologne': 'male', - 'maushold': 'family of three', - 'squawkabilly': 'green plumage', - 'palafin': 'zero', - 'tatsugiri': 'curly', - 'dudunsparce': 'two segment', - 'basculegion': 'male'} - - if name.lower() in default_forms: - adjusted_form = default_forms[name.lower()] - - if adjusted_form: - api_name = f"{name.lower()}-{adjusted_form}" - else: - api_name = name.lower() - - api_name = api_name.replace(' ', '-').replace("'", "").replace(".", "").replace('é', 'e').replace(':', '') - - #more special cases - if api_name == 'oinkologne-male': - api_name = '916' - - return api_name - -def get_pokemon_data(pokemon_name, form, cache): - cache_key = f"pokemon_{pokemon_name}_{form}" if form else f"pokemon_{pokemon_name}" - if cache_key in cache: - return cache[cache_key] - - api_name = sanitize_name_and_form(pokemon_name, form) - - url = f"https://pokeapi.co/api/v2/pokemon/{api_name}" - print(f"Fetching Pokémon data for {pokemon_name}: {url}") - response = requests.get(url) - if response.status_code == 200: - data = response.json() - update_cache(cache_key, data) - return data - return None - def get_pokemon_data_bulbapedia(pokemon_name, cache): cache_key = f"pokemon_{pokemon_name}_bulbapedia" if cache_key in cache: @@ -498,23 +366,6 @@ def get_pokemon_data_bulbapedia(pokemon_name, cache): data = response.text update_cache(cache_key, data) return data - -def get_pokemon_encounter_data(pokemon_name, form, cache): - cache_key = f"pokemon_encounter_{pokemon_name}_{form}" if form else f"pokemon_encounter_{pokemon_name}" - if cache_key in cache: - return cache[cache_key] - - api_name = sanitize_name_and_form(pokemon_name, form) - - url = f"https://pokeapi.co/api/v2/pokemon/{api_name}/encounters" - print(f"Fetching encounter data for {pokemon_name}: {url}") - response = requests.get(url) - if response.status_code == 200: - data = response.json() - update_cache(cache_key, data) - return data - else: - return None def split_td_contents(td): groups = [] @@ -634,7 +485,6 @@ def parse_eevee_evolution_chain(table): return [eevee_stage] - def get_locations_from_bulbapedia(pokemon_name, form, cache): page_data = get_pokemon_data_bulbapedia(pokemon_name, cache) if not page_data: @@ -738,7 +588,7 @@ def get_locations_from_bulbapedia(pokemon_name, form, cache): sub_form_match = False if not sub_form else fuzz.partial_ratio(form.lower(), sub_form.lower()) >= 80 if main_form_match or sub_form_match: - locations = raw_location.get_text().split(',') + locations = raw_location.get_text().replace('and', ',').replace('#', '').split(',') for location in locations: if raw_game not in game_locations: game_locations[raw_game] = [] @@ -760,46 +610,6 @@ def get_locations_from_bulbapedia(pokemon_name, form, cache): return game_locations -def get_earliest_game(encounter_data, pokemon_name, form): - if not encounter_data: - return "Unknown", "Unknown" - - non_catchable_methods = ["trade", "event", "global link", "poké transfer", "time capsule", "unobtainable", "pokémon home"] - - game_methods = {} - for game, locations in encounter_data.items(): - for location in locations: - method = "Catchable" - - for non_catchable in non_catchable_methods: - if non_catchable in location.lower(): - method = None - break - - if method is None: - continue - - if "first partner" in location.lower(): - method = "Starter" - elif "received" in location.lower(): - method = "Gift" - elif "evolve" in location.lower(): - method = "Evolve" - else: - method = "Catchable" - if method: - if game not in game_methods: - game_methods[game.lower()] = method - else: - if method == "Catchable": - game_methods[game.lower()] = method - - for game in all_games: - if game.lower() in game_methods: - return game, game_methods[game.lower()] - - return "Unknown", "Unknown" - def handle_unown(pokemon, encounter_data): if not pokemon.name == "Unown": return @@ -831,17 +641,6 @@ def handle_unown(pokemon, encounter_data): else: pokemon.encounter_information = one_form_unown.encounter_information -def handle_deoxys(pokemon, encounter_data): - if not pokemon.name == "Deoxys": - return - - normal_form_deoxys = find_pokemon(pokemon.name, None) - if not normal_form_deoxys: - return - - if pokemon.form: - pokemon.encounter_information = normal_form_deoxys.encounter_information - list_of_shifting_form_pokemon = [ "Deoxys", "Burmy", @@ -903,7 +702,7 @@ def get_bad_tea_form(pokemon): else: return pokemon.form -def determine_earliest_games(pokemon_list, cache): +def determine_earliest_games(cache): for pokemon in big_pokemon_list: print(f"Processing {pokemon}") form_to_find = pokemon.form @@ -928,50 +727,6 @@ def determine_earliest_games(pokemon_list, cache): pokemon.determine_earliest_game() print(f"Processed {pokemon}: {pokemon.earliest_game.game} ({pokemon.earliest_game.method})") - #for pokemon in pokemon_list: - # print(f"Processing {pokemon['name']} (#{pokemon['number']})") - # encounter_data = get_locations_from_bulbapedia(pokemon['base_name'], pokemon['form'], cache) - # pokemon['earliest_game'], pokemon['obtain_method'] = get_earliest_game(encounter_data, pokemon['base_name'], pokemon['form']) - # print(f"Processed {pokemon['name']} (#{pokemon['number']}): {pokemon['earliest_game']} ({pokemon['obtain_method']})") - # #pokemon_data = get_pokemon_data(pokemon['base_name'], pokemon['form'], cache) - # #encounter_data = get_pokemon_encounter_data(pokemon['base_name'], pokemon['form'], cache) - # #pokemon['earliest_game'], pokemon['obtain_method'] = get_earliest_game(encounter_data) - # #print(f"Processed {pokemon['name']} (#{pokemon['number']}): {pokemon['earliest_game']} ({pokemon['obtain_method']})") - return pokemon_list - -def get_species_data(pokemon_name, cache): - cache_key = f"species_{pokemon_name}" - if cache_key in cache: - return cache[cache_key] - - api_name = sanitize_name_and_form(pokemon_name, None) - - url = f"https://pokeapi.co/api/v2/pokemon-species/{api_name}/" - print(f"Fetching species data for {pokemon_name}: {url}") - response = requests.get(url) - if response.status_code == 200: - data = response.json() - update_cache(cache_key, data) - return data - return None - -def get_evolution_chain(pokemon_name, cache): - species_data = get_species_data(pokemon_name, cache) - if not species_data: - return None - - cache_key = f"evolution_{species_data['evolution_chain']['url']}" - if cache_key in cache: - return cache[cache_key] - - evolution_response = requests.get(species_data['evolution_chain']['url']) - if evolution_response.status_code == 200: - evolution_data = evolution_response.json() - update_cache(cache_key, evolution_data) - - return evolution_data - return None - def get_base_form(evolution_chain:List[EvolutionStage]): if not evolution_chain: return None @@ -984,64 +739,14 @@ def get_base_form(evolution_chain:List[EvolutionStage]): return None - #current = evolution_chain['chain'] - #while current: - # species_name = current['species']['name'] - # species_data = get_species_data(species_name, cache) - # - # if species_data and not species_data.get('is_baby', False): - # return species_name - # - # if not current['evolves_to']: - # return species_name - # - # current = current['evolves_to'][0] - - return None - -def adjust_for_evolution(pokemon_list, cache): +def adjust_for_evolution(cache): for pokemon in big_pokemon_list: evolution_chain = get_evolution_data_from_bulbapedia(pokemon.name, pokemon.form, cache) pokemon.add_evolution_chain(evolution_chain) game, method = pokemon.get_earliest_game_and_method() print(f"Adjusted {pokemon}: {game} ({method})") - return [] - pokemon_dict = {f"{pokemon['base_name']}_{pokemon['form']}".lower(): pokemon for pokemon in pokemon_list} - - for pokemon in pokemon_list: - evolution_chain = get_evolution_data_from_bulbapedia(pokemon['base_name'], pokemon['form'], cache) - if evolution_chain: - if evolution_chain[0].is_baby: - pokemon['obtain_method'] = 'Breed' - else: - base_form = get_base_form(evolution_chain) - base_key = f"{base_form}_{pokemon['form']}".lower() - if base_key in pokemon_dict: - base_pokemon = pokemon_dict[base_key] - if all_games.index(base_pokemon['earliest_game']) <= all_games.index(pokemon['earliest_game']) and base_pokemon['number'] != pokemon['number']: - pokemon['earliest_game'] = base_pokemon['earliest_game'] - pokemon['obtain_method'] = 'Evolve' - #species_data = get_species_data(pokemon['base_name'], cache) - #evolution_chain = get_evolution_chain(pokemon['base_name'], cache) - #base_form = get_base_form(evolution_chain, cache) - - # Check if the Pokémon is a baby - #if species_data and species_data.get('is_baby', False): - # pokemon['obtain_method'] = 'Breed' - #elif base_form: - # base_key = f"{base_form}_{pokemon['form']}".lower() - # if base_key in pokemon_dict: - # base_pokemon = pokemon_dict[base_key] - # if all_games.index(base_pokemon['earliest_game']) <= all_games.index(pokemon['earliest_game']) and base_pokemon['number'] != pokemon['number']: - # pokemon['earliest_game'] = base_pokemon['earliest_game'] - # pokemon['obtain_method'] = 'Evolve' - - print(f"Adjusted {pokemon['name']} (#{pokemon['number']}): {pokemon['earliest_game']} ({pokemon['obtain_method']})") - - return pokemon_list - -def save_to_csv(pokemon_list, filename='pokemon_earliest_games.csv'): +def save_to_csv(filename='pokemon_earliest_games.csv'): with open(filename, 'w', newline='', encoding='utf-8') as csvfile: fieldnames = ['number', 'name', 'earliest_game', 'obtain_method', 'encounter_locations'] writer = csv.DictWriter(csvfile, fieldnames=fieldnames) @@ -1060,128 +765,11 @@ def save_to_csv(pokemon_list, filename='pokemon_earliest_games.csv'): 'encounter_locations': ' | '.join((str(item) for item in encounter_locations)) }) -def parse_encounter_locations(encounter_data, game): - locations = [] - for location_area in encounter_data: - for version_detail in location_area['version_details']: - if version_detail['version']['name'] == game.lower(): - location_name = location_area['location_area']['name'] - for encounter_detail in version_detail['encounter_details']: - method = encounter_detail['method']['name'] - condition = encounter_detail.get('condition', 'Any') - time = ', '.join(encounter_detail.get('time', ['Any'])) - - encounter_info = f"{location_name} ({method}" - if condition != 'Any': - encounter_info += f", {condition}" - if time != 'Any': - encounter_info += f", {time}" - encounter_info += ")" - - if encounter_info not in locations: - locations.append(encounter_info) - return locations - -def add_encounter_locations(pokemon_list, cache): - for pokemon in pokemon_list: - if pokemon['obtain_method'] == 'Catchable': - encounter_data = get_pokemon_encounter_data(pokemon['base_name'], pokemon['form'], cache) - locations = parse_encounter_locations(encounter_data, pokemon['earliest_game']) - pokemon['encounter_locations'] = ' | '.join(locations) if locations else 'Unknown' - else: - pokemon['encounter_locations'] = 'N/A' - print(f"Added encounter locations for {pokemon['name']} (#{pokemon['number']}) in {pokemon['earliest_game']}") - return pokemon_list - -def get_marriland_page(pokemon_name, cache): - url_name = pokemon_name.lower().replace(' ', '-').replace('(', '').replace(')', '') - cache_key = f"marriland_{url_name}" - if cache_key in cache: - return cache[cache_key] - - url = f"https://marriland.com/pokedex/{url_name}/" - - try: - response = requests.get(url) - response.raise_for_status() # Raise an exception for bad status codes - data = response.text - update_cache(cache_key, data) - return data - except requests.RequestException as e: - print(f"Error accessing the page for {pokemon_name}: {e}") - return None - -def is_event_pokemon(pokemon_name, cache): - page_data = get_marriland_page(pokemon_name, cache) - if not page_data: - return False - - soup = BeautifulSoup(page_data, 'html.parser') - - # Find the "Where to Find" section - location_section = soup.find('div', id='locations') - - if not location_section: - print(f"Could not find 'Where to Find' section for {pokemon_name}") - return None - - special_section = soup.find('div', class_='location-special') - location_tables = soup.find_all('table', class_='location-table') - - event_only = "Only available from events or promotions.".lower() - if len(location_tables) == 0 and special_section and event_only in special_section.get_text(strip=True).lower(): - return True - - return False - -def check_alternative_sources(pokemon, cache): - # This function will check alternative sources for Pokémon with "Unknown" encounter types - species_data = get_species_data(pokemon['base_name'], cache) - - if species_data: - # Check if it's a mythical Pokémon - if species_data.get('is_mythical', False): - return "Event", "Event" - - # Check if it's a legendary Pokémon - if species_data.get('is_legendary', False): - return pokemon['earliest_game'], "Legendary" - - event_status = is_event_pokemon(pokemon['name'], cache) - if event_status: - return "Event", "Event" - - #bulb_locations = get_locations_from_bulbapedia(pokemon['base_name'], pokemon['form'], cache) - #if bulb_locations: - # return bulb_locations[0], "Bulbapedia" - - # Check generation introduced - #generation = species_data.get('generation', {}).get('name', '') - #if generation: - # gen_number = int(generation.split('-')[1]) - # for game in all_games: - # if game != "Unknown" and get_generation(game) == gen_number: - # return game, "First appearance" - - return "Unknown", "Unknown" - -def handle_unknown_encounters(pokemon_list, cache): +def handle_unknown_encounters(cache): for pokemon in big_pokemon_list: if pokemon.earliest_game == None or pokemon.earliest_game.method == None: print(f"Checking alternative sources for {pokemon.name}") - return - - for pokemon in pokemon_list: - if pokemon['earliest_game'] == "Unknown" or pokemon['obtain_method'] == "Unknown": - new_game, new_method = check_alternative_sources(pokemon, cache) - if new_game != "Unknown": - pokemon['earliest_game'] = new_game - pokemon['obtain_method'] = new_method - pokemon['encounter_locations'] = 'N/A' - print(f"Checked alternative sources for {pokemon['name']} (#{pokemon['number']}): {pokemon['earliest_game']} ({pokemon['obtain_method']})") - return pokemon_list - # Update the main function if __name__ == "__main__": get_cached_data() @@ -1190,11 +778,10 @@ if __name__ == "__main__": pokemon_index = create_pokemon_index(big_pokemon_list) - pokemon_list_with_games = determine_earliest_games(pokemon_list, cache) - pokemon_list_adjusted = adjust_for_evolution(pokemon_list_with_games, cache) - #pokemon_list_with_locations = add_encounter_locations(pokemon_list_adjusted, cache) - pokemon_list_final = handle_unknown_encounters(pokemon_list_adjusted, cache) - save_to_csv(pokemon_list_final) + determine_earliest_games(cache) + adjust_for_evolution(cache) + handle_unknown_encounters(cache) + save_to_csv() save_cached_data() # Save any remaining new entries conn.close() # Close the database connection diff --git a/index.html b/index.html deleted file mode 100644 index c8d3d51..0000000 --- a/index.html +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - OriginDex - Pokémon Tracker - - - -

OriginDex - Pokémon Tracker

- - - - - - - - - - {% for pokemon in pokemon_list %} - - - - - - {% endfor %} - -
PokémonEarliest GameCaught
{{ pokemon.Pokemon }}{{ earliest_games.get(pokemon.Pokemon, 'Unknown') }}
- - \ No newline at end of file diff --git a/static/images/marks/Arceus_mark_HOME.png b/static/images/marks/Arceus_mark_HOME.png new file mode 100644 index 0000000..6c58473 Binary files /dev/null and b/static/images/marks/Arceus_mark_HOME.png differ diff --git a/static/images/marks/BDSP_icon_HOME.png b/static/images/marks/BDSP_icon_HOME.png new file mode 100644 index 0000000..48d78e3 Binary files /dev/null and b/static/images/marks/BDSP_icon_HOME.png differ diff --git a/static/images/marks/Black_clover_HOME.png b/static/images/marks/Black_clover_HOME.png new file mode 100644 index 0000000..ca66019 Binary files /dev/null and b/static/images/marks/Black_clover_HOME.png differ diff --git a/static/images/marks/Blue_pentagon_HOME.png b/static/images/marks/Blue_pentagon_HOME.png new file mode 100644 index 0000000..7ba2538 Binary files /dev/null and b/static/images/marks/Blue_pentagon_HOME.png differ diff --git a/static/images/marks/GB_icon_HOME.png b/static/images/marks/GB_icon_HOME.png new file mode 100644 index 0000000..45be39e Binary files /dev/null and b/static/images/marks/GB_icon_HOME.png differ diff --git a/static/images/marks/GO_icon_HOME.png b/static/images/marks/GO_icon_HOME.png new file mode 100644 index 0000000..201171b Binary files /dev/null and b/static/images/marks/GO_icon_HOME.png differ diff --git a/static/images/marks/Galar_symbol_HOME.png b/static/images/marks/Galar_symbol_HOME.png new file mode 100644 index 0000000..4e6c137 Binary files /dev/null and b/static/images/marks/Galar_symbol_HOME.png differ diff --git a/static/images/marks/Let's_Go_icon_HOME.png b/static/images/marks/Let's_Go_icon_HOME.png new file mode 100644 index 0000000..5980285 Binary files /dev/null and b/static/images/marks/Let's_Go_icon_HOME.png differ diff --git a/static/images/marks/Paldea_icon_HOME.png b/static/images/marks/Paldea_icon_HOME.png new file mode 100644 index 0000000..2a0abd0 Binary files /dev/null and b/static/images/marks/Paldea_icon_HOME.png differ diff --git a/static/images/pokemon/0001_Bulbasaur.png b/static/images/pokemon/0001_Bulbasaur.png new file mode 100644 index 0000000..569ffa5 Binary files /dev/null and b/static/images/pokemon/0001_Bulbasaur.png differ diff --git a/static/images/pokemon/0002_Ivysaur.png b/static/images/pokemon/0002_Ivysaur.png new file mode 100644 index 0000000..4306351 Binary files /dev/null and b/static/images/pokemon/0002_Ivysaur.png differ diff --git a/static/images/pokemon/0003_Venusaur.png b/static/images/pokemon/0003_Venusaur.png new file mode 100644 index 0000000..f41cfc6 Binary files /dev/null and b/static/images/pokemon/0003_Venusaur.png differ diff --git a/static/images/pokemon/0004_Charmander.png b/static/images/pokemon/0004_Charmander.png new file mode 100644 index 0000000..f8f8a05 Binary files /dev/null and b/static/images/pokemon/0004_Charmander.png differ diff --git a/static/images/pokemon/0005_Charmeleon.png b/static/images/pokemon/0005_Charmeleon.png new file mode 100644 index 0000000..dee7afa Binary files /dev/null and b/static/images/pokemon/0005_Charmeleon.png differ diff --git a/static/images/pokemon/0006_Charizard.png b/static/images/pokemon/0006_Charizard.png new file mode 100644 index 0000000..bbf0ce5 Binary files /dev/null and b/static/images/pokemon/0006_Charizard.png differ diff --git a/static/images/pokemon/0007_Squirtle.png b/static/images/pokemon/0007_Squirtle.png new file mode 100644 index 0000000..a7de98d Binary files /dev/null and b/static/images/pokemon/0007_Squirtle.png differ diff --git a/static/images/pokemon/0008_Wartortle.png b/static/images/pokemon/0008_Wartortle.png new file mode 100644 index 0000000..f06a5ca Binary files /dev/null and b/static/images/pokemon/0008_Wartortle.png differ diff --git a/static/images/pokemon/0009_Blastoise.png b/static/images/pokemon/0009_Blastoise.png new file mode 100644 index 0000000..3938e85 Binary files /dev/null and b/static/images/pokemon/0009_Blastoise.png differ diff --git a/static/images/pokemon/0010_Caterpie.png b/static/images/pokemon/0010_Caterpie.png new file mode 100644 index 0000000..6becb3f Binary files /dev/null and b/static/images/pokemon/0010_Caterpie.png differ diff --git a/static/images/pokemon/0011_Metapod.png b/static/images/pokemon/0011_Metapod.png new file mode 100644 index 0000000..cd83aa5 Binary files /dev/null and b/static/images/pokemon/0011_Metapod.png differ diff --git a/static/images/pokemon/0012_Butterfree.png b/static/images/pokemon/0012_Butterfree.png new file mode 100644 index 0000000..c80baed Binary files /dev/null and b/static/images/pokemon/0012_Butterfree.png differ diff --git a/static/images/pokemon/0013_Weedle.png b/static/images/pokemon/0013_Weedle.png new file mode 100644 index 0000000..ac9fc51 Binary files /dev/null and b/static/images/pokemon/0013_Weedle.png differ diff --git a/static/images/pokemon/0014_Kakuna.png b/static/images/pokemon/0014_Kakuna.png new file mode 100644 index 0000000..9f9b13a Binary files /dev/null and b/static/images/pokemon/0014_Kakuna.png differ diff --git a/static/images/pokemon/0015_Beedrill.png b/static/images/pokemon/0015_Beedrill.png new file mode 100644 index 0000000..32b1a1e Binary files /dev/null and b/static/images/pokemon/0015_Beedrill.png differ diff --git a/static/images/pokemon/0016_Pidgey.png b/static/images/pokemon/0016_Pidgey.png new file mode 100644 index 0000000..d196814 Binary files /dev/null and b/static/images/pokemon/0016_Pidgey.png differ diff --git a/static/images/pokemon/0017_Pidgeotto.png b/static/images/pokemon/0017_Pidgeotto.png new file mode 100644 index 0000000..2b83c36 Binary files /dev/null and b/static/images/pokemon/0017_Pidgeotto.png differ diff --git a/static/images/pokemon/0018_Pidgeot.png b/static/images/pokemon/0018_Pidgeot.png new file mode 100644 index 0000000..6868368 Binary files /dev/null and b/static/images/pokemon/0018_Pidgeot.png differ diff --git a/static/images/pokemon/0019_Rattata.png b/static/images/pokemon/0019_Rattata.png new file mode 100644 index 0000000..38e8032 Binary files /dev/null and b/static/images/pokemon/0019_Rattata.png differ diff --git a/static/images/pokemon/0019_Rattata_(Alolan_Form).png b/static/images/pokemon/0019_Rattata_(Alolan_Form).png new file mode 100644 index 0000000..4e42a4c Binary files /dev/null and b/static/images/pokemon/0019_Rattata_(Alolan_Form).png differ diff --git a/static/images/pokemon/0020_Raticate.png b/static/images/pokemon/0020_Raticate.png new file mode 100644 index 0000000..36bd14a Binary files /dev/null and b/static/images/pokemon/0020_Raticate.png differ diff --git a/static/images/pokemon/0020_Raticate_(Alolan_Form).png b/static/images/pokemon/0020_Raticate_(Alolan_Form).png new file mode 100644 index 0000000..eb9f891 Binary files /dev/null and b/static/images/pokemon/0020_Raticate_(Alolan_Form).png differ diff --git a/static/images/pokemon/0021_Spearow.png b/static/images/pokemon/0021_Spearow.png new file mode 100644 index 0000000..a6c7ded Binary files /dev/null and b/static/images/pokemon/0021_Spearow.png differ diff --git a/static/images/pokemon/0022_Fearow.png b/static/images/pokemon/0022_Fearow.png new file mode 100644 index 0000000..2519993 Binary files /dev/null and b/static/images/pokemon/0022_Fearow.png differ diff --git a/static/images/pokemon/0023_Ekans.png b/static/images/pokemon/0023_Ekans.png new file mode 100644 index 0000000..0d6e78a Binary files /dev/null and b/static/images/pokemon/0023_Ekans.png differ diff --git a/static/images/pokemon/0024_Arbok.png b/static/images/pokemon/0024_Arbok.png new file mode 100644 index 0000000..228312d Binary files /dev/null and b/static/images/pokemon/0024_Arbok.png differ diff --git a/static/images/pokemon/0025_Pikachu.png b/static/images/pokemon/0025_Pikachu.png new file mode 100644 index 0000000..4aa35ad Binary files /dev/null and b/static/images/pokemon/0025_Pikachu.png differ diff --git a/static/images/pokemon/0025_Pikachu_(Alola_Cap).png b/static/images/pokemon/0025_Pikachu_(Alola_Cap).png new file mode 100644 index 0000000..222d8c4 Binary files /dev/null and b/static/images/pokemon/0025_Pikachu_(Alola_Cap).png differ diff --git a/static/images/pokemon/0025_Pikachu_(Hoenn_Cap).png b/static/images/pokemon/0025_Pikachu_(Hoenn_Cap).png new file mode 100644 index 0000000..ae6ad7d Binary files /dev/null and b/static/images/pokemon/0025_Pikachu_(Hoenn_Cap).png differ diff --git a/static/images/pokemon/0025_Pikachu_(Kalos_Cap).png b/static/images/pokemon/0025_Pikachu_(Kalos_Cap).png new file mode 100644 index 0000000..e0f9743 Binary files /dev/null and b/static/images/pokemon/0025_Pikachu_(Kalos_Cap).png differ diff --git a/static/images/pokemon/0025_Pikachu_(Original_Cap).png b/static/images/pokemon/0025_Pikachu_(Original_Cap).png new file mode 100644 index 0000000..ef311a9 Binary files /dev/null and b/static/images/pokemon/0025_Pikachu_(Original_Cap).png differ diff --git a/static/images/pokemon/0025_Pikachu_(Partner_Cap).png b/static/images/pokemon/0025_Pikachu_(Partner_Cap).png new file mode 100644 index 0000000..6a03662 Binary files /dev/null and b/static/images/pokemon/0025_Pikachu_(Partner_Cap).png differ diff --git a/static/images/pokemon/0025_Pikachu_(Sinnoh_Cap).png b/static/images/pokemon/0025_Pikachu_(Sinnoh_Cap).png new file mode 100644 index 0000000..fa5a3ea Binary files /dev/null and b/static/images/pokemon/0025_Pikachu_(Sinnoh_Cap).png differ diff --git a/static/images/pokemon/0025_Pikachu_(Unova_Cap).png b/static/images/pokemon/0025_Pikachu_(Unova_Cap).png new file mode 100644 index 0000000..28175a4 Binary files /dev/null and b/static/images/pokemon/0025_Pikachu_(Unova_Cap).png differ diff --git a/static/images/pokemon/0025_Pikachu_(World_Cap).png b/static/images/pokemon/0025_Pikachu_(World_Cap).png new file mode 100644 index 0000000..97fb222 Binary files /dev/null and b/static/images/pokemon/0025_Pikachu_(World_Cap).png differ diff --git a/static/images/pokemon/0026_Raichu.png b/static/images/pokemon/0026_Raichu.png new file mode 100644 index 0000000..3d771ce Binary files /dev/null and b/static/images/pokemon/0026_Raichu.png differ diff --git a/static/images/pokemon/0026_Raichu_(Alolan_Form).png b/static/images/pokemon/0026_Raichu_(Alolan_Form).png new file mode 100644 index 0000000..33a4e50 Binary files /dev/null and b/static/images/pokemon/0026_Raichu_(Alolan_Form).png differ diff --git a/static/images/pokemon/0027_Sandshrew.png b/static/images/pokemon/0027_Sandshrew.png new file mode 100644 index 0000000..95ccfbe Binary files /dev/null and b/static/images/pokemon/0027_Sandshrew.png differ diff --git a/static/images/pokemon/0027_Sandshrew_(Alolan_Form).png b/static/images/pokemon/0027_Sandshrew_(Alolan_Form).png new file mode 100644 index 0000000..396dbef Binary files /dev/null and b/static/images/pokemon/0027_Sandshrew_(Alolan_Form).png differ diff --git a/static/images/pokemon/0028_Sandslash.png b/static/images/pokemon/0028_Sandslash.png new file mode 100644 index 0000000..ac28df8 Binary files /dev/null and b/static/images/pokemon/0028_Sandslash.png differ diff --git a/static/images/pokemon/0028_Sandslash_(Alolan_Form).png b/static/images/pokemon/0028_Sandslash_(Alolan_Form).png new file mode 100644 index 0000000..cb5a555 Binary files /dev/null and b/static/images/pokemon/0028_Sandslash_(Alolan_Form).png differ diff --git a/static/images/pokemon/0029_Nidoran♀.png b/static/images/pokemon/0029_Nidoran♀.png new file mode 100644 index 0000000..264e290 Binary files /dev/null and b/static/images/pokemon/0029_Nidoran♀.png differ diff --git a/static/images/pokemon/0030_Nidorina.png b/static/images/pokemon/0030_Nidorina.png new file mode 100644 index 0000000..f23654d Binary files /dev/null and b/static/images/pokemon/0030_Nidorina.png differ diff --git a/static/images/pokemon/0031_Nidoqueen.png b/static/images/pokemon/0031_Nidoqueen.png new file mode 100644 index 0000000..47cb45b Binary files /dev/null and b/static/images/pokemon/0031_Nidoqueen.png differ diff --git a/static/images/pokemon/0032_Nidoran♂.png b/static/images/pokemon/0032_Nidoran♂.png new file mode 100644 index 0000000..6e565c8 Binary files /dev/null and b/static/images/pokemon/0032_Nidoran♂.png differ diff --git a/static/images/pokemon/0033_Nidorino.png b/static/images/pokemon/0033_Nidorino.png new file mode 100644 index 0000000..fa11162 Binary files /dev/null and b/static/images/pokemon/0033_Nidorino.png differ diff --git a/static/images/pokemon/0034_Nidoking.png b/static/images/pokemon/0034_Nidoking.png new file mode 100644 index 0000000..026b215 Binary files /dev/null and b/static/images/pokemon/0034_Nidoking.png differ diff --git a/static/images/pokemon/0035_Clefairy.png b/static/images/pokemon/0035_Clefairy.png new file mode 100644 index 0000000..d8d8d37 Binary files /dev/null and b/static/images/pokemon/0035_Clefairy.png differ diff --git a/static/images/pokemon/0036_Clefable.png b/static/images/pokemon/0036_Clefable.png new file mode 100644 index 0000000..38836f6 Binary files /dev/null and b/static/images/pokemon/0036_Clefable.png differ diff --git a/static/images/pokemon/0037_Vulpix.png b/static/images/pokemon/0037_Vulpix.png new file mode 100644 index 0000000..8325ca8 Binary files /dev/null and b/static/images/pokemon/0037_Vulpix.png differ diff --git a/static/images/pokemon/0037_Vulpix_(Alolan_Form).png b/static/images/pokemon/0037_Vulpix_(Alolan_Form).png new file mode 100644 index 0000000..8512c66 Binary files /dev/null and b/static/images/pokemon/0037_Vulpix_(Alolan_Form).png differ diff --git a/static/images/pokemon/0038_Ninetales.png b/static/images/pokemon/0038_Ninetales.png new file mode 100644 index 0000000..296be4f Binary files /dev/null and b/static/images/pokemon/0038_Ninetales.png differ diff --git a/static/images/pokemon/0038_Ninetales_(Alolan_Form).png b/static/images/pokemon/0038_Ninetales_(Alolan_Form).png new file mode 100644 index 0000000..8320d8f Binary files /dev/null and b/static/images/pokemon/0038_Ninetales_(Alolan_Form).png differ diff --git a/static/images/pokemon/0039_Jigglypuff.png b/static/images/pokemon/0039_Jigglypuff.png new file mode 100644 index 0000000..5d7a3ae Binary files /dev/null and b/static/images/pokemon/0039_Jigglypuff.png differ diff --git a/static/images/pokemon/0040_Wigglytuff.png b/static/images/pokemon/0040_Wigglytuff.png new file mode 100644 index 0000000..5861a93 Binary files /dev/null and b/static/images/pokemon/0040_Wigglytuff.png differ diff --git a/static/images/pokemon/0041_Zubat.png b/static/images/pokemon/0041_Zubat.png new file mode 100644 index 0000000..6a1bd53 Binary files /dev/null and b/static/images/pokemon/0041_Zubat.png differ diff --git a/static/images/pokemon/0042_Golbat.png b/static/images/pokemon/0042_Golbat.png new file mode 100644 index 0000000..449af9b Binary files /dev/null and b/static/images/pokemon/0042_Golbat.png differ diff --git a/static/images/pokemon/0043_Oddish.png b/static/images/pokemon/0043_Oddish.png new file mode 100644 index 0000000..452ebb5 Binary files /dev/null and b/static/images/pokemon/0043_Oddish.png differ diff --git a/static/images/pokemon/0044_Gloom.png b/static/images/pokemon/0044_Gloom.png new file mode 100644 index 0000000..fbb1a4e Binary files /dev/null and b/static/images/pokemon/0044_Gloom.png differ diff --git a/static/images/pokemon/0045_Vileplume.png b/static/images/pokemon/0045_Vileplume.png new file mode 100644 index 0000000..c6188af Binary files /dev/null and b/static/images/pokemon/0045_Vileplume.png differ diff --git a/static/images/pokemon/0046_Paras.png b/static/images/pokemon/0046_Paras.png new file mode 100644 index 0000000..81ecfc7 Binary files /dev/null and b/static/images/pokemon/0046_Paras.png differ diff --git a/static/images/pokemon/0047_Parasect.png b/static/images/pokemon/0047_Parasect.png new file mode 100644 index 0000000..1171307 Binary files /dev/null and b/static/images/pokemon/0047_Parasect.png differ diff --git a/static/images/pokemon/0048_Venonat.png b/static/images/pokemon/0048_Venonat.png new file mode 100644 index 0000000..94d63ed Binary files /dev/null and b/static/images/pokemon/0048_Venonat.png differ diff --git a/static/images/pokemon/0049_Venomoth.png b/static/images/pokemon/0049_Venomoth.png new file mode 100644 index 0000000..51f1f5b Binary files /dev/null and b/static/images/pokemon/0049_Venomoth.png differ diff --git a/static/images/pokemon/0050_Diglett.png b/static/images/pokemon/0050_Diglett.png new file mode 100644 index 0000000..2d9824d Binary files /dev/null and b/static/images/pokemon/0050_Diglett.png differ diff --git a/static/images/pokemon/0050_Diglett_(Alolan_Form).png b/static/images/pokemon/0050_Diglett_(Alolan_Form).png new file mode 100644 index 0000000..4179aae Binary files /dev/null and b/static/images/pokemon/0050_Diglett_(Alolan_Form).png differ diff --git a/static/images/pokemon/0051_Dugtrio.png b/static/images/pokemon/0051_Dugtrio.png new file mode 100644 index 0000000..3763975 Binary files /dev/null and b/static/images/pokemon/0051_Dugtrio.png differ diff --git a/static/images/pokemon/0051_Dugtrio_(Alolan_Form).png b/static/images/pokemon/0051_Dugtrio_(Alolan_Form).png new file mode 100644 index 0000000..01a0b2e Binary files /dev/null and b/static/images/pokemon/0051_Dugtrio_(Alolan_Form).png differ diff --git a/static/images/pokemon/0052_Meowth.png b/static/images/pokemon/0052_Meowth.png new file mode 100644 index 0000000..f69e3f5 Binary files /dev/null and b/static/images/pokemon/0052_Meowth.png differ diff --git a/static/images/pokemon/0052_Meowth_(Alolan_Form).png b/static/images/pokemon/0052_Meowth_(Alolan_Form).png new file mode 100644 index 0000000..a5286a3 Binary files /dev/null and b/static/images/pokemon/0052_Meowth_(Alolan_Form).png differ diff --git a/static/images/pokemon/0052_Meowth_(Galarian_Form).png b/static/images/pokemon/0052_Meowth_(Galarian_Form).png new file mode 100644 index 0000000..b92cdcf Binary files /dev/null and b/static/images/pokemon/0052_Meowth_(Galarian_Form).png differ diff --git a/static/images/pokemon/0053_Persian.png b/static/images/pokemon/0053_Persian.png new file mode 100644 index 0000000..7f04487 Binary files /dev/null and b/static/images/pokemon/0053_Persian.png differ diff --git a/static/images/pokemon/0053_Persian_(Alolan_Form).png b/static/images/pokemon/0053_Persian_(Alolan_Form).png new file mode 100644 index 0000000..4919dd4 Binary files /dev/null and b/static/images/pokemon/0053_Persian_(Alolan_Form).png differ diff --git a/static/images/pokemon/0054_Psyduck.png b/static/images/pokemon/0054_Psyduck.png new file mode 100644 index 0000000..72cd785 Binary files /dev/null and b/static/images/pokemon/0054_Psyduck.png differ diff --git a/static/images/pokemon/0055_Golduck.png b/static/images/pokemon/0055_Golduck.png new file mode 100644 index 0000000..0c39f71 Binary files /dev/null and b/static/images/pokemon/0055_Golduck.png differ diff --git a/static/images/pokemon/0056_Mankey.png b/static/images/pokemon/0056_Mankey.png new file mode 100644 index 0000000..88b2a64 Binary files /dev/null and b/static/images/pokemon/0056_Mankey.png differ diff --git a/static/images/pokemon/0057_Primeape.png b/static/images/pokemon/0057_Primeape.png new file mode 100644 index 0000000..a253fd1 Binary files /dev/null and b/static/images/pokemon/0057_Primeape.png differ diff --git a/static/images/pokemon/0058_Growlithe.png b/static/images/pokemon/0058_Growlithe.png new file mode 100644 index 0000000..57494ca Binary files /dev/null and b/static/images/pokemon/0058_Growlithe.png differ diff --git a/static/images/pokemon/0058_Growlithe_(Hisuian_Form).png b/static/images/pokemon/0058_Growlithe_(Hisuian_Form).png new file mode 100644 index 0000000..19bd9b8 Binary files /dev/null and b/static/images/pokemon/0058_Growlithe_(Hisuian_Form).png differ diff --git a/static/images/pokemon/0059_Arcanine.png b/static/images/pokemon/0059_Arcanine.png new file mode 100644 index 0000000..ebcf3d5 Binary files /dev/null and b/static/images/pokemon/0059_Arcanine.png differ diff --git a/static/images/pokemon/0059_Arcanine_(Hisuian_Form).png b/static/images/pokemon/0059_Arcanine_(Hisuian_Form).png new file mode 100644 index 0000000..7e551cf Binary files /dev/null and b/static/images/pokemon/0059_Arcanine_(Hisuian_Form).png differ diff --git a/static/images/pokemon/0060_Poliwag.png b/static/images/pokemon/0060_Poliwag.png new file mode 100644 index 0000000..9ef85a5 Binary files /dev/null and b/static/images/pokemon/0060_Poliwag.png differ diff --git a/static/images/pokemon/0061_Poliwhirl.png b/static/images/pokemon/0061_Poliwhirl.png new file mode 100644 index 0000000..1f4ed5f Binary files /dev/null and b/static/images/pokemon/0061_Poliwhirl.png differ diff --git a/static/images/pokemon/0062_Poliwrath.png b/static/images/pokemon/0062_Poliwrath.png new file mode 100644 index 0000000..70f3d64 Binary files /dev/null and b/static/images/pokemon/0062_Poliwrath.png differ diff --git a/static/images/pokemon/0063_Abra.png b/static/images/pokemon/0063_Abra.png new file mode 100644 index 0000000..e67f2d7 Binary files /dev/null and b/static/images/pokemon/0063_Abra.png differ diff --git a/static/images/pokemon/0064_Kadabra.png b/static/images/pokemon/0064_Kadabra.png new file mode 100644 index 0000000..9110d75 Binary files /dev/null and b/static/images/pokemon/0064_Kadabra.png differ diff --git a/static/images/pokemon/0065_Alakazam.png b/static/images/pokemon/0065_Alakazam.png new file mode 100644 index 0000000..d885fe5 Binary files /dev/null and b/static/images/pokemon/0065_Alakazam.png differ diff --git a/static/images/pokemon/0066_Machop.png b/static/images/pokemon/0066_Machop.png new file mode 100644 index 0000000..3f940d2 Binary files /dev/null and b/static/images/pokemon/0066_Machop.png differ diff --git a/static/images/pokemon/0067_Machoke.png b/static/images/pokemon/0067_Machoke.png new file mode 100644 index 0000000..16df44e Binary files /dev/null and b/static/images/pokemon/0067_Machoke.png differ diff --git a/static/images/pokemon/0068_Machamp.png b/static/images/pokemon/0068_Machamp.png new file mode 100644 index 0000000..54e2a36 Binary files /dev/null and b/static/images/pokemon/0068_Machamp.png differ diff --git a/static/images/pokemon/0069_Bellsprout.png b/static/images/pokemon/0069_Bellsprout.png new file mode 100644 index 0000000..a0422c1 Binary files /dev/null and b/static/images/pokemon/0069_Bellsprout.png differ diff --git a/static/images/pokemon/0070_Weepinbell.png b/static/images/pokemon/0070_Weepinbell.png new file mode 100644 index 0000000..8c28052 Binary files /dev/null and b/static/images/pokemon/0070_Weepinbell.png differ diff --git a/static/images/pokemon/0071_Victreebel.png b/static/images/pokemon/0071_Victreebel.png new file mode 100644 index 0000000..68c70dd Binary files /dev/null and b/static/images/pokemon/0071_Victreebel.png differ diff --git a/static/images/pokemon/0072_Tentacool.png b/static/images/pokemon/0072_Tentacool.png new file mode 100644 index 0000000..214ff87 Binary files /dev/null and b/static/images/pokemon/0072_Tentacool.png differ diff --git a/static/images/pokemon/0073_Tentacruel.png b/static/images/pokemon/0073_Tentacruel.png new file mode 100644 index 0000000..605ea0a Binary files /dev/null and b/static/images/pokemon/0073_Tentacruel.png differ diff --git a/static/images/pokemon/0074_Geodude.png b/static/images/pokemon/0074_Geodude.png new file mode 100644 index 0000000..3bb7841 Binary files /dev/null and b/static/images/pokemon/0074_Geodude.png differ diff --git a/static/images/pokemon/0074_Geodude_(Alolan_Form).png b/static/images/pokemon/0074_Geodude_(Alolan_Form).png new file mode 100644 index 0000000..bc2c73a Binary files /dev/null and b/static/images/pokemon/0074_Geodude_(Alolan_Form).png differ diff --git a/static/images/pokemon/0075_Graveler.png b/static/images/pokemon/0075_Graveler.png new file mode 100644 index 0000000..9b1cf97 Binary files /dev/null and b/static/images/pokemon/0075_Graveler.png differ diff --git a/static/images/pokemon/0075_Graveler_(Alolan_Form).png b/static/images/pokemon/0075_Graveler_(Alolan_Form).png new file mode 100644 index 0000000..0479a64 Binary files /dev/null and b/static/images/pokemon/0075_Graveler_(Alolan_Form).png differ diff --git a/static/images/pokemon/0076_Golem.png b/static/images/pokemon/0076_Golem.png new file mode 100644 index 0000000..e89229d Binary files /dev/null and b/static/images/pokemon/0076_Golem.png differ diff --git a/static/images/pokemon/0076_Golem_(Alolan_Form).png b/static/images/pokemon/0076_Golem_(Alolan_Form).png new file mode 100644 index 0000000..b442239 Binary files /dev/null and b/static/images/pokemon/0076_Golem_(Alolan_Form).png differ diff --git a/static/images/pokemon/0077_Ponyta.png b/static/images/pokemon/0077_Ponyta.png new file mode 100644 index 0000000..d1be9ef Binary files /dev/null and b/static/images/pokemon/0077_Ponyta.png differ diff --git a/static/images/pokemon/0077_Ponyta_(Galarian_Form).png b/static/images/pokemon/0077_Ponyta_(Galarian_Form).png new file mode 100644 index 0000000..d8cd804 Binary files /dev/null and b/static/images/pokemon/0077_Ponyta_(Galarian_Form).png differ diff --git a/static/images/pokemon/0078_Rapidash.png b/static/images/pokemon/0078_Rapidash.png new file mode 100644 index 0000000..380b88e Binary files /dev/null and b/static/images/pokemon/0078_Rapidash.png differ diff --git a/static/images/pokemon/0078_Rapidash_(Galarian_Form).png b/static/images/pokemon/0078_Rapidash_(Galarian_Form).png new file mode 100644 index 0000000..e098a04 Binary files /dev/null and b/static/images/pokemon/0078_Rapidash_(Galarian_Form).png differ diff --git a/static/images/pokemon/0079_Slowpoke.png b/static/images/pokemon/0079_Slowpoke.png new file mode 100644 index 0000000..056fc57 Binary files /dev/null and b/static/images/pokemon/0079_Slowpoke.png differ diff --git a/static/images/pokemon/0079_Slowpoke_(Galarian_Form).png b/static/images/pokemon/0079_Slowpoke_(Galarian_Form).png new file mode 100644 index 0000000..de80888 Binary files /dev/null and b/static/images/pokemon/0079_Slowpoke_(Galarian_Form).png differ diff --git a/static/images/pokemon/0080_Slowbro.png b/static/images/pokemon/0080_Slowbro.png new file mode 100644 index 0000000..ccc520e Binary files /dev/null and b/static/images/pokemon/0080_Slowbro.png differ diff --git a/static/images/pokemon/0080_Slowbro_(Galarian_Form).png b/static/images/pokemon/0080_Slowbro_(Galarian_Form).png new file mode 100644 index 0000000..5a5ab9f Binary files /dev/null and b/static/images/pokemon/0080_Slowbro_(Galarian_Form).png differ diff --git a/static/images/pokemon/0081_Magnemite.png b/static/images/pokemon/0081_Magnemite.png new file mode 100644 index 0000000..49f5052 Binary files /dev/null and b/static/images/pokemon/0081_Magnemite.png differ diff --git a/static/images/pokemon/0082_Magneton.png b/static/images/pokemon/0082_Magneton.png new file mode 100644 index 0000000..0d23c5f Binary files /dev/null and b/static/images/pokemon/0082_Magneton.png differ diff --git a/static/images/pokemon/0083_Farfetch'd.png b/static/images/pokemon/0083_Farfetch'd.png new file mode 100644 index 0000000..1a5c0f3 Binary files /dev/null and b/static/images/pokemon/0083_Farfetch'd.png differ diff --git a/static/images/pokemon/0083_Farfetch'd_(Galarian_Form).png b/static/images/pokemon/0083_Farfetch'd_(Galarian_Form).png new file mode 100644 index 0000000..243c924 Binary files /dev/null and b/static/images/pokemon/0083_Farfetch'd_(Galarian_Form).png differ diff --git a/static/images/pokemon/0084_Doduo.png b/static/images/pokemon/0084_Doduo.png new file mode 100644 index 0000000..50dd0f0 Binary files /dev/null and b/static/images/pokemon/0084_Doduo.png differ diff --git a/static/images/pokemon/0085_Dodrio.png b/static/images/pokemon/0085_Dodrio.png new file mode 100644 index 0000000..cd99a59 Binary files /dev/null and b/static/images/pokemon/0085_Dodrio.png differ diff --git a/static/images/pokemon/0086_Seel.png b/static/images/pokemon/0086_Seel.png new file mode 100644 index 0000000..8c5cc8e Binary files /dev/null and b/static/images/pokemon/0086_Seel.png differ diff --git a/static/images/pokemon/0087_Dewgong.png b/static/images/pokemon/0087_Dewgong.png new file mode 100644 index 0000000..d2b57bd Binary files /dev/null and b/static/images/pokemon/0087_Dewgong.png differ diff --git a/static/images/pokemon/0088_Grimer.png b/static/images/pokemon/0088_Grimer.png new file mode 100644 index 0000000..c0ffaf0 Binary files /dev/null and b/static/images/pokemon/0088_Grimer.png differ diff --git a/static/images/pokemon/0088_Grimer_(Alolan_Form).png b/static/images/pokemon/0088_Grimer_(Alolan_Form).png new file mode 100644 index 0000000..acbf751 Binary files /dev/null and b/static/images/pokemon/0088_Grimer_(Alolan_Form).png differ diff --git a/static/images/pokemon/0089_Muk.png b/static/images/pokemon/0089_Muk.png new file mode 100644 index 0000000..c3340f6 Binary files /dev/null and b/static/images/pokemon/0089_Muk.png differ diff --git a/static/images/pokemon/0089_Muk_(Alolan_Form).png b/static/images/pokemon/0089_Muk_(Alolan_Form).png new file mode 100644 index 0000000..969b9cc Binary files /dev/null and b/static/images/pokemon/0089_Muk_(Alolan_Form).png differ diff --git a/static/images/pokemon/0090_Shellder.png b/static/images/pokemon/0090_Shellder.png new file mode 100644 index 0000000..cd45483 Binary files /dev/null and b/static/images/pokemon/0090_Shellder.png differ diff --git a/static/images/pokemon/0091_Cloyster.png b/static/images/pokemon/0091_Cloyster.png new file mode 100644 index 0000000..d2fb617 Binary files /dev/null and b/static/images/pokemon/0091_Cloyster.png differ diff --git a/static/images/pokemon/0092_Gastly.png b/static/images/pokemon/0092_Gastly.png new file mode 100644 index 0000000..ce44021 Binary files /dev/null and b/static/images/pokemon/0092_Gastly.png differ diff --git a/static/images/pokemon/0093_Haunter.png b/static/images/pokemon/0093_Haunter.png new file mode 100644 index 0000000..980d8c4 Binary files /dev/null and b/static/images/pokemon/0093_Haunter.png differ diff --git a/static/images/pokemon/0094_Gengar.png b/static/images/pokemon/0094_Gengar.png new file mode 100644 index 0000000..c21f793 Binary files /dev/null and b/static/images/pokemon/0094_Gengar.png differ diff --git a/static/images/pokemon/0095_Onix.png b/static/images/pokemon/0095_Onix.png new file mode 100644 index 0000000..ea7d3cd Binary files /dev/null and b/static/images/pokemon/0095_Onix.png differ diff --git a/static/images/pokemon/0096_Drowzee.png b/static/images/pokemon/0096_Drowzee.png new file mode 100644 index 0000000..26ae26b Binary files /dev/null and b/static/images/pokemon/0096_Drowzee.png differ diff --git a/static/images/pokemon/0097_Hypno.png b/static/images/pokemon/0097_Hypno.png new file mode 100644 index 0000000..8b84a8c Binary files /dev/null and b/static/images/pokemon/0097_Hypno.png differ diff --git a/static/images/pokemon/0098_Krabby.png b/static/images/pokemon/0098_Krabby.png new file mode 100644 index 0000000..d87dc7e Binary files /dev/null and b/static/images/pokemon/0098_Krabby.png differ diff --git a/static/images/pokemon/0099_Kingler.png b/static/images/pokemon/0099_Kingler.png new file mode 100644 index 0000000..38bacd2 Binary files /dev/null and b/static/images/pokemon/0099_Kingler.png differ diff --git a/static/images/pokemon/0100_Voltorb.png b/static/images/pokemon/0100_Voltorb.png new file mode 100644 index 0000000..1f2a2ba Binary files /dev/null and b/static/images/pokemon/0100_Voltorb.png differ diff --git a/static/images/pokemon/0100_Voltorb_(Hisuian_Form).png b/static/images/pokemon/0100_Voltorb_(Hisuian_Form).png new file mode 100644 index 0000000..06fd3f3 Binary files /dev/null and b/static/images/pokemon/0100_Voltorb_(Hisuian_Form).png differ diff --git a/static/images/pokemon/0101_Electrode.png b/static/images/pokemon/0101_Electrode.png new file mode 100644 index 0000000..51db0be Binary files /dev/null and b/static/images/pokemon/0101_Electrode.png differ diff --git a/static/images/pokemon/0101_Electrode_(Hisuian_Form).png b/static/images/pokemon/0101_Electrode_(Hisuian_Form).png new file mode 100644 index 0000000..43fc025 Binary files /dev/null and b/static/images/pokemon/0101_Electrode_(Hisuian_Form).png differ diff --git a/static/images/pokemon/0102_Exeggcute.png b/static/images/pokemon/0102_Exeggcute.png new file mode 100644 index 0000000..94c7179 Binary files /dev/null and b/static/images/pokemon/0102_Exeggcute.png differ diff --git a/static/images/pokemon/0103_Exeggutor.png b/static/images/pokemon/0103_Exeggutor.png new file mode 100644 index 0000000..baa6335 Binary files /dev/null and b/static/images/pokemon/0103_Exeggutor.png differ diff --git a/static/images/pokemon/0103_Exeggutor_(Alolan_Form).png b/static/images/pokemon/0103_Exeggutor_(Alolan_Form).png new file mode 100644 index 0000000..0e212bf Binary files /dev/null and b/static/images/pokemon/0103_Exeggutor_(Alolan_Form).png differ diff --git a/static/images/pokemon/0104_Cubone.png b/static/images/pokemon/0104_Cubone.png new file mode 100644 index 0000000..1021a33 Binary files /dev/null and b/static/images/pokemon/0104_Cubone.png differ diff --git a/static/images/pokemon/0105_Marowak.png b/static/images/pokemon/0105_Marowak.png new file mode 100644 index 0000000..719c586 Binary files /dev/null and b/static/images/pokemon/0105_Marowak.png differ diff --git a/static/images/pokemon/0105_Marowak_(Alolan_Form).png b/static/images/pokemon/0105_Marowak_(Alolan_Form).png new file mode 100644 index 0000000..0db9e42 Binary files /dev/null and b/static/images/pokemon/0105_Marowak_(Alolan_Form).png differ diff --git a/static/images/pokemon/0106_Hitmonlee.png b/static/images/pokemon/0106_Hitmonlee.png new file mode 100644 index 0000000..a31a947 Binary files /dev/null and b/static/images/pokemon/0106_Hitmonlee.png differ diff --git a/static/images/pokemon/0107_Hitmonchan.png b/static/images/pokemon/0107_Hitmonchan.png new file mode 100644 index 0000000..2705dcb Binary files /dev/null and b/static/images/pokemon/0107_Hitmonchan.png differ diff --git a/static/images/pokemon/0108_Lickitung.png b/static/images/pokemon/0108_Lickitung.png new file mode 100644 index 0000000..913aaef Binary files /dev/null and b/static/images/pokemon/0108_Lickitung.png differ diff --git a/static/images/pokemon/0109_Koffing.png b/static/images/pokemon/0109_Koffing.png new file mode 100644 index 0000000..5a0c5b8 Binary files /dev/null and b/static/images/pokemon/0109_Koffing.png differ diff --git a/static/images/pokemon/0110_Weezing.png b/static/images/pokemon/0110_Weezing.png new file mode 100644 index 0000000..f922f6f Binary files /dev/null and b/static/images/pokemon/0110_Weezing.png differ diff --git a/static/images/pokemon/0110_Weezing_(Galarian_Form).png b/static/images/pokemon/0110_Weezing_(Galarian_Form).png new file mode 100644 index 0000000..91cbf2c Binary files /dev/null and b/static/images/pokemon/0110_Weezing_(Galarian_Form).png differ diff --git a/static/images/pokemon/0111_Rhyhorn.png b/static/images/pokemon/0111_Rhyhorn.png new file mode 100644 index 0000000..0ecdbae Binary files /dev/null and b/static/images/pokemon/0111_Rhyhorn.png differ diff --git a/static/images/pokemon/0112_Rhydon.png b/static/images/pokemon/0112_Rhydon.png new file mode 100644 index 0000000..8fba6b6 Binary files /dev/null and b/static/images/pokemon/0112_Rhydon.png differ diff --git a/static/images/pokemon/0113_Chansey.png b/static/images/pokemon/0113_Chansey.png new file mode 100644 index 0000000..57534a3 Binary files /dev/null and b/static/images/pokemon/0113_Chansey.png differ diff --git a/static/images/pokemon/0114_Tangela.png b/static/images/pokemon/0114_Tangela.png new file mode 100644 index 0000000..328f4cc Binary files /dev/null and b/static/images/pokemon/0114_Tangela.png differ diff --git a/static/images/pokemon/0115_Kangaskhan.png b/static/images/pokemon/0115_Kangaskhan.png new file mode 100644 index 0000000..ff2c302 Binary files /dev/null and b/static/images/pokemon/0115_Kangaskhan.png differ diff --git a/static/images/pokemon/0116_Horsea.png b/static/images/pokemon/0116_Horsea.png new file mode 100644 index 0000000..ccc6e58 Binary files /dev/null and b/static/images/pokemon/0116_Horsea.png differ diff --git a/static/images/pokemon/0117_Seadra.png b/static/images/pokemon/0117_Seadra.png new file mode 100644 index 0000000..14cda90 Binary files /dev/null and b/static/images/pokemon/0117_Seadra.png differ diff --git a/static/images/pokemon/0118_Goldeen.png b/static/images/pokemon/0118_Goldeen.png new file mode 100644 index 0000000..3ee1f40 Binary files /dev/null and b/static/images/pokemon/0118_Goldeen.png differ diff --git a/static/images/pokemon/0119_Seaking.png b/static/images/pokemon/0119_Seaking.png new file mode 100644 index 0000000..239a340 Binary files /dev/null and b/static/images/pokemon/0119_Seaking.png differ diff --git a/static/images/pokemon/0120_Staryu.png b/static/images/pokemon/0120_Staryu.png new file mode 100644 index 0000000..4f54b7f Binary files /dev/null and b/static/images/pokemon/0120_Staryu.png differ diff --git a/static/images/pokemon/0121_Starmie.png b/static/images/pokemon/0121_Starmie.png new file mode 100644 index 0000000..5ae7264 Binary files /dev/null and b/static/images/pokemon/0121_Starmie.png differ diff --git a/static/images/pokemon/0122_Mr._Mime.png b/static/images/pokemon/0122_Mr._Mime.png new file mode 100644 index 0000000..92c1b3e Binary files /dev/null and b/static/images/pokemon/0122_Mr._Mime.png differ diff --git a/static/images/pokemon/0122_Mr._Mime_(Galarian_Form).png b/static/images/pokemon/0122_Mr._Mime_(Galarian_Form).png new file mode 100644 index 0000000..3154a76 Binary files /dev/null and b/static/images/pokemon/0122_Mr._Mime_(Galarian_Form).png differ diff --git a/static/images/pokemon/0123_Scyther.png b/static/images/pokemon/0123_Scyther.png new file mode 100644 index 0000000..5cc7c9c Binary files /dev/null and b/static/images/pokemon/0123_Scyther.png differ diff --git a/static/images/pokemon/0124_Jynx.png b/static/images/pokemon/0124_Jynx.png new file mode 100644 index 0000000..5dd853b Binary files /dev/null and b/static/images/pokemon/0124_Jynx.png differ diff --git a/static/images/pokemon/0125_Electabuzz.png b/static/images/pokemon/0125_Electabuzz.png new file mode 100644 index 0000000..713ffd6 Binary files /dev/null and b/static/images/pokemon/0125_Electabuzz.png differ diff --git a/static/images/pokemon/0126_Magmar.png b/static/images/pokemon/0126_Magmar.png new file mode 100644 index 0000000..4aab3da Binary files /dev/null and b/static/images/pokemon/0126_Magmar.png differ diff --git a/static/images/pokemon/0127_Pinsir.png b/static/images/pokemon/0127_Pinsir.png new file mode 100644 index 0000000..a4c454f Binary files /dev/null and b/static/images/pokemon/0127_Pinsir.png differ diff --git a/static/images/pokemon/0128_Tauros.png b/static/images/pokemon/0128_Tauros.png new file mode 100644 index 0000000..55f234d Binary files /dev/null and b/static/images/pokemon/0128_Tauros.png differ diff --git a/static/images/pokemon/0128_Tauros_(Aqua_Breed).png b/static/images/pokemon/0128_Tauros_(Aqua_Breed).png new file mode 100644 index 0000000..3569b45 Binary files /dev/null and b/static/images/pokemon/0128_Tauros_(Aqua_Breed).png differ diff --git a/static/images/pokemon/0128_Tauros_(Blaze_Breed).png b/static/images/pokemon/0128_Tauros_(Blaze_Breed).png new file mode 100644 index 0000000..1d0c9b3 Binary files /dev/null and b/static/images/pokemon/0128_Tauros_(Blaze_Breed).png differ diff --git a/static/images/pokemon/0128_Tauros_(Paldean_Form).png b/static/images/pokemon/0128_Tauros_(Paldean_Form).png new file mode 100644 index 0000000..2b7c15d Binary files /dev/null and b/static/images/pokemon/0128_Tauros_(Paldean_Form).png differ diff --git a/static/images/pokemon/0129_Magikarp.png b/static/images/pokemon/0129_Magikarp.png new file mode 100644 index 0000000..1184ae7 Binary files /dev/null and b/static/images/pokemon/0129_Magikarp.png differ diff --git a/static/images/pokemon/0130_Gyarados.png b/static/images/pokemon/0130_Gyarados.png new file mode 100644 index 0000000..a694050 Binary files /dev/null and b/static/images/pokemon/0130_Gyarados.png differ diff --git a/static/images/pokemon/0131_Lapras.png b/static/images/pokemon/0131_Lapras.png new file mode 100644 index 0000000..9da142d Binary files /dev/null and b/static/images/pokemon/0131_Lapras.png differ diff --git a/static/images/pokemon/0132_Ditto.png b/static/images/pokemon/0132_Ditto.png new file mode 100644 index 0000000..f47a9e8 Binary files /dev/null and b/static/images/pokemon/0132_Ditto.png differ diff --git a/static/images/pokemon/0133_Eevee.png b/static/images/pokemon/0133_Eevee.png new file mode 100644 index 0000000..0c809fa Binary files /dev/null and b/static/images/pokemon/0133_Eevee.png differ diff --git a/static/images/pokemon/0134_Vaporeon.png b/static/images/pokemon/0134_Vaporeon.png new file mode 100644 index 0000000..7ee4d80 Binary files /dev/null and b/static/images/pokemon/0134_Vaporeon.png differ diff --git a/static/images/pokemon/0135_Jolteon.png b/static/images/pokemon/0135_Jolteon.png new file mode 100644 index 0000000..a930708 Binary files /dev/null and b/static/images/pokemon/0135_Jolteon.png differ diff --git a/static/images/pokemon/0136_Flareon.png b/static/images/pokemon/0136_Flareon.png new file mode 100644 index 0000000..5e6f31e Binary files /dev/null and b/static/images/pokemon/0136_Flareon.png differ diff --git a/static/images/pokemon/0137_Porygon.png b/static/images/pokemon/0137_Porygon.png new file mode 100644 index 0000000..a0b94d0 Binary files /dev/null and b/static/images/pokemon/0137_Porygon.png differ diff --git a/static/images/pokemon/0138_Omanyte.png b/static/images/pokemon/0138_Omanyte.png new file mode 100644 index 0000000..f4c054f Binary files /dev/null and b/static/images/pokemon/0138_Omanyte.png differ diff --git a/static/images/pokemon/0139_Omastar.png b/static/images/pokemon/0139_Omastar.png new file mode 100644 index 0000000..c22cbe6 Binary files /dev/null and b/static/images/pokemon/0139_Omastar.png differ diff --git a/static/images/pokemon/0140_Kabuto.png b/static/images/pokemon/0140_Kabuto.png new file mode 100644 index 0000000..400309b Binary files /dev/null and b/static/images/pokemon/0140_Kabuto.png differ diff --git a/static/images/pokemon/0141_Kabutops.png b/static/images/pokemon/0141_Kabutops.png new file mode 100644 index 0000000..19b8107 Binary files /dev/null and b/static/images/pokemon/0141_Kabutops.png differ diff --git a/static/images/pokemon/0142_Aerodactyl.png b/static/images/pokemon/0142_Aerodactyl.png new file mode 100644 index 0000000..54ad709 Binary files /dev/null and b/static/images/pokemon/0142_Aerodactyl.png differ diff --git a/static/images/pokemon/0143_Snorlax.png b/static/images/pokemon/0143_Snorlax.png new file mode 100644 index 0000000..9d6842f Binary files /dev/null and b/static/images/pokemon/0143_Snorlax.png differ diff --git a/static/images/pokemon/0144_Articuno.png b/static/images/pokemon/0144_Articuno.png new file mode 100644 index 0000000..ebcf9d0 Binary files /dev/null and b/static/images/pokemon/0144_Articuno.png differ diff --git a/static/images/pokemon/0144_Articuno_(Galarian_Form).png b/static/images/pokemon/0144_Articuno_(Galarian_Form).png new file mode 100644 index 0000000..01397f3 Binary files /dev/null and b/static/images/pokemon/0144_Articuno_(Galarian_Form).png differ diff --git a/static/images/pokemon/0145_Zapdos.png b/static/images/pokemon/0145_Zapdos.png new file mode 100644 index 0000000..f10bcf9 Binary files /dev/null and b/static/images/pokemon/0145_Zapdos.png differ diff --git a/static/images/pokemon/0145_Zapdos_(Galarian_Form).png b/static/images/pokemon/0145_Zapdos_(Galarian_Form).png new file mode 100644 index 0000000..8ebe0b0 Binary files /dev/null and b/static/images/pokemon/0145_Zapdos_(Galarian_Form).png differ diff --git a/static/images/pokemon/0146_Moltres.png b/static/images/pokemon/0146_Moltres.png new file mode 100644 index 0000000..6198f5c Binary files /dev/null and b/static/images/pokemon/0146_Moltres.png differ diff --git a/static/images/pokemon/0146_Moltres_(Galarian_Form).png b/static/images/pokemon/0146_Moltres_(Galarian_Form).png new file mode 100644 index 0000000..aac7fe5 Binary files /dev/null and b/static/images/pokemon/0146_Moltres_(Galarian_Form).png differ diff --git a/static/images/pokemon/0147_Dratini.png b/static/images/pokemon/0147_Dratini.png new file mode 100644 index 0000000..b2734f9 Binary files /dev/null and b/static/images/pokemon/0147_Dratini.png differ diff --git a/static/images/pokemon/0148_Dragonair.png b/static/images/pokemon/0148_Dragonair.png new file mode 100644 index 0000000..596cbba Binary files /dev/null and b/static/images/pokemon/0148_Dragonair.png differ diff --git a/static/images/pokemon/0149_Dragonite.png b/static/images/pokemon/0149_Dragonite.png new file mode 100644 index 0000000..efe3b3f Binary files /dev/null and b/static/images/pokemon/0149_Dragonite.png differ diff --git a/static/images/pokemon/0150_Mewtwo.png b/static/images/pokemon/0150_Mewtwo.png new file mode 100644 index 0000000..889ab51 Binary files /dev/null and b/static/images/pokemon/0150_Mewtwo.png differ diff --git a/static/images/pokemon/0151_Mew.png b/static/images/pokemon/0151_Mew.png new file mode 100644 index 0000000..19f59a7 Binary files /dev/null and b/static/images/pokemon/0151_Mew.png differ diff --git a/static/images/pokemon/0152_Chikorita.png b/static/images/pokemon/0152_Chikorita.png new file mode 100644 index 0000000..a54963a Binary files /dev/null and b/static/images/pokemon/0152_Chikorita.png differ diff --git a/static/images/pokemon/0153_Bayleef.png b/static/images/pokemon/0153_Bayleef.png new file mode 100644 index 0000000..a189729 Binary files /dev/null and b/static/images/pokemon/0153_Bayleef.png differ diff --git a/static/images/pokemon/0154_Meganium.png b/static/images/pokemon/0154_Meganium.png new file mode 100644 index 0000000..2359aeb Binary files /dev/null and b/static/images/pokemon/0154_Meganium.png differ diff --git a/static/images/pokemon/0155_Cyndaquil.png b/static/images/pokemon/0155_Cyndaquil.png new file mode 100644 index 0000000..44786f6 Binary files /dev/null and b/static/images/pokemon/0155_Cyndaquil.png differ diff --git a/static/images/pokemon/0156_Quilava.png b/static/images/pokemon/0156_Quilava.png new file mode 100644 index 0000000..c384e3a Binary files /dev/null and b/static/images/pokemon/0156_Quilava.png differ diff --git a/static/images/pokemon/0157_Typhlosion.png b/static/images/pokemon/0157_Typhlosion.png new file mode 100644 index 0000000..b77bf0c Binary files /dev/null and b/static/images/pokemon/0157_Typhlosion.png differ diff --git a/static/images/pokemon/0157_Typhlosion_(Hisuian_Form).png b/static/images/pokemon/0157_Typhlosion_(Hisuian_Form).png new file mode 100644 index 0000000..299d3e9 Binary files /dev/null and b/static/images/pokemon/0157_Typhlosion_(Hisuian_Form).png differ diff --git a/static/images/pokemon/0158_Totodile.png b/static/images/pokemon/0158_Totodile.png new file mode 100644 index 0000000..2d705a3 Binary files /dev/null and b/static/images/pokemon/0158_Totodile.png differ diff --git a/static/images/pokemon/0159_Croconaw.png b/static/images/pokemon/0159_Croconaw.png new file mode 100644 index 0000000..765b228 Binary files /dev/null and b/static/images/pokemon/0159_Croconaw.png differ diff --git a/static/images/pokemon/0160_Feraligatr.png b/static/images/pokemon/0160_Feraligatr.png new file mode 100644 index 0000000..e769a65 Binary files /dev/null and b/static/images/pokemon/0160_Feraligatr.png differ diff --git a/static/images/pokemon/0161_Sentret.png b/static/images/pokemon/0161_Sentret.png new file mode 100644 index 0000000..f272cf5 Binary files /dev/null and b/static/images/pokemon/0161_Sentret.png differ diff --git a/static/images/pokemon/0162_Furret.png b/static/images/pokemon/0162_Furret.png new file mode 100644 index 0000000..80bc2cd Binary files /dev/null and b/static/images/pokemon/0162_Furret.png differ diff --git a/static/images/pokemon/0163_Hoothoot.png b/static/images/pokemon/0163_Hoothoot.png new file mode 100644 index 0000000..cb6d959 Binary files /dev/null and b/static/images/pokemon/0163_Hoothoot.png differ diff --git a/static/images/pokemon/0164_Noctowl.png b/static/images/pokemon/0164_Noctowl.png new file mode 100644 index 0000000..8f3922a Binary files /dev/null and b/static/images/pokemon/0164_Noctowl.png differ diff --git a/static/images/pokemon/0165_Ledyba.png b/static/images/pokemon/0165_Ledyba.png new file mode 100644 index 0000000..5a73db4 Binary files /dev/null and b/static/images/pokemon/0165_Ledyba.png differ diff --git a/static/images/pokemon/0166_Ledian.png b/static/images/pokemon/0166_Ledian.png new file mode 100644 index 0000000..7011298 Binary files /dev/null and b/static/images/pokemon/0166_Ledian.png differ diff --git a/static/images/pokemon/0167_Spinarak.png b/static/images/pokemon/0167_Spinarak.png new file mode 100644 index 0000000..5adf094 Binary files /dev/null and b/static/images/pokemon/0167_Spinarak.png differ diff --git a/static/images/pokemon/0168_Ariados.png b/static/images/pokemon/0168_Ariados.png new file mode 100644 index 0000000..c5b344f Binary files /dev/null and b/static/images/pokemon/0168_Ariados.png differ diff --git a/static/images/pokemon/0169_Crobat.png b/static/images/pokemon/0169_Crobat.png new file mode 100644 index 0000000..73cf7ec Binary files /dev/null and b/static/images/pokemon/0169_Crobat.png differ diff --git a/static/images/pokemon/0170_Chinchou.png b/static/images/pokemon/0170_Chinchou.png new file mode 100644 index 0000000..973372e Binary files /dev/null and b/static/images/pokemon/0170_Chinchou.png differ diff --git a/static/images/pokemon/0171_Lanturn.png b/static/images/pokemon/0171_Lanturn.png new file mode 100644 index 0000000..e76dd45 Binary files /dev/null and b/static/images/pokemon/0171_Lanturn.png differ diff --git a/static/images/pokemon/0172_Pichu.png b/static/images/pokemon/0172_Pichu.png new file mode 100644 index 0000000..f6932db Binary files /dev/null and b/static/images/pokemon/0172_Pichu.png differ diff --git a/static/images/pokemon/0173_Cleffa.png b/static/images/pokemon/0173_Cleffa.png new file mode 100644 index 0000000..f24fbe8 Binary files /dev/null and b/static/images/pokemon/0173_Cleffa.png differ diff --git a/static/images/pokemon/0174_Igglybuff.png b/static/images/pokemon/0174_Igglybuff.png new file mode 100644 index 0000000..d642363 Binary files /dev/null and b/static/images/pokemon/0174_Igglybuff.png differ diff --git a/static/images/pokemon/0175_Togepi.png b/static/images/pokemon/0175_Togepi.png new file mode 100644 index 0000000..2645146 Binary files /dev/null and b/static/images/pokemon/0175_Togepi.png differ diff --git a/static/images/pokemon/0176_Togetic.png b/static/images/pokemon/0176_Togetic.png new file mode 100644 index 0000000..ea7b2de Binary files /dev/null and b/static/images/pokemon/0176_Togetic.png differ diff --git a/static/images/pokemon/0177_Natu.png b/static/images/pokemon/0177_Natu.png new file mode 100644 index 0000000..295dce2 Binary files /dev/null and b/static/images/pokemon/0177_Natu.png differ diff --git a/static/images/pokemon/0178_Xatu.png b/static/images/pokemon/0178_Xatu.png new file mode 100644 index 0000000..c879ecf Binary files /dev/null and b/static/images/pokemon/0178_Xatu.png differ diff --git a/static/images/pokemon/0179_Mareep.png b/static/images/pokemon/0179_Mareep.png new file mode 100644 index 0000000..8e3944b Binary files /dev/null and b/static/images/pokemon/0179_Mareep.png differ diff --git a/static/images/pokemon/0180_Flaaffy.png b/static/images/pokemon/0180_Flaaffy.png new file mode 100644 index 0000000..c0ee52a Binary files /dev/null and b/static/images/pokemon/0180_Flaaffy.png differ diff --git a/static/images/pokemon/0181_Ampharos.png b/static/images/pokemon/0181_Ampharos.png new file mode 100644 index 0000000..3b654bb Binary files /dev/null and b/static/images/pokemon/0181_Ampharos.png differ diff --git a/static/images/pokemon/0182_Bellossom.png b/static/images/pokemon/0182_Bellossom.png new file mode 100644 index 0000000..c47034e Binary files /dev/null and b/static/images/pokemon/0182_Bellossom.png differ diff --git a/static/images/pokemon/0183_Marill.png b/static/images/pokemon/0183_Marill.png new file mode 100644 index 0000000..7035585 Binary files /dev/null and b/static/images/pokemon/0183_Marill.png differ diff --git a/static/images/pokemon/0184_Azumarill.png b/static/images/pokemon/0184_Azumarill.png new file mode 100644 index 0000000..1a5378a Binary files /dev/null and b/static/images/pokemon/0184_Azumarill.png differ diff --git a/static/images/pokemon/0185_Sudowoodo.png b/static/images/pokemon/0185_Sudowoodo.png new file mode 100644 index 0000000..8136b15 Binary files /dev/null and b/static/images/pokemon/0185_Sudowoodo.png differ diff --git a/static/images/pokemon/0186_Politoed.png b/static/images/pokemon/0186_Politoed.png new file mode 100644 index 0000000..fac4c46 Binary files /dev/null and b/static/images/pokemon/0186_Politoed.png differ diff --git a/static/images/pokemon/0187_Hoppip.png b/static/images/pokemon/0187_Hoppip.png new file mode 100644 index 0000000..d071512 Binary files /dev/null and b/static/images/pokemon/0187_Hoppip.png differ diff --git a/static/images/pokemon/0188_Skiploom.png b/static/images/pokemon/0188_Skiploom.png new file mode 100644 index 0000000..df7ed38 Binary files /dev/null and b/static/images/pokemon/0188_Skiploom.png differ diff --git a/static/images/pokemon/0189_Jumpluff.png b/static/images/pokemon/0189_Jumpluff.png new file mode 100644 index 0000000..d1bbcd0 Binary files /dev/null and b/static/images/pokemon/0189_Jumpluff.png differ diff --git a/static/images/pokemon/0190_Aipom.png b/static/images/pokemon/0190_Aipom.png new file mode 100644 index 0000000..81c3a53 Binary files /dev/null and b/static/images/pokemon/0190_Aipom.png differ diff --git a/static/images/pokemon/0191_Sunkern.png b/static/images/pokemon/0191_Sunkern.png new file mode 100644 index 0000000..8661aad Binary files /dev/null and b/static/images/pokemon/0191_Sunkern.png differ diff --git a/static/images/pokemon/0192_Sunflora.png b/static/images/pokemon/0192_Sunflora.png new file mode 100644 index 0000000..b8abb20 Binary files /dev/null and b/static/images/pokemon/0192_Sunflora.png differ diff --git a/static/images/pokemon/0193_Yanma.png b/static/images/pokemon/0193_Yanma.png new file mode 100644 index 0000000..95cec47 Binary files /dev/null and b/static/images/pokemon/0193_Yanma.png differ diff --git a/static/images/pokemon/0194_Wooper.png b/static/images/pokemon/0194_Wooper.png new file mode 100644 index 0000000..6db7a12 Binary files /dev/null and b/static/images/pokemon/0194_Wooper.png differ diff --git a/static/images/pokemon/0194_Wooper_(Paldean_Form).png b/static/images/pokemon/0194_Wooper_(Paldean_Form).png new file mode 100644 index 0000000..053314e Binary files /dev/null and b/static/images/pokemon/0194_Wooper_(Paldean_Form).png differ diff --git a/static/images/pokemon/0195_Quagsire.png b/static/images/pokemon/0195_Quagsire.png new file mode 100644 index 0000000..14c7dbe Binary files /dev/null and b/static/images/pokemon/0195_Quagsire.png differ diff --git a/static/images/pokemon/0196_Espeon.png b/static/images/pokemon/0196_Espeon.png new file mode 100644 index 0000000..f08bdcf Binary files /dev/null and b/static/images/pokemon/0196_Espeon.png differ diff --git a/static/images/pokemon/0197_Umbreon.png b/static/images/pokemon/0197_Umbreon.png new file mode 100644 index 0000000..1ee0df6 Binary files /dev/null and b/static/images/pokemon/0197_Umbreon.png differ diff --git a/static/images/pokemon/0198_Murkrow.png b/static/images/pokemon/0198_Murkrow.png new file mode 100644 index 0000000..0d2c4f3 Binary files /dev/null and b/static/images/pokemon/0198_Murkrow.png differ diff --git a/static/images/pokemon/0199_Slowking.png b/static/images/pokemon/0199_Slowking.png new file mode 100644 index 0000000..e16e79e Binary files /dev/null and b/static/images/pokemon/0199_Slowking.png differ diff --git a/static/images/pokemon/0199_Slowking_(Galarian_Form).png b/static/images/pokemon/0199_Slowking_(Galarian_Form).png new file mode 100644 index 0000000..56f5841 Binary files /dev/null and b/static/images/pokemon/0199_Slowking_(Galarian_Form).png differ diff --git a/static/images/pokemon/0200_Misdreavus.png b/static/images/pokemon/0200_Misdreavus.png new file mode 100644 index 0000000..bb82fac Binary files /dev/null and b/static/images/pokemon/0200_Misdreavus.png differ diff --git a/static/images/pokemon/0201_Unown.png b/static/images/pokemon/0201_Unown.png new file mode 100644 index 0000000..305cc30 Binary files /dev/null and b/static/images/pokemon/0201_Unown.png differ diff --git a/static/images/pokemon/0201_Unown_(!).png b/static/images/pokemon/0201_Unown_(!).png new file mode 100644 index 0000000..6f787b1 Binary files /dev/null and b/static/images/pokemon/0201_Unown_(!).png differ diff --git a/static/images/pokemon/0201_Unown_(B).png b/static/images/pokemon/0201_Unown_(B).png new file mode 100644 index 0000000..d722387 Binary files /dev/null and b/static/images/pokemon/0201_Unown_(B).png differ diff --git a/static/images/pokemon/0201_Unown_(C).png b/static/images/pokemon/0201_Unown_(C).png new file mode 100644 index 0000000..476ebab Binary files /dev/null and b/static/images/pokemon/0201_Unown_(C).png differ diff --git a/static/images/pokemon/0201_Unown_(D).png b/static/images/pokemon/0201_Unown_(D).png new file mode 100644 index 0000000..2d638d2 Binary files /dev/null and b/static/images/pokemon/0201_Unown_(D).png differ diff --git a/static/images/pokemon/0201_Unown_(E).png b/static/images/pokemon/0201_Unown_(E).png new file mode 100644 index 0000000..ed0798c Binary files /dev/null and b/static/images/pokemon/0201_Unown_(E).png differ diff --git a/static/images/pokemon/0201_Unown_(F).png b/static/images/pokemon/0201_Unown_(F).png new file mode 100644 index 0000000..0eb7bbb Binary files /dev/null and b/static/images/pokemon/0201_Unown_(F).png differ diff --git a/static/images/pokemon/0201_Unown_(G).png b/static/images/pokemon/0201_Unown_(G).png new file mode 100644 index 0000000..957aa06 Binary files /dev/null and b/static/images/pokemon/0201_Unown_(G).png differ diff --git a/static/images/pokemon/0201_Unown_(H).png b/static/images/pokemon/0201_Unown_(H).png new file mode 100644 index 0000000..16f07ca Binary files /dev/null and b/static/images/pokemon/0201_Unown_(H).png differ diff --git a/static/images/pokemon/0201_Unown_(I).png b/static/images/pokemon/0201_Unown_(I).png new file mode 100644 index 0000000..bf4e53b Binary files /dev/null and b/static/images/pokemon/0201_Unown_(I).png differ diff --git a/static/images/pokemon/0201_Unown_(J).png b/static/images/pokemon/0201_Unown_(J).png new file mode 100644 index 0000000..97b1b72 Binary files /dev/null and b/static/images/pokemon/0201_Unown_(J).png differ diff --git a/static/images/pokemon/0201_Unown_(K).png b/static/images/pokemon/0201_Unown_(K).png new file mode 100644 index 0000000..3f80ab5 Binary files /dev/null and b/static/images/pokemon/0201_Unown_(K).png differ diff --git a/static/images/pokemon/0201_Unown_(L).png b/static/images/pokemon/0201_Unown_(L).png new file mode 100644 index 0000000..5ed6309 Binary files /dev/null and b/static/images/pokemon/0201_Unown_(L).png differ diff --git a/static/images/pokemon/0201_Unown_(M).png b/static/images/pokemon/0201_Unown_(M).png new file mode 100644 index 0000000..ba26cf0 Binary files /dev/null and b/static/images/pokemon/0201_Unown_(M).png differ diff --git a/static/images/pokemon/0201_Unown_(N).png b/static/images/pokemon/0201_Unown_(N).png new file mode 100644 index 0000000..68a1d95 Binary files /dev/null and b/static/images/pokemon/0201_Unown_(N).png differ diff --git a/static/images/pokemon/0201_Unown_(O).png b/static/images/pokemon/0201_Unown_(O).png new file mode 100644 index 0000000..9283279 Binary files /dev/null and b/static/images/pokemon/0201_Unown_(O).png differ diff --git a/static/images/pokemon/0201_Unown_(P).png b/static/images/pokemon/0201_Unown_(P).png new file mode 100644 index 0000000..7b530c2 Binary files /dev/null and b/static/images/pokemon/0201_Unown_(P).png differ diff --git a/static/images/pokemon/0201_Unown_(Q).png b/static/images/pokemon/0201_Unown_(Q).png new file mode 100644 index 0000000..d45414d Binary files /dev/null and b/static/images/pokemon/0201_Unown_(Q).png differ diff --git a/static/images/pokemon/0201_Unown_(R).png b/static/images/pokemon/0201_Unown_(R).png new file mode 100644 index 0000000..a3a69a3 Binary files /dev/null and b/static/images/pokemon/0201_Unown_(R).png differ diff --git a/static/images/pokemon/0201_Unown_(S).png b/static/images/pokemon/0201_Unown_(S).png new file mode 100644 index 0000000..bd73f20 Binary files /dev/null and b/static/images/pokemon/0201_Unown_(S).png differ diff --git a/static/images/pokemon/0201_Unown_(T).png b/static/images/pokemon/0201_Unown_(T).png new file mode 100644 index 0000000..d0b22e2 Binary files /dev/null and b/static/images/pokemon/0201_Unown_(T).png differ diff --git a/static/images/pokemon/0201_Unown_(U).png b/static/images/pokemon/0201_Unown_(U).png new file mode 100644 index 0000000..c370e12 Binary files /dev/null and b/static/images/pokemon/0201_Unown_(U).png differ diff --git a/static/images/pokemon/0201_Unown_(V).png b/static/images/pokemon/0201_Unown_(V).png new file mode 100644 index 0000000..817e2cc Binary files /dev/null and b/static/images/pokemon/0201_Unown_(V).png differ diff --git a/static/images/pokemon/0201_Unown_(W).png b/static/images/pokemon/0201_Unown_(W).png new file mode 100644 index 0000000..aad14f5 Binary files /dev/null and b/static/images/pokemon/0201_Unown_(W).png differ diff --git a/static/images/pokemon/0201_Unown_(X).png b/static/images/pokemon/0201_Unown_(X).png new file mode 100644 index 0000000..5928000 Binary files /dev/null and b/static/images/pokemon/0201_Unown_(X).png differ diff --git a/static/images/pokemon/0201_Unown_(Y).png b/static/images/pokemon/0201_Unown_(Y).png new file mode 100644 index 0000000..11cc541 Binary files /dev/null and b/static/images/pokemon/0201_Unown_(Y).png differ diff --git a/static/images/pokemon/0201_Unown_(Z).png b/static/images/pokemon/0201_Unown_(Z).png new file mode 100644 index 0000000..d8388c8 Binary files /dev/null and b/static/images/pokemon/0201_Unown_(Z).png differ diff --git a/static/images/pokemon/0201_Unown_(questionmark).png b/static/images/pokemon/0201_Unown_(questionmark).png new file mode 100644 index 0000000..3f9e0ae Binary files /dev/null and b/static/images/pokemon/0201_Unown_(questionmark).png differ diff --git a/static/images/pokemon/0202_Wobbuffet.png b/static/images/pokemon/0202_Wobbuffet.png new file mode 100644 index 0000000..e6331c8 Binary files /dev/null and b/static/images/pokemon/0202_Wobbuffet.png differ diff --git a/static/images/pokemon/0203_Girafarig.png b/static/images/pokemon/0203_Girafarig.png new file mode 100644 index 0000000..c8b16a8 Binary files /dev/null and b/static/images/pokemon/0203_Girafarig.png differ diff --git a/static/images/pokemon/0204_Pineco.png b/static/images/pokemon/0204_Pineco.png new file mode 100644 index 0000000..c0e056f Binary files /dev/null and b/static/images/pokemon/0204_Pineco.png differ diff --git a/static/images/pokemon/0205_Forretress.png b/static/images/pokemon/0205_Forretress.png new file mode 100644 index 0000000..60ed85a Binary files /dev/null and b/static/images/pokemon/0205_Forretress.png differ diff --git a/static/images/pokemon/0206_Dunsparce.png b/static/images/pokemon/0206_Dunsparce.png new file mode 100644 index 0000000..e20b019 Binary files /dev/null and b/static/images/pokemon/0206_Dunsparce.png differ diff --git a/static/images/pokemon/0207_Gligar.png b/static/images/pokemon/0207_Gligar.png new file mode 100644 index 0000000..a12f207 Binary files /dev/null and b/static/images/pokemon/0207_Gligar.png differ diff --git a/static/images/pokemon/0208_Steelix.png b/static/images/pokemon/0208_Steelix.png new file mode 100644 index 0000000..1b61397 Binary files /dev/null and b/static/images/pokemon/0208_Steelix.png differ diff --git a/static/images/pokemon/0209_Snubbull.png b/static/images/pokemon/0209_Snubbull.png new file mode 100644 index 0000000..33c0854 Binary files /dev/null and b/static/images/pokemon/0209_Snubbull.png differ diff --git a/static/images/pokemon/0210_Granbull.png b/static/images/pokemon/0210_Granbull.png new file mode 100644 index 0000000..e414c7e Binary files /dev/null and b/static/images/pokemon/0210_Granbull.png differ diff --git a/static/images/pokemon/0211_Qwilfish.png b/static/images/pokemon/0211_Qwilfish.png new file mode 100644 index 0000000..fa31fa9 Binary files /dev/null and b/static/images/pokemon/0211_Qwilfish.png differ diff --git a/static/images/pokemon/0211_Qwilfish_(Hisuian_Form).png b/static/images/pokemon/0211_Qwilfish_(Hisuian_Form).png new file mode 100644 index 0000000..2a9977b Binary files /dev/null and b/static/images/pokemon/0211_Qwilfish_(Hisuian_Form).png differ diff --git a/static/images/pokemon/0212_Scizor.png b/static/images/pokemon/0212_Scizor.png new file mode 100644 index 0000000..8b96cf5 Binary files /dev/null and b/static/images/pokemon/0212_Scizor.png differ diff --git a/static/images/pokemon/0213_Shuckle.png b/static/images/pokemon/0213_Shuckle.png new file mode 100644 index 0000000..8f8b35d Binary files /dev/null and b/static/images/pokemon/0213_Shuckle.png differ diff --git a/static/images/pokemon/0214_Heracross.png b/static/images/pokemon/0214_Heracross.png new file mode 100644 index 0000000..eb7d1f6 Binary files /dev/null and b/static/images/pokemon/0214_Heracross.png differ diff --git a/static/images/pokemon/0215_Sneasel.png b/static/images/pokemon/0215_Sneasel.png new file mode 100644 index 0000000..548d246 Binary files /dev/null and b/static/images/pokemon/0215_Sneasel.png differ diff --git a/static/images/pokemon/0215_Sneasel_(Hisuian_Form).png b/static/images/pokemon/0215_Sneasel_(Hisuian_Form).png new file mode 100644 index 0000000..7cadcc3 Binary files /dev/null and b/static/images/pokemon/0215_Sneasel_(Hisuian_Form).png differ diff --git a/static/images/pokemon/0216_Teddiursa.png b/static/images/pokemon/0216_Teddiursa.png new file mode 100644 index 0000000..b20e663 Binary files /dev/null and b/static/images/pokemon/0216_Teddiursa.png differ diff --git a/static/images/pokemon/0217_Ursaring.png b/static/images/pokemon/0217_Ursaring.png new file mode 100644 index 0000000..6ec96e4 Binary files /dev/null and b/static/images/pokemon/0217_Ursaring.png differ diff --git a/static/images/pokemon/0218_Slugma.png b/static/images/pokemon/0218_Slugma.png new file mode 100644 index 0000000..91e2d33 Binary files /dev/null and b/static/images/pokemon/0218_Slugma.png differ diff --git a/static/images/pokemon/0219_Magcargo.png b/static/images/pokemon/0219_Magcargo.png new file mode 100644 index 0000000..8253f70 Binary files /dev/null and b/static/images/pokemon/0219_Magcargo.png differ diff --git a/static/images/pokemon/0220_Swinub.png b/static/images/pokemon/0220_Swinub.png new file mode 100644 index 0000000..fb9c3c3 Binary files /dev/null and b/static/images/pokemon/0220_Swinub.png differ diff --git a/static/images/pokemon/0221_Piloswine.png b/static/images/pokemon/0221_Piloswine.png new file mode 100644 index 0000000..0325d99 Binary files /dev/null and b/static/images/pokemon/0221_Piloswine.png differ diff --git a/static/images/pokemon/0222_Corsola.png b/static/images/pokemon/0222_Corsola.png new file mode 100644 index 0000000..5e3e28f Binary files /dev/null and b/static/images/pokemon/0222_Corsola.png differ diff --git a/static/images/pokemon/0222_Corsola_(Galarian_Form).png b/static/images/pokemon/0222_Corsola_(Galarian_Form).png new file mode 100644 index 0000000..2423059 Binary files /dev/null and b/static/images/pokemon/0222_Corsola_(Galarian_Form).png differ diff --git a/static/images/pokemon/0223_Remoraid.png b/static/images/pokemon/0223_Remoraid.png new file mode 100644 index 0000000..ce70aad Binary files /dev/null and b/static/images/pokemon/0223_Remoraid.png differ diff --git a/static/images/pokemon/0224_Octillery.png b/static/images/pokemon/0224_Octillery.png new file mode 100644 index 0000000..52b3fe2 Binary files /dev/null and b/static/images/pokemon/0224_Octillery.png differ diff --git a/static/images/pokemon/0225_Delibird.png b/static/images/pokemon/0225_Delibird.png new file mode 100644 index 0000000..2801c68 Binary files /dev/null and b/static/images/pokemon/0225_Delibird.png differ diff --git a/static/images/pokemon/0226_Mantine.png b/static/images/pokemon/0226_Mantine.png new file mode 100644 index 0000000..85e0f0b Binary files /dev/null and b/static/images/pokemon/0226_Mantine.png differ diff --git a/static/images/pokemon/0227_Skarmory.png b/static/images/pokemon/0227_Skarmory.png new file mode 100644 index 0000000..7b3207a Binary files /dev/null and b/static/images/pokemon/0227_Skarmory.png differ diff --git a/static/images/pokemon/0228_Houndour.png b/static/images/pokemon/0228_Houndour.png new file mode 100644 index 0000000..fe3f6a9 Binary files /dev/null and b/static/images/pokemon/0228_Houndour.png differ diff --git a/static/images/pokemon/0229_Houndoom.png b/static/images/pokemon/0229_Houndoom.png new file mode 100644 index 0000000..1d95c89 Binary files /dev/null and b/static/images/pokemon/0229_Houndoom.png differ diff --git a/static/images/pokemon/0230_Kingdra.png b/static/images/pokemon/0230_Kingdra.png new file mode 100644 index 0000000..92a40e2 Binary files /dev/null and b/static/images/pokemon/0230_Kingdra.png differ diff --git a/static/images/pokemon/0231_Phanpy.png b/static/images/pokemon/0231_Phanpy.png new file mode 100644 index 0000000..b11a52f Binary files /dev/null and b/static/images/pokemon/0231_Phanpy.png differ diff --git a/static/images/pokemon/0232_Donphan.png b/static/images/pokemon/0232_Donphan.png new file mode 100644 index 0000000..fb3ebfa Binary files /dev/null and b/static/images/pokemon/0232_Donphan.png differ diff --git a/static/images/pokemon/0233_Porygon2.png b/static/images/pokemon/0233_Porygon2.png new file mode 100644 index 0000000..040434e Binary files /dev/null and b/static/images/pokemon/0233_Porygon2.png differ diff --git a/static/images/pokemon/0234_Stantler.png b/static/images/pokemon/0234_Stantler.png new file mode 100644 index 0000000..d7cde75 Binary files /dev/null and b/static/images/pokemon/0234_Stantler.png differ diff --git a/static/images/pokemon/0235_Smeargle.png b/static/images/pokemon/0235_Smeargle.png new file mode 100644 index 0000000..d4ba07d Binary files /dev/null and b/static/images/pokemon/0235_Smeargle.png differ diff --git a/static/images/pokemon/0236_Tyrogue.png b/static/images/pokemon/0236_Tyrogue.png new file mode 100644 index 0000000..373eb64 Binary files /dev/null and b/static/images/pokemon/0236_Tyrogue.png differ diff --git a/static/images/pokemon/0237_Hitmontop.png b/static/images/pokemon/0237_Hitmontop.png new file mode 100644 index 0000000..ff7ab05 Binary files /dev/null and b/static/images/pokemon/0237_Hitmontop.png differ diff --git a/static/images/pokemon/0238_Smoochum.png b/static/images/pokemon/0238_Smoochum.png new file mode 100644 index 0000000..3807260 Binary files /dev/null and b/static/images/pokemon/0238_Smoochum.png differ diff --git a/static/images/pokemon/0239_Elekid.png b/static/images/pokemon/0239_Elekid.png new file mode 100644 index 0000000..82f343b Binary files /dev/null and b/static/images/pokemon/0239_Elekid.png differ diff --git a/static/images/pokemon/0240_Magby.png b/static/images/pokemon/0240_Magby.png new file mode 100644 index 0000000..3815c38 Binary files /dev/null and b/static/images/pokemon/0240_Magby.png differ diff --git a/static/images/pokemon/0241_Miltank.png b/static/images/pokemon/0241_Miltank.png new file mode 100644 index 0000000..1385c85 Binary files /dev/null and b/static/images/pokemon/0241_Miltank.png differ diff --git a/static/images/pokemon/0242_Blissey.png b/static/images/pokemon/0242_Blissey.png new file mode 100644 index 0000000..bec0205 Binary files /dev/null and b/static/images/pokemon/0242_Blissey.png differ diff --git a/static/images/pokemon/0243_Raikou.png b/static/images/pokemon/0243_Raikou.png new file mode 100644 index 0000000..9fa79f1 Binary files /dev/null and b/static/images/pokemon/0243_Raikou.png differ diff --git a/static/images/pokemon/0244_Entei.png b/static/images/pokemon/0244_Entei.png new file mode 100644 index 0000000..cd23e2c Binary files /dev/null and b/static/images/pokemon/0244_Entei.png differ diff --git a/static/images/pokemon/0245_Suicune.png b/static/images/pokemon/0245_Suicune.png new file mode 100644 index 0000000..cc82019 Binary files /dev/null and b/static/images/pokemon/0245_Suicune.png differ diff --git a/static/images/pokemon/0246_Larvitar.png b/static/images/pokemon/0246_Larvitar.png new file mode 100644 index 0000000..4a617f5 Binary files /dev/null and b/static/images/pokemon/0246_Larvitar.png differ diff --git a/static/images/pokemon/0247_Pupitar.png b/static/images/pokemon/0247_Pupitar.png new file mode 100644 index 0000000..d947196 Binary files /dev/null and b/static/images/pokemon/0247_Pupitar.png differ diff --git a/static/images/pokemon/0248_Tyranitar.png b/static/images/pokemon/0248_Tyranitar.png new file mode 100644 index 0000000..ccbc153 Binary files /dev/null and b/static/images/pokemon/0248_Tyranitar.png differ diff --git a/static/images/pokemon/0249_Lugia.png b/static/images/pokemon/0249_Lugia.png new file mode 100644 index 0000000..decb050 Binary files /dev/null and b/static/images/pokemon/0249_Lugia.png differ diff --git a/static/images/pokemon/0250_Ho-Oh.png b/static/images/pokemon/0250_Ho-Oh.png new file mode 100644 index 0000000..ff3904d Binary files /dev/null and b/static/images/pokemon/0250_Ho-Oh.png differ diff --git a/static/images/pokemon/0251_Celebi.png b/static/images/pokemon/0251_Celebi.png new file mode 100644 index 0000000..1af2935 Binary files /dev/null and b/static/images/pokemon/0251_Celebi.png differ diff --git a/static/images/pokemon/0252_Treecko.png b/static/images/pokemon/0252_Treecko.png new file mode 100644 index 0000000..5c0e5ca Binary files /dev/null and b/static/images/pokemon/0252_Treecko.png differ diff --git a/static/images/pokemon/0253_Grovyle.png b/static/images/pokemon/0253_Grovyle.png new file mode 100644 index 0000000..4982e1b Binary files /dev/null and b/static/images/pokemon/0253_Grovyle.png differ diff --git a/static/images/pokemon/0254_Sceptile.png b/static/images/pokemon/0254_Sceptile.png new file mode 100644 index 0000000..6597077 Binary files /dev/null and b/static/images/pokemon/0254_Sceptile.png differ diff --git a/static/images/pokemon/0255_Torchic.png b/static/images/pokemon/0255_Torchic.png new file mode 100644 index 0000000..d21681e Binary files /dev/null and b/static/images/pokemon/0255_Torchic.png differ diff --git a/static/images/pokemon/0256_Combusken.png b/static/images/pokemon/0256_Combusken.png new file mode 100644 index 0000000..630e8de Binary files /dev/null and b/static/images/pokemon/0256_Combusken.png differ diff --git a/static/images/pokemon/0257_Blaziken.png b/static/images/pokemon/0257_Blaziken.png new file mode 100644 index 0000000..2f84dfa Binary files /dev/null and b/static/images/pokemon/0257_Blaziken.png differ diff --git a/static/images/pokemon/0258_Mudkip.png b/static/images/pokemon/0258_Mudkip.png new file mode 100644 index 0000000..f8241bc Binary files /dev/null and b/static/images/pokemon/0258_Mudkip.png differ diff --git a/static/images/pokemon/0259_Marshtomp.png b/static/images/pokemon/0259_Marshtomp.png new file mode 100644 index 0000000..b90e51e Binary files /dev/null and b/static/images/pokemon/0259_Marshtomp.png differ diff --git a/static/images/pokemon/0260_Swampert.png b/static/images/pokemon/0260_Swampert.png new file mode 100644 index 0000000..78eb549 Binary files /dev/null and b/static/images/pokemon/0260_Swampert.png differ diff --git a/static/images/pokemon/0261_Poochyena.png b/static/images/pokemon/0261_Poochyena.png new file mode 100644 index 0000000..9209c24 Binary files /dev/null and b/static/images/pokemon/0261_Poochyena.png differ diff --git a/static/images/pokemon/0262_Mightyena.png b/static/images/pokemon/0262_Mightyena.png new file mode 100644 index 0000000..2853478 Binary files /dev/null and b/static/images/pokemon/0262_Mightyena.png differ diff --git a/static/images/pokemon/0263_Zigzagoon.png b/static/images/pokemon/0263_Zigzagoon.png new file mode 100644 index 0000000..30f85f7 Binary files /dev/null and b/static/images/pokemon/0263_Zigzagoon.png differ diff --git a/static/images/pokemon/0263_Zigzagoon_(Galarian_Form).png b/static/images/pokemon/0263_Zigzagoon_(Galarian_Form).png new file mode 100644 index 0000000..02c9f0a Binary files /dev/null and b/static/images/pokemon/0263_Zigzagoon_(Galarian_Form).png differ diff --git a/static/images/pokemon/0264_Linoone.png b/static/images/pokemon/0264_Linoone.png new file mode 100644 index 0000000..656ab27 Binary files /dev/null and b/static/images/pokemon/0264_Linoone.png differ diff --git a/static/images/pokemon/0264_Linoone_(Galarian_Form).png b/static/images/pokemon/0264_Linoone_(Galarian_Form).png new file mode 100644 index 0000000..b85ea01 Binary files /dev/null and b/static/images/pokemon/0264_Linoone_(Galarian_Form).png differ diff --git a/static/images/pokemon/0265_Wurmple.png b/static/images/pokemon/0265_Wurmple.png new file mode 100644 index 0000000..a91966d Binary files /dev/null and b/static/images/pokemon/0265_Wurmple.png differ diff --git a/static/images/pokemon/0266_Silcoon.png b/static/images/pokemon/0266_Silcoon.png new file mode 100644 index 0000000..8b8c7c1 Binary files /dev/null and b/static/images/pokemon/0266_Silcoon.png differ diff --git a/static/images/pokemon/0267_Beautifly.png b/static/images/pokemon/0267_Beautifly.png new file mode 100644 index 0000000..c7ef73c Binary files /dev/null and b/static/images/pokemon/0267_Beautifly.png differ diff --git a/static/images/pokemon/0268_Cascoon.png b/static/images/pokemon/0268_Cascoon.png new file mode 100644 index 0000000..b2ade62 Binary files /dev/null and b/static/images/pokemon/0268_Cascoon.png differ diff --git a/static/images/pokemon/0269_Dustox.png b/static/images/pokemon/0269_Dustox.png new file mode 100644 index 0000000..0c618c1 Binary files /dev/null and b/static/images/pokemon/0269_Dustox.png differ diff --git a/static/images/pokemon/0270_Lotad.png b/static/images/pokemon/0270_Lotad.png new file mode 100644 index 0000000..f761fd1 Binary files /dev/null and b/static/images/pokemon/0270_Lotad.png differ diff --git a/static/images/pokemon/0271_Lombre.png b/static/images/pokemon/0271_Lombre.png new file mode 100644 index 0000000..030f6f7 Binary files /dev/null and b/static/images/pokemon/0271_Lombre.png differ diff --git a/static/images/pokemon/0272_Ludicolo.png b/static/images/pokemon/0272_Ludicolo.png new file mode 100644 index 0000000..569ff8d Binary files /dev/null and b/static/images/pokemon/0272_Ludicolo.png differ diff --git a/static/images/pokemon/0273_Seedot.png b/static/images/pokemon/0273_Seedot.png new file mode 100644 index 0000000..42aa9d4 Binary files /dev/null and b/static/images/pokemon/0273_Seedot.png differ diff --git a/static/images/pokemon/0274_Nuzleaf.png b/static/images/pokemon/0274_Nuzleaf.png new file mode 100644 index 0000000..3a2d173 Binary files /dev/null and b/static/images/pokemon/0274_Nuzleaf.png differ diff --git a/static/images/pokemon/0275_Shiftry.png b/static/images/pokemon/0275_Shiftry.png new file mode 100644 index 0000000..1d4827f Binary files /dev/null and b/static/images/pokemon/0275_Shiftry.png differ diff --git a/static/images/pokemon/0276_Taillow.png b/static/images/pokemon/0276_Taillow.png new file mode 100644 index 0000000..b8a902a Binary files /dev/null and b/static/images/pokemon/0276_Taillow.png differ diff --git a/static/images/pokemon/0277_Swellow.png b/static/images/pokemon/0277_Swellow.png new file mode 100644 index 0000000..ac277ad Binary files /dev/null and b/static/images/pokemon/0277_Swellow.png differ diff --git a/static/images/pokemon/0278_Wingull.png b/static/images/pokemon/0278_Wingull.png new file mode 100644 index 0000000..1371f2b Binary files /dev/null and b/static/images/pokemon/0278_Wingull.png differ diff --git a/static/images/pokemon/0279_Pelipper.png b/static/images/pokemon/0279_Pelipper.png new file mode 100644 index 0000000..cd37bdb Binary files /dev/null and b/static/images/pokemon/0279_Pelipper.png differ diff --git a/static/images/pokemon/0280_Ralts.png b/static/images/pokemon/0280_Ralts.png new file mode 100644 index 0000000..38e52c1 Binary files /dev/null and b/static/images/pokemon/0280_Ralts.png differ diff --git a/static/images/pokemon/0281_Kirlia.png b/static/images/pokemon/0281_Kirlia.png new file mode 100644 index 0000000..582bc77 Binary files /dev/null and b/static/images/pokemon/0281_Kirlia.png differ diff --git a/static/images/pokemon/0282_Gardevoir.png b/static/images/pokemon/0282_Gardevoir.png new file mode 100644 index 0000000..b4c38c5 Binary files /dev/null and b/static/images/pokemon/0282_Gardevoir.png differ diff --git a/static/images/pokemon/0283_Surskit.png b/static/images/pokemon/0283_Surskit.png new file mode 100644 index 0000000..553a8b0 Binary files /dev/null and b/static/images/pokemon/0283_Surskit.png differ diff --git a/static/images/pokemon/0284_Masquerain.png b/static/images/pokemon/0284_Masquerain.png new file mode 100644 index 0000000..4dc83e9 Binary files /dev/null and b/static/images/pokemon/0284_Masquerain.png differ diff --git a/static/images/pokemon/0285_Shroomish.png b/static/images/pokemon/0285_Shroomish.png new file mode 100644 index 0000000..35c96e8 Binary files /dev/null and b/static/images/pokemon/0285_Shroomish.png differ diff --git a/static/images/pokemon/0286_Breloom.png b/static/images/pokemon/0286_Breloom.png new file mode 100644 index 0000000..9f0070a Binary files /dev/null and b/static/images/pokemon/0286_Breloom.png differ diff --git a/static/images/pokemon/0287_Slakoth.png b/static/images/pokemon/0287_Slakoth.png new file mode 100644 index 0000000..de948ae Binary files /dev/null and b/static/images/pokemon/0287_Slakoth.png differ diff --git a/static/images/pokemon/0288_Vigoroth.png b/static/images/pokemon/0288_Vigoroth.png new file mode 100644 index 0000000..8fc66cd Binary files /dev/null and b/static/images/pokemon/0288_Vigoroth.png differ diff --git a/static/images/pokemon/0289_Slaking.png b/static/images/pokemon/0289_Slaking.png new file mode 100644 index 0000000..1b7cab0 Binary files /dev/null and b/static/images/pokemon/0289_Slaking.png differ diff --git a/static/images/pokemon/0290_Nincada.png b/static/images/pokemon/0290_Nincada.png new file mode 100644 index 0000000..57d5476 Binary files /dev/null and b/static/images/pokemon/0290_Nincada.png differ diff --git a/static/images/pokemon/0291_Ninjask.png b/static/images/pokemon/0291_Ninjask.png new file mode 100644 index 0000000..b1369c5 Binary files /dev/null and b/static/images/pokemon/0291_Ninjask.png differ diff --git a/static/images/pokemon/0292_Shedinja.png b/static/images/pokemon/0292_Shedinja.png new file mode 100644 index 0000000..2381506 Binary files /dev/null and b/static/images/pokemon/0292_Shedinja.png differ diff --git a/static/images/pokemon/0293_Whismur.png b/static/images/pokemon/0293_Whismur.png new file mode 100644 index 0000000..7687430 Binary files /dev/null and b/static/images/pokemon/0293_Whismur.png differ diff --git a/static/images/pokemon/0294_Loudred.png b/static/images/pokemon/0294_Loudred.png new file mode 100644 index 0000000..fa7535b Binary files /dev/null and b/static/images/pokemon/0294_Loudred.png differ diff --git a/static/images/pokemon/0295_Exploud.png b/static/images/pokemon/0295_Exploud.png new file mode 100644 index 0000000..d696c75 Binary files /dev/null and b/static/images/pokemon/0295_Exploud.png differ diff --git a/static/images/pokemon/0296_Makuhita.png b/static/images/pokemon/0296_Makuhita.png new file mode 100644 index 0000000..824198b Binary files /dev/null and b/static/images/pokemon/0296_Makuhita.png differ diff --git a/static/images/pokemon/0297_Hariyama.png b/static/images/pokemon/0297_Hariyama.png new file mode 100644 index 0000000..82057f6 Binary files /dev/null and b/static/images/pokemon/0297_Hariyama.png differ diff --git a/static/images/pokemon/0298_Azurill.png b/static/images/pokemon/0298_Azurill.png new file mode 100644 index 0000000..87c1bc1 Binary files /dev/null and b/static/images/pokemon/0298_Azurill.png differ diff --git a/static/images/pokemon/0299_Nosepass.png b/static/images/pokemon/0299_Nosepass.png new file mode 100644 index 0000000..e9f83aa Binary files /dev/null and b/static/images/pokemon/0299_Nosepass.png differ diff --git a/static/images/pokemon/0300_Skitty.png b/static/images/pokemon/0300_Skitty.png new file mode 100644 index 0000000..36f4ddb Binary files /dev/null and b/static/images/pokemon/0300_Skitty.png differ diff --git a/static/images/pokemon/0301_Delcatty.png b/static/images/pokemon/0301_Delcatty.png new file mode 100644 index 0000000..42675a3 Binary files /dev/null and b/static/images/pokemon/0301_Delcatty.png differ diff --git a/static/images/pokemon/0302_Sableye.png b/static/images/pokemon/0302_Sableye.png new file mode 100644 index 0000000..b01820f Binary files /dev/null and b/static/images/pokemon/0302_Sableye.png differ diff --git a/static/images/pokemon/0303_Mawile.png b/static/images/pokemon/0303_Mawile.png new file mode 100644 index 0000000..5b6c0fa Binary files /dev/null and b/static/images/pokemon/0303_Mawile.png differ diff --git a/static/images/pokemon/0304_Aron.png b/static/images/pokemon/0304_Aron.png new file mode 100644 index 0000000..fddcc29 Binary files /dev/null and b/static/images/pokemon/0304_Aron.png differ diff --git a/static/images/pokemon/0305_Lairon.png b/static/images/pokemon/0305_Lairon.png new file mode 100644 index 0000000..b7233f8 Binary files /dev/null and b/static/images/pokemon/0305_Lairon.png differ diff --git a/static/images/pokemon/0306_Aggron.png b/static/images/pokemon/0306_Aggron.png new file mode 100644 index 0000000..6f6aca8 Binary files /dev/null and b/static/images/pokemon/0306_Aggron.png differ diff --git a/static/images/pokemon/0307_Meditite.png b/static/images/pokemon/0307_Meditite.png new file mode 100644 index 0000000..a11100a Binary files /dev/null and b/static/images/pokemon/0307_Meditite.png differ diff --git a/static/images/pokemon/0308_Medicham.png b/static/images/pokemon/0308_Medicham.png new file mode 100644 index 0000000..e2ff38c Binary files /dev/null and b/static/images/pokemon/0308_Medicham.png differ diff --git a/static/images/pokemon/0309_Electrike.png b/static/images/pokemon/0309_Electrike.png new file mode 100644 index 0000000..ddaef1f Binary files /dev/null and b/static/images/pokemon/0309_Electrike.png differ diff --git a/static/images/pokemon/0310_Manectric.png b/static/images/pokemon/0310_Manectric.png new file mode 100644 index 0000000..c997ab0 Binary files /dev/null and b/static/images/pokemon/0310_Manectric.png differ diff --git a/static/images/pokemon/0311_Plusle.png b/static/images/pokemon/0311_Plusle.png new file mode 100644 index 0000000..bf891c4 Binary files /dev/null and b/static/images/pokemon/0311_Plusle.png differ diff --git a/static/images/pokemon/0312_Minun.png b/static/images/pokemon/0312_Minun.png new file mode 100644 index 0000000..ca58edf Binary files /dev/null and b/static/images/pokemon/0312_Minun.png differ diff --git a/static/images/pokemon/0313_Volbeat.png b/static/images/pokemon/0313_Volbeat.png new file mode 100644 index 0000000..f5a0a79 Binary files /dev/null and b/static/images/pokemon/0313_Volbeat.png differ diff --git a/static/images/pokemon/0314_Illumise.png b/static/images/pokemon/0314_Illumise.png new file mode 100644 index 0000000..b84b9b1 Binary files /dev/null and b/static/images/pokemon/0314_Illumise.png differ diff --git a/static/images/pokemon/0315_Roselia.png b/static/images/pokemon/0315_Roselia.png new file mode 100644 index 0000000..aab4c3c Binary files /dev/null and b/static/images/pokemon/0315_Roselia.png differ diff --git a/static/images/pokemon/0316_Gulpin.png b/static/images/pokemon/0316_Gulpin.png new file mode 100644 index 0000000..6e6c6c2 Binary files /dev/null and b/static/images/pokemon/0316_Gulpin.png differ diff --git a/static/images/pokemon/0317_Swalot.png b/static/images/pokemon/0317_Swalot.png new file mode 100644 index 0000000..68c4fb3 Binary files /dev/null and b/static/images/pokemon/0317_Swalot.png differ diff --git a/static/images/pokemon/0318_Carvanha.png b/static/images/pokemon/0318_Carvanha.png new file mode 100644 index 0000000..a8d82c3 Binary files /dev/null and b/static/images/pokemon/0318_Carvanha.png differ diff --git a/static/images/pokemon/0319_Sharpedo.png b/static/images/pokemon/0319_Sharpedo.png new file mode 100644 index 0000000..d72f9b3 Binary files /dev/null and b/static/images/pokemon/0319_Sharpedo.png differ diff --git a/static/images/pokemon/0320_Wailmer.png b/static/images/pokemon/0320_Wailmer.png new file mode 100644 index 0000000..b5d5768 Binary files /dev/null and b/static/images/pokemon/0320_Wailmer.png differ diff --git a/static/images/pokemon/0321_Wailord.png b/static/images/pokemon/0321_Wailord.png new file mode 100644 index 0000000..cf3d045 Binary files /dev/null and b/static/images/pokemon/0321_Wailord.png differ diff --git a/static/images/pokemon/0322_Numel.png b/static/images/pokemon/0322_Numel.png new file mode 100644 index 0000000..faa08d4 Binary files /dev/null and b/static/images/pokemon/0322_Numel.png differ diff --git a/static/images/pokemon/0323_Camerupt.png b/static/images/pokemon/0323_Camerupt.png new file mode 100644 index 0000000..797ad36 Binary files /dev/null and b/static/images/pokemon/0323_Camerupt.png differ diff --git a/static/images/pokemon/0324_Torkoal.png b/static/images/pokemon/0324_Torkoal.png new file mode 100644 index 0000000..58ed61a Binary files /dev/null and b/static/images/pokemon/0324_Torkoal.png differ diff --git a/static/images/pokemon/0325_Spoink.png b/static/images/pokemon/0325_Spoink.png new file mode 100644 index 0000000..bf3b3c5 Binary files /dev/null and b/static/images/pokemon/0325_Spoink.png differ diff --git a/static/images/pokemon/0326_Grumpig.png b/static/images/pokemon/0326_Grumpig.png new file mode 100644 index 0000000..d0c25d7 Binary files /dev/null and b/static/images/pokemon/0326_Grumpig.png differ diff --git a/static/images/pokemon/0327_Spinda.png b/static/images/pokemon/0327_Spinda.png new file mode 100644 index 0000000..2eed0e6 Binary files /dev/null and b/static/images/pokemon/0327_Spinda.png differ diff --git a/static/images/pokemon/0328_Trapinch.png b/static/images/pokemon/0328_Trapinch.png new file mode 100644 index 0000000..037ccfd Binary files /dev/null and b/static/images/pokemon/0328_Trapinch.png differ diff --git a/static/images/pokemon/0329_Vibrava.png b/static/images/pokemon/0329_Vibrava.png new file mode 100644 index 0000000..34fc262 Binary files /dev/null and b/static/images/pokemon/0329_Vibrava.png differ diff --git a/static/images/pokemon/0330_Flygon.png b/static/images/pokemon/0330_Flygon.png new file mode 100644 index 0000000..e178386 Binary files /dev/null and b/static/images/pokemon/0330_Flygon.png differ diff --git a/static/images/pokemon/0331_Cacnea.png b/static/images/pokemon/0331_Cacnea.png new file mode 100644 index 0000000..c39b64a Binary files /dev/null and b/static/images/pokemon/0331_Cacnea.png differ diff --git a/static/images/pokemon/0332_Cacturne.png b/static/images/pokemon/0332_Cacturne.png new file mode 100644 index 0000000..8c9ac27 Binary files /dev/null and b/static/images/pokemon/0332_Cacturne.png differ diff --git a/static/images/pokemon/0333_Swablu.png b/static/images/pokemon/0333_Swablu.png new file mode 100644 index 0000000..8b3e12c Binary files /dev/null and b/static/images/pokemon/0333_Swablu.png differ diff --git a/static/images/pokemon/0334_Altaria.png b/static/images/pokemon/0334_Altaria.png new file mode 100644 index 0000000..019da49 Binary files /dev/null and b/static/images/pokemon/0334_Altaria.png differ diff --git a/static/images/pokemon/0335_Zangoose.png b/static/images/pokemon/0335_Zangoose.png new file mode 100644 index 0000000..0957202 Binary files /dev/null and b/static/images/pokemon/0335_Zangoose.png differ diff --git a/static/images/pokemon/0336_Seviper.png b/static/images/pokemon/0336_Seviper.png new file mode 100644 index 0000000..d0d342f Binary files /dev/null and b/static/images/pokemon/0336_Seviper.png differ diff --git a/static/images/pokemon/0337_Lunatone.png b/static/images/pokemon/0337_Lunatone.png new file mode 100644 index 0000000..a1a67be Binary files /dev/null and b/static/images/pokemon/0337_Lunatone.png differ diff --git a/static/images/pokemon/0338_Solrock.png b/static/images/pokemon/0338_Solrock.png new file mode 100644 index 0000000..ef5fa60 Binary files /dev/null and b/static/images/pokemon/0338_Solrock.png differ diff --git a/static/images/pokemon/0339_Barboach.png b/static/images/pokemon/0339_Barboach.png new file mode 100644 index 0000000..5905603 Binary files /dev/null and b/static/images/pokemon/0339_Barboach.png differ diff --git a/static/images/pokemon/0340_Whiscash.png b/static/images/pokemon/0340_Whiscash.png new file mode 100644 index 0000000..901bf95 Binary files /dev/null and b/static/images/pokemon/0340_Whiscash.png differ diff --git a/static/images/pokemon/0341_Corphish.png b/static/images/pokemon/0341_Corphish.png new file mode 100644 index 0000000..331c635 Binary files /dev/null and b/static/images/pokemon/0341_Corphish.png differ diff --git a/static/images/pokemon/0342_Crawdaunt.png b/static/images/pokemon/0342_Crawdaunt.png new file mode 100644 index 0000000..a5dcb2b Binary files /dev/null and b/static/images/pokemon/0342_Crawdaunt.png differ diff --git a/static/images/pokemon/0343_Baltoy.png b/static/images/pokemon/0343_Baltoy.png new file mode 100644 index 0000000..08093a0 Binary files /dev/null and b/static/images/pokemon/0343_Baltoy.png differ diff --git a/static/images/pokemon/0344_Claydol.png b/static/images/pokemon/0344_Claydol.png new file mode 100644 index 0000000..4fb11ca Binary files /dev/null and b/static/images/pokemon/0344_Claydol.png differ diff --git a/static/images/pokemon/0345_Lileep.png b/static/images/pokemon/0345_Lileep.png new file mode 100644 index 0000000..d051d7c Binary files /dev/null and b/static/images/pokemon/0345_Lileep.png differ diff --git a/static/images/pokemon/0346_Cradily.png b/static/images/pokemon/0346_Cradily.png new file mode 100644 index 0000000..34536e6 Binary files /dev/null and b/static/images/pokemon/0346_Cradily.png differ diff --git a/static/images/pokemon/0347_Anorith.png b/static/images/pokemon/0347_Anorith.png new file mode 100644 index 0000000..7207c66 Binary files /dev/null and b/static/images/pokemon/0347_Anorith.png differ diff --git a/static/images/pokemon/0348_Armaldo.png b/static/images/pokemon/0348_Armaldo.png new file mode 100644 index 0000000..865735f Binary files /dev/null and b/static/images/pokemon/0348_Armaldo.png differ diff --git a/static/images/pokemon/0349_Feebas.png b/static/images/pokemon/0349_Feebas.png new file mode 100644 index 0000000..433c11b Binary files /dev/null and b/static/images/pokemon/0349_Feebas.png differ diff --git a/static/images/pokemon/0350_Milotic.png b/static/images/pokemon/0350_Milotic.png new file mode 100644 index 0000000..62c2848 Binary files /dev/null and b/static/images/pokemon/0350_Milotic.png differ diff --git a/static/images/pokemon/0351_Castform.png b/static/images/pokemon/0351_Castform.png new file mode 100644 index 0000000..bfc3418 Binary files /dev/null and b/static/images/pokemon/0351_Castform.png differ diff --git a/static/images/pokemon/0352_Kecleon.png b/static/images/pokemon/0352_Kecleon.png new file mode 100644 index 0000000..df69166 Binary files /dev/null and b/static/images/pokemon/0352_Kecleon.png differ diff --git a/static/images/pokemon/0353_Shuppet.png b/static/images/pokemon/0353_Shuppet.png new file mode 100644 index 0000000..9cf5311 Binary files /dev/null and b/static/images/pokemon/0353_Shuppet.png differ diff --git a/static/images/pokemon/0354_Banette.png b/static/images/pokemon/0354_Banette.png new file mode 100644 index 0000000..2545549 Binary files /dev/null and b/static/images/pokemon/0354_Banette.png differ diff --git a/static/images/pokemon/0355_Duskull.png b/static/images/pokemon/0355_Duskull.png new file mode 100644 index 0000000..c9fbb78 Binary files /dev/null and b/static/images/pokemon/0355_Duskull.png differ diff --git a/static/images/pokemon/0356_Dusclops.png b/static/images/pokemon/0356_Dusclops.png new file mode 100644 index 0000000..77b0ff8 Binary files /dev/null and b/static/images/pokemon/0356_Dusclops.png differ diff --git a/static/images/pokemon/0357_Tropius.png b/static/images/pokemon/0357_Tropius.png new file mode 100644 index 0000000..7eed3a6 Binary files /dev/null and b/static/images/pokemon/0357_Tropius.png differ diff --git a/static/images/pokemon/0358_Chimecho.png b/static/images/pokemon/0358_Chimecho.png new file mode 100644 index 0000000..58ae42f Binary files /dev/null and b/static/images/pokemon/0358_Chimecho.png differ diff --git a/static/images/pokemon/0359_Absol.png b/static/images/pokemon/0359_Absol.png new file mode 100644 index 0000000..d05026c Binary files /dev/null and b/static/images/pokemon/0359_Absol.png differ diff --git a/static/images/pokemon/0360_Wynaut.png b/static/images/pokemon/0360_Wynaut.png new file mode 100644 index 0000000..415d86d Binary files /dev/null and b/static/images/pokemon/0360_Wynaut.png differ diff --git a/static/images/pokemon/0361_Snorunt.png b/static/images/pokemon/0361_Snorunt.png new file mode 100644 index 0000000..76a2b0f Binary files /dev/null and b/static/images/pokemon/0361_Snorunt.png differ diff --git a/static/images/pokemon/0362_Glalie.png b/static/images/pokemon/0362_Glalie.png new file mode 100644 index 0000000..b089f8d Binary files /dev/null and b/static/images/pokemon/0362_Glalie.png differ diff --git a/static/images/pokemon/0363_Spheal.png b/static/images/pokemon/0363_Spheal.png new file mode 100644 index 0000000..baa847b Binary files /dev/null and b/static/images/pokemon/0363_Spheal.png differ diff --git a/static/images/pokemon/0364_Sealeo.png b/static/images/pokemon/0364_Sealeo.png new file mode 100644 index 0000000..b7fd4f4 Binary files /dev/null and b/static/images/pokemon/0364_Sealeo.png differ diff --git a/static/images/pokemon/0365_Walrein.png b/static/images/pokemon/0365_Walrein.png new file mode 100644 index 0000000..0025679 Binary files /dev/null and b/static/images/pokemon/0365_Walrein.png differ diff --git a/static/images/pokemon/0366_Clamperl.png b/static/images/pokemon/0366_Clamperl.png new file mode 100644 index 0000000..18a060d Binary files /dev/null and b/static/images/pokemon/0366_Clamperl.png differ diff --git a/static/images/pokemon/0367_Huntail.png b/static/images/pokemon/0367_Huntail.png new file mode 100644 index 0000000..14cd7ac Binary files /dev/null and b/static/images/pokemon/0367_Huntail.png differ diff --git a/static/images/pokemon/0368_Gorebyss.png b/static/images/pokemon/0368_Gorebyss.png new file mode 100644 index 0000000..0b50daa Binary files /dev/null and b/static/images/pokemon/0368_Gorebyss.png differ diff --git a/static/images/pokemon/0369_Relicanth.png b/static/images/pokemon/0369_Relicanth.png new file mode 100644 index 0000000..662a742 Binary files /dev/null and b/static/images/pokemon/0369_Relicanth.png differ diff --git a/static/images/pokemon/0370_Luvdisc.png b/static/images/pokemon/0370_Luvdisc.png new file mode 100644 index 0000000..cfd9780 Binary files /dev/null and b/static/images/pokemon/0370_Luvdisc.png differ diff --git a/static/images/pokemon/0371_Bagon.png b/static/images/pokemon/0371_Bagon.png new file mode 100644 index 0000000..4756264 Binary files /dev/null and b/static/images/pokemon/0371_Bagon.png differ diff --git a/static/images/pokemon/0372_Shelgon.png b/static/images/pokemon/0372_Shelgon.png new file mode 100644 index 0000000..5ce1023 Binary files /dev/null and b/static/images/pokemon/0372_Shelgon.png differ diff --git a/static/images/pokemon/0373_Salamence.png b/static/images/pokemon/0373_Salamence.png new file mode 100644 index 0000000..e233ef2 Binary files /dev/null and b/static/images/pokemon/0373_Salamence.png differ diff --git a/static/images/pokemon/0374_Beldum.png b/static/images/pokemon/0374_Beldum.png new file mode 100644 index 0000000..d144c03 Binary files /dev/null and b/static/images/pokemon/0374_Beldum.png differ diff --git a/static/images/pokemon/0375_Metang.png b/static/images/pokemon/0375_Metang.png new file mode 100644 index 0000000..c24c3c2 Binary files /dev/null and b/static/images/pokemon/0375_Metang.png differ diff --git a/static/images/pokemon/0376_Metagross.png b/static/images/pokemon/0376_Metagross.png new file mode 100644 index 0000000..a6ba7b1 Binary files /dev/null and b/static/images/pokemon/0376_Metagross.png differ diff --git a/static/images/pokemon/0377_Regirock.png b/static/images/pokemon/0377_Regirock.png new file mode 100644 index 0000000..d3a6dbb Binary files /dev/null and b/static/images/pokemon/0377_Regirock.png differ diff --git a/static/images/pokemon/0378_Regice.png b/static/images/pokemon/0378_Regice.png new file mode 100644 index 0000000..63043a1 Binary files /dev/null and b/static/images/pokemon/0378_Regice.png differ diff --git a/static/images/pokemon/0379_Registeel.png b/static/images/pokemon/0379_Registeel.png new file mode 100644 index 0000000..3df029c Binary files /dev/null and b/static/images/pokemon/0379_Registeel.png differ diff --git a/static/images/pokemon/0380_Latias.png b/static/images/pokemon/0380_Latias.png new file mode 100644 index 0000000..fada5d8 Binary files /dev/null and b/static/images/pokemon/0380_Latias.png differ diff --git a/static/images/pokemon/0381_Latios.png b/static/images/pokemon/0381_Latios.png new file mode 100644 index 0000000..b74d906 Binary files /dev/null and b/static/images/pokemon/0381_Latios.png differ diff --git a/static/images/pokemon/0382_Kyogre.png b/static/images/pokemon/0382_Kyogre.png new file mode 100644 index 0000000..deba279 Binary files /dev/null and b/static/images/pokemon/0382_Kyogre.png differ diff --git a/static/images/pokemon/0383_Groudon.png b/static/images/pokemon/0383_Groudon.png new file mode 100644 index 0000000..7c6316e Binary files /dev/null and b/static/images/pokemon/0383_Groudon.png differ diff --git a/static/images/pokemon/0384_Rayquaza.png b/static/images/pokemon/0384_Rayquaza.png new file mode 100644 index 0000000..a481d6f Binary files /dev/null and b/static/images/pokemon/0384_Rayquaza.png differ diff --git a/static/images/pokemon/0385_Jirachi.png b/static/images/pokemon/0385_Jirachi.png new file mode 100644 index 0000000..68ba942 Binary files /dev/null and b/static/images/pokemon/0385_Jirachi.png differ diff --git a/static/images/pokemon/0386_Deoxys.png b/static/images/pokemon/0386_Deoxys.png new file mode 100644 index 0000000..8829850 Binary files /dev/null and b/static/images/pokemon/0386_Deoxys.png differ diff --git a/static/images/pokemon/0386_Deoxys_(Attack_Forme).png b/static/images/pokemon/0386_Deoxys_(Attack_Forme).png new file mode 100644 index 0000000..07c7252 Binary files /dev/null and b/static/images/pokemon/0386_Deoxys_(Attack_Forme).png differ diff --git a/static/images/pokemon/0386_Deoxys_(Defense_Forme).png b/static/images/pokemon/0386_Deoxys_(Defense_Forme).png new file mode 100644 index 0000000..7793f79 Binary files /dev/null and b/static/images/pokemon/0386_Deoxys_(Defense_Forme).png differ diff --git a/static/images/pokemon/0386_Deoxys_(Speed_Forme).png b/static/images/pokemon/0386_Deoxys_(Speed_Forme).png new file mode 100644 index 0000000..7978bad Binary files /dev/null and b/static/images/pokemon/0386_Deoxys_(Speed_Forme).png differ diff --git a/static/images/pokemon/0387_Turtwig.png b/static/images/pokemon/0387_Turtwig.png new file mode 100644 index 0000000..29828c3 Binary files /dev/null and b/static/images/pokemon/0387_Turtwig.png differ diff --git a/static/images/pokemon/0388_Grotle.png b/static/images/pokemon/0388_Grotle.png new file mode 100644 index 0000000..f0c2705 Binary files /dev/null and b/static/images/pokemon/0388_Grotle.png differ diff --git a/static/images/pokemon/0389_Torterra.png b/static/images/pokemon/0389_Torterra.png new file mode 100644 index 0000000..fc4e9f0 Binary files /dev/null and b/static/images/pokemon/0389_Torterra.png differ diff --git a/static/images/pokemon/0390_Chimchar.png b/static/images/pokemon/0390_Chimchar.png new file mode 100644 index 0000000..1fb1864 Binary files /dev/null and b/static/images/pokemon/0390_Chimchar.png differ diff --git a/static/images/pokemon/0391_Monferno.png b/static/images/pokemon/0391_Monferno.png new file mode 100644 index 0000000..84d5912 Binary files /dev/null and b/static/images/pokemon/0391_Monferno.png differ diff --git a/static/images/pokemon/0392_Infernape.png b/static/images/pokemon/0392_Infernape.png new file mode 100644 index 0000000..f3f02a1 Binary files /dev/null and b/static/images/pokemon/0392_Infernape.png differ diff --git a/static/images/pokemon/0393_Piplup.png b/static/images/pokemon/0393_Piplup.png new file mode 100644 index 0000000..c7e42ed Binary files /dev/null and b/static/images/pokemon/0393_Piplup.png differ diff --git a/static/images/pokemon/0394_Prinplup.png b/static/images/pokemon/0394_Prinplup.png new file mode 100644 index 0000000..1ecc978 Binary files /dev/null and b/static/images/pokemon/0394_Prinplup.png differ diff --git a/static/images/pokemon/0395_Empoleon.png b/static/images/pokemon/0395_Empoleon.png new file mode 100644 index 0000000..388edaf Binary files /dev/null and b/static/images/pokemon/0395_Empoleon.png differ diff --git a/static/images/pokemon/0396_Starly.png b/static/images/pokemon/0396_Starly.png new file mode 100644 index 0000000..d7b9a49 Binary files /dev/null and b/static/images/pokemon/0396_Starly.png differ diff --git a/static/images/pokemon/0397_Staravia.png b/static/images/pokemon/0397_Staravia.png new file mode 100644 index 0000000..e26340d Binary files /dev/null and b/static/images/pokemon/0397_Staravia.png differ diff --git a/static/images/pokemon/0398_Staraptor.png b/static/images/pokemon/0398_Staraptor.png new file mode 100644 index 0000000..0c5ceb2 Binary files /dev/null and b/static/images/pokemon/0398_Staraptor.png differ diff --git a/static/images/pokemon/0399_Bidoof.png b/static/images/pokemon/0399_Bidoof.png new file mode 100644 index 0000000..9f4a7eb Binary files /dev/null and b/static/images/pokemon/0399_Bidoof.png differ diff --git a/static/images/pokemon/0400_Bibarel.png b/static/images/pokemon/0400_Bibarel.png new file mode 100644 index 0000000..5824c71 Binary files /dev/null and b/static/images/pokemon/0400_Bibarel.png differ diff --git a/static/images/pokemon/0401_Kricketot.png b/static/images/pokemon/0401_Kricketot.png new file mode 100644 index 0000000..bb587e6 Binary files /dev/null and b/static/images/pokemon/0401_Kricketot.png differ diff --git a/static/images/pokemon/0402_Kricketune.png b/static/images/pokemon/0402_Kricketune.png new file mode 100644 index 0000000..ded248e Binary files /dev/null and b/static/images/pokemon/0402_Kricketune.png differ diff --git a/static/images/pokemon/0403_Shinx.png b/static/images/pokemon/0403_Shinx.png new file mode 100644 index 0000000..c5fc905 Binary files /dev/null and b/static/images/pokemon/0403_Shinx.png differ diff --git a/static/images/pokemon/0404_Luxio.png b/static/images/pokemon/0404_Luxio.png new file mode 100644 index 0000000..3d66d84 Binary files /dev/null and b/static/images/pokemon/0404_Luxio.png differ diff --git a/static/images/pokemon/0405_Luxray.png b/static/images/pokemon/0405_Luxray.png new file mode 100644 index 0000000..a5a2b49 Binary files /dev/null and b/static/images/pokemon/0405_Luxray.png differ diff --git a/static/images/pokemon/0406_Budew.png b/static/images/pokemon/0406_Budew.png new file mode 100644 index 0000000..dfd0503 Binary files /dev/null and b/static/images/pokemon/0406_Budew.png differ diff --git a/static/images/pokemon/0407_Roserade.png b/static/images/pokemon/0407_Roserade.png new file mode 100644 index 0000000..6d93c5a Binary files /dev/null and b/static/images/pokemon/0407_Roserade.png differ diff --git a/static/images/pokemon/0408_Cranidos.png b/static/images/pokemon/0408_Cranidos.png new file mode 100644 index 0000000..3b65a31 Binary files /dev/null and b/static/images/pokemon/0408_Cranidos.png differ diff --git a/static/images/pokemon/0409_Rampardos.png b/static/images/pokemon/0409_Rampardos.png new file mode 100644 index 0000000..06c7410 Binary files /dev/null and b/static/images/pokemon/0409_Rampardos.png differ diff --git a/static/images/pokemon/0410_Shieldon.png b/static/images/pokemon/0410_Shieldon.png new file mode 100644 index 0000000..1962a5b Binary files /dev/null and b/static/images/pokemon/0410_Shieldon.png differ diff --git a/static/images/pokemon/0411_Bastiodon.png b/static/images/pokemon/0411_Bastiodon.png new file mode 100644 index 0000000..b941d27 Binary files /dev/null and b/static/images/pokemon/0411_Bastiodon.png differ diff --git a/static/images/pokemon/0412_Burmy.png b/static/images/pokemon/0412_Burmy.png new file mode 100644 index 0000000..bfcf95b Binary files /dev/null and b/static/images/pokemon/0412_Burmy.png differ diff --git a/static/images/pokemon/0412_Burmy_(Sandy_Cloak).png b/static/images/pokemon/0412_Burmy_(Sandy_Cloak).png new file mode 100644 index 0000000..6e0cc57 Binary files /dev/null and b/static/images/pokemon/0412_Burmy_(Sandy_Cloak).png differ diff --git a/static/images/pokemon/0412_Burmy_(Trash_Cloak).png b/static/images/pokemon/0412_Burmy_(Trash_Cloak).png new file mode 100644 index 0000000..e8c5085 Binary files /dev/null and b/static/images/pokemon/0412_Burmy_(Trash_Cloak).png differ diff --git a/static/images/pokemon/0413_Wormadam.png b/static/images/pokemon/0413_Wormadam.png new file mode 100644 index 0000000..ad68c34 Binary files /dev/null and b/static/images/pokemon/0413_Wormadam.png differ diff --git a/static/images/pokemon/0413_Wormadam_(Sandy_Cloak).png b/static/images/pokemon/0413_Wormadam_(Sandy_Cloak).png new file mode 100644 index 0000000..5fea984 Binary files /dev/null and b/static/images/pokemon/0413_Wormadam_(Sandy_Cloak).png differ diff --git a/static/images/pokemon/0413_Wormadam_(Trash_Cloak).png b/static/images/pokemon/0413_Wormadam_(Trash_Cloak).png new file mode 100644 index 0000000..bd87823 Binary files /dev/null and b/static/images/pokemon/0413_Wormadam_(Trash_Cloak).png differ diff --git a/static/images/pokemon/0414_Mothim.png b/static/images/pokemon/0414_Mothim.png new file mode 100644 index 0000000..b89ca78 Binary files /dev/null and b/static/images/pokemon/0414_Mothim.png differ diff --git a/static/images/pokemon/0415_Combee.png b/static/images/pokemon/0415_Combee.png new file mode 100644 index 0000000..7a3d0d6 Binary files /dev/null and b/static/images/pokemon/0415_Combee.png differ diff --git a/static/images/pokemon/0416_Vespiquen.png b/static/images/pokemon/0416_Vespiquen.png new file mode 100644 index 0000000..0569282 Binary files /dev/null and b/static/images/pokemon/0416_Vespiquen.png differ diff --git a/static/images/pokemon/0417_Pachirisu.png b/static/images/pokemon/0417_Pachirisu.png new file mode 100644 index 0000000..83f9438 Binary files /dev/null and b/static/images/pokemon/0417_Pachirisu.png differ diff --git a/static/images/pokemon/0418_Buizel.png b/static/images/pokemon/0418_Buizel.png new file mode 100644 index 0000000..cf35115 Binary files /dev/null and b/static/images/pokemon/0418_Buizel.png differ diff --git a/static/images/pokemon/0419_Floatzel.png b/static/images/pokemon/0419_Floatzel.png new file mode 100644 index 0000000..cc8c1b9 Binary files /dev/null and b/static/images/pokemon/0419_Floatzel.png differ diff --git a/static/images/pokemon/0420_Cherubi.png b/static/images/pokemon/0420_Cherubi.png new file mode 100644 index 0000000..5e8e5f2 Binary files /dev/null and b/static/images/pokemon/0420_Cherubi.png differ diff --git a/static/images/pokemon/0421_Cherrim.png b/static/images/pokemon/0421_Cherrim.png new file mode 100644 index 0000000..75b47d2 Binary files /dev/null and b/static/images/pokemon/0421_Cherrim.png differ diff --git a/static/images/pokemon/0422_Shellos.png b/static/images/pokemon/0422_Shellos.png new file mode 100644 index 0000000..4240d94 Binary files /dev/null and b/static/images/pokemon/0422_Shellos.png differ diff --git a/static/images/pokemon/0422_Shellos_(East_Sea).png b/static/images/pokemon/0422_Shellos_(East_Sea).png new file mode 100644 index 0000000..a12744c Binary files /dev/null and b/static/images/pokemon/0422_Shellos_(East_Sea).png differ diff --git a/static/images/pokemon/0423_Gastrodon.png b/static/images/pokemon/0423_Gastrodon.png new file mode 100644 index 0000000..954722d Binary files /dev/null and b/static/images/pokemon/0423_Gastrodon.png differ diff --git a/static/images/pokemon/0423_Gastrodon_(East_Sea).png b/static/images/pokemon/0423_Gastrodon_(East_Sea).png new file mode 100644 index 0000000..6f81fef Binary files /dev/null and b/static/images/pokemon/0423_Gastrodon_(East_Sea).png differ diff --git a/static/images/pokemon/0424_Ambipom.png b/static/images/pokemon/0424_Ambipom.png new file mode 100644 index 0000000..67119b7 Binary files /dev/null and b/static/images/pokemon/0424_Ambipom.png differ diff --git a/static/images/pokemon/0425_Drifloon.png b/static/images/pokemon/0425_Drifloon.png new file mode 100644 index 0000000..c67600a Binary files /dev/null and b/static/images/pokemon/0425_Drifloon.png differ diff --git a/static/images/pokemon/0426_Drifblim.png b/static/images/pokemon/0426_Drifblim.png new file mode 100644 index 0000000..50d674a Binary files /dev/null and b/static/images/pokemon/0426_Drifblim.png differ diff --git a/static/images/pokemon/0427_Buneary.png b/static/images/pokemon/0427_Buneary.png new file mode 100644 index 0000000..a501340 Binary files /dev/null and b/static/images/pokemon/0427_Buneary.png differ diff --git a/static/images/pokemon/0428_Lopunny.png b/static/images/pokemon/0428_Lopunny.png new file mode 100644 index 0000000..77c8802 Binary files /dev/null and b/static/images/pokemon/0428_Lopunny.png differ diff --git a/static/images/pokemon/0429_Mismagius.png b/static/images/pokemon/0429_Mismagius.png new file mode 100644 index 0000000..8e658ed Binary files /dev/null and b/static/images/pokemon/0429_Mismagius.png differ diff --git a/static/images/pokemon/0430_Honchkrow.png b/static/images/pokemon/0430_Honchkrow.png new file mode 100644 index 0000000..75bd291 Binary files /dev/null and b/static/images/pokemon/0430_Honchkrow.png differ diff --git a/static/images/pokemon/0431_Glameow.png b/static/images/pokemon/0431_Glameow.png new file mode 100644 index 0000000..e141351 Binary files /dev/null and b/static/images/pokemon/0431_Glameow.png differ diff --git a/static/images/pokemon/0432_Purugly.png b/static/images/pokemon/0432_Purugly.png new file mode 100644 index 0000000..3755dce Binary files /dev/null and b/static/images/pokemon/0432_Purugly.png differ diff --git a/static/images/pokemon/0433_Chingling.png b/static/images/pokemon/0433_Chingling.png new file mode 100644 index 0000000..7ecf0a6 Binary files /dev/null and b/static/images/pokemon/0433_Chingling.png differ diff --git a/static/images/pokemon/0434_Stunky.png b/static/images/pokemon/0434_Stunky.png new file mode 100644 index 0000000..825f6bc Binary files /dev/null and b/static/images/pokemon/0434_Stunky.png differ diff --git a/static/images/pokemon/0435_Skuntank.png b/static/images/pokemon/0435_Skuntank.png new file mode 100644 index 0000000..b6605df Binary files /dev/null and b/static/images/pokemon/0435_Skuntank.png differ diff --git a/static/images/pokemon/0436_Bronzor.png b/static/images/pokemon/0436_Bronzor.png new file mode 100644 index 0000000..be2fbdb Binary files /dev/null and b/static/images/pokemon/0436_Bronzor.png differ diff --git a/static/images/pokemon/0437_Bronzong.png b/static/images/pokemon/0437_Bronzong.png new file mode 100644 index 0000000..3c6cc0f Binary files /dev/null and b/static/images/pokemon/0437_Bronzong.png differ diff --git a/static/images/pokemon/0438_Bonsly.png b/static/images/pokemon/0438_Bonsly.png new file mode 100644 index 0000000..b967c15 Binary files /dev/null and b/static/images/pokemon/0438_Bonsly.png differ diff --git a/static/images/pokemon/0439_Mime_Jr..png b/static/images/pokemon/0439_Mime_Jr..png new file mode 100644 index 0000000..4006cee Binary files /dev/null and b/static/images/pokemon/0439_Mime_Jr..png differ diff --git a/static/images/pokemon/0440_Happiny.png b/static/images/pokemon/0440_Happiny.png new file mode 100644 index 0000000..42196f2 Binary files /dev/null and b/static/images/pokemon/0440_Happiny.png differ diff --git a/static/images/pokemon/0441_Chatot.png b/static/images/pokemon/0441_Chatot.png new file mode 100644 index 0000000..3260ea6 Binary files /dev/null and b/static/images/pokemon/0441_Chatot.png differ diff --git a/static/images/pokemon/0442_Spiritomb.png b/static/images/pokemon/0442_Spiritomb.png new file mode 100644 index 0000000..c65db08 Binary files /dev/null and b/static/images/pokemon/0442_Spiritomb.png differ diff --git a/static/images/pokemon/0443_Gible.png b/static/images/pokemon/0443_Gible.png new file mode 100644 index 0000000..acd3445 Binary files /dev/null and b/static/images/pokemon/0443_Gible.png differ diff --git a/static/images/pokemon/0444_Gabite.png b/static/images/pokemon/0444_Gabite.png new file mode 100644 index 0000000..650403d Binary files /dev/null and b/static/images/pokemon/0444_Gabite.png differ diff --git a/static/images/pokemon/0445_Garchomp.png b/static/images/pokemon/0445_Garchomp.png new file mode 100644 index 0000000..f5fa07d Binary files /dev/null and b/static/images/pokemon/0445_Garchomp.png differ diff --git a/static/images/pokemon/0446_Munchlax.png b/static/images/pokemon/0446_Munchlax.png new file mode 100644 index 0000000..41446f2 Binary files /dev/null and b/static/images/pokemon/0446_Munchlax.png differ diff --git a/static/images/pokemon/0447_Riolu.png b/static/images/pokemon/0447_Riolu.png new file mode 100644 index 0000000..ebd5701 Binary files /dev/null and b/static/images/pokemon/0447_Riolu.png differ diff --git a/static/images/pokemon/0448_Lucario.png b/static/images/pokemon/0448_Lucario.png new file mode 100644 index 0000000..2baebb4 Binary files /dev/null and b/static/images/pokemon/0448_Lucario.png differ diff --git a/static/images/pokemon/0449_Hippopotas.png b/static/images/pokemon/0449_Hippopotas.png new file mode 100644 index 0000000..793d649 Binary files /dev/null and b/static/images/pokemon/0449_Hippopotas.png differ diff --git a/static/images/pokemon/0450_Hippowdon.png b/static/images/pokemon/0450_Hippowdon.png new file mode 100644 index 0000000..0c77e54 Binary files /dev/null and b/static/images/pokemon/0450_Hippowdon.png differ diff --git a/static/images/pokemon/0451_Skorupi.png b/static/images/pokemon/0451_Skorupi.png new file mode 100644 index 0000000..3196ed4 Binary files /dev/null and b/static/images/pokemon/0451_Skorupi.png differ diff --git a/static/images/pokemon/0452_Drapion.png b/static/images/pokemon/0452_Drapion.png new file mode 100644 index 0000000..570bfc5 Binary files /dev/null and b/static/images/pokemon/0452_Drapion.png differ diff --git a/static/images/pokemon/0453_Croagunk.png b/static/images/pokemon/0453_Croagunk.png new file mode 100644 index 0000000..ade930d Binary files /dev/null and b/static/images/pokemon/0453_Croagunk.png differ diff --git a/static/images/pokemon/0454_Toxicroak.png b/static/images/pokemon/0454_Toxicroak.png new file mode 100644 index 0000000..63229e1 Binary files /dev/null and b/static/images/pokemon/0454_Toxicroak.png differ diff --git a/static/images/pokemon/0455_Carnivine.png b/static/images/pokemon/0455_Carnivine.png new file mode 100644 index 0000000..e7b979f Binary files /dev/null and b/static/images/pokemon/0455_Carnivine.png differ diff --git a/static/images/pokemon/0456_Finneon.png b/static/images/pokemon/0456_Finneon.png new file mode 100644 index 0000000..395866c Binary files /dev/null and b/static/images/pokemon/0456_Finneon.png differ diff --git a/static/images/pokemon/0457_Lumineon.png b/static/images/pokemon/0457_Lumineon.png new file mode 100644 index 0000000..6b620a2 Binary files /dev/null and b/static/images/pokemon/0457_Lumineon.png differ diff --git a/static/images/pokemon/0458_Mantyke.png b/static/images/pokemon/0458_Mantyke.png new file mode 100644 index 0000000..b407a29 Binary files /dev/null and b/static/images/pokemon/0458_Mantyke.png differ diff --git a/static/images/pokemon/0459_Snover.png b/static/images/pokemon/0459_Snover.png new file mode 100644 index 0000000..541c58a Binary files /dev/null and b/static/images/pokemon/0459_Snover.png differ diff --git a/static/images/pokemon/0460_Abomasnow.png b/static/images/pokemon/0460_Abomasnow.png new file mode 100644 index 0000000..fbc01d4 Binary files /dev/null and b/static/images/pokemon/0460_Abomasnow.png differ diff --git a/static/images/pokemon/0461_Weavile.png b/static/images/pokemon/0461_Weavile.png new file mode 100644 index 0000000..db9bef9 Binary files /dev/null and b/static/images/pokemon/0461_Weavile.png differ diff --git a/static/images/pokemon/0462_Magnezone.png b/static/images/pokemon/0462_Magnezone.png new file mode 100644 index 0000000..5425c39 Binary files /dev/null and b/static/images/pokemon/0462_Magnezone.png differ diff --git a/static/images/pokemon/0463_Lickilicky.png b/static/images/pokemon/0463_Lickilicky.png new file mode 100644 index 0000000..dc0b39c Binary files /dev/null and b/static/images/pokemon/0463_Lickilicky.png differ diff --git a/static/images/pokemon/0464_Rhyperior.png b/static/images/pokemon/0464_Rhyperior.png new file mode 100644 index 0000000..479785a Binary files /dev/null and b/static/images/pokemon/0464_Rhyperior.png differ diff --git a/static/images/pokemon/0465_Tangrowth.png b/static/images/pokemon/0465_Tangrowth.png new file mode 100644 index 0000000..0c7a636 Binary files /dev/null and b/static/images/pokemon/0465_Tangrowth.png differ diff --git a/static/images/pokemon/0466_Electivire.png b/static/images/pokemon/0466_Electivire.png new file mode 100644 index 0000000..c889e13 Binary files /dev/null and b/static/images/pokemon/0466_Electivire.png differ diff --git a/static/images/pokemon/0467_Magmortar.png b/static/images/pokemon/0467_Magmortar.png new file mode 100644 index 0000000..3f0f30c Binary files /dev/null and b/static/images/pokemon/0467_Magmortar.png differ diff --git a/static/images/pokemon/0468_Togekiss.png b/static/images/pokemon/0468_Togekiss.png new file mode 100644 index 0000000..0e2eee1 Binary files /dev/null and b/static/images/pokemon/0468_Togekiss.png differ diff --git a/static/images/pokemon/0469_Yanmega.png b/static/images/pokemon/0469_Yanmega.png new file mode 100644 index 0000000..dc172a8 Binary files /dev/null and b/static/images/pokemon/0469_Yanmega.png differ diff --git a/static/images/pokemon/0470_Leafeon.png b/static/images/pokemon/0470_Leafeon.png new file mode 100644 index 0000000..957fc15 Binary files /dev/null and b/static/images/pokemon/0470_Leafeon.png differ diff --git a/static/images/pokemon/0471_Glaceon.png b/static/images/pokemon/0471_Glaceon.png new file mode 100644 index 0000000..7e74e40 Binary files /dev/null and b/static/images/pokemon/0471_Glaceon.png differ diff --git a/static/images/pokemon/0472_Gliscor.png b/static/images/pokemon/0472_Gliscor.png new file mode 100644 index 0000000..546a855 Binary files /dev/null and b/static/images/pokemon/0472_Gliscor.png differ diff --git a/static/images/pokemon/0473_Mamoswine.png b/static/images/pokemon/0473_Mamoswine.png new file mode 100644 index 0000000..2104897 Binary files /dev/null and b/static/images/pokemon/0473_Mamoswine.png differ diff --git a/static/images/pokemon/0474_Porygon-Z.png b/static/images/pokemon/0474_Porygon-Z.png new file mode 100644 index 0000000..28023d4 Binary files /dev/null and b/static/images/pokemon/0474_Porygon-Z.png differ diff --git a/static/images/pokemon/0475_Gallade.png b/static/images/pokemon/0475_Gallade.png new file mode 100644 index 0000000..09b29e5 Binary files /dev/null and b/static/images/pokemon/0475_Gallade.png differ diff --git a/static/images/pokemon/0476_Probopass.png b/static/images/pokemon/0476_Probopass.png new file mode 100644 index 0000000..93ec2d6 Binary files /dev/null and b/static/images/pokemon/0476_Probopass.png differ diff --git a/static/images/pokemon/0477_Dusknoir.png b/static/images/pokemon/0477_Dusknoir.png new file mode 100644 index 0000000..072345b Binary files /dev/null and b/static/images/pokemon/0477_Dusknoir.png differ diff --git a/static/images/pokemon/0478_Froslass.png b/static/images/pokemon/0478_Froslass.png new file mode 100644 index 0000000..bdf26d8 Binary files /dev/null and b/static/images/pokemon/0478_Froslass.png differ diff --git a/static/images/pokemon/0479_Rotom.png b/static/images/pokemon/0479_Rotom.png new file mode 100644 index 0000000..d015cd3 Binary files /dev/null and b/static/images/pokemon/0479_Rotom.png differ diff --git a/static/images/pokemon/0479_Rotom_(Fan_Rotom).png b/static/images/pokemon/0479_Rotom_(Fan_Rotom).png new file mode 100644 index 0000000..ebae4e4 Binary files /dev/null and b/static/images/pokemon/0479_Rotom_(Fan_Rotom).png differ diff --git a/static/images/pokemon/0479_Rotom_(Frost_Rotom).png b/static/images/pokemon/0479_Rotom_(Frost_Rotom).png new file mode 100644 index 0000000..6bc1aa6 Binary files /dev/null and b/static/images/pokemon/0479_Rotom_(Frost_Rotom).png differ diff --git a/static/images/pokemon/0479_Rotom_(Heat_Rotom).png b/static/images/pokemon/0479_Rotom_(Heat_Rotom).png new file mode 100644 index 0000000..62d8c44 Binary files /dev/null and b/static/images/pokemon/0479_Rotom_(Heat_Rotom).png differ diff --git a/static/images/pokemon/0479_Rotom_(Mow_Rotom).png b/static/images/pokemon/0479_Rotom_(Mow_Rotom).png new file mode 100644 index 0000000..ea8d4f9 Binary files /dev/null and b/static/images/pokemon/0479_Rotom_(Mow_Rotom).png differ diff --git a/static/images/pokemon/0479_Rotom_(Wash_Rotom).png b/static/images/pokemon/0479_Rotom_(Wash_Rotom).png new file mode 100644 index 0000000..8b85753 Binary files /dev/null and b/static/images/pokemon/0479_Rotom_(Wash_Rotom).png differ diff --git a/static/images/pokemon/0480_Uxie.png b/static/images/pokemon/0480_Uxie.png new file mode 100644 index 0000000..b46f372 Binary files /dev/null and b/static/images/pokemon/0480_Uxie.png differ diff --git a/static/images/pokemon/0481_Mesprit.png b/static/images/pokemon/0481_Mesprit.png new file mode 100644 index 0000000..7076dce Binary files /dev/null and b/static/images/pokemon/0481_Mesprit.png differ diff --git a/static/images/pokemon/0482_Azelf.png b/static/images/pokemon/0482_Azelf.png new file mode 100644 index 0000000..63975e8 Binary files /dev/null and b/static/images/pokemon/0482_Azelf.png differ diff --git a/static/images/pokemon/0483_Dialga.png b/static/images/pokemon/0483_Dialga.png new file mode 100644 index 0000000..065496e Binary files /dev/null and b/static/images/pokemon/0483_Dialga.png differ diff --git a/static/images/pokemon/0484_Palkia.png b/static/images/pokemon/0484_Palkia.png new file mode 100644 index 0000000..d524803 Binary files /dev/null and b/static/images/pokemon/0484_Palkia.png differ diff --git a/static/images/pokemon/0485_Heatran.png b/static/images/pokemon/0485_Heatran.png new file mode 100644 index 0000000..6bec17d Binary files /dev/null and b/static/images/pokemon/0485_Heatran.png differ diff --git a/static/images/pokemon/0486_Regigigas.png b/static/images/pokemon/0486_Regigigas.png new file mode 100644 index 0000000..732c4b5 Binary files /dev/null and b/static/images/pokemon/0486_Regigigas.png differ diff --git a/static/images/pokemon/0487_Giratina.png b/static/images/pokemon/0487_Giratina.png new file mode 100644 index 0000000..5375670 Binary files /dev/null and b/static/images/pokemon/0487_Giratina.png differ diff --git a/static/images/pokemon/0488_Cresselia.png b/static/images/pokemon/0488_Cresselia.png new file mode 100644 index 0000000..9f7a98c Binary files /dev/null and b/static/images/pokemon/0488_Cresselia.png differ diff --git a/static/images/pokemon/0489_Phione.png b/static/images/pokemon/0489_Phione.png new file mode 100644 index 0000000..af43955 Binary files /dev/null and b/static/images/pokemon/0489_Phione.png differ diff --git a/static/images/pokemon/0490_Manaphy.png b/static/images/pokemon/0490_Manaphy.png new file mode 100644 index 0000000..6210173 Binary files /dev/null and b/static/images/pokemon/0490_Manaphy.png differ diff --git a/static/images/pokemon/0491_Darkrai.png b/static/images/pokemon/0491_Darkrai.png new file mode 100644 index 0000000..8b25a09 Binary files /dev/null and b/static/images/pokemon/0491_Darkrai.png differ diff --git a/static/images/pokemon/0492_Shaymin.png b/static/images/pokemon/0492_Shaymin.png new file mode 100644 index 0000000..1e61f34 Binary files /dev/null and b/static/images/pokemon/0492_Shaymin.png differ diff --git a/static/images/pokemon/0492_Shaymin_(Sky_Forme).png b/static/images/pokemon/0492_Shaymin_(Sky_Forme).png new file mode 100644 index 0000000..02f8f8f Binary files /dev/null and b/static/images/pokemon/0492_Shaymin_(Sky_Forme).png differ diff --git a/static/images/pokemon/0493_Arceus.png b/static/images/pokemon/0493_Arceus.png new file mode 100644 index 0000000..43b7396 Binary files /dev/null and b/static/images/pokemon/0493_Arceus.png differ diff --git a/static/images/pokemon/0494_Victini.png b/static/images/pokemon/0494_Victini.png new file mode 100644 index 0000000..31763f2 Binary files /dev/null and b/static/images/pokemon/0494_Victini.png differ diff --git a/static/images/pokemon/0495_Snivy.png b/static/images/pokemon/0495_Snivy.png new file mode 100644 index 0000000..5523ba1 Binary files /dev/null and b/static/images/pokemon/0495_Snivy.png differ diff --git a/static/images/pokemon/0496_Servine.png b/static/images/pokemon/0496_Servine.png new file mode 100644 index 0000000..3876720 Binary files /dev/null and b/static/images/pokemon/0496_Servine.png differ diff --git a/static/images/pokemon/0497_Serperior.png b/static/images/pokemon/0497_Serperior.png new file mode 100644 index 0000000..46fe92e Binary files /dev/null and b/static/images/pokemon/0497_Serperior.png differ diff --git a/static/images/pokemon/0498_Tepig.png b/static/images/pokemon/0498_Tepig.png new file mode 100644 index 0000000..1077910 Binary files /dev/null and b/static/images/pokemon/0498_Tepig.png differ diff --git a/static/images/pokemon/0499_Pignite.png b/static/images/pokemon/0499_Pignite.png new file mode 100644 index 0000000..0ae3371 Binary files /dev/null and b/static/images/pokemon/0499_Pignite.png differ diff --git a/static/images/pokemon/0500_Emboar.png b/static/images/pokemon/0500_Emboar.png new file mode 100644 index 0000000..b77e055 Binary files /dev/null and b/static/images/pokemon/0500_Emboar.png differ diff --git a/static/images/pokemon/0501_Oshawott.png b/static/images/pokemon/0501_Oshawott.png new file mode 100644 index 0000000..9d17680 Binary files /dev/null and b/static/images/pokemon/0501_Oshawott.png differ diff --git a/static/images/pokemon/0502_Dewott.png b/static/images/pokemon/0502_Dewott.png new file mode 100644 index 0000000..c4a9ead Binary files /dev/null and b/static/images/pokemon/0502_Dewott.png differ diff --git a/static/images/pokemon/0503_Samurott.png b/static/images/pokemon/0503_Samurott.png new file mode 100644 index 0000000..1ae0480 Binary files /dev/null and b/static/images/pokemon/0503_Samurott.png differ diff --git a/static/images/pokemon/0503_Samurott_(Hisuian_Form).png b/static/images/pokemon/0503_Samurott_(Hisuian_Form).png new file mode 100644 index 0000000..cd97067 Binary files /dev/null and b/static/images/pokemon/0503_Samurott_(Hisuian_Form).png differ diff --git a/static/images/pokemon/0504_Patrat.png b/static/images/pokemon/0504_Patrat.png new file mode 100644 index 0000000..7ace943 Binary files /dev/null and b/static/images/pokemon/0504_Patrat.png differ diff --git a/static/images/pokemon/0505_Watchog.png b/static/images/pokemon/0505_Watchog.png new file mode 100644 index 0000000..857cbb8 Binary files /dev/null and b/static/images/pokemon/0505_Watchog.png differ diff --git a/static/images/pokemon/0506_Lillipup.png b/static/images/pokemon/0506_Lillipup.png new file mode 100644 index 0000000..97d2dee Binary files /dev/null and b/static/images/pokemon/0506_Lillipup.png differ diff --git a/static/images/pokemon/0507_Herdier.png b/static/images/pokemon/0507_Herdier.png new file mode 100644 index 0000000..01b70f9 Binary files /dev/null and b/static/images/pokemon/0507_Herdier.png differ diff --git a/static/images/pokemon/0508_Stoutland.png b/static/images/pokemon/0508_Stoutland.png new file mode 100644 index 0000000..23dcfb2 Binary files /dev/null and b/static/images/pokemon/0508_Stoutland.png differ diff --git a/static/images/pokemon/0509_Purrloin.png b/static/images/pokemon/0509_Purrloin.png new file mode 100644 index 0000000..51c09c0 Binary files /dev/null and b/static/images/pokemon/0509_Purrloin.png differ diff --git a/static/images/pokemon/0510_Liepard.png b/static/images/pokemon/0510_Liepard.png new file mode 100644 index 0000000..7992f1d Binary files /dev/null and b/static/images/pokemon/0510_Liepard.png differ diff --git a/static/images/pokemon/0511_Pansage.png b/static/images/pokemon/0511_Pansage.png new file mode 100644 index 0000000..d0a78e9 Binary files /dev/null and b/static/images/pokemon/0511_Pansage.png differ diff --git a/static/images/pokemon/0512_Simisage.png b/static/images/pokemon/0512_Simisage.png new file mode 100644 index 0000000..bbff9d5 Binary files /dev/null and b/static/images/pokemon/0512_Simisage.png differ diff --git a/static/images/pokemon/0513_Pansear.png b/static/images/pokemon/0513_Pansear.png new file mode 100644 index 0000000..64a0bc0 Binary files /dev/null and b/static/images/pokemon/0513_Pansear.png differ diff --git a/static/images/pokemon/0514_Simisear.png b/static/images/pokemon/0514_Simisear.png new file mode 100644 index 0000000..47d6aa9 Binary files /dev/null and b/static/images/pokemon/0514_Simisear.png differ diff --git a/static/images/pokemon/0515_Panpour.png b/static/images/pokemon/0515_Panpour.png new file mode 100644 index 0000000..0c8d247 Binary files /dev/null and b/static/images/pokemon/0515_Panpour.png differ diff --git a/static/images/pokemon/0516_Simipour.png b/static/images/pokemon/0516_Simipour.png new file mode 100644 index 0000000..7d682c2 Binary files /dev/null and b/static/images/pokemon/0516_Simipour.png differ diff --git a/static/images/pokemon/0517_Munna.png b/static/images/pokemon/0517_Munna.png new file mode 100644 index 0000000..ba085c3 Binary files /dev/null and b/static/images/pokemon/0517_Munna.png differ diff --git a/static/images/pokemon/0518_Musharna.png b/static/images/pokemon/0518_Musharna.png new file mode 100644 index 0000000..02e42b4 Binary files /dev/null and b/static/images/pokemon/0518_Musharna.png differ diff --git a/static/images/pokemon/0519_Pidove.png b/static/images/pokemon/0519_Pidove.png new file mode 100644 index 0000000..e7cee59 Binary files /dev/null and b/static/images/pokemon/0519_Pidove.png differ diff --git a/static/images/pokemon/0520_Tranquill.png b/static/images/pokemon/0520_Tranquill.png new file mode 100644 index 0000000..93deb3b Binary files /dev/null and b/static/images/pokemon/0520_Tranquill.png differ diff --git a/static/images/pokemon/0521_Unfezant.png b/static/images/pokemon/0521_Unfezant.png new file mode 100644 index 0000000..6670771 Binary files /dev/null and b/static/images/pokemon/0521_Unfezant.png differ diff --git a/static/images/pokemon/0522_Blitzle.png b/static/images/pokemon/0522_Blitzle.png new file mode 100644 index 0000000..6560a96 Binary files /dev/null and b/static/images/pokemon/0522_Blitzle.png differ diff --git a/static/images/pokemon/0523_Zebstrika.png b/static/images/pokemon/0523_Zebstrika.png new file mode 100644 index 0000000..c3f3939 Binary files /dev/null and b/static/images/pokemon/0523_Zebstrika.png differ diff --git a/static/images/pokemon/0524_Roggenrola.png b/static/images/pokemon/0524_Roggenrola.png new file mode 100644 index 0000000..488ff36 Binary files /dev/null and b/static/images/pokemon/0524_Roggenrola.png differ diff --git a/static/images/pokemon/0525_Boldore.png b/static/images/pokemon/0525_Boldore.png new file mode 100644 index 0000000..c00235f Binary files /dev/null and b/static/images/pokemon/0525_Boldore.png differ diff --git a/static/images/pokemon/0526_Gigalith.png b/static/images/pokemon/0526_Gigalith.png new file mode 100644 index 0000000..6de9d9c Binary files /dev/null and b/static/images/pokemon/0526_Gigalith.png differ diff --git a/static/images/pokemon/0527_Woobat.png b/static/images/pokemon/0527_Woobat.png new file mode 100644 index 0000000..f664c3b Binary files /dev/null and b/static/images/pokemon/0527_Woobat.png differ diff --git a/static/images/pokemon/0528_Swoobat.png b/static/images/pokemon/0528_Swoobat.png new file mode 100644 index 0000000..f0411d4 Binary files /dev/null and b/static/images/pokemon/0528_Swoobat.png differ diff --git a/static/images/pokemon/0529_Drilbur.png b/static/images/pokemon/0529_Drilbur.png new file mode 100644 index 0000000..a8b5828 Binary files /dev/null and b/static/images/pokemon/0529_Drilbur.png differ diff --git a/static/images/pokemon/0530_Excadrill.png b/static/images/pokemon/0530_Excadrill.png new file mode 100644 index 0000000..920fb19 Binary files /dev/null and b/static/images/pokemon/0530_Excadrill.png differ diff --git a/static/images/pokemon/0531_Audino.png b/static/images/pokemon/0531_Audino.png new file mode 100644 index 0000000..2c176d8 Binary files /dev/null and b/static/images/pokemon/0531_Audino.png differ diff --git a/static/images/pokemon/0532_Timburr.png b/static/images/pokemon/0532_Timburr.png new file mode 100644 index 0000000..8c2181b Binary files /dev/null and b/static/images/pokemon/0532_Timburr.png differ diff --git a/static/images/pokemon/0533_Gurdurr.png b/static/images/pokemon/0533_Gurdurr.png new file mode 100644 index 0000000..fc1f521 Binary files /dev/null and b/static/images/pokemon/0533_Gurdurr.png differ diff --git a/static/images/pokemon/0534_Conkeldurr.png b/static/images/pokemon/0534_Conkeldurr.png new file mode 100644 index 0000000..cffa6b5 Binary files /dev/null and b/static/images/pokemon/0534_Conkeldurr.png differ diff --git a/static/images/pokemon/0535_Tympole.png b/static/images/pokemon/0535_Tympole.png new file mode 100644 index 0000000..60f0da2 Binary files /dev/null and b/static/images/pokemon/0535_Tympole.png differ diff --git a/static/images/pokemon/0536_Palpitoad.png b/static/images/pokemon/0536_Palpitoad.png new file mode 100644 index 0000000..242baf1 Binary files /dev/null and b/static/images/pokemon/0536_Palpitoad.png differ diff --git a/static/images/pokemon/0537_Seismitoad.png b/static/images/pokemon/0537_Seismitoad.png new file mode 100644 index 0000000..a521da8 Binary files /dev/null and b/static/images/pokemon/0537_Seismitoad.png differ diff --git a/static/images/pokemon/0538_Throh.png b/static/images/pokemon/0538_Throh.png new file mode 100644 index 0000000..ed61666 Binary files /dev/null and b/static/images/pokemon/0538_Throh.png differ diff --git a/static/images/pokemon/0539_Sawk.png b/static/images/pokemon/0539_Sawk.png new file mode 100644 index 0000000..b4e6d2c Binary files /dev/null and b/static/images/pokemon/0539_Sawk.png differ diff --git a/static/images/pokemon/0540_Sewaddle.png b/static/images/pokemon/0540_Sewaddle.png new file mode 100644 index 0000000..9d22c4f Binary files /dev/null and b/static/images/pokemon/0540_Sewaddle.png differ diff --git a/static/images/pokemon/0541_Swadloon.png b/static/images/pokemon/0541_Swadloon.png new file mode 100644 index 0000000..89e723f Binary files /dev/null and b/static/images/pokemon/0541_Swadloon.png differ diff --git a/static/images/pokemon/0542_Leavanny.png b/static/images/pokemon/0542_Leavanny.png new file mode 100644 index 0000000..5c9077f Binary files /dev/null and b/static/images/pokemon/0542_Leavanny.png differ diff --git a/static/images/pokemon/0543_Venipede.png b/static/images/pokemon/0543_Venipede.png new file mode 100644 index 0000000..40edb02 Binary files /dev/null and b/static/images/pokemon/0543_Venipede.png differ diff --git a/static/images/pokemon/0544_Whirlipede.png b/static/images/pokemon/0544_Whirlipede.png new file mode 100644 index 0000000..38b3d07 Binary files /dev/null and b/static/images/pokemon/0544_Whirlipede.png differ diff --git a/static/images/pokemon/0545_Scolipede.png b/static/images/pokemon/0545_Scolipede.png new file mode 100644 index 0000000..5688fcf Binary files /dev/null and b/static/images/pokemon/0545_Scolipede.png differ diff --git a/static/images/pokemon/0546_Cottonee.png b/static/images/pokemon/0546_Cottonee.png new file mode 100644 index 0000000..ce9c084 Binary files /dev/null and b/static/images/pokemon/0546_Cottonee.png differ diff --git a/static/images/pokemon/0547_Whimsicott.png b/static/images/pokemon/0547_Whimsicott.png new file mode 100644 index 0000000..9507109 Binary files /dev/null and b/static/images/pokemon/0547_Whimsicott.png differ diff --git a/static/images/pokemon/0548_Petilil.png b/static/images/pokemon/0548_Petilil.png new file mode 100644 index 0000000..392217a Binary files /dev/null and b/static/images/pokemon/0548_Petilil.png differ diff --git a/static/images/pokemon/0549_Lilligant.png b/static/images/pokemon/0549_Lilligant.png new file mode 100644 index 0000000..1339fd3 Binary files /dev/null and b/static/images/pokemon/0549_Lilligant.png differ diff --git a/static/images/pokemon/0549_Lilligant_(Hisuian_Form).png b/static/images/pokemon/0549_Lilligant_(Hisuian_Form).png new file mode 100644 index 0000000..c26518a Binary files /dev/null and b/static/images/pokemon/0549_Lilligant_(Hisuian_Form).png differ diff --git a/static/images/pokemon/0550_Basculin.png b/static/images/pokemon/0550_Basculin.png new file mode 100644 index 0000000..48b6a99 Binary files /dev/null and b/static/images/pokemon/0550_Basculin.png differ diff --git a/static/images/pokemon/0550_Basculin_(Blue-Striped_Form).png b/static/images/pokemon/0550_Basculin_(Blue-Striped_Form).png new file mode 100644 index 0000000..a85384d Binary files /dev/null and b/static/images/pokemon/0550_Basculin_(Blue-Striped_Form).png differ diff --git a/static/images/pokemon/0550_Basculin_(White-Striped_Form).png b/static/images/pokemon/0550_Basculin_(White-Striped_Form).png new file mode 100644 index 0000000..0228f7e Binary files /dev/null and b/static/images/pokemon/0550_Basculin_(White-Striped_Form).png differ diff --git a/static/images/pokemon/0551_Sandile.png b/static/images/pokemon/0551_Sandile.png new file mode 100644 index 0000000..9be0f6d Binary files /dev/null and b/static/images/pokemon/0551_Sandile.png differ diff --git a/static/images/pokemon/0552_Krokorok.png b/static/images/pokemon/0552_Krokorok.png new file mode 100644 index 0000000..3305af8 Binary files /dev/null and b/static/images/pokemon/0552_Krokorok.png differ diff --git a/static/images/pokemon/0553_Krookodile.png b/static/images/pokemon/0553_Krookodile.png new file mode 100644 index 0000000..a970295 Binary files /dev/null and b/static/images/pokemon/0553_Krookodile.png differ diff --git a/static/images/pokemon/0554_Darumaka.png b/static/images/pokemon/0554_Darumaka.png new file mode 100644 index 0000000..eeeef6c Binary files /dev/null and b/static/images/pokemon/0554_Darumaka.png differ diff --git a/static/images/pokemon/0554_Darumaka_(Galarian_Form).png b/static/images/pokemon/0554_Darumaka_(Galarian_Form).png new file mode 100644 index 0000000..b92e7e3 Binary files /dev/null and b/static/images/pokemon/0554_Darumaka_(Galarian_Form).png differ diff --git a/static/images/pokemon/0555_Darmanitan.png b/static/images/pokemon/0555_Darmanitan.png new file mode 100644 index 0000000..2ada0c4 Binary files /dev/null and b/static/images/pokemon/0555_Darmanitan.png differ diff --git a/static/images/pokemon/0555_Darmanitan_(Galarian_Form).png b/static/images/pokemon/0555_Darmanitan_(Galarian_Form).png new file mode 100644 index 0000000..89e9959 Binary files /dev/null and b/static/images/pokemon/0555_Darmanitan_(Galarian_Form).png differ diff --git a/static/images/pokemon/0556_Maractus.png b/static/images/pokemon/0556_Maractus.png new file mode 100644 index 0000000..012d826 Binary files /dev/null and b/static/images/pokemon/0556_Maractus.png differ diff --git a/static/images/pokemon/0557_Dwebble.png b/static/images/pokemon/0557_Dwebble.png new file mode 100644 index 0000000..41e601f Binary files /dev/null and b/static/images/pokemon/0557_Dwebble.png differ diff --git a/static/images/pokemon/0558_Crustle.png b/static/images/pokemon/0558_Crustle.png new file mode 100644 index 0000000..cf8613e Binary files /dev/null and b/static/images/pokemon/0558_Crustle.png differ diff --git a/static/images/pokemon/0559_Scraggy.png b/static/images/pokemon/0559_Scraggy.png new file mode 100644 index 0000000..0d103bb Binary files /dev/null and b/static/images/pokemon/0559_Scraggy.png differ diff --git a/static/images/pokemon/0560_Scrafty.png b/static/images/pokemon/0560_Scrafty.png new file mode 100644 index 0000000..47d260d Binary files /dev/null and b/static/images/pokemon/0560_Scrafty.png differ diff --git a/static/images/pokemon/0561_Sigilyph.png b/static/images/pokemon/0561_Sigilyph.png new file mode 100644 index 0000000..c6d397e Binary files /dev/null and b/static/images/pokemon/0561_Sigilyph.png differ diff --git a/static/images/pokemon/0562_Yamask.png b/static/images/pokemon/0562_Yamask.png new file mode 100644 index 0000000..985bc25 Binary files /dev/null and b/static/images/pokemon/0562_Yamask.png differ diff --git a/static/images/pokemon/0562_Yamask_(Galarian_Form).png b/static/images/pokemon/0562_Yamask_(Galarian_Form).png new file mode 100644 index 0000000..be04cc9 Binary files /dev/null and b/static/images/pokemon/0562_Yamask_(Galarian_Form).png differ diff --git a/static/images/pokemon/0563_Cofagrigus.png b/static/images/pokemon/0563_Cofagrigus.png new file mode 100644 index 0000000..4bdaef9 Binary files /dev/null and b/static/images/pokemon/0563_Cofagrigus.png differ diff --git a/static/images/pokemon/0564_Tirtouga.png b/static/images/pokemon/0564_Tirtouga.png new file mode 100644 index 0000000..ad1cef6 Binary files /dev/null and b/static/images/pokemon/0564_Tirtouga.png differ diff --git a/static/images/pokemon/0565_Carracosta.png b/static/images/pokemon/0565_Carracosta.png new file mode 100644 index 0000000..af490ed Binary files /dev/null and b/static/images/pokemon/0565_Carracosta.png differ diff --git a/static/images/pokemon/0566_Archen.png b/static/images/pokemon/0566_Archen.png new file mode 100644 index 0000000..08a8598 Binary files /dev/null and b/static/images/pokemon/0566_Archen.png differ diff --git a/static/images/pokemon/0567_Archeops.png b/static/images/pokemon/0567_Archeops.png new file mode 100644 index 0000000..5ea639a Binary files /dev/null and b/static/images/pokemon/0567_Archeops.png differ diff --git a/static/images/pokemon/0568_Trubbish.png b/static/images/pokemon/0568_Trubbish.png new file mode 100644 index 0000000..b002fd2 Binary files /dev/null and b/static/images/pokemon/0568_Trubbish.png differ diff --git a/static/images/pokemon/0569_Garbodor.png b/static/images/pokemon/0569_Garbodor.png new file mode 100644 index 0000000..8f3c404 Binary files /dev/null and b/static/images/pokemon/0569_Garbodor.png differ diff --git a/static/images/pokemon/0570_Zorua.png b/static/images/pokemon/0570_Zorua.png new file mode 100644 index 0000000..d0bdfd1 Binary files /dev/null and b/static/images/pokemon/0570_Zorua.png differ diff --git a/static/images/pokemon/0570_Zorua_(Hisuian_Form).png b/static/images/pokemon/0570_Zorua_(Hisuian_Form).png new file mode 100644 index 0000000..e63aac9 Binary files /dev/null and b/static/images/pokemon/0570_Zorua_(Hisuian_Form).png differ diff --git a/static/images/pokemon/0571_Zoroark.png b/static/images/pokemon/0571_Zoroark.png new file mode 100644 index 0000000..fef323d Binary files /dev/null and b/static/images/pokemon/0571_Zoroark.png differ diff --git a/static/images/pokemon/0571_Zoroark_(Hisuian_Form).png b/static/images/pokemon/0571_Zoroark_(Hisuian_Form).png new file mode 100644 index 0000000..eb228f9 Binary files /dev/null and b/static/images/pokemon/0571_Zoroark_(Hisuian_Form).png differ diff --git a/static/images/pokemon/0572_Minccino.png b/static/images/pokemon/0572_Minccino.png new file mode 100644 index 0000000..6233e53 Binary files /dev/null and b/static/images/pokemon/0572_Minccino.png differ diff --git a/static/images/pokemon/0573_Cinccino.png b/static/images/pokemon/0573_Cinccino.png new file mode 100644 index 0000000..1b0229d Binary files /dev/null and b/static/images/pokemon/0573_Cinccino.png differ diff --git a/static/images/pokemon/0574_Gothita.png b/static/images/pokemon/0574_Gothita.png new file mode 100644 index 0000000..4515c27 Binary files /dev/null and b/static/images/pokemon/0574_Gothita.png differ diff --git a/static/images/pokemon/0575_Gothorita.png b/static/images/pokemon/0575_Gothorita.png new file mode 100644 index 0000000..42eb742 Binary files /dev/null and b/static/images/pokemon/0575_Gothorita.png differ diff --git a/static/images/pokemon/0576_Gothitelle.png b/static/images/pokemon/0576_Gothitelle.png new file mode 100644 index 0000000..3c4d27a Binary files /dev/null and b/static/images/pokemon/0576_Gothitelle.png differ diff --git a/static/images/pokemon/0577_Solosis.png b/static/images/pokemon/0577_Solosis.png new file mode 100644 index 0000000..e45cc5d Binary files /dev/null and b/static/images/pokemon/0577_Solosis.png differ diff --git a/static/images/pokemon/0578_Duosion.png b/static/images/pokemon/0578_Duosion.png new file mode 100644 index 0000000..c72a7d9 Binary files /dev/null and b/static/images/pokemon/0578_Duosion.png differ diff --git a/static/images/pokemon/0579_Reuniclus.png b/static/images/pokemon/0579_Reuniclus.png new file mode 100644 index 0000000..f6dcad2 Binary files /dev/null and b/static/images/pokemon/0579_Reuniclus.png differ diff --git a/static/images/pokemon/0580_Ducklett.png b/static/images/pokemon/0580_Ducklett.png new file mode 100644 index 0000000..cd09070 Binary files /dev/null and b/static/images/pokemon/0580_Ducklett.png differ diff --git a/static/images/pokemon/0581_Swanna.png b/static/images/pokemon/0581_Swanna.png new file mode 100644 index 0000000..ede5a5f Binary files /dev/null and b/static/images/pokemon/0581_Swanna.png differ diff --git a/static/images/pokemon/0582_Vanillite.png b/static/images/pokemon/0582_Vanillite.png new file mode 100644 index 0000000..b33213b Binary files /dev/null and b/static/images/pokemon/0582_Vanillite.png differ diff --git a/static/images/pokemon/0583_Vanillish.png b/static/images/pokemon/0583_Vanillish.png new file mode 100644 index 0000000..031f7fd Binary files /dev/null and b/static/images/pokemon/0583_Vanillish.png differ diff --git a/static/images/pokemon/0584_Vanilluxe.png b/static/images/pokemon/0584_Vanilluxe.png new file mode 100644 index 0000000..6aa7911 Binary files /dev/null and b/static/images/pokemon/0584_Vanilluxe.png differ diff --git a/static/images/pokemon/0585_Deerling.png b/static/images/pokemon/0585_Deerling.png new file mode 100644 index 0000000..89fcd1a Binary files /dev/null and b/static/images/pokemon/0585_Deerling.png differ diff --git a/static/images/pokemon/0585_Deerling_(Autumn_Form).png b/static/images/pokemon/0585_Deerling_(Autumn_Form).png new file mode 100644 index 0000000..96c7426 Binary files /dev/null and b/static/images/pokemon/0585_Deerling_(Autumn_Form).png differ diff --git a/static/images/pokemon/0585_Deerling_(Summer_Form).png b/static/images/pokemon/0585_Deerling_(Summer_Form).png new file mode 100644 index 0000000..a4e88c9 Binary files /dev/null and b/static/images/pokemon/0585_Deerling_(Summer_Form).png differ diff --git a/static/images/pokemon/0585_Deerling_(Winter_Form).png b/static/images/pokemon/0585_Deerling_(Winter_Form).png new file mode 100644 index 0000000..d056b43 Binary files /dev/null and b/static/images/pokemon/0585_Deerling_(Winter_Form).png differ diff --git a/static/images/pokemon/0586_Sawsbuck.png b/static/images/pokemon/0586_Sawsbuck.png new file mode 100644 index 0000000..d424e83 Binary files /dev/null and b/static/images/pokemon/0586_Sawsbuck.png differ diff --git a/static/images/pokemon/0586_Sawsbuck_(Autumn_Form).png b/static/images/pokemon/0586_Sawsbuck_(Autumn_Form).png new file mode 100644 index 0000000..e150f0c Binary files /dev/null and b/static/images/pokemon/0586_Sawsbuck_(Autumn_Form).png differ diff --git a/static/images/pokemon/0586_Sawsbuck_(Summer_Form).png b/static/images/pokemon/0586_Sawsbuck_(Summer_Form).png new file mode 100644 index 0000000..c377bf9 Binary files /dev/null and b/static/images/pokemon/0586_Sawsbuck_(Summer_Form).png differ diff --git a/static/images/pokemon/0586_Sawsbuck_(Winter_Form).png b/static/images/pokemon/0586_Sawsbuck_(Winter_Form).png new file mode 100644 index 0000000..83e58b3 Binary files /dev/null and b/static/images/pokemon/0586_Sawsbuck_(Winter_Form).png differ diff --git a/static/images/pokemon/0587_Emolga.png b/static/images/pokemon/0587_Emolga.png new file mode 100644 index 0000000..6a832cc Binary files /dev/null and b/static/images/pokemon/0587_Emolga.png differ diff --git a/static/images/pokemon/0588_Karrablast.png b/static/images/pokemon/0588_Karrablast.png new file mode 100644 index 0000000..e637584 Binary files /dev/null and b/static/images/pokemon/0588_Karrablast.png differ diff --git a/static/images/pokemon/0589_Escavalier.png b/static/images/pokemon/0589_Escavalier.png new file mode 100644 index 0000000..5c7056d Binary files /dev/null and b/static/images/pokemon/0589_Escavalier.png differ diff --git a/static/images/pokemon/0590_Foongus.png b/static/images/pokemon/0590_Foongus.png new file mode 100644 index 0000000..910ffdf Binary files /dev/null and b/static/images/pokemon/0590_Foongus.png differ diff --git a/static/images/pokemon/0591_Amoonguss.png b/static/images/pokemon/0591_Amoonguss.png new file mode 100644 index 0000000..015d18b Binary files /dev/null and b/static/images/pokemon/0591_Amoonguss.png differ diff --git a/static/images/pokemon/0592_Frillish.png b/static/images/pokemon/0592_Frillish.png new file mode 100644 index 0000000..7bff864 Binary files /dev/null and b/static/images/pokemon/0592_Frillish.png differ diff --git a/static/images/pokemon/0593_Jellicent.png b/static/images/pokemon/0593_Jellicent.png new file mode 100644 index 0000000..35734d2 Binary files /dev/null and b/static/images/pokemon/0593_Jellicent.png differ diff --git a/static/images/pokemon/0594_Alomomola.png b/static/images/pokemon/0594_Alomomola.png new file mode 100644 index 0000000..748bd45 Binary files /dev/null and b/static/images/pokemon/0594_Alomomola.png differ diff --git a/static/images/pokemon/0595_Joltik.png b/static/images/pokemon/0595_Joltik.png new file mode 100644 index 0000000..addb0ac Binary files /dev/null and b/static/images/pokemon/0595_Joltik.png differ diff --git a/static/images/pokemon/0596_Galvantula.png b/static/images/pokemon/0596_Galvantula.png new file mode 100644 index 0000000..92af2a3 Binary files /dev/null and b/static/images/pokemon/0596_Galvantula.png differ diff --git a/static/images/pokemon/0597_Ferroseed.png b/static/images/pokemon/0597_Ferroseed.png new file mode 100644 index 0000000..8d8b696 Binary files /dev/null and b/static/images/pokemon/0597_Ferroseed.png differ diff --git a/static/images/pokemon/0598_Ferrothorn.png b/static/images/pokemon/0598_Ferrothorn.png new file mode 100644 index 0000000..be1811b Binary files /dev/null and b/static/images/pokemon/0598_Ferrothorn.png differ diff --git a/static/images/pokemon/0599_Klink.png b/static/images/pokemon/0599_Klink.png new file mode 100644 index 0000000..21332b7 Binary files /dev/null and b/static/images/pokemon/0599_Klink.png differ diff --git a/static/images/pokemon/0600_Klang.png b/static/images/pokemon/0600_Klang.png new file mode 100644 index 0000000..6589e85 Binary files /dev/null and b/static/images/pokemon/0600_Klang.png differ diff --git a/static/images/pokemon/0601_Klinklang.png b/static/images/pokemon/0601_Klinklang.png new file mode 100644 index 0000000..e9533e2 Binary files /dev/null and b/static/images/pokemon/0601_Klinklang.png differ diff --git a/static/images/pokemon/0602_Tynamo.png b/static/images/pokemon/0602_Tynamo.png new file mode 100644 index 0000000..db364bb Binary files /dev/null and b/static/images/pokemon/0602_Tynamo.png differ diff --git a/static/images/pokemon/0603_Eelektrik.png b/static/images/pokemon/0603_Eelektrik.png new file mode 100644 index 0000000..7572367 Binary files /dev/null and b/static/images/pokemon/0603_Eelektrik.png differ diff --git a/static/images/pokemon/0604_Eelektross.png b/static/images/pokemon/0604_Eelektross.png new file mode 100644 index 0000000..809554e Binary files /dev/null and b/static/images/pokemon/0604_Eelektross.png differ diff --git a/static/images/pokemon/0605_Elgyem.png b/static/images/pokemon/0605_Elgyem.png new file mode 100644 index 0000000..2d47db9 Binary files /dev/null and b/static/images/pokemon/0605_Elgyem.png differ diff --git a/static/images/pokemon/0606_Beheeyem.png b/static/images/pokemon/0606_Beheeyem.png new file mode 100644 index 0000000..ac2a1e6 Binary files /dev/null and b/static/images/pokemon/0606_Beheeyem.png differ diff --git a/static/images/pokemon/0607_Litwick.png b/static/images/pokemon/0607_Litwick.png new file mode 100644 index 0000000..6ef5dbb Binary files /dev/null and b/static/images/pokemon/0607_Litwick.png differ diff --git a/static/images/pokemon/0608_Lampent.png b/static/images/pokemon/0608_Lampent.png new file mode 100644 index 0000000..f4980b4 Binary files /dev/null and b/static/images/pokemon/0608_Lampent.png differ diff --git a/static/images/pokemon/0609_Chandelure.png b/static/images/pokemon/0609_Chandelure.png new file mode 100644 index 0000000..85940db Binary files /dev/null and b/static/images/pokemon/0609_Chandelure.png differ diff --git a/static/images/pokemon/0610_Axew.png b/static/images/pokemon/0610_Axew.png new file mode 100644 index 0000000..1a57eab Binary files /dev/null and b/static/images/pokemon/0610_Axew.png differ diff --git a/static/images/pokemon/0611_Fraxure.png b/static/images/pokemon/0611_Fraxure.png new file mode 100644 index 0000000..f9f2ac8 Binary files /dev/null and b/static/images/pokemon/0611_Fraxure.png differ diff --git a/static/images/pokemon/0612_Haxorus.png b/static/images/pokemon/0612_Haxorus.png new file mode 100644 index 0000000..77c5367 Binary files /dev/null and b/static/images/pokemon/0612_Haxorus.png differ diff --git a/static/images/pokemon/0613_Cubchoo.png b/static/images/pokemon/0613_Cubchoo.png new file mode 100644 index 0000000..72b8122 Binary files /dev/null and b/static/images/pokemon/0613_Cubchoo.png differ diff --git a/static/images/pokemon/0614_Beartic.png b/static/images/pokemon/0614_Beartic.png new file mode 100644 index 0000000..1a1ba02 Binary files /dev/null and b/static/images/pokemon/0614_Beartic.png differ diff --git a/static/images/pokemon/0615_Cryogonal.png b/static/images/pokemon/0615_Cryogonal.png new file mode 100644 index 0000000..ce4334c Binary files /dev/null and b/static/images/pokemon/0615_Cryogonal.png differ diff --git a/static/images/pokemon/0616_Shelmet.png b/static/images/pokemon/0616_Shelmet.png new file mode 100644 index 0000000..8a9f882 Binary files /dev/null and b/static/images/pokemon/0616_Shelmet.png differ diff --git a/static/images/pokemon/0617_Accelgor.png b/static/images/pokemon/0617_Accelgor.png new file mode 100644 index 0000000..0c70249 Binary files /dev/null and b/static/images/pokemon/0617_Accelgor.png differ diff --git a/static/images/pokemon/0618_Stunfisk.png b/static/images/pokemon/0618_Stunfisk.png new file mode 100644 index 0000000..b9412f6 Binary files /dev/null and b/static/images/pokemon/0618_Stunfisk.png differ diff --git a/static/images/pokemon/0618_Stunfisk_(Galarian_Form).png b/static/images/pokemon/0618_Stunfisk_(Galarian_Form).png new file mode 100644 index 0000000..33f0f1b Binary files /dev/null and b/static/images/pokemon/0618_Stunfisk_(Galarian_Form).png differ diff --git a/static/images/pokemon/0619_Mienfoo.png b/static/images/pokemon/0619_Mienfoo.png new file mode 100644 index 0000000..8d88138 Binary files /dev/null and b/static/images/pokemon/0619_Mienfoo.png differ diff --git a/static/images/pokemon/0620_Mienshao.png b/static/images/pokemon/0620_Mienshao.png new file mode 100644 index 0000000..4375862 Binary files /dev/null and b/static/images/pokemon/0620_Mienshao.png differ diff --git a/static/images/pokemon/0621_Druddigon.png b/static/images/pokemon/0621_Druddigon.png new file mode 100644 index 0000000..790f1b3 Binary files /dev/null and b/static/images/pokemon/0621_Druddigon.png differ diff --git a/static/images/pokemon/0622_Golett.png b/static/images/pokemon/0622_Golett.png new file mode 100644 index 0000000..eb9e50b Binary files /dev/null and b/static/images/pokemon/0622_Golett.png differ diff --git a/static/images/pokemon/0623_Golurk.png b/static/images/pokemon/0623_Golurk.png new file mode 100644 index 0000000..c912926 Binary files /dev/null and b/static/images/pokemon/0623_Golurk.png differ diff --git a/static/images/pokemon/0624_Pawniard.png b/static/images/pokemon/0624_Pawniard.png new file mode 100644 index 0000000..a60ea80 Binary files /dev/null and b/static/images/pokemon/0624_Pawniard.png differ diff --git a/static/images/pokemon/0625_Bisharp.png b/static/images/pokemon/0625_Bisharp.png new file mode 100644 index 0000000..922b3e8 Binary files /dev/null and b/static/images/pokemon/0625_Bisharp.png differ diff --git a/static/images/pokemon/0626_Bouffalant.png b/static/images/pokemon/0626_Bouffalant.png new file mode 100644 index 0000000..0a00927 Binary files /dev/null and b/static/images/pokemon/0626_Bouffalant.png differ diff --git a/static/images/pokemon/0627_Rufflet.png b/static/images/pokemon/0627_Rufflet.png new file mode 100644 index 0000000..704eb36 Binary files /dev/null and b/static/images/pokemon/0627_Rufflet.png differ diff --git a/static/images/pokemon/0628_Braviary.png b/static/images/pokemon/0628_Braviary.png new file mode 100644 index 0000000..880f2fc Binary files /dev/null and b/static/images/pokemon/0628_Braviary.png differ diff --git a/static/images/pokemon/0628_Braviary_(Hisuian_Form).png b/static/images/pokemon/0628_Braviary_(Hisuian_Form).png new file mode 100644 index 0000000..e77491c Binary files /dev/null and b/static/images/pokemon/0628_Braviary_(Hisuian_Form).png differ diff --git a/static/images/pokemon/0629_Vullaby.png b/static/images/pokemon/0629_Vullaby.png new file mode 100644 index 0000000..a2e7800 Binary files /dev/null and b/static/images/pokemon/0629_Vullaby.png differ diff --git a/static/images/pokemon/0630_Mandibuzz.png b/static/images/pokemon/0630_Mandibuzz.png new file mode 100644 index 0000000..8f3950b Binary files /dev/null and b/static/images/pokemon/0630_Mandibuzz.png differ diff --git a/static/images/pokemon/0631_Heatmor.png b/static/images/pokemon/0631_Heatmor.png new file mode 100644 index 0000000..5f1b1db Binary files /dev/null and b/static/images/pokemon/0631_Heatmor.png differ diff --git a/static/images/pokemon/0632_Durant.png b/static/images/pokemon/0632_Durant.png new file mode 100644 index 0000000..8b9fa07 Binary files /dev/null and b/static/images/pokemon/0632_Durant.png differ diff --git a/static/images/pokemon/0633_Deino.png b/static/images/pokemon/0633_Deino.png new file mode 100644 index 0000000..b383713 Binary files /dev/null and b/static/images/pokemon/0633_Deino.png differ diff --git a/static/images/pokemon/0634_Zweilous.png b/static/images/pokemon/0634_Zweilous.png new file mode 100644 index 0000000..ccea326 Binary files /dev/null and b/static/images/pokemon/0634_Zweilous.png differ diff --git a/static/images/pokemon/0635_Hydreigon.png b/static/images/pokemon/0635_Hydreigon.png new file mode 100644 index 0000000..af31f9f Binary files /dev/null and b/static/images/pokemon/0635_Hydreigon.png differ diff --git a/static/images/pokemon/0636_Larvesta.png b/static/images/pokemon/0636_Larvesta.png new file mode 100644 index 0000000..48b087e Binary files /dev/null and b/static/images/pokemon/0636_Larvesta.png differ diff --git a/static/images/pokemon/0637_Volcarona.png b/static/images/pokemon/0637_Volcarona.png new file mode 100644 index 0000000..991fb97 Binary files /dev/null and b/static/images/pokemon/0637_Volcarona.png differ diff --git a/static/images/pokemon/0638_Cobalion.png b/static/images/pokemon/0638_Cobalion.png new file mode 100644 index 0000000..db9adcc Binary files /dev/null and b/static/images/pokemon/0638_Cobalion.png differ diff --git a/static/images/pokemon/0639_Terrakion.png b/static/images/pokemon/0639_Terrakion.png new file mode 100644 index 0000000..7ddd0c8 Binary files /dev/null and b/static/images/pokemon/0639_Terrakion.png differ diff --git a/static/images/pokemon/0640_Virizion.png b/static/images/pokemon/0640_Virizion.png new file mode 100644 index 0000000..b871ab7 Binary files /dev/null and b/static/images/pokemon/0640_Virizion.png differ diff --git a/static/images/pokemon/0641_Tornadus.png b/static/images/pokemon/0641_Tornadus.png new file mode 100644 index 0000000..d628bc0 Binary files /dev/null and b/static/images/pokemon/0641_Tornadus.png differ diff --git a/static/images/pokemon/0641_Tornadus_(Therian_Forme).png b/static/images/pokemon/0641_Tornadus_(Therian_Forme).png new file mode 100644 index 0000000..1f9f84c Binary files /dev/null and b/static/images/pokemon/0641_Tornadus_(Therian_Forme).png differ diff --git a/static/images/pokemon/0642_Thundurus.png b/static/images/pokemon/0642_Thundurus.png new file mode 100644 index 0000000..8e2b6ec Binary files /dev/null and b/static/images/pokemon/0642_Thundurus.png differ diff --git a/static/images/pokemon/0642_Thundurus_(Therian_Forme).png b/static/images/pokemon/0642_Thundurus_(Therian_Forme).png new file mode 100644 index 0000000..6f873c6 Binary files /dev/null and b/static/images/pokemon/0642_Thundurus_(Therian_Forme).png differ diff --git a/static/images/pokemon/0643_Reshiram.png b/static/images/pokemon/0643_Reshiram.png new file mode 100644 index 0000000..5bda123 Binary files /dev/null and b/static/images/pokemon/0643_Reshiram.png differ diff --git a/static/images/pokemon/0644_Zekrom.png b/static/images/pokemon/0644_Zekrom.png new file mode 100644 index 0000000..9391cfd Binary files /dev/null and b/static/images/pokemon/0644_Zekrom.png differ diff --git a/static/images/pokemon/0645_Landorus.png b/static/images/pokemon/0645_Landorus.png new file mode 100644 index 0000000..49ac4dc Binary files /dev/null and b/static/images/pokemon/0645_Landorus.png differ diff --git a/static/images/pokemon/0645_Landorus_(Therian_Forme).png b/static/images/pokemon/0645_Landorus_(Therian_Forme).png new file mode 100644 index 0000000..d3e7655 Binary files /dev/null and b/static/images/pokemon/0645_Landorus_(Therian_Forme).png differ diff --git a/static/images/pokemon/0646_Kyurem.png b/static/images/pokemon/0646_Kyurem.png new file mode 100644 index 0000000..560704c Binary files /dev/null and b/static/images/pokemon/0646_Kyurem.png differ diff --git a/static/images/pokemon/0647_Keldeo.png b/static/images/pokemon/0647_Keldeo.png new file mode 100644 index 0000000..83c8b1d Binary files /dev/null and b/static/images/pokemon/0647_Keldeo.png differ diff --git a/static/images/pokemon/0647_Keldeo_(Resolute_Form).png b/static/images/pokemon/0647_Keldeo_(Resolute_Form).png new file mode 100644 index 0000000..a4e4721 Binary files /dev/null and b/static/images/pokemon/0647_Keldeo_(Resolute_Form).png differ diff --git a/static/images/pokemon/0648_Meloetta.png b/static/images/pokemon/0648_Meloetta.png new file mode 100644 index 0000000..d02eeda Binary files /dev/null and b/static/images/pokemon/0648_Meloetta.png differ diff --git a/static/images/pokemon/0649_Genesect.png b/static/images/pokemon/0649_Genesect.png new file mode 100644 index 0000000..ce9944a Binary files /dev/null and b/static/images/pokemon/0649_Genesect.png differ diff --git a/static/images/pokemon/0650_Chespin.png b/static/images/pokemon/0650_Chespin.png new file mode 100644 index 0000000..83bf6a9 Binary files /dev/null and b/static/images/pokemon/0650_Chespin.png differ diff --git a/static/images/pokemon/0651_Quilladin.png b/static/images/pokemon/0651_Quilladin.png new file mode 100644 index 0000000..e273ece Binary files /dev/null and b/static/images/pokemon/0651_Quilladin.png differ diff --git a/static/images/pokemon/0652_Chesnaught.png b/static/images/pokemon/0652_Chesnaught.png new file mode 100644 index 0000000..7d7d380 Binary files /dev/null and b/static/images/pokemon/0652_Chesnaught.png differ diff --git a/static/images/pokemon/0653_Fennekin.png b/static/images/pokemon/0653_Fennekin.png new file mode 100644 index 0000000..a4124fb Binary files /dev/null and b/static/images/pokemon/0653_Fennekin.png differ diff --git a/static/images/pokemon/0654_Braixen.png b/static/images/pokemon/0654_Braixen.png new file mode 100644 index 0000000..0afc7ab Binary files /dev/null and b/static/images/pokemon/0654_Braixen.png differ diff --git a/static/images/pokemon/0655_Delphox.png b/static/images/pokemon/0655_Delphox.png new file mode 100644 index 0000000..898b0f3 Binary files /dev/null and b/static/images/pokemon/0655_Delphox.png differ diff --git a/static/images/pokemon/0656_Froakie.png b/static/images/pokemon/0656_Froakie.png new file mode 100644 index 0000000..9da5e22 Binary files /dev/null and b/static/images/pokemon/0656_Froakie.png differ diff --git a/static/images/pokemon/0657_Frogadier.png b/static/images/pokemon/0657_Frogadier.png new file mode 100644 index 0000000..170c826 Binary files /dev/null and b/static/images/pokemon/0657_Frogadier.png differ diff --git a/static/images/pokemon/0658_Greninja.png b/static/images/pokemon/0658_Greninja.png new file mode 100644 index 0000000..e92b5bc Binary files /dev/null and b/static/images/pokemon/0658_Greninja.png differ diff --git a/static/images/pokemon/0659_Bunnelby.png b/static/images/pokemon/0659_Bunnelby.png new file mode 100644 index 0000000..b7c62b1 Binary files /dev/null and b/static/images/pokemon/0659_Bunnelby.png differ diff --git a/static/images/pokemon/0660_Diggersby.png b/static/images/pokemon/0660_Diggersby.png new file mode 100644 index 0000000..baa77f2 Binary files /dev/null and b/static/images/pokemon/0660_Diggersby.png differ diff --git a/static/images/pokemon/0661_Fletchling.png b/static/images/pokemon/0661_Fletchling.png new file mode 100644 index 0000000..b059cba Binary files /dev/null and b/static/images/pokemon/0661_Fletchling.png differ diff --git a/static/images/pokemon/0662_Fletchinder.png b/static/images/pokemon/0662_Fletchinder.png new file mode 100644 index 0000000..ad02052 Binary files /dev/null and b/static/images/pokemon/0662_Fletchinder.png differ diff --git a/static/images/pokemon/0663_Talonflame.png b/static/images/pokemon/0663_Talonflame.png new file mode 100644 index 0000000..a0f14f9 Binary files /dev/null and b/static/images/pokemon/0663_Talonflame.png differ diff --git a/static/images/pokemon/0664_Scatterbug.png b/static/images/pokemon/0664_Scatterbug.png new file mode 100644 index 0000000..b1a1afc Binary files /dev/null and b/static/images/pokemon/0664_Scatterbug.png differ diff --git a/static/images/pokemon/0665_Spewpa.png b/static/images/pokemon/0665_Spewpa.png new file mode 100644 index 0000000..3adb560 Binary files /dev/null and b/static/images/pokemon/0665_Spewpa.png differ diff --git a/static/images/pokemon/0666_Vivillon.png b/static/images/pokemon/0666_Vivillon.png new file mode 100644 index 0000000..8005f12 Binary files /dev/null and b/static/images/pokemon/0666_Vivillon.png differ diff --git a/static/images/pokemon/0666_Vivillon_(Archipelago_Pattern).png b/static/images/pokemon/0666_Vivillon_(Archipelago_Pattern).png new file mode 100644 index 0000000..90d92c6 Binary files /dev/null and b/static/images/pokemon/0666_Vivillon_(Archipelago_Pattern).png differ diff --git a/static/images/pokemon/0666_Vivillon_(Continental_Pattern).png b/static/images/pokemon/0666_Vivillon_(Continental_Pattern).png new file mode 100644 index 0000000..e582f4f Binary files /dev/null and b/static/images/pokemon/0666_Vivillon_(Continental_Pattern).png differ diff --git a/static/images/pokemon/0666_Vivillon_(Elegant_Pattern).png b/static/images/pokemon/0666_Vivillon_(Elegant_Pattern).png new file mode 100644 index 0000000..3f790c5 Binary files /dev/null and b/static/images/pokemon/0666_Vivillon_(Elegant_Pattern).png differ diff --git a/static/images/pokemon/0666_Vivillon_(Fancy_Pattern).png b/static/images/pokemon/0666_Vivillon_(Fancy_Pattern).png new file mode 100644 index 0000000..aed760f Binary files /dev/null and b/static/images/pokemon/0666_Vivillon_(Fancy_Pattern).png differ diff --git a/static/images/pokemon/0666_Vivillon_(Garden_Pattern).png b/static/images/pokemon/0666_Vivillon_(Garden_Pattern).png new file mode 100644 index 0000000..1f738b6 Binary files /dev/null and b/static/images/pokemon/0666_Vivillon_(Garden_Pattern).png differ diff --git a/static/images/pokemon/0666_Vivillon_(High_Plains_Pattern).png b/static/images/pokemon/0666_Vivillon_(High_Plains_Pattern).png new file mode 100644 index 0000000..65abb72 Binary files /dev/null and b/static/images/pokemon/0666_Vivillon_(High_Plains_Pattern).png differ diff --git a/static/images/pokemon/0666_Vivillon_(Icy_Snow_Pattern).png b/static/images/pokemon/0666_Vivillon_(Icy_Snow_Pattern).png new file mode 100644 index 0000000..ccccb59 Binary files /dev/null and b/static/images/pokemon/0666_Vivillon_(Icy_Snow_Pattern).png differ diff --git a/static/images/pokemon/0666_Vivillon_(Jungle_Pattern).png b/static/images/pokemon/0666_Vivillon_(Jungle_Pattern).png new file mode 100644 index 0000000..43717c5 Binary files /dev/null and b/static/images/pokemon/0666_Vivillon_(Jungle_Pattern).png differ diff --git a/static/images/pokemon/0666_Vivillon_(Marine_Pattern).png b/static/images/pokemon/0666_Vivillon_(Marine_Pattern).png new file mode 100644 index 0000000..ff1a4df Binary files /dev/null and b/static/images/pokemon/0666_Vivillon_(Marine_Pattern).png differ diff --git a/static/images/pokemon/0666_Vivillon_(Modern_Pattern).png b/static/images/pokemon/0666_Vivillon_(Modern_Pattern).png new file mode 100644 index 0000000..a42089e Binary files /dev/null and b/static/images/pokemon/0666_Vivillon_(Modern_Pattern).png differ diff --git a/static/images/pokemon/0666_Vivillon_(Monsoon_Pattern).png b/static/images/pokemon/0666_Vivillon_(Monsoon_Pattern).png new file mode 100644 index 0000000..79a4de5 Binary files /dev/null and b/static/images/pokemon/0666_Vivillon_(Monsoon_Pattern).png differ diff --git a/static/images/pokemon/0666_Vivillon_(Ocean_Pattern).png b/static/images/pokemon/0666_Vivillon_(Ocean_Pattern).png new file mode 100644 index 0000000..81f5b1b Binary files /dev/null and b/static/images/pokemon/0666_Vivillon_(Ocean_Pattern).png differ diff --git a/static/images/pokemon/0666_Vivillon_(Poké_Ball_Pattern).png b/static/images/pokemon/0666_Vivillon_(Poké_Ball_Pattern).png new file mode 100644 index 0000000..f74d579 Binary files /dev/null and b/static/images/pokemon/0666_Vivillon_(Poké_Ball_Pattern).png differ diff --git a/static/images/pokemon/0666_Vivillon_(Polar_Pattern).png b/static/images/pokemon/0666_Vivillon_(Polar_Pattern).png new file mode 100644 index 0000000..b6c95fc Binary files /dev/null and b/static/images/pokemon/0666_Vivillon_(Polar_Pattern).png differ diff --git a/static/images/pokemon/0666_Vivillon_(River_Pattern).png b/static/images/pokemon/0666_Vivillon_(River_Pattern).png new file mode 100644 index 0000000..ab1d848 Binary files /dev/null and b/static/images/pokemon/0666_Vivillon_(River_Pattern).png differ diff --git a/static/images/pokemon/0666_Vivillon_(Sandstorm_Pattern).png b/static/images/pokemon/0666_Vivillon_(Sandstorm_Pattern).png new file mode 100644 index 0000000..c0c0e84 Binary files /dev/null and b/static/images/pokemon/0666_Vivillon_(Sandstorm_Pattern).png differ diff --git a/static/images/pokemon/0666_Vivillon_(Savanna_Pattern).png b/static/images/pokemon/0666_Vivillon_(Savanna_Pattern).png new file mode 100644 index 0000000..8e86d32 Binary files /dev/null and b/static/images/pokemon/0666_Vivillon_(Savanna_Pattern).png differ diff --git a/static/images/pokemon/0666_Vivillon_(Sun_Pattern).png b/static/images/pokemon/0666_Vivillon_(Sun_Pattern).png new file mode 100644 index 0000000..54346d6 Binary files /dev/null and b/static/images/pokemon/0666_Vivillon_(Sun_Pattern).png differ diff --git a/static/images/pokemon/0666_Vivillon_(Tundra_Pattern).png b/static/images/pokemon/0666_Vivillon_(Tundra_Pattern).png new file mode 100644 index 0000000..9955946 Binary files /dev/null and b/static/images/pokemon/0666_Vivillon_(Tundra_Pattern).png differ diff --git a/static/images/pokemon/0667_Litleo.png b/static/images/pokemon/0667_Litleo.png new file mode 100644 index 0000000..9ae57f8 Binary files /dev/null and b/static/images/pokemon/0667_Litleo.png differ diff --git a/static/images/pokemon/0668_Pyroar.png b/static/images/pokemon/0668_Pyroar.png new file mode 100644 index 0000000..10252ef Binary files /dev/null and b/static/images/pokemon/0668_Pyroar.png differ diff --git a/static/images/pokemon/0669_Flabébé.png b/static/images/pokemon/0669_Flabébé.png new file mode 100644 index 0000000..6360702 Binary files /dev/null and b/static/images/pokemon/0669_Flabébé.png differ diff --git a/static/images/pokemon/0669_Flabébé_(Blue_Flower).png b/static/images/pokemon/0669_Flabébé_(Blue_Flower).png new file mode 100644 index 0000000..718cf8b Binary files /dev/null and b/static/images/pokemon/0669_Flabébé_(Blue_Flower).png differ diff --git a/static/images/pokemon/0669_Flabébé_(Orange_Flower).png b/static/images/pokemon/0669_Flabébé_(Orange_Flower).png new file mode 100644 index 0000000..622341b Binary files /dev/null and b/static/images/pokemon/0669_Flabébé_(Orange_Flower).png differ diff --git a/static/images/pokemon/0669_Flabébé_(White_Flower).png b/static/images/pokemon/0669_Flabébé_(White_Flower).png new file mode 100644 index 0000000..39983fa Binary files /dev/null and b/static/images/pokemon/0669_Flabébé_(White_Flower).png differ diff --git a/static/images/pokemon/0669_Flabébé_(Yellow_Flower).png b/static/images/pokemon/0669_Flabébé_(Yellow_Flower).png new file mode 100644 index 0000000..f2e5f6e Binary files /dev/null and b/static/images/pokemon/0669_Flabébé_(Yellow_Flower).png differ diff --git a/static/images/pokemon/0670_Floette.png b/static/images/pokemon/0670_Floette.png new file mode 100644 index 0000000..6620bb6 Binary files /dev/null and b/static/images/pokemon/0670_Floette.png differ diff --git a/static/images/pokemon/0670_Floette_(Blue_Flower).png b/static/images/pokemon/0670_Floette_(Blue_Flower).png new file mode 100644 index 0000000..52a4f5e Binary files /dev/null and b/static/images/pokemon/0670_Floette_(Blue_Flower).png differ diff --git a/static/images/pokemon/0670_Floette_(Orange_Flower).png b/static/images/pokemon/0670_Floette_(Orange_Flower).png new file mode 100644 index 0000000..d2d92b2 Binary files /dev/null and b/static/images/pokemon/0670_Floette_(Orange_Flower).png differ diff --git a/static/images/pokemon/0670_Floette_(White_Flower).png b/static/images/pokemon/0670_Floette_(White_Flower).png new file mode 100644 index 0000000..3c7b6ac Binary files /dev/null and b/static/images/pokemon/0670_Floette_(White_Flower).png differ diff --git a/static/images/pokemon/0670_Floette_(Yellow_Flower).png b/static/images/pokemon/0670_Floette_(Yellow_Flower).png new file mode 100644 index 0000000..9ba7327 Binary files /dev/null and b/static/images/pokemon/0670_Floette_(Yellow_Flower).png differ diff --git a/static/images/pokemon/0671_Florges.png b/static/images/pokemon/0671_Florges.png new file mode 100644 index 0000000..f12d23e Binary files /dev/null and b/static/images/pokemon/0671_Florges.png differ diff --git a/static/images/pokemon/0671_Florges_(Blue_Flower).png b/static/images/pokemon/0671_Florges_(Blue_Flower).png new file mode 100644 index 0000000..a3eaa5a Binary files /dev/null and b/static/images/pokemon/0671_Florges_(Blue_Flower).png differ diff --git a/static/images/pokemon/0671_Florges_(Orange_Flower).png b/static/images/pokemon/0671_Florges_(Orange_Flower).png new file mode 100644 index 0000000..b8faec9 Binary files /dev/null and b/static/images/pokemon/0671_Florges_(Orange_Flower).png differ diff --git a/static/images/pokemon/0671_Florges_(White_Flower).png b/static/images/pokemon/0671_Florges_(White_Flower).png new file mode 100644 index 0000000..0a0b6f2 Binary files /dev/null and b/static/images/pokemon/0671_Florges_(White_Flower).png differ diff --git a/static/images/pokemon/0671_Florges_(Yellow_Flower).png b/static/images/pokemon/0671_Florges_(Yellow_Flower).png new file mode 100644 index 0000000..e829090 Binary files /dev/null and b/static/images/pokemon/0671_Florges_(Yellow_Flower).png differ diff --git a/static/images/pokemon/0672_Skiddo.png b/static/images/pokemon/0672_Skiddo.png new file mode 100644 index 0000000..a3cf06e Binary files /dev/null and b/static/images/pokemon/0672_Skiddo.png differ diff --git a/static/images/pokemon/0673_Gogoat.png b/static/images/pokemon/0673_Gogoat.png new file mode 100644 index 0000000..c646ae4 Binary files /dev/null and b/static/images/pokemon/0673_Gogoat.png differ diff --git a/static/images/pokemon/0674_Pancham.png b/static/images/pokemon/0674_Pancham.png new file mode 100644 index 0000000..0a7b819 Binary files /dev/null and b/static/images/pokemon/0674_Pancham.png differ diff --git a/static/images/pokemon/0675_Pangoro.png b/static/images/pokemon/0675_Pangoro.png new file mode 100644 index 0000000..ba82329 Binary files /dev/null and b/static/images/pokemon/0675_Pangoro.png differ diff --git a/static/images/pokemon/0676_Furfrou.png b/static/images/pokemon/0676_Furfrou.png new file mode 100644 index 0000000..2184924 Binary files /dev/null and b/static/images/pokemon/0676_Furfrou.png differ diff --git a/static/images/pokemon/0676_Furfrou_(Dandy_Trim).png b/static/images/pokemon/0676_Furfrou_(Dandy_Trim).png new file mode 100644 index 0000000..620d050 Binary files /dev/null and b/static/images/pokemon/0676_Furfrou_(Dandy_Trim).png differ diff --git a/static/images/pokemon/0676_Furfrou_(Deputante_Trim).png b/static/images/pokemon/0676_Furfrou_(Deputante_Trim).png new file mode 100644 index 0000000..123ecd1 Binary files /dev/null and b/static/images/pokemon/0676_Furfrou_(Deputante_Trim).png differ diff --git a/static/images/pokemon/0676_Furfrou_(Diamond_Trim).png b/static/images/pokemon/0676_Furfrou_(Diamond_Trim).png new file mode 100644 index 0000000..ca1789d Binary files /dev/null and b/static/images/pokemon/0676_Furfrou_(Diamond_Trim).png differ diff --git a/static/images/pokemon/0676_Furfrou_(Heart_Trim).png b/static/images/pokemon/0676_Furfrou_(Heart_Trim).png new file mode 100644 index 0000000..8cee6a4 Binary files /dev/null and b/static/images/pokemon/0676_Furfrou_(Heart_Trim).png differ diff --git a/static/images/pokemon/0676_Furfrou_(Kabuki_Trim).png b/static/images/pokemon/0676_Furfrou_(Kabuki_Trim).png new file mode 100644 index 0000000..0021223 Binary files /dev/null and b/static/images/pokemon/0676_Furfrou_(Kabuki_Trim).png differ diff --git a/static/images/pokemon/0676_Furfrou_(La_Reine_Trim).png b/static/images/pokemon/0676_Furfrou_(La_Reine_Trim).png new file mode 100644 index 0000000..9ed1b9b Binary files /dev/null and b/static/images/pokemon/0676_Furfrou_(La_Reine_Trim).png differ diff --git a/static/images/pokemon/0676_Furfrou_(Matron_Trim).png b/static/images/pokemon/0676_Furfrou_(Matron_Trim).png new file mode 100644 index 0000000..5b0438b Binary files /dev/null and b/static/images/pokemon/0676_Furfrou_(Matron_Trim).png differ diff --git a/static/images/pokemon/0676_Furfrou_(Pharaoh_Trim).png b/static/images/pokemon/0676_Furfrou_(Pharaoh_Trim).png new file mode 100644 index 0000000..180e855 Binary files /dev/null and b/static/images/pokemon/0676_Furfrou_(Pharaoh_Trim).png differ diff --git a/static/images/pokemon/0676_Furfrou_(Star_Trim).png b/static/images/pokemon/0676_Furfrou_(Star_Trim).png new file mode 100644 index 0000000..ec38aca Binary files /dev/null and b/static/images/pokemon/0676_Furfrou_(Star_Trim).png differ diff --git a/static/images/pokemon/0677_Espurr.png b/static/images/pokemon/0677_Espurr.png new file mode 100644 index 0000000..d28efd3 Binary files /dev/null and b/static/images/pokemon/0677_Espurr.png differ diff --git a/static/images/pokemon/0678_Meowstic.png b/static/images/pokemon/0678_Meowstic.png new file mode 100644 index 0000000..051e11c Binary files /dev/null and b/static/images/pokemon/0678_Meowstic.png differ diff --git a/static/images/pokemon/0678_Meowstic_(Female).png b/static/images/pokemon/0678_Meowstic_(Female).png new file mode 100644 index 0000000..b997ee6 Binary files /dev/null and b/static/images/pokemon/0678_Meowstic_(Female).png differ diff --git a/static/images/pokemon/0679_Honedge.png b/static/images/pokemon/0679_Honedge.png new file mode 100644 index 0000000..7963626 Binary files /dev/null and b/static/images/pokemon/0679_Honedge.png differ diff --git a/static/images/pokemon/0680_Doublade.png b/static/images/pokemon/0680_Doublade.png new file mode 100644 index 0000000..1435b80 Binary files /dev/null and b/static/images/pokemon/0680_Doublade.png differ diff --git a/static/images/pokemon/0681_Aegislash.png b/static/images/pokemon/0681_Aegislash.png new file mode 100644 index 0000000..8ab6d70 Binary files /dev/null and b/static/images/pokemon/0681_Aegislash.png differ diff --git a/static/images/pokemon/0682_Spritzee.png b/static/images/pokemon/0682_Spritzee.png new file mode 100644 index 0000000..a768dba Binary files /dev/null and b/static/images/pokemon/0682_Spritzee.png differ diff --git a/static/images/pokemon/0683_Aromatisse.png b/static/images/pokemon/0683_Aromatisse.png new file mode 100644 index 0000000..c97a60b Binary files /dev/null and b/static/images/pokemon/0683_Aromatisse.png differ diff --git a/static/images/pokemon/0684_Swirlix.png b/static/images/pokemon/0684_Swirlix.png new file mode 100644 index 0000000..d9e9267 Binary files /dev/null and b/static/images/pokemon/0684_Swirlix.png differ diff --git a/static/images/pokemon/0685_Slurpuff.png b/static/images/pokemon/0685_Slurpuff.png new file mode 100644 index 0000000..5eda997 Binary files /dev/null and b/static/images/pokemon/0685_Slurpuff.png differ diff --git a/static/images/pokemon/0686_Inkay.png b/static/images/pokemon/0686_Inkay.png new file mode 100644 index 0000000..c301b8c Binary files /dev/null and b/static/images/pokemon/0686_Inkay.png differ diff --git a/static/images/pokemon/0687_Malamar.png b/static/images/pokemon/0687_Malamar.png new file mode 100644 index 0000000..220d484 Binary files /dev/null and b/static/images/pokemon/0687_Malamar.png differ diff --git a/static/images/pokemon/0688_Binacle.png b/static/images/pokemon/0688_Binacle.png new file mode 100644 index 0000000..548c754 Binary files /dev/null and b/static/images/pokemon/0688_Binacle.png differ diff --git a/static/images/pokemon/0689_Barbaracle.png b/static/images/pokemon/0689_Barbaracle.png new file mode 100644 index 0000000..ff9f624 Binary files /dev/null and b/static/images/pokemon/0689_Barbaracle.png differ diff --git a/static/images/pokemon/0690_Skrelp.png b/static/images/pokemon/0690_Skrelp.png new file mode 100644 index 0000000..1eb4ecf Binary files /dev/null and b/static/images/pokemon/0690_Skrelp.png differ diff --git a/static/images/pokemon/0691_Dragalge.png b/static/images/pokemon/0691_Dragalge.png new file mode 100644 index 0000000..4feae5d Binary files /dev/null and b/static/images/pokemon/0691_Dragalge.png differ diff --git a/static/images/pokemon/0692_Clauncher.png b/static/images/pokemon/0692_Clauncher.png new file mode 100644 index 0000000..10fa507 Binary files /dev/null and b/static/images/pokemon/0692_Clauncher.png differ diff --git a/static/images/pokemon/0693_Clawitzer.png b/static/images/pokemon/0693_Clawitzer.png new file mode 100644 index 0000000..3f6a0b3 Binary files /dev/null and b/static/images/pokemon/0693_Clawitzer.png differ diff --git a/static/images/pokemon/0694_Helioptile.png b/static/images/pokemon/0694_Helioptile.png new file mode 100644 index 0000000..e2b2f00 Binary files /dev/null and b/static/images/pokemon/0694_Helioptile.png differ diff --git a/static/images/pokemon/0695_Heliolisk.png b/static/images/pokemon/0695_Heliolisk.png new file mode 100644 index 0000000..a829128 Binary files /dev/null and b/static/images/pokemon/0695_Heliolisk.png differ diff --git a/static/images/pokemon/0696_Tyrunt.png b/static/images/pokemon/0696_Tyrunt.png new file mode 100644 index 0000000..52ea0ff Binary files /dev/null and b/static/images/pokemon/0696_Tyrunt.png differ diff --git a/static/images/pokemon/0697_Tyrantrum.png b/static/images/pokemon/0697_Tyrantrum.png new file mode 100644 index 0000000..4bf40bd Binary files /dev/null and b/static/images/pokemon/0697_Tyrantrum.png differ diff --git a/static/images/pokemon/0698_Amaura.png b/static/images/pokemon/0698_Amaura.png new file mode 100644 index 0000000..9b64c85 Binary files /dev/null and b/static/images/pokemon/0698_Amaura.png differ diff --git a/static/images/pokemon/0699_Aurorus.png b/static/images/pokemon/0699_Aurorus.png new file mode 100644 index 0000000..af4af5c Binary files /dev/null and b/static/images/pokemon/0699_Aurorus.png differ diff --git a/static/images/pokemon/0700_Sylveon.png b/static/images/pokemon/0700_Sylveon.png new file mode 100644 index 0000000..d9ed576 Binary files /dev/null and b/static/images/pokemon/0700_Sylveon.png differ diff --git a/static/images/pokemon/0701_Hawlucha.png b/static/images/pokemon/0701_Hawlucha.png new file mode 100644 index 0000000..82067d8 Binary files /dev/null and b/static/images/pokemon/0701_Hawlucha.png differ diff --git a/static/images/pokemon/0702_Dedenne.png b/static/images/pokemon/0702_Dedenne.png new file mode 100644 index 0000000..55b6b3a Binary files /dev/null and b/static/images/pokemon/0702_Dedenne.png differ diff --git a/static/images/pokemon/0703_Carbink.png b/static/images/pokemon/0703_Carbink.png new file mode 100644 index 0000000..3105e4e Binary files /dev/null and b/static/images/pokemon/0703_Carbink.png differ diff --git a/static/images/pokemon/0704_Goomy.png b/static/images/pokemon/0704_Goomy.png new file mode 100644 index 0000000..705ef53 Binary files /dev/null and b/static/images/pokemon/0704_Goomy.png differ diff --git a/static/images/pokemon/0705_Sliggoo.png b/static/images/pokemon/0705_Sliggoo.png new file mode 100644 index 0000000..352bba5 Binary files /dev/null and b/static/images/pokemon/0705_Sliggoo.png differ diff --git a/static/images/pokemon/0705_Sliggoo_(Hisuian_Form).png b/static/images/pokemon/0705_Sliggoo_(Hisuian_Form).png new file mode 100644 index 0000000..fdfac49 Binary files /dev/null and b/static/images/pokemon/0705_Sliggoo_(Hisuian_Form).png differ diff --git a/static/images/pokemon/0706_Goodra.png b/static/images/pokemon/0706_Goodra.png new file mode 100644 index 0000000..52701f8 Binary files /dev/null and b/static/images/pokemon/0706_Goodra.png differ diff --git a/static/images/pokemon/0706_Goodra_(Hisuian_Form).png b/static/images/pokemon/0706_Goodra_(Hisuian_Form).png new file mode 100644 index 0000000..c29b780 Binary files /dev/null and b/static/images/pokemon/0706_Goodra_(Hisuian_Form).png differ diff --git a/static/images/pokemon/0707_Klefki.png b/static/images/pokemon/0707_Klefki.png new file mode 100644 index 0000000..192b492 Binary files /dev/null and b/static/images/pokemon/0707_Klefki.png differ diff --git a/static/images/pokemon/0708_Phantump.png b/static/images/pokemon/0708_Phantump.png new file mode 100644 index 0000000..722b2ec Binary files /dev/null and b/static/images/pokemon/0708_Phantump.png differ diff --git a/static/images/pokemon/0709_Trevenant.png b/static/images/pokemon/0709_Trevenant.png new file mode 100644 index 0000000..c4972d6 Binary files /dev/null and b/static/images/pokemon/0709_Trevenant.png differ diff --git a/static/images/pokemon/0710_Pumpkaboo.png b/static/images/pokemon/0710_Pumpkaboo.png new file mode 100644 index 0000000..186df99 Binary files /dev/null and b/static/images/pokemon/0710_Pumpkaboo.png differ diff --git a/static/images/pokemon/0710_Pumpkaboo_(Large_Size).png b/static/images/pokemon/0710_Pumpkaboo_(Large_Size).png new file mode 100644 index 0000000..3557f94 Binary files /dev/null and b/static/images/pokemon/0710_Pumpkaboo_(Large_Size).png differ diff --git a/static/images/pokemon/0710_Pumpkaboo_(Small_Size).png b/static/images/pokemon/0710_Pumpkaboo_(Small_Size).png new file mode 100644 index 0000000..cf81442 Binary files /dev/null and b/static/images/pokemon/0710_Pumpkaboo_(Small_Size).png differ diff --git a/static/images/pokemon/0710_Pumpkaboo_(Super_Size).png b/static/images/pokemon/0710_Pumpkaboo_(Super_Size).png new file mode 100644 index 0000000..44f255c Binary files /dev/null and b/static/images/pokemon/0710_Pumpkaboo_(Super_Size).png differ diff --git a/static/images/pokemon/0711_Gourgeist.png b/static/images/pokemon/0711_Gourgeist.png new file mode 100644 index 0000000..fc1b4f8 Binary files /dev/null and b/static/images/pokemon/0711_Gourgeist.png differ diff --git a/static/images/pokemon/0711_Gourgeist_(Large_Size).png b/static/images/pokemon/0711_Gourgeist_(Large_Size).png new file mode 100644 index 0000000..470c98f Binary files /dev/null and b/static/images/pokemon/0711_Gourgeist_(Large_Size).png differ diff --git a/static/images/pokemon/0711_Gourgeist_(Small_Size).png b/static/images/pokemon/0711_Gourgeist_(Small_Size).png new file mode 100644 index 0000000..cbea45e Binary files /dev/null and b/static/images/pokemon/0711_Gourgeist_(Small_Size).png differ diff --git a/static/images/pokemon/0711_Gourgeist_(Super_Size).png b/static/images/pokemon/0711_Gourgeist_(Super_Size).png new file mode 100644 index 0000000..692dfb3 Binary files /dev/null and b/static/images/pokemon/0711_Gourgeist_(Super_Size).png differ diff --git a/static/images/pokemon/0712_Bergmite.png b/static/images/pokemon/0712_Bergmite.png new file mode 100644 index 0000000..a0c78d3 Binary files /dev/null and b/static/images/pokemon/0712_Bergmite.png differ diff --git a/static/images/pokemon/0713_Avalugg.png b/static/images/pokemon/0713_Avalugg.png new file mode 100644 index 0000000..2d97aba Binary files /dev/null and b/static/images/pokemon/0713_Avalugg.png differ diff --git a/static/images/pokemon/0713_Avalugg_(Hisuian_Form).png b/static/images/pokemon/0713_Avalugg_(Hisuian_Form).png new file mode 100644 index 0000000..e638214 Binary files /dev/null and b/static/images/pokemon/0713_Avalugg_(Hisuian_Form).png differ diff --git a/static/images/pokemon/0714_Noibat.png b/static/images/pokemon/0714_Noibat.png new file mode 100644 index 0000000..63a9be3 Binary files /dev/null and b/static/images/pokemon/0714_Noibat.png differ diff --git a/static/images/pokemon/0715_Noivern.png b/static/images/pokemon/0715_Noivern.png new file mode 100644 index 0000000..da9701e Binary files /dev/null and b/static/images/pokemon/0715_Noivern.png differ diff --git a/static/images/pokemon/0716_Xerneas.png b/static/images/pokemon/0716_Xerneas.png new file mode 100644 index 0000000..49eabea Binary files /dev/null and b/static/images/pokemon/0716_Xerneas.png differ diff --git a/static/images/pokemon/0717_Yveltal.png b/static/images/pokemon/0717_Yveltal.png new file mode 100644 index 0000000..7391854 Binary files /dev/null and b/static/images/pokemon/0717_Yveltal.png differ diff --git a/static/images/pokemon/0718_Zygarde.png b/static/images/pokemon/0718_Zygarde.png new file mode 100644 index 0000000..bcd57f0 Binary files /dev/null and b/static/images/pokemon/0718_Zygarde.png differ diff --git a/static/images/pokemon/0718_Zygarde_(10%_Forme).png b/static/images/pokemon/0718_Zygarde_(10%_Forme).png new file mode 100644 index 0000000..13185bd Binary files /dev/null and b/static/images/pokemon/0718_Zygarde_(10%_Forme).png differ diff --git a/static/images/pokemon/0719_Diancie.png b/static/images/pokemon/0719_Diancie.png new file mode 100644 index 0000000..eba486b Binary files /dev/null and b/static/images/pokemon/0719_Diancie.png differ diff --git a/static/images/pokemon/0720_Hoopa.png b/static/images/pokemon/0720_Hoopa.png new file mode 100644 index 0000000..aa3bd39 Binary files /dev/null and b/static/images/pokemon/0720_Hoopa.png differ diff --git a/static/images/pokemon/0720_Hoopa_(Hoopa_Unbound).png b/static/images/pokemon/0720_Hoopa_(Hoopa_Unbound).png new file mode 100644 index 0000000..2b2983e Binary files /dev/null and b/static/images/pokemon/0720_Hoopa_(Hoopa_Unbound).png differ diff --git a/static/images/pokemon/0721_Volcanion.png b/static/images/pokemon/0721_Volcanion.png new file mode 100644 index 0000000..2438c6a Binary files /dev/null and b/static/images/pokemon/0721_Volcanion.png differ diff --git a/static/images/pokemon/0722_Rowlet.png b/static/images/pokemon/0722_Rowlet.png new file mode 100644 index 0000000..b05c4c6 Binary files /dev/null and b/static/images/pokemon/0722_Rowlet.png differ diff --git a/static/images/pokemon/0723_Dartrix.png b/static/images/pokemon/0723_Dartrix.png new file mode 100644 index 0000000..af67b62 Binary files /dev/null and b/static/images/pokemon/0723_Dartrix.png differ diff --git a/static/images/pokemon/0724_Decidueye.png b/static/images/pokemon/0724_Decidueye.png new file mode 100644 index 0000000..dec78db Binary files /dev/null and b/static/images/pokemon/0724_Decidueye.png differ diff --git a/static/images/pokemon/0724_Decidueye_(Hisuian_Form).png b/static/images/pokemon/0724_Decidueye_(Hisuian_Form).png new file mode 100644 index 0000000..e17deed Binary files /dev/null and b/static/images/pokemon/0724_Decidueye_(Hisuian_Form).png differ diff --git a/static/images/pokemon/0725_Litten.png b/static/images/pokemon/0725_Litten.png new file mode 100644 index 0000000..1966fe8 Binary files /dev/null and b/static/images/pokemon/0725_Litten.png differ diff --git a/static/images/pokemon/0726_Torracat.png b/static/images/pokemon/0726_Torracat.png new file mode 100644 index 0000000..4845d62 Binary files /dev/null and b/static/images/pokemon/0726_Torracat.png differ diff --git a/static/images/pokemon/0727_Incineroar.png b/static/images/pokemon/0727_Incineroar.png new file mode 100644 index 0000000..ea836ee Binary files /dev/null and b/static/images/pokemon/0727_Incineroar.png differ diff --git a/static/images/pokemon/0728_Popplio.png b/static/images/pokemon/0728_Popplio.png new file mode 100644 index 0000000..aaaa5df Binary files /dev/null and b/static/images/pokemon/0728_Popplio.png differ diff --git a/static/images/pokemon/0729_Brionne.png b/static/images/pokemon/0729_Brionne.png new file mode 100644 index 0000000..e74a8d4 Binary files /dev/null and b/static/images/pokemon/0729_Brionne.png differ diff --git a/static/images/pokemon/0730_Primarina.png b/static/images/pokemon/0730_Primarina.png new file mode 100644 index 0000000..ad162fe Binary files /dev/null and b/static/images/pokemon/0730_Primarina.png differ diff --git a/static/images/pokemon/0731_Pikipek.png b/static/images/pokemon/0731_Pikipek.png new file mode 100644 index 0000000..3832fb6 Binary files /dev/null and b/static/images/pokemon/0731_Pikipek.png differ diff --git a/static/images/pokemon/0732_Trumbeak.png b/static/images/pokemon/0732_Trumbeak.png new file mode 100644 index 0000000..35f2e38 Binary files /dev/null and b/static/images/pokemon/0732_Trumbeak.png differ diff --git a/static/images/pokemon/0733_Toucannon.png b/static/images/pokemon/0733_Toucannon.png new file mode 100644 index 0000000..25009ff Binary files /dev/null and b/static/images/pokemon/0733_Toucannon.png differ diff --git a/static/images/pokemon/0734_Yungoos.png b/static/images/pokemon/0734_Yungoos.png new file mode 100644 index 0000000..b86ec1b Binary files /dev/null and b/static/images/pokemon/0734_Yungoos.png differ diff --git a/static/images/pokemon/0735_Gumshoos.png b/static/images/pokemon/0735_Gumshoos.png new file mode 100644 index 0000000..546cc64 Binary files /dev/null and b/static/images/pokemon/0735_Gumshoos.png differ diff --git a/static/images/pokemon/0736_Grubbin.png b/static/images/pokemon/0736_Grubbin.png new file mode 100644 index 0000000..5dac3b4 Binary files /dev/null and b/static/images/pokemon/0736_Grubbin.png differ diff --git a/static/images/pokemon/0737_Charjabug.png b/static/images/pokemon/0737_Charjabug.png new file mode 100644 index 0000000..1951b74 Binary files /dev/null and b/static/images/pokemon/0737_Charjabug.png differ diff --git a/static/images/pokemon/0738_Vikavolt.png b/static/images/pokemon/0738_Vikavolt.png new file mode 100644 index 0000000..657b2c7 Binary files /dev/null and b/static/images/pokemon/0738_Vikavolt.png differ diff --git a/static/images/pokemon/0739_Crabrawler.png b/static/images/pokemon/0739_Crabrawler.png new file mode 100644 index 0000000..76455cb Binary files /dev/null and b/static/images/pokemon/0739_Crabrawler.png differ diff --git a/static/images/pokemon/0740_Crabominable.png b/static/images/pokemon/0740_Crabominable.png new file mode 100644 index 0000000..d1f5e81 Binary files /dev/null and b/static/images/pokemon/0740_Crabominable.png differ diff --git a/static/images/pokemon/0741_Oricorio.png b/static/images/pokemon/0741_Oricorio.png new file mode 100644 index 0000000..20cb018 Binary files /dev/null and b/static/images/pokemon/0741_Oricorio.png differ diff --git a/static/images/pokemon/0741_Oricorio_(P'au_Style).png b/static/images/pokemon/0741_Oricorio_(P'au_Style).png new file mode 100644 index 0000000..6210201 Binary files /dev/null and b/static/images/pokemon/0741_Oricorio_(P'au_Style).png differ diff --git a/static/images/pokemon/0741_Oricorio_(Pom-pom_Style).png b/static/images/pokemon/0741_Oricorio_(Pom-pom_Style).png new file mode 100644 index 0000000..d1a3533 Binary files /dev/null and b/static/images/pokemon/0741_Oricorio_(Pom-pom_Style).png differ diff --git a/static/images/pokemon/0741_Oricorio_(Sensu_Style).png b/static/images/pokemon/0741_Oricorio_(Sensu_Style).png new file mode 100644 index 0000000..67e0ecd Binary files /dev/null and b/static/images/pokemon/0741_Oricorio_(Sensu_Style).png differ diff --git a/static/images/pokemon/0742_Cutiefly.png b/static/images/pokemon/0742_Cutiefly.png new file mode 100644 index 0000000..e0335ec Binary files /dev/null and b/static/images/pokemon/0742_Cutiefly.png differ diff --git a/static/images/pokemon/0743_Ribombee.png b/static/images/pokemon/0743_Ribombee.png new file mode 100644 index 0000000..8be5bd7 Binary files /dev/null and b/static/images/pokemon/0743_Ribombee.png differ diff --git a/static/images/pokemon/0744_Rockruff.png b/static/images/pokemon/0744_Rockruff.png new file mode 100644 index 0000000..85e4287 Binary files /dev/null and b/static/images/pokemon/0744_Rockruff.png differ diff --git a/static/images/pokemon/0745_Lycanroc.png b/static/images/pokemon/0745_Lycanroc.png new file mode 100644 index 0000000..73c6358 Binary files /dev/null and b/static/images/pokemon/0745_Lycanroc.png differ diff --git a/static/images/pokemon/0745_Lycanroc_(Dusk_Form).png b/static/images/pokemon/0745_Lycanroc_(Dusk_Form).png new file mode 100644 index 0000000..1a099ab Binary files /dev/null and b/static/images/pokemon/0745_Lycanroc_(Dusk_Form).png differ diff --git a/static/images/pokemon/0745_Lycanroc_(Midnight_Form).png b/static/images/pokemon/0745_Lycanroc_(Midnight_Form).png new file mode 100644 index 0000000..a3043bf Binary files /dev/null and b/static/images/pokemon/0745_Lycanroc_(Midnight_Form).png differ diff --git a/static/images/pokemon/0746_Wishiwashi.png b/static/images/pokemon/0746_Wishiwashi.png new file mode 100644 index 0000000..7a7550e Binary files /dev/null and b/static/images/pokemon/0746_Wishiwashi.png differ diff --git a/static/images/pokemon/0747_Mareanie.png b/static/images/pokemon/0747_Mareanie.png new file mode 100644 index 0000000..917cc85 Binary files /dev/null and b/static/images/pokemon/0747_Mareanie.png differ diff --git a/static/images/pokemon/0748_Toxapex.png b/static/images/pokemon/0748_Toxapex.png new file mode 100644 index 0000000..6a3a921 Binary files /dev/null and b/static/images/pokemon/0748_Toxapex.png differ diff --git a/static/images/pokemon/0749_Mudbray.png b/static/images/pokemon/0749_Mudbray.png new file mode 100644 index 0000000..3ddb89f Binary files /dev/null and b/static/images/pokemon/0749_Mudbray.png differ diff --git a/static/images/pokemon/0750_Mudsdale.png b/static/images/pokemon/0750_Mudsdale.png new file mode 100644 index 0000000..a4f65a7 Binary files /dev/null and b/static/images/pokemon/0750_Mudsdale.png differ diff --git a/static/images/pokemon/0751_Dewpider.png b/static/images/pokemon/0751_Dewpider.png new file mode 100644 index 0000000..7ff51f6 Binary files /dev/null and b/static/images/pokemon/0751_Dewpider.png differ diff --git a/static/images/pokemon/0752_Araquanid.png b/static/images/pokemon/0752_Araquanid.png new file mode 100644 index 0000000..42eec80 Binary files /dev/null and b/static/images/pokemon/0752_Araquanid.png differ diff --git a/static/images/pokemon/0753_Fomantis.png b/static/images/pokemon/0753_Fomantis.png new file mode 100644 index 0000000..d684eed Binary files /dev/null and b/static/images/pokemon/0753_Fomantis.png differ diff --git a/static/images/pokemon/0754_Lurantis.png b/static/images/pokemon/0754_Lurantis.png new file mode 100644 index 0000000..a2fb762 Binary files /dev/null and b/static/images/pokemon/0754_Lurantis.png differ diff --git a/static/images/pokemon/0755_Morelull.png b/static/images/pokemon/0755_Morelull.png new file mode 100644 index 0000000..cc45923 Binary files /dev/null and b/static/images/pokemon/0755_Morelull.png differ diff --git a/static/images/pokemon/0756_Shiinotic.png b/static/images/pokemon/0756_Shiinotic.png new file mode 100644 index 0000000..41c5076 Binary files /dev/null and b/static/images/pokemon/0756_Shiinotic.png differ diff --git a/static/images/pokemon/0757_Salandit.png b/static/images/pokemon/0757_Salandit.png new file mode 100644 index 0000000..623685f Binary files /dev/null and b/static/images/pokemon/0757_Salandit.png differ diff --git a/static/images/pokemon/0758_Salazzle.png b/static/images/pokemon/0758_Salazzle.png new file mode 100644 index 0000000..c2a5d11 Binary files /dev/null and b/static/images/pokemon/0758_Salazzle.png differ diff --git a/static/images/pokemon/0759_Stufful.png b/static/images/pokemon/0759_Stufful.png new file mode 100644 index 0000000..e644ac2 Binary files /dev/null and b/static/images/pokemon/0759_Stufful.png differ diff --git a/static/images/pokemon/0760_Bewear.png b/static/images/pokemon/0760_Bewear.png new file mode 100644 index 0000000..30de72a Binary files /dev/null and b/static/images/pokemon/0760_Bewear.png differ diff --git a/static/images/pokemon/0761_Bounsweet.png b/static/images/pokemon/0761_Bounsweet.png new file mode 100644 index 0000000..4b67680 Binary files /dev/null and b/static/images/pokemon/0761_Bounsweet.png differ diff --git a/static/images/pokemon/0762_Steenee.png b/static/images/pokemon/0762_Steenee.png new file mode 100644 index 0000000..2e3ad62 Binary files /dev/null and b/static/images/pokemon/0762_Steenee.png differ diff --git a/static/images/pokemon/0763_Tsareena.png b/static/images/pokemon/0763_Tsareena.png new file mode 100644 index 0000000..9220c5e Binary files /dev/null and b/static/images/pokemon/0763_Tsareena.png differ diff --git a/static/images/pokemon/0764_Comfey.png b/static/images/pokemon/0764_Comfey.png new file mode 100644 index 0000000..da65f6b Binary files /dev/null and b/static/images/pokemon/0764_Comfey.png differ diff --git a/static/images/pokemon/0765_Oranguru.png b/static/images/pokemon/0765_Oranguru.png new file mode 100644 index 0000000..712369e Binary files /dev/null and b/static/images/pokemon/0765_Oranguru.png differ diff --git a/static/images/pokemon/0766_Passimian.png b/static/images/pokemon/0766_Passimian.png new file mode 100644 index 0000000..1588eda Binary files /dev/null and b/static/images/pokemon/0766_Passimian.png differ diff --git a/static/images/pokemon/0767_Wimpod.png b/static/images/pokemon/0767_Wimpod.png new file mode 100644 index 0000000..d797386 Binary files /dev/null and b/static/images/pokemon/0767_Wimpod.png differ diff --git a/static/images/pokemon/0768_Golisopod.png b/static/images/pokemon/0768_Golisopod.png new file mode 100644 index 0000000..1bff9e5 Binary files /dev/null and b/static/images/pokemon/0768_Golisopod.png differ diff --git a/static/images/pokemon/0769_Sandygast.png b/static/images/pokemon/0769_Sandygast.png new file mode 100644 index 0000000..07ffd52 Binary files /dev/null and b/static/images/pokemon/0769_Sandygast.png differ diff --git a/static/images/pokemon/0770_Palossand.png b/static/images/pokemon/0770_Palossand.png new file mode 100644 index 0000000..e31a6be Binary files /dev/null and b/static/images/pokemon/0770_Palossand.png differ diff --git a/static/images/pokemon/0771_Pyukumuku.png b/static/images/pokemon/0771_Pyukumuku.png new file mode 100644 index 0000000..c626959 Binary files /dev/null and b/static/images/pokemon/0771_Pyukumuku.png differ diff --git a/static/images/pokemon/0772_Typecolon_Null.png b/static/images/pokemon/0772_Typecolon_Null.png new file mode 100644 index 0000000..af65a7f Binary files /dev/null and b/static/images/pokemon/0772_Typecolon_Null.png differ diff --git a/static/images/pokemon/0773_Silvally.png b/static/images/pokemon/0773_Silvally.png new file mode 100644 index 0000000..0a5e00f Binary files /dev/null and b/static/images/pokemon/0773_Silvally.png differ diff --git a/static/images/pokemon/0774_Minior_(Blue_Core).png b/static/images/pokemon/0774_Minior_(Blue_Core).png new file mode 100644 index 0000000..068c15d Binary files /dev/null and b/static/images/pokemon/0774_Minior_(Blue_Core).png differ diff --git a/static/images/pokemon/0774_Minior_(Green_Core).png b/static/images/pokemon/0774_Minior_(Green_Core).png new file mode 100644 index 0000000..7f4b5f3 Binary files /dev/null and b/static/images/pokemon/0774_Minior_(Green_Core).png differ diff --git a/static/images/pokemon/0774_Minior_(Indigo_Core).png b/static/images/pokemon/0774_Minior_(Indigo_Core).png new file mode 100644 index 0000000..ecc40fd Binary files /dev/null and b/static/images/pokemon/0774_Minior_(Indigo_Core).png differ diff --git a/static/images/pokemon/0774_Minior_(Orange_Core).png b/static/images/pokemon/0774_Minior_(Orange_Core).png new file mode 100644 index 0000000..e906dd9 Binary files /dev/null and b/static/images/pokemon/0774_Minior_(Orange_Core).png differ diff --git a/static/images/pokemon/0774_Minior_(Violet_Core).png b/static/images/pokemon/0774_Minior_(Violet_Core).png new file mode 100644 index 0000000..e820d14 Binary files /dev/null and b/static/images/pokemon/0774_Minior_(Violet_Core).png differ diff --git a/static/images/pokemon/0774_Minior_(Yellow_Core).png b/static/images/pokemon/0774_Minior_(Yellow_Core).png new file mode 100644 index 0000000..bab5af4 Binary files /dev/null and b/static/images/pokemon/0774_Minior_(Yellow_Core).png differ diff --git a/static/images/pokemon/0775_Komala.png b/static/images/pokemon/0775_Komala.png new file mode 100644 index 0000000..07a1340 Binary files /dev/null and b/static/images/pokemon/0775_Komala.png differ diff --git a/static/images/pokemon/0776_Turtonator.png b/static/images/pokemon/0776_Turtonator.png new file mode 100644 index 0000000..75db897 Binary files /dev/null and b/static/images/pokemon/0776_Turtonator.png differ diff --git a/static/images/pokemon/0777_Togedemaru.png b/static/images/pokemon/0777_Togedemaru.png new file mode 100644 index 0000000..9478b7a Binary files /dev/null and b/static/images/pokemon/0777_Togedemaru.png differ diff --git a/static/images/pokemon/0778_Mimikyu.png b/static/images/pokemon/0778_Mimikyu.png new file mode 100644 index 0000000..4759589 Binary files /dev/null and b/static/images/pokemon/0778_Mimikyu.png differ diff --git a/static/images/pokemon/0779_Bruxish.png b/static/images/pokemon/0779_Bruxish.png new file mode 100644 index 0000000..0ecda8b Binary files /dev/null and b/static/images/pokemon/0779_Bruxish.png differ diff --git a/static/images/pokemon/0780_Drampa.png b/static/images/pokemon/0780_Drampa.png new file mode 100644 index 0000000..109488e Binary files /dev/null and b/static/images/pokemon/0780_Drampa.png differ diff --git a/static/images/pokemon/0781_Dhelmise.png b/static/images/pokemon/0781_Dhelmise.png new file mode 100644 index 0000000..b270551 Binary files /dev/null and b/static/images/pokemon/0781_Dhelmise.png differ diff --git a/static/images/pokemon/0782_Jangmo-o.png b/static/images/pokemon/0782_Jangmo-o.png new file mode 100644 index 0000000..3801e98 Binary files /dev/null and b/static/images/pokemon/0782_Jangmo-o.png differ diff --git a/static/images/pokemon/0783_Hakamo-o.png b/static/images/pokemon/0783_Hakamo-o.png new file mode 100644 index 0000000..c4d984e Binary files /dev/null and b/static/images/pokemon/0783_Hakamo-o.png differ diff --git a/static/images/pokemon/0784_Kommo-o.png b/static/images/pokemon/0784_Kommo-o.png new file mode 100644 index 0000000..d16c817 Binary files /dev/null and b/static/images/pokemon/0784_Kommo-o.png differ diff --git a/static/images/pokemon/0785_Tapu_Koko.png b/static/images/pokemon/0785_Tapu_Koko.png new file mode 100644 index 0000000..298fd3f Binary files /dev/null and b/static/images/pokemon/0785_Tapu_Koko.png differ diff --git a/static/images/pokemon/0786_Tapu_Lele.png b/static/images/pokemon/0786_Tapu_Lele.png new file mode 100644 index 0000000..891105a Binary files /dev/null and b/static/images/pokemon/0786_Tapu_Lele.png differ diff --git a/static/images/pokemon/0787_Tapu_Bulu.png b/static/images/pokemon/0787_Tapu_Bulu.png new file mode 100644 index 0000000..d161caa Binary files /dev/null and b/static/images/pokemon/0787_Tapu_Bulu.png differ diff --git a/static/images/pokemon/0788_Tapu_Fini.png b/static/images/pokemon/0788_Tapu_Fini.png new file mode 100644 index 0000000..bbb6ed4 Binary files /dev/null and b/static/images/pokemon/0788_Tapu_Fini.png differ diff --git a/static/images/pokemon/0789_Cosmog.png b/static/images/pokemon/0789_Cosmog.png new file mode 100644 index 0000000..df45708 Binary files /dev/null and b/static/images/pokemon/0789_Cosmog.png differ diff --git a/static/images/pokemon/0790_Cosmoem.png b/static/images/pokemon/0790_Cosmoem.png new file mode 100644 index 0000000..1b2d703 Binary files /dev/null and b/static/images/pokemon/0790_Cosmoem.png differ diff --git a/static/images/pokemon/0791_Solgaleo.png b/static/images/pokemon/0791_Solgaleo.png new file mode 100644 index 0000000..f8fc995 Binary files /dev/null and b/static/images/pokemon/0791_Solgaleo.png differ diff --git a/static/images/pokemon/0792_Lunala.png b/static/images/pokemon/0792_Lunala.png new file mode 100644 index 0000000..1ce16fb Binary files /dev/null and b/static/images/pokemon/0792_Lunala.png differ diff --git a/static/images/pokemon/0793_Nihilego.png b/static/images/pokemon/0793_Nihilego.png new file mode 100644 index 0000000..f54fef7 Binary files /dev/null and b/static/images/pokemon/0793_Nihilego.png differ diff --git a/static/images/pokemon/0794_Buzzwole.png b/static/images/pokemon/0794_Buzzwole.png new file mode 100644 index 0000000..707a43a Binary files /dev/null and b/static/images/pokemon/0794_Buzzwole.png differ diff --git a/static/images/pokemon/0795_Pheromosa.png b/static/images/pokemon/0795_Pheromosa.png new file mode 100644 index 0000000..d2b3b88 Binary files /dev/null and b/static/images/pokemon/0795_Pheromosa.png differ diff --git a/static/images/pokemon/0796_Xurkitree.png b/static/images/pokemon/0796_Xurkitree.png new file mode 100644 index 0000000..1c46748 Binary files /dev/null and b/static/images/pokemon/0796_Xurkitree.png differ diff --git a/static/images/pokemon/0797_Celesteela.png b/static/images/pokemon/0797_Celesteela.png new file mode 100644 index 0000000..f4c28cb Binary files /dev/null and b/static/images/pokemon/0797_Celesteela.png differ diff --git a/static/images/pokemon/0798_Kartana.png b/static/images/pokemon/0798_Kartana.png new file mode 100644 index 0000000..845d0fd Binary files /dev/null and b/static/images/pokemon/0798_Kartana.png differ diff --git a/static/images/pokemon/0799_Guzzlord.png b/static/images/pokemon/0799_Guzzlord.png new file mode 100644 index 0000000..bb43643 Binary files /dev/null and b/static/images/pokemon/0799_Guzzlord.png differ diff --git a/static/images/pokemon/0800_Necrozma.png b/static/images/pokemon/0800_Necrozma.png new file mode 100644 index 0000000..d35a14a Binary files /dev/null and b/static/images/pokemon/0800_Necrozma.png differ diff --git a/static/images/pokemon/0801_Magearna.png b/static/images/pokemon/0801_Magearna.png new file mode 100644 index 0000000..be5af8e Binary files /dev/null and b/static/images/pokemon/0801_Magearna.png differ diff --git a/static/images/pokemon/0801_Magearna_(Original_Color).png b/static/images/pokemon/0801_Magearna_(Original_Color).png new file mode 100644 index 0000000..72b8904 Binary files /dev/null and b/static/images/pokemon/0801_Magearna_(Original_Color).png differ diff --git a/static/images/pokemon/0802_Marshadow.png b/static/images/pokemon/0802_Marshadow.png new file mode 100644 index 0000000..c94ce86 Binary files /dev/null and b/static/images/pokemon/0802_Marshadow.png differ diff --git a/static/images/pokemon/0803_Poipole.png b/static/images/pokemon/0803_Poipole.png new file mode 100644 index 0000000..7910ce5 Binary files /dev/null and b/static/images/pokemon/0803_Poipole.png differ diff --git a/static/images/pokemon/0804_Naganadel.png b/static/images/pokemon/0804_Naganadel.png new file mode 100644 index 0000000..aec9008 Binary files /dev/null and b/static/images/pokemon/0804_Naganadel.png differ diff --git a/static/images/pokemon/0805_Stakataka.png b/static/images/pokemon/0805_Stakataka.png new file mode 100644 index 0000000..ae99423 Binary files /dev/null and b/static/images/pokemon/0805_Stakataka.png differ diff --git a/static/images/pokemon/0806_Blacephalon.png b/static/images/pokemon/0806_Blacephalon.png new file mode 100644 index 0000000..ffc981c Binary files /dev/null and b/static/images/pokemon/0806_Blacephalon.png differ diff --git a/static/images/pokemon/0807_Zeraora.png b/static/images/pokemon/0807_Zeraora.png new file mode 100644 index 0000000..7b64c2f Binary files /dev/null and b/static/images/pokemon/0807_Zeraora.png differ diff --git a/static/images/pokemon/0808_Meltan.png b/static/images/pokemon/0808_Meltan.png new file mode 100644 index 0000000..eddb721 Binary files /dev/null and b/static/images/pokemon/0808_Meltan.png differ diff --git a/static/images/pokemon/0809_Melmetal.png b/static/images/pokemon/0809_Melmetal.png new file mode 100644 index 0000000..ccd078d Binary files /dev/null and b/static/images/pokemon/0809_Melmetal.png differ diff --git a/static/images/pokemon/0810_Grookey.png b/static/images/pokemon/0810_Grookey.png new file mode 100644 index 0000000..51dd30f Binary files /dev/null and b/static/images/pokemon/0810_Grookey.png differ diff --git a/static/images/pokemon/0811_Thwackey.png b/static/images/pokemon/0811_Thwackey.png new file mode 100644 index 0000000..bea8377 Binary files /dev/null and b/static/images/pokemon/0811_Thwackey.png differ diff --git a/static/images/pokemon/0812_Rillaboom.png b/static/images/pokemon/0812_Rillaboom.png new file mode 100644 index 0000000..1dc2921 Binary files /dev/null and b/static/images/pokemon/0812_Rillaboom.png differ diff --git a/static/images/pokemon/0813_Scorbunny.png b/static/images/pokemon/0813_Scorbunny.png new file mode 100644 index 0000000..67e533e Binary files /dev/null and b/static/images/pokemon/0813_Scorbunny.png differ diff --git a/static/images/pokemon/0814_Raboot.png b/static/images/pokemon/0814_Raboot.png new file mode 100644 index 0000000..db44d5d Binary files /dev/null and b/static/images/pokemon/0814_Raboot.png differ diff --git a/static/images/pokemon/0815_Cinderace.png b/static/images/pokemon/0815_Cinderace.png new file mode 100644 index 0000000..ac448d7 Binary files /dev/null and b/static/images/pokemon/0815_Cinderace.png differ diff --git a/static/images/pokemon/0816_Sobble.png b/static/images/pokemon/0816_Sobble.png new file mode 100644 index 0000000..1f34134 Binary files /dev/null and b/static/images/pokemon/0816_Sobble.png differ diff --git a/static/images/pokemon/0817_Drizzile.png b/static/images/pokemon/0817_Drizzile.png new file mode 100644 index 0000000..45420c1 Binary files /dev/null and b/static/images/pokemon/0817_Drizzile.png differ diff --git a/static/images/pokemon/0818_Inteleon.png b/static/images/pokemon/0818_Inteleon.png new file mode 100644 index 0000000..ac69417 Binary files /dev/null and b/static/images/pokemon/0818_Inteleon.png differ diff --git a/static/images/pokemon/0819_Skwovet.png b/static/images/pokemon/0819_Skwovet.png new file mode 100644 index 0000000..e3e844b Binary files /dev/null and b/static/images/pokemon/0819_Skwovet.png differ diff --git a/static/images/pokemon/0820_Greedent.png b/static/images/pokemon/0820_Greedent.png new file mode 100644 index 0000000..c2a8f43 Binary files /dev/null and b/static/images/pokemon/0820_Greedent.png differ diff --git a/static/images/pokemon/0821_Rookidee.png b/static/images/pokemon/0821_Rookidee.png new file mode 100644 index 0000000..09e39e6 Binary files /dev/null and b/static/images/pokemon/0821_Rookidee.png differ diff --git a/static/images/pokemon/0822_Corvisquire.png b/static/images/pokemon/0822_Corvisquire.png new file mode 100644 index 0000000..5e9f4dd Binary files /dev/null and b/static/images/pokemon/0822_Corvisquire.png differ diff --git a/static/images/pokemon/0823_Corviknight.png b/static/images/pokemon/0823_Corviknight.png new file mode 100644 index 0000000..d927b92 Binary files /dev/null and b/static/images/pokemon/0823_Corviknight.png differ diff --git a/static/images/pokemon/0824_Blipbug.png b/static/images/pokemon/0824_Blipbug.png new file mode 100644 index 0000000..c6f367c Binary files /dev/null and b/static/images/pokemon/0824_Blipbug.png differ diff --git a/static/images/pokemon/0825_Dottler.png b/static/images/pokemon/0825_Dottler.png new file mode 100644 index 0000000..2d477a4 Binary files /dev/null and b/static/images/pokemon/0825_Dottler.png differ diff --git a/static/images/pokemon/0826_Orbeetle.png b/static/images/pokemon/0826_Orbeetle.png new file mode 100644 index 0000000..c7d22e9 Binary files /dev/null and b/static/images/pokemon/0826_Orbeetle.png differ diff --git a/static/images/pokemon/0827_Nickit.png b/static/images/pokemon/0827_Nickit.png new file mode 100644 index 0000000..deff685 Binary files /dev/null and b/static/images/pokemon/0827_Nickit.png differ diff --git a/static/images/pokemon/0828_Thievul.png b/static/images/pokemon/0828_Thievul.png new file mode 100644 index 0000000..4e0c2b0 Binary files /dev/null and b/static/images/pokemon/0828_Thievul.png differ diff --git a/static/images/pokemon/0829_Gossifleur.png b/static/images/pokemon/0829_Gossifleur.png new file mode 100644 index 0000000..6b6265f Binary files /dev/null and b/static/images/pokemon/0829_Gossifleur.png differ diff --git a/static/images/pokemon/0830_Eldegoss.png b/static/images/pokemon/0830_Eldegoss.png new file mode 100644 index 0000000..73a4d8a Binary files /dev/null and b/static/images/pokemon/0830_Eldegoss.png differ diff --git a/static/images/pokemon/0831_Wooloo.png b/static/images/pokemon/0831_Wooloo.png new file mode 100644 index 0000000..d8cfc39 Binary files /dev/null and b/static/images/pokemon/0831_Wooloo.png differ diff --git a/static/images/pokemon/0832_Dubwool.png b/static/images/pokemon/0832_Dubwool.png new file mode 100644 index 0000000..4d62435 Binary files /dev/null and b/static/images/pokemon/0832_Dubwool.png differ diff --git a/static/images/pokemon/0833_Chewtle.png b/static/images/pokemon/0833_Chewtle.png new file mode 100644 index 0000000..6cd29f5 Binary files /dev/null and b/static/images/pokemon/0833_Chewtle.png differ diff --git a/static/images/pokemon/0834_Drednaw.png b/static/images/pokemon/0834_Drednaw.png new file mode 100644 index 0000000..e5e1e10 Binary files /dev/null and b/static/images/pokemon/0834_Drednaw.png differ diff --git a/static/images/pokemon/0835_Yamper.png b/static/images/pokemon/0835_Yamper.png new file mode 100644 index 0000000..45bfc57 Binary files /dev/null and b/static/images/pokemon/0835_Yamper.png differ diff --git a/static/images/pokemon/0836_Boltund.png b/static/images/pokemon/0836_Boltund.png new file mode 100644 index 0000000..6d2c0b6 Binary files /dev/null and b/static/images/pokemon/0836_Boltund.png differ diff --git a/static/images/pokemon/0837_Rolycoly.png b/static/images/pokemon/0837_Rolycoly.png new file mode 100644 index 0000000..7a300f3 Binary files /dev/null and b/static/images/pokemon/0837_Rolycoly.png differ diff --git a/static/images/pokemon/0838_Carkol.png b/static/images/pokemon/0838_Carkol.png new file mode 100644 index 0000000..3713213 Binary files /dev/null and b/static/images/pokemon/0838_Carkol.png differ diff --git a/static/images/pokemon/0839_Coalossal.png b/static/images/pokemon/0839_Coalossal.png new file mode 100644 index 0000000..eaa5e7a Binary files /dev/null and b/static/images/pokemon/0839_Coalossal.png differ diff --git a/static/images/pokemon/0840_Applin.png b/static/images/pokemon/0840_Applin.png new file mode 100644 index 0000000..32cd99f Binary files /dev/null and b/static/images/pokemon/0840_Applin.png differ diff --git a/static/images/pokemon/0841_Flapple.png b/static/images/pokemon/0841_Flapple.png new file mode 100644 index 0000000..91e3083 Binary files /dev/null and b/static/images/pokemon/0841_Flapple.png differ diff --git a/static/images/pokemon/0842_Appletun.png b/static/images/pokemon/0842_Appletun.png new file mode 100644 index 0000000..f81dec8 Binary files /dev/null and b/static/images/pokemon/0842_Appletun.png differ diff --git a/static/images/pokemon/0843_Silicobra.png b/static/images/pokemon/0843_Silicobra.png new file mode 100644 index 0000000..ca19217 Binary files /dev/null and b/static/images/pokemon/0843_Silicobra.png differ diff --git a/static/images/pokemon/0844_Sandaconda.png b/static/images/pokemon/0844_Sandaconda.png new file mode 100644 index 0000000..f2c6c03 Binary files /dev/null and b/static/images/pokemon/0844_Sandaconda.png differ diff --git a/static/images/pokemon/0845_Cramorant.png b/static/images/pokemon/0845_Cramorant.png new file mode 100644 index 0000000..bd6b9f4 Binary files /dev/null and b/static/images/pokemon/0845_Cramorant.png differ diff --git a/static/images/pokemon/0846_Arrokuda.png b/static/images/pokemon/0846_Arrokuda.png new file mode 100644 index 0000000..ff5008d Binary files /dev/null and b/static/images/pokemon/0846_Arrokuda.png differ diff --git a/static/images/pokemon/0847_Barraskewda.png b/static/images/pokemon/0847_Barraskewda.png new file mode 100644 index 0000000..fb5c4ae Binary files /dev/null and b/static/images/pokemon/0847_Barraskewda.png differ diff --git a/static/images/pokemon/0848_Toxel.png b/static/images/pokemon/0848_Toxel.png new file mode 100644 index 0000000..d30b285 Binary files /dev/null and b/static/images/pokemon/0848_Toxel.png differ diff --git a/static/images/pokemon/0849_Toxtricity.png b/static/images/pokemon/0849_Toxtricity.png new file mode 100644 index 0000000..4e7caef Binary files /dev/null and b/static/images/pokemon/0849_Toxtricity.png differ diff --git a/static/images/pokemon/0849_Toxtricity_(Low_Key_Form).png b/static/images/pokemon/0849_Toxtricity_(Low_Key_Form).png new file mode 100644 index 0000000..f1069b3 Binary files /dev/null and b/static/images/pokemon/0849_Toxtricity_(Low_Key_Form).png differ diff --git a/static/images/pokemon/0850_Sizzlipede.png b/static/images/pokemon/0850_Sizzlipede.png new file mode 100644 index 0000000..399cbbd Binary files /dev/null and b/static/images/pokemon/0850_Sizzlipede.png differ diff --git a/static/images/pokemon/0851_Centiskorch.png b/static/images/pokemon/0851_Centiskorch.png new file mode 100644 index 0000000..30f6a07 Binary files /dev/null and b/static/images/pokemon/0851_Centiskorch.png differ diff --git a/static/images/pokemon/0852_Clobbopus.png b/static/images/pokemon/0852_Clobbopus.png new file mode 100644 index 0000000..64e95c5 Binary files /dev/null and b/static/images/pokemon/0852_Clobbopus.png differ diff --git a/static/images/pokemon/0853_Grapploct.png b/static/images/pokemon/0853_Grapploct.png new file mode 100644 index 0000000..e2d9395 Binary files /dev/null and b/static/images/pokemon/0853_Grapploct.png differ diff --git a/static/images/pokemon/0854_Sinistea.png b/static/images/pokemon/0854_Sinistea.png new file mode 100644 index 0000000..8bf6bf7 Binary files /dev/null and b/static/images/pokemon/0854_Sinistea.png differ diff --git a/static/images/pokemon/0854_Sinistea_(Authentic_Form).png b/static/images/pokemon/0854_Sinistea_(Authentic_Form).png new file mode 100644 index 0000000..8bf6bf7 Binary files /dev/null and b/static/images/pokemon/0854_Sinistea_(Authentic_Form).png differ diff --git a/static/images/pokemon/0855_Polteageist.png b/static/images/pokemon/0855_Polteageist.png new file mode 100644 index 0000000..dc87253 Binary files /dev/null and b/static/images/pokemon/0855_Polteageist.png differ diff --git a/static/images/pokemon/0855_Polteageist_(Authentic_Form).png b/static/images/pokemon/0855_Polteageist_(Authentic_Form).png new file mode 100644 index 0000000..dc87253 Binary files /dev/null and b/static/images/pokemon/0855_Polteageist_(Authentic_Form).png differ diff --git a/static/images/pokemon/0856_Hatenna.png b/static/images/pokemon/0856_Hatenna.png new file mode 100644 index 0000000..5ad291e Binary files /dev/null and b/static/images/pokemon/0856_Hatenna.png differ diff --git a/static/images/pokemon/0857_Hattrem.png b/static/images/pokemon/0857_Hattrem.png new file mode 100644 index 0000000..1b5673c Binary files /dev/null and b/static/images/pokemon/0857_Hattrem.png differ diff --git a/static/images/pokemon/0858_Hatterene.png b/static/images/pokemon/0858_Hatterene.png new file mode 100644 index 0000000..5cb8d1d Binary files /dev/null and b/static/images/pokemon/0858_Hatterene.png differ diff --git a/static/images/pokemon/0859_Impidimp.png b/static/images/pokemon/0859_Impidimp.png new file mode 100644 index 0000000..48521a9 Binary files /dev/null and b/static/images/pokemon/0859_Impidimp.png differ diff --git a/static/images/pokemon/0860_Morgrem.png b/static/images/pokemon/0860_Morgrem.png new file mode 100644 index 0000000..ca21a83 Binary files /dev/null and b/static/images/pokemon/0860_Morgrem.png differ diff --git a/static/images/pokemon/0861_Grimmsnarl.png b/static/images/pokemon/0861_Grimmsnarl.png new file mode 100644 index 0000000..df78a38 Binary files /dev/null and b/static/images/pokemon/0861_Grimmsnarl.png differ diff --git a/static/images/pokemon/0862_Obstagoon.png b/static/images/pokemon/0862_Obstagoon.png new file mode 100644 index 0000000..0efc414 Binary files /dev/null and b/static/images/pokemon/0862_Obstagoon.png differ diff --git a/static/images/pokemon/0863_Perrserker.png b/static/images/pokemon/0863_Perrserker.png new file mode 100644 index 0000000..126dea5 Binary files /dev/null and b/static/images/pokemon/0863_Perrserker.png differ diff --git a/static/images/pokemon/0864_Cursola.png b/static/images/pokemon/0864_Cursola.png new file mode 100644 index 0000000..0f7eda5 Binary files /dev/null and b/static/images/pokemon/0864_Cursola.png differ diff --git a/static/images/pokemon/0865_Sirfetch'd.png b/static/images/pokemon/0865_Sirfetch'd.png new file mode 100644 index 0000000..87206c5 Binary files /dev/null and b/static/images/pokemon/0865_Sirfetch'd.png differ diff --git a/static/images/pokemon/0866_Mr._Rime.png b/static/images/pokemon/0866_Mr._Rime.png new file mode 100644 index 0000000..3a66b51 Binary files /dev/null and b/static/images/pokemon/0866_Mr._Rime.png differ diff --git a/static/images/pokemon/0867_Runerigus.png b/static/images/pokemon/0867_Runerigus.png new file mode 100644 index 0000000..a2efa43 Binary files /dev/null and b/static/images/pokemon/0867_Runerigus.png differ diff --git a/static/images/pokemon/0868_Milcery.png b/static/images/pokemon/0868_Milcery.png new file mode 100644 index 0000000..80866b1 Binary files /dev/null and b/static/images/pokemon/0868_Milcery.png differ diff --git a/static/images/pokemon/0869_Alcremie.png b/static/images/pokemon/0869_Alcremie.png new file mode 100644 index 0000000..fbbf283 Binary files /dev/null and b/static/images/pokemon/0869_Alcremie.png differ diff --git a/static/images/pokemon/0869_Alcremie_(Caramel_Swirl).png b/static/images/pokemon/0869_Alcremie_(Caramel_Swirl).png new file mode 100644 index 0000000..02949f0 Binary files /dev/null and b/static/images/pokemon/0869_Alcremie_(Caramel_Swirl).png differ diff --git a/static/images/pokemon/0869_Alcremie_(Lemon_Cream).png b/static/images/pokemon/0869_Alcremie_(Lemon_Cream).png new file mode 100644 index 0000000..676a311 Binary files /dev/null and b/static/images/pokemon/0869_Alcremie_(Lemon_Cream).png differ diff --git a/static/images/pokemon/0869_Alcremie_(Matcha_Cream).png b/static/images/pokemon/0869_Alcremie_(Matcha_Cream).png new file mode 100644 index 0000000..903fd7b Binary files /dev/null and b/static/images/pokemon/0869_Alcremie_(Matcha_Cream).png differ diff --git a/static/images/pokemon/0869_Alcremie_(Mint_Cream).png b/static/images/pokemon/0869_Alcremie_(Mint_Cream).png new file mode 100644 index 0000000..e3266d3 Binary files /dev/null and b/static/images/pokemon/0869_Alcremie_(Mint_Cream).png differ diff --git a/static/images/pokemon/0869_Alcremie_(Rainbow_Swirl).png b/static/images/pokemon/0869_Alcremie_(Rainbow_Swirl).png new file mode 100644 index 0000000..d2fc0f7 Binary files /dev/null and b/static/images/pokemon/0869_Alcremie_(Rainbow_Swirl).png differ diff --git a/static/images/pokemon/0869_Alcremie_(Ruby_Cream).png b/static/images/pokemon/0869_Alcremie_(Ruby_Cream).png new file mode 100644 index 0000000..c03cc67 Binary files /dev/null and b/static/images/pokemon/0869_Alcremie_(Ruby_Cream).png differ diff --git a/static/images/pokemon/0869_Alcremie_(Ruby_Swirl).png b/static/images/pokemon/0869_Alcremie_(Ruby_Swirl).png new file mode 100644 index 0000000..8322a2a Binary files /dev/null and b/static/images/pokemon/0869_Alcremie_(Ruby_Swirl).png differ diff --git a/static/images/pokemon/0869_Alcremie_(Salted_Cream).png b/static/images/pokemon/0869_Alcremie_(Salted_Cream).png new file mode 100644 index 0000000..e1d1309 Binary files /dev/null and b/static/images/pokemon/0869_Alcremie_(Salted_Cream).png differ diff --git a/static/images/pokemon/0869_Alcremie_(Vanilla_Cream).png b/static/images/pokemon/0869_Alcremie_(Vanilla_Cream).png new file mode 100644 index 0000000..ff5caf2 Binary files /dev/null and b/static/images/pokemon/0869_Alcremie_(Vanilla_Cream).png differ diff --git a/static/images/pokemon/0870_Falinks.png b/static/images/pokemon/0870_Falinks.png new file mode 100644 index 0000000..3098734 Binary files /dev/null and b/static/images/pokemon/0870_Falinks.png differ diff --git a/static/images/pokemon/0871_Pincurchin.png b/static/images/pokemon/0871_Pincurchin.png new file mode 100644 index 0000000..3303e7b Binary files /dev/null and b/static/images/pokemon/0871_Pincurchin.png differ diff --git a/static/images/pokemon/0872_Snom.png b/static/images/pokemon/0872_Snom.png new file mode 100644 index 0000000..4c58c50 Binary files /dev/null and b/static/images/pokemon/0872_Snom.png differ diff --git a/static/images/pokemon/0873_Frosmoth.png b/static/images/pokemon/0873_Frosmoth.png new file mode 100644 index 0000000..fecdb0d Binary files /dev/null and b/static/images/pokemon/0873_Frosmoth.png differ diff --git a/static/images/pokemon/0874_Stonjourner.png b/static/images/pokemon/0874_Stonjourner.png new file mode 100644 index 0000000..db76e3d Binary files /dev/null and b/static/images/pokemon/0874_Stonjourner.png differ diff --git a/static/images/pokemon/0875_Eiscue.png b/static/images/pokemon/0875_Eiscue.png new file mode 100644 index 0000000..8c60901 Binary files /dev/null and b/static/images/pokemon/0875_Eiscue.png differ diff --git a/static/images/pokemon/0876_Indeedee.png b/static/images/pokemon/0876_Indeedee.png new file mode 100644 index 0000000..82bf115 Binary files /dev/null and b/static/images/pokemon/0876_Indeedee.png differ diff --git a/static/images/pokemon/0876_Indeedee_(Female).png b/static/images/pokemon/0876_Indeedee_(Female).png new file mode 100644 index 0000000..29bd7de Binary files /dev/null and b/static/images/pokemon/0876_Indeedee_(Female).png differ diff --git a/static/images/pokemon/0877_Morpeko.png b/static/images/pokemon/0877_Morpeko.png new file mode 100644 index 0000000..b41c25a Binary files /dev/null and b/static/images/pokemon/0877_Morpeko.png differ diff --git a/static/images/pokemon/0878_Cufant.png b/static/images/pokemon/0878_Cufant.png new file mode 100644 index 0000000..fb206c1 Binary files /dev/null and b/static/images/pokemon/0878_Cufant.png differ diff --git a/static/images/pokemon/0879_Copperajah.png b/static/images/pokemon/0879_Copperajah.png new file mode 100644 index 0000000..29b7417 Binary files /dev/null and b/static/images/pokemon/0879_Copperajah.png differ diff --git a/static/images/pokemon/0880_Dracozolt.png b/static/images/pokemon/0880_Dracozolt.png new file mode 100644 index 0000000..60348ce Binary files /dev/null and b/static/images/pokemon/0880_Dracozolt.png differ diff --git a/static/images/pokemon/0881_Arctozolt.png b/static/images/pokemon/0881_Arctozolt.png new file mode 100644 index 0000000..9e1717e Binary files /dev/null and b/static/images/pokemon/0881_Arctozolt.png differ diff --git a/static/images/pokemon/0882_Dracovish.png b/static/images/pokemon/0882_Dracovish.png new file mode 100644 index 0000000..d1644af Binary files /dev/null and b/static/images/pokemon/0882_Dracovish.png differ diff --git a/static/images/pokemon/0883_Arctovish.png b/static/images/pokemon/0883_Arctovish.png new file mode 100644 index 0000000..0371fce Binary files /dev/null and b/static/images/pokemon/0883_Arctovish.png differ diff --git a/static/images/pokemon/0884_Duraludon.png b/static/images/pokemon/0884_Duraludon.png new file mode 100644 index 0000000..eaf430e Binary files /dev/null and b/static/images/pokemon/0884_Duraludon.png differ diff --git a/static/images/pokemon/0885_Dreepy.png b/static/images/pokemon/0885_Dreepy.png new file mode 100644 index 0000000..4c3d3ea Binary files /dev/null and b/static/images/pokemon/0885_Dreepy.png differ diff --git a/static/images/pokemon/0886_Drakloak.png b/static/images/pokemon/0886_Drakloak.png new file mode 100644 index 0000000..950a5c1 Binary files /dev/null and b/static/images/pokemon/0886_Drakloak.png differ diff --git a/static/images/pokemon/0887_Dragapult.png b/static/images/pokemon/0887_Dragapult.png new file mode 100644 index 0000000..d3ec3db Binary files /dev/null and b/static/images/pokemon/0887_Dragapult.png differ diff --git a/static/images/pokemon/0888_Zacian.png b/static/images/pokemon/0888_Zacian.png new file mode 100644 index 0000000..f605ee3 Binary files /dev/null and b/static/images/pokemon/0888_Zacian.png differ diff --git a/static/images/pokemon/0889_Zamazenta.png b/static/images/pokemon/0889_Zamazenta.png new file mode 100644 index 0000000..47ed423 Binary files /dev/null and b/static/images/pokemon/0889_Zamazenta.png differ diff --git a/static/images/pokemon/0890_Eternatus.png b/static/images/pokemon/0890_Eternatus.png new file mode 100644 index 0000000..94d581f Binary files /dev/null and b/static/images/pokemon/0890_Eternatus.png differ diff --git a/static/images/pokemon/0891_Kubfu.png b/static/images/pokemon/0891_Kubfu.png new file mode 100644 index 0000000..c5e1fa0 Binary files /dev/null and b/static/images/pokemon/0891_Kubfu.png differ diff --git a/static/images/pokemon/0892_Urshifu.png b/static/images/pokemon/0892_Urshifu.png new file mode 100644 index 0000000..3fec023 Binary files /dev/null and b/static/images/pokemon/0892_Urshifu.png differ diff --git a/static/images/pokemon/0892_Urshifu_(Rapid_Strike_Style).png b/static/images/pokemon/0892_Urshifu_(Rapid_Strike_Style).png new file mode 100644 index 0000000..de051d3 Binary files /dev/null and b/static/images/pokemon/0892_Urshifu_(Rapid_Strike_Style).png differ diff --git a/static/images/pokemon/0893_Zarude.png b/static/images/pokemon/0893_Zarude.png new file mode 100644 index 0000000..2bfa8b5 Binary files /dev/null and b/static/images/pokemon/0893_Zarude.png differ diff --git a/static/images/pokemon/0893_Zarude_(Dada).png b/static/images/pokemon/0893_Zarude_(Dada).png new file mode 100644 index 0000000..2589c83 Binary files /dev/null and b/static/images/pokemon/0893_Zarude_(Dada).png differ diff --git a/static/images/pokemon/0894_Regieleki.png b/static/images/pokemon/0894_Regieleki.png new file mode 100644 index 0000000..2b4db0c Binary files /dev/null and b/static/images/pokemon/0894_Regieleki.png differ diff --git a/static/images/pokemon/0895_Regidrago.png b/static/images/pokemon/0895_Regidrago.png new file mode 100644 index 0000000..fa335f4 Binary files /dev/null and b/static/images/pokemon/0895_Regidrago.png differ diff --git a/static/images/pokemon/0896_Glastrier.png b/static/images/pokemon/0896_Glastrier.png new file mode 100644 index 0000000..53992c1 Binary files /dev/null and b/static/images/pokemon/0896_Glastrier.png differ diff --git a/static/images/pokemon/0897_Spectrier.png b/static/images/pokemon/0897_Spectrier.png new file mode 100644 index 0000000..a856035 Binary files /dev/null and b/static/images/pokemon/0897_Spectrier.png differ diff --git a/static/images/pokemon/0898_Calyrex.png b/static/images/pokemon/0898_Calyrex.png new file mode 100644 index 0000000..90a09df Binary files /dev/null and b/static/images/pokemon/0898_Calyrex.png differ diff --git a/static/images/pokemon/0899_Wyrdeer.png b/static/images/pokemon/0899_Wyrdeer.png new file mode 100644 index 0000000..b9ca5af Binary files /dev/null and b/static/images/pokemon/0899_Wyrdeer.png differ diff --git a/static/images/pokemon/0900_Kleavor.png b/static/images/pokemon/0900_Kleavor.png new file mode 100644 index 0000000..4917efb Binary files /dev/null and b/static/images/pokemon/0900_Kleavor.png differ diff --git a/static/images/pokemon/0901_Ursaluna.png b/static/images/pokemon/0901_Ursaluna.png new file mode 100644 index 0000000..8f140ee Binary files /dev/null and b/static/images/pokemon/0901_Ursaluna.png differ diff --git a/static/images/pokemon/0901_Ursaluna_(Blood_Moon_Form).png b/static/images/pokemon/0901_Ursaluna_(Blood_Moon_Form).png new file mode 100644 index 0000000..fb1c5fe Binary files /dev/null and b/static/images/pokemon/0901_Ursaluna_(Blood_Moon_Form).png differ diff --git a/static/images/pokemon/0902_Basculegion.png b/static/images/pokemon/0902_Basculegion.png new file mode 100644 index 0000000..a887683 Binary files /dev/null and b/static/images/pokemon/0902_Basculegion.png differ diff --git a/static/images/pokemon/0902_Basculegion_(Female).png b/static/images/pokemon/0902_Basculegion_(Female).png new file mode 100644 index 0000000..013b09f Binary files /dev/null and b/static/images/pokemon/0902_Basculegion_(Female).png differ diff --git a/static/images/pokemon/0903_Sneasler.png b/static/images/pokemon/0903_Sneasler.png new file mode 100644 index 0000000..f607290 Binary files /dev/null and b/static/images/pokemon/0903_Sneasler.png differ diff --git a/static/images/pokemon/0904_Overqwil.png b/static/images/pokemon/0904_Overqwil.png new file mode 100644 index 0000000..03d3f44 Binary files /dev/null and b/static/images/pokemon/0904_Overqwil.png differ diff --git a/static/images/pokemon/0905_Enamorus.png b/static/images/pokemon/0905_Enamorus.png new file mode 100644 index 0000000..dc4fcf7 Binary files /dev/null and b/static/images/pokemon/0905_Enamorus.png differ diff --git a/static/images/pokemon/0905_Enamorus_(Therian_Forme).png b/static/images/pokemon/0905_Enamorus_(Therian_Forme).png new file mode 100644 index 0000000..c61b682 Binary files /dev/null and b/static/images/pokemon/0905_Enamorus_(Therian_Forme).png differ diff --git a/static/images/pokemon/0906_Sprigatito.png b/static/images/pokemon/0906_Sprigatito.png new file mode 100644 index 0000000..16b9ad4 Binary files /dev/null and b/static/images/pokemon/0906_Sprigatito.png differ diff --git a/static/images/pokemon/0907_Floragato.png b/static/images/pokemon/0907_Floragato.png new file mode 100644 index 0000000..f8eb771 Binary files /dev/null and b/static/images/pokemon/0907_Floragato.png differ diff --git a/static/images/pokemon/0908_Meowscarada.png b/static/images/pokemon/0908_Meowscarada.png new file mode 100644 index 0000000..5150b42 Binary files /dev/null and b/static/images/pokemon/0908_Meowscarada.png differ diff --git a/static/images/pokemon/0909_Fuecoco.png b/static/images/pokemon/0909_Fuecoco.png new file mode 100644 index 0000000..e5bd7fe Binary files /dev/null and b/static/images/pokemon/0909_Fuecoco.png differ diff --git a/static/images/pokemon/0910_Crocalor.png b/static/images/pokemon/0910_Crocalor.png new file mode 100644 index 0000000..57bb268 Binary files /dev/null and b/static/images/pokemon/0910_Crocalor.png differ diff --git a/static/images/pokemon/0911_Skeledirge.png b/static/images/pokemon/0911_Skeledirge.png new file mode 100644 index 0000000..b719283 Binary files /dev/null and b/static/images/pokemon/0911_Skeledirge.png differ diff --git a/static/images/pokemon/0912_Quaxly.png b/static/images/pokemon/0912_Quaxly.png new file mode 100644 index 0000000..87569f2 Binary files /dev/null and b/static/images/pokemon/0912_Quaxly.png differ diff --git a/static/images/pokemon/0913_Quaxwell.png b/static/images/pokemon/0913_Quaxwell.png new file mode 100644 index 0000000..a0d8edf Binary files /dev/null and b/static/images/pokemon/0913_Quaxwell.png differ diff --git a/static/images/pokemon/0914_Quaquaval.png b/static/images/pokemon/0914_Quaquaval.png new file mode 100644 index 0000000..13aa5cb Binary files /dev/null and b/static/images/pokemon/0914_Quaquaval.png differ diff --git a/static/images/pokemon/0915_Lechonk.png b/static/images/pokemon/0915_Lechonk.png new file mode 100644 index 0000000..be79f2a Binary files /dev/null and b/static/images/pokemon/0915_Lechonk.png differ diff --git a/static/images/pokemon/0916_Oinkologne.png b/static/images/pokemon/0916_Oinkologne.png new file mode 100644 index 0000000..ce409a1 Binary files /dev/null and b/static/images/pokemon/0916_Oinkologne.png differ diff --git a/static/images/pokemon/0916_Oinkologne_(Female).png b/static/images/pokemon/0916_Oinkologne_(Female).png new file mode 100644 index 0000000..90448e0 Binary files /dev/null and b/static/images/pokemon/0916_Oinkologne_(Female).png differ diff --git a/static/images/pokemon/0917_Tarountula.png b/static/images/pokemon/0917_Tarountula.png new file mode 100644 index 0000000..c747eed Binary files /dev/null and b/static/images/pokemon/0917_Tarountula.png differ diff --git a/static/images/pokemon/0918_Spidops.png b/static/images/pokemon/0918_Spidops.png new file mode 100644 index 0000000..a333c0b Binary files /dev/null and b/static/images/pokemon/0918_Spidops.png differ diff --git a/static/images/pokemon/0919_Nymble.png b/static/images/pokemon/0919_Nymble.png new file mode 100644 index 0000000..8b8f72d Binary files /dev/null and b/static/images/pokemon/0919_Nymble.png differ diff --git a/static/images/pokemon/0920_Lokix.png b/static/images/pokemon/0920_Lokix.png new file mode 100644 index 0000000..b8d2b93 Binary files /dev/null and b/static/images/pokemon/0920_Lokix.png differ diff --git a/static/images/pokemon/0921_Pawmi.png b/static/images/pokemon/0921_Pawmi.png new file mode 100644 index 0000000..83cc96c Binary files /dev/null and b/static/images/pokemon/0921_Pawmi.png differ diff --git a/static/images/pokemon/0922_Pawmo.png b/static/images/pokemon/0922_Pawmo.png new file mode 100644 index 0000000..759916a Binary files /dev/null and b/static/images/pokemon/0922_Pawmo.png differ diff --git a/static/images/pokemon/0923_Pawmot.png b/static/images/pokemon/0923_Pawmot.png new file mode 100644 index 0000000..0befe58 Binary files /dev/null and b/static/images/pokemon/0923_Pawmot.png differ diff --git a/static/images/pokemon/0924_Tandemaus.png b/static/images/pokemon/0924_Tandemaus.png new file mode 100644 index 0000000..2ae9c59 Binary files /dev/null and b/static/images/pokemon/0924_Tandemaus.png differ diff --git a/static/images/pokemon/0925_Maushold.png b/static/images/pokemon/0925_Maushold.png new file mode 100644 index 0000000..baa963b Binary files /dev/null and b/static/images/pokemon/0925_Maushold.png differ diff --git a/static/images/pokemon/0925_Maushold_(Family_of_Four).png b/static/images/pokemon/0925_Maushold_(Family_of_Four).png new file mode 100644 index 0000000..23be3a7 Binary files /dev/null and b/static/images/pokemon/0925_Maushold_(Family_of_Four).png differ diff --git a/static/images/pokemon/0926_Fidough.png b/static/images/pokemon/0926_Fidough.png new file mode 100644 index 0000000..c266762 Binary files /dev/null and b/static/images/pokemon/0926_Fidough.png differ diff --git a/static/images/pokemon/0927_Dachsbun.png b/static/images/pokemon/0927_Dachsbun.png new file mode 100644 index 0000000..c87018c Binary files /dev/null and b/static/images/pokemon/0927_Dachsbun.png differ diff --git a/static/images/pokemon/0928_Smoliv.png b/static/images/pokemon/0928_Smoliv.png new file mode 100644 index 0000000..1d706e6 Binary files /dev/null and b/static/images/pokemon/0928_Smoliv.png differ diff --git a/static/images/pokemon/0929_Dolliv.png b/static/images/pokemon/0929_Dolliv.png new file mode 100644 index 0000000..88be73f Binary files /dev/null and b/static/images/pokemon/0929_Dolliv.png differ diff --git a/static/images/pokemon/0930_Arboliva.png b/static/images/pokemon/0930_Arboliva.png new file mode 100644 index 0000000..1d62478 Binary files /dev/null and b/static/images/pokemon/0930_Arboliva.png differ diff --git a/static/images/pokemon/0931_Squawkabilly.png b/static/images/pokemon/0931_Squawkabilly.png new file mode 100644 index 0000000..5f99d2b Binary files /dev/null and b/static/images/pokemon/0931_Squawkabilly.png differ diff --git a/static/images/pokemon/0931_Squawkabilly_(Blue_Plumage).png b/static/images/pokemon/0931_Squawkabilly_(Blue_Plumage).png new file mode 100644 index 0000000..81bf080 Binary files /dev/null and b/static/images/pokemon/0931_Squawkabilly_(Blue_Plumage).png differ diff --git a/static/images/pokemon/0931_Squawkabilly_(White_Plumage).png b/static/images/pokemon/0931_Squawkabilly_(White_Plumage).png new file mode 100644 index 0000000..de2f3c9 Binary files /dev/null and b/static/images/pokemon/0931_Squawkabilly_(White_Plumage).png differ diff --git a/static/images/pokemon/0931_Squawkabilly_(Yellow_Plumage).png b/static/images/pokemon/0931_Squawkabilly_(Yellow_Plumage).png new file mode 100644 index 0000000..1e37ac2 Binary files /dev/null and b/static/images/pokemon/0931_Squawkabilly_(Yellow_Plumage).png differ diff --git a/static/images/pokemon/0932_Nacli.png b/static/images/pokemon/0932_Nacli.png new file mode 100644 index 0000000..5bd95f4 Binary files /dev/null and b/static/images/pokemon/0932_Nacli.png differ diff --git a/static/images/pokemon/0933_Naclstack.png b/static/images/pokemon/0933_Naclstack.png new file mode 100644 index 0000000..34bd112 Binary files /dev/null and b/static/images/pokemon/0933_Naclstack.png differ diff --git a/static/images/pokemon/0934_Garganacl.png b/static/images/pokemon/0934_Garganacl.png new file mode 100644 index 0000000..d0e55d6 Binary files /dev/null and b/static/images/pokemon/0934_Garganacl.png differ diff --git a/static/images/pokemon/0935_Charcadet.png b/static/images/pokemon/0935_Charcadet.png new file mode 100644 index 0000000..1e2098e Binary files /dev/null and b/static/images/pokemon/0935_Charcadet.png differ diff --git a/static/images/pokemon/0936_Armarouge.png b/static/images/pokemon/0936_Armarouge.png new file mode 100644 index 0000000..44c35b3 Binary files /dev/null and b/static/images/pokemon/0936_Armarouge.png differ diff --git a/static/images/pokemon/0937_Ceruledge.png b/static/images/pokemon/0937_Ceruledge.png new file mode 100644 index 0000000..3922519 Binary files /dev/null and b/static/images/pokemon/0937_Ceruledge.png differ diff --git a/static/images/pokemon/0938_Tadbulb.png b/static/images/pokemon/0938_Tadbulb.png new file mode 100644 index 0000000..17e0c36 Binary files /dev/null and b/static/images/pokemon/0938_Tadbulb.png differ diff --git a/static/images/pokemon/0939_Bellibolt.png b/static/images/pokemon/0939_Bellibolt.png new file mode 100644 index 0000000..50ed2b8 Binary files /dev/null and b/static/images/pokemon/0939_Bellibolt.png differ diff --git a/static/images/pokemon/0940_Wattrel.png b/static/images/pokemon/0940_Wattrel.png new file mode 100644 index 0000000..6d5c9c3 Binary files /dev/null and b/static/images/pokemon/0940_Wattrel.png differ diff --git a/static/images/pokemon/0941_Kilowattrel.png b/static/images/pokemon/0941_Kilowattrel.png new file mode 100644 index 0000000..5b9996d Binary files /dev/null and b/static/images/pokemon/0941_Kilowattrel.png differ diff --git a/static/images/pokemon/0942_Maschiff.png b/static/images/pokemon/0942_Maschiff.png new file mode 100644 index 0000000..0f879c7 Binary files /dev/null and b/static/images/pokemon/0942_Maschiff.png differ diff --git a/static/images/pokemon/0943_Mabosstiff.png b/static/images/pokemon/0943_Mabosstiff.png new file mode 100644 index 0000000..3be3a5f Binary files /dev/null and b/static/images/pokemon/0943_Mabosstiff.png differ diff --git a/static/images/pokemon/0944_Shroodle.png b/static/images/pokemon/0944_Shroodle.png new file mode 100644 index 0000000..b40edb1 Binary files /dev/null and b/static/images/pokemon/0944_Shroodle.png differ diff --git a/static/images/pokemon/0945_Grafaiai.png b/static/images/pokemon/0945_Grafaiai.png new file mode 100644 index 0000000..25bd83f Binary files /dev/null and b/static/images/pokemon/0945_Grafaiai.png differ diff --git a/static/images/pokemon/0946_Bramblin.png b/static/images/pokemon/0946_Bramblin.png new file mode 100644 index 0000000..b9bb56b Binary files /dev/null and b/static/images/pokemon/0946_Bramblin.png differ diff --git a/static/images/pokemon/0947_Brambleghast.png b/static/images/pokemon/0947_Brambleghast.png new file mode 100644 index 0000000..c10ac51 Binary files /dev/null and b/static/images/pokemon/0947_Brambleghast.png differ diff --git a/static/images/pokemon/0948_Toedscool.png b/static/images/pokemon/0948_Toedscool.png new file mode 100644 index 0000000..01743b9 Binary files /dev/null and b/static/images/pokemon/0948_Toedscool.png differ diff --git a/static/images/pokemon/0949_Toedscruel.png b/static/images/pokemon/0949_Toedscruel.png new file mode 100644 index 0000000..40eae80 Binary files /dev/null and b/static/images/pokemon/0949_Toedscruel.png differ diff --git a/static/images/pokemon/0950_Klawf.png b/static/images/pokemon/0950_Klawf.png new file mode 100644 index 0000000..8451086 Binary files /dev/null and b/static/images/pokemon/0950_Klawf.png differ diff --git a/static/images/pokemon/0951_Capsakid.png b/static/images/pokemon/0951_Capsakid.png new file mode 100644 index 0000000..098cf97 Binary files /dev/null and b/static/images/pokemon/0951_Capsakid.png differ diff --git a/static/images/pokemon/0952_Scovillain.png b/static/images/pokemon/0952_Scovillain.png new file mode 100644 index 0000000..8bbe11f Binary files /dev/null and b/static/images/pokemon/0952_Scovillain.png differ diff --git a/static/images/pokemon/0953_Rellor.png b/static/images/pokemon/0953_Rellor.png new file mode 100644 index 0000000..32cc1e1 Binary files /dev/null and b/static/images/pokemon/0953_Rellor.png differ diff --git a/static/images/pokemon/0954_Rabsca.png b/static/images/pokemon/0954_Rabsca.png new file mode 100644 index 0000000..158df4d Binary files /dev/null and b/static/images/pokemon/0954_Rabsca.png differ diff --git a/static/images/pokemon/0955_Flittle.png b/static/images/pokemon/0955_Flittle.png new file mode 100644 index 0000000..ab9d141 Binary files /dev/null and b/static/images/pokemon/0955_Flittle.png differ diff --git a/static/images/pokemon/0956_Espathra.png b/static/images/pokemon/0956_Espathra.png new file mode 100644 index 0000000..0d9c42b Binary files /dev/null and b/static/images/pokemon/0956_Espathra.png differ diff --git a/static/images/pokemon/0957_Tinkatink.png b/static/images/pokemon/0957_Tinkatink.png new file mode 100644 index 0000000..ccc1ebc Binary files /dev/null and b/static/images/pokemon/0957_Tinkatink.png differ diff --git a/static/images/pokemon/0958_Tinkatuff.png b/static/images/pokemon/0958_Tinkatuff.png new file mode 100644 index 0000000..1db1a15 Binary files /dev/null and b/static/images/pokemon/0958_Tinkatuff.png differ diff --git a/static/images/pokemon/0959_Tinkaton.png b/static/images/pokemon/0959_Tinkaton.png new file mode 100644 index 0000000..01c37f0 Binary files /dev/null and b/static/images/pokemon/0959_Tinkaton.png differ diff --git a/static/images/pokemon/0960_Wiglett.png b/static/images/pokemon/0960_Wiglett.png new file mode 100644 index 0000000..7ad5d9d Binary files /dev/null and b/static/images/pokemon/0960_Wiglett.png differ diff --git a/static/images/pokemon/0961_Wugtrio.png b/static/images/pokemon/0961_Wugtrio.png new file mode 100644 index 0000000..b9553e1 Binary files /dev/null and b/static/images/pokemon/0961_Wugtrio.png differ diff --git a/static/images/pokemon/0962_Bombirdier.png b/static/images/pokemon/0962_Bombirdier.png new file mode 100644 index 0000000..257dee2 Binary files /dev/null and b/static/images/pokemon/0962_Bombirdier.png differ diff --git a/static/images/pokemon/0963_Finizen.png b/static/images/pokemon/0963_Finizen.png new file mode 100644 index 0000000..31a1cda Binary files /dev/null and b/static/images/pokemon/0963_Finizen.png differ diff --git a/static/images/pokemon/0964_Palafin.png b/static/images/pokemon/0964_Palafin.png new file mode 100644 index 0000000..2abbf66 Binary files /dev/null and b/static/images/pokemon/0964_Palafin.png differ diff --git a/static/images/pokemon/0965_Varoom.png b/static/images/pokemon/0965_Varoom.png new file mode 100644 index 0000000..00f67e0 Binary files /dev/null and b/static/images/pokemon/0965_Varoom.png differ diff --git a/static/images/pokemon/0966_Revavroom.png b/static/images/pokemon/0966_Revavroom.png new file mode 100644 index 0000000..ddf3d98 Binary files /dev/null and b/static/images/pokemon/0966_Revavroom.png differ diff --git a/static/images/pokemon/0967_Cyclizar.png b/static/images/pokemon/0967_Cyclizar.png new file mode 100644 index 0000000..40d0178 Binary files /dev/null and b/static/images/pokemon/0967_Cyclizar.png differ diff --git a/static/images/pokemon/0968_Orthworm.png b/static/images/pokemon/0968_Orthworm.png new file mode 100644 index 0000000..784aa2d Binary files /dev/null and b/static/images/pokemon/0968_Orthworm.png differ diff --git a/static/images/pokemon/0969_Glimmet.png b/static/images/pokemon/0969_Glimmet.png new file mode 100644 index 0000000..2151b81 Binary files /dev/null and b/static/images/pokemon/0969_Glimmet.png differ diff --git a/static/images/pokemon/0970_Glimmora.png b/static/images/pokemon/0970_Glimmora.png new file mode 100644 index 0000000..9bd07e4 Binary files /dev/null and b/static/images/pokemon/0970_Glimmora.png differ diff --git a/static/images/pokemon/0971_Greavard.png b/static/images/pokemon/0971_Greavard.png new file mode 100644 index 0000000..952350d Binary files /dev/null and b/static/images/pokemon/0971_Greavard.png differ diff --git a/static/images/pokemon/0972_Houndstone.png b/static/images/pokemon/0972_Houndstone.png new file mode 100644 index 0000000..b9ad633 Binary files /dev/null and b/static/images/pokemon/0972_Houndstone.png differ diff --git a/static/images/pokemon/0973_Flamigo.png b/static/images/pokemon/0973_Flamigo.png new file mode 100644 index 0000000..9fc84b0 Binary files /dev/null and b/static/images/pokemon/0973_Flamigo.png differ diff --git a/static/images/pokemon/0974_Cetoddle.png b/static/images/pokemon/0974_Cetoddle.png new file mode 100644 index 0000000..374f01b Binary files /dev/null and b/static/images/pokemon/0974_Cetoddle.png differ diff --git a/static/images/pokemon/0975_Cetitan.png b/static/images/pokemon/0975_Cetitan.png new file mode 100644 index 0000000..ad4e9d9 Binary files /dev/null and b/static/images/pokemon/0975_Cetitan.png differ diff --git a/static/images/pokemon/0976_Veluza.png b/static/images/pokemon/0976_Veluza.png new file mode 100644 index 0000000..37ea642 Binary files /dev/null and b/static/images/pokemon/0976_Veluza.png differ diff --git a/static/images/pokemon/0977_Dondozo.png b/static/images/pokemon/0977_Dondozo.png new file mode 100644 index 0000000..294f7a5 Binary files /dev/null and b/static/images/pokemon/0977_Dondozo.png differ diff --git a/static/images/pokemon/0978_Tatsugiri.png b/static/images/pokemon/0978_Tatsugiri.png new file mode 100644 index 0000000..0c5fa4e Binary files /dev/null and b/static/images/pokemon/0978_Tatsugiri.png differ diff --git a/static/images/pokemon/0978_Tatsugiri_(Droopy_Form).png b/static/images/pokemon/0978_Tatsugiri_(Droopy_Form).png new file mode 100644 index 0000000..67b3c0c Binary files /dev/null and b/static/images/pokemon/0978_Tatsugiri_(Droopy_Form).png differ diff --git a/static/images/pokemon/0978_Tatsugiri_(Stretchy_Form).png b/static/images/pokemon/0978_Tatsugiri_(Stretchy_Form).png new file mode 100644 index 0000000..f0f745c Binary files /dev/null and b/static/images/pokemon/0978_Tatsugiri_(Stretchy_Form).png differ diff --git a/static/images/pokemon/0979_Annihilape.png b/static/images/pokemon/0979_Annihilape.png new file mode 100644 index 0000000..43a53cf Binary files /dev/null and b/static/images/pokemon/0979_Annihilape.png differ diff --git a/static/images/pokemon/0980_Clodsire.png b/static/images/pokemon/0980_Clodsire.png new file mode 100644 index 0000000..2b3f935 Binary files /dev/null and b/static/images/pokemon/0980_Clodsire.png differ diff --git a/static/images/pokemon/0981_Farigiraf.png b/static/images/pokemon/0981_Farigiraf.png new file mode 100644 index 0000000..8af0880 Binary files /dev/null and b/static/images/pokemon/0981_Farigiraf.png differ diff --git a/static/images/pokemon/0982_Dudunsparce.png b/static/images/pokemon/0982_Dudunsparce.png new file mode 100644 index 0000000..8ab10d7 Binary files /dev/null and b/static/images/pokemon/0982_Dudunsparce.png differ diff --git a/static/images/pokemon/0982_Dudunsparce_(Three-Segment_Form).png b/static/images/pokemon/0982_Dudunsparce_(Three-Segment_Form).png new file mode 100644 index 0000000..0479fb3 Binary files /dev/null and b/static/images/pokemon/0982_Dudunsparce_(Three-Segment_Form).png differ diff --git a/static/images/pokemon/0983_Kingambit.png b/static/images/pokemon/0983_Kingambit.png new file mode 100644 index 0000000..e88d1fa Binary files /dev/null and b/static/images/pokemon/0983_Kingambit.png differ diff --git a/static/images/pokemon/0984_Great_Tusk.png b/static/images/pokemon/0984_Great_Tusk.png new file mode 100644 index 0000000..8de147a Binary files /dev/null and b/static/images/pokemon/0984_Great_Tusk.png differ diff --git a/static/images/pokemon/0985_Scream_Tail.png b/static/images/pokemon/0985_Scream_Tail.png new file mode 100644 index 0000000..d61b621 Binary files /dev/null and b/static/images/pokemon/0985_Scream_Tail.png differ diff --git a/static/images/pokemon/0986_Brute_Bonnet.png b/static/images/pokemon/0986_Brute_Bonnet.png new file mode 100644 index 0000000..bc93bd4 Binary files /dev/null and b/static/images/pokemon/0986_Brute_Bonnet.png differ diff --git a/static/images/pokemon/0987_Flutter_Mane.png b/static/images/pokemon/0987_Flutter_Mane.png new file mode 100644 index 0000000..aa0b764 Binary files /dev/null and b/static/images/pokemon/0987_Flutter_Mane.png differ diff --git a/static/images/pokemon/0988_Slither_Wing.png b/static/images/pokemon/0988_Slither_Wing.png new file mode 100644 index 0000000..65faf32 Binary files /dev/null and b/static/images/pokemon/0988_Slither_Wing.png differ diff --git a/static/images/pokemon/0989_Sandy_Shocks.png b/static/images/pokemon/0989_Sandy_Shocks.png new file mode 100644 index 0000000..12bf650 Binary files /dev/null and b/static/images/pokemon/0989_Sandy_Shocks.png differ diff --git a/static/images/pokemon/0990_Iron_Treads.png b/static/images/pokemon/0990_Iron_Treads.png new file mode 100644 index 0000000..ea5f4e4 Binary files /dev/null and b/static/images/pokemon/0990_Iron_Treads.png differ diff --git a/static/images/pokemon/0991_Iron_Bundle.png b/static/images/pokemon/0991_Iron_Bundle.png new file mode 100644 index 0000000..2d819a0 Binary files /dev/null and b/static/images/pokemon/0991_Iron_Bundle.png differ diff --git a/static/images/pokemon/0992_Iron_Hands.png b/static/images/pokemon/0992_Iron_Hands.png new file mode 100644 index 0000000..36cb09c Binary files /dev/null and b/static/images/pokemon/0992_Iron_Hands.png differ diff --git a/static/images/pokemon/0993_Iron_Jugulis.png b/static/images/pokemon/0993_Iron_Jugulis.png new file mode 100644 index 0000000..164f590 Binary files /dev/null and b/static/images/pokemon/0993_Iron_Jugulis.png differ diff --git a/static/images/pokemon/0994_Iron_Moth.png b/static/images/pokemon/0994_Iron_Moth.png new file mode 100644 index 0000000..66d7088 Binary files /dev/null and b/static/images/pokemon/0994_Iron_Moth.png differ diff --git a/static/images/pokemon/0995_Iron_Thorns.png b/static/images/pokemon/0995_Iron_Thorns.png new file mode 100644 index 0000000..93625cc Binary files /dev/null and b/static/images/pokemon/0995_Iron_Thorns.png differ diff --git a/static/images/pokemon/0996_Frigibax.png b/static/images/pokemon/0996_Frigibax.png new file mode 100644 index 0000000..4c45caf Binary files /dev/null and b/static/images/pokemon/0996_Frigibax.png differ diff --git a/static/images/pokemon/0997_Arctibax.png b/static/images/pokemon/0997_Arctibax.png new file mode 100644 index 0000000..4334501 Binary files /dev/null and b/static/images/pokemon/0997_Arctibax.png differ diff --git a/static/images/pokemon/0998_Baxcalibur.png b/static/images/pokemon/0998_Baxcalibur.png new file mode 100644 index 0000000..04db6c0 Binary files /dev/null and b/static/images/pokemon/0998_Baxcalibur.png differ diff --git a/static/images/pokemon/0999_Gimmighoul.png b/static/images/pokemon/0999_Gimmighoul.png new file mode 100644 index 0000000..9da4d51 Binary files /dev/null and b/static/images/pokemon/0999_Gimmighoul.png differ diff --git a/static/images/pokemon/0999_Gimmighoul_(Roaming_Form).png b/static/images/pokemon/0999_Gimmighoul_(Roaming_Form).png new file mode 100644 index 0000000..d88d4a7 Binary files /dev/null and b/static/images/pokemon/0999_Gimmighoul_(Roaming_Form).png differ diff --git a/static/images/pokemon/1000_Gholdengo.png b/static/images/pokemon/1000_Gholdengo.png new file mode 100644 index 0000000..99a7357 Binary files /dev/null and b/static/images/pokemon/1000_Gholdengo.png differ diff --git a/static/images/pokemon/1001_Wo-Chien.png b/static/images/pokemon/1001_Wo-Chien.png new file mode 100644 index 0000000..d434094 Binary files /dev/null and b/static/images/pokemon/1001_Wo-Chien.png differ diff --git a/static/images/pokemon/1002_Chien-Pao.png b/static/images/pokemon/1002_Chien-Pao.png new file mode 100644 index 0000000..1772034 Binary files /dev/null and b/static/images/pokemon/1002_Chien-Pao.png differ diff --git a/static/images/pokemon/1003_Ting-Lu.png b/static/images/pokemon/1003_Ting-Lu.png new file mode 100644 index 0000000..b98bbae Binary files /dev/null and b/static/images/pokemon/1003_Ting-Lu.png differ diff --git a/static/images/pokemon/1004_Chi-Yu.png b/static/images/pokemon/1004_Chi-Yu.png new file mode 100644 index 0000000..76ebb47 Binary files /dev/null and b/static/images/pokemon/1004_Chi-Yu.png differ diff --git a/static/images/pokemon/1005_Roaring_Moon.png b/static/images/pokemon/1005_Roaring_Moon.png new file mode 100644 index 0000000..700ef9a Binary files /dev/null and b/static/images/pokemon/1005_Roaring_Moon.png differ diff --git a/static/images/pokemon/1006_Iron_Valiant.png b/static/images/pokemon/1006_Iron_Valiant.png new file mode 100644 index 0000000..2df66dd Binary files /dev/null and b/static/images/pokemon/1006_Iron_Valiant.png differ diff --git a/static/images/pokemon/1007_Koraidon.png b/static/images/pokemon/1007_Koraidon.png new file mode 100644 index 0000000..4fcf7a1 Binary files /dev/null and b/static/images/pokemon/1007_Koraidon.png differ diff --git a/static/images/pokemon/1008_Miraidon.png b/static/images/pokemon/1008_Miraidon.png new file mode 100644 index 0000000..55f9bc8 Binary files /dev/null and b/static/images/pokemon/1008_Miraidon.png differ diff --git a/static/images/pokemon/1009_Walking_Wake.png b/static/images/pokemon/1009_Walking_Wake.png new file mode 100644 index 0000000..36db024 Binary files /dev/null and b/static/images/pokemon/1009_Walking_Wake.png differ diff --git a/static/images/pokemon/1010_Iron_Leaves.png b/static/images/pokemon/1010_Iron_Leaves.png new file mode 100644 index 0000000..f4381f4 Binary files /dev/null and b/static/images/pokemon/1010_Iron_Leaves.png differ diff --git a/static/images/pokemon/1011_Dipplin.png b/static/images/pokemon/1011_Dipplin.png new file mode 100644 index 0000000..4019767 Binary files /dev/null and b/static/images/pokemon/1011_Dipplin.png differ diff --git a/static/images/pokemon/1012_Poltchageist.png b/static/images/pokemon/1012_Poltchageist.png new file mode 100644 index 0000000..34ca7e9 Binary files /dev/null and b/static/images/pokemon/1012_Poltchageist.png differ diff --git a/static/images/pokemon/1012_Poltchageist_(Artisan_Form).png b/static/images/pokemon/1012_Poltchageist_(Artisan_Form).png new file mode 100644 index 0000000..34ca7e9 Binary files /dev/null and b/static/images/pokemon/1012_Poltchageist_(Artisan_Form).png differ diff --git a/static/images/pokemon/1013_Sinistcha.png b/static/images/pokemon/1013_Sinistcha.png new file mode 100644 index 0000000..6693bb2 Binary files /dev/null and b/static/images/pokemon/1013_Sinistcha.png differ diff --git a/static/images/pokemon/1013_Sinistcha_(Masterpiece_Form).png b/static/images/pokemon/1013_Sinistcha_(Masterpiece_Form).png new file mode 100644 index 0000000..6693bb2 Binary files /dev/null and b/static/images/pokemon/1013_Sinistcha_(Masterpiece_Form).png differ diff --git a/static/images/pokemon/1014_Okidogi.png b/static/images/pokemon/1014_Okidogi.png new file mode 100644 index 0000000..7fa15c7 Binary files /dev/null and b/static/images/pokemon/1014_Okidogi.png differ diff --git a/static/images/pokemon/1015_Munkidori.png b/static/images/pokemon/1015_Munkidori.png new file mode 100644 index 0000000..9ae048f Binary files /dev/null and b/static/images/pokemon/1015_Munkidori.png differ diff --git a/static/images/pokemon/1016_Fezandipiti.png b/static/images/pokemon/1016_Fezandipiti.png new file mode 100644 index 0000000..ecede33 Binary files /dev/null and b/static/images/pokemon/1016_Fezandipiti.png differ diff --git a/static/images/pokemon/1017_Ogerpon.png b/static/images/pokemon/1017_Ogerpon.png new file mode 100644 index 0000000..54213c9 Binary files /dev/null and b/static/images/pokemon/1017_Ogerpon.png differ diff --git a/static/images/pokemon/1018_Archaludon.png b/static/images/pokemon/1018_Archaludon.png new file mode 100644 index 0000000..27ac38f Binary files /dev/null and b/static/images/pokemon/1018_Archaludon.png differ diff --git a/static/images/pokemon/1019_Hydrapple.png b/static/images/pokemon/1019_Hydrapple.png new file mode 100644 index 0000000..7948e02 Binary files /dev/null and b/static/images/pokemon/1019_Hydrapple.png differ diff --git a/static/images/pokemon/1020_Gouging_Fire.png b/static/images/pokemon/1020_Gouging_Fire.png new file mode 100644 index 0000000..b7b5552 Binary files /dev/null and b/static/images/pokemon/1020_Gouging_Fire.png differ diff --git a/static/images/pokemon/1021_Raging_Bolt.png b/static/images/pokemon/1021_Raging_Bolt.png new file mode 100644 index 0000000..5c44891 Binary files /dev/null and b/static/images/pokemon/1021_Raging_Bolt.png differ diff --git a/static/images/pokemon/1022_Iron_Boulder.png b/static/images/pokemon/1022_Iron_Boulder.png new file mode 100644 index 0000000..ab6fa1d Binary files /dev/null and b/static/images/pokemon/1022_Iron_Boulder.png differ diff --git a/static/images/pokemon/1023_Iron_Crown.png b/static/images/pokemon/1023_Iron_Crown.png new file mode 100644 index 0000000..0d3ebaa Binary files /dev/null and b/static/images/pokemon/1023_Iron_Crown.png differ diff --git a/static/images/pokemon/1024_Terapagos.png b/static/images/pokemon/1024_Terapagos.png new file mode 100644 index 0000000..5ad774c Binary files /dev/null and b/static/images/pokemon/1024_Terapagos.png differ diff --git a/static/images/pokemon/1025_Pecharunt.png b/static/images/pokemon/1025_Pecharunt.png new file mode 100644 index 0000000..1e5151c Binary files /dev/null and b/static/images/pokemon/1025_Pecharunt.png differ diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..d56fbaa --- /dev/null +++ b/templates/index.html @@ -0,0 +1,158 @@ + + + + + + OriginDex + + + +
+

OriginDex

+ + {% for group in grouped_pokemon %} +
+
Box {{ '%03d' | format(loop.index) }}
+
+ {% for pokemon in group %} +
+
{{ pokemon.Name }}
+ {{ pokemon.Name }} {{ pokemon.Form }} + {% if pokemon.Form != 'Default' %} +
{{ pokemon.Form }}
+ {% endif %} +
#{{ '%04d'|format(pokemon.ID) }}
+
+ {% endfor %} +
+
+ {% endfor %} +
+
+ + + + \ No newline at end of file