diff --git a/.env.dist b/.env.dist index ff24da6..2a8e56a 100644 --- a/.env.dist +++ b/.env.dist @@ -20,7 +20,7 @@ HERO_PATH_CACHE_TIMEOUT=86400 CSV_CACHE_TIMEOUT=86400 CAREER_PATH_CACHE_TIMEOUT=7200 SEARCH_ACCOUNT_PATH_CACHE_TIMEOUT=3600 -NAMECARDS_TIMEOUT=7200 +SEARCH_DATA_TIMEOUT=7200 CAREER_PARSER_CACHE_EXPIRATION_TIMEOUT=604800 PARSER_CACHE_EXPIRATION_SPREADING_PERCENTAGE=25 diff --git a/app/commands/check_and_update_cache.py b/app/commands/check_and_update_cache.py index eb17842..7f261d2 100644 --- a/app/commands/check_and_update_cache.py +++ b/app/commands/check_and_update_cache.py @@ -16,11 +16,11 @@ from app.parsers.heroes_parser import HeroesParser from app.parsers.heroes_stats_parser import HeroesStatsParser from app.parsers.maps_parser import MapsParser -from app.parsers.namecard_parser import NamecardParser from app.parsers.player_career_parser import PlayerCareerParser from app.parsers.player_parser import PlayerParser from app.parsers.player_stats_summary_parser import PlayerStatsSummaryParser from app.parsers.roles_parser import RolesParser +from app.parsers.search_data_parser import NamecardParser # Mapping of parser class names to linked classes PARSER_CLASSES_MAPPING = { diff --git a/app/commands/update_namecards_cache.py b/app/commands/update_namecards_cache.py deleted file mode 100644 index 828185c..0000000 --- a/app/commands/update_namecards_cache.py +++ /dev/null @@ -1,85 +0,0 @@ -"""Command used in order to retrieve the last version of the namecards""" -import json -import re - -import httpx - -from app.common.cache_manager import CacheManager -from app.common.exceptions import NamecardsRetrievalError -from app.common.helpers import send_discord_webhook_message -from app.common.logging import logger -from app.config import settings - -# Generic cache manager used in the process -cache_manager = CacheManager() - - -def get_search_page() -> httpx.Response: - try: - response = httpx.get(f"{settings.blizzard_host}{settings.namecards_path}") - except httpx.RequestError as error: - logger.exception("An error occurred while requesting namecards !") - raise NamecardsRetrievalError from error - else: - return response - - -def extract_namecards_data(html_content: str) -> dict: - result = re.search(r"const namecards = (\{.*\})\n", html_content) - - if not result: - error_message = "Namecards not found on Blizzard page !" - logger.exception(error_message) - send_discord_webhook_message(error_message) - raise NamecardsRetrievalError - - try: - json_result = json.loads(result[1]) - except ValueError as error: - error_message = "Invalid format for namecards on Blizzard page !" - logger.exception(error_message) - send_discord_webhook_message(error_message) - raise NamecardsRetrievalError from error - else: - return json_result - - -def transform_namecards_data(namecards_data: dict) -> dict[str, str]: - return { - namecard_key: namecard["icon"] - for namecard_key, namecard in namecards_data.items() - } - - -def retrieve_namecards() -> dict[str, str]: - logger.info("Retrieving Blizzard search page...") - search_page = get_search_page() - - logger.info("Extracting namecards from HTML data...") - namecards_data = extract_namecards_data(search_page.text) - - logger.info("Transforming data...") - return transform_namecards_data(namecards_data) - - -def update_namecards_cache(): - """Main method of the script""" - logger.info("Retrieving namecards...") - - try: - namecards = retrieve_namecards() - except NamecardsRetrievalError as error: - raise SystemExit from error - - logger.info("Saving namecards...") - cache_manager.update_namecards_cache(namecards) - - -def main(): - """Main method of the script""" - update_namecards_cache() - - -if __name__ == "__main__": # pragma: no cover - logger = logger.patch(lambda record: record.update(name="update_namecards_cache")) - main() diff --git a/app/commands/update_search_data_cache.py b/app/commands/update_search_data_cache.py new file mode 100644 index 0000000..a59bcf9 --- /dev/null +++ b/app/commands/update_search_data_cache.py @@ -0,0 +1,116 @@ +"""Command used in order to retrieve the last version of the namecards""" +import json +import re + +import httpx + +from app.common.cache_manager import CacheManager +from app.common.enums import Locale, SearchDataType +from app.common.exceptions import SearchDataRetrievalError +from app.common.helpers import send_discord_webhook_message +from app.common.logging import logger +from app.config import settings + +# Generic cache manager used in the process +cache_manager = CacheManager() + +# Mapping between the search data type and the variable name in JS +variable_name_mapping: dict[SearchDataType, str] = { + SearchDataType.PORTRAIT: "avatars", + SearchDataType.NAMECARD: "namecards", + SearchDataType.TITLE: "titles", +} + + +def get_search_page() -> httpx.Response: + try: + response = httpx.get( + f"{settings.blizzard_host}/{Locale.ENGLISH_US}{settings.search_data_path}" + ) + except httpx.RequestError as error: + logger.exception("An error occurred while requesting search data !") + raise SearchDataRetrievalError from error + else: + return response + + +def extract_search_data(html_content: str, data_type: SearchDataType) -> dict: + variable_name = variable_name_mapping[data_type] + data_regexp = r"const %s = (\{.*\})\n" % variable_name + + result = re.search(data_regexp, html_content) + + if not result: + error_message = f"{data_type} data not found on Blizzard page !" + logger.exception(error_message) + send_discord_webhook_message(error_message) + raise SearchDataRetrievalError + + try: + json_result = json.loads(result[1]) + except ValueError as error: + error_message = f"Invalid format for {data_type} data on Blizzard page !" + logger.exception(error_message) + send_discord_webhook_message(error_message) + raise SearchDataRetrievalError from error + else: + return json_result + + +def transform_search_data( + search_data: dict, data_type: SearchDataType +) -> dict[str, str]: + def get_data_type_value(data_value: dict) -> str: + match data_type: + case SearchDataType.PORTRAIT | SearchDataType.NAMECARD: + return data_value["icon"] + + case SearchDataType.TITLE: + return data_value["name"]["en_US"] + + return { + data_key: get_data_type_value(data_value) + for data_key, data_value in search_data.items() + } + + +def retrieve_search_data( + data_type: SearchDataType, search_page: httpx.Response | None = None +) -> dict[str, str]: + if not search_page: + logger.info("Retrieving Blizzard search page...") + search_page = get_search_page() + + logger.info("Extracting {} data from HTML data...", data_type) + search_data = extract_search_data(search_page.text, data_type) + + logger.info("Transforming data...") + return transform_search_data(search_data, data_type) + + +def update_search_data_cache(): + """Main method of the script""" + try: + logger.info("Retrieving Blizzard search page...") + search_page = get_search_page() + + logger.info("Retrieving search data...") + search_data = { + data_type: retrieve_search_data(data_type, search_page) + for data_type in SearchDataType + } + except SearchDataRetrievalError as error: + raise SystemExit from error + + logger.info("Saving search data...") + cache_manager.update_search_data_cache(search_data) + + +def main(): + """Main method of the script""" + update_search_data_cache() + + +if __name__ == "__main__": # pragma: no cover + logger = logger.patch(lambda record: record.update(name="update_search_data_cache")) + main() diff --git a/app/commands/update_test_fixtures.py b/app/commands/update_test_fixtures.py index 8f713c1..4d534b2 100644 --- a/app/commands/update_test_fixtures.py +++ b/app/commands/update_test_fixtures.py @@ -82,8 +82,9 @@ def list_routes_to_update(args: argparse.Namespace) -> dict[str, str]: ) if args.home: - logger.info("Adding home route...") + logger.info("Adding home routes...") route_file_mapping[settings.home_path] = "/home.html" + route_file_mapping[settings.search_data_path] = "/search.html" return route_file_mapping diff --git a/app/common/cache_manager.py b/app/common/cache_manager.py index 0a12604..606671a 100644 --- a/app/common/cache_manager.py +++ b/app/common/cache_manager.py @@ -30,6 +30,7 @@ import redis from fastapi import Request +from app.common.enums import SearchDataType from app.config import settings from .helpers import compress_json_value, decompress_json_value, get_spread_value @@ -158,20 +159,25 @@ def get_soon_expired_cache_keys(self, cache_key_prefix: str) -> Iterator[str]: yield key.decode("utf-8").removeprefix(prefix_to_remove) @redis_connection_handler - def update_namecards_cache(self, namecards: dict[str, str]) -> None: - for namecard_key, namecard_url in namecards.items(): - self.redis_server.set( - f"{settings.namecard_cache_key_prefix}:{namecard_key}", - value=namecard_url, - ex=settings.namecards_timeout, - ) + def update_search_data_cache( + self, search_data: dict[SearchDataType, dict[str, str]] + ) -> None: + for data_type, data in search_data.items(): + for data_key, data_value in data.items(): + self.redis_server.set( + f"{settings.search_data_cache_key_prefix}:{data_type}:{data_key}", + value=data_value, + ex=settings.search_data_timeout, + ) @redis_connection_handler - def get_namecard_cache(self, cache_key: str) -> str | None: - namecard_cache = self.redis_server.get( - f"{settings.namecard_cache_key_prefix}:{cache_key}", + def get_search_data_cache( + self, data_type: SearchDataType, cache_key: str + ) -> str | None: + data_cache = self.redis_server.get( + f"{settings.search_data_cache_key_prefix}:{data_type}:{cache_key}", ) - return namecard_cache.decode("utf-8") if namecard_cache else None + return data_cache.decode("utf-8") if data_cache else None @redis_connection_handler def update_parser_cache_last_update(self, cache_key: str, expire: int) -> None: diff --git a/app/common/enums.py b/app/common/enums.py index 72c9041..ddf14b7 100644 --- a/app/common/enums.py +++ b/app/common/enums.py @@ -142,3 +142,9 @@ class Locale(StrEnum): }, ) MapGamemode.__doc__ = "Maps gamemodes keys" + + +class SearchDataType(StrEnum): + NAMECARD = "namecard" + PORTRAIT = "portrait" + TITLE = "title" diff --git a/app/common/exceptions.py b/app/common/exceptions.py index b5d77a7..db3105c 100644 --- a/app/common/exceptions.py +++ b/app/common/exceptions.py @@ -2,10 +2,10 @@ from fastapi import status -class NamecardsRetrievalError(Exception): - """Generic namecards retrieval Exception""" +class SearchDataRetrievalError(Exception): + """Generic search data retrieval Exception (namecards, titles, etc.)""" - message = "Error while retrieving namecards" + message = "Error while retrieving search data" class OverfastError(Exception): diff --git a/app/common/helpers.py b/app/common/helpers.py index 3fc3f15..5872583 100644 --- a/app/common/helpers.py +++ b/app/common/helpers.py @@ -222,3 +222,11 @@ def dict_insert_value_before_key( def key_to_label(key: str) -> str: """Transform a given key in lowercase format into a human format""" return " ".join(s.capitalize() for s in key.split("_")) + + +@cache +def get_player_title(title: str | None) -> str | None: + """Get player title from string extracted from Blizzard page. This is + where we're handling the special "no title" case for which we return None + """ + return None if title and title.lower() == "no title" else title diff --git a/app/config.py b/app/config.py index a9dd53d..dae761d 100644 --- a/app/config.py +++ b/app/config.py @@ -110,17 +110,17 @@ class Settings(BaseSettings): parser_cache_expiration_spreading_percentage: int = 25 ############ - # NAMECARDS + # SEARCH DATA (AVATARS, NAMECARDS, TITLES) ############ - # Cache key for namecard cache in Redis. - namecard_cache_key_prefix: str = "namecard-cache" + # Cache key for search data cache in Redis. + search_data_cache_key_prefix: str = "search-data-cache" - # URI of the page where namecards are saved - namecards_path: str = "/en-us/search/" + # URI of the page where search data are saved + search_data_path: str = "/search/" - # Cache TTL for namecards list - namecards_timeout: int = 7200 + # Cache TTL for search data list + search_data_timeout: int = 7200 ############ # BLIZZARD diff --git a/app/handlers/get_player_career_request_handler.py b/app/handlers/get_player_career_request_handler.py index 811c9ac..701b49d 100644 --- a/app/handlers/get_player_career_request_handler.py +++ b/app/handlers/get_player_career_request_handler.py @@ -2,8 +2,8 @@ from typing import ClassVar from app.config import settings -from app.parsers.namecard_parser import NamecardParser from app.parsers.player_parser import PlayerParser +from app.parsers.search_data_parser import NamecardParser from .api_request_handler import APIRequestHandler diff --git a/app/handlers/search_players_request_handler.py b/app/handlers/search_players_request_handler.py index 709b493..6deee43 100644 --- a/app/handlers/search_players_request_handler.py +++ b/app/handlers/search_players_request_handler.py @@ -5,10 +5,15 @@ from app.common.cache_manager import CacheManager from app.common.enums import Locale -from app.common.helpers import blizzard_response_error_from_request, overfast_request +from app.common.helpers import ( + blizzard_response_error_from_request, + get_player_title, + overfast_request, +) from app.common.logging import logger from app.common.mixins import ApiRequestMixin from app.config import settings +from app.parsers.search_data_parser import NamecardParser, PortraitParser, TitleParser class SearchPlayersRequestHandler(ApiRequestMixin): @@ -16,7 +21,9 @@ class SearchPlayersRequestHandler(ApiRequestMixin): using some filters : career privacy, etc. The APIRequestHandler class is not used here, as this is a very specific request, - depending on a Blizzard endpoint returning JSON Data, and without needing any parser. + depending on a Blizzard endpoint returning JSON Data. Some parsers are used, + but only to compute already downloaded data, we don't want them to retrieve + Blizzard data as when we call their general parse() method. """ timeout = settings.search_account_path_cache_timeout @@ -91,10 +98,9 @@ def filter_privacy(player: dict) -> bool: filters = [filter_privacy] return filter(lambda x: all(f(x) for f in filters), players) - @staticmethod - def apply_transformations(players: Iterable[dict]) -> list[dict]: + def apply_transformations(self, players: Iterable[dict]) -> list[dict]: """Apply transformations to found players in order to return the data - in the OverFast API format. + in the OverFast API format. We'll also retrieve some data from parsers. """ transformed_players = [] for player in players: @@ -103,6 +109,9 @@ def apply_transformations(players: Iterable[dict]) -> list[dict]: { "player_id": player_id, "name": player["battleTag"], + "avatar": self.get_avatar_url(player, player_id), + "namecard": self.get_namecard_url(player, player_id), + "title": self.get_title(player, player_id), "privacy": "public" if player["isPublic"] else "private", "career_url": f"{settings.app_base_url}/players/{player_id}", }, @@ -123,4 +132,14 @@ def apply_ordering(players: list[dict], order_by: str) -> list[dict]: def get_blizzard_url(**kwargs) -> str: """URL used when requesting data to Blizzard.""" locale = Locale.ENGLISH_US - return f"{settings.blizzard_host}/{locale}{settings.search_account_path}/{kwargs.get('name')}" + return f"{settings.blizzard_host}/{locale}{settings.search_account_path}/{kwargs.get('name')}/" + + def get_avatar_url(self, player: dict, player_id: str) -> str | None: + return PortraitParser(player_id=player_id).retrieve_data_value(player) + + def get_namecard_url(self, player: dict, player_id: str) -> str | None: + return NamecardParser(player_id=player_id).retrieve_data_value(player) + + def get_title(self, player: dict, player_id: str) -> str | None: + title = TitleParser(player_id=player_id).retrieve_data_value(player) + return get_player_title(title) diff --git a/app/main.py b/app/main.py index 2377b32..9997e28 100644 --- a/app/main.py +++ b/app/main.py @@ -8,7 +8,7 @@ from fastapi.staticfiles import StaticFiles from starlette.exceptions import HTTPException as StarletteHTTPException -from .commands.update_namecards_cache import update_namecards_cache +from .commands.update_search_data_cache import update_search_data_cache from .common.enums import RouteTag from .common.logging import logger from .config import settings @@ -17,11 +17,11 @@ @asynccontextmanager async def lifespan(_: FastAPI): # pragma: no cover - # Update namecards list from Blizzard before starting up + # Update search data list from Blizzard before starting up if settings.redis_caching_enabled: - logger.info("Updating namecards data...") + logger.info("Updating search data cache (avatars, namecards, titles)") with suppress(SystemExit): - update_namecards_cache() + update_search_data_cache() yield diff --git a/app/models/players.py b/app/models/players.py index abf89c7..7e46da0 100644 --- a/app/models/players.py +++ b/app/models/players.py @@ -38,6 +38,25 @@ class PlayerShort(BaseModel): description="Player nickname displayed in the game", examples=["TeKrop#2217"], ) + avatar: HttpUrl | None = Field( + None, + description="URL of the player's avatar. Can be null if couldn't retrieve any", + examples=[ + "https://d15f34w2p8l1cc.cloudfront.net/overwatch/daeddd96e58a2150afa6ffc3c5503ae7f96afc2e22899210d444f45dee508c6c.png", + ], + ) + namecard: HttpUrl | None = Field( + None, + description="URL of the player's namecard (or banner) if any", + examples=[ + "https://d15f34w2p8l1cc.cloudfront.net/overwatch/55d8c21e9d8b14942c26c4028059b6cd3b4e2fea40a139821ecee73a0005126f.png", + ], + ) + title: str | None = Field( + ..., + description="Title of the player if any", + examples=["Bytefixer"], + ) privacy: PlayerPrivacy = Field( ..., title="Privacy", diff --git a/app/parsers/player_parser.py b/app/parsers/player_parser.py index 649806a..bee72e2 100644 --- a/app/parsers/player_parser.py +++ b/app/parsers/player_parser.py @@ -12,6 +12,7 @@ Role, ) from app.common.exceptions import ParserBlizzardError +from app.common.helpers import get_player_title from app.config import settings from .generics.api_parser import APIParser @@ -156,7 +157,7 @@ def __get_title(profile_div: Tag) -> str | None: title = title_tag.get_text() or None # Special case : the "no title" means there is no title - return None if title and title.lower() == "no title" else title + return get_player_title(title) @staticmethod def __get_endorsement(progression_div: Tag) -> dict: diff --git a/app/parsers/namecard_parser.py b/app/parsers/search_data_parser.py similarity index 53% rename from app/parsers/namecard_parser.py rename to app/parsers/search_data_parser.py index 8eab655..1debd2e 100644 --- a/app/parsers/namecard_parser.py +++ b/app/parsers/search_data_parser.py @@ -1,6 +1,9 @@ -"""Namecard Parser module""" -from app.commands.update_namecards_cache import retrieve_namecards -from app.common.exceptions import NamecardsRetrievalError, ParserParsingError +"""Search Data Parser module""" +from abc import ABC, abstractmethod + +from app.commands.update_search_data_cache import retrieve_search_data +from app.common.enums import SearchDataType +from app.common.exceptions import ParserParsingError, SearchDataRetrievalError from app.common.helpers import blizzard_response_error_from_request, overfast_request from app.common.logging import logger from app.config import settings @@ -8,8 +11,8 @@ from .generics.api_parser import APIParser -class NamecardParser(APIParser): - """Namecard Parser class""" +class SearchDataParser(APIParser, ABC): + """Static Data Parser class""" root_path = settings.search_account_path timeout = settings.career_path_cache_timeout @@ -19,6 +22,11 @@ def __init__(self, **kwargs): super().__init__(**kwargs) self.player_id = kwargs.get("player_id") + @property + @abstractmethod + def data_type(self) -> SearchDataType: + """Data for which the Parser is implemented (namecard, title, etc.)""" + async def retrieve_and_parse_data(self) -> None: """Method used to retrieve data from Blizzard (JSON data), parsing it and storing it into self.data attribute. @@ -52,48 +60,76 @@ def parse_data(self) -> dict: except StopIteration: # We didn't find the player, return nothing logger.warning( - "Player {} not found in search results, couldn't retrieve its namecard", + "Player {} not found in search results, couldn't retrieve its {}", self.player_id, + self.data_type, ) - return {"namecard": None} + return {self.data_type: None} + + # Once we found the player, retrieve the data url + data_value = self.retrieve_data_value(player_data) + return {self.data_type: data_value} + + def get_blizzard_url(self, **kwargs) -> str: + player_battletag = kwargs.get("player_id").replace("-", "#") + return f"{super().get_blizzard_url(**kwargs)}/{player_battletag}" - # If the player doesn't have any namecard, directly return nothing here + def retrieve_data_value(self, player_data: dict) -> str | None: + # If the player doesn't have any related data, directly return nothing here if ( - "namecard" not in player_data - or player_data["namecard"] == "0x0000000000000000" + self.data_type not in player_data + or player_data[self.data_type] == "0x0000000000000000" ): - logger.info("Player {} doesn't have any namecard", self.player_id) - return {"namecard": None} + logger.info("Player {} doesn't have any {}", self.player_id, self.data_type) + return None # Retrieve the possible matching value in the cache. If not in # cache (or Redis disabled), try to retrieve it directly. - namecard_url = self.cache_manager.get_namecard_cache(player_data["namecard"]) - if not namecard_url: + data_value = self.cache_manager.get_search_data_cache( + self.data_type, player_data[self.data_type] + ) + if not data_value: logger.warning( - "URL for namecard {} of player {} not found in the cache", - player_data["namecard"], + "URL for {} {} of player {} not found in the cache", + self.data_type, + player_data[self.data_type], self.player_id, ) try: - namecards = retrieve_namecards() - except NamecardsRetrievalError: - namecards = {} + data_list = retrieve_search_data(self.data_type) + except SearchDataRetrievalError: + data_list = {} - namecard_url = namecards.get(player_data["namecard"]) + data_value = data_list.get(player_data[self.data_type]) # If we still didn't retrieve the URL, it means the player doesn't # have one, or we had an issue, log it and return None - if not namecard_url: + if not data_value: logger.warning( - "URL for namecard {} of player {} not found at all", - player_data["namecard"], + "URL for {} {} of player {} not found at all", + self.data_type, + player_data[self.data_type], self.player_id, ) - return {"namecard": None} + return None - return {"namecard": namecard_url} + return data_value - def get_blizzard_url(self, **kwargs) -> str: - player_battletag = kwargs.get("player_id").replace("-", "#") - return f"{super().get_blizzard_url(**kwargs)}/{player_battletag}" + +class NamecardParser(SearchDataParser): + """Namecard Parser class""" + + data_type = SearchDataType.NAMECARD + + +class PortraitParser(SearchDataParser): + """Portrait Parser class""" + + data_type = SearchDataType.PORTRAIT + + +class TitleParser(SearchDataParser): + """Title Parser class""" + + data_type = SearchDataType.TITLE diff --git a/pyproject.toml b/pyproject.toml index a639d4b..3f3dead 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "overfast-api" -version = "2.23.1" +version = "2.24.0" description = "Overwatch API giving data about heroes, maps, and players statistics." license = "MIT" authors = ["Valentin PORCHET "] diff --git a/scripts/overfast-crontab b/scripts/overfast-crontab index 7bb7f5e..fc73b12 100644 --- a/scripts/overfast-crontab +++ b/scripts/overfast-crontab @@ -1,4 +1,4 @@ * * * * * cd /code && python -m app.commands.check_and_update_cache 0 2 * * * cd /code && python -m app.commands.check_new_hero -42 * * * * cd /code && python -m app.commands.update_namecards_cache +42 * * * * cd /code && python -m app.commands.update_search_data_cache 24 * * * * cd /code && python -m app.commands.check_and_delete_parser_cache \ No newline at end of file diff --git a/tests/commands/test_check_and_update_cache.py b/tests/commands/test_check_and_update_cache.py index 8a5110a..fc5b8bd 100644 --- a/tests/commands/test_check_and_update_cache.py +++ b/tests/commands/test_check_and_update_cache.py @@ -444,12 +444,12 @@ def test_check_and_update_namecard_to_update( cache_manager: CacheManager, locale: str, search_tekrop_blizzard_json_data: dict, - namecards_json_data: dict, + search_data_json_data: dict, ): namecard_cache_key = f"NamecardParser-{settings.blizzard_host}/{locale}{settings.search_account_path}/TeKrop#2217" - # Add namecards list data + parser_cache key which needs an update - cache_manager.update_namecards_cache(namecards_json_data) + # Add search data + parser_cache key which needs an update + cache_manager.update_search_data_cache(search_data_json_data) cache_manager.update_parser_cache( namecard_cache_key, {}, @@ -472,7 +472,7 @@ def test_check_and_update_namecard_to_update( assert cache_manager.get_parser_cache(namecard_cache_key) == {} assert get_soon_expired_cache_keys() == {namecard_cache_key} - # check and update (only maps should be updated) + # check and update logger_info_mock = Mock() with patch.object( overfast_client, diff --git a/tests/commands/test_update_namecards_cache.py b/tests/commands/test_update_namecards_cache.py deleted file mode 100644 index 1180904..0000000 --- a/tests/commands/test_update_namecards_cache.py +++ /dev/null @@ -1,90 +0,0 @@ -from unittest.mock import Mock, patch - -import httpx -import pytest -from fastapi import status - -from app.commands.update_namecards_cache import main as update_namecards_cache_main -from app.common.cache_manager import CacheManager - - -@pytest.fixture() -def cache_manager(): - return CacheManager() - - -def test_update_namecards_cache( - cache_manager: CacheManager, - search_html_data: str, - namecards_json_data: dict, -): - # Nominal case, everything is working fine - with patch( - "httpx.get", - return_value=Mock(status_code=status.HTTP_200_OK, text=search_html_data), - ): - update_namecards_cache_main() - - for namecard_key, namecard_url in namecards_json_data.items(): - assert cache_manager.get_namecard_cache(namecard_key) == namecard_url - assert cache_manager.get_namecard_cache("0x1234") is None - - -# RequestError from httpx not saving anything -def test_update_namecards_request_error(cache_manager: CacheManager): - cache_manager.update_namecards_cache({"fake": "value"}) - - logger_exception_mock = Mock() - with patch("httpx.get", side_effect=httpx.RequestError("error")), patch( - "app.common.logging.logger.exception", - logger_exception_mock, - ), pytest.raises(SystemExit): - update_namecards_cache_main() - - logger_exception_mock.assert_any_call( - "An error occurred while requesting namecards !", - ) - assert cache_manager.get_namecard_cache("fake") == "value" - - -def test_update_namecards_cache_namecards_not_found(cache_manager: CacheManager): - cache_manager.update_namecards_cache({"fake": "value"}) - - logger_exception_mock = Mock() - with patch( - "httpx.get", - return_value=Mock(status_code=status.HTTP_200_OK, text="OK"), - ), patch( - "app.common.logging.logger.exception", - logger_exception_mock, - ), pytest.raises( - SystemExit, - ): - update_namecards_cache_main() - - logger_exception_mock.assert_any_call("Namecards not found on Blizzard page !") - assert cache_manager.get_namecard_cache("fake") == "value" - - -def test_update_namecards_cache_invalid_json(cache_manager: CacheManager): - cache_manager.update_namecards_cache({"fake": "value"}) - - logger_exception_mock = Mock() - with patch( - "httpx.get", - return_value=Mock( - status_code=status.HTTP_200_OK, - text="const namecards = {'test':abc}\n", - ), - ), patch( - "app.common.logging.logger.exception", - logger_exception_mock, - ), pytest.raises( - SystemExit, - ): - update_namecards_cache_main() - - logger_exception_mock.assert_any_call( - "Invalid format for namecards on Blizzard page !", - ) - assert cache_manager.get_namecard_cache("fake") == "value" diff --git a/tests/commands/test_update_search_data_cache.py b/tests/commands/test_update_search_data_cache.py new file mode 100644 index 0000000..abb50fc --- /dev/null +++ b/tests/commands/test_update_search_data_cache.py @@ -0,0 +1,134 @@ +from unittest.mock import Mock, patch + +import httpx +import pytest +from fastapi import status + +from app.commands.update_search_data_cache import main as update_search_data_cache_main +from app.common.cache_manager import CacheManager +from app.common.enums import SearchDataType + + +@pytest.fixture() +def cache_manager(): + return CacheManager() + + +def test_update_search_data_cache( + cache_manager: CacheManager, + search_html_data: str, + search_data_json_data: dict, +): + # Nominal case, everything is working fine + with patch( + "httpx.get", + return_value=Mock(status_code=status.HTTP_200_OK, text=search_html_data), + ): + update_search_data_cache_main() + + assert all( + cache_manager.get_search_data_cache(data_type, data_key) == data_value + for data_type, data in search_data_json_data.items() + for data_key, data_value in data.items() + ) + + assert all( + cache_manager.get_search_data_cache(data_type, "0x1234") is None + for data_type in SearchDataType + ) + + +# RequestError from httpx not saving anything +@pytest.mark.parametrize(("data_type"), list(SearchDataType)) +def test_update_search_data_request_error( + cache_manager: CacheManager, data_type: SearchDataType +): + cache_manager.update_search_data_cache({data_type: {"fake": "value"}}) + + logger_exception_mock = Mock() + with patch("httpx.get", side_effect=httpx.RequestError("error")), patch( + "app.common.logging.logger.exception", + logger_exception_mock, + ), pytest.raises(SystemExit): + update_search_data_cache_main() + + logger_exception_mock.assert_any_call( + "An error occurred while requesting search data !", + ) + assert cache_manager.get_search_data_cache(data_type, "fake") == "value" + + +def test_update_search_data_cache_not_found(cache_manager: CacheManager): + cache_manager.update_search_data_cache({SearchDataType.NAMECARD: {"fake": "value"}}) + + logger_exception_mock = Mock() + with patch( + "httpx.get", + return_value=Mock(status_code=status.HTTP_200_OK, text="OK"), + ), patch( + "app.common.logging.logger.exception", + logger_exception_mock, + ), pytest.raises( + SystemExit, + ): + update_search_data_cache_main() + + logger_exception_mock.assert_any_call("namecard data not found on Blizzard page !") + assert ( + cache_manager.get_search_data_cache(SearchDataType.NAMECARD, "fake") == "value" + ) + + +@pytest.mark.parametrize( + ("data_type", "blizzard_response_text"), + [ + ( + SearchDataType.NAMECARD, + ( + 'const namecards = {"test":abc}\n' + 'const avatars = {"fake":{"icon":"value"}}\n' + 'const titles = {"fake":{"name":{"en_US":"value"}}}\n' + ), + ), + ( + SearchDataType.PORTRAIT, + ( + 'const namecards = {"fake":{"icon":"value"}}\n' + 'const avatars = {"test":abc}\n' + 'const titles = {"fake":{"name":{"en_US":"value"}}}\n' + ), + ), + ( + SearchDataType.TITLE, + ( + 'const namecards = {"fake":{"icon":"value"}}\n' + 'const avatars = {"fake":{"icon":"value"}}\n' + 'const titles = {"test":abc}\n' + ), + ), + ], +) +def test_update_search_data_cache_invalid_json( + cache_manager: CacheManager, data_type: SearchDataType, blizzard_response_text: str +): + cache_manager.update_search_data_cache({data_type: {"fake": "value"}}) + + logger_exception_mock = Mock() + with patch( + "httpx.get", + return_value=Mock( + status_code=status.HTTP_200_OK, + text=blizzard_response_text, + ), + ), patch( + "app.common.logging.logger.exception", + logger_exception_mock, + ), pytest.raises( + SystemExit, + ): + update_search_data_cache_main() + + logger_exception_mock.assert_any_call( + f"Invalid format for {data_type} data on Blizzard page !", + ) + assert cache_manager.get_search_data_cache(data_type, "fake") == "value" diff --git a/tests/common/test_cache_manager.py b/tests/common/test_cache_manager.py index 45fad44..e04b41d 100644 --- a/tests/common/test_cache_manager.py +++ b/tests/common/test_cache_manager.py @@ -6,7 +6,7 @@ from redis.exceptions import RedisError from app.common.cache_manager import CacheManager -from app.common.enums import Locale +from app.common.enums import Locale, SearchDataType from app.config import settings @@ -273,3 +273,21 @@ def test_delete_keys(cache_manager: CacheManager): settings.parser_cache_last_update_key_prefix, ), ) == {"/maps"} + + +@pytest.mark.parametrize(("data_type"), list(SearchDataType)) +def test_search_data_update_and_get( + cache_manager: CacheManager, data_type: SearchDataType +): + # Insert search data only for one data type + cache_manager.update_search_data_cache({data_type: {"key": "value"}}) + + # Check we can retrieve the data by querying for this type + assert cache_manager.get_search_data_cache(data_type, "key") == "value" + + # Check we don't retrieve it for other types + assert not any( + cache_manager.get_search_data_cache(search_type, "key") + for search_type in SearchDataType + if search_type != data_type + ) diff --git a/tests/common/test_helpers.py b/tests/common/test_helpers.py index f3465e9..0702c47 100644 --- a/tests/common/test_helpers.py +++ b/tests/common/test_helpers.py @@ -76,3 +76,15 @@ def test_dict_insert_value_before_key_valid( ) def test_key_to_label(key: str, result_label: str): assert helpers.key_to_label(key) == result_label + + +@pytest.mark.parametrize( + ("title", "resulting_title"), + [ + (None, None), + ("No Title", None), + ("Philosopher", "Philosopher"), + ], +) +def test_get_player_title(title: str | None, resulting_title: str | None): + assert helpers.get_player_title(title) == resulting_title diff --git a/tests/conftest.py b/tests/conftest.py index c51449f..416fb83 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -107,5 +107,5 @@ def maps_json_data(): @pytest.fixture(scope="session") -def namecards_json_data(): - return read_json_file("namecards.json") +def search_data_json_data(): + return read_json_file("search_data.json") diff --git a/tests/fixtures/html/home.html b/tests/fixtures/html/home.html index 62458f4..d626b11 100644 --- a/tests/fixtures/html/home.html +++ b/tests/fixtures/html/home.html @@ -7,7 +7,7 @@ } });

A FUTURE WORTH FIGHTING FOR

TEAM-BASED ACTION • FREE TO PLAY

Play Now

A NEW ERA HAS BEGUN

Overwatch 2 is a free-to-play, team-based action game set in the optimistic future, where every match is the ultimate 5v5 battlefield brawl. Play as a time-jumping freedom fighter, a beat-dropping battlefield DJ, or one of over 30 other unique heroes as you battle it out around the globe.

News

Everything You Need to Know About the Overwatch® World Cup Group Stage and Finals

Director’s Take – Looking ahead into Season 7 and BlizzCon

Overwatch® 2 and LE SSERAFIM® team up in a new collab event!

Fight in the Trials of Sanctuary – Now Live with Halloween Terror 2023!

View All

Stand With Your Fellow Heroes

Now Live

Grab your friends, group up, and dive into everything Overwatch 2 has in store.

FREE-TO-PLAY

Overwatch 2 is a free-to-play, always-on, and ever-evolving live game. Team up with friends regardless of platform and jump into the reimagined PvP experience.

ALL-NEW HEROES

More extraordinary heroes will join the current roster. Whether you like to lead the charge, ambush enemies, or aid your allies, there’s a new hero for you. 

CRITICALLY-ACCLAIMED ACTION

Enjoy high-octane conflict with a fresh lineup of heroes, more maps to explore, and 5v5 combat that gives every player game-changing power.

CROSS-PLAY AND PROGRESSION

Play across multiple platforms and devices and access your unlocks, progress, and accolades anywhere, any time.

Heroes

Tank

Tank heroes soak up damage and shatter fortified positions, like closely grouped enemies and narrow chokepoints. If you’re a tank, you lead the charge.

See All Heroes

Damage

Damage heroes seek out, engage, and obliterate the enemy with wide-ranging tools, abilities, and play styles. Fearsome but fragile, these heroes require backup to survive.

See All Heroes

Support

Support heroes empower their allies by healing, shielding, boosting damage, and disabling foes. As a support, you’re the backbone of your team’s survival.
See All Heroes

Tank

Tank heroes soak up damage and shatter fortified positions, like closely grouped enemies and narrow chokepoints. If you’re a tank, you lead the charge.

See All Heroes

Damage

Damage heroes seek out, engage, and obliterate the enemy with wide-ranging tools, abilities, and play styles. Fearsome but fragile, these heroes require backup to survive.

See All Heroes

Support

Support heroes empower their allies by healing, shielding, boosting damage, and disabling foes. As a support, you’re the backbone of your team’s survival.
See All Heroes

MAPS

Travel the world and fight for the future in diverse locations around the globe. From the technological marvels of Busan to the snow-dusted streets of Toronto, every map has objectives to accomplish, secrets to uncover, and strategies to explore.

PushControlEscortHybridCapture the FlagEliminationDeathmatchTeam Deathmatch

Push

Teams battle to take control of a robot and push it toward the enemy base.

Control

Teams fight to hold a single objective. The first team to win two rounds wins the map.

Escort

One team escorts a payload to its delivery point, while the other races to stop them.

Hybrid

Attackers capture a payload, then escort it to its destination; defenders try to hold them back.

Capture the Flag

Teams compete to capture the enemy team's flag while defending their own.

Elimination

Dispatch all enemies to win the round. Win three rounds to claim victory. Available with teams of one, three, or six.

Deathmatch

Race to reach 20 points first by racking up kills in a free-for-all format.

Team Deathmatch

Team up and triumph over your enemies by scoring the most kills.

A NEW THREAT TO THE WORLD BEGINS IN OVERWATCH 2: INVASION

COMING AUGUST 10

As the launch day approaches, stay tuned for more updates and thrilling announcements covering everything need-to-know about the enhanced gameplay, immersive storytelling, and a captivating journey that awaits.

The future is worth fighting for. Join us!

Play Now

Stay Connected

facebooktwitteryoutubeinstagram
\ No newline at end of file +

A FUTURE WORTH FIGHTING FOR

TEAM-BASED ACTION • FREE TO PLAY

Play Now

A NEW ERA HAS BEGUN

Overwatch 2 is a free-to-play, team-based action game set in the optimistic future, where every match is the ultimate 5v5 battlefield brawl. Play as a time-jumping freedom fighter, a beat-dropping battlefield DJ, or one of over 30 other unique heroes as you battle it out around the globe.

News

Making Mauga: Dive into the development of our latest, larger-than-life tank hero with Team 4

A Flurry of Fun Returns to Overwatch® 2 – Winter Wonderland Begins December 19

Overwatch® 2 – Season 8: Call of the Hunt Begins December 5.

The Overwatch 2® Twitch Support-A-Streamer is back!

View All

Stand With Your Fellow Heroes

Now Live

Grab your friends, group up, and dive into everything Overwatch 2 has in store.

FREE-TO-PLAY

Overwatch 2 is a free-to-play, always-on, and ever-evolving live game. Team up with friends regardless of platform and jump into the reimagined PvP experience.

ALL-NEW HEROES

More extraordinary heroes will join the current roster. Whether you like to lead the charge, ambush enemies, or aid your allies, there’s a new hero for you. 

CRITICALLY-ACCLAIMED ACTION

Enjoy high-octane conflict with a fresh lineup of heroes, more maps to explore, and 5v5 combat that gives every player game-changing power.

CROSS-PLAY AND PROGRESSION

Play across multiple platforms and devices and access your unlocks, progress, and accolades anywhere, any time.

Heroes

Tank

Tank heroes soak up damage and shatter fortified positions, like closely grouped enemies and narrow chokepoints. If you’re a tank, you lead the charge.

See All Heroes

Damage

Damage heroes seek out, engage, and obliterate the enemy with wide-ranging tools, abilities, and play styles. Fearsome but fragile, these heroes require backup to survive.

See All Heroes

Support

Support heroes empower their allies by healing, shielding, boosting damage, and disabling foes. As a support, you’re the backbone of your team’s survival.
See All Heroes

Tank

Tank heroes soak up damage and shatter fortified positions, like closely grouped enemies and narrow chokepoints. If you’re a tank, you lead the charge.

See All Heroes

Damage

Damage heroes seek out, engage, and obliterate the enemy with wide-ranging tools, abilities, and play styles. Fearsome but fragile, these heroes require backup to survive.

See All Heroes

Support

Support heroes empower their allies by healing, shielding, boosting damage, and disabling foes. As a support, you’re the backbone of your team’s survival.
See All Heroes

MAPS

Travel the world and fight for the future in diverse locations around the globe. From the technological marvels of Busan to the snow-dusted streets of Toronto, every map has objectives to accomplish, secrets to uncover, and strategies to explore.

New: FlashpointPushControlEscortHybridCapture the FlagEliminationDeathmatchTeam Deathmatch

New: Flashpoint

Teams fight across our biggest PVP maps to date, New Junk City and Suravasa, to seize control of five different objectives in a fast-paced, best-of-five battle!

Push

Teams battle to take control of a robot and push it toward the enemy base.

Control

Teams fight to hold a single objective. The first team to win two rounds wins the map.

Escort

One team escorts a payload to its delivery point, while the other races to stop them.

Hybrid

Attackers capture a payload, then escort it to its destination; defenders try to hold them back.

Capture the Flag

Teams compete to capture the enemy team's flag while defending their own.

Elimination

Dispatch all enemies to win the round. Win three rounds to claim victory. Available with teams of one, three, or six.

Deathmatch

Race to reach 20 points first by racking up kills in a free-for-all format.

Team Deathmatch

Team up and triumph over your enemies by scoring the most kills.

The future is worth fighting for. Join us!

Play Now

Stay Connected

facebooktwitteryoutubeinstagram
\ No newline at end of file diff --git a/tests/fixtures/html/search.html b/tests/fixtures/html/search.html index f45bcd2..d31bf2c 100644 --- a/tests/fixtures/html/search.html +++ b/tests/fixtures/html/search.html @@ -1,5 +1,13 @@ -Overwatch 2 - Player Search

Player Search

Search

Stay Connected

facebooktwitteryoutubeinstagram
\ No newline at end of file +

Player Search

Search

Stay Connected

facebooktwitteryoutubeinstagram
\ No newline at end of file diff --git a/tests/fixtures/json/namecards.json b/tests/fixtures/json/namecards.json deleted file mode 100644 index ceb7c09..0000000 --- a/tests/fixtures/json/namecards.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "0x0250000000005824": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/98c45a9004f52b03baf5857e05872e3eb5d967d9c2f65a7395e82d741560e0f9.png", - "0x0250000000005825": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9c536fe43e6f8e738b57aac417832d7387f8783f04541f501b60208f4cee31c9.png", - "0x0250000000005DC7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ce14a33479795ecd412185a565c1f4a37a46b319e635ae4e8f18bfdc347524d9.png", - "0x0250000000005823": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5f8d0601741855c5b3a243b22b62296a7af48d7c11e20e7ecb315c2cc451fca6.png", - "0x0250000000005DEB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0e768537957840cf26c4ccd535e2818315723c64e4b07609e7211f899b4562a0.png", - "0x0250000000005DC9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3ae479fed2bd4d41976f3fac1f703a6e367e21fa344373ddef8104dcfa292b55.png", - "0x0250000000005DAA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c367d5ab366a6f10df31aa9ff5671ba5d612c3e2ab10e67aa9a0aec97e7dc779.png", - "0x0250000000005DCA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/88e2db8c0ee8722379583a617c3e4de5cc48694dd2f1f0a560b707616d05b9cf.png", - "0x0250000000005DED": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/547afad62e63b9c6147741b1450cea6a97983ca3bc7b53514561ea98973818b0.png", - "0x0250000000005DC8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8bc4a2df73d0bd7961e77c4b7b7abeb08c542b753c91d50d6fe968f33e8fd2c2.png", - "0x0250000000005DC6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/195c7b760d996c642db7f1af3b984434f95cda7954fa823e8ae11162f5d13bba.png", - "0x0250000000005DEA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8762d063cbfd98009f97d1dcde69bf4f736fbf7208bdad0721b852cdd39e1d02.png", - "0x0250000000005DAB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fa6994c31bba175a98562a811e80c0fe82a2dbf984b54e08e1f634b1af57bb48.png", - "0x0250000000005DEC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4f6a69cefc191f41aaef7dbd477c2db79dce53ed876e075d267909a89ab15e22.png", - "0x0250000000005E07": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/57dbcb94de4769ddf9c460368184ebdad13f8be9accb914be491a86adaffbb4a.png", - "0x0250000000005826": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/30fe8830dd2510798d214d09737d26e0577b1763087c174e40b2595114db0d56.png", - "0x02500000000056EC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/065707c2cb340a13daa3171c0e96ce04d967def7800c792ebce177c0287df0a9.png", - "0x025000000000570C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/844b15a9cb276864cddffb38595ebe9f116b69138ce3c8b9939055e2c82f9406.png", - "0x02500000000056CD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c748b7b59801b79d726630c9af1a2713e45370ccff9b97b9205ad0cc90c0de19.png", - "0x02500000000056CB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b5cd06241b5aac52bac2f670cf10c685cadac9a65e591c7aea820ac6bd062088.png", - "0x02500000000056EF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7a54fcb32ee00f40e0469841569c90bfc3d5bcb471eca9f615aefe87c658a7ec.png", - "0x02500000000056EA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/52ee742d4e2fc734e3cd7fdb74b0eac64bcdf26d58372a503c712839595802c5.png", - "0x025000000000570D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/46470e605be6a0d40d6ec7108958a4c1ec26367ae2bcec750d2d90e1ada6c503.png", - "0x0250000000005709": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/49002ea76f715ae62995559fa3ce5af44d86853b4efd8bb3c8c448689af4e00c.png", - "0x02500000000056CC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f85b3b2e3ad38f84fe3fac81106618dc88666524da992c5212bd067f83033795.png", - "0x0250000000005714": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/55d8c21e9d8b14942c26c4028059b6cd3b4e2fea40a139821ecee73a0005126f.png", - "0x025000000000570A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1ea3101b8e26b5d5f28767c281674e82f9a3a75f507f4e8892fcfd258d3cdc97.png", - "0x025000000000570B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1317d51bb2b62fc34517f9c59c3ce598e6cf16f41dfe72a9d2c540263836f64f.png", - "0x02500000000056EE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2238c652dbc8b3983c49023eb5acd8a17baad5711f065bb1af81dfb96b71b42e.png", - "0x0250000000005727": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/544fe5f155a96a7ce52a84e285f418d76787b4e60e98bbc0bc5004bdf014e058.png", - "0x02500000000057D0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ebc71899e82c6a1388a165b487aee1dd6964304d22509ed0d1540a972ac9ed5d.png", - "0x02500000000056ED": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e6b234d2a7a71ba9107460d2ea7e902363200dcd0e4f4223a9867e6ce5d590ac.png", - "0x025000000000565E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c6d1cd6f1493929558baef0f82fe6656fbf9bd9c51452c7a44d289202369b766.png", - "0x025000000000565D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/44da73a623f841d7ba13e96aad9dde7b621e7d508c2646a6b43d406a11f5f837.png", - "0x0250000000005510": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/757219956129146d84617a7e713dfca1bc33ea27cf6c73df60a33d02a147edc1.png", - "0x025000000000552A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/280790a450f2e1540f62c855f0f4aebf14e4278723c9d0442415ce2b574ed2eb.png", - "0x025000000000550E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3e51eebc3e8401b28049e28eeb5d65ce57091c405698336047838267fd6b5467.png", - "0x0250000000005532": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9d8fcb22184328e21ab99db87f105ed42f5f66d9e4db3bae92af08ecb6f9e067.png", - "0x0250000000005533": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/568056f3391d42b23531c5216e6f5e6636c523f8e697afc1dc93a62aab958d25.png", - "0x0250000000005534": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1891d9f7dd868d5c36271e6292f8f19a868c24728b0f67f36a287b7988492071.png", - "0x0250000000005530": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f7009fdeee3c5c0fb83823550b0871a66e8f1b9439c8a3958c8280402e4006c0.png", - "0x0250000000005644": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/174d5ebf6ba3213aa92d109dc66f5a4e225fc817c8eb7cc9cf25dfff0ff8033f.png", - "0x025000000000550F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a189a7af084c84f501fae1f3c28b2c70849bb1304af362935a8720df4ecf1a2e.png", - "0x025000000000552F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d67ea476045583268e09652f6a4d167dfac23851b70e5111e371ad7ffe19effa.png", - "0x025000000000552E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/41a6632d0fb373cfb60a2b634fcc53edabf5d01bde0ef78612136896cc1630f2.png", - "0x0250000000005531": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7f5b075ecc28b171950ee902ae3829152d444fec24756984334a86399c9e1ef4.png", - "0x02500000000054D9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png" -} \ No newline at end of file diff --git a/tests/fixtures/json/search_data.json b/tests/fixtures/json/search_data.json new file mode 100644 index 0000000..fbe90aa --- /dev/null +++ b/tests/fixtures/json/search_data.json @@ -0,0 +1,1958 @@ +{ + "namecard": { + "0x02500000000068FB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3af7acaeafef10eec74b42136b6d04fd136a6fc45455be69d54c824415950a61.png", + "0x02500000000068FC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9c7512e1fb8e1ea981ff53531e3cd205e6f21215f46728b3ceedf4a671d6a0a8.png", + "0x02500000000068FD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/71d6d2708fa4a8aeb267b0f5319863f9d0e3638e867835969007c3aa2517ee88.png", + "0x02500000000068FE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7b19fdd5d45d2e36ec1e472b3cf7c742f7bab2d6bad7152d9c7791c03072c8dc.png", + "0x02500000000068FF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ef21f417c4e720d67cfffa77d43b4e53b79e6b2f926659f6a70f0c1d84b81b34.png", + "0x0250000000006900": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/18d7a86071d8202f6e8258c99d356110de2a97d403b56491a5bb7401db8a1922.png", + "0x0250000000006901": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/029b4575ec694b92432981cac8c493bdc0538d5ec729555b4f7f96f3791e8187.png", + "0x0250000000006902": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/823cb47aaf0c858345e61a657f952319ee4a42121c9a0b9164fef6b85afc7ca7.png", + "0x0250000000006903": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/27f3b9747583df4cfa8eb1c5724dd111ad009c2285e0d0ccf28c19dc3486e2d6.png", + "0x0250000000006904": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b3023b0ca60bb72d5fd7f17027de7961361bb7191ac3feabba7f83df629ca933.png", + "0x0250000000006905": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a253730bbc73b685afdc955eb15c73e9f902ba5c279beda0b3981b61eb72750d.png", + "0x0250000000006906": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a576197aebf6f0221cc8ab7547e5dca36c9e642018d500b444db73dc9a08741f.png", + "0x0250000000006907": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d5e8b7d36a3d1b32ad3b93752d9bbec392dc74c0560ce9788731cc2ed205aadd.png", + "0x0250000000006908": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a880c1f1bba25a0c4c16a41dbc7e2ad0acf52974c3b05157d8877a040e4f67da.png", + "0x0250000000006921": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/32128b457a400d0e3ad13a48d33771abf76d55f6c98892391dc5b339e54788d1.png", + "0x025000000000699A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f120a2ff389f27aec32b50512fed60f7d7f8a8ef72515cffc75a7c93a66b3f89.png", + "0x025000000000699B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/489b25cd198816f50da16a9556445594b07b9be7b93477010e22a787a3ee29cf.png", + "0x025000000000699C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0a5ca01444a2242e59456dcfc020a6bdf7ae7e3c29c2c1364c59cdfd7c2e0864.png", + "0x025000000000699D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1456d99b49a7a6c02aa4609aa80be66ef9d730295bdb4a8c0ee9e7ea26eb9c2d.png", + "0x025000000000699E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/53af44ae56f24b92e2c6795dfaaba7c82d4219f306d4716053c2c9731f5ed53b.png", + "0x02500000000069C6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ee07081dd8d88d85f07afa4813ddcef20cfb5fad883c43258313c79dd20b8ed1.png", + "0x02500000000069C7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/265fee8182cda5bfee8aab3e0075c1585339207dba91ad996aac7663728e9d1d.png", + "0x02500000000069C8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/54351756e5cca536a6b481c1934cae275c4bb24eba5dbb3e1f60fa468163c7d2.png", + "0x02500000000069C9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5288402a54efe26db7a58db7d5e1928b3da72ca7b1878888e726784a4c9f244a.png", + "0x02500000000069CA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/82c7f7bc55215df996eb1c45308e3770b151817e33b17da62e5d47274cf9c422.png", + "0x02500000000069CB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f7b8ad11ab02e72b2151b50d0ee2e9e8ba653c6893ac5bab75df50308d6b21d4.png", + "0x02500000000069CC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5f59f5632984246e064656a70cd208a3e45240f12ee426719f23d44b9bcd38ec.png", + "0x0250000000006A19": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/812338131d62783acaee941c2230bf59df1a4792cc3b39f888a3c6f48eef9674.png", + "0x025000000000662D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/190a5f0ed24e789fbd0901538a6bef6565ecce09b9c090ec3af3a3b92d57c6b3.png", + "0x025000000000662E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fa42866f91488dbf1b1e4fb41683d8e9de4233067a75a58b93029544f36a0f99.png", + "0x025000000000662F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6c293501219cf4fbebf9ff863d2f24e10503e1e47a565cd7c70425a89eb87231.png", + "0x0250000000006630": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/50dc03539577bae6d61ee70f0668c4f13b61cc6c0f2db2df02c2bb9d70884974.png", + "0x0250000000006631": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6f814ed758172749b7bc3bf937df59d6c45ce03890d6e8593a6fe369b5832b06.png", + "0x0250000000006632": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/db077f1ac29a6b9fc156c1fcc41aef48ca9a947777815ac2b2a28b2424f91056.png", + "0x0250000000006633": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e1663e7ab4d59a06f7a2a854c6f717c52d027504683b824d09b8142a527b0758.png", + "0x0250000000006634": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1507af81e892412da5bdfca515cc56f661eb936ceb5be513e829dd76a3a1368b.png", + "0x02500000000066A9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/01e4de1f415d90666f736988a7f943e81f2fd8d08b0f9cd4865a79953b3b2dec.png", + "0x02500000000066FA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2f47bac5ee808f21eab8416114baa2959ebb4afef6749d1a8d25b2f4295476e2.png", + "0x02500000000066FB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/18334b10262fc009e58714b2483c609aad0bfcd8ff7ce18cfd6817073513ec66.png", + "0x02500000000066FC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/15ed049a1f1fa02bdcb10d2330f555956676decb78d4258512b0f8d9bde73087.png", + "0x02500000000066FD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b3475edc38e79abf032ca92d960e2d21af4de841686cf3df03c4ecf938b57355.png", + "0x02500000000066FE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c7ca4d4aea7c8ae114aa56a394bc9862b396f4ddff9fd0b5f865fb473a750b52.png", + "0x02500000000066FF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/60e5fde59b2e36570213ea64f210c175ee4538280c1cee71abf4dab18eb967a8.png", + "0x0250000000006700": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7364b8adade11afc53d163c7f9a496334811c763735e5a4e6a7dcdf6d87f1c08.png", + "0x0250000000006701": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c83690be45bacb617b32e88fd9e387a1f1a72c97f3c3b07e1acd015e617b98ed.png", + "0x0250000000006702": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ac9ecfc8fe1ad434cf3d169910869d9753c885355a14add6a8114fc46aeaba86.png", + "0x0250000000006781": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/58d2c89865b91f463c61d979f8eb05d8859054323b35510b925c27173d184886.png", + "0x02500000000067A2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9f93dccd852c26c12fcb08308648a6544e0cba565d4e32847735334ca44a3fb0.png", + "0x02500000000067A3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d5fb8f7ae5f2e8ec90a4b74cacfe38d4366e8265956078ff801e377a535f190a.png", + "0x02500000000067A4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3d6db40ad17d7b5b8048d68bf85c8297bf8f65a878f0b1a4fd91296cb6d621bf.png", + "0x02500000000067A5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c4d0cac41b60e28b9cd4c28627e98df26d949766714ce0e2256fbc68b0063279.png", + "0x02500000000067A6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/52d2d84d788fe0b9128013f6cdf4d0a97edc9be17e14d7444275fb9858ca5f7e.png", + "0x02500000000067A7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8fbf24a70e76b21b804574012b129c82358343f7e82feef5bbf05e4b4b4d3171.png", + "0x02500000000067A8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b159852aae9794047076401f3a840b1957d11268287ca11c29e8a4b905941a77.png", + "0x02500000000067A9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/710d2fefebf6f9d2a76a5d2ed2bdb91904dd29e82065dbd876ea81c9251232d8.png", + "0x02500000000067AA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f71dc27ce49a1f1698dd60b66840b1f288e5311cf4169ba174fac0299c0f9601.png", + "0x02500000000067AB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3f0e3607bfa624dc604c8809d53948d97c1ad95b26e88886d446162c7d3ec723.png", + "0x02500000000067AC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1c610021733b0da1c60d02fbe90b5ef3b777899c3efbc7512cdccede14819a97.png", + "0x02500000000067AD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/db28f70f93a72a11cabcafea9e95f84730a547af6965bcdeef7b2d54a9dfa514.png", + "0x02500000000067AE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e15567f6fb4154750d5048efa838c33b46d93990be5a2e7af115bd81ca7c43aa.png", + "0x02500000000067AF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f4e09e2824ba71eca1f0e44a8a5183bf27078b348c0589adb52c28f065649db7.png", + "0x02500000000067B0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ab9a36f95502957d9d644616f5d0d88e45336cbef4e8a82ebd37be91f1c1c91a.png", + "0x02500000000067B1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/68883b7b1357852b34845b8b13f466cd2a3108907dce0736be4a68e9439c0628.png", + "0x02500000000068D0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4c8ca08f84bc2929e9c39126a2905c3d1b5e2dae3697508221586e3b6d3dcc8d.png", + "0x02500000000068D1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e3145d530591b81e1ffe070e63b50eba0f9f5467472b841723bff5cc64d1f264.png", + "0x02500000000062BE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c0af48a45e2ec109753e56bbd78c09272f838b6c3eaefc0c9c8c787bc8cd33f6.png", + "0x02500000000062C0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9a86a52e71b0bccf4cbac2eb5dc768de340d1d0909270b0fe894a9c61e98f08a.png", + "0x02500000000062C1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ef86c67aac14476327a1aba91c9cbe51b31169a3d93f7717636376576e96d70f.png", + "0x02500000000062C2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3869346186f8dc9de16b36a54ad383076198bc82f70c0bf35d0768dfd92539a8.png", + "0x02500000000062C3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/654ed90d9f39c383e451e9cdb7fbbceaa0e1c2996dcd0d3a9d1c5b40ba374ce1.png", + "0x02500000000062C4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4b242bac9a8004ca395dd542925e87336e927a95c200b1fae62a5f48441bb77b.png", + "0x02500000000062C5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2bde2cd704c53f8c3bf97804370bff5190c95d06dc7da83d4c3e3a40e67eb324.png", + "0x025000000000636C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c4853799387f7510d5b3d0f681efcfc812801044bcaaac18e2ec35871b6e45eb.png", + "0x025000000000636D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/76616fe014d76e76953ff092d0d899217c30a558a94944fe5ef8b74b7c01fdb4.png", + "0x025000000000636E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/dd3e1152d3e3c1e84968c4da79c52b4e28513ec7d356f6e59318e927593d9069.png", + "0x025000000000636F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/15a8e550775176deec9ed3e31bea6658ad595d5c59570485791de97740fcf54e.png", + "0x0250000000006370": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6c7aaf6e32442cd1e57d957ba875d68a0c164e482f64e9452b4a900fa14e05ba.png", + "0x0250000000006371": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/908ee5e5e5ef3f8ede30d2536b4da9cb38feb4f8dc0c3c2c8f2013b22e3f49d7.png", + "0x0250000000006372": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/95f28df423e8298abf5bd21dc540d6a7f38c5cd2a34b35b834285c1e644fdce3.png", + "0x0250000000006373": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3d5b7fd32c63d270d2a4501a7f21447d0ec136acb4b56eaa84f49309e275e71e.png", + "0x0250000000006374": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f759e48caa0ea971008f70b619feecb3adb9bf86bf28d09e95b9b6d73202be85.png", + "0x0250000000006375": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/03d5ecd46ee28f3a6660319bcef45456ce3491caf44e0ef1049d4186dca1998a.png", + "0x0250000000006376": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d3f7c5e7443b43c85dea961b5e4a1c759af45062b2f19bdeb44136081ed37afe.png", + "0x0250000000006383": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/87ef87f73a5f2e1b4c8fd59a1c3e52b1b94cddebe068047931d7b586920f019d.png", + "0x0250000000006384": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e5cdab057f790f5f9ec7c21d4c53305cfb541d6b744f5f929fc2dd0799a37b87.png", + "0x0250000000006385": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d5e4c6b00703971e144a3374d224340069cc41d40a7754b6d7a5def6fb546091.png", + "0x0250000000006389": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9b3b28a4e594a711c78c955d6ff330b6befc3f5d92bb0da95bfe632e426dd2a2.png", + "0x025000000000638A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/348f2cfc98894d5f807a643fd3fbfb32e516b3b62d6d228ad9ba3d452f33b8d9.png", + "0x025000000000638B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/99c68574677e47473899315380014a23ab655f6c9a1486190183d50cf5b0d2a3.png", + "0x0250000000006397": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/327ec900946003b89729a0afa84aad5f330725c7bf5a5f2d61365b71ff44fd7f.png", + "0x0250000000006398": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/22c334b55b34f834e6aac0544e5eedeb11bdf8e78bf38fb8389ab9856388a482.png", + "0x0250000000006399": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6b4c63a723de76ecbf678ec6f1d7cbd1b45485bddb547c6411cad4bd1b4ef5e7.png", + "0x025000000000639A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a7750a482b04a4086c648e595835acf17fddbd27c048a58749a00afef12606e3.png", + "0x025000000000639B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f53d6807e0967b963a4f4ef32ea5cb675b87eaa59e61513ef205669ee7884b2f.png", + "0x025000000000639C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/effa9c3fe78179845cb5252f33da7684b3ecacc9b2ede228762bfc8a733f6733.png", + "0x025000000000639D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3b1744f4d82c292bbab2ecb3039c2144e572abc85a0297caa013bb5666561e7b.png", + "0x025000000000639E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0239117f10293cc77853610f887a65260daf013de2237cb20405e3d20f9d0f31.png", + "0x025000000000639F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/be5c6be8014ddd2baef61560d88eba4723d7791b9f21d1d3e9d33941f537e3f0.png", + "0x02500000000063A0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c88b9af7aee3e3360ba474390f23fd219d4ee84bad6d009cd62e85b84b115c64.png", + "0x02500000000063A1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b783889f71165c2f8f14f19add961f30447f8d7765ae00d333c8ad4937a074df.png", + "0x02500000000063A2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2249faa6c6513097fb1d2f09d15c1d2cbf5583e54bf5d69544047194cc2d12c7.png", + "0x02500000000063A4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a054d41a2568db5bf36217cde04ec5482243d341f53f10dfe48eaf65c2ed9060.png", + "0x02500000000063A5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5e4d6ac4131cbd2cdbd46aa8bae9d5ea5be61c03aa61e8d98369120c1e41a426.png", + "0x02500000000063A6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c7b43621fce2b52c9af764e16257dc532e05fd115069d4ed50bcd7bca24f061e.png", + "0x02500000000063A7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/731adc7f14f9780afa387b29948ba4242f7ff5949206cef44bf5c709b9cb902c.png", + "0x02500000000063A8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1080afa0ffa5b02280961ea3d74171db46df8b910f04368c86c4ea4f8645293b.png", + "0x02500000000063A9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e87f84dfdb982fffe6672e36556602f035d2b099a6ac732c634d452e491d5dc9.png", + "0x02500000000063AA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/999669ae163d1d4d6165ee26524196187364da67fe8e0380f164938e4c365d85.png", + "0x02500000000063AB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/18782e231ea2e194c9d3cfd0d7e8b27b93bb4250a9151f53a821327738272da2.png", + "0x02500000000063AC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1cdb1302debfa06204049339cfe8a580e01a168b63811b98c57a7ba28088bf04.png", + "0x02500000000063AD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2d2e95b8852b8cc5adcb7e0059d0c533e897571139c6b6b71552b42da3bdc445.png", + "0x02500000000063AE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9ce69efdc5dfe245aaa824ed9fff83d93af282a81faaf249da883217e6ddd051.png", + "0x02500000000063AF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fbee89da662d3c2bec40c8a94aa8258d3708c5162ac64ef3eded56f4348ded08.png", + "0x02500000000063B0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8c3617dc9f3660b19b9214477dda43bfdaf715e42274235632da2235f6bf9b34.png", + "0x02500000000063B1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/29c11ef87139975ae1e4125f39f4efd502bdff5cf78bd1cdbeafe1347a746696.png", + "0x02500000000063B2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ed20349c6440850a54fd866debb4076d80be7282f290398c1db5bc63a864fbe8.png", + "0x02500000000063B3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/542352f7d23ebd341dd85ac78ec83737ba7dbdb7848d84e3d7b1c832d914d065.png", + "0x02500000000063B4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ee9931ee351a92c9c53999b0dd0e1042a6dbdd085661ebfdea8bc304afcfbaa5.png", + "0x02500000000063B5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d8869466fd8e6b40dac8d2c865aee226bd864e6ef3823c4ee6b490054e518c38.png", + "0x02500000000063B7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8d2f0d98d3fd74d57bf03900c58449a851d882c0c2136dad1ef0c735a97205e0.png", + "0x02500000000063B8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d43c93eaa82740ed42ee303deb769d3b154f9941ca975824a9141100fd0fa670.png", + "0x02500000000063B9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/41776cd049399b377e12f6eb91a857edbf0e36ee55adb584960b1b0ef06bd071.png", + "0x02500000000063BA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1949b7a1caa0a22138b4745dcf1cd9c837df8694f028493e67acca8b6bb23d1e.png", + "0x02500000000063BB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/08d7a9531cc9233a9ab38ac0a5c22990389ffdde35f005d05f7ab19feb1d4687.png", + "0x02500000000063BC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c691eedfd1b21ccde7cc5e3722997710d9beef17123e1304628cd4c98d749508.png", + "0x02500000000063BD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b9a271cc7f3b462e1ef344bf51a211ecaa668b24e3d0ffd9072645da92c86e7a.png", + "0x02500000000063BE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9bcaa445766a79800843b8cb78c7d7a3abbadf3cefee45f36964799a7fec1a88.png", + "0x02500000000063BF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f33afb73b596cbbb32ad31934f6a02631a7e1abec55b42094a8f02b74595362f.png", + "0x02500000000063C0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9df4cbcf29724af5115cf867b0aed09e4b7b2024ab0890c0990654c6e949a32d.png", + "0x02500000000063C1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/af4da5dd9863760793942e5022296d7859c5f06a37f6c7f41c5f082c3e79d7a9.png", + "0x02500000000063C2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3498508e6986f34342c61fd16ab4adc433027dd807646b7a381e2addd65d8393.png", + "0x02500000000063C3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ceaaab30bb0d51a4ff5781bfdbca1708613d376308a436d0ccdd6bee26ce8789.png", + "0x02500000000063C4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c4954fa2011ad751d1e932e837fa39260e7509bf566232b8746c7f3f573941d1.png", + "0x02500000000063C5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3f4f9c466d5ebf16b7c71fe4bc952648801e44f7df4651b48b049249eaa7a16d.png", + "0x02500000000063C6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/918cef88d189665f3be27f04c85e68656df48d54e3c9ac6ba8693b4f6afc64f5.png", + "0x02500000000063C7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5b6dc45b8482d248f1f17dd4b78e7001390b7eb49f37323a3f042941d21c9118.png", + "0x02500000000063C8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c1b61450450020168116c65ad749b2e016a7dde5ef802877c5a7ed613d7cfe72.png", + "0x02500000000063C9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9e36f1258d23a9d35ba95522620eb99fc53c7581785645fe1e505df1ae766455.png", + "0x02500000000063CA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/798dc19bc9c54db475c8bb01431e34cf5c78a9d42c9ef9053f7d624a1cf131f6.png", + "0x02500000000063CB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/09a92f79f3c70d68991cba2fb7cb6156f59006ca770d8e637b8341697421eea6.png", + "0x02500000000063CC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e11aff38cb0c525000de7dc75021e2a25f8fdb93486819ba576fa42bbddce74a.png", + "0x02500000000063CD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9e878d5722c5d0e9ea0efba684dc6b6e3e10acf579bf5ebc07eb0b2497402b81.png", + "0x02500000000063CE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8f4ff6a4c6c658a1e2d0318a1b3484588f88e4f7abf892a296b2c52219a8e1a3.png", + "0x02500000000063CF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3a489389eade30afbdb2f00deeac9fe3f2e1253c10a40f5b9dbf960e6dcb847a.png", + "0x02500000000063D0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/026b0d10a03688309adb8febc4a5c3032b827b2d568dc85d034f6c1a04e3cc28.png", + "0x02500000000063D1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/62a620a52d9dcdb3ef11bfa63b710c72ac696fae6ee87c2e76dd265e089e9471.png", + "0x02500000000063D2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/41e26f32a2c43fbc7d0f419658175d7166bfa015a0845e50bdcc9aca58f8c854.png", + "0x02500000000063D3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/27003e601f6cbee3c400c158b11aa6b0089d6f73cb88bc48f51da4edb5a3a2fe.png", + "0x02500000000063D4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/bdd7194221e18684c7902290919c45bed42ae2c0cde37a0d63498035423fce14.png", + "0x02500000000063D5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d0f3cfca3461caa683a7145ca9512de49f49be4a82ea70a38055ee02da375040.png", + "0x02500000000063D6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4c9b551b0f95929ceecdb3d5e6d66e1a6053649166d60bf22263de794b472293.png", + "0x02500000000063D7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/685cf335b74d167c727e4d509d4626df1174628f746ec71a54cdbfecf1640990.png", + "0x02500000000063D8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2de6c10c513559faf1bbb05d02bacb07cbd3f17609e01249dffcf7ad1e656f6d.png", + "0x02500000000063D9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7dfe4ac67ebc26a4f0d0db790b506a9c920019d611a20248b8d1a8a163f7b063.png", + "0x02500000000063DA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ef24b14c5ee9dd42c60cd86c57c9710f226acae626ef78482a7dda45caef4f71.png", + "0x02500000000063DB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c1c433f04ff7a3984ff58f3e6e460fb2673461aa79b306f22509226198604770.png", + "0x02500000000063DC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/179848f756cdfe4371888167d9c0e76eb7ceeefbecfb19cdc5725f3cb33ef9e4.png", + "0x02500000000063DD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/389c9bb258dce93d03e69712eeef8a3fe8b8d18c0f871b561d0dd86005b9f1ce.png", + "0x02500000000063DE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/29b540210ca93e4e0c26e0ba5234aecb9e3bc084764da6c789e3d7059d36047b.png", + "0x02500000000063DF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e0566ac4e2a469f9d100531a83957370cd2d55478b9c79ffd211187275bca66c.png", + "0x02500000000063E0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d6cc733b67ba68260251432ab3fab75cc0d1e678ef5d778f9ef27d88b4bd917c.png", + "0x02500000000063E1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/964c78ee4cde26ec178c85ce032d72b6d3a2af80363915fe6ddfa9f11e9f9416.png", + "0x02500000000063E2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/795560c4d36e5ac3fffcd7fd7767497312ec78fe9563536b8c3baf3ad0523027.png", + "0x02500000000063E3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ec68825c484ae2738cf9f75f838efa8ef601eb19f509f0721378b45549efc78e.png", + "0x02500000000063E4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a455c3b98cceec4a73b3982b3bf2312b0665e93435f46fc6874939331104fc0a.png", + "0x02500000000063E5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/af6ca27564bf16925ce18b6f4b9f2b495f2a33fe6f85b56831358897b8ca5bf0.png", + "0x02500000000063E6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/56d0c9d7cd78726cb32ae01c5ca27ac22533f127f4a199a5e02d627792d9e745.png", + "0x02500000000063E7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6c340bc461f743c97de9ffefb54e9ded8b089809f79a240c4cde203adb6ba2f7.png", + "0x0250000000006447": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1b551dd4f9e92b78568852279e6394dd551fd10598b0ebc0f2228d626d6d923c.png", + "0x0250000000006448": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/377f84d058e20e66c8576358fa5fc18943a31d1e1c049293813d73678c436588.png", + "0x0250000000006449": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/de40f58e3b3291f630cd69569891d9a317451b03163e384fccd3d5f8bb937bd2.png", + "0x025000000000644A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/06765b550d2b4c293e19e693631efaf93d0c82b065bc40bd3ac06ac92fefdccf.png", + "0x025000000000644B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ad1035595d8da98aad77131298587beef2faebc740830cb208d92187cd743066.png", + "0x025000000000644C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/35e8f878162dea007e731bebf870a3a226ab89e27e9c922316042701e13ee76e.png", + "0x025000000000644F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/34ab0833685d94cf6381509c7dfbbf6d33de1de4bae809f8ef5e22cb41c8e87b.png", + "0x0250000000006450": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9efaffc068668c1f12d7547bbd892a01288b58a1726d69325473de675c54f979.png", + "0x0250000000006451": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b9e87b47145773068729f4e86e3fc147a6f18ea49934141588baea63f8705f68.png", + "0x0250000000006452": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9967d61b804cb0c417e922bcd6a78f37250595065046ca07873c5c52cae48099.png", + "0x0250000000006453": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/aa2dc74872bdc1fb14765a41f5e1cd3077ee7258848c6f9cf51737d6c38de16b.png", + "0x0250000000006454": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/70a117204bb614f4d62f2872a0eedff35a3249a8a458d031ec5a1f81593d7800.png", + "0x0250000000006455": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/66776a8243fb92600964086b436fd7a6faddd488f782dd76ef27bb30c49e62b5.png", + "0x0250000000006456": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e38a40655e8517c303c8e1660022e49f73e9321b36f2143f4b854fbec00d0133.png", + "0x0250000000006457": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/dd51abac0390cd23a6b8aabda4b0302e9df6859c08274776d26d766d6ff7aae9.png", + "0x0250000000006458": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4d3e8a0c0c6b726f825370eeb38c8989009a0ee281d9407c16153befad299eda.png", + "0x0250000000006459": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1945541e2fc0d4d75b5c63edeeb3aeb24d340b72d2f3224ecc1b3ab578fd83b8.png", + "0x025000000000645A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0968750d6c63d478d4c2fb118e8ca4980fa685a0c46606bca7294df591c808fc.png", + "0x025000000000645F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/481cefe701065fe4e25b8a18e08a6d8c493e00b2cc82a59a12d53914f74c9b74.png", + "0x0250000000006460": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7a77b6b07ff73652765a6b0d7edbff1da1c46c2847cc22dc7e50cd95b4b61ff6.png", + "0x0250000000006461": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/57c4f3e67e2013590fffe660f2f316a8a759f8998201176257c48d732acdd553.png", + "0x0250000000006462": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b598890e4f7f3d278fec0a874d0220fb991db08dfe60cbc69741d91aea3db9b2.png", + "0x0250000000006463": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3f231709518c5661c3a6cc99b8095758703a7b85e26cf8484640214bfd07931b.png", + "0x0250000000006464": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/426e45e60fbc3d2046319b18072a4dae8d07297ffeb26b4e4b45ec76037102d4.png", + "0x0250000000006465": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1cdfbbd8e674a497f47f825e8ae2d5c7db9ce53644f7d8e66f3ba10164c42784.png", + "0x0250000000006466": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/df808e37ff2a36e23a0e30fe6370d1b39104405fc664dd273fe342055bf52415.png", + "0x0250000000006467": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2471c808b487a7ce0ac072e6c7edc920f3753702a12921ecdd1070debc54a3b9.png", + "0x0250000000006468": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5530ee73968c07ce528b97df23916fe2724e649194eff57d8ef53e04408985e2.png", + "0x0250000000006469": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9c3d773c590e54e41b24b523e67c76503876f32b189b19c8262166a543a0f1dc.png", + "0x025000000000646A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/573caa2fb41044aa7c894f82e3754abc078d1c1719814fa1507c5f09bcc9c076.png", + "0x025000000000646B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/551c3700cf28d7dc705369976d8bd5ba81e8524fc5e91eeaa3ba19506a032414.png", + "0x025000000000646C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d3b705878813211c4f3374d9440941fa5b2b3fe42c6f70ca464d86668a527c0b.png", + "0x025000000000646D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a64ad5261292f35f5f9f233f04af5acb59b2579de550a5a41f91216a268fbe50.png", + "0x025000000000646E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1a4ba1aeeb822f4222a98a295568264155f2490c0535f4a659bccb9fa7409f4c.png", + "0x025000000000646F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e46e9e0c46431611993819569db591d24c4c3daaaf0c5ccbfa1caedc0971ddf7.png", + "0x0250000000006470": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/88af6b373725e28e41693ebd14f3dd7ff4adc79a3ea1ed674a8ea3bfb9138c27.png", + "0x0250000000006471": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0f9ed79c819b17a9d92cd5424629ec586441a5d065874a0d67b37814478468ba.png", + "0x0250000000006472": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ef632e70640353ae8832f6c1e6f226787c0d1df4aa02783170f3638ffe7dd19b.png", + "0x0250000000006473": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5b6e08aa29e01c169b0016760100d7bccf40ea8ffeb7fa7b49104a78ca8be470.png", + "0x0250000000006474": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a667f98b9c51f98f00a0041e04434e1f61c1523274f57dfcebfdb5a75976a6fc.png", + "0x0250000000006475": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0f2d7a3cb36805065460aec3585fa3ebe75ceb0135cf3322c86dd2dd77e826c3.png", + "0x0250000000006476": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8ba1ec795a818a212c5b9de95c89a09c14a7a5fcd638205ce55e7d516ca78762.png", + "0x0250000000006477": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/59631cae30577861faef476401900b9a455f7d19e7bf41cea476b4ef256d3be5.png", + "0x0250000000006478": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4b1b2f47da9930e11763fe2230e0d359d27f0a8aa25d7ff65d50dedeb77485bb.png", + "0x0250000000006479": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5455cd30d016c6cf7fd739fc37ed710759354edd06c7df07cd8ddb86b0568da7.png", + "0x025000000000647A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c354e4fe10f38c6eddbfb170f0ec85a42db1b02b69f9d9be482cd1d0a4281f52.png", + "0x025000000000647B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/12090667a624a2b39a04679278a209de2d305b5235d0f0e26f3fcbc98eff8f79.png", + "0x025000000000647C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8cceb09ce0ee18ac11c9e1ce00189ee71bb1ab8105af400915b9845c803900fc.png", + "0x025000000000647D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0ed17cecc12c0b7c20186c44b68f8e45d41e0a285c2172d01be42b4dc0b3c539.png", + "0x025000000000647E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8c8caea70aad08db5368fd93ab324fe3b7d9f6d19c424348b0e9912f70527cc7.png", + "0x025000000000647F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/90cf67e3a0a5e61e71bf89a8b123be706c30b82309ff9c25476cc800debd072c.png", + "0x0250000000006480": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b41954b04153fb35b1f08237f673538ea9b2f46ba9f807a5084b8da7fc236778.png", + "0x0250000000006481": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fde288a2f0f7ee2ae41c1e9c5b08d9fd88416392729f283c8474ed00f2dc4cb1.png", + "0x0250000000006482": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/78a33f8ac23b9f7b0dbe5a5a0f8c9f6cd7435e885230aa8ca6ea326e7292826d.png", + "0x0250000000006483": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5352de2b7740708d8bfd8c93a08bed7640c8fb1982dd657674ccefca8d1f8fbe.png", + "0x0250000000006484": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f23c99ee51b662c8d5eb6a8181877ac64de5539d3d0e1e470cfc3da426c5035d.png", + "0x0250000000006485": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2cd7577786ef5ac9d397f28bde4da1011ea01d55a7fd048ec69d3051979d121b.png", + "0x0250000000006486": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/be7e5b8a0a21e9499fd479ea03866ac9245474e78c562393379b533c84db4188.png", + "0x0250000000006487": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/11ab3b23c9511a6dd2246078d655717e2a26b3e6fe7358ba44925832968cbdd4.png", + "0x0250000000006488": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e8633b55bc38429acca8d599448330d6b72d4fa5f7b7174ab2bf6990e6f7cb90.png", + "0x0250000000006489": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/068aeb8317f81de34f1d4c8b3dab623019138628674b8b403175edba6e668fd7.png", + "0x025000000000648A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c7be79e8ea9c9d1e07b3582263d46b2c954e4a0e3f7b78bf76c1147cf83ae130.png", + "0x025000000000648B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/841e3084a979d53ab254ff47b41394fad44e665d20a452eab6c1c015044c189a.png", + "0x025000000000648C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1e1d6b441650a1a4e539eb71de2336940cd90d8c915a0b4b051dcf53c72d40f0.png", + "0x025000000000648D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c0468bbd1f5adfcb1ac42b025805c8b7784ec96bde7bb08f2045e159a57f5ed8.png", + "0x025000000000648E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c9aa7a7949be376dbcb1c2d8fe804d1bb062f0180abb3758ce8a7d57ab783e54.png", + "0x0250000000006490": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4a7905da1e84f6c699f2a6ef75e70eaf4e68fdb38152b1290a8cec3bb5b6ad62.png", + "0x0250000000006491": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e83715786844e9bda20d3cb7024bedfedbad2473bc3b4d077003d4fa2e8549d2.png", + "0x0250000000006492": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b632f1f442a43c974a7f0a858db1646c0c526fa7b106e219f9dbda8583b8e169.png", + "0x0250000000006493": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8efcc043adc9c3d2457ce49dfa43df4eb46f5e3c5bae8e642acdbcc76666ba08.png", + "0x0250000000006494": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/85335a3fbf476878f534270b8c219782a2c6f2ea7a7be58f63ddba2356be0e3e.png", + "0x0250000000006495": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1bde2572174cf9834048ee2e6d5bf3e597173e7629a0cec9fa99dbf27898308a.png", + "0x0250000000006496": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8083c1594fb9c5a8bee7b50bb36925aad9e1d2011f7af861c24d8b195e4e3037.png", + "0x0250000000006497": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f759d8cd06a72296c80d33c32ed359652fc44677ac242c039f8e3b27b34d435c.png", + "0x0250000000006498": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1028b5c87e11c9c622a522be8cf98c53adf79ee961323fb096f717536ff1b3b5.png", + "0x0250000000006499": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5e24899e49d2c69ac350651b68cd85acdad8f5ed32536c62e10cdefe0c53d2ae.png", + "0x025000000000649A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e3035015874aa0343bee82c0d4d7db85761fdf80eab91e971badf9615ea6e323.png", + "0x025000000000649B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/53bd3c42ef115d79ade81d444c37564da2857500248971bd4003728250bae44d.png", + "0x025000000000649C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/846e9ac976065d12feeb6a2a646eefeeb2bfc0263e3b4727ebe21deba8b03281.png", + "0x025000000000649D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/616d314640b83e79fe5f81d0032079c0ce98a93f18a014cdf941de0c0e027d47.png", + "0x025000000000649E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/75f450aac6f14be2bf0d2b95256a08d354cad5112fdbd0c84e498e0498aad0fa.png", + "0x025000000000649F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/23fed34f41b36240c78cbb296bc7cf3c8ce8a99855c83ca39517c340c5cd11c0.png", + "0x02500000000064A0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/371f6b900d20923cf0e5e289067ebf3836ae137d57c9413295ee6a32b349463b.png", + "0x02500000000064A1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7289c070829f9987941f7a3f367391e93e4b7fa6edc184dacf0b77860191411f.png", + "0x02500000000064DD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2206f067d6a2e0c1a3ab5ab2f65f570d1e0bf125646929ffc89c45d690fc7423.png", + "0x02500000000064DE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4482c75fde51bd76d449aba2dae517f37b1bab0491fe8fa74df94d93e7a9cb9f.png", + "0x02500000000064DF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/809692a85018d75a97e00a702510a155e187f2e533143eca64bacca750c296af.png", + "0x02500000000064E0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c6ff6baf547d7b59e092e070a6e605f75797145fa99c513c6ef7102b06d27eb6.png", + "0x02500000000064E1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/31cb9d07de738453a5d479677cb0f153a526aa9364ed04cc1a2e638585b42845.png", + "0x02500000000064E2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c777a39c3ab861a3bfa6629f58950ed115f8fede37021025f7fa9fd7bc9a71da.png", + "0x02500000000064E3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2f7c28dd6d42501c497c5b6c56fc143b76dc36cdd49be6a68b184e58aedbfe65.png", + "0x02500000000064E4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5157289407539b3001ddea9a2e759d80ada2f0c8fffa25f8b9cae1f826d68b25.png", + "0x02500000000064E5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/051c5b8cb9736c54e49e47855dd5ded175bbfcfc7e899067841d70ef5d968cab.png", + "0x02500000000064E6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/21f672c64a2e14a0e95fe46df64d3e3e9e956f07c169e3026638130c01e81452.png", + "0x02500000000064E7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6ee83c42cb9d773c783ecffb80dd3c435657ce51022c9fc66b40af2d85dadb3f.png", + "0x02500000000064E8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/41c6386c88c48bd21ab711af6266157aa38e43e59ee1abe2514412c248c1cfaf.png", + "0x02500000000064EA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c6b17fb14189b6fabbf86eb507fc5a39d3952a44ca65d530d7c1df0fa83d4569.png", + "0x02500000000064EB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5b8a328ca98de39c0fc43f44c785f5fbc839d5482556594dfd42eb3f680954a6.png", + "0x02500000000064EC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/68b428a2240bc254f52b053df6eb24e13e5321480191a123362516457fc318ae.png", + "0x02500000000064ED": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c24e652f2e42857438b07b937f9511307ce38fdbbffeb68958d801bc62426233.png", + "0x02500000000064EE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ea21556bf0182f0f821e00ad9348baf6e1ca3315cf9597cd2ab6b1c184fff378.png", + "0x02500000000064EF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/89d16108275605aabd857c0d6144e3c27c6d9abd75f977730ab2da6f396e6c57.png", + "0x02500000000064F8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7a3a26f3f5238620db89613a5dc33a9e87cc46129a15b4e5cd9b43b71fa3848b.png", + "0x02500000000064F9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7e7790d0c19a7660ecafe30241fda42d320f0562a9b83bbc717b6d5ef429dc1b.png", + "0x02500000000064FA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3ec9b3f6fc78dadce00846072c26bb7863b1caaf8bef1f4e45477f285bcc1fc1.png", + "0x02500000000064FB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/76c9eb5b8d475622403c318043436d370dcadad77ad799fad87b036f788f9ece.png", + "0x02500000000064FC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8fd6e6d00885a58339b0b5770991836327ebf50538326156f36ea0f367c459b5.png", + "0x02500000000064FD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8619e5f0deaf05c95f749577c6074bc98bf627014c8f9ee683668c13a13e2ee3.png", + "0x02500000000064FE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/108bd4517c4b0b267c6cce89953c39ef364ba0de2e010df8f10d1f2c76f1cb1f.png", + "0x02500000000064FF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/63434690a2d77f8adb3716a03e09857d26454c29a50b0290dcdd185512ae3a9a.png", + "0x0250000000006500": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f81124a4d3c85a21f69aec5f96265a2a535859e4693a9b8b836e364e9ca4f11f.png", + "0x0250000000006501": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d212b51541406d37b4ca0437f533d62cb7c3cf93d29cee80750fe454853552d8.png", + "0x0250000000006502": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/de89373a8677a6b952adadc9d2c8ac9f26fec1e75b564d4ea5cbf1d01255883b.png", + "0x0250000000006503": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/88bfd9f4240db2852ef282c7188ff53167fe480050f09e0072b093c78bbefd1d.png", + "0x0250000000006504": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/67347a8e253d3d89e97b83036c8c3e9b3d5086170d20a0605896260d2e788b55.png", + "0x0250000000006505": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b7bea7a439f0ed4328162ed2154977962a352231b7387a5edc5a462fe2e70310.png", + "0x0250000000006506": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e1c6675c0e2b66dfdb5e928f23c7c5fbef1af45be6e58ff232574cbddf30fde0.png", + "0x0250000000006507": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/53265b4f693e836becfd276d5ebe10fb781f6e1b71ef49aac1eade1caf375fd8.png", + "0x0250000000006508": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d6ee09023d0bc6bd7853d4bf77bb9b7dde979c1776408d925c1effb3f47d6155.png", + "0x0250000000006509": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8a30359a3a75ab12827ab2210c1b14a824c97487dd23618480f918d5be890ae6.png", + "0x025000000000650C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a158eec44723e4ab183e8c005f45193b39ed2a8b267818b52ec8d06d293933b6.png", + "0x025000000000650D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/521c8b3b869aa0d791aca765deb8cfe47fa0c9c4e9a8ec51e35f194fc9b44fea.png", + "0x025000000000650E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d6e9ccf32c2b2523fadaec03d1eb6a837d3083103ef443497c1281620a786b1f.png", + "0x025000000000650F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0814a9c46e246a8426f19fe94f965536dcd1234df79e77453a8894dff4aec6de.png", + "0x0250000000006510": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b41e365a762e1960ef9ae75e410db1f8dafe3bb8de7804ec1be0c411ce51efad.png", + "0x0250000000006511": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/639e732abfbac651a54e953a28d99305674ccbf9ba71bb02e8855e1f0fbc9fb4.png", + "0x0250000000006512": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1da5e73aabab6b1e488f6146aa2405c5e3431e76c8cc9f50e417c22c706f01fd.png", + "0x0250000000006513": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1bfe6d9893cf2c8d44bf9badc01fae0784d7438120c108ba27abffae0429418a.png", + "0x0250000000006514": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c2cc1f63a77ebcd9f76e160143f0a860f244af0a4196fd34c8837757434476fd.png", + "0x0250000000006515": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/16a177c3af1ed3098565c1678ed76c471c2a643a68aebab9aaca9708bbba96fe.png", + "0x0250000000006516": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9104d8771526b8172d95b439bf44d7211fe1e7c49f16820494b9ad6ad07bafba.png", + "0x0250000000006517": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/819e7dbdd5e9550b618059310a259cc8fafed3b79ec7e708823b7a4d00bb089c.png", + "0x025000000000652B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/395e3ba5b75bb6dbb4b0db021b33aed1f59c103b6240286295862af30a3607ba.png", + "0x025000000000652C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/34701d020782e73e72699742826d0899f866b22d7ccc7415851c70b6977faf08.png", + "0x025000000000652D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f6af01a4efef1d03149cacb87d00570f2b8d218c6e0e7ac6d6e59ed41c894de0.png", + "0x025000000000652E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/297b78141b6e4cd5b15ca4c7976c1f9bc4e85a0478a2d96effed3e35869b18f7.png", + "0x025000000000652F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2218ad31a9dc3553b2c7b665f19c3ef1265d4b97e86b40adb66c24451acfbf27.png", + "0x0250000000006530": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/21166d9a73e5f49d3ec2a560c8f0235c71e6fccd7295fd15575f8cf962075ab1.png", + "0x0250000000006574": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/bbfd658fe7915bf5effb31b0ce7ac097865c9899d87afd9ee24a91350cf12dd4.png", + "0x0250000000006575": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/feedf6a5e9b6cec2d11876b23b9bfb525964d159513cab391949f16ec45759c4.png", + "0x0250000000006576": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/636f3ad6532fcf627ceee7bd50848a5de8c43fcf2279fbd3037f79cb75297acc.png", + "0x0250000000006619": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/15b6f2f4b55d1417cd52c856d0bfb7cbd6950a4c901c6cd4abd3e51e22f0a5f7.png", + "0x025000000000661A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e14af1aecccd1a1465ad9e66105169a81c3ba823eeef23d1848397490cf1d770.png", + "0x025000000000661B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0ede1968a72c63384c69edc9212f349b31025e108314ee88b2431a6239df4f91.png", + "0x025000000000661C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2c43dd91ae67e254258886e4f18063152378806db03b5bc845f7c05cc09c7555.png", + "0x025000000000661D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0583376e56ea18edb9ded9474ae6993a0f22a83e7334faee5550373b057d6b4a.png", + "0x02500000000066A4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b785f644563cbc919be971811b6b520644113b5924eaf72a46801cf7cdb3aa36.png", + "0x02500000000066A5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e28fae7391294d0d376f5a7fa3b73b0c832d5499935f288317464001744bfc37.png", + "0x0250000000006738": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a1f3b693d48c532b026530c5b0a8cd67b5d852250a0772d2b7467b934f819341.png", + "0x0250000000006203": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/028717c3577c9c3f2a407de6b4de4da6f5f4739f6b9e76651a604c63a2634cb3.png", + "0x0250000000006204": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e36fc36092926b0ae55ab5285c5233277b7d45bd561f9c43886c02dfd92f8e83.png", + "0x0250000000006205": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2b96b01b70a4d6923b862ac39d4e5fa3b8cf206fc84b6ea433a4d9184f3c3f42.png", + "0x0250000000006206": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0b90607915c22f2d9ea481e3065c48b5b3c58a377f9adec8f3f600b8970f5883.png", + "0x0250000000006207": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/510471bdec18d85b860a7721f5265a3ef936cf2efab70529af3663cc018ed914.png", + "0x0250000000006208": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1eb4ab760fd28d1471a89f3e71e4908727c027b5ba14dff1fdac5cf110f8e15a.png", + "0x0250000000006209": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8138175c3a8d5150998a84f7f879eef5cf7a0eae2c7a2f3b177279c81ead94ac.png", + "0x025000000000620A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/cb7176b9be343acd945293aacef8fd93b521bcf235a4eae561ed259b6474950f.png", + "0x025000000000620B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/349aa1a47cbc104c1cfd679b38b9c55b2e7f2afdf91cbfd44c4e67ae0851ad94.png", + "0x025000000000620C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8d1bd2e2302107f847046a97bd2fd3915698e6ae907ef818964f7b1aeb73002b.png", + "0x025000000000620D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8cc1da73fdad4010f5371719e3c7cca242f06ceeef4de79de04ea585ed7ccbfa.png", + "0x0250000000006212": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/221a57e3f583cdd681809414844c49c262d4f512f27af63ed23ffbdc87defeef.png", + "0x0250000000006213": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/55ef7286229767e75b7ef73fff9a3de432f812a260a8a089cf1d7de6d7caaeb5.png", + "0x0250000000006214": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8eeef8f358616567996bbef29c69b047c82960e5b523c1cc551b80492d068910.png", + "0x0250000000006285": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ebad844038b8e201e60e3dec53ae830367d37bf72a4322e57aaf6c4fc6779f2c.png", + "0x0250000000005FD0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a9d5c03b23c80668e913fe50b854f30f9933380885e38175a2d1441c131082fc.png", + "0x0250000000005FD1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/57cebfe78fe3522e97175d8a359b82649afbad9935106e6f6686bbd25c636fa1.png", + "0x0250000000005FD2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7e94f0a25a19a647e8d953f7fdbe6d93761364c819e72e80f42ce9ca320b6d85.png", + "0x0250000000005FD3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/93f34451ed9f6d09cba51cc0f2f612a29379a64725d425f1774c5bf7118debd0.png", + "0x0250000000005FD4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1df212179ec09a2be11912966d74e70e4e76e741b74f567ed2095c9cf9c08945.png", + "0x025000000000600D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/59fd62bca585b43d480d8c4868f40309e1eda3d1a73955f1396847d9d562aad8.png", + "0x025000000000600E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b9167d71ae85d70fd94712eec75337364e04b34e486854e7e79255d25f09b90b.png", + "0x025000000000600F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/59d974908641eff9ad432a8a97a408d424e65a4dbab48867e29dea4a7ff613c9.png", + "0x0250000000006010": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/66d7e309043e0ab6ea96da401680e4d9162ccf407b68e89f561fcbb565b9cf29.png", + "0x0250000000006011": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/85a95a934f08083e2545a265c2e5daf229da157f6641c5cfd23fdd53c58a73ea.png", + "0x0250000000006023": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f802f039ab3c955d9456b28cf2b4efc38e4049f82b9b0959676ee0d5ede3263a.png", + "0x0250000000006024": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/118d3d6cc4ae0d57fbc9b5122952a883b748a018f0e7e3e454be6c6006bcfc4b.png", + "0x0250000000006026": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c55afa12a3945816f30210dbe7d13b41564a646ae5eb11e74bc6877ff2796e97.png", + "0x0250000000006027": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/66d450c3e7ef7c1e32b9ac386936480ba0254a8cb92c35cb70fde79647d7b58f.png", + "0x0250000000006037": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x0250000000006039": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x025000000000603A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x025000000000603B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x025000000000603C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x025000000000603D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x025000000000603E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x025000000000603F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x0250000000006040": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x0250000000006041": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x0250000000006042": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x0250000000006043": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x0250000000006044": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x0250000000006045": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x02500000000060B9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/982bbd70117bfed8550d6b5d6b250f537fa0c4f919d398c2f0b264a9f883a986.png", + "0x02500000000060BA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x02500000000060BB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x02500000000060BC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x02500000000060BD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x02500000000060BE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x02500000000060BF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x02500000000060C0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x02500000000060C1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x02500000000060C2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x02500000000060C3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png", + "0x0250000000005823": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5f8d0601741855c5b3a243b22b62296a7af48d7c11e20e7ecb315c2cc451fca6.png", + "0x0250000000005824": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/98c45a9004f52b03baf5857e05872e3eb5d967d9c2f65a7395e82d741560e0f9.png", + "0x0250000000005825": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9c536fe43e6f8e738b57aac417832d7387f8783f04541f501b60208f4cee31c9.png", + "0x0250000000005826": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/30fe8830dd2510798d214d09737d26e0577b1763087c174e40b2595114db0d56.png", + "0x0250000000005DAA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c367d5ab366a6f10df31aa9ff5671ba5d612c3e2ab10e67aa9a0aec97e7dc779.png", + "0x0250000000005DAB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fa6994c31bba175a98562a811e80c0fe82a2dbf984b54e08e1f634b1af57bb48.png", + "0x0250000000005DC6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/195c7b760d996c642db7f1af3b984434f95cda7954fa823e8ae11162f5d13bba.png", + "0x0250000000005DC7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ce14a33479795ecd412185a565c1f4a37a46b319e635ae4e8f18bfdc347524d9.png", + "0x0250000000005DC8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8bc4a2df73d0bd7961e77c4b7b7abeb08c542b753c91d50d6fe968f33e8fd2c2.png", + "0x0250000000005DC9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3ae479fed2bd4d41976f3fac1f703a6e367e21fa344373ddef8104dcfa292b55.png", + "0x0250000000005DCA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/88e2db8c0ee8722379583a617c3e4de5cc48694dd2f1f0a560b707616d05b9cf.png", + "0x0250000000005DEA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8762d063cbfd98009f97d1dcde69bf4f736fbf7208bdad0721b852cdd39e1d02.png", + "0x0250000000005DEB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0e768537957840cf26c4ccd535e2818315723c64e4b07609e7211f899b4562a0.png", + "0x0250000000005DEC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4f6a69cefc191f41aaef7dbd477c2db79dce53ed876e075d267909a89ab15e22.png", + "0x0250000000005DED": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/547afad62e63b9c6147741b1450cea6a97983ca3bc7b53514561ea98973818b0.png", + "0x0250000000005E07": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/57dbcb94de4769ddf9c460368184ebdad13f8be9accb914be491a86adaffbb4a.png", + "0x02500000000056CB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b5cd06241b5aac52bac2f670cf10c685cadac9a65e591c7aea820ac6bd062088.png", + "0x02500000000056CC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f85b3b2e3ad38f84fe3fac81106618dc88666524da992c5212bd067f83033795.png", + "0x02500000000056CD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c748b7b59801b79d726630c9af1a2713e45370ccff9b97b9205ad0cc90c0de19.png", + "0x02500000000056EA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/52ee742d4e2fc734e3cd7fdb74b0eac64bcdf26d58372a503c712839595802c5.png", + "0x02500000000056EC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/065707c2cb340a13daa3171c0e96ce04d967def7800c792ebce177c0287df0a9.png", + "0x02500000000056ED": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e6b234d2a7a71ba9107460d2ea7e902363200dcd0e4f4223a9867e6ce5d590ac.png", + "0x02500000000056EE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2238c652dbc8b3983c49023eb5acd8a17baad5711f065bb1af81dfb96b71b42e.png", + "0x02500000000056EF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7a54fcb32ee00f40e0469841569c90bfc3d5bcb471eca9f615aefe87c658a7ec.png", + "0x0250000000005709": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/49002ea76f715ae62995559fa3ce5af44d86853b4efd8bb3c8c448689af4e00c.png", + "0x025000000000570A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1ea3101b8e26b5d5f28767c281674e82f9a3a75f507f4e8892fcfd258d3cdc97.png", + "0x025000000000570B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1317d51bb2b62fc34517f9c59c3ce598e6cf16f41dfe72a9d2c540263836f64f.png", + "0x025000000000570C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/844b15a9cb276864cddffb38595ebe9f116b69138ce3c8b9939055e2c82f9406.png", + "0x025000000000570D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/46470e605be6a0d40d6ec7108958a4c1ec26367ae2bcec750d2d90e1ada6c503.png", + "0x0250000000005714": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/55d8c21e9d8b14942c26c4028059b6cd3b4e2fea40a139821ecee73a0005126f.png", + "0x0250000000005727": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/544fe5f155a96a7ce52a84e285f418d76787b4e60e98bbc0bc5004bdf014e058.png", + "0x02500000000057D0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ebc71899e82c6a1388a165b487aee1dd6964304d22509ed0d1540a972ac9ed5d.png", + "0x025000000000565E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5b00ed9521710507a6a51117568e587fc141b6c3452b5a36af0ead283d815e76.png", + "0x025000000000565D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/44da73a623f841d7ba13e96aad9dde7b621e7d508c2646a6b43d406a11f5f837.png", + "0x025000000000550E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3e51eebc3e8401b28049e28eeb5d65ce57091c405698336047838267fd6b5467.png", + "0x0250000000005510": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/757219956129146d84617a7e713dfca1bc33ea27cf6c73df60a33d02a147edc1.png", + "0x025000000000552A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/280790a450f2e1540f62c855f0f4aebf14e4278723c9d0442415ce2b574ed2eb.png", + "0x025000000000550F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a189a7af084c84f501fae1f3c28b2c70849bb1304af362935a8720df4ecf1a2e.png", + "0x025000000000552E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/41a6632d0fb373cfb60a2b634fcc53edabf5d01bde0ef78612136896cc1630f2.png", + "0x025000000000552F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d67ea476045583268e09652f6a4d167dfac23851b70e5111e371ad7ffe19effa.png", + "0x0250000000005530": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f7009fdeee3c5c0fb83823550b0871a66e8f1b9439c8a3958c8280402e4006c0.png", + "0x0250000000005531": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7f5b075ecc28b171950ee902ae3829152d444fec24756984334a86399c9e1ef4.png", + "0x0250000000005532": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9d8fcb22184328e21ab99db87f105ed42f5f66d9e4db3bae92af08ecb6f9e067.png", + "0x0250000000005533": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/568056f3391d42b23531c5216e6f5e6636c523f8e697afc1dc93a62aab958d25.png", + "0x0250000000005534": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1891d9f7dd868d5c36271e6292f8f19a868c24728b0f67f36a287b7988492071.png", + "0x0250000000005644": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/174d5ebf6ba3213aa92d109dc66f5a4e225fc817c8eb7cc9cf25dfff0ff8033f.png", + "0x02500000000054D9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4565e481953f18de9150e966a5bfd692d91df07d038da7d773acdc94030205a7.png" + }, + "portrait": { + "0x0250000000006909": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e99aa7c94f5627040fbf80cc18909127b5b884a79d336243fe2b03d3d08cb877.png", + "0x025000000000690A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2b81e7077e642f064b3c5ef7c27d27e6fb9e132a9bca87613d3a9d48b216f5b1.png", + "0x025000000000690B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/822b61dd47053f0dd11ee8f49ff2a51e2b7a116076c906fdca438bdb9ab50d5b.png", + "0x025000000000690C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a4c87e1494f11f0ec5b4fcc5f983204f61bc3023ce3883e397cfa7492d24486e.png", + "0x025000000000690D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/483b7ddc33b60939bf623774a1e822e61da9fec81d36bdb2c609d4315b2c4dba.png", + "0x025000000000690E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/cf19df3e13c2d1bdc3e683ebc4e4052ac24f91a3d9acc3d7c3ab68be2a0a6225.png", + "0x025000000000690F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/53d8d42903a86c9b6f22dfff601e25f7b41b0086ac02acfbdf50146416e0d30a.png", + "0x0250000000006910": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9278f9dd30c1043a8278eaf77119307e29a45842fd12f5b2ae5e2b41bde0b661.png", + "0x0250000000006911": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9bedf198d80f2238e9d6f2560c64df531cd923fec15f073c63affd6ee12f127c.png", + "0x0250000000006912": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8bae59e87f99e27dc3a7ed5ad8e2898ed45f90680daac7e1e2bc0b4d4deb500f.png", + "0x0250000000006913": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2f0195498db745fde1a87118c335f7d273a0d12cabd2857b20b9145deefa30ac.png", + "0x0250000000006915": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ee852b846a24d14ec7db287226f23add92b74fedd956d08646e737449629897f.png", + "0x0250000000006916": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ed0c13f0bf83ac1dcc4b604336f125b9331d50ddbefcd53f144cb67d581fc5cf.png", + "0x0250000000006917": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/25cc35fcc33dc5af09e139b261316dd33abb1bdc1d8e065f4e3ae5e3d20084d6.png", + "0x0250000000006918": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/122356776ec5ce952d83a7b4e81935c8095c0d442b888a77b078d3984e8bfc3f.png", + "0x025000000000691A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3a0490a07598ff1252f7e4f24b886e15fde081fcdda6a8bab05ed0b4afd1765c.png", + "0x025000000000691B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/17fe71fb5bef1118574e04ffc67d2fd4b10eda4fded8b38c69edfa457c950e5b.png", + "0x025000000000691C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/812b514b7ca7b29a6e466a9f018a849c6b61afa4f4b963ba67635812386dd046.png", + "0x025000000000691D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/74ba8ec0249ec4aece214136305dab99e42451e6b1065ad212c1b83613f9e7c4.png", + "0x025000000000691E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/671eb685584d021c56ab729479565b563135f03e5759c31bc956e0c1eb1282e2.png", + "0x025000000000691F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0b609af4e3107247037ea5f65cb97671cfda109096e1b0479f178f7504fcaeb2.png", + "0x025000000000697A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/da0750d04932fc52a2e81963f1b369183db839ad0101340d2e87806c31a69552.png", + "0x02500000000069A1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/accc0cae71416a44a764723abfddc17056aeaec4052888997f92eafd83eb2b73.png", + "0x02500000000069A2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/48d2b6f29b4b4df781fe83c17409de87919d9e706d547d2b4b123b542e5399be.png", + "0x02500000000069A5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/de4de3ca61eb9068b1d38479c331d5dd9c9bbfd4737284c8ff902cfb0bebe98e.png", + "0x02500000000069A6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/22f6ba1c0518e03f74842edb8eec9aad3e9c33ae55923b2513b21b301ecb61b5.png", + "0x02500000000069A7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/505cb5e1f1d89e5df2937c1eead62d0121d6709b6367bf72068a232c9291bccd.png", + "0x02500000000069BF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f535c4211624caf892d9d8fcfe6cc8dff1cddedad1572ab05b33a3a7c0671929.png", + "0x02500000000069EF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/734bd7c09ab5b12c5c2a4fafec04f7f3ade25a597f6c8b49a38aacd5928b5281.png", + "0x0250000000006621": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4cfa7e08b85686a1df4eba52fb41eee5d7411a86578e4781829844c63c0b95a5.png", + "0x0250000000006636": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ac86ca36ab993dee3528d0238de6b74a22cc196cb1bdd49be9d1ab8f48236be0.png", + "0x0250000000006637": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4d0b32cb881e9ae2d523c786b4d160287a824ae8b48be28f3315debabfc67d40.png", + "0x0250000000006638": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/11aba1108389a47c047ed42dcb6205e86ffb03edf6b4fd93f06db793219de8c7.png", + "0x0250000000006639": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f472832fb88eb37c9ecc7c43ac75e71c4e9f9ad6a91494336a535debd0ac13b4.png", + "0x025000000000663A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1d1a553d8cf8e009aaef2a0ec4bda5292e661b66054c717c164eef9d8041eaaa.png", + "0x025000000000663B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0d63e6095fe6ab84a95cfafa29f605d00c9f9a013e08baedb0af03883dff8616.png", + "0x025000000000663C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/25c18ccc6d41a5de4c05cb08f217bca79a5eb72c9d421125a8fdfcabed7ec35c.png", + "0x025000000000663D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ac3e170be5a6958e77366b91dcdf552c3f438d1a3104e7be3d97146a981d635c.png", + "0x025000000000663E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b19b5d2e09e67d032c2fd627362a3d56d8fa7eb1ecc8368911c32a6ed4c8cd12.png", + "0x0250000000006640": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9a9ce9a5d7496f49b1d238545a1e212840f45e487e66645d97308a4ef66e4252.png", + "0x0250000000006703": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2e253efafc243e2e88d758df0b1425d69436239915cad3b36c21919eb4a49ae7.png", + "0x0250000000006704": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/55aefbddc59aa12b1fd742ed0684d5d6c5567f61cd3cd63e29762629ebb20769.png", + "0x0250000000006705": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3caa00eb9b05d0f722aa780725e4d606c2dd2d41f872ea87ccc2e9251613c403.png", + "0x0250000000006706": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7541670e7c9b3d9691f1bdf70da5cdd96f213201de315b22807b4a13606b5dcd.png", + "0x0250000000006707": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e3a07d077e62e0ba65b5aae64a3c642511cf077ca3564d347e54fbe0d1c7268c.png", + "0x025000000000676A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c563df609e603dd140e486b4260841d00532464f2b690c7c81f3789ff0551771.png", + "0x0250000000006780": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b675f991fd0e4c753d991d880da4bb4b3655c0feb88294a9f8a236140e803912.png", + "0x0250000000006859": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/daca014813e7147b1ec2ce6b709573d38161c884d329e28ead97d1810242ddf1.png", + "0x025000000000685A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/680fc637535c3a6cf88fe6240e76b5b0b67e6d9b9a8f22d6efca4646e0cab4b1.png", + "0x025000000000685B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/04f3752c59a03846da8893d35bb0c713b803b36704ac138e889bd8698aedb9e1.png", + "0x025000000000685C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2fc9a5cdd42a46cc41cc179b6252f08711e2c3d1f934deb785eed835c274059e.png", + "0x025000000000685D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2961d3289da0b8300a9721acb14ebfe8decd0330dcadc063aa589c9cc728c557.png", + "0x025000000000685E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6efeab0fa2bea38453fb3fa7c81bce9a41d15888a660d1c64a3e0b782b21c71a.png", + "0x025000000000685F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e6733668618777cb1a9765a9258a2506e00108dd4afaae4d2554c418d90ea715.png", + "0x0250000000006860": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/27afae0544ae71d105e7b537bea210a259b91cecc91aeed3c801f8ba65948247.png", + "0x0250000000006861": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7a12abee5757a8b9cbe8d11fb9310b031705a5d25e4ff814b662f5232dcdeb5d.png", + "0x0250000000006862": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f84d5c7c3b66868ea4f90a906ba47fec63b6851fdcacd30863666f72ca10a22a.png", + "0x0250000000006863": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/89c3e64ad542878f7b9bd1ec8ecdbf6ebcea11b3974953913649965d45780c22.png", + "0x0250000000006864": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9d509a84804ed6e05f9faba37ea77d7247b507e759fc702b749626de5a0b5de7.png", + "0x0250000000006865": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/bbb854cc4dfb3b4f9de6cb3c325018e30eb8310ac7b0bd252a8c887f0a0f415c.png", + "0x0250000000006866": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/26200a20e03db8e57d467002f2cd75f2b4599842150216f338f38adb831fc69d.png", + "0x0250000000006867": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0907a8f1d612dde3389923aa1021bcf50bf754969147b52e474ad9f7ac4c843a.png", + "0x0250000000006868": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/19699418a5797d3db81a293e831247c0291941456908f53ed81be6a714d109dc.png", + "0x0250000000006869": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b838d3dbd62c3848c95e70e448fbba35cd1919fc1ebcc57462907e9f9593c1da.png", + "0x025000000000686A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4e7f0bf2898115d1f1c939e92b70703b74a77b2232301a665a5d523a69c39100.png", + "0x025000000000686B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a2fc9c207270d8969808634eca0b4965fa047078d02d57aa5bd54064d11b90b3.png", + "0x025000000000686C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8fe696d7e485378347849d99924f745d6bae60a2d68abcee433e8f858b87fa74.png", + "0x025000000000686D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5d5f4b6e80ed5c63e50c006c7e05420177e35471ddb2b7e308aeb2be257ef690.png", + "0x025000000000686E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/730bd887c7892398ea40c8449a3022d9ecf3eb5f0d52c741a7fbe44ba8412e87.png", + "0x025000000000686F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6aa8f0db6bfb9f94e4c3475a8f1be0f2eea9ff764b9b770e53cd18f853f54197.png", + "0x0250000000006870": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/942814f08733dd67ec0d68bba12a72b5ec72bffe233388c65e1b7f2ff1c5f9b4.png", + "0x0250000000006871": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/606426c9f1be8c137138817b3ff9266adaa74e8fd423413e11984111bfd4b01d.png", + "0x0250000000006872": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/294bf102eee13f8bc219884faaac1313e45dd85afee2701e24f482c8fd7acc05.png", + "0x0250000000006873": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0a86a347e8860621ece2fe22e03f84644dd214550304b367830303dc63ef5ee6.png", + "0x0250000000006874": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4fe670873535db32ef15f048858f2f1df1c2c6997537b11402bb848fb9ca9709.png", + "0x0250000000006875": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ee4dac5f21a0cc2717251d08e9e18a5d0351d37d3d3685336c649b4ecb030364.png", + "0x0250000000006876": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e32ad691e22f582bc6d3045a140cbd5702c648df3b40d9d24fcfe753efae5b83.png", + "0x0250000000006877": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2415a69c58889e2a2ee2994984fe9251a4d8ad64352f9dde9a8d1e3d6bba18f2.png", + "0x0250000000006878": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7225a56b0d2470367de5ebae523797a9d4768183b41e9664bfc238781997971a.png", + "0x0250000000006879": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7246c05e5ba09af4a8ad1fff67cd4637b9f4d3f43225d7ba47c65d8aaf349d1a.png", + "0x025000000000687A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3122678b1a2b5cd888672b4fe3dc24a851a4ab800294586b538980403ff04b7f.png", + "0x025000000000687B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fe9ddae6213400d4d04b7d53ff765a59755ba7c8e002897c05f8c9d08435bcbf.png", + "0x025000000000687C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a4d866dc5d9dd1285ef25d66f0b79591d0673fd39c486fc76bc98d83a1c3e7f4.png", + "0x025000000000687D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/724e20643b3c26b6d2cef37ecb9763a48f5ed4fe0485f64b5f413926a9412d43.png", + "0x025000000000687F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/adc40823f2bc48d1853f9e87e528966e86543fe32af7a5a10b71f1b1645c5881.png", + "0x0250000000006880": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9af5454d7c5b6cbdadda5f5ffd7c0d79abc20eb760558ee38cdf1d1f17a84576.png", + "0x0250000000006882": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/25b38eeafca8915cb5c2858a90c9f44fed32c7be20cd23a08b55d14a48972656.png", + "0x0250000000006883": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d86f9dced80cf67a5b2ab9840c70b4c9f2265764d6de9c3b494454993fa2dfd9.png", + "0x0250000000006884": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c000f56823d5e1d8d929efe7f8e91fc2b768f4d00912ec68e5b67589bdace806.png", + "0x025000000000688A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2cd513be3df6473e423df0748671f959033697fb290828bbb9e614349672f5ce.png", + "0x02500000000068A1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ce5df939eb13fe7b0bf650109eb84b1a6771aed7d7d7d4294f315787fce1cbbe.png", + "0x02500000000068A2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8300698bcd720c0276f78c9401b67498e1dd519455410f47d15d6f35e5dafaf7.png", + "0x02500000000068A3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/381c29f4d72577a3b30edbdd3124ce022001fca6251ec0cf02d84cdcd0062c1f.png", + "0x02500000000068A4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/31b46e9f1758ad01abeaacf02becd90a476040cc18257d629f0502a0d4327c67.png", + "0x02500000000068A5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f380d61e93bbf2b45fe55886c85a254954a438028785609d4672b46f97641f60.png", + "0x02500000000068D2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/cf45d14bb23c81ed0e015d46461e71706ab9c7202425da7ce77d4d5eb2903cbe.png", + "0x02500000000068D3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a8b4645636c1f2279e0b0f946dba543ab710ff32a82aeecdee7bc732bed93b0f.png", + "0x0250000000005FC4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6605443073312f79ef0f15e0b563ca763917049d05db81b0dfe4980fb6797935.png", + "0x02500000000061DF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2c97d9274e2284af20ecd7f3ef725ac3c591c6729a7e3e950d739f6c04754198.png", + "0x02500000000062BF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/92b8b40bc4a6a4691d72141f7493fdfe98f39d626cbab94a26185c3e5b812809.png", + "0x02500000000062C7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e490fd4c640e2981371147a6b2227e61e330699d65c4a2a05badd0c680fc8071.png", + "0x02500000000064B5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3b2ffcc36ffd2130c1b6a726d064359979b6947d72b584a8235cfdf2ad2e6279.png", + "0x02500000000064B6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6f7e912134793750a05fcfe54af776213d71e9a384d175d2a57f87fd6f948fd3.png", + "0x02500000000064B7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b561c1d54757512bebf0e4d3831deb03bcce664a91c345c6ea76b6411cc1330b.png", + "0x02500000000064B8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c6bcf72c1e2987e02b06c1fdd0a17ab6ab6522f4620edfdccf91b3751a2b4e5f.png", + "0x02500000000064B9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3ab13da8c770275057a70c236805448ca061fc7411a291340a78542e44772aed.png", + "0x02500000000064BA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5a08159b3fcf3ab955ba01255e1201a556cf63af8557c9e9d059d744d72ea7e9.png", + "0x02500000000064BB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5b94245607a0b474a6f61de3c2a597f4e191f2f654987fa970f9a61a455dcbd0.png", + "0x02500000000064BC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/86515a27666d8abad7fd30724ffa1174da6b0979dc99f5460dfe8358e2e8e175.png", + "0x02500000000064BD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/cf485bca9e6d49b275192f7d61ee31e0dbeaecd268798a59f6b32da20c30ca0c.png", + "0x02500000000064BE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7a16c30d60df63c5c7d545e89f73a218761c8d1dfbb9dc4f681663fb4bb7a940.png", + "0x02500000000064BF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/03a9efa44b41a1058cf73f842d6e1992733597ed662e7e360b0f0c70e5c6dc99.png", + "0x02500000000064C0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c14ae70cfc09d41f7cfe424613ebdec3af7021d6643cb4509d7687f9144a73f5.png", + "0x02500000000064C1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b907381cb9ea8927c04405a720422a6ad70ac3dd271160aba40448a972e684b7.png", + "0x02500000000064C2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b32a1e36093787115eb52d626f8dc866889ff9f8d4bcdfe3f532e431403919af.png", + "0x02500000000064C3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5f5bc74374c86b164d82caff1359b384fcf2b4a0e0b15a533bf26806e74214e4.png", + "0x0250000000006535": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/55d66f91124ef03e28d7560184f92f0d3c57f100cdecdcb9b3f26ff7d8bdd656.png", + "0x0250000000006537": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/55fcbfdc7bbaaf34c543900c87bd14ca0470de5cb33c4dbd9c64d5134705dcbf.png", + "0x0250000000006538": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/93516aaaa83146516809a259e4bbf3373726eda3b5adbfda0c02c777ab600df6.png", + "0x0250000000006539": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9d7cdbafb96850aa05d2bbcde9adbd1df4e4d86f6904766e1f936edf24f4837a.png", + "0x025000000000653A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4fcc5903a60264344ae3c62a44b76d56c40e40511e108b8510a9a3a19ce9ec98.png", + "0x025000000000653B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7ead3422d3b63d42973273ccbacf9610d3c51c3a9250ffc6e993319ffa819cab.png", + "0x025000000000653C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b17315b676537be27975c23a3aa1b6ef1f52f9392af76deca881f28f18b609ee.png", + "0x025000000000653E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0d071b6624d1af4260a2d36c81a3e2eff16099be90b5f74cd1194f0e19524b59.png", + "0x025000000000653F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/556302713a620903b1856694a5503a42b93c4a0bd107330a17a3b4af7134708f.png", + "0x0250000000006540": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/19cf25ed9ff47fd29e8b70e6ea68e7d4694257c6a0faa18ece09448000f0f717.png", + "0x0250000000006577": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3aab87198f36ec2c21dc1e65d12d144b034c717654f7c9b36dfaee5977c4e776.png", + "0x0250000000006614": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/679597dfa95042e35d0605d61e1ccb31d89cde4d3149dbf4bb6ea5df0476e47a.png", + "0x0250000000006615": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f1566ee16ba53198bd3f420746bff8ccb2a9cec59d60f9b1a4d1b106db650c72.png", + "0x0250000000006616": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a151db01bfd3570d4db9061baa476c8621a3c337eb00d5e18ead3025cef4c839.png", + "0x0250000000006617": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/286e20e4468f0e6f9438473c198ad442a6bb95709da8605c926ee04ef7387903.png", + "0x0250000000006618": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/142a30fb747753fb61c3e5fd883a38c856600539b5e2835c9f870cc573553b55.png", + "0x025000000000664C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5cea01c79ae0d9f33e9f1ac2c8b626e55ef9b60c91bd5e0e1b13a84578f56fbf.png", + "0x025000000000664D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/789fd59881bc246f43965f18ba785759a87b3aa112569231ee7c6963c4ff3c21.png", + "0x025000000000664E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/36c42e4e329ed4b582502a8264e1e76ca931d5cf29b4d00f5af7888f3331d501.png", + "0x025000000000664F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4ca50c18c0b4659e763d2f9101175d43a5f6c69c5e042d9d3475448b264aef39.png", + "0x0250000000006650": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d8daaa1a027a9e55cf8a64951cfd85bbf34980b1974645f4496971f1bae21353.png", + "0x0250000000006651": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6e71e611e856e659bb0a36c03262bbdf3b629d5d1dd66ac93ae564a7c4997f90.png", + "0x0250000000006652": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/011bc5c1979f0096035b4654e692a334e2bbb94a805c6b8d46f0fb09fb33d48b.png", + "0x02500000000066A2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6b318d544415c3862c9da332b16d2af7b61ca81f7876e5150d88e4c5f5e3325c.png", + "0x02500000000061DC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/38f74739a097eaa4fc393ab02504c20fe53ebb800fc8f776ed28e05561133645.png", + "0x02500000000061DE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/934795a351c2d0ed24b42c46ae8b2010c26fe61705de42db65e32409d5f796fb.png", + "0x02500000000061E0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/eb650f827e360889a45fe07ce97ca80ac4354dbcf05644984e4f158547d0aa71.png", + "0x02500000000061E1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d5fa69bedc95dbb4d2181c834bbef23737b500444ed8535a902dee946d349f2d.png", + "0x02500000000061E2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ce91fdb740f409f7463d45179ed78dce1481dd8d8aadb77e574082f4ae2111c7.png", + "0x02500000000061E3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/54d9eadf6878c30d4ce51a660cf8d5cc3514d97688a239088dafef94f43701db.png", + "0x02500000000061EF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/aa1a75c4268718f3cd4a83ed44e2eff6d3232061d09ed2bf58084013e53256fd.png", + "0x02500000000061F0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/17cc835f9f7ce8e8316eca215009345a79e5ae012658e2c1d11cdab3380c3d23.png", + "0x02500000000061F2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f720e0244a1132591225dc52b6067fe7d9133075014b874faa679649d44f8b46.png", + "0x02500000000061F3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/767d4b69926d4c347d2be5d447d3cf2727ab28a0cf217d6dbf380e4afe256acb.png", + "0x02500000000061F4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/689c1fbcb8a32902c982dbc945d00e40709c0e6d9b304bf26acfa6ff1e2c179e.png", + "0x02500000000061F5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ddc10d3d22c0b3cd2817270ec973b621961f9e3472c273e2928df375958cb130.png", + "0x02500000000061F6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8dbf35a6ac2a6563d2576c43631b8bf88097da35a6705419297d762c5b88429f.png", + "0x02500000000061F7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d6c8c1ab50d06689a24afdef005fcd47a65dc58d541fa1e067ed6163ca630285.png", + "0x02500000000061F8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/82755dd25689ce1c2ae0aa7b54011dedff6fef1e5e5a589e0b218dfa0b3acc80.png", + "0x02500000000061F9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/873c808f23e05ecbfbe56096923081d96c4a697b85a498b612b4b6c5dcb17331.png", + "0x02500000000061FA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/aeade89a42b165cbeddab8e210fc5cbad276deb6d41e8702f91f1fac5472751e.png", + "0x0250000000006230": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a53db74c3129c504c9f05b51ca114ce3fef2c4b7bfa6f42710da7dec5a2b4920.png", + "0x0250000000006231": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d4de973d4c75e44d4294ad931d7d083a8a5742edc7ed1b8724699252b5bc5ca2.png", + "0x0250000000006232": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/dcfb2ab2cdaf152b548bd4c43a532a30160e3e9c657bdda8869a9dc93804815e.png", + "0x0250000000006283": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/860c2c64138633962dbeba6dbc33e7a0d602d1ed8dfbdce6cae514ce9f572550.png", + "0x025000000000629F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/44034d80d959ddaf4e21ad63d5f8767aa724fcffca3acd5c76233c02691d8c3b.png", + "0x02500000000062A0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/10568a2e167c56f8c8a54a30e788f9e5e1036b54c838a8b6e45836cb09b44dc0.png", + "0x02500000000062A1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6d7f21919c1883994cd4f88d5450492a28c3659e0e576a7c8e4636c0a1a9143f.png", + "0x02500000000062A2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e35644ba7db06c5d81c9f2ffa14599937d6110d497c788ef753a42a807cd2e50.png", + "0x02500000000062B7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e45b6747cc7f2c1a2c0115f881ec7b5f83bfb1525054dcd08e4d02425b91c129.png", + "0x02500000000062B8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7b073206cf20051b034e34a2ee79007f43bac154979c08cadec8fa3540e42036.png", + "0x02500000000062B9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9f58eb292f705d58c0db65f34e624d47a4228e6263135693ef61c1ee9f6d44fa.png", + "0x02500000000062BA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ec61bd7f2c810f21fc5132c2c0b8bca3a9423c506766d06c1c70be3e92bc4d9c.png", + "0x02500000000062BB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c5cb4fb880870d6f8115a8d5a9b9e93a316c58d955df3b01aa90cf58ce404791.png", + "0x02500000000062DC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5daed57e9bcea63e618f828b8d7a5dae7a29705dc1b5eb01b971a38485c9b951.png", + "0x02500000000062DD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0b52aa01fccf1f7ccc524fc8dd800c768586a4523787531d9dee926d88d577b4.png", + "0x0250000000005F73": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d12c88c1a6ac30980519ed8cf7bcf00fccf0811515825232e1d2ffd6b01ef155.png", + "0x0250000000005F74": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/dad14d7862330b1b0a14acf964d5f8789622bf060d8c4d44f3f8211e0ebd9a9e.png", + "0x0250000000005F75": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e5887748e378ff340fa743e4093aa3fac3a5cbb5bb7893ef73f0f12f768c8825.png", + "0x0250000000005F83": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c3090e3a1dccc58f143ff53801bc0cecb139f0eb1278f157d0b5e29db9104bed.png", + "0x0250000000005F84": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c3090e3a1dccc58f143ff53801bc0cecb139f0eb1278f157d0b5e29db9104bed.png", + "0x0250000000005F85": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c3090e3a1dccc58f143ff53801bc0cecb139f0eb1278f157d0b5e29db9104bed.png", + "0x0250000000005F86": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c3090e3a1dccc58f143ff53801bc0cecb139f0eb1278f157d0b5e29db9104bed.png", + "0x0250000000005F87": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c3090e3a1dccc58f143ff53801bc0cecb139f0eb1278f157d0b5e29db9104bed.png", + "0x0250000000005F88": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c3090e3a1dccc58f143ff53801bc0cecb139f0eb1278f157d0b5e29db9104bed.png", + "0x0250000000005F89": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c3090e3a1dccc58f143ff53801bc0cecb139f0eb1278f157d0b5e29db9104bed.png", + "0x0250000000005F8A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c3090e3a1dccc58f143ff53801bc0cecb139f0eb1278f157d0b5e29db9104bed.png", + "0x0250000000005F8B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c3090e3a1dccc58f143ff53801bc0cecb139f0eb1278f157d0b5e29db9104bed.png", + "0x0250000000005F8C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c3090e3a1dccc58f143ff53801bc0cecb139f0eb1278f157d0b5e29db9104bed.png", + "0x0250000000005F8E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c3090e3a1dccc58f143ff53801bc0cecb139f0eb1278f157d0b5e29db9104bed.png", + "0x0250000000005F90": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c3090e3a1dccc58f143ff53801bc0cecb139f0eb1278f157d0b5e29db9104bed.png", + "0x0250000000005F91": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c3090e3a1dccc58f143ff53801bc0cecb139f0eb1278f157d0b5e29db9104bed.png", + "0x0250000000005FFC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/448f7b15548c630725e94338d0ffc783b30004748390b5370470f79c98c55a78.png", + "0x0250000000005FFD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4b0d6b91ad769b8a40cf334a4e6f813b297f4de7c1b002135875517211efbd26.png", + "0x0250000000005FFE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5b0cbf36fdad0758eb6a444f4e35e40f150885c79ae98bb3487533930df88aad.png", + "0x0250000000005FFF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7f5ef2362b911997bfa046e23d178b47eac228ec9b78314dd01357de927502e3.png", + "0x0250000000006000": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/669fbed7491348eb91ebd9b16f3a729afac882dafb2d1d0bb759cbb412e113cb.png", + "0x0250000000006001": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/33791dcd639793333a40c31ff2d816a497f06016a0fec7b700f748902ab56b0e.png", + "0x0250000000006002": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/45da98d14375f6c19e7f5a1e06a19c42670a36be256f9b7d3a2b54dbbe83ea9f.png", + "0x0250000000006003": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/af69390308fbdb771d22215468a7dc6921b474b9287435139b76bbee143071fd.png", + "0x0250000000006004": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/525fd7ea5484d7a94044ab711fceb2ce04ddb62a75bec9e30bddf327c71b876a.png", + "0x0250000000006005": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/68c38a9a912fee5803149562de243bd13ebb89e4b402b6664573a3b068017c53.png", + "0x0250000000006006": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c3090e3a1dccc58f143ff53801bc0cecb139f0eb1278f157d0b5e29db9104bed.png", + "0x0250000000006008": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/078478dd35a0d819d9a617032e9f2570ee0be095c451949e81ed39f2c4a7be16.png", + "0x0250000000006009": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4c9cc0784e7372b5417d2b7baf40d7e87ba5b4b85db74faa87bf747c8d903151.png", + "0x025000000000600A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5d197f566f2be5eca9bcf15ba3d47e0b4d8f442e3193e8b33056e9fbe9e59142.png", + "0x025000000000600B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ce36a232bf8db2e5bc0470e939c96919a21e5b4e90df7e21acfa08ec8012bfac.png", + "0x025000000000600C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b18810915b335c5b73c6ab79727987a183da5d5032d9add365db5bf8e252cfb7.png", + "0x0250000000005D72": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ac7b402be209b6947c30112d8158afdc861a30303487da5bd83adfdfd6b6afd7.png", + "0x0250000000005D74": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/24933dac8143e28dd8218cd09ae1c575ff47c01d7bbfabd09e3a607ca585952e.png", + "0x0250000000005D75": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/03eeb9871abadd89fe3d7cd9e79a381691763f104f34108dbab9bc81df5818b3.png", + "0x0250000000005D76": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5bf8519f7e8bffd053a6a9da0cb1a92bef1b527d9ab430b8678dcdf79a1117b3.png", + "0x0250000000005D77": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b658261c14bb39948be6a069d16cffb4b3d5ee000196d2e977e9233d6215cfdc.png", + "0x0250000000005D78": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ebefcc4dff35b0252ad5eb95ea32c0b3d931e0c053f266c0d872aeeb6196a068.png", + "0x0250000000005D79": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ab19448b1a90523e0c794d61fc3830005a2742e27bd4d926a753dd75aef02b01.png", + "0x0250000000005D7A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/18324accdcf709d7ab5d9ba17f690466254e172f1aa82b50fcbc92e95eb13089.png", + "0x0250000000005D7B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f7ad175e58d93c7713cb9b9b33e53ce69489bfede8a1ab81299e4ec72929afcf.png", + "0x0250000000005D7C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8b60775417376bf7d7521a6be0c16208d6e50c734293986fdcc1bb202a4ca645.png", + "0x0250000000005D7D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fa3b84e438a5ad9269034871f6882cdf329947685ca27fd4a9226158ac98f86f.png", + "0x0250000000005D7E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9c9e1e1d8d2748513fa98a57cc0f7227543f6c1a83ebd0c2f988d1d77794dbda.png", + "0x0250000000005D7F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b00af904e600e9b827df5456ab52c6945e3b33cb7414593a8a5e0b25a865f368.png", + "0x0250000000005D80": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7445d547f0af4736b96bb9d6af84e0ef49bf66af79fae5b12efea63321821dc1.png", + "0x0250000000005D81": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fb3d41effc36ef80b94817456e62f6c68b104452fc6e17c2ca33c81b0c9c3c24.png", + "0x0250000000005D82": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3677066f4880611fb03fa9be9d66e0d6bed7c5456a1566fbba8a531c7f2459de.png", + "0x0250000000005D88": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f088b6056d626ea9187afba14c9a6a9e068d7a00d4520197b8374d863aa7d8df.png", + "0x0250000000005D89": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5ed334505ce95d74e507839a136fdab637519c76b484516b5348afc4e890970e.png", + "0x0250000000005D93": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/cc94c7a632b45e53fb56eccf11c2b3f6b6481157d1e725748b4fc1a12caaf8e6.png", + "0x0250000000005D98": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/69e3d3b0386148061e797426029c5c8013228b47d2c3ef339fbb3a997b42aebf.png", + "0x0250000000005D9A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/07c467650ea8506b965a21520cb393f082d59e331fe0eb8f9b70146aef12b20b.png", + "0x0250000000005DA0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4907960fe553c1535cd61131cd66f33548a734b2bc4e23fe370ea317d3ce59f6.png", + "0x0250000000005DA8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/50b2f6335fe28560c230eb5e5bb1a482c6f1f7936fc2fb5a1d1d505d28777ae0.png", + "0x0250000000005DAC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4e9cf76b6403b67a9ebb84c5ffb592dcd43f9b5198cf99fc16382cc5cf8b7a12.png", + "0x0250000000005DAD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/33c15d3ce7b4d3b9bd03234faa7c7806d7e28bfc9a9f3fe7014b5986c9453d5c.png", + "0x0250000000005DAE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7f9db5f8d1549b2b51126ea20f7bbdd001bd294763b1fcf0fc18c22d73d98909.png", + "0x0250000000005DDC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e11c0af76cc14bf88bc64dcf2c15245269e066906beb93800e9627037c58badd.png", + "0x0250000000005F9A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/670f5bb1d1db81bb92d26164579cdc846b48a1a59ae86cc545f429f1d6bae743.png", + "0x0250000000005F9B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/cacab88a58ce7b2ef2729ee949201c87b9e7ba3bdfefc59519cc7938cba03fa4.png", + "0x0250000000005F9C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0023118b3a83de1edc565bb95e17f5ef526ae062da5d7370790122e33e876731.png", + "0x0250000000005F9D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9199cf00fc06450f3254589b4b9f0294377ccb06cf76d0a7325ab109c9daed59.png", + "0x025000000000569B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b801ed387295f67be7325b5abc70e9c038c80cacb84d15253acb1e6f353ffba1.png", + "0x025000000000569D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6f2e5f5c6c5b170dbb08b074684b36a701f81b27073e5822a6e5829983c3ef2c.png", + "0x02500000000056C8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6e991c9791811fe6174f3ea0ba127120b6e74b03e1d11ababb0dcd8418081c23.png", + "0x02500000000056C9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4841eb7043ed023460f7b2e2c02d36e7cf12c9658ca8d51c8a43ff0e49fa3183.png", + "0x02500000000056CA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/66a7b73bb4bfc0321c93f2ee18d9659f10a8825f432a485fea635181ab615290.png", + "0x02500000000056E0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c65bc25db0f44c0fc23340e1a278b2ca6e67677ea4f9efce7c6b933d53c3d554.png", + "0x02500000000056E2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4ce35d0d5b2a84a4bbc57196a4c13dd80d7a61d9eafa6a00f5c0f2759fe1016c.png", + "0x02500000000056E3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ad80ad6e24395128bedcd90c9f8bf9dbea1fee9524de5e5ab78c87f130875dd6.png", + "0x02500000000056E4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7aae1e2cfbad1e59282dec91cbfb73d5cffc91103bfb37c237aa9e42d61da59d.png", + "0x02500000000056E5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/60c31f8d223f3613dc363b2d08f7855d30e5ba0bbf6a8f5cdbc661af24df9c91.png", + "0x02500000000056E6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3a4e02ab1710507b26517f1b8b9f59bf22008af3c333709753f0490c36cd9a1a.png", + "0x02500000000056E7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d351802ef60c5036688e34de98f6e490eeccddd73691d6fce1c75a1742fae778.png", + "0x02500000000056E8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9f06a201f12fb23480fac9e4c1be46851d17354db17db70be2867cd9301f29c8.png", + "0x02500000000056E9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2bcfe807bff912386818cd51d6a98485f431dd275df2012e1283e40e97129ee8.png", + "0x02500000000056F0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b86a5a4fc5a78e18ca6b9261563b2b15600e8b2ed211576b5b45d13156a31f50.png", + "0x02500000000056F1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/715100b298e797b68710074b487348ac4800f8fe40b39ac3e163f6ee6bd384f7.png", + "0x0250000000005719": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3d6e3a54bbae31a4edf575d0668ab96c8168e37235eec21a05cc30c2c15087f7.png", + "0x025000000000571A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ffeeccd1e7a636b0e2084251997d8eaa32e00848963d3898b97ecaf72eb021bd.png", + "0x025000000000571B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/87ef2f3efe8d292a1dbd009091fa67625b7cea8f9230b6afed12e83bacca9c9a.png", + "0x0250000000005725": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f5e8c0c6fdfefcd753085cf5f452e8378d060b98187dfbd67cf2b36e540f6eee.png", + "0x02500000000057CF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0fb32f8b62dd385ec33f750d9afe81dddb369ca52a0b376a19a86b5c2b0ebacd.png", + "0x025000000000565B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0228880e72cd860c7fef911206104083fa9215c141b7baad21bffd6eb8178bc9.png", + "0x025000000000565F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f572371fa15cf76f13d8dad4b6d9df1b688f4eefe8f0bb706361aea88f582b1d.png", + "0x0250000000005660": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/299d9d72aa84652ed973538cf5ce8b069bf63fe352f0bf9884effe87d1c52d17.png", + "0x0250000000005661": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4cb9b142a4a8707a0cad47d636c99d3adc677e008a9bdd0bef154014184289b6.png", + "0x0250000000005662": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/31070b9274c352f0b7f3f2a4cf9a46e743e1b73935371280d35571a6826d13f3.png", + "0x0250000000005663": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a32650408a47e0a4f439148b245c6226e245a7475bcf144b82224a4e40b0a744.png", + "0x025000000000548A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/623e9ff51902c5b4fe998f073e0a50dbdacfa9d63cfbca1588bb0adb3999e312.png", + "0x025000000000548B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/cf02b214bb46fe67909ac04f094e3776e861e28ce8474878716151663ae067e0.png", + "0x025000000000548C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/bff5df60bc7ba240d61ff28429991b187940cf69d7a020d8cb0b45e9972a86d7.png", + "0x025000000000548D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/036cffbb22fdb4d2cf6fa53c9614efe97d818d7ad294f6ee2b587fb66c9f50f6.png", + "0x025000000000548E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/635a6058b9edb857c0946e45f5a932e90377f8262f990fdfecf4c8251a4a73b1.png", + "0x025000000000548F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8ee70f598c4123557c048206a3c21140f135660c35db55f2f39f29c3c18bbe89.png", + "0x0250000000005490": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/eec4d17fd081b75a842ac94c48ad034cdd465f967b7b41e76da6e3d6602be32a.png", + "0x0250000000005491": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/58b0644380da50f62d09bb93c202d7dbab31179b2574fdbc957e20f2383e1ff0.png", + "0x0250000000005492": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/82f2c34de2bcad73d743d2e85838e8e39617326d40f4fe8bc9a77b03331eccdb.png", + "0x0250000000005493": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/350e5c57322791f334bba9a7762d92319f0b417e25feb118df951e91606066fd.png", + "0x0250000000005494": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/eb827cfe4b1d02c444b8e54befc6d1aebc1e1098d487f2aee8511be25b840fce.png", + "0x0250000000005495": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ac043aba7546f7781bb07d694f1cb30c5069a025b3fa4c691f2d55b5ab77381b.png", + "0x0250000000005496": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c0e198ce2779095c8d1ac887f43ae8ab3a599a3dc3952d3372745d5b23b94e1f.png", + "0x0250000000005497": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d17c52318ec68db9584b3e3a13d6e7f2ed32eafd32c55519c3532bfb9f6d9d52.png", + "0x0250000000005524": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4bbec8e6aa309e02b6acaee3885fd5092cc128f8d1006294b29b3a1640b664e3.png", + "0x0250000000005525": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b13ec1d72c3c55f2e6db041020a3d0e1b8e83914079c2c9420ed1a4999ba07cd.png", + "0x0250000000005526": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/88c1298ed53036c698ca937d3f188a49cbc52bb4c93d237e2899e0b3cce348fc.png", + "0x0250000000005527": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f49707d2aeae8ac00c8c1036033df84c7b5a12dfcba349e6d3af5a4980b382a0.png", + "0x0250000000005528": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8256c86256f79e54fac1a02d8162d99991a982e5bde9e1b1690148800276d857.png", + "0x0250000000005529": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5c670baeda5a7b2ed707c940f6b17773e9fd41fe783a8810ea9283cd55d6fd43.png", + "0x025000000000552B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2fb629ffbb69347dfb1eb9ea319cc3b99df0097bb0e25e8d9b0e5fc8f7ca9f68.png", + "0x025000000000552C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e551345c78970b0e1c2c057e7a7a69fca816b147f2366db8a4ca2e2f44f04e6d.png", + "0x025000000000552D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/27ac83b7d39787266df97d9d427b7982d5b6d8feae64f84c21decad7df19a91a.png", + "0x0250000000005538": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1b0b1cdb9fe32126a8eb727e1af9b888cad5e3004abc717992ae75a4f30a90d5.png", + "0x0250000000005539": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6596ba66184e35ce4239b3b1e20a36233b223b33b799a3b450996640f2cf5070.png", + "0x025000000000553A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/56151d8f1e87abe4c390c13eb2ab79486fd6ea7140ff8018c0da88ec101ae8fc.png", + "0x025000000000553B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f4cf4977a38411ffce3f78a71d1d1ae070ba2fb1ef15986dfbed26eb5822c57d.png", + "0x025000000000553D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/437048dcbebff6c489cfb8bdde4b94f360a06410f5bc9818ec2dd1a1f5508ab5.png", + "0x025000000000553E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f4c82f74400e0d75f2c622054e04155abca2124a16b27acbea61e67138ccec24.png", + "0x025000000000553F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/baeae029ee563cb666d67c1754c518db3b6ee7a7ea65f22685af4119150fa2a4.png", + "0x0250000000005540": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0ac5f48482672458cdc64ed037f430e1240a92c4e04f556815f6aa46bc18f103.png", + "0x0250000000005541": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1322cfa07e45eba502191355c556589c497fceba1e2cc7d7321309efcc0492fe.png", + "0x0250000000005542": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/770175c558fe650159fc8d3c46812b36c90db92cb8ccb21d6212d8bc38b745bd.png", + "0x0250000000005543": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/02fbc067c9810afaab41994110dccbe38796b6ce3cfe0d8ac4b68c7ff3667bab.png", + "0x0250000000005544": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4561a8a0e716c03ab97eddb2eb80be6618d1cd36c450d18aa425bd265e7717ab.png", + "0x0250000000005545": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/26c035008d117e17be3b5bcd0c0cd67f1f23e0f990e52e9b7ceb2810e69319c5.png", + "0x0250000000005546": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8f8578aacb8d34b588d40dea4efcfe72d89c8b14e45e05f7336cfe9243f32f39.png", + "0x0250000000005547": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e1e94c11ef87820fc9dcd51c7805c763b52ba152b7f914056b1b35685ac16e4e.png", + "0x0250000000005548": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/40e5eb125cf778e442a3efa9bf9a27bb688c3c64d661f64a6624c5fd1f375267.png", + "0x0250000000005549": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/dd6b9aef4bfb8a9b6fd8baa16800c6560b2f8aadb802fd9434c8f87ca1ee5be6.png", + "0x025000000000554A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/aa2b5606e5d5d9edb72aecb91d3116070b72527bdda1765c0d9620f616dbaf56.png", + "0x025000000000554C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/93eae1a917cd6c579b7782b1f2430fcd72932f79da3353db204da607b10a68fb.png", + "0x025000000000554D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d2e4eecc8cf79711c07e75b401c49ce4129b3eb98da87ab84b8185c4648799c4.png", + "0x025000000000554E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/994065e6514c69bbf9c4e4de428a86b73dfa3286f6180e4dd3c320b697d32e1a.png", + "0x025000000000554F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4297e2181cebcf6931d9220ac9d85f8fb902c29d868a926bba52daed561ec4a3.png", + "0x0250000000005550": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/31b3a34e94d710e6e83548a2e7e99d0118fe45a196993f56037a6e7974533b99.png", + "0x0250000000005551": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ab569d5c9c629343ca442d3b2c4d74406e406b08770899048053047d784ba82b.png", + "0x0250000000005552": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/65d51eb994dbf7a8ed370a6355a3c864e06c97e22bfd46e55d9b562f77d637e7.png", + "0x0250000000005553": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d1b202f382e89be38d4dea7d334f43daa5548119506818a98a664fba0d7cf5cc.png", + "0x0250000000005554": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/abe5b35a532f993d24913608f7138bef30af3030a149630a08410c4562221966.png", + "0x0250000000005555": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f47fccd1637b96c619f3dc1c3328423cd4235a805847e0bbdbfe12a4cb8d56ea.png", + "0x0250000000005556": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/319f9ae7381bff58605059ce848d0a4076d0b6e41ed5dc5cadf0d9ad5d56bf02.png", + "0x0250000000005557": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/eb14f7a5a04263bbb6f643fc4d9638edd18d4d92c19576df3ab30c52ea97c15f.png", + "0x0250000000005558": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/79cbdfc52ec1772f2e72444fb33a4c82a700e0b871145a4befe20156b2e2be8c.png", + "0x0250000000005559": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2c6483094bee98bae658fb57c725691f14d19bf0e3d781ff6ad7f84215d00225.png", + "0x0250000000005568": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f66bd04c8c7b14b991b11d66963e1813d0086468a44ef3a605f42f54e2bf1b1f.png", + "0x0250000000005569": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5c1e80b9b4153fe044d5c0709ded42e0c32f727942c7859e2b00ee44d6240eed.png", + "0x02500000000055BE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/dc5301f28de3bc59660b42f1fde4ef0598013ae9c1a2ba0f079abb94413d45e5.png", + "0x0250000000005643": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/83acb9ede346a80e915eadf9ac766f8f80365bafbbfa419dfa07fc98861ff353.png", + "0x0250000000005420": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f53f507e5d53c9fa3fac7bf324b52e6243c55ba11e904e33d78a9d5e3d8e7b82.png", + "0x0250000000005421": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ebb77f7ba840bebd38d51f444c5a9fdb7fef47954cbe99df55adeba1876d2078.png", + "0x0250000000005108": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/62866304de1a8fbdbae90b40be5896064db438b16463d7446ba45bf9de637716.png", + "0x0250000000005109": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f58d5635a0bc8379baaa3564102e719ce63e418450dabb9774474cb42b6e9d53.png", + "0x0250000000005129": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e2bace581862ba7971550b9888febd1b4eacc00c722a4873a2caa72e65ec5bbb.png", + "0x025000000000512A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e88258982207d27900f8f0e8e48a8d0cabdd040a10aee8bacefcdcb5020925b4.png", + "0x0250000000005163": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/cf901b8a012b345a97babf95983ce93a5ab74762b9702f3023e538ba7fbdc1bf.png", + "0x0250000000005061": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fd1e8392ecc77d5eecd5c7c44f83af2b81aa4a2918a29d9f3ef9adf6fda9f42c.png", + "0x02500000000050D3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9463f4f292d1a89ad3c0becbb602f29d78c26a21513941d3f706bb03c7b2574e.png", + "0x02500000000050D5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c5fbf9f25d5646468f0ec141047f24765631d8558a1d5bac6a26e5d722705f78.png", + "0x0250000000005048": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/521537d8e9812522530bc87310d70b5a24488813979318a5ce331fe740fe1b12.png", + "0x0250000000005049": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3235e4fd5d28b98faa9edea5c8eb9e48224327404d882e61e6f172320fc134f0.png", + "0x025000000000505B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1493253687484f730633e101160d911efd4fdd6b50ed11313eeb82dc199a2306.png", + "0x0250000000004EF3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/747d6b0b62c33348449b8137163dccdafd7f4509830434d3bcd5a7e5e09ee47d.png", + "0x0250000000004FDA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/540ddbe2edd09791203f66a31d8c7c79b784d49f7a920273d0b249cd3d00540a.png", + "0x0250000000004FDB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/288cd0dd238b82f0474593b9827f70ae11adb65c9aa7dbd59075375f6318966b.png", + "0x0250000000004F45": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0ab14c0e0914038ba6b830f84a72f364f62af4ad212d1c2f8579be8104043087.png", + "0x0250000000004F48": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/76699d62b42a8b62280cb4085671713c4423c95b41383a45428fe47ecb4ab208.png", + "0x0250000000004F4A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/56343dbcfc57c9492ab079e11f8d087be9cd6197007b01677eab30f8edf8fae9.png", + "0x0250000000004F4D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/20a10a45b91c97cb60364aeebb819f7ef778c68894fba2bdc0b573a2d3d64f14.png", + "0x0250000000004F4E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6decf83dbf0062c6d0c4934ae4ed26ecf688e7b9677cfd6ef154b6014fd24eb3.png", + "0x0250000000004F50": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e39c92505fb6978b1b3a94986cb9c3f6cf8cefb532b4dd9bb7e8c40ee3ddfaad.png", + "0x0250000000004F64": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ff0927c269735ef498bffd5d72428ad6c55b3d190ca0193661c3843c8c3042e3.png", + "0x0250000000004F65": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3b711c1cfe3910e4cc95d8ebed220e280306787ad21ae41943541bde2470de58.png", + "0x0250000000004EC0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/059bcdc4857f119a2516cc602a5a1fecf29a5f182a7993ff26464eda0d12e7ba.png", + "0x0250000000004EC1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/cc0967fff050d8cefa6b1c0f94f63fafb05e02055cf836f571fe7b4129c3e9e3.png", + "0x0250000000004EC2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0c08844f2ee56ed61e177e1f04967f7601190e4fc679914ab246ecffe7818f54.png", + "0x0250000000004EC5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b713240f347798f7821ea7e20833ef6fc9f00eedcbb7019eb286320e287000a5.png", + "0x0250000000004EC6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a4e6144d1cee2f2f5b3f76d41d255a06b05067cb6edcbcafbb4f80cbaac5a6f5.png", + "0x0250000000004ED9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e138c6cb6671c176d6624b49ed5afa18eded695679b19330be63fd3467bbb7d9.png", + "0x0250000000004EDA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/aadb060f3486c8979c155a986dff0a213cb59cb4a05e6d6bbeca875d19bc2224.png", + "0x0250000000004EDB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7bb300c6cbb5c94393fa9f393e31ef801459cb43d999d07c0e7115ec88b161e2.png", + "0x0250000000004EDC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2908e7d1d178d6282018be4f84eb2aab18875ea2a3f5b2d7677b5da7468e49c8.png", + "0x0250000000004EDD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/54bdf086cc5c24083581e6b62c0bba1a24a692106ddef2298192b09c6d597ec0.png", + "0x0250000000004EE2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/eedd44bf6710891b71ece51641d0fe41b513ece50d9b8cd64975e40b359927c2.png", + "0x0250000000004EE3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/61e6af88742718cc6a77010d00ecf1442e583e91d5a555e243f8a5ca0fad8582.png", + "0x0250000000004EE5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/be74572dbf07c977e9a639affe40a03c1c7f4f818d6391f8bb4013b0ec57800c.png", + "0x0250000000004EE6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e46f5569b11b10ed1c21e1338b6c0b02716a2cc508f321ab85059f7e20c550f3.png", + "0x0250000000004DDB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1a018177b04b186b72f0b469422c929426f214a255a3c112bfe49a920b6e21f6.png", + "0x0250000000004E17": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b28c86320e24eb803b84a52a00c6bee4163a9d603994fc8499ae265d43482d57.png", + "0x0250000000004E18": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/38bd36b15177f99c0c3b014d03cddd3528909a25418a080551b0c9f821fc2150.png", + "0x0250000000004E31": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2955cf3867b946925efd4d9985062d56e70df89862853ca8cc5764e7fb7e7e4e.png", + "0x0250000000004E32": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b21d8d5448a3ec96bc7544231d07537e1bb5b0a6c2c247bceb8d22bd1483a39b.png", + "0x0250000000004E35": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a9636d7f2029b5bcee1debbf671933f08d0bf411deac23209831f6733e9b7ff8.png", + "0x0250000000004E36": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7b8aeb40c5cac4876978751cf5ac31d9ecfcd2a947b4f226fcaf2d5d70244002.png", + "0x0250000000004E37": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3af0e15b2a0e1ae888af97c6523082ba10e50ace6a4f0aecac5fa7dd741231b5.png", + "0x0250000000004E38": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f7d2e053297f05c7ed5c32c736794ebdfd53d9337d4f714d5958c68aacc134b5.png", + "0x0250000000004E39": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/13d8db67e260b65f36bf9a4ea84ed7517343412c66c17c2469e88ffa4f3d8a49.png", + "0x0250000000004E3A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1a9b82e5fd46235777e75394bb5ef2cf8414d497f680dfae8c75c9cd22f17bc1.png", + "0x0250000000004E3B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/56b641634b086c221904eda444f891b477febaba2c58a26d83ce2dbdade8d24c.png", + "0x0250000000004E3C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e75209f570593efde66642f39c4aec4ab3d2879233f003e7f737f71c361c0a92.png", + "0x0250000000004E3D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/84a09e0b83ccd3bce93c465793d1afe3d33eea652574593e6d076cd225d9b384.png", + "0x0250000000004DF4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e023f68153e3fdd56f24248aa041ef24e1a3d35db1ff455852a99cd0dc2abc01.png", + "0x0250000000004DF5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2a360d8900991a67aa90cae9bd07b7e8c0c891ea5e37441b18a36959842ac0cb.png", + "0x0250000000004D90": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/38d5a2cbcc5746daf2274ebcf517073604cfc57f77475e4f35671a0f5b5f2f98.png", + "0x0250000000004D91": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9cefefc00bd5fde0a69689ea53bae9dec6bceb2c106ce20369163833118ff587.png", + "0x0250000000004D77": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/52f6f63c6b3e75786bf848cc8c58d7354efdbaf7ef32e316c9d856689cb92052.png", + "0x0250000000004D79": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/bc680df9da5fe2562bb17b7360d9caa9fde4a2c1b614133f188d17c9fd1658ee.png", + "0x0250000000004D7C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2088b3f4b5e028de74e42c7bd36e30a49872d7c2b9d4eedb25cbae7c5228e4cd.png", + "0x0250000000004D7D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/505c4102b7cd69f3b9394359d786a35ea9695697285a3ed350ca2ad22c419baa.png", + "0x0250000000004D83": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/405a2df1639423bd76f60fe7cd54f5499204c95387aa180a76cecd0171a834b6.png", + "0x0250000000004D95": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/cf1c4fc7804652f30821b0174a3a5e46771b4290f31bbd9e3742fbca6d01f9e3.png", + "0x0250000000004D96": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7af88f505f994fbf38e0f670a08edb73e4b91954f320d3d874728ff2755f768d.png", + "0x0250000000004D98": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/62299be33e1c09eec6cbfa8eead445d93e95f3723fb6ae7b8f9c03d01b9c9607.png", + "0x0250000000004D99": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7f92bc36435c96d48e737881e562fd159685f332cb3eb0d0e45e40001c8ea05c.png", + "0x0250000000004D9A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/afe51fd205b87edda7a5dd23b619e4837a15af331f16da4c709f88abef065fdc.png", + "0x0250000000004D9B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/294c61f91ee2d4d42bfcf2435afd28ff792742754639d588314dd4d4332222ef.png", + "0x0250000000004DA2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/84f231df4d53b1d62b7d7e3698f061d17b7453987cc0c60ddeaf2eec3e044335.png", + "0x0250000000004D4D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b96d67161079bf21d8168e3d264e3b56c2072fd62aa20f6d3bdf02fb9f235ef7.png", + "0x0250000000004D69": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0abbb17fc8c0d09addf0a42c34a1cccfaba93235eb534f331a0deb13fa454b61.png", + "0x0250000000004D6A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/645d433cdb9b321e60656706fc0acab0ac768d2b434dac5c290e6385a137652b.png", + "0x0250000000004D0A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/012676f63532611996d8a5b6151bb84189df7c19dbf596dbd77a2205d60f3e7f.png", + "0x0250000000004D0B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a545f05ca471f92382635770fbb5bffe9866da3e41e1c2bd28582fab04f5e19c.png", + "0x0250000000004D0E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c317beb4398cdaea0d8bf266dc062a45465e06463921a17c116fbd7566c8906b.png", + "0x0250000000004D19": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9cd1897d3e0d35f5a95aa2f4e5571f1e2b3042c79605593e46504dff3baa3d58.png", + "0x0250000000004D22": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0c551f6264f626631d8761c2f7041ec2efb2c5b56402dd89a8e65ab92dc793c2.png", + "0x0250000000004D23": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4b61c79998900545c4c8705c93cf7e7dce0beed85beaa92ae8d7bdf116bc58fe.png", + "0x0250000000004D24": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/06c8090cf1fbf372a23c197a50ebd9f90781b94696bd85da92c85f139bc0196e.png", + "0x0250000000004D25": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7ce11bc2ce6b07be4bfe6b215a05de929d7853e82bb1a608a7de10e0bc1c0836.png", + "0x0250000000004D26": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ac56c55d193afc41f9210f3d4c032ce1cd33ac6f9e5d5bb7b672887c5c8a159b.png", + "0x0250000000004D2F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f5aac0638f36eaacaeb2de65f5502dc6dfb6d4dc9e03d8402de96fa66e93371f.png", + "0x0250000000004D32": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/95ac91c2cb4c1ca31f97cd26da79e33a0d297733e0d29ec52063e7d91e8fe75a.png", + "0x0250000000004D59": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/21b9e01301442344ccf132814d3e07d3e5e84d55f7f36e5bdf53dea4a004e7f0.png", + "0x0250000000004C91": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c0eb8249dea10c68c751fb73d4d314a06d1a2fbb676f41487422ec738eb69008.png", + "0x0250000000004C93": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ea1bbb8d176955067a3e0765480fd86d7b5eadbfe2d071f10fbd0163234072fc.png", + "0x0250000000004C96": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/250a10e3945695e9e1dfb8c918485d41e3f3a503c186e77868c7d59d4cd086f5.png", + "0x0250000000004C97": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a6799f01f92455841ab31c9050432fd328192bc31e4f1de5fe16ebf0db0e5bc5.png", + "0x0250000000004CD7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/bef28a00a4af45a0e4fe0f86eaf2796ee80facafffbb391fc65d697b40b0dbed.png", + "0x0250000000004CD8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7d893ca69fa44284e0a68f5d2138438bc970d3d8d10b50f68bf8b7aea83ed1b8.png", + "0x0250000000004CD9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e17f9c41a53cee45beda4dc1caa899cf35f83d67eec2a03bb4a818e2fc4adccb.png", + "0x0250000000004CDA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0421105fe675409840d517a4f0a500c1a0b9a9cba937cf7ca2ffcf59f31bd2d6.png", + "0x0250000000004CDC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d8e2fb3ac1ff726b140f559b8350e19213758f540ac3d6125d674b373e7b7430.png", + "0x0250000000004CE6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0fefa56f3d0ae4c7e21067a7b5ff3cbee6c7b74bf190b33514a5b56f48becc5d.png", + "0x0250000000004CE7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e9c07cb5f515a607ad222bd87439656cc133d4fa6fcc8904addacfd5c01b7624.png", + "0x0250000000004CE8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b1648a7034bce7d632adc2d581b090304b8db64913fa2da8583899eadf3ef5cc.png", + "0x0250000000004CE9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7d7b66772117e00ce929aaf18dbb7219791fc0afb781ba40d47509951e664aea.png", + "0x0250000000004C52": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/16be35e0949477db6389e8d4614362318d6b1ca2e70af9f31e8372155f0c08a0.png", + "0x0250000000004C0F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a8bf2d7690f5fa632565b0cdab129f8bf2f07e2bbdb27c1652b574b7d748ac77.png", + "0x0250000000004C10": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fc48f68e018a3e4bba5781073dd316599d9b21a467779b576fded4cda3a34fa7.png", + "0x0250000000004C13": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/44af791ae4b11f6845d0af25d1139338bfa03303f9537b57fda5f26128901d6a.png", + "0x0250000000004C14": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/aa3528b6696fb1b5d8fc92857499f732e75e3d92360ca19ab4f8728c3d29bb15.png", + "0x0250000000004C1C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e7fb24a24cf098a1d34ceee486feb1c9534b9dc4ed6adca14c23c39ad753f567.png", + "0x0250000000004C20": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/39bb9a15ff04cf686b679b95a7daab709c9611455293c7f93cc699e51e84d246.png", + "0x0250000000004C21": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a98929d64883610913e6b31b6dde2809f6cf6a6ce45a61c6fa19d47cbe8b5b0d.png", + "0x0250000000004C30": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2b17a261b5cd21a6c29414da28afbfdf4ed6d77b553160950275e74e38fbddce.png", + "0x0250000000004C31": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2633ff6a37a9c471faae339f0906424b3d381bde690adf70f171d2c1f27dbeea.png", + "0x0250000000004C32": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d924d451041311291181d7e8e734f8ad55f44db72997cde0e7cb97a00e7d4067.png", + "0x0250000000004C33": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/58beede5a458b757fc9600a019beafabd155529fe02550f3c2722f1353e7e9c0.png", + "0x0250000000004C34": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3a26ac251f11a92fb9896154be67e4ac264f65e375becfd6df8eecb40597b2de.png", + "0x0250000000004C35": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/635d930e469be4605b533b9808810cee342c0dc85f67ee340ba6d11a362dfd65.png", + "0x0250000000004C39": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d2f0a15ec4ad197ba6da61643c4ee5af54facc9e18dd73febf0b3614c7918b4f.png", + "0x0250000000004C3A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/12657ae8c72c06bf3ec4b3c6e2bd635adec319551812271f8234ef3dfe02cc59.png", + "0x0250000000004BB2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/423fdfc53aa3057118f8f1adf602d12df7ecdc5e0bfaf082af79bd2c70949f68.png", + "0x0250000000004BFC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/bfc29006752143759e3b9fb3201977600f36a3ef5c7eb737c5ba4724c911bfcd.png", + "0x0250000000004BDA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b1f8867c80671219f63aa2e66502019a56bc4669eba70723ea22f2ae2aade4d5.png", + "0x0250000000004BDB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2ed40d3552c6960efaec163a9f10652285c3ef52607a7f7954c3fea710d7b397.png", + "0x0250000000004BDC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6e0d0e825a9c809969e57f8a959cf2b29455fee89f6222657f716ec4f374e2df.png", + "0x0250000000004BDD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8c9aec45e16b04c89be45e4be0b1d761fa08c15a334808e363d34029c6aa5d1f.png", + "0x0250000000004BDE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/348a0d2a938e8e25823d36e584829214fec1617b4b3b28abf2bc619d85623edd.png", + "0x0250000000004BDF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/00a7f2afbfe24c2a9dd05e256b756fef1ade9935799c12287a1eb5737ac49c44.png", + "0x0250000000004BE0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3389dad97f6628230e68522b98409a1674bef0b701dc1b37c98766094a6e4785.png", + "0x0250000000004BE1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0cb8654cc6fde93a90bdc1f07c6e25a211f81d0df85e71088718c2e01aeeea40.png", + "0x0250000000004BF0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6560129058d35e6bc49eb5ad98f6e4c585a35c337502a4e7e536c6f55196649f.png", + "0x0250000000004BF1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/690b60838ed57f3687b53e294c43a634e248db2cb3a1661d2c0d80ab2ef5132b.png", + "0x0250000000004BF2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e88bc58d20c02fc7febf721e778d336ecb3543a97e470262eac620abcf41246d.png", + "0x0250000000004BF3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8ed082edda3bba11b0c0c4aba88fd4d46295d874bafd03f764d7227979e4824d.png", + "0x0250000000004BF4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/47d6ff3a251aa376a76d36abe8efc1075eb43f51fd1c6969663d89d7b476f3bf.png", + "0x0250000000004B10": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/08bb64b793b0e3dd7792ee240c241f169d9fa501a96514cebf4f0e3ceec583a9.png", + "0x0250000000004BA6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9f6b61c6465f67bdc2c7e17f933b3c75463bf8016bafc786ffa366ee7b0a67f2.png", + "0x0250000000004BA7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/14659c1f371b4ca3608bcabdca4cd33422733275c735397901716ef5048cef17.png", + "0x0250000000002AEB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/968c83e02daf77ec1c616c62ca7967f635e24b76322cda1f76c62b19ce47cae7.png", + "0x0250000000002AEC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/aaec715bd0b50abe817c167cd2eaefdf4f74775cb7d8e496d5f04ae750988b7f.png", + "0x0250000000004AED": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/480685df7257ad94fb1a2370df28cd4e11ec0b6770d35dbcb4f2f7129bfb4dcd.png", + "0x0250000000004AEE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/caeac9341685756da5e37640b21769515d2b54d4247b0463394328d30fdfeb05.png", + "0x0250000000004B0E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d3e03d1b5b0b85f3cf98847cfd0a396a311a370363c46245e254ce2e3a040527.png", + "0x0250000000004B19": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5551573a38d96c4308e225cd05593068b44e7c786a1f4043cc2dce5733c98a87.png", + "0x0250000000004B1D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8dd5c5374aa7267ef87ba9efb2ab88882b361d45025875a8d01ed9d44106ccab.png", + "0x0250000000004B1E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/de73a0d7ddf9a445f93a50973d61d7bfdec1efa040016fcd152d916d0ed81481.png", + "0x0250000000004B1F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5047e81bd51f40193ba004e52c7ea09bfe51cb9f295fa0d922ad806c449bf8c4.png", + "0x0250000000004B20": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c1cdd29c95bfd75c7c7ebd99dd5138e44c4b39597331458a2163d11e29acb45c.png", + "0x0250000000004B21": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4f9d2b821fd564c595a93f222cc9a24453937637205be26654a135e99dc726d2.png", + "0x0250000000004B22": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/77d3f23d80ece04d445e81e8eec6709acc4e4b1d9eb2a6cef63cd2111b8bd42b.png", + "0x0250000000004B23": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2f24c6d3328f2c7f1f5ce64e9428edad159d9ca9bd457cd43f86d9afd1dd4f54.png", + "0x0250000000004B36": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1e405c0763a370dedfbc793f17a5c0ccd22da00a883c2a3e3a1bde37fb1747f3.png", + "0x0250000000004B37": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1127f5f073fdbffd9a3bed790ac4c9b789416beacaf4aaa0705093286dedbbbb.png", + "0x025000000000492B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/39ebe1f82f77d12af0daf32f32ea727895ffe4ede25a879bd4473fe43028582b.png", + "0x025000000000492C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d207ba5d140e1c051fc61af8f4ed71c49cc6dbfefa02d64a91902ddea1b35736.png", + "0x0250000000004AD9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/217cd4117a880ffb40baef18138bbfde58aad6ee7b05f629a8bbc9e03b955856.png", + "0x0250000000004ADA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5eab6d7c2a8f1fd3eb7ce1bf0f91a5a5d6db47a489bb451d122194ebe980eb2f.png", + "0x0250000000004AEA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f19ada997e6ef7c368dd66a0e8afa3d687225b8f3308cf86f262f52849f938da.png", + "0x0250000000004A8C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d7e5199c1a60e825edc2e5892bec389dafae73b0e55ec8811edcac72856428dc.png", + "0x0250000000004A8D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d367857c2858c4387e25c4f30555b5ee5195da7c3a4e7804311b0ccb45f3d0f3.png", + "0x0250000000004A8E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1189ee2c58ca91bf16d5aaffb0ee45122d1d0b24801cf593e58d09a716acee88.png", + "0x0250000000004A8F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c523cd42c7c3fbb5b1799706064383cedff7ddc0b140ed91f07473f3743e0ada.png", + "0x0250000000004A9E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/71a9cd61bf5c43590bf56872761d5f385a161a7f7e62c395ce01cae0067dded2.png", + "0x0250000000004AAA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/caa90b57b25226da4bd6bfb85236971cd793a8a1c2b7765b5bc22880750cc3a3.png", + "0x0250000000004AAB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/559dee271e0626aed02f90987136fc0e7a9980404541fa5720325baf649c935f.png", + "0x0250000000004AAC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/43143f3eb9a89f766a5f4b7a47e5886bf68a710ea4c2012e7e7e473a514e878c.png", + "0x0250000000004AAD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f26ae13396fc14df663ba90abdae67393005f9c3661a8e5bee89a5ae30534eff.png", + "0x0250000000004AAE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/805da105677d32e08704176f637ae1061860f86ff9c1a461c7bfe96a1faca48b.png", + "0x0250000000004AAF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d59e42fef78abd00aecca229179eb1fb0af0c6ab65306b88d9b9be8f35d81442.png", + "0x0250000000004AB0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fb2743890250b39f99b8109b8d40f19d8484b77351bed3f9eac569d2d5f36d0f.png", + "0x0250000000004AB1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/295ee0d600f709b73be12ac7c64945a6add47ec1a85430efe54438dc81eb76d5.png", + "0x0250000000004AB2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/11aba4100f3bc686490f864ae8a24a2103b5ef389225a184d43d3c6bca5b8ade.png", + "0x0250000000004AB4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8d682a2986e35f44f55f719962ea83a119c1b0d738a75f4427e47be97f64e863.png", + "0x02500000000049E9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7d40f388038080b719249c7d071ff321e29ac4382448d5b2f1ee4c12291edc4c.png", + "0x02500000000049EE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/56fab01b1fc06d3fbf616348a453386af7fb6ad1547decd6f498cca14da3b35c.png", + "0x02500000000049EF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/96a8b478cf9c7250091c12a1a31a5f41205cfbb5c88c79dcee792f2547493101.png", + "0x0250000000004A0C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/64c59318f14fbe5b1a578aedc2c67a02308ca01f0d13cc17aed8db2b7805760f.png", + "0x0250000000004A0D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f912113380f368461320f47a9c54c32becf72d7a644998ad92d7af1dada9a6d0.png", + "0x02500000000049A3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9cd21873f2d2c0c325b674e72b1357695cfa40d89040ce9864942c4a9700cb64.png", + "0x02500000000049A4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/48a2d5555e97312cb87e864f23a26bab3a0589590a1a4c232cf5f946489e12bd.png", + "0x02500000000049A5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/46a0e91dda73fc12d838efbf7d0080385a34242cf1d76b4d3ef080261c484fc1.png", + "0x02500000000049B6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e550a8a7b3500b20f4afd473896364541952f1fb162d820cdbad8efd2f002559.png", + "0x02500000000049B7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3591e929a3130e9b59d1614e6f7eec9e11d599bf33407974e3541876d72998b1.png", + "0x02500000000049B8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/25976462b3ae42433081680d9ee66b4c9d247041922990515db5a76dfb9c37d6.png", + "0x02500000000049B9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/772b4ab3766a56f45e8ec8116e26ffde02c8673d3d151721a748b271a1f38755.png", + "0x02500000000049BA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/78acd83f5fc625bc73afc44196538531287199959beef172000c726a2dc3fa9d.png", + "0x02500000000049BB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7fcb46aa06ff05f3bf15bb4288eac495d1574b15898b222316d1c77fdd0e0e77.png", + "0x02500000000049BC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f4916cfc7d12bcdd64db58b98ce90d0e7c43631fde89a74a2cb73d0fe2bc458f.png", + "0x02500000000049BD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/bac78acb5f1eb1d75761154314b69fd3ddf59a74a50864974d9953277e40168f.png", + "0x02500000000049BE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/872ce3d517e90172cd61ddd8dfbaf8400df37f6268643f294caf64dbf7ec29de.png", + "0x02500000000049CA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/494ef85259365589732df4ae128627bbf5a4dfc5e91d6fd718e7dbc171eec572.png", + "0x02500000000049CB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8967ee5080e9ff7173418d19ef81fb98ccbf596f79616770222f01906795cf06.png", + "0x02500000000049D3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7f75d598334d3bac2c523997fc99cbbfc255ed545c9215f0225ccd16ca7dd4c3.png", + "0x02500000000048A6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1beabd9361979acefe2419588e1195fc08cd52280656c145b87ec4dd219fe112.png", + "0x02500000000048A7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4674593b07d75d5fa2632c057dd072cb72434c7bd7f8b6171e7ae45fdb413bda.png", + "0x02500000000048EF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0ce9dbe690cb1b28830aa91e65bfeb38d9fddc802f6c242fc1be4fa56be6a18f.png", + "0x02500000000048F0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6246a642c9a11e9d15570ec6db34001fc4f190f811eee4858870edb7cac089a2.png", + "0x02500000000048F1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/64af3b66b64d1fab0dc9700876c60c8f1a15a408a25dba596115093fad2184b9.png", + "0x025000000000495D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/37f97f26b0cdbe23d17fc2a18cdeb389e68b95b84c531228f37fa10d2bfcd583.png", + "0x025000000000495E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6c9d4023fc70f8d6a369a59a8937f03c119a683d0eb9f52b91ecd4b65d98b390.png", + "0x0250000000004832": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b7f931f5ce9f7eba3722eebb5dc88867c4d97c33db935b78ad1f1d63096c17d5.png", + "0x025000000000486D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5869c1c673ba2b0c964e0b163d6c09c1d5df9f3327421aed336c9d979785abe9.png", + "0x025000000000486E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/30083a196dccd8959005e5ee911ea0f58b24651cb29ced60493a800df81af502.png", + "0x025000000000486F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5d60fae93b5b8bc2161bf03cb1c55f148d76ccaee6e5ac8d0f639bcf0587e95c.png", + "0x0250000000004870": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/391664f1f64eca9525910a0eda1a6b72a94a7d9f667268c14d89642bb28be180.png", + "0x0250000000004871": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fbf0c506cced8aa9db77d437fe8b41a2b81641fcee1ae8e942e079031883510f.png", + "0x0250000000004872": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9a6bfcff0f2b04da0c0deab9d41e866e261e8e7963532348e576ca5a865200d3.png", + "0x0250000000004873": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a68bdb587288709a617158be4707578269b981c0f18e452c71f0b5418bbf824f.png", + "0x0250000000004883": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d8af550202d4c26891e70145908c41ca2bfc9c317b77008a2eb3416a6b64de84.png", + "0x0250000000004884": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e28f8cce3a9e936864784da6912565a5041e3fbab4bed5efd435ab2afb9999a5.png", + "0x0250000000004889": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/bba65adc7609fdaa82742c01c69f9c22df97d22e6f443734a3af27e0655b96cf.png", + "0x02500000000047CC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/efc35436cbaede934769bf73331601de8d09254f8ac57a8d623007a6db94afa6.png", + "0x02500000000047CF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9a18b5c2f6cbcf2abfede8d8f7e7e64b9961cae33b0ea714b8741a17dcc9420d.png", + "0x02500000000047D1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9509e04aacd624a2b48f8552d2a00a298d49c9ea9acc1e28212b29a91848a212.png", + "0x02500000000047D2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/66657661df0b92b00d66365680dff05ea1c1c89d980c42c48da8455b496d1cf7.png", + "0x02500000000047D3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9ce0ba655281720736b52458eaa9b8d965a12b9f6e8909b35be13f760419cddb.png", + "0x0250000000004392": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/190aa6150e33690e39a9c91308d5da9b2e262262657af26579b95e939c44d5ad.png", + "0x0250000000004393": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2a554a8b3c850588476a28b2f41bb0e240c8f083167f756a064eafa7e5400fb5.png", + "0x0250000000004394": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7e7b3a516b756ad2c611d5ffc9780bf9134eff44b06be84da46c65574f38d8e1.png", + "0x0250000000004416": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f95ff1dc87ef1d9fe6d80bfc359a2dcda30f244660f59afe559fea74d2755819.png", + "0x0250000000004601": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d4019a24cfe68584f991a2db493cb3c9147d378008a81792b288ae9b8c8cb6aa.png", + "0x0250000000004602": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5c4e1ba3fef36bf7eed331936420e4b469b98fbada0d2712db11eff52e068c45.png", + "0x0250000000004603": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2ded2b95e2b16d24dd9bdde42ec726d006b8c7d94b50b57f9023800df0443c71.png", + "0x0250000000004604": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/77ccee574cb9b0e73f50d164dae0991839c22b36c2923cc90c994ef49e7d39a4.png", + "0x0250000000004605": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1eb4acb1da3355a935d2fc305f31cbac60c5170de760708ea43e659b1f1acd88.png", + "0x0250000000004606": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8f0b60d4dcf9ed6372f12ce9ad42633978221b8925d9ed3dc55e9e324d8739ad.png", + "0x0250000000004607": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f3b4f00ad34fa1bb36aa87849cec5a9d1851b76d68e8b08b713ff0753b122dd1.png", + "0x025000000000460A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/805a7934065af11036aeb28c054ceb574e14332e55108bff824253348dd6d17b.png", + "0x025000000000460B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ee3bbec6e7b53770f9ee40855cb00e2f414759b04f9d391de53642f744f5985a.png", + "0x025000000000465E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4cc4d6fad3c5fce99e5d01e150b4bd4f126d653f66b5586147f1876ffbca3045.png", + "0x0250000000004660": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c125015a8e33117fa728e4d5cdc00a179e58cb385c22cf29b4a907445105e629.png", + "0x0250000000004662": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8a76f13044248e05dfe6b305369d43c11a4df688cab023bd7518f5c14c870811.png", + "0x025000000000467B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/42b3fe691319cd0b754d574d27db2d3714dd38a8857e24f78083ea65984d072d.png", + "0x025000000000467C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/79f8c377da814ec2e1decc5f78176e643c10bd0ec390e561519a896eff460c65.png", + "0x025000000000256B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/cab9b95f1d14d062d3c4373d006dccf5679948bf628a92b7437bee8a64b06b32.png", + "0x025000000000256C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3b3817d9cecb9c37a970cd568c5262b83e6a75e1ed45c2ad53480eef6f4b8568.png", + "0x0250000000003FB6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9973418b7199301d60448e985e11ef594d76fd062df8c4439d9355af1b232d85.png", + "0x0250000000003FB7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e45c9c5a6bec05f18c8947fd0fb90616d25398e648fda4df430e04b70edd179b.png", + "0x0250000000003FB8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f18a4edca2e21fa5510ce0e6ce27002f41e51f69a90db068dc28ddc051dc218e.png", + "0x0250000000004355": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c960b432025be85cf52aa79a94a5003707a4a946f144ca089a66bcac9aa01ec5.png", + "0x0250000000004356": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c66ed51209410392b4e53c2df7d63297efc6ee7747c79f95789161bfb1adb7eb.png", + "0x0250000000004357": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/10cd9de2b81d314768a28a79fca46299f8ddc10b3fc219d91c9189fd99b26759.png", + "0x0250000000004358": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f57b403331a479f1cb553be7dd4a8e830b58269218c7b6dc2c281dccf858ce1c.png", + "0x025000000000435A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9f0f59de942dffeac1f8560df7ae32c44ea4ceddc5284ddc0dbbd62494ccc806.png", + "0x025000000000435D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c2ccc82113367c24618e8cd73bff7a352301df711937eb3c36a7362a6d60c96f.png", + "0x0250000000002569": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6905180591f13fa074c4b6b7c57a509aba94591ce7b57c60140eb5e0658ea6cc.png", + "0x025000000000256A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2033ff11d97d101cbf00df2d6b393583fb12f9feccc71ef3bd6977ece0a2c805.png", + "0x0250000000003F92": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7a8fa5d2d07de9802130e960b714489351c19a121a250ed27cb0c0f888af6875.png", + "0x0250000000003F9E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0803a0f10542d22f79177edd6de91f7a8f2cbdfbfe406952d8d17c71ff1d543e.png", + "0x0250000000003F9F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3acf5672cb966cd3221f5f1cdc47dc985be4654c22d20021a22bbf009abaa71b.png", + "0x025000000000291C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/de2f86f36d3b2016b91de8873cdb112d33fd175c0b8169b5c87e2d739618ffb9.png", + "0x025000000000291D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8d0db1bc8d23936d53c4619dadedaa91537f6fb1c444e9c06d79007dfee0c16d.png", + "0x025000000000291E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b06990c57b1c080241ef87f08f851f3d46d60e97a8707282a2c23d67247d947e.png", + "0x025000000000291F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/49fd55f0b01f2ea9e8582ab9eef2fff6d2bfc8bf352553eb8decf3c57739fa74.png", + "0x0250000000002920": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1124566579fbe9edc13ddf9188a2521f9b55dd2ac04b49ef40e73583d35bde48.png", + "0x0250000000002ADF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5296f15259ca414486ed992d41f46e82367a73ec8cb033425344ff2043ad3604.png", + "0x0250000000002AE0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1486ecfd80375eb02760657f7b54e04fe9a061fa89a516952daf0d4220cfb322.png", + "0x0250000000002AE1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2e76ad42d35654ce4194d45b840538a06d609843eaae3efa7b9cd888bae29c96.png", + "0x0250000000002AE2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ccc1a821f373fee77c5bbabb41e26965e3c785642eb4efec413f7bff70252d42.png", + "0x0250000000002AE3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3bb46d321c84f13ee30898303eb0fb5defcb92ac17fd5706478693fa3cf7f1e4.png", + "0x0250000000002AE4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1eeb1d4d00e217d62155ab1218bb1aa6b1962634ee8029028d44d00639ea040d.png", + "0x0250000000002AE5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/94d660ea4ea5b3cb93147d1916b6a8ee652e9db6adf78fd1dedbe173a5dd4eac.png", + "0x0250000000002AE6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b601f103511018578b559d361e46c9f56b51d69b49322322516352fbbd05b4b2.png", + "0x0250000000002AE7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1a74f21e22073182505d5d16c499ec21b912be22e6948976b9c75f44845806d0.png", + "0x0250000000002AE8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a5c1a63ba2c85dd348d6d4791c2eae9e8441a838473fbc0159d7619a614056dd.png", + "0x0250000000002AE9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c1f96f154ff6c34b5245c57a00ecc14b7333afdda3de87d17d4603cb791b357f.png", + "0x0250000000002AEA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c92810f5948614795d402a080c47a43bb605ac5007bcc9824f29bbb67916313f.png", + "0x0250000000002AEE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3be1e2cdf4ca68e6369098ad6b77b33c36b7ab7d19d7f19b96a76e40c89ca66c.png", + "0x0250000000002AEF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9ec17938d1bb47b4c696aa1cfb2209412deca6475128a61ca365dec7d6dc31ca.png", + "0x0250000000002A99": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/182501bf4c655b69acc9ad25cf82fa0f2a8024a8d3409b09d309eab4c2239e63.png", + "0x0250000000002A9C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4cbe2c51d094f8702f6be69568ae8cf16d36ede821c0f709782b889e2e615f43.png", + "0x0250000000002AA2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/84079e53351d8e48ee86b01efbcb0824a87a566f8936a28c1d24eef2ff15cdef.png", + "0x0250000000002AA3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/11dc5999281492f19b230c7ed6fcc5aab86445224eca25100c9b3f90634286c0.png", + "0x0250000000002AA4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/99217bbec437bb5b2d52a0c2b21a1d2c977744082e4c937287ed8a4393d0bf66.png", + "0x0250000000002AA5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f324feddff0fe7c492904ed9429403e983c238e7d9d238063239f7b14ac1e355.png", + "0x0250000000002AA6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/014cf4a572d5c428d722a1ba295944ba0a45cc23ecf3da42eb5c12fe86b5a89d.png", + "0x0250000000002AA7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/db9c54c012416a2353f6064be5eb52e14181f5d33b59a5273e8cc344a2028be5.png", + "0x0250000000002567": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e90f008c309a6f4813f0d0f1a005b22084e52e621e210d93f3844a51d0fa7d16.png", + "0x0250000000002568": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/694966bf1e66587532fa297a3b47766a1c9282ae12b36021ef6bb2ec300e7c20.png", + "0x0250000000002A5C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ecad91099c6770b1229652093cbaedb94a70b22c707eaa8b7133c27e69b4879e.png", + "0x0250000000002A5D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4f80d02c17298b7786b886e195863ec95fc3c15f80a69116459efd8de47b41df.png", + "0x0250000000002A5E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6ad54d05b712be0fb553831424d772780d7f4bdebd792357e8e6bd9cbdcf3c7d.png", + "0x0250000000002981": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fefed2415deb618855260b0273d56a3350bcfd9e1dffd444d72787b8accfac4b.png", + "0x0250000000002983": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/87bf30e14626b1fc5b7f7ef342ec51606d2c731216d267dbf32860c19a82e1bb.png", + "0x025000000000299F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a2b0ba3cc2eb70831095f45ff0925f1382331b1a676446b1a4da2e0a3a5cefab.png", + "0x02500000000029A1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fe78c9d2f6db9e9288673d993892d5f4524559aa75ee02ccb4c546292925cdda.png", + "0x02500000000029A2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7f41ee2dadd7443f52c652b23d29611088e3fb54ba6e8d899a87ac7301f0553b.png", + "0x02500000000029A3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/59ae6c420694afe2248e7240ba219c343914632434a5681cbdce62c898181b5a.png", + "0x02500000000029A4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d3b4614e9bf4faf6b4b02767cf0bd0e6032fa267e0f5afb328cfe4fa4e67fe60.png", + "0x02500000000029A5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d9c518cbc1c7133f6ebaf529923793776aa765d7d07059402bfb470fb81c1ef0.png", + "0x02500000000029A8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7d2f4711ed4f909581d7117cd9ffd9938e5b7a2894df26e702f94499a39a3524.png", + "0x02500000000029A9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1814ff5a16c1c60bf280176a468890994d09c6ab75658117606fc8ae2a7906f6.png", + "0x02500000000029AA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/084643385b277329a89144e946027f66db82f49119c7884802364d6fb9631c05.png", + "0x02500000000029C1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d84b4f6d184bfb9250429b4cae0d6ffd06e5ce32c031b590f4fdec8123c3e902.png", + "0x0250000000002565": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/524987438de5a6b3d87905b61444a3684882b3268a3d5def6ca7bb570f41a661.png", + "0x0250000000002566": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f7fc70760fa53c26270013c7710c0b2dc2c613151a87cd4d6b092949e2bd4ffe.png", + "0x0250000000002861": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d4f2aba48a3bd6c44ecdff4636a849cb7580f566713a55b6aefd695df02eaace.png", + "0x0250000000002862": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9e99ba4fe3109d4223d0157413756c0290e7a60676061a3d6a4b099393bea993.png", + "0x0250000000002977": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7c11e28cf4729584c1cc636d1a30b965650e86da99fe6a49dc72a96298e6b7be.png", + "0x02500000000028F7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/52302304353346792aecc62f44875d368a0c959229d656649379fa86aaf06904.png", + "0x02500000000028F9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/661b089e3e5fc7c991ab327f7a08259a20209cae156cdb9f471afb3d1cbbccf0.png", + "0x02500000000028FA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f921b7686b1053e499908b90bbe5d01b0f96426f751ce71f969274ab1046a87e.png", + "0x02500000000028FB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f0a98f0b87625f2eeadf0dcb33bb2a7ef0eff88209dc9776cc1a9023750f8500.png", + "0x02500000000028FC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3f869d75595c7b3d55528bda329e0a46da9d672912869c619238e37ad1949db2.png", + "0x02500000000028FD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/70652fca537bcd2aef36608fb308353c9004961672f83929ad949095e2192d3b.png", + "0x02500000000028FE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1be3dd07e7618931a8777faf0f0b49383365a23cc389404ffa3e8e7894d07675.png", + "0x02500000000028FF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3a92cdb8a1d3cad08730ed13359dba15ba71188036523f9fd0e5f854e87c8884.png", + "0x0250000000002900": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ae2a451d19199301df862539f45e2b9c339418b306f46c41279f6bad3bab98ec.png", + "0x0250000000002901": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7c78119ae71677f885c632545ead43fdc3d0863adec285e3053da00293547677.png", + "0x0250000000002902": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d50865d6f2f70c66420854027a3c26113577756cfa4df39e60d3341b874fb9e3.png", + "0x025000000000291B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ea1305eaf818952ebb2ae3e4d05626851095fdae242367518b15f723afaa6908.png", + "0x0250000000002563": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/64aae39b5159ae3ae0c1aecd86f24851026ca6d95bf8e09ffe795a1725e0638c.png", + "0x0250000000002564": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/66663b4215c26115cd51b21968a58b7231f03e5ef2e042bf9be4756d9fb8ae03.png", + "0x02500000000028C1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2a1608673a31e5fa25599edeba603a6aafca435e232ab45b9d668c86b4e12a35.png", + "0x02500000000028C2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e566921b22e04765dd66f6066105552dedc49fb2eb41767c24438ad4fc10845f.png", + "0x02500000000028C3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/28d92222172011d4012e1ddb0926fae752659822415c818169aa516772ffe280.png", + "0x02500000000028C4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/df883e561f77cf57c2dccda01c68ddee5bff16fb67e77497dbf5c29ddaf2f91f.png", + "0x02500000000028C5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1eb745d18f40881b9ab5325cadde81a8142bbf5adb27b6e5169e531ce1b6cb24.png", + "0x02500000000028C6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4ea9a7b827917a4a33dfd7c7517424e4ac9ea636e146675637275aa90c4a4946.png", + "0x02500000000028D7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f03f30d5114affaf714fc872708d408729e5d93ba91d1abc950d46ebcd3a0e4f.png", + "0x02500000000028D8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4eec060fc4bc8f03bad0e611243a94b2f96bcba928a265a77778be56614efe6b.png", + "0x02500000000028D9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/94f724c359c0780038b9a5d8c32601bb34177621d698c6c86bae77a157a9e680.png", + "0x0250000000002825": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f935e28e340d578109ab4f592395655d2f85e7c8304a653e29837a26bf592bd1.png", + "0x0250000000002826": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7ca103fa7984ac17829bd3dd3fccdb6e551b91f2f81409618e93a729f1ae4bad.png", + "0x025000000000284F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/99ebd1bb49f47d5a1c9d4ff4d80b031d9325ea203dbcf47b5ddbdfa775992747.png", + "0x0250000000002855": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e9510e804e002aa86633aeebbd158173e3432c32380a063b03f06f8f4aa401ca.png", + "0x0250000000002856": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/af270189b5b2039733913924cffe5178578b600c470b11c79c68935e58ac0e6e.png", + "0x0250000000002561": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8b2f65218627a55f3fd84247f2e8a98a5492f43914c3015963131de5b4a16bf4.png", + "0x0250000000002562": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f06c79e687a0d6538a6329561b90c6d99afa6208062203aee240e732413da785.png", + "0x02500000000024D3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/dda2f500dbb6078d26fa1dd3a0998d67bcf84effe125251a0d05345a4e2cca73.png", + "0x02500000000024D6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7d21d4ae099ba3299fef3688cd45e6635478bc9a0ff957643f873c18522b6839.png", + "0x0250000000002519": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8fd27a754fe4ab16a6c9658bd3589e22b4f643be93bcfb70595f80acb418c452.png", + "0x025000000000251A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7407ec3a17bdab6504f62561e74fadb7aac468f00c18a05b1d15bc57a1b5d1f2.png", + "0x025000000000251B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2bbcc58242ea92baf1eed030fd33d28acccbff5fc67b0eafc8260e77e0bcc9fe.png", + "0x025000000000251C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8320a230e037b735bafb5ee9db356921e663ef9cd27f4cfe7c428f100d924a30.png", + "0x025000000000251D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d0968dda29cbd0e4f6ac84911e3de9ed384425443f6e3cc60b4445104e997d75.png", + "0x0250000000002523": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3e543cb2753435f61c8d99ace53e2597caa82410cb60e00c7990959d516b3e6b.png", + "0x0250000000002524": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f92c00f445023cf4f47ea73b2fbe5dd39df12f3271d2fd72b91dcdbc3966d905.png", + "0x0250000000002525": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c9e56dfa6e14a5cb34e9b83f244c8805650e26a9b48f65194057502bd7df7463.png", + "0x0250000000002526": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/74d768bc6ef9e745fcfefe423bdea301ac3bc185fba128a83277915cec10c720.png", + "0x0250000000002527": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fcace1c678edd3b448d9abda25c3e08a8d901b679f4396c572f732d61d8f0e31.png", + "0x0250000000002528": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f9246b80a86bd7e6d2ff8e5939fcc475cbb0a48d03411326e518e63a0d95137a.png", + "0x0250000000002529": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ea30cc7c0fbe37b76b3d9d3cd1ad02f4ac283947362f3aad431e233a3881059a.png", + "0x025000000000252A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e72cf0242be64419c18749b39757c677211a9d2b6d973d77c9871fecd1c0f990.png", + "0x0250000000002549": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/dad151689a9bdaf165ac17064a285d63170812672ed1572698a2b807176754d2.png", + "0x025000000000255C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b37fed1bf924418c421c85e0923350691d00fd03520986ae20867d041e04abee.png", + "0x025000000000255D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/01270cfc2023102cbce549b58b7b3571d1fd5f328da50b35935122d9e2885811.png", + "0x025000000000160E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/49e89dae2bdb358f8306704114c80ea7f2a17c41285d05b7ac8a0f9d01fbbe95.png", + "0x0250000000001613": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/cfb83c789efa680df74a629d6bb3060d428ed2adaeb3fdab75cc79cc8d0b80e2.png", + "0x025000000000248A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/80a050ad65c0544eb4b09020c672d0326aa88137fdb3d4374c9cd28cd2525ef0.png", + "0x0250000000002505": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/155a82e7279318dc60344907aed290f2ea4c4387e73285659969668939979cfa.png", + "0x0250000000002506": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4e80180b133e9ca055623fbc8615b7c7ef199cb23032976e18ea18664d653ee5.png", + "0x0250000000002507": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4c6d56c955c8f4b05e0ac71c791c5f4ee840a54e1d98ee0210f2f43509e41d52.png", + "0x0250000000002508": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f9b1c56329e4f40495ff90dd44b49285e511cfa8d6e57d3abfae788accb0f670.png", + "0x0250000000002509": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/88da45175a14b80655370d285afa9f4dd3ebe5985e495039afa333ee0765cd2b.png", + "0x025000000000250A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b88aefde0cc379c435c90a2a8a63a4320434a15a51129f3999142e80a5aedc40.png", + "0x025000000000250B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b1a786feeaa657abf717961b63ab493edccaac62ebda3fc7124ead7f708fd40e.png", + "0x025000000000250C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/933fabb294c0fdaf8915c4e31a7f80d5dcf8436df81e944793927f5243598448.png", + "0x025000000000250D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/161056f3076d1fe545d6b01d3b24b7909370ff56aaf3155c7a8886e3a6e91516.png", + "0x025000000000276F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/89043e7f8b75c0d44337a58e336189aa1d798a03333b6b2b7430a9eed70ec6ea.png", + "0x0250000000002770": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/cadc7adfca6085a7be785cd3d08d22f9c1aab32b3c9fd4ba2d4f6528aaf2c284.png", + "0x0250000000002771": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5a72fff5086bc1f85690f9a15f31384a047c7beba1825b811001b52532417972.png", + "0x0250000000002772": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/42706189b51e608d176311b8f481dcdcd519ad163133ea5d4b06c7ec00e95bf6.png", + "0x0250000000002773": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1d754ab4338bb097f0bb7d69fe4f14c41599bc5b3ea5fa21fef68a5a1b4f9796.png", + "0x0250000000002774": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e2b6c80c4f71457f6da9cf1ffa5690e8c3f5235219e838caa5a86cbdf207e42f.png", + "0x0250000000002775": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/91524ff166e0bc8753939b9b0d82f7a645fd4b9088450b5510057134412db7b4.png", + "0x0250000000002776": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/71a4a9637c12bbe942f3faac73d7a87260f7ca6e2db7729915240a6459745135.png", + "0x0250000000002486": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/55cf242b83eb96ae7e63c48b9e294eaee04f622dd78041ea8f65fa54ceac059c.png", + "0x0250000000002487": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e8b113cc886b30eb5f04f82f14f8b70e95289d58f7e9401e33f0ee223870df9c.png", + "0x0250000000002488": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/05599278bd20a30542c2b31e00eed9ca2c47975e7d9b420fc5627d07f7da0910.png", + "0x025000000000160D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2abe38e0bb13290f65230eb7396880c2ad35fede7036789841e476f9448fb39c.png", + "0x0250000000001612": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/178f3898abd79d6b98aec6b304e3b83a12e2200cef47678d4343db502bdbbcaf.png", + "0x025000000000229B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/79a2a98fb0477b14f1519661c978047cfb60dd170a770603aaf48c14197abfa8.png", + "0x025000000000229C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2ea20195e00bc0520707cda335530aa94deddeb58d0a33c6f7487e8660272f10.png", + "0x025000000000229F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8b65eb30d4cee6bcfd4f1ea4bd3cc907e7740113e7808bd6558844f5d35f6df9.png", + "0x02500000000022CA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/eef7b10235d434b2d12a1fb6d2025369a04c948e24061640a234d2fc76ae262c.png", + "0x02500000000022CB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d6b12358c7f7946dc251cdce4f927fbfcb3ab2a2a101e4c3c75649e2cba1b511.png", + "0x02500000000022CC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8962ec85c909086b1121d80a3b1b07fdd50fed6ddb5a0a0414aee7071c35cf90.png", + "0x02500000000022CD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8e6f4f9dd0b6c20af49a2012ae249ce514b78d0f7be173b6b21f98f33dd0cd11.png", + "0x02500000000022CE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d8c2c270294f5a8a6901b9e93f26d6f5849b11917b7aa2e1f7fcae2e75cf5277.png", + "0x02500000000022CF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e70f785d4b3aa1f14f3fb77c23d73c7e93e9a9f9772efa30dba77506deafad1a.png", + "0x02500000000022D0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f0726728d41dccb816d1c8f26a44b0cde9a6d86ba0ed34b9ca6b70cca3fd618e.png", + "0x02500000000022D1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3db939909bd5d49db54a7083403579b036bcee8052a5d67d8761e6e71e5b3b85.png", + "0x02500000000022D2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5da7ae2171042c86f216064d574c3b241fcb9fa38b1317a27af205838f613240.png", + "0x02500000000012A5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b53cc3ce443172e920cf73eb63983ae2e9d83204045ab24d74b8a79eb3259fae.png", + "0x02500000000013A5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c7b1700de3d4eab2759669be23ee1ab151aa7ff71f59de8a1e830ac614724cb0.png", + "0x02500000000013A6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e38122a4271a0078c31cac82865523ea8007cd403528c85b0ab3097a9efcf91f.png", + "0x025000000000160C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a0f89851fd5baf237e98c03ca27b3fe5b28f73f5122e304ff584d0a148baaba7.png", + "0x0250000000001611": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9ec38cfbf0569b6691c08d05752701cb276fc847f2ac8f883750674444e4d506.png", + "0x0250000000001A6B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0074b57b0c230dc1d15835c1b950cef3ecbfe6ae4f265eeb3513cff9a022e237.png", + "0x0250000000001A6C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2f449c650d5f0345008779cdde1099ca3b6cd1747eb46a5e07924d4b6ad4002e.png", + "0x0250000000001A6D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5241d158b8d791338db31454b71a253946f31ecd0ca5a117106ee44756bcc776.png", + "0x0250000000001A77": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7dec303b723bcebad2ef46aff228f2fe3cbb6f8f6f75f017a795f264fd83f4fb.png", + "0x0250000000001A78": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/85df5bba640196efc0cbe9de5c0c2462b91a62e42ef8f63f2e8eaeb6ef48db01.png", + "0x0250000000001A79": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/367799965169e201f0fbc0f831282ac978d82848a1c1c08a3b51d8e35acd3358.png", + "0x0250000000001A7A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6a9e54396faf208a11f0c95d0c2ca368fcaa2cb1b1371ed86223a616a1eb6967.png", + "0x0250000000001A7B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ab186ad8e51d0991c2be3e63c18820d61936eed20bd7060cec296c9900338d19.png", + "0x0250000000001A7C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b1212f2f737d4a0d35344c0a06f2017fc2a8638a38240ea460b92bea5b283924.png", + "0x0250000000001A7D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e836575c9e0f55e7a7356d1374850e6f2c0c2c0a383cc36450d32629d8b04c69.png", + "0x0250000000001A7E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9bb2990e7fa1a529ed21c45960aa145436160e1b7645f5a3bcc73bae54636897.png", + "0x0250000000001A7F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a1d9424ceb15481df793ba38e07d7ac1839b94549a8d4f687b138bd5eb730cd9.png", + "0x0250000000001A80": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a425df15709380b61b31fded224a05d47331f950951e6a22cf1b04861ec05f11.png", + "0x0250000000001A81": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c408e7f2c7d3af380ec1870e59a9adc9f98308bac1031043d994756c530a6172.png", + "0x0250000000001A82": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5d04259c214a20e7a752899f728f9981c9413265dcbf4c7061075ae3049c595a.png", + "0x0250000000001A83": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ba05c8196c86770daeed1b4b77d92b1be2efd6f419e340a9b5bbffa9351ab9da.png", + "0x0250000000001A84": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9b60dfd29138678f7e8e249f531b8dafe9a4a7ed58a1ce46ec5b45a7d4926c23.png", + "0x0250000000001A85": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9794ad6e652e269dfac97bcc60ae8bf80a6bbb6c1931bc1d3c3e5447435f6986.png", + "0x0250000000001A86": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6aeadd470fb9a342f4e25920a01afc2ee8c4e60470c45d13ae9a5969e1b68549.png", + "0x0250000000001A87": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9bd7991cbb140b577f6a7ee94a1ad386a917e467d2362984e343728d60ba6eee.png", + "0x0250000000001A88": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/35fd650c87a5a9c4a7495ad1d1ec426f274018782c63b0aa4f3381f677547669.png", + "0x0250000000001A89": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/50ff3cda325f4d8b6350da08bd10b7a2c747ccce472e877b3925c7218e230fe0.png", + "0x0250000000001A8A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4b6ea184db351d3ddc7515a366b6806102767c20762723caa1bddd84e6952936.png", + "0x0250000000001A8B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/45a1c52b2f09e3a4a5e6a07bd5ae95111feb0fcd26d88c6481af6d21005775a9.png", + "0x0250000000001A8C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8835b110daf525a05c0536777608cc54065b04977b802f46a90f96de9a2ab213.png", + "0x0250000000001A8D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e004aa9c6f6d8178fec4b098362a94cb8d8757b0df0a625ab93c05305a6b87ee.png", + "0x0250000000001A8E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e34dd3da42e4250992c3a6b9049cb537578675c77f477eb18e444703f8eac61c.png", + "0x0250000000001AB8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a08085b4ea51fd2926da9061cd37fab35d3a60d4c65d7e805b221c929aab6cca.png", + "0x0250000000001AC1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d6730a33edb285f98ff3cae1411f2c90d732e086269bbb5ab43b1dc0ee781c1a.png", + "0x0250000000001AC7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ccf1c7cdbe1cdcc1b4626892ca5fb8f1f7d4907d54c232f2b1f8493670a1c715.png", + "0x0250000000001AC8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/dd8894f291790e7a5be99672c470b05b8e70057772a24734d1c9aaee87d06f08.png", + "0x02500000000019E7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/600a5cc024fa3daeca4eb397e5fcec66417a12ef47e2920dba1f835c25a7096c.png", + "0x02500000000019E8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7c7888f57f083740a45dde2e8940c4ea09ebab21a3300fc426cd9369e3f0048f.png", + "0x02500000000019E9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a449eaa113c7c7d87e37e3abb36a27868d3dc8c6f53a054688cda1b335543f9d.png", + "0x025000000000160B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e19e33a22ef73c086e595750d9371a15af31313b8514869e515c6c741ab67f23.png", + "0x0250000000001610": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9a3f1ab900bccefe73ae1aa76cd57ffbd48c00c770c73e0de6f9589bf22fe3cd.png", + "0x0250000000001A5F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e402ee1b403fd7453655834fadd82e7b5ae68be4e1df0f62f4e0acd5c3fd70c9.png", + "0x0250000000001A60": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5b8fd49e4305b8b97466c07f000137bb22408fe5306eba4df62cb1fca29f14ad.png", + "0x025000000000196A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e263850287ec35844fa6ed22105e7900f5f4267caf8ed61a6eaa5a7e709e477e.png", + "0x025000000000196D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/148367e5076c8f2b1f294d5a037dc6cd0ae8575be8fb426fe777074e8d0c407b.png", + "0x025000000000196E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f122304b88d55a1ee4a953887c009fa8670894076c1dd594ca97872600435460.png", + "0x0250000000001984": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6401283b7aab2a2a32f8dd7f27c0796722b08c35ca98788ae08209342e2b1922.png", + "0x0250000000001985": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7bbd5f6705126bc58fe43f1fc818a6c25e1bf06842930b5634b1d3ce7595fd31.png", + "0x0250000000001986": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/797a2757f7ec0294e233b9ba3cd063bbd13f3f155b54c200c14b6bfe1fa14981.png", + "0x0250000000001987": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/99b83ec2cf96cd9ed0f146804200a3d841446314440fec10933a9c45a516b820.png", + "0x0250000000001988": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c8a4306354ce3e95d8100102bf2e53176e1f591553447f9bb945edb1003bb6e0.png", + "0x0250000000001989": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/55595f48e9bc91a17b618253b3fff6bc38e7bd4637fdfe17c8561337147b49ce.png", + "0x025000000000198A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/863460a594698af4bd12c876684d393b6e674d1e9984a5fb5a99dc2090214126.png", + "0x025000000000198B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d82784da2a3020676325cfed19383fa1edbc69d05522838b723b6b402766907d.png", + "0x0250000000001990": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/051a4a47e38705cfc7e0c6fc6e2c7abc21ea0c3e3688e68ad3571167f779db18.png", + "0x02500000000019BF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fd901fbc7a3f1fbd7fde19d5fcb4630d0902b0ebbcfa137c2b3f29a602dc70ea.png", + "0x02500000000019C0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/78949d3078c4410f84196f988a675e23c51fd52cc672f3830614f7cb6eaad502.png", + "0x025000000000197B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7b28c4f87aa9c23c42c90e3d0e3f2ed26e36c6b917c8f07c0d437702ea7a0dae.png", + "0x025000000000197C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ecfec327547caa37bd4492b4655cb8f78b52c50ee8105a0135ec82144839fa1c.png", + "0x025000000000160A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/336ecda8b7aa555cc29657472417c5fe9fb366ca2bdcc8bb6359735086379750.png", + "0x025000000000160F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/086695b3a3e684d0c7a604d7f27b6ad24dc7791c11789c8b5dc9167afe740429.png", + "0x0250000000001730": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/36f3e2c04aa5575f7297f1cc4212c341b53a1e84ca1adf7bf48663800517e560.png", + "0x0250000000001731": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c7d8819bb0ee44f580789a4b4aaedbb43b0370422b1473f62db3cf60744771af.png", + "0x02500000000017A7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/45aea8fb20fe4c35753c8438e9dcea44255fa00e8afda51eac80ece60fcf82c6.png", + "0x02500000000017A8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/220234a20cce644f90ed906758b94bb4c4336c3de9e4c6e39b009f074a5ed6e1.png", + "0x02500000000017A9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3202388de96b4e84266097d6582f120d4357d0355e913314ccd0092499587445.png", + "0x02500000000017AB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/de2376eedbba4a35b797a8981cc9d616129a7b4b1762c0a7cbcebac5fb2699a6.png", + "0x02500000000017AC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2feaf5310da8fe0f0c9d22e79769ba91ac022fb3c539b55806159b90e60700ec.png", + "0x02500000000017AD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/054ba7259ff75edc3fc69dcc1aa564af571c627af1b97f3c45d675a8a7cd6e1d.png", + "0x02500000000017AE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d79e1302d0323088a25e14ca7178213da12e449f8ecaec3e9ae7be97519f610b.png", + "0x02500000000017AF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/37ef95b4f8f982802bfee88c99f616584b2f9c9d26a4704c30aee983076bdf48.png", + "0x02500000000017B0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7b224e8b56d378963663044dbb54f6f3583e0068ef311f38a81be6719e3a874a.png", + "0x02500000000017B1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4bc691c7ffd747bdd535568f0aceb9f3593269243730b8004d4c1916b3d8ceae.png", + "0x02500000000017B2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/19fd75cfa836a031f28d22478b60c5b5fd4585908182a7ba65a68206c4d1c285.png", + "0x02500000000017B3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e36f276e2514188c07bf5f53c30b4ed62dda9f8020a36ab2e2fcc35b87a024f9.png", + "0x02500000000017B4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7c52b53f5bbd93faf219120b6e6e50db14462222e42b524f962ff0959fc39ead.png", + "0x02500000000017B5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/cf1ce27b995348cc9b426d06f5519e4a90d0ff82d9630a8b23a7d15de3ff3e25.png", + "0x02500000000017B6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/dfb8175e3714225e4f364b44c13bf14bc68a77784ec86208faca02364a4438b6.png", + "0x02500000000016E8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1684145e1f3e58e3def892cc35a60ec387400f32dd546c5847b6022b91429c45.png", + "0x0250000000001717": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6982849c36d62a8eca1536a9960ab252949e4907d983172b4d9eee7129eb52e0.png", + "0x0250000000001718": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/cdb4e4c4bc3bfbe330c51b7e6aaab73484d553d18c97d2949223f38411869c11.png", + "0x0250000000001606": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b77686405b1454cc29c3ced4c0880abfeda7a063f6e78cd7de775d331a86773d.png", + "0x0250000000001607": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c85fafbfe0c328a2bc0b336ed6f35064870a620da45ae614be68ff1f3445797d.png", + "0x0250000000001642": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/347fad61d45f79024a36a2aa86800bb493be444bc4cec5347f3cb25747e3fe86.png", + "0x0250000000001643": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6f4c0671bfd6447d4cdb3c28bb4eeeb1a652fb3650f0ef7fae582834b4e5a02c.png", + "0x0250000000001644": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1f000ca2bbcf3c9d84437d1c2898186e23452b654e709b3f00b2c2e9a97880f0.png", + "0x0250000000001645": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/59fd0999dd2c6bca22324bebd1c893104c94b49a18c70fe1902930f7a34005ee.png", + "0x0250000000001646": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/35b0176f13d17cd2df860e80e76e883ef1d219d15d97057d84b2c5280558ce61.png", + "0x0250000000001647": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0eb44046749ea4826153f5f662de693251f7526ccf1f9e7513a95fa0db3db9e0.png", + "0x0250000000001648": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ff207c525744de69dc3528edca7e5696763dda0f1a7549269cf859a61b691bdf.png", + "0x0250000000001649": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6b5269a27bd62db4183381b8c0eb895d087f4e1308e63c7149f4e3d3d7e7ecac.png", + "0x025000000000164A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1f4433f149340322d66ea9ddb11b4066bc2c44d070e7e86fb0b8f519a4c6556e.png", + "0x025000000000164B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/054a7a54b76d831361377dcc7d28cfb6a31b4c9709752b0dc0dd6d9005fe8a2e.png", + "0x025000000000164F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/27255709c9dd983920bb2475b48b8509c57540817bc0be9d3d202c362a1ecf01.png", + "0x025000000000169F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e2c2063f99ce6eeefa85477129d38a254b6b91841d1246a8a0c44b3e4910dffb.png", + "0x02500000000016A0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2981ade08c19184e2821b1fb5d3d0b56462b98d71751f3e4501c39566b0ec07a.png", + "0x02500000000016A1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2bd7c546fb5788ea8ed05d0d71b2a268afc42c7169a8ee7d7da6b85095049001.png", + "0x0250000000001373": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/cc549163bb011c592c78e6e054b06a73d4b00cc73a5d875fffcdd153d9ca2b6a.png", + "0x0250000000001374": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c2b96b7d4d633f1ec455bc4cfb5c7ae10ea16d106b2ce264238c6760f457a671.png", + "0x02500000000013FD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/efb3fa31f0c7a141928da914bc566753aaeb80c07067c10ee8d9a52ed28e4176.png", + "0x02500000000013FE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f5dcd83834fc807c6d1452479828e57bf5a0c630a57e1f792854efc01c0610e6.png", + "0x02500000000013FF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b8c52b1372f6072a228744383a9011ec2504a567348a157738b15a8bf347d4ce.png", + "0x0250000000001400": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6979d426551fe8aa73542f7ab6e3ed4dae1091b7c27c62858e4a7f80c82f8805.png", + "0x0250000000001401": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7f1a3f3254ab7718eee681858ffe966f9e70d4c9ace9ad48c628aae446815326.png", + "0x0250000000001402": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/47f15e819f993788ef9101ee10d7461d35e66f343d931a9a61ce902d25340efb.png", + "0x0250000000001403": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a3d0137926328df8535d59f7f9f1cf1762e2e74e54127bc8342007fbe8ad0f2c.png", + "0x0250000000001404": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7ec72ad9702a71b8c37b4c7363cbfa27ffa3e2179aa3d08f7c18101ad9090019.png", + "0x0250000000001405": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e5ae000b704c10ba688598133351f1c5d00cc071585fba69631401c4097fa10e.png", + "0x0250000000001406": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e533eccf89196525454441ac1d2ba6a1d5972f29de6b3749e65c4931783bfce9.png", + "0x0250000000001407": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ef3756b07e0920efd2cafa90cde0638dc4df5df22d6ec12f96d623aaace2bdd2.png", + "0x0250000000001408": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/69ccb85baad90151253a3d5847bd72024fd26a7f35027345460916316cafb8c9.png", + "0x0250000000001595": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d0386b290b50e2ef65e6103feb464aee607b38dc6e21a41c3c6334c8a1b57987.png", + "0x0250000000001596": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2d6db67d1b4054cae55cbfd475e5ddd175aba68360bf53369328566967a857ef.png", + "0x0250000000001597": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/862fefabb68b85dffbe2b6f58b925dfb719bab1a0eb43e4252fe48725ca0452d.png", + "0x0250000000001598": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/10c21dd702b2b6ffa7972c58124b22910742fbdb3421c5551ad33184dc57b67a.png", + "0x025000000000159A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6972913047e1e0c40729c7023e0f06d955e57a4122667ec59874b17600d0e471.png", + "0x025000000000159B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d2a23cdf972ef4d7c7b59e9bcedf63f956848ded46668ed137ed40e78a617d5d.png", + "0x025000000000159C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4cb0edb3cee91f3849cd8da4ac93002294c56f9440a5eb04654466a7220ee63f.png", + "0x025000000000159D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4f6fdc40e06ed8e71da355b5efe070bf7ba3229fb715ef902d659ed5b40a379f.png", + "0x025000000000159E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4ea76c89eb6289c7ef44dea950849d86df1f25b40f41df7382966a735f1de449.png", + "0x025000000000159F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1577c9f1911911cabed4e3c8af50d727583aa99fde44a116e0b28e4170e658e0.png", + "0x02500000000015A0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/72ad9aeea0cfb21578ab02d96648017c4af359fae0a72f64e108eea42b0c680d.png", + "0x02500000000015A1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/db9a3e57905dea8b52b436becd7702c422a83b29df8b6bb42c4af6a813f25d26.png", + "0x02500000000015A2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/60f5f3c67f42c4f5c07cb1fd3141412e5880f18541d5f7ad5620485069e8554f.png", + "0x02500000000015A3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f81240254299618a055bfe277a274c23c9f11cbca15744fd6ca61936153eddeb.png", + "0x02500000000015A4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e2cd696effaa2e6a1e01ca4b28f0d752defcd84a95adb7963a758c3c68ed0518.png", + "0x02500000000015A5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ac5d3cf8bb5b98673f0170564a2cd4744fd1d726cce810654a117f57c1af46dc.png", + "0x02500000000015A6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e9c98492240f4150b105903723e3219f304967f30f478582f00afd141db9944e.png", + "0x02500000000015A7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/62014866be67875fff91559567dbb07707b917956ac23a03a515a89694c3813b.png", + "0x02500000000015A8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/432b7119f5dd04bd82816d4059a54f59e35be68976a0ca3335743dee1d5d7f1a.png", + "0x02500000000015A9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d8104d548dc680cab188462297b899e08725b95d2c6614e0beec0e27e073f7ef.png", + "0x02500000000015AA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8d17607377cd961dfbc2b8f9113b19fdc0e6b2d16bf5eaafd827c7841ea14705.png", + "0x02500000000015AB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/19fec469edac47a04f0b7097eafd900bac06c0c079f1ed200d8a66e1a153fc18.png", + "0x02500000000015AC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/57b6d9773f244f2c75987bf6879db5ce0bda4c446dc0d5a9141321e46ff232f2.png", + "0x02500000000015AD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/02a7f16e6c0533057e061967998f2872d26415d52ee0fbf042a0fa415c18d1ac.png", + "0x02500000000015AE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4d2fb9d71bcda0503a5e3dfc8dbf0808e727c679b2ff2fca327b4e66f53c56f5.png", + "0x02500000000015C7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a22a66f11b0b38b312cc213d8fe40b16a48a8ce108427cc72f5fef960fafcc24.png", + "0x02500000000015F0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0af24fe3cc75baf0362ea47e59f3a30c580abb9282837c661cf4a43c8fc690d1.png", + "0x02500000000016AC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b72265fd18f7021af62fbef334c8ed38035d92a5f2ccb0e4e233df925d8d8731.png", + "0x025000000000138C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5ee144ebdc0ad2d1f10b95fc2613c3b92ea4d89e12d0c6469ceac122cd7b4f8f.png", + "0x025000000000138D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e5480f3dd91a876f350b0eb4f82ecf877dc98e82247af1c8c5bd5d693e754407.png", + "0x0250000000001398": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ab3744598a1318d4ea690cbfcf77e3f5312ab26fe74bbd86d721c6392cf3ab34.png", + "0x0250000000001399": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f119602a77e523b773756c5fa0f7af374cce2389e31d9250c2a9a4737834546a.png", + "0x025000000000139A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/680d987147e1a5430e12e044c0ffb5d1dbef9b6843088b896127f1a2dff0f621.png", + "0x025000000000139B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2680e6b484a52f8cbb0ceb9ec0043f76f7c61b76355eee5469f597fe3ce1a3dc.png", + "0x025000000000139C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1ea8dd6f4a7fdcc2ecc490134caf0675198cdf0f11df82c12e2a5af4f0b0cb57.png", + "0x025000000000139D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a2aed1ff3a528f490aec628bc6fcaf93ececce24fb3bdf91d1314324b903fd4f.png", + "0x025000000000139E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1e539809966f7e874c93faaa6855578842359131d23e744837e12756fa569acf.png", + "0x025000000000139F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/753f114bccae60ea93b964ce61e3b7ffcfd535d1cc4fae3fa3da32a6c75d32be.png", + "0x02500000000013A0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0e38b5d2ddfb242b935b80c70ee21e123bfdaaf121a90957f49c1f67538454bf.png", + "0x025000000000141D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6c921c619db1aed97af3879f775453aefc6380f4bf0e5545db346186ec3f2200.png", + "0x0250000000001321": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f11f2e2fce79894cd324b7656e858582a57edccd03983b6fc4e00e19fe9c2520.png", + "0x0250000000001322": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/224ffda466ade1843608df7cab9ef1faf17be4c57282bf4aaa3b259a9d0125e9.png", + "0x0250000000001323": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b1c58c08077c994b1e81b517553d6261d8e951a4a81b542ba4caa55af3debee8.png", + "0x02500000000011DD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d83a19680b84eba0c017d24e00ed2bf3dfce5942a373b6f8a4bcbc8bfffa976d.png", + "0x02500000000011DE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3ee592df727fd4e528e5e75ff2badbd615ac2e487a44716d01cd01df4b3d76c9.png", + "0x02500000000012D0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c38b6d6e2b9619425b7e1a9fd18ab9ccad6a7d71b41a0972350d567ac0866408.png", + "0x02500000000012D1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9d795f1f1b09c60e9710287ec5dee44b2cd36aef46e34fb30a57c563bdf21cae.png", + "0x02500000000012D2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5122deb567422e30496f656856f70d028bfc70a89eaa28d8ea662308b5df42fa.png", + "0x02500000000012D3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d2cbca50bd3f96c5f2e01494838b82a3797ee0bc67506aa1118748397b550add.png", + "0x02500000000012D4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9586d0055fa3edacacf2f8ece77db9d3c279378bd4e68f07222091895c009f7d.png", + "0x02500000000012D5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f5a1929df2af047300e2fe438c1a6ee6a349b47c82a86198540ca43e89ed5ceb.png", + "0x02500000000012D7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3d0d7404841379798058c4bd895fa04bfc12ad628070631af5815143069ad8d5.png", + "0x02500000000012D8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/610b8d3a79c899c02d459fc838d044d89b4b1ceb069f9d30a90acff002dbb52a.png", + "0x02500000000012D9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fb5eb618803e9434196eafce40c5d6c87ac386b6518b2e9791cd58338d25edff.png", + "0x02500000000012DA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6414b2c264c12d2462032f122e2cbcfde9186a81a6156423fcadcfa63c31f71f.png", + "0x02500000000012DB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8d85c969c1f55c60a6e49de1f81edc711646480fb652002efafdfe7f3d5fd13d.png", + "0x02500000000011D8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/568d9eac11dbd38ace5fb0b00b93247a713957a51cd94cff0508e42910f90d7a.png", + "0x02500000000011D9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b67e5b95579ed34945ad42c3bd33cf49d964c3aa173c4e7a9899db82a8dedb72.png", + "0x02500000000011D3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7ad1371f7e64b7d5e84feaf4f073500dac8e7e9340f6d2462e63207b9fab6103.png", + "0x02500000000011D4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6c01dfcd4738863f50618c8a23bc5c218ce4b307b09dfd8666eb3e96d381bde8.png", + "0x02500000000011D5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/84a55d7960c87dd00bb10ddf4bfe84ff99001514c3b4d239b9ffdd604022094c.png", + "0x0250000000001235": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7a12f2d1c5a7c036c00dd63593ff398b2e6bc33682391a21305cbcfc1243202f.png", + "0x0250000000001236": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c4dbc32df146417fe2e5612d7d2254923a9cf57131400a195e0da714379e80d0.png", + "0x0250000000001237": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8cf3bfd887450da59f9100f489a9576b7af46be8666253f623d6a279c510b671.png", + "0x0250000000001239": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/94db497ae73297f5dfdce4e0ee1dd1da68e5abcf9c8d41d6761f39cc723e97f1.png", + "0x025000000000126F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/edab49c38afdc2d602586287ae66b2d1aa71d3e3dcca3fb15748f6dc07ec113f.png", + "0x0250000000001270": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3ed2311a8b4226e84785b086f6a03238a524e0a2c266234fd7c3b1443ba7b07f.png", + "0x025000000000105E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/acb2e923f49e680cf3b4a12df2b3f5be0605af534236e32c0582442f7673ec30.png", + "0x025000000000105F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/666d9da57b6cd9d7fc90ed03a74cc5c957b7803ab006c6e200577c8b381085ea.png", + "0x02500000000010FA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/92f74271ceba47b5b575e5d93eaeb4d9471a87eae6d1a285e0366e07bd244a43.png", + "0x025000000000113E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e09bbb7736ac5dff8430c88f0237cbcb9b79786ebd96d033177e4b63e1a58923.png", + "0x0250000000001149": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/496370fb2b62f5d77a9942761129411eac540647a5b87cef3ccfe10679682944.png", + "0x025000000000114A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/05ef28392a54d57b63ee7d46d14585972308f3a00dc9c069535a21b1bfcebef8.png", + "0x025000000000114B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9c9cf7e0af765dfc4126069890d58941f6a17be6aa1df8afb4df7e2a3d832892.png", + "0x025000000000114C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/549de3a14feb820d5aff445e26fa078c085e9664817e185c9f5ae786f8ebafb9.png", + "0x025000000000114D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4c946f0cb8d847c2997d0ff63b635cb01a717bc395036971f30450eda2d03dc5.png", + "0x025000000000114E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/40751f45ff50b8e0e94e5c015e91edf1f77c47dc3d4953b971fb77f1efeae9b6.png", + "0x025000000000114F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/701bcd1e3903a60d4a370e9f60faa6de544eb90a62e3662304df01d4b82d5d75.png", + "0x0250000000001150": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/339539dc46ad4e3ecf1d4eb8238bd787c03a9ab3d527a32c226128585de7a2a6.png", + "0x0250000000001151": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/dc34b87b35f6bf21776cb1b7afe7345e573a90f9fd61b24014c675c1ea20fff9.png", + "0x0250000000001152": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a54a81fa1692ee0c975fbc71635676c21a0cf10ef1317801809610104cb49e0b.png", + "0x0250000000001153": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6b6e9fb77fa505b31be9d77650f42b44f66468505bd2946b92b35754106c0d89.png", + "0x0250000000001154": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d4a029da283b4f710ee8319d148e151c55e66390750905dc0069d40c28125e48.png", + "0x0250000000001155": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/338f62fb76102e569b00238c4145eebc9d485a6857c03889a643817b6c4b908a.png", + "0x0250000000001156": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8c2b678198828bf2ed95730785c767a778448a2474327c9901fecb6f6b3f911d.png", + "0x0250000000001157": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/20650efb08f89ac76a1c2e5e4c2e040660ed7b55626af3767ec72fc4c8bfebd6.png", + "0x0250000000001158": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3d7762345993c80df717dad437526a3f7197982ffa246c2bd9688d4920a11eea.png", + "0x0250000000001159": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/bbd0625cbad9f7145246e38db89e3877190dd333a635a4051b9a536c48afe0be.png", + "0x025000000000115A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/dc39decaa7780bbb08b38e2e9331b7a604feeb6d24e8940fea15a630c85d6f4c.png", + "0x025000000000115B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e5b422d28166fe8e67ddab7f64bfcfb6d78fd6609d0db15550f1e80e96e511ad.png", + "0x025000000000115C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/04097daa03cfaf51c8fb28dcb4bc2323d4dfaec74298ab929eee7c991916c2be.png", + "0x025000000000115D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/56fa8b5e07a7639fe30b149638d2d790c1227a2c91ad7c4cef562041bbdb776a.png", + "0x025000000000115E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/cb27482de412bdec9ee10835c1433b805e996105b49300fa42cd6ff11e56b744.png", + "0x025000000000115F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f574d7ea23050059c401ef8eb555a7f7288cb28ccf43aa19234010faad17a2f4.png", + "0x0250000000001195": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e140608ce5aced2bf91234f2b67330e77de36915b5353fe1b98f9544fc2ea198.png", + "0x025000000000106C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d492645a7b5324198e18e148f9dbe1d059cc70bd91e63e1fd9ce7006a9c06e4e.png", + "0x025000000000109A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/17042e76e79bafa3d5fb93207ccf4799722d5ea93ec3588107ee2f8d598db4fe.png", + "0x02500000000010B4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2888b6a10e164aaafc10eccba5f81562fcafb610ed9cbef62b50238a26c08e5c.png", + "0x02500000000010B5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b9b1401d760e592a1b892b7b581b414d9d98616629d8394c24fda4650485463c.png", + "0x02500000000010B6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/188127e9f7c923d1f338e8facbf077f2b78b88479e3284303eb996bdc7da12e3.png", + "0x02500000000010B7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f7b01f45f4fc3a1651a6597e9d881899cd7d4b005021d822f7e57cf1d9bdffa7.png", + "0x02500000000010B8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a196371faf2809a82827a1e3224696e6b441a5f89d6522ccc498830d009e0c66.png", + "0x02500000000010B9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/867041e5d32f26aa178d3d7166dc3ea72c2a51303c44d70b1624a24bdf72f12d.png", + "0x02500000000010BA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9a50891ba7a4d33baf883127d1be6f723c3bdbe516d63febefacfe8aab69195c.png", + "0x02500000000010BB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a268cfd83edabc5b6e99173d0cb82ca3a2a3d2a5260c535ad190895a6a9d1c3a.png", + "0x02500000000010BC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3172722e5f720acd6ba5b9cd5c536891501f41740fdd1a9d0f74a99172019913.png", + "0x02500000000010BD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/00f74e8bc78e708adeb5a2ce36767a21debc75b1e127dd6c07b1291f63d0eb44.png", + "0x02500000000010BE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1d3d65db79610b925157e7fecfc8f92d86394e4323cb06da43fdf0ca5d92e7cc.png", + "0x02500000000010F2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ba68bf9e02dfc127d34fcd0af6e1b92baa3da2c377772f66de5bba19adb6918d.png", + "0x025000000000101C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f15903be0b41edae5a4178bb18c3379f57cd2d8c5316893a1df8df13ff7c0d71.png", + "0x025000000000101D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7f954f9e480b87bd6b3e45f477f63f70784f78a0a9fe5ae518ae840d72cbd1e5.png", + "0x025000000000101E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b368d52e35fe3e3235fc04f1a1a333b1b60152cce858b8afd6f6c83957f2c3d1.png", + "0x0250000000000C8D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ec8b1e9e4e39e62a23fa128e1c0b05ca29854f70f4c416140a952f59be59b63f.png", + "0x0250000000000C8E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2635c7f503c1c0974198f9fb927d15cc6d5196c70548cf77155f99d09e6f6225.png", + "0x0250000000000D57": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8ed6a0857e18500e868f5eeed6c38bc22ed4c2483181d14be612f9958e4e35eb.png", + "0x0250000000000D58": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0882ef6df62ee6654d9e7860c92322e8b81b471e576a04debe0099ad89e56d8f.png", + "0x0250000000000EF2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/df6f17ce2f0bb2f17c489aea8d267bf9e0a7f3376ae1aa67108b575eef5346ce.png", + "0x0250000000000EF3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/075afa2e1357a7aad885f398005bb3d1d83a3da5f09c83668d41b0366fc9e0ea.png", + "0x0250000000000EF4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/72d75377b4ebd99cd57f37865710a3d3c5214773e19e0a5fda954bafbcfbfaed.png", + "0x0250000000000EF5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/69049b31d56c25632efe6eb22172a5993b2cc93decdf0b6e0f90e4a2a4ff1eac.png", + "0x0250000000000EF6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/144b362b1d8dc52230e730e069d1b0798bf2b1166d400818f081487d2227f923.png", + "0x0250000000000EF7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3ebe52da087d46a064b7c3ee5236cad7a6bed9b5a4cfca0d28cec2b9ef563a35.png", + "0x0250000000000EF8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4f9f228285de696056e17cf5213046da81324411d38ee1adfffe43382f67b4da.png", + "0x0250000000000EF9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1399cc09dc6d8c9396f6e7ae6a48bced9eab05d12a9c2c627b02d3332dce4788.png", + "0x0250000000000EFA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9c905a35fead3fe138e4dd787eb7e72c1b3f6c1bb358431282019eec50b58193.png", + "0x0250000000000EFB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1a4f18712189ceeae9774e8703a42af5f2cf6b40559877116cf499ad57a1088f.png", + "0x0250000000000EFC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/041663a0c03663a3cafc559d1ea5f2e7e804e2657b1aaada3da7afc833a8f854.png", + "0x0250000000000EFD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/cd3841e021967732eced635d6c12d51fb87edce82970d3d41470bcd4b78b9a7d.png", + "0x0250000000000EFF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/05da61326c8d81a46f0ceedd7702eeae663597ddee3a9da63e13f85e533a9326.png", + "0x0250000000000F00": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/88de3af1a2bf90b5296adebfa472937a8939e130dcb791623f4749a40bd12de0.png", + "0x0250000000000F01": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fdb21db478d043dbc150d604a8bf43da88e4243737c406c9e4dffee6bb7fe673.png", + "0x0250000000000F02": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9d9b7f4ec06f9b31bbfb45f365afa094137131671a16b434d95f4de74a3a1268.png", + "0x0250000000000F03": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/908d10a6df343b6a5e6f5f810b153ee9c61a67bdd1539ea97c4c468dd967fea0.png", + "0x0250000000000F04": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/dd8dd6b683618947d7262fe913e57a052ee799c49452673dc99e862a5abcc6c6.png", + "0x0250000000000F05": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b93e3f9bcb324bc30c107db2a745bf48e407c3b7d4455a03ce70572198d6439f.png", + "0x0250000000000F06": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e32c6e9208e50058ccfb923783b6303a434656bb1ed6ae20af806216b956f819.png", + "0x0250000000000F07": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8669446ca0068e2be8715ca78c66568dacec8d64c53087332ec674b3d62c65bd.png", + "0x0250000000000C22": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3e748f606d058cefc109482149c988dc778290b51344f7e514967b0066ce826e.png", + "0x0250000000000D0A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/58d7701c267b3a70cb6389457934afb12ca4f2744ac41f725f3e83c8370138d6.png", + "0x0250000000000D0C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3ab283ade9152b66daedaa83562b02c10534bd0cabe21d7ab108fd7e22bf4126.png", + "0x0250000000000D5F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/af1c38e5a7ae9aec38f5dc14901bf82d233da8bde9ccf66317c73770937c03c3.png", + "0x0250000000000D60": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b965f562f97f1fd1b258312810640183a1712215b2f6117c262881f263380dc3.png", + "0x0250000000000D61": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/102037921fd2fb4a589b2314546e3732bc8d0d39630d2d92b37ef45f6093a53f.png", + "0x0250000000000D62": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/93954802c176c24ffb9f4322b125376eb1065cf5006dfbf2e43c03bbb66ade0d.png", + "0x0250000000000D63": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a3ceb12a65eb4c9c4c15d8d8c3cd56e6d41bbb6978b00437c45fb4190a0a8f0a.png", + "0x0250000000000D64": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1152bafd5771290937ccea369b4be8649e1f0009c118083daba05b908cd2277a.png", + "0x0250000000000D65": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0133cdc22a7817ea283b406b72a2d9629d231bb411aa68d6b2cb9b2945f9a20c.png", + "0x0250000000000D66": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0aca8f74ec1563915b11a270f47a60e762bd5bc69a2fcc99db6f7bf3c8be8e77.png", + "0x0250000000000D67": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/cfb05fa095bd6d03c59127282826df78a1a203b0a899265ccb9a1a23c4c46128.png", + "0x0250000000000D68": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5d371d23b6a9f22bcc34fe5d97a0e0ed7c869337b55b7a88bb18998969cdce92.png", + "0x0250000000000D69": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7f34e61480da00ddffa12d9cbdf8507649f1cc98ae7492dc37238f5bcfa2952f.png", + "0x0250000000000D6A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/310953fb0419b5f5212253d63baabab298c56032353495e21c54338a1b350968.png", + "0x0250000000000D6B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1bb8c0b89d1573853932dc469737262a90502a2668d18187a26c43041077c727.png", + "0x0250000000000D6C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e34400089acbede23534a073fd6fbb30e29bcead4f71861b455c14a49340be3a.png", + "0x0250000000000D6D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0d7d1cfc371fd37884ad9019988ec4385151fe16fb2cb42bb24b7ae163d6273c.png", + "0x0250000000000D6E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/730f47aaf7a8c356df146c1201779dd2687d9c81c79bd7b67294f0728337a8c1.png", + "0x0250000000000D6F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/58571bf4bfd62bebcde7d8351dfa6c057282fa26d260e0051e41fb18f0bd7ffe.png", + "0x0250000000000D70": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/892fe8d0be9f1e01dd8edd2940636b09baf8aceaafcdb1354acfb2a6b9629f38.png", + "0x0250000000000D71": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3a8d50b80dab09fb27e217a1c6fd1eb3b1592426990c7718f80397c56fa3585c.png", + "0x0250000000000D72": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/652ff879cff0023a4d63bfccd5af27f99123609797aac5e687d93470497d78ff.png", + "0x0250000000000D73": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e7e05ab667277dc869014d69bc56ad2859ca910a2b0c8556252e6e1baf8655bc.png", + "0x0250000000000D74": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d901e428e4321f4a1b05fab0630eb45941437b1036277937e7502b390471fc03.png", + "0x0250000000000D75": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4d316b9c175058d11d3df2aa44fb7aab2c5e6da259d7c5ebcb4b2693565853b4.png", + "0x0250000000000D76": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/045ffa84177ce8091b246e49e1e434ab3956067d3342505a000adfe0d20194a2.png", + "0x0250000000000C8B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4d542c28aec05ef45c320fcb9c4bb3e35bb7a679ea87faef437a0d4dc0c76f8d.png", + "0x0250000000000C8C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/62ebbc85416132885bba0289696a08af02f98e9b2518cde1956884fba905d859.png", + "0x0250000000000CEC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1082fbeded65ec8dd77ef0cbe57322fd55ae84c5618c553bfa14ff64ba03924a.png", + "0x0250000000000CED": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b3c513ffb0b57901ca4e9c5fa71e171716a6d75e5a8c9a449adb364ad4f498bb.png", + "0x0250000000000CEE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d22e135e76653beaa52e6212492ee7df9f627b44482a565c83d2d5b5a234c3a2.png", + "0x0250000000000C39": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f161e4ba03771d6e11a738cb87c952e7d57bbd2994efef687337b20ed056c3fb.png", + "0x0250000000000C3F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ddd776eeb0a6de500ac981e3c663a98de842ee9bbaf37df2890606ee4dc462c8.png", + "0x0250000000000C40": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f5ed01c48c9ccc3daa9f1f74ef96d4fb6c005ac5b6edadcdc6d6de9b186ede43.png", + "0x0250000000000C41": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d8ada4ce47d3de34d270776a11f6f75a93aa648d7f86d2e31095b5360be358a5.png", + "0x0250000000000C4A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9e4d313d49082cf443ab3232dbf3e73d753ab1c0630618c0173e92ffffc9d858.png", + "0x0250000000000C72": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/98cde53903d082adb879930421c2e6ba5a0f585271143bf341b13c1558538498.png", + "0x0250000000000C73": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4bb8f59eb716f8fd4cfa9bc2fac0dc1252fad6244060b1fe0eace33b9f7421da.png", + "0x0250000000000C74": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c0507eb01400741547f7fa3c16d9e38e469125f7ddd8a10cde565aef2c360df8.png", + "0x0250000000000C75": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/819dc35a4599b8eda2fa502fb5ee734aed081b0a9bfd5255a5c4f36ef59fafef.png", + "0x0250000000000C76": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/176bcbe5847712e5c6cbad51a952a4dea53fa9779beebb5c75dedeca4f4f8b74.png", + "0x0250000000000C77": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f0a757c0b3ef4bcf7d65a142685281701d7813f0497b20be22903a94d8fcb3d3.png", + "0x0250000000000C78": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/acefc4278f4c6cc07730552ee2173f05da065db205a21fd0bd71e6e8edfe6275.png", + "0x0250000000000C79": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/984ce0fe48b2bbca39f757584200cd92add734237b3317c345f5852121155b5d.png", + "0x0250000000000C7A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e1f4eda1491e701706b69a9841ab0b74571adf3702f66025e88468e7ab0187d7.png", + "0x0250000000000C7F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/634710d995b9d0164140dd2e875ac27f873458886085ce9c51969278d13948f7.png", + "0x0250000000000C80": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/983f04ba9e4a2ff022fb6c36a8021569c1938830912a2e418b1ec18337205113.png", + "0x0250000000000C81": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c95ace1955567d04e65d38c352bc2042a180d592f11e0142fcaeeaefabfc8efd.png", + "0x0250000000000C82": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3edbd16ef085ec6f60c6454efa1e04e41d1ae0191303cde6c0773babdbfbb9e8.png", + "0x0250000000000C9B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5a703602b0ec7eb62f4da033898d5b528a33f6d9e1a6d0082195b4b6d28b0979.png", + "0x0250000000000C0B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a6b8ce9a6738d0109eca43cd6f0b09f38def0240e333bca4e867b3ebf01b2fba.png", + "0x0250000000000C0C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/29b51a85401f9956bd182c922799d46a47773aa7e92030f667b3a1f1595715ae.png", + "0x0250000000000B38": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9ebbad9c806b69e914d36f4564377bf549430a758ffbc0696d5a5029d74c55b5.png", + "0x0250000000000B39": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0768373a4c9cbd176f7d37f22f05723a1faa4fb362dc0ad3caf89e5a2dd27011.png", + "0x0250000000000B3A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/357f7b8d30343869f8f8d98999df377fd9ede5b6275dc26a0bab46eb1937c251.png", + "0x0250000000000B3B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ce04bd213bc83e1c54a9b0791cbb7a898e21d49b1ce53714f4dbc4fc1f6b07d9.png", + "0x0250000000000B3C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/718153230b657580e686f6e07a1a9711425cd0dfd476e7fdfcc5656cea9ee544.png", + "0x0250000000000B3D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b4453cab66beb596a6634350b7002da564fa858e9f0377ad9d73d3d0f22af807.png", + "0x0250000000000B3E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2ca63406f6bf0d34eff8305e3746a1023aaf94a3fb797e6fd2b095c952459cd1.png", + "0x0250000000000B3F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f24d741390e7d5177833cdd610a7a36f2efbd13eeb0fc04a0e92ad3ca464a927.png", + "0x0250000000000B41": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ac949ff039067aa9bed7fdd857d93bb15a00ba6ded732bcba0b8ed0c4e573e11.png", + "0x0250000000000B42": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8743f674a50c2fd9dead188c250f796c2de8e64d38d2981d10668c3da9534393.png", + "0x0250000000000B43": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/492eeb3cc60e9708bf0deaa92a7ad0a6c738cfa7cf3a0938d188dd822df27e1e.png", + "0x0250000000000B44": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2499ff556870dde1cc1327901772819d8add49f616f69bc80e33e42c9339506e.png", + "0x0250000000000B45": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3769c922f7502841867f79fe43c397d172700fcb776ee8ae42607a424e9e84a2.png", + "0x0250000000000B46": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0913bcf0a3a1bd268f8d5d593afc3495618f5861db4867c9d27d7bb900a975f1.png", + "0x0250000000000B47": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a966dd00987fd0dde429342faeb7ca97da89cadc694a55482deb53d2c85645f4.png", + "0x0250000000000B48": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/579f73779af52690a4deffa4fdc0a419a1d8af335dfdd9de4c1bcc099ff7daa1.png", + "0x0250000000000B49": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a5aead2feaf05460480b3e73eb2f23e984e8514672a0b9a1fa3ff08976f0f792.png", + "0x0250000000000BAC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a99a432f2bb770e53a42d7aea01000064a11a6265f91cbfb4a560cbfd47539f8.png", + "0x0250000000000BAD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b047828879967948772ca5a94f7c07b46033f36d9dbcff563136e3e8a0abeb4c.png", + "0x0250000000000BAE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b6fa6106501ddde0ae79b7f64ac5ace4fe4c0203f3cca35355970db62a94b9b5.png", + "0x0250000000000BAF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c85e4fe2cd99977efb1d9d6335aa05692f2c1e55e3ff66e02eb70ee25cc5577a.png", + "0x0250000000000BB0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c9b23a8afd63f2c9cb5d31547650bd2428bc7d967dd0867c110b67dbc116dc4b.png", + "0x0250000000000BB1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c49df89b896a023531e830ec41033ddd4d3c061f90a1e214b86ca0ae4f1fb85f.png", + "0x0250000000000BB2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6d07d9e0c194a35dd089366f6c50cd6d0140009c5ecfbb5ffdd750061dfc8f51.png", + "0x0250000000000BB3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/daeddd96e58a2150afa6ffc3c5503ae7f96afc2e22899210d444f45dee508c6c.png", + "0x0250000000000BB5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3b3495a41f10e6f9e7d7a01d4159e638ffba7bae1c91482e92f18dd72de354b3.png", + "0x0250000000000BB6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/87a5d994047d312de484da298e4a66de6563d6d00f9390693c79a8a2cbabea6e.png", + "0x0250000000000BB7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/107cabefaf9c1fcb99f57a1433634a90243ac193c096c16c2d346780638592d8.png", + "0x0250000000000BB8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/767f0e2c556cd57846b14622b6d9a0068dd7bfb85fa5195746580414bfe69bdf.png", + "0x0250000000000BB9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3aa2e183f762a4975403ca182ecd5f757b98c5c45f628ec483ad7ba08a1907d1.png", + "0x0250000000000BBA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5b862f112bd8065f03c95472fa8f8636791005f3a34c497472d8e1d2944de289.png", + "0x0250000000000BBB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9b761ffcd1f316ecc0c3fa6fe5549ccb357f5603fc67cf1d246f7d90c88767c2.png", + "0x0250000000000BBC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/bdd0faf0a0b424ea7860f2ef65210545290ad15c43de826be4200a7c8b05c7ae.png", + "0x0250000000000BBD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fad1f26dcd2138cc726b474100c285c8708be22705a8c95ab512fa208555b438.png", + "0x0250000000000BBE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0d3455702aeaa1722000c8c9b3810adfe3bfe5a58a03d1fff6606d3e133d8833.png", + "0x0250000000000BBF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/15234c63cb159892eabf968ecf6a1cbc4eaeda7d5362d9155c4a6d3b3e095809.png", + "0x0250000000000BC0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d40f9b115f7dec3f4d5feade54925c0589f10eeae36b693982717eec51d099dc.png", + "0x0250000000000BC1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/90ead34e152e3363382a832f97521099fa5af0708d7ea31d62d0bf41956ee108.png", + "0x0250000000000BC4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/44009efe5c0d41696032dc99f7edd0aa21ad83b1e58ea9c61fc588c8a93551f8.png", + "0x0250000000000BC6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5366a921bbfb497de836c7c99914d2a7be9cd7b6256aeee150f6be7ddecf2d5d.png", + "0x0250000000000ABB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/90c91b8e7a2895431060831f87c4c333186b3ff64b8ec7e0d4126a6c80ec36b4.png", + "0x0250000000000ABC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c388914fe3386537fe5c9337ada8baf56372599093fa238278756440b6c3cd3c.png", + "0x0250000000000AE6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2a8844c26a6304e2e080165acb2d361084712eb374f6d04205724f866a5cd8bb.png", + "0x02500000000002F7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c3090e3a1dccc58f143ff53801bc0cecb139f0eb1278f157d0b5e29db9104bed.png", + "0x02500000000002F9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8fb752e425af261dff0c2fb39535e06f9b110dfafcde7c8df321bc836811ba59.png", + "0x0250000000000304": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/219efa7d710632bfe16c7452d2300633d6f88683e192ed5728395b496bf69fee.png", + "0x0250000000000305": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c3e622aaf8698328b36f892c40572d3af26e96677ca5a656e2426ab1a34729d9.png", + "0x0250000000000306": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7ee97b47ad8fbe14b97a70594c8b90dd65457ed999dee4ea996b868eb8902356.png", + "0x0250000000000307": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e1fbe94dfb26ada59d4fa7e59adb0d9558baf3b89b2ab95a285f2d58ff6f81a0.png", + "0x0250000000000308": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f3877769fc0c6292fa1fce9a5c21abbefd267e1e461bca177562d1314cde0ab4.png", + "0x0250000000000309": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4e1a5ec655385dccc0b5d30c31d3768c3bba1f3658693abd0452d9ef73b46d71.png", + "0x025000000000030A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/193c462984d83dd9da40a964cd3b0f3654392d6d50426827833cc6a02ad2d889.png", + "0x025000000000030B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d877b959eaefbf4f3cfab96bde16f9d3efb4a69a2a4182c577acf067d570f3fb.png", + "0x025000000000030C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9fd4bdbf1b11e95fa7c2354886e283080d247524bc330d33b479ac855464830a.png", + "0x025000000000030D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/80ea964d99a020ede1ecdff3d41b6a529f371c5307775c2d6bc64786c5a14a0e.png", + "0x025000000000030E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4e4c1525374580ec8b9a53a2b140953871f0e486c75de8f4fb91a4b7ffbf8b21.png", + "0x025000000000030F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/453b53d6f125b04bb69e662118fd1fcc516adc281d81333303a85d4bd7277bc5.png", + "0x0250000000000310": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/27f9397250f079a81e8df9cf1a861f84329e2c802c3359d893a097889c716bd9.png", + "0x0250000000000311": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1b25f41b751d5f0bbdf7d8274ba2436831f4d4468eb419287ecc91e2ebe54bbf.png", + "0x0250000000000312": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0eb6e8946ed4472babb72f3975bb22854b5b95d317af4e01c7077bed1c7c99f2.png", + "0x0250000000000313": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8e59007c161627f66c9163a16f06bf18fe0f871163ddd602e159d1c2930aefa6.png", + "0x0250000000000314": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/32e81a85c4f656d919cc27d67ba711bb56a6c3e14c84d603ec26c32ee30e31c3.png", + "0x0250000000000315": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/952500f69a9174e96dabf9a578ee9645cd3e0481c8007099e63ddd387b27e9f9.png", + "0x0250000000000316": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/696dc6385d9c5a2601ff62106b0ec0381cf269e7ed793eae990ec59d8cbc91e3.png", + "0x0250000000000317": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/95df913a110555713063ed888531de86adbf6e6edc4b9bbd20b185740ee0ea83.png", + "0x0250000000000318": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6da046b422a06215f35648a3ca3da4e9c25d3669d6937ec660f9e1cf5f6473f3.png", + "0x02500000000004F3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/53a806f5d36251033fd1f493378715177eb21f88378d24ab64c11ca13048df2a.png", + "0x02500000000004F4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/929aca1773f40ce3327b8b8a470a5c32f3350fc418ab3fb68fefe8a2cea34656.png", + "0x0250000000000522": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ca28f3d6037bdfd2c1966c0c28de14ccd7d2e35f79df5c54005a8ab1366423c3.png", + "0x0250000000000523": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c3c5d8bc4dbdd90d5da794347f31ff41b33e830841a9ffe4ce77d1c1cc47cd4b.png", + "0x025000000000054C": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/dd38a2a623e258f6500dc32770a77a02fdbc00d5019454a2ec157dffd8d25d41.png", + "0x025000000000054D": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e2c890a38f7524c6392a174963b6c90abfa71f5c66b8ec76b4dc1e432a12d246.png", + "0x0250000000000577": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6e5425c0cc022dcc2da68633aa08fdfdde749c66974df110031621976c19fc72.png", + "0x0250000000000578": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fc1b5d67c3b13946244e6dba66ddd91dcd6aedec9ab504f54449d4c4e0e664e7.png", + "0x02500000000005A3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/814199e08741db1c7c802876c9afc87da45ee85dd62164c017a6c1b24faf8e6b.png", + "0x02500000000005A4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a6850eebb5d398a90942f0f6299d38187fe95fc94673782b26e295b7e15f4577.png", + "0x02500000000005CD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2032ffda5e651c57f73706729371be55839436077f9655f011bea4dd4665f71b.png", + "0x02500000000005CE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a264fa7f6150cdd3cd9000938beb856f40114a239af054a127429e91d6c6cc99.png", + "0x02500000000005F8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/59e28e6438659c42f10bc77e16b0eb8419a7418f8d8e6c018ad0811ee81398fc.png", + "0x02500000000005F9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/42d6b69c70a2af60d4a341e4a8fc29d569a96a5042f1ec4981c1636f1d62abce.png", + "0x0250000000000624": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fe598221195399e563428fe177d4a3a3ff436854491ccaaf30c8cad385838a92.png", + "0x0250000000000625": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/378a4de6375d6ea74af2e264d7bc7147464e9526826580442614f22647a02618.png", + "0x025000000000064E": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/71bc844cbe2aa2da8b19db25828536dcecf16932353fb884184f5efad36b1829.png", + "0x025000000000064F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/78c582388f90c79fb3ebb8da53eff8117c09c203be168d34c864b37a95abec6a.png", + "0x0250000000000657": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/751dfd56a0c8ed9d93eca7efd219f0dae47b7092a9450e6bc4334b09df25e02e.png", + "0x025000000000069F": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8517eb9745898114747f952cfc8faa8196d02f3bdf78decc8e68e748783f36aa.png", + "0x02500000000006A0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/bd7314490606e974fa717f259bd780f1d0251882b67dfa85f2998e65fd2e851a.png", + "0x02500000000006CF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/be184b5630e6b93d99ad6727805f23da41e47a798034e9ced5fceb7db56346f5.png", + "0x02500000000006D0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/bb81614c039289c2c7a13b2fc2da5365d0b1e5d972f42317f142bfb37dcce0c3.png", + "0x02500000000006FA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7689df692a86f49174d18bdc431d820dff2c0f69f9ae08a141fc775026472fdf.png", + "0x02500000000006FB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/baa2844f1f9241ad8acc76f8ac51d8c1efd31a0a830b1c1e58f413823f71219b.png", + "0x0250000000000725": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c2ff035350bb9c631eb5f8046df49c4b4f084032b27e758b14ac07decd5d8ad0.png", + "0x0250000000000726": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ab41cf7bf4fd44d9999c6ab1c08ad7e5a26b19b5ce2fd5a141e5125a32575d23.png", + "0x0250000000000742": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/64db7f610e4889dd10842a2f5c28051c64ca6bd50a6c46a4a59906e82262a937.png", + "0x0250000000000743": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/25002af230f8f91758427165596457f61cb41a1b5b6ba8e0f648fe90d0ec168d.png", + "0x0250000000000775": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/72d8506d07427918200f43b5a29d4ca3839060ba98cba489cabfa2b2b429425c.png", + "0x0250000000000776": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ba4d9e7e2dd7002bdde961e1ff40868063ad804a340d939d95630ae5831e078a.png", + "0x02500000000007A2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/af13bace8495ce4db609dec00e5f48745900cfaca397169f6bdd873713f09742.png", + "0x02500000000007A3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a0cda7353335439dbd8336be1b35d6c486191eb4f05b06e2b5ff52063651a7a9.png", + "0x02500000000007D1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/db7ffdcafa64881e7e54ab18e6d43869caad3af0ca6118d1827e453f10f9f47a.png", + "0x02500000000007D2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b8a1874833b96f6751a4fe8664aa580b211f780353b1acb188e7c23a6448e9ed.png", + "0x02500000000007FF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5192dc5c3a3b78fc1c3bb12d5cfea060c380902ba47e9317e4cf037c4bb6d68c.png", + "0x0250000000000800": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1c711ff14427e7e6259111a3126f76a753f37a4aa00163bd6f750b672225f3e2.png", + "0x025000000000082A": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ecc72c373cdd38a380fef3f7d1722084561192d833cd8e43f9ab4443c3c7f365.png", + "0x025000000000082B": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8efbcbb5768e5d8ad108f3c6a7bfafe039d431cb3cf926fabbb844f4cf665bfd.png", + "0x0250000000000845": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/58287acce2fe8c7c6bd1ea6179278d1dfff746c23d320078fa930a94b52f68d5.png", + "0x0250000000000846": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7ce68697d65d46636b5e87cc52a02d1cd1a002b2894186eba4343295545a3146.png", + "0x02500000000008B8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f52343cf63f193bc24598dabb07697f1b7a2277fb59f33c8868e2d5a4fc8e122.png", + "0x02500000000008B9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/70efa524ea1c2a05874f0e37f99e4b2fe38cb009d500d9e7c9e43d4309fbd9fc.png", + "0x02500000000008BA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/515ca6a0f3a4e0e3bfa32249b29a18746b96b400895f776f6025d475260f92f5.png", + "0x02500000000008BB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/220761cad8019705b8fa644756191c59fa3606a92e955586b6aab8fbb1e81c4e.png", + "0x02500000000008BC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3a983fa726a8e7f712d00bbc74ce26cb9f0e7fdc6f3eadd565342dcac4ac89aa.png", + "0x02500000000008BD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/124cf719b4a9a2f51865db29487ba1aaeb64548e1100a2bda1d1610313252118.png", + "0x02500000000008BE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ce731ece4aa86f6092567a9893657b01128217f8a1e51f0d6f5c442149028795.png", + "0x02500000000008BF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0b9a9cdfe0c81f528c1da692df5446b2b0097f3d8e19ca4b040ce587736125df.png", + "0x02500000000008C0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1ee5498cf744959dee124750920c1e0bfbf77f9c9b2a04cda5034a472bf7457e.png", + "0x02500000000008C1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b539f89bee984e94dd30e596a8c257c0699931b68fbe53a527a86442bd63644c.png", + "0x02500000000008C2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/21ff42b761d2170cfcdcac3c8d97e84675e8e686a10b7b2ee8ba2e868dd4caa6.png", + "0x02500000000008C3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5e45640e56a8b393589d9cfd9b828aa3cb0e288d0f19a90848ba59b4c24bdc14.png", + "0x02500000000008C4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/08aa957705f8136f0c30d4979064c19058ed53372c64324b986bc99df14d9bb6.png", + "0x02500000000008C5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d05c1631b73bf743c7f55d5af5164827d5fa49959027149d721ac6da16bd96cb.png", + "0x02500000000008C6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6a8ec17712e30f15da75e994a71dff58293fbfddf4ff58cc81e19d3385254d14.png", + "0x02500000000008C7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b47fa4e03882c8bcb2279ecd988e400e79d10e0ecce5b724d18c2a1957d37944.png", + "0x02500000000008E6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/d9c371a7219999ab5370e526ca19f549622ef4bb9682f72cc1efb2ab68b5ad4f.png", + "0x02500000000008E7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/9c19680c3a8cd2263b541f9482b44f7bcf9d0495685ebec1797c508667ec5058.png", + "0x02500000000008E8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/de972a209037f7cadafa6b46130de2e5a87636220a4dea317348d7b3c7ce12e3.png", + "0x02500000000008E9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e2f0610e770729602d3711a6b9346e4ed5b1459114e8fc62ce4c7bbfd453706d.png", + "0x02500000000008EA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/0aea7dd449f83b5ae0d1deeaa032bdde60209705f419b651de88a645dd298630.png", + "0x02500000000008EB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/69fc284b807c88598520ba63cca1c2962ef9d2fb6a59829c634908051aa36018.png", + "0x02500000000008EC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3790583dbcc02b2dc395d924a32da3a30c5d71266975a636ca06fa17b5d03598.png", + "0x02500000000008ED": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a3b8842bcf138c1cc354323fa849f349d3736fb3744ede5340f9b3e808c81942.png", + "0x02500000000008EE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6cae8484f9355bfcba8fcd07af0d43ac22949d407ae0d1705b909ebd51d546c8.png", + "0x02500000000008EF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/87d7e9594f095ea13b139e44482ff359b5450ecf701a0339bf55def9776f8b07.png", + "0x02500000000008F0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8d09d5a09ba9d197ddb50d62b18881a44a7b2a0eb944077f329191fea8c84ea7.png", + "0x02500000000008F1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/553f00d7398506880ec18cf944b2cfaf328b8321c873960b113168d83f4d4e02.png", + "0x02500000000008F2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b92853bcb269e299367f964861da512db4a4fa073b6b979dc35b19fbb3fdb9be.png", + "0x02500000000008F3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/029b39829039b61f438d164fc9f1b5373fdd560f7b30fa13cbbf82aee6f2d4a9.png", + "0x02500000000008F4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/978c319ebaeab96517904dfd08b9e6aedfa48001d8ab44dc14674c94a2ce3581.png", + "0x02500000000009D3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/759ab26017232aa269042774970eaac09b216235c581ef1780274912b287ec57.png", + "0x02500000000009D4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/569c77a65a18faa25199e666dc9b92fb6d61d07b42fee02592a3dfce89182e24.png", + "0x02500000000009D5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/bb2750d826d740dc41b313d4a05a127a18cdb404329e3fd2594cd15a40d39153.png", + "0x02500000000009D6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a8dd0743a5e73237f42888bbe23d1da3f188c5c258f460da65386a6fab267caf.png", + "0x02500000000009D7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/e60e88e09c83550be11c63a77ef805c32f27f3f1301328a2a71b1cf29b391d78.png", + "0x02500000000009D8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/84644cf44653d17fd3cbe69b256b0212331047fa99cd363e7df2250b397f3b99.png", + "0x02500000000009D9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fe83c4e9fd1bbc05ecd0f39b5696a6424a6d23f57b405c09ea3a3eaa91fa355a.png", + "0x02500000000009DA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/6584eff8ab951edeb73a87c2d8700d9d8f66bc3a748b22b0e8efd034d329b899.png", + "0x02500000000009DB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/27866cbfc9695634ebe81b43f431a431455fc5482ad6ad6c3774acda1c11f774.png", + "0x02500000000009DC": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/ba39ef0636b1abda4ba70de0a1ea5e34e4b698fed91a9b322e530e7202d39708.png", + "0x02500000000009DD": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7a5993a5922dddfe1382aa0d97f5ae8227efbe1ecd6e7b9d51ef7f1568c020b0.png", + "0x02500000000009DE": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/2c51af2273c0da4e0d63385510bfa29c23f21175b491a7be04e72eb7be4e6f86.png", + "0x02500000000009DF": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c76f1146521cc154c8f5aef79b775c90667a5ee53b8f43df4f36de37e494abd9.png", + "0x02500000000009E0": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/da35ac5d67e7866f4e9f45f8751487d24ad6def9db2f5f3bd45b231af728aba5.png", + "0x02500000000009E1": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/7680cd5f24ef316f4218917ef5a8e8f1b9d2d39c14805c35a9a5542440464ffa.png", + "0x02500000000009E2": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/fbc0bdc6a5118de6d07a4f5b0d8323f148ec631652ca38630670f4234cf2136a.png", + "0x02500000000009E3": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f9f77e32950c2a725b0de86a1a32ed89de9357036b134560060920455f027a8b.png", + "0x02500000000009E4": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/4a50ab04995e51552916b71e29de42f2b4f30bdf40a120d9364757d76a660c3a.png", + "0x02500000000009E5": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/aa623095668eaa36c8ec65c00d58c44162ae64fce7dab0643bdf63b8b1fd5337.png", + "0x02500000000009E6": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/03f9c84d275eb90a8d239ffbebbb028025a2d5c5f83ab01c79de5b3d6fa6d0f2.png", + "0x02500000000009E7": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/1814072efafd82afa3b0c484d1514fb42d3d52d42b8722c60b6a1f46d74aad45.png", + "0x02500000000009E8": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/a60d490271e33206fe9406c75985d96c05c2fbcc7bdb758cb968a8623dd59d80.png", + "0x02500000000009E9": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f3fcdc05be4c8449fc6d4fced095a74e21bea9c6c6431acd04d43dec513546c4.png", + "0x02500000000009EA": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/37ecbf946b12e62d23a6c59c9d60d08ad75981c6228825906bde1f2a9f5441a6.png", + "0x02500000000009EB": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/dde286e155671e5dcba4116f2c9897a0a518180fd7c8f3dd334992f86099fbe2.png", + "0x0250000000000A90": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/f4c2e1e92d7f3ce8a08b03c4016d1a23528e9281a7de63277870af17481a4f1f.png", + "0x0250000000000A91": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/81545643b4c0fd44c7c490c4ba7cdccc2de59b31fd6c2005e9189d0e7553a0f0.png", + "0x0250000000000A92": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3fa38000f73344378c38cd735f621a829798e66c37e1fe8e135b25da9956e42c.png", + "0x0250000000000B14": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3e0ffbec206ae87769fa8dcd8779bb209716ed787a2b8a710789372403134e7b.png" + }, + "title": { + "0x0250000000006949": "Easy Prey", + "0x025000000000694A": "Scavenger", + "0x025000000000694B": "Pack Animal", + "0x025000000000694C": "Tracker", + "0x025000000000694D": "Nocturnal Creature", + "0x025000000000694E": "Aerial Hunter", + "0x025000000000694F": "Monster Slayer", + "0x0250000000006950": "Behemoth", + "0x02500000000069D3": "Deepsea Raider", + "0x02500000000069D4": "Heroic Deepsea Raider", + "0x02500000000069D5": "Epic Deepsea Raider", + "0x02500000000069D6": "Legendary Deepsea Raider", + "0x02500000000069D7": "Mythic Deepsea Raider", + "0x02500000000069D8": "Ultimate Deepsea Raider", + "0x025000000000676D": "Graverobber", + "0x025000000000676E": "Harbinger", + "0x025000000000676F": "Butcher", + "0x0250000000006770": "Fearmonger", + "0x0250000000006771": "Treasure Goblin", + "0x0250000000006772": "Deceiver", + "0x0250000000006773": "Temptation", + "0x0250000000006774": "Prime Evil", + "0x025000000000678E": "Hero of the Light", + "0x02500000000067BB": "Legendary Bastet", + "0x02500000000067BC": "Mythic Bastet", + "0x02500000000067BD": "Ultimate Bastet", + "0x02500000000067BE": "Legendary Outlaw", + "0x02500000000067BF": "Mythic Outlaw", + "0x02500000000067C0": "Ultimate Outlaw", + "0x02500000000067C1": "Legendary Renegade", + "0x02500000000067C2": "Mythic Renegade", + "0x02500000000067C3": "Ultimate Renegade", + "0x02500000000067C4": "Legendary War Machine", + "0x02500000000067C5": "Mythic War Machine", + "0x02500000000067C6": "Ultimate War Machine", + "0x02500000000067C7": "Legendary Squire", + "0x02500000000067C8": "Mythic Squire", + "0x02500000000067C9": "Ultimate Squire", + "0x02500000000067CA": "Legendary Gunslinger", + "0x02500000000067CB": "Mythic Gunslinger", + "0x02500000000067CC": "Ultimate Gunslinger", + "0x02500000000067CD": "Legendary Mastermind", + "0x02500000000067CE": "Mythic Mastermind", + "0x02500000000067CF": "Ultimate Mastermind", + "0x02500000000067D0": "Legendary MEKA Ace", + "0x02500000000067D1": "Mythic MEKA Ace", + "0x02500000000067D2": "Ultimate MEKA Ace", + "0x02500000000067D3": "Legendary Reflection", + "0x02500000000067D4": "Mythic Reflection", + "0x02500000000067D5": "Ultimate Reflection", + "0x02500000000067D6": "Legendary Cyberninja", + "0x02500000000067D7": "Mythic Cyberninja", + "0x02500000000067D8": "Ultimate Cyberninja", + "0x02500000000067D9": "Legendary Archer", + "0x02500000000067DA": "Mythic Archer", + "0x02500000000067DB": "Ultimate Archer", + "0x02500000000067DC": "Legendary Queen", + "0x02500000000067DD": "Mythic Queen", + "0x02500000000067DE": "Ultimate Queen", + "0x02500000000067DF": "Legendary Rat", + "0x02500000000067E0": "Mythic Rat", + "0x02500000000067E1": "Ultimate Rat", + "0x02500000000067E2": "Legendary Yokai", + "0x02500000000067E3": "Mythic Yokai", + "0x02500000000067E4": "Ultimate Yokai", + "0x02500000000067E5": "Legendary Naturalist", + "0x02500000000067E6": "Mythic Naturalist", + "0x02500000000067E7": "Ultimate Naturalist", + "0x02500000000067E8": "Legendary DJ", + "0x02500000000067E9": "Mythic DJ", + "0x02500000000067EA": "Ultimate DJ", + "0x02500000000067EB": "Legendary Climatologist", + "0x02500000000067EC": "Mythic Climatologist", + "0x02500000000067ED": "Ultimate Climatologist", + "0x02500000000067EE": "Legendary Valkyrie", + "0x02500000000067EF": "Mythic Valkyrie", + "0x02500000000067F0": "Ultimate Valkyrie", + "0x02500000000067F1": "Legendary Geneticist", + "0x02500000000067F2": "Mythic Geneticist", + "0x02500000000067F3": "Ultimate Geneticist", + "0x02500000000067F4": "Legendary Defender of Numbani", + "0x02500000000067F5": "Mythic Defender of Numbani", + "0x02500000000067F6": "Ultimate Defender of Numbani", + "0x02500000000067F7": "Legendary Justicar", + "0x02500000000067F8": "Mythic Justicar", + "0x02500000000067F9": "Ultimate Justicar", + "0x02500000000067FA": "Legendary Ravager", + "0x02500000000067FB": "Mythic Ravager", + "0x02500000000067FC": "Ultimate Ravager", + "0x02500000000067FD": "Legendary Wraith", + "0x02500000000067FE": "Mythic Wraith", + "0x02500000000067FF": "Ultimate Wraith", + "0x0250000000006800": "Legendary Crusader", + "0x0250000000006801": "Mythic Crusader", + "0x0250000000006802": "Ultimate Crusader", + "0x0250000000006803": "Legendary Hog", + "0x0250000000006804": "Mythic Hog", + "0x0250000000006805": "Ultimate Hog", + "0x0250000000006806": "Legendary Astrophysicist", + "0x0250000000006807": "Mythic Astrophysicist", + "0x0250000000006808": "Ultimate Astrophysicist", + "0x0250000000006809": "Legendary Tactician", + "0x025000000000680A": "Mythic Tactician", + "0x025000000000680B": "Ultimate Tactician", + "0x025000000000680C": "Legendary Inti Warrior", + "0x025000000000680D": "Mythic Inti Warrior", + "0x025000000000680E": "Ultimate Inti Warrior", + "0x025000000000680F": "Legendary Vigilante", + "0x0250000000006810": "Mythic Vigilante", + "0x0250000000006811": "Ultimate Vigilante", + "0x0250000000006812": "Legendary Hacker", + "0x0250000000006813": "Mythic Hacker", + "0x0250000000006814": "Ultimate Hacker", + "0x0250000000006815": "Legendary Architech", + "0x0250000000006816": "Mythic Architech", + "0x0250000000006817": "Ultimate Architech", + "0x0250000000006818": "Legendary Engineer", + "0x0250000000006819": "Mythic Engineer", + "0x025000000000681A": "Ultimate Engineer", + "0x025000000000681B": "Legendary Time Jumper", + "0x025000000000681C": "Mythic Time Jumper", + "0x025000000000681D": "Ultimate Time Jumper", + "0x025000000000681E": "Legendary Spider", + "0x025000000000681F": "Mythic Spider", + "0x0250000000006820": "Ultimate Spider", + "0x0250000000006821": "Legendary Scientist", + "0x0250000000006822": "Mythic Scientist", + "0x0250000000006823": "Ultimate Scientist", + "0x0250000000006824": "Legendary Champion", + "0x0250000000006825": "Mythic Champion", + "0x0250000000006826": "Ultimate Champion", + "0x0250000000006827": "Legendary Particle Gunner", + "0x0250000000006828": "Mythic Particle Gunner", + "0x0250000000006829": "Ultimate Particle Gunner", + "0x025000000000682A": "Legendary Monk", + "0x025000000000682B": "Mythic Monk", + "0x025000000000682C": "Ultimate Monk", + "0x02500000000068AF": "Bias Wrecker", + "0x02500000000062E6": "Bastet", + "0x02500000000062E7": "Heroic Bastet", + "0x02500000000062E8": "Epic Bastet", + "0x02500000000062EA": "Outlaw", + "0x02500000000062EB": "Heroic Outlaw", + "0x02500000000062EC": "Epic Outlaw", + "0x02500000000062ED": "Renegade", + "0x02500000000062EE": "Heroic Renegade", + "0x02500000000062EF": "Epic Renegade", + "0x02500000000062F0": "War Machine", + "0x02500000000062F1": "Heroic War Machine", + "0x02500000000062F2": "Epic Monk", + "0x02500000000062F3": "Squire", + "0x02500000000062F4": "Heroic Squire", + "0x02500000000062F5": "Epic Squire", + "0x02500000000062F6": "Gunslinger", + "0x02500000000062F7": "Heroic Gunslinger", + "0x02500000000062F8": "Epic Gunslinger", + "0x02500000000062F9": "MEKA Ace", + "0x02500000000062FA": "Heroic MEKA Ace", + "0x02500000000062FB": "Epic MEKA Ace", + "0x02500000000062FC": "Mastermind", + "0x02500000000062FD": "Heroic Mastermind", + "0x02500000000062FE": "Epic Mastermind", + "0x0250000000006302": "Reflection", + "0x0250000000006303": "Heroic Reflection", + "0x0250000000006304": "Epic Reflection", + "0x0250000000006305": "Cyberninja", + "0x0250000000006306": "Heroic Cyberninja", + "0x0250000000006307": "Epic Cyberninja", + "0x0250000000006308": "Archer", + "0x0250000000006309": "Heroic Archer", + "0x025000000000630A": "Epic Archer", + "0x025000000000630B": "Queen", + "0x025000000000630C": "Heroic Queen", + "0x025000000000630D": "Epic Queen", + "0x025000000000630E": "Rat", + "0x025000000000630F": "Heroic Rat", + "0x0250000000006310": "Epic Rat", + "0x0250000000006311": "Yokai", + "0x0250000000006312": "Heroic Yokai", + "0x0250000000006313": "Epic Yokai", + "0x0250000000006314": "Naturalist", + "0x0250000000006315": "Heroic Naturalist", + "0x0250000000006316": "Epic Naturalist", + "0x0250000000006317": "DJ", + "0x0250000000006318": "Heroic DJ", + "0x0250000000006319": "Epic DJ", + "0x025000000000631A": "Climatologist", + "0x025000000000631B": "Heroic Climatologist", + "0x025000000000631C": "Epic Climatologist", + "0x025000000000631D": "Valkyrie", + "0x025000000000631E": "Heroic Valkyrie", + "0x025000000000631F": "Epic Valkyrie", + "0x0250000000006320": "Geneticist", + "0x0250000000006321": "Heroic Geneticist", + "0x0250000000006322": "Epic Geneticist", + "0x0250000000006323": "Defender of Numbani", + "0x0250000000006324": "Heroic Defender of Numbani", + "0x0250000000006325": "Epic Defender of Numbani", + "0x0250000000006326": "Justicar", + "0x0250000000006327": "Heroic Justicar", + "0x0250000000006328": "Epic Justicar", + "0x0250000000006329": "Ravager", + "0x025000000000632A": "Heroic Ravager", + "0x025000000000632B": "Epic Ravager", + "0x025000000000632C": "Wraith", + "0x025000000000632D": "Heroic Wraith", + "0x025000000000632E": "Epic Wraith", + "0x025000000000632F": "Crusader", + "0x0250000000006330": "Heroic Crusader", + "0x0250000000006331": "Epic Crusader", + "0x0250000000006332": "Hog", + "0x0250000000006333": "Heroic Hog", + "0x0250000000006334": "Epic Hog", + "0x0250000000006335": "Astrophysicist", + "0x0250000000006336": "Heroic Astrophysicist", + "0x0250000000006337": "Epic Astrophysicist", + "0x0250000000006338": "Tactician", + "0x0250000000006339": "Heroic Tactician", + "0x025000000000633A": "Epic Tactician", + "0x025000000000633B": "Vigilante", + "0x025000000000633C": "Heroic Vigilante", + "0x025000000000633D": "Epic Vigilante", + "0x025000000000633E": "Hacker", + "0x025000000000633F": "Heroic Hacker", + "0x0250000000006340": "Epic Hacker", + "0x0250000000006341": "Architech", + "0x0250000000006342": "Heroic Architech", + "0x0250000000006343": "Epic Architech", + "0x0250000000006344": "Engineer", + "0x0250000000006345": "Heroic Engineer", + "0x0250000000006346": "Epic Engineer", + "0x0250000000006347": "Time Jumper", + "0x0250000000006348": "Heroic Time Jumper", + "0x0250000000006349": "Epic Time Jumper", + "0x025000000000634A": "Spider", + "0x025000000000634B": "Heroic Spider", + "0x025000000000634C": "Epic Spider", + "0x025000000000634D": "Champion", + "0x025000000000634E": "Heroic Champion", + "0x025000000000634F": "Epic Champion", + "0x0250000000006350": "Scientist", + "0x0250000000006351": "Heroic Scientist", + "0x0250000000006352": "Epic Scientist", + "0x0250000000006353": "Particle Gunner", + "0x0250000000006354": "Heroic Particle Gunner", + "0x0250000000006355": "Epic Particle Gunner", + "0x0250000000006356": "Monk", + "0x0250000000006357": "Heroic Monk", + "0x0250000000006358": "Epic War Machine", + "0x0250000000006359": "Inti Warrior", + "0x025000000000635A": "Heroic Inti Warrior", + "0x025000000000635B": "Epic Inti Warrior", + "0x0250000000006395": "Gold Open Challenger", + "0x02500000000063A3": "Gold Role Challenger", + "0x02500000000063B6": "Gold Sleuth", + "0x02500000000064D5": "Nulltrooper", + "0x02500000000064D6": "Jumpjet", + "0x02500000000064D7": "Slicer", + "0x02500000000064D8": "Breacher", + "0x02500000000064D9": "Subjugator", + "0x02500000000064DA": "Vulture", + "0x02500000000064DB": "Charger", + "0x02500000000064DC": "Null Titan", + "0x025000000000652A": "Underworld Guardian", + "0x0250000000006581": "Nullifier", + "0x0250000000006624": "Hero Master", + "0x02500000000060A9": "Adventurer", + "0x02500000000060AA": "Barbarian", + "0x02500000000060AB": "Bard", + "0x02500000000060AC": "Knight", + "0x02500000000060AD": "Archmage", + "0x02500000000060AE": "Druid", + "0x02500000000060AF": "Rogue", + "0x02500000000060B0": "Paladin", + "0x0250000000006289": "Platinum Squad", + "0x025000000000628A": "Diamond Squad", + "0x025000000000628B": "Master Squad", + "0x025000000000628C": "Grandmaster Squad", + "0x025000000000628D": "Top 500 Squad", + "0x025000000000628E": "Star Teammate", + "0x025000000000628F": "Most Valuable Teammate", + "0x0250000000005EF0": "Rebel", + "0x0250000000005EF1": "Extraterrestrial", + "0x0250000000005EF3": "Star Pilot ", + "0x0250000000005EF4": "Bounty Hunter", + "0x0250000000005EF5": "Officer", + "0x0250000000005EF6": "Oracle", + "0x0250000000005EF7": "World Eater", + "0x0250000000005EF8": "Conqueror", + "0x0250000000005FE7": "Platinum Open Challenger", + "0x0250000000005FE8": "Diamond Open Challenger", + "0x0250000000005FEB": "Master Open Challenger", + "0x0250000000005FEC": "Grandmaster Open Challenger", + "0x0250000000005FED": "Top 500 Open Challenger", + "0x025000000000609A": "Rampant Slayer", + "0x025000000000609B": "Ruthless Slayer", + "0x02500000000060C9": "Platinum Exterminator", + "0x02500000000060CA": "Diamond Exterminator", + "0x02500000000060CB": "Master Exterminator", + "0x02500000000060CC": "Grandmaster Exterminator", + "0x02500000000060CD": "Top 500 Exterminator", + "0x02500000000061B6": "Platinum Role Challenger", + "0x02500000000061B7": "Diamond Role Challenger", + "0x02500000000061B8": "Master Role Challenger", + "0x02500000000061B9": "Grandmaster Role Challenger", + "0x02500000000061BA": "Top 500 Role Challenger", + "0x0250000000005DCB": "Cupid's Arrow", + "0x0250000000005DCC": "Genji's Peace", + "0x0250000000005DCD": "Peasant", + "0x0250000000005DCE": "Mercy's Angel", + "0x0250000000005DCF": "Trickster", + "0x0250000000005DD0": "Disciple", + "0x0250000000005DD1": "Noble", + "0x0250000000005DD2": "Scholar", + "0x0250000000005DD3": "Sage", + "0x0250000000005DD4": "Fearsome Spirit", + "0x0250000000005DD5": "Legendary Beast", + "0x0250000000005E51": "Top 500 Sleuth", + "0x0250000000005E52": "Grandmaster Sleuth", + "0x0250000000005E53": "Master Sleuth", + "0x0250000000005E54": "Diamond Sleuth", + "0x0250000000005E55": "Platinum Sleuth", + "0x0250000000005F25": "Cryptic Chameleon", + "0x0250000000005F26": "Enigmatic Chameleon", + "0x025000000000575B": "Top 500 Flag Bearer", + "0x025000000000575C": "Grandmaster Flag Bearer", + "0x025000000000575D": "Master Flag Bearer", + "0x025000000000575E": "Diamond Flag Bearer", + "0x025000000000575F": "Determined Flag Runner", + "0x0250000000005760": "Unparalleled Flag Runner", + "0x0250000000005787": "Mortal", + "0x0250000000005788": "Philosopher", + "0x0250000000005789": "Argonaut", + "0x025000000000578A": "Gorgon", + "0x025000000000578B": "Daimon", + "0x025000000000578C": "Demigod", + "0x025000000000578D": "Olympian", + "0x025000000000578E": "Titan", + "0x02500000000057C7": "Zeus's Favorite Child", + "0x02500000000057C8": "Pride of Poseidon", + "0x02500000000057C9": "Sentinel of Hades", + "0x02500000000057CA": "Herald of Hermes", + "0x02500000000057CB": "Master of Minotaurs", + "0x02500000000057CC": "Acolyte of Medusa", + "0x02500000000057CD": "Scion of Cyclops", + "0x02500000000054DA": "No Title", + "0x025000000000555B": "Neogun", + "0x025000000000555C": "Nomad", + "0x025000000000555D": "Streetrunner", + "0x025000000000555E": "Bytefixer", + "0x025000000000555F": "Netbreaker", + "0x0250000000005560": "Data Broker", + "0x0250000000005561": "Technoknight", + "0x0250000000005562": "Cyberdemon", + "0x02500000000055C7": "Stalwart Hero", + "0x02500000000055C8": "Tenacious Hero", + "0x02500000000055C9": "Unrelenting Hero", + "0x02500000000055CA": "Partygoer", + "0x02500000000055CE": "Adept Competitor", + "0x02500000000055D0": "Seasoned Competitor", + "0x02500000000055D2": "Expert Competitor", + "0x02500000000055D3": "Vanguard", + "0x02500000000055D4": "Assassin", + "0x02500000000055D5": "Medic", + "0x02500000000055D6": "All-Star", + "0x02500000000055D7": "Shapeshifter", + "0x02500000000055D8": "Executioner" + } +} \ No newline at end of file diff --git a/tests/fixtures/json/search_players/search_players_api_result.json b/tests/fixtures/json/search_players/search_players_api_result.json index 3c28e33..93386c7 100644 --- a/tests/fixtures/json/search_players/search_players_api_result.json +++ b/tests/fixtures/json/search_players/search_players_api_result.json @@ -4,90 +4,135 @@ { "player_id": "DEKK-11775", "name": "DEKK#11775", + "avatar": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/04097daa03cfaf51c8fb28dcb4bc2323d4dfaec74298ab929eee7c991916c2be.png", + "namecard": null, + "title": null, "privacy": "private", "career_url": "https://overfast-api.tekrop.fr/players/DEKK-11775" }, { "player_id": "DEKK-21259", "name": "DEKK#21259", + "avatar": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8fb752e425af261dff0c2fb39535e06f9b110dfafcde7c8df321bc836811ba59.png", + "namecard": null, + "title": null, "privacy": "public", "career_url": "https://overfast-api.tekrop.fr/players/DEKK-21259" }, { "player_id": "Dekk-11904", "name": "Dekk#11904", + "avatar": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/3e0ffbec206ae87769fa8dcd8779bb209716ed787a2b8a710789372403134e7b.png", + "namecard": null, + "title": null, "privacy": "private", "career_url": "https://overfast-api.tekrop.fr/players/Dekk-11904" }, { "player_id": "Dekk-11906", "name": "Dekk#11906", + "avatar": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/b965f562f97f1fd1b258312810640183a1712215b2f6117c262881f263380dc3.png", + "namecard": null, + "title": null, "privacy": "private", "career_url": "https://overfast-api.tekrop.fr/players/Dekk-11906" }, { "player_id": "Dekk-1380", "name": "Dekk#1380", + "avatar": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c3090e3a1dccc58f143ff53801bc0cecb139f0eb1278f157d0b5e29db9104bed.png", + "namecard": null, + "title": null, "privacy": "private", "career_url": "https://overfast-api.tekrop.fr/players/Dekk-1380" }, { "player_id": "Dekk-1637", "name": "Dekk#1637", + "avatar": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c3090e3a1dccc58f143ff53801bc0cecb139f0eb1278f157d0b5e29db9104bed.png", + "namecard": null, + "title": null, "privacy": "private", "career_url": "https://overfast-api.tekrop.fr/players/Dekk-1637" }, { "player_id": "Dekk-1766", "name": "Dekk#1766", + "avatar": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c3090e3a1dccc58f143ff53801bc0cecb139f0eb1278f157d0b5e29db9104bed.png", + "namecard": null, + "title": null, "privacy": "private", "career_url": "https://overfast-api.tekrop.fr/players/Dekk-1766" }, { "player_id": "Dekk-21129", "name": "Dekk#21129", + "avatar": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/83acb9ede346a80e915eadf9ac766f8f80365bafbbfa419dfa07fc98861ff353.png", + "namecard": null, + "title": null, "privacy": "private", "career_url": "https://overfast-api.tekrop.fr/players/Dekk-21129" }, { "player_id": "Dekk-21260", "name": "Dekk#21260", + "avatar": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c3090e3a1dccc58f143ff53801bc0cecb139f0eb1278f157d0b5e29db9104bed.png", + "namecard": null, + "title": null, "privacy": "private", "career_url": "https://overfast-api.tekrop.fr/players/Dekk-21260" }, { "player_id": "Dekk-21386", "name": "Dekk#21386", + "avatar": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/952500f69a9174e96dabf9a578ee9645cd3e0481c8007099e63ddd387b27e9f9.png", + "namecard": null, + "title": null, "privacy": "private", "career_url": "https://overfast-api.tekrop.fr/players/Dekk-21386" }, { "player_id": "Dekk-2162", "name": "Dekk#2162", + "avatar": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/5b862f112bd8065f03c95472fa8f8636791005f3a34c497472d8e1d2944de289.png", + "namecard": null, + "title": null, "privacy": "private", "career_url": "https://overfast-api.tekrop.fr/players/Dekk-2162" }, { "player_id": "Dekk-21771", "name": "Dekk#21771", + "avatar": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/8d85c969c1f55c60a6e49de1f81edc711646480fb652002efafdfe7f3d5fd13d.png", + "namecard": null, + "title": null, "privacy": "private", "career_url": "https://overfast-api.tekrop.fr/players/Dekk-21771" }, { "player_id": "Dekk-21904", "name": "Dekk#21904", + "avatar": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/21b9e01301442344ccf132814d3e07d3e5e84d55f7f36e5bdf53dea4a004e7f0.png", + "namecard": null, + "title": null, "privacy": "private", "career_url": "https://overfast-api.tekrop.fr/players/Dekk-21904" }, { "player_id": "Dekk-2677", "name": "Dekk#2677", + "avatar": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/10c21dd702b2b6ffa7972c58124b22910742fbdb3421c5551ad33184dc57b67a.png", + "namecard": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/757219956129146d84617a7e713dfca1bc33ea27cf6c73df60a33d02a147edc1.png", + "title": "Bytefixer", "privacy": "public", "career_url": "https://overfast-api.tekrop.fr/players/Dekk-2677" }, { "player_id": "dekk-2548", "name": "dekk#2548", + "avatar": "https://d15f34w2p8l1cc.cloudfront.net/overwatch/c2b96b7d4d633f1ec455bc4cfb5c7ae10ea16d106b2ce264238c6760f457a671.png", + "namecard": null, + "title": null, "privacy": "private", "career_url": "https://overfast-api.tekrop.fr/players/dekk-2548" } diff --git a/tests/parsers/test_namecard_parser.py b/tests/parsers/test_namecard_parser.py index 5e92284..f4e1662 100644 --- a/tests/parsers/test_namecard_parser.py +++ b/tests/parsers/test_namecard_parser.py @@ -5,16 +5,17 @@ import pytest from fastapi import HTTPException, status +from app.common.enums import SearchDataType from app.common.exceptions import ParserParsingError from app.common.helpers import overfast_client -from app.parsers.namecard_parser import NamecardParser +from app.parsers.search_data_parser import NamecardParser @pytest.mark.asyncio() async def test_namecard_parser_no_cache( search_players_blizzard_json_data: dict, search_html_data: str, - namecards_json_data: dict, + search_data_json_data: dict, ): parser = NamecardParser(player_id="Dekk-2677") update_parser_cache_last_update_mock = Mock() @@ -37,7 +38,9 @@ async def test_namecard_parser_no_cache( ): await parser.parse() - assert parser.data == {"namecard": namecards_json_data.get("0x0250000000005510")} + assert parser.data == { + "namecard": search_data_json_data[SearchDataType.NAMECARD]["0x0250000000005510"] + } update_parser_cache_last_update_mock.assert_called_once() @@ -97,8 +100,9 @@ async def test_namecard_parser_player_not_found(): await parser.parse() logger_warning_mock.assert_any_call( - "Player {} not found in search results, couldn't retrieve its namecard", + "Player {} not found in search results, couldn't retrieve its {}", "Unknown-1234", + SearchDataType.NAMECARD, ) assert parser.data == {"namecard": None} @@ -131,7 +135,9 @@ async def test_namecard_parser_player_without_namecard(): ), patch("app.common.logging.logger.info", logger_info_mock): await parser.parse() - logger_info_mock.assert_any_call("Player {} doesn't have any namecard", "Dekk-2677") + logger_info_mock.assert_any_call( + "Player {} doesn't have any {}", "Dekk-2677", SearchDataType.NAMECARD + ) assert parser.data == {"namecard": None} @@ -158,13 +164,15 @@ async def test_namecard_parser_no_cache_no_namecard( await parser.parse() logger_warning_mock.assert_any_call( - "URL for namecard {} of player {} not found in the cache", + "URL for {} {} of player {} not found in the cache", + SearchDataType.NAMECARD, "0x0250000000005510", "Dekk-2677", ) logger_warning_mock.assert_any_call( - "URL for namecard {} of player {} not found at all", + "URL for {} {} of player {} not found at all", + SearchDataType.NAMECARD, "0x0250000000005510", "Dekk-2677", ) @@ -175,7 +183,7 @@ async def test_namecard_parser_no_cache_no_namecard( @pytest.mark.asyncio() async def test_namecard_parser_with_cache( search_players_blizzard_json_data: dict, - namecards_json_data: dict, + search_data_json_data: dict, ): parser = NamecardParser(player_id="Dekk-2677") @@ -189,9 +197,11 @@ async def test_namecard_parser_with_cache( ), ), patch.object( parser.cache_manager, - "get_namecard_cache", + "get_search_data_cache", return_value="https://d15f34w2p8l1cc.cloudfront.net/overwatch/757219956129146d84617a7e713dfca1bc33ea27cf6c73df60a33d02a147edc1.png", ): await parser.parse() - assert parser.data == {"namecard": namecards_json_data.get("0x0250000000005510")} + assert parser.data == { + "namecard": search_data_json_data[SearchDataType.NAMECARD]["0x0250000000005510"] + } diff --git a/tests/views/test_search_players_route.py b/tests/views/test_search_players_route.py index df7e6cd..3868b15 100644 --- a/tests/views/test_search_players_route.py +++ b/tests/views/test_search_players_route.py @@ -101,7 +101,13 @@ def test_search_players_blizzard_timeout(): } -def test_search_players(search_players_api_json_data: dict): +def test_search_players( + search_players_api_json_data: dict, search_data_json_data: dict +): + # Add search data in cache as if we launched the server + cache_manager = CacheManager() + cache_manager.update_search_data_cache(search_data_json_data) + response = client.get("/players?name=Test") assert response.status_code == status.HTTP_200_OK @@ -116,19 +122,25 @@ def test_search_players(search_players_api_json_data: dict): ) -def test_search_players_with_cache(search_players_api_json_data: list): - with patch("app.common.mixins.settings.use_api_cache_in_app", True): - players_response_data = { - "total": search_players_api_json_data["total"], - "results": search_players_api_json_data["results"][:20], - } +def test_search_players_with_cache( + search_players_api_json_data: dict, search_data_json_data: dict +): + # Add search data in cache as if we launched the server + cache_manager = CacheManager() + cache_manager.update_search_data_cache(search_data_json_data) - cache_manager = CacheManager() - cache_manager.update_api_cache("/players?name=Test", players_response_data, 100) + # Add data in API cache to be + players_response_data = { + "total": search_players_api_json_data["total"], + "results": search_players_api_json_data["results"][:20], + } + cache_manager.update_api_cache("/players?name=Test", players_response_data, 100) + with patch("app.common.mixins.settings.use_api_cache_in_app", True): response = client.get("/players?name=Test") - assert response.status_code == status.HTTP_200_OK - assert response.json() == players_response_data + + assert response.status_code == status.HTTP_200_OK + assert response.json() == players_response_data @pytest.mark.parametrize( @@ -142,9 +154,14 @@ def test_search_players_with_cache(search_players_api_json_data: list): ) def test_search_players_with_offset_and_limit( search_players_api_json_data: dict, + search_data_json_data: dict, offset: int, limit: int, ): + # Add search data in cache as if we launched the server + cache_manager = CacheManager() + cache_manager.update_search_data_cache(search_data_json_data) + response = client.get(f"/players?name=Test&offset={offset}&limit={limit}") assert response.status_code == status.HTTP_200_OK @@ -166,7 +183,12 @@ def test_search_players_with_offset_and_limit( def test_search_players_filter_by_privacy( privacy: PlayerPrivacy, search_players_api_json_data: dict, + search_data_json_data: dict, ): + # Add search data in cache as if we launched the server + cache_manager = CacheManager() + cache_manager.update_search_data_cache(search_data_json_data) + response = client.get(f"/players?name=Test&privacy={privacy}") if privacy in privacies: @@ -188,7 +210,13 @@ def test_search_players_filter_by_privacy( @pytest.mark.parametrize("order_by", ["name:asc", "name:desc"]) -def test_search_players_ordering(search_players_api_json_data: dict, order_by: str): +def test_search_players_ordering( + search_players_api_json_data: dict, search_data_json_data: dict, order_by: str +): + # Add search data in cache as if we launched the server + cache_manager = CacheManager() + cache_manager.update_search_data_cache(search_data_json_data) + response = client.get(f"/players?name=Test&order_by={order_by}") order_field, order_arrangement = order_by.split(":")