diff --git a/Adjuster.py b/Adjuster.py index 83d3868b7..9ca22dd61 100755 --- a/Adjuster.py +++ b/Adjuster.py @@ -29,6 +29,8 @@ def main(): Select the rate at which the heart beep sound is played at low health. (default: %(default)s) ''') + parser.add_argument('--heartcolor', default='red', const='red', nargs='?', choices=['red', 'blue', 'green', 'yellow'], + help='Select the color of Link\'s heart meter. (default: %(default)s)') parser.add_argument('--sprite', help='''\ Path to a sprite sheet to use for Link. Needs to be in binary format and have a length of 0x7000 (28672) bytes, diff --git a/AdjusterMain.py b/AdjusterMain.py index b6c128fa6..346e9301c 100644 --- a/AdjusterMain.py +++ b/AdjusterMain.py @@ -26,7 +26,7 @@ def adjust(args): else: raise RuntimeError('Provided Rom is not a valid Link to the Past Randomizer Rom. Please provide one for adjusting.') - apply_rom_settings(rom, args.heartbeep, args.quickswap, args.fastmenu, args.disablemusic, sprite) + apply_rom_settings(rom, args.heartbeep, args.heartcolor, args.quickswap, args.fastmenu, args.disablemusic, sprite) rom.write_to_file(output_path('%s.sfc' % outfilebase)) diff --git a/BaseClasses.py b/BaseClasses.py index 9da008554..7c61ac964 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -1,4 +1,5 @@ import copy +from enum import Enum, unique import logging import json from collections import OrderedDict @@ -6,7 +7,7 @@ class World(object): - def __init__(self, shuffle, logic, mode, difficulty, timer, progressive, goal, algorithm, place_dungeon_items, check_beatable_only, shuffle_ganon, quickswap, fastmenu, disable_music, keysanity): + def __init__(self, shuffle, logic, mode, difficulty, timer, progressive, goal, algorithm, place_dungeon_items, check_beatable_only, shuffle_ganon, quickswap, fastmenu, disable_music, keysanity, custom, customitemarray): self.shuffle = shuffle self.logic = logic self.mode = mode @@ -30,13 +31,16 @@ def __init__(self, shuffle, logic, mode, difficulty, timer, progressive, goal, a self.place_dungeon_items = place_dungeon_items # configurable in future self.shuffle_bonk_prizes = False self.swamp_patch_required = False + self.powder_patch_required = False self.ganon_at_pyramid = True + self.ganonstower_vanilla = True self.sewer_light_cone = mode == 'standard' self.light_world_light_cone = False self.dark_world_light_cone = False self.treasure_hunt_count = 0 self.treasure_hunt_icon = 'Triforce Piece' self.clock_mode = 'off' + self.rupoor_cost = 10 self.aga_randomness = True self.lock_aga_door_in_escape = False self.fix_trock_doors = self.shuffle != 'vanilla' @@ -52,9 +56,13 @@ def __init__(self, shuffle, logic, mode, difficulty, timer, progressive, goal, a self.fastmenu = fastmenu self.disable_music = disable_music self.keysanity = keysanity + self.custom = custom + self.customitemarray = customitemarray self.can_take_damage = True self.difficulty_requirements = None + self.fix_fake_world = True self.spoiler = Spoiler(self) + self.lamps_needed_for_dark_rooms = 1 def intialize_regions(self): for region in self.regions: @@ -247,19 +255,31 @@ def can_beat_game(self, starting_state=None): @property def option_identifier(self): - logic = 0 if self.logic == 'noglitches' else 1 - mode = ['standard', 'open', 'swordless'].index(self.mode) - dungeonitems = 0 if self.place_dungeon_items else 1 - goal = ['ganon', 'pedestal', 'dungeons', 'triforcehunt', 'crystals'].index(self.goal) - shuffle = ['vanilla', 'simple', 'restricted', 'full', 'madness', 'insanity', 'dungeonsfull', 'dungeonssimple'].index(self.shuffle) - difficulty = ['easy', 'normal', 'hard', 'expert', 'insane'].index(self.difficulty) - timer = ['none', 'display', 'timed', 'timed-ohko', 'timed-countdown', 'ohko'].index(self.timer) - progressive = ['on', 'off', 'random'].index(self.progressive) - algorithm = ['freshness', 'flood', 'vt21', 'vt22', 'vt25', 'vt26', 'balanced'].index(self.algorithm) - beatableonly = 1 if self.check_beatable_only else 0 - shuffleganon = 1 if self.shuffle_ganon else 0 - keysanity = 1 if self.keysanity else 0 - return logic | (beatableonly << 1) | (dungeonitems << 2) | (shuffleganon << 3) | (goal << 4) | (shuffle << 7) | (difficulty << 11) | (algorithm << 13) | (mode << 16) | (keysanity << 18) | (timer << 19) | (progressive << 21) + id_value = 0 + id_value_max = 1 + + def markbool(value): + nonlocal id_value, id_value_max + id_value += id_value_max * bool(value) + id_value_max *= 2 + def marksequence(options, value): + nonlocal id_value, id_value_max + id_value += id_value_max * options.index(value) + id_value_max *= len(options) + markbool(self.logic == 'noglitches') + marksequence(['standard', 'open', 'swordless'], self.mode) + markbool(self.place_dungeon_items) + marksequence(['ganon', 'pedestal', 'dungeons', 'triforcehunt', 'crystals'], self.goal) + marksequence(['vanilla', 'simple', 'restricted', 'full', 'crossed', 'insanity', 'restricted_legacy', 'full_legacy', 'madness_legacy', 'insanity_legacy', 'dungeonsfull', 'dungeonssimple'], self.shuffle) + marksequence(['easy', 'normal', 'hard', 'expert', 'insane'], self.difficulty) + marksequence(['none', 'display', 'timed', 'timed-ohko', 'timed-countdown', 'ohko'], self.timer) + marksequence(['on', 'off', 'random'], self.progressive) + marksequence(['freshness', 'flood', 'vt21', 'vt22', 'vt25', 'vt26', 'balanced'], self.algorithm) + markbool(self.check_beatable_only) + markbool(self.shuffle_ganon) + markbool(self.keysanity) + assert id_value_max <= 0xFFFFFFFF + return id_value class CollectionState(object): @@ -383,17 +403,17 @@ def heart_count(self): def can_lift_heavy_rocks(self): return self.has('Titans Mitts') - def can_extend_magic(self, smallmagic=8): #This reflects the total magic Link has, not the total extra he has. + def can_extend_magic(self, smallmagic=8, fullrefill=False): #This reflects the total magic Link has, not the total extra he has. basemagic = 8 if self.has('Quarter Magic'): basemagic = 32 elif self.has('Half Magic'): basemagic = 16 - if self.world.difficulty == 'hard': + if self.world.difficulty == 'hard' and not fullrefill: basemagic = basemagic + int(basemagic * 0.5 * self.bottle_count()) - elif self.world.difficulty == 'expert': + elif self.world.difficulty == 'expert' and not fullrefill: basemagic = basemagic + int(basemagic * 0.25 * self.bottle_count()) - elif self.world.difficulty == 'insane': + elif self.world.difficulty == 'insane' and not fullrefill: basemagic = basemagic else: basemagic = basemagic + basemagic * self.bottle_count() @@ -532,17 +552,32 @@ def __getattr__(self, item): raise RuntimeError('Cannot parse %s.' % item) +@unique +class RegionType(Enum): + LightWorld = 1 + DarkWorld = 2 + Cave = 3 # Also includes Houses + Dungeon = 4 + + @property + def is_indoors(self): + """Shorthand for checking if Cave or Dungeon""" + return self in (RegionType.Cave, RegionType.Dungeon) + + class Region(object): - def __init__(self, name): + def __init__(self, name, type): self.name = name + self.type = type self.entrances = [] self.exits = [] self.locations = [] self.dungeon = None self.world = None self.is_light_world = False # will be set aftermaking connections. + self.is_dark_world = False self.spot_type = 'Region' self.hint_text = 'Hyrule' self.recursion_count = 0 diff --git a/Dungeons.py b/Dungeons.py index 58f94f20c..8be5eba8f 100644 --- a/Dungeons.py +++ b/Dungeons.py @@ -12,9 +12,9 @@ def make_dungeon(name, dungeon_regions, big_key, small_keys, dungeon_items): world.get_region(region).dungeon = dungeon return dungeon - ES = make_dungeon('Hyrule Castle', ['Hyrule Castle', 'Sewers', 'Sewers (Dark)', 'Sanctuary'], None, [ItemFactory('Small Key (Escape)')], [ItemFactory('Map (Escape)')]) + ES = make_dungeon('Hyrule Castle', ['Hyrule Castle', 'Sewers', 'Sewer Drop', 'Sewers (Dark)', 'Sanctuary'], None, [ItemFactory('Small Key (Escape)')], [ItemFactory('Map (Escape)')]) EP = make_dungeon('Eastern Palace', ['Eastern Palace'], ItemFactory('Big Key (Eastern Palace)'), [], ItemFactory(['Map (Eastern Palace)', 'Compass (Eastern Palace)'])) - DP = make_dungeon('Desert Palace', ['Desert Palace North', 'Desert Palace Main', 'Desert Palace East'], ItemFactory('Big Key (Desert Palace)'), [ItemFactory('Small Key (Desert Palace)')], ItemFactory(['Map (Desert Palace)', 'Compass (Desert Palace)'])) + DP = make_dungeon('Desert Palace', ['Desert Palace North', 'Desert Palace Main (Inner)', 'Desert Palace Main (Outer)', 'Desert Palace East'], ItemFactory('Big Key (Desert Palace)'), [ItemFactory('Small Key (Desert Palace)')], ItemFactory(['Map (Desert Palace)', 'Compass (Desert Palace)'])) ToH = make_dungeon('Tower of Hera', ['Tower of Hera (Bottom)', 'Tower of Hera (Basement)', 'Tower of Hera (Top)'], ItemFactory('Big Key (Tower of Hera)'), [ItemFactory('Small Key (Tower of Hera)')], ItemFactory(['Map (Tower of Hera)', 'Compass (Tower of Hera)'])) AT = make_dungeon('Agahnims Tower', ['Agahnims Tower', 'Agahnim 1'], None, ItemFactory(['Small Key (Agahnims Tower)'] * 2), []) PoD = make_dungeon('Palace of Darkness', ['Palace of Darkness (Entrance)', 'Palace of Darkness (Center)', 'Palace of Darkness (Big Key Chest)', 'Palace of Darkness (Bonk Section)', 'Palace of Darkness (North)', 'Palace of Darkness (Maze)', 'Palace of Darkness (Harmless Hellway)', 'Palace of Darkness (Final Section)'], ItemFactory('Big Key (Palace of Darkness)'), ItemFactory(['Small Key (Palace of Darkness)'] * 6), ItemFactory(['Map (Palace of Darkness)', 'Compass (Palace of Darkness)'])) diff --git a/EntranceRandomizer.py b/EntranceRandomizer.py index 818913c0f..bc6d84516 100755 --- a/EntranceRandomizer.py +++ b/EntranceRandomizer.py @@ -120,25 +120,27 @@ def start(): slightly biased to placing progression items with less restrictions. ''') - parser.add_argument('--shuffle', default='full', const='full', nargs='?', choices=['vanilla', 'simple', 'restricted', 'full', 'madness', 'insanity', 'dungeonsfull', 'dungeonssimple'], + parser.add_argument('--shuffle', default='full', const='full', nargs='?', choices=['vanilla', 'simple', 'restricted', 'full', 'crossed', 'insanity', 'restricted_legacy', 'full_legacy', 'madness_legacy', 'insanity_legacy', 'dungeonsfull', 'dungeonssimple'], help='''\ Select Entrance Shuffling Algorithm. (default: %(default)s) - Full: Mix cave and dungeon entrances freely. + Full: Mix cave and dungeon entrances freely while limiting + multi-entrance caves to one world. Simple: Shuffle Dungeon Entrances/Exits between each other and keep all 4-entrance dungeons confined to one location. All caves outside of death mountain are - shuffled in pairs. + shuffled in pairs and matched by original type. Restricted: Use Dungeons shuffling from Simple but freely connect remaining entrances. - Madness: Decouple entrances and exits from each other and - shuffle them freely, only ensuring that no fake - Light/Dark World happens and all locations are - reachable. - Insanity: Madness without the world restrictions. Mirror and - Pearl are provided early to ensure Filling algorithm - works properly. Deal with Fake LW/DW at your - discretion. - Experimental. + Crossed: Mix cave and dungeon entrances freely while allowing + caves to cross between worlds. + Insanity: Decouple entrances and exits from each other and + shuffle them freely. Caves that used to be single + entrance will still exit to the same location from + which they are entered. + Vanilla: All entrances are in the same locations they were + in the base game. + Legacy shuffles preserve behavior from older versions of the + entrance randomizer including significant technical limitations. The dungeon variants only mix up dungeons and keep the rest of the overworld vanilla. ''') @@ -163,6 +165,8 @@ def start(): Keys (and other dungeon items) are no longer restricted to their dungeons, but can be anywhere ''', action='store_true') + parser.add_argument('--custom', default=False, help='Not supported.') + parser.add_argument('--customitemarray', default=False, help='Not supported.') parser.add_argument('--nodungeonitems', help='''\ Remove Maps and Compasses from Itempool, replacing them by empty slots. @@ -172,15 +176,19 @@ def start(): ensure all locations are reachable. This only has an effect on the restrictive algorithm currently. ''', action='store_true') - parser.add_argument('--shuffleganon', help='''\ - If set, include the Pyramid Hole and Ganon's Tower in the - entrance shuffle pool. - ''', action='store_true') + # included for backwards compatibility + parser.add_argument('--shuffleganon', help=argparse.SUPPRESS, action='store_true', default=True) + parser.add_argument('--no-shuffleganon', help='''\ + If set, the Pyramid Hole and Ganon's Tower are not + included entrance shuffle pool. + ''', action='store_false', dest='shuffleganon') parser.add_argument('--heartbeep', default='normal', const='normal', nargs='?', choices=['normal', 'half', 'quarter', 'off'], help='''\ Select the rate at which the heart beep sound is played at low health. (default: %(default)s) ''') + parser.add_argument('--heartcolor', default='red', const='red', nargs='?', choices=['red', 'blue', 'green', 'yellow'], + help='Select the color of Link\'s heart meter. (default: %(default)s)') parser.add_argument('--sprite', help='''\ Path to a sprite sheet to use for Link. Needs to be in binary format and have a length of 0x7000 (28672) bytes, diff --git a/EntranceShuffle.py b/EntranceShuffle.py index 87671a86c..8cced2e6b 100644 --- a/EntranceShuffle.py +++ b/EntranceShuffle.py @@ -4,6 +4,9 @@ def link_entrances(world): + connect_two_way(world, 'Links House', 'Links House Exit') # unshuffled. For now + connect_exit(world, 'Chris Houlihan Room Exit', 'Links House') # should always match link's house, except for plandos + # setup mandatory connections for exitname, regionname in mandatory_connections: connect_simple(world, exitname, regionname) @@ -14,13 +17,11 @@ def link_entrances(world): connect_simple(world, exitname, regionname) for exitname, regionname in default_dungeon_connections: connect_simple(world, exitname, regionname) - elif world.shuffle == 'dungeonssimple': for exitname, regionname in default_connections: connect_simple(world, exitname, regionname) simple_shuffle_dungeons(world) - elif world.shuffle == 'dungeonsfull': for exitname, regionname in default_connections: connect_simple(world, exitname, regionname) @@ -45,14 +46,12 @@ def link_entrances(world): dungeon_exits.append('Ganons Tower Exit') if world.mode == 'standard': - # rest of hyrule castle must be in light world to avoid fake darkworld stuff, so it has to be the one connected to east exit of desert + # rest of hyrule castle must be in light world, so it has to be the one connected to east exit of desert connect_mandatory_exits(world, lw_entrances, [('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')], list(LW_Dungeon_Entrances_Must_Exit)) else: connect_mandatory_exits(world, lw_entrances, dungeon_exits, list(LW_Dungeon_Entrances_Must_Exit)) connect_mandatory_exits(world, dw_entrances, dungeon_exits, list(DW_Dungeon_Entrances_Must_Exit)) - connect_caves(world, lw_entrances, [], list(LW_Dungeon_Exits)) # Agahnim must be light world connect_caves(world, lw_entrances, dw_entrances, dungeon_exits) - elif world.shuffle == 'simple': simple_shuffle_dungeons(world) @@ -113,7 +112,7 @@ def link_entrances(world): connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut') bomb_shop_doors.extend(blacksmith_doors) - # place dam and pyramid fairy, have limited options + # place bomb shop, has limited options random.shuffle(bomb_shop_doors) bomb_shop = bomb_shop_doors.pop() connect_entrance(world, bomb_shop, 'Big Bomb Shop') @@ -124,10 +123,79 @@ def link_entrances(world): # place remaining doors connect_doors(world, single_doors, door_targets) - elif world.shuffle == 'restricted': simple_shuffle_dungeons(world) + lw_entrances = list(LW_Entrances + LW_Single_Cave_Doors + Old_Man_Entrances) + dw_entrances = list(DW_Entrances + DW_Single_Cave_Doors) + dw_must_exits = list(DW_Entrances_Must_Exit) + old_man_entrances = list(Old_Man_Entrances) + caves = list(Cave_Exits + Cave_Three_Exits) + single_doors = list(Single_Cave_Doors) + bomb_shop_doors = list(Bomb_Shop_Single_Cave_Doors + Bomb_Shop_Multi_Cave_Doors) + blacksmith_doors = list(Blacksmith_Single_Cave_Doors + Blacksmith_Multi_Cave_Doors) + door_targets = list(Single_Cave_Targets) + + # tavern back door cannot be shuffled yet + connect_doors(world, ['Tavern North'], ['Tavern']) + + # in restricted, the only mandatory exits are in dark world + connect_mandatory_exits(world, dw_entrances, caves, dw_must_exits) + + # place old man, has limited options + # exit has to come from specific set of doors, the entrance is free to move about + old_man_entrances = [door for door in old_man_entrances if door in lw_entrances] + random.shuffle(old_man_entrances) + old_man_exit = old_man_entrances.pop() + connect_two_way(world, old_man_exit, 'Old Man Cave Exit (East)') + lw_entrances.remove(old_man_exit) + + # place blacksmith, has limited options + all_entrances = lw_entrances + dw_entrances + # cannot place it anywhere already taken (or that are otherwise not eligable for placement) + blacksmith_doors = [door for door in blacksmith_doors if door in all_entrances] + random.shuffle(blacksmith_doors) + blacksmith_hut = blacksmith_doors.pop() + connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut') + if blacksmith_hut in lw_entrances: + lw_entrances.remove(blacksmith_hut) + if blacksmith_hut in dw_entrances: + dw_entrances.remove(blacksmith_hut) + bomb_shop_doors.extend(blacksmith_doors) + + # place bomb shop, has limited options + all_entrances = lw_entrances + dw_entrances + # cannot place it anywhere already taken (or that are otherwise not eligable for placement) + bomb_shop_doors = [door for door in bomb_shop_doors if door in all_entrances] + random.shuffle(bomb_shop_doors) + bomb_shop = bomb_shop_doors.pop() + connect_entrance(world, bomb_shop, 'Big Bomb Shop') + if bomb_shop in lw_entrances: + lw_entrances.remove(bomb_shop) + if bomb_shop in dw_entrances: + dw_entrances.remove(bomb_shop) + + # place the old man cave's entrance somewhere in the light world + random.shuffle(lw_entrances) + old_man_entrance = lw_entrances.pop() + connect_two_way(world, old_man_entrance, 'Old Man Cave Exit (West)') + + # place Old Man House in Light World + connect_caves(world, lw_entrances, [], [('Old Man House Exit (Bottom)', 'Old Man House Exit (Top)')]) + + # now scramble the rest + connect_caves(world, lw_entrances, dw_entrances, caves) + + # scramble holes + scramble_holes(world) + + doors = lw_entrances + dw_entrances + + # place remaining doors + connect_doors(world, doors, door_targets) + elif world.shuffle == 'restricted_legacy': + simple_shuffle_dungeons(world) + lw_entrances = list(LW_Entrances) dw_entrances = list(DW_Entrances) dw_must_exits = list(DW_Entrances_Must_Exit) @@ -154,7 +222,7 @@ def link_entrances(world): connect_two_way(world, old_man_entrance, 'Old Man Cave Exit (West)') connect_two_way(world, old_man_exit, 'Old Man Cave Exit (East)') - # place Old Man House in Light World, so using the s&q point does not cause fake dark world + # place Old Man House in Light World connect_caves(world, lw_entrances, [], [('Old Man House Exit (Bottom)', 'Old Man House Exit (Top)')]) # connect rest. There's 2 dw entrances remaining, so we will not run into parity issue placing caves @@ -180,15 +248,182 @@ def link_entrances(world): # place remaining doors connect_doors(world, single_doors, door_targets) - elif world.shuffle == 'full': skull_woods_shuffle(world) - lw_entrances = list(LW_Entrances + LW_Dungeon_Entrances) + lw_entrances = list(LW_Entrances + LW_Dungeon_Entrances + LW_Single_Cave_Doors + Old_Man_Entrances) + dw_entrances = list(DW_Entrances + DW_Dungeon_Entrances + DW_Single_Cave_Doors) + dw_must_exits = list(DW_Entrances_Must_Exit + DW_Dungeon_Entrances_Must_Exit) + lw_must_exits = list(LW_Dungeon_Entrances_Must_Exit) + old_man_entrances = list(Old_Man_Entrances + ['Tower of Hera']) + caves = list(Cave_Exits + Dungeon_Exits + Cave_Three_Exits) # don't need to consider three exit caves, have one exit caves to avoid parity issues + bomb_shop_doors = list(Bomb_Shop_Single_Cave_Doors + Bomb_Shop_Multi_Cave_Doors) + blacksmith_doors = list(Blacksmith_Single_Cave_Doors + Blacksmith_Multi_Cave_Doors) + door_targets = list(Single_Cave_Targets) + + # tavern back door cannot be shuffled yet + connect_doors(world, ['Tavern North'], ['Tavern']) + + if world.mode == 'standard': + # must connect front of hyrule castle to do escape + connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)') + else: + caves.append(('Hyrule Castle Exit (South)', 'Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')) + lw_entrances.append('Hyrule Castle Entrance (South)') + + if not world.shuffle_ganon: + connect_two_way(world, 'Ganons Tower', 'Ganons Tower Exit') + else: + dw_entrances.append('Ganons Tower') + caves.append('Ganons Tower Exit') + + # we randomize which world requirements we fulfill first so we get better dungeon distribution + if random.randint(0, 1) == 0: + connect_mandatory_exits(world, lw_entrances, caves, lw_must_exits) + connect_mandatory_exits(world, dw_entrances, caves, dw_must_exits) + else: + connect_mandatory_exits(world, dw_entrances, caves, dw_must_exits) + connect_mandatory_exits(world, lw_entrances, caves, lw_must_exits) + if world.mode == 'standard': + # rest of hyrule castle must be in light world + connect_caves(world, lw_entrances, [], [('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')]) + + # place old man, has limited options + # exit has to come from specific set of doors, the entrance is free to move about + old_man_entrances = [door for door in old_man_entrances if door in lw_entrances] + random.shuffle(old_man_entrances) + old_man_exit = old_man_entrances.pop() + connect_two_way(world, old_man_exit, 'Old Man Cave Exit (East)') + lw_entrances.remove(old_man_exit) + + # place blacksmith, has limited options + all_entrances = lw_entrances + dw_entrances + # cannot place it anywhere already taken (or that are otherwise not eligable for placement) + blacksmith_doors = [door for door in blacksmith_doors if door in all_entrances] + random.shuffle(blacksmith_doors) + blacksmith_hut = blacksmith_doors.pop() + connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut') + if blacksmith_hut in lw_entrances: + lw_entrances.remove(blacksmith_hut) + if blacksmith_hut in dw_entrances: + dw_entrances.remove(blacksmith_hut) + bomb_shop_doors.extend(blacksmith_doors) + + # place bomb shop, has limited options + all_entrances = lw_entrances + dw_entrances + # cannot place it anywhere already taken (or that are otherwise not eligable for placement) + bomb_shop_doors = [door for door in bomb_shop_doors if door in all_entrances] + random.shuffle(bomb_shop_doors) + bomb_shop = bomb_shop_doors.pop() + connect_entrance(world, bomb_shop, 'Big Bomb Shop') + if bomb_shop in lw_entrances: + lw_entrances.remove(bomb_shop) + if bomb_shop in dw_entrances: + dw_entrances.remove(bomb_shop) + + # place the old man cave's entrance somewhere in the light world + random.shuffle(lw_entrances) + old_man_entrance = lw_entrances.pop() + connect_two_way(world, old_man_entrance, 'Old Man Cave Exit (West)') + + # place Old Man House in Light World + connect_caves(world, lw_entrances, [], [('Old Man House Exit (Bottom)', 'Old Man House Exit (Top)')]) + + # now scramble the rest + connect_caves(world, lw_entrances, dw_entrances, caves) + + # scramble holes + scramble_holes(world) + + doors = lw_entrances + dw_entrances + + # place remaining doors + connect_doors(world, doors, door_targets) + elif world.shuffle == 'crossed': + skull_woods_shuffle(world) + + entrances = list(LW_Entrances + LW_Dungeon_Entrances + LW_Single_Cave_Doors + Old_Man_Entrances + DW_Entrances + DW_Dungeon_Entrances + DW_Single_Cave_Doors) + must_exits = list(DW_Entrances_Must_Exit + DW_Dungeon_Entrances_Must_Exit + LW_Dungeon_Entrances_Must_Exit) + + old_man_entrances = list(Old_Man_Entrances + ['Tower of Hera']) + caves = list(Cave_Exits + Dungeon_Exits + Cave_Three_Exits) # don't need to consider three exit caves, have one exit caves to avoid parity issues + bomb_shop_doors = list(Bomb_Shop_Single_Cave_Doors + Bomb_Shop_Multi_Cave_Doors) + blacksmith_doors = list(Blacksmith_Single_Cave_Doors + Blacksmith_Multi_Cave_Doors) + door_targets = list(Single_Cave_Targets) + + # tavern back door cannot be shuffled yet + connect_doors(world, ['Tavern North'], ['Tavern']) + + if world.mode == 'standard': + # must connect front of hyrule castle to do escape + connect_two_way(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)') + else: + caves.append(('Hyrule Castle Exit (South)', 'Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')) + entrances.append('Hyrule Castle Entrance (South)') + + if not world.shuffle_ganon: + connect_two_way(world, 'Ganons Tower', 'Ganons Tower Exit') + else: + entrances.append('Ganons Tower') + caves.append('Ganons Tower Exit') + + connect_mandatory_exits(world, entrances, caves, must_exits) + + if world.mode == 'standard': + # rest of hyrule castle must be dealt with + connect_caves(world, entrances, [], [('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')]) + + # place old man, has limited options + # exit has to come from specific set of doors, the entrance is free to move about + old_man_entrances = [door for door in old_man_entrances if door in entrances] + random.shuffle(old_man_entrances) + old_man_exit = old_man_entrances.pop() + connect_two_way(world, old_man_exit, 'Old Man Cave Exit (East)') + entrances.remove(old_man_exit) + + # place blacksmith, has limited options + # cannot place it anywhere already taken (or that are otherwise not eligable for placement) + blacksmith_doors = [door for door in blacksmith_doors if door in entrances] + random.shuffle(blacksmith_doors) + blacksmith_hut = blacksmith_doors.pop() + connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut') + entrances.remove(blacksmith_hut) + bomb_shop_doors.extend(blacksmith_doors) + + # place bomb shop, has limited options + + # cannot place it anywhere already taken (or that are otherwise not eligable for placement) + bomb_shop_doors = [door for door in bomb_shop_doors if door in entrances] + random.shuffle(bomb_shop_doors) + bomb_shop = bomb_shop_doors.pop() + connect_entrance(world, bomb_shop, 'Big Bomb Shop') + entrances.remove(bomb_shop) + + + # place the old man cave's entrance somewhere + random.shuffle(entrances) + old_man_entrance = entrances.pop() + connect_two_way(world, old_man_entrance, 'Old Man Cave Exit (West)') + + # place Old Man House + connect_caves(world, entrances, [], [('Old Man House Exit (Bottom)', 'Old Man House Exit (Top)')]) + + # now scramble the rest + connect_caves(world, entrances, [], caves) + + # scramble holes + scramble_holes(world) + + # place remaining doors + connect_doors(world, entrances, door_targets) + elif world.shuffle == 'full_legacy': + skull_woods_shuffle(world) + + lw_entrances = list(LW_Entrances + LW_Dungeon_Entrances + Old_Man_Entrances) dw_entrances = list(DW_Entrances + DW_Dungeon_Entrances) dw_must_exits = list(DW_Entrances_Must_Exit + DW_Dungeon_Entrances_Must_Exit) lw_must_exits = list(LW_Dungeon_Entrances_Must_Exit) - old_man_entrances = list(Old_Man_Entrances) + old_man_entrances = list(Old_Man_Entrances + ['Tower of Hera']) caves = list(Cave_Exits + Dungeon_Exits + Cave_Three_Exits) # don't need to consider three exit caves, have one exit caves to avoid parity issues single_doors = list(Single_Cave_Doors) bomb_shop_doors = list(Bomb_Shop_Single_Cave_Doors) @@ -216,21 +451,22 @@ def link_entrances(world): connect_mandatory_exits(world, dw_entrances, caves, dw_must_exits) connect_mandatory_exits(world, lw_entrances, caves, lw_must_exits) if world.mode == 'standard': - # rest of hyrule castle must be in light world to avoid fake darkworld stuff + # rest of hyrule castle must be in light world connect_caves(world, lw_entrances, [], [('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')]) - connect_caves(world, lw_entrances, [], list(LW_Dungeon_Exits)) # Agahnim must be light world # place old man, has limited options # exit has to come from specific set of doors, the entrance is free to move about + old_man_entrances = [door for door in old_man_entrances if door in lw_entrances] random.shuffle(old_man_entrances) old_man_exit = old_man_entrances.pop() - lw_entrances.extend(old_man_entrances) + lw_entrances.remove(old_man_exit) + random.shuffle(lw_entrances) old_man_entrance = lw_entrances.pop() connect_two_way(world, old_man_entrance, 'Old Man Cave Exit (West)') connect_two_way(world, old_man_exit, 'Old Man Cave Exit (East)') - # place Old Man House in Light World, so using the s&q point does not cause fake dark world + # place Old Man House in Light World connect_caves(world, lw_entrances, [], [('Old Man House Exit (Bottom)', 'Old Man House Exit (Top)')]) # now scramble the rest @@ -245,7 +481,7 @@ def link_entrances(world): connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut') bomb_shop_doors.extend(blacksmith_doors) - # place dam and pyramid fairy, have limited options + # place bomb shop, has limited options random.shuffle(bomb_shop_doors) bomb_shop = bomb_shop_doors.pop() connect_entrance(world, bomb_shop, 'Big Bomb Shop') @@ -256,10 +492,9 @@ def link_entrances(world): # place remaining doors connect_doors(world, single_doors, door_targets) - - elif world.shuffle == 'madness': + elif world.shuffle == 'madness_legacy': # here lie dragons, connections are no longer two way - lw_entrances = list(LW_Entrances + LW_Dungeon_Entrances) + lw_entrances = list(LW_Entrances + LW_Dungeon_Entrances + Old_Man_Entrances) dw_entrances = list(DW_Entrances + DW_Dungeon_Entrances) dw_entrances_must_exits = list(DW_Entrances_Must_Exit + DW_Dungeon_Entrances_Must_Exit) @@ -277,7 +512,8 @@ def link_entrances(world): lw_entrances.extend(['Kakariko Well Cave', 'Bat Cave Cave', 'North Fairy Cave', 'Sanctuary', 'Lost Woods Hideout Stump', 'Lumberjack Tree Cave', 'Hyrule Castle Entrance (South)']) lw_entrances_must_exits = list(LW_Dungeon_Entrances_Must_Exit) - old_man_entrances = list(Old_Man_Entrances) + + old_man_entrances = list(Old_Man_Entrances) + ['Tower of Hera'] mandatory_light_world = ['Old Man House Exit (Bottom)', 'Old Man House Exit (Top)'] mandatory_dark_world = [] @@ -410,10 +646,10 @@ def connect_reachable_exit(entrance, general, worldspecific, worldoors): # place old man, has limited options # exit has to come from specific set of doors, the entrance is free to move about + old_man_entrances = [entrance for entrance in old_man_entrances if entrance in lw_entrances] random.shuffle(old_man_entrances) old_man_exit = old_man_entrances.pop() - lw_entrances.extend(old_man_entrances) - random.shuffle(lw_entrances) + lw_entrances.remove(old_man_exit) connect_exit(world, 'Old Man Cave Exit (East)', old_man_exit) connect_entrance(world, lw_doors.pop(), 'Old Man Cave Exit (East)') @@ -497,23 +733,32 @@ def connect_reachable_exit(entrance, general, worldspecific, worldoors): # place remaining doors connect_doors(world, single_doors, door_targets) - elif world.shuffle == 'insanity': # beware ye who enter here - entrances = LW_Entrances + LW_Dungeon_Entrances + DW_Entrances + DW_Dungeon_Entrances + ['Skull Woods Second Section Door (East)', 'Skull Woods First Section Door', 'Kakariko Well Cave', 'Bat Cave Cave', 'North Fairy Cave', 'Sanctuary', 'Lost Woods Hideout Stump', 'Lumberjack Tree Cave', 'Hyrule Castle Entrance (South)'] + entrances = LW_Entrances + LW_Dungeon_Entrances + DW_Entrances + DW_Dungeon_Entrances + Old_Man_Entrances + ['Skull Woods Second Section Door (East)', 'Skull Woods First Section Door', 'Kakariko Well Cave', 'Bat Cave Cave', 'North Fairy Cave', 'Sanctuary', 'Lost Woods Hideout Stump', 'Lumberjack Tree Cave', 'Hyrule Castle Entrance (South)'] entrances_must_exits = DW_Entrances_Must_Exit + DW_Dungeon_Entrances_Must_Exit + LW_Dungeon_Entrances_Must_Exit + ['Skull Woods Second Section Door (West)'] doors = LW_Entrances + LW_Dungeon_Entrances + LW_Dungeon_Entrances_Must_Exit + ['Kakariko Well Cave', 'Bat Cave Cave', 'North Fairy Cave', 'Sanctuary', 'Lost Woods Hideout Stump', 'Lumberjack Tree Cave', 'Hyrule Castle Secret Entrance Stairs'] + Old_Man_Entrances +\ - DW_Entrances + DW_Dungeon_Entrances + DW_Entrances_Must_Exit + DW_Dungeon_Entrances_Must_Exit + ['Skull Woods First Section Door', 'Skull Woods Second Section Door (East)', 'Skull Woods Second Section Door (West)'] + DW_Entrances + DW_Dungeon_Entrances + DW_Entrances_Must_Exit + DW_Dungeon_Entrances_Must_Exit + ['Skull Woods First Section Door', 'Skull Woods Second Section Door (East)', 'Skull Woods Second Section Door (West)'] +\ + LW_Single_Cave_Doors + DW_Single_Cave_Doors + + # TODO: there are other possible entrances we could support here by way of exiting from a connector, + # and rentering to find bomb shop. However appended list here is all those that we currently have + # bomb shop logic for. + # Specifically we could potentially add: 'Dark Death Mountain Ledge (East)' and doors associated with pits + bomb_shop_doors = list(Bomb_Shop_Single_Cave_Doors + Bomb_Shop_Multi_Cave_Doors+['Desert Palace Entrance (East)', 'Turtle Rock Isolated Ledge Entrance', 'Bumper Cave (Top)', 'Hookshot Cave Back Entrance']) + blacksmith_doors = list(Blacksmith_Single_Cave_Doors + Blacksmith_Multi_Cave_Doors) + door_targets = list(Single_Cave_Targets) random.shuffle(doors) - old_man_entrances = list(Old_Man_Entrances) + old_man_entrances = list(Old_Man_Entrances) + ['Tower of Hera'] caves = Cave_Exits + Dungeon_Exits + Cave_Three_Exits + ['Old Man House Exit (Bottom)', 'Old Man House Exit (Top)', 'Skull Woods First Section Exit', 'Skull Woods Second Section Exit (East)', 'Skull Woods Second Section Exit (West)', 'Kakariko Well Exit', 'Bat Cave Exit', 'North Fairy Cave Exit', 'Lost Woods Hideout Exit', 'Lumberjack Tree Exit', 'Sanctuary Exit'] + # shuffle up holes hole_entrances = ['Kakariko Well Drop', 'Bat Cave Drop', 'North Fairy Cave Drop', 'Lost Woods Hideout Drop', 'Lumberjack Tree Tree', 'Sanctuary Grave', @@ -522,6 +767,9 @@ def connect_reachable_exit(entrance, general, worldspecific, worldoors): hole_targets = ['Kakariko Well (top)', 'Bat Cave (right)', 'North Fairy Cave', 'Lost Woods Hideout (top)', 'Lumberjack Tree (top)', 'Sewer Drop', 'Skull Woods Second Section (Drop)', 'Skull Woods First Section (Left)', 'Skull Woods First Section (Right)', 'Skull Woods First Section (Top)'] + # tavern back door cannot be shuffled yet + connect_doors(world, ['Tavern North'], ['Tavern']) + if world.mode == 'standard': # cannot move uncle cave connect_entrance(world, 'Hyrule Castle Secret Entrance Drop', 'Hyrule Castle Secret Entrance') @@ -596,11 +844,144 @@ def connect_reachable_exit(entrance, caves, doors): # place old man, has limited options # exit has to come from specific set of doors, the entrance is free to move about + old_man_entrances = [entrance for entrance in old_man_entrances if entrance in entrances] random.shuffle(old_man_entrances) old_man_exit = old_man_entrances.pop() - entrances.extend(old_man_entrances) + entrances.remove(old_man_exit) + + connect_exit(world, 'Old Man Cave Exit (East)', old_man_exit) + connect_entrance(world, doors.pop(), 'Old Man Cave Exit (East)') + caves.append('Old Man Cave Exit (West)') + + # place blacksmith, has limited options + blacksmith_doors = [door for door in blacksmith_doors if door in doors] + random.shuffle(blacksmith_doors) + blacksmith_hut = blacksmith_doors.pop() + connect_entrance(world, blacksmith_hut, 'Blacksmiths Hut') + doors.remove(blacksmith_hut) + + # place dam and pyramid fairy, have limited options + bomb_shop_doors = [door for door in bomb_shop_doors if door in doors] + random.shuffle(bomb_shop_doors) + bomb_shop = bomb_shop_doors.pop() + connect_entrance(world, bomb_shop, 'Big Bomb Shop') + doors.remove(bomb_shop) + + # handle remaining caves + for cave in caves: + if isinstance(cave, str): + cave = (cave,) + + for exit in cave: + connect_exit(world, exit, entrances.pop()) + connect_entrance(world, doors.pop(), exit) + + # place remaining doors + connect_doors(world, doors, door_targets) + elif world.shuffle == 'insanity_legacy': + world.fix_fake_world = False + # beware ye who enter here + + entrances = LW_Entrances + LW_Dungeon_Entrances + DW_Entrances + DW_Dungeon_Entrances + Old_Man_Entrances + ['Skull Woods Second Section Door (East)', 'Skull Woods First Section Door', 'Kakariko Well Cave', 'Bat Cave Cave', 'North Fairy Cave', 'Sanctuary', 'Lost Woods Hideout Stump', 'Lumberjack Tree Cave', 'Hyrule Castle Entrance (South)'] + entrances_must_exits = DW_Entrances_Must_Exit + DW_Dungeon_Entrances_Must_Exit + LW_Dungeon_Entrances_Must_Exit + ['Skull Woods Second Section Door (West)'] + + doors = LW_Entrances + LW_Dungeon_Entrances + LW_Dungeon_Entrances_Must_Exit + ['Kakariko Well Cave', 'Bat Cave Cave', 'North Fairy Cave', 'Sanctuary', 'Lost Woods Hideout Stump', 'Lumberjack Tree Cave', 'Hyrule Castle Secret Entrance Stairs'] + Old_Man_Entrances +\ + DW_Entrances + DW_Dungeon_Entrances + DW_Entrances_Must_Exit + DW_Dungeon_Entrances_Must_Exit + ['Skull Woods First Section Door', 'Skull Woods Second Section Door (East)', 'Skull Woods Second Section Door (West)'] + + random.shuffle(doors) + + old_man_entrances = list(Old_Man_Entrances) + ['Tower of Hera'] + + caves = Cave_Exits + Dungeon_Exits + Cave_Three_Exits + ['Old Man House Exit (Bottom)', 'Old Man House Exit (Top)', 'Skull Woods First Section Exit', 'Skull Woods Second Section Exit (East)', 'Skull Woods Second Section Exit (West)', + 'Kakariko Well Exit', 'Bat Cave Exit', 'North Fairy Cave Exit', 'Lost Woods Hideout Exit', 'Lumberjack Tree Exit', 'Sanctuary Exit'] + + # shuffle up holes + + hole_entrances = ['Kakariko Well Drop', 'Bat Cave Drop', 'North Fairy Cave Drop', 'Lost Woods Hideout Drop', 'Lumberjack Tree Tree', 'Sanctuary Grave', + 'Skull Woods First Section Hole (East)', 'Skull Woods First Section Hole (West)', 'Skull Woods First Section Hole (North)', 'Skull Woods Second Section Hole'] + + hole_targets = ['Kakariko Well (top)', 'Bat Cave (right)', 'North Fairy Cave', 'Lost Woods Hideout (top)', 'Lumberjack Tree (top)', 'Sewer Drop', 'Skull Woods Second Section (Drop)', + 'Skull Woods First Section (Left)', 'Skull Woods First Section (Right)', 'Skull Woods First Section (Top)'] + + if world.mode == 'standard': + # cannot move uncle cave + connect_entrance(world, 'Hyrule Castle Secret Entrance Drop', 'Hyrule Castle Secret Entrance') + connect_exit(world, 'Hyrule Castle Secret Entrance Exit', 'Hyrule Castle Secret Entrance Stairs') + connect_entrance(world, doors.pop(), 'Hyrule Castle Secret Entrance Exit') + else: + hole_entrances.append('Hyrule Castle Secret Entrance Drop') + hole_targets.append('Hyrule Castle Secret Entrance') + entrances.append('Hyrule Castle Secret Entrance Stairs') + caves.append('Hyrule Castle Secret Entrance Exit') + + if not world.shuffle_ganon: + connect_two_way(world, 'Ganons Tower', 'Ganons Tower Exit') + connect_two_way(world, 'Pyramid Entrance', 'Pyramid Exit') + connect_entrance(world, 'Pyramid Hole', 'Pyramid') + else: + entrances.append('Ganons Tower') + caves.extend(['Ganons Tower Exit', 'Pyramid Exit']) + hole_entrances.append('Pyramid Hole') + hole_targets.append('Pyramid') + entrances_must_exits.append('Pyramid Entrance') + doors.extend(['Ganons Tower', 'Pyramid Entrance']) + + random.shuffle(hole_entrances) + random.shuffle(hole_targets) random.shuffle(entrances) + # fill up holes + for hole in hole_entrances: + connect_entrance(world, hole, hole_targets.pop()) + + # hyrule castle handling + if world.mode == 'standard': + # must connect front of hyrule castle to do escape + connect_entrance(world, 'Hyrule Castle Entrance (South)', 'Hyrule Castle Exit (South)') + connect_exit(world, 'Hyrule Castle Exit (South)', entrances.pop()) + caves.append(('Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')) + else: + doors.append('Hyrule Castle Entrance (South)') + caves.append(('Hyrule Castle Exit (South)', 'Hyrule Castle Exit (West)', 'Hyrule Castle Exit (East)')) + + # now let's deal with mandatory reachable stuff + def extract_reachable_exit(cavelist): + random.shuffle(cavelist) + candidate = None + for cave in cavelist: + if isinstance(cave, tuple) and len(cave) > 1: + # special handling: TRock has two entries that we should consider entrance only + # ToDo this should be handled in a more sensible manner + if cave[0] in ['Turtle Rock Exit (Front)', 'Spectacle Rock Cave Exit (Peak)'] and len(cave) == 2: + continue + candidate = cave + break + if candidate is None: + raise RuntimeError('No suitable cave.') + cavelist.remove(candidate) + return candidate + + def connect_reachable_exit(entrance, caves, doors): + cave = extract_reachable_exit(caves) + + exit = cave[-1] + cave = cave[:-1] + connect_exit(world, exit, entrance) + connect_entrance(world, doors.pop(), exit) + # rest of cave now is forced to be in this world + caves.append(cave) + + # connect mandatory exits + for entrance in entrances_must_exits: + connect_reachable_exit(entrance, caves, doors) + + # place old man, has limited options + # exit has to come from specific set of doors, the entrance is free to move about + old_man_entrances = [entrance for entrance in old_man_entrances if entrance in entrances] + random.shuffle(old_man_entrances) + old_man_exit = old_man_entrances.pop() + entrances.remove(old_man_exit) + connect_exit(world, 'Old Man Cave Exit (East)', old_man_exit) connect_entrance(world, doors.pop(), 'Old Man Cave Exit (East)') caves.append('Old Man Cave Exit (West)') @@ -638,7 +1019,6 @@ def connect_reachable_exit(entrance, caves, doors): # place remaining doors connect_doors(world, single_doors, door_targets) - else: raise NotImplementedError('Shuffling not supported yet') @@ -646,10 +1026,18 @@ def connect_reachable_exit(entrance, caves, doors): if world.get_entrance('Dam').connected_region.name != 'Dam' or world.get_entrance('Swamp Palace').connected_region.name != 'Swamp Palace (Entrance)': world.swamp_patch_required = True + # check for + if world.get_entrance('Potion Shop').connected_region.name != 'Potion Shop': + world.powder_patch_required = True + # check for ganon location if world.get_entrance('Pyramid Hole').connected_region.name != 'Pyramid': world.ganon_at_pyramid = False + # check for Ganon's Tower location + if world.get_entrance('Ganons Tower').connected_region.name != 'Ganons Tower (Entrance)': + world.ganonstower_vanilla = False + def connect_simple(world, exitname, regionname): world.get_entrance(exitname).connect(world.get_region(regionname)) @@ -670,14 +1058,9 @@ def connect_entrance(world, entrancename, exitname): entrance.connected_region.entrances.remove(entrance) target = exit_ids[exit.name][0] if exit is not None else exit_ids.get(region.name, None) - addresses = door_addresses[entrance.name][0][0] if exit is not None else door_addresses[entrance.name][0] - try: - vanilla_ref = door_addresses[entrance.name][1] - vanilla = exit_ids[vanilla_ref] - except IndexError: - vanilla = None + addresses = door_addresses[entrance.name][0] - entrance.connect(region, addresses, target, vanilla) + entrance.connect(region, addresses, target) world.spoiler.set_entrance(entrance.name, exit.name if exit is not None else region.name, 'entrance') @@ -689,7 +1072,7 @@ def connect_exit(world, exitname, entrancename): if exit.connected_region is not None: exit.connected_region.entrances.remove(exit) - exit.connect(entrance.parent_region, door_addresses[entrance.name][0][1], exit_ids[exit.name][1]) + exit.connect(entrance.parent_region, door_addresses[entrance.name][1], exit_ids[exit.name][1]) world.spoiler.set_entrance(entrance.name, exit.name, 'exit') @@ -703,8 +1086,8 @@ def connect_two_way(world, entrancename, exitname): if exit.connected_region is not None: exit.connected_region.entrances.remove(exit) - entrance.connect(exit.parent_region, door_addresses[entrance.name][0][0], exit_ids[exit.name][0]) - exit.connect(entrance.parent_region, door_addresses[entrance.name][0][1], exit_ids[exit.name][1]) + entrance.connect(exit.parent_region, door_addresses[entrance.name][0], exit_ids[exit.name][0]) + exit.connect(entrance.parent_region, door_addresses[entrance.name][1], exit_ids[exit.name][1]) world.spoiler.set_entrance(entrance.name, exit.name, 'both') @@ -736,13 +1119,16 @@ def scramble_holes(world): hole_entrances.append(('Hyrule Castle Secret Entrance Stairs', 'Hyrule Castle Secret Entrance Drop')) hole_targets.append(('Hyrule Castle Secret Entrance Exit', 'Hyrule Castle Secret Entrance')) - # do not shuffle sanctuary into pyramid hole + # do not shuffle sanctuary into pyramid hole unless shuffle is crossed + if world.shuffle == 'crossed': + hole_targets.append(('Sanctuary Exit', 'Sewer Drop')) if world.shuffle_ganon: random.shuffle(hole_targets) exit, target = hole_targets.pop() connect_two_way(world, 'Pyramid Entrance', exit) connect_entrance(world, 'Pyramid Hole', target) - hole_targets.append(('Sanctuary Exit', 'Sewer Drop')) + if world.shuffle != 'crossed': + hole_targets.append(('Sanctuary Exit', 'Sewer Drop')) random.shuffle(hole_targets) for entrance, drop in hole_entrances: @@ -779,7 +1165,6 @@ def connect_mandatory_exits(world, entrances, caves, must_be_exits): raise RuntimeError('No more caves left. Should not happen!') else: caves.remove(cave) - # all caves are sorted so that the last exit is always reachable for i in range(len(cave) - 1): entrance = entrances.pop() @@ -941,8 +1326,6 @@ def simple_shuffle_dungeons(world): DW_Dungeon_Entrances_Must_Exit = ['Dark Death Mountain Ledge (East)', 'Turtle Rock Isolated Ledge Entrance'] -LW_Dungeon_Exits = [] - Dungeon_Exits = [('Desert Palace Exit (South)', 'Desert Palace Exit (West)', 'Desert Palace Exit (East)'), 'Desert Palace Exit (North)', 'Eastern Palace Exit', @@ -1004,9 +1387,137 @@ def simple_shuffle_dungeons(world): 'Superbunny Cave (Bottom)', 'Hookshot Cave'] +Bomb_Shop_Multi_Cave_Doors = ['Hyrule Castle Entrance (South)', + 'Misery Mire', + 'Thieves Town', + 'Bumper Cave (Bottom)', + 'Swamp Palace', + 'Hyrule Castle Secret Entrance Stairs', + 'Skull Woods First Section Door', + 'Skull Woods Second Section Door (East)', + 'Skull Woods Second Section Door (West)', + 'Skull Woods Final Section', + 'Ice Palace', + 'Turtle Rock', + 'Dark Death Mountain Ledge (West)', + 'Dark Death Mountain Ledge (East)', + 'Superbunny Cave (Top)', + 'Superbunny Cave (Bottom)', + 'Hookshot Cave', + 'Ganons Tower', + 'Desert Palace Entrance (South)', + 'Tower of Hera', + 'Two Brothers House (West)', + 'Old Man Cave (East)', + 'Old Man House (Bottom)', + 'Old Man House (Top)', + 'Death Mountain Return Cave (East)', + 'Death Mountain Return Cave (West)', + 'Spectacle Rock Cave Peak', + 'Spectacle Rock Cave', + 'Spectacle Rock Cave (Bottom)', + 'Paradox Cave (Bottom)', + 'Paradox Cave (Middle)', + 'Paradox Cave (Top)', + 'Fairy Ascension Cave (Bottom)', + 'Fairy Ascension Cave (Top)', + 'Spiral Cave', + 'Spiral Cave (Bottom)', + 'Palace of Darkness', + 'Hyrule Castle Entrance (West)', + 'Hyrule Castle Entrance (East)', + 'Agahnims Tower', + 'Desert Palace Entrance (West)', + 'Desert Palace Entrance (North)' + # all entrances below this line would be possible for blacksmith_hut + # if it were not for dwarf checking multi-entrance caves + ] + +Blacksmith_Multi_Cave_Doors = ['Eastern Palace', + 'Elder House (East)', + 'Elder House (West)', + 'Two Brothers House (East)', + 'Old Man Cave (West)', + 'Sanctuary', + 'Lumberjack Tree Cave', + 'Lost Woods Hideout Stump', + 'North Fairy Cave', + 'Bat Cave Cave', + 'Kakariko Well Cave'] + +LW_Single_Cave_Doors = ['Blinds Hideout', + 'Lake Hylia Fairy', + 'Light Hype Fairy', + 'Desert Fairy', + 'Chicken House', + 'Aginahs Cave', + 'Sahasrahlas Hut', + 'Cave Shop (Lake Hylia)', + 'Blacksmiths Hut', + 'Sick Kids House', + 'Lost Woods Gamble', + 'Fortune Teller (Light)', + 'Snitch Lady (East)', + 'Snitch Lady (West)', + 'Bush Covered House', + 'Tavern (Front)', + 'Light World Bomb Hut', + 'Kakariko Shop', + 'Mini Moldorm Cave', + 'Long Fairy Cave', + 'Good Bee Cave', + '20 Rupee Cave', + '50 Rupee Cave', + 'Ice Rod Cave', + 'Library', + 'Potion Shop', + 'Dam', + 'Lumberjack House', + 'Lake Hylia Fortune Teller', + 'Kakariko Gamble Game', + 'Waterfall of Wishing', + 'Capacity Upgrade', + 'Bonk Rock Cave', + 'Graveyard Cave', + 'Checkerboard Cave', + 'Cave 45', + 'Kings Grave', + 'Bonk Fairy (Light)', + 'Hookshot Fairy', + 'Mimic Cave'] + +DW_Single_Cave_Doors = ['Bonk Fairy (Dark)', + 'Dark Sanctuary Hint', + 'Dark Lake Hylia Fairy', + 'C-Shaped House', + 'Big Bomb Shop', + 'Dark Death Mountain Fairy', + 'Dark Lake Hylia Shop', + 'Dark World Shop', + 'Red Shield Shop', + 'Mire Shed', + 'East Dark World Hint', + 'Dark Desert Hint', + 'Spike Cave', + 'Palace of Darkness Hint', + 'Dark Lake Hylia Ledge Spike Cave', + 'Cave Shop (Dark Death Mountain)', + 'Dark World Potion Shop', + 'Pyramid Fairy', + 'Archery Game', + 'Dark World Lumberjack Shop', + 'Hype Cave', + 'Brewery', + 'Dark Lake Hylia Ledge Hint', + 'Chest Game', + 'Dark Desert Fairy', + 'Dark Lake Hylia Ledge Fairy', + 'Fortune Teller (Dark)', + 'Dark World Hammer Peg Cave'] + Blacksmith_Single_Cave_Doors = ['Blinds Hideout', 'Lake Hylia Fairy', - 'Swamp Fairy', + 'Light Hype Fairy', 'Desert Fairy', 'Chicken House', 'Aginahs Cave', @@ -1076,15 +1587,15 @@ def simple_shuffle_dungeons(world): Single_Cave_Doors = ['Pyramid Fairy'] Single_Cave_Targets = ['Blinds Hideout', - 'Bonk Fairy', - 'Healer Fairy', - 'Healer Fairy', - 'Healer Fairy', + 'Bonk Fairy (Light)', + 'Lake Hylia Healer Fairy', + 'Swamp Healer Fairy', + 'Desert Healer Fairy', 'Kings Grave', 'Chicken House', 'Aginahs Cave', 'Sahasrahlas Hut', - 'Cave Shop', + 'Cave Shop (Lake Hylia)', 'Sick Kids House', 'Lost Woods Gamble', 'Fortune Teller (Light)', @@ -1112,12 +1623,12 @@ def simple_shuffle_dungeons(world): 'Pyramid Fairy', 'East Dark World Hint', 'Palace of Darkness Hint', - 'Healer Fairy', - 'Healer Fairy', + 'Dark Lake Hylia Healer Fairy', + 'Dark Lake Hylia Ledge Healer Fairy', 'Dark Lake Hylia Ledge Spike Cave', 'Dark Lake Hylia Ledge Hint', 'Hype Cave', - 'Bonk Fairy', + 'Bonk Fairy (Dark)', 'Brewery', 'C-Shaped House', 'Chest Game', @@ -1125,30 +1636,30 @@ def simple_shuffle_dungeons(world): 'Red Shield Shop', 'Dark Sanctuary Hint', 'Fortune Teller (Dark)', - 'Dark World Shop', - 'Dark World Shop', - 'Dark World Shop', + 'Village of Outcasts Shop', + 'Dark Lake Hylia Shop', + 'Dark World Lumberjack Shop', 'Archery Game', 'Mire Shed', 'Dark Desert Hint', - 'Healer Fairy', + 'Dark Desert Healer Fairy', 'Spike Cave', - 'Cave Shop', - 'Healer Fairy', + 'Cave Shop (Dark Death Mountain)', + 'Dark Death Mountain Healer Fairy', 'Mimic Cave', - 'Dark World Shop', + 'Dark World Potion Shop', 'Lumberjack House', - 'Fortune Teller (Light)', + 'Lake Hylia Fortune Teller', 'Kakariko Gamble Game', 'Dam'] # these are connections that cannot be shuffled and always exist. They link together separate parts of the world we need to divide into regions -mandatory_connections = [('Links House', 'Links House'), # unshuffled. For now - ('Links House Exit', 'Light World'), - - ('Lake Hylia Central Island Pier', 'Lake Hylia Central Island'), +mandatory_connections = [('Lake Hylia Central Island Pier', 'Lake Hylia Central Island'), ('Lake Hylia Central Island Teleporter', 'Dark Lake Hylia Central Island'), ('Zoras River', 'Zoras River'), + ('Kings Grave Outer Rocks', 'Kings Grave Area'), + ('Kings Grave Inner Rocks', 'Light World'), + ('Kings Grave Mirror Spot', 'Kings Grave Area'), ('Kakariko Well (top to bottom)', 'Kakariko Well (bottom)'), ('Master Sword Meadow', 'Master Sword Meadow'), ('Hobo Bridge', 'Hobo Bridge'), @@ -1170,6 +1681,8 @@ def simple_shuffle_dungeons(world): ('Sewers Back Door', 'Sewers (Dark)'), ('Agahnim 1', 'Agahnim 1'), ('Flute Spot 1', 'Death Mountain'), + ('Death Mountain Entrance Rock', 'Death Mountain Entrance'), + ('Death Mountain Entrance Drop', 'Light World'), ('Spectacle Rock Cave Drop', 'Spectacle Rock Cave (Bottom)'), ('Spectacle Rock Cave Peak Drop', 'Spectacle Rock Cave (Bottom)'), ('Death Mountain Return Ledge Drop', 'Light World'), @@ -1203,9 +1716,18 @@ def simple_shuffle_dungeons(world): ('Maze Race Mirror Spot', 'Maze Race Ledge'), ('Village of Outcasts Heavy Rock', 'West Dark World'), ('Village of Outcasts Drop', 'South Dark World'), + ('Village of Outcasts Eastern Rocks', 'Hammer Peg Area'), + ('Village of Outcasts Pegs', 'Dark Grassy Lawn'), + ('Peg Area Rocks', 'West Dark World'), + ('Grassy Lawn Pegs', 'West Dark World'), ('Bat Cave Drop Ledge Mirror Spot', 'Bat Cave Drop Ledge'), ('East Dark World River Pier', 'East Dark World'), ('West Dark World Gap', 'West Dark World'), + ('East Dark World Broken Bridge Pass', 'East Dark World'), + ('Northeast Dark World Broken Bridge Pass', 'Northeast Dark World'), + ('Bumper Cave Entrance Rock', 'Bumper Cave Entrance'), + ('Bumper Cave Entrance Drop', 'West Dark World'), + ('Bumper Cave Entrance Mirror Spot', 'Death Mountain Entrance'), ('Bumper Cave Ledge Drop', 'West Dark World'), ('Bumper Cave Ledge Mirror Spot', 'Death Mountain Return Ledge'), ('Skull Woods Forest', 'Skull Woods Forest'), @@ -1257,6 +1779,8 @@ def simple_shuffle_dungeons(world): ('Skull Woods First Section (Top) One-Way Path', 'Skull Woods First Section'), ('Skull Woods Second Section (Drop)', 'Skull Woods Second Section'), ('Blind Fight', 'Blind Fight'), + ('Desert Palace Pots (Outer)', 'Desert Palace Main (Inner)'), + ('Desert Palace Pots (Inner)', 'Desert Palace Main (Outer)'), ('Ice Palace Entrance Room', 'Ice Palace (Main)'), ('Ice Palace (East)', 'Ice Palace (East)'), ('Ice Palace (East Top)', 'Ice Palace (East Top)'), @@ -1311,17 +1835,17 @@ def simple_shuffle_dungeons(world): ("Hyrule Castle Secret Entrance Drop", "Hyrule Castle Secret Entrance"), ("Hyrule Castle Secret Entrance Stairs", "Hyrule Castle Secret Entrance"), ("Hyrule Castle Secret Entrance Exit", "Light World"), - ('Bonk Fairy (Light)', 'Bonk Fairy'), - ('Lake Hylia Fairy', 'Healer Fairy'), - ('Lake Hylia Fortune Teller', 'Fortune Teller (Light)'), - ('Swamp Fairy', 'Healer Fairy'), - ('Desert Fairy', 'Healer Fairy'), + ('Bonk Fairy (Light)', 'Bonk Fairy (Light)'), + ('Lake Hylia Fairy', 'Lake Hylia Healer Fairy'), + ('Lake Hylia Fortune Teller', 'Lake Hylia Fortune Teller'), + ('Light Hype Fairy', 'Swamp Healer Fairy'), + ('Desert Fairy', 'Desert Healer Fairy'), ('Kings Grave', 'Kings Grave'), ('Tavern North', 'Tavern'), ('Chicken House', 'Chicken House'), ('Aginahs Cave', 'Aginahs Cave'), ('Sahasrahlas Hut', 'Sahasrahlas Hut'), - ('Cave Shop (Lake Hylia)', 'Cave Shop'), + ('Cave Shop (Lake Hylia)', 'Cave Shop (Lake Hylia)'), ('Capacity Upgrade', 'Capacity Upgrade'), ('Kakariko Well Drop', 'Kakariko Well (top)'), ('Kakariko Well Cave', 'Kakariko Well (bottom)'), @@ -1412,13 +1936,13 @@ def simple_shuffle_dungeons(world): ('East Dark World Hint', 'East Dark World Hint'), ('Palace of Darkness Hint', 'Palace of Darkness Hint'), ('Big Bomb Shop', 'Big Bomb Shop'), - ('Dark Lake Hylia Shop', 'Dark World Shop'), - ('Dark Lake Hylia Fairy', 'Healer Fairy'), - ('Dark Lake Hylia Ledge Fairy', 'Healer Fairy'), + ('Dark Lake Hylia Shop', 'Dark Lake Hylia Shop'), + ('Dark Lake Hylia Fairy', 'Dark Lake Hylia Healer Fairy'), + ('Dark Lake Hylia Ledge Fairy', 'Dark Lake Hylia Ledge Healer Fairy'), ('Dark Lake Hylia Ledge Spike Cave', 'Dark Lake Hylia Ledge Spike Cave'), ('Dark Lake Hylia Ledge Hint', 'Dark Lake Hylia Ledge Hint'), ('Hype Cave', 'Hype Cave'), - ('Bonk Fairy (Dark)', 'Bonk Fairy'), + ('Bonk Fairy (Dark)', 'Bonk Fairy (Dark)'), ('Brewery', 'Brewery'), ('C-Shaped House', 'C-Shaped House'), ('Chest Game', 'Chest Game'), @@ -1428,20 +1952,20 @@ def simple_shuffle_dungeons(world): ('Red Shield Shop', 'Red Shield Shop'), ('Dark Sanctuary Hint', 'Dark Sanctuary Hint'), ('Fortune Teller (Dark)', 'Fortune Teller (Dark)'), - ('Dark World Shop', 'Dark World Shop'), - ('Dark World Lumberjack Shop', 'Dark World Shop'), - ('Dark World Potion Shop', 'Dark World Shop'), + ('Dark World Shop', 'Village of Outcasts Shop'), + ('Dark World Lumberjack Shop', 'Dark World Lumberjack Shop'), + ('Dark World Potion Shop', 'Dark World Potion Shop'), ('Archery Game', 'Archery Game'), ('Bumper Cave Exit (Top)', 'Bumper Cave Ledge'), ('Bumper Cave Exit (Bottom)', 'West Dark World'), ('Mire Shed', 'Mire Shed'), ('Dark Desert Hint', 'Dark Desert Hint'), - ('Dark Desert Fairy', 'Healer Fairy'), + ('Dark Desert Fairy', 'Dark Desert Healer Fairy'), ('Spike Cave', 'Spike Cave'), ('Hookshot Cave', 'Hookshot Cave'), ('Superbunny Cave (Top)', 'Superbunny Cave'), - ('Cave Shop (Dark Death Mountain)', 'Cave Shop'), - ('Dark Death Mountain Fairy', 'Healer Fairy'), + ('Cave Shop (Dark Death Mountain)', 'Cave Shop (Dark Death Mountain)'), + ('Dark Death Mountain Fairy', 'Dark Death Mountain Healer Fairy'), ('Superbunny Cave (Bottom)', 'Superbunny Cave'), ('Superbunny Cave Exit (Top)', 'Dark Death Mountain (Top)'), ('Superbunny Cave Exit (Bottom)', 'Dark Death Mountain (East Bottom)'), @@ -1456,10 +1980,10 @@ def simple_shuffle_dungeons(world): ] # non shuffled dungeons -default_dungeon_connections = [('Desert Palace Entrance (South)', 'Desert Palace Main'), - ('Desert Palace Entrance (West)', 'Desert Palace Main'), +default_dungeon_connections = [('Desert Palace Entrance (South)', 'Desert Palace Main (Inner)'), + ('Desert Palace Entrance (West)', 'Desert Palace Main (Outer)'), ('Desert Palace Entrance (North)', 'Desert Palace North'), - ('Desert Palace Entrance (East)', 'Desert Palace Main'), + ('Desert Palace Entrance (East)', 'Desert Palace Main (Outer)'), ('Desert Palace Exit (South)', 'Desert Palace Stairs'), ('Desert Palace Exit (West)', 'Desert Ledge'), ('Desert Palace Exit (East)', 'Desert Palace Lone Stairs'), @@ -1516,218 +2040,240 @@ def simple_shuffle_dungeons(world): ] +# format: +# Key=Name +# addr = (door_index, exitdata) # multiexit +# | ([addr], None) # holes +# exitdata = (room_id, ow_area, vram_loc, scroll_y, scroll_x, link_y, link_x, camera_y, camera_x, unknown_1, unknown_2, door_1, door_2) + # ToDo somehow merge this with creation of the locations -door_addresses = {'Desert Palace Entrance (South)': ((0xDBB7B, 0x15B02),), - 'Desert Palace Entrance (West)': ((0xDBB7D, 0x15B06),), - 'Desert Palace Entrance (North)': ((0xDBB7E, 0x15B08),), - 'Desert Palace Entrance (East)': ((0xDBB7C, 0x15B04),), - 'Eastern Palace': ((0xDBB7A, 0x15B00),), - 'Tower of Hera': ((0xDBBA5, 0x15B48),), - 'Hyrule Castle Entrance (South)': ((0xDBB76, 0x15AF4),), - 'Hyrule Castle Entrance (West)': ((0xDBB75, 0x15AF2),), - 'Hyrule Castle Entrance (East)': ((0xDBB77, 0x15AF6),), - 'Agahnims Tower': ((0xDBB96, 0x15B38),), - 'Thieves Town': ((0xDBBA6, 0x15B58),), - 'Skull Woods First Section Door': ((0xDBB9C, 0x15B44),), - 'Skull Woods Second Section Door (East)': ((0xDBB9B, 0x15B42),), - 'Skull Woods Second Section Door (West)': ((0xDBB9A, 0x15B40),), - 'Skull Woods Final Section': ((0xDBB9D, 0x15B46),), - 'Ice Palace': ((0xDBB9F, 0x15B4A),), - 'Misery Mire': ((0xDBB99, 0x15B3E),), - 'Palace of Darkness': ((0xDBB98, 0x15B3C),), - 'Swamp Palace': ((0xDBB97, 0x15B3A),), - 'Turtle Rock': ((0xDBBA7, 0x15B56),), - 'Dark Death Mountain Ledge (West)': ((0xDBB87, 0x15B1A),), - 'Dark Death Mountain Ledge (East)': ((0xDBB8B, 0x15B22),), - 'Turtle Rock Isolated Ledge Entrance': ((0xDBB8A, 0x15B20),), - 'Hyrule Castle Secret Entrance Stairs': ((0xDBBA4, 0x15B54),), - 'Kakariko Well Cave': ((0xDBBAB, 0x15B62),), - 'Bat Cave Cave': ((0xDBB83, 0x15B12),), - 'Elder House (East)': ((0xDBB80, 0x15B0C),), - 'Elder House (West)': ((0xDBB7F, 0x15B0A),), - 'North Fairy Cave': ((0xDBBAA, 0x15B60),), - 'Lost Woods Hideout Stump': ((0xDBB9E, 0x15B5A),), - 'Lumberjack Tree Cave': ((0xDBB84, 0x15B14),), - 'Two Brothers House (East)': ((0xDBB82, 0x15B10),), - 'Two Brothers House (West)': ((0xDBB81, 0x15B0E),), - 'Sanctuary': ((0xDBB74, 0x15AF0),), - 'Old Man Cave (West)': ((0xDBB78, 0x15AFC),), - 'Old Man Cave (East)': ((0xDBB79, 0x15AFE),), - 'Old Man House (Bottom)': ((0xDBBA2, 0x15B50),), - 'Old Man House (Top)': ((0xDBBA3, 0x15B52),), - 'Death Mountain Return Cave (East)': ((0xDBBA1, 0x15B4E),), - 'Death Mountain Return Cave (West)': ((0xDBBA0, 0x15B4C),), - 'Spectacle Rock Cave Peak': ((0xDBB95, 0x15B36),), - 'Spectacle Rock Cave': ((0xDBB94, 0x15B34),), - 'Spectacle Rock Cave (Bottom)': ((0xDBB93, 0x15B32),), - 'Paradox Cave (Bottom)': ((0xDBB90, 0x15B2C),), - 'Paradox Cave (Middle)': ((0xDBB91, 0x15B2E),), - 'Paradox Cave (Top)': ((0xDBB92, 0x15B30),), - 'Fairy Ascension Cave (Bottom)': ((0xDBB8C, 0x15B24),), - 'Fairy Ascension Cave (Top)': ((0xDBB8D, 0x15B26),), - 'Spiral Cave': ((0xDBB8F, 0x15B2A),), - 'Spiral Cave (Bottom)': ((0xDBB8E, 0x15B28),), - 'Bumper Cave (Bottom)': ((0xDBB88, 0x15B1C),), - 'Bumper Cave (Top)': ((0xDBB89, 0x15B1E),), - 'Superbunny Cave (Top)': ((0xDBB86, 0x15B18),), - 'Superbunny Cave (Bottom)': ((0xDBB85, 0x15B16),), - 'Hookshot Cave': ((0xDBBAC, 0x15B64),), - 'Hookshot Cave Back Entrance': ((0xDBBAD, 0x15B66),), - 'Ganons Tower': ((0xDBBA9, 0x15B5E),), - 'Pyramid Entrance': ((0xDBBA8, 0x15B5C),), - 'Skull Woods First Section Hole (East)': ((0xDB84D, 0xDB84E),), - 'Skull Woods First Section Hole (West)': ((0xDB84F, 0xDB850),), - 'Skull Woods First Section Hole (North)': (0xDB84C,), - 'Skull Woods Second Section Hole': ((0xDB851, 0xDB852),), - 'Pyramid Hole': ((0xDB854, 0xDB855, 0xDB856),), - 'Waterfall of Wishing': (0xDBBCE, 'Waterfall of Wishing'), - 'Dam': (0xDBBC0, 'Dam'), - 'Blinds Hideout': (0xDBBD3, 'Blinds Hideout'), - 'Hyrule Castle Secret Entrance Drop': (0xDB858,), - 'Bonk Fairy (Light)': (0xDBBE9, 'Bonk Fairy'), - 'Lake Hylia Fairy': (0xDBBD0, 'Healer Fairy'), - 'Swamp Fairy': (0xDBBDE, 'Healer Fairy'), - 'Desert Fairy': (0xDBBE4, 'Healer Fairy'), - 'Kings Grave': (0xDBBCD, 'Kings Grave'), - 'Tavern North': (0xDBBB5, 'Tavern'), # do not use, buggy - 'Chicken House': (0xDBBBD, 'Chicken House'), - 'Aginahs Cave': (0xDBBE3, 'Aginahs Cave'), - 'Sahasrahlas Hut': (0xDBBB7, 'Sahasrahlas Hut'), - 'Cave Shop (Lake Hylia)': (0xDBBCA, 'Cave Shop'), - 'Capacity Upgrade': (0xDBBCF, 'Capacity Upgrade'), - 'Kakariko Well Drop': ((0xDB85C, 0xDB85D),), - 'Blacksmiths Hut': (0xDBBD6, 'Blacksmiths Hut'), - 'Bat Cave Drop': ((0xDB859, 0xDB85A),), - 'Sick Kids House': (0xDBBB2, 'Sick Kids House'), - 'North Fairy Cave Drop': (0xDB857,), - 'Lost Woods Gamble': (0xDBBAE, 'Lost Woods Gamble'), - 'Fortune Teller (Light)': (0xDBBD7, 'Fortune Teller (Light)'), - 'Snitch Lady (East)': (0xDBBB0, 'Snitch Lady (East)'), - 'Snitch Lady (West)': (0xDBBB1, 'Snitch Lady (West)'), - 'Bush Covered House': (0xDBBB6, 'Bush Covered House'), - 'Tavern (Front)': (0xDBBB4, 'Tavern (Front)'), - 'Light World Bomb Hut': (0xDBBBC, 'Light World Bomb Hut'), - 'Kakariko Shop': (0xDBBB8, 'Kakariko Shop'), - 'Lost Woods Hideout Drop': (0xDB853,), - 'Lumberjack Tree Tree': (0xDB85B,), - 'Cave 45': (0xDBBC3, 'Cave 45'), - 'Graveyard Cave': (0xDBBC4, 'Graveyard Cave'), - 'Checkerboard Cave': (0xDBBF0, 'Checkerboard Cave'), - 'Mini Moldorm Cave': (0xDBBEF, 'Mini Moldorm Cave'), - 'Long Fairy Cave': (0xDBBC7, 'Long Fairy Cave'), - 'Good Bee Cave': (0xDBBDD, 'Good Bee Cave'), - '20 Rupee Cave': (0xDBBED, '20 Rupee Cave'), - '50 Rupee Cave': (0xDBBEB, '50 Rupee Cave'), - 'Ice Rod Cave': (0xDBBF2, 'Ice Rod Cave'), - 'Bonk Rock Cave': (0xDBBEC, 'Bonk Rock Cave'), - 'Library': (0xDBBBB, 'Library'), - 'Potion Shop': (0xDBBBE, 'Potion Shop'), - 'Sanctuary Grave': (0xDB85E,), - 'Hookshot Fairy': (0xDBBC2, 'Hookshot Fairy'), - 'Pyramid Fairy': (0xDBBD5, 'Pyramid Fairy'), - 'East Dark World Hint': (0xDBBDB, 'East Dark World Hint'), - 'Palace of Darkness Hint': (0xDBBDA, 'Palace of Darkness Hint'), - 'Dark Lake Hylia Fairy': (0xDBBDF, 'Healer Fairy'), - 'Dark Lake Hylia Ledge Fairy': (0xDBBF3, 'Healer Fairy'), - 'Dark Lake Hylia Ledge Spike Cave': (0xDBBEE, 'Dark Lake Hylia Ledge Spike Cave'), - 'Dark Lake Hylia Ledge Hint': (0xDBBDC, 'Dark Lake Hylia Ledge Hint'), - 'Hype Cave': (0xDBBAF, 'Hype Cave'), - 'Bonk Fairy (Dark)': (0xDBBEA, 'Bonk Fairy'), - 'Brewery': (0xDBBBA, 'Brewery'), - 'C-Shaped House': (0xDBBC6, 'C-Shaped House'), - 'Chest Game': (0xDBBB9, 'Chest Game'), - 'Dark World Hammer Peg Cave': (0xDBBF1, 'Dark World Hammer Peg Cave'), - 'Red Shield Shop': (0xDBBE7, 'Red Shield Shop'), - 'Dark Sanctuary Hint': (0xDBBCC, 'Dark Sanctuary Hint'), - 'Fortune Teller (Dark)': (0xDBBD8, 'Fortune Teller (Dark)'), - 'Dark World Shop': (0xDBBD2, 'Dark World Shop'), - 'Dark World Lumberjack Shop': (0xDBBC9, 'Dark World Shop'), - 'Dark World Potion Shop': (0xDBBE1, 'Dark World Shop'), - 'Archery Game': (0xDBBCB, 'Archery Game'), - 'Mire Shed': (0xDBBD1, 'Mire Shed'), - 'Dark Desert Hint': (0xDBBD4, 'Dark Desert Hint'), - 'Dark Desert Fairy': (0xDBBC8, 'Healer Fairy'), - 'Spike Cave': (0xDBBB3, 'Spike Cave'), - 'Cave Shop (Dark Death Mountain)': (0xDBBE0, 'Cave Shop'), - 'Dark Death Mountain Fairy': (0xDBBE2, 'Healer Fairy'), - 'Mimic Cave': (0xDBBC1, 'Mimic Cave'), - 'Big Bomb Shop': (0xDBBC5, 'Big Bomb Shop'), - 'Dark Lake Hylia Shop': (0xDBBE6, 'Dark World Shop'), - 'Lumberjack House': (0xDBBE8, 'Lumberjack House'), - 'Lake Hylia Fortune Teller': (0xDBBE5, 'Fortune Teller (Light)'), - 'Kakariko Gamble Game': (0xDBBD9, 'Kakariko Gamble Game')} - -exit_ids = {'Desert Palace Exit (South)': (0x09, 0x84), - 'Desert Palace Exit (West)': (0x0B, 0x83), - 'Desert Palace Exit (East)': (0x0A, 0x85), - 'Desert Palace Exit (North)': (0x0C, 0x63), - 'Eastern Palace Exit': (0x08, 0xC9), - 'Tower of Hera Exit': (0x33, 0x77), - 'Hyrule Castle Exit (South)': (0x04, 0x61), - 'Hyrule Castle Exit (West)': (0x03, 0x60), - 'Hyrule Castle Exit (East)': (0x05, 0x62), - 'Agahnims Tower Exit': (0x24, 0xE0), - 'Thieves Town Exit': (0x34, 0xDB), - 'Skull Woods First Section Exit': (0x2A, 0x58), - 'Skull Woods Second Section Exit (East)': (0x29, 0x57), - 'Skull Woods Second Section Exit (West)': (0x28, 0x56), - 'Skull Woods Final Section Exit': (0x2B, 0x59), - 'Ice Palace Exit': (0x2D, 0x0E), - 'Misery Mire Exit': (0x27, 0x98), - 'Palace of Darkness Exit': (0x26, 0x4A), - 'Swamp Palace Exit': (0x25, 0x28), - 'Turtle Rock Exit (Front)': (0x35, 0xD6), - 'Turtle Rock Ledge Exit (West)': (0x15, 0x23), - 'Turtle Rock Ledge Exit (East)': (0x19, 0x24), - 'Turtle Rock Isolated Ledge Exit': (0x18, 0xD5), - 'Hyrule Castle Secret Entrance Exit': (0x32, 0x55), - 'Kakariko Well Exit': (0x39, 0x2F), - 'Bat Cave Exit': (0x11, 0xE3), - 'Elder House Exit (East)': (0x0E, 0xF3), - 'Elder House Exit (West)': (0x0D, 0xF2), - 'North Fairy Cave Exit': (0x38, 0x08), - 'Lost Woods Hideout Exit': (0x2C, 0xE1), - 'Lumberjack Tree Exit': (0x12, 0xE2), - 'Two Brothers House Exit (East)': (0x10, 0xF5), - 'Two Brothers House Exit (West)': (0x0F, 0xF4), - 'Sanctuary Exit': (0x02, 0x12), - 'Old Man Cave Exit (East)': (0x07, 0xF1), - 'Old Man Cave Exit (West)': (0x06, 0xF0), - 'Old Man House Exit (Bottom)': (0x30, 0xE4), - 'Old Man House Exit (Top)': (0x31, 0xE5), - 'Death Mountain Return Cave Exit (West)': (0x2E, 0xE6), - 'Death Mountain Return Cave Exit (East)': (0x2F, 0xE7), - 'Spectacle Rock Cave Exit': (0x21, 0xF9), - 'Spectacle Rock Cave Exit (Top)': (0x22, 0xFA), - 'Spectacle Rock Cave Exit (Peak)': (0x23, 0xEA), - 'Paradox Cave Exit (Bottom)': (0x1E, 0xFF), - 'Paradox Cave Exit (Middle)': (0x1F, 0xEF), - 'Paradox Cave Exit (Top)': (0x20, 0xDF), - 'Fairy Ascension Cave Exit (Bottom)': (0x1A, 0xFD), - 'Fairy Ascension Cave Exit (Top)': (0x1B, 0xED), - 'Spiral Cave Exit': (0x1C, 0xFE), - 'Spiral Cave Exit (Top)': (0x1D, 0xEE), - 'Bumper Cave Exit (Top)': (0x17, 0xEB), - 'Bumper Cave Exit (Bottom)': (0x16, 0xFB), - 'Superbunny Cave Exit (Top)': (0x14, 0xE8), - 'Superbunny Cave Exit (Bottom)': (0x13, 0xF8), - 'Hookshot Cave Exit (South)': (0x3A, 0x3C), - 'Hookshot Cave Exit (North)': (0x3B, 0x2C), - 'Ganons Tower Exit': (0x37, 0x0C), - 'Pyramid Exit': (0x36, 0x10), +door_addresses = {'Links House': (0x00, (0x0104, 0x2c, 0x0506, 0x0a9a, 0x0832, 0x0ae8, 0x08b8, 0x0b07, 0x08bf, 0x06, 0xfe, 0x0816, 0x0000)), + 'Desert Palace Entrance (South)': (0x08, (0x0084, 0x30, 0x0314, 0x0c56, 0x00a6, 0x0ca8, 0x0128, 0x0cc3, 0x0133, 0x0a, 0xfa, 0x0000, 0x0000)), + 'Desert Palace Entrance (West)': (0x0A, (0x0083, 0x30, 0x0280, 0x0c46, 0x0003, 0x0c98, 0x0088, 0x0cb3, 0x0090, 0x0a, 0xfd, 0x0000, 0x0000)), + 'Desert Palace Entrance (North)': (0x0B, (0x0063, 0x30, 0x0016, 0x0c00, 0x00a2, 0x0c28, 0x0128, 0x0c6d, 0x012f, 0x00, 0x0e, 0x0000, 0x0000)), + 'Desert Palace Entrance (East)': (0x09, (0x0085, 0x30, 0x02a8, 0x0c4a, 0x0142, 0x0c98, 0x01c8, 0x0cb7, 0x01cf, 0x06, 0xfe, 0x0000, 0x0000)), + 'Eastern Palace': (0x07, (0x00c9, 0x1e, 0x005a, 0x0600, 0x0ed6, 0x0618, 0x0f50, 0x066d, 0x0f5b, 0x00, 0xfa, 0x0000, 0x0000)), + 'Tower of Hera': (0x32, (0x0077, 0x03, 0x0050, 0x0014, 0x087c, 0x0068, 0x08f0, 0x0083, 0x08fb, 0x0a, 0xf4, 0x0000, 0x0000)), + 'Hyrule Castle Entrance (South)': (0x03, (0x0061, 0x1b, 0x0530, 0x0692, 0x0784, 0x06cc, 0x07f8, 0x06ff, 0x0803, 0x0e, 0xfa, 0x0000, 0x87be)), + 'Hyrule Castle Entrance (West)': (0x02, (0x0060, 0x1b, 0x0016, 0x0600, 0x06ae, 0x0604, 0x0728, 0x066d, 0x0733, 0x00, 0x02, 0x0000, 0x8124)), + 'Hyrule Castle Entrance (East)': (0x04, (0x0062, 0x1b, 0x004a, 0x0600, 0x0856, 0x0604, 0x08c8, 0x066d, 0x08d3, 0x00, 0xfa, 0x0000, 0x8158)), + 'Agahnims Tower': (0x23, (0x00e0, 0x1b, 0x0032, 0x0600, 0x0784, 0x0634, 0x07f8, 0x066d, 0x0803, 0x00, 0x0a, 0x0000, 0x82be)), + 'Thieves Town': (0x33, (0x00db, 0x58, 0x0b2e, 0x075a, 0x0176, 0x07a8, 0x01f8, 0x07c7, 0x0203, 0x06, 0xfa, 0x0000, 0x0000)), + 'Skull Woods First Section Door': (0x29, (0x0058, 0x40, 0x0f4c, 0x01f6, 0x0262, 0x0248, 0x02e8, 0x0263, 0x02ef, 0x0a, 0xfe, 0x0000, 0x0000)), + 'Skull Woods Second Section Door (East)': (0x28, (0x0057, 0x40, 0x0eb8, 0x01e6, 0x01c2, 0x0238, 0x0248, 0x0253, 0x024f, 0x0a, 0xfe, 0x0000, 0x0000)), + 'Skull Woods Second Section Door (West)': (0x27, (0x0056, 0x40, 0x0c8e, 0x01a6, 0x0062, 0x01f8, 0x00e8, 0x0213, 0x00ef, 0x0a, 0x0e, 0x0000, 0x0000)), + 'Skull Woods Final Section': (0x2A, (0x0059, 0x40, 0x0282, 0x0066, 0x0016, 0x00b8, 0x0098, 0x00d3, 0x00a3, 0x0a, 0xfa, 0x0000, 0x0000)), + 'Ice Palace': (0x2C, (0x000e, 0x75, 0x0bc6, 0x0d6a, 0x0c3e, 0x0db8, 0x0cb8, 0x0dd7, 0x0cc3, 0x06, 0xf2, 0x0000, 0x0000)), + 'Misery Mire': (0x26, (0x0098, 0x70, 0x0414, 0x0c79, 0x00a6, 0x0cc7, 0x0128, 0x0ce6, 0x0133, 0x07, 0xfa, 0x0000, 0x0000)), + 'Palace of Darkness': (0x25, (0x004a, 0x5e, 0x005a, 0x0600, 0x0ed6, 0x0628, 0x0f50, 0x066d, 0x0f5b, 0x00, 0xfa, 0x0000, 0x0000)), + 'Swamp Palace': (0x24, (0x0028, 0x7b, 0x049e, 0x0e8c, 0x06f2, 0x0ed8, 0x0778, 0x0ef9, 0x077f, 0x04, 0xfe, 0x0000, 0x0000)), + 'Turtle Rock': (0x34, (0x00d6, 0x47, 0x0712, 0x00da, 0x0e96, 0x0128, 0x0f08, 0x0147, 0x0f13, 0x06, 0xfa, 0x0000, 0x0000)), + 'Dark Death Mountain Ledge (West)': (0x14, (0x0023, 0x45, 0x07ca, 0x0103, 0x0c46, 0x0157, 0x0cb8, 0x0172, 0x0cc3, 0x0b, 0x0a, 0x0000, 0x0000)), + 'Dark Death Mountain Ledge (East)': (0x18, (0x0024, 0x45, 0x07e0, 0x0103, 0x0d00, 0x0157, 0x0d78, 0x0172, 0x0d7d, 0x0b, 0x00, 0x0000, 0x0000)), + 'Turtle Rock Isolated Ledge Entrance': (0x17, (0x00d5, 0x45, 0x0ad4, 0x0164, 0x0ca6, 0x01b8, 0x0d18, 0x01d3, 0x0d23, 0x0a, 0xfa, 0x0000, 0x0000)), + 'Hyrule Castle Secret Entrance Stairs': (0x31, (0x0055, 0x1b, 0x044a, 0x067a, 0x0854, 0x06c8, 0x08c8, 0x06e7, 0x08d3, 0x06, 0xfa, 0x0000, 0x0000)), + 'Kakariko Well Cave': (0x38, (0x002f, 0x18, 0x0386, 0x0665, 0x0032, 0x06b7, 0x00b8, 0x06d2, 0x00bf, 0x0b, 0xfe, 0x0000, 0x0000)), + 'Bat Cave Cave': (0x10, (0x00e3, 0x22, 0x0412, 0x087a, 0x048e, 0x08c8, 0x0508, 0x08e7, 0x0513, 0x06, 0x02, 0x0000, 0x0000)), + 'Elder House (East)': (0x0D, (0x00f3, 0x18, 0x02c4, 0x064a, 0x0222, 0x0698, 0x02a8, 0x06b7, 0x02af, 0x06, 0xfe, 0x05d4, 0x0000)), + 'Elder House (West)': (0x0C, (0x00f2, 0x18, 0x02bc, 0x064c, 0x01e2, 0x0698, 0x0268, 0x06b9, 0x026f, 0x04, 0xfe, 0x05cc, 0x0000)), + 'North Fairy Cave': (0x37, (0x0008, 0x15, 0x0088, 0x0400, 0x0a36, 0x0448, 0x0aa8, 0x046f, 0x0ab3, 0x00, 0x0a, 0x0000, 0x0000)), + 'Lost Woods Hideout Stump': (0x2B, (0x00e1, 0x00, 0x0f4e, 0x01f6, 0x0262, 0x0248, 0x02e8, 0x0263, 0x02ef, 0x0a, 0x0e, 0x0000, 0x0000)), + 'Lumberjack Tree Cave': (0x11, (0x00e2, 0x02, 0x0118, 0x0015, 0x04c6, 0x0067, 0x0548, 0x0082, 0x0553, 0x0b, 0xfa, 0x0000, 0x0000)), + 'Two Brothers House (East)': (0x0F, (0x00f5, 0x29, 0x0880, 0x0b07, 0x0200, 0x0b58, 0x0238, 0x0b74, 0x028d, 0x09, 0x00, 0x0b86, 0x0000)), + 'Two Brothers House (West)': (0x0E, (0x00f4, 0x28, 0x08a0, 0x0b06, 0x0100, 0x0b58, 0x01b8, 0x0b73, 0x018d, 0x0a, 0x00, 0x0bb6, 0x0000)), + 'Sanctuary': (0x01, (0x0012, 0x13, 0x001c, 0x0400, 0x06de, 0x0414, 0x0758, 0x046d, 0x0763, 0x00, 0x02, 0x0000, 0x01aa)), + 'Old Man Cave (West)': (0x05, (0x00f0, 0x0a, 0x03a0, 0x0264, 0x0500, 0x02b8, 0x05a8, 0x02d3, 0x058d, 0x0a, 0x00, 0x0000, 0x0000)), + 'Old Man Cave (East)': (0x06, (0x00f1, 0x03, 0x1402, 0x0294, 0x0604, 0x02e8, 0x0678, 0x0303, 0x0683, 0x0a, 0xfc, 0x0000, 0x0000)), + 'Old Man House (Bottom)': (0x2F, (0x00e4, 0x03, 0x181a, 0x031e, 0x06b4, 0x03a7, 0x0728, 0x038d, 0x0733, 0x00, 0x0c, 0x0000, 0x0000)), + 'Old Man House (Top)': (0x30, (0x00e5, 0x03, 0x10c6, 0x0224, 0x0814, 0x0278, 0x0888, 0x0293, 0x0893, 0x0a, 0x0c, 0x0000, 0x0000)), + 'Death Mountain Return Cave (East)': (0x2E, (0x00e7, 0x03, 0x0d82, 0x01c4, 0x0600, 0x0218, 0x0648, 0x0233, 0x067f, 0x0a, 0x00, 0x0000, 0x0000)), + 'Death Mountain Return Cave (West)': (0x2D, (0x00e6, 0x0a, 0x00a0, 0x0205, 0x0500, 0x0257, 0x05b8, 0x0272, 0x058d, 0x0b, 0x00, 0x0000, 0x0000)), + 'Spectacle Rock Cave Peak': (0x22, (0x00ea, 0x03, 0x092c, 0x0133, 0x0754, 0x0187, 0x07c8, 0x01a2, 0x07d3, 0x0b, 0xfc, 0x0000, 0x0000)), + 'Spectacle Rock Cave': (0x21, (0x00fa, 0x03, 0x0eac, 0x01e3, 0x0754, 0x0237, 0x07c8, 0x0252, 0x07d3, 0x0b, 0xfc, 0x0000, 0x0000)), + 'Spectacle Rock Cave (Bottom)': (0x20, (0x00f9, 0x03, 0x0d9c, 0x01c3, 0x06d4, 0x0217, 0x0748, 0x0232, 0x0753, 0x0b, 0xfc, 0x0000, 0x0000)), + 'Paradox Cave (Bottom)': (0x1D, (0x00ff, 0x05, 0x0ee0, 0x01e3, 0x0d00, 0x0237, 0x0da8, 0x0252, 0x0d7d, 0x0b, 0x00, 0x0000, 0x0000)), + 'Paradox Cave (Middle)': (0x1E, (0x00ef, 0x05, 0x17e0, 0x0304, 0x0d00, 0x0358, 0x0dc8, 0x0373, 0x0d7d, 0x0a, 0x00, 0x0000, 0x0000)), + 'Paradox Cave (Top)': (0x1F, (0x00df, 0x05, 0x0460, 0x0093, 0x0d00, 0x00e7, 0x0db8, 0x0102, 0x0d7d, 0x0b, 0x00, 0x0000, 0x0000)), + 'Fairy Ascension Cave (Bottom)': (0x19, (0x00fd, 0x05, 0x0dd4, 0x01c4, 0x0ca6, 0x0218, 0x0d18, 0x0233, 0x0d23, 0x0a, 0xfa, 0x0000, 0x0000)), + 'Fairy Ascension Cave (Top)': (0x1A, (0x00ed, 0x05, 0x0ad4, 0x0163, 0x0ca6, 0x01b7, 0x0d18, 0x01d2, 0x0d23, 0x0b, 0xfa, 0x0000, 0x0000)), + 'Spiral Cave': (0x1C, (0x00ee, 0x05, 0x07c8, 0x0108, 0x0c46, 0x0158, 0x0cb8, 0x0177, 0x0cc3, 0x06, 0xfa, 0x0000, 0x0000)), + 'Spiral Cave (Bottom)': (0x1B, (0x00fe, 0x05, 0x0cca, 0x01a3, 0x0c56, 0x01f7, 0x0cc8, 0x0212, 0x0cd3, 0x0b, 0xfa, 0x0000, 0x0000)), + 'Bumper Cave (Bottom)': (0x15, (0x00fb, 0x4a, 0x03a0, 0x0263, 0x0500, 0x02b7, 0x05a8, 0x02d2, 0x058d, 0x0b, 0x00, 0x0000, 0x0000)), + 'Bumper Cave (Top)': (0x16, (0x00eb, 0x4a, 0x00a0, 0x020a, 0x0500, 0x0258, 0x05b8, 0x0277, 0x058d, 0x06, 0x00, 0x0000, 0x0000)), + 'Superbunny Cave (Top)': (0x13, (0x00e8, 0x45, 0x0460, 0x0093, 0x0d00, 0x00e7, 0x0db8, 0x0102, 0x0d7d, 0x0b, 0x00, 0x0000, 0x0000)), + 'Superbunny Cave (Bottom)': (0x12, (0x00f8, 0x45, 0x0ee0, 0x01e4, 0x0d00, 0x0238, 0x0d78, 0x0253, 0x0d7d, 0x0a, 0x00, 0x0000, 0x0000)), + 'Hookshot Cave': (0x39, (0x003c, 0x45, 0x04da, 0x00a3, 0x0cd6, 0x0107, 0x0d48, 0x0112, 0x0d53, 0x0b, 0xfa, 0x0000, 0x0000)), + 'Hookshot Cave Back Entrance': (0x3A, (0x002c, 0x45, 0x004c, 0x0000, 0x0c56, 0x0038, 0x0cc8, 0x006f, 0x0cd3, 0x00, 0x0a, 0x0000, 0x0000)), + 'Ganons Tower': (0x36, (0x000c, 0x43, 0x0052, 0x0000, 0x0884, 0x0028, 0x08f8, 0x006f, 0x0903, 0x00, 0xfc, 0x0000, 0x0000)), + 'Pyramid Entrance': (0x35, (0x0010, 0x5b, 0x0b0e, 0x075a, 0x0674, 0x07a8, 0x06e8, 0x07c7, 0x06f3, 0x06, 0xfa, 0x0000, 0x0000)), + 'Skull Woods First Section Hole (West)': ([0xDB84D, 0xDB84E], None), + 'Skull Woods First Section Hole (East)': ([0xDB84F, 0xDB850], None), + 'Skull Woods First Section Hole (North)': ([0xDB84C], None), + 'Skull Woods Second Section Hole': ([0xDB851, 0xDB852], None), + 'Pyramid Hole': ([0xDB854, 0xDB855, 0xDB856], None), + 'Waterfall of Wishing': (0x5B, (0x0114, 0x0f, 0x0080, 0x0200, 0x0e00, 0x0207, 0x0e60, 0x026f, 0x0e7d, 0x00, 0x00, 0x0000, 0x0000)), + 'Dam': (0x4D, (0x010b, 0x3b, 0x04a0, 0x0e8a, 0x06fa, 0x0ed8, 0x0778, 0x0ef7, 0x077f, 0x06, 0xfa, 0x0000, 0x0000)), + 'Blinds Hideout': (0x60, (0x0119, 0x18, 0x02b2, 0x064a, 0x0186, 0x0697, 0x0208, 0x06b7, 0x0213, 0x06, 0xfa, 0x0000, 0x0000)), + 'Hyrule Castle Secret Entrance Drop': ([0xDB858], None), + 'Bonk Fairy (Light)': (0x76, (0x0126, 0x2b, 0x00a0, 0x0a0a, 0x0700, 0x0a67, 0x0788, 0x0a77, 0x0785, 0x06, 0xfa, 0x0000, 0x0000)), + 'Lake Hylia Fairy': (0x5D, (0x0115, 0x2e, 0x0016, 0x0a00, 0x0cb6, 0x0a37, 0x0d28, 0x0a6d, 0x0d33, 0x00, 0x00, 0x0000, 0x0000)), + 'Light Hype Fairy': (0x6B, (0x0115, 0x34, 0x00a0, 0x0c04, 0x0900, 0x0c58, 0x0988, 0x0c73, 0x0985, 0x0a, 0xf6, 0x0000, 0x0000)), + 'Desert Fairy': (0x71, (0x0115, 0x3a, 0x0000, 0x0e00, 0x0400, 0x0e26, 0x0468, 0x0e6d, 0x0485, 0x00, 0x00, 0x0000, 0x0000)), + 'Kings Grave': (0x5A, (0x0113, 0x14, 0x0320, 0x0456, 0x0900, 0x04a6, 0x0998, 0x04c3, 0x097d, 0x0a, 0xf6, 0x0000, 0x0000)), + 'Tavern North': (0x42, (0x0103, 0x18, 0x1440, 0x08a7, 0x0206, 0x08f9, 0x0288, 0x0914, 0x0293, 0xf7, 0x09, 0xFFFF, 0x0000)), # do not use, buggy + 'Chicken House': (0x4A, (0x0108, 0x18, 0x1120, 0x0837, 0x0106, 0x0888, 0x0188, 0x08a4, 0x0193, 0x07, 0xf9, 0x1530, 0x0000)), + 'Aginahs Cave': (0x70, (0x010a, 0x30, 0x0656, 0x0cc6, 0x02aa, 0x0d18, 0x0328, 0x0d33, 0x032f, 0x08, 0xf8, 0x0000, 0x0000)), + 'Sahasrahlas Hut': (0x44, (0x0105, 0x1e, 0x0610, 0x06d4, 0x0c76, 0x0727, 0x0cf0, 0x0743, 0x0cfb, 0x0a, 0xf6, 0x0000, 0x0000)), + 'Cave Shop (Lake Hylia)': (0x57, (0x0112, 0x35, 0x0022, 0x0c00, 0x0b1a, 0x0c26, 0x0b98, 0x0c6d, 0x0b9f, 0x00, 0x00, 0x0000, 0x0000)), + 'Capacity Upgrade': (0x5C, (0x0115, 0x35, 0x0a46, 0x0d36, 0x0c2a, 0x0d88, 0x0ca8, 0x0da3, 0x0caf, 0x0a, 0xf6, 0x0000, 0x0000)), + 'Kakariko Well Drop': ([0xDB85C, 0xDB85D], None), + 'Blacksmiths Hut': (0x63, (0x0121, 0x22, 0x010c, 0x081a, 0x0466, 0x0868, 0x04d8, 0x0887, 0x04e3, 0x06, 0xfa, 0x041A, 0x0000)), + 'Bat Cave Drop': ([0xDB859, 0xDB85A], None), + 'Sick Kids House': (0x3F, (0x0102, 0x18, 0x10be, 0x0826, 0x01f6, 0x0877, 0x0278, 0x0893, 0x0283, 0x08, 0xf8, 0x14CE, 0x0000)), + 'North Fairy Cave Drop': ([0xDB857], None), + 'Lost Woods Gamble': (0x3B, (0x0100, 0x00, 0x004e, 0x0000, 0x0272, 0x0008, 0x02f0, 0x006f, 0x02f7, 0x00, 0x00, 0x0000, 0x0000)), + 'Fortune Teller (Light)': (0x64, (0x0122, 0x11, 0x060e, 0x04b4, 0x027d, 0x0508, 0x02f8, 0x0523, 0x0302, 0x0a, 0xf6, 0x0000, 0x0000)), + 'Snitch Lady (East)': (0x3D, (0x0101, 0x18, 0x0ad8, 0x074a, 0x02c6, 0x0798, 0x0348, 0x07b7, 0x0353, 0x06, 0xfa, 0x0DE8, 0x0000)), + 'Snitch Lady (West)': (0x3E, (0x0101, 0x18, 0x0788, 0x0706, 0x0046, 0x0758, 0x00c8, 0x0773, 0x00d3, 0x08, 0xf8, 0x0B98, 0x0000)), + 'Bush Covered House': (0x43, (0x0103, 0x18, 0x1156, 0x081a, 0x02b6, 0x0868, 0x0338, 0x0887, 0x0343, 0x06, 0xfa, 0x1466, 0x0000)), + 'Tavern (Front)': (0x41, (0x0103, 0x18, 0x1842, 0x0916, 0x0206, 0x0967, 0x0288, 0x0983, 0x0293, 0x08, 0xf8, 0x1C50, 0x0000)), + 'Light World Bomb Hut': (0x49, (0x0107, 0x18, 0x1800, 0x0916, 0x0000, 0x0967, 0x0068, 0x0983, 0x008d, 0x08, 0xf8, 0x9C0C, 0x0000)), + 'Kakariko Shop': (0x45, (0x011f, 0x18, 0x16a8, 0x08e7, 0x0136, 0x0937, 0x01b8, 0x0954, 0x01c3, 0x07, 0xf9, 0x1AB6, 0x0000)), + 'Lost Woods Hideout Drop': ([0xDB853], None), + 'Lumberjack Tree Tree': ([0xDB85B], None), + 'Cave 45': (0x50, (0x011b, 0x32, 0x0680, 0x0cc9, 0x0400, 0x0d16, 0x0438, 0x0d36, 0x0485, 0x07, 0xf9, 0x0000, 0x0000)), + 'Graveyard Cave': (0x51, (0x011b, 0x14, 0x0016, 0x0400, 0x08a2, 0x0446, 0x0918, 0x046d, 0x091f, 0x00, 0x00, 0x0000, 0x0000)), + 'Checkerboard Cave': (0x7D, (0x0126, 0x30, 0x00c8, 0x0c0a, 0x024a, 0x0c67, 0x02c8, 0x0c77, 0x02cf, 0x06, 0xfa, 0x0000, 0x0000)), + 'Mini Moldorm Cave': (0x7C, (0x0123, 0x35, 0x1480, 0x0e96, 0x0a00, 0x0ee8, 0x0a68, 0x0f03, 0x0a85, 0x08, 0xf8, 0x0000, 0x0000)), + 'Long Fairy Cave': (0x54, (0x011e, 0x2f, 0x06a0, 0x0aca, 0x0f00, 0x0b18, 0x0fa8, 0x0b37, 0x0f85, 0x06, 0xfa, 0x0000, 0x0000)), + 'Good Bee Cave': (0x6A, (0x0120, 0x37, 0x0084, 0x0c00, 0x0e26, 0x0c36, 0x0e98, 0x0c6f, 0x0ea3, 0x00, 0x00, 0x0000, 0x0000)), + '20 Rupee Cave': (0x7A, (0x0125, 0x37, 0x0200, 0x0c23, 0x0e00, 0x0c86, 0x0e68, 0x0c92, 0x0e7d, 0x0d, 0xf3, 0x0000, 0x0000)), + '50 Rupee Cave': (0x78, (0x0124, 0x3a, 0x0790, 0x0eea, 0x047a, 0x0f47, 0x04f8, 0x0f57, 0x04ff, 0x06, 0xfa, 0x0000, 0x0000)), + 'Ice Rod Cave': (0x7F, (0x0120, 0x37, 0x0080, 0x0c00, 0x0e00, 0x0c37, 0x0e48, 0x0c6f, 0x0e7d, 0x00, 0x00, 0x0000, 0x0000)), + 'Bonk Rock Cave': (0x79, (0x0124, 0x13, 0x0280, 0x044a, 0x0600, 0x04a7, 0x0638, 0x04b7, 0x067d, 0x06, 0xfa, 0x0000, 0x0000)), + 'Library': (0x48, (0x0107, 0x29, 0x0100, 0x0a14, 0x0200, 0x0a67, 0x0278, 0x0a83, 0x0285, 0x0a, 0xf6, 0x040E, 0x0000)), + 'Potion Shop': (0x4B, (0x0109, 0x16, 0x070a, 0x04e6, 0x0c56, 0x0538, 0x0cc8, 0x0553, 0x0cd3, 0x08, 0xf8, 0x0A98, 0x0000)), + 'Sanctuary Grave': ([0xDB85E], None), + 'Hookshot Fairy': (0x4F, (0x010c, 0x05, 0x0ee0, 0x01e3, 0x0d00, 0x0236, 0x0d78, 0x0252, 0x0d7d, 0x0b, 0xf5, 0x0000, 0x0000)), + 'Pyramid Fairy': (0x62, (0x0116, 0x5b, 0x0b1e, 0x0754, 0x06fa, 0x07a7, 0x0778, 0x07c3, 0x077f, 0x0a, 0xf6, 0x0000, 0x0000)), + 'East Dark World Hint': (0x68, (0x010e, 0x6f, 0x06a0, 0x0aca, 0x0f00, 0x0b18, 0x0fa8, 0x0b37, 0x0f85, 0x06, 0xfa, 0x0000, 0x0000)), + 'Palace of Darkness Hint': (0x67, (0x011a, 0x5e, 0x0c24, 0x0794, 0x0d12, 0x07e8, 0x0d90, 0x0803, 0x0d97, 0x0a, 0xf6, 0x0000, 0x0000)), + 'Dark Lake Hylia Fairy': (0x6C, (0x0115, 0x6e, 0x0016, 0x0a00, 0x0cb6, 0x0a36, 0x0d28, 0x0a6d, 0x0d33, 0x00, 0x00, 0x0000, 0x0000)), + 'Dark Lake Hylia Ledge Fairy': (0x80, (0x0115, 0x77, 0x0080, 0x0c00, 0x0e00, 0x0c37, 0x0e48, 0x0c6f, 0x0e7d, 0x00, 0x00, 0x0000, 0x0000)), + 'Dark Lake Hylia Ledge Spike Cave': (0x7B, (0x0125, 0x77, 0x0200, 0x0c27, 0x0e00, 0x0c86, 0x0e68, 0x0c96, 0x0e7d, 0x09, 0xf7, 0x0000, 0x0000)), + 'Dark Lake Hylia Ledge Hint': (0x69, (0x010e, 0x77, 0x0084, 0x0c00, 0x0e26, 0x0c36, 0x0e98, 0x0c6f, 0x0ea3, 0x00, 0x00, 0x0000, 0x0000)), + 'Hype Cave': (0x3C, (0x011e, 0x74, 0x00a0, 0x0c0a, 0x0900, 0x0c58, 0x0988, 0x0c77, 0x097d, 0x06, 0xfa, 0x0000, 0x0000)), + 'Bonk Fairy (Dark)': (0x77, (0x0126, 0x6b, 0x00a0, 0x0a05, 0x0700, 0x0a66, 0x0788, 0x0a72, 0x0785, 0x0b, 0xf5, 0x0000, 0x0000)), + 'Brewery': (0x47, (0x0106, 0x58, 0x16a8, 0x08e4, 0x013e, 0x0938, 0x01b8, 0x0953, 0x01c3, 0x0a, 0xf6, 0x1AB6, 0x0000)), + 'C-Shaped House': (0x53, (0x011c, 0x58, 0x09d8, 0x0744, 0x02ce, 0x0797, 0x0348, 0x07b3, 0x0353, 0x0a, 0xf6, 0x0DE8, 0x0000)), + 'Chest Game': (0x46, (0x0106, 0x58, 0x078a, 0x0705, 0x004e, 0x0758, 0x00c8, 0x0774, 0x00d3, 0x09, 0xf7, 0x0B98, 0x0000)), + 'Dark World Hammer Peg Cave': (0x7E, (0x0127, 0x62, 0x0894, 0x091e, 0x0492, 0x09a6, 0x0508, 0x098b, 0x050f, 0x00, 0x00, 0x0000, 0x0000)), + 'Red Shield Shop': (0x74, (0x0110, 0x5a, 0x079a, 0x06e8, 0x04d6, 0x0738, 0x0548, 0x0755, 0x0553, 0x08, 0xf8, 0x0AA8, 0x0000)), + 'Dark Sanctuary Hint': (0x59, (0x0112, 0x53, 0x001e, 0x0400, 0x06e2, 0x0446, 0x0758, 0x046d, 0x075f, 0x00, 0x00, 0x0000, 0x0000)), + 'Fortune Teller (Dark)': (0x65, (0x0122, 0x51, 0x0610, 0x04b4, 0x027e, 0x0507, 0x02f8, 0x0523, 0x0303, 0x0a, 0xf6, 0x091E, 0x0000)), + 'Dark World Shop': (0x5F, (0x010f, 0x58, 0x1058, 0x0814, 0x02be, 0x0868, 0x0338, 0x0883, 0x0343, 0x0a, 0xf6, 0x0000, 0x0000)), + 'Dark World Lumberjack Shop': (0x56, (0x010f, 0x42, 0x041c, 0x0074, 0x04e2, 0x00c7, 0x0558, 0x00e3, 0x055f, 0x0a, 0xf6, 0x0000, 0x0000)), + 'Dark World Potion Shop': (0x6E, (0x010f, 0x56, 0x080e, 0x04f4, 0x0c66, 0x0548, 0x0cd8, 0x0563, 0x0ce3, 0x0a, 0xf6, 0x0000, 0x0000)), + 'Archery Game': (0x58, (0x0111, 0x69, 0x069e, 0x0ac4, 0x02ea, 0x0b18, 0x0368, 0x0b33, 0x036f, 0x0a, 0xf6, 0x09AC, 0x0000)), + 'Mire Shed': (0x5E, (0x010d, 0x70, 0x0384, 0x0c69, 0x001e, 0x0cb6, 0x0098, 0x0cd6, 0x00a3, 0x07, 0xf9, 0x0000, 0x0000)), + 'Dark Desert Hint': (0x61, (0x0114, 0x70, 0x0654, 0x0cc5, 0x02aa, 0x0d16, 0x0328, 0x0d32, 0x032f, 0x09, 0xf7, 0x0000, 0x0000)), + 'Dark Desert Fairy': (0x55, (0x0115, 0x70, 0x03a8, 0x0c6a, 0x013a, 0x0cb7, 0x01b8, 0x0cd7, 0x01bf, 0x06, 0xfa, 0x0000, 0x0000)), + 'Spike Cave': (0x40, (0x0117, 0x43, 0x0ed4, 0x01e4, 0x08aa, 0x0236, 0x0928, 0x0253, 0x092f, 0x0a, 0xf6, 0x0000, 0x0000)), + 'Cave Shop (Dark Death Mountain)': (0x6D, (0x0112, 0x45, 0x0ee0, 0x01e3, 0x0d00, 0x0236, 0x0daa, 0x0252, 0x0d7d, 0x0b, 0xf5, 0x0000, 0x0000)), + 'Dark Death Mountain Fairy': (0x6F, (0x0115, 0x43, 0x1400, 0x0294, 0x0600, 0x02e8, 0x0678, 0x0303, 0x0685, 0x0a, 0xf6, 0x0000, 0x0000)), + 'Mimic Cave': (0x4E, (0x010c, 0x05, 0x07e0, 0x0103, 0x0d00, 0x0156, 0x0d78, 0x0172, 0x0d7d, 0x0b, 0xf5, 0x0000, 0x0000)), + 'Big Bomb Shop': (0x52, (0x011c, 0x6c, 0x0506, 0x0a9a, 0x0832, 0x0ae7, 0x08b8, 0x0b07, 0x08bf, 0x06, 0xfa, 0x0816, 0x0000)), + 'Dark Lake Hylia Shop': (0x73, (0x010f, 0x75, 0x0380, 0x0c6a, 0x0a00, 0x0cb8, 0x0a58, 0x0cd7, 0x0a85, 0x06, 0xfa, 0x0000, 0x0000)), + 'Lumberjack House': (0x75, (0x011f, 0x02, 0x049c, 0x0088, 0x04e6, 0x00d8, 0x0558, 0x00f7, 0x0563, 0x08, 0xf8, 0x07AA, 0x0000)), + 'Lake Hylia Fortune Teller': (0x72, (0x0122, 0x35, 0x0380, 0x0c6a, 0x0a00, 0x0cb8, 0x0a58, 0x0cd7, 0x0a85, 0x06, 0xfa, 0x0000, 0x0000)), + 'Kakariko Gamble Game': (0x66, (0x0118, 0x29, 0x069e, 0x0ac4, 0x02ea, 0x0b18, 0x0368, 0x0b33, 0x036f, 0x0a, 0xf6, 0x09AC, 0x0000))} + +# format: +# Key=Name +# value = entrance # +# | (entrance #, exit #) +exit_ids = {'Links House Exit': (0x01, 0x00), + 'Chris Houlihan Room Exit': (None, 0x3D), + 'Desert Palace Exit (South)': (0x09, 0x0A), + 'Desert Palace Exit (West)': (0x0B, 0x0C), + 'Desert Palace Exit (East)': (0x0A, 0x0B), + 'Desert Palace Exit (North)': (0x0C, 0x0D), + 'Eastern Palace Exit': (0x08, 0x09), + 'Tower of Hera Exit': (0x33, 0x2D), + 'Hyrule Castle Exit (South)': (0x04, 0x03), + 'Hyrule Castle Exit (West)': (0x03, 0x02), + 'Hyrule Castle Exit (East)': (0x05, 0x04), + 'Agahnims Tower Exit': (0x24, 0x25), + 'Thieves Town Exit': (0x34, 0x35), + 'Skull Woods First Section Exit': (0x2A, 0x2B), + 'Skull Woods Second Section Exit (East)': (0x29, 0x2A), + 'Skull Woods Second Section Exit (West)': (0x28, 0x29), + 'Skull Woods Final Section Exit': (0x2B, 0x2C), + 'Ice Palace Exit': (0x2D, 0x2E), + 'Misery Mire Exit': (0x27, 0x28), + 'Palace of Darkness Exit': (0x26, 0x27), + 'Swamp Palace Exit': (0x25, 0x26), + 'Turtle Rock Exit (Front)': (0x35, 0x34), + 'Turtle Rock Ledge Exit (West)': (0x15, 0x16), + 'Turtle Rock Ledge Exit (East)': (0x19, 0x1A), + 'Turtle Rock Isolated Ledge Exit': (0x18, 0x19), + 'Hyrule Castle Secret Entrance Exit': (0x32, 0x33), + 'Kakariko Well Exit': (0x39, 0x3A), + 'Bat Cave Exit': (0x11, 0x12), + 'Elder House Exit (East)': (0x0E, 0x0F), + 'Elder House Exit (West)': (0x0D, 0x0E), + 'North Fairy Cave Exit': (0x38, 0x39), + 'Lost Woods Hideout Exit': (0x2C, 0x36), + 'Lumberjack Tree Exit': (0x12, 0x13), + 'Two Brothers House Exit (East)': (0x10, 0x11), + 'Two Brothers House Exit (West)': (0x0F, 0x10), + 'Sanctuary Exit': (0x02, 0x01), + 'Old Man Cave Exit (East)': (0x07, 0x08), + 'Old Man Cave Exit (West)': (0x06, 0x07), + 'Old Man House Exit (Bottom)': (0x30, 0x31), + 'Old Man House Exit (Top)': (0x31, 0x32), + 'Death Mountain Return Cave Exit (West)': (0x2E, 0x2F), + 'Death Mountain Return Cave Exit (East)': (0x2F, 0x30), + 'Spectacle Rock Cave Exit': (0x21, 0x22), + 'Spectacle Rock Cave Exit (Top)': (0x22, 0x23), + 'Spectacle Rock Cave Exit (Peak)': (0x23, 0x24), + 'Paradox Cave Exit (Bottom)': (0x1E, 0x1F), + 'Paradox Cave Exit (Middle)': (0x1F, 0x20), + 'Paradox Cave Exit (Top)': (0x20, 0x21), + 'Fairy Ascension Cave Exit (Bottom)': (0x1A, 0x1B), + 'Fairy Ascension Cave Exit (Top)': (0x1B, 0x1C), + 'Spiral Cave Exit': (0x1C, 0x1D), + 'Spiral Cave Exit (Top)': (0x1D, 0x1E), + 'Bumper Cave Exit (Top)': (0x17, 0x18), + 'Bumper Cave Exit (Bottom)': (0x16, 0x17), + 'Superbunny Cave Exit (Top)': (0x14, 0x15), + 'Superbunny Cave Exit (Bottom)': (0x13, 0x14), + 'Hookshot Cave Exit (South)': (0x3A, 0x3B), + 'Hookshot Cave Exit (North)': (0x3B, 0x3C), + 'Ganons Tower Exit': (0x37, 0x38), + 'Pyramid Exit': (0x36, 0x37), 'Waterfall of Wishing': 0x5C, 'Dam': 0x4E, 'Blinds Hideout': 0x61, 'Lumberjack House': 0x6B, - 'Bonk Fairy': 0x71, - 'Healer Fairy': 0x5E, + 'Bonk Fairy (Light)': 0x71, + 'Bonk Fairy (Dark)': 0x71, + 'Lake Hylia Healer Fairy': 0x5E, + 'Swamp Healer Fairy': 0x5E, + 'Desert Healer Fairy': 0x5E, + 'Dark Lake Hylia Healer Fairy': 0x5E, + 'Dark Lake Hylia Ledge Healer Fairy': 0x5E, + 'Dark Desert Healer Fairy': 0x5E, + 'Dark Death Mountain Healer Fairy': 0x5E, 'Fortune Teller (Light)': 0x65, + 'Lake Hylia Fortune Teller': 0x65, 'Kings Grave': 0x5B, 'Tavern': 0x43, 'Chicken House': 0x4B, 'Aginahs Cave': 0x4D, 'Sahasrahlas Hut': 0x45, - 'Cave Shop': 0x58, + 'Cave Shop (Lake Hylia)': 0x58, + 'Cave Shop (Dark Death Mountain)': 0x58, 'Capacity Upgrade': 0x5D, 'Blacksmiths Hut': 0x64, 'Sick Kids House': 0x40, @@ -1756,7 +2302,10 @@ def simple_shuffle_dungeons(world): 'East Dark World Hint': 0x69, 'Palace of Darkness Hint': 0x68, 'Big Bomb Shop': 0x53, - 'Dark World Shop': 0x60, + 'Village of Outcasts Shop': 0x60, + 'Dark Lake Hylia Shop': 0x60, + 'Dark World Lumberjack Shop': 0x60, + 'Dark World Potion Shop': 0x60, 'Dark Lake Hylia Ledge Spike Cave': 0x70, 'Dark Lake Hylia Ledge Hint': 0x6A, 'Hype Cave': 0x3D, diff --git a/Fill.py b/Fill.py index 2ac444de3..c1becd448 100644 --- a/Fill.py +++ b/Fill.py @@ -1,6 +1,8 @@ import random import logging +class FillError(RuntimeError): + pass def distribute_items_cutoff(world, cutoffrate=0.33): # get list of locations to fill in @@ -53,7 +55,7 @@ def distribute_items_cutoff(world, cutoffrate=0.33): logging.getLogger('').warning('Not all locations reachable. Game beatable anyway.') progress_done = True continue - raise RuntimeError('No more progress items left to place.') + raise FillError('No more progress items left to place.') spot_to_fill = None for location in fill_locations if placed_advancement_items / total_advancement_items < cutoffrate else reversed(fill_locations): @@ -66,7 +68,7 @@ def distribute_items_cutoff(world, cutoffrate=0.33): if world.can_beat_game(): logging.getLogger('').warning('Not all items placed. Game beatable anyway.') break - raise RuntimeError('No more spots to place %s' % item_to_place) + raise FillError('No more spots to place %s' % item_to_place) world.push_item(spot_to_fill, item_to_place, True) itempool.remove(item_to_place) @@ -121,7 +123,7 @@ def distribute_items_staleness(world): logging.getLogger('').warning('Not all locations reachable. Game beatable anyway.') progress_done = True continue - raise RuntimeError('No more progress items left to place.') + raise FillError('No more progress items left to place.') spot_to_fill = None for location in fill_locations: @@ -147,7 +149,7 @@ def distribute_items_staleness(world): if world.can_beat_game(): logging.getLogger('').warning('Not all items placed. Game beatable anyway.') break - raise RuntimeError('No more spots to place %s' % item_to_place) + raise FillError('No more spots to place %s' % item_to_place) world.push_item(spot_to_fill, item_to_place, True) itempool.remove(item_to_place) @@ -185,7 +187,7 @@ def sweep_from_pool(): if not world.check_beatable_only: logging.getLogger('').warning('Not all items placed. Game beatable anyway.') break - raise RuntimeError('No more spots to place %s' % item_to_place) + raise FillError('No more spots to place %s' % item_to_place) world.push_item(spot_to_fill, item_to_place, False) locations.remove(spot_to_fill) @@ -205,7 +207,7 @@ def distribute_items_restrictive(world, gftower_trash_count=0, fill_locations=No restitempool = [item for item in world.itempool if not item.advancement and not item.priority] # fill in gtower locations with trash first - if not world.shuffle_ganon: + if world.ganonstower_vanilla: gtower_locations = [location for location in fill_locations if 'Ganons Tower' in location.name] random.shuffle(gtower_locations) trashcnt = 0 @@ -281,7 +283,7 @@ def flood_items(world): if candidate_item_to_place is not None: item_to_place = candidate_item_to_place else: - raise RuntimeError('No more progress items left to place.') + raise FillError('No more progress items left to place.') # find item to replace with progress item location_list = world.get_reachable_locations() diff --git a/Gui.py b/Gui.py index 5f1e1c0d1..85cc0c4c7 100755 --- a/Gui.py +++ b/Gui.py @@ -25,8 +25,10 @@ def guiMain(args=None): notebook = ttk.Notebook(mainWindow) randomizerWindow = ttk.Frame(notebook) adjustWindow = ttk.Frame(notebook) + customWindow = ttk.Frame(notebook) notebook.add(randomizerWindow, text='Randomize') notebook.add(adjustWindow, text='Adjust') + notebook.add(customWindow, text='Custom') notebook.pack() # Shared Controls @@ -67,7 +69,10 @@ def open_readme(): disableMusicVar = IntVar() disableMusicCheckbutton = Checkbutton(checkBoxFrame, text="Disable game music", variable=disableMusicVar) shuffleGanonVar = IntVar() + shuffleGanonVar.set(1) #set default shuffleGanonCheckbutton = Checkbutton(checkBoxFrame, text="Include Ganon's Tower and Pyramid Hole in shuffle pool", variable=shuffleGanonVar) + customVar = IntVar() + customCheckbutton = Checkbutton(checkBoxFrame, text="Use custom item pool", variable=customVar) createSpoilerCheckbutton.pack(expand=True, anchor=W) suppressRomCheckbutton.pack(expand=True, anchor=W) @@ -77,6 +82,7 @@ def open_readme(): beatableOnlyCheckbutton.pack(expand=True, anchor=W) disableMusicCheckbutton.pack(expand=True, anchor=W) shuffleGanonCheckbutton.pack(expand=True, anchor=W) + customCheckbutton.pack(expand=True, anchor=W) fileDialogFrame = Frame(rightHalfFrame) @@ -188,7 +194,7 @@ def SpriteSelect(): shuffleFrame = Frame(drowDownFrame) shuffleVar = StringVar() shuffleVar.set('full') - shuffleOptionMenu = OptionMenu(shuffleFrame, shuffleVar, 'vanilla', 'simple', 'restricted', 'full', 'madness', 'insanity', 'dungeonsfull', 'dungeonssimple') + shuffleOptionMenu = OptionMenu(shuffleFrame, shuffleVar, 'vanilla', 'simple', 'restricted', 'full', 'crossed', 'insanity', 'restricted_legacy', 'full_legacy', 'madness_legacy', 'insanity_legacy', 'dungeonsfull', 'dungeonssimple') shuffleOptionMenu.pack(side=RIGHT) shuffleLabel = Label(shuffleFrame, text='Entrance shuffle algorithm') shuffleLabel.pack(side=LEFT) @@ -201,6 +207,13 @@ def SpriteSelect(): heartbeepLabel = Label(heartbeepFrame, text='Heartbeep sound rate') heartbeepLabel.pack(side=LEFT) + heartcolorFrame = Frame(drowDownFrame) + heartcolorVar = StringVar() + heartcolorVar.set('red') + heartcolorOptionMenu = OptionMenu(heartcolorFrame, heartcolorVar, 'red', 'blue', 'green', 'yellow') + heartcolorOptionMenu.pack(side=RIGHT) + heartcolorLabel = Label(heartcolorFrame, text='Heart color') + heartcolorLabel.pack(side=LEFT) fastMenuFrame = Frame(drowDownFrame) fastMenuVar = StringVar() @@ -219,6 +232,7 @@ def SpriteSelect(): algorithmFrame.pack(expand=True, anchor=E) shuffleFrame.pack(expand=True, anchor=E) heartbeepFrame.pack(expand=True, anchor=E) + heartcolorFrame.pack(expand=True, anchor=E) fastMenuFrame.pack(expand=True, anchor=E) bottomFrame = Frame(randomizerWindow) @@ -243,6 +257,7 @@ def generateRom(): guiargs.algorithm = algorithmVar.get() guiargs.shuffle = shuffleVar.get() guiargs.heartbeep = heartbeepVar.get() + guiargs.heartcolor = heartcolorVar.get() guiargs.fastmenu = fastMenuVar.get() guiargs.create_spoiler = bool(createSpoilerVar.get()) guiargs.suppress_rom = bool(suppressRomVar.get()) @@ -252,6 +267,16 @@ def generateRom(): guiargs.quickswap = bool(quickSwapVar.get()) guiargs.disablemusic = bool(disableMusicVar.get()) guiargs.shuffleganon = bool(shuffleGanonVar.get()) + guiargs.custom = bool(customVar.get()) + guiargs.customitemarray = [int(bowVar.get()), int(silverarrowVar.get()), int(boomerangVar.get()), int(magicboomerangVar.get()), int(hookshotVar.get()), int(mushroomVar.get()), int(magicpowderVar.get()), int(firerodVar.get()), + int(icerodVar.get()), int(bombosVar.get()), int(etherVar.get()), int(quakeVar.get()), int(lampVar.get()), int(hammerVar.get()), int(shovelVar.get()), int(fluteVar.get()), int(bugnetVar.get()), + int(bookVar.get()), int(bottleVar.get()), int(somariaVar.get()), int(byrnaVar.get()), int(capeVar.get()), int(mirrorVar.get()), int(bootsVar.get()), int(powergloveVar.get()), int(titansmittVar.get()), + int(proggloveVar.get()), int(flippersVar.get()), int(pearlVar.get()), int(heartpieceVar.get()), int(fullheartVar.get()), int(sancheartVar.get()), int(sword1Var.get()), int(sword2Var.get()), + int(sword3Var.get()), int(sword4Var.get()), int(progswordVar.get()), int(shield1Var.get()), int(shield2Var.get()), int(shield3Var.get()), int(progshieldVar.get()), int(bluemailVar.get()), + int(redmailVar.get()), int(progmailVar.get()), int(halfmagicVar.get()), int(quartermagicVar.get()), int(bcap5Var.get()), int(bcap10Var.get()), int(acap5Var.get()), int(acap10Var.get()), + int(arrow1Var.get()), int(arrow10Var.get()), int(bomb1Var.get()), int(bomb3Var.get()), int(rupee1Var.get()), int(rupee5Var.get()), int(rupee20Var.get()), int(rupee50Var.get()), int(rupee100Var.get()), + int(rupee300Var.get()), int(rupoorVar.get()), int(blueclockVar.get()), int(greenclockVar.get()), int(redclockVar.get()), int(triforcepieceVar.get()), int(triforcecountVar.get()), + int(triforceVar.get()), int(rupoorcostVar.get())] guiargs.rom = romVar.get() guiargs.jsonout = None guiargs.sprite = sprite @@ -337,6 +362,12 @@ def SpriteSelectAdjuster(): heartbeepLabel2 = Label(heartbeepFrame2, text='Heartbeep sound rate') heartbeepLabel2.pack(side=LEFT) + heartcolorFrame2 = Frame(drowDownFrame2) + heartcolorOptionMenu2 = OptionMenu(heartcolorFrame2, heartcolorVar, 'red', 'blue', 'green', 'yellow') + heartcolorOptionMenu2.pack(side=RIGHT) + heartcolorLabel2 = Label(heartcolorFrame2, text='Heart color') + heartcolorLabel2.pack(side=LEFT) + fastMenuFrame2 = Frame(drowDownFrame2) fastMenuOptionMenu2 = OptionMenu(fastMenuFrame2, fastMenuVar, 'normal', 'instant', 'double', 'triple', 'quadruple', 'half') fastMenuOptionMenu2.pack(side=RIGHT) @@ -344,6 +375,7 @@ def SpriteSelectAdjuster(): fastMenuLabel2.pack(side=LEFT) heartbeepFrame2.pack(expand=True, anchor=E) + heartcolorFrame2.pack(expand=True, anchor=E) fastMenuFrame2.pack(expand=True, anchor=E) bottomFrame2 = Frame(topFrame2) @@ -351,6 +383,7 @@ def SpriteSelectAdjuster(): def adjustRom(): guiargs = Namespace guiargs.heartbeep = heartbeepVar.get() + guiargs.heartcolor = heartcolorVar.get() guiargs.fastmenu = fastMenuVar.get() guiargs.quickswap = bool(quickSwapVar.get()) guiargs.disablemusic = bool(disableMusicVar.get()) @@ -369,9 +402,577 @@ def adjustRom(): drowDownFrame2.pack(side=LEFT, pady=(0, 40)) rightHalfFrame2.pack(side=RIGHT) - topFrame2.pack(side=TOP, pady=30) + topFrame2.pack(side=TOP, pady=70) bottomFrame2.pack(side=BOTTOM, pady=(180, 0)) + # Custom Controls + + topFrame3 = Frame(customWindow) + + def validation(P): + if str.isdigit(P) or P == "": + return True + else: + return False + vcmd=(topFrame3.register(validation), '%P') + + itemList1 = Frame(topFrame3) + itemList2 = Frame(topFrame3) + itemList3 = Frame(topFrame3) + itemList4 = Frame(topFrame3) + itemList5 = Frame(topFrame3) + + bowFrame = Frame(itemList1) + bowLabel = Label(bowFrame, text='Bow') + bowVar = StringVar(value='1') + bowEntry = Entry(bowFrame, textvariable=bowVar, width=3, validate='all', vcmd=vcmd) + bowFrame.pack() + bowLabel.pack(anchor=W, side=LEFT, padx=(0,53)) + bowEntry.pack(anchor=E) + + silverarrowFrame = Frame(itemList1) + silverarrowLabel = Label(silverarrowFrame, text='Silver Arrow') + silverarrowVar = StringVar(value='1') + silverarrowEntry = Entry(silverarrowFrame, textvariable=silverarrowVar, width=3, validate='all', vcmd=vcmd) + silverarrowFrame.pack() + silverarrowLabel.pack(anchor=W, side=LEFT, padx=(0,13)) + silverarrowEntry.pack(anchor=E) + + boomerangFrame = Frame(itemList1) + boomerangLabel = Label(boomerangFrame, text='Boomerang') + boomerangVar = StringVar(value='1') + boomerangEntry = Entry(boomerangFrame, textvariable=boomerangVar, width=3, validate='all', vcmd=vcmd) + boomerangFrame.pack() + boomerangLabel.pack(anchor=W, side=LEFT, padx=(0,14)) + boomerangEntry.pack(anchor=E) + + magicboomerangFrame = Frame(itemList1) + magicboomerangLabel = Label(magicboomerangFrame, text='M.Boomerang') + magicboomerangVar = StringVar(value='1') + magicboomerangEntry = Entry(magicboomerangFrame, textvariable=magicboomerangVar, width=3, validate='all', vcmd=vcmd) + magicboomerangFrame.pack() + magicboomerangLabel.pack(anchor=W, side=LEFT) + magicboomerangEntry.pack(anchor=E) + + hookshotFrame = Frame(itemList1) + hookshotLabel = Label(hookshotFrame, text='Hookshot') + hookshotVar = StringVar(value='1') + hookshotEntry = Entry(hookshotFrame, textvariable=hookshotVar, width=3, validate='all', vcmd=vcmd) + hookshotFrame.pack() + hookshotLabel.pack(anchor=W, side=LEFT, padx=(0,24)) + hookshotEntry.pack(anchor=E) + + mushroomFrame = Frame(itemList1) + mushroomLabel = Label(mushroomFrame, text='Mushroom') + mushroomVar = StringVar(value='1') + mushroomEntry = Entry(mushroomFrame, textvariable=mushroomVar, width=3, validate='all', vcmd=vcmd) + mushroomFrame.pack() + mushroomLabel.pack(anchor=W, side=LEFT, padx=(0,17)) + mushroomEntry.pack(anchor=E) + + magicpowderFrame = Frame(itemList1) + magicpowderLabel = Label(magicpowderFrame, text='Magic Powder') + magicpowderVar = StringVar(value='1') + magicpowderEntry = Entry(magicpowderFrame, textvariable=magicpowderVar, width=3, validate='all', vcmd=vcmd) + magicpowderFrame.pack() + magicpowderLabel.pack(anchor=W, side=LEFT) + magicpowderEntry.pack(anchor=E) + + firerodFrame = Frame(itemList1) + firerodLabel = Label(firerodFrame, text='Fire Rod') + firerodVar = StringVar(value='1') + firerodEntry = Entry(firerodFrame, textvariable=firerodVar, width=3, validate='all', vcmd=vcmd) + firerodFrame.pack() + firerodLabel.pack(anchor=W, side=LEFT, padx=(0,33)) + firerodEntry.pack(anchor=E) + + icerodFrame = Frame(itemList1) + icerodLabel = Label(icerodFrame, text='Ice Rod') + icerodVar = StringVar(value='1') + icerodEntry = Entry(icerodFrame, textvariable=icerodVar, width=3, validate='all', vcmd=vcmd) + icerodFrame.pack() + icerodLabel.pack(anchor=W, side=LEFT, padx=(0,37)) + icerodEntry.pack(anchor=E) + + bombosFrame = Frame(itemList1) + bombosLabel = Label(bombosFrame, text='Bombos') + bombosVar = StringVar(value='1') + bombosEntry = Entry(bombosFrame, textvariable=bombosVar, width=3, validate='all', vcmd=vcmd) + bombosFrame.pack() + bombosLabel.pack(anchor=W, side=LEFT, padx=(0,32)) + bombosEntry.pack(anchor=E) + + etherFrame = Frame(itemList1) + etherLabel = Label(etherFrame, text='Ether') + etherVar = StringVar(value='1') + etherEntry = Entry(etherFrame, textvariable=etherVar, width=3, validate='all', vcmd=vcmd) + etherFrame.pack() + etherLabel.pack(anchor=W, side=LEFT, padx=(0,49)) + etherEntry.pack(anchor=E) + + quakeFrame = Frame(itemList1) + quakeLabel = Label(quakeFrame, text='Quake') + quakeVar = StringVar(value='1') + quakeEntry = Entry(quakeFrame, textvariable=quakeVar, width=3, validate='all', vcmd=vcmd) + quakeFrame.pack() + quakeLabel.pack(anchor=W, side=LEFT, padx=(0,42)) + quakeEntry.pack(anchor=E) + + lampFrame = Frame(itemList1) + lampLabel = Label(lampFrame, text='Lamp') + lampVar = StringVar(value='1') + lampEntry = Entry(lampFrame, textvariable=lampVar, width=3, validate='all', vcmd=vcmd) + lampFrame.pack() + lampLabel.pack(anchor=W, side=LEFT, padx=(0,46)) + lampEntry.pack(anchor=E) + + hammerFrame = Frame(itemList1) + hammerLabel = Label(hammerFrame, text='Hammer') + hammerVar = StringVar(value='1') + hammerEntry = Entry(hammerFrame, textvariable=hammerVar, width=3, validate='all', vcmd=vcmd) + hammerFrame.pack() + hammerLabel.pack(anchor=W, side=LEFT, padx=(0,29)) + hammerEntry.pack(anchor=E) + + shovelFrame = Frame(itemList1) + shovelLabel = Label(shovelFrame, text='Shovel') + shovelVar = StringVar(value='1') + shovelEntry = Entry(shovelFrame, textvariable=shovelVar, width=3, validate='all', vcmd=vcmd) + shovelFrame.pack() + shovelLabel.pack(anchor=W, side=LEFT, padx=(0,41)) + shovelEntry.pack(anchor=E) + + fluteFrame = Frame(itemList1) + fluteLabel = Label(fluteFrame, text='Flute') + fluteVar = StringVar(value='1') + fluteEntry = Entry(fluteFrame, textvariable=fluteVar, width=3, validate='all', vcmd=vcmd) + fluteFrame.pack() + fluteLabel.pack(anchor=W, side=LEFT, padx=(0,50)) + fluteEntry.pack(anchor=E) + + bugnetFrame = Frame(itemList2) + bugnetLabel = Label(bugnetFrame, text='Bug Net') + bugnetVar = StringVar(value='1') + bugnetEntry = Entry(bugnetFrame, textvariable=bugnetVar, width=3, validate='all', vcmd=vcmd) + bugnetFrame.pack() + bugnetLabel.pack(anchor=W, side=LEFT, padx=(0,41)) + bugnetEntry.pack(anchor=E) + + bookFrame = Frame(itemList2) + bookLabel = Label(bookFrame, text='Book') + bookVar = StringVar(value='1') + bookEntry = Entry(bookFrame, textvariable=bookVar, width=3, validate='all', vcmd=vcmd) + bookFrame.pack() + bookLabel.pack(anchor=W, side=LEFT, padx=(0,57)) + bookEntry.pack(anchor=E) + + bottleFrame = Frame(itemList2) + bottleLabel = Label(bottleFrame, text='Bottle') + bottleVar = StringVar(value='4') + bottleEntry = Entry(bottleFrame, textvariable=bottleVar, width=3, validate='all', vcmd=vcmd) + bottleFrame.pack() + bottleLabel.pack(anchor=W, side=LEFT, padx=(0,53)) + bottleEntry.pack(anchor=E) + + somariaFrame = Frame(itemList2) + somariaLabel = Label(somariaFrame, text='C.Somaria') + somariaVar = StringVar(value='1') + somariaEntry = Entry(somariaFrame, textvariable=somariaVar, width=3, validate='all', vcmd=vcmd) + somariaFrame.pack() + somariaLabel.pack(anchor=W, side=LEFT, padx=(0,30)) + somariaEntry.pack(anchor=E) + + byrnaFrame = Frame(itemList2) + byrnaLabel = Label(byrnaFrame, text='C.Byrna') + byrnaVar = StringVar(value='1') + byrnaEntry = Entry(byrnaFrame, textvariable=byrnaVar, width=3, validate='all', vcmd=vcmd) + byrnaFrame.pack() + byrnaLabel.pack(anchor=W, side=LEFT, padx=(0,43)) + byrnaEntry.pack(anchor=E) + + capeFrame = Frame(itemList2) + capeLabel = Label(capeFrame, text='Magic Cape') + capeVar = StringVar(value='1') + capeEntry = Entry(capeFrame, textvariable=capeVar, width=3, validate='all', vcmd=vcmd) + capeFrame.pack() + capeLabel.pack(anchor=W, side=LEFT, padx=(0,21)) + capeEntry.pack(anchor=E) + + mirrorFrame = Frame(itemList2) + mirrorLabel = Label(mirrorFrame, text='Magic Mirror') + mirrorVar = StringVar(value='1') + mirrorEntry = Entry(mirrorFrame, textvariable=mirrorVar, width=3, validate='all', vcmd=vcmd) + mirrorFrame.pack() + mirrorLabel.pack(anchor=W, side=LEFT, padx=(0,15)) + mirrorEntry.pack(anchor=E) + + bootsFrame = Frame(itemList2) + bootsLabel = Label(bootsFrame, text='Pegasus Boots') + bootsVar = StringVar(value='1') + bootsEntry = Entry(bootsFrame, textvariable=bootsVar, width=3, validate='all', vcmd=vcmd) + bootsFrame.pack() + bootsLabel.pack(anchor=W, side=LEFT, padx=(0,8)) + bootsEntry.pack(anchor=E) + + powergloveFrame = Frame(itemList2) + powergloveLabel = Label(powergloveFrame, text='Power Glove') + powergloveVar = StringVar(value='0') + powergloveEntry = Entry(powergloveFrame, textvariable=powergloveVar, width=3, validate='all', vcmd=vcmd) + powergloveFrame.pack() + powergloveLabel.pack(anchor=W, side=LEFT, padx=(0,18)) + powergloveEntry.pack(anchor=E) + + titansmittFrame = Frame(itemList2) + titansmittLabel = Label(titansmittFrame, text='Titan\'s Mitt') + titansmittVar = StringVar(value='0') + titansmittEntry = Entry(titansmittFrame, textvariable=titansmittVar, width=3, validate='all', vcmd=vcmd) + titansmittFrame.pack() + titansmittLabel.pack(anchor=W, side=LEFT, padx=(0,24)) + titansmittEntry.pack(anchor=E) + + proggloveFrame = Frame(itemList2) + proggloveLabel = Label(proggloveFrame, text='Prog.Glove') + proggloveVar = StringVar(value='2') + proggloveEntry = Entry(proggloveFrame, textvariable=proggloveVar, width=3, validate='all', vcmd=vcmd) + proggloveFrame.pack() + proggloveLabel.pack(anchor=W, side=LEFT, padx=(0,26)) + proggloveEntry.pack(anchor=E) + + flippersFrame = Frame(itemList2) + flippersLabel = Label(flippersFrame, text='Flippers') + flippersVar = StringVar(value='1') + flippersEntry = Entry(flippersFrame, textvariable=flippersVar, width=3, validate='all', vcmd=vcmd) + flippersFrame.pack() + flippersLabel.pack(anchor=W, side=LEFT, padx=(0,43)) + flippersEntry.pack(anchor=E) + + pearlFrame = Frame(itemList2) + pearlLabel = Label(pearlFrame, text='Moon Pearl') + pearlVar = StringVar(value='1') + pearlEntry = Entry(pearlFrame, textvariable=pearlVar, width=3, validate='all', vcmd=vcmd) + pearlFrame.pack() + pearlLabel.pack(anchor=W, side=LEFT, padx=(0,23)) + pearlEntry.pack(anchor=E) + + heartpieceFrame = Frame(itemList2) + heartpieceLabel = Label(heartpieceFrame, text='Piece of Heart') + heartpieceVar = StringVar(value='24') + heartpieceEntry = Entry(heartpieceFrame, textvariable=heartpieceVar, width=3, validate='all', vcmd=vcmd) + heartpieceFrame.pack() + heartpieceLabel.pack(anchor=W, side=LEFT, padx=(0,10)) + heartpieceEntry.pack(anchor=E) + + fullheartFrame = Frame(itemList2) + fullheartLabel = Label(fullheartFrame, text='Heart Container') + fullheartVar = StringVar(value='10') + fullheartEntry = Entry(fullheartFrame, textvariable=fullheartVar, width=3, validate='all', vcmd=vcmd) + fullheartFrame.pack() + fullheartLabel.pack(anchor=W, side=LEFT) + fullheartEntry.pack(anchor=E) + + sancheartFrame = Frame(itemList2) + sancheartLabel = Label(sancheartFrame, text='Sanctuary Heart') + sancheartVar = StringVar(value='1') + sancheartEntry = Entry(sancheartFrame, textvariable=sancheartVar, width=3, validate='all', vcmd=vcmd) + sancheartFrame.pack() + sancheartLabel.pack(anchor=W, side=LEFT) + sancheartEntry.pack(anchor=E) + + sword1Frame = Frame(itemList3) + sword1Label = Label(sword1Frame, text='Sword 1') + sword1Var = StringVar(value='0') + sword1Entry = Entry(sword1Frame, textvariable=sword1Var, width=3, validate='all', vcmd=vcmd) + sword1Frame.pack() + sword1Label.pack(anchor=W, side=LEFT, padx=(0,34)) + sword1Entry.pack(anchor=E) + + sword2Frame = Frame(itemList3) + sword2Label = Label(sword2Frame, text='Sword 2') + sword2Var = StringVar(value='0') + sword2Entry = Entry(sword2Frame, textvariable=sword2Var, width=3, validate='all', vcmd=vcmd) + sword2Frame.pack() + sword2Label.pack(anchor=W, side=LEFT, padx=(0,34)) + sword2Entry.pack(anchor=E) + + sword3Frame = Frame(itemList3) + sword3Label = Label(sword3Frame, text='Sword 3') + sword3Var = StringVar(value='0') + sword3Entry = Entry(sword3Frame, textvariable=sword3Var, width=3, validate='all', vcmd=vcmd) + sword3Frame.pack() + sword3Label.pack(anchor=W, side=LEFT, padx=(0,34)) + sword3Entry.pack(anchor=E) + + sword4Frame = Frame(itemList3) + sword4Label = Label(sword4Frame, text='Sword 4') + sword4Var = StringVar(value='0') + sword4Entry = Entry(sword4Frame, textvariable=sword4Var, width=3, validate='all', vcmd=vcmd) + sword4Frame.pack() + sword4Label.pack(anchor=W, side=LEFT, padx=(0,34)) + sword4Entry.pack(anchor=E) + + progswordFrame = Frame(itemList3) + progswordLabel = Label(progswordFrame, text='Prog.Sword') + progswordVar = StringVar(value='4') + progswordEntry = Entry(progswordFrame, textvariable=progswordVar, width=3, validate='all', vcmd=vcmd) + progswordFrame.pack() + progswordLabel.pack(anchor=W, side=LEFT, padx=(0,15)) + progswordEntry.pack(anchor=E) + + shield1Frame = Frame(itemList3) + shield1Label = Label(shield1Frame, text='Shield 1') + shield1Var = StringVar(value='0') + shield1Entry = Entry(shield1Frame, textvariable=shield1Var, width=3, validate='all', vcmd=vcmd) + shield1Frame.pack() + shield1Label.pack(anchor=W, side=LEFT, padx=(0,35)) + shield1Entry.pack(anchor=E) + + shield2Frame = Frame(itemList3) + shield2Label = Label(shield2Frame, text='Shield 2') + shield2Var = StringVar(value='0') + shield2Entry = Entry(shield2Frame, textvariable=shield2Var, width=3, validate='all', vcmd=vcmd) + shield2Frame.pack() + shield2Label.pack(anchor=W, side=LEFT, padx=(0,35)) + shield2Entry.pack(anchor=E) + + shield3Frame = Frame(itemList3) + shield3Label = Label(shield3Frame, text='Shield 3') + shield3Var = StringVar(value='0') + shield3Entry = Entry(shield3Frame, textvariable=shield3Var, width=3, validate='all', vcmd=vcmd) + shield3Frame.pack() + shield3Label.pack(anchor=W, side=LEFT, padx=(0,35)) + shield3Entry.pack(anchor=E) + + progshieldFrame = Frame(itemList3) + progshieldLabel = Label(progshieldFrame, text='Prog.Shield') + progshieldVar = StringVar(value='3') + progshieldEntry = Entry(progshieldFrame, textvariable=progshieldVar, width=3, validate='all', vcmd=vcmd) + progshieldFrame.pack() + progshieldLabel.pack(anchor=W, side=LEFT, padx=(0,16)) + progshieldEntry.pack(anchor=E) + + bluemailFrame = Frame(itemList3) + bluemailLabel = Label(bluemailFrame, text='Blue Mail') + bluemailVar = StringVar(value='0') + bluemailEntry = Entry(bluemailFrame, textvariable=bluemailVar, width=3, validate='all', vcmd=vcmd) + bluemailFrame.pack() + bluemailLabel.pack(anchor=W, side=LEFT, padx=(0,27)) + bluemailEntry.pack(anchor=E) + + redmailFrame = Frame(itemList3) + redmailLabel = Label(redmailFrame, text='Red Mail') + redmailVar = StringVar(value='0') + redmailEntry = Entry(redmailFrame, textvariable=redmailVar, width=3, validate='all', vcmd=vcmd) + redmailFrame.pack() + redmailLabel.pack(anchor=W, side=LEFT, padx=(0,30)) + redmailEntry.pack(anchor=E) + + progmailFrame = Frame(itemList3) + progmailLabel = Label(progmailFrame, text='Prog.Mail') + progmailVar = StringVar(value='2') + progmailEntry = Entry(progmailFrame, textvariable=progmailVar, width=3, validate='all', vcmd=vcmd) + progmailFrame.pack() + progmailLabel.pack(anchor=W, side=LEFT, padx=(0,25)) + progmailEntry.pack(anchor=E) + + halfmagicFrame = Frame(itemList3) + halfmagicLabel = Label(halfmagicFrame, text='Half Magic') + halfmagicVar = StringVar(value='1') + halfmagicEntry = Entry(halfmagicFrame, textvariable=halfmagicVar, width=3, validate='all', vcmd=vcmd) + halfmagicFrame.pack() + halfmagicLabel.pack(anchor=W, side=LEFT, padx=(0,18)) + halfmagicEntry.pack(anchor=E) + + quartermagicFrame = Frame(itemList3) + quartermagicLabel = Label(quartermagicFrame, text='Quarter Magic') + quartermagicVar = StringVar(value='0') + quartermagicEntry = Entry(quartermagicFrame, textvariable=quartermagicVar, width=3, validate='all', vcmd=vcmd) + quartermagicFrame.pack() + quartermagicLabel.pack(anchor=W, side=LEFT) + quartermagicEntry.pack(anchor=E) + + bcap5Frame = Frame(itemList3) + bcap5Label = Label(bcap5Frame, text='Bomb C.+5') + bcap5Var = StringVar(value='6') + bcap5Entry = Entry(bcap5Frame, textvariable=bcap5Var, width=3, validate='all', vcmd=vcmd) + bcap5Frame.pack() + bcap5Label.pack(anchor=W, side=LEFT, padx=(0,16)) + bcap5Entry.pack(anchor=E) + + bcap10Frame = Frame(itemList3) + bcap10Label = Label(bcap10Frame, text='Bomb C.+10') + bcap10Var = StringVar(value='1') + bcap10Entry = Entry(bcap10Frame, textvariable=bcap10Var, width=3, validate='all', vcmd=vcmd) + bcap10Frame.pack() + bcap10Label.pack(anchor=W, side=LEFT, padx=(0,10)) + bcap10Entry.pack(anchor=E) + + acap5Frame = Frame(itemList4) + acap5Label = Label(acap5Frame, text='Arrow C.+5') + acap5Var = StringVar(value='6') + acap5Entry = Entry(acap5Frame, textvariable=acap5Var, width=3, validate='all', vcmd=vcmd) + acap5Frame.pack() + acap5Label.pack(anchor=W, side=LEFT, padx=(0,7)) + acap5Entry.pack(anchor=E) + + acap10Frame = Frame(itemList4) + acap10Label = Label(acap10Frame, text='Arrow C.+10') + acap10Var = StringVar(value='1') + acap10Entry = Entry(acap10Frame, textvariable=acap10Var, width=3, validate='all', vcmd=vcmd) + acap10Frame.pack() + acap10Label.pack(anchor=W, side=LEFT, padx=(0,1)) + acap10Entry.pack(anchor=E) + + arrow1Frame = Frame(itemList4) + arrow1Label = Label(arrow1Frame, text='Arrow (1)') + arrow1Var = StringVar(value='1') + arrow1Entry = Entry(arrow1Frame, textvariable=arrow1Var, width=3, validate='all', vcmd=vcmd) + arrow1Frame.pack() + arrow1Label.pack(anchor=W, side=LEFT, padx=(0,18)) + arrow1Entry.pack(anchor=E) + + arrow10Frame = Frame(itemList4) + arrow10Label = Label(arrow10Frame, text='Arrows (10)') + arrow10Var = StringVar(value='5') + arrow10Entry = Entry(arrow10Frame, textvariable=arrow10Var, width=3, validate='all', vcmd=vcmd) + arrow10Frame.pack() + arrow10Label.pack(anchor=W, side=LEFT, padx=(0,7)) + arrow10Entry.pack(anchor=E) + + bomb1Frame = Frame(itemList4) + bomb1Label = Label(bomb1Frame, text='Bomb (1)') + bomb1Var = StringVar(value='0') + bomb1Entry = Entry(bomb1Frame, textvariable=bomb1Var, width=3, validate='all', vcmd=vcmd) + bomb1Frame.pack() + bomb1Label.pack(anchor=W, side=LEFT, padx=(0,18)) + bomb1Entry.pack(anchor=E) + + bomb3Frame = Frame(itemList4) + bomb3Label = Label(bomb3Frame, text='Bombs (3)') + bomb3Var = StringVar(value='10') + bomb3Entry = Entry(bomb3Frame, textvariable=bomb3Var, width=3, validate='all', vcmd=vcmd) + bomb3Frame.pack() + bomb3Label.pack(anchor=W, side=LEFT, padx=(0,13)) + bomb3Entry.pack(anchor=E) + + rupee1Frame = Frame(itemList4) + rupee1Label = Label(rupee1Frame, text='Rupee (1)') + rupee1Var = StringVar(value='2') + rupee1Entry = Entry(rupee1Frame, textvariable=rupee1Var, width=3, validate='all', vcmd=vcmd) + rupee1Frame.pack() + rupee1Label.pack(anchor=W, side=LEFT, padx=(0,17)) + rupee1Entry.pack(anchor=E) + + rupee5Frame = Frame(itemList4) + rupee5Label = Label(rupee5Frame, text='Rupees (5)') + rupee5Var = StringVar(value='4') + rupee5Entry = Entry(rupee5Frame, textvariable=rupee5Var, width=3, validate='all', vcmd=vcmd) + rupee5Frame.pack() + rupee5Label.pack(anchor=W, side=LEFT, padx=(0,12)) + rupee5Entry.pack(anchor=E) + + rupee20Frame = Frame(itemList4) + rupee20Label = Label(rupee20Frame, text='Rupees (20)') + rupee20Var = StringVar(value='28') + rupee20Entry = Entry(rupee20Frame, textvariable=rupee20Var, width=3, validate='all', vcmd=vcmd) + rupee20Frame.pack() + rupee20Label.pack(anchor=W, side=LEFT, padx=(0,6)) + rupee20Entry.pack(anchor=E) + + rupee50Frame = Frame(itemList4) + rupee50Label = Label(rupee50Frame, text='Rupees (50)') + rupee50Var = StringVar(value='7') + rupee50Entry = Entry(rupee50Frame, textvariable=rupee50Var, width=3, validate='all', vcmd=vcmd) + rupee50Frame.pack() + rupee50Label.pack(anchor=W, side=LEFT, padx=(0,6)) + rupee50Entry.pack(anchor=E) + + rupee100Frame = Frame(itemList4) + rupee100Label = Label(rupee100Frame, text='Rupees (100)') + rupee100Var = StringVar(value='1') + rupee100Entry = Entry(rupee100Frame, textvariable=rupee100Var, width=3, validate='all', vcmd=vcmd) + rupee100Frame.pack() + rupee100Label.pack(anchor=W, side=LEFT, padx=(0,0)) + rupee100Entry.pack(anchor=E) + + rupee300Frame = Frame(itemList4) + rupee300Label = Label(rupee300Frame, text='Rupees (300)') + rupee300Var = StringVar(value='5') + rupee300Entry = Entry(rupee300Frame, textvariable=rupee300Var, width=3, validate='all', vcmd=vcmd) + rupee300Frame.pack() + rupee300Label.pack(anchor=W, side=LEFT, padx=(0,0)) + rupee300Entry.pack(anchor=E) + + rupoorFrame = Frame(itemList4) + rupoorLabel = Label(rupoorFrame, text='Rupoor') + rupoorVar = StringVar(value='0') + rupoorEntry = Entry(rupoorFrame, textvariable=rupoorVar, width=3, validate='all', vcmd=vcmd) + rupoorFrame.pack() + rupoorLabel.pack(anchor=W, side=LEFT, padx=(0,28)) + rupoorEntry.pack(anchor=E) + + blueclockFrame = Frame(itemList4) + blueclockLabel = Label(blueclockFrame, text='Blue Clock') + blueclockVar = StringVar(value='0') + blueclockEntry = Entry(blueclockFrame, textvariable=blueclockVar, width=3, validate='all', vcmd=vcmd) + blueclockFrame.pack() + blueclockLabel.pack(anchor=W, side=LEFT, padx=(0,11)) + blueclockEntry.pack(anchor=E) + + greenclockFrame = Frame(itemList4) + greenclockLabel = Label(greenclockFrame, text='Green Clock') + greenclockVar = StringVar(value='0') + greenclockEntry = Entry(greenclockFrame, textvariable=greenclockVar, width=3, validate='all', vcmd=vcmd) + greenclockFrame.pack() + greenclockLabel.pack(anchor=W, side=LEFT, padx=(0,3)) + greenclockEntry.pack(anchor=E) + + redclockFrame = Frame(itemList4) + redclockLabel = Label(redclockFrame, text='Red Clock') + redclockVar = StringVar(value='0') + redclockEntry = Entry(redclockFrame, textvariable=redclockVar, width=3, validate='all', vcmd=vcmd) + redclockFrame.pack() + redclockLabel.pack(anchor=W, side=LEFT, padx=(0,14)) + redclockEntry.pack(anchor=E) + + triforcepieceFrame = Frame(itemList5) + triforcepieceLabel = Label(triforcepieceFrame, text='Triforce Piece') + triforcepieceVar = StringVar(value='0') + triforcepieceEntry = Entry(triforcepieceFrame, textvariable=triforcepieceVar, width=3, validate='all', vcmd=vcmd) + triforcepieceFrame.pack() + triforcepieceLabel.pack(anchor=W, side=LEFT, padx=(0,55)) + triforcepieceEntry.pack(anchor=E) + + triforcecountFrame = Frame(itemList5) + triforcecountLabel = Label(triforcecountFrame, text='Triforce Pieces Required') + triforcecountVar = StringVar(value='0') + triforcecountEntry = Entry(triforcecountFrame, textvariable=triforcecountVar, width=3, validate='all', vcmd=vcmd) + triforcecountFrame.pack() + triforcecountLabel.pack(anchor=W, side=LEFT, padx=(0,0)) + triforcecountEntry.pack(anchor=E) + + triforceFrame = Frame(itemList5) + triforceLabel = Label(triforceFrame, text='Triforce (win game)') + triforceVar = StringVar(value='0') + triforceEntry = Entry(triforceFrame, textvariable=triforceVar, width=3, validate='all', vcmd=vcmd) + triforceFrame.pack() + triforceLabel.pack(anchor=W, side=LEFT, padx=(0,23)) + triforceEntry.pack(anchor=E) + + rupoorcostFrame = Frame(itemList5) + rupoorcostLabel = Label(rupoorcostFrame, text='Rupoor Cost') + rupoorcostVar = StringVar(value='10') + rupoorcostEntry = Entry(rupoorcostFrame, textvariable=rupoorcostVar, width=6, validate='all', vcmd=vcmd) + rupoorcostFrame.pack() + rupoorcostLabel.pack(anchor=W, side=LEFT, padx=(0,43)) + rupoorcostEntry.pack(anchor=E) + + itemList1.pack(side=LEFT, padx=(0,0)) + itemList2.pack(side=LEFT, padx=(0,0)) + itemList3.pack(side=LEFT, padx=(0,0)) + itemList4.pack(side=LEFT, padx=(0,0)) + itemList5.pack(side=LEFT, padx=(0,0)) + topFrame3.pack(side=TOP, pady=(17,0)) + if args is not None: # load values from commandline args createSpoilerVar.set(int(args.create_spoiler)) diff --git a/ItemList.py b/ItemList.py index d28476134..f59ec9648 100644 --- a/ItemList.py +++ b/ItemList.py @@ -1,8 +1,9 @@ from collections import namedtuple +import logging import random from Items import ItemFactory -from Fill import fill_restrictive +from Fill import FillError, fill_restrictive from Dungeons import get_dungeon_item_pool #This file sets the item pools for various modes. Timed modes and triforce hunt are enforced first, and then extra items are specified per mode to fill in the remaining space. @@ -25,8 +26,8 @@ normalfinal25extra = ['Rupees (20)'] * 23 + ['Rupees (5)'] * 2 -easybaseitems = (['Blue Boomerang', 'Red Boomerang', 'Silver Arrows'] + ['Rupees (300)'] * 4 + ['Magic Upgrade (1/2)'] * 2 + ['Lamp'] * 2 + - ['Single Arrow', 'Sanctuary Heart Container'] + ['Boss Heart Container'] * 10 + ['Piece of Heart'] * 12) +easybaseitems = (['Blue Boomerang', 'Red Boomerang', 'Sanctuary Heart Container'] + ['Rupees (300)'] * 4 + ['Magic Upgrade (1/2)'] * 2 + ['Lamp'] * 2 + + ['Silver Arrows'] * 2 + ['Boss Heart Container'] * 10 + ['Piece of Heart'] * 12) easyextra = ['Piece of Heart'] * 12 + ['Rupees (300)'] easylimitedextra = ['Boss Heart Container'] * 3 # collapsing down the 12 pieces of heart easyfirst15extra = ['Rupees (100)', 'Arrow Upgrade (+10)', 'Bomb Upgrade (+10)'] + ['Arrow Upgrade (+5)'] * 6 + ['Bomb Upgrade (+5)'] * 6 @@ -35,26 +36,28 @@ easyfinal25extra = ['Rupees (50)'] * 4 + ['Rupees (20)'] * 14 + ['Rupee (1)'] + ['Arrows (10)'] * 4 + ['Rupees (5)'] * 2 easytimedotherextra = ['Red Clock'] * 5 -hardbaseitems = (['Silver Arrows', 'Single Arrow'] + ['Rupees (300)'] + ['Rupees (100)'] * 2 + ['Rupees (50)'] + ['Bombs (3)'] + +hardbaseitems = (['Silver Arrows', 'Single Arrow', 'Single Bomb'] + ['Rupees (300)'] + ['Rupees (100)'] * 3 + ['Rupees (50)'] * 5 + ['Bombs (3)'] * 5 + ['Boss Heart Container'] * 5 + ['Piece of Heart'] * 24) -hardfirst20extra = ['Bombs (3)'] * 4 + ['Single Bomb'] * 4 + ['Rupees (5)'] * 5 + ['Rupee (1)'] * 2 + ['Rupees (100)'] + ['Rupees (50)'] * 4 -hardsecond20extra = ['Single Bomb'] * 4 + ['Rupees (5)'] * 10 + ['Rupees (20)'] * 2 + ['Rupee (1)'] * 3 + ['Arrows (10)'] -hardthird20extra = ['Arrows (10)'] * 4 + ['Rupees (20)'] * 3 + ['Rupees (5)'] * 3 + ['Single Bomb'] * 5 + ['Single Arrow'] * 5 +hardfirst20extra = ['Single Bomb'] * 7 + ['Rupees (5)'] * 8 + ['Rupee (1)'] * 2 + ['Rupees (20)'] * 2 + ['Arrows (10)'] +hardsecond10extra = ['Rupees (5)'] * 7 + ['Rupee (1)'] * 3 +hardthird10extra = ['Arrows (10)'] * 4 + ['Rupees (20)'] * 3 + ['Single Bomb'] * 3 +hardfourth10extra = ['Rupees (5)'] * 3 + ['Single Arrow'] * 5 + ['Single Bomb'] * 2 hardfinal20extra = ['Single Bomb'] * 4 + ['Rupees (5)'] * 2 + ['Single Arrow'] * 14 expertbaseitems = (['Single Arrow', 'Rupees (300)', 'Rupees (100)', 'Bombs (3)', 'Arrows (10)'] + ['Rupees (50)'] * 4 + ['Rupees (5)'] * 5 + - ['Rupees (20)'] + ['Single Bomb'] * 2 + ['Piece of Heart'] * 24) -expertfirst15extra = ['Single Bomb'] * 13 + ['Rupees (20)'] * 2 -expertsecond25extra = ['Single Bomb'] * 8 + ['Single Arrow'] * 9 + ['Rupees (20)'] * 3 + ['Rupee (1)'] * 5 -expertthird15extra = ['Rupees (5)'] * 5 + ['Single Bomb'] * 3 + ['Rupees (20)'] * 2 + ['Single Arrow'] * 5 + ['Rupees (20)'] * 3 + ['Single Bomb'] * 10 + ['Piece of Heart'] * 24) +expertfirst15extra = ['Single Bomb'] * 7 + ['Rupees (20)'] * 3 + ['Single Arrow'] * 5 +expertsecond15extra = ['Single Bomb'] * 6 + ['Single Arrow'] * 4 + ['Rupee (1)'] * 5 +expertthird10extra = ['Rupees (5)'] * 3 + ['Single Bomb'] * 3 + ['Rupees (20)'] * 2 + ['Single Arrow'] * 2 +expertfourth5extra = ['Rupees (5)'] * 2 + ['Single Arrow'] * 3 expertfinal25extra = ['Single Bomb'] * 4 + ['Rupees (20)'] * 3 + ['Single Arrow'] * 18 -insanebaseitems = (['Single Arrow', 'Bombs (3)', 'Arrows (10)'] + ['Rupees (50)'] * 3 + ['Rupees (5)'] * 10 + ['Rupees (300)'] * 4 + ['Rupees (100)'] * 3 + - ['Rupee (1)'] * 4 + ['Single Bomb'] * 4) -insanefirst15extra = ['Single Bomb'] * 4 + ['Single Arrow'] * 4 + ['Rupee (1)'] * 4 + ['Rupees (300)'] + ['Rupees (100)'] + ['Rupees (50)'] -insanesecond25extra = ['Single Bomb'] * 7 + ['Single Arrow'] * 7 + ['Rupee (1)'] * 7 + ['Rupees (20)'] * 4 -insanethird10extra = ['Single Bomb'] * 3 + ['Single Arrow'] * 3 + ['Rupee (1)'] * 3 + ['Rupees (20)'] -insanefourth15extra = ['Single Bomb'] * 5 + ['Single Arrow'] * 5 + ['Rupee (1)'] * 5 +insanebaseitems = (['Bombs (3)', 'Arrows (10)'] + ['Rupees (50)'] * 4 + ['Rupees (5)'] * 10 + ['Rupees (300)'] * 5 + ['Rupees (100)'] * 4 + + ['Rupee (1)'] * 8 + ['Rupees (20)'] * 4 + ['Single Bomb'] * 8 + ['Single Arrow'] * 6) +insanefirst15extra = ['Single Bomb'] * 5 + ['Single Arrow'] * 4 + ['Rupee (1)'] * 5 + ['Rupees (20)'] +insanesecond15extra = ['Single Bomb'] * 5 + ['Single Arrow'] * 5 + ['Rupee (1)'] * 5 +insanethird10extra = ['Single Bomb'] * 4 + ['Single Arrow'] * 3 + ['Rupee (1)'] * 3 +insanefourth5extra = ['Single Bomb'] + ['Single Arrow'] * 2 + ['Rupee (1)'] * 2 insanefinal25extra = ['Single Bomb'] * 2 + ['Single Arrow'] * 10 + ['Rupee (1)'] * 7 + ['Rupees (20)'] * 6 Difficulty = namedtuple('Difficulty', @@ -118,7 +121,7 @@ def no_conditonal_extras(*_args): timedohko = ['Green Clock'] * 25, timedother = ['Green Clock'] * 20 + ['Blue Clock'] * 10 + ['Red Clock'] * 5, # +5 more Red Clocks if there is room triforcehunt = ['Triforce Piece'] * 30, - triforce_pieces_required = 10, + triforce_pieces_required = 20, conditional_extras = easy_conditional_extras, extras = [easyextra, easyfirst15extra, easysecond10extra, easythird5extra, easyfinal25extra], progressive_sword_limit = 4, @@ -140,10 +143,10 @@ def no_conditonal_extras(*_args): basicsword = ['Master Sword', 'Master Sword', 'Tempered Sword'], timedohko = ['Green Clock'] * 20, timedother = ['Green Clock'] * 20 + ['Blue Clock'] * 10 + ['Red Clock'] * 10, - triforcehunt = ['Triforce Piece'] * 40, - triforce_pieces_required = 30, + triforcehunt = ['Triforce Piece'] * 30, + triforce_pieces_required = 20, conditional_extras = no_conditonal_extras, - extras = [hardfirst20extra, hardsecond20extra, hardthird20extra, hardfinal20extra], + extras = [hardfirst20extra, hardsecond10extra, hardthird10extra, hardfourth10extra, hardfinal20extra], progressive_sword_limit = 3, progressive_shield_limit = 2, progressive_armor_limit = 1, @@ -163,10 +166,10 @@ def no_conditonal_extras(*_args): basicsword = ['Fighter Sword', 'Master Sword', 'Master Sword'], timedohko = ['Green Clock'] * 20 + ['Red Clock'] * 5, timedother = ['Green Clock'] * 20 + ['Blue Clock'] * 10 + ['Red Clock'] * 10, - triforcehunt = ['Triforce Piece'] * 40, - triforce_pieces_required = 40, + triforcehunt = ['Triforce Piece'] * 30, + triforce_pieces_required = 20, conditional_extras = no_conditonal_extras, - extras = [expertfirst15extra, expertsecond25extra, expertthird15extra, expertfinal25extra], + extras = [expertfirst15extra, expertsecond15extra, expertthird10extra, expertfourth5extra, expertfinal25extra], progressive_sword_limit = 2, progressive_shield_limit = 0, progressive_armor_limit = 0, @@ -186,10 +189,10 @@ def no_conditonal_extras(*_args): basicsword = ['Fighter Sword', 'Master Sword', 'Master Sword'], timedohko = ['Green Clock'] * 20 + ['Red Clock'] * 5, timedother = ['Green Clock'] * 20 + ['Blue Clock'] * 10 + ['Red Clock'] * 10, - triforcehunt = ['Triforce Piece'] * 50, - triforce_pieces_required = 50, + triforcehunt = ['Triforce Piece'] * 30, + triforce_pieces_required = 20, conditional_extras = no_conditonal_extras, - extras = [insanefirst15extra, insanesecond25extra, insanethird10extra, insanefourth15extra, insanefinal25extra], + extras = [insanefirst15extra, insanesecond15extra, insanethird10extra, insanefourth5extra, insanefinal25extra], progressive_sword_limit = 2, progressive_shield_limit = 0, progressive_armor_limit = 0, @@ -213,11 +216,16 @@ def generate_itempool(world): world.get_location('Agahnim 2').event = True # set up item pool - (pool, placed_items, clock_mode, treasure_hunt_count, treasure_hunt_icon) = get_pool_core(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode) + if world.custom: + (pool, placed_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = make_custom_item_pool(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode, world.customitemarray) + world.rupoor_cost = min(world.customitemarray[67], 9999) + else: + (pool, placed_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) = get_pool_core(world.progressive, world.shuffle, world.difficulty, world.timer, world.goal, world.mode) world.itempool = ItemFactory(pool) for (location, item) in placed_items: world.push_item(location, ItemFactory(item), False) world.get_location(location).event = True + world.lamps_needed_for_dark_rooms = lamps_needed_for_dark_rooms if clock_mode is not None: world.clock_mode = clock_mode if treasure_hunt_count is not None: @@ -230,10 +238,10 @@ def generate_itempool(world): # logic has some branches where having 4 hearts is one possible requirement (of several alternatives) # rather than making all hearts/heart pieces progression items (which slows down generation considerably) - # We mark one random heart container as an advancement item (or 4 heart peices in expert mode) - if world.difficulty in ['easy', 'normal', 'hard']: + # We mark one random heart container as an advancement item (or 4 heart pieces in expert mode) + if world.difficulty in ['easy', 'normal', 'hard'] and not (world.custom and world.customitemarray[30] == 0): [item for item in world.itempool if item.name == 'Boss Heart Container'][0].advancement = True - elif world.difficulty in ['expert']: + elif world.difficulty in ['expert'] and not (world.custom and world.customitemarray[29] < 4): adv_heart_pieces = [item for item in world.itempool if item.name == 'Piece of Heart'][0:4] for hp in adv_heart_pieces: hp.advancement = True @@ -244,14 +252,35 @@ def generate_itempool(world): world.required_medallions = (mm_medallion, tr_medallion) # distribute crystals + fill_prizes(world) + +def fill_prizes(world, attempts=15): crystals = ItemFactory(['Red Pendant', 'Blue Pendant', 'Green Pendant', 'Crystal 1', 'Crystal 2', 'Crystal 3', 'Crystal 4', 'Crystal 7', 'Crystal 5', 'Crystal 6']) crystal_locations = [world.get_location('Turtle Rock - Prize'), world.get_location('Eastern Palace - Prize'), world.get_location('Desert Palace - Prize'), world.get_location('Tower of Hera - Prize'), world.get_location('Palace of Darkness - Prize'), world.get_location('Thieves Town - Prize'), world.get_location('Skull Woods - Prize'), world.get_location('Swamp Palace - Prize'), world.get_location('Ice Palace - Prize'), world.get_location('Misery Mire - Prize')] + placed_prizes = [loc.item.name for loc in crystal_locations if loc.item is not None] + unplaced_prizes = [crystal for crystal in crystals if crystal.name not in placed_prizes] + empty_crystal_locations = [loc for loc in crystal_locations if loc.item is None] + + while attempts: + attempts -= 1 + try: + prizepool = list(unplaced_prizes) + prize_locs = list(empty_crystal_locations) + random.shuffle(prizepool) + random.shuffle(prize_locs) + fill_restrictive(world, world.get_all_state(keys=True), prize_locs, prizepool) + except FillError: + logging.getLogger('').info("Failed to place dungeon prizes. Will retry %s more times", attempts) + for location in empty_crystal_locations: + location.item = None + continue + break + else: + raise FillError('Unable to place dungeon prizes') - random.shuffle(crystal_locations) - fill_restrictive(world, world.get_all_state(keys=True), crystal_locations, crystals) def get_pool_core(progressive, shuffle, difficulty, timer, goal, mode): @@ -271,8 +300,12 @@ def want_progressives(): else: pool.extend(basicgloves) + lamps_needed_for_dark_rooms = 1 + if difficulty == 'easy': + lamps_needed_for_dark_rooms = 3 + # insanity shuffle doesn't have fake LW/DW logic so for now guaranteed Mirror and Moon Pearl at the start - if shuffle == 'insanity': + if shuffle == 'insanity_legacy': placed_items.append(('Link\'s House', 'Magic Mirror')) placed_items.append(('Sanctuary', 'Moon Pearl')) else: @@ -349,7 +382,149 @@ def want_progressives(): if goal == 'pedestal': placed_items.append(('Master Sword Pedestal', 'Triforce')) - return (pool, placed_items, clock_mode, treasure_hunt_count, treasure_hunt_icon) + return (pool, placed_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) + +def make_custom_item_pool(progressive, shuffle, difficulty, timer, goal, mode, customitemarray): + pool = [] + placed_items = [] + clock_mode = None + treasure_hunt_count = None + treasure_hunt_icon = None + + # Correct for insanely oversized item counts and take initial steps to handle undersized pools. + for x in range(0, 64): + if customitemarray[x] > total_items_to_place: + customitemarray[x] = total_items_to_place + if customitemarray[66] > total_items_to_place: + customitemarray[66] = total_items_to_place + itemtotal = 0 + for x in range(0, 65): + itemtotal = itemtotal + customitemarray[x] + itemtotal = itemtotal + customitemarray[66] + + pool.extend(['Bow'] * customitemarray[0]) + pool.extend(['Silver Arrows']* customitemarray[1]) + pool.extend(['Blue Boomerang'] * customitemarray[2]) + pool.extend(['Red Boomerang'] * customitemarray[3]) + pool.extend(['Hookshot'] * customitemarray[4]) + pool.extend(['Mushroom'] * customitemarray[5]) + pool.extend(['Magic Powder'] * customitemarray[6]) + pool.extend(['Fire Rod'] * customitemarray[7]) + pool.extend(['Ice Rod'] * customitemarray[8]) + pool.extend(['Bombos'] * customitemarray[9]) + pool.extend(['Ether'] * customitemarray[10]) + pool.extend(['Quake'] * customitemarray[11]) + pool.extend(['Lamp'] * customitemarray[12]) + pool.extend(['Hammer'] * customitemarray[13]) + pool.extend(['Shovel'] * customitemarray[14]) + pool.extend(['Ocarina'] * customitemarray[15]) + pool.extend(['Bug Catching Net'] * customitemarray[16]) + pool.extend(['Book of Mudora'] * customitemarray[17]) + pool.extend(['Cane of Somaria'] * customitemarray[19]) + pool.extend(['Cane of Byrna'] * customitemarray[20]) + pool.extend(['Cape'] * customitemarray[21]) + pool.extend(['Pegasus Boots'] * customitemarray[23]) + pool.extend(['Power Glove'] * customitemarray[24]) + pool.extend(['Titans Mitts'] * customitemarray[25]) + pool.extend(['Progressive Glove'] * customitemarray[26]) + pool.extend(['Flippers'] * customitemarray[27]) + pool.extend(['Piece of Heart'] * customitemarray[29]) + pool.extend(['Boss Heart Container'] * customitemarray[30]) + pool.extend(['Sanctuary Heart Container'] * customitemarray[31]) + pool.extend(['Master Sword'] * customitemarray[33]) + pool.extend(['Tempered Sword'] * customitemarray[34]) + pool.extend(['Golden Sword'] * customitemarray[35]) + pool.extend(['Blue Shield'] * customitemarray[37]) + pool.extend(['Red Shield'] * customitemarray[38]) + pool.extend(['Mirror Shield'] * customitemarray[39]) + pool.extend(['Progressive Shield'] * customitemarray[40]) + pool.extend(['Blue Mail'] * customitemarray[41]) + pool.extend(['Red Mail'] * customitemarray[42]) + pool.extend(['Progressive Armor'] * customitemarray[43]) + pool.extend(['Magic Upgrade (1/2)'] * customitemarray[44]) + pool.extend(['Magic Upgrade (1/4)'] * customitemarray[45]) + pool.extend(['Bomb Upgrade (+5)'] * customitemarray[46]) + pool.extend(['Bomb Upgrade (+10)'] * customitemarray[47]) + pool.extend(['Arrow Upgrade (+5)'] * customitemarray[48]) + pool.extend(['Arrow Upgrade (+10)'] * customitemarray[49]) + pool.extend(['Single Arrow'] * customitemarray[50]) + pool.extend(['Arrows (10)'] * customitemarray[51]) + pool.extend(['Single Bomb'] * customitemarray[52]) + pool.extend(['Bombs (3)'] * customitemarray[53]) + pool.extend(['Rupee (1)'] * customitemarray[54]) + pool.extend(['Rupees (5)'] * customitemarray[55]) + pool.extend(['Rupees (20)'] * customitemarray[56]) + pool.extend(['Rupees (50)'] * customitemarray[57]) + pool.extend(['Rupees (100)'] * customitemarray[58]) + pool.extend(['Rupees (300)'] * customitemarray[59]) + pool.extend(['Rupoor'] * customitemarray[60]) + pool.extend(['Blue Clock'] * customitemarray[61]) + pool.extend(['Green Clock'] * customitemarray[62]) + pool.extend(['Red Clock'] * customitemarray[63]) + pool.extend(['Triforce Piece'] * customitemarray[64]) + pool.extend(['Triforce'] * customitemarray[66]) + + diff = difficulties[difficulty] + + lamps_needed_for_dark_rooms = 1 + if difficulty == 'easy': + lamps_needed_for_dark_rooms = customitemarray[12] + + # expert+ difficulties produce the same contents for + # all bottles, since only one bottle is available + if diff.same_bottle: + thisbottle = random.choice(diff.bottles) + for _ in range(customitemarray[18]): + if not diff.same_bottle: + thisbottle = random.choice(diff.bottles) + pool.append(thisbottle) + + if customitemarray[64] > 0 or customitemarray[65] > 0: + treasure_hunt_count = max(min(customitemarray[65], 99), 1) #To display, count must be between 1 and 99. + treasure_hunt_icon = 'Triforce Piece' + # Ensure game is always possible to complete here, force sufficient pieces if the player is unwilling. + if (customitemarray[64] < treasure_hunt_count) and (goal == 'triforcehunt') and (customitemarray[66] == 0): + extrapieces = treasure_hunt_count - customitemarray[64] + pool.extend(['Triforce Piece'] * extrapieces) + itemtotal = itemtotal + extrapieces + + if timer in ['display', 'timed', 'timed-countdown']: + clock_mode = 'countdown' if timer == 'timed-countdown' else 'stopwatch' + elif timer == 'timed-ohko': + clock_mode = 'countdown-ohko' + elif timer == 'ohko': + clock_mode = 'ohko' + + if goal == 'pedestal': + placed_items.append(('Master Sword Pedestal', 'Triforce')) + itemtotal = itemtotal + 1 + + if mode == 'standard': + if progressive == 'off': + placed_items.append(('Link\'s Uncle', 'Fighter Sword')) + pool.extend(['Fighter Sword'] * max((customitemarray[32] - 1), 0)) + pool.extend(['Progressive Sword'] * customitemarray[36]) + else: + placed_items.append(('Link\'s Uncle', 'Progressive Sword')) + pool.extend(['Fighter Sword'] * customitemarray[32]) + pool.extend(['Progressive Sword'] * max((customitemarray[36] - 1), 0)) + else: + pool.extend(['Fighter Sword'] * customitemarray[32]) + pool.extend(['Progressive Sword'] * customitemarray[36]) + + if shuffle == 'insanity_legacy': + placed_items.append(('Link\'s House', 'Magic Mirror')) + placed_items.append(('Sanctuary', 'Moon Pearl')) + pool.extend(['Magic Mirror'] * max((customitemarray[22] -1 ), 0)) + pool.extend(['Moon Pearl'] * max((customitemarray[28] - 1), 0)) + else: + pool.extend(['Magic Mirror'] * customitemarray[22]) + pool.extend(['Moon Pearl'] * customitemarray[28]) + + if itemtotal < total_items_to_place: + pool.extend(['Nothing'] * (total_items_to_place - itemtotal)) + + return (pool, placed_items, clock_mode, treasure_hunt_count, treasure_hunt_icon, lamps_needed_for_dark_rooms) # A quick test to ensure all combinations generate the correct amount of items. def test(): diff --git a/Items.py b/Items.py index 01597ece0..97b9c605a 100644 --- a/Items.py +++ b/Items.py @@ -72,7 +72,7 @@ def ItemFactory(items): 'Crystal 5': (True, False, 'Crystal', [0x04, 0x32, 0x64, 0x40, 0x6E, 0x06], None, None, None, None, None, None), 'Crystal 6': (True, False, 'Crystal', [0x01, 0x32, 0x64, 0x40, 0x6F, 0x06], None, None, None, None, None, None), 'Crystal 7': (True, False, 'Crystal', [0x08, 0x34, 0x64, 0x40, 0x7C, 0x06], None, None, None, None, None, None), - 'Single Arrow': (False, False, None, 0x43, 'a lonely arrow\nsits here.', 'and the arrow', 'stick-collecting kid', 'sewing kit for sale', 'fungus for arrow', 'archer boy sews again'), + 'Single Arrow': (False, False, None, 0x43, 'a lonely arrow\nsits here.', 'and the arrow', 'stick-collecting kid', 'sewing needle for sale', 'fungus for arrow', 'archer boy sews again'), 'Arrows (10)': (False, False, None, 0x44, 'This will give\nyou ten shots\nwith your bow!', 'and the arrow pack', 'stick-collecting kid', 'sewing kit for sale', 'fungus for arrows', 'archer boy sews again'), 'Arrow Upgrade (+10)': (False, False, None, 0x54, 'increase arrow\nstorage, low\nlow price', 'and the quiver', 'quiver-enlarging kid', 'arrow boost for sale', 'witch and more skewers', 'upgrade boy sews more again'), 'Arrow Upgrade (+5)': (False, False, None, 0x53, 'increase arrow\nstorage, low\nlow price', 'and the quiver', 'quiver-enlarging kid', 'arrow boost for sale', 'witch and more skewers', 'upgrade boy sews more again'), diff --git a/Main.py b/Main.py index 44597dc8b..cb22a945a 100644 --- a/Main.py +++ b/Main.py @@ -15,31 +15,31 @@ from ItemList import generate_itempool, difficulties from Utils import output_path -__version__ = '0.5.2.1-dev' - -logic_hash = [85, 160, 173, 64, 16, 14, 97, 193, 219, 26, 11, 156, 198, 142, 213, 141, - 55, 60, 32, 174, 77, 128, 147, 3, 1, 118, 74, 50, 243, 6, 251, 36, - 194, 65, 217, 120, 94, 150, 108, 99, 222, 233, 96, 70, 225, 236, 103, 21, - 241, 138, 144, 95, 164, 62, 183, 25, 203, 33, 240, 228, 224, 181, 176, 155, - 247, 151, 140, 24, 221, 53, 83, 37, 71, 195, 188, 184, 90, 61, 13, 154, - 57, 230, 179, 45, 23, 59, 238, 130, 121, 5, 165, 38, 216, 136, 199, 132, - 255, 34, 212, 208, 227, 126, 226, 104, 98, 75, 166, 158, 40, 234, 111, 72, - 58, 133, 157, 252, 192, 84, 152, 116, 177, 124, 190, 46, 214, 8, 10, 81, - 244, 67, 182, 2, 0, 237, 145, 80, 7, 197, 137, 168, 102, 235, 204, 91, - 69, 9, 100, 139, 54, 172, 232, 105, 162, 115, 242, 170, 169, 254, 20, 117, - 180, 220, 191, 110, 93, 163, 223, 185, 211, 210, 39, 47, 114, 207, 73, 146, - 112, 12, 78, 4, 88, 171, 106, 87, 127, 123, 41, 178, 43, 201, 202, 167, - 35, 30, 122, 44, 209, 19, 249, 18, 113, 186, 49, 52, 161, 86, 200, 149, - 218, 107, 29, 27, 135, 159, 66, 17, 131, 129, 76, 250, 15, 248, 82, 239, - 68, 63, 143, 28, 153, 48, 101, 119, 51, 31, 215, 42, 187, 92, 109, 245, - 22, 56, 89, 206, 148, 229, 175, 134, 189, 205, 79, 196, 246, 253, 231, 125] +__version__ = '0.6.0' + +logic_hash = [26, 76, 4, 144, 72, 105, 234, 233, 12, 184, 95, 94, 100, 13, 15, 174, + 186, 135, 130, 189, 246, 254, 123, 245, 85, 241, 101, 129, 70, 255, 55, 248, + 43, 146, 23, 179, 243, 208, 230, 176, 9, 88, 239, 226, 222, 203, 244, 183, + 205, 74, 44, 5, 122, 220, 206, 47, 221, 125, 138, 155, 98, 79, 238, 119, + 30, 24, 159, 39, 253, 27, 33, 218, 62, 82, 200, 28, 141, 191, 93, 22, + 192, 54, 227, 108, 48, 78, 242, 166, 60, 250, 75, 145, 49, 212, 41, 25, + 127, 89, 178, 157, 19, 158, 177, 231, 207, 66, 172, 17, 133, 61, 109, 86, + 57, 143, 142, 219, 148, 209, 181, 87, 163, 40, 81, 114, 240, 103, 31, 175, + 237, 185, 18, 173, 168, 45, 216, 106, 161, 16, 151, 139, 104, 134, 110, 21, + 32, 131, 118, 182, 215, 67, 3, 73, 171, 71, 150, 147, 223, 247, 42, 132, + 107, 149, 232, 153, 10, 201, 156, 225, 116, 194, 187, 204, 46, 165, 124, 92, + 7, 0, 251, 126, 162, 80, 90, 154, 252, 197, 188, 52, 137, 117, 198, 63, + 167, 38, 136, 96, 58, 11, 1, 115, 229, 224, 37, 112, 170, 59, 68, 196, + 36, 64, 91, 213, 14, 180, 190, 164, 8, 56, 214, 77, 202, 193, 97, 84, + 152, 83, 236, 211, 20, 217, 2, 228, 140, 69, 121, 111, 113, 128, 210, 51, + 53, 6, 235, 34, 102, 29, 120, 35, 50, 65, 160, 249, 99, 169, 199, 195] def main(args, seed=None): start = time.clock() # initialize the world - world = World(args.shuffle, args.logic, args.mode, args.difficulty, args.timer, args.progressive, args.goal, args.algorithm, not args.nodungeonitems, args.beatableonly, args.shuffleganon, args.quickswap, args.fastmenu, args.disablemusic, args.keysanity) + world = World(args.shuffle, args.logic, args.mode, args.difficulty, args.timer, args.progressive, args.goal, args.algorithm, not args.nodungeonitems, args.beatableonly, args.shuffleganon, args.quickswap, args.fastmenu, args.disablemusic, args.keysanity, args.custom, args.customitemarray) logger = logging.getLogger('') if seed is None: random.seed(None) @@ -92,9 +92,10 @@ def main(args, seed=None): elif args.algorithm == 'vt25': distribute_items_restrictive(world, 0) elif args.algorithm == 'vt26': - distribute_items_restrictive(world, random.randint(0, 15), shuffled_locations) + + distribute_items_restrictive(world, gt_filler(world), shuffled_locations) elif args.algorithm == 'balanced': - distribute_items_restrictive(world, random.randint(0, 15)) + distribute_items_restrictive(world, gt_filler(world)) logger.info('Calculating playthrough.') @@ -117,7 +118,7 @@ def main(args, seed=None): rom = JsonRom() else: rom = LocalRom(args.rom) - patch_rom(world, rom, bytearray(logic_hash), args.heartbeep, sprite) + patch_rom(world, rom, bytearray(logic_hash), args.heartbeep, args.heartcolor, sprite) if args.jsonout: print(json.dumps({'patch': rom.patches, 'spoiler': world.spoiler.to_json()})) else: @@ -131,9 +132,14 @@ def main(args, seed=None): return world +def gt_filler(world): + if world.goal == 'triforcehunt': + return random.randint(15, 50) + return random.randint(0, 15) + def copy_world(world): # ToDo: Not good yet - ret = World(world.shuffle, world.logic, world.mode, world.difficulty, world.timer, world.progressive, world.goal, world.algorithm, world.place_dungeon_items, world.check_beatable_only, world.shuffle_ganon, world.quickswap, world.fastmenu, world.disable_music, world.keysanity) + ret = World(world.shuffle, world.logic, world.mode, world.difficulty, world.timer, world.progressive, world.goal, world.algorithm, world.place_dungeon_items, world.check_beatable_only, world.shuffle_ganon, world.quickswap, world.fastmenu, world.disable_music, world.keysanity, world.custom, world.customitemarray) ret.required_medallions = list(world.required_medallions) ret.swamp_patch_required = world.swamp_patch_required ret.ganon_at_pyramid = world.ganon_at_pyramid @@ -146,6 +152,8 @@ def copy_world(world): ret.can_access_trock_eyebridge = world.can_access_trock_eyebridge ret.can_take_damage = world.can_take_damage ret.difficulty_requirements = world.difficulty_requirements + ret.fix_fake_world = world.fix_fake_world + ret.lamps_needed_for_dark_rooms = world.lamps_needed_for_dark_rooms create_regions(ret) create_dungeons(ret) @@ -153,6 +161,7 @@ def copy_world(world): for region in world.regions: copied_region = ret.get_region(region.name) copied_region.is_light_world = region.is_light_world + copied_region.is_dark_world = region.is_dark_world for entrance in region.entrances: ret.get_entrance(entrance.name).connect(copied_region) @@ -285,7 +294,8 @@ def get_path(state, region): old_world.spoiler.paths = {location.name : get_path(state, location.parent_region) for sphere in collection_spheres for location in sphere} if any(exit == 'Pyramid Fairy' for path in old_world.spoiler.paths.values() for (_, exit) in path): old_world.spoiler.paths['Big Bomb Shop'] = get_path(state, world.get_region('Big Bomb Shop')) - print(world.seed) + if any(exit == 'Swamp Palace Moat' for path in old_world.spoiler.paths.values() for (_, exit) in path) or 'Sunken Treasure' in old_world.required_locations: + old_world.spoiler.paths['Dam'] = get_path(state, world.get_region('Dam')) # we can finally output our playthrough old_world.spoiler.playthrough = OrderedDict([(str(i + 1), {str(location): str(location.item) for location in sphere}) for i, sphere in enumerate(collection_spheres)]) diff --git a/Plando.py b/Plando.py index 7d7419125..941a86069 100755 --- a/Plando.py +++ b/Plando.py @@ -33,7 +33,7 @@ def main(args): start_time = time.clock() # initialize the world - world = World('vanilla', 'noglitches', 'standard', 'normal', 'none', 'on', 'ganon', 'freshness', False, False, False, args.quickswap, args.fastmenu, args.disablemusic, False) + world = World('vanilla', 'noglitches', 'standard', 'normal', 'none', 'on', 'ganon', 'freshness', False, False, False, args.quickswap, args.fastmenu, args.disablemusic, False, False, None) logger = logging.getLogger('') hasher = hashlib.md5() @@ -84,7 +84,7 @@ def main(args): sprite = None rom = LocalRom(args.rom) - patch_rom(world, rom, logic_hash, args.heartbeep, sprite) + patch_rom(world, rom, logic_hash, args.heartbeep, args.heartcolor, sprite) for textname, texttype, text in text_patches: if texttype == 'text': @@ -219,6 +219,8 @@ def start(): parser.add_argument('--disablemusic', help='Disables game music.', action='store_true') parser.add_argument('--heartbeep', default='normal', const='normal', nargs='?', choices=['normal', 'half', 'quarter', 'off'], help='Select the rate at which the heart beep sound is played at low health.') + parser.add_argument('--heartcolor', default='red', const='red', nargs='?', choices=['red', 'blue', 'green', 'yellow'], + help='Select the color of Link\'s heart meter. (default: %(default)s)') parser.add_argument('--sprite', help='Path to a sprite sheet to use for Link. Needs to be in binary format and have a length of 0x7000 (28672) bytes.') parser.add_argument('--plando', help='Filled out template to use for setting up the rom.') args = parser.parse_args() diff --git a/README.md b/README.md index e5455b9b9..e22f03d41 100644 --- a/README.md +++ b/README.md @@ -71,25 +71,20 @@ Ganon cannot be damaged until all dungeons (including Hyrule Castle Tower and Ga ### Triforce Hunt Triforce Pieces are added to the item pool, and some number of them being found will trigger game completion. Ganon cannot be damaged. -Counts are based on the difficulty setting as well as the required number. -Difficulty Need/Total -Easy 10/30 -Normal 20/30 -Hard 30/40 -Expert 40/40 -Insane 50/50 +By default 30 Triforce Pieces are placed while 20 are needed to beat the game. Both values can be adjusted with the custom item pool feature. ### Crystals Standard game completion requiring you to collect the 7 crystals and then beat Ganon. -This is only noticeably different if the --shuffleganon option is enabled. +This is only noticeably different if the the Ganon shuffle option is enabled. ## Game Difficulty ### Easy -This setting doubles the number of swords, shields, armors, and bottles in the item pool. +This setting doubles the number of swords, shields, armors, bottles, and silver arrows in the item pool. +This setting will also triple the number of Lamps available, and all will be obtainable before dark rooms. Within dungeons, the number of items found will be displayed on screen if there is no timer. ### Normal @@ -204,32 +199,38 @@ staleness, decreasing the likelihood of receiving a progress item. ## Entrance Shuffle Algorithm -Determines how locations are shuffled. +Determines how locations are shuffled. In all modes other than Insanity and the similar legacy versions, holes shuffle as a pair with the connecting cave and the front +two sections of Skull Woods remain confined to the general Skull Woods area. Link's house is never shuffled as a design decision. -### Default +### Vanilla -Is the Vanilla layout. +Places entrances in the same locations they were in the original The Legend of Zelda: A Link to the Past. ### Simple -Shuffles Dungeon Entrances/Exits between each other and keeps all 4-entrance dungeons confined to one location. Outside Light World Death Mountain, interiors are shuffled but still connect the same points -on the overworld. On Death Mountain, entrances are connected more freely. +Shuffles dungeon entrances between each other and keeps all 4-entrance dungeons confined to one location such that dungeons will one to one swap with each other. +Other than on Light World Death Mountain, interiors are shuffled but still connect the same points on the overworld. On Death Mountain, entrances are connected more freely. -### Full +### Restricted -Mixes cave and dungeon entrances freely. +Uses dungeon shuffling from Simple but freely connects remaining entrances. Caves and dungeons with multiple entrances will be confined to one world. -### Restricted +### Full -Uses Dungeons shuffling from Simple but freely connects remaining entrances. +Mixes cave and dungeon entrances freely. Caves and dungeons with multiple entrances will be confined to one world. -### Madness +### Crossed -Decouples entrances and exits from each other and shuffles them freely, only ensuring that no fake Light/Dark World happens and all locations are reachable. +Mixes cave and dungeon entrances freely, but now connector caves and dungeons can link Light World and Dark World. ### Insanity -Madness, but without the light/dark world restrictions. Gives access to Mirror and Moon Pearl from the start. +Decouples entrances and exits from each other and shuffles them freely. Caves that were single entrance in vanilla still can only exit to the same location from which they were entered. + +### Legacy Variants + +Similar to the base shuffles, but the distinction between single entrance and multi-entrance caves from older versions of the randomizer is maintained. +Madness_Legacy is the more similar to the modern Insanity. Insanity_Legacy has fake worlds and guaranteed Moon Pearl and Magic Mirror for a very different experience. ### Dungeon Variants @@ -239,6 +240,10 @@ The dungeon variants only mix up dungeons and keep the rest of the overworld van Select frequency of beeps when on low health. Can completely disable them. +## Heart Color + +Select the color of Link's hearts. + ## Menu Speed A setting that lets the player set the rate at which the menu opens and closes. @@ -275,7 +280,13 @@ If set, will only ensure the goal can be achieved, but not necessarily that all ## Include Ganon's Tower and Pyramid Hole in Shuffle pool -If set, Ganon's Tower is included in the dungeon shuffle pool and the Pyramid Hole/Exit pair is included in the Holes shuffle pool. Ganon can not be defeated until the primary goal is fulfilled. This setting removes any bias against Ganon's Tower that some algorithms may have. +If set, Ganon's Tower is included in the dungeon shuffle pool and the Pyramid Hole/Exit pair is included in the Holes shuffle pool. Ganon can not be defeated until the primary goal is fulfilled. +This setting removes any bias against Ganon's Tower that some algorithms may have. + +## Use Custom Item Pool + +If set, the item pool normally associated with your difficulty setting is replaced by the item pool specified in the custom tab. This feature is only supported when the randomizer is run +via the GUI; attempting to set this via the command line does nothing. ## Seed @@ -422,10 +433,10 @@ Use to select a different sprite sheet to use for Link. Path to a binary file of Enables the "Only Ensure Seed Beatable" option (default: False) ``` ---shuffleganon +--no-shuffleganon ``` -Enables the "Include Ganon's Tower and Pyramid Hole in Shuffle pool" option. (default: false) +Disables the "Include Ganon's Tower and Pyramid Hole in Shuffle pool" option. (default: Enabled) ``` --suppress_rom diff --git a/Regions.py b/Regions.py index 88df41a7a..ddd4928e5 100644 --- a/Regions.py +++ b/Regions.py @@ -1,280 +1,311 @@ import collections -from BaseClasses import Region, Location, Entrance +from BaseClasses import Region, Location, Entrance, RegionType def create_regions(world): world.regions = [ - create_region('Light World', ['Mushroom', 'Bottle Merchant', 'Flute Spot', 'Sunken Treasure', 'Purple Chest'], - ["Blinds Hideout", "Hyrule Castle Secret Entrance Drop", 'Zoras River', 'Kings Grave', 'Dam', - 'Links House', 'Tavern North', 'Chicken House', 'Aginahs Cave', 'Sahasrahlas Hut', 'Kakariko Well Drop', 'Kakariko Well Cave', - 'Blacksmiths Hut', 'Bat Cave Drop Ledge', 'Bat Cave Cave', 'Sick Kids House', 'Hobo Bridge', 'Lost Woods Hideout Drop', 'Lost Woods Hideout Stump', - 'Lumberjack Tree Tree', 'Lumberjack Tree Cave', 'Mini Moldorm Cave', 'Ice Rod Cave', 'Lake Hylia Central Island Pier', - 'Bonk Rock Cave', 'Library', 'Potion Shop', 'Two Brothers House (East)', 'Desert Palace Stairs', 'Eastern Palace', 'Master Sword Meadow', - 'Sanctuary', 'Sanctuary Grave', 'Old Man Cave (West)', 'Flute Spot 1', 'Dark Desert Teleporter', 'East Hyrule Teleporter', 'South Hyrule Teleporter', 'Kakariko Teleporter', - 'Elder House (East)', 'Elder House (West)', 'North Fairy Cave', 'North Fairy Cave Drop', 'Lost Woods Gamble', 'Snitch Lady (East)', 'Snitch Lady (West)', 'Tavern (Front)', - 'Bush Covered House', 'Light World Bomb Hut', 'Kakariko Shop', 'Long Fairy Cave', 'Good Bee Cave', '20 Rupee Cave', 'Cave Shop (Lake Hylia)', 'Waterfall of Wishing', 'Hyrule Castle Main Gate', - 'Bonk Fairy (Light)', '50 Rupee Cave', 'Fortune Teller (Light)', 'Lake Hylia Fairy', 'Swamp Fairy', 'Desert Fairy', 'Lumberjack House', 'Lake Hylia Fortune Teller', 'Kakariko Gamble Game', 'Top of Pyramid']), - create_region('Lake Hylia Central Island', None, ['Capacity Upgrade', 'Lake Hylia Central Island Teleporter']), - create_region('Blinds Hideout', ["Blind\'s Hideout - Top", - "Blind\'s Hideout - Left", - "Blind\'s Hideout - Right", - "Blind\'s Hideout - Far Left", - "Blind\'s Hideout - Far Right"]), - create_region('Hyrule Castle Secret Entrance', ['Link\'s Uncle', 'Secret Passage'], ['Hyrule Castle Secret Entrance Exit']), - create_region('Zoras River', ['King Zora', 'Zora\'s Ledge']), - create_region('Waterfall of Wishing', ['Waterfall Fairy - Left', 'Waterfall Fairy - Right']), - create_region('Kings Grave', ['King\'s Tomb']), - create_region('North Fairy Cave', None, ['North Fairy Cave Exit']), - create_region('Dam', ['Floodgate Chest']), - create_region('Links House', ['Link\'s House'], ['Links House Exit']), - create_region('Tavern', ['Kakariko Tavern']), - create_region('Elder House', None, ['Elder House Exit (East)', 'Elder House Exit (West)']), - create_region('Snitch Lady (East)'), - create_region('Snitch Lady (West)'), - create_region('Bush Covered House'), - create_region('Tavern (Front)'), - create_region('Light World Bomb Hut'), - create_region('Kakariko Shop'), - create_region('Fortune Teller (Light)'), - create_region('Lumberjack House'), - create_region('Bonk Fairy'), # near links house both worlds - create_region('Healer Fairy'), # 8 entrances? - create_region('Chicken House', ['Chicken House']), - create_region('Aginahs Cave', ['Aginah\'s Cave']), - create_region('Sahasrahlas Hut', ['Sahasrahla\'s Hut - Left', 'Sahasrahla\'s Hut - Middle', 'Sahasrahla\'s Hut - Right', 'Sahasrahla']), - create_region('Kakariko Well (top)', ['Kakariko Well - Top', 'Kakariko Well - Left', 'Kakariko Well - Middle', - 'Kakariko Well - Right', 'Kakariko Well - Bottom'], ['Kakariko Well (top to bottom)']), - create_region('Kakariko Well (bottom)', None, ['Kakariko Well Exit']), - create_region('Blacksmiths Hut', ['Blacksmith']), - create_region('Bat Cave Drop Ledge', None, ['Bat Cave Drop']), - create_region('Bat Cave (right)', ['Magic Bat'], ['Bat Cave Door']), - create_region('Bat Cave (left)', None, ['Bat Cave Exit']), - create_region('Sick Kids House', ['Sick Kid']), - create_region('Hobo Bridge', ['Hobo']), - create_region('Lost Woods Hideout (top)', ['Lost Woods Hideout'], ['Lost Woods Hideout (top to bottom)']), - create_region('Lost Woods Hideout (bottom)', None, ['Lost Woods Hideout Exit']), - create_region('Lumberjack Tree (top)', ['Lumberjack Tree'], ['Lumberjack Tree (top to bottom)']), - create_region('Lumberjack Tree (bottom)', None, ['Lumberjack Tree Exit']), - create_region('Cave 45 Ledge', None, ['Cave 45']), - create_region('Cave 45', ['Cave 45']), - create_region('Graveyard Ledge', None, ['Graveyard Cave']), - create_region('Graveyard Cave', ['Graveyard Cave']), - create_region('Checkerboard Cave', ['Checkerboard Cave']), - create_region('Long Fairy Cave'), - create_region('Mini Moldorm Cave', ['Mini Moldorm Cave - Far Left', 'Mini Moldorm Cave - Left', 'Mini Moldorm Cave - Right', - 'Mini Moldorm Cave - Far Right', 'Mini Moldorm Cave - Generous Guy']), - create_region('Ice Rod Cave', ['Ice Rod Cave']), - create_region('Good Bee Cave'), - create_region('20 Rupee Cave'), - create_region('Cave Shop'), # two connectors in vanilla - create_region('Bonk Rock Cave', ['Bonk Rock Cave']), - create_region('Library', ['Library']), - create_region('Kakariko Gamble Game'), - create_region('Potion Shop', ['Potion Shop']), - create_region('Lake Hylia Island', ['Lake Hylia Island']), - create_region('Capacity Upgrade'), - create_region('Two Brothers House', None, ['Two Brothers House Exit (East)', 'Two Brothers House Exit (West)']), - create_region('Maze Race Ledge', ['Maze Race'], ['Two Brothers House (West)']), - create_region('50 Rupee Cave'), - create_region('Desert Ledge', ['Desert Ledge'], ['Desert Palace Entrance (North) Rocks', 'Desert Palace Entrance (West)']), - create_region('Desert Ledge (Northeast)', None, ['Checkerboard Cave']), - create_region('Desert Palace Stairs', None, ['Desert Palace Entrance (South)']), - create_region('Desert Palace Lone Stairs', None, ['Desert Palace Stairs Drop', 'Desert Palace Entrance (East)']), - create_region('Desert Palace Entrance (North) Spot', None, ['Desert Palace Entrance (North)', 'Desert Ledge Return Rocks']), - create_region('Desert Palace Main', ['Desert Palace - Big Chest', 'Desert Palace - Torch', 'Desert Palace - Map Chest'], - ['Desert Palace Exit (South)', 'Desert Palace Exit (West)', 'Desert Palace Exit (East)', 'Desert Palace East Wing']), - create_region('Desert Palace East', ['Desert Palace - Compass Chest', 'Desert Palace - Big Key Chest']), - create_region('Desert Palace North', ['Desert Palace - Lanmolas', 'Desert Palace - Prize'], ['Desert Palace Exit (North)']), - create_region('Eastern Palace', ['Eastern Palace - Compass Chest', 'Eastern Palace - Big Chest', 'Eastern Palace - Cannonball Chest', - 'Eastern Palace - Big Key Chest', 'Eastern Palace - Map Chest', 'Eastern Palace - Armos Knights', 'Eastern Palace - Prize'], ['Eastern Palace Exit']), - create_region('Master Sword Meadow', ['Master Sword Pedestal']), - create_region('Lost Woods Gamble'), - create_region('Hyrule Castle Courtyard', None, ['Hyrule Castle Secret Entrance Stairs', 'Hyrule Castle Entrance (South)']), - create_region('Hyrule Castle Ledge', None, ['Hyrule Castle Entrance (East)', 'Hyrule Castle Entrance (West)', 'Agahnims Tower', 'Hyrule Castle Ledge Courtyard Drop']), - create_region('Hyrule Castle', ['Hyrule Castle - Boomerang Chest', 'Hyrule Castle - Map Chest', 'Hyrule Castle - Zelda\'s Chest'], - ['Hyrule Castle Exit (East)', 'Hyrule Castle Exit (West)', 'Hyrule Castle Exit (South)', 'Throne Room']), - create_region('Sewer Drop', None, ['Sewer Drop']), # This exists only to be referenced for access checks - create_region('Sewers (Dark)', ['Sewers - Dark Cross'], ['Sewers Door']), - create_region('Sewers', ['Sewers - Secret Room - Left', 'Sewers - Secret Room - Middle', - 'Sewers - Secret Room - Right'], ['Sanctuary Push Door', 'Sewers Back Door']), - create_region('Sanctuary', ['Sanctuary'], ['Sanctuary Exit']), - create_region('Agahnims Tower', ['Castle Tower - Room 03', 'Castle Tower - Dark Maze'], ['Agahnim 1', 'Agahnims Tower Exit']), - create_region('Agahnim 1', ['Agahnim 1'], None), - create_region('Old Man Cave', ['Old Man'], ['Old Man Cave Exit (East)', 'Old Man Cave Exit (West)']), - create_region('Old Man House', None, ['Old Man House Exit (Bottom)', 'Old Man House Front to Back']), - create_region('Old Man House Back', None, ['Old Man House Exit (Top)', 'Old Man House Back to Front']), - create_region('Death Mountain', None, ['Old Man Cave (East)', 'Old Man House (Bottom)', 'Old Man House (Top)', 'Death Mountain Return Cave (East)', 'Spectacle Rock Cave', 'Spectacle Rock Cave Peak', 'Spectacle Rock Cave (Bottom)', 'Broken Bridge (West)', 'Death Mountain Teleporter']), - create_region('Death Mountain Return Cave', None, ['Death Mountain Return Cave Exit (West)', 'Death Mountain Return Cave Exit (East)']), - create_region('Death Mountain Return Ledge', None, ['Death Mountain Return Ledge Drop', 'Death Mountain Return Cave (West)']), - create_region('Spectacle Rock Cave (Top)', ['Spectacle Rock Cave'], ['Spectacle Rock Cave Drop', 'Spectacle Rock Cave Exit (Top)']), - create_region('Spectacle Rock Cave (Bottom)', None, ['Spectacle Rock Cave Exit']), - create_region('Spectacle Rock Cave (Peak)', None, ['Spectacle Rock Cave Peak Drop', 'Spectacle Rock Cave Exit (Peak)']), - create_region('East Death Mountain (Bottom)', None, ['Broken Bridge (East)', 'Paradox Cave (Bottom)', 'Paradox Cave (Middle)', 'East Death Mountain Teleporter', 'Hookshot Fairy', 'Fairy Ascension Rocks', 'Spiral Cave (Bottom)']), - create_region('Hookshot Fairy'), - create_region('Paradox Cave Front', None, ['Paradox Cave Push Block Reverse', 'Paradox Cave Exit (Bottom)']), - create_region('Paradox Cave Chest Area', ['Paradox Cave Lower - Far Left', - 'Paradox Cave Lower - Left', - 'Paradox Cave Lower - Right', - 'Paradox Cave Lower - Far Right', - 'Paradox Cave Lower - Middle', - 'Paradox Cave Upper - Left', - 'Paradox Cave Upper - Right'], - ['Paradox Cave Push Block', 'Paradox Cave Bomb Jump']), - create_region('Paradox Cave', None, ['Paradox Cave Exit (Middle)', 'Paradox Cave Exit (Top)', 'Paradox Cave Drop']), - create_region('East Death Mountain (Top)', None, ['Paradox Cave (Top)', 'Death Mountain (Top)', 'Spiral Cave Ledge Access', 'East Death Mountain Drop', 'Turtle Rock Teleporter', 'Fairy Ascension Ledge']), - create_region('Spiral Cave Ledge', None, ['Spiral Cave', 'Spiral Cave Ledge Drop']), - create_region('Spiral Cave (Top)', ['Spiral Cave'], ['Spiral Cave (top to bottom)', 'Spiral Cave Exit (Top)']), - create_region('Spiral Cave (Bottom)', None, ['Spiral Cave Exit']), - create_region('Fairy Ascension Plateau', None, ['Fairy Ascension Drop', 'Fairy Ascension Cave (Bottom)']), - create_region('Fairy Ascension Cave', None, ['Fairy Ascension Cave Exit (Top)', 'Fairy Ascension Cave Exit (Bottom)']), - create_region('Fairy Ascension Ledge', None, ['Fairy Ascension Ledge Drop', 'Fairy Ascension Cave (Top)']), - create_region('Death Mountain (Top)', ['Ether Tablet'], ['East Death Mountain (Top)', 'Tower of Hera', 'Death Mountain Drop']), - create_region('Spectacle Rock', ['Spectacle Rock'], ['Spectacle Rock Drop']), - create_region('Tower of Hera (Bottom)', ['Tower of Hera - Basement Cage', 'Tower of Hera - Map Chest'], ['Tower of Hera Small Key Door', 'Tower of Hera Big Key Door', 'Tower of Hera Exit']), - create_region('Tower of Hera (Basement)', ['Tower of Hera - Big Key Chest']), - create_region('Tower of Hera (Top)', ['Tower of Hera - Compass Chest', 'Tower of Hera - Big Chest', 'Tower of Hera - Moldorm', 'Tower of Hera - Prize']), + create_lw_region('Light World', ['Mushroom', 'Bottle Merchant', 'Flute Spot', 'Sunken Treasure', 'Purple Chest'], + ["Blinds Hideout", "Hyrule Castle Secret Entrance Drop", 'Zoras River', 'Kings Grave Outer Rocks', 'Dam', + 'Links House', 'Tavern North', 'Chicken House', 'Aginahs Cave', 'Sahasrahlas Hut', 'Kakariko Well Drop', 'Kakariko Well Cave', + 'Blacksmiths Hut', 'Bat Cave Drop Ledge', 'Bat Cave Cave', 'Sick Kids House', 'Hobo Bridge', 'Lost Woods Hideout Drop', 'Lost Woods Hideout Stump', + 'Lumberjack Tree Tree', 'Lumberjack Tree Cave', 'Mini Moldorm Cave', 'Ice Rod Cave', 'Lake Hylia Central Island Pier', + 'Bonk Rock Cave', 'Library', 'Potion Shop', 'Two Brothers House (East)', 'Desert Palace Stairs', 'Eastern Palace', 'Master Sword Meadow', + 'Sanctuary', 'Sanctuary Grave', 'Death Mountain Entrance Rock', 'Flute Spot 1', 'Dark Desert Teleporter', 'East Hyrule Teleporter', 'South Hyrule Teleporter', 'Kakariko Teleporter', + 'Elder House (East)', 'Elder House (West)', 'North Fairy Cave', 'North Fairy Cave Drop', 'Lost Woods Gamble', 'Snitch Lady (East)', 'Snitch Lady (West)', 'Tavern (Front)', + 'Bush Covered House', 'Light World Bomb Hut', 'Kakariko Shop', 'Long Fairy Cave', 'Good Bee Cave', '20 Rupee Cave', 'Cave Shop (Lake Hylia)', 'Waterfall of Wishing', 'Hyrule Castle Main Gate', + 'Bonk Fairy (Light)', '50 Rupee Cave', 'Fortune Teller (Light)', 'Lake Hylia Fairy', 'Light Hype Fairy', 'Desert Fairy', 'Lumberjack House', 'Lake Hylia Fortune Teller', 'Kakariko Gamble Game', 'Top of Pyramid']), + create_lw_region('Death Mountain Entrance', None, ['Old Man Cave (West)', 'Death Mountain Entrance Drop']), + create_lw_region('Lake Hylia Central Island', None, ['Capacity Upgrade', 'Lake Hylia Central Island Teleporter']), + create_cave_region('Blinds Hideout', ["Blind\'s Hideout - Top", + "Blind\'s Hideout - Left", + "Blind\'s Hideout - Right", + "Blind\'s Hideout - Far Left", + "Blind\'s Hideout - Far Right"]), + create_cave_region('Hyrule Castle Secret Entrance', ['Link\'s Uncle', 'Secret Passage'], ['Hyrule Castle Secret Entrance Exit']), + create_lw_region('Zoras River', ['King Zora', 'Zora\'s Ledge']), + create_cave_region('Waterfall of Wishing', ['Waterfall Fairy - Left', 'Waterfall Fairy - Right']), + create_lw_region('Kings Grave Area', None, ['Kings Grave', 'Kings Grave Inner Rocks']), + create_cave_region('Kings Grave', ['King\'s Tomb']), + create_cave_region('North Fairy Cave', None, ['North Fairy Cave Exit']), + create_cave_region('Dam', ['Floodgate Chest']), + create_cave_region('Links House', ['Link\'s House'], ['Links House Exit']), + create_cave_region('Chris Houlihan Room', None, ['Chris Houlihan Room Exit']), + create_cave_region('Tavern', ['Kakariko Tavern']), + create_cave_region('Elder House', None, ['Elder House Exit (East)', 'Elder House Exit (West)']), + create_cave_region('Snitch Lady (East)'), + create_cave_region('Snitch Lady (West)'), + create_cave_region('Bush Covered House'), + create_cave_region('Tavern (Front)'), + create_cave_region('Light World Bomb Hut'), + create_cave_region('Kakariko Shop'), + create_cave_region('Fortune Teller (Light)'), + create_cave_region('Lake Hylia Fortune Teller'), + create_cave_region('Lumberjack House'), + create_cave_region('Bonk Fairy (Light)'), + create_cave_region('Bonk Fairy (Dark)'), + create_cave_region('Lake Hylia Healer Fairy'), + create_cave_region('Swamp Healer Fairy'), + create_cave_region('Desert Healer Fairy'), + create_cave_region('Dark Lake Hylia Healer Fairy'), + create_cave_region('Dark Lake Hylia Ledge Healer Fairy'), + create_cave_region('Dark Desert Healer Fairy'), + create_cave_region('Dark Death Mountain Healer Fairy'), + create_cave_region('Chicken House', ['Chicken House']), + create_cave_region('Aginahs Cave', ['Aginah\'s Cave']), + create_cave_region('Sahasrahlas Hut', ['Sahasrahla\'s Hut - Left', 'Sahasrahla\'s Hut - Middle', 'Sahasrahla\'s Hut - Right', 'Sahasrahla']), + create_cave_region('Kakariko Well (top)', ['Kakariko Well - Top', 'Kakariko Well - Left', 'Kakariko Well - Middle', + 'Kakariko Well - Right', 'Kakariko Well - Bottom'], ['Kakariko Well (top to bottom)']), + create_cave_region('Kakariko Well (bottom)', None, ['Kakariko Well Exit']), + create_cave_region('Blacksmiths Hut', ['Blacksmith']), + create_lw_region('Bat Cave Drop Ledge', None, ['Bat Cave Drop']), + create_cave_region('Bat Cave (right)', ['Magic Bat'], ['Bat Cave Door']), + create_cave_region('Bat Cave (left)', None, ['Bat Cave Exit']), + create_cave_region('Sick Kids House', ['Sick Kid']), + create_lw_region('Hobo Bridge', ['Hobo']), + create_cave_region('Lost Woods Hideout (top)', ['Lost Woods Hideout'], ['Lost Woods Hideout (top to bottom)']), + create_cave_region('Lost Woods Hideout (bottom)', None, ['Lost Woods Hideout Exit']), + create_cave_region('Lumberjack Tree (top)', ['Lumberjack Tree'], ['Lumberjack Tree (top to bottom)']), + create_cave_region('Lumberjack Tree (bottom)', None, ['Lumberjack Tree Exit']), + create_lw_region('Cave 45 Ledge', None, ['Cave 45']), + create_cave_region('Cave 45', ['Cave 45']), + create_lw_region('Graveyard Ledge', None, ['Graveyard Cave']), + create_cave_region('Graveyard Cave', ['Graveyard Cave']), + create_cave_region('Checkerboard Cave', ['Checkerboard Cave']), + create_cave_region('Long Fairy Cave'), + create_cave_region('Mini Moldorm Cave', ['Mini Moldorm Cave - Far Left', 'Mini Moldorm Cave - Left', 'Mini Moldorm Cave - Right', + 'Mini Moldorm Cave - Far Right', 'Mini Moldorm Cave - Generous Guy']), + create_cave_region('Ice Rod Cave', ['Ice Rod Cave']), + create_cave_region('Good Bee Cave'), + create_cave_region('20 Rupee Cave'), + create_cave_region('Cave Shop (Lake Hylia)'), + create_cave_region('Cave Shop (Dark Death Mountain)'), + create_cave_region('Bonk Rock Cave', ['Bonk Rock Cave']), + create_cave_region('Library', ['Library']), + create_cave_region('Kakariko Gamble Game'), + create_cave_region('Potion Shop', ['Potion Shop']), + create_lw_region('Lake Hylia Island', ['Lake Hylia Island']), + create_cave_region('Capacity Upgrade'), + create_cave_region('Two Brothers House', None, ['Two Brothers House Exit (East)', 'Two Brothers House Exit (West)']), + create_lw_region('Maze Race Ledge', ['Maze Race'], ['Two Brothers House (West)']), + create_cave_region('50 Rupee Cave'), + create_lw_region('Desert Ledge', ['Desert Ledge'], ['Desert Palace Entrance (North) Rocks', 'Desert Palace Entrance (West)']), + create_lw_region('Desert Ledge (Northeast)', None, ['Checkerboard Cave']), + create_lw_region('Desert Palace Stairs', None, ['Desert Palace Entrance (South)']), + create_lw_region('Desert Palace Lone Stairs', None, ['Desert Palace Stairs Drop', 'Desert Palace Entrance (East)']), + create_lw_region('Desert Palace Entrance (North) Spot', None, ['Desert Palace Entrance (North)', 'Desert Ledge Return Rocks']), + create_dungeon_region('Desert Palace Main (Outer)', ['Desert Palace - Big Chest', 'Desert Palace - Torch', 'Desert Palace - Map Chest'], + ['Desert Palace Pots (Outer)', 'Desert Palace Exit (West)', 'Desert Palace Exit (East)', 'Desert Palace East Wing']), + create_dungeon_region('Desert Palace Main (Inner)', None, ['Desert Palace Exit (South)', 'Desert Palace Pots (Inner)']), + create_dungeon_region('Desert Palace East', ['Desert Palace - Compass Chest', 'Desert Palace - Big Key Chest']), + create_dungeon_region('Desert Palace North', ['Desert Palace - Lanmolas', 'Desert Palace - Prize'], ['Desert Palace Exit (North)']), + create_dungeon_region('Eastern Palace', ['Eastern Palace - Compass Chest', 'Eastern Palace - Big Chest', 'Eastern Palace - Cannonball Chest', + 'Eastern Palace - Big Key Chest', 'Eastern Palace - Map Chest', 'Eastern Palace - Armos Knights', 'Eastern Palace - Prize'], ['Eastern Palace Exit']), + create_lw_region('Master Sword Meadow', ['Master Sword Pedestal']), + create_cave_region('Lost Woods Gamble'), + create_lw_region('Hyrule Castle Courtyard', None, ['Hyrule Castle Secret Entrance Stairs', 'Hyrule Castle Entrance (South)']), + create_lw_region('Hyrule Castle Ledge', None, ['Hyrule Castle Entrance (East)', 'Hyrule Castle Entrance (West)', 'Agahnims Tower', 'Hyrule Castle Ledge Courtyard Drop']), + create_dungeon_region('Hyrule Castle', ['Hyrule Castle - Boomerang Chest', 'Hyrule Castle - Map Chest', 'Hyrule Castle - Zelda\'s Chest'], + ['Hyrule Castle Exit (East)', 'Hyrule Castle Exit (West)', 'Hyrule Castle Exit (South)', 'Throne Room']), + create_dungeon_region('Sewer Drop', None, ['Sewer Drop']), # This exists only to be referenced for access checks + create_dungeon_region('Sewers (Dark)', ['Sewers - Dark Cross'], ['Sewers Door']), + create_dungeon_region('Sewers', ['Sewers - Secret Room - Left', 'Sewers - Secret Room - Middle', + 'Sewers - Secret Room - Right'], ['Sanctuary Push Door', 'Sewers Back Door']), + create_dungeon_region('Sanctuary', ['Sanctuary'], ['Sanctuary Exit']), + create_dungeon_region('Agahnims Tower', ['Castle Tower - Room 03', 'Castle Tower - Dark Maze'], ['Agahnim 1', 'Agahnims Tower Exit']), + create_dungeon_region('Agahnim 1', ['Agahnim 1'], None), + create_cave_region('Old Man Cave', ['Old Man'], ['Old Man Cave Exit (East)', 'Old Man Cave Exit (West)']), + create_cave_region('Old Man House', None, ['Old Man House Exit (Bottom)', 'Old Man House Front to Back']), + create_cave_region('Old Man House Back', None, ['Old Man House Exit (Top)', 'Old Man House Back to Front']), + create_lw_region('Death Mountain', None, ['Old Man Cave (East)', 'Old Man House (Bottom)', 'Old Man House (Top)', 'Death Mountain Return Cave (East)', 'Spectacle Rock Cave', 'Spectacle Rock Cave Peak', 'Spectacle Rock Cave (Bottom)', 'Broken Bridge (West)', 'Death Mountain Teleporter']), + create_cave_region('Death Mountain Return Cave', None, ['Death Mountain Return Cave Exit (West)', 'Death Mountain Return Cave Exit (East)']), + create_lw_region('Death Mountain Return Ledge', None, ['Death Mountain Return Ledge Drop', 'Death Mountain Return Cave (West)']), + create_cave_region('Spectacle Rock Cave (Top)', ['Spectacle Rock Cave'], ['Spectacle Rock Cave Drop', 'Spectacle Rock Cave Exit (Top)']), + create_cave_region('Spectacle Rock Cave (Bottom)', None, ['Spectacle Rock Cave Exit']), + create_cave_region('Spectacle Rock Cave (Peak)', None, ['Spectacle Rock Cave Peak Drop', 'Spectacle Rock Cave Exit (Peak)']), + create_lw_region('East Death Mountain (Bottom)', None, ['Broken Bridge (East)', 'Paradox Cave (Bottom)', 'Paradox Cave (Middle)', 'East Death Mountain Teleporter', 'Hookshot Fairy', 'Fairy Ascension Rocks', 'Spiral Cave (Bottom)']), + create_cave_region('Hookshot Fairy'), + create_cave_region('Paradox Cave Front', None, ['Paradox Cave Push Block Reverse', 'Paradox Cave Exit (Bottom)']), + create_cave_region('Paradox Cave Chest Area', ['Paradox Cave Lower - Far Left', + 'Paradox Cave Lower - Left', + 'Paradox Cave Lower - Right', + 'Paradox Cave Lower - Far Right', + 'Paradox Cave Lower - Middle', + 'Paradox Cave Upper - Left', + 'Paradox Cave Upper - Right'], + ['Paradox Cave Push Block', 'Paradox Cave Bomb Jump']), + create_cave_region('Paradox Cave', None, ['Paradox Cave Exit (Middle)', 'Paradox Cave Exit (Top)', 'Paradox Cave Drop']), + create_lw_region('East Death Mountain (Top)', None, ['Paradox Cave (Top)', 'Death Mountain (Top)', 'Spiral Cave Ledge Access', 'East Death Mountain Drop', 'Turtle Rock Teleporter', 'Fairy Ascension Ledge']), + create_lw_region('Spiral Cave Ledge', None, ['Spiral Cave', 'Spiral Cave Ledge Drop']), + create_cave_region('Spiral Cave (Top)', ['Spiral Cave'], ['Spiral Cave (top to bottom)', 'Spiral Cave Exit (Top)']), + create_cave_region('Spiral Cave (Bottom)', None, ['Spiral Cave Exit']), + create_lw_region('Fairy Ascension Plateau', None, ['Fairy Ascension Drop', 'Fairy Ascension Cave (Bottom)']), + create_cave_region('Fairy Ascension Cave', None, ['Fairy Ascension Cave Exit (Top)', 'Fairy Ascension Cave Exit (Bottom)']), + create_lw_region('Fairy Ascension Ledge', None, ['Fairy Ascension Ledge Drop', 'Fairy Ascension Cave (Top)']), + create_lw_region('Death Mountain (Top)', ['Ether Tablet'], ['East Death Mountain (Top)', 'Tower of Hera', 'Death Mountain Drop']), + create_lw_region('Spectacle Rock', ['Spectacle Rock'], ['Spectacle Rock Drop']), + create_dungeon_region('Tower of Hera (Bottom)', ['Tower of Hera - Basement Cage', 'Tower of Hera - Map Chest'], ['Tower of Hera Small Key Door', 'Tower of Hera Big Key Door', 'Tower of Hera Exit']), + create_dungeon_region('Tower of Hera (Basement)', ['Tower of Hera - Big Key Chest']), + create_dungeon_region('Tower of Hera (Top)', ['Tower of Hera - Compass Chest', 'Tower of Hera - Big Chest', 'Tower of Hera - Moldorm', 'Tower of Hera - Prize']), - create_region('East Dark World', ['Pyramid', 'Catfish'], ['Pyramid Fairy', 'South Dark World Bridge', 'West Dark World Gap', 'Palace of Darkness', 'Dark Lake Hylia Drop (East)', 'Dark Lake Hylia Teleporter', - 'Hyrule Castle Ledge Mirror Spot', 'Dark Lake Hylia Fairy', 'Palace of Darkness Hint', 'East Dark World Hint', 'Dark World Potion Shop', 'Pyramid Hole']), - create_region('Palace of Darkness Hint'), - create_region('East Dark World Hint'), - create_region('South Dark World', ['Stumpy', 'Digging Game', 'Bombos Tablet'], ['Dark Lake Hylia Drop (South)', 'Hype Cave', 'Swamp Palace', 'Village of Outcasts Heavy Rock', - 'Maze Race Mirror Spot', 'Cave 45 Mirror Spot', 'East Dark World Bridge', 'Big Bomb Shop', 'Archery Game', 'Bonk Fairy (Dark)', 'Dark Lake Hylia Shop']), - create_region('Big Bomb Shop'), - create_region('Archery Game'), - create_region('Dark Lake Hylia', None, ['Lake Hylia Island Mirror Spot', 'East Dark World Pier', 'Dark Lake Hylia Ledge']), - create_region('Dark Lake Hylia Central Island', None, ['Ice Palace', 'Lake Hylia Central Island Mirror Spot']), - create_region('Dark Lake Hylia Ledge', None, ['Dark Lake Hylia Ledge Drop', 'Dark Lake Hylia Ledge Fairy', 'Dark Lake Hylia Ledge Hint', 'Dark Lake Hylia Ledge Spike Cave']), - create_region('Dark Lake Hylia Ledge Hint'), - create_region('Dark Lake Hylia Ledge Spike Cave'), - create_region('Hype Cave', ['Hype Cave - Top', 'Hype Cave - Middle Right', 'Hype Cave - Middle Left', - 'Hype Cave - Bottom', 'Hype Cave - Generous Guy']), - create_region('West Dark World', None, ['Village of Outcasts Drop', 'East Dark World River Pier', 'Brewery', 'C-Shaped House', 'Chest Game', 'Thieves Town', 'Graveyard Ledge Mirror Spot', 'Bumper Cave (Bottom)', 'Skull Woods Forest', - 'Bat Cave Drop Ledge Mirror Spot', 'Dark World Hammer Peg Cave', 'Red Shield Shop', 'Dark Sanctuary Hint', 'Fortune Teller (Dark)', 'Dark World Shop', 'Dark World Lumberjack Shop']), - create_region('Fortune Teller (Dark)'), - create_region('Dark World Shop'), - create_region('Dark World Hammer Peg Cave', ['Peg Cave']), - create_region('Pyramid Fairy', ['Pyramid Fairy - Left', 'Pyramid Fairy - Right']), - create_region('Brewery', ['Brewery']), - create_region('C-Shaped House', ['C-Shaped House']), - create_region('Chest Game', ['Chest Game']), - create_region('Red Shield Shop'), - create_region('Dark Sanctuary Hint'), - create_region('Bumper Cave', None, ['Bumper Cave Exit (Bottom)', 'Bumper Cave Exit (Top)']), - create_region('Bumper Cave Ledge', ['Bumper Cave Ledge'], ['Bumper Cave Ledge Drop', 'Bumper Cave (Top)', 'Bumper Cave Ledge Mirror Spot']), - create_region('Skull Woods Forest', None, ['Skull Woods First Section Hole (East)', 'Skull Woods First Section Hole (West)', 'Skull Woods First Section Hole (North)', 'Skull Woods First Section Door', - 'Skull Woods Second Section Door (East)']), - create_region('Skull Woods Forest (West)', None, ['Skull Woods Second Section Hole', 'Skull Woods Second Section Door (West)', 'Skull Woods Final Section']), - create_region('Dark Desert', None, ['Misery Mire', 'Mire Shed', 'Desert Ledge (Northeast) Mirror Spot', 'Desert Ledge Mirror Spot', 'Desert Palace Stairs Mirror Spot', 'Desert Palace Entrance (North) Mirror Spot', - 'Dark Desert Hint', 'Dark Desert Fairy']), - create_region('Mire Shed', ['Mire Shed - Left', 'Mire Shed - Right']), - create_region('Dark Desert Hint'), - create_region('Dark Death Mountain (West Bottom)', None, ['Spike Cave', 'Spectacle Rock Mirror Spot', 'Dark Death Mountain Fairy']), - create_region('Dark Death Mountain (Top)', None, ['Dark Death Mountain Drop (East)', 'Dark Death Mountain Drop (West)', 'Ganons Tower', 'Superbunny Cave (Top)', 'Hookshot Cave', - 'East Death Mountain (Top) Mirror Spot', 'Turtle Rock']), - create_region('Dark Death Mountain Ledge', None, ['Dark Death Mountain Ledge (East)', 'Dark Death Mountain Ledge (West)', 'Mimic Cave Mirror Spot', 'Spiral Cave Mirror Spot']), - create_region('Dark Death Mountain Isolated Ledge', None, ['Isolated Ledge Mirror Spot', 'Turtle Rock Isolated Ledge Entrance']), - create_region('Dark Death Mountain (East Bottom)', None, ['Superbunny Cave (Bottom)', 'Cave Shop (Dark Death Mountain)', 'Fairy Ascension Mirror Spot']), - create_region('Superbunny Cave', ['Superbunny Cave - Top', 'Superbunny Cave - Bottom'], - ['Superbunny Cave Exit (Top)', 'Superbunny Cave Exit (Bottom)']), - create_region('Spike Cave', ['Spike Cave']), - create_region('Hookshot Cave', ['Hookshot Cave - Top Right', 'Hookshot Cave - Top Left', 'Hookshot Cave - Bottom Right', 'Hookshot Cave - Bottom Left'], - ['Hookshot Cave Exit (South)', 'Hookshot Cave Exit (North)']), - create_region('Death Mountain Floating Island (Dark World)', None, ['Floating Island Drop', 'Hookshot Cave Back Entrance', 'Floating Island Mirror Spot']), - create_region('Death Mountain Floating Island (Light World)', ['Floating Island']), - create_region('Turtle Rock (Top)', None, ['Turtle Rock Drop']), - create_region('Mimic Cave Ledge', None, ['Mimic Cave']), - create_region('Mimic Cave', ['Mimic Cave']), + create_dw_region('East Dark World', ['Pyramid'], ['Pyramid Fairy', 'South Dark World Bridge', 'Palace of Darkness', 'Dark Lake Hylia Drop (East)', 'Dark Lake Hylia Teleporter', + 'Hyrule Castle Ledge Mirror Spot', 'Dark Lake Hylia Fairy', 'Palace of Darkness Hint', 'East Dark World Hint', 'Pyramid Hole', 'Northeast Dark World Broken Bridge Pass']), + create_dw_region('Northeast Dark World', ['Catfish'], ['West Dark World Gap', 'Dark World Potion Shop', 'East Dark World Broken Bridge Pass']), + create_cave_region('Palace of Darkness Hint'), + create_cave_region('East Dark World Hint'), + create_dw_region('South Dark World', ['Stumpy', 'Digging Game', 'Bombos Tablet'], ['Dark Lake Hylia Drop (South)', 'Hype Cave', 'Swamp Palace', 'Village of Outcasts Heavy Rock', + 'Maze Race Mirror Spot', 'Cave 45 Mirror Spot', 'East Dark World Bridge', 'Big Bomb Shop', 'Archery Game', 'Bonk Fairy (Dark)', 'Dark Lake Hylia Shop']), + create_cave_region('Big Bomb Shop'), + create_cave_region('Archery Game'), + create_dw_region('Dark Lake Hylia', None, ['Lake Hylia Island Mirror Spot', 'East Dark World Pier', 'Dark Lake Hylia Ledge']), + create_dw_region('Dark Lake Hylia Central Island', None, ['Ice Palace', 'Lake Hylia Central Island Mirror Spot']), + create_dw_region('Dark Lake Hylia Ledge', None, ['Dark Lake Hylia Ledge Drop', 'Dark Lake Hylia Ledge Fairy', 'Dark Lake Hylia Ledge Hint', 'Dark Lake Hylia Ledge Spike Cave']), + create_cave_region('Dark Lake Hylia Ledge Hint'), + create_cave_region('Dark Lake Hylia Ledge Spike Cave'), + create_cave_region('Hype Cave', ['Hype Cave - Top', 'Hype Cave - Middle Right', 'Hype Cave - Middle Left', + 'Hype Cave - Bottom', 'Hype Cave - Generous Guy']), + create_dw_region('West Dark World', None, ['Village of Outcasts Drop', 'East Dark World River Pier', 'Brewery', 'C-Shaped House', 'Chest Game', 'Thieves Town', 'Graveyard Ledge Mirror Spot', 'Kings Grave Mirror Spot', 'Bumper Cave Entrance Rock', + 'Skull Woods Forest', 'Village of Outcasts Pegs', 'Village of Outcasts Eastern Rocks', 'Red Shield Shop', 'Dark Sanctuary Hint', 'Fortune Teller (Dark)', 'Dark World Lumberjack Shop']), + create_dw_region('Dark Grassy Lawn', None, ['Grassy Lawn Pegs', 'Dark World Shop']), + create_dw_region('Hammer Peg Area', None, ['Bat Cave Drop Ledge Mirror Spot', 'Dark World Hammer Peg Cave', 'Peg Area Rocks']), + create_dw_region('Bumper Cave Entrance', None, ['Bumper Cave (Bottom)', 'Bumper Cave Entrance Mirror Spot', 'Bumper Cave Entrance Drop']), + create_cave_region('Fortune Teller (Dark)'), + create_cave_region('Village of Outcasts Shop'), + create_cave_region('Dark Lake Hylia Shop'), + create_cave_region('Dark World Lumberjack Shop'), + create_cave_region('Dark World Potion Shop'), + create_cave_region('Dark World Hammer Peg Cave', ['Peg Cave']), + create_cave_region('Pyramid Fairy', ['Pyramid Fairy - Left', 'Pyramid Fairy - Right']), + create_cave_region('Brewery', ['Brewery']), + create_cave_region('C-Shaped House', ['C-Shaped House']), + create_cave_region('Chest Game', ['Chest Game']), + create_cave_region('Red Shield Shop'), + create_cave_region('Dark Sanctuary Hint'), + create_cave_region('Bumper Cave', None, ['Bumper Cave Exit (Bottom)', 'Bumper Cave Exit (Top)']), + create_dw_region('Bumper Cave Ledge', ['Bumper Cave Ledge'], ['Bumper Cave Ledge Drop', 'Bumper Cave (Top)', 'Bumper Cave Ledge Mirror Spot']), + create_dw_region('Skull Woods Forest', None, ['Skull Woods First Section Hole (East)', 'Skull Woods First Section Hole (West)', 'Skull Woods First Section Hole (North)', 'Skull Woods First Section Door', + 'Skull Woods Second Section Door (East)']), + create_dw_region('Skull Woods Forest (West)', None, ['Skull Woods Second Section Hole', 'Skull Woods Second Section Door (West)', 'Skull Woods Final Section']), + create_dw_region('Dark Desert', None, ['Misery Mire', 'Mire Shed', 'Desert Ledge (Northeast) Mirror Spot', 'Desert Ledge Mirror Spot', 'Desert Palace Stairs Mirror Spot', 'Desert Palace Entrance (North) Mirror Spot', + 'Dark Desert Hint', 'Dark Desert Fairy']), + create_cave_region('Mire Shed', ['Mire Shed - Left', 'Mire Shed - Right']), + create_cave_region('Dark Desert Hint'), + create_dw_region('Dark Death Mountain (West Bottom)', None, ['Spike Cave', 'Spectacle Rock Mirror Spot', 'Dark Death Mountain Fairy']), + create_dw_region('Dark Death Mountain (Top)', None, ['Dark Death Mountain Drop (East)', 'Dark Death Mountain Drop (West)', 'Ganons Tower', 'Superbunny Cave (Top)', 'Hookshot Cave', + 'East Death Mountain (Top) Mirror Spot', 'Turtle Rock']), + create_dw_region('Dark Death Mountain Ledge', None, ['Dark Death Mountain Ledge (East)', 'Dark Death Mountain Ledge (West)', 'Mimic Cave Mirror Spot', 'Spiral Cave Mirror Spot']), + create_dw_region('Dark Death Mountain Isolated Ledge', None, ['Isolated Ledge Mirror Spot', 'Turtle Rock Isolated Ledge Entrance']), + create_dw_region('Dark Death Mountain (East Bottom)', None, ['Superbunny Cave (Bottom)', 'Cave Shop (Dark Death Mountain)', 'Fairy Ascension Mirror Spot']), + create_cave_region('Superbunny Cave', ['Superbunny Cave - Top', 'Superbunny Cave - Bottom'], + ['Superbunny Cave Exit (Top)', 'Superbunny Cave Exit (Bottom)']), + create_cave_region('Spike Cave', ['Spike Cave']), + create_cave_region('Hookshot Cave', ['Hookshot Cave - Top Right', 'Hookshot Cave - Top Left', 'Hookshot Cave - Bottom Right', 'Hookshot Cave - Bottom Left'], + ['Hookshot Cave Exit (South)', 'Hookshot Cave Exit (North)']), + create_dw_region('Death Mountain Floating Island (Dark World)', None, ['Floating Island Drop', 'Hookshot Cave Back Entrance', 'Floating Island Mirror Spot']), + create_lw_region('Death Mountain Floating Island (Light World)', ['Floating Island']), + create_dw_region('Turtle Rock (Top)', None, ['Turtle Rock Drop']), + create_lw_region('Mimic Cave Ledge', None, ['Mimic Cave']), + create_cave_region('Mimic Cave', ['Mimic Cave']), - create_region('Swamp Palace (Entrance)', None, ['Swamp Palace Moat', 'Swamp Palace Exit']), - create_region('Swamp Palace (First Room)', ['Swamp Palace - Entrance'], ['Swamp Palace Small Key Door']), - create_region('Swamp Palace (Starting Area)', ['Swamp Palace - Map Chest'], ['Swamp Palace (Center)']), - create_region('Swamp Palace (Center)', ['Swamp Palace - Big Chest', 'Swamp Palace - Compass Chest', - 'Swamp Palace - Big Key Chest', 'Swamp Palace - West Chest'], ['Swamp Palace (North)']), - create_region('Swamp Palace (North)', ['Swamp Palace - Flooded Room - Left', 'Swamp Palace - Flooded Room - Right', - 'Swamp Palace - Waterfall Room', 'Swamp Palace - Arrghus', 'Swamp Palace - Prize']), - create_region('Thieves Town (Entrance)', ['Thieves\' Town - Big Key Chest', - 'Thieves\' Town - Map Chest', - 'Thieves\' Town - Compass Chest', - 'Thieves\' Town - Ambush Chest'], ['Thieves Town Big Key Door', 'Thieves Town Exit']), - create_region('Thieves Town (Deep)', ['Thieves\' Town - Attic', - 'Thieves\' Town - Big Chest', - 'Thieves\' Town - Blind\'s Cell'], ['Blind Fight']), - create_region('Blind Fight', ['Thieves Town - Blind', 'Thieves Town - Prize']), - create_region('Skull Woods First Section', ['Skull Woods - Map Chest'], ['Skull Woods First Section Exit', 'Skull Woods First Section Bomb Jump', 'Skull Woods First Section South Door', 'Skull Woods First Section West Door']), - create_region('Skull Woods First Section (Right)', ['Skull Woods - Pinball Room'], ['Skull Woods First Section (Right) North Door']), - create_region('Skull Woods First Section (Left)', ['Skull Woods - Compass Chest', 'Skull Woods - Pot Prison'], ['Skull Woods First Section (Left) Door to Exit', 'Skull Woods First Section (Left) Door to Right']), - create_region('Skull Woods First Section (Top)', ['Skull Woods - Big Chest'], ['Skull Woods First Section (Top) One-Way Path']), - create_region('Skull Woods Second Section (Drop)', None, ['Skull Woods Second Section (Drop)']), - create_region('Skull Woods Second Section', ['Skull Woods - Big Key Chest'], ['Skull Woods Second Section Exit (East)', 'Skull Woods Second Section Exit (West)']), - create_region('Skull Woods Final Section (Entrance)', ['Skull Woods - Bridge Room'], ['Skull Woods Torch Room', 'Skull Woods Final Section Exit']), - create_region('Skull Woods Final Section (Mothula)', ['Skull Woods - Mothula', 'Skull Woods - Prize']), - create_region('Ice Palace (Entrance)', None, ['Ice Palace Entrance Room', 'Ice Palace Exit']), - create_region('Ice Palace (Main)', ['Ice Palace - Compass Chest', 'Ice Palace - Freezor Chest', - 'Ice Palace - Big Chest', 'Ice Palace - Iced T Room'], ['Ice Palace (East)', 'Ice Palace (Kholdstare)']), - create_region('Ice Palace (East)', ['Ice Palace - Spike Room'], ['Ice Palace (East Top)']), - create_region('Ice Palace (East Top)', ['Ice Palace - Big Key Chest', 'Ice Palace - Map Chest']), - create_region('Ice Palace (Kholdstare)', ['Ice Palace - Kholdstare', 'Ice Palace - Prize']), - create_region('Misery Mire (Entrance)', None, ['Misery Mire Entrance Gap', 'Misery Mire Exit']), - create_region('Misery Mire (Main)', ['Misery Mire - Big Chest', 'Misery Mire - Map Chest', 'Misery Mire - Main Lobby', - 'Misery Mire - Bridge Chest', 'Misery Mire - Spike Chest'], ['Misery Mire (West)', 'Misery Mire Big Key Door']), - create_region('Misery Mire (West)', ['Misery Mire - Compass Chest', 'Misery Mire - Big Key Chest']), - create_region('Misery Mire (Final Area)', None, ['Misery Mire (Vitreous)']), - create_region('Misery Mire (Vitreous)', ['Misery Mire - Vitreous', 'Misery Mire - Prize']), - create_region('Turtle Rock (Entrance)', None, ['Turtle Rock Entrance Gap', 'Turtle Rock Exit (Front)']), - create_region('Turtle Rock (First Section)', ['Turtle Rock - Compass Chest', 'Turtle Rock - Roller Room - Left', - 'Turtle Rock - Roller Room - Right'], ['Turtle Rock Pokey Room', 'Turtle Rock Entrance Gap Reverse']), - create_region('Turtle Rock (Chain Chomp Room)', ['Turtle Rock - Chain Chomps'], ['Turtle Rock (Chain Chomp Room) (North)', 'Turtle Rock (Chain Chomp Room) (South)']), - create_region('Turtle Rock (Second Section)', ['Turtle Rock - Big Key Chest'], ['Turtle Rock Ledge Exit (West)', 'Turtle Rock Chain Chomp Staircase', 'Turtle Rock Big Key Door']), - create_region('Turtle Rock (Big Chest)', ['Turtle Rock - Big Chest'], ['Turtle Rock (Big Chest) (North)', 'Turtle Rock Ledge Exit (East)']), - create_region('Turtle Rock (Crystaroller Room)', ['Turtle Rock - Crystaroller Room'], ['Turtle Rock Dark Room Staircase', 'Turtle Rock Big Key Door Reverse']), - create_region('Turtle Rock (Dark Room)', None, ['Turtle Rock (Dark Room) (North)', 'Turtle Rock (Dark Room) (South)']), - create_region('Turtle Rock (Eye Bridge)', ['Turtle Rock - Eye Bridge - Bottom Left', 'Turtle Rock - Eye Bridge - Bottom Right', - 'Turtle Rock - Eye Bridge - Top Left', 'Turtle Rock - Eye Bridge - Top Right'], - ['Turtle Rock Dark Room (South)', 'Turtle Rock (Trinexx)', 'Turtle Rock Isolated Ledge Exit']), - create_region('Turtle Rock (Trinexx)', ['Turtle Rock - Trinexx', 'Turtle Rock - Prize']), - create_region('Palace of Darkness (Entrance)', ['Palace of Darkness - Shooter Room'], ['Palace of Darkness Bridge Room', 'Palace of Darkness Bonk Wall', 'Palace of Darkness Exit']), - create_region('Palace of Darkness (Center)', ['Palace of Darkness - The Arena - Bridge', 'Palace of Darkness - Stalfos Basement'], - ['Palace of Darkness Big Key Chest Staircase', 'Palace of Darkness (North)', 'Palace of Darkness Big Key Door']), - create_region('Palace of Darkness (Big Key Chest)', ['Palace of Darkness - Big Key Chest']), - create_region('Palace of Darkness (Bonk Section)', ['Palace of Darkness - The Arena - Ledge', 'Palace of Darkness - Map Chest'], ['Palace of Darkness Hammer Peg Drop']), - create_region('Palace of Darkness (North)', ['Palace of Darkness - Compass Chest', 'Palace of Darkness - Dark Basement - Left', 'Palace of Darkness - Dark Basement - Right'], - ['Palace of Darkness Spike Statue Room Door', 'Palace of Darkness Maze Door']), - create_region('Palace of Darkness (Maze)', ['Palace of Darkness - Dark Maze - Top', 'Palace of Darkness - Dark Maze - Bottom', 'Palace of Darkness - Big Chest']), - create_region('Palace of Darkness (Harmless Hellway)', ['Palace of Darkness - Harmless Hellway']), - create_region('Palace of Darkness (Final Section)', ['Palace of Darkness - Helmasaur', 'Palace of Darkness - Prize']), - create_region('Ganons Tower (Entrance)', ['Ganons Tower - Bob\'s Torch', 'Ganons Tower - Hope Room - Left', 'Ganons Tower - Hope Room - Right'], - ['Ganons Tower (Tile Room)', 'Ganons Tower (Hookshot Room)', 'Ganons Tower Big Key Door', 'Ganons Tower Exit']), - create_region('Ganons Tower (Tile Room)', ['Ganons Tower - Tile Room'], ['Ganons Tower (Tile Room) Key Door']), - create_region('Ganons Tower (Compass Room)', ['Ganons Tower - Compass Room - Top Left', 'Ganons Tower - Compass Room - Top Right', - 'Ganons Tower - Compass Room - Bottom Left', 'Ganons Tower - Compass Room - Bottom Right'], - ['Ganons Tower (Bottom) (East)']), - create_region('Ganons Tower (Hookshot Room)', ['Ganons Tower - DMs Room - Top Left', 'Ganons Tower - DMs Room - Top Right', - 'Ganons Tower - DMs Room - Bottom Left', 'Ganons Tower - DMs Room - Bottom Right'], - ['Ganons Tower (Map Room)', 'Ganons Tower (Double Switch Room)']), - create_region('Ganons Tower (Map Room)', ['Ganons Tower - Map Chest']), - create_region('Ganons Tower (Firesnake Room)', ['Ganons Tower - Firesnake Room'], ['Ganons Tower (Firesnake Room)']), - create_region('Ganons Tower (Teleport Room)', ['Ganons Tower - Randomizer Room - Top Left', 'Ganons Tower - Randomizer Room - Top Right', - 'Ganons Tower - Randomizer Room - Bottom Left', 'Ganons Tower - Randomizer Room - Bottom Right'], - ['Ganons Tower (Bottom) (West)']), - create_region('Ganons Tower (Bottom)', ['Ganons Tower - Bob\'s Chest', 'Ganons Tower - Big Chest', 'Ganons Tower - Big Key Room - Left', - 'Ganons Tower - Big Key Room - Right', 'Ganons Tower - Big Key Chest']), - create_region('Ganons Tower (Top)', None, ['Ganons Tower Torch Rooms']), - create_region('Ganons Tower (Before Moldorm)', ['Ganons Tower - Mini Helmasaur Room - Left', 'Ganons Tower - Mini Helmasaur Room - Right', - 'Ganons Tower - Pre-Moldorm Chest'], ['Ganons Tower Moldorm Door']), - create_region('Ganons Tower (Moldorm)', None, ['Ganons Tower Moldorm Gap']), - create_region('Agahnim 2', ['Ganons Tower - Validation Chest', 'Agahnim 2'], None), - create_region('Pyramid', ['Ganon'], ['Ganon Drop']), - create_region('Bottom of Pyramid', None, ['Pyramid Exit']), - create_region('Pyramid Ledge', None, ['Pyramid Entrance', 'Pyramid Drop']) + create_dungeon_region('Swamp Palace (Entrance)', None, ['Swamp Palace Moat', 'Swamp Palace Exit']), + create_dungeon_region('Swamp Palace (First Room)', ['Swamp Palace - Entrance'], ['Swamp Palace Small Key Door']), + create_dungeon_region('Swamp Palace (Starting Area)', ['Swamp Palace - Map Chest'], ['Swamp Palace (Center)']), + create_dungeon_region('Swamp Palace (Center)', ['Swamp Palace - Big Chest', 'Swamp Palace - Compass Chest', + 'Swamp Palace - Big Key Chest', 'Swamp Palace - West Chest'], ['Swamp Palace (North)']), + create_dungeon_region('Swamp Palace (North)', ['Swamp Palace - Flooded Room - Left', 'Swamp Palace - Flooded Room - Right', + 'Swamp Palace - Waterfall Room', 'Swamp Palace - Arrghus', 'Swamp Palace - Prize']), + create_dungeon_region('Thieves Town (Entrance)', ['Thieves\' Town - Big Key Chest', + 'Thieves\' Town - Map Chest', + 'Thieves\' Town - Compass Chest', + 'Thieves\' Town - Ambush Chest'], ['Thieves Town Big Key Door', 'Thieves Town Exit']), + create_dungeon_region('Thieves Town (Deep)', ['Thieves\' Town - Attic', + 'Thieves\' Town - Big Chest', + 'Thieves\' Town - Blind\'s Cell'], ['Blind Fight']), + create_dungeon_region('Blind Fight', ['Thieves Town - Blind', 'Thieves Town - Prize']), + create_dungeon_region('Skull Woods First Section', ['Skull Woods - Map Chest'], ['Skull Woods First Section Exit', 'Skull Woods First Section Bomb Jump', 'Skull Woods First Section South Door', 'Skull Woods First Section West Door']), + create_dungeon_region('Skull Woods First Section (Right)', ['Skull Woods - Pinball Room'], ['Skull Woods First Section (Right) North Door']), + create_dungeon_region('Skull Woods First Section (Left)', ['Skull Woods - Compass Chest', 'Skull Woods - Pot Prison'], ['Skull Woods First Section (Left) Door to Exit', 'Skull Woods First Section (Left) Door to Right']), + create_dungeon_region('Skull Woods First Section (Top)', ['Skull Woods - Big Chest'], ['Skull Woods First Section (Top) One-Way Path']), + create_dungeon_region('Skull Woods Second Section (Drop)', None, ['Skull Woods Second Section (Drop)']), + create_dungeon_region('Skull Woods Second Section', ['Skull Woods - Big Key Chest'], ['Skull Woods Second Section Exit (East)', 'Skull Woods Second Section Exit (West)']), + create_dungeon_region('Skull Woods Final Section (Entrance)', ['Skull Woods - Bridge Room'], ['Skull Woods Torch Room', 'Skull Woods Final Section Exit']), + create_dungeon_region('Skull Woods Final Section (Mothula)', ['Skull Woods - Mothula', 'Skull Woods - Prize']), + create_dungeon_region('Ice Palace (Entrance)', None, ['Ice Palace Entrance Room', 'Ice Palace Exit']), + create_dungeon_region('Ice Palace (Main)', ['Ice Palace - Compass Chest', 'Ice Palace - Freezor Chest', + 'Ice Palace - Big Chest', 'Ice Palace - Iced T Room'], ['Ice Palace (East)', 'Ice Palace (Kholdstare)']), + create_dungeon_region('Ice Palace (East)', ['Ice Palace - Spike Room'], ['Ice Palace (East Top)']), + create_dungeon_region('Ice Palace (East Top)', ['Ice Palace - Big Key Chest', 'Ice Palace - Map Chest']), + create_dungeon_region('Ice Palace (Kholdstare)', ['Ice Palace - Kholdstare', 'Ice Palace - Prize']), + create_dungeon_region('Misery Mire (Entrance)', None, ['Misery Mire Entrance Gap', 'Misery Mire Exit']), + create_dungeon_region('Misery Mire (Main)', ['Misery Mire - Big Chest', 'Misery Mire - Map Chest', 'Misery Mire - Main Lobby', + 'Misery Mire - Bridge Chest', 'Misery Mire - Spike Chest'], ['Misery Mire (West)', 'Misery Mire Big Key Door']), + create_dungeon_region('Misery Mire (West)', ['Misery Mire - Compass Chest', 'Misery Mire - Big Key Chest']), + create_dungeon_region('Misery Mire (Final Area)', None, ['Misery Mire (Vitreous)']), + create_dungeon_region('Misery Mire (Vitreous)', ['Misery Mire - Vitreous', 'Misery Mire - Prize']), + create_dungeon_region('Turtle Rock (Entrance)', None, ['Turtle Rock Entrance Gap', 'Turtle Rock Exit (Front)']), + create_dungeon_region('Turtle Rock (First Section)', ['Turtle Rock - Compass Chest', 'Turtle Rock - Roller Room - Left', + 'Turtle Rock - Roller Room - Right'], ['Turtle Rock Pokey Room', 'Turtle Rock Entrance Gap Reverse']), + create_dungeon_region('Turtle Rock (Chain Chomp Room)', ['Turtle Rock - Chain Chomps'], ['Turtle Rock (Chain Chomp Room) (North)', 'Turtle Rock (Chain Chomp Room) (South)']), + create_dungeon_region('Turtle Rock (Second Section)', ['Turtle Rock - Big Key Chest'], ['Turtle Rock Ledge Exit (West)', 'Turtle Rock Chain Chomp Staircase', 'Turtle Rock Big Key Door']), + create_dungeon_region('Turtle Rock (Big Chest)', ['Turtle Rock - Big Chest'], ['Turtle Rock (Big Chest) (North)', 'Turtle Rock Ledge Exit (East)']), + create_dungeon_region('Turtle Rock (Crystaroller Room)', ['Turtle Rock - Crystaroller Room'], ['Turtle Rock Dark Room Staircase', 'Turtle Rock Big Key Door Reverse']), + create_dungeon_region('Turtle Rock (Dark Room)', None, ['Turtle Rock (Dark Room) (North)', 'Turtle Rock (Dark Room) (South)']), + create_dungeon_region('Turtle Rock (Eye Bridge)', ['Turtle Rock - Eye Bridge - Bottom Left', 'Turtle Rock - Eye Bridge - Bottom Right', + 'Turtle Rock - Eye Bridge - Top Left', 'Turtle Rock - Eye Bridge - Top Right'], + ['Turtle Rock Dark Room (South)', 'Turtle Rock (Trinexx)', 'Turtle Rock Isolated Ledge Exit']), + create_dungeon_region('Turtle Rock (Trinexx)', ['Turtle Rock - Trinexx', 'Turtle Rock - Prize']), + create_dungeon_region('Palace of Darkness (Entrance)', ['Palace of Darkness - Shooter Room'], ['Palace of Darkness Bridge Room', 'Palace of Darkness Bonk Wall', 'Palace of Darkness Exit']), + create_dungeon_region('Palace of Darkness (Center)', ['Palace of Darkness - The Arena - Bridge', 'Palace of Darkness - Stalfos Basement'], + ['Palace of Darkness Big Key Chest Staircase', 'Palace of Darkness (North)', 'Palace of Darkness Big Key Door']), + create_dungeon_region('Palace of Darkness (Big Key Chest)', ['Palace of Darkness - Big Key Chest']), + create_dungeon_region('Palace of Darkness (Bonk Section)', ['Palace of Darkness - The Arena - Ledge', 'Palace of Darkness - Map Chest'], ['Palace of Darkness Hammer Peg Drop']), + create_dungeon_region('Palace of Darkness (North)', ['Palace of Darkness - Compass Chest', 'Palace of Darkness - Dark Basement - Left', 'Palace of Darkness - Dark Basement - Right'], + ['Palace of Darkness Spike Statue Room Door', 'Palace of Darkness Maze Door']), + create_dungeon_region('Palace of Darkness (Maze)', ['Palace of Darkness - Dark Maze - Top', 'Palace of Darkness - Dark Maze - Bottom', 'Palace of Darkness - Big Chest']), + create_dungeon_region('Palace of Darkness (Harmless Hellway)', ['Palace of Darkness - Harmless Hellway']), + create_dungeon_region('Palace of Darkness (Final Section)', ['Palace of Darkness - Helmasaur', 'Palace of Darkness - Prize']), + create_dungeon_region('Ganons Tower (Entrance)', ['Ganons Tower - Bob\'s Torch', 'Ganons Tower - Hope Room - Left', 'Ganons Tower - Hope Room - Right'], + ['Ganons Tower (Tile Room)', 'Ganons Tower (Hookshot Room)', 'Ganons Tower Big Key Door', 'Ganons Tower Exit']), + create_dungeon_region('Ganons Tower (Tile Room)', ['Ganons Tower - Tile Room'], ['Ganons Tower (Tile Room) Key Door']), + create_dungeon_region('Ganons Tower (Compass Room)', ['Ganons Tower - Compass Room - Top Left', 'Ganons Tower - Compass Room - Top Right', + 'Ganons Tower - Compass Room - Bottom Left', 'Ganons Tower - Compass Room - Bottom Right'], + ['Ganons Tower (Bottom) (East)']), + create_dungeon_region('Ganons Tower (Hookshot Room)', ['Ganons Tower - DMs Room - Top Left', 'Ganons Tower - DMs Room - Top Right', + 'Ganons Tower - DMs Room - Bottom Left', 'Ganons Tower - DMs Room - Bottom Right'], + ['Ganons Tower (Map Room)', 'Ganons Tower (Double Switch Room)']), + create_dungeon_region('Ganons Tower (Map Room)', ['Ganons Tower - Map Chest']), + create_dungeon_region('Ganons Tower (Firesnake Room)', ['Ganons Tower - Firesnake Room'], ['Ganons Tower (Firesnake Room)']), + create_dungeon_region('Ganons Tower (Teleport Room)', ['Ganons Tower - Randomizer Room - Top Left', 'Ganons Tower - Randomizer Room - Top Right', + 'Ganons Tower - Randomizer Room - Bottom Left', 'Ganons Tower - Randomizer Room - Bottom Right'], + ['Ganons Tower (Bottom) (West)']), + create_dungeon_region('Ganons Tower (Bottom)', ['Ganons Tower - Bob\'s Chest', 'Ganons Tower - Big Chest', 'Ganons Tower - Big Key Room - Left', + 'Ganons Tower - Big Key Room - Right', 'Ganons Tower - Big Key Chest']), + create_dungeon_region('Ganons Tower (Top)', None, ['Ganons Tower Torch Rooms']), + create_dungeon_region('Ganons Tower (Before Moldorm)', ['Ganons Tower - Mini Helmasaur Room - Left', 'Ganons Tower - Mini Helmasaur Room - Right', + 'Ganons Tower - Pre-Moldorm Chest'], ['Ganons Tower Moldorm Door']), + create_dungeon_region('Ganons Tower (Moldorm)', None, ['Ganons Tower Moldorm Gap']), + create_dungeon_region('Agahnim 2', ['Ganons Tower - Validation Chest', 'Agahnim 2'], None), + create_cave_region('Pyramid', ['Ganon'], ['Ganon Drop']), + create_cave_region('Bottom of Pyramid', None, ['Pyramid Exit']), + create_dw_region('Pyramid Ledge', None, ['Pyramid Entrance', 'Pyramid Drop']) ] world.intialize_regions() +def create_lw_region(name, locations=None, exits=None): + return _create_region(name, RegionType.LightWorld, locations, exits) -def create_region(name, locations=None, exits=None): - ret = Region(name) +def create_dw_region(name, locations=None, exits=None): + return _create_region(name, RegionType.DarkWorld, locations, exits) + +def create_cave_region(name, locations=None, exits=None): + return _create_region(name, RegionType.Cave, locations, exits) + +def create_dungeon_region(name, locations=None, exits=None): + return _create_region(name, RegionType.Dungeon, locations, exits) + +def _create_region(name, type, locations=None, exits=None): + ret = Region(name, type) if locations is None: locations = [] if exits is None: @@ -287,22 +318,30 @@ def create_region(name, locations=None, exits=None): ret.locations.append(Location(location, address, crystal, hint_text, ret)) return ret - def mark_light_world_regions(world): - # Note that in "inanity" shuffle this code may mark some dark world locations as being in light world. That is fine because this flag - # is only used for bunny logic, and you start with a Moon pearl immediately availible in Insanity shuffle. - - # Exclude entrances that represent connections from the light world to the dark world - excluded_entrances = set(['Top of Pyramid', 'Lake Hylia Central Island Teleporter', 'Dark Desert Teleporter', 'East Hyrule Teleporter', 'South Hyrule Teleporter', 'Kakariko Teleporter', 'Death Mountain Teleporter', 'East Death Mountain Teleporter', 'Turtle Rock Teleporter']) - - starting_regions = ['Links House', 'Cave 45 Ledge', 'Graveyard Ledge', 'Mimic Cave Ledge', 'Death Mountain Floating Island (Light World)', 'Desert Ledge', 'Desert Ledge (Northeast)', 'Lake Hylia Island', 'Spectacle Rock', 'Death Mountain Return Ledge', 'Hyrule Castle Ledge','Maze Race Ledge'] - queue = collections.deque([world.get_region(region) for region in starting_regions]) + # cross world caves may have some sections marked as both in_light_world, and in_dark_work. + # That is ok. the bunny logic will check for this case and incorporate special rules. + queue = collections.deque(region for region in world.regions if region.type == RegionType.LightWorld) seen = set(queue) while queue: current = queue.popleft() current.is_light_world = True for exit in current.exits: - if exit.name in excluded_entrances: + if exit.connected_region.type == RegionType.DarkWorld: + # Don't venture into the dark world + continue + if exit.connected_region not in seen: + seen.add(exit.connected_region) + queue.append(exit.connected_region) + + queue = collections.deque(region for region in world.regions if region.type == RegionType.DarkWorld) + seen = set(queue) + while queue: + current = queue.popleft() + current.is_dark_world = True + for exit in current.exits: + if exit.connected_region.type == RegionType.LightWorld: + # Don't venture into the light world continue if exit.connected_region not in seen: seen.add(exit.connected_region) diff --git a/Rom.py b/Rom.py index 31a6af3ae..ba75d0a96 100644 --- a/Rom.py +++ b/Rom.py @@ -15,7 +15,7 @@ JAP10HASH = '03a63945398191337e896e5771f77173' -RANDOMIZERBASEHASH = '214e4b2a50cb65cd13a8194bc88cb030' +RANDOMIZERBASEHASH = 'dc5840f0d1ef7b51009c5625a054b3dd' class JsonRom(object): @@ -44,7 +44,7 @@ class LocalRom(object): def __init__(self, file, patch=True): with open(file, 'rb') as stream: - self.buffer = bytearray(stream.read()) + self.buffer = read_rom(stream) if patch: self.patch_base_rom() @@ -94,6 +94,13 @@ def write_crc(self): inv = crc ^ 0xFFFF self.write_bytes(0x7FDC, [inv & 0xFF, (inv >> 8) & 0xFF, crc & 0xFF, (crc >> 8) & 0xFF]) +def read_rom(stream): + "Reads rom into bytearray and strips off any smc header" + buffer = bytearray(stream.read()) + if len(buffer)%0x400 == 0x200: + buffer = buffer[0x200:] + return buffer + class Sprite(object): default_palette = [255, 127, 126, 35, 183, 17, 158, 54, 165, 20, 255, 1, 120, 16, 157, 89, 71, 54, 104, 59, 74, 10, 239, 18, 92, 42, 113, 21, 24, 122, @@ -261,7 +268,7 @@ def int32_as_bytes(value): value = value & 0xFFFFFFFF return [value & 0xFF, (value >> 8) & 0xFF, (value >> 16) & 0xFF, (value >> 24) & 0xFF] -def patch_rom(world, rom, hashtable, beep='normal', sprite=None): +def patch_rom(world, rom, hashtable, beep='normal', color='red', sprite=None): # patch items for location in world.get_locations(): itemid = location.item.code if location.item is not None else 0x5A @@ -297,13 +304,57 @@ def patch_rom(world, rom, hashtable, beep='normal', sprite=None): if world.keysanity: rom.write_byte(0x155C9, random.choice([0x11, 0x16])) # Randomize GT music too in keysanity mode - # patch entrances + # patch entrance/exits/holes for region in world.regions: for exit in region.exits: if exit.target is not None: - addresses = [exit.addresses] if isinstance(exit.addresses, int) else exit.addresses - for address in addresses: - rom.write_byte(address, exit.target) + if isinstance(exit.addresses, tuple): + offset = exit.target + room_id, ow_area, vram_loc, scroll_y, scroll_x, link_y, link_x, camera_y, camera_x, unknown_1, unknown_2, door_1, door_2 = exit.addresses + #room id is deliberately not written + + + rom.write_byte(0x15B8C + offset, ow_area) + rom.write_int16_to_rom(0x15BDB + 2 * offset, vram_loc) + rom.write_int16_to_rom(0x15C79 + 2 * offset, scroll_y) + rom.write_int16_to_rom(0x15D17 + 2 * offset, scroll_x) + + # for positioning fixups we abuse the roomid as a way of identifying which exit data we are appling + # Thanks to Zarby89 for originally finding these values + # todo fix screen scrolling + + if world.shuffle not in ['insanity', 'insanity_legacy', 'madness_legacy'] and \ + exit.name in ['Eastern Palace Exit', 'Tower of Hera Exit', 'Thieves Town Exit', 'Skull Woods Final Section Exit', 'Ice Palace Exit', 'Misery Mire Exit', + 'Palace of Darkness Exit', 'Swamp Palace Exit', 'Ganons Tower Exit', 'Desert Palace Exit (North)', 'Agahnims Tower Exit', 'Spiral Cave Exit (Top)', + 'Superbunny Cave Exit (Bottom)', 'Turtle Rock Ledge Exit (East)']: + # For exits that connot be reached from another, no need to apply offset fixes. + rom.write_int16_to_rom(0x15DB5 + 2 * offset, link_y) # same as final else + elif room_id == 0x0059 and world.fix_skullwoods_exit: + rom.write_int16_to_rom(0x15DB5 + 2 * offset, 0x00F8) + elif room_id == 0x004a and world.fix_palaceofdarkness_exit: + rom.write_int16_to_rom(0x15DB5 + 2 * offset, 0x0640) + elif room_id == 0x00d6 and world.fix_trock_exit: + rom.write_int16_to_rom(0x15DB5 + 2 * offset, 0x0134) + elif room_id == 0x000c and world.fix_gtower_exit: # fix ganons tower exit point + rom.write_int16_to_rom(0x15DB5 + 2 * offset, 0x00A4) + else: + rom.write_int16_to_rom(0x15DB5 + 2 * offset, link_y) + + rom.write_int16_to_rom(0x15E53 + 2 * offset, link_x) + rom.write_int16_to_rom(0x15EF1 + 2 * offset, camera_y) + rom.write_int16_to_rom(0x15F8F + 2 * offset, camera_x) + rom.write_byte(0x1602D + offset, unknown_1) + rom.write_byte(0x1607C + offset, unknown_2) + rom.write_int16_to_rom(0x160CB + 2 * offset, door_1) + rom.write_int16_to_rom(0x16169 + 2 * offset, door_2) + elif isinstance(exit.addresses, list): + # is hole + for address in exit.addresses: + rom.write_byte(address, exit.target) + else: + # patch door table + rom.write_byte(0xDBB73 + exit.addresses, exit.target) + # patch medallion requirements if world.required_medallions[0] == 'Bombos': @@ -354,6 +405,7 @@ def patch_rom(world, rom, hashtable, beep='normal', sprite=None): TRIFORCE_PIECE = ItemFactory('Triforce Piece').code GREEN_CLOCK = ItemFactory('Green Clock').code + rom.write_byte(0x18004F, 0x01) # Byrna Invulnerability: on # handle difficulty if world.difficulty == 'hard': # Powdered Fairies Prize @@ -364,13 +416,13 @@ def patch_rom(world, rom, hashtable, beep='normal', sprite=None): rom.write_byte(0x180085, 0x40) # Half Magic #Cape magic cost rom.write_bytes(0x3ADA7, [0x02, 0x02, 0x02]) - #Byrna residual magic cost - rom.write_bytes(0x45C42, [0x08, 0x08, 0x08]) + # Byrna Invulnerability: off + rom.write_byte(0x18004F, 0x00) #Disable catching fairies rom.write_byte(0x34FD6, 0x80) overflow_replacement = GREEN_TWENTY_RUPEES # Rupoor negative value - rom.write_int16_to_rom(0x180036, 10) + rom.write_int16_to_rom(0x180036, world.rupoor_cost) #Make Blue Shield more expensive rom.write_bytes(0xF73D2, [0xFC, 0xFF]) rom.write_bytes(0xF73DA, [0x04, 0x00]) @@ -398,8 +450,8 @@ def patch_rom(world, rom, hashtable, beep='normal', sprite=None): rom.write_byte(0x180085, 0x20) # Quarter Magic #Cape magic cost rom.write_bytes(0x3ADA7, [0x02, 0x02, 0x02]) - #Byrna residual magic cost - rom.write_bytes(0x45C42, [0x08, 0x08, 0x08]) + # Byrna Invulnerability: off + rom.write_byte(0x18004F, 0x00) #Disable catching fairies rom.write_byte(0x34FD6, 0x80) overflow_replacement = GREEN_TWENTY_RUPEES @@ -432,8 +484,8 @@ def patch_rom(world, rom, hashtable, beep='normal', sprite=None): rom.write_byte(0x180085, 0x00) # No healing #Cape magic cost rom.write_bytes(0x3ADA7, [0x02, 0x02, 0x02]) - #Byrna residual magic cost - rom.write_bytes(0x45C42, [0x08, 0x08, 0x08]) + # Byrna Invulnerability: off + rom.write_byte(0x18004F, 0x00) #Disable catching fairies rom.write_byte(0x34FD6, 0x80) overflow_replacement = GREEN_TWENTY_RUPEES @@ -466,8 +518,8 @@ def patch_rom(world, rom, hashtable, beep='normal', sprite=None): rom.write_byte(0x180085, 0x80) # full #Cape magic cost rom.write_bytes(0x3ADA7, [0x04, 0x08, 0x10]) - #Byrna residual magic cost - rom.write_bytes(0x45C42, [0x04, 0x02, 0x01]) + # Byrna Invulnerability: on + rom.write_byte(0x18004F, 0x01) #Enable catching fairies rom.write_byte(0x34FD6, 0xF0) #Set overflow items for progressive equipment @@ -478,6 +530,9 @@ def patch_rom(world, rom, hashtable, beep='normal', sprite=None): else: overflow_replacement = GREEN_TWENTY_RUPEES + #Byrna residual magic cost + rom.write_bytes(0x45C42, [0x04, 0x02, 0x01]) + difficulty = world.difficulty_requirements #Set overflow items for progressive equipment rom.write_bytes(0x180090, @@ -548,6 +603,20 @@ def patch_rom(world, rom, hashtable, beep='normal', sprite=None): for prize, address in zip(bonk_prizes, bonk_addresses): rom.write_byte(address, prize) + # Fill in item substitutions table + if world.difficulty in ['easy']: + rom.write_bytes(0x184000, [ + # original_item, limit, replacement_item, filler + 0x12, 0x01, 0x35, 0xFF, # lamp -> 5 rupees + 0x58, 0x01, 0x43, 0xFF, # silver arrows -> 1 arrow + 0xFF, 0xFF, 0xFF, 0xFF, # end of table sentinel + ]) + else: + rom.write_bytes(0x184000, [ + # original_item, limit, replacement_item, filler + 0x12, 0x01, 0x35, 0xFF, # lamp -> 5 rupees + 0xFF, 0xFF, 0xFF, 0xFF, # end of table sentinel + ]) # set Fountain bottle exchange items if world.difficulty in ['hard', 'expert', 'insane']: @@ -637,11 +706,14 @@ def patch_rom(world, rom, hashtable, beep='normal', sprite=None): # TODO: a proper race rom mode should be implemented, that changes the following flag, and rummages the table (or uses the future encryption feature, etc) rom.write_bytes(0x180213, [0x00, 0x01]) # Not a Tournament Seed + rom.write_byte(0x180211, 0x06) #Game type, we set the Entrance and item randomization flags + # assorted fixes rom.write_byte(0x180030, 0x00) # Disable SRAM trace rom.write_byte(0x1800A2, 0x01) # remain in real dark world when dying in dark word dungion before killing aga1 rom.write_byte(0x180169, 0x01 if world.lock_aga_door_in_escape else 0x00) # Lock or unlock aga tower door during escape sequence. rom.write_byte(0x180171, 0x01 if world.ganon_at_pyramid else 0x00) # Enable respawning on pyramid after ganon death + rom.write_byte(0x180173, 0x01) # Bob is enabled rom.write_byte(0x180168, 0x08) # Spike Cave Damage rom.write_bytes(0x18016B, [0x04, 0x02, 0x01]) #Set spike cave and MM spike room Cape usage rom.write_bytes(0x18016E, [0x04, 0x08, 0x10]) #Set spike cave and MM spike room Cape usage @@ -653,8 +725,26 @@ def patch_rom(world, rom, hashtable, beep='normal', sprite=None): rom.write_byte(0x180086, 0x00 if world.aga_randomness else 0x01) # set blue ball and ganon warp randomness rom.write_byte(0x1800A0, 0x01) # return to light world on s+q without mirror rom.write_byte(0x1800A1, 0x01) # enable overworld screen transition draining for water level inside swamp + rom.write_byte(0x180174, 0x01 if world.fix_fake_world else 0x00) + rom.write_byte(0x180175, 0x00) # Arrow mode: normal + rom.write_int16_to_rom(0x180176, 0) # Wood Arrow Cost (rupee arrow mode) + rom.write_int16_to_rom(0x180178, 0) # Silver Arrow Cost (rupee arrow mode) rom.write_byte(0x180034, 0x0A) # starting max bombs - rom.write_byte(0x180035, 30) # starting max bombs + rom.write_byte(0x180035, 30) # starting max arrows + for x in range(0x183000, 0x18304F): + rom.write_byte(x, 0) # Zero the initial equipment array + rom.write_byte(0x18302C, 0x18) # starting max health + rom.write_byte(0x18302D, 0x18) # starting current health + rom.write_byte(0x183039, 0x68) # starting abilities, bit array + rom.write_byte(0x18004A, 0x00) # Inverted mode (off) + rom.write_byte(0x2AF79, 0xD0) # vortexes: Normal (D0=light to dark, F0=dark to light, 42 = both) + rom.write_byte(0x3A943, 0xD0) # Mirror: Normal (D0=Dark to Light, F0=light to dark, 42 = both) + rom.write_byte(0x3A96D, 0xF0) # Residual Portal: Normal (F0= Light Side, D0=Dark Side, 42 = both (Darth Vader)) + rom.write_byte(0x3A9A7, 0xD0) # Residual Portal: Normal (D0= Light Side, F0=Dark Side, 42 = both (Darth Vader)) + + rom.write_byte(0x18004D, 0x00) # Escape assist (off) + rom.write_byte(0x18004E, 0x00) # uncle Refill (off) + if world.goal in ['pedestal', 'triforcehunt']: rom.write_byte(0x18003E, 0x01) # make ganon invincible @@ -694,10 +784,20 @@ def patch_rom(world, rom, hashtable, beep='normal', sprite=None): rom.write_bytes(0x6D2FB, [0x00, 0x00, 0xf7, 0xff, 0x02, 0x0E]) rom.write_bytes(0x6D313, [0x00, 0x00, 0xe4, 0xff, 0x08, 0x0E]) + # Shop table + rom.write_bytes(0x184800, [0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF]) # patch swamp: Need to enable permanent drain of water as dam or swamp were moved rom.write_byte(0x18003D, 0x01 if world.swamp_patch_required else 0x00) + # powder patch: remove the need to leave the scrren after powder, since it causes problems for potion shop at race game + # temporarally we are just nopping out this check we will conver this to a rom fix soon. + rom.write_bytes(0x02F539,[0xEA,0xEA,0xEA,0xEA,0xEA] if world.powder_patch_required else [0xAD, 0xBF, 0x0A, 0xF0, 0x4F]) + + # allow smith into multi-entrance caves in appropriate shuffles + if world.shuffle in ['restricted', 'full', 'crossed', 'insanity']: + rom.write_byte(0x18004C, 0x01) + # set correct flag for hera basement item if world.get_location('Tower of Hera - Basement Cage').item is not None and world.get_location('Tower of Hera - Basement Cage').item.name == 'Small Key (Tower of Hera)': rom.write_byte(0x4E3BB, 0xE4) @@ -714,34 +814,20 @@ def patch_rom(world, rom, hashtable, beep='normal', sprite=None): rom.write_byte(0xFED31, 0x2A) # preopen bombable exit rom.write_byte(0xFEE41, 0x2A) # preopen bombable exit - # Thanks to Zarby89 for finding these values - # fix skull woods exit point - rom.write_byte(0x15E0D, 0xF8 if world.fix_skullwoods_exit else 0xB8) - - # fix palace of darkness exit point - rom.write_byte(0x15E03, 0x40 if world.fix_palaceofdarkness_exit else 0x28) - - # fix turtle rock exit point - rom.write_byte(0x15E1D, 0x34 if world.fix_trock_exit else 0x28) - - # fix ganons tower exit point - rom.write_byte(0x15E25, 0xA4 if world.fix_gtower_exit else 0x28) - # todo fix screen scrolling - write_strings(rom, world) # set rom name # 21 bytes - rom.write_bytes(0x7FC0, bytearray('ER_052_%09d\0' % world.seed, 'utf8') + world.option_identifier.to_bytes(4, 'big')) + rom.write_bytes(0x7FC0, bytearray('ER_060_%09d\0' % world.seed, 'utf8') + world.option_identifier.to_bytes(4, 'big')) # store hash table for main menu hash rom.write_bytes(0x187F00, hashtable) - apply_rom_settings(rom, beep, world.quickswap, world.fastmenu, world.disable_music, sprite) + apply_rom_settings(rom, beep, color, world.quickswap, world.fastmenu, world.disable_music, sprite) return rom -def apply_rom_settings(rom, beep, quickswap, fastmenu, disable_music, sprite): +def apply_rom_settings(rom, beep, color, quickswap, fastmenu, disable_music, sprite): # enable instant item menu if fastmenu == 'instant': @@ -765,99 +851,92 @@ def apply_rom_settings(rom, beep, quickswap, fastmenu, disable_music, sprite): else: rom.write_byte(0x180048, 0x08) - # enable quick item swapping with L and R (ported by Amazing Ampharos) - if quickswap: - rom.write_bytes(0x107fb, [0x22, 0x50, 0xFF, 0x1F]) - rom.write_bytes(0x12451, [0x22, 0x50, 0xFF, 0x1F]) - rom.write_bytes(0xfff50, [0x20, 0x58, 0xFF, 0xA5, 0xF6, 0x29, 0x40, 0x6B, 0xA5, 0xF6, 0x89, 0x10, 0xF0, 0x03, 0x4C, 0x69, - 0xFF, 0x89, 0x20, 0xF0, 0x03, 0x4C, 0xAA, 0xFF, 0x60, 0xAD, 0x02, 0x02, 0xF0, 0x3B, 0xDA, 0xAA, - 0xE0, 0x0F, 0xF0, 0x14, 0xE0, 0x10, 0xF0, 0x14, 0xE0, 0x14, 0xD0, 0x02, 0xA2, 0x00, 0xE8, 0xBF, - 0x3F, 0xF3, 0x7E, 0xF0, 0xEB, 0x4C, 0xEB, 0xFF, 0xA2, 0x01, 0x80, 0x0A, 0xAF, 0x4F, 0xF3, 0x7E, - 0xAA, 0xE0, 0x04, 0xF0, 0x10, 0xE8, 0xBF, 0x5B, 0xF3, 0x7E, 0xF0, 0xF5, 0x8A, 0x8F, 0x4F, 0xF3, - 0x7E, 0xA2, 0x10, 0x80, 0xE0, 0xA2, 0x11, 0x80, 0xD6, 0x60, 0xAD, 0x02, 0x02, 0xF0, 0x3B, 0xDA, - 0xAA, 0xE0, 0x11, 0xF0, 0x14, 0xE0, 0x10, 0xF0, 0x14, 0xE0, 0x01, 0xD0, 0x02, 0xA2, 0x15, 0xCA, - 0xBF, 0x3F, 0xF3, 0x7E, 0xF0, 0xEB, 0x4C, 0xEB, 0xFF, 0xA2, 0x04, 0x80, 0x0A, 0xAF, 0x4F, 0xF3, - 0x7E, 0xAA, 0xE0, 0x01, 0xF0, 0x10, 0xCA, 0xBF, 0x5B, 0xF3, 0x7E, 0xF0, 0xF5, 0x8A, 0x8F, 0x4F, - 0xF3, 0x7E, 0xA2, 0x10, 0x80, 0xE0, 0xA2, 0x0F, 0x80, 0xD6, 0x60, 0xA9, 0x20, 0x8D, 0x2F, 0x01, - 0x8E, 0x02, 0x02, 0x22, 0x7F, 0xDB, 0x0D, 0xFA, 0x60, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF]) - else: - rom.write_bytes(0x107fb, [0xa5, 0xf6, 0x29, 0x40]) - rom.write_bytes(0x12451, [0xa5, 0xf6, 0x29, 0x40]) - rom.write_bytes(0xfff50, [0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF]) + rom.write_byte(0x18004B, 0x01 if quickswap else 0x00) music_volumes = [ - (0x00, [0xD373B, 0xD375B, 0xD90F8]), - (0x14, [0xDA710, 0xDA7A4, 0xDA7BB, 0xDA7D2]), - (0x3C, [0xD5954, 0xD653B, 0xDA736, 0xDA752, 0xDA772, 0xDA792]), - (0x50, [0xD5B47, 0xD5B5E]), - (0x54, [0xD4306]), - (0x64, [0xD6878, 0xD6883, 0xD6E48, 0xD6E76, 0xD6EFB, 0xD6F2D, 0xDA211, 0xDA35B, 0xDA37B, 0xDA38E, 0xDA39F, 0xDA5C3, 0xDA691, 0xDA6A8, 0xDA6DF]), - (0x78, [0xD2349, 0xD3F45, 0xD42EB, 0xD48B9, 0xD48FF, 0xD543F, 0xD5817, 0xD5957, 0xD5ACB, 0xD5AE8, 0xD5B4A, 0xDA5DE, 0xDA608, 0xDA635, - 0xDA662, 0xDA71F, 0xDA7AF, 0xDA7C6, 0xDA7DD]), - (0x82, [0xD2F00, 0xDA3D5]), - (0xA0, [0xD249C, 0xD24CD, 0xD2C09, 0xD2C53, 0xD2CAF, 0xD2CEB, 0xD2D91, 0xD2EE6, 0xD38ED, 0xD3C91, 0xD3CD3, 0xD3CE8, 0xD3F0C, - 0xD3F82, 0xD405F, 0xD4139, 0xD4198, 0xD41D5, 0xD41F6, 0xD422B, 0xD4270, 0xD42B1, 0xD4334, 0xD4371, 0xD43A6, 0xD43DB, - 0xD441E, 0xD4597, 0xD4B3C, 0xD4BAB, 0xD4C03, 0xD4C53, 0xD4C7F, 0xD4D9C, 0xD5424, 0xD65D2, 0xD664F, 0xD6698, 0xD66FF, - 0xD6985, 0xD6C5C, 0xD6C6F, 0xD6C8E, 0xD6CB4, 0xD6D7D, 0xD827D, 0xD960C, 0xD9828, 0xDA233, 0xDA3A2, 0xDA49E, 0xDA72B, - 0xDA745, 0xDA765, 0xDA785, 0xDABF6, 0xDAC0D, 0xDAEBE, 0xDAFAC]), - (0xAA, [0xD9A02, 0xD9BD6]), - (0xB4, [0xD21CD, 0xD2279, 0xD2E66, 0xD2E70, 0xD2EAB, 0xD3B97, 0xD3BAC, 0xD3BE8, 0xD3C0D, 0xD3C39, 0xD3C68, 0xD3C9F, 0xD3CBC, - 0xD401E, 0xD4290, 0xD443E, 0xD456F, 0xD47D3, 0xD4D43, 0xD4DCC, 0xD4EBA, 0xD4F0B, 0xD4FE5, 0xD5012, 0xD54BC, 0xD54D5, - 0xD54F0, 0xD5509, 0xD57D8, 0xD59B9, 0xD5A2F, 0xD5AEB, 0xD5E5E, 0xD5FE9, 0xD658F, 0xD674A, 0xD6827, 0xD69D6, 0xD69F5, - 0xD6A05, 0xD6AE9, 0xD6DCF, 0xD6E20, 0xD6ECB, 0xD71D4, 0xD71E6, 0xD7203, 0xD721E, 0xD8724, 0xD8732, 0xD9652, 0xD9698, - 0xD9CBC, 0xD9DC0, 0xD9E49, 0xDAA68, 0xDAA77, 0xDAA88, 0xDAA99, 0xDAF04]), - (0x8c, [0xD1D28, 0xD1D41, 0xD1D5C, 0xD1D77, 0xD1EEE, 0xD311D, 0xD31D1, 0xD4148, 0xD5543, 0xD5B6F, 0xD65B3, 0xD6760, 0xD6B6B, - 0xD6DF6, 0xD6E0D, 0xD73A1, 0xD814C, 0xD825D, 0xD82BE, 0xD8340, 0xD8394, 0xD842C, 0xD8796, 0xD8903, 0xD892A, 0xD91E8, - 0xD922B, 0xD92E0, 0xD937E, 0xD93C1, 0xDA958, 0xDA971, 0xDA98C, 0xDA9A7]), - (0xC8, [0xD1D92, 0xD1DBD, 0xD1DEB, 0xD1F5D, 0xD1F9F, 0xD1FBD, 0xD1FDC, 0xD1FEA, 0xD20CA, 0xD21BB, 0xD22C9, 0xD2754, 0xD284C, - 0xD2866, 0xD2887, 0xD28A0, 0xD28BA, 0xD28DB, 0xD28F4, 0xD293E, 0xD2BF3, 0xD2C1F, 0xD2C69, 0xD2CA1, 0xD2CC5, 0xD2D05, - 0xD2D73, 0xD2DAF, 0xD2E3D, 0xD2F36, 0xD2F46, 0xD2F6F, 0xD2FCF, 0xD2FDF, 0xD302B, 0xD3086, 0xD3099, 0xD30A5, 0xD30CD, - 0xD30F6, 0xD3154, 0xD3184, 0xD333A, 0xD33D9, 0xD349F, 0xD354A, 0xD35E5, 0xD3624, 0xD363C, 0xD3672, 0xD3691, 0xD36B4, - 0xD36C6, 0xD3724, 0xD3767, 0xD38CB, 0xD3B1D, 0xD3B2F, 0xD3B55, 0xD3B70, 0xD3B81, 0xD3BBF, 0xD3D34, 0xD3D55, 0xD3D6E, - 0xD3DC6, 0xD3E04, 0xD3E38, 0xD3F65, 0xD3FA6, 0xD404F, 0xD4087, 0xD417A, 0xD41A0, 0xD425C, 0xD4319, 0xD433C, 0xD43EF, - 0xD440C, 0xD4452, 0xD4494, 0xD44B5, 0xD4512, 0xD45D1, 0xD45EF, 0xD4682, 0xD46C3, 0xD483C, 0xD4848, 0xD4855, 0xD4862, - 0xD486F, 0xD487C, 0xD4A1C, 0xD4A3B, 0xD4A60, 0xD4B27, 0xD4C7A, 0xD4D12, 0xD4D81, 0xD4E90, 0xD4ED6, 0xD4EE2, 0xD5005, - 0xD502E, 0xD503C, 0xD5081, 0xD51B1, 0xD51C7, 0xD51CF, 0xD51EF, 0xD520C, 0xD5214, 0xD5231, 0xD5257, 0xD526D, 0xD5275, - 0xD52AF, 0xD52BD, 0xD52CD, 0xD52DB, 0xD549C, 0xD5801, 0xD58A4, 0xD5A68, 0xD5A7F, 0xD5C12, 0xD5D71, 0xD5E10, 0xD5E9A, - 0xD5F8B, 0xD5FA4, 0xD651A, 0xD6542, 0xD65ED, 0xD661D, 0xD66D7, 0xD6776, 0xD68BD, 0xD68E5, 0xD6956, 0xD6973, 0xD69A8, - 0xD6A51, 0xD6A86, 0xD6B96, 0xD6C3E, 0xD6D4A, 0xD6E9C, 0xD6F80, 0xD717E, 0xD7190, 0xD71B9, 0xD811D, 0xD8139, 0xD816B, - 0xD818A, 0xD819E, 0xD81BE, 0xD829C, 0xD82E1, 0xD8306, 0xD830E, 0xD835E, 0xD83AB, 0xD83CA, 0xD83F0, 0xD83F8, 0xD844B, - 0xD8479, 0xD849E, 0xD84CB, 0xD84EB, 0xD84F3, 0xD854A, 0xD8573, 0xD859D, 0xD85B4, 0xD85CE, 0xD862A, 0xD8681, 0xD87E3, - 0xD87FF, 0xD887B, 0xD88C6, 0xD88E3, 0xD8944, 0xD897B, 0xD8C97, 0xD8CA4, 0xD8CB3, 0xD8CC2, 0xD8CD1, 0xD8D01, 0xD917B, - 0xD918C, 0xD919A, 0xD91B5, 0xD91D0, 0xD91DD, 0xD9220, 0xD9273, 0xD9284, 0xD9292, 0xD92AD, 0xD92C8, 0xD92D5, 0xD9311, - 0xD9322, 0xD9330, 0xD934B, 0xD9366, 0xD9373, 0xD93B6, 0xD97A6, 0xD97C2, 0xD97DC, 0xD97FB, 0xD9811, 0xD98FF, 0xD996F, - 0xD99A8, 0xD99D5, 0xD9A30, 0xD9A4E, 0xD9A6B, 0xD9A88, 0xD9AF7, 0xD9B1D, 0xD9B43, 0xD9B7C, 0xD9BA9, 0xD9C84, 0xD9C8D, - 0xD9CAC, 0xD9CE8, 0xD9CF3, 0xD9CFD, 0xD9D46, 0xDA35E, 0xDA37E, 0xDA391, 0xDA478, 0xDA4C3, 0xDA4D7, 0xDA4F6, 0xDA515, - 0xDA6E2, 0xDA9C2, 0xDA9ED, 0xDAA1B, 0xDAA57, 0xDABAF, 0xDABC9, 0xDABE2, 0xDAC28, 0xDAC46, 0xDAC63, 0xDACB8, 0xDACEC, - 0xDAD08, 0xDAD25, 0xDAD42, 0xDAD5F, 0xDAE17, 0xDAE34, 0xDAE51, 0xDAF2E, 0xDAF55, 0xDAF6B, 0xDAF81, 0xDB14F, 0xDB16B, - 0xDB180, 0xDB195, 0xDB1AA]), - (0xD2, [0xD2B88, 0xD364A, 0xD369F, 0xD3747]), - (0xDC, [0xD213F, 0xD2174, 0xD229E, 0xD2426, 0xD4731, 0xD4753, 0xD4774, 0xD4795, 0xD47B6, 0xD4AA5, 0xD4AE4, 0xD4B96, 0xD4CA5, - 0xD5477, 0xD5A3D, 0xD6566, 0xD672C, 0xD67C0, 0xD69B8, 0xD6AB1, 0xD6C05, 0xD6DB3, 0xD71AB, 0xD8E2D, 0xD8F0D, 0xD94E0, - 0xD9544, 0xD95A8, 0xD9982, 0xD9B56, 0xDA694, 0xDA6AB, 0xDAE88, 0xDAEC8, 0xDAEE6, 0xDB1BF]), - (0xE6, [0xD210A, 0xD22DC, 0xD2447, 0xD5A4D, 0xD5DDC, 0xDA251, 0xDA26C]), - (0xF0, [0xD945E, 0xD967D, 0xD96C2, 0xD9C95, 0xD9EE6, 0xDA5C6]), - (0xFA, [0xD2047, 0xD24C2, 0xD24EC, 0xD25A4, 0xD3DAA, 0xD51A8, 0xD51E6, 0xD524E, 0xD529E, 0xD6045, 0xD81DE, 0xD821E, 0xD94AA, - 0xD9A9E, 0xD9AE4, 0xDA289]), - (0xFF, [0xD2085, 0xD21C5, 0xD5F28]) + (0x00, [0xD373B, 0xD375B, 0xD90F8]), + (0x14, [0xDA710, 0xDA7A4, 0xDA7BB, 0xDA7D2]), + (0x3C, [0xD5954, 0xD653B, 0xDA736, 0xDA752, 0xDA772, 0xDA792]), + (0x50, [0xD5B47, 0xD5B5E]), + (0x54, [0xD4306]), + (0x64, [0xD6878, 0xD6883, 0xD6E48, 0xD6E76, 0xD6EFB, 0xD6F2D, 0xDA211, 0xDA35B, 0xDA37B, 0xDA38E, 0xDA39F, 0xDA5C3, 0xDA691, 0xDA6A8, 0xDA6DF]), + (0x78, [0xD2349, 0xD3F45, 0xD42EB, 0xD48B9, 0xD48FF, 0xD543F, 0xD5817, 0xD5957, 0xD5ACB, 0xD5AE8, 0xD5B4A, 0xDA5DE, 0xDA608, 0xDA635, + 0xDA662, 0xDA71F, 0xDA7AF, 0xDA7C6, 0xDA7DD]), + (0x82, [0xD2F00, 0xDA3D5]), + (0xA0, [0xD249C, 0xD24CD, 0xD2C09, 0xD2C53, 0xD2CAF, 0xD2CEB, 0xD2D91, 0xD2EE6, 0xD38ED, 0xD3C91, 0xD3CD3, 0xD3CE8, 0xD3F0C, + 0xD3F82, 0xD405F, 0xD4139, 0xD4198, 0xD41D5, 0xD41F6, 0xD422B, 0xD4270, 0xD42B1, 0xD4334, 0xD4371, 0xD43A6, 0xD43DB, + 0xD441E, 0xD4597, 0xD4B3C, 0xD4BAB, 0xD4C03, 0xD4C53, 0xD4C7F, 0xD4D9C, 0xD5424, 0xD65D2, 0xD664F, 0xD6698, 0xD66FF, + 0xD6985, 0xD6C5C, 0xD6C6F, 0xD6C8E, 0xD6CB4, 0xD6D7D, 0xD827D, 0xD960C, 0xD9828, 0xDA233, 0xDA3A2, 0xDA49E, 0xDA72B, + 0xDA745, 0xDA765, 0xDA785, 0xDABF6, 0xDAC0D, 0xDAEBE, 0xDAFAC]), + (0xAA, [0xD9A02, 0xD9BD6]), + (0xB4, [0xD21CD, 0xD2279, 0xD2E66, 0xD2E70, 0xD2EAB, 0xD3B97, 0xD3BAC, 0xD3BE8, 0xD3C0D, 0xD3C39, 0xD3C68, 0xD3C9F, 0xD3CBC, + 0xD401E, 0xD4290, 0xD443E, 0xD456F, 0xD47D3, 0xD4D43, 0xD4DCC, 0xD4EBA, 0xD4F0B, 0xD4FE5, 0xD5012, 0xD54BC, 0xD54D5, + 0xD54F0, 0xD5509, 0xD57D8, 0xD59B9, 0xD5A2F, 0xD5AEB, 0xD5E5E, 0xD5FE9, 0xD658F, 0xD674A, 0xD6827, 0xD69D6, 0xD69F5, + 0xD6A05, 0xD6AE9, 0xD6DCF, 0xD6E20, 0xD6ECB, 0xD71D4, 0xD71E6, 0xD7203, 0xD721E, 0xD8724, 0xD8732, 0xD9652, 0xD9698, + 0xD9CBC, 0xD9DC0, 0xD9E49, 0xDAA68, 0xDAA77, 0xDAA88, 0xDAA99, 0xDAF04]), + (0x8c, [0xD1D28, 0xD1D41, 0xD1D5C, 0xD1D77, 0xD1EEE, 0xD311D, 0xD31D1, 0xD4148, 0xD5543, 0xD5B6F, 0xD65B3, 0xD6760, 0xD6B6B, + 0xD6DF6, 0xD6E0D, 0xD73A1, 0xD814C, 0xD825D, 0xD82BE, 0xD8340, 0xD8394, 0xD842C, 0xD8796, 0xD8903, 0xD892A, 0xD91E8, + 0xD922B, 0xD92E0, 0xD937E, 0xD93C1, 0xDA958, 0xDA971, 0xDA98C, 0xDA9A7]), + (0xC8, [0xD1D92, 0xD1DBD, 0xD1DEB, 0xD1F5D, 0xD1F9F, 0xD1FBD, 0xD1FDC, 0xD1FEA, 0xD20CA, 0xD21BB, 0xD22C9, 0xD2754, 0xD284C, + 0xD2866, 0xD2887, 0xD28A0, 0xD28BA, 0xD28DB, 0xD28F4, 0xD293E, 0xD2BF3, 0xD2C1F, 0xD2C69, 0xD2CA1, 0xD2CC5, 0xD2D05, + 0xD2D73, 0xD2DAF, 0xD2E3D, 0xD2F36, 0xD2F46, 0xD2F6F, 0xD2FCF, 0xD2FDF, 0xD302B, 0xD3086, 0xD3099, 0xD30A5, 0xD30CD, + 0xD30F6, 0xD3154, 0xD3184, 0xD333A, 0xD33D9, 0xD349F, 0xD354A, 0xD35E5, 0xD3624, 0xD363C, 0xD3672, 0xD3691, 0xD36B4, + 0xD36C6, 0xD3724, 0xD3767, 0xD38CB, 0xD3B1D, 0xD3B2F, 0xD3B55, 0xD3B70, 0xD3B81, 0xD3BBF, 0xD3F65, 0xD3FA6, 0xD404F, + 0xD4087, 0xD417A, 0xD41A0, 0xD425C, 0xD4319, 0xD433C, 0xD43EF, 0xD440C, 0xD4452, 0xD4494, 0xD44B5, 0xD4512, 0xD45D1, + 0xD45EF, 0xD4682, 0xD46C3, 0xD483C, 0xD4848, 0xD4855, 0xD4862, 0xD486F, 0xD487C, 0xD4A1C, 0xD4A3B, 0xD4A60, 0xD4B27, + 0xD4C7A, 0xD4D12, 0xD4D81, 0xD4E90, 0xD4ED6, 0xD4EE2, 0xD5005, 0xD502E, 0xD503C, 0xD5081, 0xD51B1, 0xD51C7, 0xD51CF, + 0xD51EF, 0xD520C, 0xD5214, 0xD5231, 0xD5257, 0xD526D, 0xD5275, 0xD52AF, 0xD52BD, 0xD52CD, 0xD52DB, 0xD549C, 0xD5801, + 0xD58A4, 0xD5A68, 0xD5A7F, 0xD5C12, 0xD5D71, 0xD5E10, 0xD5E9A, 0xD5F8B, 0xD5FA4, 0xD651A, 0xD6542, 0xD65ED, 0xD661D, + 0xD66D7, 0xD6776, 0xD68BD, 0xD68E5, 0xD6956, 0xD6973, 0xD69A8, 0xD6A51, 0xD6A86, 0xD6B96, 0xD6C3E, 0xD6D4A, 0xD6E9C, + 0xD6F80, 0xD717E, 0xD7190, 0xD71B9, 0xD811D, 0xD8139, 0xD816B, 0xD818A, 0xD819E, 0xD81BE, 0xD829C, 0xD82E1, 0xD8306, + 0xD830E, 0xD835E, 0xD83AB, 0xD83CA, 0xD83F0, 0xD83F8, 0xD844B, 0xD8479, 0xD849E, 0xD84CB, 0xD84EB, 0xD84F3, 0xD854A, + 0xD8573, 0xD859D, 0xD85B4, 0xD85CE, 0xD862A, 0xD8681, 0xD87E3, 0xD87FF, 0xD887B, 0xD88C6, 0xD88E3, 0xD8944, 0xD897B, + 0xD8C97, 0xD8CA4, 0xD8CB3, 0xD8CC2, 0xD8CD1, 0xD8D01, 0xD917B, 0xD918C, 0xD919A, 0xD91B5, 0xD91D0, 0xD91DD, 0xD9220, + 0xD9273, 0xD9284, 0xD9292, 0xD92AD, 0xD92C8, 0xD92D5, 0xD9311, 0xD9322, 0xD9330, 0xD934B, 0xD9366, 0xD9373, 0xD93B6, + 0xD97A6, 0xD97C2, 0xD97DC, 0xD97FB, 0xD9811, 0xD98FF, 0xD996F, 0xD99A8, 0xD99D5, 0xD9A30, 0xD9A4E, 0xD9A6B, 0xD9A88, + 0xD9AF7, 0xD9B1D, 0xD9B43, 0xD9B7C, 0xD9BA9, 0xD9C84, 0xD9C8D, 0xD9CAC, 0xD9CE8, 0xD9CF3, 0xD9CFD, 0xD9D46, 0xDA35E, + 0xDA37E, 0xDA391, 0xDA478, 0xDA4C3, 0xDA4D7, 0xDA4F6, 0xDA515, 0xDA6E2, 0xDA9C2, 0xDA9ED, 0xDAA1B, 0xDAA57, 0xDABAF, + 0xDABC9, 0xDABE2, 0xDAC28, 0xDAC46, 0xDAC63, 0xDACB8, 0xDACEC, 0xDAD08, 0xDAD25, 0xDAD42, 0xDAD5F, 0xDAE17, 0xDAE34, + 0xDAE51, 0xDAF2E, 0xDAF55, 0xDAF6B, 0xDAF81, 0xDB14F, 0xDB16B, 0xDB180, 0xDB195, 0xDB1AA]), + (0xD2, [0xD2B88, 0xD364A, 0xD369F, 0xD3747]), + (0xDC, [0xD213F, 0xD2174, 0xD229E, 0xD2426, 0xD4731, 0xD4753, 0xD4774, 0xD4795, 0xD47B6, 0xD4AA5, 0xD4AE4, 0xD4B96, 0xD4CA5, + 0xD5477, 0xD5A3D, 0xD6566, 0xD672C, 0xD67C0, 0xD69B8, 0xD6AB1, 0xD6C05, 0xD6DB3, 0xD71AB, 0xD8E2D, 0xD8F0D, 0xD94E0, + 0xD9544, 0xD95A8, 0xD9982, 0xD9B56, 0xDA694, 0xDA6AB, 0xDAE88, 0xDAEC8, 0xDAEE6, 0xDB1BF]), + (0xE6, [0xD210A, 0xD22DC, 0xD2447, 0xD5A4D, 0xD5DDC, 0xDA251, 0xDA26C]), + (0xF0, [0xD945E, 0xD967D, 0xD96C2, 0xD9C95, 0xD9EE6, 0xDA5C6]), + (0xFA, [0xD2047, 0xD24C2, 0xD24EC, 0xD25A4, 0xD51A8, 0xD51E6, 0xD524E, 0xD529E, 0xD6045, 0xD81DE, 0xD821E, 0xD94AA, 0xD9A9E, + 0xD9AE4, 0xDA289]), + (0xFF, [0xD2085, 0xD21C5, 0xD5F28]) ] for volume, addresses in music_volumes: for address in addresses: rom.write_byte(address, volume if not disable_music else 0x00) + # restore Mirror sound effect volumes (for existing seeds that lack it) + rom.write_byte(0xD3E04, 0xC8) + rom.write_byte(0xD3DC6, 0xC8) + rom.write_byte(0xD3D6E, 0xC8) + rom.write_byte(0xD3D34, 0xC8) + rom.write_byte(0xD3D55, 0xC8) + rom.write_byte(0xD3E38, 0xC8) + rom.write_byte(0xD3DAA, 0xFA) + # set heart beep rate rom.write_byte(0x180033, {'off': 0x00, 'half': 0x40, 'quarter': 0x80, 'normal': 0x20}[beep]) + # set heart color + rom.write_byte(0x6FA1E, {'red': 0x24, 'blue': 0x2C, 'green': 0x3C, 'yellow': 0x28}[color]) + rom.write_byte(0x6FA20, {'red': 0x24, 'blue': 0x2C, 'green': 0x3C, 'yellow': 0x28}[color]) + rom.write_byte(0x6FA22, {'red': 0x24, 'blue': 0x2C, 'green': 0x3C, 'yellow': 0x28}[color]) + rom.write_byte(0x6FA24, {'red': 0x24, 'blue': 0x2C, 'green': 0x3C, 'yellow': 0x28}[color]) + rom.write_byte(0x6FA26, {'red': 0x24, 'blue': 0x2C, 'green': 0x3C, 'yellow': 0x28}[color]) + rom.write_byte(0x6FA28, {'red': 0x24, 'blue': 0x2C, 'green': 0x3C, 'yellow': 0x28}[color]) + rom.write_byte(0x6FA2A, {'red': 0x24, 'blue': 0x2C, 'green': 0x3C, 'yellow': 0x28}[color]) + rom.write_byte(0x6FA2C, {'red': 0x24, 'blue': 0x2C, 'green': 0x3C, 'yellow': 0x28}[color]) + rom.write_byte(0x6FA2E, {'red': 0x24, 'blue': 0x2C, 'green': 0x3C, 'yellow': 0x28}[color]) + rom.write_byte(0x6FA30, {'red': 0x24, 'blue': 0x2C, 'green': 0x3C, 'yellow': 0x28}[color]) + rom.write_byte(0x65561, {'red': 0x05, 'blue': 0x0D, 'green': 0x19, 'yellow': 0x09}[color]) + # write link sprite if required if sprite is not None: write_sprite(rom, sprite) diff --git a/Rules.py b/Rules.py index 36b044f18..b96c7fc36 100644 --- a/Rules.py +++ b/Rules.py @@ -1,3 +1,4 @@ +import collections import logging @@ -52,7 +53,7 @@ def add_rule(spot, rule, combine='and'): def add_lamp_requirement(spot): - add_rule(spot, lambda state: state.has('Lamp')) + add_rule(spot, lambda state: state.has('Lamp', state.world.lamps_needed_for_dark_rooms)) def forbid_item(location, item): @@ -86,7 +87,11 @@ def global_rules(world): world.get_region('Old Man House').can_reach = lambda state: state.can_reach('Old Man', 'Location') or old_rule(state) # overworld requirements - set_rule(world.get_entrance('Kings Grave'), lambda state: state.has_Boots() and (state.can_lift_heavy_rocks() or (state.has_Pearl() and state.has_Mirror() and state.can_reach('West Dark World')))) + set_rule(world.get_entrance('Kings Grave'), lambda state: state.has_Boots()) + set_rule(world.get_entrance('Kings Grave Outer Rocks'), lambda state: state.can_lift_heavy_rocks()) + set_rule(world.get_entrance('Kings Grave Inner Rocks'), lambda state: state.can_lift_heavy_rocks()) + set_rule(world.get_entrance('Kings Grave Mirror Spot'), lambda state: state.has_Pearl() and state.has_Mirror()) + # Caution: If king's grave is releaxed at all to account for reaching it via a two way cave's exit in insanity mode, then the bomb shop logic will need to be updated (that would involve create a small ledge-like Region for it) set_rule(world.get_entrance('Bonk Fairy (Light)'), lambda state: state.has_Boots()) set_rule(world.get_location('Sunken Treasure'), lambda state: state.can_reach('Dam')) set_rule(world.get_entrance('Bat Cave Drop Ledge'), lambda state: state.has('Hammer')) @@ -96,7 +101,8 @@ def global_rules(world): set_rule(world.get_entrance('Sanctuary Grave'), lambda state: state.can_lift_rocks()) set_rule(world.get_entrance('20 Rupee Cave'), lambda state: state.can_lift_rocks()) set_rule(world.get_entrance('50 Rupee Cave'), lambda state: state.can_lift_rocks()) - set_rule(world.get_entrance('Old Man Cave (West)'), lambda state: state.can_lift_rocks()) + set_rule(world.get_entrance('Death Mountain Entrance Rock'), lambda state: state.can_lift_rocks()) + set_rule(world.get_entrance('Bumper Cave Entrance Mirror Spot'), lambda state: state.has_Mirror()) set_rule(world.get_entrance('Flute Spot 1'), lambda state: state.has('Ocarina')) set_rule(world.get_entrance('Lake Hylia Central Island Teleporter'), lambda state: state.can_lift_heavy_rocks()) set_rule(world.get_entrance('Dark Desert Teleporter'), lambda state: state.has('Ocarina') and state.can_lift_heavy_rocks()) @@ -119,7 +125,6 @@ def global_rules(world): set_rule(world.get_location('Master Sword Pedestal'), lambda state: state.has('Red Pendant') and state.has('Blue Pendant') and state.has('Green Pendant')) set_rule(world.get_location('Sahasrahla'), lambda state: state.has('Green Pendant')) set_rule(world.get_entrance('Agahnims Tower'), lambda state: state.has('Cape') or state.has_beam_sword() or state.has('Beat Agahnim 1')) # barrier gets removed after killing agahnim, relevant for entrance shuffle - # FIXME: VT has a can_kill_most_things(8) call on Aga Tower's entrance. I think this is supposed to reflect that a better weapon than 10 bombs is needed to reach the two chests in this tower set_rule(world.get_entrance('Agahnim 1'), lambda state: state.has_sword() and state.has('Small Key (Agahnims Tower)', 2)) set_rule(world.get_location('Castle Tower - Dark Maze'), lambda state: state.has('Small Key (Agahnims Tower)')) set_rule(world.get_entrance('Top of Pyramid'), lambda state: state.has('Beat Agahnim 1')) @@ -135,10 +140,11 @@ def global_rules(world): set_rule(world.get_entrance('East Death Mountain (Top)'), lambda state: state.has('Hammer')) set_rule(world.get_location('Catfish'), lambda state: state.can_lift_rocks()) - set_rule(world.get_entrance('Dark World Potion Shop'), lambda state: state.has_Pearl() and (state.can_lift_rocks() or state.has('Hammer') or state.has('Flippers'))) + set_rule(world.get_entrance('Northeast Dark World Broken Bridge Pass'), lambda state: state.has_Pearl() and (state.can_lift_rocks() or state.has('Hammer') or state.has('Flippers'))) + set_rule(world.get_entrance('East Dark World Broken Bridge Pass'), lambda state: state.has_Pearl() and (state.can_lift_rocks() or state.has('Hammer'))) set_rule(world.get_entrance('South Dark World Bridge'), lambda state: state.has('Hammer') and state.has_Pearl()) set_rule(world.get_entrance('Bonk Fairy (Dark)'), lambda state: state.has_Pearl() and state.has_Boots()) - set_rule(world.get_entrance('West Dark World Gap'), lambda state: state.has_Pearl() and state.has('Hookshot') and (state.has('Flippers') or state.has('Hammer') or state.can_lift_rocks())) + set_rule(world.get_entrance('West Dark World Gap'), lambda state: state.has_Pearl() and state.has('Hookshot')) set_rule(world.get_entrance('Palace of Darkness'), lambda state: state.has_Pearl()) # kiki needs pearl set_rule(world.get_entrance('Hyrule Castle Ledge Mirror Spot'), lambda state: state.has_Mirror()) set_rule(world.get_entrance('Hyrule Castle Main Gate'), lambda state: state.has_Mirror()) @@ -153,6 +159,7 @@ def global_rules(world): set_rule(world.get_entrance('Brewery'), lambda state: state.has_Pearl()) # bomb required set_rule(world.get_entrance('Thieves Town'), lambda state: state.has_Pearl()) # bunny cannot pull set_rule(world.get_entrance('Skull Woods First Section Hole (North)'), lambda state: state.has_Pearl()) # bunny cannot lift bush + set_rule(world.get_entrance('Skull Woods Second Section Hole'), lambda state: state.has_Pearl()) # bunny cannot lift bush set_rule(world.get_entrance('Maze Race Mirror Spot'), lambda state: state.has_Mirror()) set_rule(world.get_entrance('Cave 45 Mirror Spot'), lambda state: state.has_Mirror()) set_rule(world.get_entrance('East Dark World Bridge'), lambda state: state.has_Pearl() and state.has('Hammer')) @@ -160,11 +167,14 @@ def global_rules(world): set_rule(world.get_entrance('Lake Hylia Central Island Mirror Spot'), lambda state: state.has_Mirror()) set_rule(world.get_entrance('East Dark World River Pier'), lambda state: state.has_Pearl() and state.has('Flippers')) # ToDo any fake flipper set up? set_rule(world.get_entrance('Graveyard Ledge Mirror Spot'), lambda state: state.has_Pearl() and state.has_Mirror()) - set_rule(world.get_entrance('Bumper Cave (Bottom)'), lambda state: state.has_Pearl() and state.can_lift_rocks()) + set_rule(world.get_entrance('Bumper Cave Entrance Rock'), lambda state: state.has_Pearl() and state.can_lift_rocks()) set_rule(world.get_entrance('Bumper Cave Ledge Mirror Spot'), lambda state: state.has_Mirror()) - set_rule(world.get_entrance('Bat Cave Drop Ledge Mirror Spot'), lambda state: state.has_Pearl() and state.can_lift_heavy_rocks() and state.has_Mirror()) - set_rule(world.get_entrance('Dark World Hammer Peg Cave'), lambda state: state.has_Pearl() and state.can_lift_heavy_rocks() and state.has('Hammer')) - set_rule(world.get_entrance('Dark World Shop'), lambda state: state.has_Pearl() and state.has('Hammer')) + set_rule(world.get_entrance('Bat Cave Drop Ledge Mirror Spot'), lambda state: state.has_Mirror()) + set_rule(world.get_entrance('Dark World Hammer Peg Cave'), lambda state: state.has_Pearl() and state.has('Hammer')) + set_rule(world.get_entrance('Village of Outcasts Eastern Rocks'), lambda state: state.has_Pearl() and state.can_lift_heavy_rocks()) + set_rule(world.get_entrance('Peg Area Rocks'), lambda state: state.has_Pearl() and state.can_lift_heavy_rocks()) + set_rule(world.get_entrance('Village of Outcasts Pegs'), lambda state: state.has_Pearl() and state.has('Hammer')) + set_rule(world.get_entrance('Grassy Lawn Pegs'), lambda state: state.has_Pearl() and state.has('Hammer')) set_rule(world.get_entrance('Bumper Cave Exit (Top)'), lambda state: state.has('Cape')) set_rule(world.get_entrance('Bumper Cave Exit (Bottom)'), lambda state: state.has('Cape') or state.has('Hookshot')) @@ -185,20 +195,13 @@ def global_rules(world): set_rule(world.get_entrance('Fairy Ascension Mirror Spot'), lambda state: state.has_Mirror() and state.has_Pearl()) # need to lift flowers set_rule(world.get_entrance('Isolated Ledge Mirror Spot'), lambda state: state.has_Mirror()) set_rule(world.get_entrance('Superbunny Cave Exit (Bottom)'), lambda state: False) # Cannot get to bottom exit from top. Just exists for shuffling + set_rule(world.get_location('Spike Cave'), lambda state: state.has('Hammer') and state.can_lift_rocks() and - ( - ( - state.has('Cape') - and (state.can_extend_magic(16) - or (state.can_extend_magic(12) and (state.world.can_take_damage or state.has_Boots())) - or (state.can_extend_magic(10) and state.world.can_take_damage and state.has_Boots())) - ) or ( - state.has('Cane of Byrna') - and (state.can_extend_magic(12) - or (state.can_extend_magic(10) and (state.has_Boots() or state.world.can_take_damage)) - or (state.world.can_take_damage and (state.has_Boots() or state.has_hearts(4))))) - ) + ((state.has('Cape') and state.can_extend_magic(16, True)) or + (state.has('Cane of Byrna') and + (state.can_extend_magic(12, True) or + (state.world.can_take_damage and (state.has_Boots() or state.has_hearts(4)))))) ) set_rule(world.get_location('Hookshot Cave - Top Right'), lambda state: state.has('Hookshot')) @@ -257,7 +260,7 @@ def global_rules(world): set_rule(world.get_entrance('Thieves Town Big Key Door'), lambda state: state.has('Big Key (Thieves Town)')) set_rule(world.get_entrance('Blind Fight'), lambda state: state.has('Small Key (Thieves Town)') and (state.has_blunt_weapon() or state.has('Cane of Somaria') or state.has('Cane of Byrna'))) set_rule(world.get_location('Thieves\' Town - Big Chest'), lambda state: (state.has('Small Key (Thieves Town)') or item_name(state, 'Thieves\' Town - Big Chest') == 'Small Key (Thieves Town)') and state.has('Hammer')) - set_always_allow(world.get_location('Thieves\' Town - Big Chest'), lambda state, item: item.name == 'Small Key (Thieves Town)') + set_always_allow(world.get_location('Thieves\' Town - Big Chest'), lambda state, item: item.name == 'Small Key (Thieves Town)' and state.has('Hammer')) set_rule(world.get_location('Thieves\' Town - Attic'), lambda state: state.has('Small Key (Thieves Town)')) for location in ['Thieves\' Town - Attic', 'Thieves\' Town - Big Chest', 'Thieves\' Town - Blind\'s Cell', 'Thieves Town - Blind']: forbid_item(world.get_location(location), 'Big Key (Thieves Town)') @@ -316,8 +319,8 @@ def global_rules(world): set_rule(world.get_location('Turtle Rock - Eye Bridge - Top Left'), lambda state: state.has('Cane of Byrna') or state.has('Cape') or state.has('Mirror Shield')) set_rule(world.get_location('Turtle Rock - Eye Bridge - Top Right'), lambda state: state.has('Cane of Byrna') or state.has('Cape') or state.has('Mirror Shield')) set_rule(world.get_entrance('Turtle Rock (Trinexx)'), lambda state: state.has('Small Key (Turtle Rock)', 4) and state.has('Big Key (Turtle Rock)') and state.has('Cane of Somaria') and state.has('Fire Rod') and state.has('Ice Rod') and - (state.has('Hammer') or state.has_beam_sword() or (state.has_sword and state.can_extend_magic(32)))) - # TODO: Per VT, possibly allow a regular sword with 4x extended magic (ie. quater magic, or half magic+bottle or 3 bottles) + (state.has('Hammer') or state.has_beam_sword() or (state.has_sword() and state.can_extend_magic(32)))) + set_trock_key_rules(world) set_rule(world.get_entrance('Palace of Darkness Bonk Wall'), lambda state: state.has('Bow')) @@ -434,9 +437,9 @@ def add_conditional_lamp(spot, region, spottype='Location'): add_conditional_lamp('Eastern Palace - Prize', 'Eastern Palace', 'Location') if not world.sewer_light_cone: - add_rule(world.get_location('Sewers - Dark Cross'), lambda state: state.has('Lamp')) - add_rule(world.get_entrance('Sewers Back Door'), lambda state: state.has('Lamp')) - add_rule(world.get_entrance('Throne Room'), lambda state: state.has('Lamp')) + add_lamp_requirement(world.get_location('Sewers - Dark Cross')) + add_lamp_requirement(world.get_entrance('Sewers Back Door')) + add_lamp_requirement(world.get_entrance('Throne Room')) def open_rules(world): @@ -450,7 +453,7 @@ def open_rules(world): def swordless_rules(world): - # for the time being swordless mode just inhierits all fixes from open mode. + # for the time being swordless mode just inherits all fixes from open mode. # should there ever be fixes that apply to open mode but not swordless, this # can be revisited. open_rules(world) @@ -470,9 +473,12 @@ def swordless_rules(world): def standard_rules(world): + for loc in ['Sanctuary','Sewers - Secret Room - Left', 'Sewers - Secret Room - Middle', + 'Sewers - Secret Room - Right']: + add_rule(world.get_location(loc), lambda state: state.can_kill_most_things() and state.has('Small Key (Escape)')) + # easiest way to enforce key placement not relevant for open set_rule(world.get_location('Sewers - Dark Cross'), lambda state: state.can_kill_most_things()) - add_rule(world.get_entrance('Sewers Door'), lambda state: state.can_kill_most_things()) set_rule(world.get_location('Hyrule Castle - Boomerang Chest'), lambda state: state.can_kill_most_things()) set_rule(world.get_location('Hyrule Castle - Zelda\'s Chest'), lambda state: state.can_kill_most_things()) @@ -545,7 +551,7 @@ def set_big_bomb_rules(world): Normal_LW_entrances = ['Blinds Hideout', 'Bonk Fairy (Light)', 'Lake Hylia Fairy', - 'Swamp Fairy', + 'Light Hype Fairy', 'Desert Fairy', 'Chicken House', 'Aginahs Cave', @@ -574,14 +580,26 @@ def set_big_bomb_rules(world): 'Dam', 'Lumberjack House', 'Lake Hylia Fortune Teller', - 'Kakariko Gamble Game'] + 'Eastern Palace', + 'Kakariko Gamble Game', + 'Kakariko Well Cave', + 'Bat Cave Cave', + 'Elder House (East)', + 'Elder House (West)', + 'North Fairy Cave', + 'Lost Woods Hideout Stump', + 'Lumberjack Tree Cave', + 'Two Brothers House (East)', + 'Sanctuary', + 'Hyrule Castle Entrance (South)', + 'Hyrule Castle Secret Entrance Stairs'] LW_walkable_entrances = ['Dark Lake Hylia Ledge Fairy', 'Dark Lake Hylia Ledge Spike Cave', 'Dark Lake Hylia Ledge Hint', 'Mire Shed', 'Dark Desert Hint', 'Dark Desert Fairy', - 'Checkerboard Cave'] + 'Misery Mire'] Northern_DW_entrances = ['Brewery', 'C-Shaped House', 'Chest Game', @@ -591,88 +609,238 @@ def set_big_bomb_rules(world): 'Fortune Teller (Dark)', 'Dark World Shop', 'Dark World Lumberjack Shop', - 'Graveyard Cave'] + 'Thieves Town', + 'Skull Woods First Section Door', + 'Skull Woods Second Section Door (East)'] Southern_DW_entrances = ['Hype Cave', 'Bonk Fairy (Dark)', 'Archery Game', 'Big Bomb Shop', 'Dark Lake Hylia Shop', - 'Cave 45'] + 'Swamp Palace'] Isolated_DW_entrances = ['Spike Cave', 'Cave Shop (Dark Death Mountain)', 'Dark Death Mountain Fairy', - 'Mimic Cave'] + 'Mimic Cave', + 'Skull Woods Second Section Door (West)', + 'Skull Woods Final Section', + 'Ice Palace', + 'Turtle Rock', + 'Dark Death Mountain Ledge (West)', + 'Dark Death Mountain Ledge (East)', + 'Bumper Cave (Top)', + 'Superbunny Cave (Top)', + 'Superbunny Cave (Bottom)', + 'Hookshot Cave', + 'Ganons Tower', + 'Turtle Rock Isolated Ledge Entrance', + 'Hookshot Cave Back Entrance'] Isolated_LW_entrances = ['Capacity Upgrade', - 'Hookshot Fairy'] + 'Tower of Hera', + 'Death Mountain Return Cave (West)', + 'Paradox Cave (Top)', + 'Fairy Ascension Cave (Top)', + 'Spiral Cave', + 'Desert Palace Entrance (East)'] + West_LW_DM_entrances = ['Old Man Cave (East)', + 'Old Man House (Bottom)', + 'Old Man House (Top)', + 'Death Mountain Return Cave (East)', + 'Spectacle Rock Cave Peak', + 'Spectacle Rock Cave', + 'Spectacle Rock Cave (Bottom)'] + East_LW_DM_entrances = ['Paradox Cave (Bottom)', + 'Paradox Cave (Middle)', + 'Hookshot Fairy', + 'Spiral Cave (Bottom)'] + Mirror_from_SDW_entrances = ['Two Brothers House (West)', + 'Cave 45'] + Castle_ledge_entrances = ['Hyrule Castle Entrance (West)', + 'Hyrule Castle Entrance (East)', + 'Agahnims Tower'] + Desert_mirrorable_ledge_entrances = ['Desert Palace Entrance (West)', + 'Desert Palace Entrance (North)', + 'Desert Palace Entrance (South)', + 'Checkerboard Cave',] + set_rule(world.get_entrance('Pyramid Fairy'), lambda state: state.can_reach('East Dark World', 'Region') and state.can_reach('Big Bomb Shop', 'Region') and state.has('Crystal 5') and state.has('Crystal 6')) + + #crossing peg bridge starting from the southern dark world + def cross_peg_bridge(state): + return state.has('Hammer') and state.has_Pearl() + + # returning via the eastern and southern teleporters needs the same items, so we use the southern teleporter for out routing. + # crossing preg bridge already requires hammer so we just add the gloves to the requirement + def southern_teleporter(state): + return state.can_lift_rocks() and cross_peg_bridge(state) + + # the basic routes assume you can reach eastern light world with the bomb. + # you can then use the southern teleporter, or (if you have beaten Aga1) the hyrule castle gate warp + def basic_routes(state): + return southern_teleporter(state) or state.can_reach('Top of Pyramid', 'Entrance') + + # Key for below abbreviations: + # P = pearl + # A = Aga1 + # H = hammer + # M = Mirror + # G = Glove + if bombshop_entrance.name in Normal_LW_entrances: - #1. Enter via gate: Needs Aga1 - #2. south hyrule teleporter and cross peg bridge: Hammer and moon pearl - #3. Can reach Eastern dark world some other way, mirror, get bomb, return to mirror spot, walk to pyramid: Needs mirror - # -> A or (H and P)) or (M) - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: state.can_reach('Top of Pyramid', 'Entrance') or (state.has('Hammer') and state.has_Pearl()) or state.has_Mirror()) + #1. basic routes + #2. Can reach Eastern dark world some other way, mirror, get bomb, return to mirror spot, walk to pyramid: Needs mirror + # -> M or BR + add_rule(world.get_entrance('Pyramid Fairy'), lambda state: basic_routes(state) or state.has_Mirror()) elif bombshop_entrance.name in LW_walkable_entrances: - #1. Mirror then gate: Needs mirror and Aga1 - #2. Mirror then go to south hyrule teleporter and cross peg bridge: Needs Mirror and Hammer and moon pearl - # -> M and (A or (H and P)) - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: state.has_Mirror() and (state.can_reach('Top of Pyramid', 'Entrance') or (state.has('Hammer') and state.has_Pearl()))) + #1. Mirror then basic routes + # -> M and BR + add_rule(world.get_entrance('Pyramid Fairy'), lambda state: state.has_Mirror() and basic_routes(state)) elif bombshop_entrance.name in Northern_DW_entrances: - #1. Mirror and enter via gate: Need mirror and Aga1 - #2. Mirror and enter via south hyrule teleporter: Need mirror and hammer and moon pearl + #1. Mirror and basic routes + #2. Go to south DW and then cross peg bridge: Need Mitts and hammer and moon pearl + # -> (Mitts and CPB) or (M and BR) + add_rule(world.get_entrance('Pyramid Fairy'), lambda state: (state.can_lift_heavy_rocks() and cross_peg_bridge(state)) or (state.has_Mirror() and basic_routes(state))) + elif bombshop_entrance.name == 'Bumper Cave (Bottom)': + #1. Mirror and Lift rock and basic_routes + #2. Mirror and Flute and basic routes (can make difference if accessed via insanity or w/ mirror from connector, and then via hyrule castle gate, because no gloves are needed in that case) #3. Go to south DW and then cross peg bridge: Need Mitts and hammer and moon pearl - # -> (Mitts and P and H) or (M and (A or (H and P))) - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: (state.can_lift_heavy_rocks() and state.has_Pearl() and state.has('Hammer')) or (state.has_Mirror() and (state.can_reach('Top of Pyramid', 'Entrance') or (state.has('Hammer') and state.has_Pearl())))) + # -> (Mitts and CPB) or (((G or Flute) and M) and BR)) + add_rule(world.get_entrance('Pyramid Fairy'), lambda state: (state.can_lift_heavy_rocks() and cross_peg_bridge(state)) or (((state.can_lift_rocks() or state.has('Ocarina')) and state.has_Mirror()) and basic_routes(state))) elif bombshop_entrance.name in Southern_DW_entrances: #1. Mirror and enter via gate: Need mirror and Aga1 #2. cross peg bridge: Need hammer and moon pearl - # -> (H and P) or (M and A) - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: (state.has('Hammer') and state.has_Pearl()) or (state.has_Mirror() and state.can_reach('Top of Pyramid', 'Entrance'))) + # -> CPB or (M and A) + add_rule(world.get_entrance('Pyramid Fairy'), lambda state: cross_peg_bridge(state) or (state.has_Mirror() and state.can_reach('Top of Pyramid', 'Entrance'))) elif bombshop_entrance.name in Isolated_DW_entrances: - # 1. mirror then flute then enter via gate: Needs mirror and flute and Aga 1 - # 2. mirror then flute then enter via south hyrule teleporter: Needs mirror and Flute and hammer and moon pearl - # -> M and Flute and (A or (H and P)) - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: state.has_Mirror() and state.has('Ocarina') and (state.can_reach('Top of Pyramid', 'Entrance') or (state.has('Hammer') and state.has_Pearl()))) + # 1. mirror then flute then basic routes + # -> M and Flute and BR + add_rule(world.get_entrance('Pyramid Fairy'), lambda state: state.has_Mirror() and state.has('Ocarina') and basic_routes(state)) elif bombshop_entrance.name in Isolated_LW_entrances: - # 1. flute then enter via gate: Needs flute and Aga 1 - # 2. flute then enter via south hyrule teleporter: Needs Flute and hammer and moon pearl + # 1. flute then basic routes # Prexisting mirror spot is not permitted, because mirror might have been needed to reach these isolated locations. - # -> Flute and (A or (H and P)) - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: state.has('Ocarina') and (state.can_reach('Top of Pyramid', 'Entrance') or (state.has('Hammer') and state.has_Pearl()))) + # -> Flute and BR + add_rule(world.get_entrance('Pyramid Fairy'), lambda state: state.has('Ocarina') and basic_routes(state)) + elif bombshop_entrance.name in West_LW_DM_entrances: + # 1. flute then basic routes or mirror + # Prexisting mirror spot is permitted, because flute can be used to reach west DM directly. + # -> Flute and (M or BR) + add_rule(world.get_entrance('Pyramid Fairy'), lambda state: state.has('Ocarina') and (state.has_Mirror() or basic_routes(state))) + elif bombshop_entrance.name in East_LW_DM_entrances: + # 1. flute then basic routes or mirror and hookshot + # Prexisting mirror spot is permitted, because flute can be used to reach west DM directly and then east DM via Hookshot + # -> Flute and ((M and Hookshot) or BR) + add_rule(world.get_entrance('Pyramid Fairy'), lambda state: state.has('Ocarina') and ((state.has_Mirror() and state.has('Hookshot')) or basic_routes(state))) + elif bombshop_entrance.name == 'Fairy Ascension Cave (Bottom)': + # Same as East_LW_DM_entrances except navigation without BR requires Mitts + # -> Flute and ((M and Hookshot and Mitts) or BR) + add_rule(world.get_entrance('Pyramid Fairy'), lambda state: state.has('Ocarina') and ((state.has_Mirror() and state.has('Hookshot') and state.can_lift_heavy_rocks()) or basic_routes(state))) + elif bombshop_entrance.name in Castle_ledge_entrances: + # 1. mirror on pyramid to castle ledge, grab bomb, return through mirror spot: Needs mirror + # 2. flute then basic routes + # -> M or (Flute and BR) + add_rule(world.get_entrance('Pyramid Fairy'), lambda state: state.has_Mirror() or (state.has('Ocarina') and basic_routes(state))) + elif bombshop_entrance.name in Desert_mirrorable_ledge_entrances: + # Cases when you have mire access: Mirror to reach locations, return via mirror spot, move to center of desert, mirror anagin and: + # 1. Have mire access, Mirror to reach locations, return via mirror spot, move to center of desert, mirror again and then basic routes + # 2. flute then basic routes + # -> (Mire access and M) or Flute) and BR + add_rule(world.get_entrance('Pyramid Fairy'), lambda state: ((state.can_reach('Dark Desert', 'Region') and state.has_Mirror()) or state.has('Ocarina')) and basic_routes(state)) + elif bombshop_entrance.name == 'Old Man Cave (West)': + # 1. Lift rock then basic_routes + # 2. flute then basic_routes + # -> (Flute or G) and BR + add_rule(world.get_entrance('Pyramid Fairy'), lambda state: (state.has('Ocarina') or state.can_lift_rocks()) and basic_routes(state)) + elif bombshop_entrance.name == 'Graveyard Cave': + # 1. flute then basic routes + # 2. (has west dark world access) use existing mirror spot (required Pearl), mirror again off ledge + # -> (Flute or (M and P and West Dark World access) and BR + add_rule(world.get_entrance('Pyramid Fairy'), lambda state: (state.has('Ocarina') or (state.can_reach('West Dark World', 'Region') and state.has_Pearl() and state.has_Mirror())) and basic_routes(state)) + elif bombshop_entrance.name in Mirror_from_SDW_entrances: + # 1. flute then basic routes + # 2. (has South dark world access) use existing mirror spot, mirror again off ledge + # -> (Flute or (M and South Dark World access) and BR + add_rule(world.get_entrance('Pyramid Fairy'), lambda state: (state.has('Ocarina') or (state.can_reach('South Dark World', 'Region') and state.has_Mirror())) and basic_routes(state)) elif bombshop_entrance.name == 'Dark World Potion Shop': # 1. walk down by lifting rock: needs gloves and pearl` # 2. walk down by hammering peg: needs hammer and pearl - # 3. mirror and eneter via gate: needs Mirror and Aga1 - # (south hyrule teleporter would be redundant with #2) - # -> P and (H or H) or (M and A) - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: (state.has_Pearl() and (state.has('Hammer') or state.can_lift_rocks())) or (state.has_Mirror() and state.can_reach('Top of Pyramid', 'Entrance'))) + # 3. mirror and basic routes + # -> (P and (H or Gloves)) or (M and BR) + add_rule(world.get_entrance('Pyramid Fairy'), lambda state: (state.has_Pearl() and (state.has('Hammer') or state.can_lift_rocks())) or (state.has_Mirror() and basic_routes(state))) elif bombshop_entrance.name == 'Kings Grave': # same as the Normal_LW_entrances case except that the pre-existing mirror is only possible if you have mitts # (because otherwise mirror was used to reach the grave, so would cancel a pre-existing mirror spot) - # -> A or (H and P) or (M and Mitts) - add_rule(world.get_entrance('Pyramid Fairy'), lambda state: state.can_reach('Top of Pyramid', 'Entrance') or (state.has('Hammer') and state.has_Pearl()) or (state.can_lift_heavy_rocks() and state.has_Mirror())) + # to account for insanity, must consider a way to escape without a cave for basic_routes + # -> (M and Mitts) or ((Mitts or Flute or (M and P and West Dark World access)) and BR) + add_rule(world.get_entrance('Pyramid Fairy'), lambda state: (state.can_lift_heavy_rocks() and state.has_Mirror()) or ((state.can_lift_heavy_rocks() or state.has('Ocarina') or (state.can_reach('West Dark World', 'Region') and state.has_Pearl() and state.has_Mirror())) and basic_routes(state))) def set_bunny_rules(world): - # regions for the extis of multi-entrace caves/drops that bunny cannot pass + # regions for the exits of multi-entrace caves/drops that bunny cannot pass # Note spiral cave may be technically passible, but it would be too absurd to require since OHKO mode is a thing. bunny_impassable_caves = ['Bumper Cave', 'Two Brothers House', 'Hookshot Cave', 'Skull Woods First Section (Right)', 'Skull Woods First Section (Left)', 'Skull Woods First Section (Top)', 'Turtle Rock (Entrance)', 'Turtle Rock (Second Section)', 'Turtle Rock (Big Chest)', 'Skull Woods Second Section (Drop)', - 'Turtle Rock (Eye Bridge)', 'Sewers', 'Pyramid', 'Spiral Cave (Top)'] + 'Turtle Rock (Eye Bridge)', 'Sewers', 'Pyramid', 'Spiral Cave (Top)', 'Desert Palace Main (Inner)'] bunny_accessible_locations = ['Link\'s Uncle', 'Sahasrahla', 'Sick Kid', 'Lost Woods Hideout', 'Lumberjack Tree', 'Checkerboard Cave', 'Potion Shop', 'Spectacle Rock Cave', 'Pyramid', 'Hype Cave - Generous Guy', 'Peg Cave', 'Bumper Cave Ledge'] - # Add pearl requirements for bunny-impassible caves if they occur in the dark world + if world.get_region('Dam').is_dark_world: + # if Dam is is dark world, then it is required to have the pearl to get the sunken item + add_rule(world.get_location('Sunken Treasure'), lambda state: state.has_Pearl()) + # similarly we need perl to get across the swamp palace moat + add_rule(world.get_entrance('Swamp Palace Moat'), lambda state: state.has_Pearl()) + + def path_to_access_rule(path, entrance): + return lambda state: state.can_reach(entrance) and all(rule(state) for rule in path) + + def options_to_access_rule(options): + return lambda state: any(rule(state) for rule in options) + + def get_rule_to_add(region): + if not region.is_light_world: + return lambda state: state.has_Pearl() + # in this case we are mixed region. + # we collect possible options. + + # The base option is having the moon pearl + possible_options = [lambda state: state.has_Pearl()] + + # We will search entrances recursively until we find + # one that leads to an exclusively light world region + # for each such entrance a new option ios aded that consist of: + # a) being able to reach it, and + # b) being able to access all entrances from there to `region` + seen = set([region]) + queue = collections.deque([(region, [])]) + while queue: + (current, path) = queue.popleft() + for entrance in current.entrances: + new_region = entrance.parent_region + if new_region in seen: + continue + new_path = path + [entrance.access_rule] + seen.add(new_region) + if not new_region.is_light_world: + continue # we don't care about pure dark world entrances + if new_region.is_dark_world: + queue.append((new_region, new_path)) + else: + # we have reached pure light world, so we have a new possible option + possible_options.append(path_to_access_rule(new_path, entrance)) + return options_to_access_rule(possible_options) + + # Add requirements for bunny-impassible caves if they occur in the dark world for region in [world.get_region(name) for name in bunny_impassable_caves]: - if region.is_light_world: + if not region.is_dark_world: continue + rule = get_rule_to_add(region) for exit in region.exits: - add_rule(exit, lambda state: state.has_Pearl()) + add_rule(exit, rule) - # Add a moon pearl requirement for all locations that are actually in the dark world, except those available to the bunny + # Add requirements for all locations that are actually in the dark world, except those available to the bunny for location in world.get_locations(): - if not location.parent_region.is_light_world: + if location.parent_region.is_dark_world: if location.name in bunny_accessible_locations: continue - add_rule(location, lambda state: state.has_Pearl()) + add_rule(location, get_rule_to_add(location.parent_region)) diff --git a/data/base2current.json b/data/base2current.json index a08430e02..dafa88767 100644 --- a/data/base2current.json +++ b/data/base2current.json @@ -1 +1 @@ -[{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"204":[92,66,128,161]},{"2379":[34,181,128,160]},{"18169":[191,193,186,160]},{"20581":[49]},{"20636":[49,49]},{"20804":[168]},{"20859":[160,176]},{"21027":[0]},{"21082":[0,0]},{"21809":[92,7,177,160]},{"21847":[34,223,177,160,234]},{"24418":[92,253,229]},{"24422":[234,234]},{"26189":[92,140,229,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[238,151,160]},{"30994":[95,152,160]},{"31001":[238,151,160]},{"31011":[95,152,160]},{"31046":[146,196,160]},{"31102":[34,110,142,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[127,196,160]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,217,176,160,234,234,234,234]},{"53095":[34,251,196,160]},{"59775":[1,8]},{"59778":[1,7]},{"60790":[122,197,160]},{"61077":[24,161,160]},{"61110":[34,246,174,160,234]},{"62723":[34,232,129,160]},{"65511":[34,155,212,160]},{"65778":[34,186,133,160,234,234]},{"65894":[34,105,173,160]},{"66284":[34,140,173,160]},{"66292":[92,69,225,160]},{"67552":[34,49,221,160,234,234,234,234,234]},{"67619":[34,143,128,160]},{"67793":[34,15,198,160,234,234]},{"67934":[119,226,160]},{"68495":[34,105,143,160,208,6,234]},{"68584":[119,226,160]},{"69776":[34,105,143,160,208,4,234]},{"70410":[119,226,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,62,225,160,234]},{"72216":[121,196,160]},{"72241":[34,105,173,160]},{"72893":[100,17,234,234]},{"72927":[234,234,234,234]},{"72944":[100,17,234,234]},{"73041":[34,68,143,160]},{"73263":[251,211,160]},{"73734":[100,205,160,234,234,234,234]},{"73937":[34,121,173,160]},{"76423":[34,160,212,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"78178":[34,166,197,160,34,110,142,160,234,234]},{"79603":[34,133,196,160]},{"79767":[34,30,198,160]},{"82676":[119,226,160]},{"87892":[34,28,225,160,234,234,234,234,234]},{"88263":[34,193,211,160]},{"88488":[4]},{"90651":[34,236,211,160,234,234]},{"130070":[177,198,249,201,198,249]},{"166331":[34,68,143,160]},{"170621":[156,232,28,234]},{"173045":[83,161,160]},{"173058":[83,161,160]},{"173307":[83,161,160]},{"173320":[83,161,160]},{"183384":[34,197,225,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187779":[156,232,28,234]},{"187802":[34,68,143,160]},{"187819":[234,234,234,234]},{"187902":[34,91,143,160]},{"187922":[29,128,162]},{"188010":[234,234,234,234]},{"188063":[37,209,160]},{"188153":[0]},{"188213":[0,128,162]},{"188261":[34,0,128,164,96]},{"188337":[34,131,140,160]},{"189655":[34,150,174,160,234,234]},{"189691":[234,234,234,234]},{"191204":[29,128,162]},{"191235":[234,234,234,234]},{"191439":[34,170,175,160,234,234]},{"191750":[156,232,28,234]},{"191760":[234,234,234,234,234]},{"191783":[234,234,234,234]},{"191797":[234,234,234,234]},{"191944":[234,234,234,234]},{"191967":[34,186,175,160,234,234]},{"192037":[34,91,143,160]},{"192057":[29,128,162]},{"192083":[34,3,134,160,234,234]},{"192095":[34,74,174,160,234]},{"192121":[108,174,160]},{"192140":[34,176,134,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,3,131,160]},{"192350":[74,131,160]},{"192378":[176,130,160]},{"192463":[113,130,160]},{"192506":[34,22,131,160,234,234,234,234,234,234]},{"192561":[122,130,160]},{"192650":[34,60,130,160,176,24,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192877":[179,128,162]},{"192887":[34,245,133,160]},{"192893":[34,91,143,160]},{"192913":[29,128,162]},{"192937":[179,128,162]},{"192957":[179,128,162]},{"192975":[179,128,162]},{"192985":[179,128,162]},{"193005":[234,234,234,234]},{"193014":[34,68,143,160]},{"193025":[129,134,160]},{"193033":[34,68,143,160]},{"193042":[234,234,234,234]},{"193140":[34,148,159,160]},{"193157":[34,141,159,160]},{"193440":[34,202,194,160]},{"193472":[142,208,160]},{"193546":[34,202,194,160]},{"193578":[247,207,160]},{"193854":[34,12,134,160]},{"193859":[32]},{"193888":[6,174,160]},{"194141":[34,133,174,160,234,234,234,234,234]},{"194177":[34,38,174,160,96,234,234,234,234,234,234,234,234]},{"194806":[29,128,162]},{"195327":[34,179,133,160,240,2,96,234]},{"195440":[234,234,234,234]},{"195522":[234,234,234,234]},{"195539":[34,233,176,160]},{"195589":[88,156,160]},{"195710":[34,110,156,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[46,156,160]},{"195909":[57,156,160]},{"196477":[34,91,143,160]},{"196497":[34,68,143,160]},{"197750":[186,171,160]},{"198721":[34,198,193,160,234,234]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,216,133,160]},{"199950":[34,252,133,160]},{"199964":[37,156,160]},{"199993":[34,69,156,160]},{"200070":[34,202,133,160]},{"200470":[34,195,133,160]},{"200845":[34,209,133,160,201]},{"200851":[240]},{"200853":[34,209,133,160]},{"200858":[8]},{"200893":[34,216,133,160]},{"201132":[34,207,220,160,234,234]},{"208729":[92,193,176,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[225,133,160]},{"208994":[34,216,133,160,234,234]},{"209010":[139]},{"209017":[29,128,162]},{"209071":[234,234,234,234]},{"209098":[112,134,160]},{"209199":[41,247]},{"209579":[29,128,162]},{"209945":[29,128,162]},{"209976":[234,234,234,234]},{"210032":[234,234,234,234]},{"210057":[92,240,194,160,234,234,234,234]},{"210069":[234,234,234,234]},{"210081":[234,234,234,234]},{"210164":[39,134,160]},{"210233":[29,128,162]},{"211398":[234,234,234,234]},{"211413":[95,134,160]},{"212293":[0,128,162]},{"212575":[234,234,234,234]},{"213169":[45,131,160]},{"214100":[169,0,234]},{"215334":[92,228,193,160,234,234,234,234,234,234,234,234,234,234,234,234]},{"215373":[252,204,160]},{"217490":[34,226,196,160]},{"217579":[34,92,172,160]},{"224597":[34,22,194,160]},{"225501":[34,219,220,160,234,234]},{"225992":[34,116,222,160]},{"226026":[34,222,194,160,234]},{"226304":[34,71,194,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,126,212,160]},{"230816":[178,159,160]},{"230955":[178,159,160]},{"233256":[180,141,160]},{"233266":[34,165,128,160]},{"233297":[34,135,212,160,234]},{"233987":[22,196,160]},{"234731":[34,115,196,160]},{"234747":[34,146,212,160]},{"235953":[34,203,130,160,144,3]},{"236024":[44,181,160]},{"236047":[60,172,160]},{"238447":[234,234,234,234,234]},{"238458":[64,176,160]},{"238498":[34,3,175,160,128,3]},{"238751":[34,42,195,160]},{"238964":[34,42,195,160]},{"239190":[34,42,195,160]},{"239964":[192,197,160]},{"241065":[16]},{"241115":[34,104,194,160]},{"241165":[34,104,194,160]},{"241175":[34,158,221,160]},{"241294":[34,104,194,160]},{"241814":[34,104,194,160,24,125,139,176]},{"241868":[234,234,234,234]},{"241877":[34,104,194,160,24,125,139,176]},{"242973":[255]},{"243003":[255]},{"243060":[34,63,197,160,234]},{"243067":[234,234,34,126,192,160,234]},{"250411":[34,79,221,160,234,234]},{"250420":[34,134,194,160,234]},{"250478":[34,168,194,160,234]},{"273608":[34,152,162,160,76,230,172]},{"275716":[34,124,162,160,234]},{"276202":[34,179,162,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279601":[34,156,128,160,234]},{"279644":[107,131,160,34,195,212,160,234,234]},{"280045":[234,234,234]},{"280055":[234,234,234,234,234]},{"280062":[234,234,234,234]},{"280265":[193,186,160]},{"280287":[209,185,160]},{"280314":[193,186,160]},{"280335":[92,69,160,160,234]},{"281914":[234,234,234,234]},{"283541":[34,86,173,160,234,234]},{"285881":[34,104,194,160]},{"285891":[34,105,221,160]},{"296429":[34,230,177,160,234]},{"296466":[177,187]},{"296471":[178,187]},{"296480":[145,189]},{"296488":[177,187]},{"296493":[178,187]},{"296502":[145,189,34,0,128,160]},{"296583":[34,68,143,160]},{"296619":[129,190]},{"296810":[225,184]},{"297038":[1,183]},{"297052":[241,183]},{"297087":[34,231,130,160,234,176]},{"297144":[209,185]},{"297200":[1,183]},{"297225":[241,183]},{"297263":[130,191]},{"297292":[34,19,174,160]},{"297309":[137,191]},{"304330":[240]},{"304340":[240]},{"304350":[240]},{"304360":[240]},{"304370":[240]},{"304380":[240]},{"304390":[240]},{"304400":[240]},{"304410":[240]},{"304420":[240]},{"304430":[240]},{"304440":[240]},{"304765":[92,90,128,162]},{"313527":[189,247]},{"324619":[34,158,141,160]},{"324675":[34,41,197,160]},{"324896":[34,67,129,160,34,17,197,160,234,234,234,234,234,234]},{"324996":[34,121,173,160]},{"325565":[6,31,64,18,1,63,20,1,63,19,31,66,26,31,75,26,32,75,37,45,63,41,32,63,42,60,63]},{"342245":[34,239,129,160,34,173,196,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"343854":[0,1]},{"343880":[50]},{"343898":[50]},{"344082":[234,234,234,234,234,234,234,234,34,91,143,160]},{"344119":[34,91,143,160]},{"344185":[34,91,143,160]},{"344248":[34,91,143,160]},{"344312":[34,91,143,160]},{"344375":[34,91,143,160]},{"344441":[34,91,143,160]},{"344499":[34,91,143,160]},{"344565":[34,91,143,160]},{"344623":[34,91,143,160]},{"344689":[34,91,143,160]},{"344747":[34,91,143,160]},{"344813":[34,91,143,160]},{"344871":[34,91,143,160]},{"344937":[34,91,143,160]},{"345406":[34,137,142,160]},{"345531":[34,156,142,160,96]},{"345560":[34,156,142,160,96]},{"393133":[127,196,160]},{"412057":[234,234,234,234]},{"413109":[34,47,238,160]},{"413445":[34,198,128,160,234,234,234,234,234,234,234]},{"417380":[76,29]},{"417384":[104]},{"417388":[105]},{"417392":[130]},{"417396":[136,1]},{"417400":[136,1]},{"417406":[92,29]},{"417410":[120]},{"417414":[121]},{"417418":[146]},{"417422":[136,1]},{"417426":[136,1]},{"417448":[136,1]},{"417452":[136,1]},{"417456":[136,1]},{"417478":[136,1]},{"417482":[136,1]},{"417486":[136,1]},{"444489":[34,91,143,160]},{"449502":[34,225,197,160,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,48,216,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,78,216,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,27,216,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,138,143,160,96]},{"450208":[4]},{"450334":[34,221,143,160]},{"450360":[34,206,162,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34,8,164,160,234]},{"450492":[34,189,143,160,234,234,234]},{"450861":[34,30,164,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"452340":[128]},{"452537":[34,80,144,160,234]},{"452559":[34,62,144,160,234]},{"452581":[34,98,144,160,234]},{"452634":[96]},{"453064":[34,138,148,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,116,172,160,234,234,76,230,236]},{"453867":[34,116,144,160,234]},{"453892":[34,134,144,160]},{"454092":[34,239,143,160,234,234,234,234,234]},{"454233":[34,239,143,160,234,234,234,234,234]},{"454256":[34,255,173,160,234]},{"454282":[34,239,143,160,234,234,234,234,234]},{"454459":[34,239,143,160,234,234,234,234,234]},{"456591":[19]},{"456599":[18]},{"456607":[20]},{"456631":[21]},{"457299":[34,167,129,160]},{"457367":[122,216]},{"457374":[32]},{"457503":[34,136,192,160]},{"457513":[34,159,192,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,178,174,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457847":[34,176,211,160,128,39,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457913":[90]},{"457925":[92]},{"457949":[96]},{"457961":[98]},{"457995":[102]},{"458004":[38]},{"484946":[74,179,35]},{"485416":[34,156,175,35,183,124,234]},{"485439":[183,124,234]},{"485459":[183,124,234]},{"485466":[34,119,179,35]},{"485485":[34,178,176,35,76,253,232]},{"486667":[34,69,128,164,234,234]},{"486677":[34,69,128,164,234,234]},{"486698":[34,82,128,164,234,234]},{"487935":[34,242,198,160]},{"488156":[34,242,198,160]},{"488213":[34,242,198,160]},{"488242":[34,242,198,160]},{"488309":[34,242,198,160]},{"488340":[34,242,198,160]},{"488721":[34,242,198,160]},{"489560":[34,242,198,160]},{"490022":[34,242,198,160]},{"490060":[34,242,198,160]},{"490164":[34,242,198,160]},{"490184":[34,242,198,160]},{"490209":[34,242,198,160]},{"490257":[34,242,198,160]},{"490438":[34,2,199,160,96]},{"561458":[12]},{"561460":[30]},{"561462":[63]},{"561464":[127]},{"561466":[127]},{"561468":[63]},{"561470":[19]},{"561473":[12,18,45,94,82,46,19,0]},{"561482":[112]},{"561484":[248,0,252,0,238,0,254,0,254,0,252,0,0,112,136,116,234,154,234,100]},{"561840":[7]},{"561842":[15]},{"561844":[10]},{"561846":[9,1,12,4,7,3,3]},{"561856":[5,8,13,14,11,4,3]},{"561864":[184,0,120,96,254,192,62,0,127,0,254]},{"561876":[254]},{"561878":[8]},{"561880":[248,144,28,246,162,54,220]},{"883789":[34,216,129,160]},{"883797":[234,234,234,234,234,234]},{"900244":[34,224,212,160,208,39,234,234,234,234,234,234]},{"900447":[34,4,225,160,234,234,234]},{"900458":[34,133,196,160]},{"917533":[188,170,191,174,201,172,184,183,189,178,183,190,174,248,188,170,191,174,201,186,190,178,189,249,172,184,183,189,178,183,190,174,251,252,0,160,40,255,254,108,0,200,255,161,40,255,254,108,1,248,162,40,255,254,108,2,200,255,163,40,255,254,108,3,251,172,170,183,216,189,255,194,184,190,255,189,170,180,174,248,182,174,255,188,184,182,174]},{"917621":[185,181,170,172,174,249,183,178,172,174,205,251,252,0,247,228,248]},{"917639":[249]},{"917641":[254,113,251,252,0,247,255,248]},{"917650":[249]},{"917653":[113]},{"917660":[255,249,228,254,113,251,252,0,247,228,248,255,254,114,251,252,0,247,255,248,228,254,114,251,178,216,182,255,179,190,188,189,255,176,184,178,183,176,248,184,190,189,255,175,184,187,255,170,255,185,170,172,180,249,184,175,255,188,182,184,180,174,188,205,251,178,216,191,174,255,175,170,181,181,174,183,248,170,183,173,255,178,255,172,170,183,216,189,249,176,174,189,255,190,185,200,255,189,170,180,174,250,246,189,177,178,188,205,251,184,183,181,194,255,170,173,190,181,189,188,248,188,177,184,190,181,173,255,189,187,170,191,174,181,249,170,189,255,183,178,176,177,189,205,251,194,184,190,255,172,170,183,255,185,190,188,177,255,193,248,189,184,255,188,174,174,255,189,177,174,249,182,170,185,205,251,185,187,174,188,188,255,189,177,174,255,170,248,171,190,189,189,184,183,255,189,184,255,181,178,175,189,249,189,177,178,183,176,188,255,171,194,255,194,184,190,205,251,192,177,174,183,255,194,184,190,255,177,170,188,255,170,248,188,192,184,187,173,200,255,185,187,174,188,188,255,171,249,189,184,255,188,181,170,188,177,255,178,189,205,251,190,188,174,255,194,184,190,187,255,182,170,185,248,189,184,255,175,178,183,173,255,189,177,174,249,172,187,194,188,189,170,181,188,205,251,170,187,174,255,192,174,255,187,174,170,181,181,194,248,188,189,178,181,181,255,187,174,170,173,178,183,176,249,189,177,174,188,174,198,251,179,174,174,195,174,199,255,189,177,174,187,174,248,187,174,170,181,181,194,255,170,187,174,255,170,249,181,184,189,255,184,175]},{"918024":[189,177,178,183,176,188,205,251,176,184,255,171,174]},{"918038":[170,255,177,174,187,184,199,251,194,170,194,199,248,194,184,190,255,188,170,191,174,173,249,195,174,181,173,170,199,251,173,184,255,194,184,190,255,192,170,183,189,255,189,184,248,177,174,170,187,255,182,174,255,188,170,194,249,189,177,178,188,255,170,176,170,178,183,198,250,254,121,45,246,255]},{"918113":[228,255,183,184,246,255,255,255,255,194,174,188,254,104,251,253,13,253,23,14,253,41,19,61,200,253,1,36,253,30,24,25,52,200,248,253,77,253,55,33,253,15,58,8,52,17,59,48,19,15,205,249,163,26,36,253,83,253,84,14,253,224,51,58,36,54,18,205,251,16,0,200,163,26,36,253,83,253,84,14,52,74,27,248,253,101,43,253,2,9,32,16,1,205,249,128,98,104,201,100,201,135,21,48,74,27,1,48,18,251,4,4,200,254,106,255,41,28,253,150,4,20,8,248,74,24,204,205,255,253,38,21,42,21,1,32,1,249,61,74,8,57,33,200,119,138,126,253,255,14,253,1,43,250,246,253,64,59,27,253,2,8,59,27,17,48,1,48,17,24,205,246,4,200,4,20,56,10,253,1,36,253,213,36,161,61,15,253,114,246]},{"918304":[0,58,253,183,253,61,54,17,73,2,205,250,246,119,138,126,253,255,21,200,81,91,113,83,33,16,59,58,246,20,36,253,120,33,200,32,15,28,8,204,246,41,200,253,255,14,253,8,49,48,204,18,204,205,251,194,184,190,255,188,170,191,174,173,255,182,174,199,251,188,184,200,255,178,216,182,255,189,177,174,248,173,190,173,174,255,189,177,170,189,255,192,178,181,181,249,185,187,184,189,174,172,189,255,195,174,181,173,170,205,250,246,173,184,183,216,189,255,192,184,187,187,194,200,255,178,246,176,184,189,255,189,177,178,188,246,172,184,191,174,187,174,173,205,251,171,174,255,172,170,187,174,175,190,181,199,251,254,107,2,252,6,177,174,194,200,255,172,184,182,174,255,175,178,183,173,248,182,174,255,170,183,173,255,177,174,181,185,249,182,174,199,251,254,107,2,252,6,178,216,182,255,178,183,255,189,177,174,248,172,170,188,189,181,174,249,171,170,188,174,182,174,183,189,205,251,176,184,255,183,184,187,189,177,255,189,184,248,189,177,174,255,189,177,187,184,183,174]},{"918553":[251,181,174,189,216,188,255,185,190,188,177,255,178,189,248,175,187,184,182]},{"918573":[189,177,174]},{"918577":[181,174,175,189,199,251,185,190,181,181,255,189,177,178,188,248,181,174,191,174,187]},{"918599":[190,188,178,183,176]},{"918605":[170,205,251,181,174,189,216,188,255,176,174,189,255,184,190,189,248,184,175,255,177,174,187,174,199,251,178,255,181,178,180,174,248,189,170,181,180,178,183,176,200,255,173,184,249,194,184,190,198,250,246,255,255,228,255,183,184,246,255,255,255,255,194,174,188,254,104,251,253,141]},{"918676":[229,21,200,253,53,17]},{"918683":[10,59,24,253,51,253,52,36,253,116,248,14,253,8,57,33,253,2,11,61,253,50,1,13,205,249,253,112,74,24,56,2,56,32,1]},{"918719":[61,33,7,74,27,115,251,18,30,1,13,199,255,254,106,204,205,248,5,40,57,200,0,32,24,40,196,253,160,253,30,197,28,249,32,58,64,9,253,153,14,253,193,51]},{"918764":[1,24,36,7,199,250,246,0,28,40,200,128,98,104,201,100,201,135,14,253,62,33,246]},{"918788":[73,59,58,46,11,35,199,255,46,1,37]},{"918801":[63,246,0,32,24,32,56,253,13,253,23,33,253,223,27,58,13,199,251,254,107,2,252,6,254,106,199,255,24,18,11,27,199,248,17,200]},{"918838":[1,36,253,58,24,25,21,200,253,3,253,4,43,204,249,89,151,80,155,155,206]},{"918860":[204,255,204,255,204,251,179,190,188,189,255,170,255,181,178,189,189,181,174,248,175,190,187,189,177,174,187,255,189,184,255,189,177,174,249,188,170,183,172,189,190,170,187,194,205,251,189,177,174,255,188,170,183,172,189,190,170,187,194,199,248,249,185,190,181,181,255,182,194,255,175,178,183,176,174,187,251,177,174,194,170,200,255,254,106,199,248,181,184,183,176,255,189,178,182,174,255,183,184,249,188,174,174,205,250,246,194,184,190,255,192,170,183,189,255,170,246,182,170,188,189,174,187,255,188,192,184,187,173,198,246,250,246,192,174,181,181,255,176,184,184,173,255,181,190,172,180,246,192,178,189,177,255,189,177,170,189,205,251,178,189,255,184,172,172,190,187,188,255,189,184,248,182,174,255,189,177,170,189,255,178,255,181,178,180,174,249,189,184,170,188,189]},{"919053":[170,183,173,255,179,170,182,200,250,246,171,190,189,255,172,177,174,174,188,174,255,170,183,173,246,172,187,170,172,180,174,187,188,255,178,188,246,171,174,189,189,174,187,250,246,194,184,190]},{"919102":[181,178,180,174,198,246,255]},{"919110":[228,255,172,177,174,174,188,174,246,255,255,255,255,179,170,182,254,104,251,170,183,194,192,177,184,200,255,178,255,177,170,191,174,248,189,177,178,183,176,188,255,189,184,255,173,184,200,249,194,184,190,255,188,174,174,255,189,177,184,188,174,250,246,162,255,184,191,174,183,188,198,246,246,194,174,170,177,255,162,199,250]},{"919192":[192,177,184,255,177,170,188,255,162,246,184,191,174,183,188,246,183,184,192,170,173,170,194,188,198,251,4,4,200,254,106,5,248,57,74,66,33,32,74,24,36,2,205,55,2,8,249,253,140,253,56]},{"919244":[19,14,253,40,74,27,5,74,27,253,97,16,59,205,251,176,190,170,187,173,188,199,255,177,174,181,185,199,248,189,177,174,255,172,187,174,174,185,174,187,249,254,106,255,178,188,255,177,174,187,174,199,251,254,109,1,2,2,50,200,26,1,33,163,26,36,253,83,253,84,14,248,253,62,33]},{"919320":[73,59,24,8,204,249,7,17,255,48,7,1,36,253,101,43,253,2,10,21,253,50,1,250,246,4,253,120,21,255,48,12,28,36,253,160]},{"919357":[30,32,56,61,246,253,26,36,253,32,54,255,4,253,120,14,253,129,63,54,0,60,2,246,255,255,255,204,255,204,255,204,255,205,251,254,109,1,93,97,56,40,200,4,1,65,59,27,248,24,24,8,3,34]},{"919412":[249]},{"919415":[120,46,11,21,200,253,8,57,32,36,37,71,204,251,254,109,1,188,170,177,170,188,187,170,177,181,170,200,255,178,248,170,182,205,255,194,184,190,255,192,184,190,181,173,249,173,184,255,192,174,181,181,255,189,184,250,246,175,178,183,173,255,189,177,174,255,163,246,185,174,183,173,170,183,189,188,255,175,187,184,182,246,189,177,174,255,163,255,173,190,183,176,174,184,183,188,250,246,178,183,255,181,178,176,177,189,246,192,184,187,181,173,205,246,190,183,173,174,187,188,189,170,183,173,198,250,246,255,255,228,255,194,174,188,246,255,255,255,255,183,184,254,104,251,254,109,1,192,177,178,181,174,255,194,184,190,216,187,174]},{"919575":[177,174,187,174,200,255,172,184,190,181,173]},{"919587":[194,184,190,255,173,184,255,182,174,255,170,250,246,188,184,181,178,173,255,170,183,173,255,176,174,189,246,189,177,174,255,176,187,174,174,183,246,185,174,183,173,170,183,189,255,175,187,184,182,250,246,189,177,170,189,255,173,190,183,176,174,184,183,198,254,121,45,246,178,216,181,181,255,176,178,191,174,255,194,184,190,246,170,255,185,187,174,188,174,183,189,255,178,175,250,246,194,184,190,255,173,184,205,251,254,109]},{"919694":[93,97,36,253,39,33,52,167,253,196,253,30,36,17,20,15,21,248,253,1,36,253,30,36,253,117,14,36,21,59,27,253,162,14,8,10,249,17,27,4,58,40,38,205,253,105,17,32,16,59,205,251,254,107,2,252,6,254,106,7,200,12,36,96,120,98,136,201,136,248,36,253,96,21,9,12,3,58,8,198,255,4]},{"919777":[120,21,249]},{"919781":[106,200,253,113,74,27]},{"919788":[58,36,40,200,52,28,40,250,246]},{"919798":[246,253,51,28,7,61,59,27,1,24,253,232,253,233,204,246,17,8,17,200,253,106,54,40,253,45,253,242,36,40,62,12,58,246,253,22,13,61,200,253,87,36,253,232,253,233,37,71,205,250,246]},{"919850":[13]},{"919852":[23,40]},{"919856":[158,253,53,14,28,9]},{"919863":[1,36,253,73]},{"919868":[74,33,246]},{"919872":[87,253,232]},{"919876":[233,28,12,25,56,253,90,14,253,131,63,253,9,57,253,93,246,14]},{"919895":[75,1,27,17,48,74,24,7,2,37,71,205,250,246,253,179,62,200,12,25,56,36,253,232,253,233,14]},{"919923":[40,2,33,40,246,196,253,152,253,67,36,253,153,197,14,28,57,253,15,18,17,8,246,253,93,40,253,198,16,59,27,4,56,34,199,250,246,167,253,56,36,253,0,253,19,14,253,202,11,27,5,74,27,10,59]},{"919979":[167,253,196,253,30,36,253,185,14,41,10,253,20,253,21,56,36,253,153,246,253,48,38,200,5,10,33,24,26,54,0,60,2,199,250,246,253,0,253,19,40,200,20,59,45,59,253,45,253,81,36,8,10,59,246,253,86,33,253,158,37,12,51,56,59,27,4,58,205,48,38,246,85,129,36,253,5,253,144,43,253,134,8,2,36,37,71,199,254,121,45,250,246]},{"920073":[8,57,40,200,4,253,120,46,11,204,246,12,36,96,120,98,136,201,136,36,253,10,1,14,8,32,246,3,27,10,59,199,255,253,8,50,45,254,106,7,251,254,107,2,252,6,17,8,17,200,20,36,253,162,54,40,55,2,17,7,2,248,52,0,58,48,1,204,205,123,143,136,253,148,36,253,213,54,249,130,201,95,146,201,138,14,253,76,26,11,58,36,37,71,250,246,130,201,95,146,201,138,40,200,253,87,253,232,253,233,36,253,45,253,153,246,8,56,200,4,253,120,14,253,145,57,200,253,160,253,30,36,253,162,14,246,24,52,74,27,10,59,58,54,0,60,2,205,251,254,109,1,120,81,137,80]},{"920230":[18,36,253,217,36,253,239,10,26,33,200,248,4,253,120,36,253,202,11,28,32,58,253,81,21,8,10,16,59,249,27,4,58,205,253,62,33]},{"920268":[73,59,32]},{"920272":[59,7,205,251,254,109,1,4,4,200,32,15,28,196,253,160]},{"920289":[55,36,253,83,253,84,197,14,248]},{"920299":[62,33,253,73,59,24,8,204,205,54,40,200,93,97,36,249,253,147,74,27,1,58,253,163,14,17,7,2,205,250,246,20,36,253,126,200,120,81,137,80,36,253,68]},{"920343":[86,14,253,145,58,246,253,30,24,25,36,201,253,242,21,4,74,24,205,246,253,20,56,40,253,160,253,55,36,253,83]},{"920375":[84,14,253,13,55,58,200,250,246,112,81,108,36,201,253,242,28]},{"920393":[80,61,59,27,4,74,24]},{"920401":[36,37,71,21,200,167,253,196,253,30,36,253,158,253,53,21,253,2,32,246,13,59,24,253,136,200,253,45,253,242,28,36,24,24,8,1,54,250,246,44,28,15,55,36,253,30,21,44,60,15,54,17,48,74,246,24,36,37,71,205,20,36,112,81,108,36,201,253,242,8,246,56,253,160]},{"920476":[30,21]},{"920479":[188,59,58,40,38,32,36,37,71,21,250,246,255,204,255,7,17,200,254,106,7,200]},{"920502":[253,120,246,14,253,69,37,7,2,205,253,198,57,36,253,83]},{"920519":[84,14,246,253,62,33,253,73,59,58,21]},{"920531":[50,1,205,250,246,20,59,8,56,200,12,59,14,253,219,74,27,253,2,11,205,246,93,97,56,253,196,253,30,36,201,253,242,33,253,46,13,58,253,154,200,246,4]},{"920575":[120,33,5,60,2,205,251,254,109,1,1,8,33,52,93,97,21,253,141,253,229,54,0,57,248,167,253,196,253,30,36,17,20,15,36,161,253,56,249,96,120,98,136,201,136,37,71,205,250,246,255,204,255,204,255,204,255,255,32,15,28,246,254,106,7,200,4,16,32,1,4,253,120,21,246,253,44,253,45,36,253,26,14,255]},{"920660":[155,51,27,4,58,36,8,199,250,246,37,71,21,255,0,36,253,26,40]},{"920680":[149,54,52,253,137,3,58,246,13,11]},{"920691":[40,36,2,27,32,205,246,163,253,143,36,253,45,253,81,14,253,41,17,163,26,36,253,83,253,84,14,250,246,253,62,33,17,24,196,253,160,253,30,197,46,11,21,253,137,1]},{"920738":[62,246,33,32,59,58,28,120,81,137,80,36,253,248,40,246,253,46,3,28,58,255,204,255,204,255,204,250,246,4,253,120,40,200,18,54,33,196,253,160,253,55,36]},{"920782":[83,253,84,197,246,14,253,62,33,253,73,59,27,4,58,253,16,37,71,36,2,205,246,54,40,200,52,2,18,12,17,253,163,14,17,7,2,204,250,246,20,36,253,126,200,120,81,137,80,36,253,68,253,86,14,253,145,58,246,253,30,24,25]},{"920846":[201,253,242,21,4,74,24,205,246,253,20,56,40,253,160,253,55,36,253,83,253,84,14]},{"920870":[13,55,58,200,250,246,112,81,108,36,201,253,242,28,253,80,61,59,27,4,74,24,246,36,37,71,21,200,167,253,196,253,30,36]},{"920905":[158,253,53,21,253,2]},{"920912":[246,13,59,24,253,136,200,253,45,253,242,28,36,24,24,8,1,54,250,246,44,28,15,55,36,253,30,21,44,60,15,54,17,48,74,246,24,36,37,71,205,20,36,112,81,108,36,201,253,242,8,246,56,253,160,253,30,21,253,188,59,58,40,38,32]},{"920978":[37,71,21,250,246,255,204,255,7,17,200,254,106,7,200,4]},{"920995":[120,246]},{"920998":[253,69,37,7,2,205,253,198,57,36,253,83,253,84,14,254,121,45]},{"921017":[253,62,33]},{"921021":[73,59,58,21,253,50,1,205,250,246,20,59,8,56,200,12,59,14,253,219,74,27,253,2,11,205,246,93,97,56,253,196,253,30,36,201,253,242,33]},{"921061":[46,13,58,253,154,200,246,4,253,120,33,5,60,2,205,251,224,255,173,194,178,183,176,255,190,183,172,181,174,248,255,255,189,177,178,188,255,192,170,194,251,210,211,255,187,170,183,173,184,182,178,195,174,187,248,173,184,183,216,189,255,187,174,170,173,255,182,174,200,249,176,184,255,171,174,170,189,255,176,170,183,184,183,199,251,172,170,191,174,255,189,184,255,181,184,188,189,248,184,181,173,255,182,170,183,200,255,176,184,184,173,249,181,190,172,180,205,251,248,224,255,181,184,188,189,255,192,184,184,173,188,251,0,63,32,1,199,248]},{"921200":[100,49,28,125,201,136,33,253,206,253,207,251,192,174,181,172,184,182,174,255,189,184,255,189,177,174,248,182,170,176,178,172,255,188,177,184,185,251,172,170,191,174,255,170,192,170,194,255,175,187,184,182,248,188,180,194,255,172,170,171,171,170,176,174,188,251,225,255,181,170,180,174,255,177,194,181,178,170,248,249,255,170,181,188,184,255,170,255,188,177,184,185,185,174,251,227,255,180,170,180,170,187,178,180,184,248,255,255,191,178,181,181,170,176,174,251,227,255,173,174,188,174,187,189,248,249,255,255,255,255,255,255,178,189,216,188,255,177,184,189,251,224,226,255,185,184,189,178,184,183,188,199,248,249,192,178,188,177,255,192,170,189,174,187,175,170,181,181,251,226,255,174,170,188,189,255,185,170,181,170,172,174,248,249,227,255,172,170,188,189,181,174,251,248,255,181,170,180,174,255,255,177,178,187,178,170,177,251,173,184,183,216,189,255,189,170,181,180,255,189,184,248,182,174,255,184,187,255,189,184,190,172,177,255,182,194,249,188,178,176,183,199,251,181,190,182,171,174,187,179,170,172,180,188,248,178,183,172,205,255,194,184,190,255,188,174,174,249,174,182,200,255,192,174,255,188,170,192,255,174,182,205,251,225,255,180,170,180,170,187,178,180,184,248,255,255,191,178,181,181,170,176,174,251,173,184,190,171,181,174,200,255,173,184,190,171,181,174,248,189,184,178,181,255,170,183,173,249,189,187,184,190,171,181,174,199,250,246,171,187,178,183,176,255,182,174,255,170,246,182,190,188,177,187,184,184,182,199,251,121,154,121,154,200,0,57,21,28,2,7,205,248,0,28,54,253,114,36,4,253,108,43,4,1,54,205,249,1,1,52,36,14,0,29,58,7,204,121,154,121,205,251,170,255,171,184,189,189,181,174,255,175,184,187,248,194,184,190,187,255,189,177,184,190,176,177,189,188,198,249,184,187,255,189,184,255,185,190,189,250,246,185,184,189,178,184,183,188,255,178,183,205,251,90,98,137,21,44,17]},{"921660":[36,32,56,255,48,38,248]},{"921668":[45]},{"921670":[60]},{"921672":[142,95,14,255,253,105,17,27,10,58]},{"921683":[34,249,37,71]},{"921688":[255,81,154,121,154,121,154,251,80,88,36,90,98,137,40,255,1,36,25,103,98,137,248,129,135,137,36,90,98,137,40,255,253,45,253,60,103,98,137,249,80,84,36,90,98,137,40,255,1,36,25,28,253,45,253,60,250,246,80,88,36,90,98,137,40,200,12,36,253,168,54,36,50,246,32,56,200,138,147,201,40,1,56,34,45,3,205,246,16,0,200,12,59,14,4,36,49,204,121,154,121,154,251,178,175,255,184,183,181,194,255,194,184,190,248,177,170,173,255,188,184,182,174,189,177,178,183,176,249,189,184,255,185,190,189,255,189,177,170,189,250,246,178,183,200,255,181,178,180,174,255,170,246,171,184,189,189,181,174,198,251,192,177,184,170,255,171,190,172,180,184,200,248,183,184,255,174,182,185,189,194,249,171,184,189,189,181,174,188,205,251,181,170,182,185,199,255,194,184,190,255,172,170,183,248,188,174,174,255,178,183,255,189,177,174,249,173,170,187,180,200,255,170,183,173,250,246,181,178,176,177,189,255,189,184,187,172,177,174,188,205,251,171,184,184,182,174,187,170,183,176,199,248,185,187,174,188,188,255,188,189,170,187,189,255,189,184,249,188,174,181,174,172,189,255,178,189,205,251,255,86,129,14,255,49,26,11,24,248,255,253,187,255,21,2,27,58,45,199,249,255,253,187,255,21,32,10,32,58,48,54,46,45,74,199,251,97,151,144,138,14,200,4,8,57,17,24,205,248,44,59,58,253,85,32,56,200,253,92,21,44,59,58,45,205,249,44,74,27,49,7,2,205,251,255,128,117,154,90,128,95,108,46,199,248,255,253,162,14]},{"922058":[157,18]},{"922061":[34,21,54,9,58,21,200,249,255,253,45,253,60,131,201,104,201,33,253,55,14,253,82,11,60,199,251,12,59,21,255,253,45]},{"922095":[60,36,253,204,46,199,248,253,209,5,255,253,164,253,165,32,253,81,33,249,42,57,8,11,27,49,7,2,199,251,125,201,136,36,253,102,8,9,14,255,8,74,24,199,248,12,59,54,253,102,36,253,100,1]},{"922150":[85,52]},{"922153":[249,98,81,98,81,4,7,29,58,40,38,46,199,251,146,93,201,103,136,143,14,255,253,62,33]},{"922179":[73,59,24,199,248,253,247,2,54,33,253,153,21,49,32,22,58,45,205,249,81,97,46,74,27,8,26,29,58,45,199,251,196,253,160,253,55,36,253,83,253,84,197,14,253,62,33,253,73,59,24,199,248,253,141,253,229,96,120,98,136,201,136,33,253,76,19,58,36,46,249]},{"922251":[198,57,36,253,83,253,84,40,200,0,28,162,26,46,199,251,196,253,153,36,253,83,253,84,197,14,253,62,33]},{"922281":[73,59,24,199,248,48,24,41,28,26,200,253,251,10,32,74,24,45,199,249,16,0,200,16,1,30,36,253,83,253,84,43,253,134,4,2,199,251,192,174,255,177,170,191,174,255,189,177,174,248,185,174,183,173,170,183,189,255,184,175,249,192,178,188,173,184,182,199,255,187,184,172,180,250,246,184,183,199,255,198,251,170,255,182,190,188,177,187,184,184,182,199,248,173,184,183,216,189,255,174,170,189,205,249,175,178,183,173,255,170,255,192,178,189,172,177,205,251,130,135,136,36,253,14,14,255,49,26,11,24,199,248,120,81,137,80,36,253,248,21,253,137,74,24,253,138,253,110,253,192,253,123,249,21,200,12,59,54,253,88,51,58,45,199,251,178,255,175,184,190,183,173,255,170,248,188,177,178,183,194,255,182,170,187,171,181,174,199,249,183,184,255,182,184,187,174,255,177,184,185,188,199,251,170,255,172,184,182,185,170,188,188,199,255,178,248,172,170,183,255,183,184,192,255,175,178,183,173,249,189,177,174,255,171,184,188,188,205,251,194,184,199,255,194,184,190,255,175,184,190,183,173,248,170,255,182,170,185,199,255,185,190,188,177,255,193,249,189,184,255,188,174,174,255,178,189,205,251,178,189,216,188,255,189,177,174,255,178,172,174,248,187,184,173,199,255,175,187,174,174,195,174,249,187,170,194,255,189,178,182,174,205,251,122,155,81,80,140,154,135,14,255,49,26,11,24,199,248,253,166,253,167,36,253,169,21,255,44,28,61,17,58,205,249]},{"922626":[45]},{"922628":[60,131,201,104,201,33,40,253,55,14,253,82,11,60,199,251,253,45,253,60,36,131,126,138,196,83,201,107,138,197,46,199,248]},{"922662":[95,253,55,5,253,151,253,55,14,0,5,26,58,200,253,45,253,60,46,249,253,45,253,60,131,201,104,201,33,255,253,206,253,207,17,7,2,199,251]},{"922702":[45,253,60,36,131,126,138,196,145,95,141,201,197,46,199,248,141,90,139,106,21,253,51,253,171,14,253,208,58,253,45,253,60,46,45,249,54,52,200]},{"922742":[45]},{"922744":[60,131,201,104,201,33,253,206,253,207,199,251]},{"922757":[45]},{"922759":[60,36,131,126,138,196,97,158,81,90,197,46,199,248,253,51]},{"922776":[171,14,6,58,21,17,255]},{"922784":[209,14,253,158,37,58,205,249,54,52,200,253,45,253,60,131,201,104,201,33,253,206,253,207,199,251,182,200,172,120,95,128,201,14,253,62,33,253,73,59,24,199,248,10,1,255,32,15,8,141,95,141,95,24,24,11,199,249,253,39,33,52,141,95,141,95,24]},{"922852":[11,24,24,11,199,251,4,4,200,84,88,137,112,21]},{"922867":[0,74,24,45,199,248,20]},{"922876":[172,253,164,40,200,42,17,22,32,253,153,14,249,253,219,74,27,1,58,40,38,46,199,251,100,128,137,80,36,26,3,14,253,62,33,253,73,59,24,199,248,2,48,10,253,137,3,61,200,28,27,52,5,10,33,249,24,26,200,42,17,22,32,26,3,46,199,251,145,87,87,206,95,255,122,154,90,97,153,154,108,46,248,36,62,27,255,25,47,15,54,145,87,87,206,95,199,249,253,164,253,165,32,253,81,33,255,16,17,27,49,7,2,199,251,141,90,126,95,14,255,253,62,33,253,73,59,24,205,248,4,1,24,141,90,126,95,14]},{"923015":[170,145,104,95,54,249,8,26,1,54,200,253,252,29]},{"923030":[59,58,45,74,199,251,12,59,40,255,142,95,46,205,253,174,33,253,164]},{"923050":[165,248,253,73,59,58,12,28,21,54,9,58,205,249,253,73,59,24,253,81,40,0,28,54,253,137,3,58,45,199,251,194,184,199,255,194,184,190,255,176,184,189,255,170,248,171,178,176,255,180,174,194,199,251,146,93,122,138,103,136,143,14,253,62,33,253,73,59,24,205,248,4,52,10,27,200,8,26,29]},{"923130":[8,74,24,249,10,60]},{"923137":[81,97,52,255,8,26,29,58,45,199,251,128,117,88,138,129,136,201,14,255,52,56,74,24,199,248,253,218,10,255,18,15,46,255,253,104,17]},{"923175":[88,101,129,204,249,18,1,253,220,48,59,20,2,32,253,55,21,17,27,10,58,251,178,189,216,188,255,189,177,174,248,182,170,188,189,174,187,255,188,192,184,187,173,199,249,184,187,255,183,184,189,250,246,246,255,255,255,255,255,255,255,255,255,175,184,184,181,199,246,251,254,107,2,252,6,253,141,253,229,96,120,98,136,201,136,255,36,253,96,21,248,55,12,8,56,28,32,10,255,41,62,1]},{"923278":[10,58,249,255,204]},{"923284":[204,255,204,250,246,254,106,7,255,7,10,45,253,44,253,45,36,253,26,246,128,98,104,201,100,201,135,14,253,62,33,253,73,59,24,204,246,20,36,8,21,5,9,253,190,27,21,4,253,120,36,253,153,46,250,246,20,36,253,26,32,56,61,200,253,13,253,23,36,253,45,253,153,14,52,246,2,25,5,63,58,40,38,37,71,74,199,246,250,246,12,36]},{"923377":[43,36,253,79,253,228,40,200,4]},{"923387":[120,33,246,8,8,74,27,4,58,205,246]},{"923399":[8,15,46,45,255,254,103,254,106,7,255,204,251,121,154,121,255,48,1,55,255,4,4,9,33,199,248,1,36,25,36,90,98,137,37,71,7,205,249,253,191,253,153,21,200,8,1,42,10,18,58,7,205,251,121,154,121,255,48,1,55,255,4,4,9,33,199,248,253,45,253,60,36,90,98,137,37,71,7,205,249,253,45,253,60,36,253,153,21,200,8,1,42,10,18,58,7,205,251,121,154,121,255,48,1,55,255,4,4,9,33,199,248,1,36,25,28,253,45,253,60,36,90,98,137,37,71,7,205,249,253,247,253,32,21,200,8,1,42,10,18,58,7,205,251,254,109,1,130,97,253,71,57,0,49,14,255,4,8,57,17,24,199,248,130,97,36]},{"923567":[39,33,52,255,253,71,59,58,253,81,21,249,0,58,8,52,17,59,32,1,205,253,193,253,194,46,204,205,251,171,181,190,174,255,189,177,187,174,170,173,188,198,248,181,174,188,188,255,173,170,182,170,176,174,249,170,172,189,178,191,170,189,174,173,199,251,0,8,1]},{"923637":[253,14,255,49,26,11,24,199,248,253,209,8,56,2,11,58,255,126,131,201,117,14,249,253,218,1]},{"923664":[253,7,57,255,43,56,17,27,10,59,58,199,251,5,74,24,199,255,253,26,21,7,57,253,251,10,32,74,24,248]},{"923695":[191,36,253,174,8,56,255,253,153,21,249,13,1,27,10,58,253,16,46,74,199,251,88,101,129,36,253,27,14,255,49,26,11]},{"923729":[45,74,199,248,253,106,48,54,36,253,27,54,40,200,40,35,8,3,19,32,249,8,74,24,142,201,130,52,40,35,8,3,18,45,199,251,141,81,136,36,26,3,14,255,253,62,33,253,73,59,24]},{"923781":[248,41,28,42,57,18,59,61,200,121,88,137,36,84,142,249,21,200,49,14,253,145,74,27,10,59,58,45,205,251,188,184,182,174,189,177,178,183,176,255,178,188,248,182,178,188,188,178,183,176,204,249,189,177,174,255,171,178,176,255,180,174,194,198,251,0,74,253,45,253,60,36]},{"923854":[153,21,253,150,57,32,1,199,248,12,36,48,48,54,40,200,12,36,80,81,107,130,40,249,253,137,3,32,1,45,199,251,254,109,1,149,101,96,98,36,10,26,14,255,52,56,74,24,205,248,170,145,104,95,14,201,253,132,253,136,253,57,253,119,17,253,130,11,58,249,28,200,126,154,97,152,54,253,191,253,37,24,57,54,9,58,251,1,5,75,200,62,74,10,57,17,24,32,52,2,206,248,43,3,201,200,48,28,52,32,253,56,33,253,4,2,36,40,249,253,139,253,199,253,161,63,57,8,35,3,205,250,246,48,0,48,0,200,25,73,74,28,4,17,71,64,57,246,16,19,27,10,59,7,205,255,0,15,24,200,12,15,246,32]},{"924019":[163,14,253,147,74,27,58,8,1,204,205,251,12,36,253,140,33,0,58,101,201,110,81,138,36,248,19,9,45,2,205,0,36]},{"924053":[97,8,56,200,253,21,36,253,17,249,36,253,202,11,14]},{"924069":[155,51,58,253,96,21,200,250,246,9,12,3,27,10,58,74,27,2,13,16]},{"924090":[7,205,246,32,15,46,8,200,0,5,17,29,32,253,163,46,28,246,253,54,13,32,1,8,204,205,251,32,15,54,52,200,101,116,95,36]},{"924127":[10,1,14,8,32,248,3,58,24,51,33,200,108,136]},{"924142":[122,159,201,98,21,249,0,24,3,24,36,21,12,36,253,232,253,233,56,17,1,45,250,246,101,116,95,36,253,10,1,198,20,59,40,253,190,253,232,253,233,36,246,253,68,33,32,58,12,28,16,205,253,87,253,232,253,233,36,253,45,253,153,246,21,0,59,61,54,9,58,15,37,71,32,1,8,198,251,84,139,40,200,52,28,52,28,253,115,253,232,253,233,36,48,7,248,1,36,253,101,33,1,24,15,46,21,32,205,20,59,21,249,253,45,253,60]},{"924260":[197,33,253,112,1,12,15,54,17,48,74,27,204,250,246,253,55,21,26,1,24,56]},{"924283":[87,253,232,253,233,36,135,90,140,36,246]},{"924295":[101,33,253,214,27,1,24,15,46,205,162,26,36,253,101,40,246,26,32,21,74,27,1,58,15,46,60,2,32,205,251,32,15,54,52,200,161,26,253,117,36,9,73,37]},{"924340":[248,121,116,154,90,98,40,200,141,90,126,95,54,200,249,5,74,26,11,58,28,253,50,1,56,17,1,7,205,250,246,48,0,200,20,59,46,11,36,253,163,46,205,246,246,251,9,33,16,13,58,253,34,14,248,18,58,15,37,71,35,3,199,251,196,253,153,36,253,83,253,84,197,14,253,62,33,253,73,59,24,199,248,5,74,24,199,163,26,36,253,83,253,84,21,20,60,74,24,249,128,98,104,201,100,201,135,36]},{"924449":[101,43,253,134,4,2,199,251,192,174,255,177,170,191,174,255,189,177,174,248,185,174,183,173,170,183,189,255,184,175,249,192,178,188,173,184,182,199,255,187,184,172,180,250,246,184,183,199,251,162,160,255,187,190,185,174,174,188,205,248,165,255,170,187,187,184,192,188,205,249,192,178,183,255,187,190,185,174,174,188,199,250,246,192,170,183,189,255,189,184,255,185,181,170,194,198,246,255,255,228,255,194,174,188,246,255,255,255]},{"924558":[183,184,254,104,251,181,174,189,188]},{"924568":[173,184,255,189,177,178,188,199,251,192,177,174,187,174,255,170,187,174,255,194,184,190,248,176,184,178,183,176,198,249,188,189,187,170,178,176,177,189,255,190,185,199,251,180,174,174,185,255,185,181,170,194,178,183,176,198,248,255,255,228]},{"924629":[194,174,188,249,255,255,255,255,183,184,254,104,251,201,192,178,188,177,178,183,176,255,185,184,183,173,201,248,189,177,187,184,192]},{"924663":[187,190,185,174,174,188]},{"924670":[189,184]},{"924673":[188,177,184,192,255,181,184,191,174,250,246,177,184,192,255,170,171,184,190,189,255,178,189,198,246,255,255,228,255,189,184,188,188,246,255,255,255,255,185,170,188,188,254,104,251,185,178,172,180,255,188,184,182,174,189,177,178,183,176,248,189,184,255,189,177,187,184,192,255,178,183,205,254,105,251,194,184,190,255,189,184,188,188,255,189,177,178,188,198,248,255,255,228,255,194,190,185,249,255,255,255,255,192,187,184,183,176,254,104,251,253,38,40,200,17,73,2,37,9,32,253,56,21,253,109,9,7,248,46,8,56,200,0,32,24,33,40,200,52,74,28,249,253,50,1,253,81,14,148,139,119,95,108,18,58,35,199,251,194,184,190,255,188,190,187,174,198,248,255,255,228,255,184,177,255,194,174,170,177,249,255,255,255,255,190,182,254,104,251,192,174,181,181,255,178,255,173,184,183,216,189,248,192,170,183,189,255,178,189,200,255,188,184,249,189,170,180,174,255,178,189]},{"924895":[171,170,172,180,251,253,45,253,60,36,143,201,131,136,95,14,253,62,33,253,73,59,24,248,18,61,5,10,255,28,4,10,48,54,28,61,19,58,249,7,2,33,32,74,24,205,251,253,27,21,253,95,9,10,32,74,24,205,248,253,205,36,253,210,10,56,1,32,56,200,43,74,25,71,56,249,46,45,199,251,4,4,200,12,59,21,101,116,95,33,28,55,51,14,248,16,18,196,253,222,36,253,187,197,46,199,251,175,178,181,181,174,173,255,171,184,189,189,181,174,199,248,182,184,183,174,194,255,188,170,191,174,173,199,251,253,26,21,7,57,253,251,10,32,74,24,205,248,32,33,8,0,24,24,8,1,253,62,31,13,57,21,249,18,58,205,251,177,170,185,185,178,183,174,188,188,255,190,185,199,248,194,184,190,255,170,187,174,255,183,184,192,249,254,108,1,254,108,0,255,177,170,185,185,194,199,251,194,184,190,187,255,192,178,188,177,198,248,255,255,228,182,184,187,174,255,171,184,182,171,188,249,255,255,255,182,184,187,174,255,170,187,187,184,192,188,254,104,251,192,177,184,184,255,177,184,184,199,248,194,184,190,255,172,170,183,255,183,184,192,249,172,170,187,187,194,255,254,108,1,254,108,0,255,171,184,182,171,188,251,192,177,184,184,255,177,184,184,199,248,194,184,190,255,172,170,183,255,183,184,192,249,177,184,181,173,255,254,108]},{"925215":[254,108,0,255,170,187,187,184,192,188,251,253,133,1,11,55,200,12]},{"925234":[1,37,73,2,0,32,24,248,36,253,153,33,32,59,32,1,13,204,205,249,30,51,15,32,16,1,205,250,246,8,13,57,33,200,253,38,36,28,52,46,25,14,17,73,246,2,8,1,18,58,13,205,255,253]},{"925289":[1,36,104,89,33,246,1,58,88,93,81,81,253,17,7,199,250,246,138,147,201,40,200,4,8,3,17,17,48,18,205,246,0,32,24,21,200,253,78,19,54,0,57,48,18,7,2,246,33,204,205,251,0,75,255,253,150]},{"925347":[28,33,253,55,14,253,82,11,32,16,59,248,253,92,21,253,75,1,27,4,58,54,32,205,249,20,12,14,253,177,43,253,2,74,27,10,46,16,56,15,8,250,246]},{"925391":[253,103,1,36,200,0,15,24,52,5,74,66,57,246,196,253,152,253,67,36,253,153,197]},{"925416":[155,51]},{"925419":[255,253,148,43,246,253,2,8,59,58,36,8,198,250,246,12,36,253,156,40,253,45,253,81,36,253,148,37,71,205,246,24,10,16,15,36,253,94,253,19,21,196,253,152,253,67,36]},{"925467":[153,197,246,14,253,155,51,255,12,36,253,148,54,253,157,3,27,1,74,24,250,246,246,253,133,1,12,28,40,253,22,13,15,205,0,15,24,52,246,253,100,253,73,57,19]},{"925513":[12,28,37,71,27,204,205,251,4,79,200,20,36,106,145,36,253,174]},{"925532":[40,248,120,201,108,21,253,73,74,28,58,40,38,37,71,205,251,4,79,255,12,12,14,253,177,37,71,255,204,255,204,248,93,97,33,52,32,0,200,0,15,24,10,56,1]},{"925578":[249,48,30,253,0,21,1,27,36,2,204,205,250,246]},{"925593":[43,253,68,33,255,4,253,1,33,253,64,59,27,253,2,8,59,27,246,253,15,74,27,12,34,204,255,81,91,113,83,32,55,246,9,74,28,253,13,253,23]},{"925635":[24,10,56,49,37,71,199,250,246,253,45,253,60,253,197,14]},{"925652":[158,37,24,167]},{"925657":[196,253,30,36,253,153,14,246,2,11,26,23]},{"925670":[0,24,25,14,253,159,3,27,200,20,36,246,253,153,14,57,7,2,18,58,26,52,57,37,71,205,251,55,32,24,8,253,147,56,34,21,200,253,148,43,253,2,10,32,248,56,200,253,64,59,27,253,2,74,27,10,59,34,8,205,249,136,95,148,14,32,10,17,27,17,52,2,27,36,205,251,81,91,113,83,33,16,59,24,253,0,40,200,253,106,52,248,55,12,8,54,253,180,9,27,4,58,205,20,59,14,249,253,40,2,196,253,160,253,30,197,21,253,188,59]},{"925791":[253,136,14,250,246,93,97,40]},{"925800":[69,37,27,48,74,27,4,58,204,205,246,4,74,200,26,1,253,163,12,15,54,17,52,2,24,36,246,253,161,7,57,33,253,164,253,165,28,255,0,57,21,28,2,205,250,246,4]},{"925848":[200,20,2,37,71,205,52,17,253,45,253,60,253]},{"925862":[33,246,253,112,1,12,15,46,253,136,40,200,12,36,88,101,129,33,246,0,15]},{"925884":[36,255,253,162,14,2,26,17,32,16,1,205,251,253,68]},{"925900":[16,40,255,9,74,28,253,13,253,23,33,46,48,16,59,248,27,4,58,205,255,253,13,253,23,40,253,45,36,253,153,36]},{"925933":[9,253,182,249,14,253,75,12,2,28,17,27,4,58,36,37,71,205]},{"925953":[253,148,36,253,114,36,253,213,33,40,200,130,201,95,146,201,138,246,28,253,80,61,59,58,253,210,21,0,58,205,253,48,38,253,76,26,246,11,32,16,59,205,250,246,13,17,21,200,0,15,24,33,17,27,5,59,58,36,246,40,200,26,8,59,14,1,5,18,253,34,10,56,1,204,246,1,26,54,52,253,214,32,16,59,205,251,194,184,190,255,172,170,183,255,175,178,183,173,248,188,189,190,175,175,255,178,183,255,189,177,174,249,189,184,192,174,187,255,170,189]},{"926074":[189,177,174,250,246,189,184,185,255,184,175]},{"926086":[189,177,178,188,246,182,184,190,183,189,170,178,183,205,246,172,184,182,174,255,188,174,174,255,182,174,255,178,175,250,246,194,184,190,255,192,184,190,181,173,255,181,178,180,174,246,177,174,170,181,174,173,205,251,4,4,200,254,106,8,205,55,2,5,56,248,253,13]},{"926155":[23,33,7,74,27,253,1,36,0,24,57,54,200,249,162,26,36]},{"926173":[232,253,233,21,26,32,21,74,24,253,16,37,71,250,246,253,87,253,232,253,233,43,253,134,8,2,36,32,56,61,200,253,1,43,246,253,2,9,32,16,59,205,246,250,246,13]},{"926220":[21,200,0,15,24,33,17,27,5,59,58,36,246,40,200,26,8,59,14,1,5,18,253,34,10,56,1,204,246]},{"926250":[26,54,52,253,214,32,16,59,205,251,181,178,175,174,198,255,181,184,191,174,198,248,177,170,185,185,178,183,174,188,188,198,255,189,177,174,249,186,190,174,188,189,178,184,183,255,194,184,190,250,246,188,177,184,190,181,173,255,187,174,170,181,181,194,246,170,188,180,255,178,188,200,255,192,170,188,246,189,177,178,188,255,176,174,183,174,187,170,189,174,173,250,246,171,194,255,188,189,184,184,185,188,255,170,181,190,246,184,187,255,188,189,184,184,185,188,255,179,174,189,198,251,255,204,255,50,33,71,255,204,255,12,200,12,59,40,248,50,18,12,36,84,88,137,112,204,199,249,50,18,12,33,253,4,1,32,16,74,24,36,8,199,250,246,55,12,33,4,57,48,18,8,200,109,95,89,54,17,246,24,8,204,255,204,255,204,255,204,246,250,246,20,2,54,18,8,204,255,1,5,200,253,139,52,253,22,1,246,32,16,56,15,54,52,200,20,36,88,84,253,76,59,61,246,13,8,57,48,18,54,18,37,71,205,250,246,20,36,84,88,137,112,40,200,0,15,24,21]},{"926499":[219,74,246,27,1,27,253,97,16,56,15,8,204,205,246,20,59,54,200,50,18,12,36,8,13,57,33,200,250,246,253,140,36,108,137,33,84,88,137,112,36,253,172,253,164,14,246,9,8,19,27,5,74,27,253,97,16,59,204,205,246,55,2,8,200,4,253,10,1,54,18,37,71,205,250,246,50,18,12,52,200,7,60,12,63,54,17,73,2,204,246,255,204,255,24,46,200,52,2,201,253,42,46,11,200,246,50,18,12,33]},{"926610":[4,1,24,8,74,24,204,205,251,20,36,84,88,137,112,40,200]},{"926628":[15,24,21,253,219,74,248,27,1,27,253,97,16,56,15,8,204,205,249,20,59,54,200,50,18,12,36,8,13,57,33,200,250,246,253,140,36,108,137,33,84,88,137,112,36,253,172,253,164,14,246,9,8,19,27,5,74,27,253,97,16,59,204,205,246]},{"926694":[2,8,200,4,253,10,1,54,18,37,71,205,250,246,50,18,12,52,200,7,60,12,63,54,17,73,2,204,246,255,204,255,24,46,200,52,2,201,253,42,46,11,200,246,50,18,12,33,253,4]},{"926745":[24,8,74,24,204,205,251,181,178,175,174,198,255,181,184,191,174,198,248,177,170,185,185,178,183,174,188,188,198,255,189,177,174,249,186,190,174,188,189,178,184,183,255,194,184,190,250,246,188,177,184,190,181,173,255,187,174,170,181,181,194,246,170,188,180,255,178,188,200,255,192,170,188,246,189,177,178,188,255,176,174,183,174,187,170,189,174,173,250,246,171,194,255,188,189,184,184,185,188,255,170,181,190,246,184,187,255,188,189,184,184,185,188,255,179,174,189,198,251,189,177,178,188,255,178,188,248,172,177,187,178,188,189,184,188,216,255,177,190,189,200,249,250,246,177,174,216,188,255,184,190,189,246,188,174,170,187,172,177,178,183,176,255,175,184,187,246,170,255,171,184,192,205,251,177,178,200,255,173,184,255,194,184,190,248,180,183,184,192,255,191,174,174,189,184,187,185,198,249,250,246,194,184,190,255,187,174,170,181,181,194,246,188,177,184,190,181,173]},{"926964":[255,170,183,173]},{"926969":[170,181,181,255,189,177,174,255,184,189,177,174,187,250,246,176,187,174,170,189,255,176,190,194,188,255,192,177,184,246,182,170,173,174,255,189,177,178,188,246,185,184,188,188,178,171,181,174,205,250,246,176,184]},{"927023":[189,177,170,183,180,255,189,177,174,182,205,246,246,250,246,178,175,255,194,184,190,255,172,170,183,246,172,170,189,172,177,255,189,177,174,182,204,251,192,177,194,255,170,187,174,255,194,184,190,248,187,174,170,173,178,183,176,255,189,177,178,188,249,188,178,176,183,198,255,187,190,183,199,199,199,251,194,184,190,255,183,174,174,173,255,172,170,185,174,200,248,171,190,189,255,183,184,189,249,177,184,184,180,188,177,184,189,251,189,184,188,188,255,187,184,172,180,188,248,189,184,188,188,255,178,189,174,182,188,249,189,184,188,188,255,172,184,184,180,178,174,188,251,224,255,188,180,190,181,181,255,192,184,184,173,188,248,249,225,255,188,189,174,191,174,216,188,255,189,184,192,183,251,248,226,255,180,170,187,180,170,189,188,255,172,170,191,174,251,248,226,255,173,170,187,180,255,185,170,181,170,172,174,251,248,227,255,171,184,182,171,255,188,177,184,185,185,174,251,248,227,255,182,178,188,174,187,194,255,182,178,187,174,249,255,183,184,255,192,170,194,255,178,183,205,250,246,255,183,184,255,192,170,194,255,184,190,189,205,251,177,170,191,174,255,170,255,189,187,190,181,178,174,248,170,192,174,188,184,182,174,255,173,170,194,199,251,192,170,189,174,187,175,170,181,181,248,190,185,255,170,177,174,170,173,249,182,170,180,174,255,192,178,188,177,174,188,251,226,224,255,177,170,191,174]},{"927349":[194,184,190,248,182,174,189,255,192,184,174,175,190,181,249,178,180,174,198,251,181,184,184,180,178,183,176,255,175,184,187,255,170,248,185,187,178,183,172,174,188,188,198,255,181,184,184,180,249,173,184,192,183,188,189,170,178,187,188,205,251,183,184,255,181,184,183,180,188,248,170,181,181,184,192,174,173,199,251,254,107,2,194,184,190,255,183,174,174,173,255,170,255,171,184,192,248,189,184,255,176,174,189,255,185,170,188,188,249,189,177,174,255,187,174,173,250,246,174,194,174,176,184,187,174,205,251,254,107,2,178,175,255,194,184,190,255,175,178,183,173,255,170,248,188,177,178,183,194,255,171,170,181,181,200,249,194,184,190,255,172,170,183,255,171,174,255,194,184,190,250,246,178,183,255,189,177,174,255,173,170,187,180,246,192,184,187,181,173,251,221,223,223,255,221,223,223,255,221,223,223,248,255,222,255,221,223,223,221,255,222,249,221,223,223,255,222,221,221,222,255,223,223,222,251,196,84,84,81,112,138,255,93,111,93,81,197,36,248,42,57,8,8,58,253,136,200,163,26,36,253,83,253,84,14,249,8,8,29,17,196,253,160,253,30,197,253,214,24,57,27,200,250,246,20,36,253,62,54,200,12,36,253,26,14,253,72,9,34,10,54,246,0,60,2,205,20,36,253,30,112,81,108,36,201,253,242,36,246,253,185,14,41,10]},{"927664":[30,32,57,205,251,254,107,2,254,106,7,200,12,36,96,120,98,136,201,136,248,36,12,28,61,200,7,10,9,10,36]},{"927697":[205,249,131,101,115,81,93,33,36,65,58,36,37,71,205,250,246,20,2,18,59,61,200,12,36,123,143,136,253,148,36]},{"927729":[123,136,36,253,213,43]},{"927736":[55,57,26,11,58,37,71,60,246,2,205,7,10,8,15,21,3,58,12,28,37,71,205,251,254,107,2,254,106,7,200,7,10,9,11,205,253,115,28,253,87,248,20,59,45,59,36,253,232,253,233,33,0,58,253,81,40,249,24,21,1,33,20,36,253,162,14,48,35,27,4,58,205,250,246,161,26,36,253,81,36,253,162,21,8,13,59,61,200,246,52,2,200,161,26,52,8,13,74,27,4,58,40,38,246,37,71,205,7,10,8,15,21,3,58,36,37,71,205,251,254,107,2,254,106,204,253,38,7,200,119,138,126,7,204,205,248,253,241,253,238,143,136,81,95,135,36,253,45,253,203,33,48,55,13,249,16,59,32,1,54,199,253,55,14,253,82,11,27,35,205,251,254,107,2,254,106,7,200,96,120,98,136,201,136,37,71,248,164,26,36,0,8,57,14,28,52,19,61,200,249,18,18,50,253,93,21,253,75,11,58,37,71,60,2,205,251,221,221,222,223,255,221,223,223,221,248,255,222,255,223,221,222,223,249,223,223,221,223,255,222,222,221,222,251,12,36,99,89,141,95,36]},{"927989":[120,54,253,178,38,58,21,248,7,1,205,20,32,24,36,253,10,1,253,46,13,59,61,200,249,253,93,40,253,75,11,58,54,0,60,2,204,205,251,254,107,2,101,116,95,36,2,30,9,14,253,158,37,24,56,248,196,253,222,36,253,187,197,54,28,55,51,14,16,18,36,249,37,71,74,199,7,1,32,254,106]},{"928071":[204,205,251,254,107,2,254,106,204,253,38,36,253,96,21,9,12,3,58,198,248,253,38,7,200,119,138,126,7,205,249,253,38,40,253,106,200,134,98,128,82,95,107,95,33,0,58,250,246,88,131,81,93,36,32,8,33]},{"928129":[158,37,253,220,51,56,59,246,27,1,58,36,205,0,32,24,21,200,253,214,27,10,59,246,58]},{"928155":[14,253,69,37,27,48,74,27,1,48,18,204,251,254,107,2,254,106,7,200,96,120,98,136,201,136,37,71,248,18,64,27,36]},{"928189":[45,253,81,36,85,88,104,33,4,8,59,249,24,253,154,40,200,253,48,38,253,62,33,253,73,59,58,36,37,71,251,254,107,2,7,1,8]},{"928227":[254,106,7,205,248,128,98,104,201,100,201,135,28,1,3,55,52,200,249,253,13,253,23,36,253,191,14,9,58,253,34,40,54,9,34,205,250,246,5,26,36,253,45,253,153,14,22,71,10,33,200,57,7,2,246,18,58,36,37,71,205,246,251,254,107,2,170,181,181,255,187,178,176,177,189,255,188,189,184,185,248,172,184,181,181,170,171,184,187,170,189,174,249,170,183,173,255,181,178,188,189,174,183,250,246,178,172,174]},{"928336":[178,188,255,171,170,172,180,246,192,178,189,177,255,182,194,255,171,187,170,183,173,246,183,174,192,255,178,183,191,174,183,189,178,184,183,251,254,107,2,194,184,190,255,188,177,170,181,181,255,183,184,189,248,185,170,188,188,204,255,192,178,189,177,184,190,189,249,189,177,174,255,187,174,173,255,172,170,183,174,251,254,107,2,194,184,190,255,172,170,183,255,190,188,174,248,175,178,187,174,255,187,184,173,255,184,187,249,171,184,182,171,184,188,255,189,184,255,185,170,188,188,251,254,107,2,180,183,184,172,180,255,174,182,255,173,184,192,183,248,170,183,173,255,189,177,174,182,255,171,184,182,171,249,189,177,174,182,255,173,174,170,173,205,251,254,107,2,189,177,178,188,255,178,188]},{"928511":[170,255,171,170,173,248,185,181,170,172,174,200]},{"928524":[192,178,189,177,255,170,249,176,190,194,255,192,177,184,255,192,178,181,181,250,246,182,170,180,174,255,194,184,190,255,175,170,181,181,246,246,250,246,170,255,181,184,189,205,251,187,170,183,173,184,182,178,195,174,187,248,189,184,190,187,183,170,182,174,183,189,249,192,178,183,183,174,187,188,250,254,121,45,246,255,255,206,206,206,162,160,161,167,206,206,206,246,170,179,183,174,171,161,167,164,246,251,172,170,190,176,177,189]},{"928633":[170,255,171,174,174,248,255]},{"928641":[228]},{"928643":[180,174,174,185,249,255,255,255,255,187,174,181,174,170,188,174,254,104,251,172,170,190,176,177,189,255,175,170,178,187,194,199,248,255,255,228,255,180,174,174,185,249,255,255,255,255,187,174,181,174,170,188,174,254,104,251,192,177,184,170,255,171,190,172,180,184,199,248,183,184,255,174,182,185,189,194,249,171,184,189,189,181,174,188,205,251,194,184,190,187,255,189,178,182,174,255,192,170,188,248,254,108,3,254,108,2,255,182,178,183,255,254,108,1,254,108,0,255,188,174,172,205,251,194,184,190,255,177,170,191,174,255,161,165,248,188,174,172,184,183,173,188,200,249,176,184,204,255,176,184,204,255,176,184,204,251,183,178,172,174,199,248,194,184,190,255,172,170,183,255,177,170,191,174,249,189,177,178,188,255,189,187,170,188,177,199,251,189,184,184,255,188,181,184,192,199,248,178,255,180,174,174,185,255,182,194,249,185,187,174,172,178,184,190,188,199,251,194,184,190,255,170,181,187,174,170,173,194,248,177,170,191,174,255,194,184,190,187,249,185,187,178,195,174,200,255,173,178,183,176,190,188,199,251,189,177,184,190,176,177,189,255,194,184,190,248,172,184,190,181,173,255,188,183,174,170,180,255,178,183,249,174,177,198,251,178,255,177,170,191,174,248,171,184,189,189,181,174,188,205,249,194,184,190,216,188,255,176,184,189,255,161,160,160,250,246,187,190,185,185,174,188,198,246,255,255,228,255,178,255,192,170,183,189,246,255,255,255,255,183,184,255,192,170,194,199,251,4,4,255,0,57,21,28,16,15,35,205,248,4,52,1,74,9,57,255,80,104,128,36,253,114,33,249,8,8,29]},{"929021":[7,60,17,199,251,175,178,183,174,199,255,178,255,173,178,173,183,216,189,248,192,170,183,189,255,194,184,190,187,249,182,184,183,174,194,255,170,183,192,170,194,188,205,251,173,190,173,174,199,255,194,184,190,248,170,181,187,174,170,173,194,255,177,170,191,174,249,178,189,251,172,184,184,181,199,255,170,255,171,174,174,199,248,177,174,187,174,216,188,255,161,160,160,249,187,190,185,174,174,188,205,251,192,177,184,170,199,255,170,255,175,178,188,177,199,248,194,184,190,255,192,170,181,180,174,173,249,189,177,178,188,255,170,181,181,255,189,177,174,250]},{"929162":[192,170,194,255,177,174,187,174,198,251,7,2,255,254,106,199,253,139,46,8,248,24,1,43,15,20,2,46,21,255,84,139,36,249,5,59,58,253,81,40,255,12,15,32,52,15,46,11,46,251,4,2,200,0,15,24,8,1,199,248,7,10,200,253,214,24,35,205,249,250,246,32,15,32,57,28,253,22,74,28,10,59,74,199,246,255,255,228,255,253,26,14,9,24,3,58,246,255,255,255,255,25,73,74,28,7,74,24,46,11,254,104,251,253,95,48,11,33,48,11,28,10,39,74,199,248,255,255,228,255,253,26,255,204,255,161,160,138,147,201,249,255,255,255,255,25,73,74,28,48,74,27,254,104,251,253,26,14,9,24,3,57,71,1,1,15,46,32,198,248,255,255,228,255,2,15,249,255,255,255,255,25,73,74,28,48,74,27,254,104,251,2,206,15,200,20,59,7,57,253,251,10,40,200,54,9,248,35]},{"929371":[32,75,204,205,255,18,48,35,3,204,205,251,48,24,200,1,26,54,52]},{"929391":[74,28,10,15,32,199,248,255,255,255,44,1,12,56,74,199,249,255,255,255,7,1,12,56,74,199,251,44,1,9,24,200,253,26,14,25,73,74,28,61,8,17,248,0,38,8,56,17,27,52,56,2,7,74,199,251,4,2,200,253,26,21,9,24,3,0,21,74,24,39,199,248,20,56,200,8,8,29,27,49,32,74,199,251,178,255,181,184,188,189,255,182,194,248,175,187,178,174,183,173,200,255,177,174,181,185,249,182,174,255,175,178,183,173,255,177,178,182,199,251,4,4,199,32,15,27,12,74,24,1,200,248,0,1,65,2,14,49,26,11,27,9,24,36,8,1,249,255,204,255,2,59,17,1,37,71,32,1,8,1,204,250,246,48,24,200,82,105,43,7,74,28,10,59,1,199,246,20,15,253,136,40,200,0,15,24,36,253,26,246,61,74,25,57,9,24,3,16,19,27,52,56,2,39,251,109,140,109,140,255,0,15,24,253,162,21,8,13,56,35,248,3,28]},{"929615":[253,76,58,28,200,24,46,52,15,37,71,0,249,35,3,32,205,255,20,2,46,60,198,250,246,4,59,40,200,52,28,52,28,88,88,137,92,253,140]},{"929655":[246,253,63,15,54,1,24,15,46,205,20,2,253,22,3,61,246,0,1,65,2,40,55,2,17,27,15,46,60,32,0,250,246,0,15,24,200,253,8,50,7,205,246,55,2,8]},{"929702":[0,1,65,2,33,0,13,19,27,246,5,74,27,91,140,154,205,253,8,50,199,251,52,2,17,13,11,115,158,205,248,52,2,17,61,56,10,17,27,8,56,249,253,214,27,4,10,15,32,74,199,251,189,177,170,183,180,188,199,248,249,189,177,170,183,180,188,199,251,44,56,44,56,200,97,140,82,108,21,253,62,14,253,35,18,248,15,37,71,35,3,7,205,255,37,71,48,33,32,74,249,27,1,11,35,3,5,1,205,251,12,74,25,253,90,33,255,253,112,1,12,15,46,56,248,12,15,32,253,162,33,255,32,74,25,48,74,27,205,249,255,204,255,204,255,204,250,246,132,108,36]},{"929854":[232,253,233,33,255,1,24,12,60,40,246,7,10,255,122,83,14,42,1,27,246,0,20,15,46,52,36,16,204,205,250,246,255,204,255,204,255,204,246,55,2,63,26,253,19,36,253,224,48,58,253,250,16,32,246,41,60,253,168,200,32,26,8,17,1,32,0,204,205,250,246,20,12,33,200,253,99,36,104,115,28,1,74,17,73,33,246,84,88,137,112,14,2,51,24,15,46,205,246,250,246,253,105,17,27,49,27,10,59,32,1,8,198,246,255,255,228,255,2,255,15,246,255,255,255,255,1,5,15,254,104]},{"929986":[37,71,0,200,12,36,97,151,144,138,14,248,9,49,33,13,24,20,2,255,204,255,204,255,204,249,253,8,15,46,7,74,199,251,255,204,255,204,255,204,248,20,2,8,1,200,37,71,0,255,52,2,1,1,7,249,16,7,32,56,74,199,251,84,88,137,112,40,255,49,26,8,74,24,198,248,255,204,255,204,255,204,249,40,5,10,255,253,105,17,27,4,10,59,7,205,251,188,184,255,178,255,176,170,191,174,255,194,184,190,248,170,183,255,178,189,174,182,200,255,170,183,173,249,194,184,190,216,187,174,255,188,189,178,181,181,250,246,177,174,187,174,205,246,246,250,246,246,246,250,246,178,255,182,174,170]},{"930143":[255,192,174,255,172,170,183,246,188,178,189,255,177,174,187,174,255,170,183,173,246,188,189,170,187,174,255,170,189,255,174,170,172,177,250,246,184,189,177,174,187]},{"930185":[178,175,255,194,184,190,246,181,178,180,174,204,246,250,246,246,246,250,246,246,246,250,246,175,178,183,174,200,255,178,255,176,190,174,188,188,246,194,184,190,255,188,177,184,190,181,173,246,179,190,188,189,255,176,184,205,251,254,109,1,35,0,206,15,255,54,206,58,24,206,58,248,48,38,40,200,253,141,253,229,96,120,98,136,201,136,14,249]},{"930274":[105,17,32,16,59,206,204,205,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,183,184,189,177,178,183,176,249,173,184,178,183,176,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,178,216,182,249,172,177,174,170,185,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,170,182,255,178,249,172,177,174,170,185,198,251,254,109,1,10,60,48,33,7,206,15,10,60,48,33,7,206,15,248,253,184,14,38,206,28,16,8,36,65,74,24,253,85,33,249,125,201,136,36,253,63,50]},{"930427":[18,21,0,206,58,205,251,254,109,1,189,177,174,255,172,170,185,174,255,172,170,183,248,185,170,188,188,255,189,177,187,184,190,176,177,249,189,177,174,255,171,170,187,187,178,174,187,251,254,109,1,35,0,206,15,255,54,206,58,24,206,58,248,128,98,104,201,100,201,135,40,200,253,13,253,23,36,253,191,14,249,253,226]},{"930511":[227,18,58,24,51,36,253,81,54,40]},{"930522":[206,1,205,251,254,109,1,10,60,48,33,7,206,15,10,60,48,33,7,206,15,248,8,37,253,61,36,253,86,36,253,120,36,1,55,33,200,28,62,249,12,15,54,49,32,16,206,1,205]},{"930572":[254,109,1,189,177,174,255,171,181,170,172,180,255,172,170,189,188,248,170,187,174,255,177,190,183,176,187,194,200,249,172,184,182,174,255,171,170,172,180,255,192,178,189,177,250,246,187,190,185,174,174,188,251,254,109,1,192,174,181,172,184,182,174,255,189,184,255,189,177,174,248,175,184,187,189,190,183,174,249,188,177,184,185,185,174,199,250,246,175,170,183,172,194,255,170,255,187,174,170,173,198,246,255,255,228,178,255,182,190,188,189,255,180,183,184,192,246,255,255,255,183,174,176,178,189,178,191,174,254,104,251,254,109,1,175,184,187,255,254,108,0,254,108,1,255,187,190,185,174,174,188,248,178,189,255,178,188,255,173,184,183,174,205,249,171,174,255,176,184,183,174,199,251,254,109,1,2,2,50,200,20,59,40,111,95,115,95,204,205,248,48,24,200,4,48,25,17,27,4,57,48,18,45,205,251,254,109,1,35,0,206,15,255,54,206,58,24,206,58,248,0,5,17,36,96,141,90,36,0,24,57,33,200,249,253,139,8,253,113,74,27,4,206,58,205,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200]},{"930840":[185,170,183,173,170,249,172,187,170,172,180,174,187,188,251,254,109,1,35,0,206,15,255,54,206,58,24,206,58,248,8,37,253,61,36,0,1,65,2,40,200,40,23,59,253,30,249,36,253,140,36,40,38,59,33,4,206,58,205,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,184,185,174,183,249,172,177,174,188,189,188,255,189,184,255,176,174,189,250,246,188,189,190,175,175,251,254,109,1,35,0,206,15,255,54,206,58,24,206,58,248,141,90,126,95,253,61,54,40,200,253,231,17,1,249,141,90,126,95,52,2]},{"930984":[27,58,253,34,21,0,206,58,251,254,109,1,10,60,48,33,7,206,15,10,60,48,33,7,206,15,248,253,87,253,232,253,233,36,147,136,129,154,135,36,253,174,33,40,249,253,139,8,0,206,58,205,251,254,109,1,35,0,206,15,255,54,206,58,24,206,58,248,101,116,95,36]},{"931057":[213,40,134,98,128,82,95,107,95,33,249,253,131,253,233,33,253,145,56,59,253,113,74,27,4,206,58,205,251,254,109,1,10,60,48,33,7,206,15,10,60,48,33,7,206]},{"931103":[248,101,116,95,36,28,55,51,14,16,18,33,40,200,249,196,253,222]},{"931122":[253,187,197,21,253,48,253,49,37,71,0,206,205,251,175,184,187,255,162,160,255,187,190,185,174,174,188,248,178,216,181,181,255,189,174,181,181,255,194,184,190,249,188,184,182,174,189,177,178,183,176,198,250,246,177,184,192,255,170,171,184,190,189,255,178,189,198,246,255,255,228,255,194,174,188,246,255,255,255,255,183,184,254,104,251,43,43,74,255,0,57,21,28,2,7,74]},{"931219":[248,37,26,40,32,200,12,36,253,232,253,233,36,253,184,14,249,38,74,28,16,8,36,65,74,24,28,12,60,33,250,246,25,73,74,28,17,24,255,1,11,21,0,58,74,27,246,253,34,46,205,20,12,33,200,253,139,8,253,252,29,12,15,54,246,49,58,28,1,1,39,74,205,250,246,253,139,21,4,12,58,8,40,200,253,147,56,35,32,0,205,246,43,43,74,200,20,59,37,71,0,32,204,205,246,251,189,177,174,183,255,176,184,255,170,192,170,194,199,251,43,43,74]},{"931349":[205]},{"931351":[37,26,40,32,200,253,66,36,253,232,253,233,37,71,4,59,52,249,253,241,253,238,46,74,24,15,46,7,204,205,250,246,20,36,253,136,36,32,8,48,54,200,26,8,48,58,36,246,14,12,13,21,74,27,200]},{"931407":[221,29,24,5,26,21,1,246,58,15,46,205,250,246,5,26,40,200,88,102,0,11,36,253,111,253,56,46,74,24,246,15,46,21,200,253,106,40,253,241,253,238,46,74]},{"931452":[253,34,14]},{"931456":[8]},{"931458":[20,2,28,17,27,58,56,17,1,39,204,205,250,246,43,15,32,4,37,16,15,36,42,57,14,17,27,32,246,43,154,43,154,43,204,205,246,251,192,178,189,177,255,172,187,194,188,189,170,181,188,248,165,255,166,255,194,184,190,255,172,170,183,249,175,178,183,173,255,170,255,176,187,174,170,189,250,246,175,170,178,187,194,255,178,183,255,189,177,174,246,185,194,187,170,182,178,173,205,246,250,246,175,181,184,182,185,255,175,181,184,182,185,200,246,192,177,178,195,195,181,174,255,192,177,184,182,185,251,43,43,74,255,0,57,21,28]},{"931596":[7,74,205,248,37,26,40,12,36,253,25,40,200,114,128,33,253,63,50,249,253,45,253,81,21,42,56,19,27,58,56,17,1,39,205,250,246,253,45,253,81,36,253,153,14,2,13,48,13,58,253,153,54,200,246,253,170,253,55,14,2,30,8,19,61,200,253,25,52,5,50,46,246,60,2]},{"931674":[254,109,1,178,216,182,255,188,178,172,180,199,255,188,177,184,192,248,182,174,255,170,255,171,184,189,189,181,174,200,249,176,174,189,255,188,184,182,174,189,177,178,183,176,199,251,254,109,1,172,184,184,181,255,171,184,189,189,181,174,199,248,177,174,187,174,216,188,249,188,184,182,174,189,177,178,183,176,255,175,184,187,250,246,194,184,190,205,251,254,109,1,181,174,170,191,174,255,182,174,255,170,181,184,183,174,248,178,216,182,255,188,178,172,180,205,255,194,184,190,249,177,170,191,174,255,182,194,255,178,189,174,182,205,251,204,204,204,204,204,204,204,204,204,251,192,177,194,204,204,204,204,204,251,4,59,21,200,253,126,253,241,253,238,46,74,24,253,34,14,248,253,147,74,27,1,58,74,27,198,249,250,246,32,0]},{"931861":[154]},{"931863":[234,14,253,75,11,27,5,58,8,56,246,49,15,32,33,40,200,112,81,97,153,33,17,27,246,10,59,32,1,8,1,198,250,246,5,10,20,10,17,27,10,59,58,8,1,198,246,255,255,228,255,5,10,20,10,18,58,246,255,255,255,255,1,1,42,56,18,254,104,251,20,59,32,56,200,1,26]},{"931941":[54,52,253,154,253,234,14,248,41,9,38,74,27,58,21,1,1,16,199,251,194,184,190,255,189,174,181,181,248,170,183,194,184,183,174,255,170,183,173,255,178,249,192,178,181,181,255,176,178,191,174,255,194,184,190,250,246,188,190,172,177,255,170,255,185,178,183,172,177,199,251,7,17,200,20,59,32,56,12,12,43,253,154,253,234,14,248,253,219,74,27,4,1,54,7,204,255,253,36,253,37,33,249,49,15,32,33,40,112,81,97,153,46,7,205,251,222,222,255,222,221,223,222,223,255,223,221,223,248,223,221,221,255,223,221,221,223,222,249,223,223,221,222,223,255,221,223,222,222,221,251,128,98,104,201,100,201,135,14,255,8,8,29,7,248,16,59,61,255,83,201,107,138,36]},{"932116":[45,253,60,14,249,3,56]},{"932124":[15,205,251,128,98,104,201,100,201,135,14,255,8,8,29,7]},{"932141":[16,59,61,255,145,95,141,201,36]},{"932151":[45]},{"932153":[60,14,249,3,56,59,15,205,251,5,1,200,7,10,52]},{"932169":[141,1,115,130,137,8,56,248,51,31,51,16,19,27,255,10,59,24,32,74,199,249,255,204,255,55,2,52,255,0,57,21,28,2,205,250,246,5,1,200,12,2,32,74,24,56,255,4,59,1,14,246,17,27,5,58,8,56,255,88,90,110,17,60,205,246,255,204,255,7,60,17,1,54,18,8,198,251,91,91,91,200,31,48,0,49,60,199,255,12,59,54,248,253,106]},{"932265":[54,36,162,63,15,36,161,17,8,253,45,253,60,40,249,43,56,15,45,204,200,7,8,74,24,54,18]},{"932293":[205,250,246,54,40,200,19,1,39,1,21,15,61,57,5,21,59,246,255,30,9,29,15,7,2,255,16,7,2,32,56,206,246,251,254,110,0,254,119,7,252,3,254,107,2,254,103,255,174,185,178,188,184,173,174,255,255,178,178,178,255,254,120,3,248,255,170,255,181,178,183,180,255,189,184,255,255,255,255,249,255,255,255,189,177,174,255,185,170,188,189,255,255,255,254,120,3,246,255,255,187,170,183,173,184,182,178,195,174,187,254,120,3,246,170,175,189,174,187,255,182,184,188,189,181,194,246,173,178,188,187,174,176,170,187,173,178,183,176,246,192,177,170,189,255,177,170,185,185,174,183,174,173,246,178,183,255,189,177,174,255,175,178,187,188,189,246,189,192,184,255,176,170,182,174,188,205,254,120,3,246,181,178,183,180,255,170,192,170,180,174,183,188,246,189,184,255,177,178,188,255,190,183,172,181,174,246,181,174,170,191,178,183,176,255,189,177,174,246,177,184,190,188,174,200,254,120,3,246,177,174,255,179,190,188,189,255,187,190,183,188,246,184,190,189,255,189,177,174,255,173,184,184,187,254,120,3,246,178,183,189,184,255,189,177,174,255,187,170,178,183,194,246,183,178,176,177,189,205,254,120,3,254,103,254,103,246,176,170,183,184,183,255,177,170,188,246,182,184,191,174,173,255,170,181,181,255,189,177,174,246,178,189,174,182,188,255,170,187,184,190,183,173,246,177,194,187,190,181,174,205,254,120,7,246,194,184,190,255,192,178,181,181,255,177,170,191,174,246,189,184,255,175,178,183,173,255,170,181,181,246,189,177,174,255,178,189,174,182,188,246,183,174,172,174,188,188,170,187,194,255,189,184,246,171,174,170,189,255,176,170,183,184,183,205,254,120,7,246,189,177,178,188,255,178,188,255,194,184,190,187,246,172,177,170,183,172,174,255,189,184,255,171,174,255,170,246,177,174,187,184,254,120,3,254,103,254,103,246,194,184,190,255,182,190,188,189,255,176,174,189,246,189,177,174,255,167,255,172,187,194,188,189,170,181,188,246,189,184,255,171,174,170,189,255,176,170,183,184,183,205,254,120,9,254,103,254,103,251,254,107,2,254,119,7,252,3,247,181,184,184,180,255,170,189,255,189,177,178,188,248,188,189,170,181,175,184,188,255,184,183,255,189,177,174,249,189,177,187,184,183,174,205,251,254,107,2,254,119,7,252,3,247,178,189,255,178,188,255,194,184,190,187,248,189,178,182,174,255,189,184,255,188,177,178,183,174,199,251,254,107,2,254,119,7,252,3,247,170,181,188,184]},{"932876":[194,184,190,255,183,174,174,173,248,189,184,255,173,174,175,174,170,189,255,189,177,178,188,249,176,190,194,199,251,170,255,172,190,187,178,184,190,188,255,171,184,193,200,248,181,174,189,188,255,189,170,180,174,255,178,189,249,192,178,189,177]},{"932938":[190,188,251,141,90,126,95,163,160,92,54,161,160,160,138,147,201,248,163,160,92,54,161,160,160,138,147,201,54,30,31,1,249,48,18,205,255,8,74,27,5,74,27,253,97,16,1,205,251,141,90,126,95,163,160,92,54,161,160,160,138,147,201,248,1,48,32,56,200,253,231,99,81,121,95,52,161,92,249,161,160,160,138,147,201,54,4,13,11,17,27,48,18,251,0,57,21,28,2,30,31,1,48,17,24,205,248,0,57,21,28,2,30,31,1,48,17,24]},{"933057":[251,0,57,21,28,2,30,31,1,48,17,24,205,248,20,36,141,90,126,95,40,200,170,145,104,95,54,249,9,57,40,32,19,48,18,205,4,253,216,59,32,10,204,251,89,89,154,200,161,160,160,138,147,201,10,59,24,56,248,12,12,36,253,73,253,74,14,253,75,11,27]},{"933129":[74,27,52,249,1,1,39,74,205,89,89,154,89,89,154,199,250,246,55,2,18,58,198,246,255,255,228,255,253,75,11,27,52,56,2,246,255,255,255,255,37,63,15,54,5,74,27,49,58,254,104,251,89,89,154,199,255,42,206,15,205,248,37,71,0,200,37,63,15,54,5,74,27,49,32,74,249,89,154,89,89,201,199,251,89,89,154,199,255,20,2,12,32,10,74,25,71,205,248,37,71,0,161,160,160,138,147,201,40,1,24,46,1,249,28,10,8,56,32,74,199,255,89,154,89,89,201,199,251,4,1,56,200,96,138,89,154,89,199,248,253,139,7,57,52,200,138,147,201,21,253,95,253,109,9,205,249,0,15,24,161,160,138,147,201,10,59,58,8,1,198,250,246,55,2,18,58,198,246,255,255,228,255,161,160,138,147,201,0,29,58,246]},{"933322":[255,255,255,39,74,24,1,0,29,32,1,254,104,251,89,89,154,199,255,20,2,12,32,10,74,25,71,74,248,17,61]},{"933354":[10,200,0,15,24,36,4,28,52,14,249,17,27,5,58,39,74,255,89,154,89,89,206,199,251,89,89,154,200,42,206,15,204,205,248,37,71,0]},{"933393":[0,15,24,33,7,2,40,32,1,39,249,141,81,141,81,154,255,89,154,89,89,206,199,251,89,89,154,200,253,139,17,27,5,21]},{"933428":[74,199,248,4,1,56,40,200,26,9,0,13,35,201,39,74,199,251,42,2,255,0,57,21,28,2,30,31,1,48,18,205,248,253,202,8,57,48,17,24,205,55,2,8,249,20,28,48,54,253,64,59,27,1,74,27,253,97,16,1,205,251,22,76,5,75,75,75,206,199,248,48,200,48,63,17,1,206,74,199,251,0,74,200,204,255,48,74,27,253,97,16,1,205,248,20,74,25,43,253,2,8,32,1,54,204,205,251,178,255,184,183,172,174,255,177,170,173,255,170,248,175,178,188,177,255,173,178,183,183,174,187,200,255,178,249,188,189,178,181,181,255,187,174,182,174,182,171,174,187,250,246,178,189,255,189,184,255,189,177,178,188,246,173,170,194,205,251,173,184,255,194,184,190]},{"933603":[187,174,182,174,182,171,174,187,255,192,177,174,183,249,178,255,192,170,188,255,194,184,190,183,176,198,250,246,246,178,255,188,190,187,174,255,173,184,183,216,189,205,251,188,184,200,255,178,216,191,174,255,171,174,174,183,248,181,178,191,178,183,176,255,178,183,255,189,177,178,188,249,172,170,191,174,255,175,184,187,250,246,194,174,170,187,188,200,255,170,183,173,255,194,184,190,246,189,177,178,183,180,255,194,184,190,255,172,170,183,246,179,190,188,189,255,172,184,182,174,250,246,170,181,184,183,176,255,170,183,173,255,171,184,182,171,246,184,185,174,183,255,192,170,181,181,188,198,251,184,183,172,174,255,178,255,175,170,187,189,174,173,248,178,183,255,189,177,178,188,255,172,170,191,174,249,188,184,255,171,170,173,255,170,181,181,255,189,177,174,250,246,179,170,195,195,255,177,170,183,173,188,246,176,190,194,188,255,187,170,183,255,170,192,170,194,246,178,183,255,177,178,173,255,178,183,255,189,177,174,250,246,188,170,183,173,205,251,161,26,200,17,59,15,14,36,57,12,3,27,248,253,95,9,10,32,56,59,24,253,16,54,18,32,205,249,253,8,52,17,1,8,22,57,54,18,37,71,205,251,93,97,36,4,41,58,35,36,117,151,128,14,18,58,248,36,40,200,4,253,120,8,198,255,12,59,14,5,58,8,249,56,200,0,74,25,43,253,2,74,27,10,59,199,251,52,2,200,5,58,253,81,40,35,3,45,199,248,12,59,54,52,200,253,219,74,27,11,199,251,184,183,174,255,184,175,255,190,188,248,170,181,192,170,194,188,255,181,178,174,188,205,251,184,183,174]},{"933980":[184,175,255,190,188,248,170,181,192,170,194,188,255,189,174,181,181,188,249,189,177,174,255,189,187,190,189,177,205,251,7,2,200,253,101,36,89,137,21,40,59,24,253,16,46,32,248,0,57,21,27,3,12,28,46,205,48,24,200,54,8,249,11,27,49,58,7,205,32,0,200,89,153,82,126,81,251,178,255,192,170,181,181,174,173,255,184,175,175,248,182,194,255,171,187,184,189,177,174,187,255,181,174,184,249,250,246,192,177,170,189,255,170]},{"934094":[173,178,183,176,190,188,205,246,251,183,184,192,255,178,255,188,177,184,190,181,173,248,185,187,184,171,170,171,181,194,255,189,170,181,180,249,189,184,255,177,178,182,204,251,173,178,173,255,194,184,190,255,172,184,182,174,248,175,187,184,182]},{"934156":[182,194,249,171,187,184,189,177,174,187,188]},{"934168":[187,184,184,182,198,250,246]},{"934176":[170,187,174,255,192,174,255,172,184,184,181,198,246,251,252,2,254,109,1,254,107,2,254,106,255,0,32,24,36,4,8,29,54,248,253,45,253,242,36,253,62,8,56,200,36,21,59,58,253,34,21,249,54,9,48,17,24,205,0,57,21,28,2,204,205,252,1,250,247,255,255,255,255,255,255]},{"934255":[255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,249]},{"934274":[255,255,255,255,255,255,255,255,255,255]},{"934286":[252,2,247,204,12,36,253,232,253,233,52,200,52,28,52,28,40,200,248,196,108,136,81,122,159,201,98,197,36,4,8,59,24,249,253,246,253,51,46,74,24,36,205,252,1,250,247]},{"934345":[255,248,255,255,255,255,255]},{"934353":[255,255,255,255,255,255,255,255,249,255,255]},{"934365":[255,255,255,255,252,2,247,54,52,200,20,59,14,253,62,33,253,73,59,24,253,94,204,248,253,241,253,238,36,145,98,196,101,116,95,197,36,253,133,17,9,249,253,10,1,33,7,57,200,12,15,32,253,232,253,233,33,204,205,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,248]},{"934443":[255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255]},{"934462":[255,255,255,255,255,255,255,255,255,252,2,247,253,20,40,200,253,153,14,24,10,13,3,58,28,253,38,253,19,36,248,253,115,36,253,232,253,233,14,52,253,240,253,142,17,7,2,28,249,24,10,56,15,54,1,24,7,2,46,13,205,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255]},{"934554":[249,255]},{"934567":[252,2,247,20,17,27,200,253,38,253,19,253,196,253,30,36,253,153,14,2,11,26,248,23,167,253,56,36,253,0,14,88,102,33,253,137,1,200,253,158,253,53,249,14,253,28,9,200,16,56,33,4,253,1,36,0,24,57,33,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,255,255,255,255,255,255,252,2,247,52,74,28,253,95,9,32,253,153,36,253,9,57,253,93,14,253,75,10,248,26,52,57,32,36,205,54,52,200,20,36,253,93,40,249,48,46,253,75,9,9,74,27,1,32,1,13,205,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"934743":[248,255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,255,255,255,255,252,2,247,48,46,200,48,33,0,2,13,205,253,38,253,19,21,200,248,167]},{"934791":[56,20,60,3,61,200,101,116,95,36,41,20,50,249,253,131,253,233,52,5,63,59,58,40,38,7,205,252,1,250,247,255,255,255,255,255,255,255,255,255,255]},{"934833":[255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,255,255,255,252,2,247,253,39,36,253,0,253,19,36,253,168,253,85,40,200,253,38,36,253,153,54,254,121,45,248,253,147,56,19,48,17,73,2,205,0,32,24,21,200,101,249,116,95,14,253,41,18,253,34,14,253,69,37,27,1,48,18,205,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,255,255,255,255,255,255,252,2,247,20,36,253,136]},{"934978":[38]},{"934980":[19,52,200,52,28,36,253,162,33,248,253,15,59,58,54,17,73,2,205,249,255,204,255,204,255,204,255,204,255,204,251,252,2,254,109,1,254,107,2,254,106,255,0,32,24,36,4,8,29,54,248,253,45,253,242,36,253,62,8,56,200,36,21,59,58,253,34,21,249,54,9,48,17,24,205,0,57,21,28,2,204,205,252,1,250,247,255,255,255,255,255,255,255,255,255]},{"935076":[255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,255,255,255,255,255,252,2,247,204,108,136,81,122,159,201,98,40]},{"935120":[20,59,33,248,42,59,24]},{"935128":[30,36,253,10,1,14,8,32,3,48,18,205,249,20,36,253,30,21,253,180,9,27,1,58,8,22,57,204,205,252,1,250,247,255,255,255,255,255]},{"935168":[255]},{"935170":[255,255,255,255,248,255,255,255,255]},{"935183":[255,255,255,255,255,255,249,255,255,255,255,255,255,255,255]},{"935199":[255,255,255,255,255,252,2,247,46,8,56,12,20,200,253,246,253,51,33]},{"935219":[8,59,248,253,129,61,59,24,253,30,46,11,33,20,36,253,168,253,85,21,249,253,46,3,56,59,27,9,24,36,205,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,248]},{"935268":[255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,255,252,2,247,28,12,60,21,200,20,59,21,55,12,8,54,248,28,22,59,27,17,48,74,24,49,24,1,204,205,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,252,2,247,20,17,27,200,253,179,62,253,246,253,51,14,49,26,11,24,248,36,21,200,101,116,95,135,140,122,28,253,22,2,249,253,241,253,238,46,74,24,36,7,205,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,255,255,252,2,247,54,52,200,253,78]},{"935445":[32,253,34,33,253,20,40,253,115,36]},{"935456":[232,253,233,248,43,253,215,58,253,32]},{"935467":[60,21,13,8,56,32,8,74,24,36,249,204,20,2,200,253,54,1]},{"935486":[35,17,27,205,252,1,250,247,255,255,255]},{"935498":[255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255]},{"935516":[255]},{"935518":[255]},{"935520":[255,255,255,249,255,255,255,255,255,255,255,255,255,255,252,2,247,0,32,24,40,200,253,160]},{"935545":[30,46,11,21,253,137,1,12,32,248,19,58,128,117,88,138,129,136,201,14,52,74,27,1,249,58,37,71,32,1,199,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,252,2,247,123,143,136,253,148,33,0,74,24,253,45]},{"935631":[60,253,197,21,200,248]},{"935638":[39,33,52,1,10,26,8,0,58,36,205,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,252,2,247,20,59,14,253,137,74,27,162,26,36]},{"935692":[232,253,233,14,253,2,9,248,253,214,18,59,61,200,253,87,36,253,232,253,233,33,41,20,50,249,253,45]},{"935721":[81]},{"935723":[19,52,253,105,17,46,19,58,13,199,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,255,255,255,252,2,247,253,241,253,238,101,116,95,135,140,122,204,1,1,3,200,248,253,87,36,253,45,253,68,101,116,95,14,253,41,19,58,36,40,249,0,32,24,46,11,204,253,175,74,27,1,48,18,205,251,252,2,254,109,1,254,107,2,254,106,255,0,32,24,36,4,8,29,54,248,253,45,253,242,36,253,62,8,56]},{"935859":[36,21,59,58,253,34,21,249,54,9,48,17,24,205,0,57,21,28,2,204,205,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,255]},{"935922":[255,255,255,252,2,247,204,196,84,84,81,112,138,255,93,111,93,81,197,36,248,253,249,253,22,40]},{"935949":[147,74,27,1,48,18,8,198,249,253,38,40,200,12,2,9,1,27,1,48,18,204,205,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,255,255,255,255,255,252,2,247,52,17,52,200,253,133,17,9,253,230,14,52,26,253,30,21,200,248,108,136,81,122,159,201,98,14,253,62,33,18,58,32,56,249,61,200,196]},{"936057":[160,253,30,197]},{"936062":[253,48,38]},{"936066":[188,59,200,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,255,255,255,255,252,2,247,12,36,196,84,84,81,112,138,255,93,111,93,81,197,248,36,52,28,28,32,58,253,30,14,2,26,54,0,60,2,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,255,252,2,247,17,8,17,200,196,253,160,253,30,197,21,253,41,59]},{"936199":[253,136,40,248,253,133,17,9,253,230,36,253,30,33,253,232,253,233,40,200,4,4,13,249,59,27,17,48]},{"936228":[54,0,60,2,200,28,204,205,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255]},{"936284":[252,2,247,20,2,200,196,253,160,253,30,197,33,32,59,58,36,40,200,248,120,81,137,80,36,253,68,253,86,14,253,145,74,27,1,24,249,112,81,108,36,201,253,242,36,253,30,46,11,36,40,38,204,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255]},{"936369":[249]},{"936376":[255]},{"936384":[252,2,247,0,32,24,40,200,20,36,253,185,14,41,1,27,1,24,248,36,35,205,255,119,138,126,253,255,14,253,48,38,253,40,74,27,249,0,29,27,35,205,251,252,2,254,109,1,254,107,2,254,106,255,0,32,24,36,4,8,29,54,248]},{"936448":[45]},{"936450":[242,36,253,62,8,56,200,36,21,59,58,253,34,21,249,54,9,48,17,24,205,0,57,21,28,2,204,205,252,1,250,247]},{"936486":[255]},{"936495":[248]},{"936501":[255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,255,255,255,255,255,252,2,247,167,253,196,253,30,21,200,253,87,253,232,253,233]},{"936540":[36,253,9,253,182,14,248,253,158,253,53,18,58,253,136,200,253,45,253,242,36,253,226,253,227,8,56,249,253,196,253,30,253,19,14,253,145,74,27,10,59,24,36,21,200,252,1,250,247]},{"936597":[255,255,255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,255,255,255,255,255,252,2,247,112,81,108,36,201,253,242,54,17,24,205,20,36,253,136,36,248,24,24,8,1,54,200,112,81,108,36,253,185,18,37,40,249,44,28,15,55,24,3,27,17,48,74,24,28,200,252,1,250,247]},{"936689":[255]},{"936697":[248]},{"936704":[255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,255,255,255,255,255,252,2,247,9,1,27,1,24,15,46,11,55,204,205,248,24,63,15,200,0,32,24,40,112,81,108,36,253,185,14,249,41,10,16,1,30,36,161,253,56,204,205,252,1,250,247]},{"936773":[255]},{"936783":[248]},{"936787":[255]},{"936798":[249]},{"936800":[255,255,255,255,255,255,255,255,255,252,2,247,20,36,16,1,30,36,161,253,56,21,196,253,160,253,30,197,28,248,32,58,253,153,14]},{"936836":[193,51,27,1,24,32,15,27,200,249,42,17,22,32,253,34,35,205,252,1,250,247]},{"936866":[255]},{"936872":[248]},{"936881":[255]},{"936886":[249]},{"936893":[255,252,2,247,0,32,24,32,56,200,9,74,28,101,116,95,14,248,253,41,19,58,13,199,251,252,2,254,109,1,254,107,2,178,255,177,170,191,174,255,170,248,185,187,174,189,189,194,255,176,187,174,174,183,249,173,187,174,188,188,205,251,252,2,254,109,1,254,107,2,254,106]},{"936966":[0,32,24,36,4,8,29,54,248,253,45,253,242,36,253,62,8,56,200,36,21,59,58,253,34,21,249,54,9,48,17,24,205,0,57,21,28,2,204,205,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255]},{"937031":[255]},{"937033":[255]},{"937035":[255]},{"937037":[249]},{"937039":[255,255,255,255,255,255,255,255,255,255,255,255,252,2,247,101,116,95,21,253,38,253,19,14]},{"937064":[224,51,24,36,40,200,248,101,116,95,36]},{"937076":[153,54,40,167,253,196,253,30,36,253,158,253,53,14,249,5,63,59,32,8,74,24,8,56,32,36,205,252,1,250,247]},{"937109":[255]},{"937120":[248]},{"937123":[255]},{"937135":[249]},{"937137":[255,255,255,255,255,255,255,255,255,255,255,252,2,247,20,12,54,200,253,13]},{"937158":[23,80,103,113,130]},{"937164":[253,137,74,27,248,253,196,253,30,36,253,153,14,2,11,26,23,253,0,167,253,56,14,249,253,87,253,232,253,233,33,4,10,57,12,48,19,24,36,205,252,1,250,247]},{"937219":[255]},{"937222":[248]},{"937234":[255,255,249,255,255,255,255,255,255,255,255,255,255,255,255,255,252,2,247,167,253,56,36]},{"937258":[153,14,57,7,2,17,27,200]},{"937267":[158,253,53,14,248,5,63,74,24,0,28,200,7,2,21,18,15,46,249,253,38,253,19,40,90,137,98,104,138,33,253,158,37,56,59,200,252,1,250,247]},{"937311":[255]},{"937321":[248,255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"937351":[2,247,253,45,253,81,253,19,33,0,24,3,56,59,24,13,205,24,46,248,0,32,24,36,253,34,14,253,147,56,32,8,74,24,36,40,249,101,116,95,36,129,98,46,74,24,13,35,205,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255,255]},{"937433":[249]},{"937441":[255]},{"937446":[252,2,247,16,0,200,119,138,126,253]},{"937457":[21,88,131,81,93,54,248,0,32,24,14,48,74,27,1,48,18,205,249]},{"937477":[125,1,54,253,2,74,27,0,29,27]},{"937488":[97,16,1,205,251,252,2,254,109,1,254,107,2,254,106,200,7,10,12,12,48,54,253,214,27,10,248,59,48]},{"937518":[24]},{"937520":[255,5,74,66,57,0,32,24,21,249,253,46,253,47,36,196,253,160,253,30,197,46,74,24,36,35,205,252,1,250,247]},{"937553":[255]},{"937564":[255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,255,255,255,255,255,252,2,247,40,37,51,27,253,4,74,24,253,136,8,56,200,20,15,32,248,253,55,21,17,27,1,48,17,24,205,249]},{"937626":[204]},{"937628":[204]},{"937630":[204,252,1,250,247]},{"937639":[255]},{"937646":[255,255,255,248,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,252,2,247,101,116,95,40,200,134,98,128,82,95,107,95,36,253,213,248,33,253,131,253,233,14,40,57,200,162,26,36,253,232,253,233,36,253,9,249,57,253,93,14,34,11,58,253,136,14,48]},{"937718":[1,48,18,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,255,255,255,255]},{"937769":[252,2,247,101,116,95,21,253,115,36,253,232,253,233,43,253,35,27,17,48,74,248,24,56,200,52,2,253,159,3,58,253,34,40,54,9,32,1,249,8,52]},{"937811":[147,59,32,1,13,205,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255]},{"937861":[247,54,52,200,12,36,28,37,24,253,170,253,57,36,32,8,32]},{"937879":[56,200,55,12,43]},{"937885":[221,29,27,52,253,48,38,253,76,253,82,11,249,58,253,34,21,54,9,48,18,205,252,1,250,247,255,255,255]},{"937925":[248]},{"937927":[255]},{"937940":[249,255]},{"937949":[252,2,247,16,0,200,167,26,36,90,137,98,104,138,14,52,74,248,27,200,101,116,95,36]},{"937974":[213,43,253,125,22,48,17,73,2,249,253,131,253,233,40,200,253,38,253,19,36,253,153,54,5,63,57,48,18,252,1,250,247]},{"938020":[255,248]},{"938032":[255]},{"938036":[249]},{"938046":[255,255,255,255,255,252,2,247,255,254,106,255,204,248,253,48,38,253,11,253,12,32,253,43,14,249,28,57,253,15,17,48,17,73,2,35,255,204,255,204,254,121,45,251,252,2,254,109,1,254,107,2,253,160,253,30,36,253,2,10,253,93,21,108,136,81,122,159,201,98,248,43,28,200,49,25,62,8,59,48,18,7,2,33,205,251,252,2,254,109,1,254,107,2,172,170,185,178,188,172,174,198,248,255,255,228,255,194,174,188,249,255,255,255,255,183,184,254,104,251,182,170,194,255,189,177,174,255,192,170,194,255,184,175,248,189,177,174]},{"938185":[177,174,187,184]},{"938190":[181,174,170,173,249,189,184]},{"938198":[189,177,174,250,246,189,187,178,175,184,187,172,174,251,252,2,254,109,1,254,107,2,254,106,200,7,10,12,12,48,54]},{"938230":[214,27,10,248,59,48,17,24,205,255,5,74,66,57,0,32,24,21,249,253,46,253,47,36,196,253,160,253,30,197,46,74,24,36,35]},{"938313":[252,2,247,40,37,51,27,253,4,74,24,253,136,8,56,200,20,15,32,248,253,55,21,17,27,1,48,17,24,205,249,255,204,255,204,255,204,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255]},{"938378":[249]},{"938385":[252,2,247,101,116,95,40,200,134,98,128,82,95,107,95,36,253,213,248,33,253,131,253,233,14,40,57,200,162,26,36,253,232,253,233,36,253,9,249,57,253,93,14,34,11,58,253,136,14,48,74,27,1,48,18,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255]},{"938468":[255,255,255,255,255,249,255,255,255,255,255,255,255,255,255,255,255,255,255,255,252,2,247,101,116,95,21,253,115,36,253,232,253,233,43,253,35,27,17,48,74,248,24,56,200,52,2,253,159,3,58,253,34,40,54,9,32,1,249,8,52,253,147,59,32,1,13,205,252,1,250,247]},{"938553":[255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,252,2,247,54,52,200,12,36,28,37,24,253,170]},{"938592":[57,36,32]},{"938596":[32,248,56,200,55,12,43,253,221,29,27,52,253,48,38,253,76,253,82,11,249,58,253,34,21,54,9,48,18,205,252,1,250,247]},{"938632":[255]},{"938644":[248]},{"938646":[255]},{"938659":[249,255,255,255,255,255,255,255,255,252,2,247,0,32,24,36,253,202,11,14,48,26,253,0,253,19,21,200,48,248,46]},{"938691":[198,74,27,1,58,13,205,249,253,20,253,21,253,19,14,18,64,27,253,40,1,253,35,17,24,56,252,1,250,247]},{"938727":[255]},{"938735":[248]},{"938742":[255]},{"938744":[249]},{"938756":[255,255,252,2,247,101,116,95,36,253,213,43,253,134,8,2,36,7,205,248,253,131,253,233,40,200,167]},{"938784":[196,253,30,36,253,185,14,253,72,10]},{"938795":[38,253,19,249,36,253,153,54,253,48,38,5,63,57,48,18,205,252,1,250,247]},{"938828":[255]},{"938830":[248]},{"938839":[255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,255,255,255,252,2,247,255,254,106,255,204,248,253,48,38,253,11,253,12,32,253,43,14,249,28,57]},{"938881":[15,17,48,17,73,2,35]},{"938889":[204]},{"938891":[204,251,1,5,0,200,254,106,253,144,205]},{"938903":[4,48,25,17,27,4,57,48,17,24,45,199,249,90,154,90,154,90,204,205,250,246,0,32,24,36,253,117,36,253,120,54,255,119,138,126]},{"938940":[246]},{"938942":[157,17,27,5,60,2,28,253,54,1,48,17,27,35,205,246,253,76,7,199,119,138,126,36,16,1,30,37,71,0,199,251,124,159,154,124,154,124,154,204,205,255,12,59]},{"938987":[200,248,167,253,196,253,30,36,253,158,253,53,52,255,51,54,24,10,249,28,8,59,24,93,91,54,18,32,0,205,250,246,253,45,36,253,153,21,200,12,36,253,43,14,4,4,1,26,10,246,18,36,52,253,136,253,57,36,52,15,46,1,54,18,45,204,246,17,73,19,15,253,46]},{"939061":[47,36,196,253,160,253,30,197,52,250,246,196,253,152,253,67,36,253,153,197,14,253,219,26,200,13,59,56,21,246,253,45,253,242,33,40,200,8,32,1,48,19,15,8,205,246,124,159,154,124,154,124,154,255,16,56,61,37,71,199,251,44,44,2,200,55,2,17,27,52,5,56,59,24,1,248,28,253,22,2,36,54,18,32,204,205,255,54,40,200,249,20,36,116,125,129,255,8,32,3,27,5,60,2,199,251,103,82,157,200,16,18,21,40,200]},{"939178":[160,253,30,197,248,17,8,17,200,12,36,48,48,33,40,19,34,45,199,249,253,87,253,232,253,233,43,253,72,9,38,57,12,15,54,5,58,199,251,124,154,124,154,124,200,7,10,45,12,12,48,54,248,48,1,56,59,48,17,24,200,254,106,253,144,205,249,52,2,161,253,42,4,253,4,1,54,9,27,13,24,10,17,250,246,28,27,52,2,59,17,72,2,30,31,1,48,18,205,246,17,8,17,200,163,253,42]},{"939286":[117,40,32,1,28,200,253,54,1,246,17,57,32,16,1,74,199,10,24,61,59,206,74,199,251,5,0,200,12,36,93,97,33,87,82,8,32,198]},{"939327":[228]},{"939329":[253,102,8,9,21,44,17,1,249]},{"939339":[255]},{"939342":[25,73,74,28,7,74,24,46,11,254,104,251,20]},{"939356":[8,200,54,52,24,46,54,40,1,5,37,71,248,165,160,160,138,147,201,10,59,24,56,200,2,74,27,249,5,74,27,52,253,50,1,45,199,250,246,55,2,18,58,198,246,255,255,228,255,165,160,160,138,147,201,40,56,2,246]},{"939419":[5,74,66,57,5,51,58,254,104,251,93,154,120,154,120,200,54,40,253,102,8,9,14,0,29,248,7,2,205,255,20,59,33,52,2,41,28,26,96,201,249,142,98,17,27,5,58,45,205,250,246,253,184,5,253,18,14,253,131,63,93,97,56,46,11,36,246,253,193,253,194]},{"939492":[102,253,182,14,253,137,13,19,27,5,60,2,205,246,2,38,48,9,14,253,76,24,56,253,73,74,27,49,60,205,250,246,20,59,37,71,0,200,24,1,19,26,33,17,27,10,246,59,7,205]},{"939543":[93,154,120,154,120,154,246,255,255,16,56,61,37,71,0,206,204,205,251,37,71,0,200,138,147,201,14,253,224,51,27,200,48,24,248,12,12,43,4,1,54]},{"939586":[249,93,154,120,154,120,200,48,24,200,253,4,4,2,35,199,251,20,2,8,200,93,97,36,8,4,21,200,49,24,10,248,32,74,24,56,200,1,26]},{"939626":[52,4,1,54,204,205,249,93,154,120,154,120,200,16,56,61,37,71,0,204,199,251,182,194]},{"939651":[176,187,170,183,173,185,170]},{"939659":[178,188,248,184,191,174,187]},{"939667":[178,183,255,189,177,174,249,174,170,188,189,205]},{"939680":[178,216,182,255,171,170,173,250,246,192,178,189,177,246,173,178,187,174,172,189,178,184,183,188,205,246,178,216,181,181,255,182,170,187,180,255,194,184,190,187,250,246,182,170,185,205,255,171,174,188,189,255,184,175,246,181,190,172,180,199,254,121,45,251,188,184,182,174,173,170,194]},{"939752":[178,216,181,181,248,171,174]},{"939760":[178,183]},{"939763":[170]},{"939765":[177,178,176,177,249,188,172,177,184,184,181]},{"939777":[171,170,183,173,199,251,173,178,173,255,194,184,190,255,180,183,184,192,204,248,249,250,246,170,255,189,187,174,174,246,189,194,185,178,172,170,181,181,194,255,177,170,188,246,182,170,183,194,255,188,174,172,184,183,173,170,187,194,250,246,171,187,170,183,172,177,174,188,246,188,190,185,185,184,187,189,174,173,246,172,181,174,170,187]},{"939862":[184,175]},{"939865":[189,177,174,250,246,176,187,184,190,183,173]},{"939877":[171,194]},{"939880":[189,177,174,246,189,187,190,183,180,205,255,189,177,178,188,246,189,187,190,183,180,250,246,189,194,185,178,172,170,181,181,194,246,172,184,183,189,170,178,183,188,255,192,184,184,173,194,246,189,178,188,188,190,174,255,175,184,187,250,246,188,189,187,174,183,176,189,177,200]},{"939950":[170,183,173,246,191,170,188,172,190,181,170,187,246,189,178,188,188,190,174]},{"939970":[189,184,250,246,172,170,187,187,194,246,182,170,189,174,187,178,170,181,188,255,175,187,184,182,246,184,183,174,255,185,170,187,189,255,184,175,250,246,189,177,174,255,189,187,174,174,255,189,184,246,170,183,184,189,177,174,187,205,251,248,201,192,178,188,177,178,183,176]},{"940039":[185,184,183,173,201,249,250,246,189,177,187,184,192]},{"940053":[178,189,174,182]},{"940058":[178,183,198,246]},{"940064":[228,255,194,174,188,177,246]},{"940075":[183,184,254,104,251,248,255,255,255,188,189,184,185]},{"940089":[178,189,199,251,248,255,255,175,178,183,174,255,189,177,174,183,199,251,184,180,170,194,200,255,177,174,187,174,216,188,248,194,184,190,187,255,178,189,174,182,249,171,170,172,180,200,255,172,170,190,188,174,255,178,250,246,172,170,183,216,189,255,190,188,174,255,178,189,205,246,178,216,182,255,188,189,190,172,180,255,178,183,246,189,177,178,188,255,175,184,190,183,189,170,178,183,251,177,184,192]},{"940190":[182,170,183,194,198,248]},{"940197":[255,228,254,108,1,254,108,0]},{"940206":[187,190,185,174,174,188]},{"940216":[254,108,3,254,108,2]},{"940223":[187,190,185,174,174,188,254,104,251,0,32,24,40,200,17,73,2,37,9,32,253,56,35,205,248,253,38,200,0,32,24,21,253,55,33,1,74,25,71,74,24,249,253,95,253,34,32,253,81,14,0,29,58,13,204,205,250,246,12,59,40,200,196,253,222,36,253,187,197,54,18,205,246,101,116,95,33,200,28,55,51,14,16,18,33,40,246,12,59,21,39,74,24,1,253,48,253,49,32,36,7,199,250,246,253,38,21,25,73,74,67,57,42,28,51,32,36,40,246,101,116,95,36,253,45,253,153,36,19,1,32,15,46,8,56,246,9,74,28,200,101,116,95,14,5,74,26,11,27,35,251,248,178,188]},{"940378":[176,187,174,170,189]},{"940384":[181,190,172,180,251,248]},{"940391":[178,188]},{"940394":[176,184,184,173]},{"940399":[181,190,172,180,251,248,255,178,188,255,182,174,177,255,181,190,172,180,251,248,255,181,174,184,185,170,187,173,255,181,190,172,180,251,171,194,255,189,177,174,255,192,170,194,200,248,194,184,190,187,255,175,184,187,189,190,183,174,200,251,163]},{"940461":[182,184,187,174]},{"940466":[189,184]},{"940469":[176,184,248]},{"940478":[229,231,249,194,170,194,199,251,162]},{"940488":[182,184,187,174,255,189,184,255,176,184,248,255,255,255,255,255,255,230,231,249,192,177,174,174,199,251,161,255,182,184,187,174,255,189,184,255,176,184,248,255,255,255,255,255,255,232,233,249,176,184,184,173,255,179,184,171,199,251,194,184,190]},{"940550":[176,184,189]},{"940554":[170,248,192,177,184,181,174]},{"940562":[234,235,199,199,249,176,184]},{"940570":[194,184,190,199,251,194,184,190]},{"940579":[176,184,189,255,170,248,192,177,184,181,174,255,234,235,199,249,176,184,255,194,184,190,199,251,194,184,190,216,191,174,255,173,184,183,174,248,192,174,181,181,200,255,181,174,189,188,249,177,170,191,174,255,170,255,172,190,185,255,184,175,250,246,189,174,170,204,251,178]},{"940648":[192,187,184,189,174,255,170,248,192,184,187,173,205]},{"940662":[179,190,188,189,249,184,183,174,205]},{"940672":[184,183]},{"940675":[170,250,246,188,189,184,183,174,255,170,183,173,246,189,177,187,174,192,255,178,189,255,178,183,189,184,246,189,177,174,255,184,172,174,170,183,205,255,178,189,250,246,192,170,188,255,182,194,255,192,184,187,173,205,246,178,189,255,192,170,188,255,192,177,170,189,246,192,184,190,181,173,255,188,170,191,174,255,182,174,205,250,246,178,255,177,184,185,174,255,188,184,182,174,173,170,194,246,188,184,182,174,184,183,174,255,175,178,183,173,188,246,189,177,170,189]},{"940792":[192,184,187,173]},{"940797":[170,183,173,250,246,171,187,178,183,176,188]},{"940809":[178,189,255,189,184,246,182,174,205,255,189,177,174,255,192,184,187,173,246,178,188,255,189,177,174,250,246,171,174,176,178,183,183,178,183,176,255,184,175,246,182,194,255,188,184,183,176,205,251,178,255,192,187,184,189,174,255,170,248,188,184,183,176,205,255,179,190,188,189,249,184,183,174,205,255,184,183,255,170,250,246,176,190,178,189,170,187,255,170,183,173,246,189,177,187,174,192]},{"940907":[178,189]},{"940910":[178,183,189,184,246,189,177,174]},{"940919":[188,180,194,205]},{"940924":[178,189,250,246,192,170,188]},{"940932":[182,194]},{"940935":[188,184,183,176,205,246,178,189,255,172,184,190,181,173,255,189,170,182,174,246,171,174,170,188,189,188,255,170,183,173,250,246,175,187,174,174]},{"940972":[182,178,183,173,188,205,255,178,189,246,175,181,178,189,189,174,187,188]},{"940991":[184,183,246,189,177,174]},{"940998":[192,178,183,173]},{"941003":[170,183,173,250,246,181,190,187,180,188,255,178,183,255,184,190,187,246,182,178,183,173,188,205,255,178,189,255,178,188,246,189,177,174,255,188,184,183,176,255,184,175,250,246,183,170,189,190,187,174,200,255,184,175,246,177,190,182,170,183,178,189,194,200,255,184,175,246,173,187,174,170,182,188]},{"941078":[170,183,173,250,246,173,187,174,170,182,174,187,188,205,251,170,173,173]},{"941097":[176,170,187,181,178,172,200,248,176,178,183,176,174,187]},{"941112":[170,183,173,249,170,185,185,181,174,255,170,183,173,255,172,184,184,180,250,246,175,184,187,255,162,255,182,178,183,190,189,174,188,205,246,170,173,173,255,172,170,187,187,184,189,188,200,246,185,184,189,170,189,184,174,188,200,250,246,176,170,187,170,182]},{"941177":[182,170,188,170,181,170,246,170,183,173]},{"941188":[172,190,187,187,194,246,185,184,192,173,174,187]},{"941201":[170,183,173,250,246,188,189,178,187,255,192,174,181,181,205,255]},{"941218":[173,173,246,189,184,182,170,189,184,255,185,170,188,189,174,200,246,188,189,178,187,255,192,174,181,181,255,170,183,173,250,246,188,181,184,192,181,194,255,170,173,173]},{"941261":[187,174,173,246,192,178,183,174]},{"941270":[170,183,173]},{"941274":[171,187,178,183,176,246,189,184]},{"941283":[170]},{"941285":[171,184,178,181,205]},{"941291":[170,173,173,250,246,188,190,176,170,187,200,255,188,184,194,246,188,170,190,172,174,255,170,183,173,246,192,170,189,174,187,200,255,188,189,178,187,250,246,170,183,173,255,171,187,178,183,176,255,189,184,255,170,246,171,184,178,181]},{"941350":[170,176,170,178,183,205,251,178]},{"941359":[189,177,178,183,180]},{"941365":[178,248,175,184,187,176,184,189]},{"941374":[177,184,192]},{"941378":[189,184,249,188,182,178,181,174,204,251,12,15,32,200,63,74,20,2,32,253,232,253,233,37,71,0,248]},{"941406":[139,8,28,253,81,1,57,46,60,198,255,253,109,9,32]},{"941422":[81,249,14,253,129,15,54,1,74,27,10,59,7,204,205,251,40,1,200,1,56,74,17,71,1,199,248,163,160,138,147,201,54,253,154,253,234,162,26,253,75,11,56,59,249,58,7,205]},{"941471":[0,20,15,54,253,2,74,27,10,59,199,250,246,55]},{"941486":[18,58,198,246]},{"941491":[255,228,255,0,20,15,54,1,10,246,255,255,255,255,48,24]},{"941508":[106,253,42,0,20,63,254,104,251,188,184,255,181,178,180,174,255,194,184,190,248,183,174,174,173,255,163,160,249,187,190,185,174,174,188,205,250,246,188,178,181,181,194,199,251,194,184,190,255,192,170,183,189,255,189,184,248,185,181,170,194,255,170,255,176,170,182,174,198,249,189,170,181,180,255,189,184,255,182,174,205,251,194,184,190,216,191,174,255,184,185,174,183,174,173,248,189,177,174,255,172,177,174,188,189,188,199,249,189,178,182,174,255,189,184,255,176,184,205,251,7,74,17,71,74,200,33,1,25,71,15,248,0,20,15,54,1,74,27,5,74,199,251,192,174,181,172,184,182,174,255,189,184,255,182,194,248,188,177,184,185,199,255,188,174,181,174,172,189,249,188,189,190,175,175,255,192,178,189,177,255,170,205,250,246,173,184,255,178,189,255,183,184,192,199,251,188,184,255,181,178,180,174,255,194,184,190,248,170,181,187,174,170,173,194,255,177,170,191,174,249,184,183,174,255,184,175,255,189,177,184,188,174,205,251,55,2,52,200,0,57,21,28]},{"941752":[199,248,253,27,14,32,10,17,24,253,136,40,200,249,1,26,54,52,55,2,45]},{"941774":[251,55,2,52,200,0,57,21,28,2,199,248,20,59,40,200,1,36,25,36,90,98,137,46,7,205,249,253,191,253,153,21,200,8,1,42,10,18,58,7,205,251,55,2,52,200,0,57,21,28,2,199,248,20,59,40,200,253,187,54,18,205,249,86,129,21,32,11,59,61,253,137,3,32,1,7,205,251,55,2,52,200,0,57,21,28,2,199,248,4,1,24,141,90,126,95,40,170,145,104,95,54,249,8,26,29,58,15,46,7,205,251,55,2,52,200,0,57,21,28,2,199,248,20,59,40,200,120,105,46,7,200,253,139,33,253,137,2,36,249,8,40,200,253,38,52,253,147,56,32,1]},{"941926":[205,251,55,2,52,200,0,57,21,28,2,199,248,120,201,108,21,161,26,200,8,1,42,10,18,58,7,251,192,177,194,255,173,184,174,188,255,183,184,248,184,183,174,255,184,192,183,249,171,184,189,189,181,174,188,198,255,176,184,250,246,175,178,183,173,255,184,183,174,246,175,178,187,188,189,199,251,20,36,17,32,253,81,40,200,20,59,1,37,73,2,248,253,219,27,48,19,15,7,205,255,253,39,33,253,139,8,249,30,31,1,48,19,15,8,198,251,9,16,48,36,253,16,32,92,125,82,33,200,248,12,12,48,54,4,1,26,51,56,59,58,28,40,249,253,54,13,32,8,74,24,45,199,250,246,13,21,63,15,17,15,253,87,36,253,13,253,23,80,103,113,130,246,14,162,253,42,48,54,52,17,57,45,11,58,28,40,204,246,46,21,200,108,136,81,122,159,201,98,40,5,56,34,250,246,9,16,48,14,253,41,17,200,253,115,28]},{"942143":[87,162,26,36,246,253,232,253,233,14,255,253,240,253,142,18,58,13,21,36,45,49]},{"942166":[253,48,38,8,32,3,27,49,19,58,13,199,251,92,125,82,200,32,8,32,8,5,58,32,74,199,248,46,21,200,12,36,253,87,36,253,193,253,203,200,4,253,120,33,249,5,63,59,58,8,32,204,205,6,10,45,199,251,177,170,191,174,255,194,184,190,255,188,174,174,183,248,170,183,173,194,198,249,250,246,177,174,255,192,170,188,255,184,190,189,246,181,184,184,180,178,183,176,255,175,184,187,246,184,190,187,255,185,187,178,195,174,173,250,246,174,189,177,174,187,246,182,174,173,170,181,181,178,184,183,205,246,178,255,192,184,183,173,174,187,255,192,177,174,183,250,246,177,174,255,192,178,181,181,255,171,174,246,171,170,172,180,198,251,178,216,182,255,179,190,188,189,255,188,184,182,174,248,173,190,173,174,200,255,189,177,178,188,255,178,188,249,171,181,178,183,173,216,188,255,177,190,189]},{"942370":[251,252,2,254,109,0,254,107,2,7,2,12,20,200,254,106,7,204,205,248,253,38,40,200,108,136,81,122,159,201,98,36,253,146,249,255,204,255,204,255,204,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,252,2,247,108,136,81,122,159,201,98,40,253,5,21,0,24,3,17,248,196,253,152,253,67,36,253,153,197,255,42,59,24]},{"942482":[30,36,253,230,36,249,253,174,33,0,58,253,10,1,14,8,32,3,48,18,205,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,255,255,255,255,255,252,2,247,12,12,60,253,77,17,9,253,30,21,42,59,59,61,200,248,253,77,17,9,253,10,1,14,204,253,133,17,9,253,30,21,249,42,59,59,61,200,253,133,17,9,253,10,1,14,204,205,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,255,255,255,255,255,252,2,247,20,36,253,30]},{"942654":[10,1,21,200,253,251,11,59,61,248,253,251,1,44,55,200,108,136,81,122,159,201,98,40,249,20,36,253,153,14,40,74,9,18,58,36,54,18,205,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,255,255,255,255,255,252,2,247,101,116,95,36,253,10]},{"942748":[40,253,232,253,233,14,253,62,33,18,58,248,12,28,54,17,24,205,20,36,253,133,17,9,253,10,1,40,249,253,246,253,51,14,253,87,36,253,232,253,233,33,8,3,27,17,48,1,252,1,250,247,255,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,255,249]},{"942832":[255]},{"942834":[255,255,255,255,255,255,255]},{"942844":[252,2,247,20,12,54,253,153,14,24,10,13,3,24,101,116,95,40,248,37,63,15,36,253,10,1,14,8,32,3,58,24,51,33,249,253,115,36,253,232,253,233,43,253,188,59,58,26,52,57,54,17,24,252,1,250,247,255]},{"942903":[255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255]},{"942923":[255]},{"942925":[255,255,255,255,255,249,255,255,255,255]},{"942939":[255,255,255,255,255,255,252,2,247,17,8,17,200,108,136,81,122,159,201,98,33,42,59,248,24,101,116,95,21,253,41,59,24,253,106,200,253,87,36,253,232,253,233,249,52]},{"942985":[157,3,6,10,12,28,54,17,73,2,205,252,1]},{"942999":[247,255,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,255,255,255,255,255,255,255,255,255,255,255,255,255,249,255,255,255,255,255,255,255,255,255,255,255,255,252,2,247,108,136,81,122,159,201,98,40,253,231,24,32,253,219,25,34,248,17,14,48,74,27,1,48,18,196,253,152,253,67,36,253,153,197,249,40]},{"943082":[0,32,24,36,253,62,33,0,58,36,54,18,205,252,1,250,247,255,255,255]},{"943104":[255,255,255,255,255]},{"943112":[255,248,255,255,255]},{"943119":[255,255,255,255,255]},{"943127":[255,249,255,255,255]},{"943134":[255,255,255,255,255]},{"943142":[255,252,2,247,16,0,200,42,59,27,30,56,15]},{"943156":[16,1,205,248,0,32,24,36,253,230,33,0,58,253,10,1,36,48,48,33,249,255,255,204,255,204,255,204,255,204,251,184,190,172,177,199,248,249,194,184,190,255,179,174,187,180,199,251,173,184,183,216,189,255,170,187,176,190,174,248,192,178,189,177,255,170,255,175,187,184,195,174,183,249,173,174,170,173,187,184,172,180,205,250,246,177,174,216,181,181,255,183,174,191,174,187,246,172,177,170,183,176,174,255,177,178,188,246,185,184,188,178,189,178,184,183,199,251,178,189,216,188,255,170,255,188,174,172,187,174,189,248,189,184,255,174,191,174,187,194,184,183,174,251,188,184]},{"943303":[194,184,190,255,181,178,180,174,248,171,190,188,189,174,173,255,173,184,192,183,255,182,194,249,173,184,184,187,200,255,170,183,173,255,170,187,174,250,246,171,174,178,183,176,255,170,255,179,174,187,180,246,171,194,255,189,170,181,180,178,183,176,255,189,184,246,182,174,198,255,183,184,187,182,170,181,181,194,255,178,250,246,192,184,190,181,173,255,171,174,255,170,183,176,187,194,246,170,183,173,255,182,170,180,174,255,194,184,190]},{"943413":[185,170,194,255,175,184,187,255,178,189,200,250,246,171,190,189,255,178,255,171,174,189,246,194,184,190,216,187,174,255,179,190,188,189]},{"943448":[176,184,178,183,176,255,189,184,255,171,187,174,170,180,250,246,170,181,181,255,182,194,255,185,184,189,188,246,170,183,173,255,188,189,174,170,181,255,182,194,246,165,160,255,187,190,185,174,174,188,205,251,178,216,182,255,170,255,187,190,185,174,174,248,185,184,189,255,175,170,187,182,174,187,205,249,184,183,174,255,173,170,194,255,178,255,192,178,181,181,250,246,189,170,180,174,255,184,191,174,187,255,189,177,174,246,192,184,187,181,173,255,192,178,189,177,255,182,194,246,188,180,178,181,181,195,205,255,177,170,191,174,250,246,194,184,190]},{"943586":[182,174,189,255,182,194,246,171,187,184,189,177,174,187,255,178,183,255,189,177,174,246,173,174,188,174,187,189,198,255,177,174,216,188,250,246,192,170,194,255,187,178,172,177,174,187,246,189,177,170,183,255,178,255,170,182,205,251,206,206,255,173,174,191,255,172,170,191,174,255,206,206,248,255,255,183,184,255,175,170,187,182,178,183,176,249,255,255,255,187,174,186,190,178,187,174,173,251,48,38,40,248,96,120,98,136,201,136,14,255,16,21,18,136,201,136,249,255,204,255,204,255,204,255,205,251,96,120,98,136,201,136,14,255,49,26,11,24,36,199,248,255,204,255,204,255,204,249,16,18,21,136,201,136,255,255,204,251,194,184,199,255,178,216,182,255,183,184,189,248,187,190,183,183,178,183,176,255,170,249,172,177,170,187,178,189,194,255,177,174,187,174,205,251,188,182,170,181,181,177,170,172,180,174,187,204,248,249,250,246,192,170,188,255,177,178,173,178,183,176,200,246,194,184,190,255,175,184,190,183,173,255,182,174,199,246,250,246,246,184,180,170,194,200,255,194,184,190,255,172,170,183,246,181,174,170,191,174,255,183,184,192,205,251,185,170,194,255,162,160,255,187,190,185,174,174,188,248,184,185,174,183,255,161,255,172,177,174,188,189,249,170,187,174,255,194,184,190,255,181,190,172,180,194,198,250,246,188,184,200,255,185,181,170,194,255,176,170,182,174,198,246,255,255,228,255,185,181,170,194,246,255,255,255,255,183,174,191,174,187,199,254,104,251,176,184,184,173,255,181,190,172,180,255,189,177,174,183,251,192,174,181,181,255,175,178,183,174,200]},{"943956":[178,248,173,178,173,183,216,189,255,192,170,183,189,249,194,184,190,187,255,187,190,185,174,174,188,205,251,185,170,194,255,161,160,160,255,187,190,185,174,174,188]},{"943998":[184,185,174,183,255,161,255,172,177,174,188,189,249,170,187,174,255,194,184,190,255,181,190,172,180,194,198,250,246,188,184,200,255,185,181,170,194,255,176,170,182,174,198,246,255,255,228,255,185,181,170,194,246,255,255,255,255,183,174,191,174,187,199,254,104,251,5,0,200,254,106,205,255,13,31,13,31,200,248,253,73,57,33,10,1,253,86,14,253,7,35,27,10,59,24,35,249,4,59,1,33,253,50]},{"944102":[253,34,253,3,3,27,0,29,7,2,250,246,253,184,253,114,36,253,56,253,117,33,26,8,32,1]},{"944129":[85,33,200]},{"944133":[18,246,21,0,74,27,200,20,12,33,40,125,201,136,21,200,246,2,37,71,2,37,71,17,27,58,15,46,74,27,205,250,246,20,36,125,201,136,24,25,36,253,154,28,253,22,2,36,21,246,12,59,21,52,2,200,193,193,193,17,1,253,81,56,17,246,1,7,199,54,43,43,200,49,27,49,24,1,7,32,251,178,255,188,190,187,174,255,173,184,255,177,170,191,174,248,170,255,181,184,189,255,184,175,255,171,174,173,188,205,249,250,246,173,178,173,255,194,184,190,255,180,183,184,192,246,178,175,255,194,184,190,255,185,181,170,194,174,173,246,189,177,174,255,175,181,190,189,174,255,178,183,250,246,189,177,174,255,172,174,183,189,174,187,255,184,175,246,189,184,192,183,255,189,177,178,183,176,188,246,172,184,190,181,173,255,177,170,185,185,174,183,198,251,254,109,0,252,0,228,254,106,216,188,255,177,184,190,188,174,248,255,188,170,183,172,189,190,170,187,194,254,114,251,254,109,0,252,0,228,254,106,216,188,255,177,184,190,188,174,248,255,188,170,183,172,189,190,170,187,194,249,255,182,184,190,183,189,170,178,183,255,172,170,191,174,254,113,251,252,0,228,172,184,183,189,178,183,190,174,248,255,188,170,191,174,255,170,183,173,255,186,190,178,189,254,114,251,177,170,191,174,255,168,160,248,187,190,185,174,174,188,198,255,192,170,183,189,249,189,184,255,185,181,170,194,250,246,173,178,176,176,178,183,176,255,176,170,182,174,198,246,255,255,228,194,174,188,246,255,255,255,183,184,254,104,251,184,180,170,194,200,255,190,188,174,255,189,177,174,248,188,177,184,191,174,181,255,192,178,189,177,255,194,199,251,188,177,184,191,174,181,255,187,174,183,189,170,181,248,178,188,255,168,160,255,187,190,185,174,174,188,205,249,178,255,177,170,191,174,255,170,181,181,255,173,170,194,251,189,178,182,174,188,255,190,185,199,248,189,178,182,174,255,175,184,187,255,194,184,190,249,189,184,255,176,184,205,251,172,184,182,174,255,171,170,172,180,248,181,170,189,174,187,200,255,178,255,177,170,191,174,249,189,184,255,171,190,187,194,250,246,189,177,178,183,176,188,205,251,188,184,182,174,189,177,178,183,176,255,178,188]},{"944646":[175,184,181,181,184,192,178,183,176,255,194,184,190,205,249,178,255,173,184,183,216,189,255,181,178,180,174,205,251,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"944909":[255]},{"944911":[255]},{"944913":[255,255,255,255,255]},{"944930":[255]},{"944945":[255]},{"944952":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"944981":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945024":[255]},{"945039":[255]},{"945053":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945121":[255]},{"945134":[255]},{"945148":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945213":[255]},{"945227":[255]},{"945241":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945317":[255]},{"945332":[255]},{"945347":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945418":[255]},{"945433":[255]},{"945448":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945517":[255]},{"945532":[255]},{"945545":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945616":[255]},{"945631":[255]},{"945646":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945682":[255]},{"945684":[255]},{"945686":[255]},{"945688":[255,255,255,255,255,255,255]},{"945696":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945924":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945941":[255,255,255,255,255,255,255]},{"945949":[255]},{"945951":[255]},{"945953":[255]},{"945955":[255,255,255,255,255,255,255,255,255]},{"945965":[255,255,255,255,255,255,255]},{"945973":[255]},{"945975":[255]},{"945977":[255,255,255,255,255,255,255,255]},{"945987":[255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946002":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946074":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946091":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946110":[255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946124":[255,255,255,255,255,255,255,255,255,255,255,255]},{"946137":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946210":[255]},{"946213":[255,255,255,255,255,255,255]},{"946225":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946346":[255]},{"946349":[255,255,255,255,255,255,255]},{"946361":[255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946376":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946558":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946679":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946711":[255,255,255,255,255,255,255,255,255,255,255]},{"946723":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946743":[255,255,255,255,255,255,255,255,255,255]},{"946755":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946826":[255]},{"946828":[255,255,255,255,255]},{"946837":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946864":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946908":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"947006":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"954488":[34,169,206,160,96]},{"954852":[175,161,160]},{"955117":[214,205,160]},{"955529":[171,161,160]},{"959725":[148,204,160]},{"962925":[136,161,160]},{"962951":[136,161,160]},{"963167":[136,161,160]},{"963214":[136,161,160]},{"965041":[136,161,160]},{"965069":[136,161,160]},{"965214":[136,161,160]},{"965298":[136,161,160]},{"965316":[136,161,160]},{"967797":[34,194,160,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,220,160,160]},{"971417":[234,234,234,234]},{"971614":[234,234,234,234]},{"972824":[87,161,160]},{"972834":[87,161,160]},{"972851":[87,161,160]},{"974665":[92,252,175,160,234]},{"974706":[43,176,160]},{"974722":[22,176,160]},{"975106":[34,19,134,160]},{"975122":[234,234,234,234]},{"975132":[34,19,134,160]},{"975265":[34,13,176,160,234,234]},{"975332":[34,243,175,160,234,234]},{"975401":[255]},{"976357":[132,161,160]},{"976423":[132,161,160]},{"978658":[116,161,160]},{"982135":[29,128,162]},{"982182":[234,234,234,234]},{"982376":[0,161,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,234,174,160]},{"983466":[116,161,160]},{"983651":[116,161,160]},{"988539":[128,161,160]},{"988657":[128,161,160]},{"988668":[128,161,160]},{"988874":[128,161,160]},{"988902":[128,161,160]},{"989142":[128,161,160]},{"996856":[120,161,160]},{"999246":[124,161,160]},{"999265":[124,161,160]},{"999359":[124,161,160]},{"999574":[124,161,160]},{"1002731":[92,57,205,30]},{"1003079":[92,201,175,160]},{"1003229":[34,68,143,160]},{"1003277":[34,68,143,160]},{"1004410":[156,129,160]},{"1004647":[234,234,234,234]},{"1004774":[34,2,221,160,234,234]},{"1004799":[234,234,234,234]},{"1004919":[92,15,221,160]},{"1005119":[91,161,160]},{"1005176":[234,234,34,34,221,160]},{"1005296":[91,161,160]},{"1007765":[124,207,160]},{"1007826":[234,234,234,234]},{"1007848":[0,128,162]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[179,128,162]},{"1008025":[34,108,216,160,234,234,234,234,234,234,234,234,234,234,234]},{"1008064":[234,234,234,234]},{"1008136":[234,234,234,234]},{"1008614":[156,232,28,234]},{"1008640":[234,234,234,234]},{"1008660":[234,234,234,234]},{"1008815":[34,130,128,160,234,234]},{"1008891":[156,232,28,234]},{"1008908":[234,234,234,234]},{"1008931":[234,234,234,234]},{"1009870":[0,128,162]},{"1009930":[34,186,133,160,234,234]},{"1010109":[0,128,162]},{"1010175":[65,134,160]},{"1010392":[29,128,162]},{"1011580":[234,234,234,234]},{"1011648":[29,128,162]},{"1011680":[234,234,234,234]},{"1011784":[29,128,162]},{"1011808":[34,176,152]},{"1011812":[234]},{"1012597":[234,234,234,234,234,234,234,234]},{"1013277":[179,128,162]},{"1041509":[30]},{"1048568":[32,24,1,6]},{"1048576":[34,73,164,160,48,66,192,27,240,63,192,5,240,59,192,4,240,55,192,12,240,51,192,11,240,47,192,58,240,43,192,73,240,57,192,1,240,53,192,80,240,49,192,2,240,45,192,59,240,30,192,42,240,26,192,13,240,22,192,20,240,18,192,19,240,14,192,41,240,10,135]},{"1048648":[107,199]},{"1048651":[176,249,167]},{"1048655":[107,72,167]},{"1048659":[208,4,104,135]},{"1048664":[107,104,107,72,152,201,73,208,2,169]},{"1048675":[201,80,208,2,169,1,26,207,23,244,126,176,14,175,23,244,126,58,168,104,175,23,244,126,130,200,255,104,130,196,255,169]},{"1048708":[143,211,243,126,169,10,143,204,243,126,107,175,197,243,126,240,6,175,145,80,127,73,1,107,165,138,201,128,208,2,165,35,107,175,87,243,126,240,1,107,175,202,243,126,41,64,73,64,107,169,112,72,171,34,218,128,160,34,140,129,160,34,69,196,160,107,226,32,34,4,212,160,194,32,169,7]},{"1048785":[143,13,192,126,143,19,192,126,107,72,175,22,244,126,41,8,208,64,175,162,128,48,240,6,165,16,201,18,240,50,165,27,240,4,165,160,240,42,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1048847":[143,202,243,126,175,204,243,126,201,7,208,6,169,8,143,204,243,126,104,107,175,22,244,126,41,247,143,22,244,126,169,64,143,202,243,126,175,204,243,126,201,8,208,6,169,7,143,204,243,126,104,107,72,165,27,240,7,173,12,4,201,255,208,59,175,197,243,126,201,3,176,51,165,27,240,23,165,160,208,19,175,113,129,48,240,13,175,22,244,126,9,8,143,22,244,126,130,177,255,169]},{"1048948":[143,202,243,126,143,255,15,126,175,204,243,126,201,7,208,6,169,8,143,204,243,126,104,107,175,204,243,126,201,14,240,1,107,169]},{"1048983":[143,204,243,126,107,169]},{"1048990":[143,204,243,126,34,69,249]},{"1048998":[107,175,196,80,127,201,1,208,1,107,201,255,208,2,26,107,175,74,243,126,208,27,175,202,243,126,208,17,173,12,4,208,6,175,56,128,48,128,10,175,57,128,48,128,4,175,58,128,48,107,175,197,243,126,201,2,144,3,169,1,107,175,204,243,126,107,175,74,243,126,133,29,107,34,140,129,160,175,161,128,48,240,20,175,110,240,126,41,127,143,110,240,126,175,106,240,126,41,127,143,106,240,126,175,61,128,48,208,40,175,187,242,126,41,223,143,187,242,126,175,251,242,126,41,223,143,251,242,126,175,22,242,126,41,127,143,22,242,126,175,81,240,126,41,254,143,81,240,126,107,218,90,34,91,131,160,168,34,120,131,160,156,233,2,192,38,208,15,175,107,243,126,26,41,3,143,107,243,126,208,14,128]},{"1049181":[34,179,145,7,34,157,153,7,24,130,1]},{"1049193":[56,34,241,159,160,122,250,107,218,90,34,190,132,160,168,128,205,8,34,27,140,160,144,45,72,90,175]},{"1049221":[80,127,240,7,34,45,131,160,130,28]},{"1049232":[34,91,131,160,72,34,135,138,160,144,8,189,96,14,9,32,157,96,14,104,34,208,139,160,34,92,220,6,122,104,40,107,8,34,27,140,160,144,247,72,90,175]},{"1049275":[80,127,240,6,34,74,131,160,128,231,34,190,132,160,128,201,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,67,133,160,144,4,169,46,56,107,24,107,189,94,12,192,32,240,19,192,55,240,15,192,56,240,11,192,57,240,7,72,34,67,133,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049360":[107,191,128,242,126,107,175,52,80,127,240,6,58,143,52,80,127,107,191,128,242,126,9,64,159,128,242,126,107,72,169,1,143]},{"1049394":[80,127,165,93,201,20,240,14,169]},{"1049404":[143]},{"1049406":[80,127,34,91,131,160,34,106,139,160,104,107,72,169]},{"1049421":[143]},{"1049423":[80,127,34,190,132,160,34,106,139,160,104,107,165,27,240,7,34,149,131,160,130,4]},{"1049446":[34,5,132,160,107,34,88,173,9,72,169,1,143]},{"1049460":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1049477":[208,11,175,22,244,126,9,1]},{"1049486":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1049501":[208,7,175]},{"1049505":[128,48,130,90]},{"1049510":[201,226]},{"1049513":[208,7,175,1,128,48,130,78]},{"1049522":[201,234]},{"1049525":[208,7,175,2,128,48,130,66]},{"1049534":[201,27,1,208,22,165,34,235,41,1]},{"1049545":[208,7,175,3,128,48,130,46]},{"1049554":[175,4,128,48,130,39]},{"1049561":[201,38,1,208,7,175,5,128,48,130,27]},{"1049573":[201,39,1,208,7,175,6,128,48,130,15]},{"1049585":[201,135]},{"1049588":[208,7,175,98,129,48,130,3]},{"1049597":[169,23]},{"1049600":[41,255]},{"1049603":[40,107,8,194,32,165,138,201,3]},{"1049613":[208,21,165,34,201,98,7,144,7,175,64,129,48,130,156]},{"1049629":[175,22,128,48,130,149]},{"1049636":[201,5]},{"1049639":[208,7,175,65,129,48,130,137]},{"1049648":[201,40]},{"1049651":[208,7,175,66,129,48,130,125]},{"1049660":[201,42]},{"1049663":[208,7,175,74,129,48,130,113]},{"1049672":[201,48]},{"1049675":[208,21,165,34,201]},{"1049681":[2,176,7,175,67,129,48,130,94]},{"1049691":[175,23,128,48,130,87]},{"1049698":[201,53]},{"1049701":[208,7,175,68,129,48,130,75]},{"1049710":[201,59]},{"1049713":[208,7,175,69,129,48,130,63]},{"1049722":[201,66]},{"1049725":[208,7,175,70,129,48,130,51]},{"1049734":[201,74]},{"1049737":[208,7,175,70,129,48,130,39]},{"1049746":[201,91]},{"1049749":[208,7,175,71,129,48,130,27]},{"1049758":[201,104]},{"1049761":[208,7,175,72,129,48,130,15]},{"1049770":[201,129]},{"1049773":[208,7,175,73,129,48,130,3]},{"1049782":[169,23]},{"1049785":[41,255]},{"1049788":[40,107,8,194,32,165,160,201,200]},{"1049798":[208,7,175,80,129,48,130,111]},{"1049807":[201,51]},{"1049810":[208,7,175,81,129,48,130,99]},{"1049819":[201,7]},{"1049822":[208,7,175,82,129,48,130,87]},{"1049831":[201,90]},{"1049834":[208,7,175,83,129,48,130,75]},{"1049843":[201,6]},{"1049846":[208,7,175,84,129,48,130,63]},{"1049855":[201,41]},{"1049858":[208,7,175,85,129,48,130,51]},{"1049867":[201,172]},{"1049870":[208,7,175,86,129,48,130,39]},{"1049879":[201,222]},{"1049882":[208,7,175,87,129,48,130,27]},{"1049891":[201,144]},{"1049894":[208,7,175,88,129,48,130,15]},{"1049903":[201,164]},{"1049906":[208,7,175,89,129,48,130,3]},{"1049915":[169,62]},{"1049918":[41,255]},{"1049921":[40,107,194,32,165,160,201,200]},{"1049930":[208,4,56,130,82]},{"1049936":[201,51]},{"1049939":[208,4,56,130,73]},{"1049945":[201,7]},{"1049948":[208,4,56,130,64]},{"1049954":[201,90]},{"1049957":[208,4,56,130,55]},{"1049963":[201,6]},{"1049966":[208,4,56,130,46]},{"1049972":[201,41]},{"1049975":[208,4,56,130,37]},{"1049981":[201,172]},{"1049984":[208,4,56,130,28]},{"1049990":[201,222]},{"1049993":[208,4,56,130,19]},{"1049999":[201,144]},{"1050002":[208,4,56,130,10]},{"1050008":[201,164]},{"1050011":[208,4,56,130,1]},{"1050017":[24,226,32,107,175,17,244,126,41,8,107,175,17,244,126,41,4,107,175,17,244,126,41,128,107,175,16,244,126,41,1,201,1,107,175,16,244,126,41,2,107,175,16,244,126,41,4,107,175,16,244,126,41,8,107,175,16,244,126,41,8,74,74,107,34,48,208,13,175,16,244,126,41,8,240,4,128,5,169,5,189,128,13,107,175,16,244,126,41,16,107,175,16,244,126,41,128,107,175,17,244,126,42,42,42,42,107,175,17,244,126,41,32,107,175,16,244,126,41,32,107,72,175,17,244,126,9,8,143,17,244,126,104,107,72,175,17,244,126,9,4,143,17,244,126,104,107,72,175,17,244,126,9,128,143,17,244,126,104,107,34,157,153,7,72,175,16,244,126,9,1,143,16,244,126,104,107,72,175,16,244,126,9,2,143,16,244,126,104,107,34,157,153,7,72,175,16,244,126,9,4,143,16,244,126,104,107,34,157,153,7,72,175,16,244,126,9,8,143,16,244,126,104,107,34,157,153,7,72,175,16,244,126,9,16,143,16,244,126,104,107,72,175,16,244,126,9,32,143,16,244,126,104,107,34,157,153,7,72,175,16,244,126,9,128,143,16,244,126,104,107,72,175,17,244,126,9,16,143,17,244,126,175,19,128,48,168,104,156,233,2,107,72,175,17,244,126,9,32,143,17,244,126,175,20,128,48,168,104,156,233,2,107,201,22,240,26,201,43,240,22,201,44,240,18,201,45,240,14,201,60,240,10,201,61,240,6,201,72,240,2,128,21,72,32,158,193,207,150,128,48,144,10,104,175,151,128,48,34,218,134,160,107,104,218,139,75,171,170,191,189,135,160,171,250,201,249,176,1,107,201,249,208,12,175,123,243,126,208,3,169,59,107,169,60,107,201,250,208,7,34,184,192,160,76,218,134,201,251,208,7,34,109,193,160,76,218,134,201,253,208,22,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,218,134,160,107,169,4,107,201,254,208,43,175,89,243,126,207,144,128,48,144,9,175,145,128,48,34,218,134,160,107,201]},{"1050486":[208,3,169,67,107,201,1,208,3,169,68,107,201,2,208,3,169,69,107,169,70,107,201,255,208,44,175,22,244,126,41,192,74,74,74,74,74,74,207,146,128,48,144,9,175,147,128,48,34,218,134,160,107,201]},{"1050541":[208,3,169,45,107,201,1,208,3,169,32,107,169,46,107,107,6,68,69,70,45,32,46,9,9,10,8,5,16,11,44,27,26,28,20,25,12,7,29,47,7,21,18,13,13,14,17,23,40,39,4,4,15,22,3,19,1,30,16]},{"1050606":[48,34,33,36,36,36,35,35,35,41,42,44,43,3,3,52,53,49,51,2,50,54,55,44,67,12,56,57,58,249,60,68,61,62,63,64,44]},{"1050645":[65,36,71,72,72,72,254,255,253,13,250,251,255,255,255,255,255,255,73,74,73,255,255,255,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,201,22,240,26,201,43,240,22,201,44,240,18,201,45,240,14,201,60,240,10,201,61,240,6,201,72,240,2,128,21,72,32,158,193,207,150,128,48,144,10,104,175,151,128,48,34,173,136,160,107,104,218,139,75,171,170,191,151,137,160,171,250,201,250,176,1,107,201,253,208,43,175,89,243,126,207,144,128,48,144,9,175,145,128,48,34,173,136,160,107,201]},{"1050889":[208,3,169,4,107,201,1,208,3,169,4,107,201,2,208,3,169,2,107,169,8,107,201,254,208,44,175,22,244,126,41,192,74,74,74,74,74,74,207,146,128,48,144,9,175,147,128,48,34,173,136,160,107,201]},{"1050944":[208,3,169,4,107,201,1,208,3,169,2,107,169,8,107,201,255,208,29,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,173,136,160,107,201]},{"1050984":[208,3,169,4,107,169,2,107,201,252,208,12,175,84,243,126,208,3,169,2,107,169,8,107,201,250,208,7,34,184,192,160,76,173,136,201,251,208,7,34,109,193,160,76,173,136,107]},{"1051032":[4,2,8,4,2,8,2,4,2,2,2,4,4,4,8,8,8,2,2,4,2,2,2,4,2,4,2,8,8,4,2,10,2,4,2,4,4]},{"1051070":[4,4,8,2,2,8,4,2,8,4,4,8,8,8,4,2,8,2,4,8,2,4,4,2,2,8,8,2,4,4,8,8,8,4,4,4,2,8,8,8,8,4,8,8,8,8,4]},{"1051119":[2,6,2,2,4,8,253,254,255,252,250,251]},{"1051137":[8,8,8]},{"1051143":[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,72,218,139,75,171,201,22,240,26,201,43,240,22,201,44,240,18,201,45,240,14,201,60,240,10,201,61,240,6,201,72,240,2,128,22,32,158,193,207,150,128,48,144,11,175,151,128,48,34,135,138,160,130,128]},{"1051326":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,135,138,160,128,102,128,81,201,95,208,35,175,22,244,126,41,192,208,25,56,128,85,74,74,74,74,74,74,207,146,128,48,144,10,175,147,128,48,34,135,138,160,128,63,128,60,201,96,208,20,175,91,243,126,207,148,128,48,144,10,175,149,128,48,34,135,138,160,128,37,201,98,208,6,34,184,192,160,128,8,201,99,208,4,34,109,193,160,162]},{"1051437":[224,36,176,12,223,66,139,160,208,3,56,128,4,232,128,240,24,171,250,104,107,4,7,8,9,10,11,12,19,21,24,36,42,49,52,53,54,66,67,69,89,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,255,255,255,255,72,218,90,32,124,139,34,218,134,160,34,45,213]},{"1051512":[122,250,104,107,72,8,72,194,32,169]},{"1051524":[143,37,192,126,143,39,192,126,169]},{"1051534":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,173,136,160,143,42,192,126,143,50,192,126,104,34,135,138,160,176,2,128,27,194,32,169]},{"1051575":[143,44,192,126,143,51,192,126,169]},{"1051585":[8,143,46,192,126,169]},{"1051592":[52,143,48,192,126,40,104,96,34,135,138,160,176,15,169,1,133,6,169,12,34,136,186,13,169,2,72,128,13,169,2,133,6,169,16,34,136,186,13,169,3,72,169,37,133,8,169,192,133,9,100,7,169,126,139,72,171,169,1,143,8,80,127,34,112,223,5,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,32,68,140,176,35,194,32,165,226,72,56,233,15]},{"1051689":[133,226,165,232,72,56,233,15]},{"1051698":[133,232,226,32,32,68,140,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1051730":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1051750":[13,133]},{"1051753":[56,229,232,133,6,189,32,13,133,1,189,16,13,133,2,56,229,226,133,7,189,48,13,133,3,107,175,8,80,127,240,14,169]},{"1051788":[143,8,80,127,165,4,41,255,240,133,4,177,8,69,4,107,72,72,169,144,144,143,3,80,127,143,5,80,127,143,6,80,127,104,201,16,39,144,21,72,226,32,175,3,80,127,26,143,3,80,127,194,32,104,56,233,16,39,128,230,201,232,3,144,21,72,226,32,175,4,80,127,26,143,4,80,127,194,32,104,56,233,232,3,128,230,201,100]},{"1051877":[144,21,72,226,32,175,5,80,127,26,143,5,80,127,194,32,104,56,233,100]},{"1051898":[128,230,201,10]},{"1051903":[144,21,72,226,32,175,6,80,127,26,143,6,80,127,194,32,104,56,233,10]},{"1051924":[128,230,201,1]},{"1051929":[144,21,72,226,32,175,7,80,127,26,143,7,80,127,194,32,104,56,233,1]},{"1051950":[128,230,104,107,8,226,48,160]},{"1051959":[192,8,176,42,175,192,255]},{"1051967":[90,24,99,1,131,1,250,191]},{"1051976":[255,48,90,160,1,192,21,176,13,187,95,192,255]},{"1051990":[170,191]},{"1051993":[255,48,200,128,239,122,187,149]},{"1052002":[200,128,210,40,107,8,165,93,201,4,208,42,175,86,243,126,208,36,175,1,80,127,240,30,165,138,207,152,80,127,240,22,175,22,244,126,9,4,143,22,244,126,169]},{"1052046":[143,109,243,126,169]},{"1052052":[143,1,80,127,40,175,109,243,126,107,162]},{"1052064":[175,22,244,126,137,4,240,9,41,251,143,22,244,126,169,240,107,169,6,107,34,232,152,9,169]},{"1052090":[143,1,80,127,107,165,93,201,4,208,20,175,86,243,126,208,8,169,1,143,1,80,127,128,6,169]},{"1052117":[143,1,80,127,107,72,165,138,143,152,80,127,104,107,169,32,141,226,2,156,123,3,100,85,156,96,3,107,175,48,128,48,47,20,130,48,240,4,34]},{"1052157":[142,160,107,72,173]},{"1052163":[67,72,173,1,67,72,173,2,67,72,173,3,67,72,173,4,67,72,173,5,67,72,173,6,67,72,169,128,141]},{"1052193":[67,141,1,67,169,64,141,129,33,169,243,141,130,33,169,126,141,131,33,156,2,67,169,30,141,3,67,169,112,141,4,67,169,128,141,5,67,169,1,141,6,67,169,1,141,11,66,104,141,6,67,104,141,5,67,104,141,4,67,104,141,3,67,104,141,2,67,104,141,1,67,104,141]},{"1052267":[67,104,107,8,226,32,175,202,243,126,73,64,143,202,243,126,240,4,169,7,128,2,169,3,143,199,243,126,40,107,218,138,10,170,175,202,243,126,73,64,208,1,232,191,96,128,48,250,107,218,175,202,243,126,41,64,208,46,175,59,128,48,240,28,175,104,243,126,41,1,208,20,218,191,47,143,160,170,191,104,243,126,250,63,57,143,160,208,3,130,90]},{"1052359":[191,36,143,160,16,3,24,128,82,170,128,44,175,59,128,48,240,28,175,104,243,126,41,2,208,20,218,191,50,143,160,170,191,104,243,126,250,63,61,143,160,208,3,130,44]},{"1052405":[191,40,143,160,170,128,3,56,250,107,191,80,128,48,41,64,208,13,175,116,243,126,63,155,160,2,208,16,24,128,14,175,122,243,126,63,155,160,2,208,3,24,128,1,56,250,107,2,10,3,255,6,8,12,11,7,9,5,1]},{"1052465":[1,1]},{"1052470":[1]},{"1052472":[1,32,32,16]},{"1052477":[2,128,8,16,1,64,4,8,226,32,175,202,243,126,73,64,208,4,169,7,128,2,169,3,143,199,243,126,40,107,175,202,243,126,41,64,240,3,169,7,107,169,3,107,175,90,128,48,41,255]},{"1052528":[208,12,175,116,243,126,47,165,160,2,41,255]},{"1052541":[107,175,122,243,126,47,165,160,2,41,255]},{"1052553":[107,194,32,175,19,130,48,41,255]},{"1052563":[240,5,169,8]},{"1052568":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1052581":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1052603":[2,107,175,19,130,48,41,255]},{"1052612":[240,5,169,8]},{"1052617":[128,7,175,72,128,48,41,255]},{"1052626":[24,101,234,48,3,169]},{"1052634":[133,234,107,175,73,128,48,208,5,165,244,41,16,107,165,240,41,16,73,16,107,173,12,4,41,255]},{"1052661":[201,255]},{"1052664":[208,1,107,175,22,244,126,41,32]},{"1052674":[240,4,169]},{"1052679":[107,173,12,4,41,255]},{"1052686":[201,255]},{"1052689":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1052713":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,190,212,160,40,250,107,175,69,128,48,208,6,169,8,22,133]},{"1052745":[107,169,136,21,133]},{"1052751":[107,175,69,128,48,208,6,169,16,22,133]},{"1052763":[107,169,144,21,133]},{"1052769":[107,175,69,128,48,208,6,169,24,22,133]},{"1052781":[107,169,152,21,133]},{"1052787":[107,175,69,128,48,208,6,169,32,22,133]},{"1052799":[107,169,160,21,133]},{"1052805":[107,175,69,128,48,208,1,107,8,194,48,169,80,45,141,70,22,169,84,45,141,72,22,169,81,45,141,76,22,169,82,45,141,78,22,169,83,45,141,80,22,169,85,45,141,84,22,169,86,45,141,86,22,169,87,45,141,88,22,169,88,45,141,90,22,169,89,45,141,92,22,169,90,45,141,94,22,169,91,45,141,96,22,169,92,45,141,100,22,162]},{"1052897":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1052911":[144,240,175,22,244,126,41,32]},{"1052920":[240,3,130,213,1,175,69,128,48,41,1]},{"1052932":[208,3,130,244]},{"1052937":[169,16,40,141,132,22,226,32,169,22,24,111,124,243,126,141,134,22,169,40,105]},{"1052959":[143,135,22]},{"1052963":[169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1052977":[143,137,22]},{"1052981":[169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1052995":[143,141,22]},{"1052999":[169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1053013":[143,143,22]},{"1053017":[169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1053031":[143,145,22]},{"1053035":[169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1053049":[143,149,22]},{"1053053":[169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1053067":[143,151,22]},{"1053071":[169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1053085":[143,153,22]},{"1053089":[169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1053103":[143,155,22]},{"1053107":[169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1053121":[143,157,22]},{"1053125":[169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1053139":[143,159,22]},{"1053143":[169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1053157":[143,161,22]},{"1053161":[169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1053175":[143,165,22]},{"1053179":[194,32,175,69,128,48,41,2]},{"1053188":[208,3,130,201]},{"1053193":[169,17,40,141,196,22,175,103,243,126,41,128]},{"1053206":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1053221":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1053236":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1053251":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1053266":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1053281":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1053296":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1053311":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1053326":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1053341":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1053356":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1053371":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1053386":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1053401":[208,3,130,170,1,175,69,128,48,41,4]},{"1053413":[208,3,130,201]},{"1053418":[169,33,40,141,132,22,175,105,243,126,41,128]},{"1053431":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1053446":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1053461":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1053476":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1053491":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1053506":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1053521":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1053536":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1053551":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1053566":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1053581":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1053596":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1053611":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1053626":[208,3,130,201]},{"1053631":[169,32,44,141,196,22,175,101,243,126,41,128]},{"1053644":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1053659":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1053674":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1053689":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1053704":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1053719":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1053734":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1053749":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1053764":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1053779":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1053794":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1053809":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1053824":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1053843":[191,210,149,160,157,234,18,191,230,149,160,157,42,19,191,250,149,160,157,106,19,191,14,150,160,157,170,19,191,34,150,160,157,234,19,191,54,150,160,157,42,20,191,74,150,160,157,106,20,191,94,150,160,157,170,20,191,114,150,160,157,234,20,232,232,224,20]},{"1053911":[144,186,175,116,243,126,41,4]},{"1053920":[240,24,169,43,61,141,50,19,169,44,61,141,52,19,169,45,61,141,114,19,169,46,61,141,116,19,175,116,243,126,41,2]},{"1053953":[240,24,169,43,45,141,174,19,169,44,45,141,176,19,169,45,45,141,238,19,169,46,45,141,240,19,175,116,243,126,41,1]},{"1053986":[240,24,169,43,37,141,182,19,169,44,37,141,184,19,169,45,37,141,246,19,169,46,37,141,248,19,175,122,243,126,41,2]},{"1054019":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1054040":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1054061":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1054082":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1054103":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1054124":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1054145":[240,12,169,68,45,141,184,20,169,69,45,141,186,20,171,40,107,251,40,249,40,249,40,249,40,249,40,249,40,249,40,249,40,249,40,251,104,252,40,245,36,245,36,245,36,43,49,44,49,245,36,245,36,245,36,252,104,252,40,245,36,245,36,245,36,61,49,46,49,245,36,245,36,245,36,252,104,252,40,245,36,43,49,44,49,245,36,245,36,43,49,44,49,245,36,252,104,252,40,245,36,61,49,46,49,245,36,245,36,61,49,46,49,245,36,252,104,252,40,245,36,245,36,245,36,245,36,245,36,245,36,245,36,245,36,252,104,252,40,245,36,70,49,71,49,70,49,71,49,70,49,71,49,245,36,252,104,252,40,70,49,71,49,70,49,71,49,70,49,71,49,70,49,71,49,252,104,251,168,249,168,249,168,249,168,249,168,249,168,249,168,249,168,249,168,251,232,251,40,249,40,249,40,249,40,249,40,249,40,249,40,249,40,249,40,251,104,252,40,33,37,34,37,35,37,36,37,63,37,245,36,245,36,245,36,252,104,252,40,245,36,245,36,245,36,245,36,245,36,245,36,245,36,245,36,252,104,252,40,245,36,245,36,245,36,59,33,60,33,245,36,245,36,245,36,252,104,252,40,245,36,245,36,245,36,61,33,62,33,245,36,245,36,245,36,252,104,252,40,245,36,245,36,245,36,245,36,245,36,245,36,245,36,245,36,252,104,252,40,245,36,59,33,60,33,245,36,245,36,59,33,60,33,245,36,252,104,252,40,245,36,61,33,62,33,245,36,245,36,61,33,62,33,245,36,252,104,251,168,249,168,249,168,249,168,249,168,249,168,249,168,249,168,249,168,251,232,251,40,249,40,249,40,249,40,249,40,249,40,249,40,249,40,249,40,251,104,252,40,47,37,52,37,53,37,54,37,55,37,245,36,245,36,245,36,252,104,252,40,245,36,245,36,245,36,245,36,245,36,245,36,245,36,245,36,252,104,252,40,245,36,245,36,70,49,71,49,70,49,71,49,245,36,245,36,252,104,252,40,245,36,245,36,245,36,245,36,245,36,245,36,245,36,245,36,252,104,252,40,245,36,70,49,71,49,70,49,71,49,70,49,71,49,245,36,252,104,252,40,245,36,245,36,245,36,245,36,245,36,245,36,245,36,245,36,252,104,252,40,245,36,245,36,70,49,71,49,70,49,71,49,245,36,245,36,252,104,251,168,249,168,249,168,249,168,249,168,249,168,249,168,249,168,249,168,251,232,175,132,128,48,201,160,176,66,175,146,80,127,208,23,175,132,128,48,24,111,109,243,126,207,108,243,126,144,4,175,108,243,126,143,146,80,127,175,109,243,126,207,146,80,127,144,19,169]},{"1054751":[143,114,243,126,173,10,2,208,14,169]},{"1054762":[143,146,80,127,56,107,169,8,143,114,243,126,24,107,175,109,243,126,207,108,243,126,144,21,175,108,243,126,143,109,243,126,169]},{"1054796":[143,114,243,126,173,10,2,208,8,56,107,169,160,143,114,243,126,24,107,175,133,128,48,201,128,176,51,175,147,80,127,208,19,175,133,128,48,24,111,110,243,126,201,128,144,2,169,128,143,147,80,127,175,110,243,126,207,147,80,127,144,8,169]},{"1054860":[143,147,80,127,56,107,169,1,143,115,243,126,24,107,226,48,175,110,243,126,201,128,176,9,169,128,143,115,243,126,226,48,107,226,49,107,254,128,13,72,8,194,32,165,160,201,35,1,208,7,175,16,128,48,168,128,14,201,30,1,208,7,175,17,128,48,168,128,2,160,70,40,104,107,218,90,8,160,255,162]},{"1054941":[165,12,201,232,3,144,3,130,24]},{"1054951":[201,100]},{"1054954":[144,3,130,97]},{"1054959":[201,10]},{"1054962":[144,3,130,170]},{"1054967":[201,1]},{"1054970":[144,3,130,243]},{"1054975":[100,10,165,12,201,232,3,144,8,56,233,232,3,230,10,128,243,133,12,192,255,208,10,160,6,165,14,24,121,109,154,133,14,165,14,159]},{"1055012":[201,126,232,232,169,56]},{"1055019":[159]},{"1055021":[201,126,232,232,164,10,152,10,168,185,89,154,159]},{"1055035":[201,126,232,232,169]},{"1055042":[159]},{"1055044":[201,126,232,232,165,14,24,105,8]},{"1055054":[133,14,100,10,165,12,201,100]},{"1055063":[144,8,56,233,100]},{"1055069":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121,109,154,133,14,165,14,159]},{"1055093":[201,126,232,232,169,56]},{"1055100":[159]},{"1055102":[201,126,232,232,164,10,152,10,168,185,89,154,159]},{"1055116":[201,126,232,232,169]},{"1055123":[159]},{"1055125":[201,126,232,232,165,14,24,105,8]},{"1055135":[133,14,100,10,165,12,201,10]},{"1055144":[144,8,56,233,10]},{"1055150":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121,109,154,133,14,165,14,159]},{"1055174":[201,126,232,232,169,56]},{"1055181":[159]},{"1055183":[201,126,232,232,164,10,152,10,168,185,89,154,159]},{"1055197":[201,126,232,232,169]},{"1055204":[159]},{"1055206":[201,126,232,232,165,14,24,105,8]},{"1055216":[133,14,100,10,165,12,201,1]},{"1055225":[144,8,56,233,1]},{"1055231":[230,10,128,243,133,12,192,255,208,10,160]},{"1055243":[165,14,24,121,109,154,133,14,165,14,159]},{"1055255":[201,126,232,232,169,56]},{"1055262":[159]},{"1055264":[201,126,232,232,164,10,152,10,168,185,89,154,159]},{"1055278":[201,126,232,232,169]},{"1055285":[159]},{"1055287":[201,126,232,232,165,14,24,105,8]},{"1055297":[133,14,226,32,138,74,74,74,133,6,10,10,34,132,186,13,138,74,74,74,40,122,250,96,48,2,49,2,2,2,3,2,18,2,19,2,34,2,35,2,50,2,51,2,4]},{"1055345":[252,255,248,255,107,139,75,171,34,231,244,30,169,2,133,6,169,8,34,128,186,13,169,2,133,6,100,7,165,26,41,16,240,10,169,141,133,8,169,155,133,9,128,8,169,157,133,8,169,155,133,9,34,112,223,5,165,144,24,105,8,133,144,165,146,26,26,133,146,169,3,133,6,169,12,34,128,186,13,169,3,133,6,100,7,169,173,133,8,169,155,133,9,34,112,223,5,165,144,24,105,12,133,144,165,146,26,26,26,133,146,169]},{"1055458":[143,8,80,127,194,32,169,210,4,133,12,169,216,255,133,14,32,214,152,226,32,133,6,72,100,7,169]},{"1055486":[133,8,169,201,133,9,169,126,72,171,34,112,223,5,75,171,163,1,10,10,24,101,144,133,144,104,24,101,146,133,146,194,32,169,46,22,133,12,169,8]},{"1055527":[133,14,32,214,152,226,32,133,6,72,100,7,169]},{"1055541":[133,8,169,201,133,9,169,126,72,171,34,112,223,5,75,171,163,1,10,10,24,101,144,133,144,104,24,101,146,133,146,194,32,169,52,35,133,12,169,56]},{"1055582":[133,14,32,214,152,226,32,133,6,72,100,7,169]},{"1055596":[133,8,169,201,133,9,169,126,72,171,34,112,223,5,75,171,163,1,10,10,24,101,144,133,144,104,24,101,146,133,146,171,107]},{"1055631":[248,255]},{"1055634":[12]},{"1055636":[2]},{"1055641":[16,12]},{"1055644":[2]},{"1055647":[248,255]},{"1055650":[12]},{"1055652":[2]},{"1055657":[16,76]},{"1055660":[2,216,255,40]},{"1055665":[192,8]},{"1055668":[2,8]},{"1055671":[40]},{"1055673":[194,4]},{"1055676":[2,56]},{"1055679":[40]},{"1055681":[196,2]},{"1055684":[2,208,255,56]},{"1055689":[48,2]},{"1055693":[216,255,56]},{"1055697":[49,2]},{"1055701":[224,255,56]},{"1055705":[2,2]},{"1055709":[232,255,56]},{"1055713":[3,2]},{"1055719":[56]},{"1055721":[18,2]},{"1055725":[8]},{"1055727":[56]},{"1055729":[19,2]},{"1055733":[16]},{"1055735":[56]},{"1055737":[34,2]},{"1055741":[24]},{"1055743":[56]},{"1055745":[35,2]},{"1055749":[48]},{"1055751":[56]},{"1055753":[50,2]},{"1055757":[56]},{"1055759":[56]},{"1055761":[51,2]},{"1055765":[64]},{"1055767":[56]},{"1055769":[48,2]},{"1055773":[72]},{"1055775":[56]},{"1055777":[49,2]},{"1055781":[175,18,128,48,34,106,139,160,107,72,175,18,128,48,34,208,139,160,104,107,72,175,18,128,48,168,104,34,159,134,160,107,169,8,157,80,15,169]},{"1055820":[143]},{"1055822":[80,127,32,149,156,34,106,139,160,107,72,175]},{"1055835":[80,127,240,6,34,74,156,160,128,7,32,149,156,34,208,139,160,104,107,32,149,156,201,36,208,24,90,160,36,34,73,164,160,122,175,111,243,126,26,143,111,243,126,169,47,34,138,187,13,107,90,168,34,157,153,7,122,107,165,160,201,115,208,6,175,96,129,48,128,12,201,140,208,6,175,97,129,48,128,2,169,36,96,185,121,55,218,175,228,80,127,133,8,175,230,80,127,143,10]},{"1055936":[162,5]},{"1055939":[175,10]},{"1055943":[74,143,10]},{"1055948":[8,165,8,74,40,144,2,9,128,133,8,202,224]},{"1055963":[208,230,175,224,80,127,143,12]},{"1055973":[175,226,80,127,143,14]},{"1055981":[162,2]},{"1055984":[175,12]},{"1055988":[74,143,12]},{"1055993":[8,175,14]},{"1055998":[74,40,105]},{"1056003":[143,14]},{"1056007":[202,224]},{"1056011":[208,227,165,8,79,12]},{"1056019":[143,242,80,127,175,10]},{"1056027":[79,14]},{"1056031":[143,244,80,127,175,228,80,127,133,8,175,230,80,127,143,10]},{"1056049":[162,4]},{"1056052":[165,8,74,133,8,8,175,10]},{"1056062":[74,40,105]},{"1056067":[143,10]},{"1056071":[202,224]},{"1056075":[208,231,175,224,80,127,143,12]},{"1056085":[175,226,80,127,143,14]},{"1056093":[162,3]},{"1056096":[175,10]},{"1056100":[74,143,10]},{"1056105":[8,165,8,74,40,144,2,9,128,133,8,202,224]},{"1056120":[208,230,165,8,79,12]},{"1056128":[143,246,80,127,175,10]},{"1056136":[79,14]},{"1056140":[143,248,80,127,175,242,80,127,24,111,246,80,127,143,242,80,127,175,244,80,127,111,248,80,127,143,244,80,127,175,232,80,127,79,224,80,127,133,8,175,234,80,127,79,226,80,127,143,10]},{"1056191":[175,236,80,127,41,3]},{"1056198":[79,240,80,127,10,10,170,191,208,80,127,79,228,80,127,143,246,80,127,191,210,80,127,79,230,80,127,143,248,80,127,175,242,80,127,79,246,80,127,133,6,175,244,80,127,79,248,80,127,143,8]},{"1056251":[250,96,8,226,32,169,52,141,4,66,156,5,66,165,4,141,6,66,169,6,234,234,234,234,234,234,24,109,20,66,133,5,175,174,156,160,133,8,175,175,156,160,143,9]},{"1056297":[175,176,156,160,143,10]},{"1056305":[175,177,156,160,143,11]},{"1056313":[32,12,159,165,8,143,232,80,127,194,32,175]},{"1056326":[81,127,143,224,80,127,175,2,81,127,143,226,80,127,175,232,80,127,74,74,41,3,143,240,80,127,165,4,56,233,1,143,236,80,127,58,10,10,170,191]},{"1056367":[81,127,143,228,80,127,191,2,81,127,143,230,80,127,32,177,156,175,236,80,127,10,10,170,191]},{"1056393":[81,127,56,229,6,159]},{"1056400":[81,127,143,224,80,127,191,2,81,127,239,8]},{"1056414":[159,2,81,127,143,226,80,127,175,236,80,127,58,143,236,80,127,208,184,165,4,58,10,10,170,191]},{"1056441":[81,127,143,228,80,127,191,2,81,127,143,230,80,127,32,177,156,175]},{"1056460":[81,127,56,229,6,143]},{"1056467":[81,127,143,224,80,127,175,2,81,127,239,8]},{"1056481":[143,2,81,127,143,226,80,127,175,232,80,127,56,239,174,156,160,143,232,80,127,175,234,80,127,56,239,176,156,160,143,234,80,127,165,5,240,3,130,74,255,40,107,169]},{"1056526":[143,246,80,127,143,247,80,127,143,248,80,127,143,249,80,127,162,32,78,11]},{"1056547":[110,10]},{"1056550":[110,9]},{"1056553":[102,8,144,40,175,246,80,127,24,101,5,143,246,80,127,175,247,80,127,105]},{"1056575":[143,247,80,127,175,248,80,127,105]},{"1056586":[143,248,80,127,175,249,80,127,105]},{"1056597":[106,143,249,80,127,110,248,80,110,247,80,110,246,80,110,245,80,110,244,80,110,243,80,110,242,80,202,208,174,96,72,175,17,244,126,9,1,143,17,244,126,104,107,72,175,17,244,126,9,2,143,17,244,126,104,107,175,17,244,126,41,1,107,175,17,244,126,41,2,107,34,218,134,160,72,165,138,201,3,240,6,34,128,159,160,128,4,34,115,159,160,104,107,34,5,132,160,34,106,139,160,169,1,143,51,80,127,143,52,80,127,34,155,159,160,169,235,143]},{"1056716":[254,127,34,93,246,29,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1056736":[13,165,33,153,32,13,169]},{"1056744":[153,32,15,169,127,153,112,15,107,72,8,34,27,160,160,144,31,156,18,1,156,239,3,169]},{"1056769":[133,93,194,32,165,138,201,48]},{"1056778":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1056802":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1056815":[128,16,201,48]},{"1056820":[208,11,165,34,201]},{"1056826":[2,144,4,56,130,1]},{"1056833":[24,226,32,107,191,209,185,160,145,146,122,92,20,199,8,201,2,240,44,194,32,165,8,133]},{"1056858":[226,32,34,16,247,8,169,52,145,144,200,191,193,186,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1056893":[145,146,122,107,175,98,243,126,34,156,140,160,175,4,80,127,41,255]},{"1056912":[9]},{"1056914":[36,143,80,199,126,175,5,80,127,41,255]},{"1056926":[9]},{"1056928":[36,143,82,199,126,175,6,80,127,41,255]},{"1056940":[9]},{"1056942":[36,143,84,199,126,175,7,80,127,41,255]},{"1056954":[9]},{"1056956":[36,143,86,199,126,107,175,36,128,48,143,114,243,126,107,175,36,128,48,143,114,243,126,175,37,128,48,143,115,243,126,107,175,36,128,48,240,10,175,109,243,126,207,108,243,126,208,17,175,37,128,48,240,8,175,110,243,126,201,128,208,3,169]},{"1057020":[107,169,1,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1057041":[254,127,208,245,169,4,107,34,86,197,160,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,19,34,104,197,160,107,169,51,133,200,173,3,4,41,64,208,3,169,7,107,34,104,197,160,34,113,186,13,41,7,201,7,208,2,169]},{"1057106":[107,169]},{"1057109":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,199,161,160,72,175,134,128,48,240,4,104,9,1,107,104,107,169,3,128,74,169,4,128,70,169,5,128,66,169,6,128,62,169,7,128,58,169,8,128,54,169,9,128,50,169,10,128,46,169,11,34,199,161,160,72,175,134,128,48,240,4,104,9,1,107,104,107,169,12,128,23,169,13,128,19,169,14,34,199,161,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,199,161,160,107,218,8,194,32,41,127]},{"1057230":[10,170,191]},{"1057234":[82,127,26,41,255,3,159]},{"1057242":[82,127,170,10,191]},{"1057248":[128,175,40,250,107,218,8,194,48,162]},{"1057260":[191,28,162,160,159]},{"1057266":[82,127,232,232,191,28,162,160,159]},{"1057276":[82,127,232,232,191,28,162,160,159]},{"1057286":[82,127,232,232,191,28,162,160,159]},{"1057296":[82,127,232,232,224,127]},{"1057303":[144,211,40,250,107]},{"1057310":[64]},{"1057312":[128]},{"1057314":[192]},{"1057317":[1,64,1,128,1,192,1]},{"1057325":[2,64,2,128,2,192,2]},{"1057333":[3,64,3,128,3,192,3,165,138,201,112,208,25,175,240,242,126,41,32,208,17,160,2,34,241,182,8,144,9,169,3,141,198,4,100,176,100,200,107,165,138,201,71,208,25,175,199,242,126,41,32,208,17,160,3,34,241,182,8,144,9,169,4,141,198,4,100,176,100,200,107,100,80,156,193,15,72,175,34,128,48,208,4,34,60,162,160,175,35,128,48,208,4,34,92,162,160,104,107,72,175,34,128,48,201,1,208,4,34,60,162,160,175,35,128,48,201,1,208,4,34,92,162,160,104,107,72,175,34,128,48,201,2,208,4,34,60,162,160,175,35,128,48,201,2,208,4,34,92,162,160,104,107,165,244,137,64,208,63,137,32,208,39,165,240,137,32,208,31,175,22,244,126,41,32,240,19,175,22,244,126,41,223,143,22,244,126,165,27,240,5,169,32,141,47,1,34,65,223,13,24,107,175,22,244,126,9,32,143,22,244,126,169,32,141,47,1,34,65,223,13,107,169,16,141,7,2,173,2,2,201,2,208,28,175,140,243,126,41,192,201,192,208,88,175,65,243,126,73,3,143,65,243,126,169,32,141,47,1,130,155]},{"1057595":[201,1,208,34,175,142,243,126,41,192,201,192,208,56,175,64,243,126,56,233,1,73,2,24,105,1,143,64,243,126,169,32,141,47,1,130,117]},{"1057633":[201,5,208,30,175,140,243,126,41,48,201,48,208,18,175,68,243,126,73,3,143,68,243,126,169,32,141,47,1,130,85]},{"1057665":[128,78,201,13,208,56,173,122,3,201,1,240,61,175,140,243,126,137,4,240,59,41,3,240,55,175,76,243,126,201,1,208,16,175,140,243,126,41,1,240,4,169,3,128,6,169,2,128,2,169,1,143,76,243,126,169,32,141,47,1,128,23,201,16,208,14,34,216,163,160,128,13,24,107,169,1,143,76,243,126,169,60,141,46,1,56,107,165,244,41,64,240,37,175,79,243,126,240,28,218,26,201,5,144,2,169,1,170,191,91,243,126,208,2,162,1,138,143,79,243,126,169,32,141,47,1,250,169]},{"1057794":[107,165,244,41,12,107,165,246,41,64,240,15,169,16,141,7,2,169,32,141,47,1,169,7,141]},{"1057820":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1057840":[2,156,5,2,169]},{"1057846":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,4,165,72,218,8,192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,167]},{"1057885":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,150]},{"1057902":[192,41,208,13,175,140,243,126,9,32,143,140,243,126,130,133]},{"1057919":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,116]},{"1057936":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,99]},{"1057953":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,82]},{"1057970":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,65]},{"1057987":[192,11,208,13,175,142,243,126,9,128,143,142,243,126,130,48]},{"1058004":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,31]},{"1058021":[192,59,208,13,175,142,243,126,9,64,143,142,243,126,130,14]},{"1058038":[192,88,208,10,175,142,243,126,9,64,143,142,243,126,175,67,244,126,240,3,130,159,4,192,32,208,3,130,102,2,192,38,208,3,130,95,2,192,46,208,3,130,88,2,192,47,208,3,130,81,2,192,48,208,3,130,74,2,192,55,208,3,130,67,2,192,56,208,3,130,60,2,192,57,208,3,130,53,2,192]},{"1058119":[208,3,130,46,2,192,4,144,6,192,80,240,2,128,3,130,95]},{"1058137":[192,59,208,3,130,88]},{"1058144":[165,27,240,84,173,233,2,201,1,240,77,8,194,32,173,142,4,201,18,1,208,3,130,59]},{"1058169":[201,15,1,208,3,130,51]},{"1058177":[201,16,1,208,3,130,43]},{"1058185":[201,28,1,208,3,130,35]},{"1058193":[201,31,1,208,3,130,27]},{"1058201":[201,255]},{"1058204":[208,3,130,19]},{"1058209":[201,20,1,208,3,130,11]},{"1058217":[201,22,1,208,3,130,3]},{"1058225":[40,128,4,40,130,244,3,165,27,208,3,130,134,1,226,32,173,12,4,201]},{"1058246":[208,2,128,4,201,2,208,21,192,50,208,3,130,165,1,175,52,244,126,24,105,16,143,52,244,126,130,98,1,201,4,208,30,175,54,244,126,26,41,7,170,175,54,244,126,41,248,143,54,244,126,138,15,54,244,126,143,54,244,126,130,64,1,201,6,208,14,175,53,244,126,24,105,32,143,53,244,126,130,46,1,201,8,208,30,175,53,244,126,26,41,3,170,175,53,244,126,41,252,143,53,244,126,138,15,53,244,126,143,53,244,126,130,12,1,201,10,208,34,72,218,175,57,244,126,26,41,15,170,175,57,244,126,41,240,143,57,244,126,138,15,57,244,126,143,57,244,126,250,104,130,230]},{"1058399":[201,12,208,34,72,218,175,52,244,126,26,41,15,170,175,52,244,126,41,240,143,52,244,126,138,15,52,244,126,143,52,244,126,250,104,130,192]},{"1058437":[201,14,208,34,72,218,175,56,244,126,26,41,15,170,175,56,244,126,41,240,143,56,244,126,138,15,56,244,126,143,56,244,126,250,104,130,154]},{"1058475":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1058493":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1058511":[201,20,208,32,175,53,244,126,24,105,4,41,28,170,175,53,244,126,41,227,143,53,244,126,138,15,53,244,126,143,53,244,126,130,82]},{"1058547":[201,22,208,34,72,218,175,55,244,126,26,41,15,170,175,55,244,126,41,240,143,55,244,126,138,15,55,244,126,143,55,244,126,250,104,130,44]},{"1058585":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1058603":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,124,171,192,59,208,10,175,42,244,126,137,32,240,2,128,39,175,85,243,126,208,9,175,50,244,126,26,143,50,244,126,175,83,243,126,208,9,175,51,244,126,26,143,51,244,126,175,35,244,126,26,143,35,244,126,192]},{"1058684":[208,9,32,16,170,32,65,170,130,37,2,192,1,208,6,32,16,170,130,27,2,192,2,208,6,32,16,170,130,17,2,192,3,208,6,32,16,170,130,7,2,192,4,208,6,32,65,170,130,253,1,192,5,208,6,32,65,170,130,243,1,192,6,208,6,32,65,170,130,233,1,192,7,144,10,192,14,176,6,32,114,170,130,219,1,192,15,144,10,192,23,176,6,32,114,170,130,205,1,192,23,208,6,32,217,170,130,195,1,192,24,144,10,192,26,176,6,32,114,170,130,181,1,192,26,208,9,32,251,169,32,114,170,130,168,1,192,29,208,6,32,114,170,130,158,1,192,27,144,10,192,32,176,6,32,126,170,130,144,1,192,32,208,6,32,1,171,130,134,1,192,33,208,6,32,114,170,130,124,1,192,34,144,10,192,36,176,6,32,32,171,130,110,1,192,36,208,6,32,48,171,130,100,1,192,37,208,6,32,80,171,130,90,1,192,38,208,3,130,83,1,192,39,208,6,32,152,171,130,73,1,192,40,208,6,32,152,171,130,63,1,192,41,208,6,32,114,170,130,53,1,192,42,144,10,192,46,176,6,32,114,170,130,39,1,192,49,208,6,32,152,171,130,29,1,192,50,208,6,32,112,171,130,19,1,192,51,208,6,32,174,171,130,9,1,192,55,144,10,192,58,176,6,32,154,170,130,251]},{"1058993":[192,58,144,10,192,60,176,6,32,95,170,130,237]},{"1059007":[192,60,208,6,32,114,170,130,227]},{"1059017":[192,61,208,6,32,114,170,130,217]},{"1059027":[192,62,144,10,192,64,176,6,32,245,170,130,203]},{"1059041":[192,72,208,6,32,114,170,130,193]},{"1059051":[192,73,208,6,32,16,170,130,183]},{"1059061":[192,74,208,9,32,230,169,32,114,170,130,170]},{"1059074":[192,75,208,9,32,209,169,32,126,170,130,157]},{"1059087":[192,76,208,9,32,185,170,32,152,171,130,144]},{"1059100":[192,77,144,10,192,80,176,6,32,185,170,130,130]},{"1059114":[192,80,208,6,32,16,170,130,120]},{"1059124":[192,81,144,10,192,85,176,6,32,185,170,130,106]},{"1059138":[192,88,208,6,32,95,170,130,96]},{"1059148":[192,94,208,6,32,16,170,130,86]},{"1059158":[192,95,208,6,32,65,170,130,76]},{"1059168":[192,96,208,6,32,32,171,130,66]},{"1059178":[192,97,208,6,32,126,170,130,56]},{"1059188":[192,112,144,10,192,128,176,6,32,174,171,130,42]},{"1059202":[192,128,144,10,192,144,176,6,32,80,171,130,28]},{"1059216":[192,144,144,10,192,160,176,6,32,112,171,130,14]},{"1059230":[192,160,144,10,192,176,176,6,32,48,171,130]},{"1059244":[40,250,104,107,194,32,175,88,244,126,208,22,175,90,244,126,208,16,175,62,244,126,143,88,244,126,175,64,244,126,143,90,244,126,226,32,96,194,32,175,62,244,126,143,92,244,126,175,64,244,126,143,94,244,126,226,32,96,194,32,175,62,244,126,143,96,244,126,175,64,244,126,143,98,244,126,226,32,96,194,32,175,62,244,126,143,100,244,126,175,64,244,126,143,102,244,126,226,32,96,32,176,169,152,201,80,208,2,169,1,201,73,208,2,169]},{"1059360":[26,207,23,244,126,144,14,72,175,23,244,126,41,248,3,1,143,23,244,126,104,175,34,244,126,24,105,32,143,34,244,126,96,175,34,244,126,24,105,8,41,24,170,175,34,244,126,41,231,143,34,244,126,138,15,34,244,126,143,34,244,126,96,192,59,208,15,175,42,244,126,137,32,240,1,96,9,32,143,42,244,126,175,33,244,126,24,105,8,143,33,244,126,96,175,33,244,126,26,41,7,170,175,33,244,126,41,248,143,33,244,126,138,15,33,244,126,143,33,244,126,96,175,41,244,126,26,41,3,170,175,41,244,126,41,252,143,41,244,126,138,15,41,244,126,143,41,244,126,32,190,171,96,72,218,175,82,244,126,26,41,15,170,175,82,244,126,41,240,143,82,244,126,138,15,82,244,126,143,82,244,126,250,104,96,175,72,244,126,26,41,31,170,175,72,244,126,41,224,143,72,244,126,138,15,72,244,126,143,72,244,126,96,175,41,244,126,24,105,16,143,41,244,126,96,175,34,244,126,26,41,7,170,175,34,244,126,41,248,143,34,244,126,138,15,34,244,126,143,34,244,126,32,190,171,96,175,36,244,126,24,105,64,143,36,244,126,96,32,48,171,107,72,218,175,36,244,126,26,41,63,170,175,36,244,126,41,192,143,36,244,126,138,15,36,244,126,143,36,244,126,250,104,96,72,218,175,40,244,126,26,41,15,170,175,40,244,126,41,240,143,40,244,126,138,15,40,244,126,143,40,244,126,250,104,96,175,39,244,126,24,105,16,143,39,244,126,96,175,42,244,126,26,41,31,170,175,42,244,126,41,224,143,42,244,126,138,15,42,244,126,143,42,244,126,96,175,42,244,126,41,128,208,13,175,42,244,126,9,128,143,42,244,126,32,114,170,96,175,40,244,126,24,105,16,143,40,244,126,96,32,190,171,107,175,89,243,126,208,12,175,82,244,126,24,105,16,143,82,244,126,96,201,255,240,240,201,1,208,12,175,37,244,126,24,105,16,143,37,244,126,96,201,2,208,32,72,218,175,37,244,126,26,41,15,170,175,37,244,126,41,240,143,37,244,126,138,15,37,244,126,143,37,244,126,250,104,96,201,3,208,12,175,38,244,126,24,105,16,143,38,244,126,96,201,4,208,31,72,218,175,38,244,126,26,41,15,170,175,38,244,126,41,240,143,38,244,126,138,15,38,244,126,143,38,244,126,250,104,96,175,67,243,126,208,17,175,117,243,126,240,11,58,143,117,243,126,169,1,143,67,243,126,34,127,219,13,34,190,212,160,107,143,117,243,126,173,3,3,208,14,169,4,141,2,2,169,1,141,3,3,34,120,250,13,107,173,2,2,41,255]},{"1059962":[201,2]},{"1059965":[208,14,175,140,243,126,41,192]},{"1059974":[201,192]},{"1059977":[240,79,128,64,201,1]},{"1059984":[208,14,175,142,243,126,41,192]},{"1059993":[201,192]},{"1059996":[240,60,128,45,201,5]},{"1060003":[208,14,175,140,243,126,41,48]},{"1060012":[201,48]},{"1060015":[240,41,128,26,201,13]},{"1060022":[208,16,175,140,243,126,137,4]},{"1060031":[240,12,41,3]},{"1060036":[208,20,128,5,201,16]},{"1060043":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1060056":[208,5,169,79,61,128,6,32,233,172,169,62,45,153,196,255,107,185,192,255,41,255,239,153,192,255,185,194,255,41,255,239,153,194,255,185,254,255,41,255,239,153,254,255,185,4]},{"1060103":[41,255,239,153,4]},{"1060109":[185,62]},{"1060112":[41,255,239,153,62]},{"1060118":[185,68]},{"1060121":[41,255,239,153,68]},{"1060127":[185,128]},{"1060130":[41,255,239,153,128]},{"1060136":[185,130]},{"1060139":[41,255,239,153,130]},{"1060145":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1060166":[41,255,239,153,132]},{"1060172":[185,126]},{"1060175":[41,255,239,153,126]},{"1060181":[96,175,140,243,126,41,252,9,1,143,140,243,126,169,3,143,76,243,126,107,175,114,129,48,240,5,175,139,243,126,107,191,124,243,126,107,72,175,114,129,48,240,6,104,143,139,243,126,107,104,159,124,243,126,107,72,175,114,129,48,240,10,104,175,139,243,126,143,111,243,126,107,104,143,111,243,126,107,218,139,75,171,170,191,175,173,160,171,250,107,255,255,255,255,5,6,255,12,11,13,10,7,19,14,255,255,255,255,255,255,255,9,255,255,8,255,255,16,17,18,255,255,255,255,3,4,255,255,2,255,255,255,20,21,23,22,21,23,22,15,255,255,255,255,255,255,255,255,255,255,255,255,2,2,255,255,255,255,1,255,255,255,255,255,255,255,255,255,255,255,100,2,100,3,194,48,107,34,93,246,29,175,20,128,48,34,106,139,160,107,159,92,243,126,72,175,79,243,126,208,6,138,26,143,79,243,126,104,107,173,218,2,208,30,175]},{"1060397":[80,127,240,16,175,20,128,48,34,106,139,160,169]},{"1060411":[143]},{"1060413":[80,127,128,8,175,20,128,48,34,208,139,160,107,169]},{"1060428":[157,192,13,72,169,1,143]},{"1060436":[80,127,165,93,201,20,240,14,169]},{"1060446":[143]},{"1060448":[80,127,175,19,128,48,34,106,139,160,104,107,72,90,175]},{"1060464":[80,127,240,6,34,79,174,160,128,8,175,19,128,48,34,208,139,160,122,104,107,175,20,128,48,168,156,233,2,34,157,153,7,34,197,134,160,107,175,140,243,126,41,223,143,140,243,126,41,16,240,7,169,2,143,68,243,126,107,169]},{"1060525":[143,68,243,126,107,175,123,243,126,41,255]},{"1060537":[201,2]},{"1060540":[240,22,169,247,40,143,4,199,126,169,81,40,143,6,199,126,169,250,40,143,8,199,126,107,169,247,40,143,4,199,126,169]},{"1060573":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1060588":[254,127,72,169,27,141,47,1,104,107,9,64,141,3,4,72,169,27,141,47,1,104,107,169,1,143]},{"1060615":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1060629":[173,91,3,41,1,208,3,130,134]},{"1060639":[90,8,139,75,171,226,48,165,27,240,3,76,162,175,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1060676":[129,48,143]},{"1060680":[254,127,34,93,246,29,162]},{"1060688":[165,47,201,4,240,1,232,191,166,175,160,153,80,13,169]},{"1060704":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,168,175,160,41,240,153,16,13,165,35,105]},{"1060738":[153,48,13,165,32,24,105,22,41,240,153]},{"1060750":[13,165,33,105]},{"1060755":[153,32,13,169]},{"1060760":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1060777":[19,175,204,243,126,201,8,240,6,201,12,240,2,24,107,56,107,175,197,243,126,201,2,176,6,169,2,143,197,243,126,107,169]},{"1060811":[143,145,80,127,156,216,2,156,218,2,100,46,169,2,133,47,175,122,243,126,41,127,201,127,208,6,169,8,143,199,243,126,34,241,141,160,92,53,207,30,175,195,225,29,34,106,139,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1060873":[92,82,223,29,175,133,225,29,34,106,139,160,107,165,138,201,129,208,6,175,195,225,29,128,4,175,133,225,29,34,208,139,160,107,34,157,153,7,165,138,201,129,208,6,34,82,134,160,128,4,34,146,134,160,107,165,138,201,42,240,1,107,165,27,240,1,107,175,74,129,48,34,106,139,160,169,235,143]},{"1060952":[254,127,34,93,246,29,162]},{"1060960":[165,47,201,4,240,1,232,191,189,176,160,153,80,13,169]},{"1060976":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,191,176,160,41,240,153,16,13,165,35,105]},{"1061010":[153,48,13,165,32,24,105,22,41,240,153]},{"1061022":[13,165,33,105]},{"1061027":[153,32,13,169]},{"1061032":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1061056":[19,165,16,201,26,240,9,169,1,141,221,15,92,93,175,6,189,128,13,201,3,92,94,175,6,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,52,134,160,175,21,128,48,201,255,240,9,168,156,233,2,34,157,153,7,107,175,210,251,5,143,123,243,126,107,201,12,208,6,160,92,92,71,213]},{"1061137":[201,35,208,6,160,93,92,71,213]},{"1061147":[201,72,208,6,160,96,92,71,213]},{"1061157":[201,36,176,6,160,91,92,71,213]},{"1061167":[201,55,176,6,160,92,92,71,213]},{"1061177":[201,57,176,6,160,93,92,71,213]},{"1061187":[160,50,92,71,213]},{"1061193":[192,9,48]},{"1061197":[96]},{"1061199":[144]},{"1061201":[192]},{"1061204":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1061228":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1061246":[9,48,9,96,9,144,9,240,9]},{"1061257":[240]},{"1061259":[32,10,80,10,96,6]},{"1061266":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1061288":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1061304":[6,48,6]},{"1061308":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1061324":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1061345":[127,73,177,160,107,218,173,216,2,34,68,199,160,201,11,208,17,175,142,243,126,41,64,240,6,169,3,143,64,243,126,130,34,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,10,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,242,2,201,78,208,22,175,123,243,126,201,2,176,5,26,143,123,243,126,169,128,143,115,243,126,130,216,2,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,197,2,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,176,2,201,81,208,22,175,112,243,126,24,105,5,143,112,243,126,175,128,128,48,143,117,243,126,130,150,2,201,82,208,22,175,112,243,126,24,105,10,143,112,243,126,175,129,128,48,143,117,243,126,130,124,2,201,83,208,22,175,113,243,126,24,105,5,143,113,243,126,175,130,128,48,143,118,243,126,130,98,2,201,84,208,22,175,113,243,126,24,105,10,143,113,243,126,175,131,128,48,143,118,243,126,130,72,2,201,85,208,27,175,97,128,48,208,14,175,98,128,48,208,8,175,99,128,48,208,2,128,4,34,96,128,48,130,41,2,201,86,208,27,175,102,128,48,208,14,175,103,128,48,208,8,175,104,128,48,208,2,128,4,34,101,128,48,130,10,2,201,87,208,27,175,107,128,48,208,14,175,108,128,48,208,8,175,109,128,48,208,2,128,4,34,106,128,48,130,235,1,201,88,208,17,175,64,243,126,240,11,201,3,176,7,24,105,2,143,64,243,126,201,89,208,20,194,32,175,96,243,126,56,239,54,128,48,143,96,243,126,226,32,130,190,1,201,90,208,3,130,183,1,201,91,208,32,194,32,175,84,244,126,24,111]},{"1061755":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,147,1,201,92,208,32,194,32,175,84,244,126,24,111,4,130,48,143,84,244,126,175,86,244,126,111,6,130,48,143,86,244,126,226,32,130,111,1,201,93,208,32,194,32,175,84,244,126,24,111,8,130,48,143,84,244,126,175,86,244,126,111,10,130,48,143,86,244,126,226,32,130,75,1,201,94,208,3,130,68,1,201,95,208,3,130,61,1,201,96,208,3,130,54,1,201,97,208,3,130,47,1,201,98,208,3,130,40,1,201,99,208,3,130,33,1,201,106,208,7,34,190,193,160,130,22,1,201,107,208,2,128,4,201,108,208,28,175,103,129,48,240,19,175,96,244,126,26,143,96,244,126,207,103,129,48,144,4,34,190,193,160,130,240]},{"1061941":[201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1061960":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,204]},{"1061977":[56,233,8,170,169,1,224]},{"1061985":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,173]},{"1062008":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1062027":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,137]},{"1062044":[56,233,8,170,169,1,224]},{"1062052":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,106]},{"1062075":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1062094":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,70]},{"1062111":[56,233,8,170,169,1,224]},{"1062119":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,39]},{"1062142":[201,160,144,35,201,176,176,31,41,15,170,191,124,243,126,26,159,124,243,126,138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130]},{"1062181":[250,173,233,2,201,1,107,72,218,34,183,212,160,173,216,2,201,22,208,19,32,158,193,207,150,128,48,144,7,175,151,128,48,141,216,2,130,173,1,201,43,208,19,32,158,193,207,150,128,48,144,7,175,151,128,48,141,216,2,130,150,1,201,44,208,19,32,158,193,207,150,128,48,144,7,175,151,128,48,141,216,2,130,127,1,201,45,208,19,32,158,193,207,150,128,48,144,7,175,151,128,48,141,216,2,130,104,1,201,60,208,19,32,158,193,207,150,128,48,144,7,175,151,128,48,141,216,2,130,81,1,201,61,208,19,32,158,193,207,150,128,48,144,7,175,151,128,48,141,216,2,130,58,1,201,72,208,19,32,158,193,207,150,128,48,144,7,175,151,128,48,141,216,2,130,35,1,201,78,208,14,175,123,243,126,240,5,169,79,141,216,2,130,17,1,201,94,208,64,175,89,243,126,207,144,128,48,144,10,175,145,128,48,141,216,2,130,249]},{"1062400":[201]},{"1062402":[208,8,169,73,141,216,2,130,237]},{"1062412":[201,1,208,8,169,80,141,216,2,130,225]},{"1062424":[201,2,208,8,169,2,141,216,2,130,213]},{"1062436":[169,3,141,216,2,130,205]},{"1062444":[201,95,208,93,175,22,244,126,74,74,74,74,74,74,207,146,128,48,144,10,175,147,128,48,141,216,2,130,175]},{"1062474":[175,22,244,126,41,192,208,19,169,4,141,216,2,175,22,244,126,24,105,64,143,22,244,126,130,148]},{"1062501":[201,64,208,18,169,5,141,216,2,175,22,244,126,24,105,64,143,22,244,126,128,126,169,6,141,216,2,175,22,244,126,24,105,64,143,22,244,126,128,108,201,96,208,38,175,91,243,126,207,148,128,48,144,10,175,149,128,48,141,216,2,130,84]},{"1062565":[201]},{"1062567":[208,7,169,34,141,216,2,128,73,169,35,141,216,2,128,66,201,97,208,20,175,84,243,126,208,7,169,27,141,216,2,128,49,169,28,141,216,2,128,42,201,98,208,19,34,184,192,160,141,216,2,235,32,60,193,169,255,143,144,80,127,128,19,201,99,208,15,34,109,193,160,141,216,2,169,255,143,144,80,127,128]},{"1062649":[250,104,139,75,92,228,133,9,251,251,251,251,251,252,252,251,251,252,252,252,254,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,251,252,252,252,252,252,252,254,252,252,252,252,252,252,252,252,252,254,254,254,252,252,252,252,252,252,252,252,252,252,252,254,254,252,254,252,252,252,251,252,252,252,252,252,252,251,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,4,4,4,4,4]},{"1062904":[4,4,4,4,4,5]},{"1062916":[4]},{"1062918":[4]},{"1062921":[4]},{"1062933":[4]},{"1062939":[5]},{"1062949":[4,4,4]},{"1062963":[4,4]},{"1062966":[4]},{"1062970":[4]},{"1062977":[4]},{"1062986":[4]},{"1063057":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1063137":[6,24,24,24,45,32,46,9,9,10,8,5,16,11,44,27,26,28,20,25,12,7,29,47,7,21,18,13,13,14,17,23,40,39,4,4,15,22,3,19,1,30,16]},{"1063186":[48,34,33,36,36,36,35,35,35,41,42,44,43,3,3,52,53,49,51,2,50,54,55,44,6,12,56,57,58,59,60,24,61,62,63,64]},{"1063225":[65,36,71,72,72,72,255,255,4,13,255,255,255,255,255,255,255,255,73,74,73,255,255,255,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73]},{"1063382":[2,2]},{"1063390":[2,2,2,2,2,2]},{"1063397":[2]},{"1063399":[2,2]},{"1063402":[2,2,2,2,2,2,2,2,2,2,2]},{"1063414":[2,2,2,2,2]},{"1063420":[2,2,2,2,2,2,2,2,2]},{"1063432":[2,2,2,2,2,2,2,2,2,2,2]},{"1063445":[2]},{"1063447":[2,2,2]},{"1063451":[2,2,2,2,2,2]},{"1063458":[2,2,2,2,2,2,2,2]},{"1063467":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]},{"1063553":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,255,5,5,5,5,5,1,2,1,1,1,2,2,2,4,4,4,1,1,2,1,1,1,2,1,2,1,4,4,2,1,6,1,2,1,2,2,1,2,2,4,1,1,4,2,1,4,2,2,4,4,4,2,1,4,1,2,2,1,2,2,1,1,4,4,1,2,2,4,4,4,2,5,2,1,4,4,4,4,5,4,4,4,4,4,4,4,1,3,1,1,2,4,255,255,255,255,255,255]},{"1063723":[4,4,4]},{"1063729":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,89,243,89,243,89,243,89,243,90,243,90,243,90,243,69,243,70,243,75,243,66,243,64,243,65,243,68,243,92,243,71,243,72,243,73,243,74,243,76,243,76,243,80,243,92,243,107,243,81,243,82,243,83,243,84,243,84,243,78,243,86,243,87,243,122,243,77,243,91,243,91,243,111,243,100,243,108,243,117,243,117,243,68,243,65,243,92,243,92,243,92,243,109,243,110,243,110,243,117,243,102,243,104,243,96,243,96,243,96,243,116,243,116,243,116,243,64,243,64,243,92,243,92,243,108,243,108,243,96,243,96,243,114,243,118,243,118,243,115,243,96,243,96,243,92,243,89,243,76,243,85,243,117,243,118,243,115,243,115,243,89,243,117,243,117,243,118,243,118,243,26,244,28,244,30,244,64,243,96,243,106,243,84,244,84,244,84,244,89,243,90,243,91,243,84,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,1,2,3,4,1,2,3,1,1,1,1,1,1,2,255,1,1,1,1,1,2,1,255,255,1,1,2,1,2,1,1,1,255,1,255,2,255,255,255,255,255,255,2,255,255,255,255,255,255,255,255,255,255,251,236,255,255,255,1,3,255,255,255,255,156,206,255,1,10,255,255,255,255,1,3,1,50,70,128,128,2,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"1064578":[128]},{"1064580":[64]},{"1064582":[32]},{"1064584":[16]},{"1064586":[8]},{"1064588":[4]},{"1064590":[2]},{"1064592":[1,128]},{"1064595":[64]},{"1064597":[32]},{"1064599":[16]},{"1064601":[8]},{"1064603":[4]},{"1064834":[22,43,44,45,61,60,72,46,47,48,255,14,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,53,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,139,75,171,185,142,191,133,3,171,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,159,192,160,175,64,243,126,107,169,134,143,32,199,126,169,36,143,33,199,126,169,135,143,34,199,126,169,36,143,35,199,126,107,175,144,80,127,201,255,240,7,170,235,191]},{"1065156":[160,48,107,162]},{"1065161":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1065174":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1065188":[32,24,193,240,27,175,32,80,127,26,207,127,160,48,144,2,169]},{"1065206":[143,32,80,127,232,236,127,160,144,228,169,90,128,4,175,32,80,127,170,191]},{"1065227":[160,48,235,175,32,80,127,143,144,80,127,235,107,74,74,74,170,191,80,244,126,143,34,80,127,218,175,32,80,127,41,7,170,175,34,80,127,224]},{"1065266":[240,4,74,202,128,248,250,41,1,96,74,74,74,143,33,80,127,170,191,80,244,126,143,34,80,127,175,32,80,127,41,7,170,169,1,224]},{"1065303":[240,4,10,202,128,248,72,175,33,80,127,170,104,15,34,80,127,159,80,244,126,96,175,144,80,127,201,255,240,7,170,235,191,128,160,48,107,162]},{"1065342":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1065355":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,162]},{"1065376":[175,92,243,126,240,1,232,175,93,243,126,240,1,232,175,94,243,126,240,1,232,175,95,243,126,240,1,232,138,96,100,17,100,176,92,30,198,160,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1065439":[13,24,105,3,107,201,73,208,2,169]},{"1065450":[201,80,208,2,169,1,201,4,144,4,92,54,201,6,34,165,133,160,240,4,92,54,201,6,34,26,134,160,175,40,128,48,157,192,13,169,5,157,176,14,92,72,201,6,189,32,14,201,136,208,9,32,42,194,201,4,144,1,58,107,32,42,194,107,175,192,80,127,240,18,24,111,89,243,126,208,3,169,1,96,201,5,144,3,169,4,96,96,175,89,243,126,96,72,175,91,243,126,24,111,194,80,127,201,255,208,2,169]},{"1065559":[201,3,144,2,169,2,143,32,80,127,104,24,111,32,80,127,107,175,195,80,127,240,19,24,111,123,243,126,201,255,208,3,169]},{"1065593":[107,201,3,144,2,169,2,107,175,123,243,126,107,165,93,201,1,240,22,201,23,240,18,201,28,240,14,165,91,208,10,173,72,3,15,199,80,127,41,17,107,173,72,3,41,17,107,165,93,201,1,240,22,201,23,240,18,201,28,240,14,165,91,208,10,173,72,3,15,199,80,127,41,1,107,173,72,3,41,1,107,175,68,128,48,240,9,175,75,243,126,240,3,169,2,107,175,89,243,126,107,175,63,128,48,240,6,189,32,14,201,216,107,189,32,14,201,214,107,34,172,133,160,240,4,92,157,180,6,175,41,128,48,208,4,92,145,180,6,175,42,128,48,168,156,233,2,218,34,157,153,7,250,194,32,175,96,243,126,56,233,10]},{"1065756":[143,96,243,126,226,32,34,39,134,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1065782":[165,27,240,121,194,32,165,160,201,14]},{"1065793":[208,33,165,34,41,255,1,201,104,1,144,98,201,136,1,176,93,165,32,41,255,1,201,122,1,144,83,201,154,1,176,78,130,167]},{"1065828":[201,126]},{"1065831":[208,33,165,34,41,255,1,201,104]},{"1065841":[144,60,201,136]},{"1065846":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1065866":[201,222]},{"1065869":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1065894":[144,7,201,154]},{"1065899":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,19,196,160,205,3,3,208,60,175,240,242,126,41,32,208,52,169,8,72,171,160,2,34,241,182,8,176,48,128,38,201,71,208,34,175,35,128,48,170,191,19,196,160,205,3,3,208,20,175,199,242,126,41,32,208,12,169,8,72,171,160,3,34,241,182,8,176,8,122,250,171,175,89,243,126,107,226,32,122,250,171,169,2,107,15,16,17,72,175,67,244,126,208,34,175,46,244,126,56,239,63,80,127,201,30,144,21,175,46,244,126,143,63,80,127,175,32,244,126,26,201,100,240,4,143,32,244,126,104,34,223,147,9,107,72,175,67,244,126,208,19,165,16,201,23,208,13,175,45,244,126,26,201,100,240,4,143,45,244,126,104,107,72,175,67,244,126,208,9,175,45,244,126,58,143,45,244,126,104,107,191,31,195,1,128,25,34,61,137]},{"1066109":[128,19,34,97,184,2,128,13,34,179,145,7,169]},{"1066123":[141,1,3,169,15,133,16,72,8,175,67,244,126,208,16,194,32,175,60,244,126,26,201,231,3,240,4,143,60,244,126,40,104,107,175,67,244,126,208,9,175,75,244,126,26,143,75,244,126,34,146,196,160,107,143,111,243,126,218,175,67,244,126,208,4,34,44,171,160,34,18,144,160,90,160,24,34,60,164,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,44,171,160,34,18,144,160,34,120,250,13,250,107,143,111,243,126,34,18,144,160,107,72,175,67,244,126,208,4,34,186,171,160,104,107,72,175,67,244,126,208,15,175,109,243,126,208,9,175,73,244,126,26,143,73,244,126,104,107,159,92,243,126,72,175,67,244,126,208,9,175,83,244,126,26,143,83,244,126,104,107,169,1,141,233,2,72,175,67,244,126,208,9,175,66,244,126,26,143,66,244,126,104,107,72,175,67,244,126,208,9,175,66,244,126,58,143,66,244,126,104,107,72,175,67,244,126,208,9,175,35,244,126,58,143,35,244,126,104,107,34,97,184,2,72,175,67,244,126,208,31,72,218,175,39,244,126,26,41,15,170,175,39,244,126,41,240,143,39,244,126,138,15,39,244,126,143,39,244,126,250,104,104,107,72,175,67,244,126,208,15,175,202,243,126,240,9,175,58,244,126,26,143,58,244,126,104,76,146,196,72,175,67,244,126,208,20,173,12,4,201,255,240,13,175,59,244,126,26,143,59,244,126,34,146,196,160,104,34,168,160,2,107,58,16,8,169]},{"1066471":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1066485":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,34,58,135,1,76,146,196,169,1,143]},{"1066515":[80,127,156,70,6,156,66,6,76,146,196,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,186,171,160,175,36,244,126,24,105,64,143,36,244,126,175,60,244,126,58,143,60,244,126,175,37,244,126,74,74,74,74,24,111,37,244,126,143,55,80,127,175,38,244,126,74,74,74,74,24,111,38,244,126,24,111,55,80,127,41,15,143,55,80,127,175,62,244,126,56,239,46,244,126,143,56,80,127,175,63,244,126,239,47,244,126,143,57,80,127,175,64,244,126,239,48,244,126,143,58,80,127,175,65,244,126,239,49,244,126,143,59,80,127,175,43,244,126,24,111,98,243,126,143,60,80,127,175,44,244,126,111,99,243,126,143,61,80,127,175,35,244,126,56,239,66,244,126,143,62,80,127,40,250,104,169,25,133,16,100,17,100,176,107,169,128,141,26,33,169]},{"1066713":[143,21,244,126,107,175,21,244,126,208,9,169,1,169,1,143,21,244,126,107,165,246,41,112,107,175,53,80,127,240,5,191]},{"1066746":[87,127,107,191]},{"1066751":[18,127,107,156,240,28,156,241,28,169]},{"1066762":[143,53,80,127,169,28,141,233,28,107,169,1,143,53,80,127,194,32,175,148,80,127,170,160]},{"1066788":[226,32,183]},{"1066792":[159]},{"1066794":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1066813":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1066837":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,32,5,169]},{"1066855":[143,16,80,127,175,64,80,127,41,240,201,112,208,56,169]},{"1066871":[133]},{"1066873":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1066891":[226,32,183]},{"1066895":[159]},{"1066897":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1066916":[143,148,80,127,226,32,130,213]},{"1066925":[201,128,208,56,169,52,133]},{"1066933":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1066951":[226,32,183]},{"1066955":[159]},{"1066957":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1066976":[143,148,80,127,226,32,130,153]},{"1066985":[201,144,208,55,169,112,133]},{"1066993":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1067011":[226,32,183]},{"1067015":[159]},{"1067017":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1067036":[143,148,80,127,226,32,128,94,201,160,208,87,175,64,80,127,201,175,208,3,130,82,4,169,170,133]},{"1067063":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1067081":[226,32,183]},{"1067085":[159]},{"1067087":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1067106":[143,148,80,127,226,32,104,41,15,143,32,80,127,169,15,56,239,32,80,127,72,169,1,143,16,80,127,128,3,130,3,4,175,150,80,127,58,58,143,148,80,127,175,64,80,127,41,15,143,17,80,127,175,16,80,127,240,15,175,16,80,127,169,15,56,239,17,80,127,143,17,80,127,175,17,80,127,201]},{"1067185":[208,56,169,216,133]},{"1067191":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1067209":[226,32,183]},{"1067213":[159]},{"1067215":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1067234":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1067251":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1067269":[226,32,183]},{"1067273":[159]},{"1067275":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1067294":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1067311":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1067329":[226,32,183]},{"1067333":[159]},{"1067335":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1067354":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1067371":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1067389":[226,32,183]},{"1067393":[159]},{"1067395":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1067414":[143,148,80,127,226,32,130,203,2,201,4,208,56,169,60,133]},{"1067431":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1067449":[226,32,183]},{"1067453":[159]},{"1067455":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1067474":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1067491":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1067509":[226,32,183]},{"1067513":[159]},{"1067515":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1067534":[143,148,80,127,226,32,130,83,2,201,6,208,56,169,116,133]},{"1067551":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1067569":[226,32,183]},{"1067573":[159]},{"1067575":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1067594":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1067611":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1067629":[226,32,183]},{"1067633":[159]},{"1067635":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1067654":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1067671":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1067689":[226,32,183]},{"1067693":[159]},{"1067695":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1067714":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1067731":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1067749":[226,32,183]},{"1067753":[159]},{"1067755":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1067774":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1067791":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1067809":[226,32,183]},{"1067813":[159]},{"1067815":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1067834":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1067851":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1067869":[226,32,183]},{"1067873":[159]},{"1067875":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1067894":[143,148,80,127,226,32,130,235]},{"1067903":[201,12,208,56,169,12,133]},{"1067911":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1067929":[226,32,183]},{"1067933":[159]},{"1067935":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1067954":[143,148,80,127,226,32,130,175]},{"1067963":[201,13,208,55,169,41,133]},{"1067971":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1067989":[226,32,183]},{"1067993":[159]},{"1067995":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1068014":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1068030":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1068048":[226,32,183]},{"1068052":[159]},{"1068054":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1068073":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1068089":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1068107":[226,32,183]},{"1068111":[159]},{"1068113":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1068132":[143,148,80,127,226,32,169,1,143,53,80,127,169,1,143,160,80,127,104,133,2,104,133,1,104,133]},{"1068159":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1068174":[171,40,122,250,104,107,72,218,90,8,139,75,171,226,32,194,16,165]},{"1068193":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1068214":[133]},{"1068216":[169,136,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1068234":[226,32,183]},{"1068238":[159]},{"1068240":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1068259":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1068274":[171,40,122,250,104,34,142,250,5,107,72,218,90,8,139,75,171,226,32,194,16,165]},{"1068297":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1068318":[133]},{"1068320":[169,137,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1068338":[226,32,183]},{"1068342":[159]},{"1068344":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1068363":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1068378":[171,40,122,250,104,34,25,226,5,107,72,218,90,8,139,75,171,226,32,194,16,165]},{"1068401":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1068422":[133]},{"1068424":[169,132,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1068442":[226,32,183]},{"1068446":[159]},{"1068448":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1068467":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1068482":[171,40,122,250,104,194,32,169,113,1,141,240,28,226,32,34,16,238,14,107,34,144,222,160,176,101,72,218,90,8,139,75,171,226,32,194,16,165]},{"1068521":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1068542":[133]},{"1068544":[169,145,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1068562":[226,32,183]},{"1068566":[159]},{"1068568":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1068587":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1068602":[171,40,122,250,104,128,99,72,218,90,8,139,75,171,226,32,194,16,165]},{"1068622":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1068643":[133]},{"1068645":[169,134,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1068663":[226,32,183]},{"1068667":[159]},{"1068669":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1068688":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1068703":[171,40,122,250,104,34,142,250,5,107,34,144,222,160,176,101,72,218,90,8,139,75,171,226,32,194,16,165]},{"1068732":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1068753":[133]},{"1068755":[169,146,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1068773":[226,32,183]},{"1068777":[159]},{"1068779":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1068798":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1068813":[171,40,122,250,104,128,99,72,218,90,8,139,75,171,226,32,194,16,165]},{"1068833":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1068854":[133]},{"1068856":[169,135,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1068874":[226,32,183]},{"1068878":[159]},{"1068880":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1068899":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1068914":[171,40,122,250,104,34,142,250,5,107,72,173,2,2,201,15,240,6,104,34,25,226,5,107,36,244,80,246,72,218,90,8,139,75,171,226,32,194,16,165]},{"1068955":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1068976":[133]},{"1068978":[169,131,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1068996":[226,32,183]},{"1069000":[159]},{"1069002":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1069021":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1069036":[171,40,122,250,104,104,34,25,226,5,107,72,173,2,2,201,15,240,6,104,34,25,226,5,107,36,244,80,246,175,68,128,48,240,8,175,75,243,126,240,14,128,117,175,89,243,126,201,255,240,4,201,2,176,105,72,218,90,8,139,75,171,226,32,194,16,165]},{"1069104":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1069125":[133]},{"1069127":[169,143,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1069145":[226,32,183]},{"1069149":[159]},{"1069151":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1069170":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1069185":[171,40,122,250,104,104,34,25,226,5,107,104,107,72,173,2,2,201,15,240,6,104,34,25,226,5,107,36,244,80,246,175,68,128,48,240,8,175,75,243,126,240,14,128,117,175,89,243,126,201,255,240,4,201,2,176,105,72,218,90,8,139,75,171,226,32,194,16,165]},{"1069255":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1069276":[133]},{"1069278":[169,144,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1069296":[226,32,183]},{"1069300":[159]},{"1069302":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1069321":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1069336":[171,40,122,250,104,104,34,25,226,5,107,104,107,72,218,90,8,139,75,171,226,32,194,16,165]},{"1069362":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1069383":[133]},{"1069385":[169,133,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1069403":[226,32,183]},{"1069407":[159]},{"1069409":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1069428":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1069443":[171,40,122,250,104,34,25,226,5,107,175,116,243,126,41,4,240,104,72,218,90,8,139,75,171,226,32,194,16,165]},{"1069474":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1069495":[133]},{"1069497":[169,139,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1069515":[226,32,183]},{"1069519":[159]},{"1069521":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1069540":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1069555":[171,40,122,250,104,34,25,226,5,107,72,218,90,8,139,75,171,226,32,194,16,165]},{"1069578":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1069599":[133]},{"1069601":[169,138,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1069619":[226,32,183]},{"1069623":[159]},{"1069625":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1069644":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1069659":[171,40,122,250,104,34,25,226,5,107,72,218,90,8,139,75,171,226,32,194,16,165]},{"1069682":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1069703":[133]},{"1069705":[169,140,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1069723":[226,32,183]},{"1069727":[159]},{"1069729":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1069748":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1069763":[171,40,122,250,104,34,25,226,5,107,175,122,243,126,41,5,201,5,240,104,72,218,90,8,139,75,171,226,32,194,16,165]},{"1069796":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1069817":[133]},{"1069819":[169,142,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1069837":[226,32,183]},{"1069841":[159]},{"1069843":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1069862":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1069877":[171,40,122,250,104,34,25,226,5,107,72,218,90,8,139,75,171,226,32,194,16,165]},{"1069900":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1069921":[133]},{"1069923":[169,141,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1069941":[226,32,183]},{"1069945":[159]},{"1069947":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1069966":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1069981":[171,40,122,250,104,34,25,226,5,107,34,68,143,160,175,219,242,126,107,34,129,160,160,34,232,219,160,34,206,221,160,34,2,223,160,107,72,8,226,32,173,12,4,201,255,240,25,194,32,165,160,201,18]},{"1070035":[240,16,226,32,175,204,243,126,201,12,208,6,169]},{"1070049":[143,204,243,126,40,104,143,114,193,126,107,141,12,4,156,172,4,72,8,34,120,250,13,40,104,107,34,190,160,2,34,4,197,160,107,175,240,244,126,208,10,34,45,212,160,169,255,143,240,244,126,34,218,128,160,34,140,129,160,34,14,128,164,169,255,143,144,80,127,169]},{"1070120":[143,1,80,127,107,218,8,194,32,175,70,128,48,143,98,243,126,143,96,243,126,175,12,130,48,143,84,244,126,175,14,130,48,143,86,244,126,162]},{"1070160":[191]},{"1070162":[176,48,159,64,243,126,232,232,224,79]},{"1070173":[144,241,226,32,175,64,128,48,240,12,169,128,143,97,240,126,169,128,143,147,240,126,175,67,128,48,143,89,243,126,40,250,107,34,103,141,160,34,180,220,160,107,34,218,141,160,34,227,141,160,162,4,107,34,180,220,160,169,20,133,17,107,34,180,220,160,107,34,243,129,160,34,191,141,160,34,146,196,160,8,226,32,169,255,143,144,80,127,40,107,169,1,143,145,80,127,107,34,241,141,160,107,169]},{"1070277":[143,145,80,127,175,160,80,127,240,10,34,105,253,28,169]},{"1070293":[143,160,80,127,156,233,2,189,94,12,107,175,105,129,48,208,4,169]},{"1070313":[107,201,1]},{"1070317":[208,4,32,247,212,107,169]},{"1070326":[107,175,197,243,126,41,15]},{"1070334":[201,2]},{"1070337":[176,23,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1070361":[96,169]},{"1070365":[96,34,39,213,160,34,148,213,160,107,169,14,143,1,40]},{"1070381":[169,4,143,1,40]},{"1070387":[169,13,143,1,40]},{"1070393":[169,14,143,1,40]},{"1070399":[169]},{"1070401":[143,1,40]},{"1070405":[169]},{"1070407":[143,1,40]},{"1070411":[169]},{"1070413":[143,1,40]},{"1070417":[169]},{"1070419":[143,1,40]},{"1070423":[169]},{"1070425":[143,1,40]},{"1070429":[169]},{"1070431":[143,1,40]},{"1070435":[169]},{"1070437":[143,1,40]},{"1070441":[169,1,143,1,40]},{"1070447":[169]},{"1070449":[143,1,40]},{"1070453":[169,1,143,1,40]},{"1070459":[169]},{"1070461":[143,1,40]},{"1070465":[169]},{"1070467":[143,1,40]},{"1070471":[169,10,143,1,40]},{"1070477":[169,13,143,1,40]},{"1070483":[107,72,218,162]},{"1070488":[175]},{"1070490":[40]},{"1070492":[41,15,201,15,240,10,224,14,144,3,24,128,4,232,128,236,56,250,104,107,72,218,8,226,48,162]},{"1070519":[175]},{"1070521":[40]},{"1070523":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1070537":[232,128,235,56,175]},{"1070543":[40]},{"1070545":[72,175]},{"1070548":[40]},{"1070550":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1070568":[175]},{"1070570":[40]},{"1070572":[72,175]},{"1070575":[40]},{"1070577":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1070597":[40]},{"1070599":[72,175]},{"1070602":[40]},{"1070604":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1070624":[40]},{"1070626":[72,175]},{"1070629":[40]},{"1070631":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,41,255]},{"1070716":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1070734":[133]},{"1070736":[165,3,41,255]},{"1070741":[10,10,10,72,10,24,99,1,131,1,104,100,3,24,101,2,10,10,72,10,10,10,10,56,227,1,131,1,104,160,96,34,199,214,160,132,2,100,3,24,101]},{"1070783":[144,2,230,2,40,250,104,107,226,32,140,2,66,141,3,66,234,234,234,234,173,22,66,172,23,66,235,141,3,66,234,234,152,24,109,22,66,172,23,66,144,1,200,235,194,32,107,72,218,90,8,226,48,162]},{"1070838":[175]},{"1070840":[40]},{"1070842":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1070856":[232,128,235,56,175]},{"1070862":[40]},{"1070864":[72,175]},{"1070867":[40]},{"1070869":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1070887":[175]},{"1070889":[40]},{"1070891":[72,175]},{"1070894":[40]},{"1070896":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1070916":[40]},{"1070918":[72,175]},{"1070921":[40]},{"1070923":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1070943":[40]},{"1070945":[72,175]},{"1070948":[40]},{"1070950":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1070970":[40]},{"1070972":[133,4,175]},{"1070976":[40]},{"1070978":[72,175]},{"1070981":[40]},{"1070983":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1071003":[40]},{"1071005":[133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,41,255]},{"1071074":[10,72,10,10,24,99,1,131,1,104,10,72,10,10,24,99,1,131,1,104,24,105,232,3,100,6,24,101,5,133,5,40,122,250,104,107,165,12,201,56,208,4,9,64,133,12,165,13,157,2,8,165,12,157,3,8,107,175,51,128,48,240,9,141,202,4,169,43,141,46,1,107,169,255,141,202,4,107,175,112,243,126,24,111,52,128,48,58,207,67,243,126,144,13,175,67,243,126,201,99,176,5,26,143,67,243,126,107,175,113,243,126,24,111,53,128,48,58,207,119,243,126,144,13,175,119,243,126,201,99,176,5,26,143,119,243,126,107,175,112,243,126,24,111,52,128,48,207,67,243,126,107,127,32,127,32,80,40,86,168,82,40,91,40,91,40,92,40,127,32,2,60,3,60,127,32,127,32,136,44,137,44,127,32,167,32,169,32,127,32,113,40,127,32,127,32,139,40,143,40,171,36,172,36,143,104,139,104,127,32,127,32,127,32,127,32,127,32,127,32,84,40,113,40,88,40,127,32,127,32,93,40,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,84,40,78,48,88,40,127,32,127,32,93,40,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,84,40,94,48,89,40,91,168,91,168,92,168,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,84,40,94,48,84,104,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,80,168,86,40,80,232,169]},{"1071559":[143,128,80,127,143,130,80,127,143,132,80,127,143,134,80,127,143,136,80,127,143,138,80,127,175,144,129,48,41,255]},{"1071590":[201,2]},{"1071593":[208,27,175,62,244,126,56,239,84,244,126,143,140,80,127,175,64,244,126,239,86,244,126,143,142,80,127,128,30,201,1]},{"1071625":[208,25,175,84,244,126,56,239,62,244,126,143,140,80,127,175,86,244,126,239,64,244,126,143,142,80,127,175,142,80,127,207,230,219,160,144,10,208,8,175,140,80,127,207,228,219,160,144,100,175,145,129,48,41,255]},{"1071681":[208,24,169,2]},{"1071686":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1071710":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1071723":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1071737":[143,142,80,127,169,1]},{"1071744":[143,126,80,127,128,40,169,2]},{"1071753":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,175,146,129,48,41,255]},{"1071781":[240,7,169]},{"1071786":[143,126,80,127,175,142,80,127,207,218,219,160,144,10,208,8,175,140,80,127,207,216,219,160,144,53,175,128,80,127,26,201,10]},{"1071820":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1071834":[143,128,80,127,175,140,80,127,56,239,216,219,160,143,140,80,127,175,142,80,127,239,218,219,160,143,142,80,127,128,181,175,142,80,127,207,222,219,160,144,10,208,8,175,140,80,127,207,220,219,160,144,53,175,132,80,127,26,201,10]},{"1071895":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1071909":[143,132,80,127,175,140,80,127,56,239,220,219,160,143,140,80,127,175,142,80,127,239,222,219,160,143,142,80,127,128,181,175,142,80,127,207,226,219,160,144,10,208,8,175,140,80,127,207,224,219,160,144,53,175,136,80,127,26,201,10]},{"1071970":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1071984":[143,136,80,127,175,140,80,127,56,239,224,219,160,143,140,80,127,175,142,80,127,239,226,219,160,143,142,80,127,128,181,175,128,80,127,24,105,144,36,143,128,80,127,175,130,80,127,24,105,144,36,143,130,80,127,175,132,80,127,24,105,144,36,143,132,80,127,175,134,80,127,24,105,144,36,143,134,80,127,175,136,80,127,24,105,144,36,143,136,80,127,175,138,80,127,24,105,144,36,143,138,80,127,96,192,75,3]},{"1072092":[16,14]},{"1072096":[60]},{"1072100":[255,255,255,127,175,144,129,48,208,1,107,169,7,40,143,146,199,126,175,126,80,127,41,2]},{"1072125":[240,93,175,145,129,48,41,255]},{"1072134":[208,27,169,8,40,143,148,199,126,169,9,40,143,150,199,126,169,127,36,143,152,199,126,143,154,199,126,128,28,169,10,40,143,148,199,126,169,11,40,143,150,199,126,169,12,40,143,152,199,126,169,127,36,143,154,199,126,143,156,199,126,143,158,199,126,143,160,199,126,143,162,199,126,143,164,199,126,175,146,129,48,208,1,107,128,77,175,126,80,127,41,1]},{"1072227":[24,105,4,40,143,148,199,126,175,130,80,127,143,150,199,126,175,128,80,127,143,152,199,126,169,6,40,143,154,199,126,175,134,80,127,143,156,199,126,175,132,80,127,143,158,199,126,169,6,40,143,160,199,126,175,138,80,127,143,162,199,126,175,136,80,127,143,164,199,126,165,26,41,31]},{"1072302":[208,3,32,196,217,107,175,145,129,48,201,2,208,14,175,126,80,127,41,2,240,6,169]},{"1072326":[143,109,243,126,175,109,243,126,107,165,160,201,13,208,3,169,7,107,169,11,107,157,160,11,165,160,201,13,208,15,175,163,128,48,240,6,169,64,143,202,243,126,169,1,107,175,163,128,48,240,6,169]},{"1072379":[143,202,243,126,169]},{"1072385":[107,165,160,201,13,208,4,169,6,128,2,169,1,107,218,165,160,201,13,208,6,169,1,92,123,213,30,169]},{"1072414":[92,123,213,30,254,48,14,165,160,201,13,208,3,169,1,107,169]},{"1072432":[107,175,66,128,48,240,14,173,3,4,41,128,240,7,173,18,1,13,228,2,107,173,18,1,13,228,2,13,252,15,107,194,32,165,160,201,23,1,226,32,208,8,175,104,129,48,141,115,3,107,185,85,208,141,115,3,107,165,27,240,44,194,32,165,160,201,95]},{"1072500":[240,24,201,172]},{"1072505":[240,19,201,179]},{"1072510":[240,14,201,213]},{"1072515":[240,9,201,23,1,240,4,226,32,128,11,226,32,218,187,191,107,129,48,133]},{"1072536":[250,175,110,243,126,107,165,27,240,39,194,32,165,160,201,95]},{"1072553":[240,19,201,179]},{"1072558":[240,14,201,213]},{"1072563":[240,9,201,23,1,240,4,226,32,128,11,226,32,218,187,191,110,129,48,133,76,250,175,110,243,126,107,175,103,129,48,41,255]},{"1072597":[208,1,107,218,162]},{"1072604":[175,101,129,48,159,44,199,126,232,232,175,96,244,126,41,255]},{"1072621":[34,156,140,160,175,5,80,127,41,255]},{"1072632":[9]},{"1072634":[36,159,44,199,126,232,232,175,6,80,127,41,255]},{"1072648":[9]},{"1072650":[36,159,44,199,126,232,232,175,7,80,127,41,255]},{"1072664":[9]},{"1072666":[36,159,44,199,126,232,232,175,103,129,48,41,255]},{"1072680":[201,255]},{"1072683":[240,54,169,48,40,159,44,199,126,232,232,175,103,129,48,41,255]},{"1072701":[34,156,140,160,175,6,80,127,41,255]},{"1072712":[9]},{"1072714":[36,159,44,199,126,232,232,175,7,80,127,41,255]},{"1072728":[9]},{"1072730":[36,159,44,199,126,232,232,128,15,169,127,32,159,44,199,126,159,44,199,126,159,44,199,126,250,107,189,32,14,201,214,208,16,34,144,222,160,176,10,189,128,13,201,17,144,3,169]},{"1072778":[107,165,68,201,128,107,175,62,128,48,240,106,201,1,240,100,201,2,208,40,175,116,243,126,41,7,201,7,208,86,175,122,243,126,41,127,201,127,208,76,175,197,243,126,201,3,144,68,175,219,242,126,41,32,201,32,208,58,128,58,201,4,208,12,175,122,243,126,41,127,201,127,208,42,128,42,201,3,208,22,175,122,243,126,41,127,201,127,208,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,96,244,126,201,100,144,2,128,2,24,107,56,107,165,27,41,255]},{"1072903":[208,1,107,173,12,4,201,255]},{"1072912":[208,1,107,175,60,128,48,41,255]},{"1072922":[208,1,107,218,174,12,4,201,2]},{"1072932":[240,13,175,100,243,126,63,232,224,160,208,3,130,179,1,173,12,4,201]},{"1072953":[208]},{"1072955":[201,2]},{"1072958":[208,14,175,52,244,126,41,240]},{"1072967":[74,74,74,74,130,194]},{"1072974":[201,4]},{"1072977":[208,10,175,54,244,126,41,7]},{"1072986":[130,179]},{"1072989":[201,6]},{"1072992":[208,15,175,53,244,126,41,224]},{"1073001":[74,74,74,74,74,130,159]},{"1073009":[201,8]},{"1073012":[208,10,175,53,244,126,41,2]},{"1073021":[130,144]},{"1073024":[201,10]},{"1073027":[208,10,175,57,244,126,41,15]},{"1073036":[130,129]},{"1073039":[201,12]},{"1073042":[208,9,175,52,244,126,41,15]},{"1073051":[128,115,201,14]},{"1073056":[208,9,175,56,244,126,41,15]},{"1073065":[128,101,201,16]},{"1073070":[208,13,175,55,244,126,41,240]},{"1073079":[74,74,74,74,128,83,201,18]},{"1073088":[208,13,175,56,244,126,41,240]},{"1073097":[74,74,74,74,128,65,201,20]},{"1073106":[208,11,175,53,244,126,41,28]},{"1073115":[74,74,128,49,201,22]},{"1073122":[208,9,175,55,244,126,41,15]},{"1073131":[128,35,201,24]},{"1073136":[208,13,175,57,244,126,41,240]},{"1073145":[74,74,74,74,128,17,201,26]},{"1073154":[208,12,175,54,244,126,41,248]},{"1073163":[74,74,74,128]},{"1073168":[34,156,140,160,175,6,80,127,41,255]},{"1073179":[9]},{"1073181":[36,143,148,199,126,175,7,80,127,41,255]},{"1073193":[9]},{"1073195":[36,143,150,199,126,169,48,40,143,152,199,126,173,12,4,201]},{"1073213":[208]},{"1073215":[201,2]},{"1073218":[208,6,169,8]},{"1073223":[130,124]},{"1073226":[201,4]},{"1073229":[208,6,169,6]},{"1073234":[130,113]},{"1073237":[201,6]},{"1073240":[208,6,169,6]},{"1073245":[130,102]},{"1073248":[201,8]},{"1073251":[208,6,169,2]},{"1073256":[130,91]},{"1073259":[201,10]},{"1073262":[208,6,169,10]},{"1073267":[130,80]},{"1073270":[201,12]},{"1073273":[208,5,169,14]},{"1073278":[128,70,201,14]},{"1073283":[208,5,169,8]},{"1073288":[128,60,201,16]},{"1073293":[208,5,169,8]},{"1073298":[128,50,201,18]},{"1073303":[208,5,169,8]},{"1073308":[128,40,201,20]},{"1073313":[208,5,169,6]},{"1073318":[128,30,201,22]},{"1073323":[208,5,169,8]},{"1073328":[128,20,201,24]},{"1073333":[208,5,169,12]},{"1073338":[128,10,201,26]},{"1073343":[208,5,169,27]},{"1073348":[128]},{"1073350":[34,156,140,160,175,6,80,127,41,255]},{"1073361":[9]},{"1073363":[36,143,154,199,126,175,7,80,127,41,255]},{"1073375":[9]},{"1073377":[36,143,156,199,126,250,107]},{"1073385":[128]},{"1073387":[64]},{"1073389":[32]},{"1073391":[16]},{"1073393":[8]},{"1073395":[4]},{"1073397":[2]},{"1073399":[1,128]},{"1073402":[64]},{"1073404":[32]},{"1073406":[16]},{"1073408":[8]},{"1073410":[4]},{"1073412":[224,58]},{"1073415":[144,5,138,233,58,128,2,169]},{"1073424":[143,153,80,127,191,115,187,27,141,14,1,107,175,153,80,127,240,12,58,10,170,191]},{"1073447":[161,48,141,150,6,128,6,189,36,215,141,150,6,156,152,6,169]},{"1073465":[143,153,80,127,107,175,153,80,127,201,8,107,160,88,162,2,165,138,9,64,201,67,240,62,201,69,240,58,201,71,240,54,160,90,165,138,201,64,176,34,162,7,175,197,243,126,201,3,144,2,162,2,165,138,201,24,240,28,162,5,175]},{"1073527":[243,126,41,64,240,2,162,2,165,138,240,12,162,2,175,197,243,126,201,2,176,2,162,3,175,202,243,126,240,30,162,13,165,138,201,64,240,14,201,67,240,10,201,69,240,6,201,71,240,2,162,9,175,87,243,126,208,2,162,4,173,50,1,201,242,208,7,236,48,1,208,2,162,243,92,137,131,2,173,10,4,201,24,208,2,165,27,107,72,218,90,8,226,48,165,27,208,24,160,10,169,11,34,95,246,29,48,14,34,100,174,9,169,36,153,160,13,169,1,153,176,13,40,122,250,104,107,138,69,26,41,15,5,27,208,119,169,11,160,10,34,95,246,29,48,109,218,187,169,30,34,138,187,13,250,169,1,153,176,13,218,34,113,186,13,133,15,41,2,240,36,165,15,101,226,153,16,13,165,227,105]},{"1073709":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1073724":[13,165,233,105]},{"1073729":[153,32,13,128,34,165,15,101,232,153]},{"1073740":[13,165,233,105]},{"1073745":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1073765":[153,48,13,187,169,32,34,24,234,6,250,169,48,34,124,187,13,107,34,58,135,1,194,16,166,160,191,61,228,160,226,16,34,156,135]},{"1073801":[149,226,160,150,226,160,35,227,160,176,227,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1073831":[32,126,232,232,159]},{"1073837":[32,126,232,232,159]},{"1073843":[32,126,232,232,159]},{"1073849":[32,126,232,232,162,220,25,159]},{"1073858":[32,126,232,232,169,202,12,159]},{"1073867":[32,126,232,232,169,203,12,159]},{"1073876":[32,126,232,232,169,208,8,159]},{"1073885":[32,126,232,232,162,92,26,159]},{"1073894":[32,126,232,232,169,218,12,159]},{"1073903":[32,126,232,232,169,219,12,159]},{"1073912":[32,126,232,232,169,208,8,159]},{"1073921":[32,126,232,232,162,220,26,159]},{"1073930":[32,126,232,232,159]},{"1073936":[32,126,232,232,159]},{"1073942":[32,126,232,232,159]},{"1073948":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1073972":[32,126,232,232,159]},{"1073978":[32,126,232,232,159]},{"1073984":[32,126,232,232,159]},{"1073990":[32,126,232,232,162,156,25,159]},{"1073999":[32,126,232,232,169,202,12,159]},{"1074008":[32,126,232,232,169,203,12,159]},{"1074017":[32,126,232,232,169,208,8,159]},{"1074026":[32,126,232,232,162,28,26,159]},{"1074035":[32,126,232,232,169,218,12,159]},{"1074044":[32,126,232,232,169,219,12,159]},{"1074053":[32,126,232,232,169,208,8,159]},{"1074062":[32,126,232,232,162,156,26,159]},{"1074071":[32,126,232,232,159]},{"1074077":[32,126,232,232,159]},{"1074083":[32,126,232,232,159]},{"1074089":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1074113":[32,126,232,232,159]},{"1074119":[32,126,232,232,159]},{"1074125":[32,126,232,232,159]},{"1074131":[32,126,232,232,162,220,9,159]},{"1074140":[32,126,232,232,169,202,12,159]},{"1074149":[32,126,232,232,169,203,12,159]},{"1074158":[32,126,232,232,169,208,8,159]},{"1074167":[32,126,232,232,162,92,10,159]},{"1074176":[32,126,232,232,169,218,12,159]},{"1074185":[32,126,232,232,169,219,12,159]},{"1074194":[32,126,232,232,169,208,8,159]},{"1074203":[32,126,232,232,162,220,10,159]},{"1074212":[32,126,232,232,159]},{"1074218":[32,126,232,232,159]},{"1074224":[32,126,232,232,159]},{"1074230":[32,126,232,232,226,48,107]},{"1074251":[1]},{"1074363":[2]},{"1074459":[3]},{"1074557":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1074574":[134,1,133,2,32,125,229,176,4,92,83,230]},{"1074587":[175,255,255,255,169,160,133,2,194,32,169,47,230,133]},{"1074602":[162,128,167]},{"1074606":[141,24,33,230]},{"1074611":[230]},{"1074613":[167]},{"1074615":[141,24,33,230]},{"1074620":[230]},{"1074622":[167]},{"1074624":[141,24,33,230]},{"1074629":[230]},{"1074631":[167]},{"1074633":[141,24,33,230]},{"1074638":[230]},{"1074640":[167]},{"1074642":[141,24,33,230]},{"1074647":[230]},{"1074649":[167]},{"1074651":[141,24,33,230]},{"1074656":[230]},{"1074658":[167]},{"1074660":[141,24,33,230]},{"1074665":[230]},{"1074667":[167]},{"1074669":[141,24,33,230]},{"1074674":[230]},{"1074676":[202,208,181,226,32,92,81,230]},{"1074685":[226,48,175,248,194,126,168,32,125,229,194,48,176,10,162]},{"1074702":[160,64]},{"1074705":[92,104,223]},{"1074709":[162,47,230,160]},{"1074715":[169]},{"1074717":[8,139,84,127,160,171,162]},{"1074725":[8,169]},{"1074728":[102,133,3,92,110,223]},{"1074735":[19,254,6,253,44,251,24,247,56,231,108,219,198,189,131,126]},{"1074752":[255]},{"1074754":[255]},{"1074756":[255]},{"1074758":[255]},{"1074760":[255]},{"1074762":[255]},{"1074764":[255]},{"1074766":[255,230]},{"1074769":[217]},{"1074771":[157]},{"1074773":[110]},{"1074775":[118]},{"1074777":[185]},{"1074779":[155]},{"1074781":[103]},{"1074783":[230,230,217,217,157,157,110,110,118,118,185,185,155,155,103,103,1,252,35,249,7,243,143,231,23,207,39,159,67,63,129,126,2,255,4,255,8,255,16,255,32,255,64,255,128,255,1,255,253,252,251,249,215,211,119,111,224,216,218,188,237,46,254,125,2,255,4,255,40,255,144,255,39,255,67,255,145,255,2,255,193,124,99,185,55,211,155,103,201,55,196,59,254,1,255]},{"1074879":[2,255,4,255,8,255]},{"1074886":[255]},{"1074888":[255]},{"1074890":[255]},{"1074892":[255]},{"1074894":[255,245,243,203,199,20,12,36,24,90,60,230,103,193,193,3,1,12,255,56,255,243,255,231,255,195,255,153,255,62,255,254,255,129]},{"1074929":[195,129,102,66,60,36,24]},{"1074937":[60,24,102,36,195,66,129,129,195,195,102,102,60,60,24,24,60,60,102,102,195,195]},{"1074991":[239,28,219,54,172,123,114,205,186,229,75,180,235,20,239,16,223,255,183,255,123,255,205,255,229,255,180,255,23,255,219,255,253,10,246,41,223,32,254,1,253,2,247,8,255]},{"1075037":[255]},{"1075039":[255,255,169,255,166,255,159,255,254,255,233,255,243,255,255,255,63,188,124,115,240,239,41,223,89,63,219,191,186,127,188,127,67,252,143,240,31,224,63,192,255,128,127,128,255]},{"1075085":[255]},{"1075087":[220,29,56,203,200,246,247,251,251,253,130,252,97,254,57,254,226,63,244,15,249,7,252,3,254,1,255,1,255]},{"1075117":[255]},{"1075119":[56,185,11,200,100,2,153,167,251,231,223,227,53,75,99,28,70,255,52,255,153,255,64,255]},{"1075144":[255]},{"1075146":[255,128,255,128,255,24,217,176,51,64,134,33,93,153,165,156,160,178,204,233,30,38,255,76,255,57,255,130,255,66,255,67,255,1,255]},{"1075182":[255,56,185,11,200,100,2,153,167,251,231,223,227,53,75,99,28,70,255,52,255,153,255,64,255]},{"1075208":[255]},{"1075210":[255,128,255,128,255,24,217,176,51,64,134,33,93,153,165,156,160,178,204,233,30,38,255,76,255,57,255,130,255,66,255,67,255,1,255]},{"1075246":[255,126,129,195,126,165,126,163,126,137,126,161,126,195,126,126,129]},{"1075264":[255,126,255,126,255,126,255,126,255,126,255,126,255]},{"1075278":[255,1,252,66,249,55,243,111,231,219,195,191,153,125,62,238,111,2,255,4,255,8,255,16,255,36,255,66,255,129,255,16,255,56,186,9,205,131,235,195,243,195,239,146,210,30,159,8,203,69,255,50,255,20,255,12,255,16,255,45,255,96,255,52,255,62,127,159,191,195,211,131,187,1,101,24,218,8,185,72,75,128,255,64,255,44,255,68,255,154,255,37,255,70,255,180,255,56,186,9,205,131,235,195,243,195,239,146,210,30,159,8,203,69,255,50,255,20,255,12,255,16,255,45,255,96,255,52,255,62,127,159,191,195,211,131,187,1,101,24,218,8,185,72,75,128,255,64,255,44,255,68,255,154,255,37,255,70,255,180,255,129,103,65,189,35,91,145,173,232,246,228,235,242,245,249,250,24,255,2,255,132,255,66,255,1,255,16,255,8,255,4,255,241,246,226,237,132,154,137,181,19,107,33,221,88,190,188,127,8,255,16,255,97,255,66,255,132,255,2,255,1,255]},{"1075502":[255,223,60,249,118,253,50,205,50,161,94,167,88,143,112,175,80,189,255,118,255,50,255,50,255,94,255,89,255,115,255,87,255,255]},{"1075537":[189,66,27,228,207,48,231,24,243,12,247,8,255]},{"1075551":[255,255,254,255,253,255,59,255,159,255,207,255,235,255,231,255,156,127,134,127,65,191,95,63,175,159,147,175,12,99,11,200,255]},{"1075585":[255]},{"1075587":[127,128,255,128,127,192,95,224,159,240,55,252,61,254,93,254,218,252,155,253,151,251,9,245,51,195,206,46,255]},{"1075617":[255]},{"1075619":[255,1,254,1,252,3,250,7,252,15,209,63,195,60,74,188,34,92,154,172,146,172,158,160,34,65,29,220]},{"1075648":[255,1,255,129,255,65,255,65,255,65,255,156,255,34,255,37,30,209,206,238,224,233,229,225,233,193,221]},{"1075676":[54,200,43,192,255,32,255,17,255,18,255,22,255,34,255,201,255,20,255,195,60,74,188,34,92,154,172,146,172,158,160,34,65,29,220]},{"1075712":[255,1,255,129,255,65,255,65,255,65,255,156,255,34,255,37,30,209,206,238,224,233,229,225,233,193,221]},{"1075740":[54,200,43,192,255,32,255,17,255,18,255,22,255,34,255,201,255,20,255,127,128,224,96,207,64,155,8,156,8,156,8,156,8,156,8]},{"1075776":[255,31,255,48,255,103,255,103,255,103,255,103,255,103,255,251,38,229]},{"1075795":[253]},{"1075797":[253,60,225]},{"1075801":[129,126,129,126,255]},{"1075807":[88,255,90,255,66,255,66,255,126,255]},{"1075818":[255]},{"1075820":[255]},{"1075822":[255,128,127]},{"1075826":[128,96,128,191,63,191,63,192,127,128,127,255]},{"1075840":[255,127,255,127,255,64,255,64,255]},{"1075850":[255]},{"1075852":[255]},{"1075854":[255,181,66,231,36,165,102,165,102,165,102,165,102,165,102,165,126,24,255,24,255,24,255,24,255,24,255,24,255,24,255]},{"1075886":[255,156,127,128,127,192,63,255,64,179,127,192,63,255]},{"1075901":[127,128]},{"1075904":[255]},{"1075906":[255]},{"1075908":[255]},{"1075910":[255]},{"1075912":[255]},{"1075914":[255]},{"1075916":[255]},{"1075918":[255,1,254,3,252,255]},{"1075925":[159,254,1,254,255]},{"1075931":[255]},{"1075933":[255]},{"1075936":[255]},{"1075938":[255]},{"1075940":[255]},{"1075942":[255]},{"1075944":[255]},{"1075946":[255]},{"1075948":[255]},{"1075950":[255,64,191,160,223,228,12,162,14,178,86,178,86,180,70,176,90]},{"1075968":[255]},{"1075970":[255,19,255,81,255,73,255,73,255,73,255,69,255,255]},{"1075985":[255]},{"1075987":[255,63,240,48,225,33,236,44,228,36,240,48]},{"1076000":[255,127,255,64,255,79,255,94,255,83,255,91,255,79,255,2,6,5,12,7,16,3,36,25,66,60,129,126]},{"1076029":[253]},{"1076031":[253,255,251,255,255,255,255,255,255,255,255,255,255,255,255,255,49,191,35,191,7,191,39,191,63,222,14,255,64,249,61,226,78,255,92,255,120,255,88,255,97,255,113,255,63,255,29,255,249,246,225,222,129,254,9,254,13,254,15,254,64,241,144,111,15,255,63,255,127,255,247,255,243,255,241,255,190,255,144,255,129,103,65,189,35,91,145,173,232,246,228,235,242,245,249,250,24,255,2,255,132,255,66,255,1,255,16,255,8,255,4,255,255,255,191,191,95,127,57,249,224,241,238,255,240,254,253,253]},{"1076160":[255,64,255,128,255,6,255,14,255]},{"1076170":[255,1,255,2,255,224,227,209,223,175,191,71,103,39,127,62,126,190,255,127,255,28,255,32,255,64,255,152,255,128,255,129,255]},{"1076204":[255]},{"1076206":[255,56,185,8,203]},{"1076212":[102,129,189,195,219,193,221,131,179,14,110,70,255,52,255,153,255,66,255,36,255,34,255,76,255,145,255,62,255,31,159,27,219,3,99,129,185,128,188]},{"1076252":[102,8,203]},{"1076256":[255,96,255,36,255,156,255,70,255,67,255,153,255,52,255,155,8,159,15,153,15,143,16,192,64,255,96,191,112,156,108,103,255,96,255,96,255,96,255,63,255,31,255]},{"1076300":[255,3,255,155,8,159,15,153,15,143,16,192,64,255,96,191,127,156,127,103,255,96,255,96,255,96,255,63,255,31,255]},{"1076332":[255]},{"1076334":[255,159,1,1,1,1,1,1,1,51,51,254,255,254,255,206,255,254,255,254,255,254,255,254,255,204,255]},{"1076362":[255]},{"1076364":[255]},{"1076366":[255,177,80,217,56,155,120,147,112,147,112,153,120,158,126,129,120,15,255,7,255,7,255,15,255,15,255,7,255,1,255,7,255,255]},{"1076402":[255,254,255,1,1,1,1,243,1,255,1,255,1]},{"1076416":[255]},{"1076418":[255]},{"1076420":[255,254,255,254,255,254,255,254,255,254,255,240,15,225,30,195,60,135,121,14,243,30,227,63,201,119,156,240,255,224,255,192,255,128,255,1,255,1,255]},{"1076460":[255,8,255,160,87,168,90,165,95,181,111,184,119,191,56,128,31,255]},{"1076479":[72,255,69,255,64,255,96,255,112,255,120,255,127,255]},{"1076494":[255,224,32,230,38,246,54,255]},{"1076503":[191,127,234,85,149,63,224,64,95,255,89,255,73,255,127,255]},{"1076520":[255]},{"1076522":[255,64,255,63,255,227,24,140,115,24,231,40,215,71,187,157,127,126,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,57,198]},{"1076562":[241,62,223,39,190,3,191,35,191,56,183,63,191,57,255,127,255,97,255,89,255,120,255,92,255,79,255,64,255,128,127,1,130,121,254,56,255,24,255,141,254,226,223,248,247,128,255,255,255,135,255,198,255,230,255,115,255,60,255,15,255,241,246,226,237,132,154,137,181,19,107,33,221,88,190,188,127,8,255,16,255,97,255,66,255,132,255,2,255,1,255]},{"1076654":[255,226,227,209,223,175,191,95,127,48,121,49,127,63,255,127,255,28,255,32,255,64,255,128,255,134,255,128,255]},{"1076684":[255]},{"1076686":[255,231,231,139,207,155,223,199,255,252,253,253,255,158,222,204,253,24,255,48,255,32,255]},{"1076710":[255,2,255]},{"1076714":[255,33,255,2,255,28,221,24,219]},{"1076724":[102,131,191,193,221,224,230,248,251,252,253,34,255,36,255,153,255,64,255,34,255,25,255,4,255,2,255,60,189,120,123,240,246,33,237,33,41,193,221]},{"1076764":[54,8,235,66,255,132,255,9,255,18,255,214,255,34,255,201,255,20,255,165,17,201,3,208,5,169,6,133,20,107,165]},{"1076796":[72,165,1,72,165,2,72,165,3,72,165,4,72,165,5,72,165,6,72,165,7,72,34,50,141,160,34,167,238,160,34,51,239,160,104,133,7,104,133,6,104,133,5,104,133,4,104,133,3,104,133,2,104,133,1,104,133]},{"1076854":[107,191,124,238,160,107]},{"1076861":[12,4,12,4]},{"1076866":[12,24,8,8,8,4]},{"1076874":[12,8,24,12,24,4,4,12,20]},{"1076884":[12,4,8,24,4,8,4,8,10,10,10,10,10,10,24,105]},{"1076901":[184,107,72,218,173]},{"1076907":[67,72,173,1,67,72,173,2,67,72,173,3,67,72,173,4,67,72,173,5,67,72,173,6,67,72,169,128,141,21,33,169,1,141]},{"1076942":[67,169,24,141,1,67,169]},{"1076950":[141,22,33,169,125,141,23,33,169,49,141,4,67,173]},{"1076965":[33,72,169,128,141]},{"1076971":[33,162]},{"1076974":[181]},{"1076976":[194,32,41,31]},{"1076981":[34,156,238,160,141,2,67,226,32,169,64,141,5,67,156,6,67,169,1,141,11,66,232,224,5,144,222,104,141]},{"1077011":[33,104,141,6,67,104,141,5,67,104,141,4,67,104,141,3,67,104,141,2,67,104,141,1,67,104,141]},{"1077039":[67,250,104,107,72,218,90,8,226,16,194,32,162]},{"1077053":[191,55,240,160,159]},{"1077059":[201,126,232,232,224,128,144,242,226,32,160]},{"1077071":[162]},{"1077073":[218,187,181]},{"1077077":[250,41,31,218,170,34,119,238,160,250,9,1,159,29,201,126,159,31,201,126,159,93,201,126,159,95,201,126,232,232,232,232,232,232,200,224,25,144,213,32,132,239,40,122,250,104,107,72,218,173]},{"1077128":[67,72,173,1,67,72,173,2,67,72,173,3,67,72,173,4,67,72,173,5,67,72,173,6,67,72,169,1,141]},{"1077158":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1077179":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1077202":[33,72,169,128,141]},{"1077208":[33,169,1,141,11,66,104,141]},{"1077217":[33,169]},{"1077220":[141]},{"1077222":[67,169,34,141,1,67,156,33,33,169]},{"1077233":[141,2,67,169,128,141,3,67,169,51,141,4,67,169,128,141,5,67,156,6,67,173]},{"1077256":[33,72,169,128,141]},{"1077262":[33,169,1,141,11,66,104,141]},{"1077271":[33,104,141,6,67,104,141,5,67,104,141,4,67,104,141,3,67,104,141,2,67,104,141,1,67,104,141]},{"1077299":[67,250,104,96,136,1,136,1,138,29,136,1,97,29,136,1,74,29,136,1,108,29,136,1,97,29,136,1,136,1,136,1,160,5,161,5,136,1,164,5,165,5,136,1,168,5,169,5,136,1,172,5,173,5,136,1,176,5,177,5,136,1,139,29,136,1,136,1,136,1,136,1,154,29,136,1,113,29,136,1,90,29,136,1,124,29,136,1,113,29,136,1,136,1,136,1,162,5,163,5,136,1,166,5,167,5,136,1,170,5,171,5,136,1,174,5,175,5,136,1,178,5,179,5,136,1,155,29,136,1,136,1]},{"1081344":[34,181,128]},{"1081348":[72,8,175,67,244,126,208,51,194,32,175,46,244,126,26,143,46,244,126,208,9,175,48,244,126,26,143,48,244,126,165,16,201,14,1,208,20,175,68,244,126,26,143,68,244,126,208,9,175,70,244,126,26,143,70,244,126,226,32,40,104,107,72,218,90,11,175,67,244,126,41,255]},{"1081421":[208,20,175,62,244,126,26,143,62,244,126,208,9,175,64,244,126,26,143,64,244,126,92,208,128]},{"1113856":[169]},{"1113858":[162]},{"1113860":[159,37,192,126,159]},{"1113866":[80,127,232,224,16,144,243,162,16,159]},{"1113877":[80,127,232,224,255,144,247,162]},{"1113886":[191]},{"1113888":[32,112,223,192,255]},{"1113894":[208,7,232,224,21,144,241,128,32,194,48,169]},{"1113908":[159]},{"1113911":[112,232,224]},{"1113915":[32,144,246,226,48,162]},{"1113922":[191,192,255]},{"1113926":[159]},{"1113928":[32,112,232,224,21,144,243,169,1,141,13,66,169,129,141]},{"1113944":[66,107]},{"1114112":[156,232,28,34,47,241,6,144,15,165,77,201,2,240,9,34,166,234,6,152,73,3,56,107,189,224,13,24,107,34,47,241,6,144,50,34,170,244,7,176,44,165,246,16,40,189,16,15,208,35,165,77,201,2,240,29,156,232,28,34,166,234,6,218,187,191,163,225,5,250,197,47,208,11,90,169,64,157,16,15,104,73,3,56,107,189,224,13,24,107,72,169,173,34,93,246,29,104,218,170,189,100,26,41,3,153,176,14,153,224,13,189]},{"1114225":[26,24,105,2,153]},{"1114231":[13,189,20,26,105]},{"1114237":[153,32,13,189,40,26,24,105,2,153,16,13,189,60,26,105]},{"1114254":[153,48,13,165,238,153,32,15,169,1,153,160,11,153,128,14,169,1,141,228,2,141,123,3,250,169]},{"1114281":[143,204,243,126,100,94,92,182,166,9,141,240,28,140,241,28,34,47,241,6,144,85,34,170,244,7,176,79,165,246,16,75,189,16,15,208,70,165,77,201,2,240,64,34,166,234,6,218,187,191,163,225,5,250,197,47,208,49,90,173,240,28,172,241,28,165,160,201,3,240,10,201,5,240,12,201,28,240,14,128,16,34,101,210,160,128,10,34,141,209,160,128,4,34,205,210,160,169,64,157,16,15,104,73,3,56,107,189,224,13,24,107]},{"1146880":[6,37,40,43,34,32,34,39,26,37,159,32,26,38,30,159,44,45,26,31,31]},{"1146902":[1,159,7,35,60,79,60,58,76,75,64,77,60,159,71,73,70,59,76,58,60,73,8,31,100,101,110,107,111,100,101,159,117,93,105,93,113,95,100,101,8,31,138,139,148,145,149,138,139,159,155,131,143,131,151,133,138,139,12,15,41,43,40,29,46,28,30,43,8,31,111,100,101,99,97,110,113,159,105,101,117,93,105,107,112,107,8,31,149,138,139,137,135,148,151,159,143,139,155,131,143,145,150,145,12,15,3,8,17,4,2,19,14,17,9,27,112,93,103,93,111,100,101,159,112,97,118,113,103,93,9,27,150,131,141,131,149,138,139,159,150,135,156,151,141,131,9,25,74,58,73,64,71,75,159,78,73,64,75,60,73,9,27,103,97,106,111,113,103,97,159,112,93,106,93,94,97,9,27,141,135,144,149,151,141,135,159,150,131,144,131,132,135,6,37,26,44,44,34,44,45,26,39,45,159,29,34,43,30,28,45,40,43,44,7,33,117,93,111,113,100,101,111,93,159,117,93,105,93,105,113,110,93,7,33,155,131,149,151,138,139,149,131,159,155,131,143,131,143,151,148,131,9,25,117,107,101,95,100,101,159,117,93,105,93,96,93,9,25,155,145,139,133,138,139,159,155,131,143,131,134,131,3,49,74,58,73,60,60,69,159,62,73,56,71,63,64,58,74,159,59,60,74,64,62,69,60,73,74,8,31,40,27,35,30,28,45,159,29,30,44,34,32,39,30,43,44,8,29,111,107,101,95,100,101,110,107,159,112,107,105,101,112,93,8,29,149,145,139,133,138,139,148,145,159,150,145,143,139,150,131,9,27,112,93,103,93,117,93,159,101,105,93,105,113,110,93,9,27,150,131,141,131,155,131,159,139,143,131,143,151,148,131,5,41,27,26,28,36,159,32,43,40,46,39,29,159,29,30,44,34,32,39,30,43,44,8,29,105,93,111,93,106,93,107,159,93,110,101,105,107,112,107,8,29,143,131,149,131,144,131,145,159,131,148,139,143,145,150,145,7,33,112,111,113,117,107,111,100,101,159,115,93,112,93,106,93,94,97,7,33,150,149,151,155,145,149,138,139,159,153,131,150,131,144,131,132,135,8,31,15,17,14,6,17]},{"1147398":[12,159,3,8,17,4,2,19,14,17,8,31,112,107,111,100,101,100,101,103,107,159,106,93,103,93,99,107,8,31,150,145,149,138,139,138,139,141,145,159,144,131,141,131,137,145,8,29,68,56,64,69,159,71,73,70,62,73,56,68,68,60,73,8,31,117,93,111,113,106,93,110,101,159,111,107,97,102,101,105,93,8,31,155,131,149,151,144,131,148,139,159,149,145,135,140,139,143,131,7,33,70,57,65,60,58,75,159,71,73,70,62,73,56,68,68,60,73,9,27,103,93,118,113,93,103,101,159,105,107,110,101,112,93,9,27,141,131,156,151,131,141,139,159,143,145,148,139,150,131,10,21,41,43,40,32,43,26,38,38,30,43,44,8,31,112,93,112,111,113,107,159,106,101,111,100,101,117,93,105,93,8,31,150,131,150,149,151,145,159,144,139,149,138,139,155,131,143,131,8,29,117,113,101,95,100,101,159,117,93,105,93,105,107,112,107,8,29,155,151,139,133,138,139,159,155,131,143,131,143,145,150,145,8,31,117,107,111,100,101,100,101,110,107,159,106,107,105,107,112,107,8,31,155,145,149,138,139,138,139,148,145,159,144,145,143,145,150,145,11,17,97,101,102,101,159,106,107,112,107,11,17,135,139,140,139,159,144,145,150,145,8,29,111,93,112,107,110,113,159,112,93,103,93,100,93,112,93,8,29,149,131,150,145,148,151,159,150,131,141,131,138,131,150,131,9,27,112,107,111,100,101,107,159,101,115,93,115,93,103,101,9,27,150,145,149,138,139,145,159,139,153,131,153,131,141,139,6,37,111,100,101,99,97,100,101,110,107,159,103,93,111,93,105,93,112,111,113,6,37,149,138,139,137,135,138,139,148,145,159,141,131,149,131,143,131,150,149,151,8,31,117,93,111,113,106,93,110,101,159,106,101,111,100,101,96,93,8,31,155,131,149,151,144,131,148,139,159,144,139,149,138,139,134,131,9,27,18,14,20,13,3,159,2,14,12,15,14,18,4,17,11,19,103,107,102,101,159,103,107,106,96,107,11,19,141,145,140,139,159,141,145,144,134,145,10,23,58,70,70,73,59,64,69,56,75,70,73,74,11,19,103,97,101,118,107,159,103,93,112,107,11,19,141,135,139,156,145,159,141,131,150,145,9,25,112,93,103,93,107,159,111,100,101,105,101,118,113,9,25,150,131,141,131,145,159,149,138,139,143,139,156,151,8,31,41,43,34,39,45,30,29,159,26,43,45,159,48,40,43,36,9,25,117,107,101,95,100,101,159,103,107,112,93,94,97,9,25,155,145,139,133,138,139,159,141,145,150,131,132,135,10,23,100,101,96,97,103,101,159,98,113,102,101,101,10,23,138,139,134,135,141,139,159,136,151,140,139,139,8,31,117,107,111,100,101,93,103,101,159,103,107,101,118,113,105,101,8,31,155,145,149,138,139,131,141,139,159,141,145,139,156,151,143,139,9,27,117,93,111,113,100,101,110,107,159,111,93,103,93,101,9,27,155,131,149,151,138,139,148,145,159,149,131,141,131,139,8,29,112,107,105,107,93,103,101,159,103,113,110,107,113,105,97,8,29,150,145,143,145,131,141,139,159,141,151,148,145,151,143,135,7,33,18,15,4,2,8]},{"1148127":[11,159,19,7]},{"1148132":[13,10,18,159,19,14,9,25,106,107,94,113,107,159,107,103,93,102,101,105,93,9,25,144,145,132,151,145,159,145,141,131,140,139,143,131,7,33,117,93,111,113,106,107,110,101,159,112,93,103,97,112,93,106,101,7,33,155,131,149,151,144,145,148,139,159,150,131,141,135,150,131,144,139,10,23,103,101,117,107,111,100,101,159,103,107,96,93,10,23,141,139,155,145,149,138,139,159,141,145,134,131,7,35,112,93,103,93,105,101,112,111,113,159,103,113,118,113,100,93,110,93,7,35,150,131,141,131,143,139,150,149,151,159,141,151,156,151,138,131,148,131,9,27,100,101,110,107,106,107,94,113,159,103,93,103,113,101,9,27,138,139,148,145,144,145,132,151,159,141,131,141,151,139,7,33,111,100,101,99,97,103,101,159,117,93,105,93,111,100,101,110,107,7,33,149,138,139,137,135,141,139,159,155,131,143,131,149,138,139,148,145,4,45,17]},{"1148348":[13,3,14,12,8,25,4,17,159,2,14,13,19,17,8,1,20,19,14,17,18,8,29,34,45,30,38,159,43,26,39,29,40,38,34,51,30,43,2,55,103,93,110,103,93,112,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,114,97,97,112,107,110,108,2,55,141,131,148,141,131,150,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,152,135,135,150,145,148,146,2,55,95,100,110,101,111,112,107,111,107,115,97,106,159,159,159,159,159,159,159,96,97,111,111,117,110,97,109,112,2,55,133,138,148,139,149,150,145,149,145,153,135,144,159,159,159,159,159,159,159,134,135,149,149,155,148,135,147,150,10,21,111,105,93,104,104,100,93,95,103,97,110,10,21,149,143,131,142,142,138,131,133,141,135,148,6,37,60,69,75,73,56,69,58,60,159,73,56,69,59,70,68,64,81,60,73,2,55,93,105,93,118,101,106,99,93,105,108,100,93,110,107,111,159,159,159,104,104,95,107,107,104,96,93,114,97,2,55,131,143,131,156,139,144,137,131,143,146,138,131,148,145,149,159,159,159,142,142,133,145,145,142,134,131,152,135,9,25,103,97,114,101,106,95,93,112,100,95,93,110,112,9,25,141,135,152,139,144,133,131,150,138,133,131,148,150,8,31,30,39,30,38,50,159,43,26,39,29,40,38,34,51,30,43,2,55,118,93,110,94,117,91,92,159,159,159,159,159,159,159,159,159,159,159,159,159,159,111,107,111,113,103,97,86,2,55,156,131,148,132,155,129,130,159,159,159,159,159,159,159,159,159,159,159,159,159,159,149,145,149,151,141,135,124,10,23,97,106,96,97,110,107,98,99,93,105,97,111,10,23,135,144,134,135,148,145,136,137,131,143,135,149,7,35,74,71,73,64,75,60,159,59,60,77,60,67,70,71,68,60,69,75,2,55,105,101,103,97,112,110,97,112,100,97,115,97,117,159,159,159,159,159,159,159,159,159,101,94,93,118,104,117,2,55,143,139,141,135,150,148,135,150,138,135,153,135,155,159,159,159,159,159,159,159,159,159,139,132,131,156,142,155,2,55,98,101,111,100,166,115,93,98,98,104,97,89,87,159,159,159,98,93,112,105,93,106,111,108,93,106,96,93,2,55,136,139,149,138,198,153,131,136,136,142,135,127,125,159,159,159,136,131,150,143,131,144,149,146,131,144,134,131,2,55,103,110,97,104,94,97,104,159,159,159,159,159,159,159,159,159,159,159,159,159,159,112,115,110,107,116,93,111,2,55,141,148,135,142,132,135,142,159,159,159,159,159,159,159,159,159,159,159,159,159,159,150,153,148,145,154,131,149,14,7,99,104,93,106,14,7,137,142,131,144,9,27,18,15,4,2,8]},{"1148969":[11,159,19,7]},{"1148974":[13,10,18,2,55,111,113,108,97,110,111,103,113,102,159,159,159,159,159,159,159,159,159,159,97,114,101,104,93,111,100,85,88,2,55,149,151,146,135,148,149,141,151,140,159,159,159,159,159,159,159,159,159,159,135,152,139,142,131,149,138,123,126,2,55,105,117,110,93,105,107,106,99,159,159,159,159,159,159,159,159,159,159,159,159,159,102,107,111,100,110,112,93,2,55,143,155,148,131,143,145,144,137,159,159,159,159,159,159,159,159,159,159,159,159,159,140,145,149,138,148,150,131,2,55,115,93,104,103,101,106,99,97,117,97,159,159,159,159,159,105,93,112,100,107,106,106,93,108,103,101,106,111,2,55,153,131,142,141,139,144,137,135,155,135,159,159,159,159,159,143,131,150,138,145,144,144,131,146,141,139,144,149,9,25,111,93,103,113,110,93,112,111,113,94,93,111,93,9,25,149,131,141,151,148,131,150,149,151,132,131,149,131,13,11,93,106,96,160,160,160,13,11,131,144,134,192,192,192,1,59,112,100,97,159,93,104,112,112,108,159,110,93,106,96,107,105,101,118,97,110,159,95,107,105,105,113,106,101,112,117,1,59,150,138,135,159,131,142,150,150,146,159,148,131,144,134,145,143,139,156,135,148,159,133,145,143,143,151,144,139,150,155,7,33,58,70,68,68,76,69,64,75,80,159,59,64,74,58,70,73,59,3,51,100,112,112,108,111,163,162,162,96,101,111,95,107,110,96,160,99,99,162,112,95,95,89,117,87,85,3,51,138,150,150,146,149,195,194,194,134,139,149,133,145,148,134,192,137,137,194,150,133,133,127,155,125,123,6,37,45,33,30,159,34,38,41,40,43,45,26,39,45,159,44,45,46,31,31,11,19,75,64,68,60,159,61,70,76,69,59,2,21,98,101,110,111,112,159,111,115,107,110,96,2,21,136,139,148,149,150,159,149,153,145,148,134,2,25,108,97,99,93,111,113,111,159,94,107,107,112,111,2,25,146,135,137,131,149,151,149,159,132,145,145,150,149,2,9,98,104,113,112,97,2,9,136,142,151,150,135,2,11,105,101,110,110,107,110,2,11,143,139,148,148,145,148,11,19,27,40,44,44,159,36,34,37,37,44,2,55,111,115,107,110,96,104,97,111,111,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,162,84,86,2,55,149,153,145,148,134,142,135,149,149,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,194,122,124,2,55,98,101,99,100,112,97,110,119,111,159,111,115,107,110,96,159,159,159,159,159,159,159,159,159,159,162,84,86,2,55,136,139,137,138,150,135,148,157,149,159,149,153,145,148,134,159,159,159,159,159,159,159,159,159,159,194,122,124,2,55,105,93,111,112,97,110,159,111,115,107,110,96,159,159,159,159,159,159,159,159,159,159,159,159,159,162,84,86,2,55,143,131,149,150,135,148,159,149,153,145,148,134,159,159,159,159,159,159,159,159,159,159,159,159,159,194,122,124,2,55,112,97,105,108,97,110,97,96,159,111,115,107,110,96,159,159,159,159,159,159,159,159,159,159,159,162,84,86,2,55,150,135,143,146,135,148,135,134,159,149,153,145,148,134,159,159,159,159,159,159,159,159,159,159,159,194,122,124,2,55,99,107,104,96,159,111,115,107,110,96,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,162,84,86,2,55,137,145,142,134,159,149,153,145,148,134,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,194,122,124,11,19,6]},{"1149777":[12,4,159,18,19]},{"1149783":[19,18,2,55,99,112,159,94,101,99,159,103,97,117,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,162,85,85,2,55,137,150,159,132,139,137,159,141,135,155,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,194,123,123,2,9,94,107,106,103,111,2,9,132,145,144,141,149,2,27,111,93,114,97,159,93,106,96,159,109,113,101,112,111,2,27,149,131,152,135,159,131,144,134,159,147,151,139,150,149,2,11,96,97,93,112,100,111,2,11,134,135,131,150,138,149,2,29,98,93,97,110,101,97,159,110,97,114,101,114,93,104,111,2,29,136,131,135,148,139,135,159,148,135,152,139,152,131,142,149,2,29,112,107,112,93,104,159,105,97,106,113,159,112,101,105,97,2,29,150,145,150,131,142,159,143,135,144,151,159,150,139,143,135,2,27,112,107,112,93,104,159,104,93,99,159,112,101,105,97,2,27,150,145,150,131,142,159,142,131,137,159,150,139,143,135,2,55,95,107,104,104,97,95,112,101,107,106,159,110,93,112,97,159,159,159,159,159,159,159,159,159,162,85,84,89,2,55,133,145,142,142,135,133,150,139,145,144,159,148,131,150,135,159,159,159,159,159,159,159,159,159,194,123,122,127,2,19,112,107,112,93,104,159,112,101,105,97,2,19,150,145,150,131,142,159,150,139,143,135,255]},{"1150093":[128,139,140,139,140,21,128,24,128,139,140,139,140,44,128,62,128,139,140,139,140,139,140,80,128,139,140,139,140,90,128,108,128,139,140,139,140,139,140,126,128,139,140,139,140,136,128,152,128,139,140,139,140,139,140,168,128,139,140,139,140,183,128,199,128,139,140,139,140,139,140,215,128,139,140,139,140,236,128,255,128,139,140,18,129,33,129,139,140,139,140,139,140,48,129,139,140,139,140,21,128,75,129,139,140,139,140,93,129,110,129,139,140,127,129,143,129,139,140,139,140,139,140,159,129,139,140,139,140,182,129,199,129,139,140,216,129,235,129,139,140,139,140,139,140,254,129,139,140,139,140,16,130,34,130,139,140,139,140,139,140,52,130,139,140,139,140,69,130,87,130,139,140,139,140,139,140,105,130,139,140,139,140,124,130,140,130,139,140,139,140,139,140,156,130,139,140,139,140,169,130,187,130,139,140,205,130,222,130,139,140,239,130,1,131,139,140,19,131,30,131,139,140,41,131,58,131,139,140,75,131,91,131,139,140,107,131,128,131,139,140,149,131,167,131,139,140,139,140,139,140,185,131,139,140,139,140,201,131,213,131,139,140,139,140,139,140,225,131,139,140,139,140,239,131,251,131,139,140,7,132,22,132,139,140,139,140,139,140,37,132,139,140,139,140,55,132,70,132,139,140,85,132,99,132,139,140,113,132,131,132,139,140,149,132,165,132,139,140,181,132,198,132,139,140,139,140,139,140,215,132,139,140,139,140,234,132,249,132,139,140,8,133,27,133,139,140,46,133,60,133,139,140,74,133,94,133,139,140,114,133,130,133,139,140,146,133,165,133,139,140,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,184,133,139,140,139,140,21,128,209,133,139,140,139,140,226,133]},{"1150521":[134,139,140,30,134,60,134,139,140,90,134,103,134,139,140,139,140,139,140,116,134,139,140,139,140,137,134,167,134,139,140,197,134,212,134,139,140,139,140,139,140,227,134,139,140,139,140,245,134,19,135,139,140,49,135,63,135,139,140,139,140,139,140,77,135,139,140,139,140,97,135,127,135,139,140,157,135,187,135,139,140,217,135,247,135,139,140,21,136,27,136,139,140,139,140,139,140,33,136,139,140,139,140,49,136,79,136,139,140,109,136,139,136,139,140,169,136,199,136,139,140,229,136,244,136,139,140,3,137,11,137,139,140,19,137,51,137,139,140,139,140,139,140,83,137,139,140,139,140,102,137,130,137,139,140,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,158,137,139,140,139,140,21,128,179,137,139,140,139,140,191,137,204,137,139,140,217,137,232,137,139,140,247,137,254,137,139,140,5,138,13,138,139,140,139,140,139,140,21,138,139,140,139,140,33,138,63,138,139,140,93,138,123,138,139,140,153,138,183,138,139,140,213,138,243,138,139,140,17,139,47,139,139,140,139,140,139,140,77,139,139,140,139,140,89,139,119,139,139,140,149,139,156,139,139,140,163,139,179,139,139,140,195,139,203,139,139,140,211,139,228,139,139,140,245,139,6,140,139,140,23,140,39,140,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,55,140,85,140,139,140,115,140,127,140]},{"1150884":[56]},{"1150886":[239,16,129,126,239,16]},{"1150902":[192]},{"1150904":[71,128,69,130]},{"1150916":[120]},{"1150918":[76,48,118,8,126]},{"1150932":[120]},{"1150934":[78,48,114,12,255]},{"1150948":[127]},{"1150950":[89,38,222,33,3,252]},{"1150964":[248]},{"1150966":[108,144,119,136,185,70]},{"1150980":[14]},{"1150982":[202,4,123,132,97,158]},{"1150996":[28]},{"1150998":[20,8,23,8,16,15]},{"1151012":[56]},{"1151014":[111,16,109,18,238,17]},{"1151028":[56]},{"1151030":[239,16,128,127,247,8]},{"1151044":[14]},{"1151046":[26,4,54,8,108,16]},{"1151058":[7]},{"1151060":[197,2,69,130,125,130,96,159]},{"1151078":[126]},{"1151080":[67,60,125,2]},{"1151092":[224]},{"1151094":[160,64,191,64,17,238]},{"1151106":[56]},{"1151108":[40,16,239,16,1,254,223,32]},{"1151124":[56]},{"1151126":[40,16,40,16,104,16,109,18,193,62,172,83,106,149,102,153,110,145,157,98,247]},{"1151148":[70,129,66,129,66,129,66,129,123,128,104,144,152,96,240]},{"1151164":[195,60,61,194,253,2,13,2,27,4,118,8,76,48,120]},{"1151180":[1,254,251,4,54,8,100,24,214,40,187,68,104,135,207]},{"1151196":[223,32,193,62,158,97,94,161,94,161,94,161,153,102,255]},{"1151212":[166,89,30,225,222,33,217,38,95,32,110,16,40,16,56]},{"1151228":[90,165,58,197,58,197,106,149,241,14,59,4,38,24,60]},{"1151244":[23,8,22,8,246,8,131,124,116,139,119,136,140,112,248]},{"1151260":[6,249,218,37,219,36,219,36,186,68,186,68,102,152,252]},{"1151276":[128,127,251,4,195,60,189,66,191,64,190,64,194,60,126]},{"1151292":[216,32,176,64,176,64,216,32,108,16,54,8,26,4,14]},{"1151308":[125,130,69,130,69,130,69,130,69,130,125,130,179,76,254]},{"1151324":[11,4,14]},{"1151332":[227]},{"1151334":[190,65,193,62,127]},{"1151340":[174,81,154,97,178,65,34,193,166,65,189,66,179,76,254]},{"1151356":[191,64,140,115,99,156,215,40,183,72,191,64,192,63,127]},{"1151372":[88,32,216,32,175,80,150,105,182,73,118,137,89,134,207]},{"1151396":[112]},{"1151398":[88,32,239,16]},{"1151403":[255]},{"1151412":[224]},{"1151414":[160,64,160,64,160,64]},{"1151426":[14]},{"1151428":[10,4,10,4,251,4]},{"1151435":[255]},{"1151444":[14]},{"1151446":[234,4,187,68,187,68]},{"1151460":[255]},{"1151462":[129,126,251,4,246,8]},{"1151472":[15]},{"1151474":[26,5,58,5,47,16,45,18,238,17]},{"1151488":[15]},{"1151490":[10,5,58,5,239,16,128,127,247,8]},{"1151504":[15]},{"1151506":[10,5,10,5,31]},{"1151512":[54,8,108,16]},{"1151524":[248]},{"1151526":[216,32,223,32,1,254]},{"1151540":[56]},{"1151542":[40,16,239,16]},{"1151547":[255]},{"1151560":[254]},{"1151562":[3,252]},{"1151574":[31]},{"1151576":[240,15,13,242]},{"1151588":[112]},{"1151590":[80,32,80,32,95,32]},{"1151600":[15]},{"1151602":[10,5,202,5,77,130,125,130,96,159]},{"1151616":[15]},{"1151618":[10,5,10,5,127]},{"1151624":[67,60,125,2]},{"1151632":[15]},{"1151634":[10,5,122,5,95,32,239,16]},{"1151643":[255,247,8,250,4,131,124,125,130,127,128,126,128,130,124,254]},{"1151660":[160,64,160,64,163,64,162,65,166,65,189,66,195,60,126]},{"1151676":[251,4,98,28,90,36,90,36,98,28,122,4,70,56,124]},{"1151692":[176,79,11,244,186,68,178,76,190,64,191,64,193,62,127]},{"1151708":[207,48]},{"1151711":[255,247,8,108,16,108,16,111,16,49,14,31]},{"1151724":[6,249,218,37,219,36,219,36,186,68,186,68,102,152,252]},{"1151740":[128,127,251,4,195,60,189,66,191,64,191,64,194,60,126]},{"1151756":[216,32,176,64,176,64,216,32,108,16,54,8,26,4,14]},{"1151772":[223,32,223,32,176,79,191,64,183,72,111,144,112,143,223]},{"1151788":[239,16,223,32,193,62,190,65,254,1,125,2,67,60,126]},{"1151804":[253,2,62,1,30,1,30,1,62,1,125,2,67,60,126]},{"1151820":[251,4,118,8,108,16,108,16,108,16,55,8,25,6,15]},{"1151836":[89,38,71,56,220,32,176,64,96,128,127,128,129,126,255]},{"1151852":[125,130,69,130,69,130,69,130,69,130,125,130,179,76,254]},{"1151868":[59,4,14]},{"1151876":[227]},{"1151878":[190,65,193,62,127]},{"1151884":[247,8,250,4,131,124,125,130,127,128,126,128,130,124,254]},{"1151908":[119]},{"1151910":[93,34,222,33,7,248]},{"1151924":[192]},{"1151926":[95,128,112,143,111,144]},{"1151940":[238]},{"1151942":[186,68,186,68,163,92]},{"1151956":[224]},{"1151958":[160,64,176,64,31,224]},{"1151974":[126]},{"1151976":[195,60,173,82]},{"1151984":[15]},{"1151986":[10,5,234,5,175,64,160,64,160,64]},{"1152000":[15]},{"1152002":[10,5,10,5,15]},{"1152008":[251,4]},{"1152011":[255]},{"1152016":[15]},{"1152018":[10,5,10,5,239]},{"1152024":[187,68,187,68]},{"1152036":[206]},{"1152038":[74,132,123,132,64,191]},{"1152052":[248]},{"1152054":[14,240,218,36,187,68]},{"1152068":[120]},{"1152070":[78,48,114,12,118,8]},{"1152086":[24]},{"1152088":[44,16,68,56]},{"1152100":[255]},{"1152102":[64,191,123,132,123,132]},{"1152112":[15]},{"1152114":[10,5,250,5,129,126,251,4,247,8]},{"1152128":[15]},{"1152130":[10,5,122,5,95,32,223,32,1,254]},{"1152144":[15]},{"1152146":[26,5,58,5,47,16,239,16]},{"1152155":[255,223,32,187,68,187,68,97,158,218,37,91,36,102,24,60]},{"1152172":[120,128,96,128,96,128,120,128,111,144,112,143,223]},{"1152188":[153,102,186,69,86,169,86,169,104,151,102,153,153,102,255]},{"1152204":[177,78,174,81,158,97,190,65,50,205,173,82,178,77,255]},{"1152220":[174,81,110,145,110,145,110,145,94,161,189,66,242,12,28]},{"1152236":[160,64,160,64,163,64,162,65,166,65,189,66,195,60,126]},{"1152252":[251,4,98,28,90,36,90,36,98,28,122,4,70,56,124]},{"1152268":[176,79,11,244,186,68,178,76,190,64,191,64,193,62,127]},{"1152284":[123,132,122,132,122,132,99,156,89,166,90,165,167,88,252]},{"1152300":[185,70,122,133,123,132,122,132,122,132,182,72,204,48,120]},{"1152316":[239,16,181,74,182,73,186,69,122,133,90,165,231,24,60]},{"1152332":[214,40,186,68,59,196,109,130,197,2,6,1,2,1,3]},{"1152348":[64,191,123,132,123,132,99,156,89,166,90,165,167,88,255]},{"1152364":[207,48]},{"1152367":[255,247,8,111,16,110,16,111,16,49,14,31]},{"1152380":[223,32,223,32,176,79,191,64,183,72,111,144,112,143,223]},{"1152396":[239,16,223,32,193,62,190,65,254,1,125,2,67,60,126]},{"1152420":[28]},{"1152422":[20,8,247,8,1,254]},{"1152436":[254]},{"1152438":[134,120,246,8,55,8]},{"1152452":[112]},{"1152454":[223,32,221,34,6,249]},{"1152468":[238]},{"1152470":[186,68,186,68,163,92]},{"1152484":[56]},{"1152486":[44,16,238,16,2,252]},{"1152496":[15]},{"1152498":[10,5,10,5,15]},{"1152504":[255]},{"1152506":[3,252]},{"1152512":[15]},{"1152514":[10,5,10,5,31]},{"1152520":[240,15,13,242]},{"1152528":[15]},{"1152530":[10,5,122,5,95,32,94,32,95,32]},{"1152548":[56]},{"1152550":[46,16,242,12,190,64]},{"1152564":[206]},{"1152566":[122,132,122,132,122,132]},{"1152580":[255]},{"1152582":[129,126,251,4,54,8]},{"1152596":[224]},{"1152598":[160,64,191,64,25,230]},{"1152612":[255]},{"1152614":[129,126,251,4,118,8]},{"1152624":[15]},{"1152626":[10,5,234,5,127,128,123,132,64,191]},{"1152640":[15]},{"1152642":[10,5,250,5,15,240,219,36,187,68]},{"1152656":[15]},{"1152658":[122,5,122,5,79,48,115,12,119,8,247,8,129,126,247,8,134,120,115,140,117,138,143,112,254]},{"1152684":[53,10,237,18,133,122,105,150,108,147,93,162,187,68,238]},{"1152700":[222,33,159,96,95,160,95,160,30,225,222,33,97,30,63]},{"1152716":[153,102,186,69,90,165,86,169,102,153,110,145,157,98,255]},{"1152732":[238,16,238,16,3,252,222,33,222,33,222,33,97,30,63]},{"1152748":[253,2,6,1,6,1,6,1,6,1,125,2,67,60,126]},{"1152764":[251,4,54,8,44,16,44,16,44,16,55,8,25,6,15]},{"1152780":[89,38,71,56,220,32,176,64,112,128,127,128,129,126,255]},{"1152796":[191,64,177,78,174,81,158,97,190,65,253,2,67,60,126]},{"1152812":[122,132,58,196,122,132,250,4,118,8,118,8,76,48,120]},{"1152828":[110,16,195,60,189,66,254,1,206,49,181,74,195,60,126]},{"1152844":[181,74,173,82,157,98,189,66,61,194,188,67,189,66,231]},{"1152860":[110,16,195,60,189,66,230,1,6,1,61,2,35,28,62]},{"1152876":[123,132,123,132,123,132,99,156,89,166,90,165,167,88,252]},{"1152892":[185,70,122,133,123,132,123,132,123,132,182,72,204,48,120]},{"1152908":[239,16,181,74,182,73,186,69,122,133,90,165,231,24,60]},{"1152928":[15]},{"1152930":[10,5,10,5,63]},{"1152936":[108,16,68,56]},{"1152944":[15]},{"1152946":[10,5,250,5,64,191,123,132,123,132]},{"1152960":[15]},{"1152962":[8,7,202,5,124,131,123,132,64,191]},{"1152976":[15]},{"1152978":[8,7,250,5,12,243,219,36,187,68]},{"1152992":[15]},{"1152994":[8,7,122,5,76,51,115,12,55,8]},{"1153008":[15]},{"1153010":[8,7,10,5,60,3,111,16,70,56]},{"1153024":[15]},{"1153026":[8,7,250,5,64,191,123,132,123,132]},{"1153048":[252]},{"1153050":[182,72]},{"1153064":[28]},{"1153066":[246,8]},{"1153080":[28]},{"1153082":[23,8]},{"1153098":[126]},{"1153112":[112]},{"1153114":[220,32]},{"1153130":[220]},{"1153144":[240]},{"1153146":[152,96]},{"1153158":[112]},{"1153160":[92,32,100,24]},{"1153176":[124]},{"1153178":[214,40,214,40,186,68,59,196,109,130,197,2,2,1,2,1,3]},{"1153196":[64,191,123,132,123,132,99,156,89,166,90,165,167,88,255]},{"1153212":[123,132,123,132,123,132,99,156,89,166,90,165,167,88,255]},{"1153228":[185,70,122,133,123,132,123,132,123,132,182,72,204,48,120]},{"1153244":[239,16,181,74,182,73,186,69,122,133,90,165,231,24,60]},{"1153260":[214,40,186,68,59,196,125,130,205,2,6,1,2,1,3]},{"1153276":[64,191,123,132,123,132,99,156,89,166,90,165,167,88,255]},{"1153292":[163,92,21,234,189,66,218,36,94,32,104,16,56]},{"1153308":[99,156,85,170,53,202,101,154,243,12,46,16,56]},{"1153324":[17,14,247,8,135,120,115,140,117,138,143,112,248]},{"1153340":[195,60,61,194,253,2,29,2,59,4,38,24,60]},{"1153356":[132,120,220,32,134,120,90,164,82,172,106,148,150,104,252]},{"1153372":[118,136,122,132,122,132,122,132,126,128,188,64,200,48,120]},{"1153388":[236,16,198,56,58,196,250,4,250,4,230,24,156,96,112]},{"1153404":[254]},{"1153406":[98,156,154,100,246,8,238,16,215,40,57,198,239]},{"1153420":[10,244,222,32,195,60,157,98,93,162,93,162,147,108,254]},{"1153444":[255]},{"1153447":[255,254,1,62,1]},{"1153458":[3]},{"1153460":[6,1,13,2,27,4,118,8]},{"1153474":[28]},{"1153476":[20,8,247,8]},{"1153481":[255,126,129]},{"1153492":[255]},{"1153494":[1,254,239,16,40,16]},{"1153506":[14]},{"1153508":[10,4,10,4,251,4]},{"1153515":[255]},{"1153522":[56]},{"1153524":[40,16,40,16,239,16]},{"1153531":[255]},{"1153542":[254]},{"1153544":[130,124,250,4]},{"1153558":[255]},{"1153561":[255,254,1]},{"1153570":[28]},{"1153572":[20,8,20,8,247,8]},{"1153579":[255]},{"1153586":[56]},{"1153588":[40,16,40,16,239,16,1,254]},{"1153602":[56]},{"1153604":[40,16,111,16,64,63,222,33]},{"1153618":[224]},{"1153620":[160,64,191,64,128,127,187,68]},{"1153638":[255]},{"1153641":[255,254,1]},{"1153652":[255]},{"1153655":[255,126,129,66,129]},{"1153668":[255]},{"1153671":[255,254,1,2,1]},{"1153684":[224]},{"1153686":[48,192,208,32,115]},{"1153692":[45,18,43,20,46,16,108,16,88,32,208,32,176,64,224]},{"1153708":[202,52,58,196,234,4,10,4,10,4,10,4,10,4,14]},{"1153724":[126,129,70,129,198,1,5,2,13,2,59,4,38,24,60]},{"1153740":[40,16,40,16,40,16,40,16,40,16,239,16,1,254,255]},{"1153756":[251,4,18,12,50,12,42,20,218,36,58,196,234,4,14]},{"1153772":[238,17,45,18,43,20,46,16,40,16,40,16,40,16,56]},{"1153788":[26,4,26,4,26,4,26,4,26,4,251,4]},{"1153801":[255,255]},{"1153804":[6,1,254,1,128,127,254,1,6,1,254,1]},{"1153817":[255,255]},{"1153820":[238,17,110,17,110,17,94,33,222,33,189,66,105,134,207]},{"1153836":[239,16,239,16]},{"1153841":[255,247,8,20,8,20,8,20,8,28]},{"1153852":[190,65,102,129,197,2,13,2,59,4,230,24,156,96,120]},{"1153868":[122,132,74,132,202,4,26,4,22,8,116,8,76,48,120]},{"1153884":[2,1,2,1,2,1,2,1,2,1,254,1]},{"1153897":[255,255]},{"1153900":[66,129,194,1,6,1,5,2,13,2,59,4,38,24,60]},{"1153916":[254,1,128,127,126,1,5,2,13,2,123,4,70,56,124]},{"1153932":[2,1,2,1,6,1,13,2,25,6,243,12,14,240,248]},{"1153954":[119]},{"1153956":[93,34,93,34,221,34]},{"1153963":[255]},{"1153972":[224]},{"1153974":[48,192,208,32,243]},{"1153988":[255]},{"1153990":[1,254,253,2,13,2]},{"1154004":[112]},{"1154006":[80,32,80,32,223,32]},{"1154022":[195]},{"1154024":[98,129,162,65]},{"1154032":[15]},{"1154034":[10,5,26,5,23,8,247,8]},{"1154043":[255]},{"1154048":[15]},{"1154050":[58,5,42,21,47,16,239,16,1,254]},{"1154064":[15]},{"1154066":[58,5,42,21,111,16,64,63,222,33]},{"1154082":[56]},{"1154084":[40,16,111,16,64,63,222,33]},{"1154100":[15]},{"1154102":[249,6,135,120,247,8]},{"1154116":[251]},{"1154118":[110,145,110,145,182,73]},{"1154132":[255]},{"1154134":[129,126,255]},{"1154138":[255]},{"1154146":[56]},{"1154148":[40,16,40,16,40,16,40,16]},{"1154160":[15]},{"1154162":[234,5,186,69,191,64,128,127,187,68]},{"1154176":[15]},{"1154178":[10,5,10,5,255]},{"1154185":[255,254,1]},{"1154192":[15]},{"1154194":[122,5,90,37,93,34,221,34]},{"1154203":[255,221,34,93,34,93,34,125,2,61,2,59,4,38,24,60]},{"1154220":[54,193,214,33,253,2,29,2,251,4,230,24,28,224,248]},{"1154236":[11,4,26,4,22,8,51,12,109,18,222,33,50,193,227]},{"1154253":[255,222,33,93,34,91,36,95,32,95,32,96,31,63]},{"1154268":[178,65,214,33,117,2,13,2,59,4,230,24,156,96,240]},{"1154284":[238,17,110,17,110,17,94,33,222,33,189,66,121,134,207]},{"1154300":[239,16,239,16]},{"1154305":[255,247,8,54,8,54,8,54,8,28]},{"1154316":[190,65,102,129,197,2,13,2,59,4,230,24,156,96,240]},{"1154332":[190,65,102,153,249,6,13,2,59,4,230,24,156,96,248]},{"1154348":[247,8]},{"1154351":[255,247,8,54,8,54,8,236,16,152,96,240]},{"1154364":[182,73,126,1,5,2,13,2,27,4,118,8,76,48,120]},{"1154381":[255,247,8,54,8,52,8,44,16,104,16,88,32,112]},{"1154396":[46,16,35,28,44,19,47,16,40,16,40,16,40,16,56]},{"1154412":[122,132,74,132,202,4,26,4,22,8,116,8,76,48,120]},{"1154428":[2,1,2,1,2,1,2,1,2,1,254,1]},{"1154441":[255,255]},{"1154444":[221,34,93,34,93,34,125,2,13,2,59,4,38,24,60]},{"1154466":[28]},{"1154468":[20,8,20,8,247,8]},{"1154475":[255]},{"1154484":[255]},{"1154486":[129,126,255]},{"1154500":[255]},{"1154503":[255,254,1,126,1]},{"1154514":[28]},{"1154516":[20,8,247,8]},{"1154521":[255,254,1]},{"1154532":[7]},{"1154534":[5,2,5,2,5,2]},{"1154544":[15]},{"1154546":[10,5,234,5,63,192,208,32,243]},{"1154560":[15]},{"1154562":[10,5,250,5,1,254,253,2,29,2]},{"1154576":[15]},{"1154578":[10,5,122,5,95,32,95,32,223,32]},{"1154596":[126]},{"1154598":[90,36,91,36,93,34]},{"1154612":[192]},{"1154614":[67,128,78,129,121,134]},{"1154628":[255]},{"1154631":[255,254,1,2,1]},{"1154646":[56]},{"1154648":[108,16,68,56]},{"1154658":[28]},{"1154660":[20,8,247,8]},{"1154665":[255,247,8]},{"1154672":[15]},{"1154674":[10,5,10,5,207]},{"1154680":[102,129,166,65]},{"1154688":[15]},{"1154690":[58,5,42,21,111,16,64,63,222,33]},{"1154704":[15]},{"1154706":[10,5,10,5,251,4,134,120,246,8,247,8,54,8,54,8,54,8,108,16,236,16,152,96,240]},{"1154740":[255]},{"1154743":[255,255]},{"1154748":[126,1,77,50,117,10,123,4,245,10,206,49,63,192,240]},{"1154764":[61,2,59,4,243,12,197,58,54,201,247,8,20,8,28]},{"1154780":[5,2,13,2,11,4,26,4,54,8,236,16,152,96,240]},{"1154796":[50,193,214,33,53,2,13,2,59,4,230,24,28,224,248]},{"1154812":[27,4,27,4,55,8,51,12,109,18,222,33,50,193,227]},{"1154829":[255,222,33,221,34,219,36,223,32,223,32,96,31,63]},{"1154844":[213,34,181,66,165,66,166,65,162,65,98,129,66,129,195]},{"1154860":[103,152,28,224,112,128,64,128,64,128,127,128,128,127,255]},{"1154876":[2,1,6,1,5,2,13,2,59,4,230,24,156,96,240]},{"1154892":[214,40,186,68,43,196,109,130,197,2,2,1,2,1,3]},{"1154908":[247,8,181,74,182,73,182,73,118,137,247,8,20,8,28]},{"1154924":[182,65,214,33,125,2,29,2,59,4,230,24,156,96,248]},{"1154940":[190,65,102,153,249,6,61,2,59,4,230,24,156,96,240]},{"1154956":[247,8]},{"1154959":[255,247,8,52,8,52,8,236,16,152,96,240]},{"1154982":[255]},{"1154985":[255,254,1]},{"1154996":[248]},{"1154998":[30,224,227,28,124,3]},{"1155012":[28]},{"1155014":[20,8,52,8,44,16]},{"1155028":[7]},{"1155030":[5,2,5,2,125,2]},{"1155044":[255]},{"1155046":[129,126,239,16,110,16]},{"1155056":[15]},{"1155058":[10,5,250,5,111,144,110,145,182,73]},{"1155072":[15]},{"1155074":[10,5,250,5,129,126,255]},{"1155082":[255]},{"1155088":[15]},{"1155090":[58,5,42,21,47,16,44,16,44,16]},{"1155106":[255]},{"1155108":[129,126,255]},{"1155112":[255]},{"1155115":[255]},{"1155122":[227]},{"1155124":[162,65,162,65,162,65,162,65]},{"1155140":[124]},{"1155142":[84,40,84,40,84,40]},{"1155156":[224]},{"1155158":[160,64,160,64,160,64]},{"1155174":[255]},{"1155177":[255,126,129]},{"1155184":[15]},{"1155186":[10,5,122,5,95,32,91,36,93,34]},{"1155200":[15]},{"1155202":[10,5,202,5,79,128,78,129,121,134]},{"1155216":[15]},{"1155218":[10,5,10,5,255]},{"1155225":[255,254,1,6,1,5,2,125,2,75,52,118,8,27,4,13,2,7]},{"1155244":[255]},{"1155246":[143,112,241,14,255]},{"1155252":[31,224,227,28,60,3,7]},{"1155260":[104,16,88,32,215,32,181,66,189,66]},{"1155271":[255,254,1,3]},{"1155276":[77,50,115,12,25,6,26,5,55,8,236,16,152,96,240]},{"1155292":[239,16]},{"1155295":[255,239,16,108,16,108,16,111,16,48,15,31]},{"1155308":[182,73,254,1,13,2,13,2,59,4,118,8,76,48,120]},{"1155325":[255,247,8,20,8,52,8,44,16,104,16,88,32,112]},{"1155340":[46,16,35,28,44,19,47,16,40,16,40,16,40,16,56]},{"1155356":[254,1,6,1,5,2,29,2,115,12,78,48,124]},{"1155372":[162,65,162,65,166,65,229,2,13,2,59,4,38,24,28]},{"1155388":[84,40,87,40,86,41,214,41,181,74,181,74,115,140,222]},{"1155404":[163,64,162,65,166,65,165,66,189,66,179,76,142,112,252]},{"1155420":[66,129,66,129,66,129,66,129,66,129,126,129]},{"1155433":[255,255]},{"1155436":[213,34,181,66,165,66,166,65,162,65,98,129,66,129,195]},{"1155452":[103,152,28,224,112,128,64,128,64,128,127,128,128,127,255]},{"1155468":[2,1,6,1,5,2,13,2,59,4,230,24,156,96,240]},{"1155488":[15]},{"1155490":[10,5,10,5,63]},{"1155496":[108,16,68,56]},{"1155504":[15]},{"1155506":[10,5,26,5,247,8]},{"1155513":[255,247,8]},{"1155520":[15]},{"1155522":[8,7,122,5,92,35,91,36,93,34]},{"1155536":[15]},{"1155538":[8,7,202,5,72,135,79,128,121,134]},{"1155552":[15]},{"1155554":[8,7,250,5]},{"1155559":[255,254,1,6,1]},{"1155568":[15]},{"1155570":[8,7,26,5,56,7,111,16,68,56]},{"1155584":[15]},{"1155586":[8,7,26,5,244,11]},{"1155593":[255,247,8]},{"1155606":[112]},{"1155608":[80,32,94,32]},{"1155624":[252]},{"1155626":[132,120]},{"1155640":[252]},{"1155642":[4,248]},{"1155656":[254]},{"1155658":[90,164]},{"1155672":[254]},{"1155674":[2,252]},{"1155686":[14]},{"1155688":[10,4,26,4]},{"1155702":[56]},{"1155704":[40,16,238,16]},{"1155720":[254]},{"1155722":[2,252]},{"1155734":[28]},{"1155736":[246,8,2,252,214,40,186,68,43,196,109,130,197,2,6,1,2,1,3]},{"1155756":[247,8,181,74,182,73,182,73,118,137,215,8,21,8,28]},{"1155772":[221,34,189,66,189,66,190,65,166,65,102,129,102,129,195]},{"1155788":[103,152,28,224,112,128,64,128,64,128,127,128,128,127,255]},{"1155804":[6,1,6,1,5,2,13,2,59,4,230,24,156,96,248]},{"1155820":[214,40,186,68,43,196,109,130,197,2,6,1,2,1,3]},{"1155836":[247,8,181,74,182,73,182,73,118,137,215,8,20,8,28]},{"1155852":[194,60,26,228,214,40,92,32,88,32,80,32,112]},{"1155868":[244,8,20,8,20,8,20,8,247,8,1,254,255]},{"1155884":[244,8,244,8,4,248,244,8,244,8,4,248,252]},{"1155900":[90,164,90,164,246,8,244,8,236,16,152,96,240]},{"1155916":[250,4,250,4,218,36,214,40,220,32,56,192,224]},{"1155932":[118,8,204,48,40,208,232,16,40,16,40,16,56]},{"1155948":[2,252,122,132,122,132,250,4,118,8,76,48,120]},{"1155964":[238,16,108,16,108,16,108,16,238,16,2,252,254]},{"1155980":[246,8,52,8,100,24,212,40,180,72,116,136,220]},{"1156002":[126]},{"1156004":[195,60,153,102,153,102,153,102]},{"1156018":[60]},{"1156020":[100,24,68,56,68,56,100,24]},{"1156034":[124]},{"1156036":[194,60,153,102,153,102,153,102]},{"1156050":[126]},{"1156052":[195,60,153,102,153,102,153,102]},{"1156066":[30]},{"1156068":[18,12,34,28,98,28,66,60]},{"1156082":[255]},{"1156084":[129,126,159,96,152,96,158,96]},{"1156098":[126]},{"1156100":[195,60,153,102,153,102,159,96]},{"1156114":[255]},{"1156116":[129,126,153,102,153,102,249,6]},{"1156130":[126]},{"1156132":[195,60,153,102,153,102,153,102]},{"1156146":[126]},{"1156148":[195,60,153,102,153,102,153,102]},{"1156162":[60]},{"1156164":[66,60,153,102,153,102,153,102]},{"1156178":[252]},{"1156180":[130,124,153,102,153,102,153,102]},{"1156194":[126]},{"1156196":[195,60,153,102,153,102,153,102]},{"1156210":[254]},{"1156212":[131,124,153,102,153,102,153,102]},{"1156226":[255]},{"1156228":[129,126,159,96,144,96,144,96]},{"1156242":[255]},{"1156244":[129,126,159,96,144,96,144,96,153,102,153,102,153,102,153,102,153,102,153,102,195,60,126]},{"1156268":[36,24,36,24,36,24,36,24,36,24,102,24,66,60,126]},{"1156284":[233,6,25,6,51,12,102,24,204,48,159,96,129,126,255]},{"1156300":[249,6,35,28,249,6,153,102,153,102,153,102,195,60,126]},{"1156316":[210,44,146,108,146,108,147,108,129,126,115,12,18,12,30]},{"1156332":[131,124,153,102,249,6,249,6,153,102,153,102,195,60,126]},{"1156348":[131,124,153,102,153,102,153,102,153,102,153,102,195,60,126]},{"1156364":[51,12,38,24,36,24,36,24,36,24,36,24,36,24,60]},{"1156380":[153,102,195,60,153,102,153,102,153,102,153,102,195,60,126]},{"1156396":[153,102,153,102,193,62,249,6,153,102,153,102,195,60,126]},{"1156412":[153,102,129,126,153,102,153,102,153,102,153,102,153,102,255]},{"1156428":[153,102,131,124,153,102,153,102,153,102,153,102,130,124,252]},{"1156444":[159,96,156,96,159,96,153,102,153,102,153,102,195,60,126]},{"1156460":[153,102,153,102,153,102,153,102,153,102,153,102,131,124,254]},{"1156476":[158,96,130,124,158,96,144,96,144,96,159,96,129,126,255]},{"1156492":[158,96,130,124,158,96,144,96,144,96,144,96,144,96,240]},{"1156514":[126]},{"1156516":[195,60,153,102,153,102,153,102]},{"1156530":[255]},{"1156532":[153,102,153,102,153,102,153,102]},{"1156546":[126]},{"1156548":[66,60,102,24,36,24,36,24]},{"1156562":[15]},{"1156564":[9,6,9,6,9,6,9,6]},{"1156578":[255]},{"1156580":[153,102,153,102,147,108,146,108]},{"1156594":[240]},{"1156596":[144,96,144,96,144,96,144,96]},{"1156610":[247]},{"1156612":[157,98,137,118,129,126,149,106]},{"1156626":[255]},{"1156628":[153,102,153,102,153,102,137,118]},{"1156642":[126]},{"1156644":[195,60,153,102,153,102,153,102]},{"1156658":[254]},{"1156660":[131,124,153,102,153,102,153,102]},{"1156674":[126]},{"1156676":[195,60,153,102,153,102,153,102]},{"1156690":[254]},{"1156692":[131,124,153,102,153,102,153,102]},{"1156706":[126]},{"1156708":[195,60,153,102,153,102,159,96]},{"1156722":[255]},{"1156724":[129,126,231,24,36,24,36,24]},{"1156738":[255]},{"1156740":[153,102,153,102,153,102,153,102]},{"1156754":[247]},{"1156756":[149,98,149,98,149,98,149,98,159,96,159,96,145,110,153,102,153,102,153,102,193,62,127]},{"1156780":[153,102,129,126,153,102,153,102,153,102,153,102,153,102,255]},{"1156796":[36,24,36,24,36,24,36,24,36,24,102,24,66,60,126]},{"1156812":[9,6,9,6,9,6,249,6,153,102,153,102,195,60,124]},{"1156828":[134,120,134,120,134,120,146,108,147,108,153,102,153,102,255]},{"1156844":[144,96,144,96,144,96,144,96,144,96,159,96,129,126,255]},{"1156860":[149,106,149,106,157,98,157,98,157,98,157,98,157,98,255]},{"1156876":[137,118,129,126,145,110,145,110,153,102,153,102,153,102,255]},{"1156892":[153,102,153,102,153,102,153,102,153,102,153,102,195,60,126]},{"1156908":[153,102,131,124,158,96,144,96,144,96,144,96,144,96,240]},{"1156924":[153,102,153,102,153,102,157,98,155,100,157,98,194,61,127]},{"1156940":[153,102,131,124,153,102,153,102,153,102,153,102,153,102,255]},{"1156956":[158,96,195,60,121,6,249,6,153,102,153,102,195,60,126]},{"1156972":[36,24,36,24,36,24,36,24,36,24,36,24,36,24,60]},{"1156988":[153,102,153,102,153,102,153,102,153,102,153,102,195,60,126]},{"1157004":[157,98,203,52,74,52,74,52,74,52,36,24,36,24,60]},{"1157026":[255]},{"1157028":[149,106,149,106,149,106,149,106]},{"1157042":[247]},{"1157044":[149,98,157,98,203,52,74,52]},{"1157058":[247]},{"1157060":[149,98,149,98,157,98,203,52]},{"1157074":[255]},{"1157076":[129,126,249,6,19,12,18,12]},{"1157088":[255]},{"1157091":[255,126,129,64,191,95,160,80,160]},{"1157112":[15]},{"1157114":[8,7]},{"1157120":[255]},{"1157122":[129,126,60,195,60,195,60,195,249,6]},{"1157136":[30]},{"1157138":[18,12,18,12,18,12,18,12,18,12]},{"1157184":[3]},{"1157186":[6,1,12,3,24,7,49,14,97,30]},{"1157200":[192]},{"1157202":[96,128,48,192,24,224,140,112,134,120]},{"1157258":[248]},{"1157276":[149,106,149,106,149,106,149,106,129,126,195,60,106,20,126]},{"1157292":[102,24,36,24,38,24,82,44,211,44,185,70,185,70,239]},{"1157308":[74,52,102,24,36,24,36,24,36,24,36,24,36,24,60]},{"1157324":[50,12,38,24,36,24,100,24,76,48,207,48,129,126,255]},{"1157340":[80,160,80,160,16,224,240]},{"1157356":[10,5,10,5,10,5,250,5,2,253,126,129]},{"1157369":[255,255]},{"1157372":[51,12,38,24,36,24,36,24,60]},{"1157382":[36,24,36,24,60]},{"1157388":[18,12,18,12,18,12,30]},{"1157396":[30]},{"1157398":[18,12,18,12,30]},{"1157410":[192]},{"1157412":[96,128,32,192,160,64,224]},{"1157422":[255]},{"1157425":[255,255]},{"1157436":[192,63,192,63,97,30,49,14,24,7,12,3,6,1,3]},{"1157452":[3,252,3,252,134,120,140,112,24,224,48,192,96,128,192]},{"1157488":[240]},{"1157490":[152,96,104,144,104,144,152,96,240]},{"1157500":[143,112,102,153,241,14,31]},{"1157516":[60,60,102,126,219,255,153,255,153,255,129,255,153,255,255,255]},{"1157568":[7]},{"1157570":[25,6,34,29,68,59,72,55,185,70]},{"1157584":[192]},{"1157586":[32,192,16,224,240]},{"1157592":[248]},{"1157594":[248]},{"1157664":[120]},{"1157666":[72,48,72,48,104,16,88,32,112]},{"1157686":[120,120,72,120,72,120]},{"1157744":[247]},{"1157746":[24,231,151,96,151,96,168,87,183,72]},{"1157760":[60]},{"1157762":[102,24,90,36,90,36,90,36,231,24]},{"1157776":[3]},{"1157778":[118,1,220,35,137,118,35,220,118,136,254,254,131,255,153,255,131,255,153,255,153,255,131,255,254,254,126,126,195,255,153,255,159,255,159,255,153,255,195,255,126,126,171,84,171,84,167,88,54,201,18,237,248,7,30,1,7]},{"1157836":[120,128,80,160,120,128,8,240,120,128,32,192,192]},{"1157850":[128]},{"1157852":[252,252,134,254,155,255,153,255,153,255,155,255,134,254,252,252,255,255,129,255,159,255,130,254,158,254,159,255,129,255,255,255,255,255,129,255,159,255,130,254,158,254,144,240,144,240,240,240,126,126,195,255,153,255,159,255,145,255,153,255,193,255,127,127]},{"1157932":[104,120,88,120,112,112]},{"1157954":[255,255,129,255,255,255]},{"1157972":[120,120,72,120,72,120,120,120]},{"1157984":[30,30,18,30,18,30,30,30]},{"1157996":[194,60,109,18,54,9,40,23,43,20,42,20,66,60,60]},{"1158012":[126,129,129,126,126,129,229,24,36,24,36,24,36,24,60]},{"1158028":[207]},{"1158030":[118,1,220,35,137,118,35,220,118,136,220]},{"1158068":[126]},{"1158070":[90,36,219,36,129,126]},{"1158082":[15]},{"1158084":[9,6,25,6,17,14,51,12]},{"1158102":[60]},{"1158104":[36,24,36,24]},{"1158112":[127]},{"1158114":[73,54,73,54,109,18,91,36,118]},{"1158136":[60]},{"1158138":[102,24]},{"1158146":[3]},{"1158148":[2,1,6,1,4,3,12,3]},{"1158162":[128]},{"1158164":[128]},{"1158166":[192]},{"1158168":[64,128,96,128]},{"1158176":[56]},{"1158178":[68,56,187,124,124,255,127,255,127,255]},{"1158192":[128]},{"1158194":[64,128,160,192,208,224,208,224,208,224]},{"1158208":[56]},{"1158210":[68,56,187,124,124,255,127,255,127,255]},{"1158224":[128]},{"1158226":[64,128,160,192,208,224,208,224,208,224]},{"1158308":[60]},{"1158310":[36,24,36,24,60]},{"1158316":[219,36,90,36,219,36,129,126,219,36,90,36,126]},{"1158332":[34,28,102,24,68,56,204,48,136,112,152,96,144,96,240]},{"1158348":[60]},{"1158352":[60]},{"1158354":[36,24,36,24,60]},{"1158380":[66,60,66,60,102,24,60]},{"1158396":[8,7,24,7,16,15,48,15,32,31,96,31,64,63,127]},{"1158412":[32,192,48,192,16,224,24,224,8,240,12,240,4,248,252]},{"1158428":[126,255,190,127,94,63,46,31,22,15,10,7,4,3,3]},{"1158444":[16,224,160,64,64,128,128]},{"1158460":[127,255,191,127,95,63,47,31,23,15,11,7,4,3,3]},{"1158476":[208,224,160,192,64,128,128]},{"1158492":[255,255,153,255,153,255,129,255,153,255,153,255,153,255,255,255,126,126,66,126,102,126,36,60,36,60,102,126,66,126,126,126,63,63,33,63,51,63,18,30,242,254,146,254,198,254,124,124,255,255,153,255,147,255,134,254,134,254,147,255,153,255,255,255]},{"1158812":[240,240,144,240,144,240,144,240,144,240,159,255,129,255,255,255,247,247,157,255,137,255,129,255,149,255,157,255,149,247,247,247,247,247,157,255,141,255,133,255,145,255,153,255,157,255,247,247,126,126,195,255,153,255,153,255,153,255,153,255,195,255,126,126,254,254,131,255,153,255,153,255,131,255,158,254,144,240,240,240,126,126,195,255,153,255,153,255,129,255,155,255,193,255,127,127,254,254,131,255,153,255,153,255,131,255,147,255,153,255,255,255,126,126,194,254,158,254,195,255,249,255,153,255,195,255,126,126,255,255,129,255,231,255,36,60,36,60,36,60,36,60,60,60,255,255,153,255,153,255,153,255,153,255,153,255,195,255,126,126,255,255,153,255,153,255,153,255,219,255,66,126,102,126,60,60,255,255,149,255,149,255,149,255,149,255,129,255,235,255,60,60,247,247,157,255,139,255,198,254,99,127,209,255,185,255,239,239,255,255,153,255,153,255,195,255,102,126,36,60,36,60,60,60,255,255,129,255,241,255,99,127,198,254,143,255,129,255,255,255]},{"1159068":[169]},{"1159070":[35,133,125,169,140,140,133,124,183,124,133,124,160]},{"1159085":[107]},{"1159088":[9]},{"1159090":[99]},{"1159092":[231,3,15,39,255,255,1]},{"1159100":[3]},{"1159102":[7]},{"1159104":[15]},{"1159106":[31]},{"1159108":[63]},{"1159110":[127]},{"1159112":[255]},{"1159114":[255,1,255,3,255,7,255,15,255,31,255,63,255,127,72,72,169]},{"1159133":[143,3,80,127,143,5,80,127,143,6,80,127,104,201,16,39,144,21,72,226,32,175,3,80,127,26,143,3,80,127,194,32,104,56,233,16,39,128,230,201,232,3,144,21,72,226,32,175,4,80,127,26,143,4,80,127,194,32,104,56,233,232,3,128,230,201,100]},{"1159201":[144,21,72,226,32,175,5,80,127,26,143,5,80,127,194,32,104,56,233,100]},{"1159222":[128,230,201,10]},{"1159227":[144,21,72,226,32,175,6,80,127,26,143,6,80,127,194,32,104,56,233,10]},{"1159248":[128,230,201,1]},{"1159253":[144,21,72,226,32,175,7,80,127,26,143,7,80,127,194,32,104,56,233,1]},{"1159274":[128,230,104,107,152,41,15]},{"1159282":[72,152,74,74,74,74,168,24,165,181,208,5,104,105,64,61,96,104,105,80,61,96,160]},{"1159307":[185,128,181,100,181,201,255,255,240,27,235,41,255,1,197,202,240,17,26,230,181,197,202,240,10,200,200,200,200,200,200,200,200,128,221,56,96,24,96,139,75,171,32,136,176,176,3,130,233]},{"1159357":[185,128,181,74,41,3]},{"1159364":[201]},{"1159367":[240,3,130,220]},{"1159372":[185,128,181,74,74,74,41,31]},{"1159381":[24,101,200,235,157,2,16,169,7]},{"1159391":[235,157,4,16,218,165,181,208,5,169,64,61,128,3,169,80,61,133,179,185,133,181,133,183,185,134,181,133,184,167,183,133,186,185,130,181,41,15]},{"1159430":[240,9,170,165,186,74,202,208,252,133,186,185,130,181,74,74,74,41,30]},{"1159450":[170,191,184,175,35,37,186,133,186,185,131,181,74,74,74,74,74,41,7]},{"1159470":[240,12,10,170,191,174,175,35,197,186,176,2,133,186,165,186,34,216,175,35,250,100,120,175,4,80,127,41,255]},{"1159500":[197,120,208,5,173,61,136,128,5,198,120,24,101,179,157,6,16,232,232,175,5,80,127,41,255]},{"1159526":[197,120,208,5,173,61,136,128,5,198,120,24,101,179,157,6,16,232,232,175,6,80,127,41,255]},{"1159552":[197,120,208,5,173,61,136,128,5,198,120,24,101,179,157,6,16,232,232,175,7,80,127,41,255]},{"1159578":[24,101,179,157,6,16,232,232,232,232,232,232,171,107,185,128,181,74,74,74,41,31]},{"1159601":[24,101,200,235,157,2,16,169,21]},{"1159611":[235,157,4,16,218,185,133,181,133,183,185,134,181,133,184,167,183,133,186,230,183,230,183,167,183,133,188,201,198]},{"1159641":[176,88,100,114,165,186,56,233,192,75,133,179,165,188,233,3]},{"1159658":[144,10,133,188,165,179,133,186,230,114,128,231,100,116,165,186,56,233,16,14,133,179,165,188,233]},{"1159685":[144,10,133,188,165,179,133,186,230,116,128,231,100,118,165,186,56,233,60]},{"1159705":[133,179,165,188,233]},{"1159712":[144,10,133,188,165,179,133,186,230,118,128,231,165,114,201,100]},{"1159729":[144,14,169,99]},{"1159734":[133,114,169,59]},{"1159739":[133,116,133,118,133,186,165,181,208,5,169,64,61,128,3,169,80,61,133,179,250,165,114,34,216,175,35,175,6,80,127,41,255]},{"1159773":[24,101,179,157,6,16,232,232,175,7,80,127,41,255]},{"1159788":[24,101,179,157,6,16,232,232,169,131]},{"1159799":[24,101,179,157,6,16,232,232,165,116,34,216,175,35,175,6,80,127,41,255]},{"1159820":[24,101,179,157,6,16,232,232,175,7,80,127,41,255]},{"1159835":[24,101,179,157,6,16,232,232,169,131]},{"1159846":[24,101,179,157,6,16,232,232,165,118,34,216,175,35,175,6,80,127,41,255]},{"1159867":[24,101,179,157,6,16,232,232,175,7,80,127,41,255]},{"1159882":[24,101,179,157,6,16,232,232,169,128]},{"1159893":[24,101,179,157,6,16,232,232,165,186,34,216,175,35,175,6,80,127,41,255]},{"1159914":[24,101,179,157,6,16,232,232,175,7,80,127,41,255]},{"1159929":[24,101,179,157,6,16,232,232,232,232,232,232,130,158,254,165,200,24,105]},{"1159950":[235,157,2,16,169,5]},{"1159957":[235,169]},{"1159960":[5,157,4,16,100,181,165,202,168,41,1]},{"1159972":[240,3,136,230,181,32,110,176,72,32,110,176,72,32,110,176,157,6,16,232,232,104,157,6,16,232,232,104,157,6,16,232,232,232,232,232,232,96,169,2,141,1,33,169,128,141,21,33,169,35,133,2,194,48,169]},{"1160028":[112,141,22,33,169,156,143,133]},{"1160037":[162,255,15,167]},{"1160042":[141,24,33,230]},{"1160047":[230]},{"1160049":[202,16,244,226,48,107,168,139,75,171,185,128,179,171,107,159,57,176,57,177,57,180,57,181,57,182,57,183,57,220,57,221,57,222,57,223,57,240,57,241,57,242,57,243,57,244,57,245,57,246,57,247,57,248,57,249,57,250,57,251,57,252,57,253,57,254,57,159,45,176,45,177,45,180,45,181,45,182,45,183,45,220,45,221,45,222,45,223,45,240,45,241,45,242,45,243,45,244,45,245,45,246,45,247,45,248,45,249,45,250,45,251,45,252,45,253,45,254,45,169,45,185,45,186,45,187,45,159,41,176,41,177,41,180,41,181,41,182,41,183,41,220,41,221,41,222,41,223,41,240,41,241,41,242,41,243,41,244,41,245,41,246,41,247,41,248,41,249,41,250,41,251,41,252,41,253,41,254,41,188,41,64,61,65,61,66,61,67,61,68,61,69,61,70,61,71,61,72,61,73,61,74,61,75,61,76,61,77,61,78,61,79,61,96,61,97,61,98,61,99,61,100,61,101,61,102,61,103,61,104,61,105,61,106,61,107,61,108,61,109,61,110,61,111,61,128,61,129,61,130,61,131,61,168,61,135,61,80,61,81,61,82,61,83,61,84,61,85,61,86,61,87,61,88,61,89,61,90,61,91,61,92,61,93,61,94,61,95,61,112,61,113,61,114,61,115,61,116,61,117,61,118,61,119,61,120,61,121,61,122,61,123,61,124,61,125,61,126,61,127,61,144,61,145,61,146,61,147,61,184,61,151,61,136,61,192,61,193,61,194,61,195,61,136,61,134,61,137,61,196,61,137,61,197,61,198,61,199,61,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,208,61,209,61,210,61,211,61,152,61,150,61,153,189,212,61,153,61,213,61,214,61,215,61,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,155,63]},{"1160579":[128]},{"1160581":[88,244,126,155,66]},{"1160587":[128]},{"1160589":[92,244,126,155,69]},{"1160595":[128]},{"1160597":[96,244,126,155,72]},{"1160603":[128]},{"1160605":[100,244,126,185,80,68,64]},{"1160613":[82,244,126,185,83,68,64]},{"1160621":[37,244,126,185,86,64,64]},{"1160629":[37,244,126,185,89,68,64]},{"1160637":[38,244,126,185,92,64,64]},{"1160645":[38,244,126,185,100,80,64]},{"1160653":[42,244,126,209,103,128,96]},{"1160661":[32,244,126,209,106,128,64]},{"1160669":[45,244,126,209,109,128,64]},{"1160677":[73,244,126,209,112,128,96]},{"1160685":[83,244,126,155,115,8,128]},{"1160693":[68,244,126,155,118]},{"1160699":[128]},{"1160701":[56,80,127,177,131,128,96]},{"1160709":[35,244,126,155,134]},{"1160715":[128]},{"1160717":[62,244,126,255,255]},{"1179648":[175,50,128,48,240,1,107,169,1,143,197,243,126,107,175,50,128,48,240,48,175,197,243,126,201,2,176,40,169,2,143,197,243,126,175,198,243,126,9,20,143,198,243,126,175,200,243,126,201,5,240,2,169,1,143,200,243,126,175,155,242,126,9,32,143,155,242,126,107,90,218,187,191]},{"1179722":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1179735":[149,48,41,255]},{"1179740":[250,122,107]},{"1343488":[107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107]},{"1540096":[144,43,128,183,162,225,201,79,28,185,230,32,88,103,101,166,17,207,121,76,199,97,209,212,211,155,120,59,251,170,163,21,124,54,215,139,11,173,38,181,59,105,227,131,127,17,226,146,128,103,225,156,207,213,69,245,107,54,182,122,26,57,132,19,71,236,216,174,87,158,244,11,97,187,141,10,77,98,142,34,227,114,197,113,247,153,11,16,177,19,82,94,120,67,116,143,55,105,7,154,37,14,48,106,3,158,142,15,119,146,56,51,137,93,51,179,1,161,191,105,141,151,39,108,76,155,168,24,153,126,178,219,167,68,39,168,165,188,245,170,238,46,202,161,254,193,254,73,173,59,202,66,243,108,217,113,25,3,123,227,169,134,108,208,162,43,251,25,217,219,71,136,122,32,31,213,62,199,63,127,135,212,144,156,209,235,249,120,17,47,185,155,119,1,128,223,57,23,35,155,98,227,166,83,60,220,249,201,52,204,61,71,47,158,28,37,238,132,158,69,184,36,1,170,227,178,181,147,5,161,8,9,56,25,214,247,166,44,245,29,77,231,59,45,27,188,134,64,216,235,117,242,139,234,140,212,183,241,166,179,99,107,130,146,218,145,93,51,253,102,50,146,200,42,194,16,131,73,27,185,48,120,170,214,2,170,146,33,230,4]},{"1540387":[240,238,64,63,94,110,23,136,169,167,112,206,202,226,65,161,34,7,36,247,200,224,86,80,224,133,246,98,129,67,225,183,107,126,158,14,34,45,243,86,73,115,204,178,67,27,89,64,94,118,169,213,246,134,48,242,46,64,225,119,216,41,243,184,63,195,132,25,229,141,113,140,32,169,116,43,59,48,58,131,225,184,61,251,72,239,125,69,219,119,182,106,224,187,88,85,180,197,106,162,54,174,194,173,175,102,130,171,249,15,217,88,149,101,152,220,153,71,226,113,205,111,162,249,93,43,191,103,106,232,147,56,23,192,122,216,116,19,45,148,123,101,81,109,254,5,250,30,179,60,202,4,222,231]},{"1540542":[151,126,164,77,47,114,162,79,143,169,63,102,56,32,61,212,170,165,119,171,243,200,190,54,240,175,20,87,3,57,31,219,169,240,40,5,31,230,40,181,210,118,26,164,186,124,191,127,176,40,39,145,211,52,67,71,170,93,3,119,244,131,207,55,85,8,79,141,109,163,10,107,53,226,201,118,208,65,196,73,75,171,63,214,126,4,219,253,24,129,140,23,92,62,52,23,116,19,242,252,14,58,239,226,214,118,8,99,3,39,200,9,69,193,134,107,50,247,243,56,57,128,255,131,226,117,111,137,136,166,115,119,243,36,233,30,225,178,224,24,243,143,216,34,203,234,142,242,30,194,133,68,40,54,200,154,180,122,160,154,18,217,151,55,29,167,87,161,247,39,171,141,171,84,78,52,148,153,130,157,249,29,40,228,114,206,213,115,217,170,241,235,124,138,10,85,228,189,132,54,4,78,231,157,64,105,15,219,226,227,6,8,126,19,91,118,166,68,214,121,132,42,16,112,55,207,8,254,225,117,248,26,74,100,151,213,127,226,252,202,239,186,255,43,179,20,204,112,62,154,51,219,53,105,53,155,224,182,146,65,147,192,93,180,131,212,15,12,215,246,101,237,47,18,118,194,218,212,67,187,128,231,17,169,70,124,193,102,32,23,117,197,9,112,69,23,156,67,102,233,78,76,2,223,78,61,3,236,73,210,146,24,223,246,83,103,156,177,75,148,120,46,248,249,74,16,233,192,184,141,168,226,68,179,62,78,99,198,74,242,95,50,53,212,28,71,56,155,219,168,241,75,17,156,99,158,114,32,173,29,68,69,234,179,160,176,138,148,184,9,53,59,139,96,47,197,70,237,208,51,141,151,37,205,192,222,116,178,241,8,236,90,104,234,60,98,70,233,126,132,255,115,54,124,133,62,154,181,206,188,87,120,83,82,10,60,136,160,228,66,172,232,62,93,236,130,250,111,168,211,201,102,154,221,245,93,234,115,57,6,53,12,115,243,220,108,224,156,234,15,168,216,93,240,139,106,228,37,186,12,12,229,119,2,153,178,105,167,236,217,75,255,238,236,226,10,22,48,211,149,171,247,26,61,247,215,6,121,176,110,87,62,185,199,182,102,5,149,153,207,1,108,98,244,132,212,112,59,224,86,102,164,188,28,143,218,59,151,25,235,64,193,195,250,177,23,93,138,36,222,61,119,85,218,159,153,123,68,114,104,67,51,114,130,168,9,246,196,211,159]},{"1541093":[63,247,66,174,232,46,160,187,48,55,94,226,231,16,35,51,9,237,162]},{"1541113":[112,204,35,248,130,224,246]},{"1572864":[23,23,23,23,23,23,23]},{"1572880":[70,70,29,41,13,78,16,15]},{"1572896":[15]},{"1572898":[1,2,160]},{"1572902":[160]},{"1572904":[3,1,2]},{"1572914":[1,32,10,30,10]},{"1572920":[1,1]},{"1572924":[2]},{"1572936":[8]},{"1572949":[64,64,64,64,64]},{"1572955":[64,64]},{"1572960":[34]},{"1572964":[107,34]},{"1572969":[107,34]},{"1572974":[107]},{"1572977":[121]},{"1572979":[110]},{"1572981":[111]},{"1572983":[109,105,124,105,108,105,127]},{"1572996":[160,128]},{"1573008":[4,71,3,71,2,71,4,71]},{"1573024":[1,1,1,1]},{"1573120":[178,216,216,216,216,216,216,216,216,217,217,217,217,217,218,218,218,218,218,219,219,219,219,219,220,220,220,220,220,221,221,221,221,221,222,222,222,222,222,223,223,223,223,223,224,224,224,224,224,225,225,225,225,225,226,226,226,226,226,227,227,227,227,227,23,23,23,23,23,23,23,23,23,23,20]},{"1573200":[62,62,62,62,62,62,62,62,62,62]},{"1573216":[36,36,36]},{"1573221":[14,40]},{"1573224":[8]},{"1573227":[4,2,1,4,8,16,1]},{"1573376":[80,70]},{"1573380":[176,185,255,255]},{"1573396":[1]},{"1573633":[192]},{"1573635":[174]},{"1573637":[216]},{"1573639":[187]},{"1573641":[174]},{"1573643":[255]},{"1573645":[184]},{"1573647":[190]},{"1573649":[189]},{"1573651":[255]},{"1573653":[184]},{"1573655":[175,117]},{"1573658":[192]},{"1573660":[174]},{"1573662":[174]},{"1573664":[189]},{"1573666":[170]},{"1573668":[171]},{"1573670":[178]},{"1573672":[193]},{"1573674":[205]},{"1573676":[255]},{"1573678":[189]},{"1573680":[184,118]},{"1573683":[189]},{"1573685":[177]},{"1573687":[174]},{"1573689":[255]},{"1573691":[188]},{"1573693":[189]},{"1573695":[184]},{"1573697":[187]},{"1573699":[174]},{"1573701":[199,127,127]},{"1573888":[116,117]},{"1573891":[255]},{"1573893":[255]},{"1573895":[255]},{"1573897":[255]},{"1573899":[255]},{"1573901":[176]},{"1573903":[255]},{"1573905":[176,127]},{"1574145":[192]},{"1574147":[174]},{"1574149":[216]},{"1574151":[187]},{"1574153":[174]},{"1574155":[255]},{"1574157":[184]},{"1574159":[190]},{"1574161":[189]},{"1574163":[255]},{"1574165":[184]},{"1574167":[175,117]},{"1574170":[192]},{"1574172":[174]},{"1574174":[174]},{"1574176":[189]},{"1574178":[170]},{"1574180":[171]},{"1574182":[178]},{"1574184":[193]},{"1574186":[205]},{"1574188":[255]},{"1574190":[189]},{"1574192":[184,118]},{"1574195":[189]},{"1574197":[177]},{"1574199":[174]},{"1574201":[255]},{"1574203":[188]},{"1574205":[189]},{"1574207":[184]},{"1574209":[187]},{"1574211":[174]},{"1574213":[199,127,127]},{"1574401":[192]},{"1574403":[174]},{"1574405":[216]},{"1574407":[187]},{"1574409":[174]},{"1574411":[255]},{"1574413":[184]},{"1574415":[190]},{"1574417":[189]},{"1574419":[255]},{"1574421":[184]},{"1574423":[175,117]},{"1574426":[192]},{"1574428":[174]},{"1574430":[174]},{"1574432":[189]},{"1574434":[170]},{"1574436":[171]},{"1574438":[178]},{"1574440":[193]},{"1574442":[205]},{"1574444":[255]},{"1574446":[189]},{"1574448":[184,118]},{"1574451":[189]},{"1574453":[177]},{"1574455":[174]},{"1574457":[255]},{"1574459":[188]},{"1574461":[189]},{"1574463":[184]},{"1574465":[187]},{"1574467":[174]},{"1574469":[199,127,127]},{"1574657":[194]},{"1574659":[184]},{"1574661":[190]},{"1574663":[216]},{"1574665":[187]},{"1574667":[174]},{"1574669":[255]},{"1574671":[176]},{"1574673":[184]},{"1574675":[178]},{"1574677":[183]},{"1574679":[176,117]},{"1574682":[189]},{"1574684":[184]},{"1574686":[255]},{"1574688":[177]},{"1574690":[170]},{"1574692":[191]},{"1574694":[174]},{"1574696":[255]},{"1574698":[170]},{"1574700":[255]},{"1574702":[191]},{"1574704":[174]},{"1574706":[187]},{"1574708":[194,118]},{"1574711":[171]},{"1574713":[170]},{"1574715":[173]},{"1574717":[255]},{"1574719":[189]},{"1574721":[178]},{"1574723":[182]},{"1574725":[174]},{"1574727":[205,127,127]},{"1574912":[117]},{"1574914":[206]},{"1574916":[166]},{"1574918":[169]},{"1574920":[255]},{"1574922":[171]},{"1574924":[181]},{"1574926":[170]},{"1574928":[195]},{"1574930":[174]},{"1574932":[255]},{"1574934":[178]},{"1574936":[189]},{"1574938":[199]},{"1574940":[206,127,127]},{"1575169":[177]},{"1575171":[174]},{"1575173":[194]},{"1575175":[199,118]},{"1575178":[181]},{"1575180":[178]},{"1575182":[188]},{"1575184":[189]},{"1575186":[174]},{"1575188":[183]},{"1575190":[199,127,127]},{"1575424":[116]},{"1575426":[192]},{"1575428":[170]},{"1575430":[183]},{"1575432":[189]},{"1575434":[255]},{"1575436":[188]},{"1575438":[184]},{"1575440":[182]},{"1575442":[174]},{"1575444":[189]},{"1575446":[177]},{"1575448":[178]},{"1575450":[183]},{"1575452":[176,117]},{"1575455":[175]},{"1575457":[184]},{"1575459":[187]},{"1575461":[255]},{"1575463":[175]},{"1575465":[187]},{"1575467":[174]},{"1575469":[174]},{"1575471":[198]},{"1575473":[255]},{"1575475":[189]},{"1575477":[174]},{"1575479":[181]},{"1575481":[181,118]},{"1575484":[194]},{"1575486":[184]},{"1575488":[190]},{"1575490":[255]},{"1575492":[192]},{"1575494":[177]},{"1575496":[170]},{"1575498":[189]},{"1575500":[204,126,115,118]},{"1575505":[171]},{"1575507":[187]},{"1575509":[178]},{"1575511":[183]},{"1575513":[176]},{"1575515":[255]},{"1575517":[182]},{"1575519":[174]},{"1575521":[255]},{"1575523":[189]},{"1575525":[177]},{"1575527":[174,115,118]},{"1575531":[176]},{"1575533":[187]},{"1575535":[174]},{"1575537":[174]},{"1575539":[183]},{"1575541":[255]},{"1575543":[185]},{"1575545":[174]},{"1575547":[183]},{"1575549":[173]},{"1575551":[170]},{"1575553":[183]},{"1575555":[189]},{"1575557":[205,127,127]},{"1575680":[116]},{"1575682":[178]},{"1575684":[255]},{"1575686":[170]},{"1575688":[181]},{"1575690":[187]},{"1575692":[174]},{"1575694":[170]},{"1575696":[173]},{"1575698":[194]},{"1575700":[255]},{"1575702":[176]},{"1575704":[170]},{"1575706":[191]},{"1575708":[174,117]},{"1575711":[194]},{"1575713":[184]},{"1575715":[190]},{"1575717":[255]},{"1575719":[170]},{"1575721":[181]},{"1575723":[181]},{"1575725":[255]},{"1575727":[178]},{"1575729":[255]},{"1575731":[177]},{"1575733":[170]},{"1575735":[191]},{"1575737":[174,118]},{"1575740":[192]},{"1575742":[177]},{"1575744":[194]},{"1575746":[255]},{"1575748":[173]},{"1575750":[184]},{"1575752":[183]},{"1575754":[216]},{"1575756":[189]},{"1575758":[255]},{"1575760":[194]},{"1575762":[184]},{"1575764":[190,126,115,118]},{"1575769":[176]},{"1575771":[184]},{"1575773":[255]},{"1575775":[171]},{"1575777":[184]},{"1575779":[189]},{"1575781":[177]},{"1575783":[174]},{"1575785":[187,115,118]},{"1575789":[188]},{"1575791":[184]},{"1575793":[182]},{"1575795":[174]},{"1575797":[184]},{"1575799":[183]},{"1575801":[174]},{"1575803":[255]},{"1575805":[174]},{"1575807":[181]},{"1575809":[188]},{"1575811":[174]},{"1575813":[198,127,127]},{"1575936":[116]},{"1575938":[178]},{"1575940":[175]},{"1575942":[255]},{"1575944":[194]},{"1575946":[184]},{"1575948":[190]},{"1575950":[255]},{"1575952":[177]},{"1575954":[170]},{"1575956":[191]},{"1575958":[174]},{"1575960":[183]},{"1575962":[216]},{"1575964":[189,117]},{"1575967":[175]},{"1575969":[184]},{"1575971":[190]},{"1575973":[183]},{"1575975":[173]},{"1575977":[255]},{"1575979":[186]},{"1575981":[190]},{"1575983":[170]},{"1575985":[180]},{"1575987":[174,118]},{"1575990":[194]},{"1575992":[174]},{"1575994":[189]},{"1575996":[204,126,115,118]},{"1576001":[178]},{"1576003":[189]},{"1576005":[216]},{"1576007":[188]},{"1576009":[255]},{"1576011":[183]},{"1576013":[184]},{"1576015":[189]},{"1576017":[255]},{"1576019":[194]},{"1576021":[184]},{"1576023":[190]},{"1576025":[187,115,118]},{"1576029":[175]},{"1576031":[170]},{"1576033":[190]},{"1576035":[181]},{"1576037":[189]},{"1576039":[205,127,127]},{"1576192":[116]},{"1576194":[185]},{"1576196":[181]},{"1576198":[174]},{"1576200":[170]},{"1576202":[188]},{"1576204":[174]},{"1576206":[255]},{"1576208":[173]},{"1576210":[174]},{"1576212":[181]},{"1576214":[178]},{"1576216":[191]},{"1576218":[174]},{"1576220":[187,117]},{"1576223":[189]},{"1576225":[177]},{"1576227":[178]},{"1576229":[188]},{"1576231":[255]},{"1576233":[171]},{"1576235":[178]},{"1576237":[176]},{"1576239":[255]},{"1576241":[171]},{"1576243":[184]},{"1576245":[182]},{"1576247":[171,118]},{"1576250":[189]},{"1576252":[184]},{"1576254":[255]},{"1576256":[182]},{"1576258":[194]},{"1576260":[255]},{"1576262":[175]},{"1576264":[170]},{"1576266":[178]},{"1576268":[187]},{"1576270":[194,126,115,118]},{"1576275":[175]},{"1576277":[187]},{"1576279":[178]},{"1576281":[174]},{"1576283":[183]},{"1576285":[173]},{"1576287":[255]},{"1576289":[178]},{"1576291":[183]},{"1576293":[255]},{"1576295":[189]},{"1576297":[177]},{"1576299":[174,115,118]},{"1576303":[185]},{"1576305":[194]},{"1576307":[187]},{"1576309":[170]},{"1576311":[182]},{"1576313":[178]},{"1576315":[173]},{"1576317":[198,127,127]},{"1576448":[116]},{"1576450":[171]},{"1576452":[187]},{"1576454":[178]},{"1576456":[183]},{"1576458":[176]},{"1576460":[255]},{"1576462":[182]},{"1576464":[174]},{"1576466":[255]},{"1576468":[189]},{"1576470":[177]},{"1576472":[174,117]},{"1576475":[165]},{"1576477":[189]},{"1576479":[177]},{"1576481":[255]},{"1576483":[170]},{"1576485":[183]},{"1576487":[173]},{"1576489":[255]},{"1576491":[166]},{"1576493":[189]},{"1576495":[177,118]},{"1576498":[172]},{"1576500":[187]},{"1576502":[194]},{"1576504":[188]},{"1576506":[189]},{"1576508":[170]},{"1576510":[181]},{"1576512":[188]},{"1576514":[255]},{"1576516":[188]},{"1576518":[184]},{"1576520":[255]},{"1576522":[178,126,115,118]},{"1576527":[172]},{"1576529":[170]},{"1576531":[183]},{"1576533":[255]},{"1576535":[182]},{"1576537":[170]},{"1576539":[180]},{"1576541":[174]},{"1576543":[255]},{"1576545":[170]},{"1576547":[255]},{"1576549":[171]},{"1576551":[178]},{"1576553":[176,115,118]},{"1576557":[171]},{"1576559":[184]},{"1576561":[182]},{"1576563":[171]},{"1576565":[199,127,127]},{"1576704":[116]},{"1576706":[171]},{"1576708":[187]},{"1576710":[178]},{"1576712":[183]},{"1576714":[176]},{"1576716":[255]},{"1576718":[182]},{"1576720":[174]},{"1576722":[255]},{"1576724":[189]},{"1576726":[177]},{"1576728":[174,117]},{"1576731":[165]},{"1576733":[189]},{"1576735":[177]},{"1576737":[255]},{"1576739":[170]},{"1576741":[183]},{"1576743":[173]},{"1576745":[255]},{"1576747":[166]},{"1576749":[189]},{"1576751":[177,118]},{"1576754":[172]},{"1576756":[187]},{"1576758":[194]},{"1576760":[188]},{"1576762":[189]},{"1576764":[170]},{"1576766":[181]},{"1576768":[188]},{"1576770":[255]},{"1576772":[188]},{"1576774":[184]},{"1576776":[255]},{"1576778":[178,126,115,118]},{"1576783":[172]},{"1576785":[170]},{"1576787":[183]},{"1576789":[255]},{"1576791":[182]},{"1576793":[170]},{"1576795":[180]},{"1576797":[174]},{"1576799":[255]},{"1576801":[170]},{"1576803":[255]},{"1576805":[171]},{"1576807":[178]},{"1576809":[176,115,118]},{"1576813":[171]},{"1576815":[184]},{"1576817":[182]},{"1576819":[171]},{"1576821":[199,127,127]},{"1576960":[116]},{"1576962":[185]},{"1576964":[181]},{"1576966":[174]},{"1576968":[170]},{"1576970":[188]},{"1576972":[174]},{"1576974":[255]},{"1576976":[173]},{"1576978":[174]},{"1576980":[181]},{"1576982":[178]},{"1576984":[191]},{"1576986":[174]},{"1576988":[187,117]},{"1576991":[189]},{"1576993":[177]},{"1576995":[178]},{"1576997":[188]},{"1576999":[255]},{"1577001":[171]},{"1577003":[178]},{"1577005":[176]},{"1577007":[255]},{"1577009":[171]},{"1577011":[184]},{"1577013":[182]},{"1577015":[171,118]},{"1577018":[189]},{"1577020":[184]},{"1577022":[255]},{"1577024":[182]},{"1577026":[194]},{"1577028":[255]},{"1577030":[175]},{"1577032":[170]},{"1577034":[178]},{"1577036":[187]},{"1577038":[194,126,115,118]},{"1577043":[175]},{"1577045":[187]},{"1577047":[178]},{"1577049":[174]},{"1577051":[183]},{"1577053":[173]},{"1577055":[255]},{"1577057":[178]},{"1577059":[183]},{"1577061":[255]},{"1577063":[189]},{"1577065":[177]},{"1577067":[174,115,118]},{"1577071":[185]},{"1577073":[194]},{"1577075":[187]},{"1577077":[170]},{"1577079":[182]},{"1577081":[178]},{"1577083":[173]},{"1577085":[198,127,127]},{"1577216":[116]},{"1577218":[171]},{"1577220":[187]},{"1577222":[178]},{"1577224":[183]},{"1577226":[176]},{"1577228":[255]},{"1577230":[182]},{"1577232":[174]},{"1577234":[255]},{"1577236":[189]},{"1577238":[177]},{"1577240":[174,117]},{"1577243":[165]},{"1577245":[189]},{"1577247":[177]},{"1577249":[255]},{"1577251":[170]},{"1577253":[183]},{"1577255":[173]},{"1577257":[255]},{"1577259":[166]},{"1577261":[189]},{"1577263":[177,118]},{"1577266":[172]},{"1577268":[187]},{"1577270":[194]},{"1577272":[188]},{"1577274":[189]},{"1577276":[170]},{"1577278":[181]},{"1577280":[188]},{"1577282":[255]},{"1577284":[188]},{"1577286":[184]},{"1577288":[255]},{"1577290":[178,126,115,118]},{"1577295":[172]},{"1577297":[170]},{"1577299":[183]},{"1577301":[255]},{"1577303":[182]},{"1577305":[170]},{"1577307":[180]},{"1577309":[174]},{"1577311":[255]},{"1577313":[170]},{"1577315":[255]},{"1577317":[171]},{"1577319":[178]},{"1577321":[176,115,118]},{"1577325":[171]},{"1577327":[184]},{"1577329":[182]},{"1577331":[171]},{"1577333":[199,127,127]},{"1577472":[116]},{"1577474":[185]},{"1577476":[181]},{"1577478":[174]},{"1577480":[170]},{"1577482":[188]},{"1577484":[174]},{"1577486":[255]},{"1577488":[173]},{"1577490":[174]},{"1577492":[181]},{"1577494":[178]},{"1577496":[191]},{"1577498":[174]},{"1577500":[187,117]},{"1577503":[189]},{"1577505":[177]},{"1577507":[178]},{"1577509":[188]},{"1577511":[255]},{"1577513":[171]},{"1577515":[178]},{"1577517":[176]},{"1577519":[255]},{"1577521":[171]},{"1577523":[184]},{"1577525":[182]},{"1577527":[171,118]},{"1577530":[189]},{"1577532":[184]},{"1577534":[255]},{"1577536":[182]},{"1577538":[194]},{"1577540":[255]},{"1577542":[175]},{"1577544":[170]},{"1577546":[178]},{"1577548":[187]},{"1577550":[194,126,115,118]},{"1577555":[175]},{"1577557":[187]},{"1577559":[178]},{"1577561":[174]},{"1577563":[183]},{"1577565":[173]},{"1577567":[255]},{"1577569":[178]},{"1577571":[183]},{"1577573":[255]},{"1577575":[189]},{"1577577":[177]},{"1577579":[174,115,118]},{"1577583":[185]},{"1577585":[194]},{"1577587":[187]},{"1577589":[170]},{"1577591":[182]},{"1577593":[178]},{"1577595":[173]},{"1577597":[198,127,127]},{"1578240":[98,101]},{"1578243":[43,45,33,30,159,43,30,45,46,43,39,159,40,31,159,45,33,30,159,36,34,39,32,98,233]},{"1578269":[25,100,117,110,113,104,97,159,95,93,111,112,104,97,99,9]},{"1578286":[25,138,155,148,151,142,135,159,133,131,149,150,142,135,98,104]},{"1578303":[31,45,33,30,159,37,40,50,26,37,159,41,43,34,30,44,45,98,235]},{"1578323":[17,111,93,106,95,112,113,93,110,117,99,11]},{"1578336":[17,149,131,144,133,150,151,131,148,155,98,79]},{"1578349":[1,52,98,101]},{"1578354":[45,44,26,33,26,44,43,26,37,26,33,53,44,159,33,40,38,30,28,40,38,34,39,32,98,233]},{"1578381":[25,103,93,103,93,110,101,103,107,159,112,107,115,106,99,9]},{"1578398":[25,141,131,141,131,148,139,141,145,159,150,145,153,144,98,100]},{"1578415":[47,47,46,37,45,46,43,30,44,159,43,46,37,30,159,45,33,30,159,29,30,44,30,43,45,98,233]},{"1578443":[25,96,97,111,97,110,112,159,108,93,104,93,95,97,99,9]},{"1578460":[25,134,135,149,135,148,150,159,146,131,142,131,133,135,98,100]},{"1578477":[47,45,33,30,159,27,46,37,37,50,159,38,26,36,30,44,159,26,159,31,43,34,30,39,29,98,233]},{"1578505":[27,105,107,113,106,112,93,101,106,159,112,107,115,97,110,99,9]},{"1578523":[27,143,145,151,144,150,131,139,144,159,150,145,153,135,148,98,102]},{"1578541":[37,50,40,46,43,159,46,39,28,37,30,159,43,30,28,40,47,30,43,44,98,235]},{"1578564":[19,117,107,113,110,159,100,107,113,111,97,99,11]},{"1578578":[19,155,145,151,148,159,138,145,151,149,135,98,102]},{"1578592":[39,31,34,39,32,30,43,159,48,30,27,44,159,31,40,43,159,44,26,37,30,98,232]},{"1578616":[31,118,107,110,93,119,111,159,115,93,112,97,110,98,93,104,104,99,8]},{"1578636":[31,156,145,148,131,157,149,159,153,131,150,135,148,136,131,142,142,98,100]},{"1578656":[45,45,33,30,159,48,34,45,28,33,159,26,39,29,159,26,44,44,34,44,45,26,39,45,98,235]},{"1578683":[19,105,93,99,101,95,159,111,100,107,108,99,11]},{"1578697":[19,143,131,137,139,133,159,149,138,145,146,98,104]},{"1578711":[31,45,48,34,39,159,37,46,38,27,30,43,35,26,28,36,44,98,233]},{"1578731":[27,115,107,107,96,111,105,97,106,119,111,159,100,113,112,99,9]},{"1578749":[27,153,145,145,134,149,143,135,144,157,149,159,138,151,150,98,100]},{"1578767":[45,40,28,26,43,34,39,26,159,27,40,50,159,41,37,26,50,44,159,26,32,26,34,39,98,233]},{"1578794":[25,100,93,113,106,112,97,96,159,99,110,107,114,97,99,9]},{"1578811":[25,138,131,151,144,150,135,134,159,137,148,145,152,135,98,100]},{"1578828":[45,47,30,39,46,44,55,159,42,46,30,30,39,159,40,31,159,31,26,30,43,34,30,44,98,234]},{"1578855":[23,115,101,111,100,101,106,99,159,115,97,104,104,99,10]},{"1578871":[23,153,139,149,138,139,144,137,159,153,135,142,142,98,100]},{"1578887":[45,45,33,30,159,29,48,26,43,47,30,39,159,44,48,40,43,29,44,38,34,45,33,44,98,236]},{"1578914":[15,111,105,101,112,100,97,110,117,99,12]},{"1578926":[15,149,143,139,150,138,135,148,155,98,102]},{"1578938":[39,45,33,30,159,27,46,32,54,28,26,45,28,33,34,39,32,159,36,34,29,98,233]},{"1578962":[25,103,93,103,93,110,101,103,107,159,112,107,115,106,99,9]},{"1578979":[25,141,131,141,131,148,139,141,145,159,150,145,153,144,98,72]},{"1578996":[31,45,33,30,159,37,40,44,45,159,40,37,29,159,38,26,39,98,233]},{"1579016":[27,96,97,93,112,100,159,105,107,113,106,112,93,101,106,99,9]},{"1579034":[27,134,135,131,150,138,159,143,145,151,144,150,131,139,144,98,104]},{"1579052":[31,45,33,30,159,31,40,43,30,44,45,159,45,33,34,30,31,98,235]},{"1579072":[19,104,107,111,112,159,115,107,107,96,111,99,11]},{"1579086":[19,142,145,149,150,159,153,145,145,134,149,98,102]},{"1579100":[39,26,39,29,159,45,33,30,159,38,26,44,45,30,43,159,44,48,40,43,29,98,168]},{"1579124":[29,74,67,60,60,71,74,159,56,62,56,64,69,82,82,82,98,236]},{"1579143":[15,98,107,110,97,114,97,110,120,99,12]},{"1579155":[15,136,145,148,135,152,135,148,158]},{"1581056":[8,9,10,11,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,4,49,54,64,70,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,4]},{"1581316":[232,13,152,11,206,20]},{"1581324":[80,28,255,255,102,20]},{"1581332":[182,26,152,11,182,26,14,4,12,156,48,21,152,10]},{"1581358":[22,8,232,13]},{"1581370":[172,9]},{"1581392":[26,4]},{"1581396":[30,9,172,9]},{"1581426":[168,10,170,7]},{"1585196":[24,24]},{"1585199":[255]},{"1585209":[248]},{"1605376":[87,65,214,122,224,16,138,151,162,137,130,69,70,28,223,247,85,15,29,86,172,41,220,209,37,42,197,146,66,183,190,80,100,98,49,232,73,99,64,95,201,71,246,11,250,252,228,240,230,143,109,177,104,164,211,14,84,93,107,207,32,105,51,7,44,77,50,119,193,149,123,222,102,140,53,132,134,124,68,26,62,21,212,12,181,144,76,178,38,30,56,192,118,156,43,127,94,213,117,182,227,125,141,114,58,203,111,91,173,189,241,187,5,154,244,3,2,255,218,79,147,179,20,236,238,215,249,150,167,19,202,191,136,25,163,120,36,135,60,158,180,39,194,175,128,196,200,108,233,148,248,139,61,52,166,83,23,34,243,165,27,46,6,57,210,67,115,18,9,88,48,92,153,152,159,237,55,103,234,186,231,217,129,8,126,188,112,90,81,195,185,97,54,75,168,1,101,59,239,89,4,24,121,13,221,206,204,174,131,33,235,110,10,113,176,17,133,199,161,253,229,22,72,251,242,35,47,40,155,170,171,208,106,157,198,45]},{"1605613":[254,225,63,160,74,184,78,116,31,142,169,245,205,96,145,219,216,82,226,224,90,221,29,227,3,63,207,95,224,92,227,188,227,124,195,246,157,62,28,192,224,227,195,131,25,153,24,238,45,252,147,248,7,57,199,11,247,247,158,254,140,126,17,3,7,199,247,251,251,199,132,95,25,238,3,173,11,87,68,232,192,255,128,255,152,120,224,241,243,184,31,7]},{"1605706":[28]},{"1605708":[60,8,28,4,73]},{"1605714":[67]},{"1605716":[195,1,169]},{"1605720":[248]},{"1605722":[255,255,251,36,255,4,92,172,124,140,92,74,172,124,39,15,15,255,100,253,36,125,128,62,210,127,169,239,64,212,137,232,22,34,3,28,1,16,48,102,9,24,231,52,195,82,129,235,32,247,20,253,66,195,126,189,60]},{"1605780":[24,60,28,8,2,62,126,68]},{"1605789":[255,2,254]},{"1605793":[246,68]},{"1605796":[237,18,173]},{"1605800":[175]},{"1605803":[1,9,18,18,82,80]},{"1605810":[255]},{"1605812":[251]},{"1605814":[247]},{"1605816":[183,70]},{"1605819":[111,4,127]},{"1605823":[4,8,72,34,144,6,128,255]},{"1605832":[254,63,225,97,69,222,94,6,220,92,219,91]},{"1605846":[30,36,63,36,255,10,192,255,184,204,75,188,35,252,67,246,29,35]},{"1605865":[3,51,67,3,25,47,255,39]},{"1605874":[20,255,255,191,191,206,206,209,208,239,239,230,231,238,233,239,236]},{"1605892":[64,49,63,31,34,28,27,185,158,115,60,230,121,204,243,152,231,48,207,224,159,192,63,112,224,193,131,7,15,31,63,255]},{"1605925":[129,126,75,141,110,1]},{"1605933":[37,16,224,65,254,127,253,191,251,223,247,239,239,247,223,251,191,253,127,254,254,253,251,247,239,223,191,127,231,156,254,137,253,195,251,231,115,207,243,207,120,231,95,240,24,1,3,7,143,143,199,224,188,243,254,225,255]},{"1605991":[255,8,255,140,255,158,231,167,215,199,99,1,35]},{"1606005":[224,32,24,56,239,159,246,15,217,151,243,142,118,92,191,10,126,36,219,138,31,207,38,12,137,193,195,100,188,96,188,104,180,100,169,67,96,163,7,97,169,96,184,96,31,31,27,36,31,5,95,175,111,144,83,163,138,102]},{"1606064":[1]},{"1606066":[12,36,15,224,71,59,75,28,164,15,211,7,232,3,117,3,184,1,92,1,190,132,67,32,16,136,68,162,65,207,206,63,48,248,199,224,20,192,175,192,23,128,44,128,123,48,192]},{"1606114":[11,16,40,83,132,251,8,159,102,7,248]},{"1606126":[87]},{"1606128":[168]},{"1606130":[245]},{"1606132":[254]},{"1606134":[255,6]},{"1606138":[168,87,10,1]},{"1606143":[67,102,191,224,35,118,159,59,207,61,135,62,83,127,57,111,172,31,31,15,7,67,129,128,16,215,87,214,86,213,85,215,87,205,78,250,123,253,5,255,19,34,63,24,61,53,6,3,1,60,243,30,225,255,24,239,40,223,16,223,145,223,147,255,199,227,225]},{"1606211":[16,34,32,224,56]},{"1606217":[251,251,245,245,174,174,75,74,241,245]},{"1606228":[254,255,251,251,4,4,14,95,255,251,1]},{"1606240":[4,153,158,115,124,230,121,204,115,152,231,48,79,96,31,192,63,120,240,225,195,135,143,159,63,255]},{"1606267":[48,48,206,206,223,223,39,255,3]},{"1606277":[255,49,32,35]},{"1606282":[69,141,110,2,129,98,157,68,126,129]},{"1606293":[255,131,97,1]},{"1606298":[28,35]},{"1606301":[151,104,1,27,94,241,93,243,185,231,249,135,248,103,63,48,127,120,239,44,225,227,199,7,7,192,128,16,47,11,94,16,67,186,36,15,126,32,95,22,90,24,67,2,240,225,197,197,193,225,231,252,131,198,2,10,255]},{"1606359":[49,255,67]},{"1606363":[3,1,9]},{"1606367":[24,134,27,1,133,196,2,3,255]},{"1606377":[129,127,135,208,1,35]},{"1606384":[35,31,7,92,140,252,44,188,204,252,12,35,252,35]},{"1606400":[47,34,15,35,255,224,53,129,66,67,189,62,66]},{"1606414":[189]},{"1606416":[195]},{"1606418":[255]},{"1606420":[203,128,255,60]},{"1606425":[129,66,60]},{"1606429":[52]},{"1606431":[157,93,67,190,63,199,7,120,4,139,4,251,28,227,182,221,62]},{"1606450":[128,115,3,3,25,217,88,226,161,188,195,137,30]},{"1606464":[1,62,29,133,42]},{"1606470":[22,79,140,79,9,78,11,77,11,119,164,104]},{"1606483":[127,128,127,152,48,176,177,179,24,159,7,152,231,2,19,255,146,239,36,223,72,159,16,191,32,191,35,191,39,255,143,12,24,48,96,34,64,224,72]},{"1606523":[127,127,191,191,159,159,175,175,183,183,171,187,141,189,30,126,128,64,96,112,120,100,66,129,255]},{"1606549":[63]},{"1606551":[15,192,7,240,3,248,3,128,1,96,1,56,255,255,63,15,7,127,159,199,128,127,65,62,34,28,85,73,190,182,221,221,235,235,247,247,127,190,221,235,119,62,28,8,47,254,39,1,79,15,255,39]},{"1606604":[67,230,191,224,49,246,159,123,79,189,39,158,19,207,9,103,4,31,31,15,135,195,225,240,248,239,40,207,136,175,8,127,15,247,7,123,3,153,129,204,64,16,48,112,240,248,252,126,63]},{"1606654":[255,253,255,2,2,35,253,1,19,19,67,238,236,7]},{"1606670":[253,255,255,253,17,17,131,67,3,133,66,3,5,17,17,238,238,239,239,134,204,4,24,16,251,8,255,6,7,248]},{"1606701":[31]},{"1606703":[249]},{"1606705":[255]},{"1606707":[79]},{"1606709":[240,6]},{"1606713":[224,6]},{"1606716":[176,15,136,128,4,6,167,222,83,239,41,119,148,131,144,4,13,67,33,16,8,255]},{"1606739":[192,127,191,127,143,111,140,108,67,140,111,131,94,1,2]},{"1606755":[16,19,34,16,134,203,4,131,23,1,132,49,3,35]},{"1606770":[131,23,1,3,141,110,13,238,67,253,254,1,1,2,67,1,254,131,222,2,1]},{"1606793":[131,107,3,152,216,3,2]},{"1606801":[1,254,67,249,250,135,72,5,3]},{"1606812":[4,4,131,107,3,224,39,211,211,185,185,68,124,90,102,185,231,100,219,194,189,129,126,60,126,199,131,1,24,60,126,255]},{"1606845":[252]},{"1606847":[240]},{"1606849":[224,9,192,25,192,27,128,58,128,60,34,255,19,246,230,228,197,195]},{"1606868":[255,126,255,66,255,78,255,81,255,87,255,118,255,13,136,23,1,5,254,254,253,253,243,243,35,239,13,223,223,191,191,127,127,1,2,12,24,16,32,64,128,80]},{"1606911":[255,38]},{"1606914":[255]},{"1607680":[224,90,221,29,227,3,63,207,95,224,92,227,188,227,124,195,246,157,62,28,192,224,227,195,131,25,153,24,238,45,252,147,248,7,57,199,11,247,247,158,254,140,126,17,3,7,199,247,251,251,199,132,95,25,238,3,173,11,87,68,232,192,255,128,255,152,120,224,241,243,184,31,7]},{"1607754":[28]},{"1607756":[60,8,28,4,73]},{"1607762":[67]},{"1607764":[195,1,169]},{"1607768":[248]},{"1607770":[255,255,251,36,255,4,92,172,124,140,92,74,172,124,39,15,15,255,100,253,36,125,128,62,210,127,169,239,64,212,137,232,22,34,3,28,1,16,48,102,9,24,231,52,195,82,129,235,32,247,20,253,66,195,126,189,60]},{"1607828":[24,60,28,8,2,62,126,68]},{"1607837":[255,2,254]},{"1607841":[246,68]},{"1607844":[237,18,173]},{"1607848":[175]},{"1607851":[1,9,18,18,82,80]},{"1607858":[255]},{"1607860":[251]},{"1607862":[247]},{"1607864":[183,70]},{"1607867":[111,4,127]},{"1607871":[4,8,72,34,144,6,128,255]},{"1607880":[254,63,225,97,69,222,94,6,220,92,219,91]},{"1607894":[30,36,63,36,255,10,192,255,184,204,75,188,35,252,67,246,29,35]},{"1607913":[3,51,67,3,25,47,255,39]},{"1607922":[20,255,255,191,191,206,206,209,208,239,239,230,231,238,233,239,236]},{"1607940":[64,49,63,31,34,28,27,185,158,115,60,230,121,204,243,152,231,48,207,224,159,192,63,112,224,193,131,7,15,31,63,255]},{"1607973":[129,126,75,141,110,1]},{"1607981":[37,16,224,65,254,127,253,191,251,223,247,239,239,247,223,251,191,253,127,254,254,253,251,247,239,223,191,127,231,156,254,137,253,195,251,231,115,207,243,207,120,231,95,240,24,1,3,7,143,143,199,224,188,243,254,225,255]},{"1608039":[255,8,255,140,255,158,231,167,215,199,99,1,35]},{"1608053":[224,32,24,56,239,159,246,15,217,151,243,142,118,92,191,10,126,36,219,138,31,207,38,12,137,193,195,100,188,96,188,104,180,100,169,67,96,163,7,97,169,96,184,96,31,31,27,36,31,5,95,175,111,144,83,163,138,102]},{"1608112":[1]},{"1608114":[12,36,15,224,71,59,75,28,164,15,211,7,232,3,117,3,184,1,92,1,190,132,67,32,16,136,68,162,65,207,206,63,48,248,199,224,20,192,175,192,23,128,44,128,123,48,192]},{"1608162":[11,16,40,83,132,251,8,159,102,7,248]},{"1608174":[87]},{"1608176":[168]},{"1608178":[245]},{"1608180":[254]},{"1608182":[255,6]},{"1608186":[168,87,10,1]},{"1608191":[67,102,191,224,35,118,159,59,207,61,135,62,83,127,57,111,172,31,31,15,7,67,129,128,16,215,87,214,86,213,85,215,87,205,78,250,123,253,5,255,19,34,63,24,61,53,6,3,1,60,243,30,225,255,24,239,40,223,16,223,145,223,147,255,199,227,225]},{"1608259":[16,34,32,224,56]},{"1608265":[251,251,245,245,174,174,75,74,241,245]},{"1608276":[254,255,251,251,4,4,14,95,255,251,1]},{"1608288":[4,153,158,115,124,230,121,204,115,152,231,48,79,96,31,192,63,120,240,225,195,135,143,159,63,255]},{"1608315":[48,48,206,206,223,223,39,255,3]},{"1608325":[255,49,32,35]},{"1608330":[69,141,110,2,129,98,157,68,126,129]},{"1608341":[255,131,97,1]},{"1608346":[28,35]},{"1608349":[151,104,1,27,94,241,93,243,185,231,249,135,248,103,63,48,127,120,239,44,225,227,199,7,7,192,128,16,47,11,94,16,67,186,36,15,126,32,95,22,90,24,67,2,240,225,197,197,193,225,231,252,131,198,2,10,255]},{"1608407":[49,255,67]},{"1608411":[3,1,9]},{"1608415":[24,134,27,1,133,196,2,3,255]},{"1608425":[129,127,135,208,1,35]},{"1608432":[35,31,7,92,140,252,44,188,204,252,12,35,252,35]},{"1608448":[47,34,15,35,255,224,53,129,66,67,189,62,66]},{"1608462":[189]},{"1608464":[195]},{"1608466":[255]},{"1608468":[203,128,255,60]},{"1608473":[129,66,60]},{"1608477":[52]},{"1608479":[157,93,67,190,63,199,7,120,4,139,4,251,28,227,182,221,62]},{"1608498":[128,115,3,3,25,217,88,226,161,188,195,137,30]},{"1608512":[1,62,29,133,42]},{"1608518":[22,79,140,79,9,78,11,77,11,119,164,104]},{"1608531":[127,128,127,152,48,176,177,179,24,159,7,152,231,2,19,255,146,239,36,223,72,159,16,191,32,191,35,191,39,255,143,12,24,48,96,34,64,224,32]},{"1608571":[127,127,191,191,159,159,175,175,183,183,171,187,141,189,30,126,128,64,96,112,120,100,66,129,255]},{"1608597":[63]},{"1608599":[15,192,7,240,67,3,248,224,35,1,236,1,196,255,255,63,15,7,7,19,59,128,127,65,62,34,28,85,73,190,182,221,221,235,235,247,247,127,190,221,235,119,62,28,8,47,254,39,1,79,15,255,39]},{"1608653":[67,230,191,224,49,246,159,123,79,189,39,158,19,207,9,103,4,31,31,15,135,195,225,240,248,239,40,207,136,175,8,127,15,247,7,123,3,153,129,204,64,16,48,112,240,248,252,126,63]},{"1608703":[255,253,255,2,2,35,253,1,19,19,67,238,236,7]},{"1608719":[253,255,255,253,17,17,131,67,3,133,66,3,5,17,17,238,238,239,239,134,204,4,24,16,251,8,255,6,7,248]},{"1608750":[31]},{"1608752":[249]},{"1608754":[255]},{"1608756":[79]},{"1608758":[240,6]},{"1608762":[224,6]},{"1608765":[176,15,136,128,4,6,167,222,83,239,41,119,148,131,144,4,13,67,33,16,8,255]},{"1608788":[192,127,191,127,143,111,140,108,67,140,111,131,94,1,2]},{"1608804":[16,19,34,16,134,203,4,131,23,1,132,49,3,35]},{"1608819":[131,23,1,3,141,110,13,238,67,253,254,1,1,2,67,1,254,131,222,2,1]},{"1608842":[131,107,3,152,216,3,2]},{"1608850":[1,254,67,249,250,135,72,5,3]},{"1608861":[4,4,131,107,3,31,211,211,185,185,68,124,90,102,185,231,100,219,194,189,129,126,60,126,199,131,1,24,60,126,255]},{"1608893":[252]},{"1608895":[240,3,224,15,67,192,31,26,128,57,128,48,255,255,252,240,224,224,198,207]},{"1608916":[255,126,255,66,255,78,255,81,255,87,255,118,255,13,136,23,1,5,254,254,253,253,243,243,35,239,13,223,223,191,191,127,127,1,2,12,24,16,32,64,128,80]},{"1608959":[255,38]},{"1608962":[255]},{"1609728":[15,255]},{"1609731":[252,3,248,7,243,15,231,31,207,63,152,127,183,120,39]},{"1609747":[1,220,63,67,35,227,67,220,192,8,206,192,39,224,211,48]},{"1609764":[28,28,34,63,17,31,15,127,128,191,192,159,224,79,112,103,120,48,63,24,31,143,15,34]},{"1609789":[23,128,128,192,224,240,247,74,247,76,218,102,236,115,183,120,152,127,207,63,231,31]},{"1609813":[1,36]},{"1609816":[224,33,226,14,196,28,73,121,19,243,167,103,79,207,158,158,60,60,17,35,134,12,24,48,97,195,112,112,247,240,231,224,207,192,159,128,69,63]},{"1609855":[4,143,15,31,63,127,34,255,9,176,79,24,231,60,243,127,240,47,240,67,12,243,224,33,248,7,79,231,195,128,208,224,1,3,8,247,12,243,31,224,255]},{"1609897":[131,124,1,254,63,255,127,255,247,243,224]},{"1609909":[124,254,192,128,67,65,190,15,193,62,227,28,255]},{"1609923":[199,56,159,124,159,254,190,190,62,28,35]},{"1609935":[27,255]},{"1609938":[15,240,224,255,31,31,128,128,6,6,249]},{"1609950":[255,255]},{"1609953":[240,31,224,127,249,255]},{"1609960":[160,96,199,64,71,199,66,5,191,2,189,60,31,63,35,60,2,124,66,192,67,127,255,5,63,255]},{"1609987":[192,127,254,67,127,255,224,48]},{"1609996":[64,64,63]},{"1610000":[64,65,127]},{"1610004":[24,230,29,231,24,229,14,242,7,249,3,252,1,254]},{"1610019":[255,225,224,226,241,248,252,254,255,253,195,134,249,51,252,113,126,228,251,14,241,255]},{"1610042":[3,252,34]},{"1610047":[128,34]},{"1610050":[224,58,252,195,195,224,224,112,240,184,120,220,60,102,158,51,207,255]},{"1610069":[60,31,15,7,3,1]},{"1610077":[3,252,7,248,8,242,10,243,13,245,10,246,5,251,14,242,252,249,245,244,242,241,240,241,175,112,155,103,183,72,175,80,191,67,69,191,68,39]},{"1610116":[224,40,233,24,148,172,202,86,247,59,127,27,127,11,255,131,127,11,7,67,33]},{"1610138":[128,192,64,128,199,7,224]},{"1610146":[112]},{"1610148":[63]},{"1610150":[31]},{"1610152":[95,64,111,96,112,112,248,35,255,4,191,159,143,227,31,67,155,103,67,248,7,69,31,224,36]},{"1610178":[34,1,224,81,248,248,136,248,40,216,72,152,172,60,14,62,119,79,123,71,7,7,39,103,195,193,128,128,63]},{"1610208":[1]},{"1610210":[60,36,126,66,126,82,46,42,6,6,135,135,255,255,195,129,129,209,249,120,240,15,97,159,79,191,211,51,201,57,196,60,226,30,99,159,7,158,176,44,54,59,29,28,252,252,248,248,240,240,224,224,192,192,131,73,1,6,64]},{"1610270":[3,7,15,31,63,34,255,7,247,102,246,103,247,103,244,100,67,240,96,7,241,96,254,96,24,25,24,27,35,31,23,224,31,224,159,240,207,184,167,28,19,140,139,206,201,238,233,31,31,15,71,227,115,49,21,55]},{"1610327":[6,223,127,160,96,192,127,255,136,135,2,2,64,31,64,132,151,2,9,223,14,239,38,119,147,59,201,29,228,133,38,1,224,97,48,24,140,198,227,241,248,252,111,206,79,206,239,110,247,182,251,218,253,108,255,240,248,7,48,48,16,8,4,130]},{"1610392":[7,255]},{"1610395":[255,112,255,96,246,73,230,25,228,27,197,58,195,60]},{"1610410":[3,15,22,38,36,69,67,255]},{"1610419":[255,14,63,198,15,242,7,248,127,128,159,96,199,56]},{"1610434":[192,48,8,4,124,158,198,52,220,52,212,49,208,57,200,29,228,30,230,26,234,40,216,195,203,131,98,1,23,5,7,5,5,255]},{"1610469":[255,127,247,255,136,136,247,128,247,127,255,192,250,255,127,128,119,127,131,75,1,45]},{"1610492":[39,255,69,170,91]},{"1610498":[174,70,95,160,1,191,64,34,4,36]},{"1610509":[224,41,22,234,26,238,26,234,8,240,9,244,27,230,42,214,46,214,225,225,229,231,227,225,193,193,206,60,141,124,201,120,203,120,235,120,223,92,141,76,165,100,3,3,34,7,2,35,51,27,67,99,159,16,223,63,191,127,176,112,224,96,239,96,224,96,28,28,32,64,79,34,31,69,64]},{"1610585":[9,124]},{"1610588":[127]},{"1610590":[131]},{"1610592":[120,120,252,252,37,255,1,135,3,35,243]},{"1610604":[247,72,243,118,1,246,115,34,12]},{"1610614":[140,35,12,10,255,254,193,254,129,254,31,252,51,240,243,68,112,251,3]},{"1610634":[28,28]},{"1610637":[35,12,15,251,124,247,120,247,122,177,114,93,190,237,30,173,30,205,78,34]},{"1610658":[24,12]},{"1610662":[64,48,5,255,28,255,62,255,127,255,253,255,250,254,249,255,252,255,248,224,192,128,131,89]},{"1610687":[224,33,1,255,48,255,38,239,15,127,60,254,186,254,89,127,92,127]},{"1610707":[16,128,1,1,128,128,1,255,20,223,54,255,15,255,125,255,134,42,4]},{"1610727":[32,34]},{"1610730":[26,1,128,128,3,252,7,249,14,242,29,228,59,201,119,147,239,38,223,14]},{"1610752":[1,3,6,12,24,48,79]},{"1610760":[255,39,255,15,72,184,75,184,107,184,123,184,105,168,68,164,218,50,204,56,35,7,24,23,27,13,7,176,195,171,192,173,192,189,210,154,232,255,243,255,124,255]},{"1610803":[28,23,18]},{"1610807":[5,132,213]},{"1610811":[68,255]},{"1610814":[8,14,255,31,251,31,241,31,245,31,34]},{"1610826":[4,14,31,27,17,17,79,170,91,39,4,77,245,31,1,187,91,38,17,6,21,137,96,151,112,187,120,67,189,124,5,158,126,198,62,240,15,131,97,1,2,3,1,1,68]},{"1610872":[2,11,4]},{"1610876":[11,3,20,7,44,15,92,31,185,190,34,255,14,252,251,243,227,70,255]},{"1610896":[191,63,223,95,255,96,240,96,67,247,103,17,246,102]},{"1610911":[64,32,31,31,24,24,25,224,31,247,8,255]},{"1610924":[207,48,67,231,24,5,238,17,255]},{"1610934":[31,8,37]},{"1610938":[11,115,252,135,120,255]},{"1610945":[243,12,241,14,113,142,67,63,192]},{"1610955":[140,134,15]},{"1610959":[5,253,126,253,70,253,86,69,253,70,2,185,70,255,35]},{"1610975":[35,16,7]},{"1610979":[172,239,63,255,2,254,1,72,255]},{"1610989":[4,16,128,193,252,254,34,255,15,158,255,31,255,15,255,128,255,169,239,58,254,1,191]},{"1611013":[199,35]},{"1611016":[18,16,1,64,56,158,255,63,255,15,255,38,255,81,223,50,254,1,255,192,132,126,5,3,32,1]},{"1611044":[73,228,251,5,204,243,24,231,240,15,36,24]},{"1611057":[48,133,215,1,147,52,3,255]},{"1611776":[15,255]},{"1611779":[252,3,248,7,243,15,231,31,207,63,152,127,183,120,39]},{"1611795":[1,220,63,67,35,227,67,220,192,8,206,192,39,224,211,48]},{"1611812":[28,28,34,63,17,31,15,127,128,191,192,159,224,79,112,103,120,48,63,24,31,143,15,34]},{"1611837":[23,128,128,192,224,240,247,74,247,76,218,102,236,115,183,120,152,127,207,63,231,31]},{"1611861":[1,36]},{"1611864":[224,33,226,14,196,28,73,121,19,243,167,103,79,207,158,158,60,60,17,35,134,12,24,48,97,195,112,112,247,240,231,224,207,192,159,128,69,63]},{"1611903":[4,143,15,31,63,127,34,255,9,176,79,24,231,60,243,127,240,47,240,67,12,243,224,33,248,7,79,231,195,128,208,224,1,3,8,247,12,243,31,224,255]},{"1611945":[131,124,1,254,63,255,127,255,247,243,224]},{"1611957":[124,254,192,128,67,65,190,15,193,62,227,28,255]},{"1611971":[199,56,159,124,159,254,190,190,62,28,35]},{"1611983":[27,255]},{"1611986":[15,240,224,255,31,31,128,128,6,6,249]},{"1611998":[255,255]},{"1612001":[240,31,224,127,249,255]},{"1612008":[160,96,199,64,71,199,66,5,191,2,189,60,31,63,35,60,2,124,66,192,67,127,255,5,63,255]},{"1612035":[192,127,254,67,127,255,224,48]},{"1612044":[64,64,63]},{"1612048":[64,65,127]},{"1612052":[24,230,29,231,24,229,14,242,7,249,3,252,1,254]},{"1612067":[255,225,224,226,241,248,252,254,255,253,195,134,249,51,252,113,126,228,251,14,241,255]},{"1612090":[3,252,34]},{"1612095":[128,34]},{"1612098":[224,58,252,195,195,224,224,112,240,184,120,220,60,102,158,51,207,255]},{"1612117":[60,31,15,7,3,1]},{"1612125":[3,252,7,248,8,242,10,243,13,245,10,246,5,251,14,242,252,249,245,244,242,241,240,241,175,112,155,103,183,72,175,80,191,67,69,191,68,39]},{"1612164":[224,40,233,24,148,172,202,86,247,59,127,27,127,11,255,131,127,11,7,67,33]},{"1612186":[128,192,64,128,199,7,224]},{"1612194":[112]},{"1612196":[63]},{"1612198":[31]},{"1612200":[95,64,111,96,112,112,248,35,255,4,191,159,143,227,31,67,155,103,67,248,7,69,31,224,36]},{"1612226":[34,1,224,81,248,248,136,248,40,216,72,152,172,60,14,62,119,79,123,71,7,7,39,103,195,193,128,128,63]},{"1612256":[1]},{"1612258":[60,36,126,66,126,82,46,42,6,6,135,135,255,255,195,129,129,209,249,120,240,15,97,159,79,191,211,51,201,57,196,60,226,30,99,159,7,158,176,44,54,59,29,28,252,252,248,248,240,240,224,224,192,192,131,73,1,6,64]},{"1612318":[3,7,15,31,63,34,255,7,247,102,246,103,247,103,244,100,67,240,96,7,241,96,254,96,24,25,24,27,35,31,23,224,31,224,159,240,207,184,167,28,19,140,139,206,201,238,233,31,31,15,71,227,115,49,21,55]},{"1612375":[6,223,127,160,96,192,127,255,136,135,2,2,64,31,64,132,151,2,9,223,14,239,38,119,147,59,201,29,228,133,38,1,224,39,48,24,140,198,227,241,248,252,111,206,79,206,239,110,247,182,251,218,253,108,255,240,248,7,48,48,16,8,4,130]},{"1612440":[7,255]},{"1612443":[255,112,253,98,241,78,67,227,28,67,199,56,15]},{"1612457":[3,13,17,35,35,71,71,255]},{"1612466":[255,14,63,198,15,242,67,7,248,29,3,252,243,12]},{"1612481":[192,48,8,4,4,2,242,52,220,52,212,49,208,57,200,29,228,30,230,26,234,40,216,195,203,131,98,1,23,5,7,5,5,255]},{"1612516":[255,127,247,255,136,136,247,128,247,127,255,192,250,255,127,128,119,127,131,75,1,45]},{"1612539":[39,255,69,170,91]},{"1612545":[174,70,95,160,1,191,64,34,4,36]},{"1612556":[224,41,22,234,26,238,26,234,8,240,9,244,27,230,42,214,46,214,225,225,229,231,227,225,193,193,206,60,141,124,201,120,203,120,235,120,223,92,141,76,165,100,3,3,34,7,2,35,51,27,67,99,159,16,223,63,191,127,176,112,224,96,239,96,224,96,28,28,32,64,79,34,31,69,64]},{"1612632":[9,124]},{"1612635":[127]},{"1612637":[131]},{"1612639":[120,120,252,252,37,255,1,135,3,35,243]},{"1612651":[247,72,243,118,1,246,115,34,12]},{"1612661":[140,35,12,10,255,254,193,254,129,254,31,252,51,240,243,68,112,251,3]},{"1612681":[28,28]},{"1612684":[35,12,15,251,124,247,120,247,122,177,114,93,190,237,30,173,30,205,78,34]},{"1612705":[24,12]},{"1612709":[64,48,5,255,28,255,62,255,127,255,253,255,250,254,249,255,252,255,248,224,192,128,131,89]},{"1612734":[224,33,1,255,48,255,38,239,15,127,60,254,186,254,89,127,92,127]},{"1612754":[16,128,1,1,128,128,1,255,20,223,54,255,15,255,125,255,134,42,4]},{"1612774":[32,34]},{"1612777":[26,1,128,128,3,252,7,249,14,242,29,228,59,201,119,147,239,38,223,14]},{"1612799":[1,3,6,12,24,48,79]},{"1612807":[255,39,255,15,72,184,75,184,107,184,123,184,105,168,68,164,218,50,204,56,35,7,24,23,27,13,7,176,195,171,192,173,192,189,210,154,232,255,243,255,124,255]},{"1612850":[28,23,18]},{"1612854":[5,132,213]},{"1612858":[68,255]},{"1612861":[8,14,255,31,251,31,241,31,245,31,34]},{"1612873":[4,14,31,27,17,17,79,170,91,39,4,77,245,31,1,187,91,38,17,6,21,137,96,151,112,187,120,67,189,124,5,158,126,198,62,240,15,131,97,1,2,3,1,1,68]},{"1612919":[2,11,4]},{"1612923":[11,3,20,7,44,15,92,31,185,190,34,255,14,252,251,243,227,70,255]},{"1612943":[191,63,223,95,255,96,240,96,67,247,103,17,246,102]},{"1612958":[64,32,31,31,24,24,25,224,31,247,8,255]},{"1612971":[207,48,67,231,24,5,238,17,255]},{"1612981":[31,8,37]},{"1612985":[11,115,252,135,120,255]},{"1612992":[243,12,241,14,113,142,67,63,192]},{"1613002":[140,134,15]},{"1613006":[5,253,126,253,70,253,86,69,253,70,2,185,70,255,35]},{"1613022":[35,16,7]},{"1613026":[172,239,63,255,2,254,1,72,255]},{"1613036":[4,16,128,193,252,254,34,255,15,158,255,31,255,15,255,128,255,169,239,58,254,1,191]},{"1613060":[199,35]},{"1613063":[18,16,1,64,56,158,255,63,255,15,255,38,255,81,223,50,254,1,255,192,132,126,5,3,32,1]},{"1613091":[73,228,251,5,204,243,24,231,240,15,36,24]},{"1613104":[48,133,215,1,147,52,3,255]},{"1613824":[34,255,12,192,215,136,248,151,220,171,234,145,229,152,227,157,34,255,2]},{"1613844":[255]},{"1613846":[67]},{"1613848":[255,68,255]},{"1613852":[8,255,3]},{"1613856":[28,3,34,29,66,61,67,192,63,19,164,27,170,17,240]},{"1613872":[15,240]},{"1613875":[255,113,142,81,142,74,132,85,128,91,128,133,48]},{"1613889":[224,67,207,48,88,32,87,32,84,35,87,32,31]},{"1613903":[224,31]},{"1613906":[255,231,24,52,8,213,8,85,136,213,8,128]},{"1613919":[127,128,6,249,254,1,12,3,244,3,20,227,244,3,63,1,70,56,142,112,20,224,56,192,68,184,4,248,66,252,24,24,36,60,68,124,132,252,100,124,69,36,60,4,60,60,66,126,129,70,255,153,5,105,111,18,30,12,12,67,18,30,69,34,62,67,82,126,1,126,126,67,129,255,9,158,254,144,240,156,252,130,254,129,255,131,160]},{"1614007":[1,34,62,131,130]},{"1614013":[5,72,120,140,252,130,254,133,176]},{"1614023":[3,121,127,9,15,69,18,30,139,144]},{"1614034":[67,153,255,137,176]},{"1614040":[133,184]},{"1614043":[79,231,153,47,255,19,51]},{"1614051":[20,3,56,7,104,23,96,31,254,1,249]},{"1614063":[192]},{"1614065":[95,128,213,10,67,81,142,8,241,14,192,63,143,112,112]},{"1614081":[80,132,73]},{"1614085":[10,84,35,220,35]},{"1614091":[255,113,14,15]},{"1614096":[20,132,89]},{"1614100":[224,37,85,136,119,136,1,254,128,127,255]},{"1614112":[12,3,248,7]},{"1614117":[255,1,255,3,255,7,255,31,255,248,248,114,252,254,254,252,252,248,248,240,240,192,192,35]},{"1614142":[77,36,60,1,24,24,131,196]},{"1614151":[67,72,120,1,142,254,67,129,255,3,126,126,82,126,67,178,254,67,129,255,1,114,126,131,158]},{"1614177":[131,154]},{"1614180":[11,9,15,105,111,153,255,129,255,66,126,60,60,137,228]},{"1614196":[133,186,1,141,224]},{"1614202":[3,66,126,124,124,131,188]},{"1614210":[69,153,255,69,130,254,1,156,252,73,144,240,1,96,96,73,153,255,18,129,255,130,254,124,124,253,255,250,255,253,255,239,255,215,255,251,255,253,38,255,8,150,255,244,255,247,255,239,255,158,34,255,67,215,255,8,57,255,223,255,95,255,190,255,121,38,255,67,95,255,4,79,255,215,255,223,34,255]},{"1614289":[127,34,255,2,243,255,227,68,255,243]},{"1614300":[97,35,255,11,127,255,255,227,255,217,255,243,255,231,255,65,38,255,140,84,2,34,255,143,100,2,2,195,255,249,132,147,2]},{"1614334":[67,132,145,2,6,153,255,249,255,227,255,231,34,255,131,168,2,37,255]},{"1614354":[248,132,39,2,2,238,255,241,34,255,8,31,255,111,255,247,255,123,255,187,68,255,221,16,251,255,231,249,199,248,206,241,225,222,247,200,255,225,255,255,221,70,255,189]},{"1614399":[219,138,171,2,4,225,255,205,255,253,131,207,2,36,255,4,242,255,243,253,247,68,255,248,3,203,255,199,252,131,78,2,11,111,191,111,255,159,247,247,255,251,15,255,247,39]},{"1614447":[123,70,123,74,39]},{"1614454":[255,68,255,9,133,60,2,8,104,255,111,255,110,255,221,255,187,38,255,8,97,255,77,255,245,255,123,255,167,38,255,69,175,255,2,171,255,103,50,255,39]},{"1614497":[127,68,127,72]},{"1614502":[73,67,127,255,132,83,2,4,211,255,193,255,115,138,125,3]},{"1614519":[252,68,252,36,17,228,252,254,127,253,191,251,223,247,239,239,247,223,251,191,253,127,254,143,176,3,2,251,255,225,72,255,192]},{"1614553":[225,37,255,12,199,215,171,215,41,239,17,215,41,215,171,255,71,47,255,6,227,255,224,255,242,255,252,68,255,248]},{"1614584":[254,34,255,7,15,251,7,255,119,255,255,143,68,255,151,2,31,255,255,71,74,123]},{"1614607":[78,68,127,66,10,127,127,121,255,28,255,20,247,116,247,122,68,251,10,3,251,251,255,254,68,255,252]},{"1614635":[248,132,17,2,3,253,255,254,127,68,255,63,3,31,255,127,159,68,255,63,1,127,255,68,255,254]},{"1614662":[252,131,76,4,132,11,4,135,80,4]},{"1614673":[31,68,255,191]},{"1614678":[127,132,78,2,139,148,2,1,73,127,67,152,255,2,153,255,41,68,239,40,2,239,239,228,68,252,100,67,228,252,67,33,255,1,255,255,159,176,3,12,130,130,69,199,74,207,118,255,110,255,95,255,191,132,125,3,1,192,192,67,160,224,7,32,224,163,224,166,225,212,243,135,224,3,10,199,57,239,17,239,147,239,87,255,255,172,68,255,171,4,139,255,171,255,172,36,255,2,189,255,185,70,255,189]},{"1614783":[136,134,13,5,6,186,255,190,255,189,255,187,142,27,5,2,190,255,137,36,255,4,216,255,141,255,173,132,67,5]},{"1614814":[173,36,255,2,157,255,169,70,255,173]},{"1614825":[152,134,77,5,6,170,255,174,255,173,255,171,142,91,5,1,174,255,133,15,1,131,82,5,5,165,255,160,255,173,255,131,15]},{"1614859":[4,255,255,152,255,171,132,119,5]},{"1614869":[170,134,139,5,4,156,255,171,255,169,68,255,170,135,140,5,133,100,5,135,138,5]},{"1614892":[200,68,255,189,4,173,255,181,255,205,34,255,2,223,255,129,68,255,221,67,223,255,131,220,3]},{"1614918":[189,68,255,221,131,248,2,2,247,255,143,132,205,5,10,193,255,221,255,173,255,245,255,251,255,199,34,255,6,251,255,135,255,247,255,1,68,255,247]},{"1614958":[207,34,255,69,173,255,133,230,5,131,12,6]},{"1614971":[131,34,255,133,6,6]},{"1614978":[239,132,75,2,69,223,255,2,199,255,219,68,255,223]},{"1614993":[255,136,3,6,131,40,2]},{"1615001":[159,36,255,131,32,6,37,255]},{"1615010":[1,34,255,10,129,255,253,255,221,255,235,255,247,255,235,132,139,5,2,231,255,129,132,231,5,4,227,255,149,255,247,132,253,5,69,251,255,135,72,6]},{"1615051":[191,68,255,183,67,187,255,67,125,255,131,142,6]},{"1615065":[129,70,255,191,133,218,5]},{"1615073":[1,70,255,253,135,24,6,6,255,255,159,255,175,255,119,136,25,2,4,239,255,1,255,239,132,147,5,2,109,255,239,136,173,6,4,187,255,215,255,239,132,123,6,4,15,255,243,255,159,132,167,2,2,31,255,227,132,205,6,131,42,6,6,219,255,187,255,177,255,13,34,255,67,253,255]},{"1615149":[219,138,101,6]},{"1615154":[129,68,255,239,133,32,7,131,190,2,2,223,255,1,68,255,221,69,239,255,131,146,2,137,128,6]},{"1615181":[129,134,93,6]},{"1615186":[253,136,79,7,131,94,6,135,78,7,133,250,5,71,187,255,135,24,6,69,175,255,131,216,6]},{"1615212":[107,132,107,3,69,191,255,131,40,5]},{"1615223":[183,132,235,5]},{"1615228":[129,74,255,189,133,76,7,67,189,255,137,22,6,131,236,5,135,180,6,131,236,5,133,78,6]},{"1615254":[251,132,63,7,135,82,6,67,171,255,137,184,6]},{"1615268":[255,132,1,6,67,247,255,131,32,6,255]},{"1615872":[39]},{"1615874":[7,3]},{"1615877":[15,2,31,13,27,14,35]},{"1615885":[3,3,15,31,31,35]},{"1615892":[11,96]},{"1615895":[146]},{"1615897":[204]},{"1615899":[240,64,248,176,184,80,35]},{"1615907":[10,64,240,248,216,8]},{"1615914":[28]},{"1615916":[38,24,28,68,8,20,67,28]},{"1615925":[2,8,20,58,34,28,1,20,20,57]},{"1615936":[9,126]},{"1615939":[227,98,247,118,126]},{"1615945":[60,24,67,52,16,9]},{"1615952":[126,157,137,126,36,44,44]},{"1615961":[131,48]},{"1615965":[60,70]},{"1615968":[28,5,62]},{"1615973":[8,20,36,34,20]},{"1615979":[62,240,49,96]},{"1615984":[240,45,2]},{"1615988":[240,95]},{"1615992":[240,47,48]},{"1615996":[3,57,31,61,30,67,59,28,19,31,12,31,14,15]},{"1616011":[3]},{"1616013":[63,63,62,62,30,31,14,3,124,136,238,16,73,255]},{"1616028":[224,36,206]},{"1616032":[140,222,49,245,53,181,49,206,20,8,55,8,119,8,95,32,127,40,127,8,75]},{"1616054":[1]},{"1616056":[28,63,92,119,126,126,74,1]},{"1616066":[156,70]},{"1616069":[254,67,190]},{"1616073":[224,34,28]},{"1616078":[156,98,106,234,170,162,28,126]},{"1616087":[118,60,255,66,255,126,195,66,231,102,126,60,60]},{"1616101":[126,126,189,129,189,153,66,60,127,68]},{"1616112":[62,16,30]},{"1616116":[62]},{"1616118":[60]},{"1616120":[62]},{"1616122":[28]},{"1616124":[65,62,34,26,34,44,34,158,223,1,133,250,1,19,14]},{"1616140":[4]},{"1616142":[65,62,42,42,34,26,10,4,57,31,60,31,59,31,57,30,132,136,1]},{"1616162":[3,131,142,1,19,63,63,30,31,15,3,124,136,46,208,223,96,222,32,255]},{"1616183":[255,48,255,64,131,166,1,5,241,118,49,125,241,206,131,64,2,7,63,27,63,16,31]},{"1616207":[31,1,134,76,2,2,59,17,27,131,86,2,1,110,144,141,156,1,13,177,53,181,181,177,206,20,8,54,8,117,10,95,34,131,184,1]},{"1616244":[73,34]},{"1616247":[5,28,62,95,119,126,127,131,172,2,21,14]},{"1616260":[159]},{"1616262":[222]},{"1616264":[255]},{"1616266":[207]},{"1616268":[159]},{"1616270":[14]},{"1616273":[14,145,86,49,77,145,14,134,160,2,67,32,127,1]},{"1616288":[77,133,173,2,2,123,113,123,131,220,2]},{"1616300":[78,74]},{"1616303":[255,3,78]},{"1616308":[78,132,154,2]},{"1616313":[78,240,49,48]},{"1616318":[41]},{"1616320":[2,1]},{"1616323":[27,38]},{"1616326":[1,1,26,35]},{"1616331":[131,124]},{"1616334":[6,124]},{"1616337":[248]},{"1616339":[240]},{"1616341":[224,34]},{"1616344":[5,28,36,68,136,16,32,141,48,3,1,63,1,37]},{"1616359":[25,1,62,15]},{"1616364":[31,14,59,26,119,54,238,108,220,88,248,240,240,192,15,17,37,73,146,164,8,48,240,70,96,3]},{"1616391":[63,132,120,3,6,30,119,62,238,124,220,120,132,132,3,6,31,63,127,254,252,248,240,228,54]},{"1616417":[67,1]},{"1616420":[67,3]},{"1616424":[7,34]},{"1616427":[3,1,1,3,3,131,47,4,37]},{"1616437":[67,128]},{"1616440":[67,192]},{"1616443":[34]},{"1616445":[3,128,128,192,192,131,41,4,19,7]},{"1616456":[6,1,28,3,250,5,242,13,66,61,1,2,4,5,27,229,143,127,131,63,4,67,64,128,15,48,192,142,112,134,124,140,120]},{"1616490":[128,192,192,240,126,254,252,141,176,1,16]},{"1616503":[28,63,94,118,126,126,75]},{"1616511":[128]},{"1616513":[198]},{"1616515":[239]},{"1616517":[255,132,155,4,23,94]},{"1616524":[12]},{"1616526":[128,70,169,53,169,189,82,12,31]},{"1616536":[31,8,31,4,63,26,127,56,120,48,131,143,3,224,62,20,18,25,36,71,72,48]},{"1616559":[192]},{"1616561":[140]},{"1616563":[30]},{"1616565":[190]},{"1616567":[158]},{"1616569":[30]},{"1616571":[63]},{"1616573":[30]},{"1616575":[64,140,18,162,146,18,33,30,63]},{"1616585":[27,4,17,14,59,4,127]},{"1616593":[249]},{"1616595":[240]},{"1616597":[96]},{"1616599":[35,17,16,40,70,137,144,96,192,128,156]},{"1616611":[190]},{"1616613":[255,68]},{"1616616":[190,131,248,1,7,64,156,162,217,178,166,65,62,153,224,4,4,188]},{"1616635":[254]},{"1616637":[191,132,43,5,5,126]},{"1616644":[60]},{"1616646":[64,188,67,194,185,8,66,60,63]},{"1616656":[31,4,31,14,63,146,231,4,21,140]},{"1616667":[158]},{"1616669":[190]},{"1616671":[254]},{"1616673":[255]},{"1616675":[62]},{"1616677":[12]},{"1616679":[192,140,146,162,210,193,50,12,228,48]},{"1616691":[7,68]},{"1616694":[15,67,31]},{"1616698":[67,63]},{"1616701":[8,127,7,15,15,31,31,63,63,127,68]},{"1616713":[224,67,240]},{"1616717":[67,248]},{"1616720":[12,252]},{"1616723":[254,224,224,240,240,248,248,252,254,32,31,67,16,15,6,35,31,47,28,124,56,120,34]},{"1616748":[63,131,179,5,15,124,120]},{"1616756":[56,240,112,224,48,224,56,240,152,112,124,56,60,34]},{"1616772":[248,131,202,5,2,124,60]},{"1616780":[255]},{"1617920":[12,130,130,69,199,74,207,118,255,110,255,95,255,191,34,255,3]},{"1617939":[192,192,67,160,224,224,39,32,224,163,224,166,225,212,243,1,1,3,2,6,5,12,11,13,10,15,11,15,8,15,15,240,240,16,240,112,144,240,80,176,208,96,160,192,64,128,128,35]},{"1617988":[67,4,28,7,2,126,76,124,8,56,48,48,39]},{"1618002":[3,2,126,124,124,39]},{"1618009":[67,4,28,1,24,24,67,8,56,21,48,48,20,60,18,126,17,255,29,255,1,255,130,254,68,124,56,56,9,123,52,127,69,37,111,13,9,123,115,115]},{"1618051":[33,127,175,255,34,254,174,254,67,40,120,8,120,120]},{"1618067":[9,59,53,127,36,68,111,37,16,73,123,51,51]},{"1618082":[41,123,42,126,36,252,170,254,45,127,41,34,123,5]},{"1618098":[16,112,104,248,69,72,216,21,144,240,96,96]},{"1618112":[24,8,60,4,255,41,126,42,126,2,255,17,239,41,198,198,133,206]},{"1618131":[3,60,4,126,2,68,255,1]},{"1618140":[255,68,51]},{"1618144":[67,255,51,134,241]},{"1618150":[34,255]},{"1618153":[225,68,255,237]},{"1618158":[193,68,255,159,35,255,25,69,255,1,255,171,255,199,255,207,255,199,255,223,27,231,175,95,243,31,239,63,233,63,237,63,19,34,255,7,27,231,191,95,227,63,237,63,131,52,1]},{"1618206":[45,142,45,1]},{"1618211":[35,34,255,12,35,255,123,255,247,127,119,255,193,255,247,255,23,52,255]},{"1618231":[199,72,255,231]},{"1618236":[195,134,109,1,8,179,255,243,255,231,255,207,255,131,36,255,2,135,255,243,132,145,1,2,179,255,135,36,255,67,179,255,6,183,255,131,255,231,255,199,36,255,2,195,255,159,132,145,1,131,148,1,35,255,4,227,255,207,255,135,68,255,179,133,156,1,4,195,255,147,255,187,134,133,1,135,126,1]},{"1618315":[131,68,255,179,133,172,1,131,130,1,131,228,1]},{"1618329":[243,134,171,1,11,255,231,255,219,255,165,231,189,255,219,255,231,133,254,1,7,247,203,239,213,239,149,223,169,131,123,1,12,222,253,219,230,215,249,221,230,215,248,230,251,248,34,255,12,163,127,99,223,195,63,107,215,251,151,167,127,31,34,255,67,223,255,133,32,2,1,229,254,131,44,2,67,227,255,7,163,127,107,215,219,47,103,223,131,60,2,8,255,255,254,255,252,255,249,255,147,132,113,1,137,238,1,135,232,1,146,240]},{"1618443":[255,70,255,252,4,254,255,253,255,252,36,255,20,59,127,131,143,115,255,3,255,255,143,251,254,253,253,254,254,251,253,227,243,204,68,255,128,14,255,255,115,127,131,255,7,127,135,255,11,255,3,255,35,150,126,2,36,255,3,248,255,250,255,131,44,2,41,255,67,250,255,15]},{"1618517":[1,7,2,14,4,28,8,56,16,112,32,224,192,192,143,240]},{"1618534":[147,128,2,11,252,255,243,252,239,243,239,247,215,239,223,237,35,255,8,63,255,207,255,183,255,23,255,187,67,255,219,7,246,213,239,236,243,224,255,240,134,158,2,10,203,255,251,127,247,175,247,15,207,63,63,136,227,2,10,243,255,240,255,248,255,247,255,239,255,223,34,255,24,31,255,207,255,15,255,31,255,239,255,215,255,235,255,217,255,221,254,223,252,221,255,223,255,231,132,237,2,6,35,255,99,255,227,127,99,132,10,2,133,92,2,31,253,251,189,243,190,249,215,252,227,255,214,255,191,249,255,255,223,127,187,207,183,217,255,3,255,231,31,255,255,231,191,240,72,255,224,132,88,3,13,143,115,135,121,199,57,207,49,255,1,255,3,255,15,39,255]},{"1618706":[129,42,255,12,240,255,229,255,202,255,133,255,138,255,133,255,192,34,255,14,127,255,31,255,175,255,87,255,163,255,93,255,61,255,224,132,152,2,3,254,243,255,227,132,24,1,3,255,125,255,251,132,121,3,133,92,2,134,93,2]},{"1618767":[248,68,255,240,2,224,255,192,132,188,2,12,127,255,31,191,79,31,239,143,119,239,19,231,25,68,255,128,1,192,251,68,255,240,132,238,2,5,1,255,97,159,243,31,68,255,15,134,172,3,132,49,4,131,122,3,67,239,255,12,251,254,255,253,206,251,159,247,251,239,243,255,247,37,255,12,225,255,241,255,49,255,45,255,223,255,167,255,103,135,108,1,67,239,255,133,140,1,134,240,3]},{"1618869":[126,70,255]},{"1618873":[139,197,4,2]},{"1618878":[255]},{"1618880":[139,212,4,135,204,4,4,223,255,131,255,219,68,255,239,131,14]},{"1618898":[35]},{"1618900":[3,1,1,3,3,67,4,7,1,8,15,133]},{"1618914":[6,119,255,110,255,94,255,190,136,253,4,9,128,128,192,192,35,224,38,225,20,243,131,126,3,8,103,255,171,255,107,255,170,255,167,34,255,79,9,15,138,112,3,3,254,239,252,210,131,13]},{"1618965":[134,204,4,37]},{"1618970":[12,211,255,213,254,219,254,215,252,221,255,231,255,249,34,255,79,149,243,4,148,243,150,241,147,74,240,144,12,203,255,171,127,219,127,235,63,123,255,103,255,95,136,253,4,35]},{"1619017":[1,255]},{"1619020":[137,102,5,35]},{"1619025":[4,192]},{"1619028":[96,128,32,80,192,160,80,255]},{"1619037":[143,189,4,45,255]},{"1619043":[254,136,227,2,6,224,255,135,255,31,255,127,133,111,3,9,253,231,250,207,244,159,249,158,243,157,133,127,3,8,63,231,95,179,207,121,143,249,47,131,124,5,143,4,6,12,241,251,229,247,201,239,147,223,167,255,15,255,63,134,50,3]},{"1619106":[240,67,223,224,3,185,198,144,239,132,66,3,2,63,247,15,67,251,7,3,237,19,197,59,133,49,3,12,251,207,251,143,251,15,253,7,254,147,255,255,141,70,255,181]},{"1619151":[142,38,255,8,173,255,165,255,161,255,169,255,109,38,255,8,152,255,123,255,72,255,107,255,152,38,255]},{"1619179":[205,68,255,180,2,181,255,205,38,255,67,191,255,67,63,255,131,12]},{"1619198":[35,255,4,68,255,109,255,108,132,227,6,37,255,8,93,255,201,255,85,255,221,255,93,135,143,2,67,249,255,67,243,255,68,231,255,3,30,30,63,33,67,63,45,15,127,65,254,158,240,144,96,96,246,155,248,207,253,231,255,243,132,97,2,7,252,255,255,111,249,223,243,191,131,136,1]},{"1619274":[127,68,255,63,11,255,227,255,245,251,254,241,236,251,198,255,143,132,12,1,7,244,255,250,247,253,251,254,229,133,42,4,133,145,2,3,242,253,238,241,67,220,227,67,184,199,139,112,6,7,253,3,13,243,255,209,255,224,132,154,3,133,154,3,34,255,8,140,255,187,255,138,255,187,255,140,38,255]},{"1619353":[218,70,255,90]},{"1619358":[166,38,255]},{"1619362":[141,132,197,6,2,141,255,189,38,255,8,209,255,151,255,81,255,215,255,209,38,255,13,252,255,240,255,233,246,217,230,219,228,186,197,188,195,137,112,6,5,131,127,97,159,57,199,47]},{"1619411":[255]},{"1619968":[255,255,255,199,255,128,255,184,159,254,207,255,231,255,243,255,255,255,255,225,255,241,255,49,255,45,255,223,255,167,255,103,251,254,255,253,206,251,159,247,251,239,243,255,247,255,255,255,255,227,255,243,127,243,63,249,159,249,207,249,239,243,255,255,255,255,255,255,255,255,192,255,255,191,255,128,255,192,255,255,255,255,255,255,255,255,15,255,231,255,247,31,247,31,247,31,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,247,159,247,159,247,159,247,159,247,159,247,159,255,207,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,225,255,249,255,229,255,253,255,79,255,127,255,127,255,252,255,248,255,245,255,239,243,223,231,191,207,255,159,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,254,253,255,242,255,225,247,232,255,192,255,255,159,255,109,255,115,191,255,79,255,135,207,55,231,27,239,208,239,208,255,192,255,224,255,224,255,240,255,252,255,255,247,11,247,11,255,3,255,7,255,7,255,15,255,63,255,255,255,255,255,254,255,248,255,240,255,240,255,224,255,192,255,128,255,255,255,127,255,31,191,79,31,239,143,119,239,19,231,25,255,128,255,128,255,192,251,255,240,255,240,255,248,255,255,255,255,1,255,97,159,243,31,255,15,255,15,255,31,255,255,255,255,255,253,251,189,243,190,249,215,252,227,255,214,255,191,249,255,255,223,127,187,207,183,217,255,3,255,231,31,255,255,231,191,240,255,224,255,224,255,224,255,224,255,240,255,252,255,255,143,115,135,121,199,57,207,49,255,1,255,3,255,15,255,255,255,255,255,255,255,255,255,255,254,255,253,255,253,255,254,255,255,255,255,193,221,227,221,163,227,157,119,137,111,215,159,255,252,255,248,255,245,255,239,243,223,231,191,207,255,159,255,255,111,255,159,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,247,255,239,255,238,255,241,255,255,255,31,255,111,255,247,255,123,255,187,255,221,255,221,255,251,255,231,249,199,248,206,241,225,222,247,200,255,225,255,255,221,255,189,255,189,255,189,255,219,255,231,255,255,255,255,255,255,255,252,255,240,255,233,246,217,230,219,228,186,197,188,195,255,255,63,255,207,63,247,15,251,7,131,127,97,159,57,199,156,227,134,249,193,254,223,224,239,240,243,252,252,255,255,255,61,195,93,163,219,39,155,103,151,111,15,255,63,255,255,255,255,255,252,255,242,253,238,241,220,227,220,227,184,199,184,199,255,255,63,255,207,63,247,15,251,7,251,7,253,3,13,243,176,207,191,192,223,224,223,224,239,240,243,252,252,255,255,255,29,227,29,227,59,199,59,199,119,143,79,191,63,255,255,255,255,255,252,255,243,252,239,240,223,224,223,224,185,198,144,239,255,255,63,255,207,63,247,15,251,7,251,7,237,19,197,59,163,220,183,200,223,224,223,224,239,240,243,252,252,255,255,255,9,247,157,99,251,7,251,7,247,15,207,63,63,255,255,255,255,255,254,255,252,255,253,255,255,240,255,224,247,255,247,254,255,255,127,255,63,255,191,255,255,15,255,7,239,255,239,127,247,254,247,254,247,252,247,252,247,254,243,254,255,224,255,255,47,255,47,255,239,63,175,127,175,127,207,127,255,7,255,255,255,254,255,252,254,249,253,242,251,228,255,224,255,240,255,248,255,127,247,63,115,159,57,207,159,103,207,51,255,1,243,12,255,252,243,254,225,255,193,255,131,255,135,255,207,255,255,255,251,4,255,1,255,3,255,135,255,207,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,247,255,231,255,195,254,255,255,255,231,247,203,255,225,223,225,191,203,127,159,255,63,199,252,135,252,131,255,168,255,176,255,152,255,193,255,255,255,255,127,255,255,127,255,31,255,63,255,127,255,255,255,255,255,255,255,255,255,255,255,255,254,255,250,255,240,249,238,247,232,255,255,255,255,255,195,255,11,127,163,255,7,255,135,255,15,255,192,255,208,255,193,255,192,255,193,255,227,255,255,255,255,255,15,255,223,255,63,255,31,255,95,255,191,255,255,255,255,255,255,240,255,229,255,202,255,133,255,138,255,133,255,192,255,255,255,127,255,31,255,175,255,87,255,163,255,93,255,61,255,224,255,252,255,254,255,254,243,255,227,255,199,255,207,255,255,125,255,251,255,247,255,239,255,31,255,255,255,255,255,255,255,255,255,255,224,255,192,248,199,248,199,255,192,255,192,255,192,255,255,255,7,255,7,31,231,31,231,255,7,255,7,255,7,255,197,255,192,255,192,255,207,248,223,255,207,255,224,255,255,255,87,255,7,255,7,255,255,15,255,255,255,255,7,255,255,255,255,248,255,243,255,240,255,248,255,247,255,239,255,223,255,255,255,31,255,207,255,15,255,31,255,239,255,215,255,235,255,223,255,223,255,223,255,223,255,223,255,231,255,248,255,255,255,227,255,227,255,227,255,235,255,219,255,231,255,31,255,255,255,255,255,248,255,243,255,240,255,248,255,247,255,239,255,215,239,255,255,31,255,207,255,15,255,31,255,239,255,247,255,235,247,216,231,223,224,223,224,223,224,222,225,231,248,248,255,255,255,27,231,163,95,227,31,235,23,219,39,231,31,31,255,255,255,255,255,255,255,255,255,255,254,255,254,255,254,255,254,255,252,255,255,255,135,255,3,255,49,255,121,255,121,127,241,191,97,255,252,253,250,255,241,255,227,255,199,255,143,255,159,255,255,191,115,255,127,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,143,159,224,231,248,185,222,222,231,223,225,255,255,255,191,255,31,255,31,255,63,191,111,127,207,255,143,223,224,223,224,191,192,191,192,191,192,206,241,240,255,255,255,255,15,255,135,255,65,61,227,99,255,127,255,255,255,255,255,255,255,255,248,255,243,253,231,250,207,244,159,249,158,243,157,255,255,255,31,255,207,63,231,95,179,207,121,143,249,47,249,246,155,248,207,253,231,255,243,255,254,255,252,255,252,255,255,111,249,223,243,191,231,255,207,255,127,255,63,255,63,255,255,255,255,255,255,255,252,255,252,255,252,255,254,255,253,255,252,255,255,255,255,255,59,127,131,143,115,255,3,255,255,143,251,254,253,253,254,254,251,253,227,243,204,255,128,255,128,255,255,255,115,127,131,255,7,127,135,255,11,255,3,255,35,255,255,255,255,242,255,243,253,247,255,248,255,248,255,203,255,199,252,255,255,127,255,111,191,111,255,159,247,247,255,251,15,255,247,227,255,224,255,242,255,252,255,248,255,248,255,254,255,255,255,15,251,7,255,119,255,255,143,255,151,255,151,255,31,255,255,255,255,254,255,191,250,191,226,255,146,255,146,255,202,255,202,255,255,127,255,125,223,253,71,255,73,255,73,255,83,255,83,255,196,255,224,255,225,255,227,255,243,253,243,254,249,255,252,255,35,255,7,255,135,255,199,255,207,191,207,127,159,255,63,255,255,255,255,252,255,243,252,239,243,239,247,215,239,223,237,255,255,255,255,63,255,207,255,183,255,23,255,187,255,219,255,219,246,213,239,236,243,224,255,240,255,252,255,255,255,255,255,203,255,251,127,247,175,247,15,207,63,63,255,255,255,255,255,255,255,199,255,192,255,216,255,223,239,220,239,217,239,211,238,255,255,243,239,43,255,239,255,131,125,239,255,171,127,123,175,222,229,221,226,251,228,239,249,198,187,233,255,252,239,255,255,251,55,219,119,187,247,119,239,239,223,223,63,63,255,255,255,255,255,255,252,255,243,251,207,251,143,251,15,253,7,254,147,255,255,255,63,255,207,223,243,223,241,223,240,191,224,127,201,255,209,255,224,231,255,248,255,255,231,255,248,255,255,255,255,255,139,255,7,231,255,31,255,255,231,255,31,255,255,255,255,255,255,255,255,227,255,221,227,190,193,191,192,191,192,191,192,255,255,255,255,199,255,187,199,125,131,253,3,253,3,253,3,223,224,239,240,247,248,251,252,253,254,254,255,255,255,255,255,251,7,247,15,239,31,223,63,191,127,127,255,255,255,255,255,255,255,255,248,254,241,252,243,254,225,248,231,252,227,240,207,255,255,255,127,247,59,103,185,123,189,127,173,255,77,239,85,249,198,225,158,253,159,251,157,223,186,239,220,255,227,255,255,231,155,195,191,195,63,131,127,135,127,135,127,255,135,255,255,255,255,248,255,231,255,223,254,223,252,191,248,185,255,184,255,255,255,31,255,231,255,251,127,251,63,253,31,157,255,29,255,220,191,222,191,231,159,248,199,255,192,255,224,255,248,255,255,59,253,123,253,231,249,31,227,255,3,255,7,255,31,255,255,255,255,255,223,255,204,255,224,255,224,255,244,255,230,255,226,255,255,255,251,255,51,255,7,255,7,255,47,255,103,255,71,255,240,255,252,255,254,255,254,255,254,255,254,255,254,255,255,255,15,255,63,255,127,255,31,255,63,255,31,255,127,255,255]},{"1638400":[116]},{"1638402":[194]},{"1638404":[184]},{"1638406":[190]},{"1638408":[255]},{"1638410":[177]},{"1638412":[170]},{"1638414":[191]},{"1638416":[174]},{"1638418":[255]},{"1638420":[175]},{"1638422":[184]},{"1638424":[190]},{"1638426":[183]},{"1638428":[173,117]},{"1638431":[189]},{"1638433":[177]},{"1638435":[174]},{"1638437":[255]},{"1638439":[182]},{"1638441":[170]},{"1638443":[185]},{"1638445":[255]},{"1638447":[184]},{"1638449":[175,127,127,116]},{"1638454":[194]},{"1638456":[184]},{"1638458":[190]},{"1638460":[255]},{"1638462":[177]},{"1638464":[170]},{"1638466":[191]},{"1638468":[174]},{"1638470":[255]},{"1638472":[175]},{"1638474":[184]},{"1638476":[190]},{"1638478":[183]},{"1638480":[173,117]},{"1638483":[189]},{"1638485":[177]},{"1638487":[174]},{"1638489":[255]},{"1638491":[172]},{"1638493":[184]},{"1638495":[182]},{"1638497":[185]},{"1638499":[170]},{"1638501":[188]},{"1638503":[188]},{"1638505":[255]},{"1638507":[184]},{"1638509":[175,127,127,116]},{"1638514":[184]},{"1638516":[177]},{"1638518":[255]},{"1638520":[181]},{"1638522":[184]},{"1638524":[184]},{"1638526":[180]},{"1638528":[199]},{"1638530":[255]},{"1638532":[178]},{"1638534":[189]},{"1638536":[216]},{"1638538":[188,117]},{"1638541":[189]},{"1638543":[177]},{"1638545":[174]},{"1638547":[255]},{"1638549":[171]},{"1638551":[178]},{"1638553":[176]},{"1638555":[255]},{"1638557":[180]},{"1638559":[174]},{"1638561":[194]},{"1638563":[255]},{"1638565":[184]},{"1638567":[175,127,127,116]},{"1638572":[189]},{"1638574":[177]},{"1638576":[178]},{"1638578":[188]},{"1638580":[255]},{"1638582":[178]},{"1638584":[188]},{"1638586":[255]},{"1638588":[170,117]},{"1638591":[188]},{"1638593":[182]},{"1638595":[170]},{"1638597":[181]},{"1638599":[181]},{"1638601":[255]},{"1638603":[180]},{"1638605":[174]},{"1638607":[194]},{"1638609":[255]},{"1638611":[189]},{"1638613":[184,127,127,118]},{"1638618":[181]},{"1638620":[178]},{"1638622":[176]},{"1638624":[177]},{"1638626":[189]},{"1638628":[255]},{"1638630":[192]},{"1638632":[184]},{"1638634":[187]},{"1638636":[181]},{"1638638":[173,127,127,118]},{"1638643":[173]},{"1638645":[170]},{"1638647":[187]},{"1638649":[180]},{"1638651":[255]},{"1638653":[192]},{"1638655":[184]},{"1638657":[187]},{"1638659":[181]},{"1638661":[173,127,127,118]},{"1638666":[176]},{"1638668":[170]},{"1638670":[183]},{"1638672":[184]},{"1638674":[183]},{"1638676":[188]},{"1638678":[255]},{"1638680":[189]},{"1638682":[184]},{"1638684":[192]},{"1638686":[174]},{"1638688":[187,127,127,118]},{"1638693":[189]},{"1638695":[190]},{"1638697":[187]},{"1638699":[189]},{"1638701":[181]},{"1638703":[174]},{"1638705":[255]},{"1638707":[187]},{"1638709":[184]},{"1638711":[172]},{"1638713":[180,127,127,118]},{"1638718":[189]},{"1638720":[177]},{"1638722":[178]},{"1638724":[174]},{"1638726":[191]},{"1638728":[174]},{"1638730":[188]},{"1638732":[255]},{"1638734":[189]},{"1638736":[184]},{"1638738":[192]},{"1638740":[183,127,127,118]},{"1638745":[189]},{"1638747":[184]},{"1638749":[192]},{"1638751":[174]},{"1638753":[187]},{"1638755":[255]},{"1638757":[184]},{"1638759":[175]},{"1638761":[255]},{"1638763":[177]},{"1638765":[174]},{"1638767":[187]},{"1638769":[170,127,127,118]},{"1638774":[178]},{"1638776":[172]},{"1638778":[174]},{"1638780":[255]},{"1638782":[185]},{"1638784":[170]},{"1638786":[181]},{"1638788":[170]},{"1638790":[172]},{"1638792":[174,127,127,118]},{"1638797":[188]},{"1638799":[180]},{"1638801":[190]},{"1638803":[181]},{"1638805":[181]},{"1638807":[255]},{"1638809":[192]},{"1638811":[184]},{"1638813":[184]},{"1638815":[173]},{"1638817":[188,127,127,118]},{"1638822":[182]},{"1638824":[178]},{"1638826":[188]},{"1638828":[174]},{"1638830":[187]},{"1638832":[194]},{"1638834":[255]},{"1638836":[182]},{"1638838":[178]},{"1638840":[187]},{"1638842":[174,127,127,118]},{"1638847":[173]},{"1638849":[170]},{"1638851":[187]},{"1638853":[180]},{"1638855":[255]},{"1638857":[185]},{"1638859":[170]},{"1638861":[181]},{"1638863":[170]},{"1638865":[172]},{"1638867":[174,127,127,118]},{"1638872":[188]},{"1638874":[192]},{"1638876":[170]},{"1638878":[182]},{"1638880":[185]},{"1638882":[255]},{"1638884":[185]},{"1638886":[170]},{"1638888":[181]},{"1638890":[170]},{"1638892":[172]},{"1638894":[174,127,127,118]},{"1638899":[172]},{"1638901":[170]},{"1638903":[188]},{"1638905":[189]},{"1638907":[181]},{"1638909":[174]},{"1638911":[255]},{"1638913":[189]},{"1638915":[184]},{"1638917":[192]},{"1638919":[174]},{"1638921":[187,127,127,118]},{"1638926":[173]},{"1638928":[174]},{"1638930":[188]},{"1638932":[174]},{"1638934":[187]},{"1638936":[189]},{"1638938":[255]},{"1638940":[185]},{"1638942":[170]},{"1638944":[181]},{"1638946":[170]},{"1638948":[172]},{"1638950":[174,127,127,118]},{"1638955":[174]},{"1638957":[170]},{"1638959":[188]},{"1638961":[189]},{"1638963":[174]},{"1638965":[187]},{"1638967":[183]},{"1638969":[255]},{"1638971":[185]},{"1638973":[170]},{"1638975":[181]},{"1638977":[170]},{"1638979":[172]},{"1638981":[174,127,127,118]},{"1638986":[177]},{"1638988":[194]},{"1638990":[187]},{"1638992":[190]},{"1638994":[181]},{"1638996":[174]},{"1638998":[255]},{"1639000":[172]},{"1639002":[170]},{"1639004":[188]},{"1639006":[189]},{"1639008":[181]},{"1639010":[174,127,127,118]},{"1639015":[177]},{"1639017":[194]},{"1639019":[187]},{"1639021":[190]},{"1639023":[181]},{"1639025":[174]},{"1639027":[255]},{"1639029":[172]},{"1639031":[170]},{"1639033":[188]},{"1639035":[189]},{"1639037":[181]},{"1639039":[174,127,127]},{"1671170":[152,1,181,86]},{"1671178":[24]},{"1671180":[255,127]},{"1671186":[188,2,255,127]},{"1671194":[201,105,255,127]},{"1671202":[198,24,173,57]},{"1671210":[184]},{"1671212":[61,67]},{"1671218":[4,23,255,127]},{"1671228":[255,127]}] \ No newline at end of file +[{"35":[92,0,136,161]},{"47":[34,0,255,161,234]},{"87":[0]},{"89":[161]},{"204":[92,66,128,161]},{"215":[92,150,210,160,234]},{"2379":[34,69,129,160]},{"18169":[191,154,197,160]},{"20581":[49]},{"20636":[49,49]},{"20804":[168]},{"20859":[160,176]},{"21027":[0]},{"21082":[0,0]},{"21809":[92,169,187,160]},{"21847":[34,129,188,160,234]},{"21854":[34,19,141]},{"21858":[234,234]},{"24418":[92,84,244]},{"24422":[234,234]},{"26189":[92,227,243,160,96,234]},{"27785":[160]},{"27789":[160]},{"27884":[160]},{"27887":[176]},{"30972":[178,154,160]},{"30994":[52,155,160]},{"31001":[178,154,160]},{"31011":[52,155,160]},{"31046":[54,208,160]},{"31102":[34,130,143,160,234,234,234,234,234,234]},{"32725":[48]},{"32727":[11,5]},{"50088":[29,208,160]},{"50445":[191,80,128,48]},{"50965":[191,80,128,48]},{"51006":[34,123,187,160,234,234,234,234]},{"53095":[34,159,208,160]},{"59775":[1,8]},{"59778":[1,7]},{"60790":[30,209,160]},{"61077":[43,171,160]},{"61110":[34,134,185,160,234]},{"62723":[34,135,130,160]},{"65511":[34,212,227,160]},{"65778":[34]},{"65780":[134,160,234,234]},{"65879":[34,196,183,160,234]},{"65894":[34,242,183,160]},{"66284":[34,21,184,160]},{"66292":[92,153,239,160]},{"66579":[234,234,234,234,234,234,34,165,128,160,208]},{"67552":[34,58,235,160,234,234,234,234,234]},{"67579":[34,70,128,164]},{"67619":[34,143,128,160]},{"67793":[34,179,209,160,234,234]},{"67934":[206,240,160]},{"68495":[34,174,144,160,208,6,234]},{"68584":[206,240,160]},{"69776":[34,174,144,160,208,4,234]},{"70410":[206,240,160]},{"71576":[234,234,234,234,234,234]},{"71853":[34,146,239,160,234]},{"72216":[23,208,160]},{"72241":[34,242,183,160]},{"72246":[157,143,160]},{"72893":[100,17,234,234]},{"72927":[234,234,234,234]},{"72944":[100,17,234,234]},{"73041":[34,137,144,160]},{"73263":[210,226,160]},{"73340":[34,236,128,160,234]},{"73734":[23,220,160,234,234,234,234]},{"73937":[34,2,184,160]},{"74833":[34,70,128,164]},{"76423":[34,217,227,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"78178":[34,74,209,160,34,130,143,160,234,234]},{"79603":[34,35,208,160]},{"79767":[34,194,209,160]},{"82676":[206,240,160]},{"87892":[34,111,239,160,234,234,234,234,234]},{"88488":[4]},{"90651":[34,116,226,160,234,234]},{"130070":[177,198,249,201,198,249]},{"166331":[34,137,144,160]},{"170621":[156,232,28,234]},{"173045":[102,171,160]},{"173058":[102,171,160]},{"173307":[102,171,160]},{"173320":[102,171,160]},{"183384":[34,28,240,160,234]},{"186959":[80]},{"186977":[80]},{"187009":[80]},{"187779":[156,232,28,234]},{"187802":[34,137,144,160]},{"187819":[234,234,234,234]},{"187902":[34,160,144,160]},{"187922":[29,128,162]},{"188010":[234,234,234,234]},{"188063":[216,223,160]},{"188153":[0]},{"188213":[0,128,162]},{"188234":[135,226,160]},{"188261":[34,0,128,164,96]},{"188337":[34,151,141,160]},{"189655":[34,38,185,160,234,234]},{"189691":[234,234,234,234]},{"191204":[29,128,162]},{"191235":[234,234,234,234]},{"191439":[34,58,186,160,234,234]},{"191750":[156,232,28,234]},{"191760":[234,234,234,234,234]},{"191783":[234,234,234,234]},{"191797":[234,234,234,234]},{"191944":[234,234,234,234]},{"191967":[34,78,186,160,234,234]},{"192037":[34,160,144,160]},{"192057":[29,128,162]},{"192083":[34,156,134,160,234,234]},{"192095":[34,218,184,160,234]},{"192121":[252,184,160]},{"192140":[34,73,135,160,234]},{"192151":[234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192286":[34,156,131,160]},{"192350":[227,131,160]},{"192378":[73,131,160]},{"192463":[6,131,160]},{"192506":[34,175,131,160,234,234,234,234,234,234]},{"192561":[19,131,160]},{"192650":[34,209,130,160,176,24,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"192877":[179,128,162]},{"192887":[34,142,134,160]},{"192893":[34,160,144,160]},{"192913":[29,128,162]},{"192937":[179,128,162]},{"192957":[179,128,162]},{"192975":[179,128,162]},{"192985":[179,128,162]},{"193005":[234,234,234,234]},{"193014":[34,137,144,160]},{"193025":[26,135,160]},{"193033":[34,137,144,160]},{"193042":[234,234,234,234]},{"193140":[34,167,169,160]},{"193157":[34,160,169,160]},{"193440":[34,104,206,160]},{"193472":[65,223,160]},{"193546":[34,104,206,160]},{"193578":[170,222,160]},{"193854":[34,165,134,160]},{"193859":[32]},{"193888":[150,184,160]},{"194141":[34,21,185,160,234,234,234,234,234]},{"194177":[34,182,184,160,96,234,234,234,234,234,234,234,234]},{"194792":[29,128,162]},{"194806":[29,128,162]},{"195327":[34,76,134,160,240,2,96,234]},{"195440":[234,234,234,234]},{"195522":[234,234,234,234]},{"195539":[34,139,187,160]},{"195589":[107,166,160]},{"195710":[34,129,166,160,234,234,234,234,234]},{"195735":[234,234,234,234,234,234]},{"195743":[65,166,160]},{"195909":[76,166,160]},{"196477":[34,160,144,160]},{"196497":[34,137,144,160]},{"197750":[21,182,160]},{"198721":[34,100,205,160,234,234]},{"199084":[6,240]},{"199188":[234,234,234,234,234,234,234,234]},{"199596":[34,113,134,160]},{"199659":[34,114,157,160,96,234]},{"199950":[34,149,134,160]},{"199964":[56,166,160]},{"199993":[34,88,166,160]},{"200070":[34,99,134,160]},{"200470":[34,92,134,160]},{"200845":[34,106,134,160,201]},{"200851":[240]},{"200853":[34,106,134,160]},{"200858":[8]},{"200893":[34,113,134,160]},{"201132":[34,216,234,160,234,234]},{"208729":[92,99,187,160,96]},{"208796":[22,244]},{"208799":[41,1,208]},{"208969":[122,134,160]},{"208994":[34,113,134,160,234,234]},{"209010":[139]},{"209017":[29,128,162]},{"209071":[234,234,234,234]},{"209098":[9,135,160]},{"209199":[41,247]},{"209579":[29,128,162]},{"209945":[29,128,162]},{"209976":[234,234,234,234]},{"210032":[234,234,234,234]},{"210057":[92,142,206,160,234,234,234,234]},{"210069":[234,234,234,234]},{"210081":[234,234,234,234]},{"210164":[192,134,160]},{"210233":[29,128,162]},{"211398":[234,234,234,234]},{"211413":[248,134,160]},{"212293":[0,128,162]},{"212575":[234,234,234,234]},{"213169":[198,131,160]},{"214100":[169,0,234]},{"215334":[92,130,205,160,234,234,234,234,234,234,234,234,234,234,234,234]},{"215373":[175,219,160]},{"217490":[34,134,208,160]},{"217579":[34,183,182,160]},{"224597":[34,180,205,160]},{"225501":[34,228,234,160,234,234]},{"225992":[34,189,236,160]},{"226026":[34,124,206,160,234]},{"226304":[34,229,205,160,234]},{"229522":[115]},{"229524":[133,0,156]},{"229529":[173,123,3,208,93]},{"229574":[34,183,227,160]},{"230816":[197,169,160]},{"230955":[197,169,160]},{"233256":[200,142,160]},{"233266":[34,165,128,160]},{"233297":[34,192,227,160,234]},{"233987":[180,207,160]},{"234731":[34,17,208,160]},{"234747":[34,203,227,160]},{"235953":[34,100,131,160,144,3]},{"236024":[252,191,160]},{"236047":[151,182,160]},{"237653":[34,25,253,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"237676":[34,194,252,160]},{"237682":[234,234,234,234,234]},{"238447":[234,234,234,234,234]},{"238458":[226,186,160]},{"238498":[34,147,185,160,128,3]},{"238751":[34,200,206,160]},{"238964":[34,200,206,160]},{"239190":[34,200,206,160]},{"239964":[100,209,160]},{"240196":[234,234,234,234,234,234,34,192,128,160,208]},{"241065":[16]},{"241115":[34,6,206,160]},{"241165":[34,6,206,160]},{"241175":[34,167,235,160]},{"241294":[34,6,206,160]},{"241304":[34,167,235,160]},{"241814":[34,6,206,160,24,125,139,176]},{"241868":[234,234,234,234]},{"241877":[34,6,206,160,24,125,139,176]},{"242973":[255]},{"243003":[255]},{"243060":[34,227,208,160,234]},{"243067":[234,234,34,87,203,160,234]},{"250411":[34,88,235,160,234,234]},{"250420":[34,36,206,160,234]},{"250478":[34,70,206,160,234]},{"270714":[201,3,144]},{"271374":[201,3,176]},{"273608":[34,171,172,160,76,230,172]},{"275716":[34,143,172,160,234]},{"276202":[34,198,172,160,76,8,183,32,86,248,107]},{"279550":[64]},{"279552":[49,80,127]},{"279601":[34,156,128,160,234]},{"279644":[4,132,160,34,252,227,160,234,234]},{"280045":[234,234,234]},{"280055":[234,234,234,234,234]},{"280062":[234,234,234,234]},{"280265":[154,197,160]},{"280287":[170,196,160]},{"280314":[154,197,160]},{"280335":[92,88,170,160,234]},{"281914":[234,234,234,234]},{"283541":[34,177,183,160,234,234]},{"285863":[34,215,235,160,234]},{"285881":[34,6,206,160]},{"285891":[34,114,235,160]},{"295207":[34,152,252,160]},{"295219":[34,177,252,160]},{"296429":[34,136,188,160,234]},{"296466":[138,198]},{"296471":[139,198]},{"296480":[106,200]},{"296488":[138,198]},{"296493":[139,198]},{"296502":[106,200,34,0,128,160]},{"296583":[34,137,144,160]},{"296619":[90,201]},{"296810":[186,195]},{"297038":[218,193]},{"297052":[202,194]},{"297087":[34,128,131,160,234,176]},{"297144":[170,196]},{"297200":[218,193]},{"297225":[202,194]},{"297263":[91,202]},{"297292":[34,163,184,160]},{"297309":[98,202]},{"304330":[240]},{"304340":[240]},{"304350":[240]},{"304360":[240]},{"304370":[240]},{"304380":[240]},{"304390":[240]},{"304400":[240]},{"304410":[240]},{"304420":[240]},{"304430":[240]},{"304440":[240]},{"304765":[92,90,128,162]},{"313527":[189,247]},{"324619":[34,178,142,160]},{"324675":[34,205,208,160]},{"324896":[34,211,129,160,34,181,208,160,234,234,234,234,234,234]},{"324996":[34,2,184,160]},{"325565":[6,31,64,18,1,63,20,1,63,19,31,66,26,31,75,26,32,75,37,45,63,41,32,63,42,60,63]},{"342245":[34,142,130,160,34,81,208,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"343854":[0,1]},{"343880":[50]},{"343898":[50]},{"344082":[234,234,234,234,234,234,234,234,34,160,144,160]},{"344119":[34,160,144,160]},{"344185":[34,160,144,160]},{"344248":[34,160,144,160]},{"344312":[34,160,144,160]},{"344375":[34,160,144,160]},{"344441":[34,160,144,160]},{"344499":[34,160,144,160]},{"344565":[34,160,144,160]},{"344623":[34,160,144,160]},{"344689":[34,160,144,160]},{"344747":[34,160,144,160]},{"344813":[34,160,144,160]},{"344871":[34,160,144,160]},{"344937":[34,160,144,160]},{"345406":[34,206,143,160]},{"345531":[34,225,143,160,96]},{"345560":[34,225,143,160,96]},{"393133":[29,208,160]},{"412057":[234,234,234,234]},{"413109":[34,80,253,160]},{"413445":[34,86,129,160,234,234,234,234,234,234,234]},{"417380":[76,29]},{"417384":[104]},{"417388":[105]},{"417392":[130]},{"417396":[136,1]},{"417400":[136,1]},{"417406":[92,29]},{"417410":[120]},{"417414":[121]},{"417418":[146]},{"417422":[136,1]},{"417426":[136,1]},{"417448":[136,1]},{"417452":[136,1]},{"417456":[136,1]},{"417478":[136,1]},{"417482":[136,1]},{"417486":[136,1]},{"444489":[34,160,144,160]},{"449502":[34,133,209,160,234,234,234,234,234,234]},{"449516":[16,39]},{"449521":[15,39]},{"449575":[34,131,231,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449609":[34,161,231,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"449691":[34,110,231,160,234,234,234,234,234,234]},{"450109":[128]},{"450137":[34,207,144,160,96]},{"450208":[4]},{"450227":[34,134,252,160]},{"450334":[34,34,145,160]},{"450360":[34,225,172,160,144]},{"450366":[76,136,223,32,70,227,107,234,234,234]},{"450458":[34,27,174,160,234]},{"450492":[34,2,145,160,234,234,234]},{"450861":[34,49,174,160]},{"451151":[242]},{"451157":[244]},{"451163":[50,18]},{"451169":[52,18]},{"451292":[76,241,226]},{"451775":[34,163,252,160]},{"452340":[128]},{"452537":[34,20,147,160,234]},{"452559":[34,1,146,160,234]},{"452581":[34,38,147,160,234]},{"452634":[96]},{"453064":[34,78,151,160,96]},{"453452":[242]},{"453458":[244]},{"453464":[50,18]},{"453470":[52,18]},{"453536":[128]},{"453538":[126,0]},{"453542":[64]},{"453546":[34,207,182,160,234,234,76,230,236]},{"453867":[34,56,147,160,234]},{"453892":[34,74,147,160]},{"454092":[34,52,145,160,234,234,234,234,234]},{"454233":[34,52,145,160,234,234,234,234,234]},{"454256":[34,143,184,160,234]},{"454282":[34,52,145,160,234,234,234,234,234]},{"454459":[34,52,145,160,234,234,234,234,234]},{"456591":[19]},{"456599":[18]},{"456607":[20]},{"456631":[21]},{"457299":[34,70,130,160]},{"457344":[34,180]},{"457347":[160,234,234,234,234]},{"457367":[176,134]},{"457374":[33]},{"457503":[34,106,203,160]},{"457513":[34,144,203,160,128,18,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457783":[34,66,185,160,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457819":[34,19,146,160,76,119,252,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,34,99,226,160,128,39,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234,234]},{"457912":[34,203,145,160]},{"457924":[34,230,145,160]},{"457948":[34,131,145,160]},{"457960":[34,167,145,160]},{"457966":[127]},{"457968":[4]},{"457986":[34,209,183,160,234,234,234,234,234,234,234,234]},{"458004":[38]},{"484946":[74,179,35]},{"485100":[34,145,211,160]},{"485416":[34,156,175,35,183,124,234]},{"485439":[183,124,234]},{"485459":[183,124,234]},{"485466":[34,119,179,35]},{"485485":[34,178,176,35,76,253,232]},{"486667":[34,44,129,164,234,234]},{"486677":[34,44,129,164,234,234]},{"486698":[34,57,129,164,234,234]},{"487935":[34,185,211,160]},{"488156":[34,185,211,160]},{"488213":[34,185,211,160]},{"488242":[34,185,211,160]},{"488309":[34,185,211,160]},{"488340":[34,185,211,160]},{"488721":[34,185,211,160]},{"489560":[34,185,211,160]},{"490022":[34,185,211,160]},{"490060":[34,185,211,160]},{"490164":[34,185,211,160]},{"490184":[34,185,211,160]},{"490209":[34,185,211,160]},{"490257":[34,185,211,160]},{"490438":[34,201,211,160,96]},{"561458":[12]},{"561460":[30]},{"561462":[63]},{"561464":[127]},{"561466":[127]},{"561468":[63]},{"561470":[19]},{"561473":[12,18,45,94,82,46,19,0]},{"561482":[112]},{"561484":[248,0,252,0,238,0,254,0,254,0,252,0,0,112,136,116,234,154,234,100]},{"561840":[7]},{"561842":[15]},{"561844":[10]},{"561846":[9,1,12,4,7,3,3]},{"561856":[5,8,13,14,11,4,3]},{"561864":[184,0,120,96,254,192,62,0,127,0,254]},{"561876":[254]},{"561878":[8]},{"561880":[248,144,28,246,162,54,220]},{"883789":[34,119,130,160]},{"883797":[234,234,234,234,234,234]},{"900244":[34,25,228,160,208,39,234,234,234,234,234,234]},{"900437":[92,87,228,160,234]},{"900447":[34,97,239,160,234,234,234]},{"900458":[34,35,208,160]},{"917533":[188,170,191,174,201,172,184,183,189,178,183,190,174,248,188,170,191,174,201,186,190,178,189,249,172,184,183,189,178,183,190,174,251]},{"917567":[223]},{"917575":[223]},{"917582":[223]},{"917590":[223]},{"917596":[172,170,183,216,189,255,194,184,190]},{"917606":[189,170,180,174,248,182,174,255,188,184,182,174]},{"917619":[185,181,170,172,174,249,183,178,172,174,205,251,252,0,247,228,248,255,249]},{"917639":[254,113,251,252,0,247,255,248,228,249,255,254,113,251,252,0,247,255,248]},{"917659":[249]},{"917662":[113]},{"917664":[252,0,247,228,248,255,254,114,251,252,0,247,255,248,228,254,114,251,178,216,182,255,179,190,188,189,255,176,184,178,183,176,248,184,190,189,255,175,184,187,255,170,255,185,170,172,180,249,184,175,255,188,182,184,180,174,188,205,251,178,216,191,174,255,175,170,181,181,174,183,248,170,183,173,255,178,255,172,170,183,216,189,249,176,174,189,255,190,185,200,255,189,170,180,174,250,246,189,177,178,188,205,251,184,183,181,194,255,170,173,190,181,189,188,248,188,177,184,190,181,173,255,189,187,170,191,174,181,249,170,189,255,183,178,176,177,189,205,251,194,184,190,255,172,170,183,255,185,190,188,177,255,193,248,189,184,255,188,174,174,255,189,177,174,249,182,170,185,205,251,185,187,174,188,188,255,189,177,174,255,170,248,171,190,189,189,184,183,255,189,184,255,181,178,175,189,249,189,177,178,183,176,188,255,171,194,255,194,184,190,205,251,192,177,174,183,255,194,184,190,255,177,170,188,255,170,248,188,192,184,187,173,200,255,185,187,174,188,188,255,171,249,189,184]},{"917909":[188,181,170,188,177,255,178,189,205,251,12,36,131,154,99,255,117,40,113,124,95,110,54,20,251,170,187,174,255,192,174,255,187,174,170,181,181,194,248,188,189,178,181,181,255,187,174,170,173,178,183,176,249,189,177,174,188,174,198,251,179,174,174,195,174,199,255,189,177,174,187,174,248,187,174,170,181,181,194,255,170,187,174,255,170,249,181,184,189,255,184,175,255,189,177,178,183,176,188,205,251,176,184,255,171,174,255,170]},{"918018":[177,174,187,184,199,251,194,170,194,199,248,194,184,190,255,188,170,191,174,173,249,195,174,181,173,170,199,251,173,184,255,194,184,190,255,192,170,183,189,255,189,184,248,177,174,170,187,255,182,174]},{"918069":[188,170,194,249,189,177,178,188,255,170,176,170,178,183,198,250,254,121,45,246,255,255,228,255,183,184,246]},{"918097":[255,255,255,194,174,188,254,104,251,176,184,216,184,183,255,170,183,173,255,176,174,189,248,189,177,174,182,255,185,174,183,173,170,183,189,188,249,188,184,255,194,184,190,255,172,170,183,250,246,171,174,170,189,255,190,185,246,170,176,170,177,183,178,182,251,180,190,173,184,188,199,255,171,190,189,248,188,174,187,178,184,190,188,181,194,200,255,194,184,190,249,188,177,184,190,181,173,255,171,174,250,246,176,174,189,189,178,183,176,255,189,177,174,246,182,170,188,189,174,187,255,188,192,184,187,173,246,183,184,189,255,177,170,191,178,183,176,255,170,250,246,180,174,176,176,174,187,255,178,183,246,177,174,187,174,205,251,189,177,174,194,255,189,184,184,180,255,177,174,187,248,189,184,255,189,177,174,255,172,170,188,189,181,174,199,249,189,170,180,174,255,194,184,190,187,250,246,188,192,184,187,173,255,170,183,173,255,188,170,191,174,246,177,174,187,199,251,194,184,190,255,188,170,191,174,173,255,182,174,199,251,188,184,200,255,178,216,182,255,189,177,174,248,173,190,173,174,255,189,177,170,189,255,192,178,181,181,249,185,187,184,189,174,172,189,255,195,174,181,173,170,205,250,246,173,184,183,216,189,255,192,184,187,187,194,200]},{"918384":[178,246,176,184,189,255,189,177,178,188,246,172,184,191,174,187,174,173,205,251,171,174,255,172,170,187,174,175,190,181,199,251,254,107,2,252,6,177,174,194,200,255,172,184,182,174,255,175,178,183,173,248,182,174,255,170,183,173,255,177,174,181,185,249,182,174,199,251,254,107,2,252,6,178,216,182,255,178,183,255,189,177,174,248,172,170,188,189,181,174,249,171,170,188,174,182,174,183,189,205,251,176,184,255,183,184,187,189,177,255,189,184,248,189,177,174,255,189,177,187,184,183,174,205,251,181,174,189,216,188,255,185,190,188,177,255,178,189,248,175,187,184,182]},{"918528":[189,177,174,255,181,174,175,189,199,251,185,190,181,181,255,189,177,178,188,248,181,174,191,174,187,255,190,188,178,183,176,255,170,205,251,181,174,189,216,188,255,176,174,189]},{"918573":[184,190,189,248,184,175,255,177,174,187,174,199,251,178,255,181,178,180,174,248,189,170,181,180,178,183,176,200]},{"918602":[173,184,249,194,184,190,198,250,246,255,255,228,255,183,184,246,255,255,255,255,194,174,188,254,104,251,194,184,190,255,183,174,174,173,255,189,184,248,175,178,183,173,255,170,181,181,255,189,177,174,249,185,174,183,173,170,183,189,188,204,250,246,246,246,183,190,182,185,189,194,251,191,174,187,194,255,185,187,174,189,189,194,248,185,174,183,173,170,183,189,188,200,255,171,190,189,249,187,174,170,181,181,194,255,194,184,190,250,246,188,177,184,190,181,173,255,171,174,246,176,174,189,189,178,183,176]},{"918729":[189,177,170,189,246,188,192,184,187,173,255,178,183,255,189,177,174,250,246,175,184,187,174,188,189,199,251,254,107,2,252,6,177,178,255,254,106,200,248,177,170,191,174,255,194,184,190,255,171,174,174,183,249,189,177,178,183,180,178,183,176,255,170,171,184,190,189,250,246,182,174,198,246,170,187,187,187,187,187,176,176,177,177,204,246,204,255,204,255,204,251,179,190,188,189,255,170,255,181,178,189,189,181,174,248,175,190,187,189,177,174,187,255,189,184,255,189,177,174,249,188,170,183,172,189,190,170,187,194,205,251,189,177,174,255,188,170,183,172,189,190,170,187,194,199,248,249,185,190,181,181,255,182,194,255,175,178,183,176,174,187,251,177,174,194,170,200,255,254,106,199,248,181,184,183,176,255,189,178,182,174,255,183,184,249,188,174,174,205,250,246,194,184,190,255,192,170,183,189,255,170,246,182,170,188,189,174,187,255,188,192,184,187,173,198,246,250,246,192,174,181,181,255,176,184,184,173,255,181,190,172,180,246,192,178,189,177,255,189,177,170,189,205,251,178,189,255,184,172,172,190,187,188,255,189,184,248,182,174,255,189,177,170,189,255,178,255,181,178,180,174,249,189,184,170,188,189,255,170,183,173,255,179,170,182,200,250,246,171,190,189,255,172,177,174,174,188,174,255,170,183,173,246,172,187,170,172,180,174,187,188,255,178,188,246,171,174,189,189,174,187,250,246,194,184,190,255,181,178,180,174,198,246,255,255,228,255,172,177,174,174,188,174,246,255,255,255,255,179,170,182,254,104,251,170,183,194,192,177,184,200,255,178,255,177,170,191,174,248,189,177,178,183,176,188,255,189,184,255,173,184,200,249,194,184,190,255,188,174,174,255,189,177,184,188,174,250,246,162]},{"919129":[184,191,174,183,188,198,246,246,194,174,170,177,255,162,199,250,246,192,177,184,255,177,170,188,255,162,246,184,191,174,183,188,246,183,184,192,170,173,170,194,188,198,251,172,184,184,181,255,188,192,184,187,173,199,248,249,250,246,204,246,246,250]},{"919192":[204,246,246,250,246,185,181,174,170,188,174,255,188,170,191,174,255,190,188,251,176,190,170,187,173,188,199,255,177,174,181,185,199,248,189,177,174,255,172,187,174,174,185,174,187,249,254,106,255,178,188,255,177,174,187,174,199,251,254,109,1,172,184,184,181,255,171,174,170,183,188,200,248,171,190,189,255,178,255,189,177,178,183,180,249,194,184,190,255,188,177,184,190,181,173,250,246,182,184,195,194,255,184,191,174,187,255,189,184,246,189,177,174,255,181,184,188,189,246,192,184,184,173,188,205,251,254,109,1,189,177,170,189,216,188,255,170,248,185,187,174,189,189,194,255,188,192,184,187,173,200,249,171,190,189,255,178,216,182,255,184,181,173,250,246,170,183,173,255,184,181,173,205,255,192,177,194,246,173,184,183,216,189,255,194,184,190,255,176,184,246,173,184,255,170,181,181,255,189,177,174,250,246,177,170,187,173,255,192,184,187,180,246,192,177,178,181,174,255,178,255,177,170,183,176,246,184,190,189,255,178,183,255,189,177,178,188,250,246,177,190,189,205,251,254,109,1,188,170,177,170,188,187,170,177,181,170,200,255,178,248,170,182,205,255,194,184,190,255,192,184,190,181,173,249,173,184,255,192,174,181,181,255,189,184,250,246,175,178,183,173,255,189,177,174,255,163,246,185,174,183,173,170,183,189,188]},{"919499":[175,187,184,182,246,189,177,174,255,163,255,173,190,183,176,174,184,183,188,250,246,178,183,255,181,178,176,177,189,246,192,184,187,181,173,205,246,190,183,173,174,187,188,189,170,183,173,198,250,246,255,255,228,255,194,174,188,246,255,255,255,255,183,184,254,104,251,254,109,1,192,177,178,181,174,255,194,184,190,216,187,174,248,177,174,187,174,200,255,172,184,190,181,173,249,194,184,190,255,173,184,255,182,174,255,170,250,246,188,184,181,178,173,255,170,183,173,255,176,174,189,246,189,177,174,255,176,187,174,174,183,246,185,174,183,173,170,183,189,255,175,187,184,182,250,246,189,177,170,189,255,173,190,183,176,174,184,183,198,254,121,45,246,178,216,181,181,255,176,178,191,174,255,194,184,190,246,170,255,185,187,174,188,174,183,189,255,178,175,250,246,194,184,190,255,173,184]},{"919698":[254,109,1,181,178,180,174,200,255,178,255,188,178,189,248,177,174,187,174,200,255,170,183,173,255,189,174,181,181,249,194,184,190,255,192,177,170,189,255,189,184,250,246,173,184,198,246]},{"919746":[250,246,170,181,187,178,176,177,189,200,255,176,184,246,170,183,173,255,175,178,183,173,255,170,181,181,246,189,177,174,255,182,170,178,173,174,183,188,200,250,246,189,177,174,187,174,255,170,187,174,255,181,178,180,174,246,182,170,194,171,174,255,167,255,184,175,246,189,177,174,182,200]},{"919819":[178,255,173,190,183,183,184,250,246,170,183,194,182,184,187,174,205,255,178,216,182,246,184,181,173,205,251]},{"919847":[107,2,252,6,183,178,172,174,255,188,184,255,194,184,190,248,171,174,170,189,255,170,176,170,177,183,178,182,200,249,183,184,192,255,194,184,190,255,182,190,188,189,250,246,171,174,170,189,255,176,170,183,184,183,200,246,176,184,184,173]},{"919908":[181,190,172,180,199,251,254,107,2,252,6,184,177,255,170,181,188,184,255,194,184,190,248,175,184,187,176,184,189,255,189,177,174,249,182,184,184,183,255,185,174,170,187,181,200,250,246,173,178,176,183,190,188,205,255,176,184,246,171,170,172,180,255,170,183,173,255,175,178,183,173,246,178,189,199,251,254,109,1,172,170,191,174,255,178,183,255,188,184,190,189,177,248,174,170,188,189,255,177,170,188,255,170,249,172,184,184,181,255,178,189,174,182,251,254,109,1,181,184,184,180,255,194,184,190,255,177,170,191,174,248,189,177,174,255,176,187,174,174,183,249,185,174,183,173,170,183,189]},{"920057":[255,178,216,181,181,250,246,176,178,191,174,255,194,184,190,246,188,184,182,174,189,177,178,183,176,200,255,176,184,246,180,178,181,181,255,189,177,174,255,184,189,177,174,187,250,246,189,192,184,255,171,184,188,188,174,188,255,175,184,187,246,182,184,187,174,255,185,174,183,173,170,183,189,246,175,190,183,199,251,254,109,1,194,190,185,199,248,249,178,216,182,255,189,177,174,255,184,181,173,250,246,182,170,183,255,194,184,190,255,170,187,174,246,181,184,184,180,178,183,176,255,175,184,187,200]},{"920183":[178,216,181,181,255,180,174,174,185,255,178,189,250,246,188,177,184,187,189,255,170,183,173,246,188,192,174,174,189,200,255,176,184,255,178,183,189,184]},{"920222":[189,177,170,189,255,173,190,183,176,174,184,183,250,246,170,183,173,255,171,187,178,183,176,255,182,174,246,189,177,174,255,176,187,174,174,183,246,185,174,183,173,170,183,189,200,255,189,177,174,183,250,246,189,170,181,180,255,189,184,255,182,174,246,170,176,170,178,183,205,251,224,255,173,194,178,183,176,255,190,183,172,181,174,248,255,255,189,177,178,188,255,192,170,194,251,210,211,255,187,170,183,173,184,182,178,195,174,187,248,173,184,183,216,189,255,187,174,170,173,255,182]},{"920344":[200,249,176,184,255,171,174,170,189,255,176,170,183,184,183,199,251,172,170,191,174,255,189,184,255,181,184,188,189,248,184,181,173,255,182,170,183,200,255,176,184,184,173,249,181,190,172,180,205,251,248,224,255,181,184,188,189,255,192,184,184,173,188,251,173,170,183,176,174,187,199,248,173,174,174,185]},{"920421":[192,170,189,174,187,249,195,184,187,170,216,188,251,192,174,181,172,184,182,174,255,189,184,255,189,177,174,248,182,170,176,178,172,255,188,177,184,185,251,172,170,191,174,255,170,192,170,194,255,175,187,184,182]},{"920475":[188,180,194,255,172,170,171,171,170,176,174,188,251,225,255,181,170,180,174,255,177,194,181,178,170,248,249,255,170,181,188,184,255,170,255,188,177,184,185,185,174,251,227,255,180,170,180,170,187,178,180,184,248,255,255,191,178,181,181,170,176,174,251,227,255,173,174,188,174,187,189,248,249,255,255,255,255,255,255,178,189,216,188,255,177,184,189,251,224,226,255,185,184,189,178,184,183,188,199,248,249,192,178,188,177,255,192,170,189,174,187,175,170,181,181,251,226,255,174,170,188,189,255,185,170,181,170,172,174,248,249,227,255,172,170,188,189,181,174,251,248,255,181,170,180,174,255,255,177,178,187,178,170,177,251,173,184,183,216,189,255,189,170,181,180,255,189,184,248,182,174,255,184,187,255,189,184,190,172,177,255,182,194,249,188,178,176,183,199,251,181,190,182,171,174,187,179,170,172,180,188,248,178,183,172,205,255,194,184,190,255,188,174,174,249,174,182,200,255,192,174,255,188,170,192,255,174,182,205,251,225]},{"920707":[180,170,180,170,187,178,180,184,248,255,255,191,178,181,181,170,176,174,251,173,184,190,171,181,174,200,255,173,184,190,171,181,174,248,189,184,178,181,255,170,183,173,249,189,187,184,190,171,181,174,199,250,246,171,187,178,183,176,255,182,174,255,170,246,182,190,188,177,187,184,184,182,199,251,189,177,178,188,255,182,190,188,177,187,184,184,182,248,178,188]},{"920798":[171,190,188,194,249,171,187,174,192,178,183,176]},{"920811":[255,172,184,182,174,250,246,171,170,172,180,255,181,170,189,174,187,205,251,170,255,171,184,189,189,181,174,255,175,184,187,248,194,184,190,187,255,189,177,184,190,176,177,189,188,198,249,184,187,255,189,184,255,185,190,189,250,246,185,184,189,178,184,183,188,255,178,183,205,251,176,184,189,255,189,184,255,190,188,174,248,194,184,190,187,255,188,189,190,175,175,249,171,174,175,184,187,174,255,194,184,190,255,172,170,183,250,246,176,174,189,255,182,184,187,174,205,251,187,174,173,255,178,188,255,181,178,175,174,248,176,187,174,174,183]},{"920947":[178,188]},{"920950":[182,170,176,178,172,249,171,181,190,174,255,178,188,255,171,184,189,177,250,246,178,216,181,181,255,177,174,170,181,255,194,184,190,246,175,184,187,255,175,187,174,174,246,189,177,184,190,176,177,205,251,178,175,255,184,183,181,194,255,194,184,190,248,177,170,173,255,188,184,182,174,189,177,178,183,176,249,189,184,255,185,190,189,255,189,177,170,189,250,246,178,183,200,255,181,178,180,174,255,170,246,171,184,189,189,181,174,198,251,192,177,184,170,255,171,190,172,180,184,200,248,183,184,255,174,182,185,189,194,249,171,184,189,189,181,174,188,205,251,181,170,182,185,199,255,194,184,190,255,172,170,183,248,188,174,174,255,178,183,255,189,177,174,249,173,170,187,180,200,255,170,183,173,250,246,181,178,176,177,189,255,189,184,187,172,177,174,188,205,251,171,184,184,182,174,187,170,183,176,199,248,185,187,174,188,188,255,188,189,170,187,189,255,189,184,249,188,174,181,174,172,189,255,178,189,205,251,194,184,190,216,187,174,255,178,183,255,171,184,192,248,182,184,173,174,255,183,184,192,199,251,189,177,178,188,255,178,188,255,182,194,255,183,174,192,248,182,184,185,205,255,182,194,255,175,187,178,174,183,173,249,176,174,184,187,176,174,200,255,177,174,250,246,176,170,191,174,255,182,174,255,189,177,178,188,246,182,184,185,205,255,178,189,216,188,255,170,246,185,187,174,189,189,194,255,176,184,184,173,250,246,182,184,185,205,255,178,189,216,188,255,183,184,189,246,170,188,255,176,184,184,173,255,170,188,255,182,194]},{"921309":[184,181,173,255,182,184,185,200,255,178,250,246,182,178,188,188,255,182,194,255,184,181,173,246,182,184,185,205,255,171,190,189,255,178,189,216,188,246,188,189,178,181,181,255,170,255,176,184,184,173,250,246,182,184,185,205,251,175,178,183,170,181,181,194,199,255,192,174,248,176,174,189,255,189,184,255,185,181,170,194,249,178,183,191,178,188,171,181,174,255,182,170,183,199,251,178,189,216,188,255,189,177,174,248,185,184,192,173,174,187,205,255,181,174,189,216,188,249,172,170,190,188,174,255,188,184,182,174,250,246,182,178,188,172,177,178,174,175,251,188,185,181,178,188,177,199,248,188,185,181,170,188,177,199,255,181,174,189,216,188,249,176,184,255,189,170,180,174,255,170,250]},{"921481":[171,170,189,177]},{"921486":[251,175,174,174,181,255,189,177,174,248,185,184,192,174,187,199,255,194,184,190,255,172,170,183,249,183,184,192,255,181,178,175,189,255,181,178,176,177,189,250,246,187,184,172,180,188,199,255,187,184,172,180,246,184,183,199,251,192,174,255,177,170,191,174,255,189,177,174,248,185,174,183,173,170,183,189,255,184,175,249,172,184,190,187,170,176,174,199,255,187,184,172,180,250,246,184,183,199,255,198,251,192,174,255,177,170,191,174,255,189,177,174,248,185,174,183,173,170,183,189,255,184,175,249,185,184,192,174,187,199,255,187,184,172,180,250,246,184,183,199,255,198,251,192,174,255,177,170,191,174,255,189,177,174,248,185,174,183,173,170,183,189,255,184,175,249,192,178,188,173,184,182,199,255,187,184,172,180,250,246,184,183,199,255,198,251,170,255,182,190,188,177,187,184,184,182,199,248,173,184,183,216,189,255,174,170,189,205,249,175,178,183,173,255,170,255,192,178,189,172,177,205,251,178,189,216,188,255,170,255,171,184,184,180,199,248,194,184,190,255,170,187,174,255,183,184,192,249,181,178,189,189,174,187,170,189,174,199,251,178,255,175,184,190,183,173,255,170,248,188,177,178,183,194,255,182,170,187,171,181,174,199,249,183,184,255,182,184,187,174,255,177,184,185,188,199,251,170,255,172,184,182,185,170,188,188,199,255,178,248,172,170,183,255,183,184,192,255,175,178,183,173,249,189,177,174,255,171,184,188,188,205,251,194,184,199,255,194,184,190,255,175,184,190,183,173,248,170,255,182,170,185,199,255,185,190,188,177,255,193,249,189,184,255,188,174,174,255,178,189,205,251,178,189,216,188,255,189,177,174,255,178,172,174,248,187,184,173,199,255,175,187,174,174,195,174,249,187,170,194,255,189,178,182,174,205,251,187,184,173,255,189,177,170,189,248,188,177,184,184,189,188,255,175,178,187,174,198,249,181,174,189,216,188,255,171,190,187,183,255,170,181,181,250,246,189,177,174,255,189,177,178,183,176,188,199,251,192,174,255,172,170,183,255,172,177,178,181,181,248,184,190,189,255,192,178,189,177,255,189,177,178,188,199,251,181,174,189,188,255,188,174,189,248,174,191,174,187,194,189,177,178,183,176,255,184,183,249,175,178,187,174,200,255,170,183,173,255,182,174,181,189,250,246,189,177,178,183,176,188,251,189,178,182,174,255,189,184,255,182,170,180,174,248,189,177,174,255,174,170,187,189,177,249,188,177,170,180,174,200,255,187,170,189,189,181,174,200,250,246,170,183,173,255,187,184,181,181,251,188,189,184,185,199,248,249,177,170,182,182,174,187,255,189,178,182,174,199,251,175,178,183,170,181,181,194,199,255,192,174,248,172,170,183,255,185,181,170,194,255,189,177,174,249,188,184,183,176,255,184,175,255,189,178,182,174,199,251,182,170,180,174,255,171,181,184,172,180,188,199,248,189,177,187,184,192]},{"922143":[171,181,184,172,180,188,199,249,188,185,181,184,173,174,255,171,181,184,172,180,188,199,251,171,184,178,183,176,199,199,199,248,171,184,178,183,176,199,199,199,249,188,170,194,255,183,184,255,182,184,187,174,204,251,171,184,182,171,188,199,255,190,188,174,255,170,206,248,185,178,172,180,174,182,255,190,185,200,249,189,177,187,184,192,174,182,200,255,176,174,189,250]},{"922236":[177,190,187,189,199,251,178,189,216,188,255,170,248,189,174,187,187,170,187,178,190,182,205,255,178,249,177,184,185,174,255,192,174,255,175,178,183,173,255,170,250,246,181,178,195,170,187,173,199,251,194,184,199,255,194,184,190,255,176,184,189,255,170,248,171,178,176,255,180,174,194,199,251,188,184,255,181,178,180,174,255,194,184,190,248,172,170,183,255,183,184,192,255,181,178,175,189,249,170,183,194,189,177,178,183,176,205,250]},{"922345":[170,183,194,189,177,178,183,176,199,251,192,174,255,172,184,190,181,173,255,188,189,170,187,174,248,170,189,255,189,177,178,188,255,170,181,181,249,173,170,194,200,255,184,187,255,194,184,190,250,246,180,183,184,192,200,255,171,174,170,189,246,176,170,183,184,183,204,251,178,189,216,188,255,189,177,174,248,182,170,188,189,174,187,255,188,192,184,187,173,199,249,184,187,255,183,184,189,250,246,246,255,255,255,255,255,255,255,255,255,175,184,184,181,199,246,251,254,107,2,252,6,254,106,200,255,194,184,190,255,176,184,189,255,189,177,174,248,188,192,184,187,173,199,254,103,249,183,184,192,255,181,174,189,188]},{"922500":[176,184,250,246,171,174,170,189,255,190,185,246,170,176,170,177,183,178,182,199,251,187,174,173,255,176,184,184,255,189,184,255,176,184,199,248,183,178,172,174,199,251,176,187,174,174,183,255,176,184,184,255,189,184,248,176,184,199,255,183,178,172,174,199,251,171,181,190,174,255,176,184,184,255,189,184,248,176,184,199,255,183,178,172,174,199,251,188,190,187,185,187,178,188,174,255,183,174,189,199,248,181,174,189,216,188,255,172,170,189,172,177,249,188,189,190,175,175,199,251,171,181,190,174,255,189,177,187,174,170,173,188,198,248,181,174,188,188,255,173,170,182,170,176,174,249,170,172,189,178,191,170,189,174,173,199,251,194,184,190,255,175,174,174,181,255,189,177,174,248,185,184,192,174,187,255,184,175,255,189,177,174,249,174,176,176,185,181,170,183,189,255,184,183,250,246,194,184,190,187,255,177,174,170,173,205,251,183,178,172,174,204,255,178,255,183,184,174,192,248,177,170,191,174,255,170,255,172,187,170,191,178,183,176,249,175,184,187,255,172,177,174,174,189,184,188,251,185,178,189]},{"922751":[192,184,190,181,173,255,171,174,248,185,187,184,190,173,199,251,178,189,216,188,255,189,177,174,255,171,181,190,174,248,172,170,183,174,200,255,194,184,190,255,172,170,183,249,183,184,192,255,185,187,184,189,174,172,189,250,246,194,184,190,187,188,174,181,175,255,192,178,189,177,246,181,170,176,199,251,188,184,182,174,189,177,178,183,176,255,178,188,248,182,178,188,188,178,183,176,204,249,189,177,174,255,171,178,176,255,180,174,194,198]},{"922862":[188,184,182,174,189,177,178,183,176,255,178,188,248,182,178,188,188,178,183,176,204,249,182,170,176,178,172,255,182,174,189,174,187,198,251,175,178,183,170,181,181,194,200,255,178,189,216,188,248,171,184,183,180,178,183,176,255,189,178,182,174,199,249,177,184,181,173,255,170,255,189,184,255,173,170,188,177,251,192,177,184,170,199,255,178,255,172,170,183,248,189,170,181,180,255,170,176,170,178,183,199,251,194,170,183,180,255,184,183,255,189,177,174,248,185,178,189,172,177,175,184,187,180,255,178,183,249,189,177,174,255,172,174,183,189,174,187,255,184,175,250,246,189,184,192,183,200,255,194,170,177,246,177,174,170,187,173,255,178,189,255,177,174,187,174,205,251,176,170,183,184,183,255,178,188,255,188,190,172,177,248,170,255,173,178,183,176,190,188,200,255,183,184,249,184,183,174,255,181,178,180,174,188,255,177,178,182,200,250,246,194,170,177,255,177,174,170,187,173,255,178,189,246,177,174,187,174,205,251,189,177,174,187,174,255,178,188,255,170,248,185,184,187,189,170,181,255,183,174,170,187,249,189,177,174,255,181,184,188,189,250,246,192,184,184,173,188,200,255,194,170,177,246,177,174,170,187,173,255,178,189,255,177,174,187,174,205,251,190,188,174,255,171,184,182,171,188,255,189,184,248,186,190,178,172,180,181,194,255,180,178,181,181,249,189,177,174,255,177,178,183,184,193,200,255,194,170,177,250,246,177,174,170,187,173,255,178,189,255,177,174,187,174,205,251,178,255,172,170,183,255,171,187,174,170,189,177,174,199,251,192,174,255,177,170,191,174,255,189,177,174,248,185,174,183,173,170,183,189,255,184,175,249,185,184,192,174,187,199,255,187,184,172,180,250,246,184,183,199,251,192,174,255,177,170,191,174,255,189,177,174,248,185,174,183,173,170,183,189,255,184,175,249,192,178,188,173,184,182,199,255,187,184,172,180,250,246,184,183,199,251,162,160,255]},{"923307":[190,185,174,174,188,205,248,165,255,170,187,187,184,192,188,205,249,192,178,183,255,187,190,185,174,174,188,199,250,246,192,170,183,189,255,189,184,255,185,181,170,194,198,246,255,255,228,255,194,174,188,246,255,255,255,255,183,184,254,104,251,181,174,189,188,255,173,184,255,189,177,178,188,199,251,192,177,174,187,174,255,170,187,174,255,194,184,190,248,176,184,178,183,176,198,249,188,189,187,170,178,176,177,189,255,190,185,199,251,180,174,174,185,255,185,181,170,194,178,183,176,198,248,255,255,228,255,194,174,188,249,255,255,255,255,183,184,254,104,251,201,192,178,188,177,178,183,176,255,185,184,183,173,201,248,249,255,184,183,255,191,170,172,170,189,178,184,183,251,185,178,172,180,255,188,184,182,174,189,177,178,183,176,248,189,184,255,189,177,187,184,192,255,178,183,205,254,105,251,194,184,190,255,189,184,188,188,255,189,177,178,188,198,248,255,255,228,255,194,190,185,249,255,255,255,255,192,187,184,183,176,254,104,251,194,184,190,216,187,174,255,177,184,183,174,188,189,200,248,188,184,255,178,216,181,181,255,176,178,191,174,249,194,184,190,255,170,255,185,187,174,188,174,183,189,205,251,194,184,190,255,188,190,187,174,198,248,255,255,228,255,184,177,255,194,174,170,177,249,255,255,255,255,190,182,254,104,251,192,174,181,181,255,178,255,173,184,183,216,189,248,192,170,183,189,255,178,189,200,255,188,184,249,189,170,180,174,255,178,189,255,171,170,172,180,251,178,255,173,184,183,216,189,255,182,190,172,177,248,181,178,180,174,255,194,184,190,200,255,188,184,249,177,170,191,174,255,189,177,178,188,250,246,192,184,187,188,174,246,171,184,184,182,174,187,170,183,176,251,178,255,176,187,170,183,189,255,194,184,190,248,189,177,174,255,170,171,178,181,178,189,194,255,189,184,249,171,181,184,172,180,250,246,175,178,187,174,171,170,181,181,188,200,246,173,184,183,216,189,255,181,184,188,174,246,189,177,178,188,255,189,184,255,170,250,246,185,178,180,178,189,251,188,184,200,255,178,189,255,188,190,187,174,248,192,184,190,181,173,255,171,174,255,183,178,172,174,249,189,184,255,180,178,181,181,255,176,170,183,184,183,198,250,246,189,177,174,188,174,255,188,177,184,190,181,173,246,177,174,181,185,255,178,183]},{"923842":[189,177,174,246,175,178,183,170,181,255,185,177,170,188,174,251,175,178,181,181,174,173,255,171,184,189,189,181,174,199,248,182,184,183,174,194,255,188,170,191,174,173,199,251,189,177,170,183,180,255,194,184,190,255,175,184,187,248,189,177,174,255,188,192,184,187,173,200,249,177,174,187,174,255,178,188,255,170,250,246,188,189,178,172,180,255,184,175,246,171,190,189,189,174,187,251,177,170,185,185,178,183,174,188,188,255,190,185,199,248,194,184,190,255,170,187,174,255,183,184,192,249,254,108,1,254,108,0,255,177,170,185,185,194,199,251,194,184,190,187,255,192,178,188,177,198,248,255,255,228,182,184,187,174,255,171,184,182,171,188,249,255,255,255,182,184,187,174,255,170,187,187,184,192,188,254,104,251,192,177,184,184,255,177,184,184,199,248,194,184,190,255,172,170,183,255,183,184,192,249,172,170,187,187,194,255,254,108,1,254,108,0,255,171,184,182,171,188,251,192,177,184,184]},{"924066":[177,184,184,199,248,194,184,190,255,172,170,183,255,183,184,192,249,177,184,181,173,255,254,108,1,254,108,0,255,170,187,187,184,192,188,251,194,184,190,255,176,184,189,255,170,181,181,255,178,248,172,170,183,255,176,178,191,174,255,194,184,190,200,249,177,174,187,174,216,188,255,194,184,190,187,250,246,187,190,185,174,174,188,255]},{"924151":[170,172,180,205,251,181,184,184,180,255,184,190,189,255,175,184,187,248,177,184,181,174,188,200,255,170,183,173,249,182,184,188,189,174,187,188,205,251,184,177,255,176,184,184,173,194,200,248,177,174,170,187,189,188,255,178,183,249,179,170,187,188,199,255,189,177,178,188,250,246,185,181,170,172,174,255,178,188,246,172,187,174,174,185,194,251,189,190,187,183,255,187,178,176,177,189,205,248,181,174,189,188,255,176,174,189,255,184,190,189,249,184,175,255,189,177,178,188,255,185,181,170,172,174,205,251,177,174,181,181,184,200,255,178,255,172,170,183,216,189,248,188,174,174,255,170,183,194,189,177,178,183,176,200]},{"924306":[189,170,180,174,255,182,174,255,192,178,189,177,250,246,194,184,190,205,251,177,174,187,174,216,188,255,170,255,189,177,178,183,176,248,189,184,255,177,174,181,185,255,194,184,190,200,249,176,184,184,173,255,181,190,172,180,199,251,194,184,190,255,183,174,174,173,255,189,184,248,171,174,170,189,255,189,177,174,255,189,184,192,174,187,249,170,189,255,189,177,174,255,189,184,185,255,184,175,250,246,189,177,174,255,182,184,190,183,189,170,178,183,205,251,194,184,190,255,172,170,183,255,175,178,183,173,248,188,189,190,175,175,255,178,183,255,189,177,174,249,189,184,192,174,187,255,170,189,255,189,177,174,250,246,189,184,185,255,184,175,255,189,177,178,188,246,182,184,190,183,189,170,178,183,205,246,172,184,182,174,255,188,174,174,255,182,174,255,178,175,250,246,194,184,190,255,192,184,190,181,173,255,181,178,180,174,246,177,174,170,181,174,173,205,251,194,184,190,255,188,177,184,190,181,173,255,171,174,248,177,174,170,173,178,183,176,255,189,184,255,189,177,174,249,172,170,188,189,181,174,204]},{"924558":[194,184,190,250,246,177,170,191,174]},{"924568":[170,255,185,184,187,189,170,181,246,189,177,174,187,174,255,183,184,192,205,246,188,170,194,255,177,178,255,170,183,194,189,178,182,174,250,246,194,184,190,255,181,178,180,174,205,251,181,178,175,174,198,255,181,184,191,174,198,248,177,170,185,185,178,183,174,188,188,198,255,189,177,174,249,186,190,174,188,189,178,184,183]},{"924650":[194,184,190,250,246,188,177,184,190,181,173,255,187,174,170,181,181,194,246,170,188,180]},{"924673":[178,188,200,255,192,170,188,246,189,177,178,188,255,176,174,183,174,187,170,189,174,173,250,246,171,194,255,188,189,184,184,185,188,255,170,181,190,246,184,187,255,188,189,184,184,185,188,255,179,174,189,198,251,194,184,190,255,188,177,184,190,181,173,248,185,181,170,194,255,189,177,170,189,249,175,181,190,189,174,255,175,184,187,255,189,177,174,250,246,192,174,170,189,177,174,187,191,170,178,183]},{"924774":[246,172,170,190,188,174,255,187,174,170,188,184,183,188,205,251,194,184,190,255,188,177,184,190,181,173,248,185,181,170,194,255,189,177,170,189,249,175,181,190,189,174,255,175,184,187,255,189,177,174,250,246,192,174,170,189,177,174,187,191,170,178,183,200,246,172,170,190,188,174,255,187,174,170,188,184,183,188,205,251,181,178,175,174,198,255,181,184,191,174,198,248,177,170,185,185,178,183,174,188,188,198,255,189,177,174,249,186,190,174,188,189,178,184,183,255,194,184,190,250,246,188,177,184,190,181,173,255,187,174,170,181,181,194,246,170,188,180,255,178,188,200,255,192,170,188,246,189,177,178,188,255,176,174,183,174,187,170,189,174,173,250,246,171,194,255,188,189,184,184,185,188,255,170,181,190,246,184,187,255,188,189,184,184,185,188,255,179,174,189,198,251,189,177,178,188,255,178,188,248,172,177,187,178,188,189,184,188,216,255,177,190,189,200,249,250,246,177,174,216,188,255,184,190,189,246,188,174,170,187,172,177,178,183,176,255,175,184,187,246,170,255,171,184,192,205,251,177,178,200,255,173,184,255,194,184,190,248,180,183,184,192,255,191,174,174,189,184,187,185,198,249,250,246,194,184,190,255,187,174,170,181,181,194,246,188,177,184,190,181,173,205,255,170,183,173,246,170,181,181,255,189,177,174,255,184,189,177,174,187,250,246,176,187,174,170,189,255,176,190,194,188,255,192,177,184,246,182,170,173,174,255,189,177,178,188,246,185,184,188,188,178,171,181,174,205,250,246,176,184,255,189,177,170,183,180,255,189,177,174,182,205,246,246,250,246,178,175,255,194,184,190,255,172,170,183,246,172,170,189,172,177,255,189,177,174,182,204,251,192,177,194,255,170,187,174,255,194,184,190,248,187,174,170,173,178,183,176,255,189,177,178,188,249,188,178,176,183,198,255,187,190,183,199,199,199,251,194,184,190,255,183,174,174,173,255,172,170,185,174,200,248,171,190,189,255,183,184,189,249,177,184,184,180,188,177,184,189,251,189,184,188,188,255,187,184,172,180,188,248,189,184,188,188,255,178,189,174,182,188,249,189,184,188,188,255,172,184,184,180,178,174,188,251,224,255,188,180,190,181,181,255,192,184,184,173,188,248,249,225,255,188,189,174,191,174,216,188,255,189,184,192,183,251,248,226,255,180,170,187,180,170,189,188,255,172,170,191,174,251,248,226,255,173,170,187,180,255,185,170,181,170,172,174,251,248,227,255,171,184,182,171,255,188,177,184,185,185,174,251,248,227,255,182,178,188,174,187,194,255,182,178,187,174,249,255,183,184,255,192,170,194,255,178,183,205,250,246,255,183,184,255,192,170,194,255,184,190,189,205,251,177,170,191,174,255,170,255,189,187,190,181,178,174,248,170,192,174,188,184,182,174,255,173,170,194,199,251,192,170,189,174,187,175,170,181,181,248,190,185,255,170,177,174,170,173,249,182,170,180,174,255,192,178,188,177,174,188,251,226,224,255,177,170,191,174,255,194,184,190,248,182,174,189,255,192,184,174,175,190,181,249,178,180,174,198,251,181,184,184,180,178,183,176,255,175,184,187,255,170,248,185,187,178,183,172,174,188,188,198,255,181,184,184,180,249,173,184,192,183,188,189,170,178,187,188,205,251,183,184,255,181,184,183,180,188,248,170,181,181,184,192,174,173,199,251,254,107,2,194,184,190,255,183,174,174,173,255,170,255,171,184,192,248,189,184,255,176,174,189,255,185,170,188,189,249,189,177,174,255,187,174,173,250,246,174,194,174,176,184,187,174,205,255,173,174,187,185,194,251,254,107,2,178,175,255,194,184,190,255,175,178,183,173,255,170,248,188,177,178,183,194,255,171,170,181,181,200,249,194,184,190,255,172,170,183,255,171,174,255,194,184,190,250,246,178,183,255,189,177,174,255,173,170,187,180,246,192,184,187,181,173,251,221,223,223,255,221,223,223,255,221,223,223,248,255,222,255,221,223,223,221,255,222,249,221,223,223,255,222,221,221,222,255,223,223,222,251,170,255,189,174,188,189,255,184,175,248,188,189,187,174,183,176,189,177,200,255,178,175,249,194,184,190,255,177,170,191,174,255,163,250,246,185,174,183,173,170,183,189,188,200,255,178,216,182,246,194,184,190,187,188,251,254,107,2,190,188,174,255,189,177,174,248,182,178,187,187,184,187,200,255,184,187,255,189,177,174,249,177,184,184,180,188,177,184,189,255,170,183,173,250,246,177,170,182,182,174,187,255,189,184,255,176,174,189,246,189,184,255,189,184,192,174,187,255,184,175,246,177,174,187,170,199,251,254,107,2,173,187,170,178,183,255,189,177,174,248,175,181,184,184,173,176,170,189,174,255,189,184,249,187,170,178,188,174,255,189,177,174,250,246,192,170,189,174,187,255,177,174,187,174,199,251,188,174,172,184,183,173,170,187,194,248,189,184,190,187,183,170,182,174,183,189,249,192,178,183,183,174,187,188,250,254,121,45,246,255,255,206,206,206,162,160,161,167,206,206,206,246,170,255,255,195,170,174,183,251,254,107,2,181,178,176,177,189,178,183,176,255,164,248,189,184,187,172,177,174,188,255,192,178,181,181,249,184,185,174,183,255,194,184,190,187,255,192,170,194,250,246,175,184,187,192,170,187,173,199,251,221,221,222,223,255,221,223,223,221,248,255,222,255,223,221,222,223,249,223,223,221,223,255,222,222,221,222,251,180,183,174,174,181,255,171,174,175,184,187,174,248,189,177,178,188,255,188,189,184,183,174,200,249,170,183,173,255,182,170,176,178,172,255,192,178,181,181,250,246,182,184,191,174,255,170,187,184,190,183,173,246,194,184,190,205]},{"926049":[254,107,2,184,183,181,194,255,170,187,187,184,192,188]},{"926064":[192,178,181,181,255,175,178,183,178,188,177,249,184,175,175,255,170,255,171,181,190,174,250,246,176,170,183,184,183,200,255,184,187,246,187,174,170,181,181,194,255,192,174,181,181,246,189,178,182,174,173,255,188,185,178,183,188,255,178,183,250,246,185,177,170,188,174,255,164,205,251,254,107,2,192,177,184,170,199]},{"926144":[194,184,190,248,175,184,190,183,173,255,189,177,178,188,249,189,178,181,174,199,255,194,184,190,250,246,188,177,184,190,181,173,246,188,172,187,174,174,183,188,177,184,189,246,189,177,178,188,255,170,183,173,255,188,174,183,173,250,246,178,189]},{"926206":[189,184]},{"926209":[191,174,174,189,184,187,185,199,251,254,107,2,189,177,178,183,176,188,255,172,170,183,255,171,174,248,180,183,184,172,180,174,173,255,173,184,192,183,200,249,178,175,255,194,184,190,255,175,170,183,172,194,250,246,194,184,190,187,188,174,181,175,255,170,246,173,170,188,177,178,183,176]},{"926282":[173,190,173,174,205,251,254,107,2,194,184,190]},{"926295":[172,170,183,248,187,174,175,181,174,172,189,249,170,176,170,177,183,178,182,216,188,250,246,174,183,174,187,176,194,255,192,178,189,177,246,188,192,184,187,173,200,255,171,190,176,201,183,174,189,246,184,187,255,177,170,182,182,174,187,205,251,254,107,2,170,181,181,255,187,178,176,177,189,255,188,189,184,185,248,172,184,181,181,170,171,184,187,170,189,174,249,170,183,173,255,181,178,188,189,174,183,250,246,178,172,174,255,178,188,255,171,170,172,180,246,192,178,189,177,255,182,194,255,171,187,170,183,173,246,183,174,192,255,178,183,191,174,183,189,178,184,183,251,254,107,2,194,184,190,255,188,177,170,181,181,255,183,184,189,248,185,170,188,188,204,255,192,178,189,177,184,190,189,249,189,177,174,255,187,174,173,255,172,170,183,174,251,254,107,2,194,184,190,255,172,170,183,255,190,188,174,248,175,178,187,174,255,187,184,173,255,184,187,249,171,184,182,171,184,188,255,189,184,255,185,170,188,188,251,254,107,2,180,183,184,172,180,255,174,182,255,173,184,192,183,248,170,183,173,255,189,177,174,182,255,171,184,182,171,249,189,177,174,182,255,173,174,170,173,205,251,254,107,2,189,177,178,188,255,178,188,255,170]},{"926579":[171,170,173,248,185,181,170,172,174,200,255,192,178,189,177,255,170,249,176,190,194,255,192,177,184,255,192,178,181,181,250,246,182,170,180,174,255,194,184,190,255,175,170,181,181,246,246,250,246,170,255,181,184,189,205,251,187,170,183,173,184,182,178,195,174,187,248,189,184,190,187,183,170,182,174,183,189,249,192,178,183,183,174,187,188,250,254,121,45,246,255,255,206,206,206,162,160,161,167,206,206,206,246,170,255,255,170,179,183,174,171,161,167,164,246,188,255,255,170,179,183,174,171,161,167,164,251,172,170,190,176,177,189,255,170,255,171,174,174,248,255,255,228,255,180,174,174,185,249,255,255,255,255,187,174,181,174,170,188,174,254,104,251,172,170,190,176,177,189,255,175,170,178,187,194,199,248,255,255,228,255,180,174,174,185,249,255,255,255,255,187,174,181,174,170,188,174,254,104,251,192,177,184,170,255,171,190,172,180,184,199,248,183,184,255,174,182,185,189,194,249,171,184,189,189,181,174,188,205,251,194,184,190,187,255,189,178,182,174,255,192,170,188,248,254,108,3,254,108,2,255,182,178,183,255,254,108,1,254,108,0,255,188,174,172,205,251,194,184,190,255,177,170,191,174,255,161,165,248,188,174,172,184,183,173,188,200,249,176,184,204,255,176,184,204,255,176,184,204,251,183,178,172,174,199,248,194,184,190,255,172,170,183,255,177,170,191,174,249,189,177,178,188,255,189,187,170,188,177,199,251,189,184,184,255,188,181,184,192,199,248,178,255,180,174,174,185,255,182,194,249,185,187,174,172,178,184,190,188,199,251,194,184,190,255,170,181,187,174,170,173,194,248,177,170,191,174,255,194,184,190,187,249,185,187,178,195,174,200,255,173,178,183,176,190,188,199,251,189,177,184,190,176,177,189,255,194,184,190,248,172,184,190,181,173,255,188,183,174,170,180,255,178,183,249,174,177,198,251,178,255,177,170,191,174,248,171,184,189,189,181,174,188,205,249,194,184,190,216,188,255,176,184,189,255,161,160,160,250,246,187,190,185,185,174,188,198,246,255,255,228,255,178,255,192,170,183,189,246,255,255]},{"927061":[255,183,184,255,192,170,194,199,251,183,178,172,174,199,255,177,184,181,173,255,178,189,248,190,185,255,188,184,183,199,255,188,177,184,192,249,189,177,174,255,192,184,187,181,173,255,192,177,170,189,250,246,194,184,190,255,176,184,189,199,251,175,178,183,174,199,255,178,255,173,178,173,183,216,189,248,192,170,183,189,255,194,184,190,187,249,182,184,183,174,194,255,170,183,192,170,194,188,205,251,173,190,173,174,199,255,194,184,190,248,170,181,187,174,170,173,194,255,177,170,191,174,249,178,189,251,172,184,184,181,199,255,170,255,171,174,174,199,248,177,174,187,174,216,188,255,161,160,160,249,187,190,185,174,174,188,205,251,192,177,184,170,199,255,170,255,175,178,188,177,199,248,194,184,190,255,192,170,181,180,174,173,249,189,177,178,188,255,170,181,181,255,189,177,174,250,246,192,170,194,255,177,174,187,174,198,251,194,184,190,255,189,177,178,183,180,255,181,178,175,174,248,178,188,255,187,184,190,176,177,198,255,178,249,176,190,174,188,188]},{"927301":[194,184,190,255,172,170,183,250,246,189,170,180,174,255,182,194,255,181,170,188,189,246,178,189,174,182,200,255,174,193,172,174,185,189,246,189,177,178,188,255,189,174,183,189,200,250,246,189,177,170,189,216,188,255,182,194,246,189,174,183,189,199,251,183,178,172,174,255,184,175,255,194,184,190,255,189,184]},{"927379":[172,184,182,174]},{"927384":[171,170,172,180,199,249,192,184,190,181,173,255,194,184,190,255,181,178,180,174,250,246,190,188,255,182,174,188,188,255,192,178,189,177,246,194,184,190,187,255,188,192,184,187,173,198,246,255,255,228,255,189,174,187,182,185,174,187,250,246,255,255,255,255,178,189,216,188,255,175,178,183,174,254,104,251,178,189,216,188,255,161,160,255,187,190,185,174,174,188,248,255,255,228,255,174,170,188,194,249,255,255,255,255,177,170,183,176,255,184,183,204,254,104,251,170,187,174,255,194,184,190,255,188,190,187,174,248,194,184,190,216,187,174,255,188,190,187,174,198,249,255,255,228,255,170,177,200,255,194,190,185,250,246,255,255,255,255,177,170,183,176,255,184,183,204,254,104,251,192,177,174,181,185,204,255,192,174,248,172,170,183,216,189,255,182,170,180,174,249,189,177,178,188,255,170,183,194,250,246,171,174,189,189,174,187,205,251,184,177,200,255,172,184,182,174,255,171,194,248,170,183,194,255,189,178,182,174,199,251,192,174,216,187,174,255,176,184,178,183,176,255,189,184,248,177,170,191,174,255,189,184,255,189,170,180,174,249,178,189,255,189,184,255,192,184,187,180,255,184,183,250,246,178,189,205,251,188,192,184,187,173,255,178,188,255,173,184,183,174,200,248,183,184,192,255,171,170,172,180,255,189,184,249,184,190,187,255,171,187,174,170,173,199,251,178,255,181,184,188,189,255,182,194,248,175,187,178,174,183,173,200,255,177,174,181,185,249,182,174,255,175,178,183,173,255,177,178,182,199,251,194,184,190,255,175,184,190,183,173,255,177,178,182,199,248,172,184,181,184,190,187,255,182,174,249,177,170,185,185,194,199,255,172,184,182,174,250,246,171,170,172,180]},{"927778":[187,178,176,177,189,246,170,192,170,194,255,170,183,173,255,192,174,246,192,178,181,181,255,171,170,183,176,255,184,183,250,246,194,184,190,187,255,188,192,184,187,173,205,251,187,178,171,171,178,189,199,248,187,178,171,171,178,189,199,255,181,174,189,188,249,175,178,183,173,255,182,194,250,246,185,170,187,189,183,174,187,205,255,189,184,246,189,177,174,255,188,177,184,185,185,174,199,251,188,184,182,174,189,177,178,183,176,255,189,177,178,188,248,185,187,174,172,178,184,190,188,255,189,170,180,174,188,249,189,178,182,174,204,255,172,184,182,174,250,246,171,170,172,180]},{"927923":[181,170,189,174,187,251,189,177,170,183,180,188,199,248,249,189,177,170,183,180,188,199,251,173,174,187,183,189,255,189,170,180,174,255,174,187,248,179,174,187,171,188,199,251,177,178,199,248,178,216,182,255,188,189,190,182,185,194,249,178,216,191,174,255,171,174,174,183,250,246,172,177,178,181,181,178,183,176,255,178,183,246,189,177,178,188,255,192,184,187,181,173,255,175,184,187,246,170,255,192,177,178,181,174,255,183,184,192,200,250,246,171,190,189,255,178,255,182,178,188,188,255,182,194,246,175,181,190,189,174,205,255,178,175,255,178,246,176,170,191,174,255,194,184,190,255,170,250,246,188,177,184,191,174,181,200,255,192,184,190,181,173,246,194,184,190,255,176,184,255,173,178,176,176,178,183,176,246,175,184,187,255,178,189,198,250,246,255,255,228,255,188,190,187,174,246,255,255,255,255,183,170,177,177,254,104,251,188,172,177,170,192,174,174,189,199,255,177,174,187,174,248,194,184,190,255,176,184,200,255,177,170,185,185,194,249,173,178,176,176,178,183,176,199,251,184,177,255,178,255,188,174,174,200,255,183,184,189,248,176,184,184,173,255,174,183,184,190,176,177,249,175,184,187,255,194,184,190,204,255,175,178,183,174,199,251,188,189,178,181,181,255,177,170,191,174,183,216,189,248,175,184,190,183,173,255,189,177,174,249,178,189,174,182,200,255,173,178,176]},{"928243":[178,183,250,246,189,177,174,255,181,178,176,177,189,246,192,184,187,181,173]},{"928263":[170,187,184,190,183,173,246,177,174,187,174,200,255,173,178,183,176,190,188,199,251,188,184,255,178,255,176,170,191,174,255,194,184,190,248,170,183,255,178,189,174,182]},{"928306":[255,170,183,173,249,194,184,190,216,187,174,255,188,189,178,181,181,250,246,177,174,187,174,205,246,246,250,246,246,246,250,246,178,255,182,174,170,183,255,192,174,255,172,170,183,246,188,178,189,255,177,174,187,174,255,170,183,173,246,188,189,170,187,174,255,170,189,255,174,170,172,177,250,246,184,189,177,174,187,255,178,175,255,194,184,190,246,181,178,180,174,204,246,250,246,246,246,250,246,246,246,250,246,175,178,183,174,200,255,178,255,176,190,174,188,188,246,194,184,190,255,188,177,184,190,181,173,246,179,190,188,189,255,176,184,205,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,189,177,174,255,171,184,184,180,249,184,185,174,183,188,255,189,177,174,250,246,173,174,188,174,187,189,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,183,184,189,177,178,183,176,249,173,184,178,183,176,251,254,109,1,171,194,255,189,177,174]},{"928538":[171,181,170,172,180,248,172,170,189,188,200,255,178,216,182,249,172,177,174,170,185,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,170,182]},{"928585":[178,249,172,177,174,170,185,198]},{"928594":[254,109,1,171,194]},{"928600":[189,177,174,255,171,181,170,172,180]},{"928610":[172,170,189,188,200,255,195,184,187,170,249,181,178,191,174,188,255,170,189,255,189,177,174,250,246,174,183,173,255,184,175,255,189,177,174,246,187,178,191,174,187,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200]},{"928674":[189,177,174,255,172,170,185,174,249,172,170,183,255,185,170,188,188,250,246,189,177,187,184,190,176,177,255,189,177,174,246,171,170,187,187,178,174,187,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,188,185,178,183,200,249,177,170,182,182,174,187,200,255,184,187,255,183,174,189,250,246,189,184,255,177,190,187,189,246,170,176,170,177,183,178,182,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,194,184,190,255,172,170,183,249,179,190,182,185,255,178,183,255,189,177,174,250,246,192,174,181,181,255,171,194,255,189,177,174,246,171,181,170,172,180,188,182,178,189,177,188,251,254,109,1,189,177,174,255,171,181,170,172,180,255,172,170,189,188,248,170,187,174,255,177,190,183,176,187,194,200,249,172,184,182,174,255,171,170,172,180,255,192,178,189,177,250,246,187,190,185,174,174,188,251,254,109,1,192,174,181,172,184,182,174,255,189,184,255,189,177,174,248,175,184,187,189,190,183,174,249,188,177,184,185,185,174,199,250,246,175,170,183,172,194,255,170,255,187,174,170,173,198,246,255,255,228,178,255,182,190,188,189,255,180,183,184,192,246,255,255,255,183,174,176,178,189,178,191,174,254,104,251,254,109,1,175,184,187,255,254,108,0,254,108,1,255,187,190,185,174,174,188,248,178,189,255,178,188,255,173,184,183,174,205,249,171,174,255,176,184,183,174,199,251,254,109,1,192,174,181,181,255,189,177,174,183,200,255,192,177,194,248,173,178,173,255,194,184,190,255,174,191,174,183,249,172,184,182,174,255,178,183,255,177,174,187,174,198,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200]},{"929080":[192,177,194,255,194,184,190,249,173,184,198,251,254,109,1,171,194,255,189,177,174]},{"929102":[171,181,170,172,180,248,172,170,189,188,200,255,185,170,183,173,170,249,172,187,170,172,180,174,187,188,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188]},{"929150":[255,189,177,174,249,182,178,188,188,178,183,176,250,246,171,181,170,172,180,188,182,178,189,177,255,178,188,246,188,184,190,189,177,255,184,175,255,189,177,174,246,191,178,181,181,178,170,176,174,255,184,175,250,246,184,190,189,172,170,188,189,188,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,184,185,174,183,249,172,177,174,188,189,188,255,189,184,255,176,174,189,250,246,188,189,190,175,175,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,194,184,190,255,172,170,183,249,171,190,194,255,170,255,183,174,192,255,171,184,182,171,250,246,170,189,255,189,177,174,255,171,184,182,171,246,188,177,184,185,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,171,178,176,249,171,184,182,171,188,255,171,181,184,192,255,190,185,250,246,172,187,170,172,180,174,173,255,192,170,181,181,188,246,178,183,255,185,194,187,170,182,178,173,188,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,194,184,190,255,183,174,174,173,249,170,181,181,255,189,177,174,250,246,172,187,194,188,189,170,181,188,255,189,184,246,184,185,174,183,255,176,170,183,184,183,188,246,189,184,192,174,187,251,254,109,1,171,194,255,189,177,174,255,171,181,170,172,180,248,172,170,189,188,200,255,188,178,181,191,174,187,249,170,187,187,184,192,188]},{"929497":[192,178,181,181,250,246,173,174,175,174,170,189,255,176,170,183,184,183,246,178,183,255,177,178,188,255,175,178,183,170,181,246,185,177,170,188,174,251,175,184,187,255,162,160,255,187,190,185,174,174,188,248,178,216,181,181,255,189,174,181,181,255,194,184,190,249,188,184,182,174,189,177,178,183,176,198,250,246,177,184,192,255,170,171,184,190,189,255,178,189,198,246,255,255,228,255,194,174,188,246,255,255,255,255,183,184,254,104,251,178,255,184,183,172,174,255,192,170,188,255,170]},{"929619":[189,174,170,255,180,174,189,189,181,174,200,249,171,190,189,255,189,177,174,183,255,178,250,246,182,184,191,174,173,255,190,185,255,178,183,246,189,177,174,255,192,184,187,181,173,200,255,170,183,173,246,183,184,192,255,194,184,190,255,172,170,183,250,246,188,174,174,255,182,174,255,170,188,246,189,177,178,188,205,255,182,170,180,174,188,246,194,184,190,255,192,184,183,173,174,187,205,250,246,192,177,170,189,255,178,255,172,184,190,181,173,246,171,174,255,183,174,193,189,255,189,178,182,174,205,251,189,177,174,183,255,176,184,255,170,192,170,194,199,251,189,177,174,187,174,255,178,188,255,170,248,189,177,178,174,175,255,178,183,255,189,177,174,249,173,174,188,174,187,189,200,255,177,174,255,172,170,183,250,246,184,185,174,183,255,172,187,174,174,185,194,246,172,177,174,188,189,188,255,189,177,170,189,246,175,184,181,181,184,192,255,194,184,190,205,250,246,171,190,189,255,183,184,192,255,189,170,177,189,246,192,174,255,177,170,191,174,255,189,177,170,189,246,184,190,189,255,184,175,255,189,177,174,250,246,192,170,194,200,255,173,184,255,194,184,190,246,181,178,180,174,255,182,194,255,177,170,178,187,198,246,178,216,191,174,255,188,185,174,183,189,250,246,174,184,183,188,255,176,174,189,189,178,183,176,246,178,189,255,189,177,178,188,255,192,170,194,205,251,192,178,189,177,255,172,187,194,188,189,170,181,188,248,165,255,166,255,194,184,190,255,172,170,183,249,175,178,183,173,255,170,255,176,187,174,170,189,250,246,175,170,178,187,194,255,178,183,255,189,177,174,246,185,194,187,170,182,178,173,205,246,250,246,175,181,184,182,185,255,175,181,184,182,185,200,246,192,177,178,195,195,181,174,255,192,177,184,182,185,251,170,181,181,255,178,255,172,170,183,255,188,170,194,248,178,188,255,189,177,170,189,255,182,194,249,181,178,175,174,255,178,188,255,185,187,174,189,189,194,250,246,185,181,170,178,183,200,246,178,255,181,178,180,174,246,192,170,189,172,177,178,183,216,255,189,177,174,250,246,185,190,173,173,181,174,188,255,176,170,189,177,174,187,246,187,170,178,183,200,246,170,183,173,255,170,181,181,255,178,255,172,170,183,250,246,173,184,255,178,188,255,179,190,188,189,246,185,184,190,187,255,188,184,182,174,255,189,174,170,246,175,184,187,255,189,192,184,200,250,246,170,183,173,255,188,185,174,170,180,255,182,194,246,185,184,178,183,189,255,184,175,255,191,178,174,192,246,171,190,189]},{"930200":[178,189,216,188,255,183,184,189,250,246,188,170,183,174,200,246,178,189,216,188,255,183,184,189]},{"930225":[188,170,183,174,251,254,109,1,178,216,182,255,188,178,172,180,199]},{"930243":[188,177,184,192,248,182,174,255,170,255,171,184,189,189,181,174,200,249,176,174,189,255,188,184,182,174,189,177,178,183,176,199,251,254,109,1,172,184,184,181,255,171,184,189,189,181,174,199,248,177,174,187,174,216,188,249,188,184,182,174,189,177,178,183,176,255,175,184,187,250,246,194,184,190,205,251,254,109,1,181,174,170,191,174,255,182,174,255,170,181,184,183,174,248,178,216,182,255,188,178,172,180,205,255,194,184,190]},{"930351":[177,170,191,174,255,182,194,255,178,189,174,182,205,251,204,204,204,204,204,204,204,204,204,251,192,177,194,204,204,204,204,204,251,178,255,192,170,188,255,170,255,189,177,174,178,175,200,248,178,255,184,185,174,183,255,185,190,187,185,181,174,249,172,177,174,188,189,188,199,250,246,180,174,174,185,255,188,174,172,187,174,189,198,246,255,255,228,255,188,190,187,174,255,189,177,178,183,176,246,255,255,255,255,183,174,191,174,187,199,254,104,251,172,184,184,181,200,255,171,187,178,183,176,255,182,174,248,170,183,194,255,185,190,187,185,181,174,249,172,177,174,188,189,188,255,194,184,190,250,246,175,178,183,173,205,251,194,184,190,255,189,174,181,181,248,170,183,194,184,183,174,255,170,183,173,255,178,249,192,178,181,181,255,176,178,191,174,255,194,184,190,250,246,188,190,172,177,255,170,255,185,178,183,172,177,199,251,171,187,178,183,176]},{"930564":[172,177,174,188,189,188,200,248,178,189,216,188,255,170,255,188,174,172,187,174,189,249,189,184,255,174,191,174,187,194,184,183,174,205,251,222,222,255,222,221,223,222,223,255,223,221,223,248,223,221,221,255,223,221,221,223,222,249,223,223,221,222,223,255,221,223,222,222,221,251,172,170,183,255,194,184,190,255,182,170,180,174,248,189,177,178,183,176,188,255,175,170,181,181,249,184,190,189,255,184,175,255,189,177,174,250,246,188,180,194,198,255,192,178,189,177]},{"930681":[189,177,174,246,182,170,188,189,174,187,255,188,192,184,187,173,246,194,184,190,255,172,170,183,199,251,172,170,183,255,194,184,190,255,182,170,180,174,248,189,177,178,183,176,188,255,175,170,181,181,249,184,190,189,255,184,175,255,189,177,174,250,246,188,180,194,198,255,192,178,189,177,255,189,177,174,246,182,170,188,189,174,187,255,188,192,184,187,173,246,194,184,190,255,172,170,183,199,251,194,184,190,255,171,190,182,199,255,178,255,192,170,188,248,188,181,174,174,185,178,183,176,205,249,192,177,174,187,174,216,188,255,182,194,250,246,182,170,176,178,172,255,171,184,181,189,188,198,251,177,184,192,255,194,184,190]},{"930838":[181,178,180,174,248,182,174,255,183,184,192,198,251,254,110,0,254,119,7,252,3,254,107,2,254,103,255,174,185,178,188,184,173,174]},{"930873":[255,178,178,178,255,254,120,3,248]},{"930883":[170]},{"930885":[181,178,183,180,255,189,184,255,255,255,255,249,255,255,255,189,177,174,255,185,170,188,189,255,255]},{"930911":[254,120,3,246,255,255,187,170,183,173,184,182,178,195,174,187,254,120,3,246,170,175,189,174,187,255,182,184,188,189,181,194,246,173,178,188,187,174,176,170,187,173,178,183,176,246,192,177,170,189,255,177,170,185,185,174,183,174,173,246,178,183,255,189,177,174]},{"930978":[175,178,187,188,189,246,189,192,184]},{"930988":[176,170,182,174,188,205,254,120,3,246,181,178,183,180,255,170,192,170,180,174,183,188,246,189,184,255,177,178,188,255,190,183,172,181,174,246,181,174,170,191,178,183,176,255,189,177,174,246,177,184,190,188,174,200,254,120,3,246,177,174,255,179,190,188,189,255,187,190,183,188,246,184,190,189,255,189,177,174,255,173,184,184,187,254,120,3,246,178,183,189,184,255,189,177,174,255,187,170,178,183,194,246,183,178,176,177,189,205,254,120,3,254,103,254,103,246,176,170,183,184,183,255,177,170,188,246,182,184,191,174,173,255,170,181,181,255,189,177,174,246,178,189,174,182,188,255,170,187,184,190,183,173]},{"931141":[177,194,187,190,181,174,205,254,120,7,246,194,184,190,255,192,178,181,181,255,177,170,191,174,246,189,184,255,175,178,183,173,255,170,181,181,246,189,177,174,255,178,189,174,182,188,246,183,174,172,174,188,188,170,187,194,255,189,184,246,171,174,170,189,255,176,170,183,184,183,205,254,120,7,246,189,177,178,188,255,178,188,255,194,184,190,187,246,172,177,170,183,172,174,255,189,184,255,171,174,255,170,246,177,174,187,184,254,120,3,254,103,254,103,246,194,184,190,255,182,190,188,189,255,176,174,189,246,189,177,174,255,167,255,172,187,194,188,189,170,181,188,246,189,184,255,171,174,170,189,255,176,170,183,184,183,205,254,120,9,254,103,254,103,251,254,107,2,254,119,7,252,3,247,181,184,184,180,255,170,189,255,189,177,178,188,248,188,189,170,181,175,184,188,255,184,183,255,189,177,174,249,189,177,187,184,183,174,205,251,254,107,2,254,119,7,252,3,247,178,189,255,178,188,255,194,184,190,187,248,189,178,182,174,255,189,184,255,188,177,178,183,174,199,251,254,107,2,254,119,7,252,3,247,170,181,188,184,255,194,184,190,255,183,174,174,173,248,189,184,255,173,174,175,174,170,189,255,189,177,178,188,249,176,190,194,199,251,170,255,172,190,187,178,184,190,188,255,171,184,193,200,248,181,174,189,188,255,189,170,180,174,255,178,189,249,192,178,189,177,255,190,188,251,163,160,255,171,184,182,171,188,255,175,184,187,248,161,160,160]},{"931482":[187,190,185,174,174,188,200,249,176,184,184,173,255,173,174,170,181,188,255,170,181,181,250,246,173,170,194,199,251,163,160,255,171,184,182,171,188,255,175,184,187,248,161,160,160,255,187,190,185,174,174,188,200,249,161,160,160,255,187,190,185,174,174,188,255,161,250,246,171,178,176,255,171,184,182,171,205]},{"931560":[176,184,184,173,246,173,174,170,181,188]},{"931571":[170,181,181,255,173,170,194,199,251,189,177,170,183,180,188,199,248,171,184,184,182,255,176,184,174,188,255,189,177,174,249,173,194,183,170,182,178,189,174,199,251,194,170,194,199,255,185,187,174,188,188,255,170,248,189,184,255,188,185,181,184,173,174,255,178,189,199,251,175,184,187,255,161,160,160,255,182,184,187,174,248,178,216,181,181,255,184,185,174,183,255,189,177,178,188,249,185,181,170,172,174,198,250,246,177,184,192,255,170,171,184,190,189,255,178,189,198,246,255,255,228,255,184,185,174,183,246,255,255,255,255,183,170,177,254,104,251,177,174,177,200,255,176,184,184,173,255,181,190,172,180,248,176,174,189,189,178,183,176,255,178,183,205,251,194,170,194,199,255,187,190,185,174,174,188,199,248,184,180,170,194,200,255,181,174,189,216,188,255,173,184,249,189,177,178,188,199,251,178,216,182,255,180,178,180,178]},{"931778":[255,178,248,181,178,180,174,255,187,190,185,174,174,188,200,249,182,170,194,255,178,255,177,170,191,174,255,161,160,198,250]},{"931810":[177,184,192,255,170,171,184,190,189,255,178,189,198,246,255,255,228,255,194,174,188,246,255,255,255,255,183,184,254,104]},{"931841":[183,178,172,174,205,255,178,216,181,181,255,189,170,176]},{"931856":[170,181,184,183,176,255,192,178,189,177,255,194,184,190,249,175,184,187,255,170,255,171,178,189]},{"931882":[185,175,175,189,205,255,178,255,177,170,191,174,248,183,184,255,187,174,170,188,184,183,255,189,184,249,177,170,183,176,205,255,188,174,174,194,170,177,199,251,183,184,255,183,184,255,183,184,255,183,184,248,183,184,199,255,192,174,255,188,177,184,190,181,173,249,185,181,170,194,255,171,194,255,182,194,250,246,187,190,181,174,188,199,246,176,184,184,173,171,194,174,204,251,194,184,190,255,188,170,191,174,173,255,182,174,199,248,185,181,174,170,188,174,255,176,174,189,255,182,174,249,184,190,189,255,184,175,255,177,174,187,174,199,251,170,170,170,170,177,177,177,177,206,199,248,188,201,188,184,255,171,187,178,176,177,189,206,199,251,183,184,199,255,173,184,183,216,189,255,176,184,248,189,177,170,189,255,192,170,194,199,251,178,255,184,183,172,174,255,177,170,173,255,170,248,175,178,188,177,255,173,178,183,183,174,187,200,255,178,249,188,189,178,181,181,255,187,174,182,174,182,171,174,187,250,246,178,189,255,189,184,255,189,177,178,188,246,173,170,194,205,251,173,184,255,194,184,190,248,187,174,182,174,182,171,174,187,255,192,177,174,183,249,178,255,192,170,188,255,194,184,190,183,176,198,250,246,246,178,255,188,190,187,174,255,173,184,183,216,189,205,251,188,184,200,255,178,216,191,174,255,171,174,174,183,248,181,178,191,178,183,176,255,178,183,255,189,177,178,188,249,172,170,191,174,255,175,184,187,250,246,194,174,170,187,188,200,255,170,183,173,255,194,184,190,246,189,177,178,183,180,255,194,184,190,255,172,170,183,246,179,190,188,189,255,172,184,182,174,250,246,170,181,184,183,176,255,170,183,173,255,171,184,182,171,246,184,185,174,183,255,192,170,181,181,188,198,251,184,183,172,174,255,178,255,175,170,187,189,174,173,248,178,183,255,189,177,178,188,255,172,170,191,174,249,188,184,255,171,170,173,255,170,181,181,255,189,177,174,250,246,179,170,195,195,255,177,170,183,173,188,246,176,190,194,188,255,187,170,183,255,170,192,170,194,246,178,183,255,177,178,173,255,178,183,255,189,177,174,250,246,188,170,183,173,205,251,185,170,183,173,170,216,188,255,170,187,174,248,191,174,187,194,255,191,178,172,178,184,190,188,249,170,183,178,182,170,181,188,205,255,183,174,191,174,187,250,246,175,184,187,176,174,189,204,246,246,250,246,246,246,204,255,178,255,183,174,191,174,187,255,192,178,181,181,251,194,184,190,255,192,184,180,174]},{"932448":[182,174,248,175,187,184,182,255,182,194,255,183,170,185,200,249,189,170,180,174,255,189,177,178,188,255,170,183,173,250,246,176,174,189,255,184,190,189,199,251,178,255,173,184,183,216,189,255,177,170,191,174,248,170,183,194,189,177,178,183,176,255,174,181,188,174,249,175,184,187,255,194,184,190,199,250,246,189,170,180,174,255,189,177,178,188,199]},{"932536":[184,183,174,255,184,175,255,190,188,248,170,181,192,170,194,188,255,181,178,174,188,205,251,184,183,174,255,184,175,255,190,188,248,170,181,192,170,194,188,255,189,174,181,181,188,249,189,177,174,255,189,187,190,189,177,205,251,184,183,174,255,184,175,255,190,188,248,181,178,180,174,188,255,185,174,170,183,190,189,249,171,190,189,189,174,187,251,178,255,192,170,181,181,174,173,255,184,175,175,248,182,194,255,171,187,184,189,177,174,187,255,181,174,184,249,250,246,192,177,170,189,255,170,255,173,178,183,176,190,188,205,246,251,183,184,192,255,178,255,188,177,184,190,181,173,248,185,187,184,171,170,171,181,194,255,189,170,181,180,249,189,184,255,177,178,182,204,251,173,178,173,255,194,184,190,255,172,184,182,174,248,175,187,184,182,255,182,194,249,171,187,184,189,177,174,187,188,255,187,184,184,182,198,250,246,246,170,187,174,255,192,174,255,172,184,184,181,198,246,251,252,2,254,109,1,254,107,2,178,255,177,170,191,174,255,170,248,185,187,174,189,189,194,255,187,174,173,249,173,187,174,188,188,205,250,246,189,177,184,190,176,177,189,255,178,246,192,184,190,181,173,255,189,174,181,181,246,194,184,190,205,251,252,2,254,109,1,254,107,2,178,255,177,170,191,174,255,170,248,185,187,174,189,189,194,255,171,181,190,174,249,173,187,174,188,188,205,250,246,189,177,184,190,176,177,189]},{"932863":[178,246,192,184,190,181,173,255,189,174,181,181,246,194,184,190,205,251,252,2,254,109,1,254,107,2,178]},{"932891":[177,170,191,174,255,170,248,185,187,174,189,189,194,255,176,184,181,173,249,173,187,174,188,188,205,250,246,189,177,184,190,176,177,189,255,178,246,192,184,190,181,173,255,189,174,181,181,246,194,184,190,205,251,252,2,254,109,1,254,107,2,178,255,177,170,191,174,255,170,248,185,187,174,189,189,194,255,187,174,173,173,174,187,249,173,187,174,188,188,205,250,246,189,177,184,190,176,177,189,255,178,246,192,184,190,181,173,255,189,174,181,181]},{"933004":[194,184,190,205,251,252]},{"933011":[254,109,1,254,107,2,178,255,177,170,191,174,255,170,248,185,187,174,189,189,194,255,176,187,174,174,183,249,173,187,174,188,188,205,250,246,189,177,184,190,176,177,189,255,178,246,192,184,190,181,173,255,189,174,181,181,246,194,184,190,205,251,252,2,254,109,1,254,107,2,178,255,177,170,191,174,255,170,248,185,187,174,189,189,194,255,176,187,174,174,183,249,173,187,174,188,188,205,250,246,189,177,184,190,176,177,189,255,178,246,192,184,190,181,173,255,189,174,181,181,246,194,184,190,205,251,252,2,254,109,1,254,107,2,178,189,216,188,255,170,171,184,190,189,248,175,187,178,176,176,178,183,255,189,178,182,174,205,249,180,183,184,192,255,177,184,192,255,181,184,183,176,250,246,178,255,177,170,191,174,255,171,174,174,183,246,192,170,178,189,178,183,176,198,251,182,170,194,255,189,177,174,255,192,170,194,255,184,175,248,189,177,174,255,177,174,187,184,255,181,174,170,173,249,189,184,255,189,177,174,250,246,189,187,178,175,184,187,172,174,251,252,2,254,109,1,254,107,2,172,170,185,178,188,172,174,198,248,255,255,228,255,194,174,188,249,255,255,255,255,183,184,254,104,251,192,177,170,189,255,173,178,173,255,189,177,174,248,188,174,191,174,183,255,172,187,194,188,189,170,181,188,249,188,170,194,255,189,184,255,176,170,183,184,183,188,250,246,189,184,192,174,187,198,251,252,2,254,109,1,254,107,2,178,189,216,188,255,170,171,184,190,189,248,175,187,178,176,176,178,183,255,189,178,182,174,205,249,180,183,184,192,255,177,184,192,255,181,184,183,176,250,246,178,255,177,170,191,174,255,171,174,174,183,246,192,170,178,189,178,183,176,198]},{"933405":[178,255,170,182,255,170,248,182,170,176,178,172,178,170,183,200,255,170,183,173,249,189,177,178,188,255,178,188,255,182,194,250,246,170,172,189,205,255,192,170,189,172,177,255,170,188,246,178,255,182,170,180,174,255,189,177,178,188,246,176,178,187,181,255,173,178,188,188,170,185,174,170,187,251,170,183,173,255,183,184,192,200]},{"933488":[189,177,174,248,174,183,173,255,178,188,255,183,174,170,187,249,170,183,173,255,188,184,255,178,255,175,170,172,174,250,246,189,177,174,255,175,178,183,170,181,246,172,190,187,189,170,178,183,246,182,194,255,175,187,178,174,183,173,200,250,246,178,216,181,181,255,188,170,194,255,178,189,246,172,181,174,170,187,246,178,216,181,181,255,188,189,170,189,174,255,182,194,250,246,172,170,188,174,200,255,184,175,255,192,177,178,172,177,246,178,216,182,255,172,174,187,189,170,178,183,246,178,216,191,174,255,181,178,191,174,173,255,170,250,246,181,178,175,174,255,189,177,170,189,216,188,246,175,190,181,181,246,178,216,191,174,255,189,187,170,191,174,181,174,173,250,246,174,170,172,177,255,170,183,173,255,174,191,174,187,194,246,177,178,176,177,192,170,194,246,171,190,189,255,182,184,187,174,200,255,182,190,172,177,250,246,182,184,187,174,255,189,177,170,183,255,189,177,178,188,246,178,255,173,178,173,255,178,189,255,182,194,246,192,170,194,251,185,174,174,180,201,170,201,171,184,184,199,251,170,187,187,187,176,176,176,176,177,177,177,205,248,192,174,181,181,255,194,184,190,216,187,174,249,172,184,182,178,183,176,255,192,178,189,177,250,246,182,174,199,251,194,184,190,255,177,170,191,174,255,173,184,183,174,248,192,174,181,181,255,189,184,255,172,184,182,174,249,189,177,178,188,255,175,170,187,200,255,183,184,192,250,246,173,178,174,199,251,192,177,170,189,255,173,184,255,194,184,190,248,192,170,183,189,198,249,255,255,228]},{"933848":[175,181,178,185,185,174,187,188,250,246,255,255,255,255,183,184,189,177,178,183,216,254,104,251,175,178,183,174,199,255,171,190,189,255,189,177,174,194,248,170,187,174,183,216,189,255,172,177,174,170,185,200,249,194,184,190,255,176,184,189,255,165,160,160,250,246,187,190,185,174,174,188,198,246,255,255,228,255,173,190,177,246,255,255,255,255,184,177,255,172,170,187,185,254,104]},{"933944":[177,174,187,174,216,188,255,188,184,182,174,248,175,181,178,185,185,174,187,188,255,175,184,187,249,194,184,190,199]},{"933974":[188,192,178,182,250,246,181,178,189,189,181,174,255,175,178,188,177,200,246,188,192,178,182,205,251,175,178,183,174,199,248,176,184,255,176,174,189,255,188,184,182,174,249,182,184,187,174,255,182,184,183,174,194,250,246,175,178,187,188,189,205,251,192,170,177]},{"934040":[177,184,184,199,255,192,174,181,181,200,248,192,177,174,183,174,191,174,187,255,194,184,190,249,192,170,183,189,255,189,184,255,188,174,174,250,246,189,177,174,188,174,255,176,178,181,181,188,200,246,188,189,184,185,255,184,183,255,171,194,205,251,182,194,255,176,187,170,183,173,185,170,255,178,188,248,184,191,174,187,255,178,183,255,189,177,174,249,174,170,188,189,205,255,178,216,182,255,171,170,173,250,246,192,178,189,177,246,173,178,187,174,172,189,178,184,183,188,205,246,178,216,181,181]},{"934165":[182,170,187,180]},{"934170":[194,184,190,187,250]},{"934176":[182,170,185,205,255,171,174,188,189,255,184,175,246,181,190,172,180,199,254,121,45,251,188,184,182,174,173,170,194,255,178,216,181,181,248,171,174]},{"934214":[178,183,255,170,255,177,178,176,177,249,188,172,177,184,184,181]},{"934231":[171,170,183,173,199,251,173,178,173,255,194,184,190,255,180,183,184,192,204,248,249,250,246,170,255,189,187,174,174,246,189,194,185,178,172,170,181,181,194,255,177,170,188]},{"934275":[182,170,183,194,255,188,174,172,184,183,173,170,187,194,250,246,171,187,170,183,172,177,174,188,246,188,190,185,185,184,187,189,174,173,246,172,181,174,170,187,255,184,175,255,189,177,174,250,246,176,187,184,190,183,173,255,171,194]},{"934334":[189,177,174,246,189,187,190,183,180,205]},{"934345":[189,177,178,188,246,189,187,190,183,180,250,246,189,194,185,178,172,170,181,181,194,246,172,184,183,189,170,178,183,188,255,192,184,184,173,194,246,189,178,188,188,190,174,255,175,184,187,250,246,188,189,187,174,183,176,189,177,200,255,170,183,173,246,191,170,188,172,190,181,170,187,246,189,178,188,188,190,174,255,189,184,250,246,172,170,187,187,194,246,182,170,189,174,187,178,170,181,188,255,175,187,184,182,246,184,183,174,255,185,170,187,189,255,184,175,250,246,189,177,174,255,189,187,174,174,255,189,184,246,170,183,184,189,177,174,187,205,251,248,201,192,178,188,177,178,183,176,255,185,184,183,173,201,249,250,246,189,177,187,184,192]},{"934507":[178,189,174,182]},{"934512":[178,183,198,246]},{"934518":[228,255,194,174,188,177,246,255,255,255,255,183,184,254,104,251,248,255,255,255,188,189,184,185,255,178,189,199,251,248,255,255,175,178,183,174]},{"934555":[189,177,174,183,199,251,184,180,170,194,200]},{"934567":[177,174,187,174,216,188,248,194,184,190,187,255,178,189,174,182,249,171,170,172,180,200,255,172,170,190,188,174,255,178,250,246,172,170,183,216,189,255,190,188,174,255,178,189,205,246,178,216,182,255,188,189,190,172,180,255,178,183,246,189,177,178,188,255,175,184,190,183,189,170,178,183,251,177,184,192,255,182,170,183,194,198,248,255,255,228,254,108,1,254,108,0,255,187,190,185,174,174,188,249,255,255,255,254,108,3,254,108,2,255,187,190,185,174,174,188,254,104,251,178,255,181,178,180,174,255,194,184,190,200,255,188,184,248,177,174,187,174,216,188,255,170,255,189,177,178,183,176,249,194,184,190,255,172,170,183,255,190,188,174,255,189,184,250,246,171,174,170,189,255,190,185,255,176,170,183,184,183,205,251,248,178,188,255,176,187,174,170,189,255,181,190,172,180]},{"934762":[248,255,178,188,255,176,184,184,173,255,181,190,172,180,251,248,255,178,188,255,182,174,177,255,181,190,172,180,251,248,255,181,174,184,185,170,187,173,255,181,190,172,180,251,171,194,255,189,177,174,255,192,170,194,200,248,194,184,190,187,255,175,184,187,189,190,183,174,200,251,163,255,182,184,187,174,255,189,184,255,176,184,248,255,255,255,255,255,255,229,231,249,194,170,194,199,251,162,255,182,184,187,174,255,189,184,255,176,184,248,255,255,255,255,255,255,230,231,249,192,177,174,174,199,251,161,255,182,184,187,174,255,189,184,255,176,184,248,255,255,255,255,255,255,232,233,249,176,184,184,173,255,179,184,171,199,251,194,184,190,255,176,184,189,255,170]},{"934929":[192,177,184,181,174,255,234,235,199,199,249,176,184,255,194,184,190,199,251,194,184,190,255,176,184,189,255,170,248,192,177,184,181,174,255,234,235,199,249,176,184,255,194,184,190,199,251,192,174,181,181,255,173,184,183,174,200,248,181,174,189,189,190,172,174,255,177,170,191,174,255,170,249,172,190,185,255,184,175,255,189,174,170,204,251,178,255,192,187,184,189,174,255,170,248,192,184,187,173,205,255,179,190,188,189,249,184,183,174,205,255,184,183,255,170,250,246,188,189,184,183,174,255,170,183,173,246,189,177,187,174,192,255,178,189,255,178,183,189,184,246,189,177,174,255,184,172,174,170,183,205,255,178,189,250,246,192,170,188,255,182,194,255,192,184,187,173,205,246,178,189,255,192,170,188,255,192,177,170,189,246,192,184,190,181,173,255,188,170,191,174,255,182,174,205,250,246,178,255,177,184,185,174,255,188,184,182,174,173,170,194,246,188,184,182,174,184,183,174,255,175,178,183,173,188,246,189,177,170,189,255,192,184,187,173,255,170,183,173,250,246,171,187,178,183,176,188,255,178,189]},{"935180":[189,184,246,182,174,205,255,189,177,174,255,192,184,187,173,246,178,188]},{"935199":[189,177,174,250,246,171,174,176,178,183,183,178,183,176,255,184,175,246,182,194,255,188,184,183,176,205,251,178,255,192,187,184,189,174,255,170,248,188,184,183,176,205,255,179,190,188,189,249,184,183,174,205,255,184,183,255,170,250,246,176,190,178,189,170,187,255,170,183,173,246,189,177,187,174,192,255,178,189,255,178,183,189,184,246,189,177,174,255,188,180,194,205,255,178,189,250,246,192,170,188,255,182,194,255,188,184,183,176,205,246,178,189,255,172,184,190,181,173,255,189,170,182,174,246,171,174,170,188,189,188,255,170,183,173,250,246,175,187,174,174,255,182,178,183,173,188,205,255,178,189,246,175,181,178,189,189,174,187,188,255,184,183,246,189,177,174,255,192,178,183,173,255,170,183,173,250,246,181,190,187,180,188,255,178,183,255,184,190,187,246,182,178,183,173,188,205,255,178,189,255,178,188,246,189,177,174,255,188,184,183,176,255,184,175,250,246,183,170,189,190,187,174,200,255,184,175,246,177,190,182,170,183,178,189,194,200,255,184,175,246,173,187,174,170,182,188,255,170,183,173,250,246,173,187,174,170,182,174,187,188,205,251,170,173,173,255,176,170,187,181,178,172,200,248,176,178,183,176,174,187,255,170,183,173,249,170,185,185,181,174,255,170,183,173,255,172,184,184,180,250,246,175,184,187,255,162,255,182,178,183,190,189,174,188]},{"935515":[170,173,173,255,172,170,187,187,184,189,188,200,246,185,184,189,170,189,184,174,188,200,250,246,176,170,187,170,182,255,182,170,188,170,181,170,246,170,183,173,255,172,190,187,187,194,246,185,184,192,173,174,187,255,170,183,173,250,246,188,189,178,187,255,192,174,181,181,205,255,170,173,173,246,189,184,182,170,189,184,255,185,170,188,189,174,200,246,188,189,178,187,255,192,174,181,181,255,170,183,173,250,246,188,181,184,192,181,194,255,170,173,173,255,187,174,173,246,192,178,183,174,255,170,183,173,255,171,187,178,183,176]},{"935648":[189,184,255,170,255,171,184,178,181,205,255,170,173,173,250,246,188,190,176,170,187,200,255,188,184,194,246,188,170,190,172,174,255,170,183,173,246,192,170,189,174,187,200,255,188,189,178,187,250,246,170,183,173,255,171,187,178,183,176,255,189,184,255,170,246,171,184,178,181,255,170,176,170,178,183,205,251,178,255,189,177,178,183,180,255,178,248,175,184,187,176,184,189,255,177,184,192,255,189,184,249,188,182,178,181,174,204,251,178,189,216,188,255,173,170,183,176,174,187,184,190,188,248,184,190,189,188,178,173,174,200,255,171,190,194,249,182,194,255,172,187,170,185,255,175,184,187,250,246,188,170,175,174,189,194]},{"935805":[185,170,194,255,163,160,255,187,190,185,174,174,188]},{"935819":[184,185,174,183,255,162,255,172,177,174,188,189,188,249,170,187,174,255,194,184,190,255,181,190,172,180,194,198,250,246,188,184,200,255,185,181,170,194,255,176,170,182,174,198,246,255,255,228,255,185,181,170,194,246,255,255,255,255,183,174,191,174,187,199,254,104,251,188,184,255,181,178,180,174,255,194,184,190,248,183,174,174,173,255,163,160,249,187,190,185,174,174,188,205,250,246,188,178,181,181,194,199,251,194,184,190,255,192,170,183,189,255,189,184,248,185,181,170,194,255,170,255,176,170,182,174,198,249,189,170,181,180,255,189,184,255,182,174,205,251,194,184,190,216,191,174,255,184,185,174,183,174,173,248,189,177,174,255,172,177,174,188,189,188,199,249,189,178,182,174,255,189,184,255,176,184,205,251,170,181,187,178,176,177,189,200,248,171,187,184,189,177,174,187,199,249,176,184,255,185,181,170,194,199,251,192,174,181,172,184,182,174,255,189,184,255,182,194,248,188,177,184,185,199,255,188,174,181,174,172,189,249,188,189,190,175,175,255,192,178,189,177,255,170,205,250,246,173,184,255,178,189,255,183,184,192,199,251,188,184,255,181,178,180,174,255,194,184,190,248,170,181,187,174,170,173,194,255,177,170,191,174,249,184,183,174,255,184,175,255,189,177,184,188,174,205,251,189,177,170,183,180,188,199,255,183,184,192,248,194,184,190,255,172,170,183,255,171,181,184,172,180,249,175,178,187,174,255,171,170,181,181,188,251,187,174,173,255,176,184,184,200,255,188,184,248,176,184,184,173,199,255,178,189,216,188,249,181,178,180,174,255,170,255,175,170,178,187,194,250,246,178]},{"936192":[255,170,255,171,184,189,189,181,174,200,246,174,193,172,174,185,189,255,194,184,190,246,177,170,191,174,255,189,184,250,246,170,172,189,178,191,170,189,174,255,178,189,246,194,184,190,187,188,174,181,175,205,251,170,187,187,184,192,188,199,255,172,170,190,188,174,248,194,184,190,255,192,174,187,174,255,189,184,184,249,181,170,195,194]},{"936277":[189,184]},{"936280":[181,184,184,180,250,246,190,183,173,174,187]},{"936292":[188,184,182,174,246,185,184,189,188,199,251,194,184,190]},{"936307":[171,184,190,176,177,189,248,171,184,182,171,188,205,255,192,177,170,189,249,172,184,190,181,173,183,216,189,255,175,178,183,173,250,246,170,183,194,255,190,183,173,174,187,246,171,190,188,177,174,188,198,251,177,174,216,188]},{"936364":[182,194]},{"936367":[171,174,188,189,248,175,187,178,174,183,173,200]},{"936380":[185,181,174,170,188,174,249,189,170,180,174,255,172,170,187,174]},{"936397":[184,175,250,246,177,178,182]},{"936405":[255,170,183,173,255,183,174,191,174,187,246,181,184,188,174,255,177,178,182,205,251,194,184,190,255,187,174,170,181,181,194,248,179,190,188,189,255,171,184,190,176,177,189,249,189,177,178,188,198,251,192,177,194]},{"936459":[173,184,174,188]},{"936464":[183,184,248,184,183,174]},{"936471":[184,192,183,249,171,184,189,189,181,174,188,198]},{"936484":[176,184,250,246,175,178,183,173]},{"936493":[184,183,174,246,175,178,187,188,189,199,251,194,184,190,255,170,187,174,248,172,170,187,187,194,178,183,176,255,189,184,249,182,190,172,177,255,172,187,170,185,200,255,176,184,250,246,190,188,174,255,188,184,182,174,255,184,175,255,178,189,246,175,178,187,188,189,199,251,194,184,190]},{"936565":[173,187,184,191,174,248,170,192,170,194]},{"936576":[182,194]},{"936579":[184,189,177,174,187]},{"936585":[188,174,181,175,200]},{"936591":[170,176,170,177,183,178,182,250,246,189,192,184,255,189,178,182,174,188,204,246,171,190,189,200,255,178,255,192,184,183,216,189,246,176,178,191,174,255,194,184,190,255,189,177,174,250,246,189,187,178,175,184,187,172,174,205,246,178,216,181,181,255,173,174,175,174,170,189,246,194,184,190,199,251,172,170,183]},{"936669":[194,184,190]},{"936673":[171,174,170,189,248,182,194]},{"936681":[173,170,187,180,183,174,188,188]},{"936690":[189,174,172,177,183,178,186,190,174,198,251,177,170,191,174,255,194,184,190,255,188,174,174,183,248,170,183,173,194,198,249,250,246,177,174,255,192,170,188,255,184,190,189,246,181,184,184,180,178,183,176,255,175,184,187,246,184,190,187,255,185,187,178,195,174,173,250,246,174,189,177,174,187,246,182,174,173,170,181,181,178,184,183,205,246,178]},{"936777":[192,184,183,173,174,187]},{"936784":[192,177,174,183,250,246,177,174]},{"936793":[192,178,181,181]},{"936798":[171,174,246,171,170,172,180,198,251,178,216,182,255,179,190,188,189,255,188,184,182,174,248,173,190,173,174,200,255,189,177,178,188,255,178,188]},{"936835":[171,181,178,183,173,216,188,255,177,190,189,205,251]},{"936849":[2,254,109,0,254,107,2]},{"936861":[176]},{"936863":[176,251,184,190,172,177,199,248,249,194,184,190]},{"936876":[179,174,187,180,199,251,173,184,183,216,189]},{"936888":[170,187,176,190,174,248,192,178,189,177,255,170,255,175,187,184,195,174,183,249,173,174,170,173,187,184,172,180,205,250,246,177,174,216,181,181,255,183,174,191,174,187,246,172,177,170,183,176,174,255,177,178,188,246,185,184,188,178,189,178,184,183,199,251,178,189,216,188,255,170]},{"936959":[188,174,172,187,174,189,248,189,184]},{"936969":[174,191,174,187,194,184,183,174,251,188,184]},{"936981":[194,184,190]},{"936985":[181,178,180,174,248,171,190,188,189,174,173]},{"936997":[173,184,192,183,255,182,194,249,173,184,184,187,200,255,170,183,173,255,170,187,174,250,246,171,174,178,183,176,255,170,255,179,174,187,180,246,171,194,255,189,170,181,180,178,183,176,255,189,184,246,182,174,198,255,183,184,187,182,170,181,181,194,255,178,250,246,192,184,190,181,173,255,171,174,255,170,183,176,187,194,246,170,183,173,255,182,170,180,174,255,194,184,190,246,185,170,194,255,175,184,187]},{"937099":[178,189,200,250,246,171,190,189]},{"937108":[178,255,171,174,189,246,194,184,190,216,187,174]},{"937121":[179,190,188,189,246,176,184,178,183,176]},{"937132":[189,184]},{"937135":[171,187,174,170,180,250,246,170,181,181,255,182,194,255,185,184,189,188,246,170,183,173,255,188,189,174,170,181,255,182,194,246,165,160,255,187,190,185,174,174,188,205,251,178,216,182,255,170,255,187,190,185,174,174,248,185,184,189]},{"937194":[175,170,187,182,174,187,205,249,184,183,174]},{"937206":[173,170,194]},{"937210":[178]},{"937212":[192,178,181,181,250,246,189,170,180,174]},{"937223":[184,191,174,187]},{"937228":[189,177,174,246,192,184,187,181,173,255,192,178,189,177,255,182,194,246,188,180,178,181,181,195,205,255,177,170,191,174,250,246,194,184,190,255,182,174,189,255,182,194,246,171,187,184,189,177,174,187,255,178,183,255,189,177,174,246,173,174,188,174,187,189,198]},{"937294":[177,174,216,188,250,246,192,170,194]},{"937304":[187,178,172,177,174,187,246,189,177,170,183]},{"937316":[178]},{"937318":[170,182,205,251,206,206,255,173,174,191,255,172,170,191,174,255,206,206]},{"937337":[255,255,183,184,255,175,170,187,182,178,183,176,249,255,255,255,187,174,186,190,178,187,174,173,251,173,178,173]},{"937366":[194,184,190]},{"937370":[177,174,170,187,248,189,177,170,189]},{"937380":[191,174,174,189,184,187,185,249,171,174,170,189,255,170,179,183,174,171,161,167,164,250,246,178,183,255,170,255,161,255,184,183,255,161,246,187,170,172,174,255,170,189,255,170,176,173,186,198,251,194,184,190]},{"937433":[175,184,190,183,173,248,188,177,170,171,170,173,184,184,200]},{"937449":[177,190,177,198,249,183,178,178,178,178,178,172,174,251,194,184,199,255,178,216,182,255,183,184,189,248,187,190,183,183,178,183,176,255,170,249,172,177,170,187,178,189,194,255,177,174,187,174,205,251,188,182,170,181,181,177,170,172,180,174,187,204,248,249,250,246,192,170,188,255,177,178,173,178,183,176,200,246,194,184,190]},{"937531":[175,184,190,183,173]},{"937537":[182,174,199,246,250,246,246,184,180,170,194,200]},{"937550":[194,184,190,255,172,170,183,246,181,174,170,191,174]},{"937564":[183,184,192,205,251,185,170,194,255,162,160,255,187,190,185,174,174,188,248,184,185,174,183,255,161,255,172,177,174,188,189,249,170,187,174,255,194,184,190,255,181,190,172,180,194,198,250,246,188,184,200]},{"937616":[185,181,170,194]},{"937621":[176,170,182,174,198,246]},{"937629":[228]},{"937631":[185,181,170,194,246]},{"937639":[255,183,174,191,174,187,199,254,104,251,176,184,184,173,255,181,190,172,180,255,189,177,174,183,251,192,174,181,181,255,175,178,183,174,200,255,178,248,173,178,173,183,216,189]},{"937684":[192,170,183,189,249,194,184,190,187]},{"937694":[187,190,185,174,174,188,205,251,185,170,194]},{"937706":[161,160,160,255,187,190,185,174,174,188,248,184,185,174,183,255,161,255,172,177,174,188,189,249,170,187,174,255,194,184,190,255,181,190,172,180,194,198,250,246,188,184,200,255,185,181,170,194,255,176,170,182,174,198,246,255,255,228,255,185,181,170,194,246]},{"937774":[183,174,191,174,187,199,254,104,251,178]},{"937785":[188,190,187,174]},{"937790":[173,184]},{"937793":[177,170,191,174,248,170]},{"937800":[181,184,189]},{"937804":[184,175]},{"937807":[171,174,173,188,205,249,250,246,195,184,187,170,255,178,188,255,170,246,172,177,174,170,185,188,180,170,189,174,255,170,183,173,246,192,178,181,181,255,189,187,194,255,189,184,250,246,188,174,181,181,255,194,184,190,255,177,178,188,246,189,187,170,188,177,255,175,184,187,255,165,160,160,246,187,190,185,174,174,188,204,251,178,255,188,190,187,174,255,173,184,255,177,170,191,174,248,170,255,181,184,189,255,184,175,255,171,174,173,188,205,249,250,246,173,178,173]},{"937924":[194,184,190,255,180,183,184,192,246,178,175]},{"937936":[194,184,190]},{"937940":[185,181,170,194,174,173,246,189,177,174]},{"937951":[175,181,190,189,174,255,178,183,250,246,189,177,174,255,172,174,183,189,174,187,255,184,175,246,189,184,192,183,255,189,177,178,183,176,188,246,172,184,190,181,173,255,177,170,185,185,174,183,198,251,254,109,0,252,0,228,254,106,216,188]},{"938012":[177,184,190,188,174,248]},{"938019":[188,170,183,172,189,190,170,187,194,254,114,251,254,109,0,252,0,228,254,106,216,188]},{"938042":[177,184,190,188,174,248,255,188,170,183,172,189,190,170,187,194,249,255,182,184,190,183,189,170,178,183,255,172,170,191,174,254,113,251,252,0,228,172,184,183,189,178,183,190,174,248,255,188,170,191,174,255,170,183,173,255,186,190,178,189,254,114,251,177,170,191,174]},{"938110":[168,160,248,187,190,185,174,174,188,198]},{"938121":[192,170,183,189,249,189,184]},{"938129":[185,181,170,194,250,246,173,178,176,176,178,183,176]},{"938143":[176,170,182,174,198,246,255,255,228,194,174,188,246]},{"938157":[255,255,183,184,254,104,251,184,180,170,194,200,255,190,188,174,255,189,177,174,248,188,177,184,191,174,181]},{"938185":[192,178,189,177]},{"938190":[194,199,251,188,177,184,191,174,181]},{"938200":[187,174,183,189,170,181,248,178,188]},{"938210":[168,160,255,187,190,185,174,174,188,205,249,178,255,177,170,191,174,255,170,181,181,255,173,170,194,251,189,178,182,174,188,255,190,185,199,248,189,178,182,174,255,175,184,187,255,194,184,190,249,189,184,255,176,184,205,251,172,184,182,174]},{"938271":[171,170,172,180,248,181,170,189,174,187,200]},{"938283":[178,255,177,170,191,174,249,189,184]},{"938293":[171,190,187,194,250,246,189,177,178,183,176,188,205,251,188,184,182,174,189,177,178,183,176,255,178,188,248,175,184,181,181,184,192,178,183,176,255,194,184,190,205,249,178,255,173,184,183,216,189,255,181,178,180,174,205,251,254,109,0,252,0,228,254,106,216,188,255,177,184,190,188,174,248,255,182,184,190,183,189,170,178,183]},{"938376":[172,170,191,174,254,114,251]},{"938385":[255]},{"938399":[255]},{"938414":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"938437":[255,255,255,255]},{"938442":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"938468":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"938525":[255]},{"938539":[255]},{"938553":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"938632":[255]},{"938646":[255]},{"938660":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"938727":[255]},{"938742":[255]},{"938756":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"938813":[255]},{"938828":[255]},{"938839":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"938902":[255]},{"938916":[255]},{"938924":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"938959":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939016":[255]},{"939030":[255]},{"939044":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939114":[255]},{"939129":[255]},{"939144":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939220":[255]},{"939234":[255]},{"939249":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939324":[255]},{"939339":[255]},{"939354":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939423":[255]},{"939434":[255]},{"939448":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939516":[255]},{"939531":[255]},{"939544":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939577":[255]},{"939579":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939598":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939655":[255]},{"939669":[255]},{"939683":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939752":[255]},{"939767":[255]},{"939780":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939854":[255]},{"939868":[255]},{"939882":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"939953":[255]},{"939967":[255]},{"939982":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940050":[255]},{"940065":[255]},{"940078":[255,255,255,255,255,255,255,255,255,255]},{"940089":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940153":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940197":[255]},{"940212":[255]},{"940226":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940258":[255]},{"940260":[255]},{"940262":[255,255,255,255,255]},{"940281":[255]},{"940291":[255]},{"940298":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940371":[255]},{"940386":[255]},{"940401":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940467":[255]},{"940482":[255]},{"940491":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940557":[255]},{"940572":[255]},{"940581":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940653":[255]},{"940668":[255]},{"940683":[255,255,255]},{"940687":[255,255]},{"940690":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940715":[255]},{"940717":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940787":[255]},{"940789":[255]},{"940792":[255,255]},{"940798":[255,255,255,255,255,255,255,255,255,255]},{"940809":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940867":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940911":[255]},{"940926":[255]},{"940940":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"940972":[255]},{"940974":[255]},{"940976":[255,255,255,255,255]},{"940995":[255]},{"941005":[255]},{"941012":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941085":[255]},{"941100":[255]},{"941115":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941181":[255]},{"941196":[255]},{"941205":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941271":[255]},{"941286":[255]},{"941295":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941362":[255]},{"941371":[255]},{"941385":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941457":[255]},{"941472":[255]},{"941484":[255,255,255]},{"941488":[255,255]},{"941491":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941516":[255]},{"941518":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941563":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941611":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941628":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941742":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941775":[255,255,255,255,255,255,255,255,255]},{"941785":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"941954":[255]},{"941956":[255,255,255,255,255,255,255,255,255]},{"941969":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"942030":[255]},{"942032":[255,255,255,255,255,255,255,255,255,255]},{"942046":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"942076":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"942170":[255,255,255,255,255,255,255]},{"942179":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"942789":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"942832":[255]},{"942834":[255,255,255,255,255,255,255]},{"942845":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"942899":[255]},{"942901":[255]},{"942903":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"942923":[255]},{"942925":[255,255,255,255,255,255,255,255,255,255]},{"942939":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943097":[255,255,255,255,255]},{"943104":[255,255,255,255,255]},{"943112":[255,255,255,255,255]},{"943119":[255,255,255,255,255]},{"943127":[255,255,255,255,255]},{"943134":[255,255,255,255,255]},{"943142":[255,255,255,255,255,255]},{"943150":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943187":[255,255]},{"943195":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943211":[255,255]},{"943219":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943235":[255,255]},{"943243":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943259":[255,255]},{"943267":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943298":[255,255]},{"943306":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943346":[255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943360":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943570":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943586":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943830":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943882":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943936":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"943957":[255]},{"943959":[255,255,255,255,255,255,255]},{"943970":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"944480":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"944607":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"944909":[255]},{"944911":[255]},{"944913":[255,255,255,255,255]},{"944930":[255]},{"944945":[255]},{"944952":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"944981":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945024":[255]},{"945039":[255]},{"945053":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945121":[255]},{"945134":[255]},{"945148":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945213":[255]},{"945227":[255]},{"945241":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945317":[255]},{"945332":[255]},{"945347":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945418":[255]},{"945433":[255]},{"945448":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945517":[255]},{"945532":[255]},{"945545":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945616":[255]},{"945631":[255]},{"945646":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945682":[255]},{"945684":[255]},{"945686":[255]},{"945688":[255,255,255,255,255,255,255]},{"945696":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945924":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"945941":[255,255,255,255,255,255,255]},{"945949":[255]},{"945951":[255]},{"945953":[255]},{"945955":[255,255,255,255,255,255,255,255,255]},{"945965":[255,255,255,255,255,255,255]},{"945973":[255]},{"945975":[255]},{"945977":[255,255,255,255,255,255,255,255]},{"945987":[255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946002":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946074":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946091":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946110":[255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946124":[255,255,255,255,255,255,255,255,255,255,255,255]},{"946137":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946210":[255]},{"946213":[255,255,255,255,255,255,255]},{"946225":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946346":[255]},{"946349":[255,255,255,255,255,255,255]},{"946361":[255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946376":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946558":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946679":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946711":[255,255,255,255,255,255,255,255,255,255,255]},{"946723":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946743":[255,255,255,255,255,255,255,255,255,255]},{"946755":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946826":[255]},{"946828":[255,255,255,255,255]},{"946837":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946864":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"946908":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"947006":[255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"954488":[34,92,221,160,96]},{"954852":[194,171,160]},{"955117":[137,220,160]},{"955529":[190,171,160]},{"959725":[71,219,160]},{"962925":[155,171,160]},{"962951":[155,171,160]},{"963167":[155,171,160]},{"963214":[155,171,160]},{"965041":[155,171,160]},{"965069":[155,171,160]},{"965214":[155,171,160]},{"965298":[155,171,160]},{"965316":[155,171,160]},{"967797":[34,213,170,160,234,234,234,234,234,234,234,234]},{"967817":[234,234,234,234,34,239,170,160]},{"971417":[234,234,234,234]},{"971614":[234,234,234,234]},{"972824":[106,171,160]},{"972834":[106,171,160]},{"972851":[106,171,160]},{"974665":[92,158,186,160,234]},{"974706":[205,186,160]},{"974722":[184,186,160]},{"975106":[34,172,134,160]},{"975122":[234,234,234,234]},{"975132":[34,172,134,160]},{"975265":[34,175,186,160,234,234]},{"975332":[34,149,186,160,234,234]},{"975401":[255]},{"976357":[151,171,160]},{"976423":[151,171,160]},{"978658":[135,171,160]},{"982135":[29,128,162]},{"982182":[234,234,234,234]},{"982376":[19,171,160]},{"982421":[15]},{"982430":[234,234,234,234,234,234,234,234]},{"982440":[34,122,185,160]},{"983466":[135,171,160]},{"983651":[135,171,160]},{"988539":[147,171,160]},{"988657":[147,171,160]},{"988668":[147,171,160]},{"988874":[147,171,160]},{"988902":[147,171,160]},{"989142":[147,171,160]},{"996856":[139,171,160]},{"999246":[143,171,160]},{"999265":[143,171,160]},{"999359":[143,171,160]},{"999574":[143,171,160]},{"1002731":[92,57,205,30]},{"1003079":[92,107,186,160]},{"1003229":[34,137,144,160]},{"1003277":[34,137,144,160]},{"1004410":[59,130,160]},{"1004647":[234,234,234,234]},{"1004774":[34,11,235,160,234,234]},{"1004799":[234,234,234,234]},{"1004919":[92,24,235,160]},{"1005119":[110,171,160]},{"1005176":[234,234,34,43,235,160]},{"1005296":[110,171,160]},{"1007765":[47,222,160]},{"1007826":[234,234,234,234]},{"1007848":[0,128,162]},{"1007982":[234,234,234,234,234,234,234,234]},{"1008002":[179,128,162]},{"1008025":[34,191,231,160,234,234,234,234,234,234,234,234,234,234,234]},{"1008064":[234,234,234,234]},{"1008136":[234,234,234,234]},{"1008614":[156,232,28,234]},{"1008640":[234,234,234,234]},{"1008815":[34,130,128,160,234,234]},{"1008891":[156,232,28,234]},{"1008931":[234,234,234,234]},{"1009870":[0,128,162]},{"1009930":[34]},{"1009932":[134,160,234,234]},{"1010109":[0,128,162]},{"1010175":[218,134,160]},{"1010392":[29,128,162]},{"1011427":[34,253,159,160,96,234]},{"1011580":[234,234,234,234]},{"1011648":[29,128,162]},{"1011680":[234,234,234,234]},{"1011784":[29,128,162]},{"1011808":[34,150,155]},{"1011812":[234]},{"1012597":[234,234,234,234,234,234,234,234]},{"1013277":[179,128,162]},{"1041509":[30]},{"1048568":[32,24,2,40]},{"1048576":[34,92,174,160,48,66,192,27,240,63,192,5,240,59,192,4,240,55,192,12,240,51,192,11,240,47,192,58,240,43,192,73,240,57,192,1,240,53,192,80,240,49,192,2,240,45,192,59,240,30,192,42,240,26,192,13,240,22,192,20,240,18,192,19,240,14,192,41,240,10,135]},{"1048648":[107,199]},{"1048651":[176,249,167]},{"1048655":[107,72,167]},{"1048659":[208,4,104,135]},{"1048664":[107,104,107,72,152,201,73,208,2,169]},{"1048675":[201,80,208,2,169,1,26,207,23,244,126,176,14,175,23,244,126,58,168,104,175,23,244,126,130,200,255,104,130,196,255,169]},{"1048708":[143,211,243,126,169,10,143,204,243,126,107,175,197,243,126,240,6,175,145,80,127,73,1,107,165,138,201,128,208,2,165,35,107,175,87,243,126,240,1,107,175,202,243,126,41,64,72,175,74,128,48,208,5,104,73,64,128,1,104,107,175,87,243,126,240,1,107,165,138,41,64,72,175,74,128,48,208,5,104,73,64,128,1,104,107,173,224,2,240,13,34,165,128,160,240,7,100,93,156,224,2,100,86,96,175,116,129,48,240,16,34,165,128,160,208,10,32,8,129,169,4,141,44,1,128,5,169,9,141,44,1,107,218,90,169,23,133,93,169,1,141,224,2,133,86,34,138,253,2,122,250,96,175,202,243,126,208,16,175,204,243,126,201,7,208,26,169,8,143,204,243,126,128,14,175,204,243,126,201,8,208,10,169,7,143,204,243,126,34,99,212]},{"1048900":[96,169,112,72,171,34,106,129,160,34,43,130,160,34,227,207,160,107,226,32,34,219,226,160,194,32,169,7]},{"1048929":[143,13,192,126,143,19,192,126,107,72,175,22,244,126,41,8,208,64,175,162,128,48,240,6,165,16,201,18,240,50,165,27,240,4,165,160,240,42,175,160,128,48,240,6,175,83,243,126,240,10,175,197,243,126,201,3,144,2,128,20,169]},{"1048991":[143,202,243,126,175,204,243,126,201,7,208,6,169,8,143,204,243,126,104,107,175,22,244,126,41,247,143,22,244,126,169,64,143,202,243,126,175,204,243,126,201,8,208,6,169,7,143,204,243,126,104,107,72,165,27,240,7,173,12,4,201,255,208,59,175,197,243,126,201,3,176,51,165,27,240,23,165,160,208,19,175,113,129,48,240,13,175,22,244,126,9,8,143,22,244,126,130,177,255,169]},{"1049092":[143,202,243,126,143,255,15,126,175,204,243,126,201,7,208,6,169,8,143,204,243,126,104,107,175,116,129,48,240,8,165,138,41,64,143,202,243,126,107,175,204,243,126,201,14,240,1,107,169]},{"1049142":[143,204,243,126,107,169]},{"1049149":[143,204,243,126,34,69,249]},{"1049157":[107,175,196,80,127,201,1,208,1,107,201,255,208,2,26,107,175,74,243,126,208,27,175,202,243,126,208,17,173,12,4,208,6,175,56,128,48,128,10,175,57,128,48,128,4,175,58,128,48,107,175,197,243,126,201,2,144,3,169,1,107,175,204,243,126,107,175,74,243,126,133,29,107,34,43,130,160,175,61,128,48,208,40,175,187,242,126,41,223,143,187,242,126,175,251,242,126,41,223,143,251,242,126,175,22,242,126,41,127,143,22,242,126,175,81,240,126,41,254,143,81,240,126,175,161,128,48,240,10,175,106,240,126,41,127,143,106,240,126,107,218,90,34,244,131,160,168,34,17,132,160,156,233,2,192,38,208,15,175,107,243,126,26,41,3,143,107,243,126,208,14,128]},{"1049330":[34,179,145,7,34,157,153,7,24,130,1]},{"1049342":[56,34,4,170,160,122,250,107,218,90,34,21,182,160,34,87,133,160,168,128,201,8,34,47,141,160,144,45,72,90,175]},{"1049374":[80,127,240,7,34,198,131,160,130,28]},{"1049385":[34,244,131,160,72,34,38,139,160,144,8,189,96,14,9,32,157,96,14,104,34,114,140,160,34,92,220,6,122,104,40,107,8,34,47,141,160,144,247,72,90,175]},{"1049428":[80,127,240,6,34,227,131,160,128,231,34,87,133,160,128,201,192,32,240,22,192,55,240,18,192,56,240,14,192,57,240,10,34,220,133,160,144,4,169,46,56,107,24,107,189,94,12,192,32,240,19,192,55,240,15,192,56,240,11,192,57,240,7,72,34,220,133,160,104,107,24,107,175,51,80,127,240,8,58,143,51,80,127,169]},{"1049513":[107,191,128,242,126,107,175,52,80,127,240,6,58,143,52,80,127,107,191,128,242,126,9,64,159,128,242,126,107,72,169,1,143]},{"1049547":[80,127,165,93,201,20,240,14,169]},{"1049557":[143]},{"1049559":[80,127,34,244,131,160,34,12,140,160,104,107,72,169]},{"1049574":[143]},{"1049576":[80,127,34,87,133,160,34,12,140,160,104,107,165,27,240,7,34,46,132,160,130,4]},{"1049599":[34,158,132,160,107,34,88,173,9,72,169,1,143]},{"1049613":[80,127,104,107,72,8,165,27,208,20,194,32,165,138,201,42]},{"1049630":[208,11,175,22,244,126,9,1]},{"1049639":[143,22,244,126,40,104,107,8,194,32,165,160,201,225]},{"1049654":[208,7,175]},{"1049658":[128,48,130,90]},{"1049663":[201,226]},{"1049666":[208,7,175,1,128,48,130,78]},{"1049675":[201,234]},{"1049678":[208,7,175,2,128,48,130,66]},{"1049687":[201,27,1,208,22,165,34,235,41,1]},{"1049698":[208,7,175,3,128,48,130,46]},{"1049707":[175,4,128,48,130,39]},{"1049714":[201,38,1,208,7,175,5,128,48,130,27]},{"1049726":[201,39,1,208,7,175,6,128,48,130,15]},{"1049738":[201,135]},{"1049741":[208,7,175,98,129,48,130,3]},{"1049750":[169,23]},{"1049753":[41,255]},{"1049756":[40,107,8,194,32,165,138,201,3]},{"1049766":[208,21,165,34,201,98,7,144,7,175,64,129,48,130,156]},{"1049782":[175,22,128,48,130,149]},{"1049789":[201,5]},{"1049792":[208,7,175,65,129,48,130,137]},{"1049801":[201,40]},{"1049804":[208,7,175,66,129,48,130,125]},{"1049813":[201,42]},{"1049816":[208,7,175,74,129,48,130,113]},{"1049825":[201,48]},{"1049828":[208,21,165,34,201]},{"1049834":[2,176,7,175,67,129,48,130,94]},{"1049844":[175,23,128,48,130,87]},{"1049851":[201,53]},{"1049854":[208,7,175,68,129,48,130,75]},{"1049863":[201,59]},{"1049866":[208,7,175,69,129,48,130,63]},{"1049875":[201,66]},{"1049878":[208,7,175,70,129,48,130,51]},{"1049887":[201,74]},{"1049890":[208,7,175,70,129,48,130,39]},{"1049899":[201,91]},{"1049902":[208,7,175,71,129,48,130,27]},{"1049911":[201,104]},{"1049914":[208,7,175,72,129,48,130,15]},{"1049923":[201,129]},{"1049926":[208,7,175,73,129,48,130,3]},{"1049935":[169,23]},{"1049938":[41,255]},{"1049941":[40,107,8,194,32,165,160,201,200]},{"1049951":[208,7,175,80,129,48,130,111]},{"1049960":[201,51]},{"1049963":[208,7,175,81,129,48,130,99]},{"1049972":[201,7]},{"1049975":[208,7,175,82,129,48,130,87]},{"1049984":[201,90]},{"1049987":[208,7,175,83,129,48,130,75]},{"1049996":[201,6]},{"1049999":[208,7,175,84,129,48,130,63]},{"1050008":[201,41]},{"1050011":[208,7,175,85,129,48,130,51]},{"1050020":[201,172]},{"1050023":[208,7,175,86,129,48,130,39]},{"1050032":[201,222]},{"1050035":[208,7,175,87,129,48,130,27]},{"1050044":[201,144]},{"1050047":[208,7,175,88,129,48,130,15]},{"1050056":[201,164]},{"1050059":[208,7,175,89,129,48,130,3]},{"1050068":[169,62]},{"1050071":[41,255]},{"1050074":[40,107,194,32,165,160,201,200]},{"1050083":[208,4,56,130,82]},{"1050089":[201,51]},{"1050092":[208,4,56,130,73]},{"1050098":[201,7]},{"1050101":[208,4,56,130,64]},{"1050107":[201,90]},{"1050110":[208,4,56,130,55]},{"1050116":[201,6]},{"1050119":[208,4,56,130,46]},{"1050125":[201,41]},{"1050128":[208,4,56,130,37]},{"1050134":[201,172]},{"1050137":[208,4,56,130,28]},{"1050143":[201,222]},{"1050146":[208,4,56,130,19]},{"1050152":[201,144]},{"1050155":[208,4,56,130,10]},{"1050161":[201,164]},{"1050164":[208,4,56,130,1]},{"1050170":[24,226,32,107,175,17,244,126,41,8,107,175,17,244,126,41,4,107,175,17,244,126,41,128,107,175,16,244,126,41,1,201,1,107,175,16,244,126,41,2,107,175,16,244,126,41,4,107,175,16,244,126,41,8,107,175,16,244,126,41,8,74,74,107,34,48,208,13,175,16,244,126,41,8,240,4,128,5,169,5,189,128,13,107,175,16,244,126,41,16,107,175,16,244,126,41,128,107,175,17,244,126,42,42,42,42,107,175,17,244,126,41,32,107,175,16,244,126,41,32,107,72,175,17,244,126,9,8,143,17,244,126,104,107,72,175,17,244,126,9,4,143,17,244,126,104,107,72,175,17,244,126,9,128,143,17,244,126,104,107,34,157,153,7,72,175,16,244,126,9,1,143,16,244,126,104,107,72,175,16,244,126,9,2,143,16,244,126,104,107,34,157,153,7,72,175,16,244,126,9,4,143,16,244,126,104,107,34,157,153,7,72,175,16,244,126,9,8,143,16,244,126,104,107,34,157,153,7,72,175,16,244,126,9,16,143,16,244,126,104,107,72,175,16,244,126,9,32,143,16,244,126,104,107,34,157,153,7,72,175,16,244,126,9,128,143,16,244,126,104,107,72,175,17,244,126,9,16,143,17,244,126,175,19,128,48,168,104,156,233,2,107,72,175,17,244,126,9,32,143,17,244,126,175,20,128,48,168,104,156,233,2,107,32,11,205,201,22,240,26,201,43,240,22,201,44,240,18,201,45,240,14,201,60,240,10,201,61,240,6,201,72,240,2,128,21,72,32,60,205,207,150,128,48,144,10,104,175,151,128,48,34,115,135,160,107,104,218,139,75,171,170,191,89,136,160,171,250,201,249,176,1,107,201,249,208,12,175,123,243,126,208,3,169,59,107,169,60,107,201,250,208,7,34,251,203,160,76,115,135,201,251,208,7,34,176,204,160,76,115,135,201,253,208,22,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,115,135,160,107,169,4,107,201,254,208,43,175,89,243,126,207,144,128,48,144,9,175,145,128,48,34,115,135,160,107,201]},{"1050642":[208,3,169,67,107,201,1,208,3,169,68,107,201,2,208,3,169,69,107,169,70,107,201,255,208,44,175,22,244,126,41,192,74,74,74,74,74,74,207,146,128,48,144,9,175,147,128,48,34,115,135,160,107,201]},{"1050697":[208,3,169,45,107,201,1,208,3,169,32,107,169,46,107,107,6,68,69,70,45,32,46,9,9,10,8,5,16,11,44,27,26,28,20,25,12,7,29,47,7,21,18,13,13,14,17,23,40,39,4,4,15,22,3,19,1,30,16]},{"1050762":[48,34,33,36,36,36,35,35,35,41,42,44,43,3,3,52,53,49,51,2,50,54,55,44,67,12,56,57,58,249,60,68,61,62,63,64,44]},{"1050801":[65,36,71,72,72,72,254,255,253,13,250,251,255,255,255,255,255,255,73,74,73,255,255,255,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,32,11,205,201,22,240,26,201,43,240,22,201,44,240,18,201,45,240,14,201,60,240,10,201,61,240,6,201,72,240,2,128,21,72,32,60,205,207,150,128,48,144,10,104,175,151,128,48,34,73,137,160,107,104,218,139,75,171,170,191,54,138,160,171,250,201,250,176,1,107,201,253,208,43,175,89,243,126,207,144,128,48,144,9,175,145,128,48,34,73,137,160,107,201]},{"1051048":[208,3,169,4,107,201,1,208,3,169,4,107,201,2,208,3,169,2,107,169,8,107,201,254,208,44,175,22,244,126,41,192,74,74,74,74,74,74,207,146,128,48,144,9,175,147,128,48,34,73,137,160,107,201]},{"1051103":[208,3,169,4,107,201,1,208,3,169,2,107,169,8,107,201,255,208,29,175,91,243,126,207,148,128,48,144,9,175,149,128,48,34,73,137,160,107,201]},{"1051143":[208,3,169,4,107,169,2,107,201,252,208,12,175,84,243,126,208,3,169,2,107,169,8,107,201,250,208,7,34,251,203,160,76,73,137,201,251,208,7,34,176,204,160,76,73,137,107]},{"1051191":[4,2,8,4,2,8,2,4,2,2,2,4,4,4,8,8,8,2,2,4,2,2,2,4,2,4,2,8,8,4,2,10,2,4,2,4,4]},{"1051229":[4,4,8,2,2,8,4,2,8,4,4,8,8,8,4,2,8,2,4,8,2,4,4,2,2,8,8,2,4,4,8,8,8,4,4,4,2,8,8,8,8,4,8,8,8,8,4]},{"1051278":[2,6,2,2,4,8,253,254,255,252,250,251]},{"1051296":[8,8,8]},{"1051302":[8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,72,218,139,75,171,32,11,205,201,22,240,26,201,43,240,22,201,44,240,18,201,45,240,14,201,60,240,10,201,61,240,6,201,72,240,2,128,22,32,60,205,207,150,128,48,144,11,175,151,128,48,34,38,139,160,130,128]},{"1051488":[128,107,201,94,208,22,175,89,243,126,207,144,128,48,144,10,175,145,128,48,34,38,139,160,128,102,128,81,201,95,208,35,175,22,244,126,41,192,208,25,56,128,85,74,74,74,74,74,74,207,146,128,48,144,10,175,147,128,48,34,38,139,160,128,63,128,60,201,96,208,20,175,91,243,126,207,148,128,48,144,10,175,149,128,48,34,38,139,160,128,37,201,98,208,6,34,251,203,160,128,8,201,99,208,4,34,176,204,160,162]},{"1051599":[224,36,176,12,223,228,139,160,208,3,56,128,4,232,128,240,24,171,250,104,107,4,7,8,9,10,11,12,19,21,24,36,42,52,53,54,66,67,69,89,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,255,255,255,255,255,72,218,90,32,30,140,34,115,135,160,34,45,213]},{"1051674":[122,250,104,107,72,8,72,194,32,169]},{"1051686":[143,37,192,126,143,39,192,126,169]},{"1051696":[2,143,43,192,126,226,32,169,36,143,41,192,126,163,1,34,73,137,160,143,42,192,126,143,50,192,126,104,34,38,139,160,176,2,128,27,194,32,169]},{"1051737":[143,44,192,126,143,51,192,126,169]},{"1051747":[8,143,46,192,126,169]},{"1051754":[52,143,48,192,126,40,104,96,34,38,139,160,176,15,169,1,133,6,169,12,34,136,186,13,169,2,72,128,13,169,2,133,6,169,16,34,136,186,13,169,3,72,169,37,133,8,169,192,133,9,100,7,169,126,139,72,171,169,1,143,8,80,127,34,112,223,5,169]},{"1051823":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,104,107,34,38,139,160,176,12,169,1,133,6,169,4,34,136,186,13,128,10,169,2,133,6,169,8,34,136,186,13,169,37,133,8,169,192,133,9,100,7,169,126,139,72,171,169,1,143,8,80,127,34,112,223,5,175,115,129,48,208,6,169]},{"1051904":[143,8,80,127,171,165,144,24,105,8,133,144,165,146,26,26,133,146,107,72,175,66,80,127,240,13,170,160,2]},{"1051934":[169]},{"1051937":[143,66,80,127,128,6,162,64,45,160,2]},{"1051949":[104,107,32,88,141,176,35,194,32,165,226,72,56,233,15]},{"1051965":[133,226,165,232,72,56,233,15]},{"1051974":[133,232,226,32,32,88,141,194,32,104,133,232,104,133,226,226,32,107,189,16,13,197,226,189,48,13,229,227,208,14,189]},{"1052006":[13,197,232,189,32,13,229,233,208,2,56,96,24,96,132,11,133,8,189]},{"1052026":[13,133]},{"1052029":[56,229,232,133,6,189,32,13,133,1,189,16,13,133,2,56,229,226,133,7,189,48,13,133,3,107,175,8,80,127,240,14,169]},{"1052064":[143,8,80,127,165,4,41,255,240,133,4,177,8,69,4,107,72,72,169,144,144,143,3,80,127,143,5,80,127,143,6,80,127,104,201,16,39,144,21,72,226,32,175,3,80,127,26,143,3,80,127,194,32,104,56,233,16,39,128,230,201,232,3,144,21,72,226,32,175,4,80,127,26,143,4,80,127,194,32,104,56,233,232,3,128,230,201,100]},{"1052153":[144,21,72,226,32,175,5,80,127,26,143,5,80,127,194,32,104,56,233,100]},{"1052174":[128,230,201,10]},{"1052179":[144,21,72,226,32,175,6,80,127,26,143,6,80,127,194,32,104,56,233,10]},{"1052200":[128,230,201,1]},{"1052205":[144,21,72,226,32,175,7,80,127,26,143,7,80,127,194,32,104,56,233,1]},{"1052226":[128,230,104,107,8,226,48,160]},{"1052235":[192,8,176,42,175,192,255]},{"1052243":[90,24,99,1,131,1,250,191]},{"1052252":[255,48,90,160,1,192,21,176,13,187,95,192,255]},{"1052266":[170,191]},{"1052269":[255,48,200,128,239,122,187,149]},{"1052278":[200,128,210,40,107,8,165,93,201,4,208,42,175,86,243,126,208,36,175,1,80,127,240,30,165,138,207,152,80,127,240,22,175,22,244,126,9,4,143,22,244,126,169]},{"1052322":[143,109,243,126,169]},{"1052328":[143,1,80,127,40,175,109,243,126,107,162]},{"1052340":[175,22,244,126,137,4,240,9,41,251,143,22,244,126,169,240,107,169,6,107,34,232,152,9,169]},{"1052366":[143,1,80,127,107,165,93,201,4,208,20,175,86,243,126,208,8,169,1,143,1,80,127,128,6,169]},{"1052393":[143,1,80,127,107,72,165,138,143,152,80,127,104,107,169,32,141,226,2,156,123,3,100,85,156,96,3,107,175,48,128,48,47,20,130,48,240,4,34,20,143,160,107,72,173]},{"1052439":[67,72,173,1,67,72,173,2,67,72,173,3,67,72,173,4,67,72,173,5,67,72,173,6,67,72,169,128,141]},{"1052469":[67,141,1,67,169,64,141,129,33,169,243,141,130,33,169,126,141,131,33,156,2,67,169,30,141,3,67,169,112,141,4,67,169,128,141,5,67,169,1,141,6,67,169,1,141,11,66,104,141,6,67,104,141,5,67,104,141,4,67,104,141,3,67,104,141,2,67,104,141,1,67,104,141]},{"1052543":[67,104,107,8,226,32,175,202,243,126,73,64,143,202,243,126,240,4,169,7,128,2,169,3,143,199,243,126,40,107,72,175,114,129,48,240,10,104,175,139,243,126,34,136,250,13,107,104,34,136,250,13,107,175,114,129,48,240,11,169]},{"1052604":[143,23,192,126,175,139,243,126,107,169]},{"1052615":[143,23,192,126,169,255,107,218,138,10,170,175,202,243,126,73,64,208,1,232,191,96,128,48,250,107,218,175,202,243,126,41,64,208,46,175,59,128,48,240,28,175,104,243,126,41,1,208,20,218,191,116,144,160,170,191,104,243,126,250,63,126,144,160,208,3,130,90]},{"1052684":[191,105,144,160,16,3,24,128,82,170,128,44,175,59,128,48,240,28,175,104,243,126,41,2,208,20,218,191,119,144,160,170,191,104,243,126,250,63,130,144,160,208,3,130,44]},{"1052730":[191,109,144,160,170,128,3,56,250,107,191,80,128,48,41,64,208,13,175,116,243,126,63,155,160,2,208,16,24,128,14,175,122,243,126,63,155,160,2,208,3,24,128,1,56,250,107,2,10,3,255,6,8,12,11,7,9,5,1]},{"1052790":[1,1]},{"1052795":[1]},{"1052797":[1,32,32,16]},{"1052802":[2,128,8,16,1,64,4,8,226,32,175,202,243,126,73,64,208,4,169,7,128,2,169,3,143,199,243,126,40,107,175,202,243,126,41,64,240,3,169,7,107,169,3,107,175,90,128,48,41,255]},{"1052853":[208,12,175,116,243,126,47,165,160,2,41,255]},{"1052866":[107,175,122,243,126,47,165,160,2,41,255]},{"1052878":[107,194,32,175,19,130,48,41,255]},{"1052888":[240,5,169,8]},{"1052893":[128,4,175,72,128,48,73,255,255,24,105,1]},{"1052906":[24,101,234,201,24,255,176,3,169,24,255,133,234,201,24,255,226,32,208,3,238]},{"1052928":[2,107,175,19,130,48,41,255]},{"1052937":[240,5,169,8]},{"1052942":[128,7,175,72,128,48,41,255]},{"1052951":[24,101,234,48,3,169]},{"1052959":[133,234,107,175,73,128,48,208,5,165,244,41,16,107,165,240,41,16,73,16,107,173,12,4,41,255]},{"1052986":[201,255]},{"1052989":[208,1,107,175,22,244,126,41,32]},{"1052999":[240,4,169]},{"1053004":[107,173,12,4,41,255]},{"1053011":[201,255]},{"1053014":[107,218,8,226,48,173,12,4,197,31,144,26,74,170,175,111,243,126,159,124,243,126,224]},{"1053038":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,34,247,227,160,40,250,107,72,175,117,129,48,41,255]},{"1053067":[208,24,175,200,80,127,41,255]},{"1053076":[240,9,104,169,49,36,143,96,199,126,107,104,143,96,199,126,107,104,107,72,175,117,129,48,41,255]},{"1053103":[208,24,175,200,80,127,41,255]},{"1053112":[240,9,104,169,50,36,143,98,199,126,107,104,143,98,199,126,107,104,107,72,175,201,80,127,41,255]},{"1053139":[240,9,104,169,49,36,143,90,199,126,107,104,143,90,199,126,107,104,107,72,175,201,80,127,41,255]},{"1053166":[240,9,104,169,50,36,143,92,199,126,107,104,143,92,199,126,107,104,107,175,69,128,48,208,6,169,8,22,133]},{"1053196":[107,169,136,21,133]},{"1053202":[107,175,202,80,127,208,3,130,215]},{"1053212":[226,32,169,128,143,110,243,126,194,32,162,128]},{"1053225":[165,26,41,12]},{"1053230":[74,74,240,58,201,1]},{"1053237":[240,98,201,2]},{"1053242":[208,3,130,180]},{"1053247":[191,15,254,13,41,255,239,143,70,199,126,191,17,254,13,41,255,239,143,134,199,126,191,19,254,13,41,255,239,143,198,199,126,191,21,254,13,41,255,239,143,6,200,126,107,191,15,254,13,41,255,231,143,70,199,126,191,17,254,13,41,255,231,143,134,199,126,191,19,254,13,41,255,231,143,198,199,126,191,21,254,13,41,255,231,143,6,200,126,107,191,15,254,13,41,255,235,143,70,199,126,191,17,254,13,41,255,235,143,134,199,126,191,19,254,13,41,255,235,143,198,199,126,191,21,254,13,41,255,235,143,6,200,126,107,191,15,254,13,41,255,227,143,70,199,126,191,17,254,13,41,255,227,143,134,199,126,191,19,254,13,41,255,227,143,198,199,126,191,21,254,13,41,255,227,143,6,200,126,107,191,15,254,13,143,70,199,126,191,17,254,13,143,134,199,126,191,19,254,13,143,198,199,126,191,21,254,13,143,6,200,126,107,175,69,128,48,208,6,169,16,22,133]},{"1053471":[107,169,144,21,133]},{"1053477":[107,175,69,128,48,208,6,169,24,22,133]},{"1053489":[107,169,152,21,133]},{"1053495":[107,175,69,128,48,208,6,169,32,22,133]},{"1053507":[107,169,160,21,133]},{"1053513":[107,175,69,128,48,208,1,107,8,194,48,169,80,45,141,70,22,169,84,45,141,72,22,169,81,45,141,76,22,169,82,45,141,78,22,169,83,45,141,80,22,169,85,45,141,84,22,169,86,45,141,86,22,169,87,45,141,88,22,169,88,45,141,90,22,169,89,45,141,92,22,169,90,45,141,94,22,169,91,45,141,96,22,169,92,45,141,100,22,162]},{"1053605":[169,245,36,157,134,22,157,198,22,232,232,224,32]},{"1053619":[144,240,175,22,244,126,41,32]},{"1053628":[240,3,130,213,1,175,69,128,48,41,1]},{"1053640":[208,3,130,244]},{"1053645":[169,16,40,141,132,22,226,32,169,22,24,111,125,243,126,141,134,22,169,40,105]},{"1053667":[143,135,22]},{"1053671":[169,22,24,111,128,243,126,141,136,22,169,40,105]},{"1053685":[143,137,22]},{"1053689":[169,22,24,111,126,243,126,141,140,22,169,40,105]},{"1053703":[143,141,22]},{"1053707":[169,22,24,111,127,243,126,141,142,22,169,40,105]},{"1053721":[143,143,22]},{"1053725":[169,22,24,111,134,243,126,141,144,22,169,40,105]},{"1053739":[143,145,22]},{"1053743":[169,22,24,111,130,243,126,141,148,22,169,40,105]},{"1053757":[143,149,22]},{"1053761":[169,22,24,111,129,243,126,141,150,22,169,40,105]},{"1053775":[143,151,22]},{"1053779":[169,22,24,111,132,243,126,141,152,22,169,40,105]},{"1053793":[143,153,22]},{"1053797":[169,22,24,111,135,243,126,141,154,22,169,40,105]},{"1053811":[143,155,22]},{"1053815":[169,22,24,111,133,243,126,141,156,22,169,40,105]},{"1053829":[143,157,22]},{"1053833":[169,22,24,111,131,243,126,141,158,22,169,40,105]},{"1053847":[143,159,22]},{"1053851":[169,22,24,111,136,243,126,141,160,22,169,40,105]},{"1053865":[143,161,22]},{"1053869":[169,22,24,111,137,243,126,141,164,22,169,40,105]},{"1053883":[143,165,22]},{"1053887":[194,32,175,69,128,48,41,2]},{"1053896":[208,3,130,201]},{"1053901":[169,17,40,141,196,22,175,103,243,126,41,64]},{"1053914":[240,6,169,38,40,141,198,22,175,103,243,126,41,8]},{"1053929":[240,6,169,38,40,141,200,22,175,103,243,126,41,32]},{"1053944":[240,6,169,38,40,141,204,22,175,103,243,126,41,16]},{"1053959":[240,6,169,38,40,141,206,22,175,102,243,126,41,32]},{"1053974":[240,6,169,38,40,141,208,22,175,103,243,126,41,2]},{"1053989":[240,6,169,38,40,141,212,22,175,103,243,126,41,4]},{"1054004":[240,6,169,38,40,141,214,22,175,102,243,126,41,128]},{"1054019":[240,6,169,38,40,141,216,22,175,102,243,126,41,16]},{"1054034":[240,6,169,38,40,141,218,22,175,102,243,126,41,64]},{"1054049":[240,6,169,38,40,141,220,22,175,103,243,126,41,1]},{"1054064":[240,6,169,38,40,141,222,22,175,102,243,126,41,8]},{"1054079":[240,6,169,38,40,141,224,22,175,102,243,126,41,4]},{"1054094":[240,6,169,38,40,141,228,22,175,22,244,126,41,32]},{"1054109":[208,3,130,170,1,175,69,128,48,41,4]},{"1054121":[208,3,130,201]},{"1054126":[169,33,40,141,132,22,175,105,243,126,41,64]},{"1054139":[240,6,169,38,40,141,134,22,175,105,243,126,41,8]},{"1054154":[240,6,169,38,40,141,136,22,175,105,243,126,41,32]},{"1054169":[240,6,169,38,40,141,140,22,175,105,243,126,41,16]},{"1054184":[240,6,169,38,40,141,142,22,175,104,243,126,41,32]},{"1054199":[240,6,169,38,40,141,144,22,175,105,243,126,41,2]},{"1054214":[240,6,169,38,40,141,148,22,175,105,243,126,41,4]},{"1054229":[240,6,169,38,40,141,150,22,175,104,243,126,41,128]},{"1054244":[240,6,169,38,40,141,152,22,175,104,243,126,41,16]},{"1054259":[240,6,169,38,40,141,154,22,175,104,243,126,41,64]},{"1054274":[240,6,169,38,40,141,156,22,175,105,243,126,41,1]},{"1054289":[240,6,169,38,40,141,158,22,175,104,243,126,41,8]},{"1054304":[240,6,169,38,40,141,160,22,175,104,243,126,41,4]},{"1054319":[240,6,169,38,40,141,164,22,175,69,128,48,41,8]},{"1054334":[208,3,130,201]},{"1054339":[169,32,44,141,196,22,175,101,243,126,41,64]},{"1054352":[240,6,169,38,44,141,198,22,175,101,243,126,41,8]},{"1054367":[240,6,169,38,44,141,200,22,175,101,243,126,41,32]},{"1054382":[240,6,169,38,44,141,204,22,175,101,243,126,41,16]},{"1054397":[240,6,169,38,44,141,206,22,175,100,243,126,41,32]},{"1054412":[240,6,169,38,44,141,208,22,175,101,243,126,41,2]},{"1054427":[240,6,169,38,44,141,212,22,175,101,243,126,41,4]},{"1054442":[240,6,169,38,44,141,214,22,175,100,243,126,41,128]},{"1054457":[240,6,169,38,44,141,216,22,175,100,243,126,41,16]},{"1054472":[240,6,169,38,44,141,218,22,175,100,243,126,41,64]},{"1054487":[240,6,169,38,44,141,220,22,175,101,243,126,41,1]},{"1054502":[240,6,169,38,44,141,222,22,175,100,243,126,41,8]},{"1054517":[240,6,169,38,44,141,224,22,175,100,243,126,41,4]},{"1054532":[240,6,169,38,44,141,228,22,40,107,8,139,75,171,194,48,162]},{"1054551":[191,150,152,160,157,234,18,191,170,152,160,157,42,19,191,190,152,160,157,106,19,191,210,152,160,157,170,19,191,230,152,160,157,234,19,191,250,152,160,157,42,20,191,14,153,160,157,106,20,191,34,153,160,157,170,20,191,54,153,160,157,234,20,232,232,224,20]},{"1054619":[144,186,175,116,243,126,41,4]},{"1054628":[240,24,169,43,61,141,50,19,169,44,61,141,52,19,169,45,61,141,114,19,169,46,61,141,116,19,175,116,243,126,41,2]},{"1054661":[240,24,169,43,45,141,174,19,169,44,45,141,176,19,169,45,45,141,238,19,169,46,45,141,240,19,175,116,243,126,41,1]},{"1054694":[240,24,169,43,37,141,182,19,169,44,37,141,184,19,169,45,37,141,246,19,169,46,37,141,248,19,175,122,243,126,41,2]},{"1054727":[240,12,169,68,45,141,172,20,169,69,45,141,174,20,175,122,243,126,41,16]},{"1054748":[240,12,169,68,45,141,110,20,169,69,45,141,112,20,175,122,243,126,41,64]},{"1054769":[240,12,169,68,45,141,176,20,169,69,45,141,178,20,175,122,243,126,41,32]},{"1054790":[240,12,169,68,45,141,114,20,169,69,45,141,116,20,175,122,243,126,41,4]},{"1054811":[240,12,169,68,37,141,180,20,169,69,37,141,182,20,175,122,243,126,41,1]},{"1054832":[240,12,169,68,37,141,118,20,169,69,37,141,120,20,175,122,243,126,41,8]},{"1054853":[240,12,169,68,45,141,184,20,169,69,45,141,186,20,171,40,107,251,40,249,40,249,40,249,40,249,40,249,40,249,40,249,40,249,40,251,104,252,40,245,36,245,36,245,36,43,49,44,49,245,36,245,36,245,36,252,104,252,40,245,36,245,36,245,36,61,49,46,49,245,36,245,36,245,36,252,104,252,40,245,36,43,49,44,49,245,36,245,36,43,49,44,49,245,36,252,104,252,40,245,36,61,49,46,49,245,36,245,36,61,49,46,49,245,36,252,104,252,40,245,36,245,36,245,36,245,36,245,36,245,36,245,36,245,36,252,104,252,40,245,36,70,49,71,49,70,49,71,49,70,49,71,49,245,36,252,104,252,40,70,49,71,49,70,49,71,49,70,49,71,49,70,49,71,49,252,104,251,168,249,168,249,168,249,168,249,168,249,168,249,168,249,168,249,168,251,232,251,40,249,40,249,40,249,40,249,40,249,40,249,40,249,40,249,40,251,104,252,40,33,37,34,37,35,37,36,37,63,37,245,36,245,36,245,36,252,104,252,40,245,36,245,36,245,36,245,36,245,36,245,36,245,36,245,36,252,104,252,40,245,36,245,36,245,36,59,33,60,33,245,36,245,36,245,36,252,104,252,40,245,36,245,36,245,36,61,33,62,33,245,36,245,36,245,36,252,104,252,40,245,36,245,36,245,36,245,36,245,36,245,36,245,36,245,36,252,104,252,40,245,36,59,33,60,33,245,36,245,36,59,33,60,33,245,36,252,104,252,40,245,36,61,33,62,33,245,36,245,36,61,33,62,33,245,36,252,104,251,168,249,168,249,168,249,168,249,168,249,168,249,168,249,168,249,168,251,232,251,40,249,40,249,40,249,40,249,40,249,40,249,40,249,40,249,40,251,104,252,40,47,37,52,37,53,37,54,37,55,37,245,36,245,36,245,36,252,104,252,40,245,36,245,36,245,36,245,36,245,36,245,36,245,36,245,36,252,104,252,40,245,36,245,36,70,49,71,49,70,49,71,49,245,36,245,36,252,104,252,40,245,36,245,36,245,36,245,36,245,36,245,36,245,36,245,36,252,104,252,40,245,36,70,49,71,49,70,49,71,49,70,49,71,49,245,36,252,104,252,40,245,36,245,36,245,36,245,36,245,36,245,36,245,36,245,36,252,104,252,40,245,36,245,36,70,49,71,49,70,49,71,49,245,36,245,36,252,104,251,168,249,168,249,168,249,168,249,168,249,168,249,168,249,168,249,168,251,232,194,32,165,160,201,23,1,208,6,226,32,169,160,128,76,226,32,175,132,128,48,201,160,176,66,175,146,80,127,208,23,175,132,128,48,24,111,109,243,126,207,108,243,126,144,4,175,108,243,126,143,146,80,127,175,109,243,126,207,146,80,127,144,19,169]},{"1055476":[143,114,243,126,173,10,2,208,14,169]},{"1055487":[143,146,80,127,56,107,169,8,143,114,243,126,24,107,175,109,243,126,207,108,243,126,144,21,175,108,243,126,143,109,243,126,169]},{"1055521":[143,114,243,126,173,10,2,208,8,56,107,169,160,143,114,243,126,24,107,194,32,165,160,201,23,1,208,6,226,32,169,128,128,61,226,32,175,133,128,48,201,128,176,51,175,147,80,127,208,19,175,133,128,48,24,111,110,243,126,201,128,144,2,169,128,143,147,80,127,175,110,243,126,207,147,80,127,144,8,169]},{"1055602":[143,147,80,127,56,107,169,1,143,115,243,126,24,107,226,48,175,110,243,126,201,128,176,9,169,128,143,115,243,126,226,48,107,226,49,107,254,128,13,72,8,194,32,165,160,201,35,1,208,7,175,16,128,48,168,128,14,201,30,1,208,7,175,17,128,48,168,128,2,160,70,40,104,107,218,90,8,160,255,162]},{"1055683":[165,12,201,232,3,144,3,130,24]},{"1055693":[201,100]},{"1055696":[144,3,130,97]},{"1055701":[201,10]},{"1055704":[144,3,130,170]},{"1055709":[201,1]},{"1055712":[144,3,130,243]},{"1055717":[100,10,165,12,201,232,3,144,8,56,233,232,3,230,10,128,243,133,12,192,255,208,10,160,6,165,14,24,121,106,157,133,14,165,14,159]},{"1055754":[201,126,232,232,169,56]},{"1055761":[159]},{"1055763":[201,126,232,232,164,10,152,10,168,185,86,157,159]},{"1055777":[201,126,232,232,169]},{"1055784":[159]},{"1055786":[201,126,232,232,165,14,24,105,8]},{"1055796":[133,14,100,10,165,12,201,100]},{"1055805":[144,8,56,233,100]},{"1055811":[230,10,128,243,133,12,192,255,208,10,160,4,165,14,24,121,106,157,133,14,165,14,159]},{"1055835":[201,126,232,232,169,56]},{"1055842":[159]},{"1055844":[201,126,232,232,164,10,152,10,168,185,86,157,159]},{"1055858":[201,126,232,232,169]},{"1055865":[159]},{"1055867":[201,126,232,232,165,14,24,105,8]},{"1055877":[133,14,100,10,165,12,201,10]},{"1055886":[144,8,56,233,10]},{"1055892":[230,10,128,243,133,12,192,255,208,10,160,2,165,14,24,121,106,157,133,14,165,14,159]},{"1055916":[201,126,232,232,169,56]},{"1055923":[159]},{"1055925":[201,126,232,232,164,10,152,10,168,185,86,157,159]},{"1055939":[201,126,232,232,169]},{"1055946":[159]},{"1055948":[201,126,232,232,165,14,24,105,8]},{"1055958":[133,14,100,10,165,12,201,1]},{"1055967":[144,8,56,233,1]},{"1055973":[230,10,128,243,133,12,192,255,208,10,160]},{"1055985":[165,14,24,121,106,157,133,14,165,14,159]},{"1055997":[201,126,232,232,169,56]},{"1056004":[159]},{"1056006":[201,126,232,232,164,10,152,10,168,185,86,157,159]},{"1056020":[201,126,232,232,169]},{"1056027":[159]},{"1056029":[201,126,232,232,165,14,24,105,8]},{"1056039":[133,14,226,32,138,74,74,74,133,6,10,10,72,165,34,207,34,80,127,144,13,207,35,80,127,176,7,104,34,132,186,13,128,5,104,34,128,186,13,138,74,74,74,40,122,250,96,48,2,49,2,2,2,3,2,18,2,19,2,34,2,35,2,50,2,51,2,4]},{"1056110":[252,255,248,255,218,90,8,194,48,162]},{"1056122":[191,1,200,48,197,160,208,66,191,5,200,48,41,64]},{"1056137":[208,13,175,153,80,127,41,255]},{"1056146":[223,3,200,48,208,44,226,32,191]},{"1056156":[200,48,143,80,80,127,191,5,200,48,143,81,80,127,41,3,10,10,143,96,80,127,191,6,200,48,143,99,80,127,191,7,200,48,143,98,80,127,128,33,191]},{"1056198":[200,48,41,255]},{"1056203":[201,255]},{"1056206":[240,10,232,232,232,232,232,232,232,232,128,160,226,32,169,255,143,81,80,127,130,203]},{"1056229":[226,32,162]},{"1056234":[160]},{"1056237":[152,207,96,80,127,144,3,130,172]},{"1056247":[191,129,200,48,201,255,208,3,130,161]},{"1056258":[191,128,200,48,207,80,80,127,240,3,130,137]},{"1056271":[191,129,200,48,218,187,159,82,80,127,250,191,130,200,48,218,187,159,83,80,127,250,191,131,200,48,218,187,159,84,80,127,250,90,218,169]},{"1056308":[235,152,74,74,24,111,98,80,127,170,191,160,243,126,187,159,85,80,127,168,250,191,132,200,48,240,43,152,223,132,200,48,144,36,122,191,133,200,48,218,187,159,82,80,127,250,191,134,200,48,218,187,159,83,80,127,250,191,135,200,48,218,187,159,84,80,127,250,128,1,122,218,90,218,187,191,82,80,127,250,168,194,32,163,1,170,191,207,158,160,170,32,238,158,122,250,200,200,200,200,232,232,232,232,232,232,232,232,130,74,255,169,128,141]},{"1056423":[33,32,9,159,169,15,141]},{"1056431":[33,169]},{"1056434":[143,95,80,127,40,122,250,175,81,80,127,201,255,208,13,104,104,104,254,160,11,189,64,14,92,241,139,6,107]},{"1056467":[128]},{"1056472":[1]},{"1056475":[169,5,143,68,80,127,169,159,143,69,80,127,169,160,143,70,80,127,96,138,24,105,128,17,143,66,80,127,226,48,152,34,115,135,160,34,45,213]},{"1056514":[194,16,96,32,9,159,107,173]},{"1056523":[67,72,173,1,67,72,173,2,67,72,173,3,67,72,173,4,67,72,173,5,67,72,173,6,67,72,169,1,141]},{"1056553":[67,169,24,141,1,67,169,128,141,21,33,169,128,141,2,67,169,161,141,3,67,169,126,141,4,67,169,64,141,5,67,156,6,67,169,96,141,22,33,169,94,141,23,33,169,1,141,11,66,169,64,141,5,67,156,6,67,169,96,141,22,33,169,95,141,23,33,169,1,141,11,66,169,64,141,5,67,156,6,67,169,32,141,22,33,169,92,141,23,33,169,1,141,11,66,169,64,141,5,67,156,6,67,169,32,141,22,33,169,93,141,23,33,169,1,141,11,66,169,64,141,5,67,156,6,67,169,64,141,22,33,169,92,141,23,33,169,1,141,11,66,169,64,141,5,67,156,6,67,169,64,141,22,33,169,93,141,23,33,169,1,141,11,66,104,141,6,67,104,141,5,67,104,141,4,67,104,141,3,67,104,141,2,67,104,141,1,67,104,141]},{"1056744":[67,96,104,104,104,169,30,72,169,238,72,169,233,72,189,128,14,92,129,135]},{"1056765":[175,81,80,127,201,255,208,3,76,234,159,139,75,171,34,231,244,30,32,50,160,175,81,80,127,41,128,240,16,218,175,98,80,127,170,191,160,243,126,240,3,250,128,7,250,32,40,164,32,74,162,171,107,175,99,80,127,41,3,240,21,201,1,208,3,130,160]},{"1056833":[201,2,208,3,130,222]},{"1056840":[201,3,208,3,130,105,1,218,162]},{"1056850":[165,26,41,16,240,12,189,193,160,159]},{"1056861":[201,126,232,224,16,144,244,189,209,160,159]},{"1056873":[201,126,232,224,16,144,244,250,175,99,80,127,74,74,74,74,41,14,15,5,201,126,143,5,201,126,175,99,80,127,74,74,74,74,41,14,15,13,201,126,143,13,201,126,139,169,2,133,6,169,8,34,128,186,13,100,7,169]},{"1056932":[133,8,169,201,133,9,169,126,72,171,34,112,223,5,165,144,24,105,8,133,144,165,146,26,26,133,146,171,96]},{"1056963":[248,255]},{"1056968":[2]},{"1056973":[16]},{"1056976":[2]},{"1056979":[248,255]},{"1056984":[2]},{"1056989":[16,64]},{"1056992":[2,169,1,133,6,169,4,34,128,186,13,100,7,165,26,41,8,240,10,169,22,133,8,169,161,133,9,128,8,169,30,133,8,169,161,133,9,34,112,223,5,165,144,24,105,4,133,144,165,146,26,133,146,96]},{"1057050":[70,10]},{"1057053":[2]},{"1057058":[70,74]},{"1057061":[2,218,162]},{"1057065":[165,26,41,64,240,12,189,152,161,159]},{"1057076":[201,126,232,224,16,144,244,189,168,161,159]},{"1057088":[201,126,232,224,16,144,244,250,175,99,80,127,74,74,74,74,41,14,15,5,201,126,143,5,201,126,175,99,80,127,74,74,74,74,41,14,15,13,201,126,143,13,201,126,139,169,2,133,6,169,8,34,128,186,13,100,7,169]},{"1057147":[133,8,169,201,133,9,169,126,72,171,34,112,223,5,165,144,24,105,8,133,144,165,146,26,26,133,146,171,96]},{"1057178":[248,255,132]},{"1057183":[2]},{"1057188":[16]},{"1057191":[2]},{"1057194":[248,255,132]},{"1057199":[2]},{"1057204":[16,64]},{"1057207":[2,218,162]},{"1057211":[165,26,41,64,240,12,189,42,162,159]},{"1057222":[201,126,232,224,16,144,244,189,58,162,159]},{"1057234":[201,126,232,224,16,144,244,250,175,99,80,127,74,74,74,74,41,14,15,5,201,126,143,5,201,126,175,99,80,127,74,74,74,74,41,14,15,13,201,126,143,13,201,126,139,169,2,133,6,169,8,34,128,186,13,100,7,169]},{"1057293":[133,8,169,201,133,9,169,126,72,171,34,112,223,5,165,144,24,105,8,133,144,165,146,26,26,133,146,171,96]},{"1057324":[248,255,142]},{"1057329":[2]},{"1057334":[16]},{"1057337":[2]},{"1057340":[248,255,142]},{"1057345":[2]},{"1057350":[16,64]},{"1057353":[2,218,90,8,160]},{"1057359":[90,152,74,74,168,175,95,80,127,57,100,163,240,3,122,128,48,122,173,238]},{"1057380":[221,32,15,208,39,32,251,163,32,103,163,34,230,131,6,144,3,32,27,164,32,209,163,34,230,131,6,144,15,165,246,41,128,240,9,165,16,201,12,176,3,32,159,162,200,200,200,200,152,207,96,80,127,144,180,40,122,250,96,218,90,187,191,82,80,127,201,14,240,14,201,46,240,10,201,47,240,6,201,48,240,2,128,6,34,40,222,30,48,37,175,81,80,127,41,128,208,44,194,32,175,96,243,126,223,83,80,127,226,32,176,30,169,122,160,1,34,25,226,5,169,60,141,46,1,128,126,169,107,160,1,34,25,226,5,169,60,141,46,1,128,111,175,81,80,127,41,128,208,17,194,32,175,96,243,126,56,255,83,80,127,143,96,243,126,226,32,191,82,80,127,168,34,157,153,7,191,85,80,127,26,159,85,80,127,138,74,74,170,175,81,80,127,41,128,208,33,175,95,80,127,29,100,163,143,95,80,127,218,138,24,111,98,80,127,170,191,160,243,126,26,240,4,159,160,243,126,250,128,23,175,95,80,127,9,7,143,95,80,127,218,175,98,80,127,170,169,1,159,160,243,126,250,122,250,96,1,2,4,194,32,165]},{"1057643":[72,226,32,189,48,13,235,189,16,13,194,32,72,90,175,81,80,127,41,3]},{"1057664":[58,10,168,185,14,165,133]},{"1057672":[122,104,24,113]},{"1057677":[24,105,2]},{"1057681":[226,32,133,4,235,133,10,189,32,13,235,189]},{"1057694":[13,194,32,90,200,200,24,113]},{"1057703":[122,72,175,81,80,127,41,128]},{"1057712":[240,7,104,24,105,4]},{"1057719":[128,1,104,226,32,133,5,235,133,11,169,12,133,6,169,14,133,7,194,32,104,133]},{"1057742":[226,32,96,8,226,32,165,4,56,233,10,133,4,165,10,233]},{"1057759":[133,10,165,5,56,233,8,133,5,165,11,233]},{"1057772":[133,11,165,6,24,105,20,133,6,169,40,133,7,40,96,169,8,133,2,133,3,165,34,24,105,4,133]},{"1057800":[165,35,105]},{"1057804":[133,8,165,32,105,8,133,1,165,33,105]},{"1057816":[133,9,96,218,34]},{"1057822":[245,28,100,94,34,179,145,7,250,96,139,75,171,218,90,138,143,97,80,127,162]},{"1057844":[160]},{"1057846":[175,81,80,127,41,3,201,3,208,5,32,89,164,128,4,201,2,208,5,32,89,164,128,4,201,1,208,3,32,89,164,122,250,171,96,175,95,80,127,57,100,163,240,3,130,163]},{"1057893":[90,175,81,80,127,41,3,58,10,168,194,32,185,14,165,133]},{"1057910":[163,1,10,10,168,177]},{"1057917":[143,37,192,126,200,200,175,81,80,127,41,128]},{"1057930":[208,8,177]},{"1057934":[143,39,192,126,128,10,177]},{"1057942":[24,105,4]},{"1057946":[143,39,192,126,226,32,122,191,82,80,127,201,46,208,2,128,15,201,47,208,2,128,9,201,48,240,5,185,44,165,128,2,169,192,143,41,192,126,191,82,80,127,34,73,137,160,143,42,192,126,169]},{"1057998":[143,43,192,126,191,82,80,127,34,38,139,160,176,10,169,2,143,44,192,126,169,1,128,11,169]},{"1058024":[143,44,192,126,32,255,165,169,2,218,72,175,97,80,127,170,104,32,182,165,250,175,81,80,127,41,128,208,3,32,47,165,200,232,232,232,232,96,20,165,24,165,32,165,8]},{"1058070":[40]},{"1058072":[240,255,40]},{"1058076":[32]},{"1058078":[40]},{"1058080":[216,255,40]},{"1058084":[8]},{"1058086":[40]},{"1058088":[56]},{"1058090":[40]},{"1058092":[230,194,196,139,75,171,218,90,8,194,32,90,175,81,80,127,41,3]},{"1058111":[58,10,168,185,14,165,133]},{"1058119":[185,164,165,133,2,122,90,152,10,10,168,177]},{"1058132":[133,14,152,74,168,177,2,143,34,80,127,200,177,2,143,35,80,127,122,191,83,80,127,133,12,32,188,155,226,32,133,6,100,7,72,169]},{"1058169":[133,8,169,201,133,9,169,126,72,171,218,72,175,97,80,127,170,104,34,112,223,5,250,163,1,10,10,24,101,144,133,144,104,24,101,146,133,146,40,122,250,171,96,170,165,172,165,176,165]},{"1058219":[255]},{"1058221":[128,128,255]},{"1058225":[96,96,144,144,255,218,90,72,133,6,165,32,201,98,176,10,163,1,10,10,34,128,186,13,128,8,163,1,10,10,34,132,186,13,163,1,133,6,100,7,169,37,133,8,169,192,133,9,169,126,139,72,171,34,112,223,5,171,163,1,10,10,24,101,144,133,144,165,146,24,99,1,133,146,104,122,250,96,218,162]},{"1058306":[194,32,191,37,192,126,24,105,4]},{"1058316":[159,37,192,126,159,45,192,126,191,39,192,126,24,105,8]},{"1058332":[159,47,192,126,191,41,192,126,24,105,16]},{"1058344":[159,49,192,126,191,43,192,126,159,51,192,126,226,32,250,96,175,18,128,48,34,12,140,160,107,72,175,18,128,48,34,114,140,160,104,107,72,175,18,128,48,168,104,34,56,135,160,107,169,8,157,80,15,169]},{"1058399":[143]},{"1058401":[80,127,32,168,166,34,12,140,160,107,72,175]},{"1058414":[80,127,240,6,34,93,166,160,128,7,32,168,166,34,195,140,160,104,107,32,168,166,201,36,208,24,90,160,36,34,92,174,160,122,175,111,243,126,26,143,111,243,126,169,47,34,138,187,13,107,90,168,34,157,153,7,122,107,165,160,201,115,208,6,175,96,129,48,128,12,201,140,208,6,175,97,129,48,128,2,169,36,96,185,121,55,218,175,228,80,127,133,8,175,230,80,127,143,10]},{"1058515":[162,5]},{"1058518":[175,10]},{"1058522":[74,143,10]},{"1058527":[8,165,8,74,40,144,2,9,128,133,8,202,224]},{"1058542":[208,230,175,224,80,127,143,12]},{"1058552":[175,226,80,127,143,14]},{"1058560":[162,2]},{"1058563":[175,12]},{"1058567":[74,143,12]},{"1058572":[8,175,14]},{"1058577":[74,40,105]},{"1058582":[143,14]},{"1058586":[202,224]},{"1058590":[208,227,165,8,79,12]},{"1058598":[143,242,80,127,175,10]},{"1058606":[79,14]},{"1058610":[143,244,80,127,175,228,80,127,133,8,175,230,80,127,143,10]},{"1058628":[162,4]},{"1058631":[165,8,74,133,8,8,175,10]},{"1058641":[74,40,105]},{"1058646":[143,10]},{"1058650":[202,224]},{"1058654":[208,231,175,224,80,127,143,12]},{"1058664":[175,226,80,127,143,14]},{"1058672":[162,3]},{"1058675":[175,10]},{"1058679":[74,143,10]},{"1058684":[8,165,8,74,40,144,2,9,128,133,8,202,224]},{"1058699":[208,230,165,8,79,12]},{"1058707":[143,246,80,127,175,10]},{"1058715":[79,14]},{"1058719":[143,248,80,127,175,242,80,127,24,111,246,80,127,143,242,80,127,175,244,80,127,111,248,80,127,143,244,80,127,175,232,80,127,79,224,80,127,133,8,175,234,80,127,79,226,80,127,143,10]},{"1058770":[175,236,80,127,41,3]},{"1058777":[79,240,80,127,10,10,170,191,208,80,127,79,228,80,127,143,246,80,127,191,210,80,127,79,230,80,127,143,248,80,127,175,242,80,127,79,246,80,127,133,6,175,244,80,127,79,248,80,127,143,8]},{"1058830":[250,96,8,226,32,169,52,141,4,66,156,5,66,165,4,141,6,66,169,6,234,234,234,234,234,234,24,109,20,66,133,5,175,193,166,160,133,8,175,194,166,160,143,9]},{"1058876":[175,195,166,160,143,10]},{"1058884":[175,196,166,160,143,11]},{"1058892":[32,31,169,165,8,143,232,80,127,194,32,175]},{"1058905":[81,127,143,224,80,127,175,2,81,127,143,226,80,127,175,232,80,127,74,74,41,3,143,240,80,127,165,4,56,233,1,143,236,80,127,58,10,10,170,191]},{"1058946":[81,127,143,228,80,127,191,2,81,127,143,230,80,127,32,196,166,175,236,80,127,10,10,170,191]},{"1058972":[81,127,56,229,6,159]},{"1058979":[81,127,143,224,80,127,191,2,81,127,239,8]},{"1058993":[159,2,81,127,143,226,80,127,175,236,80,127,58,143,236,80,127,208,184,165,4,58,10,10,170,191]},{"1059020":[81,127,143,228,80,127,191,2,81,127,143,230,80,127,32,196,166,175]},{"1059039":[81,127,56,229,6,143]},{"1059046":[81,127,143,224,80,127,175,2,81,127,239,8]},{"1059060":[143,2,81,127,143,226,80,127,175,232,80,127,56,239,193,166,160,143,232,80,127,175,234,80,127,56,239,195,166,160,143,234,80,127,165,5,240,3,130,74,255,40,107,169]},{"1059105":[143,246,80,127,143,247,80,127,143,248,80,127,143,249,80,127,162,32,78,11]},{"1059126":[110,10]},{"1059129":[110,9]},{"1059132":[102,8,144,40,175,246,80,127,24,101,5,143,246,80,127,175,247,80,127,105]},{"1059154":[143,247,80,127,175,248,80,127,105]},{"1059165":[143,248,80,127,175,249,80,127,105]},{"1059176":[106,143,249,80,127,110,248,80,110,247,80,110,246,80,110,245,80,110,244,80,110,243,80,110,242,80,202,208,174,96,72,175,17,244,126,9,1,143,17,244,126,104,107,72,175,17,244,126,9,2,143,17,244,126,104,107,175,17,244,126,41,1,107,175,17,244,126,41,2,107,34,115,135,160,72,165,138,201,3,240,6,34,147,169,160,128,4,34,134,169,160,104,107,34,158,132,160,34,12,140,160,169,1,143,51,80,127,143,52,80,127,34,174,169,160,169,235,143]},{"1059295":[254,127,34,93,246,29,165,34,153,16,13,165,35,153,48,13,165,32,153]},{"1059315":[13,165,33,153,32,13,169]},{"1059323":[153,32,15,169,127,153,112,15,107,72,8,34,46,170,160,144,31,156,18,1,156,239,3,169]},{"1059348":[133,93,194,32,165,138,201,48]},{"1059357":[208,10,226,32,169,2,133,47,169,60,133,70,226,32,40,104,107,194,32,165,138,201,3]},{"1059381":[208,13,165,34,201,98,7,176,4,56,130,19]},{"1059394":[128,16,201,48]},{"1059399":[208,11,165,34,201]},{"1059405":[2,144,4,56,130,1]},{"1059412":[24,226,32,107,191,170,196,160,145,146,122,92,20,199,8,201,2,240,44,194,32,165,8,133]},{"1059437":[226,32,34,16,247,8,169,52,145,144,200,191,154,197,160,16,2,165,116,10,9,48,145,144,200,90,152,56,233,4,74,74,168,169]},{"1059472":[145,146,122,107,175,98,243,126,34,176,141,160,175,4,80,127,41,255]},{"1059491":[9]},{"1059493":[36,143,80,199,126,175,5,80,127,41,255]},{"1059505":[9]},{"1059507":[36,143,82,199,126,175,6,80,127,41,255]},{"1059519":[9]},{"1059521":[36,143,84,199,126,175,7,80,127,41,255]},{"1059533":[9]},{"1059535":[36,143,86,199,126,107,175,36,128,48,143,114,243,126,107,175,36,128,48,143,114,243,126,175,37,128,48,143,115,243,126,107,175,36,128,48,240,10,175,109,243,126,207,108,243,126,208,17,175,37,128,48,240,8,175,110,243,126,201,128,208,3,169]},{"1059599":[107,169,1,107,175,1,254,127,207,32,128,48,176,5,34,113,186,13,107,175]},{"1059620":[254,127,208,245,169,4,107,34,250,208,160,173,196,4,207,33,128,48,240,15,34,113,186,13,41,7,201,7,240,19,34,12,209,160,107,169,51,133,200,173,3,4,41,64,208,3,169,7,107,34,12,209,160,34,113,186,13,41,7,201,7,208,2,169]},{"1059685":[107,169]},{"1059688":[128,107,169,1,128,103,165,160,201,32,208,51,169,2,34,218,171,160,72,175,134,128,48,240,4,104,9,1,107,104,107,169,3,128,74,169,4,128,70,169,5,128,66,169,6,128,62,169,7,128,58,169,8,128,54,169,9,128,50,169,10,128,46,169,11,34,218,171,160,72,175,134,128,48,240,4,104,9,1,107,104,107,169,12,128,23,169,13,128,19,169,14,34,218,171,160,72,175,134,128,48,240,4,104,41,254,107,104,107,34,218,171,160,107,218,8,194,32,41,127]},{"1059809":[10,170,191]},{"1059813":[82,127,26,41,255,3,159]},{"1059821":[82,127,170,10,191]},{"1059827":[128,175,40,250,107,218,8,194,48,162]},{"1059839":[191,47,172,160,159]},{"1059845":[82,127,232,232,191,47,172,160,159]},{"1059855":[82,127,232,232,191,47,172,160,159]},{"1059865":[82,127,232,232,191,47,172,160,159]},{"1059875":[82,127,232,232,224,127]},{"1059882":[144,211,40,250,107]},{"1059889":[64]},{"1059891":[128]},{"1059893":[192]},{"1059896":[1,64,1,128,1,192,1]},{"1059904":[2,64,2,128,2,192,2]},{"1059912":[3,64,3,128,3,192,3,165,138,201,112,208,25,175,240,242,126,41,32,208,17,160,2,34,241,182,8,144,9,169,3,141,198,4,100,176,100,200,107,165,138,201,71,208,25,175,199,242,126,41,32,208,17,160,3,34,241,182,8,144,9,169,4,141,198,4,100,176,100,200,107,100,80,156,193,15,72,175,34,128,48,208,4,34,79,172,160,175,35,128,48,208,4,34,111,172,160,104,107,72,175,34,128,48,201,1,208,4,34,79,172,160,175,35,128,48,201,1,208,4,34,111,172,160,104,107,72,175,34,128,48,201,2,208,4,34,79,172,160,175,35,128,48,201,2,208,4,34,111,172,160,104,107,165,244,137,64,208,63,137,32,208,39,165,240,137,32,208,31,175,22,244,126,41,32,240,19,175,22,244,126,41,223,143,22,244,126,165,27,240,5,169,32,141,47,1,34,65,223,13,24,107,175,22,244,126,9,32,143,22,244,126,169,32,141,47,1,34,65,223,13,107,169,16,141,7,2,173,2,2,201,2,208,28,175,140,243,126,41,192,201,192,208,88,175,65,243,126,73,3,143,65,243,126,169,32,141,47,1,130,155]},{"1060174":[201,1,208,34,175,142,243,126,41,192,201,192,208,56,175,64,243,126,56,233,1,73,2,24,105,1,143,64,243,126,169,32,141,47,1,130,117]},{"1060212":[201,5,208,30,175,140,243,126,41,48,201,48,208,18,175,68,243,126,73,3,143,68,243,126,169,32,141,47,1,130,85]},{"1060244":[128,78,201,13,208,56,173,122,3,201,1,240,61,175,140,243,126,137,4,240,59,41,3,240,55,175,76,243,126,201,1,208,16,175,140,243,126,41,1,240,4,169,3,128,6,169,2,128,2,169,1,143,76,243,126,169,32,141,47,1,128,23,201,16,208,14,34,235,173,160,128,13,24,107,169,1,143,76,243,126,169,60,141,46,1,56,107,165,244,41,64,240,37,175,79,243,126,240,28,218,26,201,5,144,2,169,1,170,191,91,243,126,208,2,162,1,138,143,79,243,126,169,32,141,47,1,250,169]},{"1060373":[107,165,244,41,12,107,165,246,41,64,240,15,169,16,141,7,2,169,32,141,47,1,169,7,141]},{"1060399":[2,107,165,246,41,64,240,19,169,16,141,7,2,169,32,141,47,1,238]},{"1060419":[2,156,5,2,169]},{"1060425":[107,165,244,41,12,107,175,67,244,126,240,1,107,72,218,8,76,52,175,72,218,8,192,12,208,13,175,140,243,126,9,128,143,140,243,126,130,196]},{"1060464":[192,42,208,13,175,140,243,126,9,64,143,140,243,126,130,179]},{"1060481":[192,41,208,13,175,140,243,126,9,32,143,140,243,126,130,162]},{"1060498":[192,13,208,13,175,140,243,126,9,16,143,140,243,126,130,145]},{"1060515":[192,19,208,13,175,140,243,126,9,4,143,140,243,126,130,128]},{"1060532":[192,20,208,13,175,140,243,126,9,2,143,140,243,126,130,111]},{"1060549":[192,74,208,13,175,140,243,126,9,1,143,140,243,126,130,94]},{"1060566":[192,11,208,19,175,117,129,48,208,10,175,142,243,126,9,128,143,142,243,126,130,71]},{"1060589":[192,58,208,13,175,142,243,126,9,128,143,142,243,126,130,54]},{"1060606":[192,59,208,13,175,142,243,126,9,64,143,142,243,126,130,37]},{"1060623":[192,67,208,19,175,117,129,48,240,10,175,142,243,126,9,128,143,142,243,126,130,14]},{"1060646":[192,88,208,10,175,142,243,126,9,64,143,142,243,126,175,67,244,126,240,3,130,172,4,192,32,208,3,130,102,2,192,38,208,3,130,95,2,192,46,208,3,130,88,2,192,47,208,3,130,81,2,192,48,208,3,130,74,2,192,55,208,3,130,67,2,192,56,208,3,130,60,2,192,57,208,3,130,53,2,192]},{"1060727":[208,3,130,46,2,192,4,144,6,192,80,240,2,128,3,130,95]},{"1060745":[192,59,208,3,130,88]},{"1060752":[165,27,240,84,173,233,2,201,1,240,77,8,194,32,173,142,4,201,18,1,208,3,130,59]},{"1060777":[201,15,1,208,3,130,51]},{"1060785":[201,16,1,208,3,130,43]},{"1060793":[201,28,1,208,3,130,35]},{"1060801":[201,31,1,208,3,130,27]},{"1060809":[201,255]},{"1060812":[208,3,130,19]},{"1060817":[201,20,1,208,3,130,11]},{"1060825":[201,22,1,208,3,130,3]},{"1060833":[40,128,4,40,130,1,4,165,27,208,3,130,134,1,226,32,173,12,4,201]},{"1060854":[208,2,128,4,201,2,208,21,192,50,208,3,130,165,1,175,52,244,126,24,105,16,143,52,244,126,130,98,1,201,4,208,30,175,54,244,126,26,41,7,170,175,54,244,126,41,248,143,54,244,126,138,15,54,244,126,143,54,244,126,130,64,1,201,6,208,14,175,53,244,126,24,105,32,143,53,244,126,130,46,1,201,8,208,30,175,53,244,126,26,41,3,170,175,53,244,126,41,252,143,53,244,126,138,15,53,244,126,143,53,244,126,130,12,1,201,10,208,34,72,218,175,57,244,126,26,41,15,170,175,57,244,126,41,240,143,57,244,126,138,15,57,244,126,143,57,244,126,250,104,130,230]},{"1061007":[201,12,208,34,72,218,175,52,244,126,26,41,15,170,175,52,244,126,41,240,143,52,244,126,138,15,52,244,126,143,52,244,126,250,104,130,192]},{"1061045":[201,14,208,34,72,218,175,56,244,126,26,41,15,170,175,56,244,126,41,240,143,56,244,126,138,15,56,244,126,143,56,244,126,250,104,130,154]},{"1061083":[201,16,208,14,175,55,244,126,24,105,16,143,55,244,126,130,136]},{"1061101":[201,18,208,14,175,56,244,126,24,105,16,143,56,244,126,130,118]},{"1061119":[201,20,208,32,175,53,244,126,24,105,4,41,28,170,175,53,244,126,41,227,143,53,244,126,138,15,53,244,126,143,53,244,126,130,82]},{"1061155":[201,22,208,34,72,218,175,55,244,126,26,41,15,170,175,55,244,126,41,240,143,55,244,126,138,15,55,244,126,143,55,244,126,250,104,130,44]},{"1061193":[201,24,208,14,175,57,244,126,24,105,16,143,57,244,126,130,26]},{"1061211":[201,26,208,22,175,54,244,126,24,105,8,143,54,244,126,175,102,243,126,41,4,208,3,32,215,181,192,59,208,10,175,42,244,126,137,32,240,2,128,39,175,85,243,126,208,9,175,50,244,126,26,143,50,244,126,175,83,243,126,208,9,175,51,244,126,26,143,51,244,126,175,35,244,126,26,143,35,244,126,192]},{"1061292":[208,9,32,113,180,32,162,180,130,50,2,192,1,208,6,32,113,180,130,40,2,192,2,208,6,32,113,180,130,30,2,192,3,208,6,32,113,180,130,20,2,192,4,208,6,32,162,180,130,10,2,192,5,208,6,32,162,180,130]},{"1061352":[2,192,6,208,6,32,162,180,130,246,1,192,7,144,10,192,14,176,6,32,211,180,130,232,1,192,20,208,9,32,47,180,32,211,180,130,219,1,192,15,144,10,192,23,176,6,32,211,180,130,205,1,192,23,208,6,32,55,181,130,195,1,192,24,144,10,192,26,176,6,32,211,180,130,181,1,192,26,208,9,32,80,180,32,211,180,130,168,1,192,29,208,6,32,211,180,130,158,1,192,27,144,10,192,32,176,6,32,223,180,130,144,1,192,32,208,6,32,95,181,130,134,1,192,33,208,6,32,211,180,130,124,1,192,34,144,10,192,36,176,6,32,123,181,130,110,1,192,36,208,6,32,139,181,130,100,1,192,37,208,6,32,171,181,130,90,1,192,38,208,3,130,83,1,192,39,208,6,32,243,181,130,73,1,192,40,208,6,32,243,181,130,63,1,192,41,208,6,32,211,180,130,53,1,192,42,144,10,192,46,176,6,32,211,180,130,39,1,192,49,208,6,32,243,181,130,29,1,192,50,208,6,32,203,181,130,19,1,192,51,208,6,32,9,182,130,9,1,192,55,144,10,192,58,176,6,32,251,180,130,251]},{"1061614":[192,58,144,10,192,60,176,6,32,192,180,130,237]},{"1061628":[192,60,208,6,32,211,180,130,227]},{"1061638":[192,61,208,6,32,211,180,130,217]},{"1061648":[192,62,144,10,192,64,176,6,32,83,181,130,203]},{"1061662":[192,72,208,6,32,211,180,130,193]},{"1061672":[192,73,208,6,32,113,180,130,183]},{"1061682":[192,74,208,9,32,47,180,32,211,180,130,170]},{"1061695":[192,75,208,9,32,14,180,32,223,180,130,157]},{"1061708":[192,76,208,9,32,23,181,32,243,181,130,144]},{"1061721":[192,77,144,10,192,80,176,6,32,23,181,130,130]},{"1061735":[192,80,208,6,32,113,180,130,120]},{"1061745":[192,81,144,10,192,85,176,6,32,23,181,130,106]},{"1061759":[192,88,208,6,32,192,180,130,96]},{"1061769":[192,94,208,6,32,113,180,130,86]},{"1061779":[192,95,208,6,32,162,180,130,76]},{"1061789":[192,96,208,6,32,123,181,130,66]},{"1061799":[192,97,208,6,32,223,180,130,56]},{"1061809":[192,112,144,10,192,128,176,6,32,9,182,130,42]},{"1061823":[192,128,144,10,192,144,176,6,32,171,181,130,28]},{"1061837":[192,144,144,10,192,160,176,6,32,203,181,130,14]},{"1061851":[192,160,144,10,192,176,176,6,32,139,181,130]},{"1061865":[40,250,104,107,194,32,175,88,244,126,208,22,175,90,244,126,208,16,175,62,244,126,143,88,244,126,175,64,244,126,143,90,244,126,226,32,96,194,32,175,92,244,126,208,22,175,94,244,126,208,16,175,62,244,126,143,92,244,126,175,64,244,126,143,94,244,126,226,32,96,194,32,175,96,244,126,208,22,175,98,244,126,208,16,175,62,244,126,143,96,244,126,175,64,244,126,143,98,244,126,226,32,96,194,32,175,100,244,126,208,22,175,102,244,126,208,16,175,62,244,126,143,100,244,126,175,64,244,126,143,102,244,126,226,32,96,32,237,179,152,201,80,208,2,169,1,201,73,208,2,169]},{"1062017":[26,207,23,244,126,144,14,72,175,23,244,126,41,248,3,1,143,23,244,126,104,175,34,244,126,24,105,32,143,34,244,126,96,175,34,244,126,24,105,8,41,24,170,175,34,244,126,41,231,143,34,244,126,138,15,34,244,126,143,34,244,126,96,192,59,208,15,175,42,244,126,137,32,240,1,96,9,32,143,42,244,126,175,33,244,126,24,105,8,143,33,244,126,96,175,33,244,126,26,41,7,170,175,33,244,126,41,248,143,33,244,126,138,15,33,244,126,143,33,244,126,96,175,41,244,126,26,41,3,170,175,41,244,126,41,252,143,41,244,126,138,15,41,244,126,143,41,244,126,96,72,218,175,82,244,126,26,41,15,170,175,82,244,126,41,240,143,82,244,126,138,15,82,244,126,143,82,244,126,250,104,96,175,72,244,126,26,41,31,170,175,72,244,126,41,224,143,72,244,126,138,15,72,244,126,143,72,244,126,96,175,41,244,126,24,105,16,143,41,244,126,96,175,34,244,126,26,41,7,170,175,34,244,126,41,248,143,34,244,126,138,15,34,244,126,143,34,244,126,96,175,36,244,126,24,105,64,143,36,244,126,96,32,139,181,107,72,218,175,36,244,126,26,41,63,170,175,36,244,126,41,192,143,36,244,126,138,15,36,244,126,143,36,244,126,250,104,96,72,218,175,40,244,126,26,41,15,170,175,40,244,126,41,240,143,40,244,126,138,15,40,244,126,143,40,244,126,250,104,96,175,39,244,126,24,105,16,143,39,244,126,96,175,42,244,126,26,41,31,170,175,42,244,126,41,224,143,42,244,126,138,15,42,244,126,143,42,244,126,96,175,42,244,126,41,128,208,13,175,42,244,126,9,128,143,42,244,126,32,211,180,96,175,40,244,126,24,105,16,143,40,244,126,96,32,25,182,107,175,89,243,126,208,12,175,82,244,126,24,105,16,143,82,244,126,96,201,255,240,240,201,1,208,12,175,37,244,126,24,105,16,143,37,244,126,96,201,2,208,32,72,218,175,37,244,126,26,41,15,170,175,37,244,126,41,240,143,37,244,126,138,15,37,244,126,143,37,244,126,250,104,96,201,3,208,12,175,38,244,126,24,105,16,143,38,244,126,96,201,4,208,31,72,218,175,38,244,126,26,41,15,170,175,38,244,126,41,240,143,38,244,126,138,15,38,244,126,143,38,244,126,250,104,96,175,67,243,126,208,17,175,117,243,126,240,11,58,143,117,243,126,169,1,143,67,243,126,34,127,219,13,34,247,227,160,107,143,117,243,126,173,3,3,208,14,169,4,141,2,2,169,1,141,3,3,34,120,250,13,107,173,2,2,41,255]},{"1062613":[201,2]},{"1062616":[208,14,175,140,243,126,41,192]},{"1062625":[201,192]},{"1062628":[240,79,128,64,201,1]},{"1062635":[208,14,175,142,243,126,41,192]},{"1062644":[201,192]},{"1062647":[240,60,128,45,201,5]},{"1062654":[208,14,175,140,243,126,41,48]},{"1062663":[201,48]},{"1062666":[240,41,128,26,201,13]},{"1062673":[208,16,175,140,243,126,137,4]},{"1062682":[240,12,41,3]},{"1062687":[208,20,128,5,201,16]},{"1062694":[240,5,169,96,124,128,19,173,7,2,41,32]},{"1062707":[208,5,169,79,61,128,6,32,68,183,169,62,45,153,196,255,107,185,192,255,41,255,239,153,192,255,185,194,255,41,255,239,153,194,255,185,254,255,41,255,239,153,254,255,185,4]},{"1062754":[41,255,239,153,4]},{"1062760":[185,62]},{"1062763":[41,255,239,153,62]},{"1062769":[185,68]},{"1062772":[41,255,239,153,68]},{"1062778":[185,128]},{"1062781":[41,255,239,153,128]},{"1062787":[185,130]},{"1062790":[41,255,239,153,130]},{"1062796":[185,190,255,41,255,239,153,190,255,185,196,255,41,255,239,153,196,255,185,132]},{"1062817":[41,255,239,153,132]},{"1062823":[185,126]},{"1062826":[41,255,239,153,126]},{"1062832":[96,175,140,243,126,41,252,9,1,143,140,243,126,169,3,143,76,243,126,107,175,114,129,48,240,1,107,173,12,4,201,255,107,165,4,41,255]},{"1062870":[201,144]},{"1062873":[208,3,169,127]},{"1062878":[9]},{"1062880":[36,143,100,199,126,165,5,41,255]},{"1062890":[9]},{"1062892":[36,143,102,199,126,107,175,114,129,48,240,5,175,139,243,126,107,191,124,243,126,107,72,175,114,129,48,240,6,104,143,139,243,126,107,104,159,124,243,126,107,72,34,28,130,160,32,217,128,175,114,129,48,240,10,104,175,139,243,126,143,111,243,126,107,104,143,111,243,126,107,218,139,75,171,170,191,63,184,160,171,250,107,255,255,255,255,5,6,255,12,11,13,10,7,19,14,255,255,255,255,255,255,255,9,255,255,8,255,255,16,17,18,255,255,255,255,3,4,255,255,2,255,255,255,20,21,23,22,21,23,22,15,255,255,255,255,255,255,255,255,255,255,255,255,2,2,255,255,255,255,1,255,255,255,255,255,255,255,255,255,255,255,100,2,100,3,194,48,107,34,93,246,29,175,20,128,48,34,12,140,160,107,159,92,243,126,72,175,79,243,126,208,6,138,26,143,79,243,126,104,107,173,218,2,208,30,175]},{"1063101":[80,127,240,16,175,20,128,48,34,12,140,160,169]},{"1063115":[143]},{"1063117":[80,127,128,8,175,20,128,48,34,114,140,160,107,169]},{"1063132":[157,192,13,72,169,1,143]},{"1063140":[80,127,165,93,201,20,240,14,169]},{"1063150":[143]},{"1063152":[80,127,175,19,128,48,34,12,140,160,104,107,72,90,175]},{"1063168":[80,127,240,6,34,223,184,160,128,8,175,19,128,48,34,114,140,160,122,104,107,175,20,128,48,168,156,233,2,34,157,153,7,34,94,135,160,107,175,140,243,126,41,223,143,140,243,126,41,16,240,7,169,2,143,68,243,126,107,169]},{"1063229":[143,68,243,126,107,175,123,243,126,41,255]},{"1063241":[201,2]},{"1063244":[240,22,169,247,40,143,4,199,126,169,81,40,143,6,199,126,169,250,40,143,8,199,126,107,169,247,40,143,4,199,126,169]},{"1063277":[40,143,6,199,126,169,1,40,143,8,199,126,107,143]},{"1063292":[254,127,72,169,27,141,47,1,104,107,9,64,141,3,4,72,169,27,141,47,1,104,107,169,1,143]},{"1063319":[80,127,173,252,3,240,7,34,75,253,29,130,144]},{"1063333":[173,91,3,41,1,208,3,130,134]},{"1063343":[90,8,139,75,171,226,48,165,27,240,3,76,50,186,165,138,201,42,240,111,201,104,240,107,34,113,186,13,137,3,208,99,74,74,170,191]},{"1063380":[129,48,143]},{"1063384":[254,127,34,93,246,29,162]},{"1063392":[165,47,201,4,240,1,232,191,54,186,160,153,80,13,169]},{"1063408":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,56,186,160,41,240,153,16,13,165,35,105]},{"1063442":[153,48,13,165,32,24,105,22,41,240,153]},{"1063454":[13,165,33,105]},{"1063459":[153,32,13,169]},{"1063464":[153,32,15,187,169,48,34,138,187,13,171,40,122,107,240,16]},{"1063481":[19,175,204,243,126,201,8,240,10,201,7,240,6,201,12,240,2,24,107,56,107,175,197,243,126,201,2,176,20,169]},{"1063512":[143,200,80,127,143,201,80,127,143,202,80,127,169,2,143,197,243,126,107,169]},{"1063533":[143,145,80,127,156,216,2,156,218,2,100,46,169,2,133,47,175,122,243,126,41,127,201,127,208,6,169,8,143,199,243,126,34,5,143,160,92,53,207,30,175,195,225,29,34,12,140,160,107,189,144,13,201,255,208,4,92,78,223,29,201]},{"1063595":[92,82,223,29,175,133,225,29,34,12,140,160,107,165,138,201,129,208,6,175,195,225,29,128,4,175,133,225,29,34,114,140,160,107,34,157,153,7,165,138,201,129,208,6,34,235,134,160,128,4,34,43,135,160,107,165,138,201,42,240,1,107,165,27,240,1,107,175,74,129,48,34,12,140,160,169,235,143]},{"1063674":[254,127,34,93,246,29,162]},{"1063682":[165,47,201,4,240,1,232,191,95,187,160,153,80,13,169]},{"1063698":[153,64,13,169,24,153,128,15,169,255,153,88,11,169,48,153,16,15,165,34,24,127,97,187,160,41,240,153,16,13,165,35,105]},{"1063732":[153,48,13,165,32,24,105,22,41,240,153]},{"1063744":[13,165,33,105]},{"1063749":[153,32,13,169]},{"1063754":[153,32,15,187,166,138,191,128,242,126,41,64,208,6,169,27,34,138,187,13,107,240,16]},{"1063778":[19,165,16,201,26,240,9,169,1,141,221,15,92,93,175,6,189,128,13,201,3,92,94,175,6,173,12,4,201,8,240,8,191,252,198,1,34,29,165,5,107,34,205,134,160,175,21,128,48,201,255,240,9,168,156,233,2,34,157,153,7,107,175,210,251,5,143,123,243,126,107,201,12,208,6,160,92,92,71,213]},{"1063859":[201,35,208,6,160,93,92,71,213]},{"1063869":[201,72,208,6,160,96,92,71,213]},{"1063879":[201,36,176,6,160,91,92,71,213]},{"1063889":[201,55,176,6,160,92,92,71,213]},{"1063899":[201,57,176,6,160,93,92,71,213]},{"1063909":[160,50,92,71,213]},{"1063915":[192,9,48]},{"1063919":[96]},{"1063921":[144]},{"1063923":[192]},{"1063926":[3,24,3,48,3,72,3,96,3,120,3,144,3,48,9,240,3,32,4,80,4,104,4]},{"1063950":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7,104,7]},{"1063968":[9,48,9,96,9,144,9,240,9]},{"1063979":[240]},{"1063981":[32,10,80,10,96,6]},{"1063988":[6,24,6,48,6,72,6,120,6,216,6,168,6,8,7,56,7,104,7,96,9]},{"1064010":[9,192,3,144,9,168,9,192,9,216,9,8,10,56,10]},{"1064026":[6,48,6]},{"1064030":[6,48,6,96,6,144,6,192,6,240,6,32,7,80,7]},{"1064046":[9,216,9,48,9,96,9,144,9,192,9,240,9,192,9,32,10,80,10,165]},{"1064067":[127,235,187,160,107,218,173,216,2,34,11,212,160,201,11,208,17,175,142,243,126,41,64,240,6,169,3,143,64,243,126,130,80,3,201,76,208,20,169,50,56,239,52,128,48,143,112,243,126,169,50,143,117,243,126,130,56,3,201,77,208,20,169,70,56,239,53,128,48,143,113,243,126,169,70,143,118,243,126,130,32,3,201,78,208,22,175,123,243,126,201,2,176,5,26,143,123,243,126,169,128,143,115,243,126,130,6,3,201,79,208,15,169,2,143,123,243,126,169,128,143,115,243,126,130,243,2,201,80,208,17,175,89,243,126,201,2,176,9,169,2,143,89,243,126,130,222,2,201,81,208,22,175,112,243,126,24,105,5,143,112,243,126,175,128,128,48,143,117,243,126,130,196,2,201,82,208,22,175,112,243,126,24,105,10,143,112,243,126,175,129,128,48,143,117,243,126,130,170,2,201,83,208,22,175,113,243,126,24,105,5,143,113,243,126,175,130,128,48,143,118,243,126,130,144,2,201,84,208,22,175,113,243,126,24,105,10,143,113,243,126,175,131,128,48,143,118,243,126,130,118,2,201,85,208,27,175,97,128,48,208,14,175,98,128,48,208,8,175,99,128,48,208,2,128,4,34,96,128,48,130,87,2,201,86,208,27,175,102,128,48,208,14,175,103,128,48,208,8,175,104,128,48,208,2,128,4,34,101,128,48,130,56,2,201,87,208,27,175,107,128,48,208,14,175,108,128,48,208,8,175,109,128,48,208,2,128,4,34,106,128,48,130,25,2,201,88,208,29,175,64,243,126,240,11,201,3,176,7,24,105,2,143,64,243,126,175,117,129,48,240,6,169,1,143,118,243,126,201,89,208,20,194,32,175,96,243,126,56,239,54,128,48,143,96,243,126,226,32,130,224,1,201,90,208,3,130,217,1,201,91,208,32,194,32,175,84,244,126,24,111]},{"1064489":[130,48,143,84,244,126,175,86,244,126,111,2,130,48,143,86,244,126,226,32,130,181,1,201,92,208,32,194,32,175,84,244,126,24,111,4,130,48,143,84,244,126,175,86,244,126,111,6,130,48,143,86,244,126,226,32,130,145,1,201,93,208,32,194,32,175,84,244,126,24,111,8,130,48,143,84,244,126,175,86,244,126,111,10,130,48,143,86,244,126,226,32,130,109,1,201,94,208,3,130,102,1,201,95,208,3,130,95,1,201,96,208,3,130,88,1,201,97,208,3,130,81,1,201,98,208,3,130,74,1,201,99,208,3,130,67,1,201,106,208,7,34,92,205,160,130,56,1,201,107,208,2,128,4,201,108,208,28,175,103,129,48,240,19,175,96,244,126,26,143,96,244,126,207,103,129,48,144,4,34,92,205,160,130,18,1,201,112,144,63,201,128,176,59,41,15,201,8,176,22,170,169,1,224]},{"1064694":[240,4,10,202,128,248,15,104,243,126,143,104,243,126,130,238]},{"1064711":[56,233,8,170,169,1,224]},{"1064719":[240,4,10,202,128,248,137,192,240,2,169,192,15,105,243,126,143,105,243,126,130,207]},{"1064742":[201,128,144,63,201,144,176,59,41,15,201,8,176,22,170,169,1,224]},{"1064761":[240,4,10,202,128,248,15,100,243,126,143,100,243,126,130,171]},{"1064778":[56,233,8,170,169,1,224]},{"1064786":[240,4,10,202,128,248,137,192,240,2,169,192,15,101,243,126,143,101,243,126,130,140]},{"1064809":[201,144,144,63,201,160,176,59,41,15,201,8,176,22,170,169,1,224]},{"1064828":[240,4,10,202,128,248,15,102,243,126,143,102,243,126,130,104]},{"1064845":[56,233,8,170,169,1,224]},{"1064853":[240,4,10,202,128,248,137,192,240,2,169,192,15,103,243,126,143,103,243,126,130,73]},{"1064876":[201,160,144,69,201,176,176,65,41,15,170,191,124,243,126,26,159,124,243,126,224]},{"1064898":[208,4,143,125,243,126,224,1,208,4,143,124,243,126,175,114,129,48,240,31,175,111,243,126,26,143,111,243,126,130,19]},{"1064930":[138,10,205,12,4,208,9,175,111,243,126,26,143,111,243,126,130]},{"1064949":[250,173,233,2,201,1,107,72,218,34,240,227,160,173,216,2,32,11,205,141,216,2,32,225,204,201,22,208,19,32,60,205,207,150,128,48,144,7,175,151,128,48,141,216,2,130,173,1,201,43,208,19,32,60,205,207,150,128,48,144,7,175,151,128,48,141,216,2,130,150,1,201,44,208,19,32,60,205,207,150,128,48,144,7,175,151,128,48,141,216,2,130,127,1,201,45,208,19,32,60,205,207,150,128,48,144,7,175,151,128,48,141,216,2,130,104,1,201,60,208,19,32,60,205,207,150,128,48,144,7,175,151,128,48,141,216,2,130,81,1,201,61,208,19,32,60,205,207,150,128,48,144,7,175,151,128,48,141,216,2,130,58,1,201,72,208,19,32,60,205,207,150,128,48,144,7,175,151,128,48,141,216,2,130,35,1,201,78,208,14,175,123,243,126,240,5,169,79,141,216,2,130,17,1,201,94,208,64,175,89,243,126,207,144,128,48,144,10,175,145,128,48,141,216,2,130,249]},{"1065177":[201]},{"1065179":[208,8,169,73,141,216,2,130,237]},{"1065189":[201,1,208,8,169,80,141,216,2,130,225]},{"1065201":[201,2,208,8,169,2,141,216,2,130,213]},{"1065213":[169,3,141,216,2,130,205]},{"1065221":[201,95,208,93,175,22,244,126,74,74,74,74,74,74,207,146,128,48,144,10,175,147,128,48,141,216,2,130,175]},{"1065251":[175,22,244,126,41,192,208,19,169,4,141,216,2,175,22,244,126,24,105,64,143,22,244,126,130,148]},{"1065278":[201,64,208,18,169,5,141,216,2,175,22,244,126,24,105,64,143,22,244,126,128,126,169,6,141,216,2,175,22,244,126,24,105,64,143,22,244,126,128,108,201,96,208,38,175,91,243,126,207,148,128,48,144,10,175,149,128,48,141,216,2,130,84]},{"1065342":[201]},{"1065344":[208,7,169,34,141,216,2,128,73,169,35,141,216,2,128,66,201,97,208,20,175,84,243,126,208,7,169,27,141,216,2,128,49,169,28,141,216,2,128,42,201,98,208,19,34,251,203,160,141,216,2,235,32,127,204,169,255,143,144,80,127,128,19,201,99,208,15,34,176,204,160,141,216,2,169,255,143,144,80,127,128]},{"1065426":[250,104,139,75,92,228,133,9,251,251,251,251,251,252,252,251,251,252,252,252,254,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,251,252,252,252,252,252,252,254,252,252,252,252,252,252,252,252,252,254,254,254,252,252,252,252,252,252,252,252,252,252,252,254,254,252,254,252,252,252,251,252,252,252,252,252,252,251,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,252,4,4,4,4,4]},{"1065681":[4,4,4,4,4,5]},{"1065693":[4]},{"1065695":[4]},{"1065698":[4]},{"1065710":[4]},{"1065716":[5]},{"1065726":[4,4,4]},{"1065740":[4,4]},{"1065743":[4]},{"1065747":[4]},{"1065754":[4]},{"1065763":[4]},{"1065834":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4]},{"1065914":[6,24,24,24,45,32,46,9,9,10,8,5,16,11,44,27,26,28,20,25,12,7,29,47,7,21,18,13,13,14,17,23,40,39,4,4,15,22,3,19,1,30,16]},{"1065963":[48,34,33,36,36,36,35,35,35,41,42,44,43,3,3,52,53,49,51,2,50,54,55,44,6,12,56,57,58,59,60,24,61,62,63,64]},{"1066002":[65,36,71,72,72,72,255,255,4,13,255,255,255,255,255,255,255,255,73,74,73,255,255,255,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,33,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,22,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,34,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,15,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73,73]},{"1066159":[2,2]},{"1066167":[2,2,2,2,2,2]},{"1066174":[2]},{"1066176":[2,2]},{"1066179":[2,2,2,2,2,2,2,2,2,2,2]},{"1066191":[2,2,2,2,2]},{"1066197":[2,2,2,2,2,2,2,2,2]},{"1066209":[2,2,2,2,2,2,2,2,2,2,2]},{"1066222":[2]},{"1066224":[2,2,2]},{"1066228":[2,2,2,2,2,2]},{"1066235":[2,2,2,2,2,2,2,2]},{"1066244":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2]},{"1066330":[2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,5,255,5,5,5,5,5,1,2,1,1,1,2,2,2,4,4,4,1,1,2,1,1,1,2,1,2,1,4,4,2,1,6,1,2,1,2,2,1,2,2,4,1,1,4,2,1,4,2,2,4,4,4,2,1,4,1,2,2,1,2,2,1,1,4,4,1,2,2,4,4,4,2,5,2,1,4,4,4,4,5,4,4,4,4,4,4,4,1,3,1,1,2,4,255,255,255,255,255,255]},{"1066500":[4,4,4]},{"1066506":[4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,89,243,89,243,89,243,89,243,90,243,90,243,90,243,69,243,70,243,75,243,66,243,64,243,65,243,68,243,92,243,71,243,72,243,73,243,74,243,76,243,76,243,80,243,92,243,107,243,81,243,82,243,83,243,84,243,84,243,78,243,86,243,87,243,122,243,77,243,91,243,91,243,111,243,100,243,108,243,117,243,117,243,68,243,65,243,92,243,92,243,92,243,109,243,110,243,110,243,117,243,102,243,104,243,96,243,96,243,96,243,116,243,116,243,116,243,64,243,64,243,92,243,92,243,108,243,108,243,96,243,96,243,114,243,118,243,118,243,115,243,96,243,96,243,92,243,89,243,76,243,85,243,117,243,118,243,115,243,115,243,89,243,117,243,117,243,118,243,118,243,26,244,28,244,30,244,64,243,96,243,106,243,84,244,84,244,84,244,89,243,90,243,91,243,84,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,106,243,1,2,3,4,1,2,3,1,1,1,1,1,1,2,255,1,1,1,1,1,2,1,255,255,1,1,2,1,2,1,1,1,255,1,255,2,255,255,255,255,255,255,2,255,255,255,255,255,255,255,255,255,255,251,236,255,255,255,1,3,255,255,255,255,156,206,255,1,10,255,255,255,255,1,3,1,50,70,128,128,2,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"1067355":[128]},{"1067357":[64]},{"1067359":[32]},{"1067361":[16]},{"1067363":[8]},{"1067365":[4]},{"1067367":[2]},{"1067369":[1,128]},{"1067372":[64]},{"1067374":[32]},{"1067376":[16]},{"1067378":[8]},{"1067380":[4]},{"1067611":[22,43,44,45,61,60,72,46,47,48,255,14,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,53,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,139,75,171,152,32,11,205,133,3,196,3,208,4,169,255,133,3,171,107,175,117,129,48,240,9,34,144,203,160,175,64,243,126,107,175,64,243,126,208,16,175,142,243,126,41,64,240,4,34,144,203,160,175,64,243,126,107,175,117,129,48,240,51,175,119,243,126,240,70,175,64,243,126,208,10,175,142,243,126,41,64,208,31,128,4,201,3,176,25,169,167,143,32,199,126,169,32,143,33,199,126,169,169,143,34,199,126,169,32,143,35,199,126,107,169,134,143,32,199,126,169,36,143,33,199,126,169,135,143,34,199,126,169,36,143,35,199,126,107,169,127,143,32,199,126,169,36,143,33,199,126,169,127,143,34,199,126,169,36,143,35,199,126,107,175,144,80,127,201,255,240,7,170,235,191]},{"1068039":[160,48,107,162]},{"1068044":[34,113,186,13,41,127,232,224,127,144,4,169]},{"1068057":[128,6,207,127,160,48,176,235,143,32,80,127,162]},{"1068071":[32,91,204,240,27,175,32,80,127,26,207,127,160,48,144,2,169]},{"1068089":[143,32,80,127,232,236,127,160,144,228,169,90,128,4,175,32,80,127,170,191]},{"1068110":[160,48,235,175,32,80,127,143,144,80,127,235,107,74,74,74,170,191,80,244,126,143,34,80,127,218,175,32,80,127,41,7,170,175,34,80,127,224]},{"1068149":[240,4,74,202,128,248,250,41,1,96,74,74,74,143,33,80,127,170,191,80,244,126,143,34,80,127,175,32,80,127,41,7,170,169,1,224]},{"1068186":[240,4,10,202,128,248,72,175,33,80,127,170,104,15,34,80,127,159,80,244,126,96,175,144,80,127,201,255,240,7,170,235,191,128,160,48,107,162]},{"1068225":[34,113,186,13,41,127,232,224,127,144,4,165]},{"1068238":[128,6,207,255,160,48,176,235,143,144,80,127,170,235,191,128,160,48,107,218,72,162]},{"1068261":[191]},{"1068263":[192,48,201,255,240,27,195,1,208,17,218,138,74,74,170,191,144,243,126,26,159,144,243,126,250,240,6,232,232,232,232,128,221,104,250,96,218,72,162]},{"1068303":[191]},{"1068305":[192,48,201,255,240,34,195,1,208,24,218,138,74,74,170,191,144,243,126,223,1,192,48,144,6,191,2,192,48,131,2,250,240,6,232,232,232,232,128,214,104,250,96,162]},{"1068350":[175,92,243,126,240,1,232,175,93,243,126,240,1,232,175,94,243,126,240,1,232,175,95,243,126,240,1,232,138,96,100,17,100,176,92,194,209,160,175,198,243,126,41,4,240,15,169,10,157,16,13,169,3,157,48,13,169,144,157,208,14,189]},{"1068413":[13,24,105,3,107,201,73,208,2,169]},{"1068424":[201,80,208,2,169,1,201,4,144,4,92,54,201,6,34,62,134,160,240,4,92,54,201,6,34,179,134,160,175,40,128,48,157,192,13,169,5,157,176,14,92,72,201,6,189,32,14,201,136,208,9,32,200,205,201,4,144,1,58,107,32,200,205,107,175,192,80,127,240,18,24,111,89,243,126,208,3,169,1,96,201,5,144,3,169,4,96,96,175,89,243,126,96,72,175,91,243,126,24,111,194,80,127,201,255,208,2,169]},{"1068533":[201,3,144,2,169,2,143,32,80,127,104,24,111,32,80,127,107,175,195,80,127,240,19,24,111,123,243,126,201,255,208,3,169]},{"1068567":[107,201,3,144,2,169,2,107,175,123,243,126,107,165,93,201,1,240,22,201,23,240,18,201,28,240,14,165,91,208,10,173,72,3,15,199,80,127,41,17,107,173,72,3,41,17,107,165,93,201,1,240,22,201,23,240,18,201,28,240,14,165,91,208,10,173,72,3,15,199,80,127,41,1,107,173,72,3,41,1,107,175,68,128,48,240,9,175,75,243,126,240,3,169,2,107,175,89,243,126,107,175,63,128,48,240,6,189,32,14,201,216,107,189,32,14,201,214,107,34,69,134,160,240,4,92,157,180,6,175,41,128,48,208,4,92,145,180,6,175,42,128,48,168,156,233,2,218,34,157,153,7,250,194,32,175,96,243,126,56,233,10]},{"1068730":[143,96,243,126,226,32,34,192,134,160,92,157,180,6,139,218,90,175,65,128,48,208,3,130,205]},{"1068756":[165,27,240,121,194,32,165,160,201,14]},{"1068767":[208,33,165,34,41,255,1,201,104,1,144,98,201,136,1,176,93,165,32,41,255,1,201,122,1,144,83,201,154,1,176,78,130,167]},{"1068802":[201,126]},{"1068805":[208,33,165,34,41,255,1,201,104]},{"1068815":[144,60,201,136]},{"1068820":[176,55,165,32,41,255,1,201,122,1,144,45,201,154,1,176,40,130,129]},{"1068840":[201,222]},{"1068843":[208,32,165,34,41,255,1,201,104,1,144,22,201,136,1,176,17,165,32,41,255,1,201,122]},{"1068868":[144,7,201,154]},{"1068873":[176,2,128,92,226,32,128,80,165,138,201,112,208,36,175,34,128,48,170,191,177,207,160,205,3,3,208,60,175,240,242,126,41,32,208,52,169,8,72,171,160,2,34,241,182,8,176,48,128,38,201,71,208,34,175,35,128,48,170,191,177,207,160,205,3,3,208,20,175,199,242,126,41,32,208,12,169,8,72,171,160,3,34,241,182,8,176,8,122,250,171,175,89,243,126,107,226,32,122,250,171,169,2,107,15,16,17,72,175,67,244,126,208,34,175,46,244,126,56,239,63,80,127,201,30,144,21,175,46,244,126,143,63,80,127,175,32,244,126,26,201,100,240,4,143,32,244,126,104,34,223,147,9,107,72,175,67,244,126,208,19,165,16,201,23,208,13,175,45,244,126,26,201,100,240,4,143,45,244,126,104,107,72,175,67,244,126,208,9,175,45,244,126,58,143,45,244,126,104,107,191,31,195,1,128,31,34,61,137]},{"1069083":[128,25,34,97,184,2,128,19,175,199,80,127,240,9,34,179,145,7,169]},{"1069103":[141,1,3,169,15,133,16,72,8,175,67,244,126,208,16,194,32,175,60,244,126,26,201,231,3,240,4,143,60,244,126,40,104,107,175,67,244,126,208,9,175,75,244,126,26,143,75,244,126,34,54,208,160,107,143,111,243,126,218,175,67,244,126,208,4,34,135,181,160,34,87,145,160,90,160,24,34,79,174,160,122,34,120,250,13,250,107,143,111,243,126,218,175,67,244,126,208,4,34,135,181,160,34,87,145,160,34,120,250,13,250,107,143,111,243,126,34,87,145,160,107,72,175,67,244,126,208,4,34,21,182,160,104,107,72,175,67,244,126,208,15,175,109,243,126,208,9,175,73,244,126,26,143,73,244,126,104,107,159,92,243,126,72,175,67,244,126,208,9,175,83,244,126,26,143,83,244,126,104,107,169,1,141,233,2,72,175,67,244,126,208,9,175,66,244,126,26,143,66,244,126,104,107,72,175,67,244,126,208,9,175,66,244,126,58,143,66,244,126,104,107,72,175,67,244,126,208,9,175,35,244,126,58,143,35,244,126,104,107,34,97,184,2,72,175,67,244,126,208,31,72,218,175,39,244,126,26,41,15,170,175,39,244,126,41,240,143,39,244,126,138,15,39,244,126,143,39,244,126,250,104,104,107,72,175,67,244,126,208,15,175,202,243,126,240,9,175,58,244,126,26,143,58,244,126,104,76,54,208,72,175,67,244,126,208,20,173,12,4,201,255,240,13,175,59,244,126,26,143,59,244,126,34,54,208,160,104,34,168,160,2,107,58,16,8,169]},{"1069451":[143,96,243,126,107,72,8,175,67,244,126,41,255]},{"1069465":[208,14,175,43,244,126,26,201,15,39,240,4,143,43,244,126,40,104,107,34,58,135,1,76,54,208,169,1,143]},{"1069495":[80,127,156,70,6,156,66,6,76,54,208,72,218,8,226,48,175,67,244,126,208,29,26,143,67,244,126,34,21,182,160,175,36,244,126,24,105,64,143,36,244,126,175,60,244,126,58,143,60,244,126,175,37,244,126,74,74,74,74,24,111,37,244,126,143,55,80,127,175,38,244,126,74,74,74,74,24,111,38,244,126,24,111,55,80,127,41,15,143,55,80,127,175,62,244,126,56,239,46,244,126,143,56,80,127,175,63,244,126,239,47,244,126,143,57,80,127,175,64,244,126,239,48,244,126,143,58,80,127,175,65,244,126,239,49,244,126,143,59,80,127,175,43,244,126,24,111,98,243,126,143,60,80,127,175,44,244,126,111,99,243,126,143,61,80,127,175,35,244,126,56,239,66,244,126,143,62,80,127,40,250,104,169,25,133,16,100,17,100,176,107,169,128,141,26,33,169]},{"1069693":[143,21,244,126,107,175,21,244,126,208,9,169,1,169,1,143,21,244,126,107,165,246,41,112,107,226,32,173,16,66,194,32,173,2,32,201,83,45,240,6,226,48,92,220,128]},{"1069739":[173,4,32,201,77,83,208,242,173,6,32,201,85,49,208,234,226,48,174,44,1,208,116,175,155,80,127,240,65,173]},{"1069770":[32,137,64,240,4,92,220,128]},{"1069779":[173]},{"1069781":[32,137,8,208,28,169,255,141,41,1,141,39,1,141,6,32,175,155,80,127,141,7,32,169]},{"1069806":[143,155,80,127,92,220,128]},{"1069814":[156,7,32,156,43,1,156,41,1,156,39,1,156,6,32,92,220,128]},{"1069833":[173,39,1,205,41,1,208,4,92,220,128]},{"1069845":[144,15,233,2,176,17,156,39,1,156,7,32,156,43,1,128,6,105,16,144,2,169,255,141,39,1,141,6,32,92,220,128]},{"1069878":[224,255,208,4,92,220,128]},{"1069886":[224,243,208,12,142,64,33,169,255,141,41,1,92,220,128]},{"1069902":[224,242,208,12,142,64,33,169,128,141,41,1,92,220,128]},{"1069918":[224,241,208,10,142,64,33,156,41,1,92,220,128]},{"1069932":[236,43,1,208,8,224,27,240,4,92,220,128]},{"1069945":[142,4,32,156,5,32,156,7,32,191]},{"1069956":[208,48,143,155,80,127,142,43,1,92,220,128]},{"1069969":[194,32,173,2,32,201,83,45,208,25,173,4,32,201,77,83,208,17,173,6,32,201,85,49,208,9,226,32,173]},{"1069999":[32,137,16,208,249,226,32,169,34,107,175,53,80,127,240,5,191]},{"1070017":[87,127,107,191]},{"1070022":[18,127,107,156,240,28,156,241,28,169]},{"1070033":[143,53,80,127,169,28,141,233,28,107,169,1,143,53,80,127,194,32,175,148,80,127,170,160]},{"1070059":[226,32,183]},{"1070063":[159]},{"1070065":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1070084":[143,148,80,127,226,32,107,143,64,80,127,72,218,90,8,139,75,171,226,32,194,16,165]},{"1070108":[72,165,1,72,165,2,72,175,106,129,48,208,3,130,12,7,169]},{"1070126":[143,16,80,127,175,64,80,127,201,36,208,119,169,170,133]},{"1070142":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1070160":[226,32,183]},{"1070164":[159]},{"1070166":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1070185":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1070205":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1070223":[226,32,183]},{"1070227":[159]},{"1070229":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1070248":[143,148,80,127,226,32,130,108,6,201,37,208,119,169,52,133]},{"1070265":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1070283":[226,32,183]},{"1070287":[159]},{"1070289":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1070308":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1070328":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1070346":[226,32,183]},{"1070350":[159]},{"1070352":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1070371":[143,148,80,127,226,32,130,241,5,201,51,208,119,169]},{"1070386":[133]},{"1070388":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1070406":[226,32,183]},{"1070410":[159]},{"1070412":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1070431":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1070451":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1070469":[226,32,183]},{"1070473":[159]},{"1070475":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1070494":[143,148,80,127,226,32,130,118,5,201,50,208,119,169,112,133]},{"1070511":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1070529":[226,32,183]},{"1070533":[159]},{"1070535":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1070554":[143,148,80,127,226,32,175,150,80,127,58,58,143,148,80,127,169,130,133]},{"1070574":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1070592":[226,32,183]},{"1070596":[159]},{"1070598":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1070617":[143,148,80,127,226,32,130,251,4,41,240,201,112,208,56,169]},{"1070634":[133]},{"1070636":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1070654":[226,32,183]},{"1070658":[159]},{"1070660":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1070679":[143,148,80,127,226,32,130,213]},{"1070688":[201,128,208,56,169,52,133]},{"1070696":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1070714":[226,32,183]},{"1070718":[159]},{"1070720":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1070739":[143,148,80,127,226,32,130,153]},{"1070748":[201,144,208,55,169,112,133]},{"1070756":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1070774":[226,32,183]},{"1070778":[159]},{"1070780":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1070799":[143,148,80,127,226,32,128,94,201,160,208,87,175,64,80,127,201,175,208,3,130,82,4,169,170,133]},{"1070826":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1070844":[226,32,183]},{"1070848":[159]},{"1070850":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1070869":[143,148,80,127,226,32,104,41,15,143,32,80,127,169,15,56,239,32,80,127,72,169,1,143,16,80,127,128,3,130,3,4,175,150,80,127,58,58,143,148,80,127,175,64,80,127,41,15,143,17,80,127,175,16,80,127,240,15,175,16,80,127,169,15,56,239,17,80,127,143,17,80,127,175,17,80,127,201]},{"1070948":[208,56,169,216,133]},{"1070954":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1070972":[226,32,183]},{"1070976":[159]},{"1070978":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1070997":[143,148,80,127,226,32,130,127,3,201,1,208,56,169,241,133]},{"1071014":[169,128,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1071032":[226,32,183]},{"1071036":[159]},{"1071038":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1071057":[143,148,80,127,226,32,130,67,3,201,2,208,56,169,8,133]},{"1071074":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1071092":[226,32,183]},{"1071096":[159]},{"1071098":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1071117":[143,148,80,127,226,32,130,7,3,201,3,208,56,169,35,133]},{"1071134":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1071152":[226,32,183]},{"1071156":[159]},{"1071158":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1071177":[143,148,80,127,226,32,130,203,2,201,4,208,56,169,60,133]},{"1071194":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1071212":[226,32,183]},{"1071216":[159]},{"1071218":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1071237":[143,148,80,127,226,32,130,143,2,201,5,208,56,169,87,133]},{"1071254":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1071272":[226,32,183]},{"1071276":[159]},{"1071278":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1071297":[143,148,80,127,226,32,130,83,2,201,6,208,56,169,116,133]},{"1071314":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1071332":[226,32,183]},{"1071336":[159]},{"1071338":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1071357":[143,148,80,127,226,32,130,23,2,201,7,208,56,169,139,133]},{"1071374":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1071392":[226,32,183]},{"1071396":[159]},{"1071398":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1071417":[143,148,80,127,226,32,130,219,1,201,8,208,56,169,164,133]},{"1071434":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1071452":[226,32,183]},{"1071456":[159]},{"1071458":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1071477":[143,148,80,127,226,32,130,159,1,201,9,208,56,169,189,133]},{"1071494":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1071512":[226,32,183]},{"1071516":[159]},{"1071518":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1071537":[143,148,80,127,226,32,130,99,1,201,10,208,56,169,214,133]},{"1071554":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1071572":[226,32,183]},{"1071576":[159]},{"1071578":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1071597":[143,148,80,127,226,32,130,39,1,201,11,208,56,169,241,133]},{"1071614":[169,129,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1071632":[226,32,183]},{"1071636":[159]},{"1071638":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1071657":[143,148,80,127,226,32,130,235]},{"1071666":[201,12,208,56,169,12,133]},{"1071674":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1071692":[226,32,183]},{"1071696":[159]},{"1071698":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1071717":[143,148,80,127,226,32,130,175]},{"1071726":[201,13,208,55,169,41,133]},{"1071734":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1071752":[226,32,183]},{"1071756":[159]},{"1071758":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1071777":[143,148,80,127,226,32,128,116,201,14,208,55,169,72,133]},{"1071793":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1071811":[226,32,183]},{"1071815":[159]},{"1071817":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1071836":[143,148,80,127,226,32,128,57,201,15,208,53,169,101,133]},{"1071852":[169,130,133,1,169,50,133,2,194,32,175,148,80,127,170,160]},{"1071870":[226,32,183]},{"1071874":[159]},{"1071876":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1071895":[143,148,80,127,226,32,169,1,143,53,80,127,169,1,143,160,80,127,104,133,2,104,133,1,104,133]},{"1071922":[171,40,122,250,104,107,104,133,2,104,133,1,104,133]},{"1071937":[171,40,122,250,104,107,72,218,90,8,139,75,171,226,32,194,16,165]},{"1071956":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1071977":[133]},{"1071979":[169,136,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1071997":[226,32,183]},{"1072001":[159]},{"1072003":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1072022":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1072037":[171,40,122,250,104,34,142,250,5,107,72,218,90,8,139,75,171,226,32,194,16,165]},{"1072060":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1072081":[133]},{"1072083":[169,137,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1072101":[226,32,183]},{"1072105":[159]},{"1072107":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1072126":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1072141":[171,40,122,250,104,34,25,226,5,107,72,218,90,8,139,75,171,226,32,194,16,165]},{"1072164":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1072185":[133]},{"1072187":[169,132,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1072205":[226,32,183]},{"1072209":[159]},{"1072211":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1072230":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1072245":[171,40,122,250,104,194,32,169,113,1,141,240,28,226,32,34,16,238,14,107,34,217,236,160,176,101,72,218,90,8,139,75,171,226,32,194,16,165]},{"1072284":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1072305":[133]},{"1072307":[169,145,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1072325":[226,32,183]},{"1072329":[159]},{"1072331":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1072350":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1072365":[171,40,122,250,104,128,99,72,218,90,8,139,75,171,226,32,194,16,165]},{"1072385":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1072406":[133]},{"1072408":[169,134,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1072426":[226,32,183]},{"1072430":[159]},{"1072432":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1072451":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1072466":[171,40,122,250,104,34,142,250,5,107,34,217,236,160,176,101,72,218,90,8,139,75,171,226,32,194,16,165]},{"1072495":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1072516":[133]},{"1072518":[169,146,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1072536":[226,32,183]},{"1072540":[159]},{"1072542":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1072561":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1072576":[171,40,122,250,104,128,99,72,218,90,8,139,75,171,226,32,194,16,165]},{"1072596":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1072617":[133]},{"1072619":[169,135,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1072637":[226,32,183]},{"1072641":[159]},{"1072643":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1072662":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1072677":[171,40,122,250,104,34,142,250,5,107,72,173,2,2,201,15,240,6,104,34,25,226,5,107,36,244,80,246,72,218,90,8,139,75,171,226,32,194,16,165]},{"1072718":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1072739":[133]},{"1072741":[169,131,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1072759":[226,32,183]},{"1072763":[159]},{"1072765":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1072784":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1072799":[171,40,122,250,104,104,34,25,226,5,107,72,173,2,2,201,15,240,6,104,34,25,226,5,107,36,244,80,246,175,68,128,48,240,8,175,75,243,126,240,14,128,117,175,89,243,126,201,255,240,4,201,2,176,105,72,218,90,8,139,75,171,226,32,194,16,165]},{"1072867":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1072888":[133]},{"1072890":[169,143,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1072908":[226,32,183]},{"1072912":[159]},{"1072914":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1072933":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1072948":[171,40,122,250,104,104,34,25,226,5,107,104,107,72,173,2,2,201,15,240,6,104,34,25,226,5,107,36,244,80,246,175,68,128,48,240,8,175,75,243,126,240,14,128,117,175,89,243,126,201,255,240,4,201,2,176,105,72,218,90,8,139,75,171,226,32,194,16,165]},{"1073018":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1073039":[133]},{"1073041":[169,144,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1073059":[226,32,183]},{"1073063":[159]},{"1073065":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073084":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1073099":[171,40,122,250,104,104,34,25,226,5,107,104,107,72,218,90,8,139,75,171,226,32,194,16,165]},{"1073125":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1073146":[133]},{"1073148":[169,133,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1073166":[226,32,183]},{"1073170":[159]},{"1073172":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073191":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1073206":[171,40,122,250,104,34,25,226,5,107,175,116,243,126,41,4,240,104,72,218,90,8,139,75,171,226,32,194,16,165]},{"1073237":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1073258":[133]},{"1073260":[169,139,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1073278":[226,32,183]},{"1073282":[159]},{"1073284":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073303":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1073318":[171,40,122,250,104,34,25,226,5,107,72,218,90,8,139,75,171,226,32,194,16,165]},{"1073341":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1073362":[133]},{"1073364":[169,138,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1073382":[226,32,183]},{"1073386":[159]},{"1073388":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073407":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1073422":[171,40,122,250,104,34,25,226,5,107,72,218,90,8,139,75,171,226,32,194,16,165]},{"1073445":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1073466":[133]},{"1073468":[169,140,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1073486":[226,32,183]},{"1073490":[159]},{"1073492":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073511":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1073526":[171,40,122,250,104,34,25,226,5,107,175,122,243,126,41,5,201,5,240,104,72,218,90,8,139,75,171,226,32,194,16,165]},{"1073559":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1073580":[133]},{"1073582":[169,142,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1073600":[226,32,183]},{"1073604":[159]},{"1073606":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073625":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1073640":[171,40,122,250,104,34,25,226,5,107,72,218,90,8,139,75,171,226,32,194,16,165]},{"1073663":[72,165,1,72,165,2,72,156,240,28,156,241,28,169,1,143,53,80,127,169]},{"1073684":[133]},{"1073686":[169,141,133,1,169,48,133,2,194,32,175,148,80,127,170,160]},{"1073704":[226,32,183]},{"1073708":[159]},{"1073710":[87,127,232,200,201,127,208,244,194,32,138,26,143,150,80,127,169]},{"1073729":[143,148,80,127,226,32,104,133,2,104,133,1,104,133]},{"1073744":[171,40,122,250,104,34,25,226,5,107,34,137,144,160,175,219,242,126,107,34,148,170,160,34,241,233,160,34,7,236,160,34,75,237,160,107,141,12,4,156,172,4,72,8,34,120,250,13,34,192,130,160,40,104,107,34,157,153,7,175,77,128,48,137,4,240,4,143,202,80,127,137,2,240,4,143,201,80,127,137,1,240,4,143,200,80,127,175,78,128,48,137,4,240,6,169,128,143,115,243,126,175,78,128,48,137,2,240,6,169,50,143,117,243,126,175,78,128,48,137,1,240,6,169,70,143,118,243,126,107,34,190,160,2,34,168,208,160,107,175,240,244,126,208,10,34,102,227,160,169,255,143,240,244,126,34,106,129,160,34,43,130,160,34,14,128,164,169,255,143,144,80,127,169]},{"1073919":[143,1,80,127,175,114,129,48,240,8,175,139,243,126,143,111,243,126,143,255,255,255,175,197,243,126,201,1,208,30,175,77,128,48,137,4,240,4,143,202,80,127,137,2,240,4,143,201,80,127,137,1,240,4,143,200,80,127,128,42,175,77,128,48,137,4,240,6,169]},{"1073989":[143,202,80,127,175,77,128,48,137,2,240,6,169]},{"1074003":[143,201,80,127,175,77,128,48,137,1,240,6,169]},{"1074017":[143,200,80,127,107,218,8,194,32,175,70,128,48,143,98,243,126,143,96,243,126,175,12,130,48,143,84,244,126,175,14,130,48,143,86,244,126,162]},{"1074057":[191]},{"1074059":[176,48,159,64,243,126,232,232,224,79]},{"1074070":[144,241,226,32,175,64,128,48,240,12,169,128,143,97,240,126,169,128,143,147,240,126,175,67,128,48,143,89,243,126,40,250,107,34,123,142,160,34,189,234,160,107,34,238,142,160,34,247,142,160,162,4,107,34,189,234,160,169,20,133,17,107,34,189,234,160,107,34,146,130,160,34,211,142,160,34,54,208,160,8,226,32,169,255,143,144,80,127,40,107,169,1,143,145,80,127,107,34,5,143,160,107,169]},{"1074174":[143,145,80,127,175,160,80,127,240,10,34,105,253,28,169]},{"1074190":[143,160,80,127,156,233,2,189,94,12,107,175,105,129,48,208,4,169]},{"1074210":[107,201,1]},{"1074214":[208,4,32,48,228,107,169]},{"1074223":[107,175,197,243,126,41,15]},{"1074231":[201,2]},{"1074234":[176,23,165,34,201,200,7,144,16,201,40,8,176,11,165,32,201,184,6,176,4,169,1]},{"1074258":[96,169]},{"1074262":[96,175,76,128,48,41,255]},{"1074270":[240,4,92,90,189,27,224,118]},{"1074279":[176,4,92,240,188,27,92,90,189,27,34,122,228,160,34,231,228,160,107,169,14,143,1,40]},{"1074304":[169,4,143,1,40]},{"1074310":[169,13,143,1,40]},{"1074316":[169,14,143,1,40]},{"1074322":[169]},{"1074324":[143,1,40]},{"1074328":[169]},{"1074330":[143,1,40]},{"1074334":[169]},{"1074336":[143,1,40]},{"1074340":[169]},{"1074342":[143,1,40]},{"1074346":[169]},{"1074348":[143,1,40]},{"1074352":[169]},{"1074354":[143,1,40]},{"1074358":[169]},{"1074360":[143,1,40]},{"1074364":[169,1,143,1,40]},{"1074370":[169]},{"1074372":[143,1,40]},{"1074376":[169,1,143,1,40]},{"1074382":[169]},{"1074384":[143,1,40]},{"1074388":[169]},{"1074390":[143,1,40]},{"1074394":[169,10,143,1,40]},{"1074400":[169,13,143,1,40]},{"1074406":[107,72,218,162]},{"1074411":[175]},{"1074413":[40]},{"1074415":[41,15,201,15,240,10,224,14,144,3,24,128,4,232,128,236,56,250,104,107,72,218,8,226,48,162]},{"1074442":[175]},{"1074444":[40]},{"1074446":[41,15,201,15,240,12,224,14,144,4,24,130,250]},{"1074460":[232,128,235,56,175]},{"1074466":[40]},{"1074468":[72,175]},{"1074471":[40]},{"1074473":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1074491":[175]},{"1074493":[40]},{"1074495":[72,175]},{"1074498":[40]},{"1074500":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1074520":[40]},{"1074522":[72,175]},{"1074525":[40]},{"1074527":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1074547":[40]},{"1074549":[72,175]},{"1074552":[40]},{"1074554":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,41,255]},{"1074639":[10,10,72,10,10,10,10,56,227,1,131,1,104,100,1,24,101]},{"1074657":[133]},{"1074659":[165,3,41,255]},{"1074664":[10,10,10,72,10,24,99,1,131,1,104,100,3,24,101,2,10,10,72,10,10,10,10,56,227,1,131,1,104,160,96,34,26,230,160,132,2,100,3,24,101]},{"1074706":[144,2,230,2,40,250,104,107,226,32,140,2,66,141,3,66,234,234,234,234,173,22,66,172,23,66,235,141,3,66,234,234,152,24,109,22,66,172,23,66,144,1,200,235,194,32,107,72,218,90,8,226,48,162]},{"1074761":[175]},{"1074763":[40]},{"1074765":[41,15,201,15,240,12,224,14,144,4,24,130,249]},{"1074779":[232,128,235,56,175]},{"1074785":[40]},{"1074787":[72,175]},{"1074790":[40]},{"1074792":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133]},{"1074810":[175]},{"1074812":[40]},{"1074814":[72,175]},{"1074817":[40]},{"1074819":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,1,175]},{"1074839":[40]},{"1074841":[72,175]},{"1074844":[40]},{"1074846":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,2,175]},{"1074866":[40]},{"1074868":[72,175]},{"1074871":[40]},{"1074873":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,3,175]},{"1074893":[40]},{"1074895":[133,4,175]},{"1074899":[40]},{"1074901":[72,175]},{"1074904":[40]},{"1074906":[10,72,10,10,24,99,1,131,1,104,24,99,1,131,1,104,133,5,175]},{"1074926":[40]},{"1074928":[133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,133,6,41,255]},{"1074997":[10,72,10,10,24,99,1,131,1,104,10,72,10,10,24,99,1,131,1,104,24,105,232,3,100,6,24,101,5,133,5,40,122,250,104,107,165,12,201,56,208,4,9,64,133,12,165,13,157,2,8,165,12,157,3,8,107,175,51,128,48,240,9,141,202,4,169,43,141,46,1,107,169,255,141,202,4,107,175,112,243,126,24,111,52,128,48,58,207,67,243,126,144,13,175,67,243,126,201,99,176,5,26,143,67,243,126,107,175,113,243,126,24,111,53,128,48,58,207,119,243,126,144,13,175,119,243,126,201,99,176,5,26,143,119,243,126,107,175,112,243,126,24,111,52,128,48,207,67,243,126,107,169]},{"1075152":[143,128,80,127,143,130,80,127,143,132,80,127,143,134,80,127,143,136,80,127,143,138,80,127,175,144,129,48,41,255]},{"1075183":[201,2]},{"1075186":[208,27,175,62,244,126,56,239,84,244,126,143,140,80,127,175,64,244,126,239,86,244,126,143,142,80,127,128,30,201,1]},{"1075218":[208,25,175,84,244,126,56,239,62,244,126,143,140,80,127,175,86,244,126,239,64,244,126,143,142,80,127,175,142,80,127,207,239,233,160,144,10,208,8,175,140,80,127,207,237,233,160,144,100,175,145,129,48,41,255]},{"1075274":[208,24,169,2]},{"1075279":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,201,1]},{"1075303":[208,38,175,140,80,127,73,255,255,24,105,1]},{"1075316":[143,140,80,127,175,142,80,127,73,255,255,105]},{"1075330":[143,142,80,127,169,1]},{"1075337":[143,126,80,127,128,40,169,2]},{"1075346":[143,126,80,127,175,62,244,126,143,84,244,126,175,64,244,126,143,86,244,126,96,175,146,129,48,41,255]},{"1075374":[240,7,169]},{"1075379":[143,126,80,127,175,142,80,127,207,227,233,160,144,10,208,8,175,140,80,127,207,225,233,160,144,53,175,128,80,127,26,201,10]},{"1075413":[144,12,175,130,80,127,26,143,130,80,127,169]},{"1075427":[143,128,80,127,175,140,80,127,56,239,225,233,160,143,140,80,127,175,142,80,127,239,227,233,160,143,142,80,127,128,181,175,142,80,127,207,231,233,160,144,10,208,8,175,140,80,127,207,229,233,160,144,53,175,132,80,127,26,201,10]},{"1075488":[144,12,175,134,80,127,26,143,134,80,127,169]},{"1075502":[143,132,80,127,175,140,80,127,56,239,229,233,160,143,140,80,127,175,142,80,127,239,231,233,160,143,142,80,127,128,181,175,142,80,127,207,235,233,160,144,10,208,8,175,140,80,127,207,233,233,160,144,53,175,136,80,127,26,201,10]},{"1075563":[144,12,175,138,80,127,26,143,138,80,127,169]},{"1075577":[143,136,80,127,175,140,80,127,56,239,233,233,160,143,140,80,127,175,142,80,127,239,235,233,160,143,142,80,127,128,181,175,128,80,127,24,105,144,36,143,128,80,127,175,130,80,127,24,105,144,36,143,130,80,127,175,132,80,127,24,105,144,36,143,132,80,127,175,134,80,127,24,105,144,36,143,134,80,127,175,136,80,127,24,105,144,36,143,136,80,127,175,138,80,127,24,105,144,36,143,138,80,127,96,192,75,3]},{"1075685":[16,14]},{"1075689":[60]},{"1075693":[255,255,255,127,175,144,129,48,208,1,107,169,7,40,143,146,199,126,175,126,80,127,41,2]},{"1075718":[240,93,175,145,129,48,41,255]},{"1075727":[208,27,169,8,40,143,148,199,126,169,9,40,143,150,199,126,169,127,36,143,152,199,126,143,154,199,126,128,28,169,10,40,143,148,199,126,169,11,40,143,150,199,126,169,12,40,143,152,199,126,169,127,36,143,154,199,126,143,156,199,126,143,158,199,126,143,160,199,126,143,162,199,126,143,164,199,126,175,146,129,48,208,1,107,128,77,175,126,80,127,41,1]},{"1075820":[24,105,4,40,143,148,199,126,175,130,80,127,143,150,199,126,175,128,80,127,143,152,199,126,169,6,40,143,154,199,126,175,134,80,127,143,156,199,126,175,132,80,127,143,158,199,126,169,6,40,143,160,199,126,175,138,80,127,143,162,199,126,175,136,80,127,143,164,199,126,165,26,41,31]},{"1075895":[208,3,32,205,231,107,175,145,129,48,201,2,208,14,175,126,80,127,41,2,240,6,169]},{"1075919":[143,109,243,126,175,109,243,126,107,165,160,201,13,208,3,169,7,107,169,11,107,157,160,11,165,160,201,13,208,15,175,163,128,48,240,6,169,64,143,202,243,126,169,1,107,175,163,128,48,240,6,169]},{"1075972":[143,202,243,126,169]},{"1075978":[107,165,160,201,13,208,4,169,6,128,2,169,1,107,218,165,160,201,13,208,6,169,1,92,123,213,30,169]},{"1076007":[92,123,213,30,254,48,14,165,160,201,13,208,3,169,1,107,169]},{"1076025":[107,175,66,128,48,240,14,173,3,4,41,128,240,7,173,18,1,13,228,2,107,173,18,1,13,228,2,13,252,15,107,194,32,165,160,201,23,1,226,32,208,8,175,104,129,48,141,115,3,107,185,85,208,141,115,3,107,165,27,240,44,194,32,165,160,201,95]},{"1076093":[240,24,201,172]},{"1076098":[240,19,201,179]},{"1076103":[240,14,201,213]},{"1076108":[240,9,201,23,1,240,4,226,32,128,11,226,32,218,187,191,107,129,48,133]},{"1076129":[250,175,110,243,126,107,165,27,240,39,194,32,165,160,201,95]},{"1076146":[240,19,201,179]},{"1076151":[240,14,201,213]},{"1076156":[240,9,201,23,1,240,4,226,32,128,11,226,32,218,187,191,110,129,48,133,76,250,175,110,243,126,107,165,27,240,36,194,32,165,160,201,95]},{"1076194":[240,19,201,179]},{"1076199":[240,14,201,213]},{"1076204":[240,9,201,23,1,240,4,226,32,128,8,226,32,169,1,141,123,3,107,175,79,128,48,141,123,3,107,175,103,129,48,41,255]},{"1076238":[208,1,107,218,162]},{"1076245":[175,101,129,48,159,42,199,126,232,232,175,96,244,126,41,255]},{"1076262":[34,176,141,160,175,5,80,127,41,255]},{"1076273":[9]},{"1076275":[36,159,42,199,126,232,232,175,6,80,127,41,255]},{"1076289":[9]},{"1076291":[36,159,42,199,126,232,232,175,7,80,127,41,255]},{"1076305":[9]},{"1076307":[36,159,42,199,126,232,232,175,103,129,48,41,255]},{"1076321":[201,255]},{"1076324":[240,70,169,48,40,159,42,199,126,232,232,175,103,129,48,41,255]},{"1076342":[34,176,141,160,175,5,80,127,41,255]},{"1076353":[9]},{"1076355":[36,159,42,199,126,232,232,175,6,80,127,41,255]},{"1076369":[9]},{"1076371":[36,159,42,199,126,232,232,175,7,80,127,41,255]},{"1076385":[9]},{"1076387":[36,159,42,199,126,232,232,128,15,169,127,32,159,42,199,126,159,42,199,126,159,42,199,126,250,107,189,32,14,201,214,208,16,34,217,236,160,176,10,189,128,13,201,17,144,3,169]},{"1076435":[107,165,68,201,128,107,175,62,128,48,240,106,201,1,240,100,201,2,208,40,175,116,243,126,41,7,201,7,208,86,175,122,243,126,41,127,201,127,208,76,175,197,243,126,201,3,144,68,175,219,242,126,41,32,201,32,208,58,128,58,201,4,208,12,175,122,243,126,41,127,201,127,208,42,128,42,201,3,208,22,175,122,243,126,41,127,201,127,208,26,175,219,242,126,41,32,201,32,208,16,128,16,201,5,208,10,175,96,244,126,201,100,144,2,128,2,24,107,56,107,165,27,41,255]},{"1076560":[208,1,107,173,12,4,201,255]},{"1076569":[208,1,107,175,60,128,48,41,255]},{"1076579":[208,1,107,218,174,12,4,201,2]},{"1076589":[240,13,175,100,243,126,63,69,239,160,208,3,130,199,1,173,12,4,201]},{"1076610":[208,14,175,52,244,126,41,240]},{"1076619":[74,74,74,74,130,213]},{"1076626":[201,2]},{"1076629":[208,14,175,52,244,126,41,240]},{"1076638":[74,74,74,74,130,194]},{"1076645":[201,4]},{"1076648":[208,10,175,54,244,126,41,7]},{"1076657":[130,179]},{"1076660":[201,6]},{"1076663":[208,15,175,53,244,126,41,224]},{"1076672":[74,74,74,74,74,130,159]},{"1076680":[201,8]},{"1076683":[208,10,175,53,244,126,41,2]},{"1076692":[130,144]},{"1076695":[201,10]},{"1076698":[208,10,175,57,244,126,41,15]},{"1076707":[130,129]},{"1076710":[201,12]},{"1076713":[208,9,175,52,244,126,41,15]},{"1076722":[128,115,201,14]},{"1076727":[208,9,175,56,244,126,41,15]},{"1076736":[128,101,201,16]},{"1076741":[208,13,175,55,244,126,41,240]},{"1076750":[74,74,74,74,128,83,201,18]},{"1076759":[208,13,175,56,244,126,41,240]},{"1076768":[74,74,74,74,128,65,201,20]},{"1076777":[208,11,175,53,244,126,41,28]},{"1076786":[74,74,128,49,201,22]},{"1076793":[208,9,175,55,244,126,41,15]},{"1076802":[128,35,201,24]},{"1076807":[208,13,175,57,244,126,41,240]},{"1076816":[74,74,74,74,128,17,201,26]},{"1076825":[208,12,175,54,244,126,41,248]},{"1076834":[74,74,74,128]},{"1076839":[34,176,141,160,175,6,80,127,41,255]},{"1076850":[9]},{"1076852":[36,143,148,199,126,175,7,80,127,41,255]},{"1076864":[9]},{"1076866":[36,143,150,199,126,169,48,40,143,152,199,126,173,12,4,201]},{"1076884":[208,6,169,8]},{"1076889":[130,135]},{"1076892":[201,2]},{"1076895":[208,6,169,8]},{"1076900":[130,124]},{"1076903":[201,4]},{"1076906":[208,6,169,6]},{"1076911":[130,113]},{"1076914":[201,6]},{"1076917":[208,6,169,6]},{"1076922":[130,102]},{"1076925":[201,8]},{"1076928":[208,6,169,2]},{"1076933":[130,91]},{"1076936":[201,10]},{"1076939":[208,6,169,10]},{"1076944":[130,80]},{"1076947":[201,12]},{"1076950":[208,5,169,14]},{"1076955":[128,70,201,14]},{"1076960":[208,5,169,8]},{"1076965":[128,60,201,16]},{"1076970":[208,5,169,8]},{"1076975":[128,50,201,18]},{"1076980":[208,5,169,8]},{"1076985":[128,40,201,20]},{"1076990":[208,5,169,6]},{"1076995":[128,30,201,22]},{"1077000":[208,5,169,8]},{"1077005":[128,20,201,24]},{"1077010":[208,5,169,12]},{"1077015":[128,10,201,26]},{"1077020":[208,5,169,27]},{"1077025":[128]},{"1077027":[34,176,141,160,175,6,80,127,41,255]},{"1077038":[9]},{"1077040":[36,143,154,199,126,175,7,80,127,41,255]},{"1077052":[9]},{"1077054":[36,143,156,199,126,250,107]},{"1077062":[128]},{"1077064":[64]},{"1077066":[32]},{"1077068":[16]},{"1077070":[8]},{"1077072":[4]},{"1077074":[2]},{"1077076":[1,128]},{"1077079":[64]},{"1077081":[32]},{"1077083":[16]},{"1077085":[8]},{"1077087":[4]},{"1077089":[138,26,143,153,80,127,191,115,187,27,141,14,1,107,175,153,80,127,240,19,58,10,170,191]},{"1077114":[161,48,141,150,6,191,2,162,48,141,152,6,128,9,189,36,215,141,150,6,156,152,6,107,175,153,80,127,201,67,107,32,28,129,160,88,162,2,165,138,9,64,201,67,240,62,201,69,240,58,201,71,240,54,160,90,165,138,201,64,176,34,162,7,175,197,243,126,201,3,144,2,162,2,165,138,201,24,240,28,162,5,175]},{"1077198":[243,126,41,64,240,2,162,2,165,138,240,12,162,2,175,197,243,126,201,2,176,2,162,3,175,202,243,126,240,30,162,13,165,138,201,64,240,14,201,67,240,10,201,69,240,6,201,71,240,2,162,9,175,87,243,126,208,2,162,4,173,50,1,201,242,208,7,236,48,1,208,2,162,243,92,137,131,2,173,10,4,201,24,208,2,165,27,107,72,218,90,8,226,48,165,27,208,24,160,10,169,11,34,95,246,29,48,14,34,100,174,9,169,36,153,160,13,169,1,153,176,13,40,122,250,104,107,138,69,26,41,15,5,27,208,119,169,11,160,10,34,95,246,29,48,109,218,187,169,30,34,138,187,13,250,169,1,153,176,13,218,34,113,186,13,133,15,41,2,240,36,165,15,101,226,153,16,13,165,227,105]},{"1077380":[153,48,13,165,15,41,1,170,189,60,159,101,232,153]},{"1077395":[13,165,233,105]},{"1077400":[153,32,13,128,34,165,15,101,232,153]},{"1077411":[13,165,233,105]},{"1077416":[153,32,13,165,15,41,1,170,189,60,159,101,226,153,16,13,165,227,105]},{"1077436":[153,48,13,187,169,32,34,24,234,6,250,169,48,34,124,187,13,107,34,58,135,1,194,16,166,160,191,148,242,160,226,16,34,156,135]},{"1077472":[236,240,160,237,240,160,122,241,160,7,242,160,107,175,65,128,48,208,1,107,194,48,162,92,25,169,208,8,159]},{"1077502":[32,126,232,232,159]},{"1077508":[32,126,232,232,159]},{"1077514":[32,126,232,232,159]},{"1077520":[32,126,232,232,162,220,25,159]},{"1077529":[32,126,232,232,169,202,12,159]},{"1077538":[32,126,232,232,169,203,12,159]},{"1077547":[32,126,232,232,169,208,8,159]},{"1077556":[32,126,232,232,162,92,26,159]},{"1077565":[32,126,232,232,169,218,12,159]},{"1077574":[32,126,232,232,169,219,12,159]},{"1077583":[32,126,232,232,169,208,8,159]},{"1077592":[32,126,232,232,162,220,26,159]},{"1077601":[32,126,232,232,159]},{"1077607":[32,126,232,232,159]},{"1077613":[32,126,232,232,159]},{"1077619":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,28,25,169,208,8,159]},{"1077643":[32,126,232,232,159]},{"1077649":[32,126,232,232,159]},{"1077655":[32,126,232,232,159]},{"1077661":[32,126,232,232,162,156,25,159]},{"1077670":[32,126,232,232,169,202,12,159]},{"1077679":[32,126,232,232,169,203,12,159]},{"1077688":[32,126,232,232,169,208,8,159]},{"1077697":[32,126,232,232,162,28,26,159]},{"1077706":[32,126,232,232,169,218,12,159]},{"1077715":[32,126,232,232,169,219,12,159]},{"1077724":[32,126,232,232,169,208,8,159]},{"1077733":[32,126,232,232,162,156,26,159]},{"1077742":[32,126,232,232,159]},{"1077748":[32,126,232,232,159]},{"1077754":[32,126,232,232,159]},{"1077760":[32,126,232,232,226,48,107,175,65,128,48,208,1,107,194,48,162,92,9,169,208,8,159]},{"1077784":[32,126,232,232,159]},{"1077790":[32,126,232,232,159]},{"1077796":[32,126,232,232,159]},{"1077802":[32,126,232,232,162,220,9,159]},{"1077811":[32,126,232,232,169,202,12,159]},{"1077820":[32,126,232,232,169,203,12,159]},{"1077829":[32,126,232,232,169,208,8,159]},{"1077838":[32,126,232,232,162,92,10,159]},{"1077847":[32,126,232,232,169,218,12,159]},{"1077856":[32,126,232,232,169,219,12,159]},{"1077865":[32,126,232,232,169,208,8,159]},{"1077874":[32,126,232,232,162,220,10,159]},{"1077883":[32,126,232,232,159]},{"1077889":[32,126,232,232,159]},{"1077895":[32,126,232,232,159]},{"1077901":[32,126,232,232,226,48,107]},{"1077922":[1]},{"1078034":[2]},{"1078130":[3]},{"1078228":[192,10,208,7,173,12,4,201,18,240,2,24,96,56,96,100]},{"1078245":[134,1,133,2,32,212,243,176,4,92,83,230]},{"1078258":[175,255,255,255,169,160,133,2,194,32,169,134,244,133]},{"1078273":[162,128,167]},{"1078277":[141,24,33,230]},{"1078282":[230]},{"1078284":[167]},{"1078286":[141,24,33,230]},{"1078291":[230]},{"1078293":[167]},{"1078295":[141,24,33,230]},{"1078300":[230]},{"1078302":[167]},{"1078304":[141,24,33,230]},{"1078309":[230]},{"1078311":[167]},{"1078313":[141,24,33,230]},{"1078318":[230]},{"1078320":[167]},{"1078322":[141,24,33,230]},{"1078327":[230]},{"1078329":[167]},{"1078331":[141,24,33,230]},{"1078336":[230]},{"1078338":[167]},{"1078340":[141,24,33,230]},{"1078345":[230]},{"1078347":[202,208,181,226,32,92,81,230]},{"1078356":[226,48,175,248,194,126,168,32,212,243,194,48,176,10,162]},{"1078373":[160,64]},{"1078376":[92,104,223]},{"1078380":[162,134,244,160]},{"1078386":[169]},{"1078388":[8,139,84,127,160,171,162]},{"1078396":[8,169]},{"1078399":[102,133,3,92,110,223]},{"1078406":[19,254,6,253,44,251,24,247,56,231,108,219,198,189,131,126]},{"1078423":[255]},{"1078425":[255]},{"1078427":[255]},{"1078429":[255]},{"1078431":[255]},{"1078433":[255]},{"1078435":[255]},{"1078437":[255,230]},{"1078440":[217]},{"1078442":[157]},{"1078444":[110]},{"1078446":[118]},{"1078448":[185]},{"1078450":[155]},{"1078452":[103]},{"1078454":[230,230,217,217,157,157,110,110,118,118,185,185,155,155,103,103,1,252,35,249,7,243,143,231,23,207,39,159,67,63,129,126,2,255,4,255,8,255,16,255,32,255,64,255,128,255,1,255,253,252,251,249,215,211,119,111,224,216,218,188,237,46,254,125,2,255,4,255,40,255,144,255,39,255,67,255,145,255,2,255,193,124,99,185,55,211,155,103,201,55,196,59,254,1,255]},{"1078550":[2,255,4,255,8,255]},{"1078557":[255]},{"1078559":[255]},{"1078561":[255]},{"1078563":[255]},{"1078565":[255,245,243,203,199,20,12,36,24,90,60,230,103,193,193,3,1,12,255,56,255,243,255,231,255,195,255,153,255,62,255,254,255,129]},{"1078600":[195,129,102,66,60,36,24]},{"1078608":[60,24,102,36,195,66,129,129,195,195,102,102,60,60,24,24,60,60,102,102,195,195]},{"1078662":[239,28,219,54,172,123,114,205,186,229,75,180,235,20,239,16,223,255,183,255,123,255,205,255,229,255,180,255,23,255,219,255,253,10,246,41,223,32,254,1,253,2,247,8,255]},{"1078708":[255]},{"1078710":[255,255,169,255,166,255,159,255,254,255,233,255,243,255,255,255,63,188,124,115,240,239,41,223,89,63,219,191,186,127,188,127,67,252,143,240,31,224,63,192,255,128,127,128,255]},{"1078756":[255]},{"1078758":[220,29,56,203,200,246,247,251,251,253,130,252,97,254,57,254,226,63,244,15,249,7,252,3,254,1,255,1,255]},{"1078788":[255]},{"1078790":[56,185,11,200,100,2,153,167,251,231,223,227,53,75,99,28,70,255,52,255,153,255,64,255]},{"1078815":[255]},{"1078817":[255,128,255,128,255,24,217,176,51,64,134,33,93,153,165,156,160,178,204,233,30,38,255,76,255,57,255,130,255,66,255,67,255,1,255]},{"1078853":[255,56,185,11,200,100,2,153,167,251,231,223,227,53,75,99,28,70,255,52,255,153,255,64,255]},{"1078879":[255]},{"1078881":[255,128,255,128,255,24,217,176,51,64,134,33,93,153,165,156,160,178,204,233,30,38,255,76,255,57,255,130,255,66,255,67,255,1,255]},{"1078917":[255,126,129,195,126,165,126,163,126,137,126,161,126,195,126,126,129]},{"1078935":[255,126,255,126,255,126,255,126,255,126,255,126,255]},{"1078949":[255,1,252,66,249,55,243,111,231,219,195,191,153,125,62,238,111,2,255,4,255,8,255,16,255,36,255,66,255,129,255,16,255,56,186,9,205,131,235,195,243,195,239,146,210,30,159,8,203,69,255,50,255,20,255,12,255,16,255,45,255,96,255,52,255,62,127,159,191,195,211,131,187,1,101,24,218,8,185,72,75,128,255,64,255,44,255,68,255,154,255,37,255,70,255,180,255,56,186,9,205,131,235,195,243,195,239,146,210,30,159,8,203,69,255,50,255,20,255,12,255,16,255,45,255,96,255,52,255,62,127,159,191,195,211,131,187,1,101,24,218,8,185,72,75,128,255,64,255,44,255,68,255,154,255,37,255,70,255,180,255,129,103,65,189,35,91,145,173,232,246,228,235,242,245,249,250,24,255,2,255,132,255,66,255,1,255,16,255,8,255,4,255,241,246,226,237,132,154,137,181,19,107,33,221,88,190,188,127,8,255,16,255,97,255,66,255,132,255,2,255,1,255]},{"1079173":[255,223,60,249,118,253,50,205,50,161,94,167,88,143,112,175,80,189,255,118,255,50,255,50,255,94,255,89,255,115,255,87,255,255]},{"1079208":[189,66,27,228,207,48,231,24,243,12,247,8,255]},{"1079222":[255,255,254,255,253,255,59,255,159,255,207,255,235,255,231,255,156,127,134,127,65,191,95,63,175,159,147,175,12,99,11,200,255]},{"1079256":[255]},{"1079258":[127,128,255,128,127,192,95,224,159,240,55,252,61,254,93,254,218,252,155,253,151,251,9,245,51,195,206,46,255]},{"1079288":[255]},{"1079290":[255,1,254,1,252,3,250,7,252,15,209,63,195,60,74,188,34,92,154,172,146,172,158,160,34,65,29,220]},{"1079319":[255,1,255,129,255,65,255,65,255,65,255,156,255,34,255,37,30,209,206,238,224,233,229,225,233,193,221]},{"1079347":[54,200,43,192,255,32,255,17,255,18,255,22,255,34,255,201,255,20,255,195,60,74,188,34,92,154,172,146,172,158,160,34,65,29,220]},{"1079383":[255,1,255,129,255,65,255,65,255,65,255,156,255,34,255,37,30,209,206,238,224,233,229,225,233,193,221]},{"1079411":[54,200,43,192,255,32,255,17,255,18,255,22,255,34,255,201,255,20,255,127,128,224,96,207,64,155,8,156,8,156,8,156,8,156,8]},{"1079447":[255,31,255,48,255,103,255,103,255,103,255,103,255,103,255,251,38,229]},{"1079466":[253]},{"1079468":[253,60,225]},{"1079472":[129,126,129,126,255]},{"1079478":[88,255,90,255,66,255,66,255,126,255]},{"1079489":[255]},{"1079491":[255]},{"1079493":[255,128,127]},{"1079497":[128,96,128,191,63,191,63,192,127,128,127,255]},{"1079511":[255,127,255,127,255,64,255,64,255]},{"1079521":[255]},{"1079523":[255]},{"1079525":[255,181,66,231,36,165,102,165,102,165,102,165,102,165,102,165,126,24,255,24,255,24,255,24,255,24,255,24,255,24,255]},{"1079557":[255,156,127,128,127,192,63,255,64,179,127,192,63,255]},{"1079572":[127,128]},{"1079575":[255]},{"1079577":[255]},{"1079579":[255]},{"1079581":[255]},{"1079583":[255]},{"1079585":[255]},{"1079587":[255]},{"1079589":[255,1,254,3,252,255]},{"1079596":[159,254,1,254,255]},{"1079602":[255]},{"1079604":[255]},{"1079607":[255]},{"1079609":[255]},{"1079611":[255]},{"1079613":[255]},{"1079615":[255]},{"1079617":[255]},{"1079619":[255]},{"1079621":[255,64,191,160,223,228,12,162,14,178,86,178,86,180,70,176,90]},{"1079639":[255]},{"1079641":[255,19,255,81,255,73,255,73,255,73,255,69,255,255]},{"1079656":[255]},{"1079658":[255,63,240,48,225,33,236,44,228,36,240,48]},{"1079671":[255,127,255,64,255,79,255,94,255,83,255,91,255,79,255,2,6,5,12,7,16,3,36,25,66,60,129,126]},{"1079700":[253]},{"1079702":[253,255,251,255,255,255,255,255,255,255,255,255,255,255,255,255,49,191,35,191,7,191,39,191,63,222,14,255,64,249,61,226,78,255,92,255,120,255,88,255,97,255,113,255,63,255,29,255,249,246,225,222,129,254,9,254,13,254,15,254,64,241,144,111,15,255,63,255,127,255,247,255,243,255,241,255,190,255,144,255,129,103,65,189,35,91,145,173,232,246,228,235,242,245,249,250,24,255,2,255,132,255,66,255,1,255,16,255,8,255,4,255,255,255,191,191,95,127,57,249,224,241,238,255,240,254,253,253]},{"1079831":[255,64,255,128,255,6,255,14,255]},{"1079841":[255,1,255,2,255,224,227,209,223,175,191,71,103,39,127,62,126,190,255,127,255,28,255,32,255,64,255,152,255,128,255,129,255]},{"1079875":[255]},{"1079877":[255,56,185,8,203]},{"1079883":[102,129,189,195,219,193,221,131,179,14,110,70,255,52,255,153,255,66,255,36,255,34,255,76,255,145,255,62,255,31,159,27,219,3,99,129,185,128,188]},{"1079923":[102,8,203]},{"1079927":[255,96,255,36,255,156,255,70,255,67,255,153,255,52,255,155,8,159,15,153,15,143,16,192,64,255,96,191,112,156,108,103,255,96,255,96,255,96,255,63,255,31,255]},{"1079971":[255,3,255,155,8,159,15,153,15,143,16,192,64,255,96,191,127,156,127,103,255,96,255,96,255,96,255,63,255,31,255]},{"1080003":[255]},{"1080005":[255,159,1,1,1,1,1,1,1,51,51,254,255,254,255,206,255,254,255,254,255,254,255,254,255,204,255]},{"1080033":[255]},{"1080035":[255]},{"1080037":[255,177,80,217,56,155,120,147,112,147,112,153,120,158,126,129,120,15,255,7,255,7,255,15,255,15,255,7,255,1,255,7,255,255]},{"1080073":[255,254,255,1,1,1,1,243,1,255,1,255,1]},{"1080087":[255]},{"1080089":[255]},{"1080091":[255,254,255,254,255,254,255,254,255,254,255,240,15,225,30,195,60,135,121,14,243,30,227,63,201,119,156,240,255,224,255,192,255,128,255,1,255,1,255]},{"1080131":[255,8,255,160,87,168,90,165,95,181,111,184,119,191,56,128,31,255]},{"1080150":[72,255,69,255,64,255,96,255,112,255,120,255,127,255]},{"1080165":[255,224,32,230,38,246,54,255]},{"1080174":[191,127,234,85,149,63,224,64,95,255,89,255,73,255,127,255]},{"1080191":[255]},{"1080193":[255,64,255,63,255,227,24,140,115,24,231,40,215,71,187,157,127,126,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,57,198]},{"1080233":[241,62,223,39,190,3,191,35,191,56,183,63,191,57,255,127,255,97,255,89,255,120,255,92,255,79,255,64,255,128,127,1,130,121,254,56,255,24,255,141,254,226,223,248,247,128,255,255,255,135,255,198,255,230,255,115,255,60,255,15,255,241,246,226,237,132,154,137,181,19,107,33,221,88,190,188,127,8,255,16,255,97,255,66,255,132,255,2,255,1,255]},{"1080325":[255,226,227,209,223,175,191,95,127,48,121,49,127,63,255,127,255,28,255,32,255,64,255,128,255,134,255,128,255]},{"1080355":[255]},{"1080357":[255,231,231,139,207,155,223,199,255,252,253,253,255,158,222,204,253,24,255,48,255,32,255]},{"1080381":[255,2,255]},{"1080385":[255,33,255,2,255,28,221,24,219]},{"1080395":[102,131,191,193,221,224,230,248,251,252,253,34,255,36,255,153,255,64,255,34,255,25,255,4,255,2,255,60,189,120,123,240,246,33,237,33,41,193,221]},{"1080435":[54,8,235,66,255,132,255,9,255,18,255,214,255,34,255,201,255,20,255,175,201,80,127,240,7,224,4,208,3,169,1,107,191,63,243,126,107,175,201,80,127,208,4,175,67,243,126,107,175,201,80,127,41,255]},{"1080490":[208,4,175,67,243,126,107,72,175,201,80,127,240,4,104,169,1,107,104,143,67,243,126,107,175,200,80,127,208,8,175,117,129,48,208,19,128,3,169,1,107,175,119,243,126,240,61,58,143,119,243,126,26,128,53,175,64,243,126,41,1,240,3,169]},{"1080555":[107,218,194,32,175,96,243,126,240,30,72,175,64,243,126,58,41,2]},{"1080574":[170,104,56,255,118,129,48,48,9,143,96,243,126,169,1]},{"1080590":[128,3,169]},{"1080595":[226,32,250,201]},{"1080600":[107,173,153,11,240,49,206,153,11,175,117,129,48,208,10,175,119,243,126,26,26,143,119,243,126,218,194,32,72,175,64,243,126,58,41,2]},{"1080637":[170,104,175,96,243,126,24,127,118,129,48,143,96,243,126,226,32,250,107,165,17,201,3,208,5,169,6,133,20,107,165]},{"1080669":[72,165,1,72,165,2,72,165,3,72,165,4,72,165,5,72,165,6,72,165,7,72,34,70,142,160,34,200,253,160,34,84,254,160,104,133,7,104,133,6,104,133,5,104,133,4,104,133,3,104,133,2,104,133,1,104,133]},{"1080727":[107,191,157,253,160,107]},{"1080734":[12,4,12,4]},{"1080739":[12,24,8,8,8,4]},{"1080747":[12,8,24,12,24,4,4,12,20]},{"1080757":[12,4,8,24,4,8,4,8,10,10,10,10,10,10,24,105]},{"1080774":[184,107,72,218,173]},{"1080780":[67,72,173,1,67,72,173,2,67,72,173,3,67,72,173,4,67,72,173,5,67,72,173,6,67,72,169,128,141,21,33,169,1,141]},{"1080815":[67,169,24,141,1,67,169]},{"1080823":[141,22,33,169,125,141,23,33,169,49,141,4,67,173]},{"1080838":[33,72,169,128,141]},{"1080844":[33,162]},{"1080847":[181]},{"1080849":[194,32,41,31]},{"1080854":[34,189,253,160,141,2,67,226,32,169,64,141,5,67,156,6,67,169,1,141,11,66,232,224,5,144,222,104,141]},{"1080884":[33,104,141,6,67,104,141,5,67,104,141,4,67,104,141,3,67,104,141,2,67,104,141,1,67,104,141]},{"1080912":[67,250,104,107,72,218,90,8,226,16,194,32,162]},{"1080926":[191,88,255,160,159]},{"1080932":[201,126,232,232,224,128,144,242,226,32,160]},{"1080944":[162]},{"1080946":[218,187,181]},{"1080950":[250,41,31,218,170,34,152,253,160,250,9,1,159,29,201,126,159,31,201,126,159,93,201,126,159,95,201,126,232,232,232,232,232,232,200,224,25,144,213,32,165,254,40,122,250,104,107,72,218,173]},{"1081001":[67,72,173,1,67,72,173,2,67,72,173,3,67,72,173,4,67,72,173,5,67,72,173,6,67,72,169,1,141]},{"1081031":[67,169,128,141,21,33,169,24,141,1,67,169,96,141,22,33,141,23,33,169]},{"1081052":[141,2,67,169,201,141,3,67,169,126,141,4,67,169,128,141,5,67,156,6,67,173]},{"1081075":[33,72,169,128,141]},{"1081081":[33,169,1,141,11,66,104,141]},{"1081090":[33,169]},{"1081093":[141]},{"1081095":[67,169,34,141,1,67,156,33,33,169]},{"1081106":[141,2,67,169,128,141,3,67,169,51,141,4,67,169,128,141,5,67,156,6,67,173]},{"1081129":[33,72,169,128,141]},{"1081135":[33,169,1,141,11,66,104,141]},{"1081144":[33,104,141,6,67,104,141,5,67,104,141,4,67,104,141,3,67,104,141,2,67,104,141,1,67,104,141]},{"1081172":[67,250,104,96,136,1,136,1,138,29,136,1,97,29,136,1,74,29,136,1,108,29,136,1,97,29,136,1,136,1,136,1,160,5,161,5,136,1,164,5,165,5,136,1,168,5,169,5,136,1,172,5,173,5,136,1,176,5,177,5,136,1,139,29,136,1,136,1,136,1,136,1,154,29,136,1,113,29,136,1,90,29,136,1,124,29,136,1,113,29,136,1,136,1,136,1,162,5,163,5,136,1,166,5,167,5,136,1,170,5,171,5,136,1,174,5,175,5,136,1,178,5,179,5,136,1,155,29,136,1,136,1]},{"1081344":[34,181,128]},{"1081348":[72,8,175,67,244,126,208,51,194,32,175,46,244,126,26,143,46,244,126,208,9,175,48,244,126,26,143,48,244,126,165,16,201,14,1,208,20,175,68,244,126,26,143,68,244,126,208,9,175,70,244,126,26,143,70,244,126,226,32,40,104,107,72,218,90,11,175,67,244,126,41,255]},{"1081421":[208,20,175,62,244,126,26,143,62,244,126,208,9,175,64,244,126,26,143,64,244,126,92,208,128]},{"1083056":[127,32,127,32,80,40,86,168,82,40,91,40,91,40,92,40,127,32,2,60,3,60,127,32,127,32,136,44,137,44,127,32,167,32,169,32,127,32,113,40,127,32,127,32,139,40,143,40,171,36,172,36,143,104,139,104,127,32,127,32,127,32,127,32,127,32,127,32,84,40,113,40,88,40,127,32,127,32,93,40,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,84,40,78,48,88,40,127,32,127,32,93,40,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,84,40,94,48,89,40,91,168,91,168,92,168,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,84,40,94,48,84,104,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,127,32,80,168,86,40,80,232]},{"1083392":[226,40,169,255,24,105,255,201,100,216,240,10,194,32,169,255,1,27,92,39,128]},{"1083414":[226,48,169,128,141]},{"1083420":[33,169,3,141,5,33,156,6,33,169,1,141,11,33,156,13,33,156,13,33,169,1,141,44,33,169,255,141,14,33,141,14,33,156,46,33,156,47,33,169,48,141,48,33,156,49,33,169,224,141,50,33,156,51,33,156]},{"1083477":[66,194,16,156,22,33,169,12,141,7,33,141,23,33,169,128,141,21,33,162,1,24,142]},{"1083501":[67,162,64,224,142,2,67,169,56,141,4,67,162]},{"1083515":[8,142,5,67,169,1,141,11,66,162]},{"1083526":[128,142,2,67,169,55,141,4,67,162]},{"1083537":[128,142,5,67,169,1,141,11,66,162]},{"1083548":[128,142,2,67,169,56,141,4,67,162,64,96,142,5,67,169,1,141,11,66,156,33,33,162]},{"1083573":[34,142]},{"1083576":[67,162,64,232,142,2,67,169,56,141,4,67,162]},{"1083590":[2,142,5,67,169,1,141,11,66,169,15,141]},{"1083603":[33,219]},{"1113856":[169]},{"1113858":[162]},{"1113860":[159,37,192,126,159]},{"1113866":[80,127,232,224,16,144,243,162,16,159]},{"1113877":[80,127,232,224,255,144,247,162]},{"1113886":[191]},{"1113888":[32,112,223,192,255]},{"1113894":[208,7,232,224,21,144,241,128,32,194,48,169]},{"1113908":[159]},{"1113911":[112,232,224]},{"1113915":[32,144,246,226,48,162]},{"1113922":[191,192,255]},{"1113926":[159]},{"1113928":[32,112,232,224,21,144,243,169,1,141,13,66,169,129,141]},{"1113944":[66,107]},{"1114112":[156,232,28,34,47,241,6,144,15,165,77,201,2,240,9,34,166,234,6,152,73,3,56,107,189,224,13,24,107,34,47,241,6,144,50,34,170,244,7,176,44,165,246,16,40,189,16,15,208,35,165,77,201,2,240,29,156,232,28,34,166,234,6,218,187,191,163,225,5,250,197,47,208,11,90,169,64,157,16,15,104,73,3,56,107,189,224,13,24,107,72,169,173,34,93,246,29,104,218,170,189,100,26,41,3,153,176,14,153,224,13,189]},{"1114225":[26,24,105,2,153]},{"1114231":[13,189,20,26,105]},{"1114237":[153,32,13,189,40,26,24,105,2,153,16,13,189,60,26,105]},{"1114254":[153,48,13,165,238,153,32,15,169,1,153,160,11,153,128,14,169,1,141,228,2,141,123,3,250,169]},{"1114281":[143,204,243,126,100,94,92,182,166,9,141,240,28,140,241,28,34,47,241,6,144,85,34,170,244,7,176,79,165,246,16,75,189,16,15,208,70,165,77,201,2,240,64,34,166,234,6,218,187,191,163,225,5,250,197,47,208,49,90,173,240,28,172,241,28,165,160,201,3,240,10,201,5,240,12,201,28,240,14,128,16,34,24,225,160,128,10,34,64,224,160,128,4,34,128,225,160,169,64,157,16,15,104,73,3,56,107,189,224,13,24,107]},{"1146880":[6,37,40,43,34,32,34,39,26,37,159,32,26,38,30,159,44,45,26,31,31]},{"1146902":[1,159,7,35,60,79,60,58,76,75,64,77,60,159,71,73,70,59,76,58,60,73,8,31,100,101,110,107,111,100,101,159,117,93,105,93,113,95,100,101,8,31,138,139,148,145,149,138,139,159,155,131,143,131,151,133,138,139,12,15,41,43,40,29,46,28,30,43,8,31,111,100,101,99,97,110,113,159,105,101,117,93,105,107,112,107,8,31,149,138,139,137,135,148,151,159,143,139,155,131,143,145,150,145,12,15,3,8,17,4,2,19,14,17,9,27,112,93,103,93,111,100,101,159,112,97,118,113,103,93,9,27,150,131,141,131,149,138,139,159,150,135,156,151,141,131,9,25,74,58,73,64,71,75,159,78,73,64,75,60,73,9,27,103,97,106,111,113,103,97,159,112,93,106,93,94,97,9,27,141,135,144,149,151,141,135,159,150,131,144,131,132,135,6,37,26,44,44,34,44,45,26,39,45,159,29,34,43,30,28,45,40,43,44,7,33,117,93,111,113,100,101,111,93,159,117,93,105,93,105,113,110,93,7,33,155,131,149,151,138,139,149,131,159,155,131,143,131,143,151,148,131,9,25,117,107,101,95,100,101,159,117,93,105,93,96,93,9,25,155,145,139,133,138,139,159,155,131,143,131,134,131,3,49,74,58,73,60,60,69,159,62,73,56,71,63,64,58,74,159,59,60,74,64,62,69,60,73,74,8,31,40,27,35,30,28,45,159,29,30,44,34,32,39,30,43,44,8,29,111,107,101,95,100,101,110,107,159,112,107,105,101,112,93,8,29,149,145,139,133,138,139,148,145,159,150,145,143,139,150,131,9,27,112,93,103,93,117,93,159,101,105,93,105,113,110,93,9,27,150,131,141,131,155,131,159,139,143,131,143,151,148,131,5,41,27,26,28,36,159,32,43,40,46,39,29,159,29,30,44,34,32,39,30,43,44,8,29,105,93,111,93,106,93,107,159,93,110,101,105,107,112,107,8,29,143,131,149,131,144,131,145,159,131,148,139,143,145,150,145,7,33,112,111,113,117,107,111,100,101,159,115,93,112,93,106,93,94,97,7,33,150,149,151,155,145,149,138,139,159,153,131,150,131,144,131,132,135,8,31,15,17,14,6,17]},{"1147398":[12,159,3,8,17,4,2,19,14,17,8,31,112,107,111,100,101,100,101,103,107,159,106,93,103,93,99,107,8,31,150,145,149,138,139,138,139,141,145,159,144,131,141,131,137,145,8,29,68,56,64,69,159,71,73,70,62,73,56,68,68,60,73,8,31,117,93,111,113,106,93,110,101,159,111,107,97,102,101,105,93,8,31,155,131,149,151,144,131,148,139,159,149,145,135,140,139,143,131,7,33,70,57,65,60,58,75,159,71,73,70,62,73,56,68,68,60,73,9,27,103,93,118,113,93,103,101,159,105,107,110,101,112,93,9,27,141,131,156,151,131,141,139,159,143,145,148,139,150,131,10,21,41,43,40,32,43,26,38,38,30,43,44,8,31,112,93,112,111,113,107,159,106,101,111,100,101,117,93,105,93,8,31,150,131,150,149,151,145,159,144,139,149,138,139,155,131,143,131,8,29,117,113,101,95,100,101,159,117,93,105,93,105,107,112,107,8,29,155,151,139,133,138,139,159,155,131,143,131,143,145,150,145,8,31,117,107,111,100,101,100,101,110,107,159,106,107,105,107,112,107,8,31,155,145,149,138,139,138,139,148,145,159,144,145,143,145,150,145,11,17,97,101,102,101,159,106,107,112,107,11,17,135,139,140,139,159,144,145,150,145,8,29,111,93,112,107,110,113,159,112,93,103,93,100,93,112,93,8,29,149,131,150,145,148,151,159,150,131,141,131,138,131,150,131,9,27,112,107,111,100,101,107,159,101,115,93,115,93,103,101,9,27,150,145,149,138,139,145,159,139,153,131,153,131,141,139,6,37,111,100,101,99,97,100,101,110,107,159,103,93,111,93,105,93,112,111,113,6,37,149,138,139,137,135,138,139,148,145,159,141,131,149,131,143,131,150,149,151,8,31,117,93,111,113,106,93,110,101,159,106,101,111,100,101,96,93,8,31,155,131,149,151,144,131,148,139,159,144,139,149,138,139,134,131,9,27,18,14,20,13,3,159,2,14,12,15,14,18,4,17,11,19,103,107,102,101,159,103,107,106,96,107,11,19,141,145,140,139,159,141,145,144,134,145,10,23,58,70,70,73,59,64,69,56,75,70,73,74,11,19,103,97,101,118,107,159,103,93,112,107,11,19,141,135,139,156,145,159,141,131,150,145,9,25,112,93,103,93,107,159,111,100,101,105,101,118,113,9,25,150,131,141,131,145,159,149,138,139,143,139,156,151,8,31,41,43,34,39,45,30,29,159,26,43,45,159,48,40,43,36,9,25,117,107,101,95,100,101,159,103,107,112,93,94,97,9,25,155,145,139,133,138,139,159,141,145,150,131,132,135,10,23,100,101,96,97,103,101,159,98,113,102,101,101,10,23,138,139,134,135,141,139,159,136,151,140,139,139,8,31,117,107,111,100,101,93,103,101,159,103,107,101,118,113,105,101,8,31,155,145,149,138,139,131,141,139,159,141,145,139,156,151,143,139,9,27,117,93,111,113,100,101,110,107,159,111,93,103,93,101,9,27,155,131,149,151,138,139,148,145,159,149,131,141,131,139,8,29,112,107,105,107,93,103,101,159,103,113,110,107,113,105,97,8,29,150,145,143,145,131,141,139,159,141,151,148,145,151,143,135,7,33,18,15,4,2,8]},{"1148127":[11,159,19,7]},{"1148132":[13,10,18,159,19,14,9,25,106,107,94,113,107,159,107,103,93,102,101,105,93,9,25,144,145,132,151,145,159,145,141,131,140,139,143,131,7,33,117,93,111,113,106,107,110,101,159,112,93,103,97,112,93,106,101,7,33,155,131,149,151,144,145,148,139,159,150,131,141,135,150,131,144,139,10,23,103,101,117,107,111,100,101,159,103,107,96,93,10,23,141,139,155,145,149,138,139,159,141,145,134,131,7,35,112,93,103,93,105,101,112,111,113,159,103,113,118,113,100,93,110,93,7,35,150,131,141,131,143,139,150,149,151,159,141,151,156,151,138,131,148,131,9,27,100,101,110,107,106,107,94,113,159,103,93,103,113,101,9,27,138,139,148,145,144,145,132,151,159,141,131,141,151,139,7,33,111,100,101,99,97,103,101,159,117,93,105,93,111,100,101,110,107,7,33,149,138,139,137,135,141,139,159,155,131,143,131,149,138,139,148,145,4,45,17]},{"1148348":[13,3,14,12,8,25,4,17,159,2,14,13,19,17,8,1,20,19,14,17,18,8,29,34,45,30,38,159,43,26,39,29,40,38,34,51,30,43,2,55,103,93,110,103,93,112,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,114,97,97,112,107,110,108,2,55,141,131,148,141,131,150,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,152,135,135,150,145,148,146,2,55,95,100,110,101,111,112,107,111,107,115,97,106,159,159,159,159,159,159,159,96,97,111,111,117,110,97,109,112,2,55,133,138,148,139,149,150,145,149,145,153,135,144,159,159,159,159,159,159,159,134,135,149,149,155,148,135,147,150,10,21,111,105,93,104,104,100,93,95,103,97,110,10,21,149,143,131,142,142,138,131,133,141,135,148,6,37,60,69,75,73,56,69,58,60,159,73,56,69,59,70,68,64,81,60,73,2,55,93,105,93,118,101,106,99,93,105,108,100,93,110,107,111,159,159,159,104,104,95,107,107,104,96,93,114,97,2,55,131,143,131,156,139,144,137,131,143,146,138,131,148,145,149,159,159,159,142,142,133,145,145,142,134,131,152,135,9,25,103,97,114,101,106,95,93,112,100,95,93,110,112,9,25,141,135,152,139,144,133,131,150,138,133,131,148,150,8,31,30,39,30,38,50,159,43,26,39,29,40,38,34,51,30,43,2,55,118,93,110,94,117,91,92,159,159,159,159,159,159,159,159,159,159,159,159,159,159,111,107,111,113,103,97,86,2,55,156,131,148,132,155,129,130,159,159,159,159,159,159,159,159,159,159,159,159,159,159,149,145,149,151,141,135,124,10,23,97,106,96,97,110,107,98,99,93,105,97,111,10,23,135,144,134,135,148,145,136,137,131,143,135,149,7,35,74,71,73,64,75,60,159,59,60,77,60,67,70,71,68,60,69,75,2,55,105,101,103,97,112,110,97,112,100,97,115,97,117,159,159,159,159,159,159,159,159,159,101,94,93,118,104,117,2,55,143,139,141,135,150,148,135,150,138,135,153,135,155,159,159,159,159,159,159,159,159,159,139,132,131,156,142,155,2,55,98,101,111,100,166,115,93,98,98,104,97,89,87,159,159,159,98,93,112,105,93,106,111,108,93,106,96,93,2,55,136,139,149,138,198,153,131,136,136,142,135,127,125,159,159,159,136,131,150,143,131,144,149,146,131,144,134,131,2,55,103,110,97,104,94,97,104,159,159,159,159,159,159,159,159,159,159,159,159,159,159,112,115,110,107,116,93,111,2,55,141,148,135,142,132,135,142,159,159,159,159,159,159,159,159,159,159,159,159,159,159,150,153,148,145,154,131,149,14,7,99,104,93,106,14,7,137,142,131,144,9,27,18,15,4,2,8]},{"1148969":[11,159,19,7]},{"1148974":[13,10,18,2,55,111,113,108,97,110,111,103,113,102,159,159,159,159,159,159,159,159,159,159,97,114,101,104,93,111,100,85,88,2,55,149,151,146,135,148,149,141,151,140,159,159,159,159,159,159,159,159,159,159,135,152,139,142,131,149,138,123,126,2,55,105,117,110,93,105,107,106,99,159,159,159,159,159,159,159,159,159,159,159,159,159,102,107,111,100,110,112,93,2,55,143,155,148,131,143,145,144,137,159,159,159,159,159,159,159,159,159,159,159,159,159,140,145,149,138,148,150,131,2,55,115,93,104,103,101,106,99,97,117,97,159,159,159,159,159,105,93,112,100,107,106,106,93,108,103,101,106,111,2,55,153,131,142,141,139,144,137,135,155,135,159,159,159,159,159,143,131,150,138,145,144,144,131,146,141,139,144,149,9,25,111,93,103,113,110,93,112,111,113,94,93,111,93,9,25,149,131,141,151,148,131,150,149,151,132,131,149,131,13,11,93,106,96,160,160,160,13,11,131,144,134,192,192,192,1,59,112,100,97,159,93,104,112,112,108,159,110,93,106,96,107,105,101,118,97,110,159,95,107,105,105,113,106,101,112,117,1,59,150,138,135,159,131,142,150,150,146,159,148,131,144,134,145,143,139,156,135,148,159,133,145,143,143,151,144,139,150,155,7,33,58,70,68,68,76,69,64,75,80,159,59,64,74,58,70,73,59,3,51,100,112,112,108,111,163,162,162,96,101,111,95,107,110,96,160,99,99,162,112,95,95,89,117,87,85,3,51,138,150,150,146,149,195,194,194,134,139,149,133,145,148,134,192,137,137,194,150,133,133,127,155,125,123,6,37,45,33,30,159,34,38,41,40,43,45,26,39,45,159,44,45,46,31,31,11,19,75,64,68,60,159,61,70,76,69,59,2,21,98,101,110,111,112,159,111,115,107,110,96,2,21,136,139,148,149,150,159,149,153,145,148,134,2,25,108,97,99,93,111,113,111,159,94,107,107,112,111,2,25,146,135,137,131,149,151,149,159,132,145,145,150,149,2,9,98,104,113,112,97,2,9,136,142,151,150,135,2,11,105,101,110,110,107,110,2,11,143,139,148,148,145,148,11,19,27,40,44,44,159,36,34,37,37,44,2,55,111,115,107,110,96,104,97,111,111,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,162,84,86,2,55,149,153,145,148,134,142,135,149,149,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,194,122,124,2,55,98,101,99,100,112,97,110,119,111,159,111,115,107,110,96,159,159,159,159,159,159,159,159,159,159,162,84,86,2,55,136,139,137,138,150,135,148,157,149,159,149,153,145,148,134,159,159,159,159,159,159,159,159,159,159,194,122,124,2,55,105,93,111,112,97,110,159,111,115,107,110,96,159,159,159,159,159,159,159,159,159,159,159,159,159,162,84,86,2,55,143,131,149,150,135,148,159,149,153,145,148,134,159,159,159,159,159,159,159,159,159,159,159,159,159,194,122,124,2,55,112,97,105,108,97,110,97,96,159,111,115,107,110,96,159,159,159,159,159,159,159,159,159,159,159,162,84,86,2,55,150,135,143,146,135,148,135,134,159,149,153,145,148,134,159,159,159,159,159,159,159,159,159,159,159,194,122,124,2,55,99,107,104,96,159,111,115,107,110,96,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,162,84,86,2,55,137,145,142,134,159,149,153,145,148,134,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,194,122,124,11,19,6]},{"1149777":[12,4,159,18,19]},{"1149783":[19,18,2,55,99,112,159,94,101,99,159,103,97,117,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,162,85,85,2,55,137,150,159,132,139,137,159,141,135,155,159,159,159,159,159,159,159,159,159,159,159,159,159,159,159,194,123,123,2,9,94,107,106,103,111,2,9,132,145,144,141,149,2,27,111,93,114,97,159,93,106,96,159,109,113,101,112,111,2,27,149,131,152,135,159,131,144,134,159,147,151,139,150,149,2,11,96,97,93,112,100,111,2,11,134,135,131,150,138,149,2,29,98,93,97,110,101,97,159,110,97,114,101,114,93,104,111,2,29,136,131,135,148,139,135,159,148,135,152,139,152,131,142,149,2,29,112,107,112,93,104,159,105,97,106,113,159,112,101,105,97,2,29,150,145,150,131,142,159,143,135,144,151,159,150,139,143,135,2,27,112,107,112,93,104,159,104,93,99,159,112,101,105,97,2,27,150,145,150,131,142,159,142,131,137,159,150,139,143,135,2,55,95,107,104,104,97,95,112,101,107,106,159,110,93,112,97,159,159,159,159,159,159,159,159,159,162,85,84,89,2,55,133,145,142,142,135,133,150,139,145,144,159,148,131,150,135,159,159,159,159,159,159,159,159,159,194,123,122,127,2,19,112,107,112,93,104,159,112,101,105,97,2,19,150,145,150,131,142,159,150,139,143,135,255]},{"1150093":[128,139,140,139,140,21,128,24,128,139,140,139,140,44,128,62,128,139,140,139,140,139,140,80,128,139,140,139,140,90,128,108,128,139,140,139,140,139,140,126,128,139,140,139,140,136,128,152,128,139,140,139,140,139,140,168,128,139,140,139,140,183,128,199,128,139,140,139,140,139,140,215,128,139,140,139,140,236,128,255,128,139,140,18,129,33,129,139,140,139,140,139,140,48,129,139,140,139,140,21,128,75,129,139,140,139,140,93,129,110,129,139,140,127,129,143,129,139,140,139,140,139,140,159,129,139,140,139,140,182,129,199,129,139,140,216,129,235,129,139,140,139,140,139,140,254,129,139,140,139,140,16,130,34,130,139,140,139,140,139,140,52,130,139,140,139,140,69,130,87,130,139,140,139,140,139,140,105,130,139,140,139,140,124,130,140,130,139,140,139,140,139,140,156,130,139,140,139,140,169,130,187,130,139,140,205,130,222,130,139,140,239,130,1,131,139,140,19,131,30,131,139,140,41,131,58,131,139,140,75,131,91,131,139,140,107,131,128,131,139,140,149,131,167,131,139,140,139,140,139,140,185,131,139,140,139,140,201,131,213,131,139,140,139,140,139,140,225,131,139,140,139,140,239,131,251,131,139,140,7,132,22,132,139,140,139,140,139,140,37,132,139,140,139,140,55,132,70,132,139,140,85,132,99,132,139,140,113,132,131,132,139,140,149,132,165,132,139,140,181,132,198,132,139,140,139,140,139,140,215,132,139,140,139,140,234,132,249,132,139,140,8,133,27,133,139,140,46,133,60,133,139,140,74,133,94,133,139,140,114,133,130,133,139,140,146,133,165,133,139,140,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,184,133,139,140,139,140,21,128,209,133,139,140,139,140,226,133]},{"1150521":[134,139,140,30,134,60,134,139,140,90,134,103,134,139,140,139,140,139,140,116,134,139,140,139,140,137,134,167,134,139,140,197,134,212,134,139,140,139,140,139,140,227,134,139,140,139,140,245,134,19,135,139,140,49,135,63,135,139,140,139,140,139,140,77,135,139,140,139,140,97,135,127,135,139,140,157,135,187,135,139,140,217,135,247,135,139,140,21,136,27,136,139,140,139,140,139,140,33,136,139,140,139,140,49,136,79,136,139,140,109,136,139,136,139,140,169,136,199,136,139,140,229,136,244,136,139,140,3,137,11,137,139,140,19,137,51,137,139,140,139,140,139,140,83,137,139,140,139,140,102,137,130,137,139,140,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,158,137,139,140,139,140,21,128,179,137,139,140,139,140,191,137,204,137,139,140,217,137,232,137,139,140,247,137,254,137,139,140,5,138,13,138,139,140,139,140,139,140,21,138,139,140,139,140,33,138,63,138,139,140,93,138,123,138,139,140,153,138,183,138,139,140,213,138,243,138,139,140,17,139,47,139,139,140,139,140,139,140,77,139,139,140,139,140,89,139,119,139,139,140,149,139,156,139,139,140,163,139,179,139,139,140,195,139,203,139,139,140,211,139,228,139,139,140,245,139,6,140,139,140,23,140,39,140,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,21,128,55,140,85,140,139,140,115,140,127,140]},{"1150884":[56]},{"1150886":[239,16,129,126,239,16]},{"1150902":[192]},{"1150904":[71,128,69,130]},{"1150916":[120]},{"1150918":[76,48,118,8,126]},{"1150932":[120]},{"1150934":[78,48,114,12,255]},{"1150948":[127]},{"1150950":[89,38,222,33,3,252]},{"1150964":[248]},{"1150966":[108,144,119,136,185,70]},{"1150980":[14]},{"1150982":[202,4,123,132,97,158]},{"1150996":[28]},{"1150998":[20,8,23,8,16,15]},{"1151012":[56]},{"1151014":[111,16,109,18,238,17]},{"1151028":[56]},{"1151030":[239,16,128,127,247,8]},{"1151044":[14]},{"1151046":[26,4,54,8,108,16]},{"1151058":[7]},{"1151060":[197,2,69,130,125,130,96,159]},{"1151078":[126]},{"1151080":[67,60,125,2]},{"1151092":[224]},{"1151094":[160,64,191,64,17,238]},{"1151106":[56]},{"1151108":[40,16,239,16,1,254,223,32]},{"1151124":[56]},{"1151126":[40,16,40,16,104,16,109,18,193,62,172,83,106,149,102,153,110,145,157,98,247]},{"1151148":[70,129,66,129,66,129,66,129,123,128,104,144,152,96,240]},{"1151164":[195,60,61,194,253,2,13,2,27,4,118,8,76,48,120]},{"1151180":[1,254,251,4,54,8,100,24,214,40,187,68,104,135,207]},{"1151196":[223,32,193,62,158,97,94,161,94,161,94,161,153,102,255]},{"1151212":[166,89,30,225,222,33,217,38,95,32,110,16,40,16,56]},{"1151228":[90,165,58,197,58,197,106,149,241,14,59,4,38,24,60]},{"1151244":[23,8,22,8,246,8,131,124,116,139,119,136,140,112,248]},{"1151260":[6,249,218,37,219,36,219,36,186,68,186,68,102,152,252]},{"1151276":[128,127,251,4,195,60,189,66,191,64,190,64,194,60,126]},{"1151292":[216,32,176,64,176,64,216,32,108,16,54,8,26,4,14]},{"1151308":[125,130,69,130,69,130,69,130,69,130,125,130,179,76,254]},{"1151324":[11,4,14]},{"1151332":[227]},{"1151334":[190,65,193,62,127]},{"1151340":[174,81,154,97,178,65,34,193,166,65,189,66,179,76,254]},{"1151356":[191,64,140,115,99,156,215,40,183,72,191,64,192,63,127]},{"1151372":[88,32,216,32,175,80,150,105,182,73,118,137,89,134,207]},{"1151396":[112]},{"1151398":[88,32,239,16]},{"1151403":[255]},{"1151412":[224]},{"1151414":[160,64,160,64,160,64]},{"1151426":[14]},{"1151428":[10,4,10,4,251,4]},{"1151435":[255]},{"1151444":[14]},{"1151446":[234,4,187,68,187,68]},{"1151460":[255]},{"1151462":[129,126,251,4,246,8]},{"1151472":[15]},{"1151474":[26,5,58,5,47,16,45,18,238,17]},{"1151488":[15]},{"1151490":[10,5,58,5,239,16,128,127,247,8]},{"1151504":[15]},{"1151506":[10,5,10,5,31]},{"1151512":[54,8,108,16]},{"1151524":[248]},{"1151526":[216,32,223,32,1,254]},{"1151540":[56]},{"1151542":[40,16,239,16]},{"1151547":[255]},{"1151560":[254]},{"1151562":[3,252]},{"1151574":[31]},{"1151576":[240,15,13,242]},{"1151588":[112]},{"1151590":[80,32,80,32,95,32]},{"1151600":[15]},{"1151602":[10,5,202,5,77,130,125,130,96,159]},{"1151616":[15]},{"1151618":[10,5,10,5,127]},{"1151624":[67,60,125,2]},{"1151632":[15]},{"1151634":[10,5,122,5,95,32,239,16]},{"1151643":[255,247,8,250,4,131,124,125,130,127,128,126,128,130,124,254]},{"1151660":[160,64,160,64,163,64,162,65,166,65,189,66,195,60,126]},{"1151676":[251,4,98,28,90,36,90,36,98,28,122,4,70,56,124]},{"1151692":[176,79,11,244,186,68,178,76,190,64,191,64,193,62,127]},{"1151708":[207,48]},{"1151711":[255,247,8,108,16,108,16,111,16,49,14,31]},{"1151724":[6,249,218,37,219,36,219,36,186,68,186,68,102,152,252]},{"1151740":[128,127,251,4,195,60,189,66,191,64,191,64,194,60,126]},{"1151756":[216,32,176,64,176,64,216,32,108,16,54,8,26,4,14]},{"1151772":[223,32,223,32,176,79,191,64,183,72,111,144,112,143,223]},{"1151788":[239,16,223,32,193,62,190,65,254,1,125,2,67,60,126]},{"1151804":[253,2,62,1,30,1,30,1,62,1,125,2,67,60,126]},{"1151820":[251,4,118,8,108,16,108,16,108,16,55,8,25,6,15]},{"1151836":[89,38,71,56,220,32,176,64,96,128,127,128,129,126,255]},{"1151852":[125,130,69,130,69,130,69,130,69,130,125,130,179,76,254]},{"1151868":[59,4,14]},{"1151876":[227]},{"1151878":[190,65,193,62,127]},{"1151884":[247,8,250,4,131,124,125,130,127,128,126,128,130,124,254]},{"1151908":[119]},{"1151910":[93,34,222,33,7,248]},{"1151924":[192]},{"1151926":[95,128,112,143,111,144]},{"1151940":[238]},{"1151942":[186,68,186,68,163,92]},{"1151956":[224]},{"1151958":[160,64,176,64,31,224]},{"1151974":[126]},{"1151976":[195,60,173,82]},{"1151984":[15]},{"1151986":[10,5,234,5,175,64,160,64,160,64]},{"1152000":[15]},{"1152002":[10,5,10,5,15]},{"1152008":[251,4]},{"1152011":[255]},{"1152016":[15]},{"1152018":[10,5,10,5,239]},{"1152024":[187,68,187,68]},{"1152036":[206]},{"1152038":[74,132,123,132,64,191]},{"1152052":[248]},{"1152054":[14,240,218,36,187,68]},{"1152068":[120]},{"1152070":[78,48,114,12,118,8]},{"1152086":[24]},{"1152088":[44,16,68,56]},{"1152100":[255]},{"1152102":[64,191,123,132,123,132]},{"1152112":[15]},{"1152114":[10,5,250,5,129,126,251,4,247,8]},{"1152128":[15]},{"1152130":[10,5,122,5,95,32,223,32,1,254]},{"1152144":[15]},{"1152146":[26,5,58,5,47,16,239,16]},{"1152155":[255,223,32,187,68,187,68,97,158,218,37,91,36,102,24,60]},{"1152172":[120,128,96,128,96,128,120,128,111,144,112,143,223]},{"1152188":[153,102,186,69,86,169,86,169,104,151,102,153,153,102,255]},{"1152204":[177,78,174,81,158,97,190,65,50,205,173,82,178,77,255]},{"1152220":[174,81,110,145,110,145,110,145,94,161,189,66,242,12,28]},{"1152236":[160,64,160,64,163,64,162,65,166,65,189,66,195,60,126]},{"1152252":[251,4,98,28,90,36,90,36,98,28,122,4,70,56,124]},{"1152268":[176,79,11,244,186,68,178,76,190,64,191,64,193,62,127]},{"1152284":[123,132,122,132,122,132,99,156,89,166,90,165,167,88,252]},{"1152300":[185,70,122,133,123,132,122,132,122,132,182,72,204,48,120]},{"1152316":[239,16,181,74,182,73,186,69,122,133,90,165,231,24,60]},{"1152332":[214,40,186,68,59,196,109,130,197,2,6,1,2,1,3]},{"1152348":[64,191,123,132,123,132,99,156,89,166,90,165,167,88,255]},{"1152364":[207,48]},{"1152367":[255,247,8,111,16,110,16,111,16,49,14,31]},{"1152380":[223,32,223,32,176,79,191,64,183,72,111,144,112,143,223]},{"1152396":[239,16,223,32,193,62,190,65,254,1,125,2,67,60,126]},{"1152420":[28]},{"1152422":[20,8,247,8,1,254]},{"1152436":[254]},{"1152438":[134,120,246,8,55,8]},{"1152452":[112]},{"1152454":[223,32,221,34,6,249]},{"1152468":[238]},{"1152470":[186,68,186,68,163,92]},{"1152484":[56]},{"1152486":[44,16,238,16,2,252]},{"1152496":[15]},{"1152498":[10,5,10,5,15]},{"1152504":[255]},{"1152506":[3,252]},{"1152512":[15]},{"1152514":[10,5,10,5,31]},{"1152520":[240,15,13,242]},{"1152528":[15]},{"1152530":[10,5,122,5,95,32,94,32,95,32]},{"1152548":[56]},{"1152550":[46,16,242,12,190,64]},{"1152564":[206]},{"1152566":[122,132,122,132,122,132]},{"1152580":[255]},{"1152582":[129,126,251,4,54,8]},{"1152596":[224]},{"1152598":[160,64,191,64,25,230]},{"1152612":[255]},{"1152614":[129,126,251,4,118,8]},{"1152624":[15]},{"1152626":[10,5,234,5,127,128,123,132,64,191]},{"1152640":[15]},{"1152642":[10,5,250,5,15,240,219,36,187,68]},{"1152656":[15]},{"1152658":[122,5,122,5,79,48,115,12,119,8,247,8,129,126,247,8,134,120,115,140,117,138,143,112,254]},{"1152684":[53,10,237,18,133,122,105,150,108,147,93,162,187,68,238]},{"1152700":[222,33,159,96,95,160,95,160,30,225,222,33,97,30,63]},{"1152716":[153,102,186,69,90,165,86,169,102,153,110,145,157,98,255]},{"1152732":[238,16,238,16,3,252,222,33,222,33,222,33,97,30,63]},{"1152748":[253,2,6,1,6,1,6,1,6,1,125,2,67,60,126]},{"1152764":[251,4,54,8,44,16,44,16,44,16,55,8,25,6,15]},{"1152780":[89,38,71,56,220,32,176,64,112,128,127,128,129,126,255]},{"1152796":[191,64,177,78,174,81,158,97,190,65,253,2,67,60,126]},{"1152812":[122,132,58,196,122,132,250,4,118,8,118,8,76,48,120]},{"1152828":[110,16,195,60,189,66,254,1,206,49,181,74,195,60,126]},{"1152844":[181,74,173,82,157,98,189,66,61,194,188,67,189,66,231]},{"1152860":[110,16,195,60,189,66,230,1,6,1,61,2,35,28,62]},{"1152876":[123,132,123,132,123,132,99,156,89,166,90,165,167,88,252]},{"1152892":[185,70,122,133,123,132,123,132,123,132,182,72,204,48,120]},{"1152908":[239,16,181,74,182,73,186,69,122,133,90,165,231,24,60]},{"1152928":[15]},{"1152930":[10,5,10,5,63]},{"1152936":[108,16,68,56]},{"1152944":[15]},{"1152946":[10,5,250,5,64,191,123,132,123,132]},{"1152960":[15]},{"1152962":[8,7,202,5,124,131,123,132,64,191]},{"1152976":[15]},{"1152978":[8,7,250,5,12,243,219,36,187,68]},{"1152992":[15]},{"1152994":[8,7,122,5,76,51,115,12,55,8]},{"1153008":[15]},{"1153010":[8,7,10,5,60,3,111,16,70,56]},{"1153024":[15]},{"1153026":[8,7,250,5,64,191,123,132,123,132]},{"1153048":[252]},{"1153050":[182,72]},{"1153064":[28]},{"1153066":[246,8]},{"1153080":[28]},{"1153082":[23,8]},{"1153098":[126]},{"1153112":[112]},{"1153114":[220,32]},{"1153130":[220]},{"1153144":[240]},{"1153146":[152,96]},{"1153158":[112]},{"1153160":[92,32,100,24]},{"1153176":[124]},{"1153178":[214,40,214,40,186,68,59,196,109,130,197,2,2,1,2,1,3]},{"1153196":[64,191,123,132,123,132,99,156,89,166,90,165,167,88,255]},{"1153212":[123,132,123,132,123,132,99,156,89,166,90,165,167,88,255]},{"1153228":[185,70,122,133,123,132,123,132,123,132,182,72,204,48,120]},{"1153244":[239,16,181,74,182,73,186,69,122,133,90,165,231,24,60]},{"1153260":[214,40,186,68,59,196,125,130,205,2,6,1,2,1,3]},{"1153276":[64,191,123,132,123,132,99,156,89,166,90,165,167,88,255]},{"1153292":[163,92,21,234,189,66,218,36,94,32,104,16,56]},{"1153308":[99,156,85,170,53,202,101,154,243,12,46,16,56]},{"1153324":[17,14,247,8,135,120,115,140,117,138,143,112,248]},{"1153340":[195,60,61,194,253,2,29,2,59,4,38,24,60]},{"1153356":[132,120,220,32,134,120,90,164,82,172,106,148,150,104,252]},{"1153372":[118,136,122,132,122,132,122,132,126,128,188,64,200,48,120]},{"1153388":[236,16,198,56,58,196,250,4,250,4,230,24,156,96,112]},{"1153404":[254]},{"1153406":[98,156,154,100,246,8,238,16,215,40,57,198,239]},{"1153420":[10,244,222,32,195,60,157,98,93,162,93,162,147,108,254]},{"1153444":[255]},{"1153447":[255,254,1,62,1]},{"1153458":[3]},{"1153460":[6,1,13,2,27,4,118,8]},{"1153474":[28]},{"1153476":[20,8,247,8]},{"1153481":[255,126,129]},{"1153492":[255]},{"1153494":[1,254,239,16,40,16]},{"1153506":[14]},{"1153508":[10,4,10,4,251,4]},{"1153515":[255]},{"1153522":[56]},{"1153524":[40,16,40,16,239,16]},{"1153531":[255]},{"1153542":[254]},{"1153544":[130,124,250,4]},{"1153558":[255]},{"1153561":[255,254,1]},{"1153570":[28]},{"1153572":[20,8,20,8,247,8]},{"1153579":[255]},{"1153586":[56]},{"1153588":[40,16,40,16,239,16,1,254]},{"1153602":[56]},{"1153604":[40,16,111,16,64,63,222,33]},{"1153618":[224]},{"1153620":[160,64,191,64,128,127,187,68]},{"1153638":[255]},{"1153641":[255,254,1]},{"1153652":[255]},{"1153655":[255,126,129,66,129]},{"1153668":[255]},{"1153671":[255,254,1,2,1]},{"1153684":[224]},{"1153686":[48,192,208,32,115]},{"1153692":[45,18,43,20,46,16,108,16,88,32,208,32,176,64,224]},{"1153708":[202,52,58,196,234,4,10,4,10,4,10,4,10,4,14]},{"1153724":[126,129,70,129,198,1,5,2,13,2,59,4,38,24,60]},{"1153740":[40,16,40,16,40,16,40,16,40,16,239,16,1,254,255]},{"1153756":[251,4,18,12,50,12,42,20,218,36,58,196,234,4,14]},{"1153772":[238,17,45,18,43,20,46,16,40,16,40,16,40,16,56]},{"1153788":[26,4,26,4,26,4,26,4,26,4,251,4]},{"1153801":[255,255]},{"1153804":[6,1,254,1,128,127,254,1,6,1,254,1]},{"1153817":[255,255]},{"1153820":[238,17,110,17,110,17,94,33,222,33,189,66,105,134,207]},{"1153836":[239,16,239,16]},{"1153841":[255,247,8,20,8,20,8,20,8,28]},{"1153852":[190,65,102,129,197,2,13,2,59,4,230,24,156,96,120]},{"1153868":[122,132,74,132,202,4,26,4,22,8,116,8,76,48,120]},{"1153884":[2,1,2,1,2,1,2,1,2,1,254,1]},{"1153897":[255,255]},{"1153900":[66,129,194,1,6,1,5,2,13,2,59,4,38,24,60]},{"1153916":[254,1,128,127,126,1,5,2,13,2,123,4,70,56,124]},{"1153932":[2,1,2,1,6,1,13,2,25,6,243,12,14,240,248]},{"1153954":[119]},{"1153956":[93,34,93,34,221,34]},{"1153963":[255]},{"1153972":[224]},{"1153974":[48,192,208,32,243]},{"1153988":[255]},{"1153990":[1,254,253,2,13,2]},{"1154004":[112]},{"1154006":[80,32,80,32,223,32]},{"1154022":[195]},{"1154024":[98,129,162,65]},{"1154032":[15]},{"1154034":[10,5,26,5,23,8,247,8]},{"1154043":[255]},{"1154048":[15]},{"1154050":[58,5,42,21,47,16,239,16,1,254]},{"1154064":[15]},{"1154066":[58,5,42,21,111,16,64,63,222,33]},{"1154082":[56]},{"1154084":[40,16,111,16,64,63,222,33]},{"1154100":[15]},{"1154102":[249,6,135,120,247,8]},{"1154116":[251]},{"1154118":[110,145,110,145,182,73]},{"1154132":[255]},{"1154134":[129,126,255]},{"1154138":[255]},{"1154146":[56]},{"1154148":[40,16,40,16,40,16,40,16]},{"1154160":[15]},{"1154162":[234,5,186,69,191,64,128,127,187,68]},{"1154176":[15]},{"1154178":[10,5,10,5,255]},{"1154185":[255,254,1]},{"1154192":[15]},{"1154194":[122,5,90,37,93,34,221,34]},{"1154203":[255,221,34,93,34,93,34,125,2,61,2,59,4,38,24,60]},{"1154220":[54,193,214,33,253,2,29,2,251,4,230,24,28,224,248]},{"1154236":[11,4,26,4,22,8,51,12,109,18,222,33,50,193,227]},{"1154253":[255,222,33,93,34,91,36,95,32,95,32,96,31,63]},{"1154268":[178,65,214,33,117,2,13,2,59,4,230,24,156,96,240]},{"1154284":[238,17,110,17,110,17,94,33,222,33,189,66,121,134,207]},{"1154300":[239,16,239,16]},{"1154305":[255,247,8,54,8,54,8,54,8,28]},{"1154316":[190,65,102,129,197,2,13,2,59,4,230,24,156,96,240]},{"1154332":[190,65,102,153,249,6,13,2,59,4,230,24,156,96,248]},{"1154348":[247,8]},{"1154351":[255,247,8,54,8,54,8,236,16,152,96,240]},{"1154364":[182,73,126,1,5,2,13,2,27,4,118,8,76,48,120]},{"1154381":[255,247,8,54,8,52,8,44,16,104,16,88,32,112]},{"1154396":[46,16,35,28,44,19,47,16,40,16,40,16,40,16,56]},{"1154412":[122,132,74,132,202,4,26,4,22,8,116,8,76,48,120]},{"1154428":[2,1,2,1,2,1,2,1,2,1,254,1]},{"1154441":[255,255]},{"1154444":[221,34,93,34,93,34,125,2,13,2,59,4,38,24,60]},{"1154466":[28]},{"1154468":[20,8,20,8,247,8]},{"1154475":[255]},{"1154484":[255]},{"1154486":[129,126,255]},{"1154500":[255]},{"1154503":[255,254,1,126,1]},{"1154514":[28]},{"1154516":[20,8,247,8]},{"1154521":[255,254,1]},{"1154532":[7]},{"1154534":[5,2,5,2,5,2]},{"1154544":[15]},{"1154546":[10,5,234,5,63,192,208,32,243]},{"1154560":[15]},{"1154562":[10,5,250,5,1,254,253,2,29,2]},{"1154576":[15]},{"1154578":[10,5,122,5,95,32,95,32,223,32]},{"1154596":[126]},{"1154598":[90,36,91,36,93,34]},{"1154612":[192]},{"1154614":[67,128,78,129,121,134]},{"1154628":[255]},{"1154631":[255,254,1,2,1]},{"1154646":[56]},{"1154648":[108,16,68,56]},{"1154658":[28]},{"1154660":[20,8,247,8]},{"1154665":[255,247,8]},{"1154672":[15]},{"1154674":[10,5,10,5,207]},{"1154680":[102,129,166,65]},{"1154688":[15]},{"1154690":[58,5,42,21,111,16,64,63,222,33]},{"1154704":[15]},{"1154706":[10,5,10,5,251,4,134,120,246,8,247,8,54,8,54,8,54,8,108,16,236,16,152,96,240]},{"1154740":[255]},{"1154743":[255,255]},{"1154748":[126,1,77,50,117,10,123,4,245,10,206,49,63,192,240]},{"1154764":[61,2,59,4,243,12,197,58,54,201,247,8,20,8,28]},{"1154780":[5,2,13,2,11,4,26,4,54,8,236,16,152,96,240]},{"1154796":[50,193,214,33,53,2,13,2,59,4,230,24,28,224,248]},{"1154812":[27,4,27,4,55,8,51,12,109,18,222,33,50,193,227]},{"1154829":[255,222,33,221,34,219,36,223,32,223,32,96,31,63]},{"1154844":[213,34,181,66,165,66,166,65,162,65,98,129,66,129,195]},{"1154860":[103,152,28,224,112,128,64,128,64,128,127,128,128,127,255]},{"1154876":[2,1,6,1,5,2,13,2,59,4,230,24,156,96,240]},{"1154892":[214,40,186,68,43,196,109,130,197,2,2,1,2,1,3]},{"1154908":[247,8,181,74,182,73,182,73,118,137,247,8,20,8,28]},{"1154924":[182,65,214,33,125,2,29,2,59,4,230,24,156,96,248]},{"1154940":[190,65,102,153,249,6,61,2,59,4,230,24,156,96,240]},{"1154956":[247,8]},{"1154959":[255,247,8,52,8,52,8,236,16,152,96,240]},{"1154982":[255]},{"1154985":[255,254,1]},{"1154996":[248]},{"1154998":[30,224,227,28,124,3]},{"1155012":[28]},{"1155014":[20,8,52,8,44,16]},{"1155028":[7]},{"1155030":[5,2,5,2,125,2]},{"1155044":[255]},{"1155046":[129,126,239,16,110,16]},{"1155056":[15]},{"1155058":[10,5,250,5,111,144,110,145,182,73]},{"1155072":[15]},{"1155074":[10,5,250,5,129,126,255]},{"1155082":[255]},{"1155088":[15]},{"1155090":[58,5,42,21,47,16,44,16,44,16]},{"1155106":[255]},{"1155108":[129,126,255]},{"1155112":[255]},{"1155115":[255]},{"1155122":[227]},{"1155124":[162,65,162,65,162,65,162,65]},{"1155140":[124]},{"1155142":[84,40,84,40,84,40]},{"1155156":[224]},{"1155158":[160,64,160,64,160,64]},{"1155174":[255]},{"1155177":[255,126,129]},{"1155184":[15]},{"1155186":[10,5,122,5,95,32,91,36,93,34]},{"1155200":[15]},{"1155202":[10,5,202,5,79,128,78,129,121,134]},{"1155216":[15]},{"1155218":[10,5,10,5,255]},{"1155225":[255,254,1,6,1,5,2,125,2,75,52,118,8,27,4,13,2,7]},{"1155244":[255]},{"1155246":[143,112,241,14,255]},{"1155252":[31,224,227,28,60,3,7]},{"1155260":[104,16,88,32,215,32,181,66,189,66]},{"1155271":[255,254,1,3]},{"1155276":[77,50,115,12,25,6,26,5,55,8,236,16,152,96,240]},{"1155292":[239,16]},{"1155295":[255,239,16,108,16,108,16,111,16,48,15,31]},{"1155308":[182,73,254,1,13,2,13,2,59,4,118,8,76,48,120]},{"1155325":[255,247,8,20,8,52,8,44,16,104,16,88,32,112]},{"1155340":[46,16,35,28,44,19,47,16,40,16,40,16,40,16,56]},{"1155356":[254,1,6,1,5,2,29,2,115,12,78,48,124]},{"1155372":[162,65,162,65,166,65,229,2,13,2,59,4,38,24,28]},{"1155388":[84,40,87,40,86,41,214,41,181,74,181,74,115,140,222]},{"1155404":[163,64,162,65,166,65,165,66,189,66,179,76,142,112,252]},{"1155420":[66,129,66,129,66,129,66,129,66,129,126,129]},{"1155433":[255,255]},{"1155436":[213,34,181,66,165,66,166,65,162,65,98,129,66,129,195]},{"1155452":[103,152,28,224,112,128,64,128,64,128,127,128,128,127,255]},{"1155468":[2,1,6,1,5,2,13,2,59,4,230,24,156,96,240]},{"1155488":[15]},{"1155490":[10,5,10,5,63]},{"1155496":[108,16,68,56]},{"1155504":[15]},{"1155506":[10,5,26,5,247,8]},{"1155513":[255,247,8]},{"1155520":[15]},{"1155522":[8,7,122,5,92,35,91,36,93,34]},{"1155536":[15]},{"1155538":[8,7,202,5,72,135,79,128,121,134]},{"1155552":[15]},{"1155554":[8,7,250,5]},{"1155559":[255,254,1,6,1]},{"1155568":[15]},{"1155570":[8,7,26,5,56,7,111,16,68,56]},{"1155584":[15]},{"1155586":[8,7,26,5,244,11]},{"1155593":[255,247,8]},{"1155606":[112]},{"1155608":[80,32,94,32]},{"1155624":[252]},{"1155626":[132,120]},{"1155640":[252]},{"1155642":[4,248]},{"1155656":[254]},{"1155658":[90,164]},{"1155672":[254]},{"1155674":[2,252]},{"1155686":[14]},{"1155688":[10,4,26,4]},{"1155702":[56]},{"1155704":[40,16,238,16]},{"1155720":[254]},{"1155722":[2,252]},{"1155734":[28]},{"1155736":[246,8,2,252,214,40,186,68,43,196,109,130,197,2,6,1,2,1,3]},{"1155756":[247,8,181,74,182,73,182,73,118,137,215,8,21,8,28]},{"1155772":[221,34,189,66,189,66,190,65,166,65,102,129,102,129,195]},{"1155788":[103,152,28,224,112,128,64,128,64,128,127,128,128,127,255]},{"1155804":[6,1,6,1,5,2,13,2,59,4,230,24,156,96,248]},{"1155820":[214,40,186,68,43,196,109,130,197,2,6,1,2,1,3]},{"1155836":[247,8,181,74,182,73,182,73,118,137,215,8,20,8,28]},{"1155852":[194,60,26,228,214,40,92,32,88,32,80,32,112]},{"1155868":[244,8,20,8,20,8,20,8,247,8,1,254,255]},{"1155884":[244,8,244,8,4,248,244,8,244,8,4,248,252]},{"1155900":[90,164,90,164,246,8,244,8,236,16,152,96,240]},{"1155916":[250,4,250,4,218,36,214,40,220,32,56,192,224]},{"1155932":[118,8,204,48,40,208,232,16,40,16,40,16,56]},{"1155948":[2,252,122,132,122,132,250,4,118,8,76,48,120]},{"1155964":[238,16,108,16,108,16,108,16,238,16,2,252,254]},{"1155980":[246,8,52,8,100,24,212,40,180,72,116,136,220]},{"1156002":[126]},{"1156004":[195,60,153,102,153,102,153,102]},{"1156018":[60]},{"1156020":[100,24,68,56,68,56,100,24]},{"1156034":[124]},{"1156036":[194,60,153,102,153,102,153,102]},{"1156050":[126]},{"1156052":[195,60,153,102,153,102,153,102]},{"1156066":[30]},{"1156068":[18,12,34,28,98,28,66,60]},{"1156082":[255]},{"1156084":[129,126,159,96,152,96,158,96]},{"1156098":[126]},{"1156100":[195,60,153,102,153,102,159,96]},{"1156114":[255]},{"1156116":[129,126,153,102,153,102,249,6]},{"1156130":[126]},{"1156132":[195,60,153,102,153,102,153,102]},{"1156146":[126]},{"1156148":[195,60,153,102,153,102,153,102]},{"1156162":[60]},{"1156164":[66,60,153,102,153,102,153,102]},{"1156178":[252]},{"1156180":[130,124,153,102,153,102,153,102]},{"1156194":[126]},{"1156196":[195,60,153,102,153,102,153,102]},{"1156210":[254]},{"1156212":[131,124,153,102,153,102,153,102]},{"1156226":[255]},{"1156228":[129,126,159,96,144,96,144,96]},{"1156242":[255]},{"1156244":[129,126,159,96,144,96,144,96,153,102,153,102,153,102,153,102,153,102,153,102,195,60,126]},{"1156268":[36,24,36,24,36,24,36,24,36,24,102,24,66,60,126]},{"1156284":[233,6,25,6,51,12,102,24,204,48,159,96,129,126,255]},{"1156300":[249,6,35,28,249,6,153,102,153,102,153,102,195,60,126]},{"1156316":[210,44,146,108,146,108,147,108,129,126,115,12,18,12,30]},{"1156332":[131,124,153,102,249,6,249,6,153,102,153,102,195,60,126]},{"1156348":[131,124,153,102,153,102,153,102,153,102,153,102,195,60,126]},{"1156364":[51,12,38,24,36,24,36,24,36,24,36,24,36,24,60]},{"1156380":[153,102,195,60,153,102,153,102,153,102,153,102,195,60,126]},{"1156396":[153,102,153,102,193,62,249,6,153,102,153,102,195,60,126]},{"1156412":[153,102,129,126,153,102,153,102,153,102,153,102,153,102,255]},{"1156428":[153,102,131,124,153,102,153,102,153,102,153,102,130,124,252]},{"1156444":[159,96,156,96,159,96,153,102,153,102,153,102,195,60,126]},{"1156460":[153,102,153,102,153,102,153,102,153,102,153,102,131,124,254]},{"1156476":[158,96,130,124,158,96,144,96,144,96,159,96,129,126,255]},{"1156492":[158,96,130,124,158,96,144,96,144,96,144,96,144,96,240]},{"1156514":[126]},{"1156516":[195,60,153,102,153,102,153,102]},{"1156530":[255]},{"1156532":[153,102,153,102,153,102,153,102]},{"1156546":[126]},{"1156548":[66,60,102,24,36,24,36,24]},{"1156562":[15]},{"1156564":[9,6,9,6,9,6,9,6]},{"1156578":[255]},{"1156580":[153,102,153,102,147,108,146,108]},{"1156594":[240]},{"1156596":[144,96,144,96,144,96,144,96]},{"1156610":[247]},{"1156612":[157,98,137,118,129,126,149,106]},{"1156626":[255]},{"1156628":[153,102,153,102,153,102,137,118]},{"1156642":[126]},{"1156644":[195,60,153,102,153,102,153,102]},{"1156658":[254]},{"1156660":[131,124,153,102,153,102,153,102]},{"1156674":[126]},{"1156676":[195,60,153,102,153,102,153,102]},{"1156690":[254]},{"1156692":[131,124,153,102,153,102,153,102]},{"1156706":[126]},{"1156708":[195,60,153,102,153,102,159,96]},{"1156722":[255]},{"1156724":[129,126,231,24,36,24,36,24]},{"1156738":[255]},{"1156740":[153,102,153,102,153,102,153,102]},{"1156754":[247]},{"1156756":[149,98,149,98,149,98,149,98,159,96,159,96,145,110,153,102,153,102,153,102,193,62,127]},{"1156780":[153,102,129,126,153,102,153,102,153,102,153,102,153,102,255]},{"1156796":[36,24,36,24,36,24,36,24,36,24,102,24,66,60,126]},{"1156812":[9,6,9,6,9,6,249,6,153,102,153,102,195,60,124]},{"1156828":[134,120,134,120,134,120,146,108,147,108,153,102,153,102,255]},{"1156844":[144,96,144,96,144,96,144,96,144,96,159,96,129,126,255]},{"1156860":[149,106,149,106,157,98,157,98,157,98,157,98,157,98,255]},{"1156876":[137,118,129,126,145,110,145,110,153,102,153,102,153,102,255]},{"1156892":[153,102,153,102,153,102,153,102,153,102,153,102,195,60,126]},{"1156908":[153,102,131,124,158,96,144,96,144,96,144,96,144,96,240]},{"1156924":[153,102,153,102,153,102,157,98,155,100,157,98,194,61,127]},{"1156940":[153,102,131,124,153,102,153,102,153,102,153,102,153,102,255]},{"1156956":[158,96,195,60,121,6,249,6,153,102,153,102,195,60,126]},{"1156972":[36,24,36,24,36,24,36,24,36,24,36,24,36,24,60]},{"1156988":[153,102,153,102,153,102,153,102,153,102,153,102,195,60,126]},{"1157004":[157,98,203,52,74,52,74,52,74,52,36,24,36,24,60]},{"1157026":[255]},{"1157028":[149,106,149,106,149,106,149,106]},{"1157042":[247]},{"1157044":[149,98,157,98,203,52,74,52]},{"1157058":[247]},{"1157060":[149,98,149,98,157,98,203,52]},{"1157074":[255]},{"1157076":[129,126,249,6,19,12,18,12]},{"1157088":[255]},{"1157091":[255,126,129,64,191,95,160,80,160]},{"1157112":[15]},{"1157114":[8,7]},{"1157120":[255]},{"1157122":[129,126,60,195,60,195,60,195,249,6]},{"1157136":[30]},{"1157138":[18,12,18,12,18,12,18,12,18,12]},{"1157184":[3]},{"1157186":[6,1,12,3,24,7,49,14,97,30]},{"1157200":[192]},{"1157202":[96,128,48,192,24,224,140,112,134,120]},{"1157258":[248]},{"1157276":[149,106,149,106,149,106,149,106,129,126,195,60,106,20,126]},{"1157292":[102,24,36,24,38,24,82,44,211,44,185,70,185,70,239]},{"1157308":[74,52,102,24,36,24,36,24,36,24,36,24,36,24,60]},{"1157324":[50,12,38,24,36,24,100,24,76,48,207,48,129,126,255]},{"1157340":[80,160,80,160,16,224,240]},{"1157356":[10,5,10,5,10,5,250,5,2,253,126,129]},{"1157369":[255,255]},{"1157372":[51,12,38,24,36,24,36,24,60]},{"1157382":[36,24,36,24,60]},{"1157388":[18,12,18,12,18,12,30]},{"1157396":[30]},{"1157398":[18,12,18,12,30]},{"1157410":[192]},{"1157412":[96,128,32,192,160,64,224]},{"1157422":[255]},{"1157425":[255,255]},{"1157436":[192,63,192,63,97,30,49,14,24,7,12,3,6,1,3]},{"1157452":[3,252,3,252,134,120,140,112,24,224,48,192,96,128,192]},{"1157488":[240]},{"1157490":[152,96,104,144,104,144,152,96,240]},{"1157500":[143,112,102,153,241,14,31]},{"1157516":[60,60,102,126,219,255,153,255,153,255,129,255,153,255,255,255]},{"1157568":[7]},{"1157570":[25,6,34,29,68,59,72,55,185,70]},{"1157584":[192]},{"1157586":[32,192,16,224,240]},{"1157592":[248]},{"1157594":[248]},{"1157664":[120]},{"1157666":[72,48,72,48,104,16,88,32,112]},{"1157686":[120,120,72,120,72,120]},{"1157744":[247]},{"1157746":[24,231,151,96,151,96,168,87,183,72]},{"1157760":[60]},{"1157762":[102,24,90,36,90,36,90,36,231,24]},{"1157776":[3]},{"1157778":[118,1,220,35,137,118,35,220,118,136,254,254,131,255,153,255,131,255,153,255,153,255,131,255,254,254,126,126,195,255,153,255,159,255,159,255,153,255,195,255,126,126,171,84,171,84,167,88,54,201,18,237,248,7,30,1,7]},{"1157836":[120,128,80,160,120,128,8,240,120,128,32,192,192]},{"1157850":[128]},{"1157852":[252,252,134,254,155,255,153,255,153,255,155,255,134,254,252,252,255,255,129,255,159,255,130,254,158,254,159,255,129,255,255,255,255,255,129,255,159,255,130,254,158,254,144,240,144,240,240,240,126,126,195,255,153,255,159,255,145,255,153,255,193,255,127,127]},{"1157932":[104,120,88,120,112,112]},{"1157954":[255,255,129,255,255,255]},{"1157972":[120,120,72,120,72,120,120,120]},{"1157984":[30,30,18,30,18,30,30,30]},{"1157996":[194,60,109,18,54,9,40,23,43,20,42,20,66,60,60]},{"1158012":[126,129,129,126,126,129,229,24,36,24,36,24,36,24,60]},{"1158028":[207]},{"1158030":[118,1,220,35,137,118,35,220,118,136,220]},{"1158068":[126]},{"1158070":[90,36,219,36,129,126]},{"1158082":[15]},{"1158084":[9,6,25,6,17,14,51,12]},{"1158102":[60]},{"1158104":[36,24,36,24]},{"1158112":[127]},{"1158114":[73,54,73,54,109,18,91,36,118]},{"1158136":[60]},{"1158138":[102,24]},{"1158146":[3]},{"1158148":[2,1,6,1,4,3,12,3]},{"1158162":[128]},{"1158164":[128]},{"1158166":[192]},{"1158168":[64,128,96,128]},{"1158176":[56]},{"1158178":[68,56,187,124,124,255,127,255,127,255]},{"1158192":[128]},{"1158194":[64,128,160,192,208,224,208,224,208,224]},{"1158208":[56]},{"1158210":[68,56,187,124,124,255,127,255,127,255]},{"1158224":[128]},{"1158226":[64,128,160,192,208,224,208,224,208,224]},{"1158308":[60]},{"1158310":[36,24,36,24,60]},{"1158316":[219,36,90,36,219,36,129,126,219,36,90,36,126]},{"1158332":[34,28,102,24,68,56,204,48,136,112,152,96,144,96,240]},{"1158348":[60]},{"1158352":[60]},{"1158354":[36,24,36,24,60]},{"1158380":[66,60,66,60,102,24,60]},{"1158396":[8,7,24,7,16,15,48,15,32,31,96,31,64,63,127]},{"1158412":[32,192,48,192,16,224,24,224,8,240,12,240,4,248,252]},{"1158428":[126,255,190,127,94,63,46,31,22,15,10,7,4,3,3]},{"1158444":[16,224,160,64,64,128,128]},{"1158460":[127,255,191,127,95,63,47,31,23,15,11,7,4,3,3]},{"1158476":[208,224,160,192,64,128,128]},{"1158492":[255,255,153,255,153,255,129,255,153,255,153,255,153,255,255,255,126,126,66,126,102,126,36,60,36,60,102,126,66,126,126,126,63,63,33,63,51,63,18,30,242,254,146,254,198,254,124,124,255,255,153,255,147,255,134,254,134,254,147,255,153,255,255,255]},{"1158812":[240,240,144,240,144,240,144,240,144,240,159,255,129,255,255,255,247,247,157,255,137,255,129,255,149,255,157,255,149,247,247,247,247,247,157,255,141,255,133,255,145,255,153,255,157,255,247,247,126,126,195,255,153,255,153,255,153,255,153,255,195,255,126,126,254,254,131,255,153,255,153,255,131,255,158,254,144,240,240,240,126,126,195,255,153,255,153,255,129,255,155,255,193,255,127,127,254,254,131,255,153,255,153,255,131,255,147,255,153,255,255,255,126,126,194,254,158,254,195,255,249,255,153,255,195,255,126,126,255,255,129,255,231,255,36,60,36,60,36,60,36,60,60,60,255,255,153,255,153,255,153,255,153,255,153,255,195,255,126,126,255,255,153,255,153,255,153,255,219,255,66,126,102,126,60,60,255,255,149,255,149,255,149,255,149,255,129,255,235,255,60,60,247,247,157,255,139,255,198,254,99,127,209,255,185,255,239,239,255,255,153,255,153,255,195,255,102,126,36,60,36,60,60,60,255,255,129,255,241,255,99,127,198,254,143,255,129,255,255,255]},{"1159068":[169]},{"1159070":[35,133,125,169,140,140,133,124,183,124,133,124,160]},{"1159085":[107]},{"1159088":[9]},{"1159090":[99]},{"1159092":[231,3,15,39,255,255,1]},{"1159100":[3]},{"1159102":[7]},{"1159104":[15]},{"1159106":[31]},{"1159108":[63]},{"1159110":[127]},{"1159112":[255]},{"1159114":[255,1,255,3,255,7,255,15,255,31,255,63,255,127,72,72,169]},{"1159133":[143,3,80,127,143,5,80,127,143,6,80,127,104,201,16,39,144,21,72,226,32,175,3,80,127,26,143,3,80,127,194,32,104,56,233,16,39,128,230,201,232,3,144,21,72,226,32,175,4,80,127,26,143,4,80,127,194,32,104,56,233,232,3,128,230,201,100]},{"1159201":[144,21,72,226,32,175,5,80,127,26,143,5,80,127,194,32,104,56,233,100]},{"1159222":[128,230,201,10]},{"1159227":[144,21,72,226,32,175,6,80,127,26,143,6,80,127,194,32,104,56,233,10]},{"1159248":[128,230,201,1]},{"1159253":[144,21,72,226,32,175,7,80,127,26,143,7,80,127,194,32,104,56,233,1]},{"1159274":[128,230,104,107,152,41,15]},{"1159282":[72,152,74,74,74,74,168,24,165,181,208,5,104,105,64,61,96,104,105,80,61,96,160]},{"1159307":[185,128,181,100,181,201,255,255,240,27,235,41,255,1,197,202,240,17,26,230,181,197,202,240,10,200,200,200,200,200,200,200,200,128,221,56,96,24,96,139,75,171,32,136,176,176,3,130,233]},{"1159357":[185,128,181,74,41,3]},{"1159364":[201]},{"1159367":[240,3,130,220]},{"1159372":[185,128,181,74,74,74,41,31]},{"1159381":[24,101,200,235,157,2,16,169,7]},{"1159391":[235,157,4,16,218,165,181,208,5,169,64,61,128,3,169,80,61,133,179,185,133,181,133,183,185,134,181,133,184,167,183,133,186,185,130,181,41,15]},{"1159430":[240,9,170,165,186,74,202,208,252,133,186,185,130,181,74,74,74,41,30]},{"1159450":[170,191,184,175,35,37,186,133,186,185,131,181,74,74,74,74,74,41,7]},{"1159470":[240,12,10,170,191,174,175,35,197,186,176,2,133,186,165,186,34,216,175,35,250,100,120,175,4,80,127,41,255]},{"1159500":[197,120,208,5,173,61,136,128,5,198,120,24,101,179,157,6,16,232,232,175,5,80,127,41,255]},{"1159526":[197,120,208,5,173,61,136,128,5,198,120,24,101,179,157,6,16,232,232,175,6,80,127,41,255]},{"1159552":[197,120,208,5,173,61,136,128,5,198,120,24,101,179,157,6,16,232,232,175,7,80,127,41,255]},{"1159578":[24,101,179,157,6,16,232,232,232,232,232,232,171,107,185,128,181,74,74,74,41,31]},{"1159601":[24,101,200,235,157,2,16,169,21]},{"1159611":[235,157,4,16,218,185,133,181,133,183,185,134,181,133,184,167,183,133,186,230,183,230,183,167,183,133,188,201,198]},{"1159641":[176,88,100,114,165,186,56,233,192,75,133,179,165,188,233,3]},{"1159658":[144,10,133,188,165,179,133,186,230,114,128,231,100,116,165,186,56,233,16,14,133,179,165,188,233]},{"1159685":[144,10,133,188,165,179,133,186,230,116,128,231,100,118,165,186,56,233,60]},{"1159705":[133,179,165,188,233]},{"1159712":[144,10,133,188,165,179,133,186,230,118,128,231,165,114,201,100]},{"1159729":[144,14,169,99]},{"1159734":[133,114,169,59]},{"1159739":[133,116,133,118,133,186,165,181,208,5,169,64,61,128,3,169,80,61,133,179,250,165,114,34,216,175,35,175,6,80,127,41,255]},{"1159773":[24,101,179,157,6,16,232,232,175,7,80,127,41,255]},{"1159788":[24,101,179,157,6,16,232,232,169,131]},{"1159799":[24,101,179,157,6,16,232,232,165,116,34,216,175,35,175,6,80,127,41,255]},{"1159820":[24,101,179,157,6,16,232,232,175,7,80,127,41,255]},{"1159835":[24,101,179,157,6,16,232,232,169,131]},{"1159846":[24,101,179,157,6,16,232,232,165,118,34,216,175,35,175,6,80,127,41,255]},{"1159867":[24,101,179,157,6,16,232,232,175,7,80,127,41,255]},{"1159882":[24,101,179,157,6,16,232,232,169,128]},{"1159893":[24,101,179,157,6,16,232,232,165,186,34,216,175,35,175,6,80,127,41,255]},{"1159914":[24,101,179,157,6,16,232,232,175,7,80,127,41,255]},{"1159929":[24,101,179,157,6,16,232,232,232,232,232,232,130,158,254,165,200,24,105]},{"1159950":[235,157,2,16,169,5]},{"1159957":[235,169]},{"1159960":[5,157,4,16,100,181,165,202,168,41,1]},{"1159972":[240,3,136,230,181,32,110,176,72,32,110,176,72,32,110,176,157,6,16,232,232,104,157,6,16,232,232,104,157,6,16,232,232,232,232,232,232,96,169,2,141,1,33,169,128,141,21,33,169,35,133,2,194,48,169]},{"1160028":[112,141,22,33,169,156,143,133]},{"1160037":[162,255,15,167]},{"1160042":[141,24,33,230]},{"1160047":[230]},{"1160049":[202,16,244,226,48,107,168,139,75,171,185,128,179,171,107,159,57,176,57,177,57,180,57,181,57,182,57,183,57,220,57,221,57,222,57,223,57,240,57,241,57,242,57,243,57,244,57,245,57,246,57,247,57,248,57,249,57,250,57,251,57,252,57,253,57,254,57,159,45,176,45,177,45,180,45,181,45,182,45,183,45,220,45,221,45,222,45,223,45,240,45,241,45,242,45,243,45,244,45,245,45,246,45,247,45,248,45,249,45,250,45,251,45,252,45,253,45,254,45,169,45,185,45,186,45,187,45,159,41,176,41,177,41,180,41,181,41,182,41,183,41,220,41,221,41,222,41,223,41,240,41,241,41,242,41,243,41,244,41,245,41,246,41,247,41,248,41,249,41,250,41,251,41,252,41,253,41,254,41,188,41,64,61,65,61,66,61,67,61,68,61,69,61,70,61,71,61,72,61,73,61,74,61,75,61,76,61,77,61,78,61,79,61,96,61,97,61,98,61,99,61,100,61,101,61,102,61,103,61,104,61,105,61,106,61,107,61,108,61,109,61,110,61,111,61,128,61,129,61,130,61,131,61,168,61,135,61,80,61,81,61,82,61,83,61,84,61,85,61,86,61,87,61,88,61,89,61,90,61,91,61,92,61,93,61,94,61,95,61,112,61,113,61,114,61,115,61,116,61,117,61,118,61,119,61,120,61,121,61,122,61,123,61,124,61,125,61,126,61,127,61,144,61,145,61,146,61,147,61,184,61,151,61,136,61,192,61,193,61,194,61,195,61,136,61,134,61,137,61,196,61,137,61,197,61,198,61,199,61,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,208,61,209,61,210,61,211,61,152,61,150,61,153,189,212,61,153,61,213,61,214,61,215,61,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,155,63]},{"1160579":[128]},{"1160581":[88,244,126,155,66]},{"1160587":[128]},{"1160589":[92,244,126,155,69]},{"1160595":[128]},{"1160597":[96,244,126,155,72]},{"1160603":[128]},{"1160605":[100,244,126,185,80,68,64]},{"1160613":[82,244,126,185,83,68,64]},{"1160621":[37,244,126,185,86,64,64]},{"1160629":[37,244,126,185,89,68,64]},{"1160637":[38,244,126,185,92,64,64]},{"1160645":[38,244,126,185,100,80,64]},{"1160653":[42,244,126,209,103,128,96]},{"1160661":[32,244,126,209,106,128,64]},{"1160669":[45,244,126,209,109,128,64]},{"1160677":[73,244,126,209,112,128,96]},{"1160685":[83,244,126,155,115,8,128]},{"1160693":[68,244,126,155,118]},{"1160699":[128]},{"1160701":[56,80,127,177,131,128,96]},{"1160709":[35,244,126,155,134]},{"1160715":[128]},{"1160717":[62,244,126,255,255]},{"1179648":[175,50,128,48,240,1,107,169,1,143,197,243,126,107,175,50,128,48,240,49,175,197,243,126,201,2,176,41,169,2,143,197,243,126,175,198,243,126,9,20,143,198,243,126,175,200,243,126,201,5,240,2,169,1,143,200,243,126,175,155,242,126,9,32,143,155,242,126,107,107,165,246,41,48,240,103,235,175,75,128,48,240,96,173,2,2,240,91,175,19,130,48,240,10,175,17,130,48,41,2,208,2,128,75,218,235,201,48,208,5,174,2,2,128,26,137,16,240,11,32,184,128,165,242,137,32,208,13,128,36,32,242,128,165,242,137,16,208,2,128,25,224,2,240,14,224,1,240,10,224,5,240,6,224,13,240,2,128,7,142,2,2,34,38,173,160,169,32,141,47,1,142,2,2,34,127,219,13,250,165,246,41,64,107,173,2,2,170,224,15,208,4,162]},{"1179842":[128,9,224,16,208,28,175,79,243,126,170,224,4,240,15,232,191,91,243,126,240,245,138,143,79,243,126,162,16,96,162,17,128,7,224,20,208,2,162]},{"1179882":[232,34,134,252,160,240,203,96,173,2,2,170,224,17,208,4,162,5,128,9,224,16,208,28,175,79,243,126,170,224,1,240,15,202,191,91,243,126,240,245,138,143,79,243,126,162,16,96,162,15,128,7,224,1,208,2,162,21,202,34,134,252,160,240,203,96,90,218,187,191]},{"1179953":[149,48,250,157,8,16,122,107,90,218,187,191]},{"1179966":[149,48,41,255]},{"1179971":[250,122,107]},{"1343488":[107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107,107]},{"1540096":[144,43,128,183,162,225,201,79,28,185,230,32,88,103,101,166,17,207,121,76,199,97,209,212,211,155,120,59,251,170,163,21,124,54,215,139,11,173,38,181,59,105,227,131,127,17,226,146,128,103,225,156,207,213,69,245,107,54,182,122,26,57,132,19,71,236,216,174,87,158,244,11,97,187,141,10,77,98,142,34,227,114,197,113,247,153,11,16,177,19,82,94,120,67,116,143,55,105,7,154,37,14,48,106,3,158,142,15,119,146,56,51,137,93,51,179,1,161,191,105,141,151,39,108,76,155,168,24,153,126,178,219,167,68,39,168,165,188,245,170,238,46,202,161,254,193,254,73,173,59,202,66,243,108,217,113,25,3,123,227,169,134,108,208,162,43,251,25,217,219,71,136,122,32,31,213,62,199,63,127,135,212,144,156,209,235,249,120,17,47,185,155,119,1,128,223,57,23,35,155,98,227,166,83,60,220,249,201,52,204,61,71,47,158,28,37,238,132,158,69,184,36,1,170,227,178,181,147,5,161,8,9,56,25,214,247,166,44,245,29,77,231,59,45,27,188,134,64,216,235,117,242,139,234,140,212,183,241,166,179,99,107,130,146,218,145,93,51,253,102,50,146,200,42,194,16,131,73,27,185,48,120,170,214,2,170,146,33,230,4]},{"1540387":[240,238,64,63,94,110,23,136,169,167,112,206,202,226,65,161,34,7,36,247,200,224,86,80,224,133,246,98,129,67,225,183,107,126,158,14,34,45,243,86,73,115,204,178,67,27,89,64,94,118,169,213,246,134,48,242,46,64,225,119,216,41,243,184,63,195,132,25,229,141,113,140,32,169,116,43,59,48,58,131,225,184,61,251,72,239,125,69,219,119,182,106,224,187,88,85,180,197,106,162,54,174,194,173,175,102,130,171,249,15,217,88,149,101,152,220,153,71,226,113,205,111,162,249,93,43,191,103,106,232,147,56,23,192,122,216,116,19,45,148,123,101,81,109,254,5,250,30,179,60,202,4,222,231]},{"1540542":[151,126,164,77,47,114,162,79,143,169,63,102,56,32,61,212,170,165,119,171,243,200,190,54,240,175,20,87,3,57,31,219,169,240,40,5,31,230,40,181,210,118,26,164,186,124,191,127,176,40,39,145,211,52,67,71,170,93,3,119,244,131,207,55,85,8,79,141,109,163,10,107,53,226,201,118,208,65,196,73,75,171,63,214,126,4,219,253,24,129,140,23,92,62,52,23,116,19,242,252,14,58,239,226,214,118,8,99,3,39,200,9,69,193,134,107,50,247,243,56,57,128,255,131,226,117,111,137,136,166,115,119,243,36,233,30,225,178,224,24,243,143,216,34,203,234,142,242,30,194,133,68,40,54,200,154,180,122,160,154,18,217,151,55,29,167,87,161,247,39,171,141,171,84,78,52,148,153,130,157,249,29,40,228,114,206,213,115,217,170,241,235,124,138,10,85,228,189,132,54,4,78,231,157,64,105,15,219,226,227,6,8,126,19,91,118,166,68,214,121,132,42,16,112,55,207,8,254,225,117,248,26,74,100,151,213,127,226,252,202,239,186,255,43,179,20,204,112,62,154,51,219,53,105,53,155,224,182,146,65,147,192,93,180,131,212,15,12,215,246,101,237,47,18,118,194,218,212,67,187,128,231,17,169,70,124,193,102,32,23,117,197,9,112,69,23,156,67,102,233,78,76,2,223,78,61,3,236,73,210,146,24,223,246,83,103,156,177,75,148,120,46,248,249,74,16,233,192,184,141,168,226,68,179,62,78,99,198,74,242,95,50,53,212,28,71,56,155,219,168,241,75,17,156,99,158,114,32,173,29,68,69,234,179,160,176,138,148,184,9,53,59,139,96,47,197,70,237,208,51,141,151,37,205,192,222,116,178,241,8,236,90,104,234,60,98,70,233,126,132,255,115,54,124,133,62,154,181,206,188,87,120,83,82,10,60,136,160,228,66,172,232,62,93,236,130,250,111,168,211,201,102,154,221,245,93,234,115,57,6,53,12,115,243,220,108,224,156,234,15,168,216,93,240,139,106,228,37,186,12,12,229,119,2,153,178,105,167,236,217,75,255,238,236,226,10,22,48,211,149,171,247,26,61,247,215,6,121,176,110,87,62,185,199,182,102,5,149,153,207,1,108,98,244,132,212,112,59,224,86,102,164,188,28,143,218,59,151,25,235,64,193,195,250,177,23,93,138,36,222,61,119,85,218,159,153,123,68,114,104,67,51,114,130,168,9,246,196,211,159]},{"1541093":[63,247,66,174,232,46,160,187,48,55,94,226,231,16,35,51,9,237,162]},{"1541113":[112,204,35,248,130,224,246]},{"1572864":[23,23,23,23,23,23,23]},{"1572880":[70,70,29,41,13,78,16,15]},{"1572896":[15]},{"1572898":[1,2,160]},{"1572902":[160]},{"1572904":[3,1,2]},{"1572915":[32,10,30,10]},{"1572920":[1,1]},{"1572936":[8]},{"1572949":[64,64,64,64,64]},{"1572955":[64,64]},{"1572960":[34]},{"1572964":[107,34]},{"1572969":[107,34]},{"1572974":[107]},{"1572977":[121]},{"1572979":[110]},{"1572981":[111]},{"1572983":[109,105,124,105,108,105,127]},{"1572996":[160,128]},{"1573008":[4,71,3,71,2,71,4,71]},{"1573024":[1,1,1,1]},{"1573120":[178,216,216,216,216,216,216,216,216,217,217,217,217,217,218,218,218,218,218,219,219,219,219,219,220,220,220,220,220,221,221,221,221,221,222,222,222,222,222,223,223,223,223,223,224,224,224,224,224,225,225,225,225,225,226,226,226,226,226,227,227,227,227,227,23,23,23,23,23,23,23,23,23,23,20]},{"1573200":[62,62,62,62,62,62,62,62,62,62]},{"1573216":[36,36,36]},{"1573221":[14,40]},{"1573224":[8,1]},{"1573227":[4,2,1,4,8,16,1]},{"1573235":[1]},{"1573238":[5]},{"1573240":[10]},{"1573376":[80,70]},{"1573380":[176,185,255,255]},{"1573396":[1]},{"1573633":[192]},{"1573635":[174]},{"1573637":[216]},{"1573639":[187]},{"1573641":[174]},{"1573643":[255]},{"1573645":[184]},{"1573647":[190]},{"1573649":[189]},{"1573651":[255]},{"1573653":[184]},{"1573655":[175,117]},{"1573658":[192]},{"1573660":[174]},{"1573662":[174]},{"1573664":[189]},{"1573666":[170]},{"1573668":[171]},{"1573670":[178]},{"1573672":[193]},{"1573674":[205]},{"1573676":[255]},{"1573678":[189]},{"1573680":[184,118]},{"1573683":[189]},{"1573685":[177]},{"1573687":[174]},{"1573689":[255]},{"1573691":[188]},{"1573693":[189]},{"1573695":[184]},{"1573697":[187]},{"1573699":[174]},{"1573701":[199,127,127]},{"1573888":[116,117]},{"1573891":[255]},{"1573893":[255]},{"1573895":[255]},{"1573897":[255]},{"1573899":[255]},{"1573901":[176]},{"1573903":[255]},{"1573905":[176,127]},{"1574145":[192]},{"1574147":[174]},{"1574149":[216]},{"1574151":[187]},{"1574153":[174]},{"1574155":[255]},{"1574157":[184]},{"1574159":[190]},{"1574161":[189]},{"1574163":[255]},{"1574165":[184]},{"1574167":[175,117]},{"1574170":[192]},{"1574172":[174]},{"1574174":[174]},{"1574176":[189]},{"1574178":[170]},{"1574180":[171]},{"1574182":[178]},{"1574184":[193]},{"1574186":[205]},{"1574188":[255]},{"1574190":[189]},{"1574192":[184,118]},{"1574195":[189]},{"1574197":[177]},{"1574199":[174]},{"1574201":[255]},{"1574203":[188]},{"1574205":[189]},{"1574207":[184]},{"1574209":[187]},{"1574211":[174]},{"1574213":[199,127,127]},{"1574401":[192]},{"1574403":[174]},{"1574405":[216]},{"1574407":[187]},{"1574409":[174]},{"1574411":[255]},{"1574413":[184]},{"1574415":[190]},{"1574417":[189]},{"1574419":[255]},{"1574421":[184]},{"1574423":[175,117]},{"1574426":[192]},{"1574428":[174]},{"1574430":[174]},{"1574432":[189]},{"1574434":[170]},{"1574436":[171]},{"1574438":[178]},{"1574440":[193]},{"1574442":[205]},{"1574444":[255]},{"1574446":[189]},{"1574448":[184,118]},{"1574451":[189]},{"1574453":[177]},{"1574455":[174]},{"1574457":[255]},{"1574459":[188]},{"1574461":[189]},{"1574463":[184]},{"1574465":[187]},{"1574467":[174]},{"1574469":[199,127,127]},{"1574657":[194]},{"1574659":[184]},{"1574661":[190]},{"1574663":[216]},{"1574665":[187]},{"1574667":[174]},{"1574669":[255]},{"1574671":[176]},{"1574673":[184]},{"1574675":[178]},{"1574677":[183]},{"1574679":[176,117]},{"1574682":[189]},{"1574684":[184]},{"1574686":[255]},{"1574688":[177]},{"1574690":[170]},{"1574692":[191]},{"1574694":[174]},{"1574696":[255]},{"1574698":[170]},{"1574700":[255]},{"1574702":[191]},{"1574704":[174]},{"1574706":[187]},{"1574708":[194,118]},{"1574711":[171]},{"1574713":[170]},{"1574715":[173]},{"1574717":[255]},{"1574719":[189]},{"1574721":[178]},{"1574723":[182]},{"1574725":[174]},{"1574727":[205,127,127]},{"1574912":[117]},{"1574914":[206]},{"1574916":[166]},{"1574918":[169]},{"1574920":[255]},{"1574922":[171]},{"1574924":[181]},{"1574926":[170]},{"1574928":[195]},{"1574930":[174]},{"1574932":[255]},{"1574934":[178]},{"1574936":[189]},{"1574938":[199]},{"1574940":[206,127,127]},{"1575169":[177]},{"1575171":[174]},{"1575173":[194]},{"1575175":[199,118]},{"1575178":[181]},{"1575180":[178]},{"1575182":[188]},{"1575184":[189]},{"1575186":[174]},{"1575188":[183]},{"1575190":[199,127,127]},{"1575424":[116]},{"1575426":[192]},{"1575428":[170]},{"1575430":[183]},{"1575432":[189]},{"1575434":[255]},{"1575436":[188]},{"1575438":[184]},{"1575440":[182]},{"1575442":[174]},{"1575444":[189]},{"1575446":[177]},{"1575448":[178]},{"1575450":[183]},{"1575452":[176,117]},{"1575455":[175]},{"1575457":[184]},{"1575459":[187]},{"1575461":[255]},{"1575463":[175]},{"1575465":[187]},{"1575467":[174]},{"1575469":[174]},{"1575471":[198]},{"1575473":[255]},{"1575475":[189]},{"1575477":[174]},{"1575479":[181]},{"1575481":[181,118]},{"1575484":[194]},{"1575486":[184]},{"1575488":[190]},{"1575490":[255]},{"1575492":[192]},{"1575494":[177]},{"1575496":[170]},{"1575498":[189]},{"1575500":[204,126,115,118]},{"1575505":[171]},{"1575507":[187]},{"1575509":[178]},{"1575511":[183]},{"1575513":[176]},{"1575515":[255]},{"1575517":[182]},{"1575519":[174]},{"1575521":[255]},{"1575523":[189]},{"1575525":[177]},{"1575527":[174,115,118]},{"1575531":[176]},{"1575533":[187]},{"1575535":[174]},{"1575537":[174]},{"1575539":[183]},{"1575541":[255]},{"1575543":[185]},{"1575545":[174]},{"1575547":[183]},{"1575549":[173]},{"1575551":[170]},{"1575553":[183]},{"1575555":[189]},{"1575557":[205,127,127]},{"1575680":[116]},{"1575682":[178]},{"1575684":[255]},{"1575686":[170]},{"1575688":[181]},{"1575690":[187]},{"1575692":[174]},{"1575694":[170]},{"1575696":[173]},{"1575698":[194]},{"1575700":[255]},{"1575702":[176]},{"1575704":[170]},{"1575706":[191]},{"1575708":[174,117]},{"1575711":[194]},{"1575713":[184]},{"1575715":[190]},{"1575717":[255]},{"1575719":[170]},{"1575721":[181]},{"1575723":[181]},{"1575725":[255]},{"1575727":[178]},{"1575729":[255]},{"1575731":[177]},{"1575733":[170]},{"1575735":[191]},{"1575737":[174,118]},{"1575740":[192]},{"1575742":[177]},{"1575744":[194]},{"1575746":[255]},{"1575748":[173]},{"1575750":[184]},{"1575752":[183]},{"1575754":[216]},{"1575756":[189]},{"1575758":[255]},{"1575760":[194]},{"1575762":[184]},{"1575764":[190,126,115,118]},{"1575769":[176]},{"1575771":[184]},{"1575773":[255]},{"1575775":[171]},{"1575777":[184]},{"1575779":[189]},{"1575781":[177]},{"1575783":[174]},{"1575785":[187,115,118]},{"1575789":[188]},{"1575791":[184]},{"1575793":[182]},{"1575795":[174]},{"1575797":[184]},{"1575799":[183]},{"1575801":[174]},{"1575803":[255]},{"1575805":[174]},{"1575807":[181]},{"1575809":[188]},{"1575811":[174]},{"1575813":[198,127,127]},{"1575936":[116]},{"1575938":[178]},{"1575940":[175]},{"1575942":[255]},{"1575944":[194]},{"1575946":[184]},{"1575948":[190]},{"1575950":[255]},{"1575952":[177]},{"1575954":[170]},{"1575956":[191]},{"1575958":[174]},{"1575960":[183]},{"1575962":[216]},{"1575964":[189,117]},{"1575967":[175]},{"1575969":[184]},{"1575971":[190]},{"1575973":[183]},{"1575975":[173]},{"1575977":[255]},{"1575979":[186]},{"1575981":[190]},{"1575983":[170]},{"1575985":[180]},{"1575987":[174,118]},{"1575990":[194]},{"1575992":[174]},{"1575994":[189]},{"1575996":[204,126,115,118]},{"1576001":[178]},{"1576003":[189]},{"1576005":[216]},{"1576007":[188]},{"1576009":[255]},{"1576011":[183]},{"1576013":[184]},{"1576015":[189]},{"1576017":[255]},{"1576019":[194]},{"1576021":[184]},{"1576023":[190]},{"1576025":[187,115,118]},{"1576029":[175]},{"1576031":[170]},{"1576033":[190]},{"1576035":[181]},{"1576037":[189]},{"1576039":[205,127,127]},{"1576192":[116]},{"1576194":[185]},{"1576196":[181]},{"1576198":[174]},{"1576200":[170]},{"1576202":[188]},{"1576204":[174]},{"1576206":[255]},{"1576208":[173]},{"1576210":[174]},{"1576212":[181]},{"1576214":[178]},{"1576216":[191]},{"1576218":[174]},{"1576220":[187,117]},{"1576223":[189]},{"1576225":[177]},{"1576227":[178]},{"1576229":[188]},{"1576231":[255]},{"1576233":[171]},{"1576235":[178]},{"1576237":[176]},{"1576239":[255]},{"1576241":[171]},{"1576243":[184]},{"1576245":[182]},{"1576247":[171,118]},{"1576250":[189]},{"1576252":[184]},{"1576254":[255]},{"1576256":[182]},{"1576258":[194]},{"1576260":[255]},{"1576262":[175]},{"1576264":[170]},{"1576266":[178]},{"1576268":[187]},{"1576270":[194,126,115,118]},{"1576275":[175]},{"1576277":[187]},{"1576279":[178]},{"1576281":[174]},{"1576283":[183]},{"1576285":[173]},{"1576287":[255]},{"1576289":[178]},{"1576291":[183]},{"1576293":[255]},{"1576295":[189]},{"1576297":[177]},{"1576299":[174,115,118]},{"1576303":[185]},{"1576305":[194]},{"1576307":[187]},{"1576309":[170]},{"1576311":[182]},{"1576313":[178]},{"1576315":[173]},{"1576317":[198,127,127]},{"1576448":[116]},{"1576450":[171]},{"1576452":[187]},{"1576454":[178]},{"1576456":[183]},{"1576458":[176]},{"1576460":[255]},{"1576462":[182]},{"1576464":[174]},{"1576466":[255]},{"1576468":[189]},{"1576470":[177]},{"1576472":[174,117]},{"1576475":[165]},{"1576477":[189]},{"1576479":[177]},{"1576481":[255]},{"1576483":[170]},{"1576485":[183]},{"1576487":[173]},{"1576489":[255]},{"1576491":[166]},{"1576493":[189]},{"1576495":[177,118]},{"1576498":[172]},{"1576500":[187]},{"1576502":[194]},{"1576504":[188]},{"1576506":[189]},{"1576508":[170]},{"1576510":[181]},{"1576512":[188]},{"1576514":[255]},{"1576516":[188]},{"1576518":[184]},{"1576520":[255]},{"1576522":[178,126,115,118]},{"1576527":[172]},{"1576529":[170]},{"1576531":[183]},{"1576533":[255]},{"1576535":[182]},{"1576537":[170]},{"1576539":[180]},{"1576541":[174]},{"1576543":[255]},{"1576545":[170]},{"1576547":[255]},{"1576549":[171]},{"1576551":[178]},{"1576553":[176,115,118]},{"1576557":[171]},{"1576559":[184]},{"1576561":[182]},{"1576563":[171]},{"1576565":[199,127,127]},{"1576704":[116]},{"1576706":[171]},{"1576708":[187]},{"1576710":[178]},{"1576712":[183]},{"1576714":[176]},{"1576716":[255]},{"1576718":[182]},{"1576720":[174]},{"1576722":[255]},{"1576724":[189]},{"1576726":[177]},{"1576728":[174,117]},{"1576731":[165]},{"1576733":[189]},{"1576735":[177]},{"1576737":[255]},{"1576739":[170]},{"1576741":[183]},{"1576743":[173]},{"1576745":[255]},{"1576747":[166]},{"1576749":[189]},{"1576751":[177,118]},{"1576754":[172]},{"1576756":[187]},{"1576758":[194]},{"1576760":[188]},{"1576762":[189]},{"1576764":[170]},{"1576766":[181]},{"1576768":[188]},{"1576770":[255]},{"1576772":[188]},{"1576774":[184]},{"1576776":[255]},{"1576778":[178,126,115,118]},{"1576783":[172]},{"1576785":[170]},{"1576787":[183]},{"1576789":[255]},{"1576791":[182]},{"1576793":[170]},{"1576795":[180]},{"1576797":[174]},{"1576799":[255]},{"1576801":[170]},{"1576803":[255]},{"1576805":[171]},{"1576807":[178]},{"1576809":[176,115,118]},{"1576813":[171]},{"1576815":[184]},{"1576817":[182]},{"1576819":[171]},{"1576821":[199,127,127]},{"1576960":[116]},{"1576962":[185]},{"1576964":[181]},{"1576966":[174]},{"1576968":[170]},{"1576970":[188]},{"1576972":[174]},{"1576974":[255]},{"1576976":[173]},{"1576978":[174]},{"1576980":[181]},{"1576982":[178]},{"1576984":[191]},{"1576986":[174]},{"1576988":[187,117]},{"1576991":[189]},{"1576993":[177]},{"1576995":[178]},{"1576997":[188]},{"1576999":[255]},{"1577001":[171]},{"1577003":[178]},{"1577005":[176]},{"1577007":[255]},{"1577009":[171]},{"1577011":[184]},{"1577013":[182]},{"1577015":[171,118]},{"1577018":[189]},{"1577020":[184]},{"1577022":[255]},{"1577024":[182]},{"1577026":[194]},{"1577028":[255]},{"1577030":[175]},{"1577032":[170]},{"1577034":[178]},{"1577036":[187]},{"1577038":[194,126,115,118]},{"1577043":[175]},{"1577045":[187]},{"1577047":[178]},{"1577049":[174]},{"1577051":[183]},{"1577053":[173]},{"1577055":[255]},{"1577057":[178]},{"1577059":[183]},{"1577061":[255]},{"1577063":[189]},{"1577065":[177]},{"1577067":[174,115,118]},{"1577071":[185]},{"1577073":[194]},{"1577075":[187]},{"1577077":[170]},{"1577079":[182]},{"1577081":[178]},{"1577083":[173]},{"1577085":[198,127,127]},{"1577216":[116]},{"1577218":[171]},{"1577220":[187]},{"1577222":[178]},{"1577224":[183]},{"1577226":[176]},{"1577228":[255]},{"1577230":[182]},{"1577232":[174]},{"1577234":[255]},{"1577236":[189]},{"1577238":[177]},{"1577240":[174,117]},{"1577243":[165]},{"1577245":[189]},{"1577247":[177]},{"1577249":[255]},{"1577251":[170]},{"1577253":[183]},{"1577255":[173]},{"1577257":[255]},{"1577259":[166]},{"1577261":[189]},{"1577263":[177,118]},{"1577266":[172]},{"1577268":[187]},{"1577270":[194]},{"1577272":[188]},{"1577274":[189]},{"1577276":[170]},{"1577278":[181]},{"1577280":[188]},{"1577282":[255]},{"1577284":[188]},{"1577286":[184]},{"1577288":[255]},{"1577290":[178,126,115,118]},{"1577295":[172]},{"1577297":[170]},{"1577299":[183]},{"1577301":[255]},{"1577303":[182]},{"1577305":[170]},{"1577307":[180]},{"1577309":[174]},{"1577311":[255]},{"1577313":[170]},{"1577315":[255]},{"1577317":[171]},{"1577319":[178]},{"1577321":[176,115,118]},{"1577325":[171]},{"1577327":[184]},{"1577329":[182]},{"1577331":[171]},{"1577333":[199,127,127]},{"1577472":[116]},{"1577474":[185]},{"1577476":[181]},{"1577478":[174]},{"1577480":[170]},{"1577482":[188]},{"1577484":[174]},{"1577486":[255]},{"1577488":[173]},{"1577490":[174]},{"1577492":[181]},{"1577494":[178]},{"1577496":[191]},{"1577498":[174]},{"1577500":[187,117]},{"1577503":[189]},{"1577505":[177]},{"1577507":[178]},{"1577509":[188]},{"1577511":[255]},{"1577513":[171]},{"1577515":[178]},{"1577517":[176]},{"1577519":[255]},{"1577521":[171]},{"1577523":[184]},{"1577525":[182]},{"1577527":[171,118]},{"1577530":[189]},{"1577532":[184]},{"1577534":[255]},{"1577536":[182]},{"1577538":[194]},{"1577540":[255]},{"1577542":[175]},{"1577544":[170]},{"1577546":[178]},{"1577548":[187]},{"1577550":[194,126,115,118]},{"1577555":[175]},{"1577557":[187]},{"1577559":[178]},{"1577561":[174]},{"1577563":[183]},{"1577565":[173]},{"1577567":[255]},{"1577569":[178]},{"1577571":[183]},{"1577573":[255]},{"1577575":[189]},{"1577577":[177]},{"1577579":[174,115,118]},{"1577583":[185]},{"1577585":[194]},{"1577587":[187]},{"1577589":[170]},{"1577591":[182]},{"1577593":[178]},{"1577595":[173]},{"1577597":[198,127,127]},{"1578240":[98,101]},{"1578243":[43,45,33,30,159,43,30,45,46,43,39,159,40,31,159,45,33,30,159,36,34,39,32,98,233]},{"1578269":[25,100,117,110,113,104,97,159,95,93,111,112,104,97,99,9]},{"1578286":[25,138,155,148,151,142,135,159,133,131,149,150,142,135,98,104]},{"1578303":[31,45,33,30,159,37,40,50,26,37,159,41,43,34,30,44,45,98,235]},{"1578323":[17,111,93,106,95,112,113,93,110,117,99,11]},{"1578336":[17,149,131,144,133,150,151,131,148,155,98,79]},{"1578349":[1,52,98,101]},{"1578354":[45,44,26,33,26,44,43,26,37,26,33,53,44,159,33,40,38,30,28,40,38,34,39,32,98,233]},{"1578381":[25,103,93,103,93,110,101,103,107,159,112,107,115,106,99,9]},{"1578398":[25,141,131,141,131,148,139,141,145,159,150,145,153,144,98,100]},{"1578415":[47,47,46,37,45,46,43,30,44,159,43,46,37,30,159,45,33,30,159,29,30,44,30,43,45,98,233]},{"1578443":[25,96,97,111,97,110,112,159,108,93,104,93,95,97,99,9]},{"1578460":[25,134,135,149,135,148,150,159,146,131,142,131,133,135,98,100]},{"1578477":[47,45,33,30,159,27,46,37,37,50,159,38,26,36,30,44,159,26,159,31,43,34,30,39,29,98,233]},{"1578505":[27,105,107,113,106,112,93,101,106,159,112,107,115,97,110,99,9]},{"1578523":[27,143,145,151,144,150,131,139,144,159,150,145,153,135,148,98,102]},{"1578541":[37,50,40,46,43,159,46,39,28,37,30,159,43,30,28,40,47,30,43,44,98,235]},{"1578564":[19,117,107,113,110,159,100,107,113,111,97,99,11]},{"1578578":[19,155,145,151,148,159,138,145,151,149,135,98,102]},{"1578592":[39,31,34,39,32,30,43,159,48,30,27,44,159,31,40,43,159,44,26,37,30,98,232]},{"1578616":[31,118,107,110,93,119,111,159,115,93,112,97,110,98,93,104,104,99,8]},{"1578636":[31,156,145,148,131,157,149,159,153,131,150,135,148,136,131,142,142,98,100]},{"1578656":[45,45,33,30,159,48,34,45,28,33,159,26,39,29,159,26,44,44,34,44,45,26,39,45,98,235]},{"1578683":[19,105,93,99,101,95,159,111,100,107,108,99,11]},{"1578697":[19,143,131,137,139,133,159,149,138,145,146,98,104]},{"1578711":[31,45,48,34,39,159,37,46,38,27,30,43,35,26,28,36,44,98,233]},{"1578731":[27,115,107,107,96,111,105,97,106,119,111,159,100,113,112,99,9]},{"1578749":[27,153,145,145,134,149,143,135,144,157,149,159,138,151,150,98,100]},{"1578767":[45,40,28,26,43,34,39,26,159,27,40,50,159,41,37,26,50,44,159,26,32,26,34,39,98,233]},{"1578794":[25,100,93,113,106,112,97,96,159,99,110,107,114,97,99,9]},{"1578811":[25,138,131,151,144,150,135,134,159,137,148,145,152,135,98,100]},{"1578828":[45,47,30,39,46,44,55,159,42,46,30,30,39,159,40,31,159,31,26,30,43,34,30,44,98,234]},{"1578855":[23,115,101,111,100,101,106,99,159,115,97,104,104,99,10]},{"1578871":[23,153,139,149,138,139,144,137,159,153,135,142,142,98,100]},{"1578887":[45,45,33,30,159,29,48,26,43,47,30,39,159,44,48,40,43,29,44,38,34,45,33,44,98,236]},{"1578914":[15,111,105,101,112,100,97,110,117,99,12]},{"1578926":[15,149,143,139,150,138,135,148,155,98,102]},{"1578938":[39,45,33,30,159,27,46,32,54,28,26,45,28,33,34,39,32,159,36,34,29,98,233]},{"1578962":[25,103,93,103,93,110,101,103,107,159,112,107,115,106,99,9]},{"1578979":[25,141,131,141,131,148,139,141,145,159,150,145,153,144,98,72]},{"1578996":[31,45,33,30,159,37,40,44,45,159,40,37,29,159,38,26,39,98,233]},{"1579016":[27,96,97,93,112,100,159,105,107,113,106,112,93,101,106,99,9]},{"1579034":[27,134,135,131,150,138,159,143,145,151,144,150,131,139,144,98,104]},{"1579052":[31,45,33,30,159,31,40,43,30,44,45,159,45,33,34,30,31,98,235]},{"1579072":[19,104,107,111,112,159,115,107,107,96,111,99,11]},{"1579086":[19,142,145,149,150,159,153,145,145,134,149,98,102]},{"1579100":[39,26,39,29,159,45,33,30,159,38,26,44,45,30,43,159,44,48,40,43,29,98,168]},{"1579124":[29,74,67,60,60,71,74,159,56,62,56,64,69,82,82,82,98,236]},{"1579143":[15,98,107,110,97,114,97,110,120,99,12]},{"1579155":[15,136,145,148,135,152,135,148,158]},{"1581056":[8,9,10,11,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,4,49,54,64,70,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,4,22,8]},{"1581336":[204,5,212,5,182,11,134,11]},{"1581434":[232,13,152,11,206,20]},{"1581442":[80,28,255,255,102,20]},{"1581450":[182,26,152,11,182,26,14,4,12,156,48,21,152,10]},{"1581476":[22,8,232,13]},{"1581488":[172,9]},{"1581510":[26,4]},{"1581514":[30,9,172,9]},{"1581544":[168,10,170,7]},{"1581572":[170,1,36,129,190,135,88,129]},{"1581640":[190,130]},{"1585196":[24,24]},{"1585199":[255]},{"1585209":[248]},{"1589248":[18,1,53,255,255,255,255,255]},{"1591296":[255,255,255,255,255,255,255,255,1,255]},{"1591309":[67,160]},{"1591312":[2,15,1,96]},{"1591317":[3,193,3,255,18,1,88]},{"1591325":[2,227,6,2,15,1,87]},{"1591333":[3,160,9,3,15,1,96]},{"1591341":[3,160,12,4,15,1,111]},{"1591349":[3,160,15,5,255]},{"1591357":[3,160,18,6,31,1,70]},{"1591365":[3,160,21,255,18,1,88]},{"1591373":[3,160,24]},{"1591424":[1,46,150]},{"1591429":[255]},{"1591432":[1,175,80]},{"1591437":[255]},{"1591440":[1,49,50]},{"1591445":[255]},{"1591448":[2,46,150]},{"1591453":[255]},{"1591456":[2,175,80]},{"1591461":[255]},{"1591464":[2,49,50]},{"1591469":[255]},{"1591472":[255,46,150]},{"1591477":[255]},{"1591480":[255,48,44,1]},{"1591485":[255]},{"1591488":[255,49,50]},{"1591493":[255]},{"1591496":[255,255,255,255,255,255,255,255]},{"1593345":[1,3,3,3,3,3,3,1,3,1,3,3,3,3,3,3,3,3,1,3,3,3,3,3,3,3,3,3,1,3,3,3,1,1,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255]},{"1605376":[87,65,214,122,224,16,138,151,162,137,130,69,70,28,223,247,85,15,29,86,172,41,220,209,37,42,197,146,66,183,190,80,100,98,49,232,73,99,64,95,201,71,246,11,250,252,228,240,230,143,109,177,104,164,211,14,84,93,107,207,32,105,51,7,44,77,50,119,193,149,123,222,102,140,53,132,134,124,68,26,62,21,212,12,181,144,76,178,38,30,56,192,118,156,43,127,94,213,117,182,227,125,141,114,58,203,111,91,173,189,241,187,5,154,244,3,2,255,218,79,147,179,20,236,238,215,249,150,167,19,202,191,136,25,163,120,36,135,60,158,180,39,194,175,128,196,200,108,233,148,248,139,61,52,166,83,23,34,243,165,27,46,6,57,210,67,115,18,9,88,48,92,153,152,159,237,55,103,234,186,231,217,129,8,126,188,112,90,81,195,185,97,54,75,168,1,101,59,239,89,4,24,121,13,221,206,204,174,131,33,235,110,10,113,176,17,133,199,161,253,229,22,72,251,242,35,47,40,155,170,171,208,106,157,198,45]},{"1605613":[254,225,63,160,74,184,78,116,31,142,169,245,205,96,145,219,216,82,226,224,90,221,29,227,3,63,207,95,224,92,227,188,227,124,195,246,157,62,28,192,224,227,195,131,25,153,24,238,45,252,147,248,7,57,199,11,247,247,158,254,140,126,17,3,7,199,247,251,251,199,132,95,25,238,3,173,11,87,68,232,192,255,128,255,152,120,224,241,243,184,31,7]},{"1605706":[28]},{"1605708":[60,8,28,4,73]},{"1605714":[67]},{"1605716":[195,1,169]},{"1605720":[248]},{"1605722":[255,255,251,36,255,4,92,172,124,140,92,74,172,124,39,15,15,255,100,253,36,125,128,62,210,127,169,239,64,212,137,232,22,34,3,28,1,16,48,102,9,24,231,52,195,82,129,235,32,247,20,253,66,195,126,189,60]},{"1605780":[24,60,28,8,2,62,126,68]},{"1605789":[255,2,254]},{"1605793":[246,68]},{"1605796":[237,18,173]},{"1605800":[175]},{"1605803":[1,9,18,18,82,80]},{"1605810":[255]},{"1605812":[251]},{"1605814":[247]},{"1605816":[183,70]},{"1605819":[111,4,127]},{"1605823":[4,8,72,34,144,6,128,255]},{"1605832":[254,63,225,97,69,222,94,6,220,92,219,91]},{"1605846":[30,36,63,36,255,10,192,255,184,204,75,188,35,252,67,246,29,35]},{"1605865":[3,51,67,3,25,47,255,39]},{"1605874":[20,255,255,191,191,206,206,209,208,239,239,230,231,238,233,239,236]},{"1605892":[64,49,63,31,34,28,27,185,158,115,60,230,121,204,243,152,231,48,207,224,159,192,63,112,224,193,131,7,15,31,63,255]},{"1605925":[129,126,75,141,110,1]},{"1605933":[37,16,224,65,254,127,253,191,251,223,247,239,239,247,223,251,191,253,127,254,254,253,251,247,239,223,191,127,231,156,254,137,253,195,251,231,115,207,243,207,120,231,95,240,24,1,3,7,143,143,199,224,188,243,254,225,255]},{"1605991":[255,8,255,140,255,158,231,167,215,199,99,1,35]},{"1606005":[224,32,24,56,239,159,246,15,217,151,243,142,118,92,191,10,126,36,219,138,31,207,38,12,137,193,195,100,188,96,188,104,180,100,169,67,96,163,7,97,169,96,184,96,31,31,27,36,31,5,95,175,111,144,83,163,138,102]},{"1606064":[1]},{"1606066":[12,36,15,224,71,59,75,28,164,15,211,7,232,3,117,3,184,1,92,1,190,132,67,32,16,136,68,162,65,207,206,63,48,248,199,224,20,192,175,192,23,128,44,128,123,48,192]},{"1606114":[11,16,40,83,132,251,8,159,102,7,248]},{"1606126":[87]},{"1606128":[168]},{"1606130":[245]},{"1606132":[254]},{"1606134":[255,6]},{"1606138":[168,87,10,1]},{"1606143":[67,102,191,224,35,118,159,59,207,61,135,62,83,127,57,111,172,31,31,15,7,67,129,128,16,215,87,214,86,213,85,215,87,205,78,250,123,253,5,255,19,34,63,24,61,53,6,3,1,60,243,30,225,255,24,239,40,223,16,223,145,223,147,255,199,227,225]},{"1606211":[16,34,32,224,56]},{"1606217":[251,251,245,245,174,174,75,74,241,245]},{"1606228":[254,255,251,251,4,4,14,95,255,251,1]},{"1606240":[4,153,158,115,124,230,121,204,115,152,231,48,79,96,31,192,63,120,240,225,195,135,143,159,63,255]},{"1606267":[48,48,206,206,223,223,39,255,3]},{"1606277":[255,49,32,35]},{"1606282":[69,141,110,2,129,98,157,68,126,129]},{"1606293":[255,131,97,1]},{"1606298":[28,35]},{"1606301":[151,104,1,27,94,241,93,243,185,231,249,135,248,103,63,48,127,120,239,44,225,227,199,7,7,192,128,16,47,11,94,16,67,186,36,15,126,32,95,22,90,24,67,2,240,225,197,197,193,225,231,252,131,198,2,10,255]},{"1606359":[49,255,67]},{"1606363":[3,1,9]},{"1606367":[24,134,27,1,133,196,2,3,255]},{"1606377":[129,127,135,208,1,35]},{"1606384":[35,31,7,92,140,252,44,188,204,252,12,35,252,35]},{"1606400":[47,34,15,35,255,224,53,129,66,67,189,62,66]},{"1606414":[189]},{"1606416":[195]},{"1606418":[255]},{"1606420":[203,128,255,60]},{"1606425":[129,66,60]},{"1606429":[52]},{"1606431":[157,93,67,190,63,199,7,120,4,139,4,251,28,227,182,221,62]},{"1606450":[128,115,3,3,25,217,88,226,161,188,195,137,30]},{"1606464":[1,62,29,133,42]},{"1606470":[22,79,140,79,9,78,11,77,11,119,164,104]},{"1606483":[127,128,127,152,48,176,177,179,24,159,7,152,231,2,19,255,146,239,36,223,72,159,16,191,32,191,35,191,39,255,143,12,24,48,96,34,64,224,72]},{"1606523":[127,127,191,191,159,159,175,175,183,183,171,187,141,189,30,126,128,64,96,112,120,100,66,129,255]},{"1606549":[63]},{"1606551":[15,192,7,240,3,248,3,128,1,96,1,56,255,255,63,15,7,127,159,199,128,127,65,62,34,28,85,73,190,182,221,221,235,235,247,247,127,190,221,235,119,62,28,8,47,254,39,1,79,15,255,39]},{"1606604":[67,230,191,224,49,246,159,123,79,189,39,158,19,207,9,103,4,31,31,15,135,195,225,240,248,239,40,207,136,175,8,127,15,247,7,123,3,153,129,204,64,16,48,112,240,248,252,126,63]},{"1606654":[255,253,255,2,2,35,253,1,19,19,67,238,236,7]},{"1606670":[253,255,255,253,17,17,131,67,3,133,66,3,5,17,17,238,238,239,239,134,204,4,24,16,251,8,255,6,7,248]},{"1606701":[31]},{"1606703":[249]},{"1606705":[255]},{"1606707":[79]},{"1606709":[240,6]},{"1606713":[224,6]},{"1606716":[176,15,136,128,4,6,167,222,83,239,41,119,148,131,144,4,13,67,33,16,8,255]},{"1606739":[192,127,191,127,143,111,140,108,67,140,111,131,94,1,2]},{"1606755":[16,19,34,16,134,203,4,131,23,1,132,49,3,35]},{"1606770":[131,23,1,3,141,110,13,238,67,253,254,1,1,2,67,1,254,131,222,2,1]},{"1606793":[131,107,3,152,216,3,2]},{"1606801":[1,254,67,249,250,135,72,5,3]},{"1606812":[4,4,131,107,3,224,39,211,211,185,185,68,124,90,102,185,231,100,219,194,189,129,126,60,126,199,131,1,24,60,126,255]},{"1606845":[252]},{"1606847":[240]},{"1606849":[224,9,192,25,192,27,128,58,128,60,34,255,19,246,230,228,197,195]},{"1606868":[255,126,255,66,255,78,255,81,255,87,255,118,255,13,136,23,1,5,254,254,253,253,243,243,35,239,13,223,223,191,191,127,127,1,2,12,24,16,32,64,128,80]},{"1606911":[255,38]},{"1606914":[255]},{"1607680":[224,90,221,29,227,3,63,207,95,224,92,227,188,227,124,195,246,157,62,28,192,224,227,195,131,25,153,24,238,45,252,147,248,7,57,199,11,247,247,158,254,140,126,17,3,7,199,247,251,251,199,132,95,25,238,3,173,11,87,68,232,192,255,128,255,152,120,224,241,243,184,31,7]},{"1607754":[28]},{"1607756":[60,8,28,4,73]},{"1607762":[67]},{"1607764":[195,1,169]},{"1607768":[248]},{"1607770":[255,255,251,36,255,4,92,172,124,140,92,74,172,124,39,15,15,255,100,253,36,125,128,62,210,127,169,239,64,212,137,232,22,34,3,28,1,16,48,102,9,24,231,52,195,82,129,235,32,247,20,253,66,195,126,189,60]},{"1607828":[24,60,28,8,2,62,126,68]},{"1607837":[255,2,254]},{"1607841":[246,68]},{"1607844":[237,18,173]},{"1607848":[175]},{"1607851":[1,9,18,18,82,80]},{"1607858":[255]},{"1607860":[251]},{"1607862":[247]},{"1607864":[183,70]},{"1607867":[111,4,127]},{"1607871":[4,8,72,34,144,6,128,255]},{"1607880":[254,63,225,97,69,222,94,6,220,92,219,91]},{"1607894":[30,36,63,36,255,10,192,255,184,204,75,188,35,252,67,246,29,35]},{"1607913":[3,51,67,3,25,47,255,39]},{"1607922":[20,255,255,191,191,206,206,209,208,239,239,230,231,238,233,239,236]},{"1607940":[64,49,63,31,34,28,27,185,158,115,60,230,121,204,243,152,231,48,207,224,159,192,63,112,224,193,131,7,15,31,63,255]},{"1607973":[129,126,75,141,110,1]},{"1607981":[37,16,224,65,254,127,253,191,251,223,247,239,239,247,223,251,191,253,127,254,254,253,251,247,239,223,191,127,231,156,254,137,253,195,251,231,115,207,243,207,120,231,95,240,24,1,3,7,143,143,199,224,188,243,254,225,255]},{"1608039":[255,8,255,140,255,158,231,167,215,199,99,1,35]},{"1608053":[224,32,24,56,239,159,246,15,217,151,243,142,118,92,191,10,126,36,219,138,31,207,38,12,137,193,195,100,188,96,188,104,180,100,169,67,96,163,7,97,169,96,184,96,31,31,27,36,31,5,95,175,111,144,83,163,138,102]},{"1608112":[1]},{"1608114":[12,36,15,224,71,59,75,28,164,15,211,7,232,3,117,3,184,1,92,1,190,132,67,32,16,136,68,162,65,207,206,63,48,248,199,224,20,192,175,192,23,128,44,128,123,48,192]},{"1608162":[11,16,40,83,132,251,8,159,102,7,248]},{"1608174":[87]},{"1608176":[168]},{"1608178":[245]},{"1608180":[254]},{"1608182":[255,6]},{"1608186":[168,87,10,1]},{"1608191":[67,102,191,224,35,118,159,59,207,61,135,62,83,127,57,111,172,31,31,15,7,67,129,128,16,215,87,214,86,213,85,215,87,205,78,250,123,253,5,255,19,34,63,24,61,53,6,3,1,60,243,30,225,255,24,239,40,223,16,223,145,223,147,255,199,227,225]},{"1608259":[16,34,32,224,56]},{"1608265":[251,251,245,245,174,174,75,74,241,245]},{"1608276":[254,255,251,251,4,4,14,95,255,251,1]},{"1608288":[4,153,158,115,124,230,121,204,115,152,231,48,79,96,31,192,63,120,240,225,195,135,143,159,63,255]},{"1608315":[48,48,206,206,223,223,39,255,3]},{"1608325":[255,49,32,35]},{"1608330":[69,141,110,2,129,98,157,68,126,129]},{"1608341":[255,131,97,1]},{"1608346":[28,35]},{"1608349":[151,104,1,27,94,241,93,243,185,231,249,135,248,103,63,48,127,120,239,44,225,227,199,7,7,192,128,16,47,11,94,16,67,186,36,15,126,32,95,22,90,24,67,2,240,225,197,197,193,225,231,252,131,198,2,10,255]},{"1608407":[49,255,67]},{"1608411":[3,1,9]},{"1608415":[24,134,27,1,133,196,2,3,255]},{"1608425":[129,127,135,208,1,35]},{"1608432":[35,31,7,92,140,252,44,188,204,252,12,35,252,35]},{"1608448":[47,34,15,35,255,224,53,129,66,67,189,62,66]},{"1608462":[189]},{"1608464":[195]},{"1608466":[255]},{"1608468":[203,128,255,60]},{"1608473":[129,66,60]},{"1608477":[52]},{"1608479":[157,93,67,190,63,199,7,120,4,139,4,251,28,227,182,221,62]},{"1608498":[128,115,3,3,25,217,88,226,161,188,195,137,30]},{"1608512":[1,62,29,133,42]},{"1608518":[22,79,140,79,9,78,11,77,11,119,164,104]},{"1608531":[127,128,127,152,48,176,177,179,24,159,7,152,231,2,19,255,146,239,36,223,72,159,16,191,32,191,35,191,39,255,143,12,24,48,96,34,64,224,32]},{"1608571":[127,127,191,191,159,159,175,175,183,183,171,187,141,189,30,126,128,64,96,112,120,100,66,129,255]},{"1608597":[63]},{"1608599":[15,192,7,240,67,3,248,224,35,1,236,1,196,255,255,63,15,7,7,19,59,128,127,65,62,34,28,85,73,190,182,221,221,235,235,247,247,127,190,221,235,119,62,28,8,47,254,39,1,79,15,255,39]},{"1608653":[67,230,191,224,49,246,159,123,79,189,39,158,19,207,9,103,4,31,31,15,135,195,225,240,248,239,40,207,136,175,8,127,15,247,7,123,3,153,129,204,64,16,48,112,240,248,252,126,63]},{"1608703":[255,253,255,2,2,35,253,1,19,19,67,238,236,7]},{"1608719":[253,255,255,253,17,17,131,67,3,133,66,3,5,17,17,238,238,239,239,134,204,4,24,16,251,8,255,6,7,248]},{"1608750":[31]},{"1608752":[249]},{"1608754":[255]},{"1608756":[79]},{"1608758":[240,6]},{"1608762":[224,6]},{"1608765":[176,15,136,128,4,6,167,222,83,239,41,119,148,131,144,4,13,67,33,16,8,255]},{"1608788":[192,127,191,127,143,111,140,108,67,140,111,131,94,1,2]},{"1608804":[16,19,34,16,134,203,4,131,23,1,132,49,3,35]},{"1608819":[131,23,1,3,141,110,13,238,67,253,254,1,1,2,67,1,254,131,222,2,1]},{"1608842":[131,107,3,152,216,3,2]},{"1608850":[1,254,67,249,250,135,72,5,3]},{"1608861":[4,4,131,107,3,31,211,211,185,185,68,124,90,102,185,231,100,219,194,189,129,126,60,126,199,131,1,24,60,126,255]},{"1608893":[252]},{"1608895":[240,3,224,15,67,192,31,26,128,57,128,48,255,255,252,240,224,224,198,207]},{"1608916":[255,126,255,66,255,78,255,81,255,87,255,118,255,13,136,23,1,5,254,254,253,253,243,243,35,239,13,223,223,191,191,127,127,1,2,12,24,16,32,64,128,80]},{"1608959":[255,38]},{"1608962":[255]},{"1609728":[15,255]},{"1609731":[252,3,248,7,243,15,231,31,207,63,152,127,183,120,39]},{"1609747":[1,220,63,67,35,227,67,220,192,8,206,192,39,224,211,48]},{"1609764":[28,28,34,63,17,31,15,127,128,191,192,159,224,79,112,103,120,48,63,24,31,143,15,34]},{"1609789":[23,128,128,192,224,240,247,74,247,76,218,102,236,115,183,120,152,127,207,63,231,31]},{"1609813":[1,36]},{"1609816":[224,33,226,14,196,28,73,121,19,243,167,103,79,207,158,158,60,60,17,35,134,12,24,48,97,195,112,112,247,240,231,224,207,192,159,128,69,63]},{"1609855":[4,143,15,31,63,127,34,255,9,176,79,24,231,60,243,127,240,47,240,67,12,243,224,33,248,7,79,231,195,128,208,224,1,3,8,247,12,243,31,224,255]},{"1609897":[131,124,1,254,63,255,127,255,247,243,224]},{"1609909":[124,254,192,128,67,65,190,15,193,62,227,28,255]},{"1609923":[199,56,159,124,159,254,190,190,62,28,35]},{"1609935":[27,255]},{"1609938":[15,240,224,255,31,31,128,128,6,6,249]},{"1609950":[255,255]},{"1609953":[240,31,224,127,249,255]},{"1609960":[160,96,199,64,71,199,66,5,191,2,189,60,31,63,35,60,2,124,66,192,67,127,255,5,63,255]},{"1609987":[192,127,254,67,127,255,224,48]},{"1609996":[64,64,63]},{"1610000":[64,65,127]},{"1610004":[24,230,29,231,24,229,14,242,7,249,3,252,1,254]},{"1610019":[255,225,224,226,241,248,252,254,255,253,195,134,249,51,252,113,126,228,251,14,241,255]},{"1610042":[3,252,34]},{"1610047":[128,34]},{"1610050":[224,58,252,195,195,224,224,112,240,184,120,220,60,102,158,51,207,255]},{"1610069":[60,31,15,7,3,1]},{"1610077":[3,252,7,248,8,242,10,243,13,245,10,246,5,251,14,242,252,249,245,244,242,241,240,241,175,112,155,103,183,72,175,80,191,67,69,191,68,39]},{"1610116":[224,40,233,24,148,172,202,86,247,59,127,27,127,11,255,131,127,11,7,67,33]},{"1610138":[128,192,64,128,199,7,224]},{"1610146":[112]},{"1610148":[63]},{"1610150":[31]},{"1610152":[95,64,111,96,112,112,248,35,255,4,191,159,143,227,31,67,155,103,67,248,7,69,31,224,36]},{"1610178":[34,1,224,81,248,248,136,248,40,216,72,152,172,60,14,62,119,79,123,71,7,7,39,103,195,193,128,128,63]},{"1610208":[1]},{"1610210":[60,36,126,66,126,82,46,42,6,6,135,135,255,255,195,129,129,209,249,120,240,15,97,159,79,191,211,51,201,57,196,60,226,30,99,159,7,158,176,44,54,59,29,28,252,252,248,248,240,240,224,224,192,192,131,73,1,6,64]},{"1610270":[3,7,15,31,63,34,255,7,247,102,246,103,247,103,244,100,67,240,96,7,241,96,254,96,24,25,24,27,35,31,23,224,31,224,159,240,207,184,167,28,19,140,139,206,201,238,233,31,31,15,71,227,115,49,21,55]},{"1610327":[6,223,127,160,96,192,127,255,136,135,2,2,64,31,64,132,151,2,9,223,14,239,38,119,147,59,201,29,228,133,38,1,224,97,48,24,140,198,227,241,248,252,111,206,79,206,239,110,247,182,251,218,253,108,255,240,248,7,48,48,16,8,4,130]},{"1610392":[7,255]},{"1610395":[255,112,255,96,246,73,230,25,228,27,197,58,195,60]},{"1610410":[3,15,22,38,36,69,67,255]},{"1610419":[255,14,63,198,15,242,7,248,127,128,159,96,199,56]},{"1610434":[192,48,8,4,124,158,198,52,220,52,212,49,208,57,200,29,228,30,230,26,234,40,216,195,203,131,98,1,23,5,7,5,5,255]},{"1610469":[255,127,247,255,136,136,247,128,247,127,255,192,250,255,127,128,119,127,131,75,1,45]},{"1610492":[39,255,69,170,91]},{"1610498":[174,70,95,160,1,191,64,34,4,36]},{"1610509":[224,41,22,234,26,238,26,234,8,240,9,244,27,230,42,214,46,214,225,225,229,231,227,225,193,193,206,60,141,124,201,120,203,120,235,120,223,92,141,76,165,100,3,3,34,7,2,35,51,27,67,99,159,16,223,63,191,127,176,112,224,96,239,96,224,96,28,28,32,64,79,34,31,69,64]},{"1610585":[9,124]},{"1610588":[127]},{"1610590":[131]},{"1610592":[120,120,252,252,37,255,1,135,3,35,243]},{"1610604":[247,72,243,118,1,246,115,34,12]},{"1610614":[140,35,12,10,255,254,193,254,129,254,31,252,51,240,243,68,112,251,3]},{"1610634":[28,28]},{"1610637":[35,12,15,251,124,247,120,247,122,177,114,93,190,237,30,173,30,205,78,34]},{"1610658":[24,12]},{"1610662":[64,48,5,255,28,255,62,255,127,255,253,255,250,254,249,255,252,255,248,224,192,128,131,89]},{"1610687":[224,33,1,255,48,255,38,239,15,127,60,254,186,254,89,127,92,127]},{"1610707":[16,128,1,1,128,128,1,255,20,223,54,255,15,255,125,255,134,42,4]},{"1610727":[32,34]},{"1610730":[26,1,128,128,3,252,7,249,14,242,29,228,59,201,119,147,239,38,223,14]},{"1610752":[1,3,6,12,24,48,79]},{"1610760":[255,39,255,15,72,184,75,184,107,184,123,184,105,168,68,164,218,50,204,56,35,7,24,23,27,13,7,176,195,171,192,173,192,189,210,154,232,255,243,255,124,255]},{"1610803":[28,23,18]},{"1610807":[5,132,213]},{"1610811":[68,255]},{"1610814":[8,14,255,31,251,31,241,31,245,31,34]},{"1610826":[4,14,31,27,17,17,79,170,91,39,4,77,245,31,1,187,91,38,17,6,21,137,96,151,112,187,120,67,189,124,5,158,126,198,62,240,15,131,97,1,2,3,1,1,68]},{"1610872":[2,11,4]},{"1610876":[11,3,20,7,44,15,92,31,185,190,34,255,14,252,251,243,227,70,255]},{"1610896":[191,63,223,95,255,96,240,96,67,247,103,17,246,102]},{"1610911":[64,32,31,31,24,24,25,224,31,247,8,255]},{"1610924":[207,48,67,231,24,5,238,17,255]},{"1610934":[31,8,37]},{"1610938":[11,115,252,135,120,255]},{"1610945":[243,12,241,14,113,142,67,63,192]},{"1610955":[140,134,15]},{"1610959":[5,253,126,253,70,253,86,69,253,70,2,185,70,255,35]},{"1610975":[35,16,7]},{"1610979":[172,239,63,255,2,254,1,72,255]},{"1610989":[4,16,128,193,252,254,34,255,15,158,255,31,255,15,255,128,255,169,239,58,254,1,191]},{"1611013":[199,35]},{"1611016":[18,16,1,64,56,158,255,63,255,15,255,38,255,81,223,50,254,1,255,192,132,126,5,3,32,1]},{"1611044":[73,228,251,5,204,243,24,231,240,15,36,24]},{"1611057":[48,133,215,1,147,52,3,255]},{"1611776":[15,255]},{"1611779":[252,3,248,7,243,15,231,31,207,63,152,127,183,120,39]},{"1611795":[1,220,63,67,35,227,67,220,192,8,206,192,39,224,211,48]},{"1611812":[28,28,34,63,17,31,15,127,128,191,192,159,224,79,112,103,120,48,63,24,31,143,15,34]},{"1611837":[23,128,128,192,224,240,247,74,247,76,218,102,236,115,183,120,152,127,207,63,231,31]},{"1611861":[1,36]},{"1611864":[224,33,226,14,196,28,73,121,19,243,167,103,79,207,158,158,60,60,17,35,134,12,24,48,97,195,112,112,247,240,231,224,207,192,159,128,69,63]},{"1611903":[4,143,15,31,63,127,34,255,9,176,79,24,231,60,243,127,240,47,240,67,12,243,224,33,248,7,79,231,195,128,208,224,1,3,8,247,12,243,31,224,255]},{"1611945":[131,124,1,254,63,255,127,255,247,243,224]},{"1611957":[124,254,192,128,67,65,190,15,193,62,227,28,255]},{"1611971":[199,56,159,124,159,254,190,190,62,28,35]},{"1611983":[27,255]},{"1611986":[15,240,224,255,31,31,128,128,6,6,249]},{"1611998":[255,255]},{"1612001":[240,31,224,127,249,255]},{"1612008":[160,96,199,64,71,199,66,5,191,2,189,60,31,63,35,60,2,124,66,192,67,127,255,5,63,255]},{"1612035":[192,127,254,67,127,255,224,48]},{"1612044":[64,64,63]},{"1612048":[64,65,127]},{"1612052":[24,230,29,231,24,229,14,242,7,249,3,252,1,254]},{"1612067":[255,225,224,226,241,248,252,254,255,253,195,134,249,51,252,113,126,228,251,14,241,255]},{"1612090":[3,252,34]},{"1612095":[128,34]},{"1612098":[224,58,252,195,195,224,224,112,240,184,120,220,60,102,158,51,207,255]},{"1612117":[60,31,15,7,3,1]},{"1612125":[3,252,7,248,8,242,10,243,13,245,10,246,5,251,14,242,252,249,245,244,242,241,240,241,175,112,155,103,183,72,175,80,191,67,69,191,68,39]},{"1612164":[224,40,233,24,148,172,202,86,247,59,127,27,127,11,255,131,127,11,7,67,33]},{"1612186":[128,192,64,128,199,7,224]},{"1612194":[112]},{"1612196":[63]},{"1612198":[31]},{"1612200":[95,64,111,96,112,112,248,35,255,4,191,159,143,227,31,67,155,103,67,248,7,69,31,224,36]},{"1612226":[34,1,224,81,248,248,136,248,40,216,72,152,172,60,14,62,119,79,123,71,7,7,39,103,195,193,128,128,63]},{"1612256":[1]},{"1612258":[60,36,126,66,126,82,46,42,6,6,135,135,255,255,195,129,129,209,249,120,240,15,97,159,79,191,211,51,201,57,196,60,226,30,99,159,7,158,176,44,54,59,29,28,252,252,248,248,240,240,224,224,192,192,131,73,1,6,64]},{"1612318":[3,7,15,31,63,34,255,7,247,102,246,103,247,103,244,100,67,240,96,7,241,96,254,96,24,25,24,27,35,31,23,224,31,224,159,240,207,184,167,28,19,140,139,206,201,238,233,31,31,15,71,227,115,49,21,55]},{"1612375":[6,223,127,160,96,192,127,255,136,135,2,2,64,31,64,132,151,2,9,223,14,239,38,119,147,59,201,29,228,133,38,1,224,39,48,24,140,198,227,241,248,252,111,206,79,206,239,110,247,182,251,218,253,108,255,240,248,7,48,48,16,8,4,130]},{"1612440":[7,255]},{"1612443":[255,112,253,98,241,78,67,227,28,67,199,56,15]},{"1612457":[3,13,17,35,35,71,71,255]},{"1612466":[255,14,63,198,15,242,67,7,248,29,3,252,243,12]},{"1612481":[192,48,8,4,4,2,242,52,220,52,212,49,208,57,200,29,228,30,230,26,234,40,216,195,203,131,98,1,23,5,7,5,5,255]},{"1612516":[255,127,247,255,136,136,247,128,247,127,255,192,250,255,127,128,119,127,131,75,1,45]},{"1612539":[39,255,69,170,91]},{"1612545":[174,70,95,160,1,191,64,34,4,36]},{"1612556":[224,41,22,234,26,238,26,234,8,240,9,244,27,230,42,214,46,214,225,225,229,231,227,225,193,193,206,60,141,124,201,120,203,120,235,120,223,92,141,76,165,100,3,3,34,7,2,35,51,27,67,99,159,16,223,63,191,127,176,112,224,96,239,96,224,96,28,28,32,64,79,34,31,69,64]},{"1612632":[9,124]},{"1612635":[127]},{"1612637":[131]},{"1612639":[120,120,252,252,37,255,1,135,3,35,243]},{"1612651":[247,72,243,118,1,246,115,34,12]},{"1612661":[140,35,12,10,255,254,193,254,129,254,31,252,51,240,243,68,112,251,3]},{"1612681":[28,28]},{"1612684":[35,12,15,251,124,247,120,247,122,177,114,93,190,237,30,173,30,205,78,34]},{"1612705":[24,12]},{"1612709":[64,48,5,255,28,255,62,255,127,255,253,255,250,254,249,255,252,255,248,224,192,128,131,89]},{"1612734":[224,33,1,255,48,255,38,239,15,127,60,254,186,254,89,127,92,127]},{"1612754":[16,128,1,1,128,128,1,255,20,223,54,255,15,255,125,255,134,42,4]},{"1612774":[32,34]},{"1612777":[26,1,128,128,3,252,7,249,14,242,29,228,59,201,119,147,239,38,223,14]},{"1612799":[1,3,6,12,24,48,79]},{"1612807":[255,39,255,15,72,184,75,184,107,184,123,184,105,168,68,164,218,50,204,56,35,7,24,23,27,13,7,176,195,171,192,173,192,189,210,154,232,255,243,255,124,255]},{"1612850":[28,23,18]},{"1612854":[5,132,213]},{"1612858":[68,255]},{"1612861":[8,14,255,31,251,31,241,31,245,31,34]},{"1612873":[4,14,31,27,17,17,79,170,91,39,4,77,245,31,1,187,91,38,17,6,21,137,96,151,112,187,120,67,189,124,5,158,126,198,62,240,15,131,97,1,2,3,1,1,68]},{"1612919":[2,11,4]},{"1612923":[11,3,20,7,44,15,92,31,185,190,34,255,14,252,251,243,227,70,255]},{"1612943":[191,63,223,95,255,96,240,96,67,247,103,17,246,102]},{"1612958":[64,32,31,31,24,24,25,224,31,247,8,255]},{"1612971":[207,48,67,231,24,5,238,17,255]},{"1612981":[31,8,37]},{"1612985":[11,115,252,135,120,255]},{"1612992":[243,12,241,14,113,142,67,63,192]},{"1613002":[140,134,15]},{"1613006":[5,253,126,253,70,253,86,69,253,70,2,185,70,255,35]},{"1613022":[35,16,7]},{"1613026":[172,239,63,255,2,254,1,72,255]},{"1613036":[4,16,128,193,252,254,34,255,15,158,255,31,255,15,255,128,255,169,239,58,254,1,191]},{"1613060":[199,35]},{"1613063":[18,16,1,64,56,158,255,63,255,15,255,38,255,81,223,50,254,1,255,192,132,126,5,3,32,1]},{"1613091":[73,228,251,5,204,243,24,231,240,15,36,24]},{"1613104":[48,133,215,1,147,52,3,255]},{"1613824":[34,255,12,192,215,136,248,151,220,171,234,145,229,152,227,157,34,255,2]},{"1613844":[255]},{"1613846":[67]},{"1613848":[255,68,255]},{"1613852":[8,255,3]},{"1613856":[28,3,34,29,66,61,67,192,63,19,164,27,170,17,240]},{"1613872":[15,240]},{"1613875":[255,113,142,81,142,74,132,85,128,91,128,133,48]},{"1613889":[224,67,207,48,88,32,87,32,84,35,87,32,31]},{"1613903":[224,31]},{"1613906":[255,231,24,52,8,213,8,85,136,213,8,128]},{"1613919":[127,128,6,249,254,1,12,3,244,3,20,227,244,3,63,1,70,56,142,112,20,224,56,192,68,184,4,248,66,252,24,24,36,60,68,124,132,252,100,124,69,36,60,4,60,60,66,126,129,70,255,153,5,105,111,18,30,12,12,67,18,30,69,34,62,67,82,126,1,126,126,67,129,255,9,158,254,144,240,156,252,130,254,129,255,131,160]},{"1614007":[1,34,62,131,130]},{"1614013":[5,72,120,140,252,130,254,133,176]},{"1614023":[3,121,127,9,15,69,18,30,139,144]},{"1614034":[67,153,255,137,176]},{"1614040":[133,184]},{"1614043":[79,231,153,47,255,19,51]},{"1614051":[20,3,56,7,104,23,96,31,254,1,249]},{"1614063":[192]},{"1614065":[95,128,213,10,67,81,142,8,241,14,192,63,143,112,112]},{"1614081":[80,132,73]},{"1614085":[10,84,35,220,35]},{"1614091":[255,113,14,15]},{"1614096":[20,132,89]},{"1614100":[224,37,85,136,119,136,1,254,128,127,255]},{"1614112":[12,3,248,7]},{"1614117":[255,1,255,3,255,7,255,31,255,248,248,114,252,254,254,252,252,248,248,240,240,192,192,35]},{"1614142":[77,36,60,1,24,24,131,196]},{"1614151":[67,72,120,1,142,254,67,129,255,3,126,126,82,126,67,178,254,67,129,255,1,114,126,131,158]},{"1614177":[131,154]},{"1614180":[11,9,15,105,111,153,255,129,255,66,126,60,60,137,228]},{"1614196":[133,186,1,141,224]},{"1614202":[3,66,126,124,124,131,188]},{"1614210":[69,153,255,69,130,254,1,156,252,73,144,240,1,96,96,73,153,255,18,129,255,130,254,124,124,253,255,250,255,253,255,239,255,215,255,251,255,253,38,255,8,150,255,244,255,247,255,239,255,158,34,255,67,215,255,8,57,255,223,255,95,255,190,255,121,38,255,67,95,255,4,79,255,215,255,223,34,255]},{"1614289":[127,34,255,2,243,255,227,68,255,243]},{"1614300":[97,35,255,11,127,255,255,227,255,217,255,243,255,231,255,65,38,255,140,84,2,34,255,143,100,2,2,195,255,249,132,147,2]},{"1614334":[67,132,145,2,6,153,255,249,255,227,255,231,34,255,131,168,2,37,255]},{"1614354":[248,132,39,2,2,238,255,241,34,255,8,31,255,111,255,247,255,123,255,187,68,255,221,16,251,255,231,249,199,248,206,241,225,222,247,200,255,225,255,255,221,70,255,189]},{"1614399":[219,138,171,2,4,225,255,205,255,253,131,207,2,36,255,4,242,255,243,253,247,68,255,248,3,203,255,199,252,131,78,2,11,111,191,111,255,159,247,247,255,251,15,255,247,39]},{"1614447":[123,70,123,74,39]},{"1614454":[255,68,255,9,133,60,2,8,104,255,111,255,110,255,221,255,187,38,255,8,97,255,77,255,245,255,123,255,167,38,255,69,175,255,2,171,255,103,50,255,39]},{"1614497":[127,68,127,72]},{"1614502":[73,67,127,255,132,83,2,4,211,255,193,255,115,138,125,3]},{"1614519":[252,68,252,36,17,228,252,254,127,253,191,251,223,247,239,239,247,223,251,191,253,127,254,143,176,3,2,251,255,225,72,255,192]},{"1614553":[225,37,255,12,199,215,171,215,41,239,17,215,41,215,171,255,71,47,255,6,227,255,224,255,242,255,252,68,255,248]},{"1614584":[254,34,255,7,15,251,7,255,119,255,255,143,68,255,151,2,31,255,255,71,74,123]},{"1614607":[78,68,127,66,10,127,127,121,255,28,255,20,247,116,247,122,68,251,10,3,251,251,255,254,68,255,252]},{"1614635":[248,132,17,2,3,253,255,254,127,68,255,63,3,31,255,127,159,68,255,63,1,127,255,68,255,254]},{"1614662":[252,131,76,4,132,11,4,135,80,4]},{"1614673":[31,68,255,191]},{"1614678":[127,132,78,2,139,148,2,1,73,127,67,152,255,2,153,255,41,68,239,40,2,239,239,228,68,252,100,67,228,252,67,33,255,1,255,255,159,176,3,12,130,130,69,199,74,207,118,255,110,255,95,255,191,132,125,3,1,192,192,67,160,224,7,32,224,163,224,166,225,212,243,135,224,3,10,199,57,239,17,239,147,239,87,255,255,172,68,255,171,4,139,255,171,255,172,36,255,2,189,255,185,70,255,189]},{"1614783":[136,134,13,5,6,186,255,190,255,189,255,187,142,27,5,2,190,255,137,36,255,4,216,255,141,255,173,132,67,5]},{"1614814":[173,36,255,2,157,255,169,70,255,173]},{"1614825":[152,134,77,5,6,170,255,174,255,173,255,171,142,91,5,1,174,255,133,15,1,131,82,5,5,165,255,160,255,173,255,131,15]},{"1614859":[4,255,255,152,255,171,132,119,5]},{"1614869":[170,134,139,5,4,156,255,171,255,169,68,255,170,135,140,5,133,100,5,135,138,5]},{"1614892":[200,68,255,189,4,173,255,181,255,205,34,255,2,223,255,129,68,255,221,67,223,255,131,220,3]},{"1614918":[189,68,255,221,131,248,2,2,247,255,143,132,205,5,10,193,255,221,255,173,255,245,255,251,255,199,34,255,6,251,255,135,255,247,255,1,68,255,247]},{"1614958":[207,34,255,69,173,255,133,230,5,131,12,6]},{"1614971":[131,34,255,133,6,6]},{"1614978":[239,132,75,2,69,223,255,2,199,255,219,68,255,223]},{"1614993":[255,136,3,6,131,40,2]},{"1615001":[159,36,255,131,32,6,37,255]},{"1615010":[1,34,255,10,129,255,253,255,221,255,235,255,247,255,235,132,139,5,2,231,255,129,132,231,5,4,227,255,149,255,247,132,253,5,69,251,255,135,72,6]},{"1615051":[191,68,255,183,67,187,255,67,125,255,131,142,6]},{"1615065":[129,70,255,191,133,218,5]},{"1615073":[1,70,255,253,135,24,6,6,255,255,159,255,175,255,119,136,25,2,4,239,255,1,255,239,132,147,5,2,109,255,239,136,173,6,4,187,255,215,255,239,132,123,6,4,15,255,243,255,159,132,167,2,2,31,255,227,132,205,6,131,42,6,6,219,255,187,255,177,255,13,34,255,67,253,255]},{"1615149":[219,138,101,6]},{"1615154":[129,68,255,239,133,32,7,131,190,2,2,223,255,1,68,255,221,69,239,255,131,146,2,137,128,6]},{"1615181":[129,134,93,6]},{"1615186":[253,136,79,7,131,94,6,135,78,7,133,250,5,71,187,255,135,24,6,69,175,255,131,216,6]},{"1615212":[107,132,107,3,69,191,255,131,40,5]},{"1615223":[183,132,235,5]},{"1615228":[129,74,255,189,133,76,7,67,189,255,137,22,6,131,236,5,135,180,6,131,236,5,133,78,6]},{"1615254":[251,132,63,7,135,82,6,67,171,255,137,184,6]},{"1615268":[255,132,1,6,67,247,255,131,32,6,255]},{"1615872":[39]},{"1615874":[7,3]},{"1615877":[15,2,31,13,27,14,35]},{"1615885":[3,3,15,31,31,35]},{"1615892":[11,96]},{"1615895":[146]},{"1615897":[204]},{"1615899":[240,64,248,176,184,80,35]},{"1615907":[10,64,240,248,216,8]},{"1615914":[28]},{"1615916":[38,24,28,68,8,20,67,28]},{"1615925":[2,8,20,58,34,28,1,20,20,57]},{"1615936":[9,126]},{"1615939":[227,98,247,118,126]},{"1615945":[60,24,67,52,16,9]},{"1615952":[126,157,137,126,36,44,44]},{"1615961":[131,48]},{"1615965":[60,70]},{"1615968":[28,5,62]},{"1615973":[8,20,36,34,20]},{"1615979":[62,240,49,96]},{"1615984":[240,45,2]},{"1615988":[240,95]},{"1615992":[240,47,48]},{"1615996":[3,57,31,61,30,67,59,28,19,31,12,31,14,15]},{"1616011":[3]},{"1616013":[63,63,62,62,30,31,14,3,124,136,238,16,73,255]},{"1616028":[224,36,206]},{"1616032":[140,222,49,245,53,181,49,206,20,8,55,8,119,8,95,32,127,40,127,8,75]},{"1616054":[1]},{"1616056":[28,63,92,119,126,126,74,1]},{"1616066":[156,70]},{"1616069":[254,67,190]},{"1616073":[224,34,28]},{"1616078":[156,98,106,234,170,162,28,126]},{"1616087":[118,60,255,66,255,126,195,66,231,102,126,60,60]},{"1616101":[126,126,189,129,189,153,66,60,127,68]},{"1616112":[62,16,30]},{"1616116":[62]},{"1616118":[60]},{"1616120":[62]},{"1616122":[28]},{"1616124":[65,62,34,26,34,44,34,158,223,1,133,250,1,19,14]},{"1616140":[4]},{"1616142":[65,62,42,42,34,26,10,4,57,31,60,31,59,31,57,30,132,136,1]},{"1616162":[3,131,142,1,19,63,63,30,31,15,3,124,136,46,208,223,96,222,32,255]},{"1616183":[255,48,255,64,131,166,1,5,241,118,49,125,241,206,131,64,2,7,63,27,63,16,31]},{"1616207":[31,1,134,76,2,2,59,17,27,131,86,2,1,110,144,141,156,1,13,177,53,181,181,177,206,20,8,54,8,117,10,95,34,131,184,1]},{"1616244":[73,34]},{"1616247":[5,28,62,95,119,126,127,131,172,2,21,14]},{"1616260":[159]},{"1616262":[222]},{"1616264":[255]},{"1616266":[207]},{"1616268":[159]},{"1616270":[14]},{"1616273":[14,145,86,49,77,145,14,134,160,2,67,32,127,1]},{"1616288":[77,133,173,2,2,123,113,123,131,220,2]},{"1616300":[78,74]},{"1616303":[255,3,78]},{"1616308":[78,132,154,2]},{"1616313":[78,240,49,48]},{"1616318":[41]},{"1616320":[2,1]},{"1616323":[27,38]},{"1616326":[1,1,26,35]},{"1616331":[131,124]},{"1616334":[6,124]},{"1616337":[248]},{"1616339":[240]},{"1616341":[224,34]},{"1616344":[5,28,36,68,136,16,32,141,48,3,1,63,1,37]},{"1616359":[25,1,62,15]},{"1616364":[31,14,59,26,119,54,238,108,220,88,248,240,240,192,15,17,37,73,146,164,8,48,240,70,96,3]},{"1616391":[63,132,120,3,6,30,119,62,238,124,220,120,132,132,3,6,31,63,127,254,252,248,240,228,54]},{"1616417":[67,1]},{"1616420":[67,3]},{"1616424":[7,34]},{"1616427":[3,1,1,3,3,131,47,4,37]},{"1616437":[67,128]},{"1616440":[67,192]},{"1616443":[34]},{"1616445":[3,128,128,192,192,131,41,4,19,7]},{"1616456":[6,1,28,3,250,5,242,13,66,61,1,2,4,5,27,229,143,127,131,63,4,67,64,128,15,48,192,142,112,134,124,140,120]},{"1616490":[128,192,192,240,126,254,252,141,176,1,16]},{"1616503":[28,63,94,118,126,126,75]},{"1616511":[128]},{"1616513":[198]},{"1616515":[239]},{"1616517":[255,132,155,4,23,94]},{"1616524":[12]},{"1616526":[128,70,169,53,169,189,82,12,31]},{"1616536":[31,8,31,4,63,26,127,56,120,48,131,143,3,224,62,20,18,25,36,71,72,48]},{"1616559":[192]},{"1616561":[140]},{"1616563":[30]},{"1616565":[190]},{"1616567":[158]},{"1616569":[30]},{"1616571":[63]},{"1616573":[30]},{"1616575":[64,140,18,162,146,18,33,30,63]},{"1616585":[27,4,17,14,59,4,127]},{"1616593":[249]},{"1616595":[240]},{"1616597":[96]},{"1616599":[35,17,16,40,70,137,144,96,192,128,156]},{"1616611":[190]},{"1616613":[255,68]},{"1616616":[190,131,248,1,7,64,156,162,217,178,166,65,62,153,224,4,4,188]},{"1616635":[254]},{"1616637":[191,132,43,5,5,126]},{"1616644":[60]},{"1616646":[64,188,67,194,185,8,66,60,63]},{"1616656":[31,4,31,14,63,146,231,4,21,140]},{"1616667":[158]},{"1616669":[190]},{"1616671":[254]},{"1616673":[255]},{"1616675":[62]},{"1616677":[12]},{"1616679":[192,140,146,162,210,193,50,12,228,48]},{"1616691":[7,68]},{"1616694":[15,67,31]},{"1616698":[67,63]},{"1616701":[8,127,7,15,15,31,31,63,63,127,68]},{"1616713":[224,67,240]},{"1616717":[67,248]},{"1616720":[12,252]},{"1616723":[254,224,224,240,240,248,248,252,254,32,31,67,16,15,6,35,31,47,28,124,56,120,34]},{"1616748":[63,131,179,5,15,124,120]},{"1616756":[56,240,112,224,48,224,56,240,152,112,124,56,60,34]},{"1616772":[248,131,202,5,2,124,60]},{"1616780":[255]},{"1617920":[12,130,130,69,199,74,207,118,255,110,255,95,255,191,34,255,3]},{"1617939":[192,192,67,160,224,224,39,32,224,163,224,166,225,212,243,1,1,3,2,6,5,12,11,13,10,15,11,15,8,15,15,240,240,16,240,112,144,240,80,176,208,96,160,192,64,128,128,35]},{"1617988":[67,4,28,7,2,126,76,124,8,56,48,48,39]},{"1618002":[3,2,126,124,124,39]},{"1618009":[67,4,28,1,24,24,67,8,56,21,48,48,20,60,18,126,17,255,29,255,1,255,130,254,68,124,56,56,9,123,52,127,69,37,111,13,9,123,115,115]},{"1618051":[33,127,175,255,34,254,174,254,67,40,120,8,120,120]},{"1618067":[9,59,53,127,36,132,133]},{"1618075":[16,73,123,51,51]},{"1618082":[41,123,42,126,36,252,170,254,45,127,41,34,123,5]},{"1618098":[16,112,104,248,69,72,216,21,144,240,96,96]},{"1618112":[24,8,60,4,255,41,126,42,126,2,255,17,239,41,198,198,133,206]},{"1618131":[3,60,4,126,2,67,255,1,1,255,255,67,51]},{"1618145":[67,51,255,135,240]},{"1618151":[34,255]},{"1618154":[225,67,255,237,1,255,193,67,255,159,36,255,25,69,255,1,255,171,255,199,255,207,255,199,255,223,27,231,175,95,243,31,239,63,233,63,237,63,19,34,255,7,27,231,191,95,227,63,237,63,131,52,1]},{"1618208":[45,142,45,1]},{"1618213":[35,34,255,12,35,255,123,255,247,127,119,255,193,255,247,255,23,52,255]},{"1618233":[199,71,255,231,1,255,195,36,255,10,199,255,179,255,243,255,231,255,207,255,131,36,255,2,135,255,243,131,145,1,3,255,179,255,135,36,255,67,179,255,6,183,255,131,255,231,255,199,36,255,2,195,255,159,132,145,1,131,148,1,35,255,4,227,255,207,255,135,132,161,1,133,156,1,4,195,255,147,255,187,134,133,1,35,255,131,130,1]},{"1618322":[131,132,161,1,133,172,1,131,130,1,131,228,1]},{"1618336":[243,134,171,1,11,255,231,255,219,255,165,231,189,255,219,255,231,36,255,8,231,247,203,239,213,239,149,223,169,131,123,1,12,222,253,219,230,215,249,221,230,215,248,230,251,248,34,255,12,163,127,99,223,195,63,107,215,251,151,167,127,31,34,255,67,223,255,133,32,2,1,229,254,131,44,2,67,227,255,7,163,127,107,215,219,47,103,223,131,60,2,8,255,255,254,255,252,255,249,255,147,132,113,1,35,255,133,242,1,135,232,1,146,240]},{"1618452":[255,69,255,252,5,255,254,255,253,255,252,36,255,20,59,127,131,143,115,255,3,255,255,143,251,254,253,253,254,254,251,253,227,243,204,67,255,128,34,255,12,115,127,131,255,7,127,135,255,11,255,3,255,35,148,238]},{"1618509":[38,255,3,248,255,250,255,131,44,2,41,255,67,250,255,15]},{"1618527":[1,7,2,14,4,28,8,56,16,112,32,224,192,192,34]},{"1618543":[12,28,24,62,16,51,32,103,34,111,5,125,120,120,34]},{"1618559":[12,56,50,126,66,206,132,156,68,220,8,248,240,240,35,255,11,252,255,243,252,239,243,239,247,215,239,223,237,35,255,8,63,255,207,255,183,255,23,255,187,67,255,219,7,246,213,239,236,243,224,255,240,134,158,2,10,203,255,251,127,247,175,247,15,207,63,63,38,255,12,248,255,243,255,240,255,248,255,247,255,239,255,223,34,255,24,31,255,207,255,15,255,31,255,239,255,215,255,235,255,217,255,221,254,223,252,221,255,223,255,231,132,237,2,6,35,255,99,255,227,127,99,132,10,2,133,92,2,31,253,251,189,243,190,249,215,252,227,255,214,255,191,249,255,255,223,127,187,207,183,217,255,3,255,231,31,255,255,231,191,240,71,255,224,133,87,3,13,143,115,135,121,199,57,207,49,255,1,255,3,255,15,39,255]},{"1618745":[129,42,255,12,240,255,229,255,202,255,133,255,138,255,133,255,192,34,255,14,127,255,31,255,175,255,87,255,163,255,93,255,61,255,224,132,152,2,3,254,243,255,227,132,24,1,3,255,125,255,251,132,121,3,133,92,2,134,93,2]},{"1618806":[248,67,255,240,4,255,224,255,192,255,131,189,2,12,127,255,31,191,79,31,239,143,119,239,19,231,25,132,186,2,1,192,251,132,70,4,132,238,2,5,1,255,97,159,243,31,67,255,15,135,171,3,132,49,4,131,122,3,67,239,255,12,251,254,255,253,206,251,159,247,251,239,243,255,247,37,255,12,225,255,241,255,49,255,45,255,223,255,167,255,103,37,255]},{"1618900":[199,132,137,4,133,140,1,37,255,1,129,126,69,255]},{"1618915":[132,242,3,135,201,4,2]},{"1618923":[255]},{"1618925":[139,212,4,132,202,4,132,61,2,2,131,255,219,132,137,4,1,255,255,37]},{"1618946":[3,1,1,3,3,67,4,7,1,8,15,133]},{"1618960":[6,119,255,110,255,94,255,190,136,253,4,9,128,128,192,192,35,224,38,225,20,243,131,126,3,8,103,255,171,255,107,255,170,255,167,34,255,79,9,15]},{"1619001":[255,137,113,3,3,254,239,252,210,131,13]},{"1619013":[132,202,4]},{"1619017":[255,134,255,4,12,211,255,213,254,219,254,215,252,221,255,231,255,249,34,255,79,149,243,4,148,243,150,241,147,73,240,144,13,240,203,255,171,127,219,127,235,63,123,255,103,255,95,136,253,4,35]},{"1619069":[1,255]},{"1619072":[137,102,5,35]},{"1619077":[4,192]},{"1619080":[96,128,32,79,192,160]},{"1619087":[192,79,255]},{"1619091":[43,255,132,200,4,45,255]},{"1619099":[254,136,107,3,6,224,255,135,255,31,255,127,34,255,12,248,255,243,253,231,250,207,244,159,249,158,243,157,133,127,3,8,63,231,95,179,207,121,143,249,47,131,124,5,42,255,132,15,6,12,241,251,229,247,201,239,147,223,167,255,15,255,63,134,50,3]},{"1619166":[240,67,223,224,3,185,198,144,239,132,66,3,2,63,247,15,67,251,7,3,237,19,197,59,132,146,2,13,243,251,207,251,143,251,15,253,7,254,147,255,255,141,69,255,181,1,255,142,38,255,8,173,255,165,255,161,255,169,255,109,38,255,8,152,255,123,255,72,255,107,255,152,38,255]},{"1619241":[205,67,255,180,3,255,181,255,205,38,255,67,191,255,67,63,255,131,12]},{"1619261":[35,255,4,68,255,109,255,108,131,227,6,38,255,8,93,255,201,255,85,255,221,255,93,135,143,2,67,249,255,67,243,255,132,116,1,3,30,30,63,33,67,63,45,15,127,65,254,158,240,144,96,96,246,155,248,207,253,231,255,243,132,97,2,7,252,255,255,111,249,223,243,191,131,136,1]},{"1619337":[127,132,213,6,12,255,227,255,245,251,254,241,236,251,198,255,143,255,131,13,1,7,244,255,250,247,253,251,254,229,133,42,4,133,48,3,3,242,253,238,241,67,220,227,67,184,199,139,112,6,7,253,3,13,243,255,209,255,224,132,154,3,133,154,3,34,255,8,140,255,187,255,138,255,187,255,140,38,255]},{"1619417":[218,69,255,90,1,255,166,38,255,1,141,255,131,198,6,2,141,255,189,38,255,8,209,255,151,255,81,255,215,255,209,38,255,13,252,255,240,255,233,246,217,230,219,228,186,197,188,195,137,112,6,5,131,127,97,159,57,199,47]},{"1619477":[255]},{"1619968":[255,255,255,199,255,128,255,184,159,254,207,255,231,255,243,255,255,255,255,225,255,241,255,49,255,45,255,223,255,167,255,103,251,254,255,253,206,251,159,247,251,239,243,255,247,255,255,255,255,227,255,243,127,243,63,249,159,249,207,249,239,243,255,255,255,255,255,255,255,255,192,255,255,191,255,128,255,192,255,255,255,255,255,255,255,255,15,255,231,255,247,31,247,31,247,31,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,247,159,247,159,247,159,247,159,247,159,247,159,255,207,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,225,255,249,255,229,255,253,255,79,255,127,255,127,255,252,255,248,255,245,255,239,243,223,231,191,207,255,159,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,254,253,255,242,255,225,247,232,255,192,255,255,159,255,109,255,115,191,255,79,255,135,207,55,231,27,239,208,239,208,255,192,255,224,255,224,255,240,255,252,255,255,247,11,247,11,255,3,255,7,255,7,255,15,255,63,255,255,255,255,255,254,255,248,255,240,255,240,255,224,255,192,255,128,255,255,255,127,255,31,191,79,31,239,143,119,239,19,231,25,255,128,255,128,255,192,251,255,240,255,240,255,248,255,255,255,255,1,255,97,159,243,31,255,15,255,15,255,31,255,255,255,255,255,253,251,189,243,190,249,215,252,227,255,214,255,191,249,255,255,223,127,187,207,183,217,255,3,255,231,31,255,255,231,191,240,255,224,255,224,255,224,255,224,255,240,255,252,255,255,143,115,135,121,199,57,207,49,255,1,255,3,255,15,255,255,255,255,255,255,255,255,255,255,254,255,253,255,253,255,254,255,255,255,255,193,221,227,221,163,227,157,119,137,111,215,159,255,252,255,248,255,245,255,239,243,223,231,191,207,255,159,255,255,111,255,159,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,248,255,247,255,239,255,238,255,241,255,255,255,31,255,111,255,247,255,123,255,187,255,221,255,221,255,251,255,231,249,199,248,206,241,225,222,247,200,255,225,255,255,221,255,189,255,189,255,189,255,219,255,231,255,255,255,255,255,255,255,252,255,240,255,233,246,217,230,219,228,186,197,188,195,255,255,63,255,207,63,247,15,251,7,131,127,97,159,57,199,156,227,134,249,193,254,223,224,239,240,243,252,252,255,255,255,61,195,93,163,219,39,155,103,151,111,15,255,63,255,255,255,255,255,252,255,242,253,238,241,220,227,220,227,184,199,184,199,255,255,63,255,207,63,247,15,251,7,251,7,253,3,13,243,176,207,191,192,223,224,223,224,239,240,243,252,252,255,255,255,29,227,29,227,59,199,59,199,119,143,79,191,63,255,255,255,255,255,252,255,243,252,239,240,223,224,223,224,185,198,144,239,255,255,63,255,207,63,247,15,251,7,251,7,237,19,197,59,163,220,183,200,223,224,223,224,239,240,243,252,252,255,255,255,9,247,157,99,251,7,251,7,247,15,207,63,63,255,255,255,255,255,254,255,252,255,253,255,255,240,255,224,247,255,247,254,255,255,127,255,63,255,191,255,255,15,255,7,239,255,239,127,247,254,247,254,247,252,247,252,247,254,243,254,255,224,255,255,47,255,47,255,239,63,175,127,175,127,207,127,255,7,255,255,255,254,255,252,254,249,253,242,251,228,255,224,255,240,255,248,255,127,247,63,115,159,57,207,159,103,207,51,255,1,243,12,255,252,243,254,225,255,193,255,131,255,135,255,207,255,255,255,251,4,255,1,255,3,255,135,255,207,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,247,255,231,255,195,254,255,255,255,231,247,203,255,225,223,225,191,203,127,159,255,63,199,252,135,252,131,255,168,255,176,255,152,255,193,255,255,255,255,127,255,255,127,255,31,255,63,255,127,255,255,255,255,255,255,255,255,255,255,255,255,254,255,250,255,240,249,238,247,232,255,255,255,255,255,195,255,11,127,163,255,7,255,135,255,15,255,192,255,208,255,193,255,192,255,193,255,227,255,255,255,255,255,15,255,223,255,63,255,31,255,95,255,191,255,255,255,255,255,255,240,255,229,255,202,255,133,255,138,255,133,255,192,255,255,255,127,255,31,255,175,255,87,255,163,255,93,255,61,255,224,255,252,255,254,255,254,243,255,227,255,199,255,207,255,255,125,255,251,255,247,255,239,255,31,255,255,255,255,255,255,255,255,255,255,224,255,192,248,199,248,199,255,192,255,192,255,192,255,255,255,7,255,7,31,231,31,231,255,7,255,7,255,7,255,197,255,192,255,192,255,207,248,223,255,207,255,224,255,255,255,87,255,7,255,7,255,255,15,255,255,255,255,7,255,255,255,255,248,255,243,255,240,255,248,255,247,255,239,255,223,255,255,255,31,255,207,255,15,255,31,255,239,255,215,255,235,255,223,255,223,255,223,255,223,255,223,255,231,255,248,255,255,255,227,255,227,255,227,255,235,255,219,255,231,255,31,255,255,255,255,255,248,255,243,255,240,255,248,255,247,255,239,255,215,239,255,255,31,255,207,255,15,255,31,255,239,255,247,255,235,247,216,231,223,224,223,224,223,224,222,225,231,248,248,255,255,255,27,231,163,95,227,31,235,23,219,39,231,31,31,255,255,255,255,255,255,255,255,255,255,254,255,254,255,254,255,254,255,252,255,255,255,135,255,3,255,49,255,121,255,121,127,241,191,97,255,252,253,250,255,241,255,227,255,199,255,143,255,159,255,255,191,115,255,127,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,143,159,224,231,248,185,222,222,231,223,225,255,255,255,191,255,31,255,31,255,63,191,111,127,207,255,143,223,224,223,224,191,192,191,192,191,192,206,241,240,255,255,255,255,15,255,135,255,65,61,227,99,255,127,255,255,255,255,255,255,255,255,248,255,243,253,231,250,207,244,159,249,158,243,157,255,255,255,31,255,207,63,231,95,179,207,121,143,249,47,249,246,155,248,207,253,231,255,243,255,254,255,252,255,252,255,255,111,249,223,243,191,231,255,207,255,127,255,63,255,63,255,255,255,255,255,255,255,252,255,252,255,252,255,254,255,253,255,252,255,255,255,255,255,59,127,131,143,115,255,3,255,255,143,251,254,253,253,254,254,251,253,227,243,204,255,128,255,128,255,255,255,115,127,131,255,7,127,135,255,11,255,3,255,35,255,255,255,255,242,255,243,253,247,255,248,255,248,255,203,255,199,252,255,255,127,255,111,191,111,255,159,247,247,255,251,15,255,247,227,255,224,255,242,255,252,255,248,255,248,255,254,255,255,255,15,251,7,255,119,255,255,143,255,151,255,151,255,31,255,255,255,255,254,255,191,250,191,226,255,146,255,146,255,202,255,202,255,255,127,255,125,223,253,71,255,73,255,73,255,83,255,83,255,196,255,224,255,225,255,227,255,243,253,243,254,249,255,252,255,35,255,7,255,135,255,199,255,207,191,207,127,159,255,63,255,255,255,255,252,255,243,252,239,243,239,247,215,239,223,237,255,255,255,255,63,255,207,255,183,255,23,255,187,255,219,255,219,246,213,239,236,243,224,255,240,255,252,255,255,255,255,255,203,255,251,127,247,175,247,15,207,63,63,255,255,255,255,255,255,255,199,255,192,255,216,255,223,239,220,239,217,239,211,238,255,255,243,239,43,255,239,255,131,125,239,255,171,127,123,175,222,229,221,226,251,228,239,249,198,187,233,255,252,239,255,255,251,55,219,119,187,247,119,239,239,223,223,63,63,255,255,255,255,255,255,252,255,243,251,207,251,143,251,15,253,7,254,147,255,255,255,63,255,207,223,243,223,241,223,240,191,224,127,201,255,209,255,224,231,255,248,255,255,231,255,248,255,255,255,255,255,139,255,7,231,255,31,255,255,231,255,31,255,255,255,255,255,255,255,255,227,255,221,227,190,193,191,192,191,192,191,192,255,255,255,255,199,255,187,199,125,131,253,3,253,3,253,3,223,224,239,240,247,248,251,252,253,254,254,255,255,255,255,255,251,7,247,15,239,31,223,63,191,127,127,255,255,255,255,255,255,255,255,248,254,241,252,243,254,225,248,231,252,227,240,207,255,255,255,127,247,59,103,185,123,189,127,173,255,77,239,85,249,198,225,158,253,159,251,157,223,186,239,220,255,227,255,255,231,155,195,191,195,63,131,127,135,127,135,127,255,135,255,255,255,255,248,255,231,255,223,254,223,252,191,248,185,255,184,255,255,255,31,255,231,255,251,127,251,63,253,31,157,255,29,255,220,191,222,191,231,159,248,199,255,192,255,224,255,248,255,255,59,253,123,253,231,249,31,227,255,3,255,7,255,31,255,255,255,255,255,223,255,204,255,224,255,224,255,244,255,230,255,226,255,255,255,251,255,51,255,7,255,7,255,47,255,103,255,71,255,240,255,252,255,254,255,254,255,254,255,254,255,254,255,255,255,15,255,63,255,127,255,31,255,63,255,31,255,127,255,255]},{"1638400":[116]},{"1638402":[194]},{"1638404":[184]},{"1638406":[190]},{"1638408":[255]},{"1638410":[177]},{"1638412":[170]},{"1638414":[191]},{"1638416":[174]},{"1638418":[255]},{"1638420":[175]},{"1638422":[184]},{"1638424":[190]},{"1638426":[183]},{"1638428":[173,117]},{"1638431":[189]},{"1638433":[177]},{"1638435":[174]},{"1638437":[255]},{"1638439":[182]},{"1638441":[170]},{"1638443":[185]},{"1638445":[255]},{"1638447":[184]},{"1638449":[175,127,127,116]},{"1638454":[194]},{"1638456":[184]},{"1638458":[190]},{"1638460":[255]},{"1638462":[177]},{"1638464":[170]},{"1638466":[191]},{"1638468":[174]},{"1638470":[255]},{"1638472":[175]},{"1638474":[184]},{"1638476":[190]},{"1638478":[183]},{"1638480":[173,117]},{"1638483":[189]},{"1638485":[177]},{"1638487":[174]},{"1638489":[255]},{"1638491":[172]},{"1638493":[184]},{"1638495":[182]},{"1638497":[185]},{"1638499":[170]},{"1638501":[188]},{"1638503":[188]},{"1638505":[255]},{"1638507":[184]},{"1638509":[175,127,127,116]},{"1638514":[184]},{"1638516":[177]},{"1638518":[255]},{"1638520":[181]},{"1638522":[184]},{"1638524":[184]},{"1638526":[180]},{"1638528":[199]},{"1638530":[255]},{"1638532":[178]},{"1638534":[189]},{"1638536":[216]},{"1638538":[188,117]},{"1638541":[189]},{"1638543":[177]},{"1638545":[174]},{"1638547":[255]},{"1638549":[171]},{"1638551":[178]},{"1638553":[176]},{"1638555":[255]},{"1638557":[180]},{"1638559":[174]},{"1638561":[194]},{"1638563":[255]},{"1638565":[184]},{"1638567":[175,127,127,116]},{"1638572":[189]},{"1638574":[177]},{"1638576":[178]},{"1638578":[188]},{"1638580":[255]},{"1638582":[178]},{"1638584":[188]},{"1638586":[255]},{"1638588":[170,117]},{"1638591":[188]},{"1638593":[182]},{"1638595":[170]},{"1638597":[181]},{"1638599":[181]},{"1638601":[255]},{"1638603":[180]},{"1638605":[174]},{"1638607":[194]},{"1638609":[255]},{"1638611":[189]},{"1638613":[184,127,127,118]},{"1638618":[181]},{"1638620":[178]},{"1638622":[176]},{"1638624":[177]},{"1638626":[189]},{"1638628":[255]},{"1638630":[192]},{"1638632":[184]},{"1638634":[187]},{"1638636":[181]},{"1638638":[173,127,127,118]},{"1638643":[173]},{"1638645":[170]},{"1638647":[187]},{"1638649":[180]},{"1638651":[255]},{"1638653":[192]},{"1638655":[184]},{"1638657":[187]},{"1638659":[181]},{"1638661":[173,127,127,118]},{"1638666":[176]},{"1638668":[170]},{"1638670":[183]},{"1638672":[184]},{"1638674":[183]},{"1638676":[188]},{"1638678":[255]},{"1638680":[189]},{"1638682":[184]},{"1638684":[192]},{"1638686":[174]},{"1638688":[187,127,127,118]},{"1638693":[189]},{"1638695":[190]},{"1638697":[187]},{"1638699":[189]},{"1638701":[181]},{"1638703":[174]},{"1638705":[255]},{"1638707":[187]},{"1638709":[184]},{"1638711":[172]},{"1638713":[180,127,127,118]},{"1638718":[189]},{"1638720":[177]},{"1638722":[178]},{"1638724":[174]},{"1638726":[191]},{"1638728":[174]},{"1638730":[188]},{"1638732":[255]},{"1638734":[189]},{"1638736":[184]},{"1638738":[192]},{"1638740":[183,127,127,118]},{"1638745":[189]},{"1638747":[184]},{"1638749":[192]},{"1638751":[174]},{"1638753":[187]},{"1638755":[255]},{"1638757":[184]},{"1638759":[175]},{"1638761":[255]},{"1638763":[177]},{"1638765":[174]},{"1638767":[187]},{"1638769":[170,127,127,118]},{"1638774":[178]},{"1638776":[172]},{"1638778":[174]},{"1638780":[255]},{"1638782":[185]},{"1638784":[170]},{"1638786":[181]},{"1638788":[170]},{"1638790":[172]},{"1638792":[174,127,127,118]},{"1638797":[188]},{"1638799":[180]},{"1638801":[190]},{"1638803":[181]},{"1638805":[181]},{"1638807":[255]},{"1638809":[192]},{"1638811":[184]},{"1638813":[184]},{"1638815":[173]},{"1638817":[188,127,127,118]},{"1638822":[182]},{"1638824":[178]},{"1638826":[188]},{"1638828":[174]},{"1638830":[187]},{"1638832":[194]},{"1638834":[255]},{"1638836":[182]},{"1638838":[178]},{"1638840":[187]},{"1638842":[174,127,127,118]},{"1638847":[173]},{"1638849":[170]},{"1638851":[187]},{"1638853":[180]},{"1638855":[255]},{"1638857":[185]},{"1638859":[170]},{"1638861":[181]},{"1638863":[170]},{"1638865":[172]},{"1638867":[174,127,127,118]},{"1638872":[188]},{"1638874":[192]},{"1638876":[170]},{"1638878":[182]},{"1638880":[185]},{"1638882":[255]},{"1638884":[185]},{"1638886":[170]},{"1638888":[181]},{"1638890":[170]},{"1638892":[172]},{"1638894":[174,127,127,118]},{"1638899":[172]},{"1638901":[170]},{"1638903":[188]},{"1638905":[189]},{"1638907":[181]},{"1638909":[174]},{"1638911":[255]},{"1638913":[189]},{"1638915":[184]},{"1638917":[192]},{"1638919":[174]},{"1638921":[187,127,127,118]},{"1638926":[173]},{"1638928":[174]},{"1638930":[188]},{"1638932":[174]},{"1638934":[187]},{"1638936":[189]},{"1638938":[255]},{"1638940":[185]},{"1638942":[170]},{"1638944":[181]},{"1638946":[170]},{"1638948":[172]},{"1638950":[174,127,127,118]},{"1638955":[174]},{"1638957":[170]},{"1638959":[188]},{"1638961":[189]},{"1638963":[174]},{"1638965":[187]},{"1638967":[183]},{"1638969":[255]},{"1638971":[185]},{"1638973":[170]},{"1638975":[181]},{"1638977":[170]},{"1638979":[172]},{"1638981":[174,127,127,118]},{"1638986":[177]},{"1638988":[194]},{"1638990":[187]},{"1638992":[190]},{"1638994":[181]},{"1638996":[174]},{"1638998":[255]},{"1639000":[172]},{"1639002":[170]},{"1639004":[188]},{"1639006":[189]},{"1639008":[181]},{"1639010":[174,127,127,118]},{"1639015":[177]},{"1639017":[194]},{"1639019":[187]},{"1639021":[190]},{"1639023":[181]},{"1639025":[174]},{"1639027":[255]},{"1639029":[172]},{"1639031":[170]},{"1639033":[188]},{"1639035":[189]},{"1639037":[181]},{"1639039":[174,127,127,118]},{"1639044":[189]},{"1639046":[177]},{"1639048":[178]},{"1639050":[188]},{"1639052":[255]},{"1639054":[173]},{"1639056":[190]},{"1639058":[183]},{"1639060":[176]},{"1639062":[174]},{"1639064":[184]},{"1639066":[183,127,127]},{"1671170":[152,1,181,86]},{"1671178":[24]},{"1671180":[255,127]},{"1671186":[188,2,255,127]},{"1671194":[201,105,255,127]},{"1671202":[198,24,173,57]},{"1671210":[184]},{"1671212":[61,67]},{"1671218":[4,23,255,127]},{"1671228":[255,127]},{"1802304":[85,42,191,64,95,160,255]},{"1802312":[119,136,255]},{"1802316":[255]},{"1802318":[255]},{"1802368":[255]},{"1802370":[255]},{"1802372":[255]},{"1802374":[255]},{"1802376":[255]},{"1802378":[253,2,255]},{"1802382":[213,42]},{"1802394":[2]},{"1802398":[42]},{"1802432":[255,33,253,3,250,5,243,14,251,5,222,47,244,95,255,255]},{"1802450":[2]},{"1802452":[5]},{"1802454":[12]},{"1802456":[4]},{"1802458":[33]},{"1802460":[11]},{"1802496":[123,21,118,47,241,95,59,255,144,127,138,255,5,255,170,255,196]},{"1802514":[73,192,14]},{"1802518":[204]},{"1802520":[111]},{"1802522":[127]},{"1802524":[255]},{"1802526":[255]},{"1802530":[64]},{"1802560":[211,127,127,255,133,255,171,255,81,255,251,255,95,255,255,255,45]},{"1802578":[162]},{"1802580":[127]},{"1802582":[255]},{"1802584":[255]},{"1802586":[191]},{"1802588":[255]},{"1802590":[255]},{"1802624":[53,255,251,255,93,255,255,255,127,255,255,253,255,255,255,213,223]},{"1802642":[191]},{"1802644":[255]},{"1802646":[255]},{"1802648":[255]},{"1802650":[253,2,255]},{"1802654":[213,42]},{"1802688":[191,191,183,183,243,251,235,234,227,227,245,209,255,250,247,80,191,64,183,72,251,12,230,25,235,20,209,46,250,5,80,175]},{"1802727":[8]},{"1802752":[127,255,221,213,223,155,61,101,206,170,197,68,171,162,222]},{"1802768":[255]},{"1802770":[213,42,155,100,37,250,138,117,68,187,162,93]},{"1802783":[255]},{"1802790":[32]},{"1802816":[255,255,85,85,170,170,120,16,170,168,68]},{"1802828":[170]},{"1802830":[241]},{"1802832":[255]},{"1802834":[85,170,170,85,16,239,168,87]},{"1802843":[255]},{"1802845":[255]},{"1802847":[255]},{"1802880":[206,170,201]},{"1802884":[166,162,40]},{"1802888":[162,128,70]},{"1802892":[33]},{"1802894":[12,2,138,117]},{"1802899":[255,162,93]},{"1802903":[255,128,127]},{"1802907":[255]},{"1802909":[255]},{"1802911":[255]},{"1802944":[139,10,183,4,163,34,89,2,1,6,4,46,65,24,129,54,10,245,4,251,34,221,2,255]},{"1802969":[255,36,243,28,255,44,247]},{"1802983":[8]},{"1802986":[8,4]},{"1802989":[12]},{"1802991":[128]},{"1803008":[172,161,133,48,223]},{"1803014":[49]},{"1803016":[84]},{"1803018":[19,168,21,64,174,64,153,127,50,245]},{"1803029":[255,136,119]},{"1803033":[255,40,255]},{"1803037":[255]},{"1803039":[255]},{"1803042":[26]},{"1803046":[136]},{"1803051":[2]},{"1803055":[170]},{"1803072":[85]},{"1803074":[8,128,68]},{"1803078":[36,2,84,1,232,18,65,12,186,68]},{"1803089":[255,163,220]},{"1803093":[254,138,119,1,255,2,255,52,207]},{"1803103":[255]},{"1803106":[34]},{"1803109":[1,136,32]},{"1803115":[168]},{"1803117":[64]},{"1803119":[186]},{"1803136":[215,129,196,128,144,193,132,1,32,21,209,42,108,17,171,68,129,127,170,213,197,123,43,213,21,255,42,255,17,255,4,255]},{"1803170":[170]},{"1803172":[4,128,42,128]},{"1803179":[128]},{"1803181":[68]},{"1803183":[170]},{"1803200":[82,17,68,149,1,196,128,36]},{"1803209":[5,80,139,132,81,170,85,16,248,177,213,196,239,166,117,21,239,171,223,81,255,85,255,7]},{"1803234":[40,2,4,24,2,8,16]},{"1803242":[32]},{"1803245":[4]},{"1803247":[170]},{"1803264":[85,17,97,81,144,1,32]},{"1803273":[84,160,93,248,21,226,53]},{"1803281":[238,155,85,5,155,138,117,85,254,223,125,213,63,53,247,17]},{"1803298":[138,32,36,80,138,32,1]},{"1803306":[2,32,16,40,56,202]},{"1803328":[125,86,84,1,42,17,4,69,1,70,2,117,102,217,232,23,71,238,171,85,85,187,239,85,86,239,253,119,249,223,119,159,16]},{"1803362":[170]},{"1803364":[68]},{"1803366":[170]},{"1803368":[16,1,136,2,64,6]},{"1803375":[136]},{"1803392":[254,87,20,21,169,17,149,85]},{"1803401":[196,128,117,192,36,184,93,23,189,187,81,84,186,126,212,213,238,127,245,37,230,71,229,64]},{"1803426":[174]},{"1803428":[69]},{"1803430":[43,128,17]},{"1803434":[10,128,25,192,2,184]},{"1803456":[95,159,21,85,56,147,1,80,18,58,112,65,20,42,28,1,218,176,15,5,166,139,255,80,107,170,243,89,115,182,235,21,5]},{"1803490":[27,224,84,1,174]},{"1803496":[77,16,134,24,65,12,226,20]},{"1803520":[255,247,93,157,251,217,85,85,191,15,58,64,106,170,6,80,166,44,178,208,132,34,250,80,126,142,239,80,179,232,255,80,81]},{"1803554":[47]},{"1803556":[93,128,175]},{"1803560":[65]},{"1803562":[137,20,21,66,169]},{"1803584":[254,254,252,252,255,223,87,87,255,119,85,85,171,171,49,1,171,2,71,68,2,32,232,64]},{"1803609":[136,251,81,253,169,239,17,85]},{"1803618":[187]},{"1803620":[221]},{"1803622":[191]},{"1803624":[119]},{"1803626":[174]},{"1803628":[86]},{"1803630":[206,16]},{"1803648":[223,79,247,199,251,251,117,117,253,251,113,21,107,139,5,5,26,128,56]},{"1803668":[46,8,142,4,143,11,238,4,244,128,250]},{"1803680":[117]},{"1803682":[239]},{"1803684":[213]},{"1803686":[251]},{"1803688":[112]},{"1803690":[155,96,31,32,255]},{"1803712":[253,255,252,253,255,255,255,255,255,255,253,253,255,251,101,81,10]},{"1803730":[5,5,32]},{"1803736":[136]},{"1803738":[2]},{"1803740":[38,2,206,64,87]},{"1803746":[248,2,223]},{"1803750":[255]},{"1803752":[119]},{"1803754":[255]},{"1803756":[217,4,167,56]},{"1803776":[251,251,79,239,159,207,86,86,253,253,255,255,255,255,95,95,232,68,165,176,114,96,168,17]},{"1803801":[2]},{"1803806":[160]},{"1803808":[61]},{"1803810":[63,64,255]},{"1803814":[255]},{"1803816":[119]},{"1803818":[255]},{"1803820":[253]},{"1803822":[255]},{"1803840":[186,190,246,226,253,231,253,254,253,255,239,239,254,254,254,254,172,69,92,1,155,1,7,4,170]},{"1803867":[16,42,1]},{"1803871":[1,235]},{"1803874":[227,12,198]},{"1803878":[248,2,255]},{"1803882":[255]},{"1803884":[255]},{"1803886":[255]},{"1803904":[255,255,205,237,255,255,235,235,190,190,239,239,254,254,250,250,255]},{"1803922":[37,50,3]},{"1803926":[1,20,174,65,69,16,170,1,16,5,255]},{"1803938":[223]},{"1803940":[255]},{"1803942":[255]},{"1803944":[255]},{"1803946":[255]},{"1803948":[255]},{"1803950":[255]},{"1803968":[251,251,247,247,223,223,171,175,171,174,252,237,181,191,188,191,251,4,213,8,138,32,7,87,173,82,83]},{"1803996":[138,81,7,70,255]},{"1804002":[255]},{"1804004":[255]},{"1804006":[248]},{"1804008":[252]},{"1804010":[236,19,255]},{"1804014":[249]},{"1804032":[255,255,239,247,255,103,27,91,187,59,111,55,56,138,105,219,239]},{"1804050":[95]},{"1804052":[191]},{"1804054":[211,164,171,236,93,196,254,201,167,32,255]},{"1804066":[239,16,103,8,63,192,23,64,59,192,147,108,28,255]},{"1804096":[245,170,254,229,255,250,255,252,255,255,127,127,127,119,239,95,160,95,228,27,250,5,252,3,255]},{"1804122":[127,128,47,136,183,64,255]},{"1804130":[255]},{"1804132":[255]},{"1804134":[255]},{"1804136":[255]},{"1804138":[255]},{"1804140":[255]},{"1804142":[255,32]},{"1804160":[81,174,174,253,209,254,243,227,247,239,122,125,125,127,255,254]},{"1804177":[255,172,83,220,47,239,28,231,24,120,135,61,130,254,1,255]},{"1804194":[255]},{"1804196":[255]},{"1804198":[255]},{"1804200":[255]},{"1804202":[255]},{"1804204":[255]},{"1804206":[255]},{"1804224":[16,239,170,213,68,251,234,117,81,174,234,213,244,251,234,125]},{"1804241":[85,128,127,64,189,96,159]},{"1804249":[253,192,63,240,15,104,151,85]},{"1804258":[255]},{"1804260":[253]},{"1804262":[255]},{"1804264":[253]},{"1804266":[255]},{"1804268":[255]},{"1804270":[255]},{"1804288":[5,253,34,215,200,253,234,85]},{"1804297":[255,162,93,84,171,170,85,3,22]},{"1804307":[233,136,49,64,175]},{"1804313":[81]},{"1804315":[250]},{"1804317":[221]},{"1804319":[255,23]},{"1804322":[233,6,251,4,239]},{"1804328":[81]},{"1804330":[250]},{"1804332":[221]},{"1804334":[255]},{"1804352":[255]},{"1804354":[253,2,255]},{"1804358":[245,59,225,47,218,36,229,26,64,180]},{"1804370":[2]},{"1804374":[10]},{"1804376":[15,16,63,20,17,1,183,15]},{"1804394":[16]},{"1804396":[4,6,5,1]},{"1804412":[8]},{"1804414":[2]},{"1804416":[254,1,215,43,186,71,84,175,226,95,42,127,77,111,191,95,1]},{"1804434":[40]},{"1804436":[69]},{"1804438":[171]},{"1804440":[29]},{"1804442":[127,128,79,80,63]},{"1804460":[192]},{"1804462":[192]},{"1804476":[32]},{"1804480":[198,127,8,255,125,255,43,255,21,255,191,255,213,249,249,254,57]},{"1804498":[247]},{"1804500":[135]},{"1804502":[223]},{"1804504":[255]},{"1804506":[255]},{"1804508":[255]},{"1804510":[252,5]},{"1804526":[4,2]},{"1804544":[21,255,235,255,85,255,143,255,7,239,255,255,159,203,191,183,255]},{"1804562":[191]},{"1804564":[255]},{"1804566":[191,32,239,112,189,64,139,116,21,72]},{"1804584":[96]},{"1804587":[32]},{"1804598":[64]},{"1804602":[2]},{"1804606":[162]},{"1804608":[127,255,255,255,255,255,127,77,191,238,191,21,170,122,117]},{"1804624":[255]},{"1804626":[255]},{"1804628":[255]},{"1804630":[69,178,238,81,5,154,106,213]},{"1804639":[255]},{"1804649":[32,96]},{"1804653":[32]},{"1804662":[8]},{"1804668":[16]},{"1804672":[255,254,249,208,248,184,253,144,251,168,255]},{"1804684":[255]},{"1804686":[252,3,254,1,208,47,184,71,16,111,168,87]},{"1804699":[255]},{"1804701":[255]},{"1804703":[255]},{"1804726":[128]},{"1804734":[3]},{"1804736":[252,168,216,67,248,130,152,7,160,30,85,161,174,1,36,15,168,87,66,191,128,127,4,253,4,252,1,252]},{"1804765":[255,4,243]},{"1804774":[4,2,5,2]},{"1804779":[3]},{"1804782":[8,4]},{"1804792":[24]},{"1804794":[160]},{"1804796":[1]},{"1804798":[3]},{"1804800":[140,131,210,1,225]},{"1804806":[162,8,161]},{"1804810":[1,46]},{"1804813":[125]},{"1804815":[255,128,127]},{"1804819":[255]},{"1804821":[255]},{"1804823":[255]},{"1804825":[255]},{"1804827":[255]},{"1804829":[255]},{"1804831":[255]},{"1804835":[2]},{"1804858":[4]},{"1804864":[8]},{"1804866":[136,2,21,2,2,172,84,32,2,251,160,95]},{"1804879":[255]},{"1804881":[255]},{"1804883":[255,3,255]},{"1804887":[252,1,252]},{"1804891":[255]},{"1804893":[255]},{"1804895":[255]},{"1804900":[2,1,2]},{"1804904":[3,1]},{"1804918":[1]},{"1804920":[32]},{"1804922":[66]},{"1804924":[2]},{"1804928":[34,7,71,175,145,197,155,229,160,215,34,221]},{"1804941":[255,138,127,2,255,5,253,131,124,1,126,128,127]},{"1804955":[255]},{"1804957":[255]},{"1804959":[255,2]},{"1804962":[5,2]},{"1804965":[129]},{"1804967":[139]},{"1804969":[128]},{"1804971":[34]},{"1804975":[128]},{"1804990":[10]},{"1804992":[82,21,66,153,10,85,138,117]},{"1805001":[255,34,221]},{"1805005":[255,34,85,48,223,32,223]},{"1805013":[127,32,127]},{"1805017":[255]},{"1805019":[255]},{"1805021":[255]},{"1805023":[119,16]},{"1805027":[2,128]},{"1805031":[138]},{"1805035":[34]},{"1805038":[136,170]},{"1805056":[32,85,34,221,160,95,170,85,4,251,168,80,69,188,8,81]},{"1805073":[255,8,255,4,255]},{"1805079":[255]},{"1805081":[255,5,248,6,253,12,89]},{"1805091":[34]},{"1805095":[170]},{"1805097":[4]},{"1805099":[170,4,65,164,166]},{"1805118":[8]},{"1805120":[129,116,234,21,103,152,170,85,17,238,170,85,85,170,1,80,16,255]},{"1805139":[255]},{"1805141":[255]},{"1805143":[255]},{"1805145":[255]},{"1805147":[255]},{"1805149":[255,4,81]},{"1805153":[1]},{"1805155":[170]},{"1805157":[69]},{"1805159":[170]},{"1805161":[17]},{"1805163":[170]},{"1805165":[85,170,171]},{"1805184":[3,116,170,85,69,186,174,81,85,170,136,85,85,162,68,1,20,255,1,255,16,255]},{"1805207":[255]},{"1805209":[255]},{"1805211":[221,8,247,16,69]},{"1805217":[1]},{"1805219":[170]},{"1805221":[69]},{"1805223":[174]},{"1805225":[85,34,170]},{"1805229":[85,170,238]},{"1805248":[17,110,171,84,85,170,231]},{"1805256":[79,136,135,64,85,170,84]},{"1805264":[68,255,20,255]},{"1805269":[255,16,231,44,203,16,199]},{"1805277":[255,1,84]},{"1805281":[17]},{"1805283":[171]},{"1805285":[85,8,239,8,83,40,175]},{"1805293":[85,170,254]},{"1805312":[81,46,187,68,85,170,255]},{"1805320":[55,136,223]},{"1805324":[223,32,69]},{"1805328":[20,239,4,255]},{"1805333":[255,32,223,64,191]},{"1805339":[223]},{"1805341":[255,18,69]},{"1805345":[65]},{"1805347":[187]},{"1805349":[85]},{"1805351":[223]},{"1805353":[55,32,255]},{"1805357":[223,168,237]},{"1805377":[87,170,85,85,170,255]},{"1805384":[115,144,231,4,255]},{"1805390":[103]},{"1805392":[87,255,85,255,138,255]},{"1805399":[255,16,243,12,227,8,247,16,103]},{"1805411":[170]},{"1805413":[85]},{"1805415":[255,24,103,8,255]},{"1805421":[247,136,239]},{"1805440":[48,198,218,21,237,98,247]},{"1805448":[127,128,253]},{"1805452":[255]},{"1805454":[117]},{"1805456":[223,230,53,223,114,239,32,215,149,234,28,225,3,252,1,116,1]},{"1805474":[16,234,96,157,8,223]},{"1805481":[106,2,227]},{"1805485":[252,138,254]},{"1805504":[8,98,14,80,16,170,246,1,255,64,31,128,51,160,69]},{"1805520":[119,234,245,90,239,186,9,247,64,255,8,87,244,163,21,64,17,12,161,10,69,16,8,246,64,191]},{"1805547":[247,160,15,170,250]},{"1805564":[64]},{"1805568":[19,106,62,64,31,162,242]},{"1805576":[195]},{"1805578":[175,48,167,64,254]},{"1805584":[111,250,206,112,232,179,7,240,80,131,228,107,41,230,136,118,5,16,129,56,68,21,9,254,36,155,32,123,88,198]},{"1805615":[119]},{"1805632":[250]},{"1805634":[10,192,98,162,96,16,96,138,240]},{"1805644":[193]},{"1805646":[64,128,251]},{"1805650":[119,168,223,162,159,112,191,202,63,192,190,65,191,192,5,16,145,238,29]},{"1805670":[143,96,21,64,15,208,62,65,63,64]},{"1805694":[128]},{"1805696":[174,174,1,1,160,160,6]},{"1805704":[136,136,64]},{"1805708":[192]},{"1805710":[224]},{"1805712":[83,2,254]},{"1805716":[255,160,255]},{"1805720":[255,136,191,64,127,128,31,224,253]},{"1805730":[255]},{"1805732":[95]},{"1805734":[249,6,119]},{"1805738":[191,64,63,192,31,224]},{"1805760":[143,147,1,65,163,155,53,37,126,22,4,4,10,10,32]},{"1805776":[76]},{"1805778":[254,64,108]},{"1805782":[202,16,233]},{"1805786":[251]},{"1805788":[245]},{"1805790":[255]},{"1805792":[227,20,191]},{"1805796":[231,24,215,48,175,80,255]},{"1805804":[255]},{"1805806":[223]},{"1805814":[8]},{"1805824":[143,207,47,7,155,179,47,27,163,163,101,69,171,171,1,1,112,32,240,8,116,48,248]},{"1805848":[116,56,186]},{"1805852":[84]},{"1805854":[254]},{"1805856":[191,64,167,88,219,52,199,4,195,44,199,56,255]},{"1805870":[255]},{"1805878":[56]},{"1805888":[125,125,251,251,253,253,255,255,255,255,223,223,255,255,23,55,8,130]},{"1805907":[4]},{"1805909":[2]},{"1805914":[32]},{"1805918":[232,16,255]},{"1805922":[255]},{"1805924":[255]},{"1805926":[255]},{"1805928":[255]},{"1805930":[255]},{"1805932":[255]},{"1805934":[223,32]},{"1805952":[187,187,170,170,23,23,62,94,213,37,222,152,255,176,121,56,42,68]},{"1805971":[85,2,232,224,1,240,74,102,1,73,128,75,14,127]},{"1805986":[255]},{"1805988":[255]},{"1805990":[159,64,15,48,185,4,182]},{"1805998":[240,4]},{"1806014":[8]},{"1806016":[111,110,175,175,234,170,184,248,232,137,193,192,115,114,222,254,43,146,4,80,202,53,64,71,233,22,35,28,1,140,32,1,253,1,255]},{"1806052":[223,64,223,32,159,64,255,1,254,1,255]},{"1806080":[214,241,186,121,21,16,47,66,8,81,218,16,193,218,144,150,178,14,159,39,81,200,165,60,249,249,239,29,31,44,14,105,60,255,63,127,154,89,33,231,247,88,181,66,254,1,251,4]},{"1806132":[36]},{"1806134":[24]},{"1806144":[95,127,117,213,251,247,213,217,189,57,19,82,234,232,230,134,47,64,165,74,59]},{"1806166":[91,34,189,66,209,172,10,213,96,25,255]},{"1806178":[95,160,241,14,245,10,251,128,254]},{"1806188":[252,3,156,99]},{"1806208":[255,255,255,255,255,255,253,253,252,252,93,221,126,126,159,95,255]},{"1806226":[255]},{"1806228":[255]},{"1806230":[253,2,252,3,157,162,190,193,223,160,255]},{"1806242":[255]},{"1806244":[255]},{"1806246":[255]},{"1806248":[255]},{"1806250":[255]},{"1806252":[127]},{"1806254":[127,128]},{"1806272":[209,190,251,255,253,255,255,251,255,238,127,117,191,186,255,255,144,111,251,4,253,2,251,4,238,17,117,138,58,69,127]},{"1806304":[255]},{"1806306":[255]},{"1806308":[255]},{"1806310":[255]},{"1806312":[255]},{"1806314":[255]},{"1806316":[255]},{"1806318":[255]},{"1806336":[17,238,170,221,132,59,234,245,81,254,250,239,213,254,254,239]},{"1806353":[253,136,119,128,255,224,31,80,175,234,21,212,43,238,17,253]},{"1806370":[255]},{"1806372":[255]},{"1806374":[255]},{"1806376":[255]},{"1806378":[255]},{"1806380":[255]},{"1806382":[255]},{"1806400":[243,28,18,251,16,177,237,255,22,255,190,254,85,255,191,253,12,5,232,8,178,76,253,1,254,1,254,1,254]},{"1806430":[245,2,5,1,4,3,1]},{"1806438":[1]},{"1806448":[2]},{"1806450":[4]},{"1806454":[2]},{"1806460":[1]},{"1806462":[8]},{"1806464":[49,191,11,159,21,31,31,191,119,126,255,127,223,235,255,233,127]},{"1806482":[95,32,223,32,151,224,126,129,93,128,234,20,65,22]},{"1806497":[128,128]},{"1806518":[8]},{"1806522":[34]},{"1806524":[1]},{"1806526":[168]},{"1806528":[87,255,190,252,94,251,255,208,127,171,252,129,248,142,248,165,248,6,253,2,250,5,80,47,170,84]},{"1806555":[127,128,119,2,93]},{"1806576":[1]},{"1806580":[1]},{"1806582":[128]},{"1806584":[1]},{"1806586":[129]},{"1806588":[12]},{"1806590":[161]},{"1806592":[127,58,127,244,127,57,119,198,253,34,252,131,128,255]},{"1806607":[255,58,197,84,139,40,198]},{"1806615":[185]},{"1806617":[223]},{"1806619":[127]},{"1806621":[127]},{"1806623":[255]},{"1806642":[32]},{"1806644":[17]},{"1806646":[198]},{"1806648":[34]},{"1806650":[131]},{"1806652":[255]},{"1806654":[255]},{"1806656":[255,172,255,32,252,19]},{"1806663":[242]},{"1806665":[255]},{"1806667":[255]},{"1806669":[255]},{"1806671":[255,168,83]},{"1806675":[223]},{"1806677":[239]},{"1806679":[255]},{"1806681":[255]},{"1806683":[255]},{"1806685":[255]},{"1806687":[255]},{"1806704":[4]},{"1806706":[32]},{"1806708":[19]},{"1806710":[242]},{"1806712":[255]},{"1806714":[213]},{"1806716":[186]},{"1806718":[85]},{"1806720":[249,66,16,228]},{"1806725":[230]},{"1806727":[255]},{"1806729":[255,34,255]},{"1806733":[251,162,243]},{"1806737":[191]},{"1806739":[255]},{"1806741":[255]},{"1806743":[255]},{"1806745":[255]},{"1806747":[255]},{"1806749":[243,8,251]},{"1806764":[12]},{"1806766":[4,8,66]},{"1806770":[228]},{"1806772":[230]},{"1806774":[213]},{"1806776":[170]},{"1806778":[98]},{"1806780":[164]},{"1806782":[226]},{"1806784":[2,189,1,38]},{"1806789":[255,10,255]},{"1806793":[255,170,255,84,255,170,255,12,255,8,247]},{"1806805":[255]},{"1806807":[255]},{"1806809":[255]},{"1806811":[255]},{"1806813":[255]},{"1806815":[255,4,8]},{"1806832":[160]},{"1806836":[170]},{"1806838":[10]},{"1806842":[170]},{"1806844":[84]},{"1806846":[170]},{"1806848":[168,87,68,187]},{"1806853":[255,170,255,17,255,168,252,80,250,69,85]},{"1806865":[255]},{"1806867":[255]},{"1806869":[255]},{"1806871":[255,1,255,3,252,5,250,170,85]},{"1806888":[1]},{"1806896":[2]},{"1806900":[160]},{"1806902":[170]},{"1806904":[16]},{"1806906":[168]},{"1806908":[80]},{"1806910":[69]},{"1806912":[40,215,2,255]},{"1806917":[254,196,212,20,190,17,85,192,234,21,21]},{"1806929":[255]},{"1806931":[255,1,254,171,212,1,62,170,21,213,106,234,21]},{"1806950":[128]},{"1806952":[64,128,192,128,64,128]},{"1806960":[128]},{"1806962":[2]},{"1806966":[68]},{"1806968":[84]},{"1806970":[17]},{"1806974":[21]},{"1806977":[255,32,125,4,62,4,21]},{"1806985":[42,9,1,168,178]},{"1806991":[8]},{"1806993":[255,128,125,193,62,96,21,213,42,254,9,77,162,247]},{"1807010":[2,2]},{"1807014":[138,10]},{"1807020":[16,8,8]},{"1807026":[32]},{"1807028":[4]},{"1807030":[132]},{"1807034":[9]},{"1807036":[184]},{"1807038":[8]},{"1807041":[255]},{"1807043":[93,1,27,1,177]},{"1807049":[170]},{"1807052":[162,162]},{"1807057":[255,128,93,164,27,4,17,85,170,221]},{"1807068":[93,162,119]},{"1807074":[34,34,64]},{"1807078":[234,10]},{"1807082":[34,34]},{"1807086":[136,136]},{"1807092":[65]},{"1807094":[225]},{"1807100":[162]},{"1807104":[4,224]},{"1807107":[81,32,168,64,64,34,170,32,192,160,160]},{"1807119":[128,27,224,4,81,119,168,85,64,85,170,117,96,255,128,85]},{"1807136":[4,4,170,170,32]},{"1807142":[234,138]},{"1807146":[138,74,192,32,170,42]},{"1807158":[32]},{"1807160":[34]},{"1807162":[160]},{"1807164":[64]},{"1807166":[128]},{"1807168":[22,238,4,84,1,170]},{"1807175":[16]},{"1807177":[136]},{"1807183":[48,7,254,5,84,16,171,69,16,118,136,85]},{"1807196":[187]},{"1807198":[69]},{"1807200":[6,16,172,170,68,69,170,170,1,1,170,170,68,68,186,138]},{"1807230":[48]},{"1807232":[85,170,16,68,1,42,72,12,10,158,8,12]},{"1807245":[1]},{"1807247":[69]},{"1807249":[255,1,84,208,43,21,64,106,142,89,8,170]},{"1807262":[16]},{"1807265":[85,170,186,4,5,170,230,31,5,174,162,85,84,239,170]},{"1807286":[8]},{"1807288":[16]},{"1807290":[4]},{"1807292":[1]},{"1807294":[69]},{"1807296":[86,168,21]},{"1807300":[41]},{"1807302":[80,68,4]},{"1807306":[1]},{"1807309":[112,96,116,1,254,192,21,138,1,97,64,170,4,69]},{"1807324":[138]},{"1807326":[65,64]},{"1807329":[86,42,63,116,101,238,154,81,85,186,186,117,5,254,138]},{"1807348":[16]},{"1807350":[36]},{"1807356":[112]},{"1807358":[52]},{"1807360":[255,224,5,16,8]},{"1807366":[81,1,8,8,12,69,24,152,1,21,232,231,64,21,178,8,17,65,171,8,4,4,58,24,1,1,224,23,186,191,69,77,175,238,92,85,247,170,221,69,255,234]},{"1807418":[81]},{"1807420":[128]},{"1807422":[20]},{"1807424":[239,24,65,8,137,128,193,145,128,129,69,1,8]},{"1807438":[17,17,56,215,28,81,171,136,73,17,168,129,69,1,170]},{"1807454":[17,17]},{"1807457":[223,162,251,212,72,187,62,213,87,187,186,85,85,255,238]},{"1807476":[20]},{"1807478":[128]},{"1807488":[255]},{"1807490":[220]},{"1807492":[154,48,17,16,34,2,5,5,170]},{"1807505":[255,25,196,112,154,49,48,170,2,5,5,170]},{"1807521":[255,34,231,21,238,158,238,87,85,255,250,85,85,255,255]},{"1807540":[1]},{"1807552":[236,3,68,129,15,8,85]},{"1807560":[170]},{"1807562":[85]},{"1807564":[170]},{"1807566":[17,16,26,230,18,198,157,138,197]},{"1807576":[162,8,85]},{"1807580":[170]},{"1807582":[17,16,2,245,168,255,120,210,26,186,85,93,170,170,85,85,254,238]},{"1807616":[254]},{"1807618":[79]},{"1807620":[226,1,98,14,165,4,21,19,152,53,131,8,152,102,4,67,120,129,118,9,179,15,176,16,176,2,145,53,1,103,168,251,7,157,175,152,71,88,16,239,64,127,241,14]},{"1807668":[2]},{"1807670":[39]},{"1807672":[7]},{"1807674":[31]},{"1807676":[63]},{"1807678":[255]},{"1807680":[245]},{"1807682":[255]},{"1807684":[254]},{"1807686":[215,128,63,192,149,128,251]},{"1807694":[85,128,138,117,160,95,113,142,83,132,189,194,85]},{"1807708":[59,128,85,128,10,117]},{"1807715":[95]},{"1807717":[143,40,172,192,106,42,239,68,166,42,170]},{"1807736":[128]},{"1807738":[192]},{"1807740":[192]},{"1807742":[128]},{"1807746":[192]},{"1807748":[169]},{"1807750":[247]},{"1807752":[251]},{"1807754":[209,128,191]},{"1807758":[21,16,255]},{"1807762":[63,192,214,41,247]},{"1807768":[255]},{"1807770":[215,128,255]},{"1807774":[85,16,255]},{"1807778":[63,192,86,169,8,125,2,229,40,63]},{"1807789":[111,170,239]},{"1807802":[128]},{"1807806":[16]},{"1807808":[64,160,32]},{"1807812":[3]},{"1807814":[173]},{"1807816":[254]},{"1807818":[221]},{"1807820":[190]},{"1807822":[87,96,255]},{"1807826":[255]},{"1807828":[255]},{"1807830":[127,128,175,80,215,8,187,4,83,100,143,112,223]},{"1807844":[252,3,82,172,1,254,34,253,1,222,168,255]},{"1807872":[184,136,34,32,128,2,108]},{"1807880":[224,8,240]},{"1807884":[252]},{"1807886":[255]},{"1807888":[119]},{"1807890":[255,32,255]},{"1807894":[255,128,255]},{"1807898":[255]},{"1807900":[255]},{"1807902":[127,128,207,16,221,2,191,64,83,172,31,224,15,240,3,252]},{"1807919":[255]},{"1807922":[32]},{"1807936":[183,159,9,69,226,34,192,1]},{"1807945":[170]},{"1807947":[4]},{"1807949":[10,152]},{"1807952":[104,16,254]},{"1807956":[221]},{"1807958":[255]},{"1807960":[255]},{"1807962":[255]},{"1807964":[255]},{"1807966":[255]},{"1807968":[255]},{"1807970":[247,8,63,192,63,192,255]},{"1807978":[255]},{"1807980":[255]},{"1807982":[103,152]},{"1808000":[255,253,211,221,186,187,100,49,127,138,100,21,2,170,1]},{"1808016":[6,4,42]},{"1808020":[69,14,251,36,240,5,251]},{"1808028":[253]},{"1808030":[254,1,249]},{"1808034":[243,12,251,4,159,64,143,112,159,96,255]},{"1808046":[255]},{"1808048":[4]},{"1808054":[36]},{"1808056":[5]},{"1808062":[1]},{"1808064":[84,84,186,186,221,221,119,119,255,255,71,85,51,159,5,1]},{"1808081":[171]},{"1808083":[69]},{"1808085":[34,136]},{"1808090":[184,2,252,16,250,52,255]},{"1808098":[255]},{"1808100":[255]},{"1808102":[255]},{"1808104":[255]},{"1808106":[255]},{"1808108":[207]},{"1808110":[207,48]},{"1808122":[2]},{"1808124":[16]},{"1808126":[4]},{"1808128":[142,130,133,141,93,90,249,247,215,215,254,254,241,233,94,94,140,113,10,116,7,160,6,8]},{"1808153":[40]},{"1808155":[1,28,10,160,21,247]},{"1808162":[251]},{"1808164":[250,5,255]},{"1808168":[255]},{"1808170":[255]},{"1808172":[235,4,247,8]},{"1808182":[8]},{"1808192":[168,168,130,131,225,225,131,131]},{"1808201":[1,251,251,20,108,208,200,137,84,1,124,32,30]},{"1808215":[124,1,254]},{"1808219":[4,48,203,56,7,254]},{"1808226":[255]},{"1808228":[255]},{"1808230":[255]},{"1808232":[255]},{"1808234":[255]},{"1808236":[239,16,223,32,1]},{"1808252":[72]},{"1808256":[191,63,69,69,11,27,25,169,202,202,42,170,32,32]},{"1808272":[191,64,69,186,27,228,145,102,10,181]},{"1808283":[213,32,223]},{"1808287":[255,127]},{"1808290":[255]},{"1808292":[255]},{"1808294":[255,16,255]},{"1808298":[255]},{"1808300":[255]},{"1808302":[255]},{"1808310":[32]},{"1808314":[128]},{"1808320":[255,255,245,245,251,251,5,5,155,171,45,61,187,163,9,25,255]},{"1808338":[245,10,251,4,1,250,179,68,21,194,187,68,25,238,255]},{"1808354":[255]},{"1808356":[255]},{"1808358":[255]},{"1808360":[255]},{"1808362":[255]},{"1808364":[231,16,247]},{"1808382":[8]},{"1808384":[245,250,255,252,255,255,95,95,191,191,31,31,191,191,85,85,240,15,252,3,255]},{"1808406":[95,160,191,64,31,224,191,64,85,170,255]},{"1808418":[255]},{"1808420":[255]},{"1808422":[255]},{"1808424":[255]},{"1808426":[255]},{"1808428":[255]},{"1808430":[255]},{"1808448":[87,254,255,255,95,250,254,244,119,255,254,247,255,235,255,230,254,1,221]},{"1808468":[186,5,116,11,235]},{"1808474":[84,9,170,20]},{"1808479":[25]},{"1808489":[1]},{"1808498":[34]},{"1808500":[64]},{"1808502":[128]},{"1808504":[20]},{"1808506":[162]},{"1808508":[65]},{"1808510":[230]},{"1808512":[119,170,255,231,255,250,127,104,127,125,79,200,215,212,195,254,168,85,64,24,160,5]},{"1808535":[151,168,2,48,7,48,27]},{"1808543":[29]},{"1808556":[16]},{"1808560":[2]},{"1808562":[167]},{"1808564":[90]},{"1808566":[104]},{"1808568":[85]},{"1808570":[200]},{"1808572":[196]},{"1808574":[246]},{"1808576":[248,207,252,128,252,199,240,11,224,30,192,63,224,191]},{"1808591":[255,128,55]},{"1808595":[127]},{"1808597":[59]},{"1808599":[255,1,254]},{"1808603":[253]},{"1808605":[95]},{"1808607":[255]},{"1808624":[77]},{"1808626":[128]},{"1808628":[199]},{"1808630":[11]},{"1808632":[30]},{"1808634":[62]},{"1808636":[191]},{"1808638":[253]},{"1808640":[64,191,132,125,8,187,10,255]},{"1808649":[255,2,255,1,255,42,255]},{"1808657":[255,6,249,14,247,6,255]},{"1808665":[255]},{"1808667":[255]},{"1808669":[255]},{"1808671":[255]},{"1808675":[4,2,8,6,8]},{"1808688":[191]},{"1808690":[113]},{"1808692":[177]},{"1808694":[121]},{"1808696":[126]},{"1808698":[86]},{"1808700":[233]},{"1808702":[122]},{"1808705":[255,2,255,4,255,170,255,5,255,170,255,69,143,254,199]},{"1808721":[255]},{"1808723":[255]},{"1808725":[255]},{"1808727":[255]},{"1808729":[255]},{"1808731":[255,80,143,80,215]},{"1808748":[32,64,64,184,238]},{"1808754":[86]},{"1808756":[166]},{"1808758":[234]},{"1808760":[165]},{"1808762":[170]},{"1808764":[109]},{"1808766":[134]},{"1808768":[1,255,168,249,83,251,165,245,86,255,168,254,95,254,245,244]},{"1808785":[255,6,249,4,251,10,245]},{"1808793":[255]},{"1808795":[252,1,254,10,244]},{"1808805":[2]},{"1808807":[1,1,7,2,2]},{"1808813":[15,1,113,161]},{"1808818":[168]},{"1808820":[83]},{"1808822":[165]},{"1808824":[87]},{"1808826":[170,1,95]},{"1808830":[245]},{"1808832":[21,255,169,253,85,255,37,117,215,64,32,64,42,97,21,80]},{"1808849":[255,2,253]},{"1808853":[255,138,117,191,111]},{"1808859":[64,20,36,42,80]},{"1808872":[111,255,96,64,75,79,69,69,21]},{"1808882":[169]},{"1808884":[85]},{"1808886":[37]},{"1808888":[255]},{"1808890":[96,159,111,128,85,128,4,238,245,213,218,250,85,85]},{"1808905":[240,1]},{"1808908":[31,224,16]},{"1808912":[113,238,74,149,5,250,170,85,15]},{"1808924":[31,24,239]},{"1808928":[64,32]},{"1808931":[97]},{"1808933":[128]},{"1808936":[240,240,1]},{"1808940":[248,255,16,16,4]},{"1808946":[149]},{"1808948":[218]},{"1808950":[85]},{"1808952":[240]},{"1808954":[1,254,255]},{"1808958":[16]},{"1808960":[106,234,84,84,170,162,16,16,170,13,37,27,196,39,4,232,21,234,171,84,85,166,239,16,82,74]},{"1808987":[24,131,35,17,18]},{"1808993":[40]},{"1808996":[8,44]},{"1809000":[167,231,56,24,100,163,239,114,106]},{"1809010":[84]},{"1809012":[174]},{"1809014":[16]},{"1809016":[239]},{"1809018":[56,199,227,28,254,1,170,170]},{"1809029":[192]},{"1809031":[138]},{"1809033":[1,55,130,235,251,196,19,85,170,255,32,63]},{"1809046":[117]},{"1809048":[254,22,89,131,252,16,16,11]},{"1809059":[32,192,128,138]},{"1809064":[1,22,7,139,4,16,200,19,170]},{"1809074":[32]},{"1809076":[192]},{"1809078":[138]},{"1809080":[23]},{"1809082":[143,112,16,239,211,44,128,144]},{"1809091":[58]},{"1809093":[68,6,175,3,31,2,255,155,196,213,221,111,192,197,192,187,144,84,4,227,67]},{"1809116":[44,64,254,8,16,64,58,192,68,144,175,2,31,72,255,66,11,68,34,8,208]},{"1809138":[250]},{"1809140":[212]},{"1809142":[171]},{"1809144":[92]},{"1809146":[255]},{"1809148":[71,184,8,247]},{"1809153":[17]},{"1809155":[168]},{"1809157":[69]},{"1809159":[239]},{"1809161":[119]},{"1809163":[255,255,93,130,109,238,64,85]},{"1809172":[186,16,16]},{"1809176":[136]},{"1809180":[171,11,21,238,17,64,170,2,69,16,239]},{"1809192":[119]},{"1809194":[255]},{"1809196":[95,246,140,101,81]},{"1809202":[168]},{"1809204":[85]},{"1809206":[239]},{"1809208":[119]},{"1809210":[255]},{"1809212":[246]},{"1809214":[101,154,80,101,32,207]},{"1809221":[223,3,254,1,254,2,255,66,254,160,225,234,96]},{"1809236":[32]},{"1809238":[1,1]},{"1809241":[1,3]},{"1809244":[71,69,90,174,69,48,223,32,223]},{"1809254":[254,3,255,1,254,2,253,6,46,213,5]},{"1809266":[223]},{"1809268":[222]},{"1809270":[254]},{"1809272":[255]},{"1809274":[254,1,191]},{"1809278":[87,40]},{"1809281":[87,128,253,96,127,64,117,66,124,196,182,43,99,118,253,168]},{"1809298":[128,128,32,32,64,192,100,131,55,185]},{"1809309":[132,1,3,87]},{"1809314":[255,2,255,64,127,138,91,231,153,124,16,255,1,254,87]},{"1809330":[125]},{"1809332":[95]},{"1809334":[53]},{"1809336":[127]},{"1809338":[253,2,255]},{"1809342":[255]},{"1809345":[78,6,87,2,255,141,221,137,63,159,23,243,255,125,249,160]},{"1809362":[4,4,2,6,5,5,24,120,21,69,14,10,5,7,95,17,255,168,255,4,255,34,223,112,39,224,15,240,5,248,78]},{"1809394":[83]},{"1809396":[249]},{"1809398":[216]},{"1809400":[119]},{"1809402":[226,24,249,4,248,6]},{"1809409":[10,23,23,135,175,155,155,210,186,159,223,255,255,81,85,160]},{"1809426":[21,21,226,162,17,17,130,162,21,117,170,170,81,255,95,85,255,136,207,112,255,4,191,101,223,64,255]},{"1809454":[85,4,10]},{"1809458":[98]},{"1809460":[77]},{"1809462":[234]},{"1809464":[24]},{"1809466":[138,32,85]},{"1809471":[170,10,42,84,84,168,170,187,187,170,170,238,238,253,253,3,16,138,10,84,84,168,168,17,17,170,170,68,68,170,170]},{"1809503":[184,127,85,255,171,255,85,255,68,255,85,238,17,252,3,16,87,32]},{"1809524":[2]},{"1809526":[170]},{"1809530":[170]},{"1809532":[84]},{"1809535":[168,170,2]},{"1809540":[170,170,128,128,170,170,234,232,85,84,14,13,170,2,8]},{"1809556":[234,170,13]},{"1809560":[171,170,87,64,4,6,12,168,87,85,247,255,191,85,242,127,254,85,234,21,84,171,8,86]},{"1809590":[128]},{"1809594":[170]},{"1809596":[84]},{"1809598":[14,161,170]},{"1809602":[1,96,139,181,32]},{"1809608":[151,175,173,143,115,100,151,210,170]},{"1809618":[65,96,143,160,104,62,160,160,72,56,32,36,60,214,85,85,190,190,255,47,153,215,224,127,152,79,112,135,66,229]},{"1809650":[64]},{"1809652":[79]},{"1809654":[63]},{"1809656":[63]},{"1809658":[159,32,87,8,7]},{"1809664":[70,1,172,129,156,35,188,65,188,129,122,131,101,14,236,29,225,249,129,144,197,199,5,6]},{"1809689":[66,10,15,12,151,11,25,32,223,2,255,68,186,7,251]},{"1809705":[255,14,242,20,233,6,240,127]},{"1809714":[255]},{"1809716":[254]},{"1809718":[255]},{"1809720":[255]},{"1809722":[254,1,248]},{"1809726":[240]},{"1809728":[111]},{"1809730":[85]},{"1809732":[171,1,144,16,216,216,122,186,149,3,80,47,191,64,213]},{"1809748":[43,129,41,160,237,232,69,192,246,3,175,47]},{"1809761":[80,170,42,84,212,198,191,138,247,58,5,20,104,96,208]},{"1809780":[1]},{"1809782":[192]},{"1809784":[192]},{"1809786":[122,128,22,1]},{"1809791":[47,238,1,61,8,179,17,80,72]},{"1809801":[12,146,142,136,47,18,251,159,1,125,8,187,17,93,72,239,4,77,15,111,111,253,255,96,122,163,194,68,78,162,167,16,251,176,80,144,136,8,16,1]},{"1809842":[40]},{"1809844":[17]},{"1809846":[72]},{"1809848":[4]},{"1809850":[172,3]},{"1809853":[119,1,238,191]},{"1809858":[213]},{"1809860":[127,64,85,69,154,128,114,95,193,207,250,135,255]},{"1809874":[213]},{"1809876":[255,64,87,69,191,135,250,255,255,247,125,135,128,79,170,63]},{"1809893":[170,168,170,88,103]},{"1809899":[85]},{"1809901":[201,120]},{"1809906":[128]},{"1809908":[64]},{"1809910":[69]},{"1809912":[144]},{"1809915":[170,6,48,124,131,254]},{"1809922":[215]},{"1809924":[255]},{"1809926":[119,98,191,213,1,1,84,200,135,120,255]},{"1809938":[255]},{"1809940":[255]},{"1809942":[247,98,255,213,127,65,183,192,255,248,1,254,40,215]},{"1809957":[255,8,136]},{"1809961":[128,128,62,28,35,7]},{"1809974":[98]},{"1809976":[85]},{"1809978":[1,192,20,200,127,128,250,18,216,1,255,1,247,162,252,84,78,81,112,95,232,25,252,18,252]},{"1810004":[255,1,247,162,255,84,122,80,223,17,251,26,7,232,38,217]},{"1810021":[254,8,92]},{"1810025":[139,143,160,96,158,232,5,16]},{"1810036":[1]},{"1810038":[162]},{"1810040":[84]},{"1810042":[90,5,1,96,240,14,136,42,43,70,195,44,247,132,249,194,238,65,182]},{"1810062":[255,160,247]},{"1810066":[255,2,247]},{"1810070":[251,140,247,200,251,68,253,2,126,161,127,128,84,161,35,220,4,123,14,49,149,42,139,116,65,30]},{"1810098":[2]},{"1810102":[128]},{"1810104":[200]},{"1810106":[196]},{"1810108":[2]},{"1810110":[33,128,55,234,41,84,19,170,84,1,166,8,103,17,115,136,222,37,88,165,254,1,236,17,171,84,95,160,191,65,252,3,223,4,255]},{"1810146":[215,40,255]},{"1810150":[255]},{"1810152":[248,7,216,38,143,112,33,218,133]},{"1810162":[1]},{"1810164":[17]},{"1810166":[84]},{"1810168":[160]},{"1810170":[65]},{"1810172":[3]},{"1810174":[4,32,217,251,246,93,243,191,87,17,253,46,149,196,153,42,221,64]},{"1810193":[38,8,163,4,72,168,70,128,83,234,145,103,144,186,69,255]},{"1810210":[255]},{"1810212":[255]},{"1810214":[255]},{"1810216":[127,128,127]},{"1810220":[254,1,71,184,34]},{"1810226":[163]},{"1810228":[72]},{"1810230":[70]},{"1810232":[83]},{"1810234":[145]},{"1810236":[144]},{"1810238":[5]},{"1810240":[124,108,152,136,4,108,166,118,205,189,15,85,221,170,80,5,16,131,56,79,120,227,88,193,112,2,240,10,98,21,175,80,239,16,247]},{"1810276":[239,16,223,32,191,64,159,96,191,64,255]},{"1810290":[8]},{"1810294":[128]},{"1810298":[10]},{"1810300":[21]},{"1810302":[80]},{"1810310":[164,162,12,15,175,175,192,224,226,74]},{"1810321":[255]},{"1810323":[255]},{"1810325":[255,12,83,1,254]},{"1810331":[80]},{"1810333":[63]},{"1810335":[189,255]},{"1810338":[255]},{"1810340":[255]},{"1810342":[243,8,255]},{"1810346":[255]},{"1810348":[255]},{"1810350":[255]},{"1810358":[2]},{"1810360":[2]},{"1810364":[32]},{"1810366":[168]},{"1810368":[170,170,1,1,34,34]},{"1810376":[10,10]},{"1810380":[2,2,128,152,170,85,1,254,34,221]},{"1810391":[255,10,245]},{"1810395":[255,2,253,24,103,255]},{"1810402":[255]},{"1810404":[255]},{"1810406":[255]},{"1810408":[255]},{"1810410":[255]},{"1810412":[255]},{"1810414":[255]},{"1810432":[239,239,85,85,171,171,1,1,147,147,69,69,42,42,5,5,239,16,85,170,171,84,1,254,131,108,69,186,42,213,5,250,255]},{"1810466":[255]},{"1810468":[255]},{"1810470":[255]},{"1810472":[255]},{"1810474":[255]},{"1810476":[255]},{"1810478":[255]},{"1810496":[127,174,255,237,243,233,243,123,255,151,205,159,168,211,200,255,170,81,64,18,160,30]},{"1810519":[140,128,104,32,80,36,107,48,55]},{"1810541":[16,16,32,4]},{"1810546":[173]},{"1810548":[73]},{"1810550":[123]},{"1810552":[23]},{"1810554":[143]},{"1810556":[129]},{"1810558":[205]},{"1810560":[112,255,112,255,227,191,202,255,132,255,128,255]},{"1810573":[255]},{"1810575":[255]},{"1810577":[143]},{"1810579":[141]},{"1810581":[92]},{"1810583":[53]},{"1810585":[123]},{"1810587":[127]},{"1810589":[255]},{"1810591":[255]},{"1810608":[243]},{"1810610":[255]},{"1810612":[191]},{"1810614":[255]},{"1810616":[255]},{"1810618":[255]},{"1810620":[255]},{"1810622":[255]},{"1810625":[255,3,253,4,255,10,254]},{"1810633":[255,42,255,5,255,186,255]},{"1810641":[255,1,253,3,255,3,126]},{"1810649":[255]},{"1810651":[255]},{"1810653":[255]},{"1810655":[255]},{"1810658":[3]},{"1810661":[7,2]},{"1810672":[255]},{"1810674":[222]},{"1810676":[252]},{"1810678":[252]},{"1810680":[234]},{"1810682":[239]},{"1810684":[175]},{"1810686":[186]},{"1810688":[1,255,42,255,85,255,174,255,17,251,161,245,91,255,255,255]},{"1810705":[255]},{"1810707":[255]},{"1810709":[255]},{"1810711":[255,4,251,12,245,6,255]},{"1810719":[255]},{"1810727":[6]},{"1810729":[1,2,4,6,9]},{"1810735":[53,233]},{"1810738":[250]},{"1810740":[245]},{"1810742":[174]},{"1810744":[145]},{"1810746":[163]},{"1810748":[89]},{"1810750":[255]},{"1810752":[101,239,143,207,69,239,245,245,86,254,253,252,223,250,85,81,40,215,48,207,16,239,10,245,1,254,2,252]},{"1810781":[250,170,81]},{"1810785":[60]},{"1810787":[133]},{"1810789":[64]},{"1810791":[244]},{"1810793":[18,1,29,5,223,4,69,77]},{"1810802":[143]},{"1810804":[69]},{"1810806":[245]},{"1810808":[86]},{"1810810":[253]},{"1810812":[223]},{"1810814":[85]},{"1810816":[87,255,245,245,250,250,108,112,250,225,28,199,26,106,20,96]},{"1810833":[255,10,245,5,250,131,96,28,228,88,12,197,74,139,1]},{"1810849":[67]},{"1810851":[5]},{"1810853":[154,20,12,27,191,131,247,48,90,116,117,87]},{"1810866":[245]},{"1810868":[250]},{"1810870":[100]},{"1810872":[255]},{"1810874":[223]},{"1810876":[26]},{"1810878":[117]},{"1810880":[14,138,4,16,129,226,96,9,180,147,66,145,10,1,6,168,49,42,203,64,13,164,164,40,68,148,34,2,254,72,87,17,164,174,84,84,98,231,107,104,55,183,211,211,9,79,169,189,174,64,84,32,231,16,106,16,183,8,211,12,79]},{"1810942":[189,2,232,129]},{"1810947":[2,32,5,2,173,129,87,11,244,159,97,183,194,22,134,253,45,218,130,82,18,40,8,11,10,30,30,109,224,105,239,2,47,37,167,175,183,215,223,254,255,255,63,122,231,239]},{"1810994":[47]},{"1810996":[167]},{"1810998":[191]},{"1811000":[223]},{"1811002":[255]},{"1811004":[191]},{"1811006":[127]},{"1811008":[196,16,15,241,30,224,110,150,239,80,240,138,240]},{"1811022":[3,32,238,169,12,12,31,30,89,78,160,128,107,32,199,65,253,206,147,252,254,252,254,254,230,87,223,224,154,193,49,134,237,208,253,2,254,1,254,1,255]},{"1811064":[239]},{"1811066":[241,14,246,9,16,239,71,185,103,185,254,176,185,64,230,212,100,195,107,6,44,223,198,70,68,129,108,36,27,90,127,4,216,55,182,203,174,76,127,239,59,229,51,25,39,196,190]},{"1811114":[62,133,225,38,46,243,255]},{"1811122":[255]},{"1811124":[30,193,120,135,12,243,13,242,2,253,78,177,236,1,255,187,255,24,17,40,198,110,176,111,168,253,31,63,154,1,68,1,103,93,174,128,127,119,47,244,138,29,64,159,104,145,187,255,152,58,191]},{"1811176":[49,110,164,79,53,72,159,255,241,14,255]},{"1811188":[255]},{"1811190":[23,232,110,145,100,155,8,247,128,127,107,190,208,11,255,160,32,239]},{"1811209":[170,64,191,197,213,255,255]},{"1811217":[129,180,139,88,248,223,32,255,101,191,68,239,213]},{"1811231":[255,1,212,88,35,167,160,239,16,117,170,4,191,85,128,255,255,128,127,227,28,255]},{"1811254":[16,239,186,69,4,251,197,58]},{"1811263":[255,8,216,205,96,129,32,59,224,6,128,28,193,60,3,57,131,36,215,16,130,104,30,224,36,209,120,161,98,132,71,5,1,20,195,144,47,152,119,192,63,112,175,34,221,69,59,2,253,199,56,15,240,255]},{"1811318":[63,192,190,65,127,128,126,128,121,132,53,56,208,2,155,39,31,76,102,201,65,190,254,126,237,211,7,203,26,39,55,71,52,143,120,119,62,193,126,255,195]},{"1811360":[3,243,32,192,76,247,195,156,209,8,129,190,127,1,238,255,243,12,224,16,255]},{"1811382":[148,3,40,23]},{"1811387":[127,127,128,193,62,201,159,53,138,116,199,185,195,182,3,121,7,118,6,116,12,134,37,194,69,135,76,71]},{"1811416":[199,200,137,141,142,133,137,135,5,122,192,190,197,62,131,191,199,63,139,118,135,123,143,124,126,129,252,3,254,1,59,68,250,5,253,2,247,8,243,12,63,117,224,32,127,127,199,227,81,254,139,127,199,147,167,127,10,58,61,194]},{"1811477":[127,216,71,254]},{"1811482":[127]},{"1811484":[130,59,6,1,240,5,29,50,254,1,248,163,255,251,255,203,63,213,3,251,138,53,29,226,128,126,216,36,4,251,116,139,234,21,250,5,144,127,143,79,255,248,254,248,94,166,230,239,129,203,136]},{"1811536":[128,239,16,239,10,249,26,227,160,1,243,16,193,146,37,243,111,127,16,239,15,247,19,253,225,255,209,237,196,127,103,152,128,16,16,232,11,4,31]},{"1811576":[190,65,61,194,255]},{"1811582":[123,132,31,195,247,151,64,9,134,16,7,144,95,32,31,64,92]},{"1811600":[8,216,24,168,144,118,32,233,193,105,129,128,130,163,33,162,248,215,8,247,176,79,96,223,193,190,129,127,131,125,163,94,63]},{"1811634":[31,32,191,64,127,128,127,128,254,1,255]},{"1811646":[255]},{"1811648":[65,204,195,208,197,144,3,96,223,48,14,128,244,128,31,129,142,202,100,92,48,2,136,92,16,32,80,49,161,170,163,99,226,25,44,243,112,239,184,119]},{"1811689":[127,241,46,225,94,226,29,163,68,207,16,191,64,31,224,63,128,127]},{"1811708":[190,65,255]},{"1811712":[83,2,197,46,176,111,235,89,191,159,84,191,18,238,253,22,38,134,74,110,105,79,205,210]},{"1811737":[31,144,175,2,81,20,136,8,243,80,165,9,246,132,127,64,63,128,255,175,127,118,255,200,36,240,10,192,13,192,27,64,151,128,63,3,124,21,232,136,116,128]},{"1811780":[169,64,250,255,170,190,5,175,241,127,111,64,119,119,106,106,86,86,82,5,3,252,1,254,113,4,80,175,4,136,21,170,64,169,168,255,1,255]},{"1811819":[255,138,255,208,127]},{"1811825":[119,21,106]},{"1811829":[86]},{"1811831":[255,1,254]},{"1811835":[255]},{"1811837":[255,208,47,20,59,95,18,192]},{"1811846":[118,157,72,200,69,254,4,255,255]},{"1811856":[99,123,160,178,31,31,107,255,104,128,1,255,4,219]},{"1811871":[255,132,12,69,237,32,192]},{"1811879":[246,55,232]},{"1811883":[255,32,255]},{"1811887":[255,163,80]},{"1811891":[178,32,31]},{"1811895":[255]},{"1811897":[223]},{"1811899":[255]},{"1811901":[255]},{"1811903":[255,3,254,174,173,9,13,21,233,164,164,11,243,21,246,254,12,239,254,7,175,209,209,229,233,174,4,5,248,28,227,13,250,16,19,80,6,38,13,98,25,91,170,14,255,8,255,1,247,236,1,80,171,32,210,4,234]},{"1811961":[245,4,251,8,247,1,254,17,254,168,239,252,159,7,135,34,226,133,125,192,191,128,124,239,94,71,175,3,159,248,255,125,255,127,255,255,127,28,252,1,160,16,64,96,96,128]},{"1812008":[64,160,24,133,12,192,3,224,79,16,23,168,3,156]},{"1812023":[255]},{"1812025":[95]},{"1812027":[250]},{"1812029":[255]},{"1812031":[255,213,53,28,222,119,247,51,49,126,127,223,116,246,174,175,21,229,53,254,190,247,119,247,243,255,255,255,255,247,255,191,151,193,14]},{"1812067":[95,8,243,8,49]},{"1812073":[126]},{"1812075":[85]},{"1812077":[175,64,173,96,27,128,35]},{"1812085":[12,4,202]},{"1812089":[129]},{"1812091":[170]},{"1812093":[80]},{"1812095":[250,213,138,158,200,47,192,35,64,111,68,31,251,223,240,7,230,127,64,63,8,223,64,255,192,63,68,255,187,223,208,247,166,10,245,1,254,40,151,48,23,40,147]},{"1812139":[71,96,143,8,217]},{"1812147":[8,64,32,104,144,4,192,56,131,16,96,38,128,118,136,247,2,206,36,255]},{"1812168":[252,18,255,8,255,64,255,144,253,2,190,67,119,140,254,1,223,48,255,8,253,66,255,144,139,84,73,180,185,70,1,254,35,220]},{"1812203":[247,2,253]},{"1812207":[127,2]},{"1812210":[67]},{"1812212":[136,4,1]},{"1812216":[32,16,8]},{"1812220":[2,64,128,16,61,210,249,36,97,170,89,68,69,170,219,20,247,29,245,181,250,21,254,33,222,33,222,113,186,117,190,81,111,149,250,189,167,72,7,216,175,80,135,40,239,16,69,170,176,75,7,234,21]},{"1812274":[33]},{"1812276":[1]},{"1812278":[65]},{"1812280":[69]},{"1812282":[81]},{"1812284":[132,1,16,162,125,170,250,85,221,187,95,21,95,170,89,4,155,37,80,5,2,213,7,168]},{"1812309":[102,160,74,160,85,167,88,103,153,175,80,255]},{"1812322":[253,2,255]},{"1812326":[255]},{"1812328":[255]},{"1812330":[252,2,254,2,255]},{"1812336":[213]},{"1812338":[168]},{"1812340":[102]},{"1812342":[74]},{"1812344":[85]},{"1812346":[88]},{"1812348":[153]},{"1812350":[80]},{"1812352":[208,208,168,42,84,213,235,87,85,213,255,93,125,173,126,21]},{"1812369":[47]},{"1812371":[215]},{"1812373":[171]},{"1812375":[188]},{"1812377":[170]},{"1812379":[162,128,82,128,107,255]},{"1812386":[255]},{"1812388":[255]},{"1812390":[255]},{"1812392":[255]},{"1812394":[255]},{"1812396":[255]},{"1812398":[255]},{"1812402":[130]},{"1812404":[129]},{"1812406":[188]},{"1812408":[128]},{"1812410":[162]},{"1812412":[80]},{"1812414":[107]},{"1812417":[24,136,136,128,193,33,98,6,5,195,224,240,176,248,88,16,239]},{"1812435":[119,65,62,129,94,3,248,3,60]},{"1812445":[79]},{"1812447":[167,255]},{"1812450":[255]},{"1812452":[255]},{"1812454":[254,1,254,1,252,2,255]},{"1812462":[255]},{"1812464":[8]},{"1812470":[66]},{"1812474":[32]},{"1812476":[64]},{"1812478":[160]},{"1812480":[202,202,164,228,130,98,88,32,199,22,228,22,75,6,50,192,138,53,100,59,194,61,248,7,233,62,241,43,97,190,98,185,255]},{"1812514":[223]},{"1812516":[127,128,39,152,110,144,113,182,218,29,181,114]},{"1812530":[32]},{"1812532":[32]},{"1812538":[8]},{"1812540":[32]},{"1812542":[136]},{"1812544":[248,47,242,63,200,59,224,247,140,255,2,247,224,255,234,255]},{"1812561":[215]},{"1812563":[205,12,251,8,23,4,123]},{"1812571":[243]},{"1812573":[31]},{"1812575":[31]},{"1812580":[8]},{"1812585":[4,12]},{"1812592":[47]},{"1812594":[55]},{"1812596":[51]},{"1812598":[243]},{"1812600":[211]},{"1812602":[251]},{"1812604":[250]},{"1812606":[251]},{"1812609":[255,2,255,5,255,10,255,1,255,43,255,21,255,191,255]},{"1812625":[255]},{"1812627":[255]},{"1812629":[255]},{"1812631":[255]},{"1812633":[255]},{"1812635":[255]},{"1812637":[255]},{"1812639":[255]},{"1812649":[1]},{"1812655":[130,254]},{"1812658":[255]},{"1812660":[255]},{"1812662":[90]},{"1812664":[251]},{"1812666":[251]},{"1812668":[191]},{"1812670":[255]},{"1812672":[21,255,171,255,85,255,239,255,117,255,255,255,95,255,255,255]},{"1812689":[255]},{"1812691":[255]},{"1812693":[255]},{"1812695":[255]},{"1812697":[255]},{"1812699":[255]},{"1812701":[255]},{"1812703":[255]},{"1812713":[17]},{"1812715":[35]},{"1812717":[1]},{"1812719":[151,149]},{"1812722":[235]},{"1812724":[245]},{"1812726":[239]},{"1812728":[245]},{"1812730":[255]},{"1812732":[95]},{"1812734":[255]},{"1812736":[87,255,253,253,95,255,253,253,127,255,223,213,255,186,149,196]},{"1812753":[255,2,253]},{"1812757":[255,2,253]},{"1812761":[255,32,213]},{"1812765":[186,90,244]},{"1812769":[23]},{"1812771":[156]},{"1812773":[95]},{"1812775":[253]},{"1812777":[127,10,223,69,255,17,245,87]},{"1812786":[253]},{"1812788":[95]},{"1812790":[253]},{"1812792":[127]},{"1812794":[223]},{"1812796":[255]},{"1812798":[149]},{"1812800":[251,250,245,86,250,168,84,90,238,171,85,74,171,174,17,170,4,250,8,84,5,168,161,80,16,170,160,64,80,170,68,4,1,251,163,247,82,250,14,94,69,239,31,95,5,175,187,191,251]},{"1812850":[247]},{"1812852":[250]},{"1812854":[94]},{"1812856":[239]},{"1812858":[95]},{"1812860":[175]},{"1812862":[191]},{"1812864":[238,168,85,2,186,37,81,170,232,157,64,171,160,85,32,255,17,168,168]},{"1812884":[64,32,4,4,2,138,20,20,10,10,32,32,70,238,87,87,159,191,251,255,117,255,235,255,245,255,223,223,238]},{"1812914":[87]},{"1812916":[191]},{"1812918":[255]},{"1812920":[255]},{"1812922":[255]},{"1812924":[255]},{"1812926":[255,32,168,86,66,168,129,85,2,237,133,82,15,250,5,93,171,248,1,2,22,22,42,43,18,18,47,42,13,10,166,167,171,168,254,255,234,254,213,255,239,255,208,255,240,247,91,251,80,80,255]},{"1812978":[254,1,255]},{"1812982":[255]},{"1812984":[253]},{"1812986":[253,10,255,4,248,175,150,100,62,72,25,100,244,41,249,55,161,224,54,144,232,1,147,129,53,48,156,84,83,48,175,181,235,202,33,136,247]},{"1813024":[229,247,122,125,116,252,191,50,148,191,127,124,184,128,224,7,246,9,127,128,252,3,177,64,191,64,224,159,128,127,7,248,184,7,42,128,181,189,170,160,139,12,41,20,131,193,156,107,189,255,234,191,202,119,218,127,187,183,157,14,62,89,50,59,253,133,191,64,119]},{"1813094":[127]},{"1813096":[243,64,15,32,153,37,251,5]},{"1813105":[255,191,64,119,136,127,128,112,143,108,211,25,230,255,192,239,205,35]},{"1813124":[85,221,168]},{"1813128":[169,90,141,1,254,94,255,250,205,220,35,255,170,119,168,255,185,251,234,1,164,164,6]},{"1813152":[220,254,255]},{"1813156":[119]},{"1813158":[255]},{"1813160":[185,24,9,101,252,252,248,248]},{"1813169":[255,255]},{"1813172":[119,136,255]},{"1813176":[4,255,97,158,248,7,248,7,46,56,248,2,5,5,240,10,155,149,68,70,175,168,229,143,168,14,24,31,250,255,208,223,250,146,231,88,104,144,90,41,78,200,31,226,255]},{"1813222":[223,42,155,252,94,237,147,128,167,153,65,191,253,2,255]},{"1813238":[245,10,16,239,157,98,147,108,137,118,191,170]},{"1813251":[42,84,92]},{"1813255":[170,170,18]},{"1813259":[160,251]},{"1813262":[253,216,170,191]},{"1813267":[255,171,247,1,255,255,185,189,3,4]},{"1813278":[38,114,191,170,255,42,247]},{"1813286":[255,170,185,16,163,28,248,3,222,85,64,255,213,42,247,8,85,170,1,254,31,224,251,4,251,140,19]},{"1813314":[112,12,125,7,104,10,192,17,208,8,250,20,189,88,198,97,136,143,154,145,152,143,31,17,61,16,103,64,102,69,75,184,131,124,157,108,159,102,49,249,58,213,127,147,27,243,120,135,255]},{"1813364":[249,2,237,18,248,7,215,42,219,36,253,8,172,16,1,168,81,252,10,168,13,208,3,192,3,224,182,225,1,67,2,254,174,82,12,245,120,218,152,12,193,45,96,73,67,82,254,169,82,1,244,171,88,87,248,7,193,62,192,127,175,252,87,168,83,172,95,160,143,240,47,176,63,192,255,128,96]},{"1813442":[227,1,198,2,211,52,131,73,20,97,140,131,47,135,10,151,22,14]},{"1813461":[49,121,73,210,246,32,202,167,247,131,147,22,225,30,233,48,223,105,182,178,108,131,94,103,155,130,249,247,8,239,16,255]},{"1813494":[223,32,254,1,222,32,255]},{"1813502":[249,4,254,253,4,255,241,5,24,65,122,64,186,134,51,4,120,9]},{"1813523":[3,128,137,96,163,12,203,206,76,78,70,154,158]},{"1813537":[252,3,255,129,126,167,157,205,176,78,183,78,181,150,109,255,3,252,3,255]},{"1813558":[190,65,249,6,255]},{"1813564":[247,8,255]},{"1813568":[48,130,62,129,81]},{"1813574":[127,7,117,3,254,15,104,4,244,22,2,5,64,193,131,168,135,130,133,138,5,4]},{"1813597":[149,48,53,13,252,192,191,135,125,129,123,143,115,5,243,31,229,47,218,125,130,127,128,253,2,251,4,249,4,240,11,251]},{"1813630":[241,6,52,193,57,1,186,133,116,1,118,14,99,11,116,28,124,8,198,13,67,196,207,72,130,142,144,159,131,146,161,175,162,167,132,185,199,63,76,176,141,117,149,104,158,97,171,78,166,77,188,67,254,1,255,3,252]},{"1813688":[251,6,247]},{"1813692":[227,16,231,24,183,129,28,131,59,129,122,135,181,1,177,5,120,8,237,9,130,73,39,36,193,68,134,2,8,70,10,71,25,153,2,27,194,191,167,218,70,56,5,125,1,251,12,247,22,233,25,230,252,3,127]},{"1813748":[125,129,124,130,240,15,240,11,254,1,240,11,124,4,7,69]},{"1813765":[249,21,73,8,178,76,36,48,102,128,138,134,10,189,1,253,4,170,17,67,83,56,152,105,3,35,235,247,253,65,71,7,2,64,71,182,191,57,226,134,122,114,221,131,124,191,184,247,248,180,187,78,241,25,164,176,73,120,3,127]},{"1813826":[128,64,128,93,128]},{"1813832":[31,17]},{"1813838":[1,193]},{"1813841":[255,191]},{"1813844":[221,34,255]},{"1813848":[238,238,255,255,223,222,254,254,128,255,64,64]},{"1813864":[17,31]},{"1813867":[170,32,84,192,43]},{"1813873":[255,191,63,255,255,255,127,224,255]},{"1813883":[255,33,222]},{"1813887":[254,255]},{"1813893":[85]},{"1813896":[255,17,1,1,42,139]},{"1813903":[193]},{"1813905":[255,255]},{"1813908":[85,170,255]},{"1813912":[238,238,255,255,213,223,255,255]},{"1813921":[255]},{"1813928":[17,187,1,170,32,113,64,40]},{"1813937":[255,255,255,255,255,255,255,68,255]},{"1813947":[255]},{"1813949":[223]},{"1813951":[255,255]},{"1813957":[84]},{"1813960":[247,118,28,252,91,99,213,141]},{"1813969":[255,255]},{"1813972":[84,171,255]},{"1813976":[128,129,183,247,252,127,218,143,81,255]},{"1813992":[127,247,40,92,128,128,40,16]},{"1814001":[255,255,255,255,255,255,255]},{"1814009":[255]},{"1814011":[171]},{"1814013":[127,64,191,255,255,1]},{"1814021":[68,3,2,241,138,255,12,235,152,94,216]},{"1814034":[255]},{"1814036":[69,186,251,5,11,126,223,226,92,243,188,130,255,255]},{"1814054":[1,1,240,240,34,98,34,35,67,194]},{"1814065":[255,255,254,255,255,254,254,15,254,29,236,28,255,60,251,74,159,179,193,214,35,247,9,94,11,255]},{"1814092":[127,16,190,224,23,215,51,115,127,255,127,191,151,71,254,161,151,121,31,78,96,195,140,225,128,203,128,225,160,211,161,161,233,233,160,240,8,125]},{"1814131":[190]},{"1814133":[245]},{"1814135":[254,136,125,94,1,6,120,1,254,31,60,47,170,143,188,143,119,170,225,22,94,244,52,206,54,63,44,159,170,239,204,255,231,245,241,167,116,239,52,191,228,16,195]},{"1814179":[213,16,163,8,112,10,228,10,65]},{"1814189":[43,202,209,44,208,10,224,12,80,15,224,1,90,132,58,196,16,12,98,255,68,251,26,255,4,191,202,63,19,255,170,255,245,103,102,255,68,255,26,255,4,255,10,191,243,95,202,255,181,79,118]},{"1814241":[251]},{"1814243":[245]},{"1814245":[251,160,87,128,46]},{"1814251":[117,64,11,136,153,4,64,10,16,4]},{"1814262":[40,130,81,2,10,128,180,65,78,32,255,7,231,4,245,82,239,180,247,56,255,176,255,144,252,249,127,135,255,28,247,80,255,180,253,50,255,176,255,144,255,248,128,124,24,231,10,245,8,71,2,253]},{"1814315":[79]},{"1814317":[255]},{"1814319":[31,131,4]},{"1814323":[4]},{"1814325":[64,184,4,2,32,176]},{"1814333":[144,224,24,93,162,255,66,125,128,190,227,127,128,254,1,221,38,255,146,162,93,174,83,254,67,255,162,220,35,191,64,119,140,255,146,255]},{"1814370":[81,172,39,216,1,92,163,92,65,190,170,85]},{"1814383":[255,93]},{"1814386":[19]},{"1814388":[1]},{"1814390":[162]},{"1814392":[35]},{"1814394":[64]},{"1814396":[136,4]},{"1814399":[146,119,175,159,69,127,139,119,49,61,194,191,64,247,10,211,4]},{"1814417":[216,96,154,128,116,184,118,240,15,96,159,8,245,172,83,255]},{"1814434":[255]},{"1814436":[255]},{"1814438":[207,16,207,48,223,32,255]},{"1814446":[127,128,216]},{"1814450":[154]},{"1814452":[116]},{"1814454":[102,16,15]},{"1814458":[159]},{"1814460":[245]},{"1814462":[83]},{"1814464":[68,92,174,246,88,92,232,23,209,53,248,20,212,175,123,79,24,163,24,65]},{"1814485":[167,192,63,128,46,7,233,14,117,142,62,255]},{"1814498":[247,8,255]},{"1814502":[63,192,126,129,254,1,251]},{"1814510":[245,4]},{"1814514":[64]},{"1814516":[4]},{"1814518":[63]},{"1814520":[36,64,232]},{"1814524":[117]},{"1814526":[58]},{"1814528":[79,249,182,89,8,20,40,182,228,60,10,88,145,97,249,67,174,88,79,176,28,227,140,83,208,139,240,7]},{"1814557":[254,2,188,199,58,241,14,255,8,247,8,63,192,127]},{"1814572":[255]},{"1814574":[254,1]},{"1814578":[160]},{"1814582":[18]},{"1814584":[8]},{"1814586":[130]},{"1814588":[240]},{"1814590":[184]},{"1814592":[64,255,2,255,5,255,42,255,81,191,59,31,53,191,207,255]},{"1814609":[191]},{"1814611":[255]},{"1814613":[255]},{"1814615":[255,96,255,160,95,64,191,32,239]},{"1814633":[32,32,122]},{"1814637":[48]},{"1814639":[58,254]},{"1814642":[255]},{"1814644":[255]},{"1814646":[190]},{"1814648":[31]},{"1814650":[59]},{"1814652":[189]},{"1814654":[207]},{"1814656":[23,255,191,255,95,255,255,255,87,255,255,255,255,255,255,245]},{"1814673":[255]},{"1814675":[255]},{"1814677":[255]},{"1814679":[255]},{"1814681":[255]},{"1814683":[255]},{"1814685":[255]},{"1814687":[245]},{"1814691":[10]},{"1814693":[16]},{"1814695":[3]},{"1814697":[7]},{"1814699":[153]},{"1814701":[63,10,255,191]},{"1814706":[191]},{"1814708":[95]},{"1814710":[255]},{"1814712":[215]},{"1814714":[255]},{"1814716":[255]},{"1814718":[255]},{"1814720":[127,255,223,221,239,255,255,253,255,255,253,247,255,186,85,250]},{"1814737":[255,32,221]},{"1814741":[239]},{"1814743":[253]},{"1814745":[255]},{"1814747":[245]},{"1814749":[186]},{"1814751":[80]},{"1814753":[107,2,23,16,255,2,255]},{"1814761":[127,10,255,69,255,175,255,127]},{"1814770":[223]},{"1814772":[255]},{"1814774":[255]},{"1814776":[255]},{"1814778":[255]},{"1814780":[255]},{"1814782":[255]},{"1814784":[238,155,149,198,255,170,85,90,250,171,212,106,170,231,170,119,96,202,8,132]},{"1814805":[170,160,80,4,174,1,65,16,178,171,171,21,207,115,215,85,255,15,95,81,255,190,255,77,255,221,85,175,32,247]},{"1814836":[255]},{"1814838":[95]},{"1814840":[255]},{"1814842":[255]},{"1814844":[255]},{"1814846":[255,170,58,73,68,186,160,213,90,175,139,156,43,190,119,120,127,112,132,140,1,1,42,170,90,90,99,235,105,106,215,247,255,127,115,255,254,255,117,255,245,213,23,255,150,215,15,175,143,7,255]},{"1814898":[255]},{"1814900":[255]},{"1814902":[223,10,255]},{"1814906":[255,40,255,80,255,120,192,183,18,207,101,31,170,245,149,122,191,104,255,64,86,2,104,136,82,98,197,197,170,170,21,21,191,191,255,255,253,253,23,255,205,189,122,218,95,95,239,239,215,215,191,191,255,87,255]},{"1814962":[159,2,255,5,255,160,255,16,255,40,255,64,255,168,19,236,169,80,93,240,254,99,127,128,253,56,149,4,254,254,19,21,175,172,95,94,254,255,127,127,199,215,235,235,1,255,255,253,252,254,174,174,157,157,255,255,255,253,255,239,255,255,252,3,254,1,254,81,255,98,255]},{"1815034":[255,2,255]},{"1815038":[255]},{"1815040":[11,1,228,161,94,88,111,40,85,52,205,156,62,76,201,196,253,241,95,209,167,104,81,216,74,44,67,182,179,204,42,214,250,245,245,251,122,249,253,120,60,62,191,158,236,207,215,230,231,24,251,4,249,6,60,195,62,193,156,99,207,48,229,26,48,148,16,177,80,56,8,42,43,157,110,30,230,22,15,59,254,169,214,54,130,35,127,73,226,83,207,63,62,1,201,184,233,130,126,152,115,132,201,44,123,128,95,6,37,20,190,6,200,119,78,241,199,120,129,254,131,124,11,244,5,250,8,245,255,214,127,124,191,47,143,166,206,38,31,191,15,47,113,72,42,174,130,16,208,254,169,216,145,247,224,63,208,207,191,247,254,255,126,253,238,110,231,150,239,7,63,111,207,31,254,6,252,3,252,3,62,193,174,65,174,97,15,240,223,32,225,30,153,29,213,66,154,158,223,136,223,139,237,76,110,34,151,68,58,4,41,67,31,22,172,32,159,201,70,1,27,68,167,196,193,71,96,92,114,119,36,38,237,173,25,18,205,144,47,7,135,120,99,190,5,250]},{"1815287":[255]},{"1815289":[255]},{"1815291":[255,16,239,200,127,243,84,243,248,227,192,254,200,118,96,103,32,189,192,167,3,168,4,4,12,53,29,56,32,137,88,202,90,98]},{"1815326":[88,184,84,255,212,251,221,250,209,79,121,230,186,20,225,30,249,5,251,4,223,32,239,16,239,144,238,17,254,161,29,226,93,226,95,55,95,30,63,207,127,255,127,236,232,253,232,210,144,245,8]},{"1815378":[65,161,49,144,3,2,22,30,26,14,28,45,121,11,182,159,148,222,75,175,222,117,234,237,246,205,220,131,232,55,190,65,213,42,251,4,95,40,255]},{"1815418":[235,52,223,96,191,192,135,3,14,128,85,34,160,76,70,150,158,46,47,92,155,79,33,121,199,112,8,2,29,6,53,13,97,16,131,35,84,112,225,92,196,190,5,248,2,249,7,242,14,229,92,136,175,1,252,2,122,132,245,8,235,18,210,33,175,66,31,132,187,46,19,135,120,9,4,14,240,138,135,158,224,152,16,2,60,150,71,235,4,131,74,241,147,13,198,116,186,55,68,220,124,60,75,180,128,241,215,40,27,250,76,179,54,217,253,163,252,20,253]},{"1815538":[241,10,253,2,227,20,255]},{"1815546":[247,8,239,16,60,67,112]},{"1815554":[103,130,88,20,79,11,57,22,14,22,55,191,149,63,20,15,179,35,144,161,221,237,100,141,52,156,160,168,42,193,20,251,51,78,129,120,238,29,82,177,164,11,248,207,42,149,231,16,111,144,249,6,229,24,178,64,128,66,144,7]},{"1815615":[126,89,8,234,42,174,28,14,60,244,62,127,63,188,190,86,119,60,138,102,98,32,54,64,178,226,40,193,2,128,195,168,136,12,243,84,189,82,223,240,61,40,223,130,61,131,63,33,222,213,32,225,10,227,12,129,78,195,20,1,62,1,124]},{"1815679":[254,203,24,74,24,247,43,99,1,243,55,13,59,240,34,114,38,33,13,174,151,3,24,201,248,51,12,140,194]},{"1815709":[19,112,229,29,226,159,120,8,205,252,21]},{"1815721":[223,131,119,7,246,237,175,199,40,207,32,197,58,221,34,221,32,244,8,241,8,225,18,64,24,231,30,214,14,74,30,223,26,80,28,81,24,71,18,21,189]},{"1815763":[27]},{"1815765":[11,150,172,38,24,138,158,172,150,138,154,10,253,8,252,43,237,166,83,16,235,183,101,156,107,171,118,242,5,240,7,225,22,243,12,199,60,227,28,206,49,255]},{"1815808":[138,137,192,146,30,7,201,79,165,220,78,158,221,255,85,85,89,97,147,3,171,151,75,7,227,154,1,247,145,170,42,110,84,42,44,248,200,82,30,180,153,252,16,216,243,38,128,187,100,145,244,2,201,37,136,75,193,7,128,47,81,29]},{"1815871":[127,96,160,23,39,5,53,76,252,5,79,91,143,191,191,23,23,125,189,72,239,180,241,119,115,117,122,160,175,64,247,232,239,66,165]},{"1815907":[56,142,128,132,138,143,10,20,116]},{"1815917":[72]},{"1815919":[248,66,221,128,175,78,53,4,127,5,245]},{"1815931":[171]},{"1815933":[255]},{"1815935":[255,181,196,125,126,3,120,246,224,84,210,84,48,164,169,105,124,195,199,131,255,247,254,63,207,87,199,255,239,85,253,143,191,56,177,2,129,73,8,48,6,184,196,16,196,3,12,4,211,8,71]},{"1815987":[255,49,199,48,235,56,23,16,191,2,245]},{"1815999":[239,47,159,58,30,57,150,155,133,183,206,186,61,215,117,79,67,241,255,245,255,239,181,188,134,249,207,245,206,171,250,255,184,1]},{"1816034":[16,32,72,98,219,1,115,129,55,130,6,6,64,160]},{"1816049":[255,4,251,141,17,62,195,58,70,49,255,33,221,79,251,206,32,143,177,255,98,27,2,247,196,58,133,255,12,122,45,236,154,121,6,243,29,161,89,239,19,195,63,75,179,163,119,41,10,150,135,16,31,30,27,24,31,32,62,4,62,72,94,116,179,120,247,224,111,224,255,224,215,192,255,192,63,128,255,109,186,91,162,27,232,23,241,157,193,204,96,185,197,253,5,93,222,127,254,250,249,253,243,247,251,255,227,245,205,255,207]},{"1816161":[202]},{"1816163":[196,5,9,66,19,9,202,32,68,73,174,5,64,33,116,1,250,2,245,12,226,4,121,24,167,16,111,48,207,239,39,95,119,159,255,111,127,95,255,187,219,189,253,191,215,95,151,15,7,223,211,207,229,159,78,255,192,127,192,63,128,136,192,168,112,12,240,90]},{"1816232":[49,128,187,4,61,2,127]},{"1816240":[39,240,15,128,3,76,5,250,14,113,96,155,64,189,40,215,211,119,183,166,207,223,255,255,254,244,255,254,255,255,159,127,219,107,247,180,239,135,255,95,253,245,254,84,255,171,159,1,4,160,42,81,88,34,160]},{"1816296":[2,8,171]},{"1816300":[84]},{"1816302":[254]},{"1816304":[83,20,132,42,133,90,95,160,244,3,84,171,171,84,129,126,188,22,252,249,255,85,255,184,255,241,255,251,255,255,254,255,254,23,255,216,255,85,255,184,255,241,255,251,255,255,255,65,34,207,32,7]},{"1816357":[254]},{"1816359":[87]},{"1816361":[47]},{"1816363":[69]},{"1816365":[35,190]},{"1816368":[16,4,216,32,1,84,168,16,208,33,186,65,220,35,65,190,247,155,255,180,61,82,63,170,255,196,255,218,255,88,191,191,95,147,255,180,94,49,254,171,245,206,255,218,255,88,127,63,168,69]},{"1816419":[79,163,76,1,118,10,245]},{"1816427":[255]},{"1816429":[255,64,215,18,33,176,4,49]},{"1816438":[137,34,10,196]},{"1816443":[218]},{"1816445":[88,40,87,223,32,255,128,223,32,251,60,125,242,255,34,255,48,255,240,224,31,160,223,112,143,188,123,243,124,187,102,244,59,254,241,63,192,95,160,175,80,71,168,142,97,68,187,11,244,1,222,31]},{"1816498":[95,128,143]},{"1816502":[83,40,28,96,68,34,11,48,33,208,85,175,239,17,213,40,127,144,247,10,223,32,255]},{"1816526":[246,5,6,252,3,253,3,255,129,109,1,252,161,94]},{"1816541":[255,173,86,251]},{"1816546":[252,3,254,1,254,2,255]},{"1816554":[126,129,255]},{"1816558":[83,168,252]},{"1816562":[252,1,252]},{"1816566":[108]},{"1816568":[252]},{"1816570":[94]},{"1816572":[255]},{"1816574":[86]},{"1816576":[82,98,162,27,211,229,251,80,211,18,235,213,213,59,119,24,48,143,19,239,1,191,128,47,128,109,144,174,56,215,189,90,238,16,253,3,254,1,255]},{"1816616":[255]},{"1816618":[127]},{"1816620":[239]},{"1816622":[199,48,1]},{"1816626":[168,2,54,1,43]},{"1816632":[65]},{"1816634":[174]},{"1816636":[214]},{"1816638":[74,16,95,239,255,253,255,254,245,95,254,235,126,220,255,238,111,122,48,255]},{"1816659":[253]},{"1816661":[254]},{"1816663":[85]},{"1816665":[234,43,127,85,255,111,111,32,15,2,127,1,255,170,255,21,255,162,213,17,170,21,16,207]},{"1816690":[255]},{"1816692":[255]},{"1816694":[255]},{"1816696":[255]},{"1816698":[255,42,255,85,127,239,255,254,247,94,187,175,254,159,255,184,185,209,255,236,245,50]},{"1816721":[254,2,86,65,235,174,190,87,255,191,191,127,255,255,255,1,255,169,253,20,254,97,81,71,174,110,76,19,128,207]},{"1816752":[255]},{"1816754":[255,2,255,1,255,174,255,81,255,179,255,127,255,255,251,174,235,239,247,238,255,210,254,144,244,160,184,16,84,2,1,171,187,251,85,247,255,255,126,254,255,255,255,255,255,255,85,254,4,84,25,171,45]},{"1816808":[110,136,95,1,239,2,255,1,255,1,255,171,255,84,255,255,254,119,255,254,255,253,255,254,255,236,252,77,253,128,16,130,160,64,66,171,1,23,42,255,87,252,255,255,255,255,255,127,127,127,253,63,254,255,213,255,16,170,178,1,127,34,127,197,191,94,63,214,255,169,255,42,255,85,254,254,255,221,255,58,63,33,255,41,255,86,255,213,252]},{"1816898":[16]},{"1816900":[132,4,46,127,21,63,168,253,80,255,16,119,255,191,255,127,251,255,209,255,234,255,86,255,170,255,200,255,63,239,255,77,255,126,255,46,255,149,255,171,255,85,255,191,255,16,255,50,255,129,255,209,255,106,253,86,255,170,119,200,129,1,46,63,90,255,80,249,96,243]},{"1816971":[213,24,234,18,200,254,255,208,255,160,255,14,243,132,243,32,245,24,234,18,202,255,255,255,111,255,95,251,247,251,127,247,247,247,239,239,231,255]},{"1817010":[255,144,255,160,245,10,247,136,213,42,234,21,192,63,119,255,149,253,42,186]},{"1817031":[85]},{"1817033":[232,16]},{"1817036":[117]},{"1817038":[157,6,8,255,194,127,197,191,170,255]},{"1817049":[232,50,16,117,69,181,179,255,247,255,255,191,255,255,255,255,255,221,255,239,207,255,213,255,8,253,2,250,5,85,170,232,23,34,221]},{"1817085":[255,12,251,112,226,88,192,12,164,2,10,5,3,129,1,90]},{"1817102":[80,5,148,234,34,224,89,250,14,3,5,7,171,131,94,91,255,250,235,103,241,231,254,249,255,242,253,253,215,253,251,254,250,85,230,153,214,45,161,94,4,255,2,255,40,215,4,251,5,255,119,54,119,60,47,31,46,6,45,26,165,139,161,204,66,172,58,53,192,10,97,86,80,75,234,79,216,141,244,199,176,231,183,166,62,128,235,147,239,3,223,10,253,137,223,198,251,161,18,237,129,127,20,239,161,254,144,255,114,255,24,255,28,255,64,64,240,168,208,85,244,222,206,90,187,110,178,113,86,182,181,105,132,32,239,116,205,16,119,15,55,27,52,144,50,5,107,151,35,81,245,206,146,161,15,34,27,66,144,94,45,42,100,155,114,143,114,141,51,206,140,243,154,229,30,229,207,242,48,36,54,160,45,74,17,23,171,2,139,3,82,138,61,129,201,134,157,2,123]},{"1817302":[81,28,250,229,116,122,35,36,193,135,130,219,246,81,215,135,190,82,255,174,251,6,252,4,255,1,76,183]},{"1817331":[255]},{"1817333":[255,236,181,22,249,128,255,220,251,250,125,207,192,107,65,24]},{"1817350":[89,3,27,2,23,4,48,13,100,12,215,117,85,146,161,99,96,228,224,97,107,227,92,223,25,131,118,104,145,173,103,156,224,31,100,159,231,27,216,40,133,125,61,194,185,70,127,128,255]},{"1817400":[127,128,241,14,248]},{"1817406":[236,19,155,10,148,149,177,124,218,150,72,100,146,80,93,192,85]},{"1817424":[129,64,198,101,31,5,48,88,13,97,5,229,2,2]},{"1817439":[42,196,125,72,188]},{"1817445":[232,23,200,87,216,63,128,255]},{"1817454":[213,42,125,130,252]},{"1817460":[233,16,199,35,202,135,58,63,253,127,213,255,97,223]},{"1817475":[95]},{"1817477":[170]},{"1817479":[128,64,64,88]},{"1817484":[249]},{"1817486":[85]},{"1817488":[62,160,95,128,170]},{"1817494":[192,32,224,32,5,167]},{"1817501":[4,168,170,95,64,127]},{"1817508":[255]},{"1817510":[95,224,255,64,93,162,251,4,85,2,97,31,32,255,85,255,95,191,223,63,88,255,251,255,253,255,9,14,168,132,162,223,136,16,16,16,1]},{"1817548":[128]},{"1817550":[16]},{"1817552":[200,31,52,13,1,196,152,6,136,156,64,234]},{"1817565":[87,138,239,28,5,2,202,189,70,249,6,235,20,85,170,168,87,16,101,12,56]},{"1817587":[129,56,195,233,255,99,239,21,255,168,255,154,255,232,255,128,253]},{"1817605":[255,170]},{"1817608":[17]},{"1817610":[49,16,136,2]},{"1817616":[151,128,127,2,255]},{"1817622":[170]},{"1817624":[17]},{"1817626":[33,154,2,85,234,255,151,104,253,2,255]},{"1817638":[255]},{"1817640":[255]},{"1817642":[101,154,168,87]},{"1817647":[21]},{"1817649":[127,128,255]},{"1817653":[255,255,255,255,255,101,239,168,255,234,255,34,254,48,93]},{"1817669":[190,170,17,85]},{"1817674":[15,4,6]},{"1817678":[20]},{"1817680":[220,48,238,155,255,69,187]},{"1817688":[85]},{"1817690":[43,244,100,249,190,235,253,3,109,147,190,65,255]},{"1817704":[255]},{"1817706":[11,212,6,153,20,65]},{"1817713":[254,32,238]},{"1817717":[255,238,255,255,255,43,251,102,255,190,255,55,7,97,85,64,206,138,117,85,10,255]},{"1817740":[175]},{"1817742":[21]},{"1817744":[177]},{"1817746":[78,123,31,149,255,37,95]},{"1817754":[255]},{"1817756":[175,80,191,234,1,47,149,186,206,176,255]},{"1817768":[255]},{"1817770":[255]},{"1817772":[175,80,21,64,33,70]},{"1817779":[15,64,31,138,255,245,255,255,255,175,255,191,255,76,38,95,19,9,146,200,103,49,8,143]},{"1817804":[255]},{"1817806":[87]},{"1817808":[135,132,4,168,255,155,83,79,23,46,255,112,255]},{"1817822":[255,168,148,127,132,123,88,175,103,140,137,110,143,112,255]},{"1817838":[87]},{"1817840":[254]},{"1817842":[248,4,16,105,32,3,129,7,143,255,255,255,255,255,40,104,128,192,128,192,130,104,81,6,255]},{"1817868":[247]},{"1817870":[255]},{"1817872":[215,215,191,255,127,255,253,127,190,239,220,43,255,12,255,10,64,191]},{"1817891":[127,64,191,234,21,87,168,247,8,243,4,245]},{"1817905":[127]},{"1817907":[191]},{"1817909":[127,130,255,81,255,247,255,251,255,255,255,159,175,48]},{"1817924":[4,8,171,4,85,130,255]},{"1817932":[255]},{"1817934":[255]},{"1817936":[112,239,255,239,251,255,85,255,171,255,144,111,25,230,255,170,16,64,16,239,12,241,174,80,214,41,255]},{"1817964":[255]},{"1817966":[85,8,16,255,16,255,4,255,170,255,84,255,255,255,255,255,247,255,247,236,106,71,54,24,250,160,85,78,255]},{"1817996":[247,17,255,11,23,255,141,229,239,237,91,91,146,27,151,127,166,196,52,228,4,25,59,134,24,247,164,176,231,204,168,105,91,241,235,235]},{"1818033":[247,40,255]},{"1818037":[255,8,255,1,119,150,255,6,255,20,207,217,204,49,18,117,46,233,8,251,88,254,153,149,18,247,117,52,247,235,229,159,226,91,228,191,128,31,96,95,160,255,129,8,8,17,145,104]},{"1818086":[160,96,64,64,193,192,130,128,132,132,7,254,14,254,127,234,159,246,63,212,63,200,127,232,122,93,223,72,235,8,214,86,239,14,246,23,189,168,243,165,251,147,111,215,131,35,96,66,129,96,2,98,227,180,162,242,142,235,160,190,124,106,191,180,62,110,221,245,92,92,95,87,121,120,32,223,128,127,34,223,129,126]},{"1818169":[254,67,190]},{"1818173":[249,5,247,233,77,187,39,241,15,119,143,191,15,239,223,207,191,255,159,236,205,126,255,254,29,94,63,53,151,59,127,125,255,127,127,16,14,130,132]},{"1818213":[46,166,168,197,168,203,176,141,112,159,128,32,215]},{"1818227":[191,192,61,64,63,8,255,64,255,128,255,32,255,42,255,42,245]},{"1818245":[255,234,255,247,250,63,241,191,87,255,238,42]},{"1818258":[170,128,192,192,4,238]},{"1818265":[242,224,241,192,215,238,238,255]},{"1818274":[127]},{"1818276":[3,60]},{"1818279":[17]},{"1818281":[13,32,78]},{"1818285":[104,238,17]},{"1818289":[255,170,117,252,63,21,251,13,255,14,255,40,255,17,255,25,247,51,249]},{"1818309":[255,136,255,20,247,186,217,84,251,255,226,209,192,213,224,4,4,176,56,8,16,8,152]},{"1818333":[80]},{"1818335":[226,63]},{"1818338":[29,6,251]},{"1818342":[129,70,8,239,8,103]},{"1818349":[175]},{"1818351":[29,192,63,194,63,4,251,246,207,231,255,99,255,175,255,29,255,250,246,220,254,108,253,192,191,18,255,185,175,193,124,106,254,243,160,222,2,239,193]},{"1818391":[128,34,48,128,169,192,65,192,234,95,1,252,1,127,3,63,64,199,8,128,86,73,183,64,149,160,95,2,253,128,126,64,255,40,223,22,255,180,255,20,255,63,251,127,251,251,117,247,254,191,117,21,255,131,255,128,126,127,59,123,81,113,33,246]},{"1818456":[53]},{"1818458":[21]},{"1818460":[131,128]},{"1818465":[239,174,1,222]},{"1818470":[255]},{"1818472":[255]},{"1818474":[127,128,127,128,62,193,16,43,80,175,33,222]},{"1818487":[255]},{"1818489":[255,128,255]},{"1818493":[127,192,255,255,219,223,238,255,255,255,255,255,255,255,255,255,223,213,255,223,203,207,206,255,251,255,81,255,175,255,5,223,2,213,128,48,207,48,69,4,160,174,1,80,138,250]},{"1818540":[253,2,127,128]},{"1818545":[251,138,116,91,164,80,175,37,218,5,250]},{"1818557":[255]},{"1818559":[127,243,80,247,246,255,236,255,232,255,255,255,254,143,127,223,239,94,241,254,255,253,238,255,104,255,255,255,30,15,15,207,5,161,66,1,254,2,253,128,95]},{"1818601":[255,224,5,240,11,250,5,189,64,1,242,2,236,32,200]},{"1818617":[255,26,228,4,251]},{"1818623":[255,255,4,255,16,223,116,255,246,223,144,255,250,254,255,254,251,12,247,52,211,116,215,254,247,176,159,251,254,254,190,254,122,251,8,203,52,171,80,1,222,111,160,4,91,65,174,129,20,247]},{"1818674":[195,24,135,88,33,214,31,224,164,90,16,239,106,145,127,168,253,16,218,152,80,129,170,69,64,45,64,221]},{"1818703":[255,215,255,255,255,255,255,255,255,255,255,255,255,191,255,255,255,215,168,239]},{"1818724":[103,32,255]},{"1818728":[255]},{"1818730":[255]},{"1818732":[255,98,255]},{"1818736":[255,87,255,255,255,223,255,255,255,255,255,255,255,157,255,255,240,32,85]},{"1818756":[138,21]},{"1818759":[215]},{"1818761":[23,10,255]},{"1818765":[255,2,255,255,255,255,255,255,255,255,255,255,255,241,255,255,255,125,255,223,14,255]},{"1818788":[255,32,255]},{"1818792":[255,168,255,14,255]},{"1818798":[255,130,255,241,255,255,255,223,255,255,255,87,255,241,255,255,255,125,64,5,80,163]},{"1818821":[23,2,255]},{"1818825":[247,162,255]},{"1818829":[255]},{"1818831":[119,255,255,255,255,255,255,253,255,255,254,92,255,255,255,221,255,255,170,255,4,255,168,255,2,254,9,255,163,255]},{"1818862":[255,170,255,85,255,251,255,87,255,253,255,246,255,92,255,255,119,221,16,127,169,253,80,255]},{"1818887":[127,65,62,128,156]},{"1818893":[254,2,253,238,255,86,255,170,255,80,127,105,190,177,188,160,254,2,255,255,145,255,171,255,85,127,47,127,150,190,46,254,94,255,255,255,110,253,86,255,170,127,208,62,105,156,115,254,161,253,2]},{"1818945":[255]},{"1818947":[253]},{"1818949":[250,11,80,21,8,251,128,215,32,255]},{"1818960":[168,255]},{"1818963":[253,128,250,11,91,149,29,251,251,215,247,255,255,255,87,255,255,255,127,255,255,95,223,127,255,255,255,255,255,255,168,253,2,250,133,80,175,136,119,128,127,32,223]},{"1819007":[255,5,128,45]},{"1819012":[95]},{"1819014":[117,2,248,7,225,29,134,123,164,84,5,133,47,45,95,95,255,125,255,248,255,193,254,130,255,4,255,255,253,255,255,255,125,247,248,255,195,220,131,248,12,80,128,127,2,253]},{"1819061":[255,130,127,7,255,31,255,123,255,92,255,125,10,220,1,237,18,161,85,66,170,68,95,170,191,80,239,125,122,251,208,255,168,255,1,255,2,228,68,234,187,64,249,240,250,210,241,168,186,11,84,23,168,255]},{"1819116":[238]},{"1819118":[86,32,14,245,35,223,18,255,95,255,191,255,255,255,255,255,239,223,252,2,130,85,64,170]},{"1819143":[2,168,191,64,255,128,255,2,253,255,233,253,40,255]},{"1819158":[253]},{"1819160":[232,168,192,242]},{"1819165":[63,2,255,233,234,42,85,21,170,255]},{"1819176":[255]},{"1819178":[205,192,128,64,2]},{"1819184":[2,255,87,255,191,255,255,255,255,255,63,255,63,255,253,255,107,214,89,122,116,148,225,175,215,159,226,170,128,192,40,224,223,94,154,85,85,171,79,241,216,224,77,247,71,247,71,127,95,247,248,117,190,63,254,255,223,95,255,255,159,159,63,63,128,255,141,199,65,129,1,129,167,39]},{"1819259":[128,104,232,192,192,186,170,71,191,4,4,24,248,248,248]},{"1819275":[6]},{"1819277":[4,2,4,185,67,187,68,69,251,251,27,5,141,255,249,253,249,253,251,83,84,4,67,190,255,230,255,252,253,254,255,254,255,254,255,7,248,239,251,65,65,29,29,115,113,1,1,3,3,1,1,144,197,56,166,2,62,42,63,128,143,178,191,16,7,18,23,235,68]},{"1819347":[161,128,161,225,90,64,168,89,191,229,135,197,255,125,67,157,131,223,65,69,129,166,64,185,81,133,117,253,37,56,255,125,254,221,62,222,191,255,95,254,71,250,111,250,39,132,159,62,204,208,160,28,60,110,14,143,191,148,197,133,167,129,249,212,7,113,23,86,186,79,147,143,83,133,248,23,233,231,153,28,221,6,119,158,62,197,87,212,167,229,229,102,103,122,135,83,161,121,129,161,64,186,114,91,179,58,216,217,185,1,255,171]},{"1819460":[68,68,85,85,255,255,170,34]},{"1819472":[84,255]},{"1819475":[255,85,187,255,255]},{"1819481":[136,85,119,255,255,255,255,84,84]},{"1819491":[255,238,255,170,255,255,255,255,255,255,255,255,255,171,255,255,255,17,17,85,85,119,119,136,136]},{"1819520":[18,252,212,89,86,92,55,231,151,6,59,36,194,133,105,63,69,241,91,170,89,173,224,7,32,39,165,142,147,240,190,201,74,68,76,169,234,240,224,240,128,177,228,254,113,224,239,233,187,255,230,191,31,7,31,15,254,175,89,70,159,141,14,18,169,3,104,41,118,228,205,109,210,82,55,50,110,76,223,158,86,85,150,178,151,75,124,243,247,15,109,136,209,17,224,38,168,2,77,13,32,163,31,159,61,63,127,127,255,255,255,255,253,255,244,248,95,227,32,224,226,98,215,215,174,174,89,89,85,255,234,64,196,196,18,127,255,85,128,128,42,42,133,133,170,127,64,191,197,59,255,146,170]},{"1819674":[127,255,255,255,127,255,42,170,64,63,254,255,237,255,255,255,255,255,213,255,250,255,85,255,255,63,1,1,18,18,255,255]},{"1819708":[42,42,5,5,119,255,255,68,69,69,117,245,255,127,1]},{"1819724":[128,128]},{"1819728":[136,255,68,187,69,186,255,127,128,8,254,254,255,255,255,255,136,136,68,187,255,255,138,255,255,255,255,255,127,255,255,255,119,255,255,187]},{"1819766":[117,117,247,247,1,1,128,128]},{"1819776":[127,255,187]},{"1819780":[85,85,31,10,128,251,225,191,227,125,241,191,128,255]},{"1819795":[255,85,170,224,234,26,4,82,128,26,2,66,128,128,128]},{"1819811":[255,255,255,255,255,255,255,255,255,253,255,255,255,127,255,255,255]},{"1819830":[21,21,251,251,127,127,255,255,127,127,254,254,190,28,91,93,136,189,188,89,205,141,243,151,193,201,1,255,24,227,95,162,122,194,207,148,110,48,20,10,90,116]},{"1819874":[28,229,249,251,253,255,123,255,255,255,251,251,163,243,255,255,251,227,6,2,7,7,231,231,199,199,237,237,215,223,251,255,251,226,64,64,80,95,127,255,104,160,64]},{"1819918":[120,168]},{"1819921":[255,226,29,68,191,127,112,128,10,151,55,63,63,135,47]},{"1819937":[4,64,29,251,255,47,127,255,255,255,255,127,127,255,255,251,255,255,191,4,4,208,80,117,117,72,72,192,64,80,80,183,250,191,42]},{"1819975":[255,255,85]},{"1819980":[10,10]},{"1819984":[8,243,42,213]},{"1819989":[255,255]},{"1819992":[170,1,255,255,255,255,255,255,12,69]},{"1820003":[213,255,255,255,255,255,255,255,255,245,255,255,255,186,247,255,255]},{"1820024":[254,254]},{"1820028":[10,10]},{"1820032":[247,40,28,163]},{"1820039":[255,255,85]},{"1820044":[2,2]},{"1820048":[49,70,163,92,4,255,255]},{"1820056":[170,64,255,255,255,255,255,255,168,238]},{"1820067":[92,251,255,255,255,255,255,255,255,253,255,255,255,17,238,255,255,4,4]},{"1820088":[191,191]},{"1820092":[2,2]},{"1820096":[76,237,161,190,68,68,22,255,255,94]},{"1820107":[1,2,2,1,3,253,130,250,69,69,187,255,22,161,10,255,254,254,254,255,253,15,12,64,69,254,255,233,255,255,255,255,255,253,255,254,255,243,188,191,31,1,1,22,22,245,245]},{"1820156":[3,3,1,1,215,3,15,135,77,73,207,88,15,23,223,212,15,56,159,136,52,10,128,121,104,180,45,179,32,114,115,147,71,231,199,23,227,225,7,118,207,253,219,251,223,253,220,252,168,248,168,248,62,195,249,255,48,63,100,122,162,191,51,47,69,127,103,95,255,63,175,95,199,47,239,87,255,111,255,213,255,207,255,21,255,255,215,255,169,237,16,255,146,255,32,255,16,255,232,255,63]},{"1820258":[39,216,81,46,168,215,2,109,202,21,224,47,2,21]},{"1820273":[255,40,255,70,255,111,255,125,255,255,255,223,255,255,255,255,92,255,255,255,253,255,255,255,255,255,255,255,255,255,79,92,92,254,255,253,253,127,255,255,255,69,255,8,253,48,255,92,163,254]},{"1820324":[253,2,127,128,255]},{"1820330":[69,186,8,247,128,79,163,255]},{"1820339":[255,2,255,128,255]},{"1820345":[255,186,255,247,255,207,255,255,81,255,251,253,94,255,255,85,254,251,255,245,255,255,255,16,80,187,251,94,94,240,248,255,255,214,246,63,127,84,254,16,175,187,4,92,163,240,15,84,170,210,45,53,202,84,171,175,255,4,255,163,255,15,255,170,255,45,255,202,255,171,255,112,31,58,69,253,18,255,234,119,255,255,255,223,251,234,249]},{"1820433":[208]},{"1820435":[64]},{"1820437":[16,234,234,140,156]},{"1820443":[250,180,248,87,251,64,239,128,127]},{"1820453":[239,234,21,4,251]},{"1820459":[255,144,105,64,185,47,127,63,191,239,255,21,255,251,255,255,255,111,251,189,251,1,254,56,199,108,147,255,192,245,10,255,128,111,208,191,232,1]},{"1820498":[1,1,24,16]},{"1820503":[192]},{"1820506":[128,128,208,208,104,232,46,209]},{"1820515":[254,2,253]},{"1820519":[63]},{"1820521":[255,128,127,64,191,40,215,208,255,255,254,253,255,63,255,255,255,127,255,191,255,215,255,168,247,128,127]},{"1820549":[255,224,223,64,223,186,197,244,11,254,129,32]},{"1820566":[128,128,192,192,192,192]},{"1820574":[128,128,127]},{"1820578":[126,129,239,16,135,120,138,181,128,127]},{"1820589":[255,128,127,128,255,129,255,16,255,120,255,21,127,63,255,255,255,127,255,207,251,103,223,175,255,1,255,8,255]},{"1820619":[255]},{"1820621":[255,128,127,203,139,119,21,175,42,1]},{"1820632":[8,8]},{"1820640":[116,138,202,36,213,42,255]},{"1820648":[246,9,95,160,63,192,5,250,1,254,49,238]},{"1820661":[255]},{"1820663":[255,1,255,160,255,192,255,250,255,255,255,239,139,137,198,83,140,144,102,172,99,43,255,21,255,255,255,171,1,166,134,70,4,144]},{"1820698":[169,33,43,10,21,1]},{"1820705":[191,206,49,111,182,153,98,102,153,102,152,245,10,254,1,64,191,32,255]},{"1820725":[249,70,251,144,255,137,254]},{"1820733":[255]},{"1820735":[255]},{"1820737":[127]},{"1820739":[255]},{"1820741":[255]},{"1820743":[255]},{"1820745":[255]},{"1820747":[255]},{"1820749":[255]},{"1820751":[127,255,255,255,255,255,255,247,255,255,255,253,255,254,255,247,255,255,128,255]},{"1820772":[255]},{"1820774":[255,8,255]},{"1820778":[255,2,255,1,255,8,255,127,255,255,255,255,255,247,255,255,255,253,255,254,255,247]},{"1820801":[255]},{"1820803":[255]},{"1820805":[255]},{"1820807":[255]},{"1820809":[255]},{"1820811":[255,16,255,16,239,255,255,85,255,251,255,85,255,171,255,5,255,186,255,53,207,255]},{"1820834":[255,170,255,4,255,170,255,84,255,250,207,117,255,250,255,255,255,85,255,251,255,85,255,171,255,5,223,138,255,5]},{"1820865":[255]},{"1820867":[255]},{"1820869":[255]},{"1820871":[255]},{"1820873":[255]},{"1820875":[255]},{"1820877":[255,128,127,234,255,212,255,170,255,81,255,234,255,85,255,170,255,149,255,255,21,255,43,255,85,255,174,255,21,255,170,255,85,255,234,255,234,255,212,255,170,255,81,255,234,255,85,255,170,127,149,4,218,34,189]},{"1820933":[254,2,253]},{"1820937":[254,10,245,24,231,8,245,132,222,34,191,128,254,2,255,128,254,26,247,24,231,8,253,223,95,159,191,255,127,255,255,255,127,247,247,255,231,255,255,218,165,189,66,254,129,253,2,254,129,245,10,231,24,245,10,94,129,189,2,94,129,252,3,94,129,189,2,95,160,191]},{"1821008":[95,222,191,189,95,222,255,252,95,222,191,189,95,255,191,191,254,255,253,255,254,255,252,255,254,255,253,255,255,255,255,255,129,127,2,255,129,127,3,255,129,127,2,255,160,95]},{"1821055":[255,152,123,37,247,26,234,177,123,74,175,53,207,154,123,181,71,251,156,252,38,254,11,241,53,250,15,245,5,254,154,253,5,159,224,45,210,15,224,63,64,26,160,15,192,159,224,15,64,123,252,254,253,238,255,123,255,191,255,207,255,127,255,79,255,160,191,68,251,170,253]},{"1821127":[251,128,255,65,254,171,250,4,251,160,239,68,127,174,251,10,247,132,255,69,255,171,255,10,63,224,48,196]},{"1821156":[174,8,14,10,132,4,69,4,175,14,206,10,143,255,251,255,245,251,253,243,251,255,250,255,244,251,241,255,4,251,25,238,183,72,117,138,207,48,253,2,127,128,49,206,4,255,27,251,187,251,127,255,207,255,255,255,127,255,59,255,4]},{"1821218":[27,14,187,8,127,10,207]},{"1821226":[255,2,127]},{"1821230":[59,10,251,255,224,255,68,255,128,255,48,255]},{"1821243":[255,128,255,196,255,136,200,40,232,128,64,172,124,134,78,36,228,143,71,171,103,207,127,79,127,79,127,95,111,87,111,79,127,71,119,71,115,159,159,63,63,23,23,187,191,25,31,51,55,16,23,180,183,224,96,192,192,232,224,84,212,254,254,204,196,239,231,75,195,10,12,2]},{"1821316":[42,42,18,16,170,170,82,80,250,250,118,120,253,251,249,251,251,251,249,251,251,251,249,251,251,251,249,247,246,255,250,251,210,251,234,251,86,255,174,255,6,255,142,255,9,9,5,1,45,41,21,17,173,173,85,85,253,253,113,113,165,39,6,1,134,23,18,2,130,66,100,68,141,73,132,6,6,119,189,165,19,15,158,240]},{"1821401":[118,192,190,11,120,7,60,54,222,229,89,111,235,240,14,87,237,158,99,120,239,124,197,253,19,254,27,238,25,255,13,191,100,255,34,191,67,253,3,84,165,128,208,4,244,46,204,134,228,151,228,23,44,71,229,5,184,84,232,180,136,196,218,244,234,212,91,60,179,213,27,39,39,100,68,166,230,207,223,231,231,87,87,191,55,7,7,218,234,191,220,27,250,49,241,25,249,40,232,200,104,40,232,136,136]},{"1821508":[170,170,85,85,63,255,5,255]},{"1821517":[95]},{"1821519":[175,255,255,255,255,255,255,255,255,255,63,255,5,95]},{"1821534":[175]},{"1821536":[119,255,255,255,85,255,170,255,192,255,250,255,95,95,175,175,136,136]},{"1821556":[170,170,85,85,63,63,5,5,160]},{"1821566":[80]},{"1821568":[201,137,97,237,73,201,74,203,77,68,97,251,71,85,105,121,157,242,247,88,218,116,251,116,80,127,255,65,87,105,127,67,113,225,255,235,243,235,211,227,119,111,231,231,231,231,231,231,150,142,22,14,31,7,60,44,152,8,14,30,138,154,140,148,191,222,63,190,127,92,63,174,148,128,65,65,140,255]},{"1821647":[254,97,8,193,96,3,64,208,102,235,235,255,255,255,140,254]},{"1821664":[255,255,255,255,255,255,255,255,127,255,190,255,115,255,254,254,183,183,31,31,191,191,25,25,148,148,65,65,140,140,1]},{"1821696":[46,46,149,21,63,63,86,87,192,240,15,170,93,93,248,111,255,255,127,127,255,255,255,254,240,192,176,26,93,98,47,151,209,255,234,255,192,255,169,255,58,250,191,191,63,127,240,240,46,46,149,149,63,63,86,86,207,202,69,5,192,64,95,95,169,168,64,64,168,168,84,84]},{"1821769":[5,250,170,85,85,1,254,254,254,255,255,255,255,255,255,5]},{"1821786":[5,175,85,170,254,255,87,255,191,255,87,255,171,255,173,173,255,255,255,255]},{"1821808":[169,169,64,64,168,168,84,84,250,168,80,80]},{"1821822":[255,254,251,63,255,62,126,4,62,43,104,233,40,33,84,84,1,254,64,32,1,32,155,129,197,234,253,124,214,246,85,171,254,87,255,255,255,255,255,255,255,255,149,253,255,255,254,255,168]},{"1821872":[223,223,223,223,126,126,20,20,106,104,9,9,1,1,255,254,99,47,33,237,227,207,81,93,251,231,169,181,219,103,57,213,164,154,166]},{"1821908":[196,178,246,48,172,98,174]},{"1821916":[76,146,14,32,255,251,239,251,127,235,255,219,231,227,135,195,199,211,151,179,85,93,87,71,181,165,183,135,125,85,95,55,173,245,79,119,96]},{"1821954":[106,34,80]},{"1821958":[168,8,128,128,128]},{"1821964":[171,171,215,87,31,31,21,55,47,47,87,223,255,127,127,255,255,127,127,255,255,255,255,255,255,255,255,255,255,127,255,255,212,127,168,255,224,224,200,200,208,208,32,32,128]},{"1822012":[171,43,87,87,8,8]},{"1822020":[32,32]},{"1822024":[160,169,104,111,189,253,55,87,255,255,255,255,255,255,255,255,249,240,255,248,237,162,203,140,247,255,255,255,223,255,255,255,89,249,151,255,127,255,212,216,8,8]},{"1822068":[32,32]},{"1822072":[166,160,104,104,144,144,63,26]},{"1822086":[8,8,31,127,209,209,255,255,104,232,255,255,255,255,255,255,247,255,127,31,255,255,255]},{"1822110":[168,87,255,255,255,255,255,255,255,255,96,127,46,255,255,255,64,64]},{"1822136":[159,31,209,209]},{"1822142":[191,23,2,1,1,7,15,11,130,138,4,244,86,86,208,209,203,213,252,254,255,248,249,252,122,241,250,10,252,250,212,42,210,40,255,255,255,255,247,255,251,251,244,247,175,255,252,255,21,5,1,1]},{"1822196":[10,10,5,1,15,6,83,82,6,7,250,177,31,40,63,80,127,106,127,40,127,234,255,108,255,234,255,172,135,159,47,207,85,31,23,151,149,63,19,23,21,63,83,83,8,240,208,208,106,224,232,104,234,192,236,232,234,192,172,172,207,191,175,223,159,127,151,127,63,255,23,255,63,255,83,255,255,175,255,21,255,43,255,5,255,55,255,69,255,139,255,5,80,255,234,255,212,255,250,255,200,239,186,255,116,255,248,255]},{"1822305":[175]},{"1822307":[21]},{"1822309":[43]},{"1822311":[5,48,23,64,5,128,11,2,5,255,255,255,255,255,255,239,255,103,255,239,255,223,255,255,255,255,199,255,239,251,249,255,121,255,255,255,95,255,252,255,117,42,255,16,255,2,251,134,255,10,255,128,255,3,255,10,255,18,213]},{"1822371":[239,4,249]},{"1822375":[121,10,245,33,94]},{"1822381":[252,128,117,197,255,239,255,249,255,249,255,245,255,255,255,252,255,253,255,245,255,255,255,237,231,255,199,255,127,255,127,253,255,255,243,170,255,4,255,138,239,48,223,128,253]},{"1822427":[255,2,223,12,255,160,95,4,251,144,103,24,255,16,111,128,255]},{"1822445":[255]},{"1822447":[243,95,255,251,255,103,255,199,239,127,255,127,255,255,255,243,255,85,255,255,255,253,255,254,255,125,255,254,255,221,251,254,247,234,251]},{"1822483":[191,2,127,1,255,130,255,1,255,38,255,9,255,64,191]},{"1822499":[255]},{"1822501":[255]},{"1822503":[255]},{"1822505":[255,12,243]},{"1822509":[251]},{"1822511":[247,191,255,255,255,255,255,255,255,255,255,255,255,251,255,247,255,198,249,171,254,65,254,235,255,81,255,170,255,80,255,170,255,57,185,124,255,191,254,20,255,190,255,95,255,175,255,87,255]},{"1822561":[255,41,215]},{"1822565":[254]},{"1822567":[255,16,239,10,245]},{"1822573":[255,2,253,255,255,214,255,253,254,255,255,239,255,245,255,255,255,253,255,179,76,175,88,223,96,239,240,207,112,191,248,22,249,166,249,108,76,212,216,160,96,16,208,184,176,96,248,235,249,249,249]},{"1822625":[255]},{"1822627":[127]},{"1822629":[255,128,127]},{"1822633":[191,32,223]},{"1822637":[255,160,95,255,255,127,255,127,255,255,255,127,127,223,255,255,255,95,255]},{"1822657":[255,184,71,84,171,234,21,208,47,226,45,240,15,232,23]},{"1822682":[24,8,56,40,48,48,139,116,1,254,3,252,1,254,2,253,8,239]},{"1822701":[239,17,222,116,255,254,255,252,255,254,255,253,255,247,231,215,207,206,239,47,255,5,250,3,255,1,254,11,255,5,255,11,247,5,255,47,10]},{"1822740":[3,2]},{"1822744":[11,10,5,1,3,2,5,1,245,10,255]},{"1822756":[253,2,127,128,245,10,254,1,253,2,254,1]},{"1822769":[255]},{"1822771":[255]},{"1822773":[255,128,255]},{"1822777":[255]},{"1822779":[255]},{"1822781":[255]},{"1822783":[255]},{"1822785":[127]},{"1822787":[255,128,95]},{"1822791":[55,160,197,84,9,154,101,189,68,255,255,253,255,255,255,255,255,255,255,255,255,223,191,223,159,255,128,255,2,255,32,255]},{"1822824":[127,10,255]},{"1822828":[191,96,187,192,255,127,255,253,255,223,255,255,255,245,255,255,255,159,255,31]},{"1822849":[239]},{"1822851":[255]},{"1822853":[255,128,247]},{"1822857":[87,66,55,160,85,16,230,142,239,68,255,255,255,125,255,255,255,253,255,255,255,255,255,239,97,255,187,255]},{"1822886":[255,138,255,168,255,2,255,10,255,1,239,158,255,68,255,255,247,125,255,87,255,253,255,245,255,254,128,63]},{"1822915":[127]},{"1822917":[255]},{"1822919":[255,1,255,162,255]},{"1822925":[95,8,255,170,63,21,127,250,255,85,255,254,255,93,255,255,255,247,255,191,21,255,234,255,5,255,170,255,1,255,162,255,160,255,8,63,234,127,149,255,250,255,85,255,254,255,93,255,95,255,247]},{"1822977":[254]},{"1822979":[255]},{"1822981":[255]},{"1822983":[127,64,255,128,253,80,255,165,255,160,254]},{"1822995":[255,160,255,208,255,170,255,86,255,170,255,80,255,255,95,255,255,255,95,255,175,255,85,255,171,255,85,255,175,254,161,255]},{"1823028":[255,160,127,208,255,170,253,86,255,170,255,80,23,160,43,70,15,230,15,208,1,250]},{"1823051":[253]},{"1823053":[255]},{"1823055":[255,23,183,43,111,15,235,15,223,129,251]},{"1823067":[253,160,255]},{"1823071":[255,255,255,249,255,253,255,255,255,255,127,255,255,255,95,255,255,160,95,70,185,230,25,208,47,250,133,253,2,255,160,255]},{"1823104":[142,126,241,21,161,31,254,1,94,1,173]},{"1823116":[5,160,10,64,239,142,255,145,255,129,255,212,95,94,175,173,5,165,10,74,159,224,155,132,129,158,212,213,254,255,253,255,255,255,255,255,127,255,31,255,31,255,1,255,1,255,2,253,160,95,64,191,169,190,64,111,170,191,80,91,146,107,104,148,237,18,86,1,169,255,192,95,234,175,244,80,254,130,255,64,255,232,255,92,233]},{"1823202":[240]},{"1823204":[250]},{"1823206":[255]},{"1823208":[135,232,67,212,232,250,92,245,190,255,239,255,255,255,255,255,111,255,151,255,18,255,161,95,42,213,9,246,4,251]},{"1823239":[255,136,223]},{"1823243":[162]},{"1823245":[142,86,7,42,255,11,255,4,255]},{"1823255":[211,168,139,93]},{"1823260":[249,4,255,130,42]},{"1823266":[11,2,4]},{"1823270":[44]},{"1823272":[252]},{"1823274":[255]},{"1823276":[119,136,174,5,213,255,244,255,251,255,255,255,255,255,255,255,251,255,47,249]},{"1823297":[199,96,162,4,192,111,180,199,135,226,162,69,130,202,144,79,120,74,120,72,124,84,103,79,127,79,255,88,234,213,229,31,31,126,126,31,31,119,119,223,95,122,122,218,90,213,85,232,232,141,140,235,235,152,144,40,168,141,136,63,186,191,53,6,82,6,132,70,6,252,84,92,92,12,14,212,6,140,2,83,7,133,7,7,69,85,253,253,253,255,253,47,45,115,113,94,95,150,151,254,253,254,255,94,95,14,15,38,39,114,115,169,9,121,17,187,185,3,3,163,3,241,1,249,33,253,113,197,69,234,74,231,117,155,107,200,119,78,251,44,31,24,111,197,254,110,18,247,169,11,4,231,168,83,152,17,180,68,220,238,93,58,175,191,63,14,142,175,39,155,155,189,23,212,5,255,17,147,108,137,118,180,123,144,127,36,255,192,127,234,63,135,207,34,96,7,190,115,240,165,188,96,96,13,173,93,159,31,209,245,59,206,32,20,234,156,32,85,233,29,97,167,25,207,69,38,166,62,116,230,150,46,70,228,212,103,247,159,175,170,104,173,204,75,232,125,140,123,154,127,156,26,242,80,224,64]},{"1823554":[254,64,255,250,239,239,64,72,235,100,48,32,40,192]},{"1823569":[64,64,190,250,255,255,255,247,255,112,244,47,47,215,55,254,254,255,191,255,255,239,239,72,72,228,228,175,175,231,231,191,190,65,1]},{"1823606":[16]},{"1823608":[191,8,31,4,223,143,31,7,131,147,160,56,201,216,170,170,74,202,174,38,70,70,115,122,215,99,127,195,222,226,237,211,77,241,99,77,206,224,115,196,165,39,166,166,230,230,167,183,231,247,38,54,227,243,107,123,206,22,77,28,13,28,93,29,159,159,217]},{"1823676":[157,137,149,5]},{"1823682":[3]},{"1823684":[255,42,255,85,85,85,129]},{"1823692":[93,34,42]},{"1823699":[3,42,215,85,255,255,255,126,126,128,162,85,213,171,171,95,95,255,215,255,255,85,85]},{"1823724":[162,162,85,85,255,171,252,92,40]},{"1823736":[170]},{"1823738":[255]},{"1823740":[255,162,255,85,15]},{"1823746":[183,180,208,211,151,113,158,143,192,120,223,56,234]},{"1823760":[128,247,144,247,160,188,125,138,128,128,120,64,24,63,21,21,112,103,240,243,220,228,119,255,159,159,125,125,63,63,21,21,184,47,60,47,123,103,175,175,127,31,135,5,224,32,255,21,255,44,255,127,89,182,255,231,174,255]},{"1823820":[228]},{"1823822":[170]},{"1823824":[4,215,128,125,16]},{"1823830":[231,8]},{"1823837":[228,85,85,40,251,2,2,16,144,255,255,255,255,85,85,255,255,85,85]},{"1823857":[255,253,127,111,255,255,255,255,255,255,85,27,27,255,85,255,139,255,222,51,207,252,101,145,215,162,6]},{"1823885":[123,200,5,1,117]},{"1823891":[117,8,10,101,27,81,42,11,169,123]},{"1823902":[55,58,138,254,138,171,9,9,231,247,252,255,254,255,251,251,15,15]},{"1823921":[255,84,255,246,255,248,255,199,198,85,85,133,129,240]},{"1823936":[251,183,249,245,251,247,109,225,175,227,157,145,135,211,231,235,132,106,142,128,4,170,30,84,212,126,134,92,220,54,76,54,159,219,119,115,95,91,39,39,79,79,207,207,191,159,255,231,37,253,15,247,165,253,219,243,49,249,243,187,105,17,185,161,64,127,128,170,128]},{"1824006":[255,21,117,117,87]},{"1824012":[85]},{"1824016":[255,192,170,128]},{"1824022":[21,127,255,255,168,168,170,170,127,255,63,127,170,170,127,127,127,127,245,245,128,128,170,170,127,127,192,64,85]},{"1824052":[255,127,128]},{"1824056":[138,128,255,128,255,170,255,127,19,213,49,147,17,19,250,58,75,79,32,42,87,7,2]},{"1824080":[233,38,138,1,45,38,46,229,223,219,234,224,175,175,253,253,244,252,213,221,245,251,251,255,116,127,42,42,167,167,253,253,59,62,126,90,255,251,20,20,171,43,213]},{"1824124":[248,160,255,253,146,193,228,159,127,170]},{"1824135":[4,234,234]},{"1824139":[255,255,170,253]},{"1824144":[102,154,132,96,160,85,250,235,255,255,255]},{"1824156":[170,247,2,2,131,131,31,31,10,43,21,255,21,255,255,255,255,247]},{"1824176":[124,116,224,100,245,213,254,254,234,234]},{"1824188":[8]},{"1824190":[255]},{"1824192":[255,67,191,196,45,126]},{"1824199":[117,236,245,28,244,252,164,220,5,112,140,161,26,44,129,140,138,244,224,244,26,164,88,37,43,15,15,94,94,124,253,114,248,28,254,252,254,252,94,13,15,240,79,161,158,130,175,255,249,235,233,3,3,163,1,242,3,255,170,255,160,255,32,255,128,247,170,255,133,253,42,127,4,85,255,95,95,223,255,126,127,28,127,106,63,195,255,139,255,170]},{"1824290":[160,160,32]},{"1824294":[129,128,225,202,144,197,20,42,112,4,255,255,95,255,255,255,127,255,55,255,63,255,253,255,254,255,255,47,255,21,255,191,255,87,127,255,255,95,95,191,255,31,208,255,232,255,64,255,161,255,139,255,21,255,239,255,223,191]},{"1824353":[47,2,21]},{"1824357":[191,9,86,11,244,181,74,15,176,63,64,127,255,255,255,255,255,254,255,116,255,234,255,80,255,160,255,255,251,255,255,255,255,255,255,255,255,255,255,255,221,255,255,6,255,65,255,187,255,87,255,255,255,255,255,209,213,250,251,2,249,65,190,187,68,87,168,255]},{"1824426":[255]},{"1824428":[209,46,250,4,249,255,190,255,68,255,168,255]},{"1824441":[255]},{"1824443":[255,46,255,4,255,247,243,255,243,245,255,255,255,253,127,255,255,255,79,255,170,224,247,28,191,223,223,230,238,102,119,175,239,68,76,170,170,236,23,16,227,213,42,230,25,100,155,175,16,68,179,170,85,19,255,227,255,42,255,25,255,155,255,16,255,179,255,85,255,85,243,254,247,213,255,234,127,217,246,255,162,255,16,254,161,174,247,9,239,63,127,159,255,54,118,34,34]},{"1824541":[16,128,160]},{"1824545":[243]},{"1824547":[247,21,234,74,53,16,239,34,221]},{"1824557":[239,128,95,251,247,247,255,234,255,117,255,239,255,221,255,239,255,95,255]},{"1824577":[255,162,255,67,252,175,248,245,10,250,37,68,187,161,94,255,255,223,255,254,252,248,248,128]},{"1824603":[32]},{"1824606":[1]},{"1824609":[255,130,125,64,191,168,87]},{"1824617":[255]},{"1824619":[223]},{"1824621":[255]},{"1824623":[255,255,255,125,255,191,255,87,255,255,255,223,255,255,255,255,255,63,192,111,152,252,7,254,17,16,239,224,95,18,175,128,127,194,192,144,144,184,24,8,8]},{"1824668":[2]},{"1824673":[255]},{"1824675":[255]},{"1824677":[239]},{"1824679":[247,11,244,7,248,143,112,127,128,255,255,255,255,231,247,247,255,244,255,248,255,48,255,128,255,64,191,163,94,5,248,6,248,8,253,18,254,172,223,71,255]},{"1824722":[3,2,1,3,2,3,11,9,16,1,141,1,71]},{"1824737":[255,2,253,9,247,122,134,244,8,252,2,255,1,255]},{"1824752":[255,255,253,255,244,252,133,252,3,253,1,252]},{"1824765":[254]},{"1824767":[255,43,255,21,250,57,255,117,255,127,127,255,127,127,253,127,255,43,10,16]},{"1824788":[57,40,245,149,255,47,127,221,125,61,127,63,245,10,255]},{"1824804":[215,40,234,149,80,47,162,213,66,184,192,21]},{"1824817":[255]},{"1824819":[255]},{"1824821":[255]},{"1824823":[127,128,127,8,247,133,250,42,213,254,164,253,116,255,160,255,110,254,184,252,40,250,201,72,181,95,255,191,255,95,255,255,255,87,255,255,255,255,255,247,247,91,160,139,64,95,160,145]},{"1824872":[71,168,215,129,55]},{"1824878":[255,16,255,95,255,191,255,95,255,255,255,87,255,126,255,255,255,231,232,5,80,11,160,145,80,47,80,84,42,207]},{"1824909":[127,160,255,255,255,255,255,255,255,255,255,143,223,133,239,223,255,87,255,255,2,255,4,127,10,255]},{"1824936":[223,218,239,106,255,160,255,168,255,253,255,251,255,245,255,255,223,37,239,149,255,95,255,87]},{"1824961":[87,10,31]},{"1824965":[87,10,255]},{"1824969":[31,168,255,4,255]},{"1824975":[255,255,255,245,255,255,255,245,255,255,255,85,255,187,255,21,255,255,168,255,74,255,160,255,10,255,160,255,170,255,68,255,234,255,87,255,181,255,95,255,245,255,95,255,85,255,187,255,21]},{"1825025":[255,130,219,16,253,160,159,18,254,16,255]},{"1825037":[255]},{"1825039":[255,232,255,66,219,136,253,48,159,136,254,68,255,170,255]},{"1825055":[255,255,23,217,155,253,117,191,143,254,118,255,187,255,85,255,255,255,232,219,100,253,138,159,112,254,137,255,68,255,170,255]},{"1825089":[255]},{"1825091":[223,128,255]},{"1825095":[247,32,127,3,124,3,248,10,240,168,255,100,255,42,255,24,255,136,127,3,125,3,251,10,250,255,87,255,187,255,213,255,239,127,247,125,125,255,255,255,255,255,168,223,100,255,42,247,24,255,8,124,131,248,7,240,15,1,224,2,192]},{"1825157":[224,10,192,1,160,43]},{"1825164":[21]},{"1825166":[183]},{"1825168":[1,225,2,194]},{"1825173":[224,10,202,1,161,43,43,21,21,191,183,255,255,255,255,255,255,255,255,255,255,255,255,255,255,247,255,224,31,192,63,224,31,192,63,160,95]},{"1825211":[255]},{"1825213":[255,8,247,94,1,149]},{"1825220":[94,1,85]},{"1825224":[121,6,222,11,253,8,176,72,95,94,191,151,95,94,255,95,123,120,255,246,255,228,247]},{"1825248":[254,255,215,253,254,255,95,245,252,250,250,221,232,236,15,64,1,255,40,215,1,255,160,95,6,255,15,241,12,243,79,255,145,104,130,85,177,10,14,81,224,10,144,64]},{"1825293":[170]},{"1825295":[27,255,128,253,40,255,228,245,160,255,128,255]},{"1825308":[255]},{"1825310":[228]},{"1825312":[134,232,42,85,228,170,170,81,149,138,47,64,85,170,255]},{"1825328":[110,255,87,255,10,255,91,255,31,255,111,255,255,255,255,255,192,128,72,128,74,144,79,144,64,152,202,144,78,145,207,144,207,255,71,183,82,231,79,239,80,224,74,234,90,234,95,239,95,223,151,23,216,85,215,87,208,88,82,82,210,82,215,208,175,47,111,167,48,176,55,183,48,176,178,178,50,178,48,176]},{"1825410":[2]},{"1825412":[186]},{"1825414":[248,4,4]},{"1825419":[5,245,3,228,27,253,253,221,255,185,253,250,255,4,7]},{"1825435":[6,246,246,167,190,254,255,222,223]},{"1825445":[85,253,249,5,7,5,3,247,241,191,1,255,255,253,221,3,1,248,248,4,4,1,1,241,241]},{"1825472":[30,111,67,47,139,79,5,111,18,101,155,166,232,215,194,191,8,252,84,199,176,193,24,68,8,70,128,35,96,224,169,51,154,8,228,4,186]},{"1825510":[53,140,62,128,31,130,254,192,165,201,165,127,171,127,181,127,178,127,185,127,252,255,223,191,118,31,21,213,132,100,12,252,160,241,194,248,128,240,230,125,65,160,29,41,69,25,238,131,32,143,14,66,68,202,14,226,21,27,45,253,213,229,244,245,181,180,220,118,212,212,252,118,5,4,18,224,27,233,10,232,74,232,14,236,46,236,10,232,238,236,240,32,36]},{"1825604":[42]},{"1825606":[95,160,1]},{"1825610":[189,2,171,84,255,10,47,239,213,219,42,255,31,191,1,1,189,189,161,245,253,255,239,239,17,17]},{"1825637":[213,191,31,1,1,189,189,245,160,245]},{"1825648":[31,15,255,21]},{"1825654":[31,31,1,1,189,189,160,160]},{"1825664":[217,93,103,123,156,26,198,16,94,29,83,158,215,12,215,7,223,228,101,214,223,232,162,183,25,47,61,40,8,45,160,47,107,251,119,127,107,121,210,182,106,58,74,62,106,49,72,56,150,14,128,24,87,75,169,189,21,15,49,46,30,7,55,47,129,128,130,128,192,192,223,207,207,207,113,247,180,116,251,27,254,254,125,253,192,127,144,111,96,191,171,74,209,41,115,172,254,254,253,253,192,255,192,224,224,240,250,125,127,63,47,175,127,126,127,125]},{"1825786":[152,152,199,71,80,144]},{"1825794":[32]},{"1825796":[85]},{"1825798":[247,247,255,255,255,255,65,63,56,104,255,255,223,223]},{"1825813":[170,255,8,23,232,191,64,74,202,199,143,255,255,223,223,85,170,8,247]},{"1825833":[23]},{"1825835":[191,10,245,127,255,255,255,255,223]},{"1825854":[240,240,1]},{"1825860":[68]},{"1825862":[127,127,255,254,255,255,3,255,143,140,254,254,255,255]},{"1825877":[187,248,135,81,174,248,7,191,188,117,255,254,254,255,255,68,187,128,120]},{"1825897":[80]},{"1825899":[248,172,83,250,255,255,254,255,255]},{"1825918":[5,4,20,4,60,11,89,1,244,248,248,63,252,191,255,255,127,255,237,237,203,204,15,175,28,239,204,180,79,179,1,254,96,31,231,231,207,207,85,173,8,19,132,11,3,12]},{"1825965":[1]},{"1825967":[224,250,226,240,192,14,4]},{"1825984":[127,251,3,103,183,51,213,20,19,230,93,108,247,168,233,222,188,14,244,158,120,71,206,248,236,250,46,96,86,182,32,192,239,255,227,251,51,27,19,59,211,59,191,15,9,15,15,31,89,81,61,61,236,8,15,15,13,13,7,7,15,15,15,15,136]},{"1826050":[4]},{"1826052":[59]},{"1826054":[127,128,128,128,106]},{"1826060":[235,148,127,128,255,255,213,251,59,255,255,255,128]},{"1826074":[234,234,171,59,255,255,119,255,209,209]},{"1826085":[213,255,127]},{"1826089":[128,234,106,59,171,255]},{"1826096":[255,119,255,213]},{"1826102":[127,127]},{"1826106":[106,106,43,43]},{"1826114":[64]},{"1826116":[186]},{"1826118":[255]},{"1826124":[165,90,209,63,255,255,85,191,186,255,255,255]},{"1826140":[165,165,252,240,255,255,21,21]},{"1826149":[85,255,255]},{"1826156":[160,154,239,31,255,255,255,85]},{"1826166":[255,255]},{"1826172":[128,128,31,31,5]},{"1826178":[2]},{"1826180":[160]},{"1826182":[241,14,6,1,44,3,85,170,16,255,250,250,253,253,160,255,240,242,6,6,44,45,85,85,70]},{"1826208":[250,250,253,253]},{"1826213":[95,242,240,6,6,45,44]},{"1826221":[170,255,255,255,250,255,253]},{"1826230":[240,240,6,6,44,44]},{"1826238":[255,255,76,44,172,5,4,5,240,1,124,132,120,129,244,4,2,243,156,176,85,91,13,249,253,255,20,144,57,191,252,248,111,13,188,182,93,95,13,255,241,7,156,6,181,15,12,14,241,255,251,177,242,83,10,9,6,7,3,1,10,3,11,9,254,253,215,42,255,21,255,43,255,17,245,42,255,5,95,42,255,129,168,127,128,255,130,127,142,255,142,127,170,255,244,255,126,127,213,42,106,21,214,41,96,145,209,42,80,5,1,42,128,129,215,255,255,255,253,255,123,255,241,255,255,255,223,255,127,255,63,255,255,95,255,253,255,87,255,255,255,95,255,191,255,5,223,223,29,191,187,255,85,255,175,255,5,255,2,255,184,255,31,224,189,66,185,68,253,2,175,80,165,90,66,189,66,5,32,255,226,255,68,255,170,255,80,255,250,255,253,255,239,255,249,251,255,225,255,221,255,255,255,245,255,255,255,223,223,95,247,243,238,235,213,221,255,255,245,245,93,253,175,255]},{"1826463":[223,243,2,224,20,213,34,255]},{"1826472":[245,10,93,162,143,80,160,95,12,249,16,255,34,255]},{"1826487":[255,10,255,162,255,80,255,223,255,255,208,255,42,255,200,255,187,255,213,251,255,245,255,255,255,80,208,32,42]},{"1826517":[200,170,187,211,213,126,254,186,250,17,255,80,47,32,213]},{"1826533":[55,170,68,209,42,122,133,176,79,21,234,47,255,213,255,55,255,68,255,42,255,133,255,79,255,238,255,245,122,218,165,205,215,254,213,247,8,255,163,127,196,239,250]},{"1826577":[112,48,160,16,213,128,212,130]},{"1826586":[34,35,192,196,122,250]},{"1826593":[143,32,127,16,58,128,43]},{"1826601":[255,34,220,64,187,106,149,143,255,79,223,10,239,43,255,255,255,220,255,187,255,149,255,1,254,128,127,64,255,8,183]},{"1826633":[255,224,31,208,47,186,5]},{"1826644":[128,128,128,128]},{"1826652":[96,32,192,224,14,241,5,250,135,184,7,248,11,244,1,254,2,253,32,63,241,255,250,255,120,127,56,255,244,255,254,255,157,255,31,191,46,247,21,255,43,253,21,255,11,245,5,255,67,189,161,31,38]},{"1826706":[21]},{"1826708":[41]},{"1826710":[21]},{"1826712":[1]},{"1826714":[5]},{"1826716":[1]},{"1826718":[1]},{"1826720":[255]},{"1826722":[255]},{"1826724":[255]},{"1826726":[255]},{"1826728":[255]},{"1826730":[255]},{"1826732":[191,64,31,224]},{"1826737":[255]},{"1826739":[255]},{"1826741":[255]},{"1826743":[255]},{"1826745":[255]},{"1826747":[255,64,255,160,255,255,95,199,175,193,79,109,255,191,95,127,206,143,247,31,254,95,11,135,5,113]},{"1826774":[109,1,31,11,110,4,167,34,30]},{"1826784":[244,10,234,17,239,32,254,1,244,10,219,36,253,34,255]},{"1826800":[1,254,4,251,16,239]},{"1826807":[255,1,254,32,255]},{"1826813":[223]},{"1826815":[255,253,188,157,239,255,221,255,255,255,239,254,255,62,124,127,190,190,188,175,47,221,159,255,127,239,239,254,92,189,60,190,148,67,154,240,44,98,141,128,87,16,238,163,84,195,185,107,20,36,219,3,220,18,237,40,215,1,254,8,247,4,251,128,127,144,173,80,47,160,31]},{"1826887":[119,160,7]},{"1826891":[127,160,95]},{"1826895":[191,127,239,255,231,255,255,255,255,255,255,255,255,255,255,255,255,71,170,247,56,255]},{"1826918":[255]},{"1826920":[255,8,255]},{"1826924":[255]},{"1826926":[255]},{"1826928":[215,85,255,199,255,255,255,255,255,247,255,255,255,255,255,255]},{"1826945":[255]},{"1826947":[255]},{"1826949":[255]},{"1826951":[255]},{"1826953":[255]},{"1826955":[255]},{"1826957":[255]},{"1826959":[255,254,255,213,255,234,255,80,255,234,255,196,255,234,255,80,255,255,1,255,42,255,21,255,175,255,21,255,59,255,21,255,175,255,254,255,213,255,234,255,80,255,234,255,196,255,234,255,80]},{"1827009":[255,8,243,21,226,170,85,1,254,42,213,5,250,138,117,170,255,72,251,149,247,170,255,137,255,42,255,5,255,138,255,255,85,251,187,247,119,255,255,255,119,255,255,255,255,255,255,255,170,243,76,226,157,85,170,254,137,213,42,250,5,117,138]},{"1827073":[255,162,85,213,42,175,80,23,168,175,64,86,170,172,17,128,255,162,247,213,127,175,255,23,191,175,239,86,255,172,187,255,127,255,255,127,127,255,255,255,255,255,255,253,254,250,251,255,128,85,170,42,213,80,175,168,87,64,191,170,85,19,236,5,224,175,64,85,160,255]},{"1827144":[87]},{"1827146":[255]},{"1827148":[223,32,255]},{"1827152":[5,229,175,239,85,245,255,255,87,87,255,255,159,175,223,191,255,255,255,255,255,255,255,255,255,255,255,255,143,175,255,191,224,31,64,191,160,95]},{"1827191":[255]},{"1827193":[255]},{"1827195":[255,32,223,32,223,94,1,246,9,249,6,251,4,224,30,235,21,165,90,234,21,95,94,255,244,255,248,255,80,255,224,255,193,255,160,255,64,254,255,244,253,248,254,80,84,225,254,193,212,160,250,64,85,1,255,9,255,6,255,4,255,31,255,21,255,90,255,21,255,146,106,148,87,10,175,16,155,170,175,68,111,170,175,16,27,255,130,252,20,250,10,116,16,250,170,212,68,250,170,244,16,135,232,63,64,95,160,255]},{"1827304":[255]},{"1827306":[255]},{"1827308":[255]},{"1827310":[255]},{"1827312":[111,255,127,255,255,255,255,255,255,255,255,255,255,255,255,255,160,239,16,255,32,255]},{"1827335":[255,128,255]},{"1827339":[255]},{"1827341":[255]},{"1827343":[191,176,168,8,45,32,255]},{"1827351":[95,128,255]},{"1827355":[127,64,239,192,181,231]},{"1827362":[218,8,32]},{"1827366":[160]},{"1827368":[128]},{"1827370":[128]},{"1827372":[80,64,138,128,239,255,231,255,255,255,255,255,255,255,255,255,191,255,63,255,207,129,239,167,90,159,204,139,80,179,73,232,6,244,223,238,78,123,75,252,223,229,87,167,38,190,13,215,126,193,20,218,210,80,240,251,221,210,25,26,92,95,108,110,124,77,223,222,32,160,8,128,40,160,248,184,164,228,144,208,186,218,32,224,172,84,252,254,170,234,1,254]},{"1827465":[255,255]},{"1827470":[254]},{"1827472":[253,253,162,95,234,65,255,255,174,174,255,255]},{"1827485":[255]},{"1827487":[1,171,1,2,161,84,171,126,128,8,247]},{"1827501":[255,254,1,1,1]},{"1827520":[109,79,130,159,225,127,52,117,49,51,250,26,57,18,247,5,72,181,108,115,76,63,237,153,123,236,210,221,52,246,13,14,154,248,188,220,124,116,121,113,84,253,31,95,22,246,255,14,127,71,231,219,171,55,26,23,109,110,96]},{"1827580":[47,6,9,8,165,220,193,241,84,237,52,213,124,253,14,14,221,32,253,84,15,2,101,202,47,211,199,203,30,130,174,243,2,38,86,174,158,86,116,117,47,38,215,214,230,231,94,255,37,36,247,174,42,234,142,236,218,250,42,234,26,146,160,160,250,32,90,10,255,63,244,246]},{"1827653":[95,11,244,121,128,15]},{"1827660":[126,1,115]},{"1827664":[193,190,246,2,94,94,91,91,248,254,3,243,30,153,244,252,128,1,11,244,254,1,64,180,1,134,12,243,97,153,4,116]},{"1827706":[3]},{"1827708":[31,7,127,4,215,143,83,151,71,135,75,15,137,15,96,51,82,211,249,185]},{"1827729":[167,180,167,208,247,108,239,95,120,180,140,69,248,175,211,96,48,196,52,48,224,12,252,255,105,167,175,247,231,247,231,23,15,59,47,95,15,123,39,94,65,203,155,158,142,28,4,121,197,255,243,255,255,253,255,85,85]},{"1827787":[255]},{"1827789":[244,31,128,159,102,3,255]},{"1827797":[255]},{"1827799":[253,85,170]},{"1827804":[244,32,128,31]},{"1827809":[160]},{"1827811":[12]},{"1827816":[255,255,255,255,244,244,151,159,95,228,240,255,255,255,255,255,170,85,255,255,43,32,104,8,127,64,255]},{"1827844":[253,251,247,249,85,93]},{"1827851":[255]},{"1827853":[85,191,17,191,191,255,42]},{"1827861":[253]},{"1827863":[243,93,162]},{"1827868":[85]},{"1827870":[17,174,192,255,42,42,2,6,4,6,255,247,255,255,85,85,119,238,127,127,213]},{"1827892":[249,255,249,255,170,85,255,255,170]},{"1827902":[217,200,234,130,250,6,254,248,238,233,84,244,2,250,2,82,255,81,126,233,255,168,6,163,19,246,241,8,2,5,83,1,81,175,151,255,173,169,90,90,11,14,253,93,255,255,82,80,253,175,124,124,87,5,165,249,241,253,171,81,248,248,175]},{"1827966":[82,2,127,63,197,175,64,127,194,223,144,143,63]},{"1827982":[126]},{"1827984":[125,66,175,106,159,31,149,53,154,58,223,223,192,255,128,129,128,189,250,197,223,224,193,254,128,175,224,200,64,127,254,129,128,128]},{"1828020":[192,192,64,64,64]},{"1828026":[64,64,192,64,128,128,235,244,73,86,33,118,9,254,25,230,225,14,51,4,157,28,18,242,240,176,120,88,224,232,185,176,233,240,55,250,31,112,29,15,191,79,207,63,111,159,15,239,15,31,9,219,159,127,15,15,15,15,7,7,7,7,15,15,15,15,23,3,7,7,127,16,127,255,34,247]},{"1828103":[255]},{"1828105":[255,125]},{"1828110":[255]},{"1828112":[111,58,255,128,247,213,127,127,42,42,125,255]},{"1828125":[255]},{"1828128":[170]},{"1828130":[128,127,221,34,117,138]},{"1828137":[255]},{"1828139":[138]},{"1828141":[255,255]},{"1828160":[209,53,241,242,19,112,55,212,115,147,120,24,117,2,255]},{"1828176":[239,170,193,12,104,101,108,101,226,236,106,231,40,186,160,175,178,26,26,254,215,59,86,159,25,159,29,255,82,178,69,175,29,24,29,28,28,27,28,27,30,28,50,18,47,2,186,10,93,93,255]},{"1828228":[255,213,255,125,255,255]},{"1828236":[221,34,238]},{"1828240":[255,170,160,95,42,42]},{"1828247":[146]},{"1828250":[34,255]},{"1828253":[34]},{"1828255":[238,162,170,95,95,213,247,109,239,255,255,221,255,34,34,85,255,93,8,160,95,8,255,16,255]},{"1828282":[34,34,255,34,187,187,215,217,255,6,255,84,255,199,255,239]},{"1828300":[222,32,160,1,248,164,1,249,171,171]},{"1828311":[56]},{"1828313":[16,35,255,3,33,1,162,43,175,254,254,84,84,199,255,239,239,220,255,33,33,85,245,212,135,1,255,171,255]},{"1828343":[255,16]},{"1828346":[35,35,254,34,254,244,255,32,255,50,253,173,255,233,31,122,127,192,31,162,31,32,223,255,205,221,80,250,20,23,37,143,223,95,29,31,159,223,32,16,50,34,173,7,235,234,186,144,96,96,194,192,64,144,239,255,221,255,248,253,21,255,239,95,223,63,255,191,239,191,239,175,255,21,255,2,255,1,255,138,255]},{"1828428":[255,2,255]},{"1828432":[64,239,234,255,253,255,254,255,117,255,255,255,253,255,255,255,24,167,16,5]},{"1828453":[2]},{"1828455":[1,128,10]},{"1828461":[2]},{"1828464":[239,255,255,255,215,255,255,255,223,255,255,255,223,255,255,255,255,255,255,127,255,191,255,85,255,174,255,85,255,191,255,23]},{"1828497":[255,128,255,64,255,170,255,81,255,170,255,64,255,232,255]},{"1828513":[255]},{"1828515":[127]},{"1828517":[191]},{"1828519":[85]},{"1828521":[174]},{"1828523":[85]},{"1828525":[191]},{"1828527":[23,255,255,255,255,255,255,255,255,254,255,255,255,255,255,191,255,247,255,255,247,253,243,255,79,255,175,255,127,253,255,255,127,40,252,9,255,6,255,161,255,80,255,128,255,2,255,128,255,32,223,1,246,24,235,25,86,128,47]},{"1828587":[127]},{"1828589":[255]},{"1828591":[127,223,255,246,255,243,255,206,255,175,255,127,255,255,255,255,255,119,249,250,255,84,255,234,255,85,254,251,255,239,239,255,255,137,233,79,239,191,255,21,255,171,235,4,254]},{"1828637":[103,64,254,1,254,74,181,20,235]},{"1828647":[255]},{"1828649":[254]},{"1828651":[254,17,230,64,191,254,255,181,255,235,255,255,255,254,255,255,255,239,255,191,255,148,171,190,225,125,130,190,193,189,194,191,226,125,194,255,136,32,32,224,224,128,128,192,192,72,64,96,226,224,192,136,136,64,191,160,95]},{"1828709":[255,128,127]},{"1828713":[127,160,93,64,191,136,119,159,255,95,255,255,255,127,255,255,255,221,255,191,255,119,255,66,191,128,127]},{"1828741":[255,168,87,8,247,168,95,64,191,128,127,2]},{"1828760":[8]},{"1828762":[8,8]},{"1828768":[191,64,31,224,30,225,7,248,35,220,15,240,15,240,23,232,64,255,224,255,225,255,248,255,220,255,240,255,240,255,232,255,255,223,77,242,35,253,17,254,175,255,21,254,41,255,17,253,223,138,72]},{"1828820":[41,40,16]},{"1828824":[175,10,20]},{"1828828":[41,40,17]},{"1828832":[117,138,247,8,215,32,255]},{"1828840":[245,10,255]},{"1828844":[215,40,253,2]},{"1828849":[255,8,255,8,247]},{"1828855":[255]},{"1828857":[255]},{"1828859":[255]},{"1828861":[255]},{"1828863":[255,239,255,247,239,235,247,65,255,255,252,121,186,185,254,87,255,239,239,231,69,227,163,65,1,252,168,62,18,184,40,87,17,16,239,186,65,92,163,254,1,87,168,239,6,215,40,238,17]},{"1828913":[255,4,251]},{"1828917":[255]},{"1828919":[255]},{"1828921":[255,16,237]},{"1828925":[255]},{"1828927":[255,168,23,64,21,232,149,80,203,226,225,212,1,250,225,245,38,255,255,255,255,255,255,255,255,127,255,255,255,255,255,255,255,255]},{"1828962":[255]},{"1828964":[127,2,191]},{"1828968":[31,136,255]},{"1828972":[31]},{"1828974":[219]},{"1828976":[255,255,255,255,255,253,255,255,255,119,255,255,255,255,255,255]},{"1828993":[255]},{"1828995":[255]},{"1828997":[255]},{"1828999":[247]},{"1829001":[223]},{"1829003":[255,32,95]},{"1829007":[255,254,255,245,255,255,255,125,255,255,255,255,255,255,255,255,255,255,1,255,10,255]},{"1829030":[255,138,255,32,255]},{"1829036":[255,128,255]},{"1829040":[255,254,255,245,255,255,247,125,255,223,255,255,255,127,255,255]},{"1829057":[255,2,253]},{"1829061":[255]},{"1829063":[255]},{"1829065":[255]},{"1829067":[255,64,255,128,255,160,255,66,255,160,255,80,255,234,255,84,255,170,255,85,255,255,95,255,191,255,95,255,175,255,21,255,171,255,85,255,170,255,160,253,66,255,160,255,80,255,234,255,84,255,170,255,85,23,232,43,80,5,250,11,240]},{"1829129":[254,2,253]},{"1829133":[255]},{"1829135":[255,151,252,43,123,5,255,11,251,128,254,2,255,128,255]},{"1829151":[255,252,124,255,255,255,255,255,255,255,127,255,255,255,127,255,255,232,151,80,175,250,5,240,15,254,129,253,2,255,128,255]},{"1829184":[127,128,191]},{"1829188":[95,32,255]},{"1829192":[85,168,171,64,69,168,170,80,127,255,191,191,95,127,255,255,85,253,171,235,69,237,170,250,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,128,127]},{"1829235":[255,32,223]},{"1829239":[255,168,87,64,191,168,87,80,175,233,22,234,21,228,19,251,4,254,1,255]},{"1829260":[95]},{"1829262":[247]},{"1829264":[255,232,255,192,247,232,255,241,255,254,255,253,95,95,255,247,232,254,192,213,232,243,241,245,254,255,253,253,255,255,247,255,22,255,21,255,19,255,4,255,1,255]},{"1829307":[255]},{"1829309":[255,8,247,42,235,212,20,64,170,164,85,148,106,168,85,220,35,66,53,190,42,255,20,255]},{"1829334":[255,4,255,128,255]},{"1829340":[255,136,223,136,127,128,63]},{"1829348":[21,170,14,81,129,234,2,85,136,171,168,21,255,255,63,255,191,255,95,255,107,255,87,255,35,255,53,255,168,255]},{"1829379":[191,168,191]},{"1829383":[11,32,171,2,66,64,171,12,80,168,168,64]},{"1829396":[232,168,244]},{"1829400":[252,32,255]},{"1829404":[252]},{"1829406":[247,128,255]},{"1829410":[255]},{"1829412":[255]},{"1829414":[255]},{"1829416":[119,136,190,66,23,168,171,80,255,255,255,255,255,255,255,255,255,255,254,253,191,255,123,255,19,202,26,243,1,253,13,243,6,21,3,2,1,33,128]},{"1829456":[126,193,10,92,13,22,6,1,235,4,253,2,255,1,127]},{"1829472":[79,71,187,27,249,1,251,9,249]},{"1829482":[254,2,223,32,255]},{"1829488":[156,236,229,245,238,246,246,250,255,253,253,254,255,254,255,255,255]},{"1829506":[255]},{"1829508":[234,128,232,230,245,250,103,255,189,125,231,199,81,81,127,85,63,21,177,55,80,138,175,71,217,36,102,248,174,81]},{"1829539":[85,149,149,247,247,250,234,255,127,125,60,47,47,81]},{"1829554":[255,42,255,191,95,87,63,42,144,144,195,64,145,209,255]},{"1829570":[255]},{"1829572":[170]},{"1829575":[239,85,171,255,255,255,255,46]},{"1829584":[7,7,255,93,255,85,16,255,1,171,255,255,255]},{"1829598":[128,174,248,7]},{"1829603":[93,85,85,255,255,171,171,255,255,255]},{"1829614":[145,191,7]},{"1829618":[255,162,255,255,255,255,254,170]},{"1829628":[255]},{"1829630":[127,63,255]},{"1829634":[252]},{"1829636":[160,1,43,212,87,191,255,255,253,168,80]},{"1829648":[255,255,255,83,254,95]},{"1829655":[212,23,191,255,208,168,85]},{"1829663":[80]},{"1829665":[255,3,83,95,95,212,208,191,151,255,208,186,87]},{"1829679":[80,255]},{"1829682":[255,175,255,255,255,212,232,168,47]},{"1829692":[239,71,255,80,231,1,47,19,95,190,254,252,248,248,236,64,32,5]},{"1829711":[255,249,153,195,210,30,191,252,242,248,128,64,172,5,37,242,253,25,153,211,210,191,191,253,243,254,134,80,188,133,165,242,255,254,120,253,208,224,160,15,3,127,6,255,188,255,165,253,253,146,152,187,59,19,88,58,122,3,88,34,122,10,152,34,186,164,184,41,150,108,113,108,82,116,41,56,70,126,224,248,68,214,238,183,166,215,231,119,103,198,239,39,103,70,230,230,230,127,110,89]},{"1829812":[254,238,221,69,175,191,201,89,175,190,11,26,127,112,224,120,212,203,255,122,127,127,63,31,23,2,1,224,112,48,103,255,224,107,122,186,127,15,31,32,2,21,64,225,240,176,255,255,203,75,122,186,255,143,95,96,42,61,64,225,207,128,31,31,191,11,197,128,240,128,255,96,255,61,255,225,81,174,5]},{"1829893":[64,238,153,85,255,255,255,255,171,86]},{"1829905":[174,255,250,191,255,136,153,85,255,255,85,171,84]},{"1829919":[86,174,174,250,250,255,255,153,153,255,85,255,85,187,84,1,87,255,174,255,255,255,255,119,17,170,170,170]},{"1829948":[239,68,255,87,3,208,93]},{"1829956":[2]},{"1829958":[168,87,85,250,255,255,255,191,238]},{"1829968":[47,253,253,162,255,253]},{"1829975":[87,80,250,255,255,191,64]},{"1829983":[238,252,253,160,160,253,253,87,87,250,90,255,255,255,64,17,255,255,254,255,253,255,255,255,87,175,170]},{"1830012":[191]},{"1830014":[255,255,255]},{"1830018":[255]},{"1830020":[191]},{"1830023":[160,80,175,254,254,252,251,231,7,80,80,255,95,255,66,95,255]},{"1830041":[175,254,254,251,4,11,232,175,80]},{"1830051":[95,64,66,255,255,175,171,255,255,251,7,15,239,80]},{"1830066":[255,160,255,253,255,255,255,175,1,1,253,5,244,228,243,5,197,5,215,31,97,53,171,255,97,205,138,215,48,161,14,10,174,184,244,170,166,200,188,134,102,20,220,34,170,68,241,27,115,187,51,187,247,251,235,235,251,235,183,131,115,51,31,31,175,47,205,77,159,159,85,93,183,167,125,5,207,63,255]},{"1830146":[253]},{"1830148":[160,1,42,221,87,255,255,255,253,160]},{"1830160":[95,95,255,210,254,95,8,221,87,255,255,192,160,93]},{"1830176":[160,95,2,210,95,95,221,216,255,215,255,192,170,95]},{"1830192":[95]},{"1830194":[255,47,255,255,247,213,168,168,63]},{"1830204":[247,87,255]},{"1830208":[250]},{"1830210":[68]},{"1830213":[85,255,170,119,255,255,223,85]},{"1830222":[1]},{"1830224":[255,253,255,187,170,255,170,170,119,255,223,32]},{"1830237":[85]},{"1830239":[1,5,253,187,187,255,255,170,170,255,119,223,32,170,255]},{"1830255":[1,255,7,255,255,255,255,85]},{"1830264":[136,136,255,32,255,255,255,1,238]},{"1830274":[68]},{"1830277":[85,238,153,87,253,255,255,127,43,22]},{"1830288":[255,17,255,187,170,255,136,153,85,253,255,85,43,84]},{"1830303":[22,17,17,187,187,255,255,153,153,253,85,255,85,187,212,1,23,255,255,255,255,255,255,119,17,170,168,170]},{"1830332":[239,196,255,23,171,1,67,1,2,92,236,152,85,254,255,254,255,170,239]},{"1830352":[255,87,255,191,163,255,139,155,84,254,254,86,171,84,1,238,84,87,188,191,253,255,155,155,255,87,255,87,187,85,17,255,255,253,255,253,254,252,118,18,171,171,169,1,239,69,255,255,159,160,95,96,63,162,95,97,191,170,95,100,63,170,127,101,31,223,223,223,29,63,222,223,21,255,218,223,16,127,192,255,192,208,64,192,192,194,64,193,192,202,65,196,197,202,90,197,239,191,255,191,255,191,255,191,255,191,255,191,255,191,255,191,255,42,255,4,255,171,255,21,255,175,255,85,255,191,255,87,213,255,251,255,84,255,234,255]},{"1830489":[255,160,255,2,255]},{"1830495":[255]},{"1830497":[42]},{"1830499":[4]},{"1830501":[171]},{"1830503":[21,80,175,10,85,66,189,168,87,127,255,254,255,255,255,255,255,255,255,255,255,253,255,255,255,255,95,255,95,255,255,255,125,255,188,254,222,255,255,255,127,160,255,160,255]},{"1830549":[255,130,255,75,254,4,254,139,223,87,255,64,31]},{"1830563":[95]},{"1830565":[255]},{"1830567":[125,8,181,39,216,139,116,215,40,95,255,255,255,255,255,253,255,180,255,250,255,116,255,168,255,247,255,255,249,255,249,251,249,253,255,251,247,213,255,255,255,8,255,7,255,7,209,23,251,67,87,79,239,254,254,127,255]},{"1830625":[255,1,248,1,254,17,232,69,178,67,180,212,43,127,128,255,255,248,255,248,255,236,251,188,255,176,255,43,255,128,255,85,255,234,255,85,254,239,250,117,222,191,234,127,196,254,225,251,251,31,191,254,254,122,250,218,218,234,234,192,196,96,96,81,174,10,245,84,171,106,149,80,175,170,85,64,187,96,159,174,255,245,255,171,255,149,255,175,255,85,255,187,255,159,255,243,13,229,50,245,30,254,1,208,47,234,21,213,42,170,213,142,12,54,50,56,28]},{"1830751":[128]},{"1830753":[255,40,215,16,235]},{"1830759":[255]},{"1830761":[255]},{"1830763":[255]},{"1830765":[255]},{"1830767":[127,253,255,197,255,235,255,255,255,255,255,255,255,255,255,127,255]},{"1830785":[255,128,127]},{"1830789":[255,128,127,2,255,1,255,2,239,241,47]},{"1830808":[2]},{"1830810":[1]},{"1830812":[2]},{"1830814":[17]},{"1830816":[143,112,31,224,63,192,31,224,63,192,95,160,111,144,15,240,112,255,224,255,192,255,224,255,192,255,160,255,128,255,240,255,168,255,85,255,43,223,69,254,171,221,87,250,191,255,87,255,168,168,85]},{"1830868":[11,2,68]},{"1830872":[137,136,82]},{"1830876":[191,42,87,1,87,168,255]},{"1830884":[253,2,255]},{"1830888":[119,136,255]},{"1830892":[213,42,254,1]},{"1830897":[255]},{"1830899":[255]},{"1830901":[255]},{"1830903":[255]},{"1830905":[255]},{"1830907":[255]},{"1830909":[255]},{"1830911":[255,63,251,63,239,255,239,247,255,255,191,223,175,207,15,223,235,59,43,175,133,239,171,247,85,191,175,143,5,127,11,203,1,212,43,122,5,84,171,170,21,80,175,250,5,180,123,254,1]},{"1830961":[255,128,127]},{"1830965":[255,64,191]},{"1830969":[255]},{"1830971":[255,64,255]},{"1830975":[255,254,206,255,133,255,176,255,35,255,254,255,245,255,175,255,188,119,255,255,255,95,255,255,255,87,255,191,255,85,255,175,191,49,136,122]},{"1831012":[79,160,220,8,1,168,10,64,80,170,67,80,255,119,255,255,255,95,255,247,255,87,255,191,255,85,255,175]},{"1831041":[5,80,43,160,17,193,142,226,65,213]},{"1831052":[251]},{"1831054":[245,80,255,255,255,255,243,243,255,251,255,255,255,255,255,255,255,255,255,170,255,4,243,2,123,28,191,140,255]},{"1831084":[255]},{"1831086":[175]},{"1831088":[255,85,255,251,243,253,255,227,255,115,255,255,255,255,255,255]},{"1831105":[127,40,255]},{"1831109":[95,10,127]},{"1831113":[87,2,187,128,5,64,3,254,255,213,255,255,255,245,255,255,255,253,255,255,255,255,255,255,129,255,42,255,160,255,10,255,168,255,70,255,42,255,20,255,126,255,213,255,95,255,245,255,87,255,185,255,213,255,235,16,207,56,199,16,239,132,247,16,255,1,255,80,255,160,255,144,207,88,207,146,255,88,255,234,255,212,255,170,255,85,255,207,79,223,159,255,125,255,175,255,21,255,43,255,85,255,170,207,176,215,104,239,146,247,88,255,234,255,212,255,170,255,85,1,234,2,244]},{"1831237":[250]},{"1831239":[253]},{"1831241":[255]},{"1831243":[95]},{"1831245":[255,64,255,1,235,2,246]},{"1831253":[250]},{"1831255":[253,160,255,224,255,162,255]},{"1831263":[255,255,255,255,255,255,255,255,255,255,95,255,191,255,93,255,255,234,21,244,11,250,5,253,2,255,160,95,224,255,162,255]},{"1831296":[87,128,169]},{"1831300":[69]},{"1831302":[170]},{"1831305":[128]},{"1831307":[208]},{"1831309":[248]},{"1831311":[240,87,215,171,169,69,69,170,170]},{"1831321":[128]},{"1831323":[208]},{"1831325":[248]},{"1831327":[240,255,255,253,255,255,255,255,255,255,255,255,255,255,255,255,255,128,127,2,253]},{"1831349":[255]},{"1831351":[255,128,127,208,47,248,7,240,15,190,65,85]},{"1831364":[95]},{"1831366":[117]},{"1831368":[85]},{"1831370":[9]},{"1831372":[5]},{"1831374":[1]},{"1831376":[255,170,255,95,95,95,255,117,85,85,43,9,5,5,11,2,170,235,95,245,255,255,117,255,255,255,221,255,255,255,246,252,65,255,160,95]},{"1831413":[255,138,117]},{"1831417":[255,34,221]},{"1831421":[255,8,247,149,106,64,21,187]},{"1831430":[85]},{"1831432":[110]},{"1831434":[85]},{"1831436":[89]},{"1831438":[21]},{"1831440":[255,128,255,234,255,238,255,255,127,111,255,87,93,89,189,21,128,234,234,85,238,170,255,85,239,254,87,253,251,255,87,253,106,255,21,255]},{"1831477":[255]},{"1831479":[255,16,239,168,87,4,251,170,87,64,170,30,64,16,170,1,80,168,2,84]},{"1831500":[170]},{"1831502":[85]},{"1831504":[255]},{"1831506":[245,160,255,68,255,174,255,253,255,255,251,251,117,117,21,170,171,64,69,170,174,80,253,170,255,84,255,170,255,85,191,255,75,255,171,255,80,255,2,255]},{"1831547":[255,4,255,138,255,53,77,37,19,17,228,171,4,1,170,34,64,128,34]},{"1831568":[221,42,223,2,110,1,84,16,254,84,221,157,255,221,95,95,131,99,232,24,151,99,251,4,85,170,191,64,221,162,255]},{"1831600":[156,232,239,243,182,249,235,255,171,255,98,255,34,255,160,255,189,160,191,191,223,128,32,255,21,224,42]},{"1831628":[4,32,10]},{"1831632":[146,66,127,128,192,253,149,42,138,106,213,213,251,219,245,245,255,255,255,255,64,64,64,223,127,128,255]},{"1831660":[223,32,255]},{"1831664":[61,61,64,64,63,128,32,255,149,255,42,255,36,255,10,255,127]},{"1831682":[255,255,253]},{"1831686":[150,255,85]},{"1831690":[171]},{"1831692":[69]},{"1831694":[170]},{"1831696":[128,128,255]},{"1831700":[2,223]},{"1831703":[247,170,170,84,84,186,186,85,85,255,255,255,255]},{"1831718":[8,105,255]},{"1831722":[255]},{"1831724":[255]},{"1831726":[255]},{"1831728":[127,127]},{"1831732":[255]},{"1831734":[150,255,85,255,171,255,69,255,170,255,255]},{"1831746":[255,255,215,7,62,225,230,31,195,31,105,23,180,11,23]},{"1831762":[255]},{"1831764":[47,250,1,124,16,6,12,51,150,129,74,65,255,255,255,255,2,2,131,222,232,16,208,44,232,22,245,10,255,255]},{"1831796":[253,5,33,254,239,255,195,255,105,255,180,255,209,82,251,251,239,191,106,138,69,180,176,70,159,231,152,231,37,56,239,16,151,202,138,21,129,6,71,8,69,130,167,128,215,231,247,231,170,162,219,78,199,217,232,225,210,245,180,20,255,239,28,4,77,21,189,110,46,241,24,247,15,248,232,95,255]},{"1831874":[255,255,255,96,59,175,234,208,123,104,8,152,24,20]},{"1831890":[255]},{"1831892":[96,191,33,84,224,5,98,8,154,111,20,226,255,255,255,255,32,160,234,191,234,229,247,240,250,181,249,94,255,255]},{"1831924":[223,192,64,63,26,255,143,127,104,151,225,31,87]},{"1831938":[255,255,221]},{"1831942":[171,127,40]},{"1831946":[71]},{"1831950":[81,16,168,168,255]},{"1831956":[34,255]},{"1831959":[212,1,213,3,184]},{"1831965":[85,1,190,255,255,255,255]},{"1831974":[171,255,42,212,71,184,170,85,65,190,87,87]},{"1831988":[255]},{"1831991":[255,43,255,71,255,170,255,65,239,85]},{"1832002":[255,255,157,66,171,126,84]},{"1832010":[162]},{"1832012":[24,8,248,1,170,170,255]},{"1832020":[98,191,1,213,84,163,162,93,17,79,250,7,255,255,255,255,64]},{"1832038":[42,255,92,163,162,93,176,78,248,5,85,85]},{"1832052":[255,66]},{"1832055":[255,92,255,162,255,177,247,250,255,239,44,236,249,77,131,234,252,5,124,3,242,1,254,3,248,78,19,226,14,144,245,1,22,131,252,12,253]},{"1832093":[253,4,254,252,255,248,252,10,14,233,255,2,122,2,243,2,255,1,251,227,227,21,21,225,143,1,254,135,252,12,255]},{"1832125":[255,4,255,119,135,235,27,117,91,239,153,236,123,249,37,155,214,187,76,149,10,41,134,219,70,159,160,122,128,175,80,210,32,74,165,227,107,83,211,160,160,65,65,79,205,5,1,159,191,28,29,156,104,44,196,159,127,62,249,50,252,254,83,96,251,226,125,255]},{"1832194":[255,255,85,66,126,38,103,161,239,32,223,64,159]},{"1832210":[255]},{"1832212":[106,63,224,56,150,88,31,80,63,160,122,229,255,255,255,255]},{"1832230":[7,30,167,105,175,224,95,192,31,128,255,255]},{"1832244":[255,66,192,191,150,127,31,255,63,255,127,255,255]},{"1832258":[255,255,23,96,255,245,247,8,255]},{"1832268":[213,42,255]},{"1832274":[255]},{"1832276":[232,189,10,95,232,31,200,55,106,191,32,223,255,255,255,255,64]},{"1832294":[245,170,255]},{"1832298":[255]},{"1832300":[255]},{"1832302":[255]},{"1832304":[255,255]},{"1832308":[255,96,85,255,247,255,255,255,213,255,255,255,117]},{"1832322":[255,255,85,170,255,127,127,128,255]},{"1832332":[221,32,255]},{"1832336":[138,138,255]},{"1832340":[170,255,128,255,128,255]},{"1832347":[255,34,255]},{"1832351":[255,255,255,255,255]},{"1832358":[127,128,255]},{"1832362":[255]},{"1832364":[253]},{"1832366":[255]},{"1832368":[117,117]},{"1832372":[255,170,127,255,127,255,255,255,221,255,255,255,84,1,255,255,4,250,254,239,119,138,254,5,126,42,251,17,170,170,255]},{"1832404":[250,175,17,239,138,255,5,255,171,255,21,255,255,255,255,255,80]},{"1832422":[238,17,119,136,254,1,126,129,251,4,85,85]},{"1832436":[255,250,238,255,117,255,250,255,84,255,234,255,191,170,159,69,63,131,255,1,255,175,191,85,255,143,191,23,64,191,160,63,248,77,25,255,143,223,85,255,175,255,87,255,149,202,154,197,180,3,231,8,223,32,191,64,223]},{"1832494":[191]},{"1832496":[191,255,191,255,247,127,230,255,112,255,170,255,80,255,168,255,255,255,255,95,255,255,255,87,255,255,255,223,255,255,255,255,34,119,85,255,159,223,87,255,223,223,207,239,255,255,255,255,34,221,245,10,159,96,255]},{"1832552":[223,32,239,16,255]},{"1832558":[255]},{"1832560":[221,255,170,255,96,255,168,255,32,255,48,255]},{"1832573":[255]},{"1832575":[255,255,255,255,255,255,255,255,255,255,247,255,254,255,121,255,255,127,127,95,255,255,255,239,239,247,247,250,254,80,121,232,255,127,128,95,160,255]},{"1832614":[239,16,247,8,250,1,80,134,232]},{"1832624":[128,255,160,255]},{"1832629":[255,16,255,8,255,1,255,134,255]},{"1832639":[255,255,85,255,234,255,192,255,235,255,117,255,232,253,18,254,241,93,85,234,234,192,192,234,235,112,117,160,232]},{"1832669":[16,128,240,85,170,234,21,192,63,234,20,112,138,160,23]},{"1832685":[239,128,15,170,255,21,255,63,255,20,255,138,255,23,255,239,255,15,255,253,118,254,225,208,47,250,141,80,151,168,119,32,223,160,255,208,84,160,224,12,12,4,132,8]},{"1832730":[16,16,48,16,8,168,80,171,160,31,8,255]},{"1832743":[127,8,239]},{"1832747":[255,3,252,1,86,171,255,31,255,243,247,115,247,215,255,239,255,236,255,94,247]},{"1832769":[255,160,95,4,251,128,127]},{"1832777":[255]},{"1832779":[255,2,255]},{"1832783":[255]},{"1832796":[2]},{"1832800":[2,253,1,254,10,245,25,230,59,196,95,160,255]},{"1832814":[127,128,253,255,254,255,245,255,230,255,196,255,160,255]},{"1832829":[255,128,255,74,159,133,127,11,253,21,255,175,255,93,255,191,213,95,255,74]},{"1832850":[5]},{"1832852":[9]},{"1832854":[21]},{"1832856":[175,10,93]},{"1832860":[149]},{"1832862":[95]},{"1832864":[159,96,127,128,127,128,255]},{"1832872":[245,10,255]},{"1832876":[255]},{"1832878":[255]},{"1832880":[64,255,128,255,128,255]},{"1832887":[255]},{"1832889":[255]},{"1832891":[255]},{"1832893":[255]},{"1832895":[255,239,247,71,187,255,127,255,239,255,255,255,239,255,95,255,255,231,162,3,1,127,43,239,5,255,171,239,69,95,11,255,23,93,162,254,1,212,42,250,1,84,170,186,5,244,11,232,21]},{"1832945":[255]},{"1832947":[255,1,254,4,251,1,254,64,191]},{"1832957":[255,2,253,255,251,255,255,249,253,255,253,255,254,255,255,255,255,255,253,251,187,255,85,251,251,253,125,255,254,255,127,255,255,255,253,68,171,170,81,6,184,130,81]},{"1833001":[255,128,85]},{"1833005":[174]},{"1833007":[23,16,239,4,251,65,188,44,211]},{"1833017":[254,42,213,81,174,232,21,255,190,255,78,175,255,255,190,255,175,126,253,255,170,254,249,21,191,43,111,5,175,175,191,21,191,42,126,5,175,170,250,65,234,177,212,80,250,65,80,80,234,131,213,85,250,7,85,255,21,255,43,255,5,255,175,255,21,255,42,255,5,255,170,255,165,253,112,248,168,245,232,247,143,179,97,255,243,255,151,127,255,255,255,95,255,255,255,123,247,191,191,95,255,255,255,90,136,143,2,87,163,31]},{"1833128":[116,140,222,76,12,164,104]},{"1833136":[255,119,255,253,255,92,255,255,255,115,255,179,255,91,255,255,96,16,52,41,136,17,20,32]},{"1833161":[16,16,2,248,197,244,129,255,255,223,255,159,159,223,255,255,255,255,255,255,255,254,255,255,138,255,96,159,2,255,97,255,234,255,69,63,2,127,1,255,117,255,159,159,253,255,158,255,21,255,186,255,253,255,254,17,95,42,191,5,95,42,255,1,63,42,191,4,95,10,143,238,255,213,255,250,255,213,255,254,255,213,255,251,255,117,255,255,177,255,106,255,165,255,42,255,129,255,106,255,164,255,218,255,78,255,149,255,90,255,213,255,126,255,149,255,91,255,37,64,255]},{"1833283":[255,10,255]},{"1833287":[119,16,255,128,223,84,255,229,247,168,255,64,255,160,255,216,255,234,255,116,255,170,255,24,255,255,87,255,191,255,95,255,175,255,21,255,171,255,85,255,239,255,168,255,64,255,160,119,216,255,234,223,116,255,170,247,24]},{"1833345":[250]},{"1833347":[252]},{"1833349":[254]},{"1833351":[255]},{"1833353":[255]},{"1833355":[221]},{"1833357":[187]},{"1833359":[209]},{"1833361":[250]},{"1833363":[252]},{"1833365":[254]},{"1833367":[255]},{"1833369":[255,32,253,64,251,42,249,255,255,255,255,255,255,255,255,255,255,255,255,255,255,253,255,250,5,252,3,254,1,255]},{"1833400":[255]},{"1833402":[221,34,187,68,211,44,7,128]},{"1833412":[1]},{"1833417":[160]},{"1833419":[192]},{"1833421":[224]},{"1833423":[80,7,134,10]},{"1833428":[1,1,10]},{"1833433":[160,2,192]},{"1833437":[224,128,208,254,254,245,255,191,191,245,255,255,255,253,255,255,255,255,255,128,127,10,245]},{"1833461":[255,10,245,160,95,194,61,224,31,80,175,20]},{"1833474":[129]},{"1833476":[81]},{"1833478":[5]},{"1833480":[20]},{"1833484":[5]},{"1833488":[21,20,171,129,85,81,175,5,21,20,42]},{"1833500":[5,5,58,32,254,255,213,255,251,255,85,255,254,255,213,255,255,255,101,95,1,254,42,213,4,251,170,85,1,254,42,213]},{"1833533":[255,26,229,66]},{"1833538":[84]},{"1833540":[138]},{"1833542":[85]},{"1833544":[98]},{"1833546":[21]},{"1833548":[16]},{"1833552":[87,67,215,87,223,141,87,87,118,98,151,23,85,16,160]},{"1833568":[235,254,127,212,173,248,255,85,235,254,127,213,186,255,95,245,20,235,168,127,80,175,168,255,21,235,168,127,69,186,170,95,170]},{"1833602":[64]},{"1833604":[170]},{"1833608":[170]},{"1833610":[64]},{"1833612":[162]},{"1833616":[255,255,119,119,255,255,87,23,191,191,127,127,191,183,87,2,255,170,255,64,255,170,191,64,255,170,255,64,247,170,170,85]},{"1833649":[255,136,255]},{"1833653":[255,232,191,64,255,128,255,72,247,253,170,161,9,2,1,160]},{"1833672":[8]},{"1833676":[2]},{"1833680":[254,247,253,252,255,255,255,255,255,255,255,255,190,190]},{"1833696":[247,169,254,1,255,160,255]},{"1833704":[255,8,255]},{"1833708":[255,2,255]},{"1833712":[8,255,2,255]},{"1833717":[255]},{"1833719":[255]},{"1833721":[255]},{"1833723":[255,65,255,255,255,128,128,130]},{"1833732":[6,1,231,14,85,3,7,11,23,11,7,11,255,255,125,253,248,255,31,22,171,162,247,248,167,172,117,118,127,128,127]},{"1833764":[249]},{"1833766":[244,8,252,4,249,1,253,5,255,15,128,127,2,255]},{"1833781":[255,229,250,91,254,6,248,82,248,128,248,22,1,188,3,7,255,17,8,116,116,254,254,255,255,254,254,233,232,67,64,3,167,247,230,100,155,255]},{"1833820":[254,1,254,1,254,1,252,3,251,88,8,8,16,16,255,255,255,255,254,254,22,255,188,255,7,252,17]},{"1833848":[239,139,1,1]},{"1833854":[1,1,125,193,212,234,236,247,250,253,225,113,47,191,223,31,79,239]},{"1833873":[195,10,193,134,225,153,227,208,175,247,184,191,160,127,64,147,16,26,27,143,15,60,60,241,225,79,79,207,207,191,159,111,252,229,255,240,127,83,235,94,38,208,176,16,64,48,112,212,220,156,222,174,234,117,239,169,167,236,235,244,247,250,249,218,103,30,192,104,147,228,17,67,184,249,4,252,2,248,6,122,249,253,126,188,45,12,12,231,231,243,242,251,251,249,249,228,31,165,91,210,111,243,183,89,90,29,20,12,14,6,6,4]},{"1833986":[15,5]},{"1833989":[120,210,3,20,16,59,191,127,254,127,124,4,19,10,181,12,199,124,171,135,252,255,131,255,2,127,129,236,19,74,181,48,251,4,133,23,23,124,120,248,120,121,121,236,255,74,250,4,255,86,131,107,104,196,199,133,134,134,132,80]},{"1834050":[144]},{"1834053":[127,226,128,145,24,251,250,116,113,246,243,83,7,159,111,128,64,253,186,159,228,247,15,119,141,119,139,248,4,144,96,191,127,37,39,138,130,121,121,118,118,240,240,251,255,159,255,128,127,69,130,123,104,128,130,139,137,13,11,70,245,7,251,118,129,80,39,87,215,255,255,255,255,127,127,8,250,3,180,13,114,223,212,192,63,127,128,127,128,255]},{"1834144":[5,183,74,254,136,248,112,112,151,23,255,255,255,255,255,255,72,254,1,255,15,243,15,15,232,168]},{"1834174":[128,128,111,156,118,217,103,56,191,92,81,111,147,163,55,71,39,87,156,67,240,2,104,135,31,173,91,128,155,68,247,24,255,80,60,47,93,95,56,183,81,81,46,36,163,163,215,151,143,143,208,175,160,215,200,167,162,188,219,194,92,76,232,200,248,216,119,136,27,132,119,56,123]},{"1834248":[244,249,250,248,249,251,253,252,126,201,125,230,39,72,251,114,14,245,250,6,255,1,253,2,63,192,31,128,151,120,117,114,254,247,251,250,254,252,252,252,55,255,123,255,7,255,137,135,10,9,4,5,6,7,3,2,117,138,191,64,247,8,254]},{"1834312":[85,22,191,254,189,188,253,125,170,223,234,85,247,124,190,236,199,121,253,131,189,195,253,3,255]},{"1834338":[255]},{"1834340":[131,124,109,236,211,209,127,63,61,61,60,60,117,255,191,255,131,255,18,193,46,42,64,192,66,194,194,67,87,162,251]},{"1834372":[87,130,254]},{"1834376":[223,10,186,192,214,2,234]},{"1834384":[234,191,4,255,170,255,129,255,170,255,69,127,171,255,149,255,247]},{"1834402":[251,4,215,40,126,129,95,160,250,133,86,137,106,149,85,255,251,255,85,255,126,255,85,255,58,255,84,255,106,255,122,42,175,5,254,170,255,21,238,174,229,69,171,171,149,21,175,255,85,255,171,255,21,255,191,255,95,255,255,255,127,255,122,5,175,80,254,1,255]},{"1834472":[238,17,229,10,171,84,149,106,80,255,170,255,84,255,234,255,64,255,160,255]},{"1834493":[255,128,255,255,255,93,93,191,191,85,85,255,255,93,93,255,255,87,87,255,255,255,255,255,255,255,255,255,255,255,255,253,255,255,255,255]},{"1834530":[93,162,191,64,85,170,255]},{"1834538":[93,162,253]},{"1834542":[87,168]},{"1834545":[255]},{"1834547":[255]},{"1834549":[255]},{"1834551":[255]},{"1834553":[255]},{"1834555":[255]},{"1834557":[255]},{"1834559":[255,127,255,191,127,255,255,255,255,255,255,255,255,247,251,127,127,213,255,250,255,221,255,254,255,85,255,255,255,220,255,254,255,85,128,58,192,221]},{"1834598":[254]},{"1834600":[85]},{"1834602":[255]},{"1834604":[208,8,126,128]},{"1834609":[255]},{"1834611":[255]},{"1834613":[255]},{"1834615":[255]},{"1834617":[255]},{"1834619":[255]},{"1834621":[255]},{"1834623":[255,255,252,255,229,255,195,255,128,255,169,255,187,253,227,255,203,64,252,160,229]},{"1834645":[195,128,128]},{"1834649":[169,160,187]},{"1834653":[225,128,203,64,3,160,26]},{"1834661":[60,128,127]},{"1834665":[86,160,68]},{"1834669":[30,128,52,3,255,26,255,60,255,127,255,86,255,68,255,30,255,52,255,80,63,122,189,212,239,250,239,95,247,242,107,220,255,184,207]},{"1834705":[16,128,184]},{"1834709":[196]},{"1834711":[234,8,87,8,106]},{"1834717":[220]},{"1834719":[136]},{"1834721":[239]},{"1834723":[199]},{"1834725":[59]},{"1834727":[21]},{"1834729":[168]},{"1834731":[157]},{"1834733":[35,1,118,111,255,71,255,59,255,21,255,168,255,145,255,35,255,118,255]},{"1834753":[255]},{"1834755":[255,16,255,128,255]},{"1834761":[255,160,255,80,207,32,255]},{"1834773":[16,72,200,64,64]},{"1834779":[160]},{"1834781":[64,136,168,15,240,5,250,8,231,5,50,15,176,5,90,11,180,7,80,240,255,250,255,231,255,122,183,240,191,90,255,148,255,216,119,2,255,1,255,64,255,25,231,131,215,5,255,35,253,133,191,2]},{"1834834":[1]},{"1834836":[32,32,17]},{"1834840":[179,16,13,8,33]},{"1834846":[133,128,255]},{"1834850":[255]},{"1834852":[31,192,7,248,231,56,199,48,255]},{"1834862":[191,64]},{"1834865":[255]},{"1834867":[255,224,223,248,255]},{"1834873":[255,56,247]},{"1834877":[255]},{"1834879":[255,255,95,127,255,191,221,127,255,191,255,95,255,255,213,220,253,95,10,127]},{"1834900":[157,8,127,1,191,10,95,4,213]},{"1834910":[222]},{"1834912":[245,10,255]},{"1834916":[247]},{"1834918":[254]},{"1834920":[245,10,251]},{"1834924":[255]},{"1834926":[255,2]},{"1834929":[255]},{"1834931":[255,8,247,1,254]},{"1834937":[255,4,251]},{"1834941":[255]},{"1834943":[255,255,254,255,191,255,127,31,191,255,255,255,255,255,255,255,255,255,190,191,31,95,127,95,23,255,191,255,95,255,191,255,95,64,175,224,21,160,75,232,85,64,175,160,85,64,43,160,21,16,238,10,245,20,139,2,253,16,239,10,245,148,107,74,181,255,255,255,207,255,255,255,255,255,172,255,214,255,237,255,252,255,255,255,207,255,255,255,255,253,174,255,214,253,239,254,253]},{"1835041":[255]},{"1835043":[255]},{"1835045":[255]},{"1835047":[127,2,253]},{"1835051":[255,2,253,1,126]},{"1835057":[255]},{"1835059":[207]},{"1835061":[255,128,127,2,172]},{"1835067":[214,2,237,129,124,255,235,214,126,250,191,223,127,255,235,215,92,251,170,125,219,1,235,3,87]},{"1835093":[186,10,95,1,235,34,118,4,174,8,89,20,254,168,253,69,255,160,245,20,254,139,253,81,255,166,247,255,1,255,2,255]},{"1835126":[255,10,255,1,255,2,255]},{"1835134":[255,8,255,253,251,239,247,174,191,115,255,202,235,14,255,234,175,219,87,255,187,251,85,247,191,191,117,239,171,171,85,255,175,175,2,170,20,68,89,170,204,64,37,186,229,68,21,170,116,80,255,85,255,187,255,85,255,191,255,69,239,187,255,85,255,175,240,144,245,176,249,80,245,144,254,224,253,80,253,84,245,240,127,255,255,255,255,255,255,255,127,255,255,255,255,255,255,255,111,139,79]},{"1835236":[175,162,111]},{"1835240":[31,128,175]},{"1835244":[171,162,15]},{"1835248":[255,116,255,255,255,93,255,255,255,127,255,255,255,93,255,255,1,69,2,39,132,69,2,7,65,21,2,139,1,65]},{"1835279":[11,254,255,253,255,251,255,253,255,254,255,253,255,254,255,255,255,255,171,255,82,255,62,255,82,255,171,255,86,255,187,255,84,255,84,255,173,255,193,255,173,255,84,255,169,255,68,255,171,84,255,169,255,85,255,170,255,85,127,170,255,84,254,239,255,170,255,84,255,170,255,85,255,170,255,84,255,170,254,16,255,255,85,255,171,255,85,255,170,255,213,255,171,254,84,255,239,255,170,255,84,255,170,255,85,255,42,255,84,254,171,255,16,40,255,64,253,32,255,80,247,66,255,64,93,32,126,64,87,128,255,2,255,128,255,8,255,168,255,34,127]},{"1835421":[126,168,255,255,127,255,255,255,127,255,255,255,87,127,127,127,127,255,255,255,128,253,2,255,128,247,8,255,168,93,162,126,129,87,168]},{"1835457":[248]},{"1835459":[212]},{"1835461":[254]},{"1835463":[84]},{"1835465":[238]},{"1835467":[85,192,191,128,21]},{"1835473":[248,40,252]},{"1835477":[254,168,252,16,254,40,125,192,191,162,55,255,255,255,255,255,255,255,255,255,255,127,127,63,191,127,127,248,7,212,43,254,1,84,171,238,17,85,170,191,64,21,234,32]},{"1835529":[160]},{"1835531":[64]},{"1835533":[128]},{"1835536":[48,32,162]},{"1835540":[64]},{"1835542":[8]},{"1835545":[160,2,64]},{"1835549":[128,8]},{"1835552":[239,255,93,255,191,255,215,223,255,255,253,255,255,255,247,255,16,239,162,93,64,191,8,247,160,95,66,189,128,127,8,247]},{"1835591":[128]},{"1835600":[17]},{"1835602":[168]},{"1835604":[5]},{"1835606":[160]},{"1835608":[1]},{"1835610":[168]},{"1835612":[4]},{"1835614":[162]},{"1835616":[238,255,87,253,250,255,223,117,254,255,87,253,251,255,93,247,17,238,170,87,5,250,42,223,1,254,170,87,4,251,170,93]},{"1835650":[4]},{"1835662":[16]},{"1835664":[68]},{"1835666":[150,134,80]},{"1835670":[85]},{"1835672":[84,16,17]},{"1835676":[84]},{"1835678":[85,16,187,238,239,84,175,250,170,85,187,238,238,85,171,254,186,85,85,187,57,239,85,175,255,170,69,187,187,238,85,171,239,186,32]},{"1835714":[64]},{"1835716":[130]},{"1835720":[2]},{"1835722":[4]},{"1835728":[49,49,194,194,138,130,16]},{"1835736":[2,2,5,5]},{"1835742":[16]},{"1835744":[255,168,255,64,247,170,239,16,255,170,255,68,255,170,239,16,70,255,61,255,93,247,255,239,85,255,186,255,85,255,255,239,9,11,15,2,6,1]},{"1835783":[1]},{"1835785":[1,130]},{"1835788":[1,2,65,2,95,92,147,150,216,222,111,110,194,194,29,156,191,156,173,173,242,136,252,4,249,1,254,1,255,9,127,1,220,34,255,3,43,242,109,250,32,255,144,255,52,255,99,254,97,222,80,254,92,92,124,61,60,124,189,190,255,124,58,185,112,117,255,250,126,129,223,225,221,99,190,192,186,71,250,132,127,128,118,143,62,62,126,126,188,188,63,61,126,127,121,121,126,123,254,252,227,163,3,3,194,66,66,195,128,1,198,197,142,141,2,1,92,156,255,62,125,60,221,28,156,95,157,92,190,255,62,190,222,33,93,35,253,67,125,195,126,192,125,195,221,227,94,97,158,30,191,191,221,221,125,253,191,189,61,189,190,62,190,190,227,35,64,128,162,2,34,162,226,98,98,226,193,65,1,129,115,112,59,184,117,244,121,127,4,138,198,124,248,102,112,158,120,135,248,7,252,3,119,136,138,245,196,3,100,3,4,49,120,120,248,120,248,122,120,120,8]},{"1836010":[124,124,254,250,214,242,143,143,199,199,143,138,135,135,255,255,131,69,101,155,13,121,123,120,251,248,254,253,126,125,126,124,252,254,250,248,249,251,123,133,123,135,127,131,251,6,250,7,250,5,254,3,255]},{"1836064":[121,121,251,251,250,250,255,254,254,254,254,252,254,254,254,252,134,132,4,4,5,1,129,129,129,129,3,3,5,5,7,6,246,251,102,109,110,100,246,240,247,241,237,225,252,246,234,246,127,130,239,20,254,13,234,19,234,27,234,25,255,6,255]},{"1836128":[249,240,249,240,248,248,246,246,247,247,237,237,225,225,245,225,13,11,139,141,147,149,9,13]},{"1836153":[4,18,22,27,23,31,19,117,117,242,244,231,234,251,252,255,247,243,245,231,224,241,246,252,3,245,14,250,4,234,17,230,25,252,3,236,17,231,26,249,249,240,240,251,243,244,245,246,246,228,226,226,227,244,240,142,138,15,13,28,31,10,9,11,13,29,11,28,27,15,14,39,215,31,223,111,15,254,30,126,158,127,223,126,222,175,79,183,8,126,33,174,81,62,225,46,241,110,177,47,144,47,208,223,79,207,143,143,207,46,238,62,254,63,255,95,223,15,207,176,144,80,16,176,80,17,193,1,193]},{"1836283":[192,33,193,48,208,29,28,221,28,157,95,153,90,195,36,255,80,71,240,251,132,61,194,253,194,255,129,254,131,230,89,248,215,198,121,94,245,60,60,252,252,254,188,253,189,101,65,132,135,134,57,238,241,227,226,35,34,98,99,102,103,190,61,40,87,134,255,10,63,189,62,184,58,255,125,251,120,251,120,59,188,48,181,62,187,190,65,190,194,186,70,187,199,185,199,253,131,253,133,245,13,63,61,189,188,127,127,250,251,250,251,126,122,123,120,255,126,194,67,70,71,128,1,4,5,4,7,196,199,204,207,192,195,10,138,168]},{"1836420":[66,130,169,65,74,170,160]},{"1836428":[2,2,129,1,255,255,215,255,191,255,87,255,255,255,95,255,255,255,127,255,138,117,40,87,194,29,233,22,170,85,160,95,2,253,129,126]},{"1836465":[255,40,255,64,255,168,255]},{"1836473":[255,160,255]},{"1836477":[255,128,255,174,174,85,85,171,171,21,21,175,175,85,85,171,171,21,21,255,255,255,255,255,255,255,255,253,255,255,255,253,255,255,255,174,81,85,170,171,84,21,234,173,80,85,170,169,84,21,234]},{"1836529":[255]},{"1836531":[255]},{"1836533":[255]},{"1836535":[255]},{"1836537":[255]},{"1836539":[255]},{"1836541":[255]},{"1836543":[255,254,254,222,223,255,255,87,87,239,239,71,95,255,255,87,87,119,255,255,255,221,255,254,255,93,255,186,255,213,255,234,255,118]},{"1836578":[222,33,221]},{"1836582":[86,168,77]},{"1836586":[10,176,213]},{"1836590":[66,168]},{"1836593":[255]},{"1836595":[255]},{"1836597":[255]},{"1836599":[255]},{"1836601":[255]},{"1836603":[255]},{"1836605":[255]},{"1836607":[255,255,255,127,122,239,255,215,238,255,255,255,255,255,255,255,249,80,255,168,250,112,255,184,238,16,255,160,255]},{"1836637":[255,168,249,80]},{"1836642":[40,5,96,16,128,57,16]},{"1836650":[160]},{"1836654":[168,6]},{"1836657":[255,5,255]},{"1836661":[255,1,255]},{"1836665":[255]},{"1836667":[255]},{"1836669":[255,6,255,245,254,250,255,245,255,254,223,181,255,255,251,213,255,254,255]},{"1836689":[244,128,250]},{"1836693":[245,128,222,64,245]},{"1836699":[251]},{"1836701":[213]},{"1836703":[254]},{"1836705":[11,128,5]},{"1836709":[10,128,33]},{"1836713":[74]},{"1836715":[4]},{"1836717":[42]},{"1836719":[1,11,255,5,255,10,255,33,255,10,255,4,255,42,255,1,255,16,231,160,255,64,255,186,255,17,245,170,255,192,191,224,255,8]},{"1836755":[160]},{"1836757":[64]},{"1836759":[186,26,17,17,187]},{"1836765":[128]},{"1836767":[224,10,253,1,94,3,188]},{"1836775":[69,26,238]},{"1836779":[68,3,124]},{"1836783":[31,245,255,94,255,188,255,69,255,228,255,85,238,124,255,31,255,2,255]},{"1836803":[255,2,223,160,255,8,255,20,255]},{"1836813":[255,2,255,2]},{"1836818":[32,32,98,64,64,224,8]},{"1836826":[4,16,16,16,1,3,239,16,223]},{"1836836":[63,224,31,64,255]},{"1836842":[231,8,239]},{"1836846":[124,128,16,255,32,223,128,255]},{"1836855":[255]},{"1836857":[255,8,255,16,239,129,254,63,247,87,255,191,221,95,255,255,117,93,255,191,221,85,255,55]},{"1836882":[87]},{"1836884":[157]},{"1836886":[95]},{"1836888":[117]},{"1836890":[93]},{"1836892":[157]},{"1836894":[85]},{"1836896":[255]},{"1836898":[255]},{"1836900":[255]},{"1836902":[255]},{"1836904":[255]},{"1836906":[255]},{"1836908":[255]},{"1836910":[255]},{"1836913":[255]},{"1836915":[255]},{"1836917":[255]},{"1836919":[255]},{"1836921":[255]},{"1836923":[255]},{"1836925":[255]},{"1836927":[255,255,93,255,185,255,253,255,254,255,255,255,255,255,255,255,255,93,8,187,1,253,168,254,20,255,175,255,21,255,43,255,21,247,8,252,2,87,32,235,16,80,170,234,5,212,42,234,1]},{"1836977":[255,3,254,136,119,4,251,5,250,16,239,1,254,20,235,255,254,255,254,249,253,255,255,255,254,255,239,255,255,255,255,255,254,255,254,255,253,255,125,255,254,255,239,255,255,255,255]},{"1837025":[239]},{"1837027":[81,2,187,130,81]},{"1837033":[185]},{"1837035":[85]},{"1837037":[187]},{"1837039":[87,16,238,174,80,68,187,44,211,70,184,170,69,68,187,168,87,255,145,255,82,255,120,255,212,255,212,255,251,255,20,255,122,213,187,250,87,252,123,254,213,213,254,251,255,212,63,254,123,42,213,5,250,3,252,1,254,42,213,4,123,43,212,1,254,42,145,5,82,3,120,1,212,42,212,132,123,43,20,1,122,254,235,215,94,250,175,253,90,239,168,214,46,235,47,74,171]},{"1837137":[234,34,118]},{"1837141":[170,15,93,23,189,3,7,17,59,30,30,21,255,137,253,85,255,165,247,69,254,248,253,196,254,225,245,255]},{"1837170":[255,2,255]},{"1837174":[255,8,255,1,255,2,255,1,255,10,191,250,239,54,255,190,175,251,255,235,191,184,247,62,255,124,21,191,239,239,85,255,175,175,87,255,255,255,87,119,255,255,69,234,217,80,65,234,84,80,20,168,7,68,201,168,131,1,255,21,255,175,255,21,255,175,255,87,255,187,255,87,255,254,252,160,253,196,254,224,245,128,222,64,53,68,200,64,84,64,127,255,255,255,255,255,255,255,191,255,223,223,191,255,255,255,95,138,59]},{"1837284":[31,1,127]},{"1837288":[255,232,251,192,255,98,191,1,255,117,255,255,255,254,255,255,255,23,255,31,255,157,255,254]},{"1837313":[17,2,131,64,212,136,137,128,17,2,163,128,68,10,15,255,255,253,255,63,255,119,255,255,255,253,255,255,255,245,255,255,234,255,86,255,234,255,216,255,42,255,86,255,42,255,26,255,21,255,169,255,21,255,39,255,213,255,169,255,213,255,229,21,127,169,255,85,127,175,255,85,127,168,253,69,255,160,245,234,255,84,255,170,255,80,255,170,255,87,255,186,255,95,255,255,149,255,171,255,213,255,175,255,213,255,170,255,69,255,170,255,106,255,84,255,42,255,80,255,42,253,87,255,186,245,95,66,255,84,247,138,255,80,215,64,238]},{"1837451":[85,8,175]},{"1837455":[21,168,255,8,255,32,255,40,255,187,255,250,255,240,255,250,255,255,87,255,255,255,223,255,255,255,85,255,175,255,95,255,239,255,168,247,8,255,32,215,40,238,187,85,250,175,240,21,250]},{"1837505":[254]},{"1837507":[84,128,142]},{"1837511":[69,8,238]},{"1837515":[85]},{"1837517":[190]},{"1837519":[85,129,255,169,253,80,206,138,207,144,254,170,255,64,254,160,245,255,127,255,255,239,255,223,223,255,127,255,255,255,255,255,255,254,129,84,171,158,97,69,186,238,145,85,170,190,65,85,170]},{"1837569":[160,2,64]},{"1837573":[160]},{"1837575":[64]},{"1837577":[128]},{"1837581":[128,2]},{"1837585":[160]},{"1837587":[64]},{"1837589":[160]},{"1837591":[64]},{"1837593":[128]},{"1837597":[128,2,2,255,255,255,253,255,255,255,255,255,255,255,255,255,255,255,255,160,95,66,189,160,95,64,191,128,127]},{"1837627":[255,128,127]},{"1837631":[255]},{"1837646":[34]},{"1837648":[1]},{"1837650":[40]},{"1837654":[2]},{"1837658":[34]},{"1837662":[170,34,254,255,215,253,255,255,253,247,255,255,221,255,255,255,119,255,1,254,42,215]},{"1837685":[255,10,253]},{"1837689":[255,34,221]},{"1837693":[255,136,119]},{"1837698":[16]},{"1837704":[4]},{"1837706":[129]},{"1837708":[81]},{"1837710":[4]},{"1837712":[84]},{"1837714":[145,16,85]},{"1837720":[20,4,137,129,85,81,164,4,171,254,126,213,170,255,255,85,239,254,247,221,251,255,95,245,85,171,171,126,85,170,170,255,17,239,42,247,4,251,170,95]},{"1837766":[64]},{"1837768":[2]},{"1837770":[20]},{"1837772":[24,16,85]},{"1837778":[20]},{"1837782":[64,64,67,3,21,21,24,24,125,125,255,170,235,84,255,170,255,80,191,234,255,84,255,186,255,85,85,255,191,235,85,255,175,255,84,191,170,255,85,255,130,255,132,1]},{"1837827":[4,6,4,5,9,41,9,89,5,167,31,39,31,171,140,74,15,31,30,25,18,125,126,103,108,191,160,195,212,219,162,188,64,255,163,245,13,241,169,243,75,235,179,255,15,115,221,241,189,69,249,226,254,10,242,150,254,76,244,32,240,116,122,228,236,252,244,236,248,236,248,240,232,192,225,216,242,255,1,252,10,251,7,248,8,217,61,247,15,255,6,151,84,249,242,245,246,227,224,247,224,235,224,207,192,254,209,253,227,140,139,29,27,28,7,23,31,26,23,48,15,56,47,25,14,207,111,47,79,119,7,7,47,3,23,253,9,221,159,7,251,127,192,47,176,151,248,247,192,253,230,13,10,191,196,119,16,63,31,111,239,183,55,219,59,235,27,249,1,187,121,233,137,48,240,16,208,40,200,20,224,12,244,254,242,186,70,118,114,25,77,133,169,152,174,248,230,225,247,201,221,201,209,203,223,38,153,146,65,255,2,215,48,223,48,253,26,245,6,249,26,109,121,181,181,237,201,255,249,239,233,229,225,249,233,231,231,166,154,90,78,127,99,7,11,30,18,54,58,50,58,48,56,249,251,254,254,223,223,207,207,231,247,231,247,207,223,207,223,254,1,253,2,239,16,239,16,223,32,223,32,215,40,215,56,255,253,255,255,255,255,239,239,255,239,255,239,223,207,207,207,6,6,1,1,32,32,48,48,24,24,24,24,48,48,48,48,201,213,207,211,237,237,235,231,211,203,213,221,197,213,171,179,241,2,249,22,221,34,213,42,201,54,223,32,215,40,243,12,253,237,227,227,233,233,227,227,195,195,195,195,195,203,195,195,50,58,60,52,22,30,28,20,60,60,62,62,62,62,124,92,242,242,255,254,253,252,233,232,225,252,218,200,208,232,208,232,252,3,253,3,253,3,253,2,222,47,221,58,242,7,228,15,254,254,255,255,253,253,252,252,240,225,213,214,234,205,244,219,13,12]},{"1838260":[2,2,23,22,28,29,37,42,48,47,32,63,143,223,147,35,121,177,125,1,215,161,82,87,84,65,196,57,183,88,23,232,89,166,245,142,114,143,3,254,235,21,127,199,47,239,7,231,67,179,117,13,115,143,1,252,170,126,124,196,48,208,28,236,76,212,242,250,80,124,1,175,171,85,57,185,251,196,255,224,221,209,255,245,245,250,243,250,117,126,116,112,174,117,214,57,253,7,239,27,249,14,255]},{"1838364":[253,6,243,14,255,241,247,249,224,230,248,254,240,246,252,246,248,242,245,245,10,31,6,15,56,55]},{"1838391":[7,9,14,13,10,137,142,139,142,118,241,118,245,119,248,98,104,124,118,236,226,72,74,12,103,247,11,247,15,251,5,123,137,111,155,111,159,107,157,243,30,241,114,241,114,254,117,118,113,122,125,234,237,98,101,99,12,140,139,136,143,138,143,154,159,128,135,16,23,176,191,224,235,8,8]},{"1838467":[128]},{"1838469":[128]},{"1838471":[8]},{"1838477":[162]},{"1838479":[144,255,255,255,255,255,255,255,255,255,255,255,255,255,93,255,239,8,247,128,127,128,127,8,247]},{"1838505":[255]},{"1838507":[255,162,93,144,111]},{"1838513":[255]},{"1838515":[255]},{"1838517":[255]},{"1838519":[255]},{"1838521":[255]},{"1838523":[255]},{"1838525":[255]},{"1838527":[255,170,170,5,5,42,42,1,1,8,8]},{"1838540":[2,2]},{"1838544":[247,255,255,255,221,255,255,255,255,255,255,255,253,253,255,255,162,85,5,250,8,213,1,254,8,247]},{"1838571":[255]},{"1838573":[255]},{"1838575":[255]},{"1838577":[255]},{"1838579":[255]},{"1838581":[255]},{"1838583":[255]},{"1838585":[255]},{"1838587":[255]},{"1838589":[255]},{"1838591":[255,255,255,87,87,43,43,21,21,175,175,21,21,42,42,1,1,84,255,250,255,220,255,234,255,80,255,234,251,213,255,254,255,84]},{"1838626":[82,168,8,84]},{"1838631":[234]},{"1838633":[80]},{"1838635":[238]},{"1838637":[213]},{"1838639":[254]},{"1838641":[255]},{"1838643":[255]},{"1838645":[255]},{"1838647":[255]},{"1838649":[255]},{"1838651":[255]},{"1838653":[255]},{"1838655":[255,255,255,255,255,255,255,119,119,255,255,85,85,143,143,85,85,16,255,184,255,16,255,136,255]},{"1838681":[255,170,255,112,126,170,239,16]},{"1838690":[184]},{"1838692":[16]},{"1838695":[136]},{"1838699":[170]},{"1838701":[209]},{"1838703":[186]},{"1838705":[255]},{"1838707":[255]},{"1838709":[255]},{"1838711":[255]},{"1838713":[255]},{"1838715":[255]},{"1838717":[255]},{"1838719":[255,245,255,254,255,221,223,255,255,255,255,255,255,255,255,255,255]},{"1838737":[245,32,254,32,253]},{"1838743":[255,5,250,8,247,19,236,22,169]},{"1838753":[10,32,1]},{"1838757":[2]},{"1838760":[5]},{"1838762":[8]},{"1838764":[19]},{"1838766":[22,64,10,255,1,255,2,255]},{"1838775":[255,5,255,8,255,19,255,22,255]},{"1838785":[255,170,255,64,255,234,255,85,255,250,255,255,253,255,255,39,39,43,129,92,28,126,148,77,24,55,205,191,64,111,144,8,209,46,80,99,128,107]},{"1838824":[71,160,50]},{"1838828":[191]},{"1838830":[111]},{"1838832":[246,217,123,254,220,227,126,235,237,247,55,250,191,253,111,255,16,239,39,221,74,191,171,245,90,191,187,231,215,126,255,250,8,8,39]},{"1838868":[74]},{"1838870":[187,16,90]},{"1838874":[251,64,215]},{"1838878":[255]},{"1838880":[103,144,255]},{"1838884":[255]},{"1838886":[239]},{"1838888":[255]},{"1838890":[191]},{"1838892":[255]},{"1838894":[255]},{"1838896":[152,247,34,221,64,191,186,229,80,191,250,167,213,126,255,250,255,245,127,255,255,255,255,127,255,255,255,95,253,173,255,180,245]},{"1838930":[127]},{"1838932":[255]},{"1838934":[255]},{"1838936":[255]},{"1838938":[255]},{"1838940":[255]},{"1838942":[255]},{"1838944":[255]},{"1838946":[255]},{"1838948":[255]},{"1838950":[255]},{"1838952":[255]},{"1838954":[255]},{"1838956":[253,2,255]},{"1838961":[255]},{"1838963":[255]},{"1838965":[255,128,127]},{"1838969":[255,160,95,80,173,235,180,255,255,255,255,255,255,255,255,253,125,255,255,215,215,127,63,255,175,255,85,255,171,255,21,127,41,255,5,247,3,223,129,80,170,170,4,84,40,234]},{"1839016":[212,2,250]},{"1839020":[220,40,126]},{"1839024":[5,250,81,174,131,124,21,234,41,212,5,250,3,212,97,158,255,255,255,251,255,254,255,238,255,250,255,254,191,181,239,239,255,255,255,251,255,254,255,238,255,250,255,92,191,181,255,69]},{"1839073":[175]},{"1839075":[93]},{"1839077":[187]},{"1839079":[21]},{"1839081":[175,162,5,64,74,170,17,80,175,162,89,68,186,234,4,80,170,88,166,181]},{"1839102":[68,171,255,146,255,246,255,8,255,146,255,2,255,168,255]},{"1839118":[221,200,215,186,255,246,221,42,255,146,247,10,255,168,255]},{"1839134":[223,64,40,215]},{"1839139":[249,34,221]},{"1839143":[255,8,247]},{"1839147":[255]},{"1839149":[255,170,117,40,146,6,240,34,8]},{"1839159":[146,8,2]},{"1839163":[168]},{"1839167":[200,171,173,43,63,61,126,191,247,127,239,253,204,170,170,168,168,81,249,235,235,157,189,191,191,127,127,255,255,255,255,87,87,6,254,20,212,67,227,72,72,144,144,51,49,85]},{"1839214":[255,168,255,1,255,43,255,28,255,183,255,111,255,206,255,255,255,87,223,255,249,136,248,120,80,64,232,65,2,2,4,12,160,176,95,223,255,255,255,255,255,255,255,255,253,255,251,255,95,255,32,160,119,68,135,130,191,16,191,170,255,2,255,4,255,170,255,95,255,187,255,125,255,239,255,85,255,253,255,251,245,95,192,128,64,8,4,21,44,38,8,14,32,32]},{"1839309":[43,10,79,255,255,255,255,227,247,211,239,247,255,223,255,255,255,255,255,127,106,255,68,255,190,231,52,255,152,255,34,255]},{"1839342":[255,170,255,149,255,187,247,73,247,203,239,119,253,223,255,255,95,255,1,87,42,239]},{"1839365":[255,160,241]},{"1839369":[136]},{"1839371":[85]},{"1839373":[186,170,191,254,255,213,255,255,255,95,255,255,255,255,255,255,255,255,255,255,169,255,42,255]},{"1839398":[255,170,255,1,255,170,255,69,255,170,255,86,255,213,255,255,245,95,254,255,85,255,186,255,255,255,16,254,128,213,64,250]},{"1839431":[85]},{"1839433":[238,32,117]},{"1839437":[170,138,128,239,255,127,255,191,255,255,255,250,254,252,253,170,170,138,138,255,17,255,170,255,69,255,170,255,21,255,171,255,85,255,255,254,239,213,127,250,191,85,255,238,251,117,254,170,255,128,255]},{"1839489":[239]},{"1839491":[85]},{"1839493":[186]},{"1839495":[80]},{"1839497":[234,2,64,1,34,170]},{"1839504":[186,255,232,253,234,250,144,208,170,234,66,66,35,35,170,170,255,85,255,191,255,85,255,239,255,85,255,191,255,221,255,255,239,186,85,234,186,239,80,191,234,191,64,255,34,255]},{"1839551":[255]},{"1839553":[250]},{"1839555":[80]},{"1839557":[160,2]},{"1839560":[1,136,170]},{"1839564":[85]},{"1839566":[255]},{"1839568":[128,250]},{"1839571":[80]},{"1839573":[160,2,2,137,137,170,170,85,85,255,255,255,127,255,255,255,255,255,255,255,119,255,255,255,255,255,255,250,133,80,175,160,95]},{"1839607":[255,136,255]},{"1839611":[255]},{"1839613":[255]},{"1839615":[255,2]},{"1839618":[2]},{"1839620":[5]},{"1839622":[170]},{"1839624":[85]},{"1839626":[191]},{"1839628":[255]},{"1839630":[213,42,6,2,2,2,5,5,170,170,85,85,191,191,255,255,255,197,251,255,255,255,255,255,255,255,255,255,255,255,255,255,197,239,4,251]},{"1839667":[255]},{"1839669":[255]},{"1839671":[255]},{"1839673":[255]},{"1839675":[255]},{"1839677":[255,42,255,1]},{"1839682":[170]},{"1839684":[85]},{"1839686":[255]},{"1839688":[127]},{"1839690":[251,12,251,4]},{"1839695":[255,1,1,170,170,85,85,255,255,127,127,255,251,255,251,255]},{"1839712":[255,255,255,255,255,255,255,255,255,255,251,247,251,255]},{"1839727":[255]},{"1839729":[255]},{"1839731":[255]},{"1839733":[255]},{"1839735":[255]},{"1839737":[255,12,255,4,255,255,255,85]},{"1839746":[189]},{"1839748":[93]},{"1839750":[255]},{"1839752":[255]},{"1839754":[84,171,160,95,8,255,85,85,191,191,93,93,255,255,255,255,255,84,255,160,255,8,255,255,255,253,255,255,255,255,255,255,84,255,160,255,8,247]},{"1839793":[255]},{"1839795":[255]},{"1839797":[255]},{"1839799":[255]},{"1839801":[255,171,255,95,255,255,255,118]},{"1839810":[213]},{"1839812":[255]},{"1839814":[213,34,238,17,64,191]},{"1839821":[255,170,255,119,119,253,253,255,255,255,221,255,238,255,64,255]},{"1839838":[255,170,255,254,255,213,255,255,221,247,238,255,64,255]},{"1839853":[255,170,85]},{"1839857":[255,2,255]},{"1839861":[255,34,255,17,255,191,255,255,255,255,255,3,11,71,55,47,191,47,95,31,191,95,127,143,207,16,80,123,76,215,168,199,8,159,128,255]},{"1839898":[143,16,159,224,41,214,247,151,183,7,127,159,255,47,47,143,255,63,159,95,159,95,56,232,24,232,192,224,80,240,176,192,128,192,240,144,105,169,138,178,34,83,190,159,2,117,218,221,240,247,250,253,2,7,175,87,206,82,85,143,253,1,241,8,251,1,248,2,119,138,180,130,191,161,190,186,246,130,255,254,254,252,247,245,247,243,98,92,206,252,85,107,253,251,33,35,11,9,8,2,125,122,5,11,245,241,117,121,247,243,125,125,255,255,255,255,254,254,127,132,117,138,253,6,245,14,243,12,255]},{"1840028":[127,128,191,64,127,117,241,241,253,245,247,247,255,255,255,255,255,255,127,127,250,250,14,10,138,138,8,8,130,130]},{"1840062":[129,129,203,215,233,245,233,245,251,239,203,243,147,155,95,127,48,16,241,18,199,36,231,4,255,8,243,4,251,4,239,16,91,252,239,239,251,251,219,219,199,195,251,203,219,211,187,155,51,19,48,56,6,14,38,14,52,12,52,44,124,100,228,216,135,183,199,231,143,175,135,183,215,215,215,247,143,191,135,191,76,52,247,8,247,8,231,40,183,72,215,8,159,64,191,64,179,76,231,199,239,207,215,215,215,215,183,183,183,167,191,135,183,183,56,56,112,112,104,104,40,56,72,24,88,72,120,72,251,131,139,139,195,219,247,223,199,215,163,187,243,235,7,127,136,184,203,52,131,116,147,100,251,4,191,72,239]},{"1840220":[255]},{"1840222":[63,192,203,219,219,219,223,223,151,135,183,167,191,183,255,167,183,183,116,124,36,52,32,48,120,40,92,108,76,124,248,200,111,31,128,169,212,217,255,219,131,159,245,244,253,255,253,255,5,7,255,38,184,66,187,119,223,38,242,14,249,4,254,1,14,240,214,217,213,219,233,238,217,193,253,253,255,255,251,249,251,248,112,111,52,47,11,20,125,126]},{"1840313":[1,1]},{"1840316":[6,1,14,13,82,81,186,57,251,121,58,56,56,184,127,127,255,255,191,127,123,135,187,198,187,196,250,7,253,130,191,64,255]},{"1840350":[95,96,58,186,187,186,248,248,122,122,125,125,127,127,191,191,191,191,109,109,69,69,7,5,197,197,199,199,128,128,64,128,64,192,112,120,224,233,237,224,244,254,224,234,237,251,201,207,30,58,255,1,255,10,251,12,228,17,239,18,251,8,215,56,147,72,254,244,244,245,250,254,254,254,237,229,247,229,207,201,181,181,143,137,30,27,19,20,5,1,31,19,18,30,38,42,219,207,152,158,172,237,128,3,248,224,204,208,204,216,236,250,58,57,247,9,3,190,219,96,52,220,241,25,243,27,195,33,117,136,102,249,69,90,31,48,215,216,239,232,239,232,253,242,214,209,96,151,160,247,156,7,35,15,62,55,52,63,6,15,111,95]},{"1840513":[234,32,197]},{"1840517":[175]},{"1840519":[1]},{"1840522":[128]},{"1840524":[2,168,168,85,255,21,239,10,175]},{"1840534":[1]},{"1840536":[128,128,122,122,255,87,87,2,234,21,245,10,255]},{"1840550":[255]},{"1840552":[255]},{"1840554":[255]},{"1840556":[87,170,170,85]},{"1840561":[255,48,255,80,255,254,255,127,255,133,255,168,255,253,255,10,170,16,85]},{"1840581":[255,2,119,129,175]},{"1840588":[42,136,33,16,245,85,239,170,255]},{"1840598":[117]},{"1840600":[174,128,128,128,254,126,223,207,160,95,85,170,255]},{"1840614":[255]},{"1840616":[255,128,255]},{"1840620":[127,170,239,17]},{"1840625":[255,16,255]},{"1840629":[255,138,255,209,255,127,255,137,255,48,255,170,170,21,85,43,187]},{"1840647":[247,21,255]},{"1840651":[71,162,162,17,17,85,85,234,170,212,68,255,8,234]},{"1840666":[71]},{"1840668":[162,162,253,253]},{"1840673":[255,64,191,145,110,247,8,255]},{"1840682":[255]},{"1840684":[255,162,255,17]},{"1840689":[255]},{"1840691":[255,1,255]},{"1840695":[255,21,255,184,255,255,255,19,255,251,251,85,85,255,255,87,87,63,255,1,255,170,175,21,21,4,70,170,171]},{"1840726":[168,168,192]},{"1840730":[254]},{"1840732":[175,170,21,21]},{"1840737":[189]},{"1840739":[254,64,191,66,189,245,10,255]},{"1840748":[255,170,255,21]},{"1840753":[255]},{"1840755":[255,64,255,66,255,53,255,1,255,250,255,255,255,247,255,255,255,255,255,253,253,255,255,223,255,243,255,85,95,52,202,10,21,4]},{"1840790":[2,2]},{"1840794":[32]},{"1840796":[174,162,95,85,60,9,10,224,4,251,136,119,80,175,255]},{"1840812":[255,162,255,85,52,247,10,255,4,255,136,255,80,255,223,255,243,255,245,255,87,255,255,255,244,246,234,234,85,85,251,251,255,255,95,255,87,168,159]},{"1840853":[11]},{"1840855":[21]},{"1840857":[170]},{"1840859":[4]},{"1840862":[224,64,255,168,159,96,2,246]},{"1840871":[234]},{"1840873":[85,186,65,255]},{"1840878":[255,64,87,87,159,255]},{"1840885":[253]},{"1840887":[255]},{"1840889":[255,186,255,255,255,95,255,223,112,255,250,70,100,170,170]},{"1840905":[8,170,170,213,213,63,191,255,32,255]},{"1840916":[70,185,42,85]},{"1840921":[255]},{"1840923":[85]},{"1840925":[42,128]},{"1840928":[223]},{"1840930":[255]},{"1840932":[102,32,42,128,8,8,170]},{"1840940":[215]},{"1840942":[255]},{"1840944":[255,80,255,250,70,221,42,255]},{"1840953":[247,170,255,215,255,127,255,255,171,255,160,183,46,149,133,2,8,12,12,68,68,234,234,255]},{"1840978":[255]},{"1840980":[145,76,152,106,2,253]},{"1840987":[247]},{"1840989":[187]},{"1840991":[21,255]},{"1840994":[255]},{"1840996":[187,8,145,12,10,8,4,8,238]},{"1841006":[255]},{"1841008":[85,171,255,160,179,68,145,238,2,245]},{"1841019":[255,238,255,255,255,245,181,255,95,255,191,255,149,239,175,5,5,2,2,128,128,125,128,245]},{"1841044":[106]},{"1841046":[234]},{"1841048":[64,16]},{"1841051":[250]},{"1841053":[253]},{"1841055":[127,119,10,255]},{"1841060":[255]},{"1841062":[255]},{"1841064":[239]},{"1841066":[5]},{"1841068":[170]},{"1841070":[213]},{"1841072":[64,181,170,85,213,42,255,128,239,16,5,250,170,253,213,255,218,202,170,170,220,92,246,118,255,255,95,95,171,171,1,1,250,138,186]},{"1841108":[166]},{"1841110":[132,8,10]},{"1841115":[160]},{"1841117":[84]},{"1841119":[254,85,37,239,85,221,35,247,1,255]},{"1841130":[95]},{"1841132":[191]},{"1841134":[87]},{"1841136":[154,64]},{"1841139":[170,216,4,242,12,245,10,95,160,191,84,87,254,255,84,85,84,170,168,168,168,80,80,250,250,255,255,85,85,255,84,85,84,170,168,232]},{"1841176":[144]},{"1841183":[170]},{"1841185":[171,170,171,85,87,191,87,127,175,255,5,255]},{"1841198":[255]},{"1841200":[84]},{"1841202":[84]},{"1841204":[168]},{"1841207":[168,64,16,250]},{"1841212":[255]},{"1841214":[255,170,1,1]},{"1841220":[85,85,85,85,84,1,255,255,64,191,255,255,254,255,255,255,255,255,247,247,170]},{"1841242":[81,251,191]},{"1841246":[138]},{"1841248":[255,1,255,171,255,255,255,85,255]},{"1841258":[119,34,255,255,117,255,255,254,84,255,85,255,93,255,255,255,217,174,191,64,138]},{"1841281":[12,42,42,85,85,16,85]},{"1841289":[87,254,255]},{"1841293":[255,255,255,255,255,255,255,85,85,255,186,168]},{"1841306":[17,251,255]},{"1841310":[170]},{"1841312":[255,17,255,191,255,255,186,85,255]},{"1841322":[255,235,255,191,85,255,238,255,106,255,85,255,85,255,255,255,16,239,250,5,170]},{"1841345":[34,170,170,95,68,10,85]},{"1841353":[255,255,255]},{"1841357":[255,254,255,254,254,170,170,95,95,245,160]},{"1841369":[7,5,191,255]},{"1841374":[170,1,255,85,255,255,255,255,170,85,248]},{"1841386":[255,191,255,239,85,254,170,255,170,255,68,255,95,255,255,255]},{"1841403":[255,144,111,171,1]},{"1841409":[160,10]},{"1841412":[255]},{"1841414":[133,85]},{"1841417":[255,255,253]},{"1841421":[255,238,255,160,160,10,10,255,255,127,5]},{"1841433":[255,85,255,255]},{"1841438":[238,17,255,95,255,255,255,255,175,80]},{"1841450":[255,253,255,255,17,238,160,255]},{"1841459":[255]},{"1841461":[255,255,255,255,255]},{"1841467":[255]},{"1841469":[255,255,17,1,136,191]},{"1841476":[170,85,21,21]},{"1841481":[238,255,213]},{"1841485":[255,255,255,137,137,191,191,255,170,255,21,17,238,85,255,255]},{"1841502":[255]},{"1841504":[255,119,255,255,170,255,255]},{"1841514":[255,213,255,255]},{"1841519":[255,136,255]},{"1841523":[255,85,255,255,255,238,255]},{"1841531":[255]},{"1841533":[255,255]},{"1841536":[87]},{"1841538":[253,2]},{"1841541":[255,17,251,174,81,255,85]},{"1841549":[213,255,255,87,87,255,253,255]},{"1841558":[17,23,191,255,85,255,255]},{"1841566":[255]},{"1841568":[255,255,253,255]},{"1841573":[255,253]},{"1841576":[191,17,255,85,255,213]},{"1841583":[255]},{"1841585":[255,2,255,255,255,251,255,64,255]},{"1841595":[255]},{"1841597":[255,255]},{"1841600":[254,65,64,191,85,255]},{"1841607":[174,170,85,251,68,21]},{"1841614":[127,127,255,254,255,64,255,85]},{"1841623":[255,255,255,68,255,191,64,127,128,254,191,64,255,85,170,81]},{"1841640":[255,85,255,64,255,85]},{"1841647":[255,65,255,191,255,255,255,174,255]},{"1841657":[255,4,251,64,191,255,128,232,23,42,255,223,255,38,128,168,87,94,161,255]},{"1841678":[85,85,255,232,255,42,255,223,38,166,253,255]},{"1841691":[94,255]},{"1841694":[85,170,232,255,42,213,223,32,38,89,253,85,94]},{"1841708":[255,255]},{"1841711":[255,23,255,255,255,255,255,217,255]},{"1841721":[255]},{"1841723":[255]},{"1841725":[255,255,170,128,127,175,255,255,255,239,16]},{"1841737":[255,167,88,255]},{"1841742":[85,85,255,128,255,175,255,255,239,255,80,255]},{"1841755":[167,255]},{"1841758":[85,170,128,255,175,80,255]},{"1841766":[239]},{"1841768":[80,80,167]},{"1841772":[255,255]},{"1841775":[255,127,255,255,255,255,255,16,255]},{"1841785":[255]},{"1841787":[255]},{"1841789":[255,255,170,21,255,255,255,251,250,255]},{"1841800":[81,255,128,127,170]},{"1841806":[85,85,255,21,255,255,251,251,255,255,81,255]},{"1841819":[128,187,68,85,170,21,234,255]},{"1841828":[251,4,255]},{"1841832":[81,81,128]},{"1841836":[238,255]},{"1841839":[255,255,255,255,255,254,255]},{"1841847":[255]},{"1841849":[255]},{"1841851":[255,68,187,255,170,87,255,255,255,186,186,255]},{"1841864":[8,255,128,127]},{"1841870":[81,81,255,87,255,255,186,186,255,255,29,255]},{"1841884":[170,85,81,170,87,168,255]},{"1841892":[186,69,255]},{"1841896":[29,8]},{"1841899":[128,85,255]},{"1841903":[255,255,255,255,255,255,255]},{"1841911":[255,21,234]},{"1841915":[255,85,170,255,170,217,254,159,176,255,160,85,170]},{"1841929":[255]},{"1841931":[255]},{"1841936":[166,135,176,191,255,255,85,255,95,255]},{"1841948":[187,68]},{"1841951":[170,248,24,191,112,255]},{"1841958":[85]},{"1841960":[95]},{"1841964":[68,255]},{"1841967":[255,167,199,192,255,160,255]},{"1841975":[255,95,160]},{"1841979":[255,68,187,255,170,7,241,255,8,255,2,85,170]},{"1841993":[255,34,255]},{"1841998":[32,32,243,255,15,255,255,255,85,255,255,255,34]},{"1842012":[187,68,32,136,15,9,255,8,255]},{"1842022":[85]},{"1842024":[255]},{"1842028":[68,255,32,223,248,247]},{"1842035":[255,2,255]},{"1842039":[255,255]},{"1842043":[255,68,187,255,136,34,162,73,174,170,93]},{"1842055":[255]},{"1842057":[255,34,255]},{"1842062":[32,32,227,28,174,209,170,255]},{"1842071":[255,255,255,34]},{"1842076":[187,68,32,136,128,128,255,186,170,8]},{"1842088":[255]},{"1842092":[68,255,32,223,127,255,20,235]},{"1842101":[255]},{"1842103":[255,255]},{"1842107":[255,68,187,255,136,59,206,103,140,254,33]},{"1842119":[255]},{"1842121":[255,170,255]},{"1842128":[176,113,100,239,254,255]},{"1842135":[255,255,255,170]},{"1842140":[187,68]},{"1842143":[136,182,70,103,20,254]},{"1842152":[255]},{"1842156":[68,191]},{"1842159":[255,193,57,16,255,32,255]},{"1842167":[255,255]},{"1842171":[255,68,187,255,136,121,102,215,104,186,69]},{"1842183":[255]},{"1842185":[255,171,255]},{"1842192":[102,183,88,252,186,255]},{"1842199":[255,255,255,171]},{"1842204":[187,68]},{"1842207":[128,120,96,220,67,186]},{"1842216":[255]},{"1842220":[68,187]},{"1842223":[255,135,118,8,247]},{"1842229":[255]},{"1842231":[255,255]},{"1842235":[255,68,187,255,128,49,38,79,240,186,69]},{"1842247":[255]},{"1842249":[255,186,255]},{"1842256":[38,255,64,121,186,255]},{"1842263":[255,255,255,186]},{"1842268":[171,84]},{"1842272":[120,104,73,70,186]},{"1842280":[255]},{"1842284":[84,171]},{"1842287":[255,207,54]},{"1842291":[255]},{"1842293":[255]},{"1842295":[255,255]},{"1842299":[255,84,171,255]},{"1842304":[83,162,254,4,143,112]},{"1842311":[255]},{"1842313":[255,170,255]},{"1842320":[167,255,6,254,143,255,32,255,255,255,170]},{"1842332":[187,68]},{"1842336":[3,2,254,5,143]},{"1842342":[32]},{"1842344":[255]},{"1842348":[68,187]},{"1842351":[255,248,243,1,255]},{"1842357":[255,32,223,255]},{"1842363":[255,68,187,255]},{"1842368":[149,117,46,95,236,31]},{"1842375":[255]},{"1842377":[255,170,255]},{"1842382":[128,128,213,130,31,96,236,255]},{"1842391":[255,255,255,170]},{"1842396":[187,68,128]},{"1842400":[224,96,63,159,236,12]},{"1842408":[255]},{"1842412":[68,187,128,127,95,147,144,239]},{"1842421":[255]},{"1842423":[255,255]},{"1842427":[255,68,187,255]},{"1842432":[102,207,199,122,255]},{"1842438":[17,238]},{"1842441":[255,234,255]},{"1842446":[129,129,211,173,70,255,255,255,17,255,255,255,234]},{"1842460":[171,84,129,8,102,70,199,66,255]},{"1842470":[17]},{"1842472":[255]},{"1842476":[84,191,128,127,137,255,56,255]},{"1842485":[255]},{"1842487":[255,255]},{"1842491":[255,84,171,255,8]},{"1842497":[250,213,111,236,17,85,170,138,255,163,254]},{"1842510":[17,17,215,200,21,253,236,253,85,255,255,255,162]},{"1842524":[170,85,17,136,53,50,215,96,236,2,85]},{"1842536":[255,138]},{"1842539":[1,85,255]},{"1842543":[255,223,207,47,223,19,255]},{"1842551":[255,117,138]},{"1842555":[255,85,170,255,136]},{"1842561":[238,85,117,98,191,127,128,170,255,64,191]},{"1842574":[21,21,255]},{"1842578":[95,213,98,255,127,255,255,255]},{"1842588":[170,85,21,168,17,238,255]},{"1842596":[98]},{"1842598":[127]},{"1842600":[255,170]},{"1842603":[64,85,255]},{"1842607":[255,255,255,127,255,191,255]},{"1842615":[255,85,170]},{"1842619":[255,85,170,255,168]},{"1842625":[174,64,69,170,255,219,36,255,255,215,40,2]},{"1842638":[85,85,255,1,255,64,170,250,219,255,255,255]},{"1842652":[170,85,85,170,81,174,250,5,175]},{"1842662":[219]},{"1842664":[255,255]},{"1842667":[215,87,255]},{"1842671":[255,254,255,255,255,255,255,36,255]},{"1842681":[255]},{"1842683":[255,85,170,255,170,10,224]},{"1842691":[85,162,254,11,244,254,255,95,160,171]},{"1842702":[85,85,255,29,255]},{"1842708":[163,162,11,255,255,255]},{"1842715":[10,171,84,85,170,29,232,170,85,255]},{"1842726":[11]},{"1842728":[255,255,10,85,255,255]},{"1842735":[255,224,255,255,255,255,255,244,255]},{"1842745":[255]},{"1842747":[255,84,171,255,170,170]},{"1842755":[85,160,162,128,127,234,255,255]},{"1842764":[168]},{"1842766":[87,87,255,255,255,170,255,160,128,255,245,245]},{"1842779":[191,170,85,87,168,255,170,170,85,253,2,128]},{"1842792":[255,245,191,64,255,253]},{"1842799":[255]},{"1842801":[255,85,255,255,255,127,255]},{"1842809":[255]},{"1842811":[255,85,170,255,168,110,102,69,17,5,170]},{"1842823":[255,164,245,255]},{"1842828":[128,1,127,127,110,110,255,239,250]},{"1842840":[91,81]},{"1842843":[255,171,84,127,128,255,238,239,85,85,170,255]},{"1842856":[245,81,255]},{"1842860":[255,213]},{"1842863":[255,119,255,17,255,255,255,255,255]},{"1842873":[255]},{"1842875":[255,84,171,255,128,254,254,85,85,64,170]},{"1842887":[250]},{"1842889":[17,187,69]},{"1842893":[11,255,255,254,254,255,255,191,21,5]},{"1842904":[255,17]},{"1842907":[255,171,84,255]},{"1842912":[255,254,255,85,85,170,255]},{"1842920":[17,17,187,69,255,94]},{"1842927":[255,255,255,85,255,234,255,255,255]},{"1842937":[255,68,187,85,170,255]},{"1842944":[181,245,85,85,42,136,10]},{"1842953":[155,191,85]},{"1842957":[191,255,255,234,170,85,85,255,127,245]},{"1842968":[100,155]},{"1842971":[255,191,64,255]},{"1842976":[255,170,255,85,127,170,255]},{"1842984":[17]},{"1842986":[191,85,255,235]},{"1842991":[255,181,255,255,255,136,255,255,255,138,255,64,191,84,171,255]},{"1843008":[93,93,127,255,170,170,254]},{"1843017":[223,255,255]},{"1843021":[255,254,255,160,170,213,85,234,234,1,1,32,221]},{"1843035":[255,255]},{"1843038":[238,1,255,168,255,85,255,170,255]},{"1843048":[87]},{"1843050":[255,255,255,170,17,254,95,247,127,255,191,255,254,255,138,255]},{"1843067":[255,85,170,239,1,217,217,251,251,170,191,168]},{"1843081":[255,255,255]},{"1843085":[255,254,255]},{"1843089":[174,68,68,191,170,87,87,1,212]},{"1843099":[255,255]},{"1843102":[170,1,255,136,255,68,255,170,255]},{"1843112":[126,1,255,255,255,170,85,254,255,119,251,255,234,255,168,255,170,255]},{"1843131":[255,95,160,171,1]},{"1843138":[186,186,175,239]},{"1843144":[2,245,255,255]},{"1843149":[255,235,255]},{"1843153":[255,64,69,234,170,18,18,93]},{"1843162":[69,255,255]},{"1843166":[170,20,255]},{"1843170":[255,64,255,170,255]},{"1843176":[170,85,255,186,255,170,85,235,255,255,191,255,191,255,237,255,170,255,69,186,255]},{"1843198":[190,20,10,10,168,168,223,223,129,1,174,80,255,255,9,246,235,255]},{"1843217":[245]},{"1843219":[87,160,160]},{"1843224":[80,9,93,255,246]},{"1843230":[136,20,255]},{"1843234":[253]},{"1843236":[255,160,255]},{"1843240":[166,81,255,162,255,171,119,235,255,245,253,255,223,255,255,255,166,255,93,162,246,9,156,20,255]},{"1843266":[255,255,255,255,255,255,255,255,163,252,241,14,56,254,85]},{"1843282":[255]},{"1843284":[255]},{"1843286":[255]},{"1843288":[255]},{"1843290":[95,3]},{"1843293":[255]},{"1843295":[1,255,255,255,255,255,255,255,255,255,255,160,163]},{"1843309":[255,255,255,255,255]},{"1843322":[255,163,255,255,1]},{"1843328":[255]},{"1843330":[255,255,255,255,255,255,245,245,213,42,242,34,2,170,87]},{"1843346":[255]},{"1843348":[255]},{"1843350":[255]},{"1843352":[255,10,250,133,34,221,2,85,255,255,255,255,255,255,255,255,245,255,85,213,34,221,255,255,255,255]},{"1843384":[10,10,255,213,255,221,85,2,255]},{"1843394":[255,255,255,255,255,255,85,85,223,32,168,170,42,170,119]},{"1843410":[255]},{"1843412":[255]},{"1843414":[255]},{"1843416":[255,170,160,26,168,127,42,85,255,255,255,255,255,255,255,255,85,255,223,223,170,125,255,255,255,255]},{"1843448":[170,170,255,223,215,87,85,42,255]},{"1843458":[255,255,255,255,255,255,87,87,249,6,13,147,50,186,127,128,255]},{"1843476":[255]},{"1843478":[255]},{"1843480":[127,168,14,160,17,238,34,69,255,255,255,255,255,255,255,255,215,255,249,249,130,109,223,191,255,255]},{"1843512":[40,40,255,249,239,254,101,2,254]},{"1843522":[255,255,255,255,255,255,81,81,255,255,255,255,152,141,254,1,255]},{"1843540":[255]},{"1843542":[255]},{"1843544":[119,174,255]},{"1843548":[213]},{"1843550":[157,98,255,255,255,255,255,255,255,255,217,255,255,255,42,255,255,255,255,255]},{"1843576":[38,38,255,255,213]},{"1843582":[98,157,239]},{"1843586":[255,255,255,255,255,255]},{"1843594":[251,255,253,255,154,237,239,16,255]},{"1843604":[255]},{"1843606":[255]},{"1843608":[119,255,250,5,84,2,255]},{"1843616":[255,255,255,255,255,255,255,255,136,255,123,254,171,255,255,255,255,255]},{"1843640":[119,119,255,254,84,2]},{"1843647":[255,238,17,255,255,255,255,255,255,4,4,190,231,77,221,102,104,255]},{"1843666":[255]},{"1843668":[255]},{"1843670":[255]},{"1843672":[95,251,174,81,88,162,15,144,238,238,255,255,255,255,255,255,164,255,60,255,135,237,255,126,255,238]},{"1843704":[91,91,255,255,106,176,144,15,160,85,255,255,255,255,255,255]},{"1843722":[171,255,84,213,127,128,245,10,255]},{"1843732":[255]},{"1843734":[255]},{"1843736":[117,255,32,223]},{"1843741":[171,255]},{"1843744":[170,170,255,255,255,255,255,255,138,255,171,116,255,213,255,255,255,170]},{"1843768":[117,117,255,116,42,129]},{"1843775":[255,179,85,255,255,255,255,255,255]},{"1843786":[187,255,68,84,254,16,230,25,255]},{"1843796":[255]},{"1843798":[255]},{"1843800":[127,255]},{"1843803":[255]},{"1843805":[187,255]},{"1843808":[187,187,255,255,255,255,255,255,128,255,187,68,255,84,238,239,255,187]},{"1843832":[127,127,255,68,171,16]},{"1843839":[255,55,85,255,255,255,255,255,255,16,16,223,223,128,208,149,213,98,157,255]},{"1843860":[255]},{"1843862":[255]},{"1843864":[247,239,16,239,192,31,191,64,191,191,255,255,255,255,255,255,24,255,239,48,31,176,64,234,255,191]},{"1843896":[231,231,255,48,175,80,128,127,215,85,255,255,255,255,255,255]},{"1843913":[170,255,255]},{"1843918":[21,85,130,125,255]},{"1843924":[255]},{"1843926":[255]},{"1843928":[85,85]},{"1843931":[255]},{"1843933":[255,255,64,255,255,255,255,255,255,255,255,170,255,255]},{"1843948":[255]},{"1843951":[234,255,255]},{"1843960":[255,255,255]},{"1843964":[255]},{"1843966":[64,191,125,85,255,255,255,255,255,255]},{"1843977":[170,251,255]},{"1843982":[1]},{"1843984":[40,215,255]},{"1843988":[255]},{"1843990":[255]},{"1843992":[85,85,4,251]},{"1843997":[254,252,2,255,255,255,255,255,255,255,255,170,255,251]},{"1844012":[254,1,2,253,255,255]},{"1844024":[255,255,251,4,255]},{"1844030":[3,252,87,87,255,255,255,255,255,255]},{"1844041":[42,122,127,64,192]},{"1844049":[255,255]},{"1844052":[255]},{"1844054":[255]},{"1844056":[85,213,69,186,192,63,127,128,255,255,255,255,255,255,255,255,170,255,186,192,63,64,128,127,255,255]},{"1844088":[127,127,250,197,127,128,128,127,119,119,255,255,255,255,255,255,136,170,170,255,64]},{"1844110":[8,8]},{"1844113":[255,255]},{"1844116":[255]},{"1844118":[255]},{"1844120":[85,221,85,170,64,255,255,8,255,255,255,255,255,255,255,255,170,255,170]},{"1844140":[255]},{"1844142":[8,255,255,255]},{"1844152":[255,255,170,85,255]},{"1844158":[8,247,127,127,255,255,255,255,255,255,168,168,171,255,64,4,138,138]},{"1844177":[255,255]},{"1844180":[255]},{"1844182":[255]},{"1844184":[87,255,87,168,64,252,250,141,255,255,255,255,255,255,255,255,168,255,168,3,252,7,141,250,255,255]},{"1844216":[255,255,171,87,251,4,143,112,255,255,255,255,255,255,255,255,170,170,160,255,68]},{"1844238":[170,170]},{"1844241":[255,255]},{"1844244":[255]},{"1844246":[255]},{"1844248":[85,255,95,160,68,255,255,170,255,255,255,255,255,255,255,255,170,255,160]},{"1844268":[255]},{"1844270":[170,255,255,255]},{"1844280":[255,255,160,95,255]},{"1844286":[170,85,119,119,255,255,255,255,255,255,170,238]},{"1844299":[255,69]},{"1844302":[170,170]},{"1844305":[255,255]},{"1844308":[255]},{"1844310":[255]},{"1844312":[17,187,255]},{"1844316":[69,255,255,170,255,255,255,255,255,255,255,255,238,255]},{"1844332":[255]},{"1844334":[170,255,255,255]},{"1844344":[255,255]},{"1844347":[255,255]},{"1844350":[170,85,117,117,255,255,255,255,255,255,160,170,46,255,90,2,164,160]},{"1844369":[255,255]},{"1844372":[255]},{"1844374":[255]},{"1844376":[85,245,213,42,90,249,245,174,255,255,255,255,255,255,255,255,170,255,42,4,249,6,174,241,255,255]},{"1844408":[255,255,46,213,255]},{"1844414":[174,81,85,85,255,255,255,255,255,255,170,170,170,255,84]},{"1844430":[168,168]},{"1844433":[255,255]},{"1844436":[255]},{"1844438":[255]},{"1844440":[85,255,85,170,84,255,255,168,255,255,255,255,255,255,255,255,170,255,170]},{"1844460":[255]},{"1844462":[168,255,255,255]},{"1844472":[255,255,170,85,255]},{"1844478":[168,87,85,85,255,255,255,255,255,255,136,170,187,255,68]},{"1844497":[255,255]},{"1844500":[255]},{"1844502":[255]},{"1844504":[85,221,68,187,68,255,255]},{"1844512":[255,255,255,255,255,255,255,255,170,255,187]},{"1844524":[255]},{"1844527":[255,255,255]},{"1844536":[255,255,187,68,255]},{"1844543":[255,87,85,255,255,255,255,255,255,128,170,255,255,20,85,8,8,2,253,255]},{"1844564":[255]},{"1844566":[255]},{"1844568":[85,213,24,231,20,227,251,4,255,255,255,255,255,255,255,255,170,255,231,24,227,93,4,251,255,255]},{"1844600":[255,255,255,24,190,65,12,243,87,85,255,255,255,255,255,255]},{"1844617":[170,255,255,69,85]},{"1844624":[2,253,255]},{"1844628":[255]},{"1844630":[255]},{"1844632":[85,85]},{"1844635":[255,69,186,117,138,255,255,255,255,255,255,255,255,170,255,255]},{"1844652":[186,85,138,255,255,255]},{"1844664":[255,255,255]},{"1844668":[239,16,138,117,8,85,255,255,255,255,255,255]},{"1844681":[170,255,255,85,93]},{"1844688":[93,162,255]},{"1844692":[255]},{"1844694":[255]},{"1844696":[85,85,34,221,85,170,85,170,170,170,255,255,255,255,255,255,170,255,221,34,170,93,170,127,255,170]},{"1844728":[255,255,255,34,247,8,170,85,175]},{"1844738":[255,255,255,255,255,255]},{"1844745":[136,251,255,109,239]},{"1844752":[175,80,255]},{"1844756":[255]},{"1844758":[255]},{"1844760":[119,119,42,213,109,146,64,191,255,255,255,255,255,255,255,255,136,255,209,46,130,255,191,71,255,255]},{"1844792":[255,255,255,46,125,146,191,64,186]},{"1844802":[255,255,255,255,255,255]},{"1844809":[128,186,255,221,255]},{"1844816":[186,69,255]},{"1844820":[255]},{"1844822":[255]},{"1844824":[117,127,170,85,85,34]},{"1844831":[255,255,255,255,255,255,255,255,255,138,255,16,239,170,255,255,119,255,255]},{"1844856":[245,245,255,239,85,34,255]},{"1844864":[175]},{"1844866":[255,255,255,255,255,255]},{"1844874":[187,255,255,255]},{"1844880":[175,80,255]},{"1844884":[255]},{"1844886":[255]},{"1844888":[117,255,171,84,213]},{"1844895":[255,255,255,255,255,255,255,255,255,138,255,17,239,42,255,255,127,255,255]},{"1844920":[117,117,255,239,213]},{"1844926":[255]},{"1844928":[254]},{"1844930":[255,255,255,255,255,255]},{"1844938":[255,255,191,191]},{"1844944":[118,137,255]},{"1844948":[255]},{"1844950":[255]},{"1844952":[85,255,255]},{"1844956":[189,64]},{"1844959":[255,255,255,255,255,255,255,255,255,170,255,223,255,2,255,255,199,255,255]},{"1844984":[85,85,255,255,253,64,255]},{"1844992":[255]},{"1844994":[255,255,255,255,255,255]},{"1845002":[255,255,216,250]},{"1845008":[119,136,255]},{"1845012":[255]},{"1845014":[255]},{"1845016":[119,255,255]},{"1845020":[216,39]},{"1845023":[255,255,255,255,255,255,255,255,255,136,255,255,255,34,221,255,255,255,255]},{"1845048":[119,119,255,255,255,39,255]},{"1845056":[255]},{"1845058":[255,255,255,255,255,255,21,21,255,208]},{"1845069":[170]},{"1845071":[136,87,40,255]},{"1845076":[255]},{"1845078":[255]},{"1845080":[119,234,211,40]},{"1845085":[255]},{"1845087":[119,255,255,255,255,255,255,255,255,157,255,255,255,170,85,255,255,255,255]},{"1845112":[98,98,255,255,255,255,119]},{"1845120":[255]},{"1845122":[255,255,255,255,255,255,85,85,253,2,234,42]},{"1845135":[170,85,32,255]},{"1845140":[255]},{"1845142":[255]},{"1845144":[127,170,170,1,42,255]},{"1845151":[85,255,255,255,255,255,255,255,255,213,255,253,253,42,255,255,191,255,255]},{"1845176":[42,42,255,253,213,213,85]},{"1845184":[255]},{"1845186":[255,255,255,255,255,255,85,85,223,32,42,42]},{"1845199":[170,85]},{"1845202":[255]},{"1845204":[255]},{"1845206":[255]},{"1845208":[247,170,191]},{"1845212":[42,213]},{"1845215":[85,255,255,255,255,255,255,255,255,93,255,223,223,42,213,255,255,255,255]},{"1845240":[162,162,255,223,255,213,85]},{"1845248":[255]},{"1845250":[255,255,255,255,255,255,119,119,68,191,126,33,4,170,85]},{"1845266":[255]},{"1845268":[255]},{"1845270":[255]},{"1845272":[255,136,251]},{"1845276":[32,223,4,85,255,255,255,255,255,255,255,255,119,255,68,68,32,223,251,254,255,255]},{"1845304":[136,136,255,68,255,223,85]},{"1845313":[159,251,123,21,2,255,255,17,17,213,208,85,85,124,124,159,96,68,122,234,232,255,255,255,255,223,223,170,175,119,247,255,111,193,128,253,2,255,255,255,119,255,213,255,85,139,8,255]},{"1845362":[122,191,23,255,255,255,153,255,240,255,255,170,255,247]},{"1845377":[255,191,191,85,42,253,238,85,85,66,21,4,7,178,182,250]},{"1845394":[64,170,170,128,255,253,213,213,252,232,254,252,71,83,250,255,21]},{"1845412":[213,42,253,255,255,255,235,84,253,86,251,182,250,5,170,255,127,255,238,255,85,255,23,255,175,255,255,79]},{"1845441":[255,172,175,78,186,73,252,141,81]},{"1845451":[244]},{"1845453":[10,160,160,1]},{"1845458":[87,172,163,6,211,91,173,141,31,64,126,126,95,255,1,255,7,7,94,162,127,217,223,143,171,20,255,213,255,170]},{"1845489":[255,168,255,240,255,228,255,81,255,255,255,42,255,245,95,10,53,212,127,138,170,80,239,127]},{"1845514":[64,111]},{"1845517":[128,10,11,32,200,43,171,255,138,255,80,127,127,208,64,128,128,255,255,232,245,255,43,223,32,80,255,255,255,255]},{"1845548":[255,127,255,170,194,63]},{"1845555":[255,255,255,239,255]},{"1845561":[255,255,255,128,255,95,255,128,85]},{"1845571":[255,170,239]},{"1845575":[255,232,23]},{"1845579":[255,84]},{"1845582":[160,241]},{"1845585":[42,255,255,186,170,255]},{"1845592":[255,232]},{"1845595":[255,85,84,243,241,42,255,255,255,255]},{"1845607":[255,232,255]},{"1845612":[255,254,255,173]},{"1845617":[255]},{"1845619":[255,255,255,255,255,23,255,255,255,1,255,242,255,131,82,4,254,168,241,188,231,45,199,79,208,63,192,106,128,3,44,255,252,169,191,245,190,239,45,223,223,127,255,106,234,45,253,254,255,239,7,188,69,45,194,223,208,127,127,127,127]},{"1845681":[255]},{"1845683":[255,240,255,227,255,215,255,32,255]},{"1845693":[255,128,255,32,32,197,127,171,254,255,255,87,255,212,43,160,95,255]},{"1845712":[32,223,111,127,171,255,255,255,255,87,254,255,255,160,255,255,223,223,111,231,171]},{"1845734":[255]},{"1845736":[87,168,254,42,160,255,255,255,192,63,8,247,254,255,255,255,255,255]},{"1845755":[255,95,255]},{"1845759":[255,191,191,68,255,255,170,255,255,255,255,1,255,21,255,244,11,191,64,255,255,255,255,255,255,255,255,171,255,255,21,255,244,64,64,255,196,255]},{"1845798":[255]},{"1845800":[255]},{"1845802":[171,169,21,234,244,255]},{"1845809":[255,59,196,170,255,255,255,255,255,2,253,255,255,11,255,246,254,64,248,242,171,253,239,251,255,88,215,143,255,64,191,246,1,249,250,246,249,253,243,251,231,211,239,223,223,191,224,1]},{"1845858":[250,73,240,4,241]},{"1845864":[227]},{"1845866":[235,98,223,16,224,191,1,254,182,77,160,255,225,255,227,255,129,126,207,191,31,255,119,63,128,127,255,162,255,117,255,254]},{"1845899":[255,255,255,170,255,119,128,127,255,255,255,255,255,255,255,255,255,255,255,255,170,192,192,255]},{"1845924":[255]},{"1845926":[255]},{"1845928":[255]},{"1845930":[255]},{"1845932":[255]},{"1845934":[170,85,128,127,127,128,162,255,117,255,254,255,255]},{"1845948":[255,255,255,255,247,255]},{"1845955":[255,250,5,247,93,255,170]},{"1845963":[255,191,191,255,255,247]},{"1845970":[255,255,250,255,247,255,255,255,255,255,191,191,255,255]},{"1845986":[255]},{"1845988":[250]},{"1845990":[247]},{"1845992":[255]},{"1845994":[255]},{"1845996":[191,64,255]},{"1846001":[255,255]},{"1846005":[255,85,255,170,255,255]},{"1846012":[255,255,255,255,248,248,5,221,162,91,121,138,231,180,18,213,247,170,255,183,252,3,213,210,174,249,127,243,255,243,217,195,255,239,255,207,3,4,210]},{"1846052":[168,4,115,4,243,8,195,8,255,48,207]},{"1846064":[3,252,242,45,8,247,2,253,176,239,225,62,138,247,135,255,255,255,2,125]},{"1846085":[255,81,174,254,137]},{"1846091":[255,191,170,95,85,255]},{"1846098":[85,87]},{"1846101":[255,81,255,254,255,221,221,191,191,95,95]},{"1846114":[85,2]},{"1846118":[81]},{"1846120":[254]},{"1846122":[221]},{"1846124":[191,64,95,160]},{"1846129":[255,215,168]},{"1846133":[255]},{"1846135":[255,136,255,221,34,234,255,245,255,235,235,42,213]},{"1846149":[255]},{"1846151":[255,170,85]},{"1846155":[255,255]},{"1846158":[255,16,255,1,68,110]},{"1846165":[255]},{"1846167":[255,170,255,85,85,255,255,255,255,1,21,68,42]},{"1846184":[170]},{"1846186":[85]},{"1846188":[255]},{"1846190":[255]},{"1846192":[1,254,110,145]},{"1846197":[255]},{"1846199":[255]},{"1846201":[255,85,170]},{"1846205":[255,16,255,248,248,169,1,4,253,2,251,128,123,4,223,245,14,253,14,253,18,5,168,31,253,14,251,140,249,85,81,245,243,255,243,18,21,2,174,29,6,10,6,136,4,81]},{"1846252":[241]},{"1846254":[243,2,18,237,250,85,29,226,10,245,8,247,113,174]},{"1846269":[255]},{"1846271":[255,170,168,170,85]},{"1846277":[255]},{"1846279":[255,136,119]},{"1846283":[247,255]},{"1846286":[235,20,253,2]},{"1846291":[170,93,255]},{"1846295":[255,136,255,85,85,255,255,235,255]},{"1846305":[87]},{"1846307":[170,93]},{"1846312":[136]},{"1846314":[85]},{"1846316":[255]},{"1846318":[235]},{"1846320":[2,253,170,85,93,162]},{"1846327":[255]},{"1846329":[255,93,170]},{"1846333":[255,20,255,170,130,170,17]},{"1846341":[255]},{"1846343":[255,138,117]},{"1846347":[255,255]},{"1846350":[249,6,215,40]},{"1846355":[170,85,255]},{"1846359":[255,138,255,93,93,255,255,249,255]},{"1846369":[125]},{"1846371":[170,85]},{"1846376":[138]},{"1846378":[93]},{"1846380":[255]},{"1846382":[249]},{"1846384":[40,215,238,85,85,170]},{"1846391":[255]},{"1846393":[255,93,162]},{"1846397":[255,6,255,232,136,168,65,6,255,2,255,168,85,33,221,250,4,64,190,155,100,68,232,87,249,3,251,174,252,223,252,251,252,66,253,4,115,66,174,81]},{"1846438":[3,2,172,2,252,2,251,2,67,3,100,155,250,21,81,174,3,252,4,251,220,35]},{"1846461":[255,189,254,255,239,170,85]},{"1846469":[255]},{"1846471":[255,174,81]},{"1846475":[255,255]},{"1846478":[40,215,239,16,68,238,64,255]},{"1846487":[255,174,255,255,255,255,255,168,255]},{"1846497":[16,68,170,64]},{"1846504":[174]},{"1846506":[255]},{"1846508":[255]},{"1846510":[168,128,16,239,238,17,64,191]},{"1846519":[255]},{"1846521":[255,255]},{"1846525":[255,87,255,255,255,34,197]},{"1846533":[255,1,254,175,80,69,255,191,64]},{"1846543":[255,255]},{"1846546":[68,102,69,255,1,255,175,255,255,255,191,255]},{"1846559":[255]},{"1846562":[68,34,69]},{"1846566":[1]},{"1846568":[175]},{"1846570":[255,69,191]},{"1846577":[255,126,153,69,186]},{"1846583":[255]},{"1846585":[255,186,69,64,255,255,255,241,241]},{"1846595":[232,2,254,18,239,255,3,86,253,144,111]},{"1846607":[255,251,4,70,64,82,248,18,252,255,254,252,254,145,255]},{"1846623":[255,4,10,64,6,80]},{"1846630":[16]},{"1846632":[254,2,254,84,145,1]},{"1846640":[4,251,81,191,81,175]},{"1846647":[255]},{"1846649":[255,168,87,110,255,255,255,238,239]},{"1846659":[125]},{"1846661":[255,1,254,238,145,221,127,228,91,72,191,255,1]},{"1846676":[85,255,129,255,238,255,127,127,100,127,32,127]},{"1846689":[17]},{"1846692":[85]},{"1846694":[129,128,238,128,127,221,100,192,96,32,1,254,130,255,85,170]},{"1846711":[255]},{"1846713":[255,34,221,27,255,159,255,255,234,32,147,162,255,17,238,254,1,255,255]},{"1846733":[251,136,255,255]},{"1846739":[32,255,255,27,255,255,255,255,255,68,251]},{"1846751":[254,21,21,32]},{"1846756":[255,166,27,10,255,1,255,255,64,64,35]},{"1846769":[255,76,255,89,166]},{"1846775":[255]},{"1846777":[255]},{"1846779":[255,187,255,221,255,243,226,213,6,13,248,21,234,172,83,221,255]},{"1846797":[175]},{"1846799":[255,251,4,6,209,216,255,190,254,253,255,255,255,80,175]},{"1846815":[234,21,29,211,2,223,10,190,171,253,81,255,255,4]},{"1846830":[191]},{"1846832":[4,251,40,255,208,47]},{"1846839":[255,2,255]},{"1846843":[255,171,255,85,255,170,171,238]},{"1846852":[162,255,81,46,128,255,196,63,32,255,56,255,255]},{"1846867":[238,255,255,123,127,208,255,31,223,112,245,2,248,85,1,238]},{"1846884":[255,239,123,42,208,208,223,31,127,112,245,50]},{"1846897":[255,17,255,16,239,132,255,47,255,32,255,138,255,13,255,170,191,255,4,128,255]},{"1846919":[255]},{"1846921":[255,119,255,1,252,5,170,255]},{"1846930":[4,255,223,255,170,255]},{"1846937":[255,136,170,6]},{"1846942":[250]},{"1846944":[85,21,255,4,223,223,170,170]},{"1846954":[221,136,251,4,85,170]},{"1846961":[255]},{"1846963":[255]},{"1846965":[255,85,255,255,255,34,255,251,255,85,255,168,247,249,86,3,254,9,255]},{"1846985":[255,170,171,21,64,126,128,253]},{"1846994":[80,249,254,255,162,254]},{"1847001":[224,84,171,234,1,129,1,93,95,249,86,255,254,163,162,31]},{"1847018":[1]},{"1847020":[190,64,127,128]},{"1847025":[255]},{"1847027":[255]},{"1847029":[255,92,255,255,255,170,255,190,255,126,255]},{"1847041":[255,213,127,128,247,128,191]},{"1847049":[240,32,175,196,24,2,12,85]},{"1847058":[85,213,93,119,64,172,79,224,82,168,35,27,120,244,85,255,213,85,213,85,187,128,95,64,141,2,255]},{"1847086":[119,136]},{"1847089":[255,42,255,34,255,23,255,191,255,37,255,228,255,3,255]},{"1847105":[255,238,255]},{"1847109":[255,6,248,117]},{"1847114":[23,168,2,2]},{"1847119":[23,84]},{"1847122":[85,255,64,255,1]},{"1847128":[138,10,232]},{"1847132":[242,242,23]},{"1847136":[84,255,255,255,85,64,255]},{"1847144":[255]},{"1847146":[87,168,255,2,255]},{"1847152":[84,171]},{"1847155":[255,170,255,255,255,245,255,87,255,15,255,232,255]},{"1847169":[255,191,241,7,255,254,1,2,10,250]},{"1847180":[42,191,15,255,255]},{"1847186":[64,255]},{"1847189":[69]},{"1847192":[254,246,5,69,191,42,240]},{"1847200":[255,239,254,240,250]},{"1847206":[255]},{"1847208":[247,10,191]},{"1847212":[255,42,255]},{"1847216":[215,40,1,255,189,255,255,255,11,255,186,255,106,255,15,255,1,254,255,255,9,212,168,192,106,15,24]},{"1847244":[209,211,236,239,254]},{"1847251":[187,102,128,22,150,159,154,64,96,166,164,3,16,255,255,238,170,59,68,127]},{"1847272":[255,10,223,32,255,160,255]},{"1847280":[254,1,17,255,187,255,233,255,106,255,159,255,217,255,252,255,21,234,255,255,255]},{"1847304":[255,255]},{"1847307":[95,224,224,129,129,234]},{"1847314":[158,191]},{"1847317":[16,224,224,234,234,95]},{"1847325":[63]},{"1847327":[126,255,255,222]},{"1847332":[239]},{"1847334":[255]},{"1847336":[255,234,255]},{"1847340":[255,160,255]},{"1847344":[234,21,191,97,239,255,31,255,255,255,160,255,255,95,255,254,95,95,43,47,94,120,216,13,242,140,223,145,47,15,255,63,255,255,251,251,223,223,240,253,27,159,40,185,240,239,128,191]},{"1847393":[160,4,212,39,167,255,223,126,119,126,94,96,233,192,192,255,95,255,43,254,89,253,34,255,8,255,32,239]},{"1847422":[255]},{"1847424":[128,144,149,149,5,5,124,125,129,1,208,2,255,170,255,212,247,231,47,159,58,63,130,255,127,127,45,13]},{"1847453":[170]},{"1847455":[212,111,60,218,240,255,205,255,255,128,254,210,223,85,255,43,107,211,255,191,79,63,242,125,130,255,1,223]},{"1847484":[255]},{"1847486":[255]},{"1847490":[64]},{"1847492":[85,95]},{"1847495":[85,87,93,43,47,160,5,80,10,255,255,255,255,170,255,170,255,247,247,251,251,90,90,165,5,255,128,255,64,255,85,255,255,10,170,4,212,165,255,90,95,255,127,255,191,255,170,85,170,255,85,255,43,255]},{"1847550":[95]},{"1847553":[174,160,173]},{"1847557":[187,5]},{"1847560":[224,193,241,128,82,112,181,162,255,255,95,255,228,255,15,5,254,255,253,252,218,216,245,243,255,1,255,162,255,95,245,255,63,43,126,118,44,172,19,83,254,255,253,95,187,228,10,245,255,212,252,139,248,87,243,172,2,225,2,73,36,144,154,32,209,51,192,64,248,16,253,8,243,246,227,239,36,188,223,32,206,191,191,127,255,255,255,255,254,25,247,178,239,231,64,5,191,185,127,69,239,170,247,117,225,255,73,255,144,127,101,250,63,198,127,186,255,85,255,138,1,170,32,117,85]},{"1847686":[255]},{"1847688":[16,254,170,191,5,7,10,10,171,171,244,245,85,85,255]},{"1847704":[239,255,85,255,250,255,245,255,255,85,255,171,255,255]},{"1847720":[255,17,255,170,255,165,255,91,170,255,117,254]},{"1847733":[255]},{"1847735":[255,254,239,255,85,255,90,255,164,21,168,10,64,255]},{"1847750":[80]},{"1847753":[174,128,213,85,127,239,255,189,189,74,74,255,250,251,4,251,255,127,255,170,255,16,255,255,87,255,191,250,250,175]},{"1847784":[255,85,255,170,255,85,255,239,168,255,64,255]},{"1847797":[255,171,255,174,251,213,127,255,170,255,16,126,129,173]},{"1847812":[227,25,6,138,14,236,60,89,56,178,5,37,255,255,174,173,253,163,42,95,154,234,190,223,207,143,218,47,255,127,253,252,163,185,255,10,255,107,223,223,191,77,15,191,128,255]},{"1847859":[255,24,255,160,255,240,159,65,190,194,191,181,74,122,197,127,128,220,34,132,59]},{"1847885":[170]},{"1847887":[80,191,186,255,255,255]},{"1847895":[123]},{"1847900":[85,255,174,254,250,63,255,255,1,34,64]},{"1847912":[255,255,255,255,255,255,255,255,133,127]},{"1847923":[255,35,255,59,255]},{"1847929":[255]},{"1847931":[255,170,85,80,175,128,127,84,171,170,130,128,117,85]},{"1847946":[42]},{"1847952":[255,128,255,84,191,194,10,117,85,85,42,42]},{"1847966":[192,192,128,255,84,255,215]},{"1847976":[255,255,255,255,255,255,255,255,127,255,171,255,151,255,117,255]},{"1847993":[255]},{"1847995":[255]},{"1847997":[255]},{"1847999":[255,21,255,2,255,32,100,1,81,125,3,158,2,64,2,5,129,255,21,255,2,32,187,175,81,127,124,190,159,70,69,169,6,21,234,2,253,255]},{"1848038":[1,1,253,255,223,253,255,251,215,125,255,255,255,255,100,255,80,255,3,254,35,220,1,254,47,208,127,255,105,141,160,225,64,170,45,18,212,129,138]},{"1848080":[255,95,15,185,128,159,191,106,255,40,255,62,31,15,7,2,95,208,59,68,190,192,234,170,168,58,190,149,111,58,250,85,143,255,143,255,1,255]},{"1848119":[255,18,255,129,127,80,239,173,250,254,255,85,95]},{"1848133":[127,5,175,64,168,87]},{"1848140":[138,32]},{"1848144":[254,255,245,85]},{"1848149":[255,250,170,255]},{"1848154":[253,168,255,213,127,127,254]},{"1848162":[255]},{"1848164":[128]},{"1848166":[175,170,23,168,170]},{"1848172":[213,160,255]},{"1848176":[255,255,255,255,127,255]},{"1848183":[255,191,255,2,255,32,255,128,255,171,254,64,239]},{"1848197":[186,119,255]},{"1848202":[226]},{"1848204":[239]},{"1848206":[170]},{"1848208":[171,255,64,127,69,186,136,136,255]},{"1848218":[93]},{"1848220":[186,16,85,85,171]},{"1848226":[208]},{"1848230":[255,136,255]},{"1848234":[191]},{"1848236":[85]},{"1848238":[255]},{"1848240":[254,255,239,255,186,255]},{"1848247":[255,255,255,191,255,69,255,170,255,154,233,20,251,22,188,209,239,24,37,24,46,77,24,239,56,154,247,24,247,67,182,42,182,194,28,203,48,178,12,56,104,150,4,28,24,22,28,251,174,255]},{"1848298":[253,10,219,24,191,16,225,255,227,255,160,255,4,251,227,255,205,247,211,239,191,199,16,239]},{"1848323":[255]},{"1848325":[170,255,255]},{"1848329":[81,139,32,223]},{"1848334":[255]},{"1848336":[16,255]},{"1848339":[255,85,170]},{"1848343":[170,174]},{"1848346":[116,10,32,64]},{"1848351":[5,16]},{"1848358":[255,170,255]},{"1848362":[213,32,191]},{"1848366":[250]},{"1848368":[239,255,255,255,170,255]},{"1848375":[255,255,255,213,255,191,255,250,255]},{"1848385":[255]},{"1848387":[255]},{"1848389":[170,255,255,1,80,159,32,221]},{"1848398":[80]},{"1848401":[255]},{"1848403":[230,85,170]},{"1848407":[170,174]},{"1848410":[96]},{"1848412":[34,247,5,239]},{"1848418":[25]},{"1848422":[87,2,255]},{"1848426":[223,32,42]},{"1848430":[21,170,255,255,255,255,170,255,168,255,255,255,223,255,8,255,16,255]},{"1848449":[254,1,255,29,29,188,255,66,20,253,2,83]},{"1848462":[5,4,2,253,2,232,228,7,12,241,188,3,1,14,168,238,80,254,3,2,23,3,31,2,190,255,234,23,242]},{"1848492":[185,4,81,175,253,254,252,254,7,248,77,177,235,253,241,255,16,254]},{"1848511":[251,128,255]},{"1848515":[255,53,253,175,183,71,240,213,192,192,128,135,135,128,254,128,64,118,140,54,193,88,163,64,106,42,127,80,63,129,128,191,128,245,56,255,47,236,80,213,170,170,213,208,239,127,255,127,255,252,131,214,41,204,191,85,63]},{"1848573":[127,64,56]},{"1848577":[255]},{"1848579":[255]},{"1848581":[95,255,255,255]},{"1848586":[85]},{"1848590":[85,85]},{"1848593":[159,2]},{"1848596":[160,95,101,239]},{"1848601":[134]},{"1848603":[255,170,255]},{"1848607":[255,96]},{"1848610":[253,2,95]},{"1848614":[245,128,121]},{"1848619":[170,170,85]},{"1848623":[255,255,255,253,255]},{"1848629":[255,111,154,121,255]},{"1848635":[255]},{"1848637":[255]},{"1848639":[170]},{"1848641":[255]},{"1848643":[255]},{"1848645":[255,239,255,250,4,68]},{"1848652":[170,42,85,85]},{"1848657":[95,42]},{"1848661":[255,67,255,4,251]},{"1848667":[255]},{"1848669":[255]},{"1848671":[255,160]},{"1848674":[213,42,255]},{"1848678":[83]},{"1848681":[5]},{"1848683":[187]},{"1848685":[127]},{"1848687":[255,255,255,213,255]},{"1848693":[255,239,188]},{"1848697":[255]},{"1848699":[255]},{"1848701":[213]},{"1848703":[170,224,191,96,255,112,255,254,255,154,60,24,28,164,160,89,91]},{"1848721":[87,41,210,96,223,54,206,60,203,28,243,24,231,12,243,249]},{"1848738":[246,105,255,48,63,57,24,117,24,239,24,239,4,255,14,255,36,223,96,159,246,201,24,231,24,231,24,71,4,170]},{"1848769":[255]},{"1848771":[255]},{"1848773":[255,248,255,170]},{"1848780":[186,186,21,183]},{"1848785":[85,59,128,20,235,136,248]},{"1848793":[255]},{"1848795":[255]},{"1848797":[255,162,255,255]},{"1848802":[196,59,235,20,143,7]},{"1848809":[85]},{"1848811":[255]},{"1848813":[255]},{"1848815":[93,170,255,68,255]},{"1848821":[255,248,119]},{"1848825":[255]},{"1848827":[255]},{"1848829":[85]},{"1848831":[234]},{"1848833":[255]},{"1848835":[255]},{"1848837":[255,20,255,170,2,69,69,171,175,87,125,5,80,255]},{"1848852":[111,144]},{"1848855":[20]},{"1848857":[255]},{"1848859":[255,4,255,42,253,250,5]},{"1848867":[255,144,111,235,235]},{"1848873":[87]},{"1848875":[255]},{"1848877":[251,2,213,170,255]},{"1848883":[255]},{"1848885":[255,20,255]},{"1848889":[253]},{"1848891":[186]},{"1848893":[84,2,170,26,253,77,190,6,223,3,253,173,45,87,215,191,255,84,255,93,24,190,13,251,6,17,7,3,252,128,255,64,255,171,255,186,69,76,178,38,221,233,254,2,125]},{"1848939":[127]},{"1848941":[191,1,84,186,231,76,243,34,221,1,254,2,209]},{"1848955":[169]},{"1848957":[64]},{"1848959":[171,191,64,85,128,42,64]},{"1848967":[224,127,127,158,255,234,245,101,250,64,51,128,47,192,63,95,170,128,127,161,127,85,181,186,218,140,64,80,170,128,85,21,224,128,127,1,222,21,234,2,101,140,255,80,255,128,127,31,234,128]},{"1849019":[225]},{"1849021":[245]},{"1849023":[250,208]},{"1849026":[2,2,191,159,33,33,254,219,213,170,172,64,64,232,47,47,84,254]},{"1849045":[255,80,175,1,219,42,170,83,83,255,255,255]},{"1849058":[85,170]},{"1849061":[223,80,175,139,116,42,213,64,188,168,64,208,255,1,253]},{"1849077":[96,80,174]},{"1849081":[139]},{"1849083":[42]},{"1849085":[83]},{"1849087":[191,4]},{"1849090":[3,6,255,255,127,126,164,164,64]},{"1849100":[1,1,22]},{"1849104":[130,133,4,3]},{"1849109":[255]},{"1849111":[254,81,245,186,186,212,213,232,232,250,1,252,2,46,209]},{"1849127":[255,174,81,5,234,42,68,23,190,122,253,248,253]},{"1849141":[46]},{"1849143":[128,10,245,5,186,42,213,1,232,1,255,143,127,243,63,213,221,124,127,170,163,80,112,168,252,254]},{"1849170":[112,128,12,240,42,223]},{"1849177":[59,4,165,6,54,83,255,255]},{"1849186":[122,5,60,3,45,210,171,87,81,11,169,96,4,4,1,255,10,255]},{"1849205":[255,32,15,128,108,80,166,137,86,80,171,255,95,122,250,253,255,7,39,5,240,59,193,5,209,254,128,160,160,128,5]},{"1849237":[2,168,136,5,240,58,192,6,208,127,128,95,10,160,90,2,255,112,143,245,250,251,196,213,250,126,1,255,85,32,255]},{"1849269":[253,80,175,5]},{"1849274":[59]},{"1849276":[5]},{"1849278":[126,128,171,171]},{"1849285":[170,160,245,93,93,234,74,66,64,133,132]},{"1849297":[84]},{"1849299":[255]},{"1849301":[255]},{"1849303":[95,10,8,180]},{"1849308":[182]},{"1849310":[125,4,171,170,5]},{"1849316":[170,170,85,245,93,162,235,21,73,189,130,122,171,85,5,255]},{"1849333":[85]},{"1849335":[170,85]},{"1849338":[234]},{"1849340":[64]},{"1849342":[132]},{"1849344":[231,239,71,103,17,57]},{"1849351":[6,13,4,4]},{"1849356":[175]},{"1849358":[87]},{"1849361":[16,32,152]},{"1849365":[108]},{"1849367":[174,9]},{"1849370":[5]},{"1849372":[175]},{"1849374":[81,6,63,224,39,64,41,186,6,87,245,242,250,251,80,123,168,191,63,208,7,248,1,84]},{"1849399":[168,5]},{"1849408":[21,255,221,194,93,255,138,127]},{"1849417":[255,224,127,224,31,240,95]},{"1849425":[255,32,192]},{"1849429":[255]},{"1849431":[255]},{"1849433":[255]},{"1849435":[159]},{"1849437":[255]},{"1849439":[175]},{"1849442":[31,95]},{"1849445":[5]},{"1849456":[125]},{"1849458":[223]},{"1849460":[93]},{"1849462":[127]},{"1849464":[255]},{"1849466":[127]},{"1849468":[31]},{"1849470":[95]},{"1849472":[127,254,67,172,251,250,175,255,21,255,43,255,5,255,170,255]},{"1849489":[254,19,19,4,250]},{"1849495":[255]},{"1849497":[255]},{"1849499":[255]},{"1849501":[255]},{"1849503":[255,1,9,239,253,1,187]},{"1849511":[11]},{"1849520":[127]},{"1849522":[255,2,251]},{"1849526":[175]},{"1849528":[189]},{"1849530":[107]},{"1849532":[175]},{"1849534":[234]},{"1849536":[254,169,240,128,161,244,253,246,123,253,255,241,115,231,199,207]},{"1849553":[168,255,255,11,171,1,244,2,249,14,251,24,251,48,247,87,255,127,127,85,255,10,203,5,111,10,191,28,111,56,127,255]},{"1849586":[255,128,255]},{"1849590":[255]},{"1849592":[127]},{"1849594":[255]},{"1849596":[127,16,255]},{"1849600":[129,131,197,139,159]},{"1849606":[85,56,254,171,85,86,251,250,85,85,101,229,100,139,191,63,66,80]},{"1849625":[170,168,84,4,250,170,85,38,230,139,239,63,191,109,125,85,255,3,87,1,251]},{"1849647":[69,231,25,239,16,191,64,125,128,255]},{"1849658":[87]},{"1849660":[251]},{"1849662":[85]},{"1849664":[215,172,70,253,128]},{"1849670":[10,175,168,221,64,171,170,183,81,11,87,215]},{"1849683":[253,255,255,90,90,2,138,20,20,64,162,164,1,123,248,255,253,255,255,165,245,117,255,235,255,29,191,90,91,255,7,255]},{"1849716":[255]},{"1849718":[255,10,255]},{"1849722":[255]},{"1849724":[191]},{"1849726":[91]},{"1849728":[232]},{"1849730":[162,80,95,93,191,209,20,111,42,191,128,85,16,238,255,255]},{"1849747":[80,162,253,191,191,148,148,106,106,42,42,1,1,255,255,242,80,253,255,110,110,123,251,149,213,213,255,254,255,255]},{"1849778":[242,13,255]},{"1849782":[255,145,255,4,255,42,255]},{"1849790":[255]},{"1849792":[20,22,3]},{"1849796":[171,217,254,10,117,152,169,64,85,139,138,39,234,254,42]},{"1849812":[33,217,247,250,107,97,183,163,77,69,186,170,255,189,132,172,216,249,252,251,241,251,227,247,198,206,173,189,254,67,40,215,249,6,251,4,251,4,247,8,207,49,191,66,182,30,98,128,80,42,239,175,237,5,247,162,95,224,255,162,105,63,127,128,128,42,80,80,250,250,253,253,95,95,255,255,63,55,64,157,126,174,255,255,255,239,95,87,191,191,93,93,30,233,157,98,250,5,255]},{"1849912":[255,16,255,168,255,64,255,162,170,234,149]},{"1849924":[32]},{"1849926":[255,255,95,95,255,191,253,21,255,175,21,255,255,42,5]},{"1849943":[127,160,191,64,77,234,234,80,80,255,255,42,64,48,21,255,255,255,255,255,255,255,255,255,255,234,21,64,191,37,218,255]},{"1849976":[255]},{"1849978":[255]},{"1849980":[255]},{"1849982":[255]},{"1849984":[128,168,85]},{"1849990":[125,125,255,255,255,255,255,255,255,255,86,254,255,170,85]},{"1850006":[130,255]},{"1850009":[255]},{"1850011":[151]},{"1850013":[183]},{"1850015":[35,255,255,175]},{"1850020":[40,125,255,255,255,255,255,255,255,255,255,255,168,87]},{"1850035":[255,85,170,125,130,255]},{"1850042":[255]},{"1850044":[255]},{"1850046":[255]},{"1850048":[10,1,241,10,24,18,8,58,249,180,159,226,247,155,23,101,9,4,91,4,255,30,255,193,111,235,69,149,12,167,154,111,254,245,255,10,2,251,247,205,178,158,170,248,211,251,221,61,4,249,174,241,251]},{"1850102":[28,227,237,2,215,26,175,96,247,104]},{"1850114":[160,10]},{"1850117":[10]},{"1850119":[138,77,1,103,34,255,136,251,234,20]},{"1850130":[95,160,255,85,250,112,242,242,216,216,118,254,21,85,235,254,85,10,85,170,255,117,191,178,191,152,137,136,238,68,21,235,85,255,170,85]},{"1850167":[255,77,179,103,186,255]},{"1850174":[251,174]},{"1850178":[20,171,1,32]},{"1850183":[255,160,87,4,171,106,85,187,174,127,21,239,16,254,223,255]},{"1850200":[87]},{"1850202":[251,80,149,128,68,64,149,234,68,171,222,32,255]},{"1850216":[255,8,255,80,255,128,255,64,106,149,64,255,32,223]},{"1850231":[255,160,95,4,251,106,213,187,238]},{"1850243":[255,87]},{"1850247":[64,2,98]},{"1850251":[253,160,95]},{"1850255":[255,255,127,245,10,168,255,66,2,232,2,253]},{"1850268":[95]},{"1850270":[255]},{"1850272":[127,128,10,245,168]},{"1850278":[255]},{"1850280":[119,136,255]},{"1850284":[255]},{"1850286":[255]},{"1850288":[128,127]},{"1850291":[255]},{"1850293":[255,189,255,157,119,2,255,160,95]},{"1850303":[255,120,56,112,255,191,80,58,122,170,218,53,69,255,255,212,255,191,239,243,68,64,190,245,159,80,170]},{"1850331":[53,96,255,75,212,183,24,60,251,49,112,181,106,175,112,207,96,239,16,127,160,56,199,112,143,33,223,48,197,37,223,138,255,96,143,64,63,85]},{"1850371":[187,255]},{"1850374":[170,170,171,171,87,87,175,255,179,255,170,251,255]},{"1850389":[255]},{"1850391":[170]},{"1850393":[171]},{"1850395":[87,80,175,76,179,174]},{"1850402":[68,187]},{"1850406":[85,170,254,1,253,2,255]},{"1850414":[255]},{"1850416":[4,255,68,187]},{"1850421":[255,85,85,84,254,168,253]},{"1850429":[255]},{"1850431":[255,85,21]},{"1850435":[170,174,4,171,169,191,191,125,95,171,255,85,213,170,255,255]},{"1850453":[255,2,169]},{"1850457":[191,34,95,84,171,170,255,170,21,85,170]},{"1850469":[85,87,168,239,16,255]},{"1850476":[255]},{"1850478":[213,42]},{"1850481":[234,85,170]},{"1850485":[251,86,87,64,239,160,255]},{"1850493":[255]},{"1850495":[255,85,84,1,33,186,138,255,85,255,255,81,255,186,186,85,215,170,255,119,139,1,254,170,85]},{"1850521":[255,174,251,69,255,170,255,170,85,85,168,1,206,254,1,254,1,255]},{"1850540":[186,69,215,40]},{"1850545":[171,87,170,1,116,170,254]},{"1850553":[254]},{"1850555":[255]},{"1850557":[255]},{"1850559":[255,181,53,64,32,95,95,221,146,43,63,20,191,74,31,96,250,192,181,148,171,96,223,138,178,212,63,75,63,53,223,255,159,74,245,84,107,32,159,90,101,222,225,223,224,63,192,26,101,202,10,20,107,32,64,8,250,64,62,64,191,32,223]},{"1850623":[255,87,87,4,6,251,251,240,63,170,221,64,191,170,117,16,170]},{"1850641":[87,64,191]},{"1850645":[255,143,63,85,221,191,191,85,117,239,239,168,87,64,191]},{"1850661":[255,143,112,221,34,191,64,117,138,170,81,168,168,64,191]},{"1850677":[4,128,143]},{"1850681":[221]},{"1850683":[191]},{"1850685":[117]},{"1850687":[239,255,255,65,107,170,191,10,255,152,119,2,255,34,221]},{"1850703":[255]},{"1850705":[255]},{"1850707":[255,21,255,245,255,103,119,253,255,221,221,255,255]},{"1850721":[255]},{"1850723":[255]},{"1850725":[234,245,10,103,152,253,2,221,34,255]},{"1850739":[255]},{"1850741":[85]},{"1850743":[245]},{"1850745":[103]},{"1850747":[253]},{"1850749":[221]},{"1850751":[255,242,243,84,253,174,254,244,254,3,255,1,255,42,247,1,255,15,241,6,249,83,252,9,254,253,254,254,255,247,247,255,255,12,246,2,255,1,175,1,247,252,3,252,1,212,42,254,1,12,3,2,253]},{"1850805":[86]},{"1850807":[10]},{"1850809":[253]},{"1850811":[255]},{"1850813":[213]},{"1850815":[254,239,250,87,253,162,255,1,255,202,191,198,253,11,191,221,119,21,250,2,255,93,255,126,255,255,63,191,125,63,191,223,183,5,234]},{"1850851":[255]},{"1850853":[162,84,129,116,138,27,196,116,139,10,245,5,21]},{"1850867":[255]},{"1850869":[221]},{"1850871":[254,64,245,2,251]},{"1850877":[244,8,234,173,250,255,85,32,255,41,215,175,255,117,223,191,255,215,127,87,250,170,255,223,255,255,215,255,255,255,223,255,255,255,127,7,168]},{"1850915":[255]},{"1850917":[32,124,1,80,175,170,85,64,191,168,87,5,87]},{"1850931":[255]},{"1850933":[223,40,254]},{"1850937":[80,32,170]},{"1850941":[64,128,168,136,255,234,127,34,255,221,119,255,255,93,255,255,255,87,255,119,255,149,255,255,255,255,127,255,255,255,255,255,255,255,255,119,136]},{"1850979":[234,8,34,130,85]},{"1850985":[255,160,95]},{"1850989":[255]},{"1850991":[255]},{"1850993":[119]},{"1850995":[255]},{"1850997":[221,128,170]},{"1851003":[162]},{"1851007":[168,170,127]},{"1851011":[255,179,255,121,255,164,167,72,235,145,145,224,224,79,127,231,255,251,255,253,255,247,247,251,251,213,213,232,232,69,186,1,24]},{"1851045":[183,128,123,2,174,1,239]},{"1851053":[187]},{"1851055":[247]},{"1851057":[117]},{"1851059":[239]},{"1851061":[72]},{"1851063":[132]},{"1851065":[89]},{"1851067":[182]},{"1851069":[110]},{"1851071":[31,64,64,93,255,248,248,2,3,17,63,10,27,5,221,10,255,255,255,255,255,253,253,239,238,126,81,191,170,250,197,253,235]},{"1851105":[64,2,93,2,248,2,17,16,174,14,213,226,250,104,244]},{"1851121":[191]},{"1851123":[162]},{"1851125":[5]},{"1851127":[254]},{"1851129":[209]},{"1851131":[110]},{"1851133":[39,1,138,181,7,240,240,5,47,168,255,64,255,160,191]},{"1851149":[255,129,62,66,71,254,254,122,85,87,175,191,95,95,191,252,124,255,62,184,176]},{"1851171":[241]},{"1851173":[170]},{"1851175":[80]},{"1851177":[160,64,64,3,128,65,192,10,69]},{"1851187":[15]},{"1851189":[213,7,168,31,64,31,224,124,3,190,192,2,253,10,95,2,253,30,224,170,80,95,160,191,96,93,161,255,252,245,171,255,61,255,224,165]},{"1851226":[218,128,128,32,75,1,2,1]},{"1851235":[84,2,192,30,1,250,5,127]},{"1851244":[255]},{"1851246":[252,2,254]},{"1851250":[1,170,61]},{"1851254":[234]},{"1851257":[90,138,37]},{"1851261":[95,9,180,240,64,134,152,200,48,149,137,187,55,93,91,255,159,127,126,63,64,63,184,255]},{"1851286":[251,9,113,51,252,89,190,159,255,126,176,143,70,1,200,55,148,98,142,64,7,164,97,32]},{"1851311":[129,16,64,26,160,64]},{"1851318":[9,132,49,140,88,2,158,64,126]},{"1851328":[191,16,164,4,191,148,255,232,255,68,254,177,252,67,122,45,255,16,255,4,255,148,255,232,255,68,255,176,127,64,191,40]},{"1851361":[66,160,91]},{"1851365":[67]},{"1851367":[23]},{"1851369":[191,1,94,131,60,69,154,16]},{"1851378":[164]},{"1851380":[148]},{"1851382":[232]},{"1851384":[64,4,160,16,64,128,32,72,248]},{"1851394":[127,42,253,2,229,17,18,239,140,87,51,239,41,215,239,16,255,42,255]},{"1851414":[186,68,237,16,242,9,192,28,192,62,7,248]},{"1851427":[149,2,253,95,160,255]},{"1851434":[127,128,255]},{"1851438":[255]},{"1851442":[42]},{"1851446":[68]},{"1851448":[16]},{"1851450":[9]},{"1851452":[28]},{"1851454":[62]},{"1851456":[240,239,43,255,5,255,255,175,238,255,235,92,251,213,252,61]},{"1851473":[31]},{"1851475":[255]},{"1851477":[255]},{"1851479":[80,128,17]},{"1851483":[183,128,46]},{"1851487":[195]},{"1851491":[11]},{"1851504":[239]},{"1851506":[43]},{"1851508":[239]},{"1851510":[175]},{"1851512":[127]},{"1851514":[92]},{"1851516":[85]},{"1851518":[60]},{"1851520":[1,255,212,223,91,252,5,243,9,235,138,255,48,255,106,255]},{"1851537":[255,32,212,3,251,12,117,20,235]},{"1851547":[79]},{"1851549":[191]},{"1851551":[127]},{"1851554":[11,223,7,94,6,7]},{"1851561":[8,48,56,64,112,128,192,235]},{"1851570":[223]},{"1851572":[95,1,215]},{"1851576":[201]},{"1851578":[186]},{"1851580":[122]},{"1851582":[254]},{"1851584":[149,191,2,61,170,175,174,255,85,255,170,255,85,255,174,255,64,223,194,194,80,170]},{"1851607":[255]},{"1851609":[255]},{"1851611":[255]},{"1851613":[255]},{"1851615":[255,96,245,255,253,5,175]},{"1851623":[6]},{"1851625":[1]},{"1851627":[40]},{"1851629":[5]},{"1851631":[12,245]},{"1851634":[255,2,175]},{"1851638":[174]},{"1851640":[85]},{"1851642":[170]},{"1851644":[85]},{"1851646":[174]},{"1851648":[127,255,254]},{"1851652":[160,255,247,247,85,255,221,221,85,255,175,255]},{"1851665":[255,255,255]},{"1851669":[160,8,247]},{"1851673":[255,34,221]},{"1851677":[255]},{"1851679":[255]},{"1851681":[127,255,89,95,255]},{"1851687":[119]},{"1851689":[68]},{"1851691":[221]},{"1851693":[1]},{"1851695":[165,127]},{"1851698":[255,166,255]},{"1851702":[247]},{"1851704":[85]},{"1851706":[221]},{"1851708":[85]},{"1851710":[175]},{"1851712":[238,186,235,2,71,184,85,85,118,254,85,85,219,251,117,117,1,170,253,246,71,71,170,85,1,254,170,85,4,251,138,117,84,254,246,255,255,255]},{"1851751":[85]},{"1851753":[38]},{"1851755":[85]},{"1851757":[219]},{"1851759":[117,254]},{"1851762":[255]},{"1851764":[255]},{"1851766":[85]},{"1851768":[118]},{"1851770":[85]},{"1851772":[219]},{"1851774":[117]},{"1851776":[170,221,252,170,245,2,86,1,233,160,67,80,134,162,13,69]},{"1851793":[136,84,170,253,254,175,4,29,169,170,66,69,134,138,5,119,255,170,254,255,254,84,85,73,236,19,27,36,38,64,76,255]},{"1851826":[254,1,254,1,85,2,237,3,91,4,166,24,77,48,80,135,235,20,69,64,128,47,168,128,64]},{"1851852":[170,168,85,84,120,152,192,20,191,122,208,144,87,130,191,5,85,173,170,84,215,191,255,20,122,255,175,191,40,170,64,69,2,167,1,17,191,64,63,192,255]},{"1851894":[191]},{"1851896":[170]},{"1851898":[69]},{"1851900":[175]},{"1851902":[85]},{"1851904":[87,168,245]},{"1851908":[255,69]},{"1851911":[255]},{"1851913":[23]},{"1851915":[43]},{"1851917":[5]},{"1851919":[10,87,87]},{"1851924":[186,69]},{"1851928":[232,104,212,64,250,2,245,1,255,255,245]},{"1851940":[69,255,255,255,23,127,43,107,5,7,10,11,255]},{"1851954":[245,10,255]},{"1851958":[255]},{"1851960":[127]},{"1851962":[107]},{"1851964":[7]},{"1851966":[11]},{"1851968":[255,1,132,42,191,18,175,248]},{"1851977":[255,34,255]},{"1851981":[95]},{"1851983":[175,254,254,42]},{"1851988":[232,82,175,175]},{"1851994":[34,34,160,32,80,16,255,255,174]},{"1852004":[87,250,87,87,255,254,221,221,95,123,175,181,255]},{"1852018":[132,123,191,64,255,168,255]},{"1852026":[255,34,127]},{"1852030":[191]},{"1852032":[254,87,11,180,241,15,254,15,108,145,8,240,12,245,31,226,169,166,180,14,6,2,242,243,108,111,14,11,13,3,23,26,246,255,135,54,249,7,253,254,249,234,252,73,245,239,244,87,255]},{"1852082":[54,200,244]},{"1852086":[255,1,253,1,252]},{"1852092":[253]},{"1852094":[247,8,176,13,206,176,27,65,63,110,255,87,111,191,247,13,159,235,95,104,204,53,157,243,81,192,170,42,68,68,242,242,21,21,249,126,210,229,207,190,46,255,255,253,255,107,255,247,255,158,30,1,252,248,79,64,191,128,253]},{"1852154":[123]},{"1852156":[255]},{"1852158":[254]},{"1852160":[255,42,199,32,5,191,255,239,255,213,221,221,255,247,255,255,85,127,24,71,250,133,16]},{"1852184":[170,128]},{"1852187":[34,170,162,16,16,170,42,248,224,69,186,229,255,213,127,221,221,247,93,255,239,255]},{"1852210":[88,167,122,5,245,10,127]},{"1852218":[221,34,93]},{"1852222":[239]},{"1852224":[207,129,250,39,93,253,255,218,255,98,119,51,251,81,85,84,112,240,5,250,162,93,37,37,157,21,68,136,170,4,1,170,191,176]},{"1852259":[39,93,162,90,208,98,234,17,119,81,251,84,85,207,49,5,216,162,93,127,138,255]},{"1852282":[85,170,251,4,85,170,170,85,187,212,251,255,254,171,255,137,255,107,255,95,127,107,87,2,68,187,4,251,84,84,118,119,148,149,160,1,20,133,253]},{"1852323":[212,255]},{"1852326":[169,2,137,136,65,106,10,255,64,123,170,85,68,43]},{"1852341":[255,252,170,254,1,212,43,170,84,84,170,145,95,31,119,63,95,53,255,31,53,95,171,127,85,123,106,38,145,128,31,128,63,10,32,202,10,52,84,170,106,145,85,127,64,224,119,223,64,234,213,224,21,160,139,128,85,192,42,32,215,128,104,128,127]},{"1852407":[255,202,21,20,235,170,21,145,110,125,255,255,183,255,255,85,255,253,85,223,187,247,93,255,239,130,125]},{"1852435":[255]},{"1852437":[255,170]},{"1852440":[168,168,100,68,162,170,16,16,255]},{"1852451":[183,186,69,170,85,2,85,32,155,8,93]},{"1852463":[239]},{"1852465":[255]},{"1852467":[72]},{"1852469":[186]},{"1852471":[255,170,85,68,187,162,85,16,239,252,254,255,95,255,238,68,228,85,85,187,187,213,213,255,255,3,253]},{"1852499":[255]},{"1852501":[238,170,10]},{"1852512":[254,1]},{"1852515":[95,170,85,177,78,170,85,68,187,42,213]},{"1852527":[255]},{"1852529":[255]},{"1852531":[160]},{"1852533":[170,17,238,170,85,68,187,42,213]},{"1852543":[255,102,102,253,255,251,172,4,4,85,85,185,185,85,85,238,238,17,119,2,255,4,172,170,170]},{"1852570":[2,2]},{"1852576":[238,17]},{"1852579":[253,172,83,81,174,170,85,68,187,170,85,17,238,136,119]},{"1852595":[2]},{"1852597":[172,81,174,170,85,68,187,170,85,17,238,158,122,61,255,202,117,80,112,112,112,80,48,89,25,182,190,1,123,162,223,53,117,142,254,5,117,138,186,36,29,8,62,10,245]},{"1852643":[125,5,234,1,250,138,117,5,250,170,84,73,176]},{"1852657":[107]},{"1852659":[226]},{"1852661":[85,1,238,138,53,5,186,162,29,65,190,136,133,85,255,170,85,4]},{"1852686":[4]},{"1852688":[119,247,170,255,85,85,251,251,85,85,187,187,85,85,170,170,133,88]},{"1852707":[85,85,170]},{"1852711":[174,170,16,68,170,170,84,85,174]},{"1852721":[247]},{"1852723":[170]},{"1852725":[85]},{"1852727":[251,170,85,68,187,170,85,81,170,138,87,64,255,170,85]},{"1852743":[10]},{"1852750":[64]},{"1852752":[119,119,191,255,85,85,255,255,95,95,255,255,95,95,191,191,85,138,4,64,85,170,10,128,160]},{"1852779":[32,160,64,64,200]},{"1852785":[117]},{"1852787":[191]},{"1852789":[85]},{"1852791":[255,160,95]},{"1852795":[255,160,95]},{"1852799":[191,170,127]},{"1852803":[255,170,127,5,175,3,3]},{"1852812":[1,1]},{"1852816":[127,127,255,255,127,127,255,255,255,255,255,255,255,255,255,255,85,170]},{"1852836":[16,170,170,5]},{"1852841":[3]},{"1852845":[1]},{"1852849":[85]},{"1852851":[255]},{"1852853":[85]},{"1852855":[250]},{"1852857":[252]},{"1852859":[255]},{"1852861":[254]},{"1852863":[255,239,255]},{"1852867":[223,146,255,86,254,115,127,200,222,103,111]},{"1852879":[14,159,159,143,223,207,239,239,239,231,255,243,247,243,251,251,255]},{"1852897":[239,32,80]},{"1852901":[178,128,86]},{"1852905":[123,2,204]},{"1852909":[111]},{"1852911":[4]},{"1852913":[16]},{"1852915":[175]},{"1852917":[77]},{"1852919":[169]},{"1852921":[148]},{"1852923":[51]},{"1852925":[144]},{"1852927":[251,255,255,130,56,171,171,247,255,248,248,248,248,72,64,1]},{"1852944":[255,255,255,255,255,255,255,255,253,253,250,250,246,246,254,254]},{"1852961":[255]},{"1852963":[69]},{"1852965":[255]},{"1852967":[255]},{"1852969":[250,5,248,10,73,1,1]},{"1852979":[186]},{"1852983":[8]},{"1852985":[7]},{"1852987":[2]},{"1852989":[181]},{"1852991":[254,181,181,167,21,255,255,64,64,16,16]},{"1853005":[2,66,23,245,245,255,255,255,255,234,234,16,16,170,170,110,68,191,170]},{"1853025":[191,16,93]},{"1853029":[255,4,81,128,127]},{"1853035":[85,40,187,66,85]},{"1853041":[74]},{"1853043":[162]},{"1853047":[187]},{"1853049":[111]},{"1853051":[255]},{"1853053":[253]},{"1853055":[170]},{"1853058":[93,255,244,244,10,30]},{"1853065":[41,42,58,64,226,170,235,24,24,255,255,244,244,157,138,175]},{"1853082":[125,42,255,64,213,171,8,231,162,255]},{"1853093":[255,9,117,134,255,109,213,93,191,148,84]},{"1853105":[247]},{"1853109":[11]},{"1853111":[235]},{"1853113":[214]},{"1853115":[239]},{"1853117":[93,1,190,112,123,200,248,28,28,172,173]},{"1853129":[168,130,186]},{"1853133":[238,128,118,255,113,249,248,63,60,223,173,249]},{"1853146":[126,186,254,236,249,112,132,254,53,251,35,223,210,94,81,255,68,71,17,18,15,137,1,132]},{"1853171":[3]},{"1853173":[195,1,242]},{"1853177":[87,56,197,236,16,240,143,10,245,8,14,2,161,21,107,175,82,85,174,47,80,23,56,90,80,119,14,255,1,244,97,164,2,208,132,228,192,96,48,175]},{"1853218":[113,241,94,252,159,128,255]},{"1853226":[127]},{"1853228":[191]},{"1853230":[223,64,80,165,6,249,1,92,96,138]},{"1853241":[89,128,43,64,27,32,79,255,65,21,138,191,108,87,135,255,21,255,43,255,85,127,63,1,65,244,128,128,44,47,7,31,21,47,43,95,85,191,63,254]},{"1853282":[127,96,255]},{"1853286":[208,40,234,10,212,4,170,10,64,128,1,190,128,107]},{"1853301":[83,7,208,21,224,43,208,85,160,63,64,255,124,255,27,255,23,255,251,255,214,255,238,253,234,254,253,255,124,31,27,63,23,255,251,255,214,255,238,255,232,255,252,128,139,228,4,232,42]},{"1853351":[21]},{"1853353":[175]},{"1853355":[85,2,61,1,22,116,8,27,224,21,194,234,17,80,134,170,68,192,40,232,20,240,95,255,170,254,79,239,190,77,242,176,207,80,239,144,239,255,80,239,170,255,78,255,174,243,76,239,144,236,83,238,145,47,160,80,69,1,186,16,237,191,65,95,160,191,64,127,128,80]},{"1853426":[170,16,68,10,2,172,12,64,16,128,19,64,17,128,7,255,178,237,36,223,138,126]},{"1853449":[244,224,218,64,248,4,252,192,56,236,179,192,59]},{"1853463":[245,192,63,192,255,112,207,184,67,255]},{"1853474":[95,160,255]},{"1853478":[255]},{"1853480":[255]},{"1853482":[63,192,191,64,255]},{"1853488":[56]},{"1853490":[19,160,59]},{"1853494":[244]},{"1853496":[52]},{"1853498":[58,192,136,64,64]},{"1853504":[120,222,244,221,236,159,181,245,72,255,63,209,127,177,255,253,129,38,66,37]},{"1853525":[127,10,245]},{"1853529":[247]},{"1853531":[238,32,206]},{"1853535":[2]},{"1853539":[4]},{"1853541":[12]},{"1853543":[53]},{"1853545":[64]},{"1853552":[92]},{"1853554":[156]},{"1853556":[159]},{"1853558":[181]},{"1853560":[222]},{"1853562":[17]},{"1853564":[145]},{"1853566":[253]},{"1853568":[1,255]},{"1853571":[255]},{"1853573":[255,16,31,5,255,192,255,64,127,16,223]},{"1853585":[255]},{"1853587":[255]},{"1853589":[255,224,16]},{"1853593":[255]},{"1853595":[29]},{"1853597":[191]},{"1853599":[103]},{"1853606":[15,31]},{"1853609":[1]},{"1853616":[127]},{"1853618":[244]},{"1853620":[248]},{"1853622":[31]},{"1853624":[133]},{"1853626":[255]},{"1853628":[127]},{"1853630":[223]},{"1853632":[21,255,170,255,85,255,175,80,118,254,34,255]},{"1853645":[255,10,255]},{"1853649":[255]},{"1853651":[255]},{"1853653":[255,175,175,1,254]},{"1853659":[255]},{"1853661":[255]},{"1853663":[255]},{"1853665":[16]},{"1853667":[42]},{"1853669":[5,255,222]},{"1853673":[118]},{"1853680":[149]},{"1853682":[170]},{"1853684":[85]},{"1853686":[255,33,118]},{"1853690":[34]},{"1853692":[160]},{"1853694":[10]},{"1853696":[21,255,185,253,89,251,234]},{"1853704":[170,170,170,255,84,255,170,255]},{"1853713":[255,2,253,4,251,255,245,85,170]},{"1853723":[255]},{"1853725":[255]},{"1853727":[255]},{"1853729":[20]},{"1853731":[185]},{"1853733":[89,245,223]},{"1853737":[170]},{"1853739":[32]},{"1853741":[84]},{"1853744":[21]},{"1853746":[185]},{"1853748":[89]},{"1853750":[255,32,170]},{"1853754":[170]},{"1853756":[84]},{"1853758":[170]},{"1853760":[85,255,156,220,139,170,191,136,173,170,175,241,78,243,154,235]},{"1853777":[255,35,220,85,170,116,200,85,170,10,249,12,227,20,203]},{"1853793":[68]},{"1853795":[148]},{"1853797":[139,203,252,2,175,12,171,16,94,40,184,85]},{"1853810":[156]},{"1853812":[139]},{"1853814":[255]},{"1853816":[175]},{"1853818":[175]},{"1853820":[94]},{"1853822":[186]},{"1853824":[222,142,181,21,106,42,254,33,170,185,170,255,68,255,170,255,17,158,42,21,85,42,84,33,68,168]},{"1853851":[255]},{"1853853":[255]},{"1853855":[255,80,158,128,36]},{"1853861":[106,171,117,19,187]},{"1853872":[222,32,181,64,106,128,255]},{"1853880":[187]},{"1853882":[170]},{"1853884":[68]},{"1853886":[170]},{"1853888":[238,238,85,85,170,162,174,81]},{"1853897":[81,137,221,68,255,170,255,17,238,170,85,85,163]},{"1853911":[81,174]},{"1853914":[34,221]},{"1853917":[255]},{"1853919":[255]},{"1853921":[170]},{"1853923":[64,8,171,255,81,81,81]},{"1853936":[238]},{"1853938":[85]},{"1853940":[171]},{"1853942":[255]},{"1853944":[81]},{"1853946":[137]},{"1853948":[68]},{"1853950":[170]},{"1853952":[168,128,84]},{"1853957":[17,251]},{"1853961":[127,145,213,85,255,34,119,87,135,171]},{"1853972":[238]},{"1853976":[128]},{"1853978":[42,213]},{"1853981":[255,136,119,40,175,84,84,17,17,251]},{"1853992":[127,127]},{"1853997":[16]},{"1854000":[175]},{"1854002":[84]},{"1854004":[17]},{"1854006":[251,4,127]},{"1854010":[145]},{"1854012":[85]},{"1854014":[34]},{"1854017":[5]},{"1854019":[34]},{"1854021":[31,199,8,21,239,84,84,42,170,85,84,250,18,221,17,224,64,8]},{"1854040":[21,21,171,84,85,170,43,85,5,22,34,17,31,91,207]},{"1854056":[255,250]},{"1854061":[2,129,129,23]},{"1854066":[51]},{"1854068":[95]},{"1854070":[199,56,250]},{"1854074":[84]},{"1854076":[42]},{"1854078":[85]},{"1854080":[23,104,40,215,53,218,24,247,143,112,176,66,136,80,32,192,139,143,52,56,29,25,176,56,191,174,221,160,71,65,255]},{"1854112":[117,237,251,125,235,223,231,48,238,191,130,208,216,73]},{"1854127":[224,247]},{"1854130":[255]},{"1854132":[255]},{"1854134":[48,136,191]},{"1854138":[210,32,217,32,224]},{"1854144":[5,251,2,255,67,189]},{"1854151":[63,255,81]},{"1854155":[175]},{"1854157":[85]},{"1854160":[4,4]},{"1854164":[66,66,200]},{"1854168":[238,234,80,16,170]},{"1854174":[119]},{"1854176":[255,173,255,66,255,227,63,192,251,191,175,16,85]},{"1854190":[136,136,255]},{"1854194":[255]},{"1854196":[255]},{"1854198":[192,8,191]},{"1854202":[191]},{"1854204":[85]},{"1854208":[63,215,187,255,255,125]},{"1854215":[191,255,24]},{"1854219":[255]},{"1854221":[127]},{"1854223":[111,42,42,16,16,170,170,64]},{"1854232":[239,136]},{"1854236":[128]},{"1854238":[16]},{"1854240":[255,189,255,171,255,215,191,64,152,247,255]},{"1854252":[127]},{"1854254":[239,128,253]},{"1854258":[239]},{"1854260":[215]},{"1854262":[64]},{"1854264":[247]},{"1854266":[255]},{"1854268":[127]},{"1854270":[111]},{"1854272":[254,244,213,209,250,242,139,255,238,129,97,253]},{"1854285":[255]},{"1854287":[255,170,161,68,106,170,167]},{"1854295":[139,238,145,65,67]},{"1854304":[244,94,209,149,242,88,255]},{"1854312":[129,111,255,32,255]},{"1854318":[255]},{"1854320":[94,1,149,42,88,5]},{"1854327":[139,110,16,190,2,255]},{"1854334":[255]},{"1854336":[235,64,85,2,169,2,63,255,173,83,215,209,127,251,246,243,170,23,86,169,168,85,128,63,174,85,84,121,124,127,116,126,64,232,2,84,2,168,252,3,80,251,217,134,251]},{"1854382":[251]},{"1854384":[234,21,84,171,168,85]},{"1854391":[188,174]},{"1854394":[140,41,132,3,140,10,191,85,242,167,106,209,255,255,41,86,213,85,186,59,85,85,42,128,80,205,170,21]},{"1854423":[255,41,119,213,255,170,111,85,255,64,63,5,183,17,251,127,128,214,94,85]},{"1854444":[59,129,85]},{"1854448":[42,149,80,42,170,68]},{"1854455":[127,169]},{"1854458":[128,42,144,68]},{"1854463":[170,221,119,170,255,32,159,255,117,241,14,68,84,170,186,81,81,136,42]},{"1854483":[85,32,223]},{"1854487":[117,241,255,68,254,170,255,81,251,34,247,85,255,159,191,117,138,14,14,84,17,186,16,81,4,136,85]},{"1854515":[170,32,64]},{"1854519":[117,241]},{"1854523":[170]},{"1854525":[69]},{"1854527":[170,85,255,170,255,69,255,223,17,16,234]},{"1854539":[1,170,171]},{"1854545":[170]},{"1854547":[85]},{"1854549":[186,32,49,16,250]},{"1854555":[171,170,255]},{"1854559":[170,170,255,85,255,186,255,17,206,239,234,1,85,171,1]},{"1854575":[85]},{"1854577":[85]},{"1854579":[170]},{"1854581":[69]},{"1854583":[49,21]},{"1854587":[170]},{"1854589":[84]},{"1854591":[170,85,255,170,255,84,254,255]},{"1854601":[170]},{"1854603":[157]},{"1854605":[85]},{"1854609":[170]},{"1854611":[85]},{"1854613":[170]},{"1854617":[170]},{"1854619":[191]},{"1854621":[85]},{"1854623":[170,170,255,85,255,171,254]},{"1854631":[255,255,170,157,221,85,255]},{"1854639":[85]},{"1854641":[85]},{"1854643":[170,1,84]},{"1854648":[85]},{"1854651":[34]},{"1854655":[170,29,149,178,178,108,214,239,40,28,148,16,195,24,97,85,34,32,177,8,56,16,146,16,56]},{"1854681":[148,9,203,5,101,73,170,194,188,69,186,131,238]},{"1854695":[255,231,152,230,218,96,250,99,62,66,21,69,130,1,84]},{"1854712":[99,4,37]},{"1854716":[1,4,65,128,17,144,168,168,69,69,247,73,1]},{"1854731":[245]},{"1854733":[255,16,239]},{"1854737":[144,2,170]},{"1854741":[69,73,73]},{"1854746":[36,245,129,255,17,239,239,129,85,2,186]},{"1854759":[247,255,1,219,209,126,126,254,238,110,16,85,170,186,69]},{"1854775":[8,254]},{"1854778":[46]},{"1854780":[129]},{"1854782":[17]},{"1854784":[70]},{"1854786":[21]},{"1854788":[26]},{"1854790":[85,138,6]},{"1854794":[162,231]},{"1854797":[254]},{"1854799":[255,17,17,170,170,69,69,170,170,81,81,5,231,150,254,174,255,238,70,85,191,186,26]},{"1854823":[117,174,6,88,64,105,104,81,81,168,17,64,170,160,69]},{"1854839":[138,168,81,29,162,151]},{"1854846":[174]},{"1854848":[42]},{"1854850":[84]},{"1854852":[170]},{"1854854":[17,139,170]},{"1854858":[174,170,4,174,8,95,85,85,171,171,85,85,239,239,85,85]},{"1854875":[170,170,164,87,95,170,42,84,84,170,170]},{"1854887":[117,170,170,85,4,81,10,160]},{"1854896":[128,85]},{"1854899":[171]},{"1854901":[85]},{"1854903":[138]},{"1854905":[85,81,170,241,4,247,8,160,6,68,7,168,1,16,155,168]},{"1854922":[235,124,64,255,168,255,93,95,189,191,86,87,254,255,85,85,20,104,191,198,87,186,160,163,64,70,168,171]},{"1854951":[117,170,169,131,151]},{"1854957":[57]},{"1854959":[69]},{"1854961":[92]},{"1854963":[185]},{"1854965":[84]},{"1854967":[138]},{"1854969":[84]},{"1854971":[104,134,64,18,168,128,40,193,148,188,134,85,213,5]},{"1854986":[10,159,224,255,32,111,127,85,190,170,198,196,255,255,218,216,245,238,191,171,143,197,130,170,65,213,60,187]},{"1855015":[127,47,199]},{"1855019":[81]},{"1855021":[244,16,106]},{"1855025":[87]},{"1855027":[42]},{"1855029":[69]},{"1855031":[128]},{"1855033":[18,4,170,11]},{"1855038":[5,128]},{"1855041":[133,162,247,16,42,87,127,16,174,128,255]},{"1855053":[255]},{"1855055":[255,175]},{"1855058":[247,162,171]},{"1855062":[255,255,175]},{"1855066":[127,157,255,62,255,255,42,255,162,93,145,255,40,255,17,255]},{"1855083":[98]},{"1855085":[193]},{"1855089":[122]},{"1855091":[170]},{"1855093":[197]},{"1855097":[65,29,128,62]},{"1855102":[255]},{"1855105":[187,128,255,64,127,104,232]},{"1855113":[255,5,250,42,213,5,250,255,3,127,174,191,71,232,232,255,1,255,250,250,208,229,224,68,252]},{"1855139":[81,128,184,148,235]},{"1855145":[254,5]},{"1855148":[47]},{"1855150":[31]},{"1855152":[3,68,46,128,7,192]},{"1855159":[3,1]},{"1855162":[250]},{"1855164":[208,5,224,26,10,245,5,122,43,212]},{"1855175":[5,46,193,85,172,191,96,125,132,218,208,245,112,255,212,215,192,254,192,210,132,144,32,42,4,47]},{"1855202":[143,128,43]},{"1855206":[82,63,63,16,125,2,255]},{"1855214":[253,2,208,37,112,138,212]},{"1855223":[186,192,17,128,41]},{"1855229":[79,40,209,31,128,15,154,135,108,1,14,251,48,85,1,190,25,127,126,48]},{"1855250":[82,26,24,12,255,14,198,48,174,1,88,24,255,126,255,32,205,96,247,16,241,240,255,4,87,170,167,64,1,128]},{"1855281":[175,18,229,8,243,14,240]},{"1855289":[13]},{"1855291":[82,24,167,126]},{"1855296":[255,87,255,63,255,95,87,168,255,23,255,250,255,92,127,104,127,87,127,63,127,95,64]},{"1855320":[191,23,255,250,127,92,255,104,168,40,192,64,160,34,255]},{"1855336":[232,168]},{"1855339":[5,128,47,128,151,87,128,63,128,93,130]},{"1855351":[191,23,64,250]},{"1855356":[80,140,104,128,253,195,250,239,253,102,255,14,253,115,250,71,224,191,232,31,255,193,255,234,255,100,31,14,255,113,255,66,255,160,254,9,2,189,5,90,2,189,241,17,2,189,5,250,31,224,23,232,64,129,160,74,64,36,14,224,64,49]},{"1855419":[66]},{"1855421":[160,1,8]},{"1855425":[255,193,191]},{"1855429":[255,254,187,64,191,19,255,3,255,38,254,240,15,186,196,244,11,255,186,253,2,224,12,192,60,192,25,255]},{"1855458":[127,128,255]},{"1855462":[65,86,191,64,255]},{"1855468":[255]},{"1855470":[255]},{"1855472":[15]},{"1855474":[68,128,11]},{"1855478":[168,18,2]},{"1855482":[12]},{"1855484":[60]},{"1855486":[24]},{"1855489":[220,64,239,1,214,128,255]},{"1855497":[208,160,160]},{"1855502":[128,128,12,243,6,185]},{"1855509":[255,251,132]},{"1855513":[255]},{"1855515":[95]},{"1855517":[255]},{"1855519":[127,255]},{"1855522":[255]},{"1855524":[255]},{"1855526":[127,128,255]},{"1855530":[255]},{"1855532":[255]},{"1855534":[255]},{"1855536":[208]},{"1855538":[169]},{"1855540":[215]},{"1855542":[4,128,208]},{"1855552":[127,169,255,222,95,235,255,246,127,250,255,254,95,251,248,215,168,86,212,33,226,20,80,9,248,5,212,1,250,4]},{"1855583":[47]},{"1855600":[1]},{"1855602":[10]},{"1855604":[9]},{"1855606":[166]},{"1855608":[2]},{"1855610":[42]},{"1855612":[1]},{"1855614":[212]},{"1855616":[240,255,224,235,240,179,240,31,250,159,253,107,224,255,165,245]},{"1855633":[15]},{"1855635":[31]},{"1855637":[79]},{"1855639":[231,128,100]},{"1855643":[150]},{"1855645":[31,10,245]},{"1855663":[165,255]},{"1855666":[233]},{"1855668":[179]},{"1855670":[31]},{"1855672":[31]},{"1855674":[107]},{"1855676":[255]},{"1855678":[165]},{"1855680":[1,255,2,255]},{"1855685":[255]},{"1855687":[255]},{"1855689":[255]},{"1855691":[223]},{"1855693":[255]},{"1855695":[175]},{"1855697":[255]},{"1855699":[255]},{"1855701":[255]},{"1855703":[95]},{"1855705":[255]},{"1855707":[255]},{"1855709":[255,80]},{"1855726":[175,175,169]},{"1855730":[198]},{"1855732":[250]},{"1855734":[245]},{"1855736":[238]},{"1855738":[213]},{"1855740":[170]},{"1855742":[175]},{"1855744":[1,255,42,255,4,254,129,252,7,252,10,253,85,251,142,113]},{"1855761":[255]},{"1855763":[255,1,254,3,253,3,254,2,248,4,245,142,134]},{"1855782":[1]},{"1855784":[2,7,5,15,14,31,247,127,129]},{"1855794":[42]},{"1855796":[132]},{"1855798":[129,1,175]},{"1855802":[15]},{"1855804":[95]},{"1855806":[255,128,56,207,106,47,96,63,168,63,128,255,32,255]},{"1855821":[255,191,96,48,143,208,47,192,191,192,63]},{"1855833":[255]},{"1855835":[255]},{"1855837":[255,191,191,64,120,32,96,128,224]},{"1855847":[128]},{"1855849":[128]},{"1855854":[255,95,120]},{"1855858":[106]},{"1855860":[226]},{"1855862":[168]},{"1855864":[138]},{"1855866":[100]},{"1855870":[223,128]},{"1855873":[255,162,255]},{"1855877":[255]},{"1855879":[255]},{"1855881":[255]},{"1855883":[255]},{"1855885":[255,255]},{"1855889":[255]},{"1855891":[255]},{"1855893":[255]},{"1855895":[255]},{"1855897":[255]},{"1855899":[255]},{"1855901":[255,255,223]},{"1855918":[223,239,8]},{"1855922":[162]},{"1855924":[34]},{"1855928":[170]},{"1855930":[85]},{"1855934":[255,16,1,255,42,255]},{"1855941":[255]},{"1855943":[255]},{"1855945":[255]},{"1855947":[255]},{"1855949":[255,255]},{"1855953":[255]},{"1855955":[255]},{"1855957":[255]},{"1855959":[255]},{"1855961":[255]},{"1855963":[255]},{"1855965":[255,255,85]},{"1855982":[85,255,1]},{"1855986":[42]},{"1855988":[170]},{"1855990":[1]},{"1855992":[174]},{"1855994":[85]},{"1855998":[255]},{"1856000":[1,255,34,255]},{"1856005":[255,10,255,2,253,65,190]},{"1856013":[255,255]},{"1856017":[255]},{"1856019":[255]},{"1856021":[255]},{"1856023":[255]},{"1856025":[255]},{"1856027":[255]},{"1856029":[255,255,80]},{"1856046":[80,255,1]},{"1856050":[34]},{"1856054":[10]},{"1856056":[136]},{"1856062":[255]},{"1856064":[85,252,138,220,2,248,135,240,7,241,14,241,13,243,255]},{"1856080":[2,252,34,220,4,252,4,240,9,241,10,241,8,225,247]},{"1856096":[1]},{"1856099":[2,2,4,11,12,7]},{"1856106":[4,10,22,26,8,247,85]},{"1856114":[138,1,6,1,135]},{"1856120":[134]},{"1856122":[14]},{"1856124":[31]},{"1856126":[255]},{"1856128":[98,170,149,85,144,58]},{"1856135":[117]},{"1856137":[255,42,221]},{"1856141":[186,255]},{"1856144":[149,42,40,21,197,58,128,117]},{"1856153":[255]},{"1856155":[255,69,186,255]},{"1856160":[64,128,194,66]},{"1856165":[128,10,10]},{"1856171":[34]},{"1856175":[255,226]},{"1856178":[213]},{"1856180":[144]},{"1856186":[8]},{"1856190":[255]},{"1856192":[160,161,64,64]},{"1856197":[170,64,80]},{"1856201":[238,128,213,8,170,247,8,94,160,157,64,85,170,37,80,17,238]},{"1856219":[213,85,170,247,8,1]},{"1856226":[34,34]},{"1856230":[138,138]},{"1856234":[42,42]},{"1856238":[8,255,161]},{"1856242":[64]},{"1856246":[64]},{"1856250":[128]},{"1856252":[8]},{"1856254":[247]},{"1856257":[21]},{"1856259":[12,160,160]},{"1856265":[170]},{"1856267":[84]},{"1856270":[85,42,234]},{"1856274":[209,128,95,160,85]},{"1856280":[69,170,1,84,255]},{"1856286":[85,170,21]},{"1856290":[46,162]},{"1856294":[170,170,16,16,170,170]},{"1856302":[42,127,21]},{"1856306":[140]},{"1856308":[160]},{"1856318":[85,128]},{"1856321":[127]},{"1856323":[63]},{"1856325":[21]},{"1856327":[1]},{"1856329":[128]},{"1856334":[85,171,128]},{"1856338":[64]},{"1856340":[234]},{"1856342":[84]},{"1856344":[127,128,85]},{"1856348":[191]},{"1856350":[85,171,127]},{"1856354":[191,128,21]},{"1856358":[171,170]},{"1856362":[170,170,64,64,171,254,127]},{"1856370":[63]},{"1856372":[21]},{"1856374":[1]},{"1856382":[84]},{"1856384":[6,250,13,250,10,93,5,65,15,25,4,11,30,83,85,171,4,6,9,9,168,9,17,9,235,11,84,14,190,22,85,171,251]},{"1856418":[254]},{"1856420":[95,1,231,160,29]},{"1856426":[171,170,83,8,171,254,253,2,245]},{"1856436":[82]},{"1856438":[70,8,22]},{"1856442":[5]},{"1856444":[77]},{"1856446":[84]},{"1856448":[223,255,127,255,29,255]},{"1856455":[85]},{"1856457":[70]},{"1856460":[1,81,85,63,222,222,85,85,29,29]},{"1856472":[168]},{"1856474":[85]},{"1856476":[171,1,85,191,255]},{"1856482":[255]},{"1856484":[255]},{"1856486":[255,170,87,17,170,170,85,4,63,106,33]},{"1856498":[170]},{"1856500":[226]},{"1856502":[85]},{"1856504":[70]},{"1856508":[80]},{"1856510":[64,128,235,235,254,254,239,239,125,125,4,46,20,17,48,24]},{"1856527":[254,234,234,84,84,170,170,85,85,132,4,84,16,178,16]},{"1856543":[254,235,20,254,1,255,16,255,130,127,81,187,170,93,69,254,255,1]},{"1856562":[170]},{"1856564":[69]},{"1856566":[40]},{"1856568":[42]},{"1856570":[1]},{"1856572":[8]},{"1856576":[170,170,234,234,238,238,255,255,234,106,21,85,186,186]},{"1856591":[255,170,170,64,64,186,170,85,85,234,106,21,21,186,186]},{"1856607":[255,170,85,234,21,238,17,255]},{"1856616":[127,21,255,170,255,69,255,255]},{"1856626":[170]},{"1856628":[68]},{"1856630":[170]},{"1856634":[64]},{"1856640":[128,128,170,170,230,230,154,154,170,170,85,85,170,170]},{"1856655":[255,128,128]},{"1856660":[162,162,85,16,191,170,85,85,239,170]},{"1856671":[255,128,127,170,85,230,25,186,101,234,85,255,170,186,85,255,255]},{"1856690":[170]},{"1856692":[68]},{"1856694":[138]},{"1856704":[12,3,140,130,1,19,164,34,164,162,80,80,160,170]},{"1856719":[241]},{"1856721":[3]},{"1856723":[34,4,22,137,10,224,162,209,80,224,170]},{"1856735":[241,19,239,146,79,27,242,166,87,174,87,126,161,174,91,255,241,16]},{"1856754":[144,32,9,4,160,8,8]},{"1856762":[14]},{"1856764":[4]},{"1856766":[14]},{"1856768":[68,17,8,163,85]},{"1856774":[170]},{"1856776":[184,168,34,32,162,162]},{"1856783":[85,68,17,8,163,85]},{"1856790":[170]},{"1856792":[186,168,215]},{"1856796":[170,162,69,16,85,187,171,247,85,170,170,85,184,71,34,221,162,93,186,85,68]},{"1856818":[8]},{"1856820":[85]},{"1856822":[170]},{"1856824":[16]},{"1856826":[34]},{"1856830":[170]},{"1856833":[119,160,11,4,65,168,2,5]},{"1856842":[42]},{"1856847":[21,52,119,168,11,4,65,170,2,133]},{"1856858":[106]},{"1856862":[21]},{"1856864":[67,203,163,87,69,251,168,85,5,250,42,213]},{"1856877":[255,234,21,52]},{"1856882":[168]},{"1856884":[4]},{"1856886":[170]},{"1856888":[5]},{"1856890":[42]},{"1856894":[234]},{"1856897":[255]},{"1856899":[191,2,85,136,34,83]},{"1856906":[171]},{"1856908":[174]},{"1856910":[159]},{"1856912":[159,255,172,191,86,85,170,34,83]},{"1856922":[171]},{"1856924":[174]},{"1856928":[96,96,19,83,3,169,136,85,83,172,171,84,174,81,255,159,159]},{"1856946":[172]},{"1856948":[84]},{"1856950":[170]},{"1856952":[81]},{"1856954":[170]},{"1856956":[4]},{"1856958":[96]},{"1856961":[255]},{"1856963":[255,10,85,23,232,123]},{"1856970":[251]},{"1856972":[174,81,144,19,255,255,253,255,95,85,255,232,251]},{"1856986":[255]},{"1856988":[255,81,60,63]},{"1856994":[2,2,10,160,23]},{"1857000":[123,132,251,4,174]},{"1857006":[64,191,255]},{"1857010":[253]},{"1857012":[85]},{"1857014":[234]},{"1857016":[80]},{"1857018":[170]},{"1857020":[81]},{"1857025":[191,40,239,186,109,201,50,229,2,225,18,162,81,137,194,207,215,223,143,247,113,239,6,247,28,253,4,254,14,58,4]},{"1857057":[120,16,120,130,60,193,52,225,30,225,18,160,91,2,194,135]},{"1857074":[135]},{"1857076":[65]},{"1857078":[138]},{"1857082":[168]},{"1857084":[2]},{"1857086":[61]},{"1857088":[138,117,85,170,191,64,237,2,250,170,224,64,63,67,168,24,255,117,255,170,255,64,252]},{"1857112":[85,170,191,64,124,3,166,230,138]},{"1857122":[85]},{"1857124":[191]},{"1857126":[239,16,250,5,224,31,191,64,129,254,117]},{"1857138":[170]},{"1857140":[64]},{"1857142":[168,3,80]},{"1857146":[160]},{"1857152":[191,72,119,136,250,48,217,17,170,8,5,5,170,160,149,106,181,8,114]},{"1857172":[69,48,174,17,87,8,255,5,87,160,127,34,255]},{"1857186":[255]},{"1857188":[250,5,217,38,170,87]},{"1857195":[250,170,87,149,200]},{"1857201":[66,34,141]},{"1857205":[138,136,64]},{"1857209":[160,5]},{"1857213":[8,34]},{"1857216":[250,144,85,5,171,1,23,23,191,55,95,95,191,191,119,141,5,144,175,5,95,1,255,23,255,55,255,95,255,191,242,133,250,5,80,170,170,94]},{"1857255":[232,136,200]},{"1857259":[160]},{"1857261":[64,127]},{"1857265":[106,5,80,1,160,23]},{"1857272":[55]},{"1857274":[95]},{"1857276":[191]},{"1857278":[128,8,255,87,95,95,255,253,255,254,255,85,255,235,255,212,117,128,255,87,255,95,255,253,255,254,255,85,255,235,255,212,15]},{"1857312":[168,168]},{"1857315":[160]},{"1857317":[2]},{"1857319":[17]},{"1857321":[171]},{"1857323":[21]},{"1857325":[43,245,15,87]},{"1857330":[95]},{"1857332":[253]},{"1857334":[238,16,84,1,234,1,212]},{"1857343":[240,255,48,255,155,253,106,254,171,252,87,254,11,255,5,255,255,63,48,159,155,207,104,239,170,255,84,255,10,255,5,255,255,192,31,96,15,50,141,17,70,11,232,5,244,2,251]},{"1857392":[32,208,144,107,64,24,168,18,20,64,10]},{"1857404":[4,1,255]},{"1857408":[64,191,130,125,4,251,136,247,1,255,4,255,5,255,250,191,255]},{"1857426":[253,2,249,6,246,137,240,14,250,1,240,10,255,186,191,64,127,128,255]},{"1857446":[127,128,255]},{"1857450":[255]},{"1857452":[255]},{"1857454":[5,90]},{"1857458":[2]},{"1857460":[6]},{"1857462":[9,128,14]},{"1857466":[1]},{"1857468":[10]},{"1857470":[160,26,21,253,34,250,20,252,64,248]},{"1857481":[208,104,232,16,212,97,159]},{"1857489":[234,128,93]},{"1857493":[235]},{"1857495":[191]},{"1857497":[255]},{"1857499":[151]},{"1857501":[239,138,116,255]},{"1857506":[255]},{"1857508":[255]},{"1857510":[255]},{"1857512":[255]},{"1857514":[255]},{"1857516":[255]},{"1857518":[255]},{"1857520":[232]},{"1857522":[88]},{"1857524":[232]},{"1857526":[184]},{"1857528":[208]},{"1857530":[128]},{"1857532":[196]},{"1857534":[116]},{"1857536":[2,2]},{"1857540":[2,2,1,1,10,10,5,5,2,2,26,250,2,253]},{"1857555":[255,2,253,1,254,10,245,5,250,2,253,128,101,255]},{"1857570":[255]},{"1857572":[255]},{"1857574":[255]},{"1857576":[255]},{"1857578":[255]},{"1857580":[255]},{"1857582":[255]},{"1857598":[96]},{"1857600":[127,232,47,255,149,255,175,255,21,255,2,255,149,127,82,175,232,23,253]},{"1857620":[127]},{"1857622":[255]},{"1857624":[255]},{"1857626":[255]},{"1857628":[107]},{"1857630":[175]},{"1857650":[2]},{"1857665":[255,255,122,255,170,255,252,119,234,255,247,85,254,175,255]},{"1857681":[255,80,133,170,85,80,3,234,21,213,8,254,1,255]},{"1857712":[250]},{"1857714":[42]},{"1857718":[172]},{"1857722":[34]},{"1857728":[1,255,236,79,238,13,248,1,248,179,248,70,242,187,229,230]},{"1857745":[255]},{"1857747":[179]},{"1857749":[243]},{"1857751":[255,160,78,65,188,164,75,72,23]},{"1857761":[1]},{"1857768":[1,1,2,2]},{"1857773":[2]},{"1857775":[4,1]},{"1857778":[79]},{"1857780":[13]},{"1857784":[17]},{"1857786":[2]},{"1857788":[26]},{"1857790":[164]},{"1857792":[84,238,96,223,160,246,28,185,189,219,127,200,255]},{"1857806":[255,40,17,214,32,239]},{"1857813":[191,64,39]},{"1857817":[230]},{"1857819":[183]},{"1857821":[255]},{"1857823":[215,56,124,48,112,64,224,128,128]},{"1857833":[128]},{"1857840":[124]},{"1857842":[117]},{"1857844":[230]},{"1857846":[153]},{"1857848":[155]},{"1857850":[72]},{"1857854":[40]},{"1857856":[96,234]},{"1857859":[184,2,77,124,128,223,32,254]},{"1857868":[255]},{"1857870":[217,1,21,234]},{"1857875":[255]},{"1857877":[255]},{"1857879":[255]},{"1857881":[255]},{"1857883":[255]},{"1857885":[255,1,254]},{"1857889":[96]},{"1857904":[96]},{"1857906":[152]},{"1857908":[77]},{"1857910":[128]},{"1857912":[32]},{"1857920":[34,170]},{"1857923":[1]},{"1857925":[162,139,64,239,8,229]},{"1857932":[255,2,191,17,85,170]},{"1857939":[255]},{"1857941":[255]},{"1857943":[255,8,247]},{"1857947":[255,2,253,17,238]},{"1857953":[34]},{"1857968":[34]},{"1857970":[1]},{"1857972":[162]},{"1857974":[64]},{"1857985":[170,249]},{"1857988":[248]},{"1857990":[156]},{"1857992":[255,10,23,4,255,10,245,21,85,170]},{"1858003":[255]},{"1858005":[255]},{"1858007":[255,10,245,4,251,10,245,21,234]},{"1858048":[8,136,240,2,2]},{"1858054":[9]},{"1858056":[40,1,27,1,168,169,85,84,119,136]},{"1858067":[255]},{"1858069":[255]},{"1858071":[255]},{"1858073":[255]},{"1858075":[255,168,86,87,169]},{"1858081":[8]},{"1858092":[1,1,1,1,8]},{"1858106":[1]},{"1858108":[1]},{"1858110":[1]},{"1858112":[184,132,57,70,52,72,98,24,105,144,207]},{"1858124":[223,72,151,5,107,160,56,207,48,143,224,79,96,63,224,95,200,247,197,58,52,172,8,56,64,112,80,112,160,224,64,192,192,128]},{"1858159":[128,188]},{"1858162":[56]},{"1858164":[112]},{"1858166":[112]},{"1858168":[224]},{"1858170":[192]},{"1858172":[128]},{"1858174":[128]},{"1858178":[80,175,162,69,69,186,85]},{"1858186":[240,2,89]},{"1858190":[165]},{"1858192":[255]},{"1858195":[255]},{"1858197":[255]},{"1858199":[255]},{"1858201":[255]},{"1858203":[255]},{"1858205":[255]},{"1858207":[255]},{"1858230":[16]},{"1858242":[106,157,2,93,139,36,52,1,169,2,68]},{"1858254":[226,8,255]},{"1858259":[255]},{"1858261":[255]},{"1858263":[255]},{"1858265":[255]},{"1858267":[255]},{"1858269":[255,8,255]},{"1858275":[34]},{"1858279":[138]},{"1858283":[32]},{"1858290":[8]},{"1858305":[17,42,213,4,251,170,85,2,85,122,128,16,69,64,138,238]},{"1858323":[255]},{"1858325":[255]},{"1858327":[255]},{"1858329":[255,128,255,4,255,170,223,17]},{"1858339":[42]},{"1858341":[4]},{"1858343":[170]},{"1858347":[42]},{"1858350":[32]},{"1858352":[17]},{"1858369":[21,160,85,69,186,170,85,17,68,174,80,78,17,246,8,234]},{"1858387":[245]},{"1858389":[255]},{"1858391":[255]},{"1858393":[255]},{"1858395":[255,1,255,8,255,21]},{"1858402":[10,170]},{"1858405":[69]},{"1858407":[170]},{"1858409":[17]},{"1858411":[170]},{"1858413":[68]},{"1858415":[162,21]},{"1858432":[27,87,149,92,93,190,150,93,29,90,154,89,88,25,177,118,187,23,20,221,28,255,52,223,124,219,28,219,61,219,118,247,87,12,62,171,28,65,28,138,24,1,56,162,24,64,56,136,72]},{"1858496":[21,119,152]},{"1858500":[149,42,117]},{"1858504":[117,138,171,84,85,42,170,69,157,21,69,152,64,191,130,117]},{"1858521":[255,16,255]},{"1858525":[255,69,255,119]},{"1858530":[34,186]},{"1858533":[149,8,125]},{"1858537":[117]},{"1858539":[171]},{"1858541":[85]},{"1858543":[170,98]},{"1858560":[127,255,205]},{"1858564":[247]},{"1858566":[244]},{"1858568":[118,136,255]},{"1858572":[5,250,170,85,127,127,16,205,8,247,3,244,1,254]},{"1858587":[255,208,255,85,255,255]},{"1858594":[34,239]},{"1858597":[247,8,252]},{"1858601":[118]},{"1858603":[255]},{"1858605":[5]},{"1858607":[170,128]},{"1858624":[238,110,65]},{"1858628":[167]},{"1858630":[245]},{"1858632":[255]},{"1858634":[255]},{"1858636":[87,168,162,93,239,110,20,65,89,166]},{"1858647":[245]},{"1858649":[255]},{"1858651":[255,168,255,93,255,126,17,170,235]},{"1858661":[166,10,255]},{"1858665":[255]},{"1858667":[255]},{"1858669":[87]},{"1858671":[162]},{"1858688":[234,234,85]},{"1858692":[179]},{"1858694":[85]},{"1858696":[255]},{"1858698":[255]},{"1858700":[255]},{"1858702":[170,85,255,234,21,64,25,162]},{"1858711":[85,1,254]},{"1858715":[255]},{"1858717":[255,85,255,234,21,170,234,68,230,170,255]},{"1858729":[254]},{"1858731":[255]},{"1858733":[255]},{"1858735":[170]},{"1858752":[160,163,80,4,218,6,80,2,248]},{"1858762":[252,6,248]},{"1858766":[252]},{"1858768":[226,161,88,4,122,132,88,2,16,232,44,214,4,248,4,248,165,91,166,173,4,135,162,175]},{"1858793":[239,6,211]},{"1858797":[255]},{"1858799":[251,4]},{"1858802":[2]},{"1858816":[128,128,85,1,255,5,85]},{"1858824":[127]},{"1858826":[95]},{"1858828":[255]},{"1858830":[127]},{"1858832":[128,128,95,1,255,5,85]},{"1858840":[247,8,95]},{"1858844":[213,42,139,116,128,127,161,170,5]},{"1858854":[170,170]},{"1858857":[8,160,160]},{"1858861":[42]},{"1858863":[245]},{"1858882":[84,16,186,16,85,4,255]},{"1858890":[255]},{"1858892":[255]},{"1858894":[255]},{"1858898":[255,16,255,16,95,4,255]},{"1858906":[255]},{"1858908":[85,170,255]},{"1858913":[255,16,171,16,69,164,170]},{"1858925":[170]},{"1858927":[1]},{"1858944":[110,3,64,64,170,8,81]},{"1858952":[255]},{"1858954":[255]},{"1858956":[255]},{"1858958":[255]},{"1858960":[111]},{"1858962":[255,64,255,8,255]},{"1858968":[255]},{"1858970":[255]},{"1858972":[223,32,254,1,108,147,64,191,8,85]},{"1858983":[174]},{"1858989":[32]},{"1858991":[5]},{"1859008":[157,225]},{"1859012":[170]},{"1859014":[81]},{"1859016":[255]},{"1859018":[255,34,255]},{"1859022":[255]},{"1859024":[225,1,255]},{"1859028":[255]},{"1859030":[255]},{"1859032":[255]},{"1859034":[255,34,255]},{"1859038":[255]},{"1859040":[30,253]},{"1859043":[255]},{"1859045":[85]},{"1859047":[174]},{"1859053":[10]},{"1859055":[81]},{"1859066":[34]},{"1859072":[16,56,2,4,169]},{"1859078":[84]},{"1859080":[255,20,255,2,255]},{"1859086":[255]},{"1859088":[99,103,255,7,253,1,255,1,255,20,255,2,255]},{"1859102":[255]},{"1859104":[160,92]},{"1859107":[250,2,85]},{"1859111":[171,1]},{"1859117":[42]},{"1859119":[23,3]},{"1859122":[4]},{"1859128":[20]},{"1859130":[2]},{"1859136":[160,113,129,129,127,149,31,14,63,32,31,162,47,64,255,152,131,146,127,1,127,21,191,14,223,224,191,2,255]},{"1859166":[239,152,14,241]},{"1859171":[254,64,128,192,160,32,203,64,173,32,223,112,7]},{"1859186":[1]},{"1859188":[21]},{"1859190":[14]},{"1859194":[2]},{"1859198":[136]},{"1859200":[234,104,255,191,255,85,255,170,255]},{"1859210":[255,32,253,2,248,5,151,104,255,191,255,85,255,170,255]},{"1859226":[255,32,255]},{"1859230":[255]},{"1859232":[234,23]},{"1859237":[34]},{"1859239":[17]},{"1859241":[255]},{"1859243":[223,2,253,7,248]},{"1859250":[191]},{"1859252":[85]},{"1859254":[170]},{"1859258":[32]},{"1859264":[171,1,255,170,255,64,255,128,245,10,250,5,84,171,136,87,255,1,255,170,255,64,255,128,255]},{"1859290":[255]},{"1859292":[255]},{"1859294":[255]},{"1859296":[170,254]},{"1859299":[85]},{"1859301":[191]},{"1859303":[127,10,245,5,250,171,84,119,136,1]},{"1859314":[170]},{"1859316":[64]},{"1859318":[128]},{"1859328":[255,84,234,21,212,107,232,23]},{"1859337":[255]},{"1859339":[127,42,191,5,127,255,84,255]},{"1859348":[255,64,255]},{"1859352":[255]},{"1859354":[255]},{"1859356":[213]},{"1859358":[248,2,128,171,21,234,43,212,23,232,255]},{"1859370":[255]},{"1859372":[255]},{"1859374":[255]},{"1859376":[84]},{"1859381":[64]},{"1859390":[2]},{"1859392":[253,23]},{"1859395":[255]},{"1859397":[255,5,255,237,255,28,255,185,253,70,254,255,21,255]},{"1859412":[245,10,234,16,16,2,160,67,64,6,128,57,2,252,255]},{"1859428":[255]},{"1859430":[255]},{"1859432":[255]},{"1859434":[255]},{"1859436":[255]},{"1859438":[255]},{"1859440":[1,20]},{"1859444":[10]},{"1859446":[16]},{"1859448":[2]},{"1859450":[67]},{"1859452":[4]},{"1859454":[56]},{"1859456":[198,63,192,250,68,180,32,216,68,124,244,252,80,94,173,175,240,9,224,223,224,27,240,15,24,163,8,3,4,171,2,80,63,192,63,192,191,64,223,32,255]},{"1859498":[255]},{"1859500":[255]},{"1859502":[255]},{"1859504":[9]},{"1859506":[26,192,16]},{"1859510":[8]},{"1859512":[32]},{"1859516":[10]},{"1859520":[80,240]},{"1859524":[2,2,129,129,10,10,5,5,43,43,23,23]},{"1859537":[175]},{"1859539":[255,2,253,1,126,10,245,5,250,43,212,23,232,255]},{"1859554":[255]},{"1859556":[255]},{"1859558":[255]},{"1859560":[255]},{"1859562":[255]},{"1859564":[255]},{"1859566":[255]},{"1859568":[160]},{"1859584":[10,10,85,85,191,191,87,87,191,191,95,95,255,255,126,127,10,245,85,170,191,64,87,168,191,64,95,160,255]},{"1859614":[126,129,255]},{"1859618":[255]},{"1859620":[255]},{"1859622":[255]},{"1859624":[255]},{"1859626":[255]},{"1859628":[255]},{"1859630":[255]},{"1859648":[1]},{"1859650":[2]},{"1859652":[3]},{"1859654":[4]},{"1859656":[5]},{"1859658":[6]},{"1859660":[7]},{"1859662":[8]},{"1859664":[9]},{"1859666":[10]},{"1859668":[11]},{"1859670":[12]},{"1859672":[13]},{"1859674":[14]},{"1859676":[15]},{"1859678":[16]},{"1859680":[17]},{"1859682":[18]},{"1859684":[19]},{"1859686":[20]},{"1859688":[21]},{"1859690":[22]},{"1859692":[23]},{"1859694":[24]},{"1859696":[25]},{"1859698":[26]},{"1859700":[27]},{"1859702":[28]},{"1859704":[29]},{"1859706":[30]},{"1859708":[31]},{"1859710":[32]},{"1859712":[33]},{"1859714":[34]},{"1859716":[35]},{"1859718":[36]},{"1859720":[37]},{"1859722":[38]},{"1859724":[39]},{"1859726":[40]},{"1859728":[41]},{"1859730":[42]},{"1859732":[43]},{"1859734":[44]},{"1859736":[45]},{"1859738":[46]},{"1859740":[47]},{"1859742":[48]},{"1859744":[49]},{"1859746":[50]},{"1859748":[51]},{"1859750":[52]},{"1859752":[53]},{"1859754":[54]},{"1859756":[55]},{"1859758":[56]},{"1859760":[57]},{"1859762":[58]},{"1859764":[59]},{"1859766":[60]},{"1859768":[61]},{"1859770":[62]},{"1859772":[63]},{"1859774":[64]},{"1859776":[65]},{"1859778":[66]},{"1859780":[67]},{"1859782":[68]},{"1859784":[69]},{"1859786":[70]},{"1859788":[71]},{"1859790":[72]},{"1859792":[73]},{"1859794":[74]},{"1859796":[75]},{"1859798":[76]},{"1859800":[77]},{"1859802":[78]},{"1859804":[79]},{"1859806":[80]},{"1859808":[81]},{"1859810":[82]},{"1859812":[83]},{"1859814":[84]},{"1859816":[85]},{"1859818":[86]},{"1859820":[87]},{"1859822":[88]},{"1859824":[89]},{"1859826":[90]},{"1859828":[91]},{"1859830":[92]},{"1859832":[93]},{"1859834":[94]},{"1859836":[95]},{"1859838":[96]},{"1859840":[97]},{"1859842":[98]},{"1859844":[99]},{"1859846":[100]},{"1859848":[101]},{"1859850":[102]},{"1859852":[103]},{"1859854":[104]},{"1859856":[105]},{"1859858":[106]},{"1859860":[107]},{"1859862":[108]},{"1859864":[109]},{"1859866":[110]},{"1859868":[111]},{"1859870":[112]},{"1859872":[113]},{"1859874":[114]},{"1859876":[115]},{"1859878":[116]},{"1859880":[117]},{"1859882":[118]},{"1859884":[119]},{"1859886":[120]},{"1859888":[121]},{"1859890":[122]},{"1859892":[123]},{"1859894":[124]},{"1859896":[125]},{"1859898":[126]},{"1859900":[127]},{"1859902":[128]},{"1859904":[129]},{"1859906":[130]},{"1859908":[131]},{"1859910":[132]},{"1859912":[133]},{"1859914":[134]},{"1859916":[135]},{"1859918":[136]},{"1859920":[137]},{"1859922":[138]},{"1859924":[139]},{"1859926":[140]},{"1859928":[141]},{"1859930":[142]},{"1859932":[143]},{"1859934":[144]},{"1859936":[145]},{"1859938":[146]},{"1859940":[147]},{"1859942":[148]},{"1859944":[149]},{"1859946":[150]},{"1859948":[151]},{"1859950":[152]},{"1859952":[153]},{"1859954":[154]},{"1859956":[155]},{"1859958":[156]},{"1859960":[157]},{"1859962":[158]},{"1859964":[159]},{"1859966":[160]},{"1859968":[161]},{"1859970":[162]},{"1859972":[163]},{"1859974":[164]},{"1859976":[165]},{"1859978":[166]},{"1859980":[167]},{"1859982":[168]},{"1859984":[169]},{"1859986":[170]},{"1859988":[171]},{"1859990":[172]},{"1859992":[173]},{"1859994":[174]},{"1859996":[175]},{"1859998":[176]},{"1860000":[177]},{"1860002":[178]},{"1860004":[179]},{"1860006":[180]},{"1860008":[181]},{"1860010":[182]},{"1860012":[183]},{"1860014":[184]},{"1860016":[185]},{"1860018":[186]},{"1860020":[187]},{"1860022":[188]},{"1860024":[189]},{"1860026":[190]},{"1860028":[191]},{"1860030":[192]},{"1860032":[193]},{"1860034":[194]},{"1860036":[195]},{"1860038":[196]},{"1860040":[197]},{"1860042":[198]},{"1860044":[199]},{"1860046":[200]},{"1860048":[201]},{"1860050":[202]},{"1860052":[203]},{"1860054":[204]},{"1860056":[205]},{"1860058":[206]},{"1860060":[207]},{"1860062":[208]},{"1860064":[209]},{"1860066":[210]},{"1860068":[211]},{"1860070":[212]},{"1860072":[213]},{"1860074":[214]},{"1860076":[215]},{"1860078":[216]},{"1860080":[217]},{"1860082":[218]},{"1860084":[219]},{"1860086":[220]},{"1860088":[221]},{"1860090":[222]},{"1860092":[223]},{"1860094":[224]},{"1860096":[225]},{"1860098":[226]},{"1860100":[227]},{"1860102":[228]},{"1860104":[229]},{"1860106":[230]},{"1860108":[231]},{"1860110":[232]},{"1860112":[233]},{"1860114":[234]},{"1860116":[235]},{"1860118":[236]},{"1860120":[237]},{"1860122":[238]},{"1860124":[239]},{"1860126":[240]},{"1860128":[241]},{"1860130":[242]},{"1860132":[243]},{"1860134":[244]},{"1860136":[245]},{"1860138":[246]},{"1860140":[247]},{"1860142":[248]},{"1860144":[249]},{"1860146":[250]},{"1860148":[251]},{"1860150":[252]},{"1860152":[253]},{"1860154":[254]},{"1860156":[255]},{"1860159":[1,1,1,2,1,3,1,4,1,5,1,6,1,7,1,8,1,9,1,10,1,11,1,12,1,13,1,14,1,15,1,16,1,17,1,18,1,19,1,20,1,21,1,22,1,23,1,24,1,25,1,26,1,27,1,28,1,29,1,30,1,31,1,32,1,33,1,34,1,35,1,36,1,37,1,38,1,39,1,40,1,41,1,42,1,43,1,44,1,45,1,46,1,47,1,48,1,49,1,50,1,51,1,52,1,53,1,54,1,55,1,56,1,57,1,58,1,59,1,60,1,61,1,62,1,63,1,64,1,65,1,66,1,67,1,68,1,69,1,70,1,71,1,72,1,73,1,74,1,75,1,76,1,77,1,78,1,79,1,80,1,81,1,82,1,83,1,84,1,85,1,86,1,87,1,88,1,89,1,90,1,91,1,92,1,93,1,94,1,95,1,96,1,97,1,98,1,99,1,100,1,101,1,102,1,103,1,104,1,105,1,106,1,107,1,108,1,109,1,110,1,111,1,112,1,113,1,114,1,115,1,116,1,117,1,118,1,119,1,120,1,121,1,122,1,123,1,124,1,125,1,126,1,127,1,128,1,129,1,130,1,131,1,132,1,133,1,134,1,135,1,136,1,137,1,138,1,139,1,140,1,141,1,142,1,143,1,144,1,145,1,146,1,147,1,148,1,149,1,150,1,151,1,152,1,153,1,154,1,155,1,156,1,157,1,158,1,159,1,160,1,161,1,162,1,163,1,164,1,165,1,166,1,167,1,168,1,169,1,170,1,171,1,172,1,173,1,174,1,175,1,176,1,177,1,178,1,179,1,180,1,181,1,182,1,183,1,184,1,185,1,186,1,187,1,188,1,189,1,190,1,191,1,192,1,193,1,194,1,195,1,196,1,197,1,198,1,199,1,200,1,201,1,202,1,203,1,204,1,205,1,206,1,207,1,208,1,209,1,210,1,211,1,212,1,213,1,214,1,215,1,216,1,217,1,218,1,219,1,220,1,221,1,222,1,223,1,224,1,225,1,226,1,227,1,228,1,229,1,230,1,231,1,232,1,233,1,234,1,235,1,236,1,237,1,238,1,239,1,240,1,241,1,242,1,243,1,244,1,245,1,246,1,247,1,248,1,249,1,250,1,251,1,252,1,253,1,254,1,255,1]},{"1860671":[2,1,2,2,2,3,2,4,2,5,2,6,2,7,2,8,2,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,2,19,2,20,2,21,2,22,2,23,2,24,2,25,2,26,2,27,2,28,2,29,2,30,2,31,2,32,2,33,2,34,2,35,2,36,2,37,2,38,2,39,2,40,2,41,2,42,2,43,2,44,2,45,2,46,2,47,2,48,2,49,2,50,2,51,2,52,2,53,2,54,2,55,2,56,2,57,2,58,2,59,2,60,2,61,2,62,2,63,2,64,2,65,2,66,2,67,2,68,2,69,2,70,2,71,2,72,2,73,2,74,2,75,2,76,2,77,2,78,2,79,2,80,2,81,2,82,2,83,2,84,2,85,2,86,2,87,2,88,2,89,2,90,2,91,2,92,2,93,2,94,2,95,2,96,2,97,2,98,2,99,2,100,2,101,2,102,2,103,2,104,2,105,2,106,2,107,2,108,2,109,2,110,2,111,2,112,2,113,2,114,2,115,2,116,2,117,2,118,2,119,2,120,2,121,2,122,2,123,2,124,2,125,2,126,2,127,2,128,2,129,2,130,2,131,2,132,2,133,2,134,2,135,2,136,2,137,2,138,2,139,2,140,2,141,2,142,2,143,2,144,2,145,2,146,2,147,2,148,2,149,2,150,2,151,2,152,2,153,2,154,2,155,2,156,2,157,2,158,2,159,2,160,2,161,2,162,2,163,2,164,2,165,2,166,2,167,2,168,2,169,2,170,2,171,2,172,2,173,2,174,2,175,2,176,2,177,2,178,2,179,2,180,2,181,2,182,2,183,2,184,2,185,2,186,2,187,2,188,2,189,2,190,2,191,2,192,2,193,2,194,2,195,2,196,2,197,2,198,2,199,2,200,2,201,2,202,2,203,2,204,2,205,2,206,2,207,2,208,2,209,2,210,2,211,2,212,2,213,2,214,2,215,2,216,2,217,2,218,2,219,2,220,2,221,2,222,2,223,2,224,2,225,2,226,2,227,2,228,2,229,2,230,2,231,2,232,2,233,2,234,2,235,2,236,2,237,2,238,2,239,2,240,2,241,2,242,2,243,2,244,2,245,2,246,2,247,2,248,2,249,2,250,2,251,2,252,2,253,2,254,2,255,2]},{"1861183":[3,1,3,2,3,3,3,4,3,5,3,6,3,7,3,8,3,9,3,10,3,11,3,12,3,13,3,14,3,15,3,16,3,17,3,18,3,19,3,20,3,21,3,22,3,23,3,24,3,25,3,26,3,27,3,28,3,29,3,30,3,31,3,32,3,33,3,34,3,35,3,36,3,37,3,38,3,39,3,40,3,41,3,42,3,43,3,44,3,45,3,46,3,47,3,48,3,49,3,50,3,51,3,52,3,53,3,54,3,55,3,56,3,57,3,58,3,59,3,60,3,61,3,62,3,63,3,64,3,65,3,66,3,67,3,68,3,69,3,70,3,71,3,72,3,73,3,74,3,75,3,76,3,77,3,78,3,79,3,80,3,81,3,82,3,83,3,84,3,85,3,86,3,87,3,88,3,89,3,90,3,91,3,92,3,93,3,94,3,95,3,96,3,97,3,98,3,99,3,100,3,101,3,102,3,103,3,104,3,105,3,106,3,107,3,108,3,109,3,110,3,111,3,112,3,113,3,114,3,115,3,116,3,117,3,118,3,119,3,120,3,121,3,122,3,123,3,124,3,125,3,126,3,127,3,128,3,129,3,130,3,131,3,132,3,133,3,134,3,135,3,136,3,137,3,138,3,139,3,140,3,141,3,142,3,143,3,144,3,145,3,146,3,147,3,148,3,149,3,150,3,151,3,152,3,153,3,154,3,155,3,156,3,157,3,158,3,159,3,160,3,161,3,162,3,163,3,164,3,165,3,166,3,167,3,168,3,169,3,170,3,171,3,172,3,173,3,174,3,175,3,176,3,177,3,178,3,179,3,180,3,181,3,182,3,183,3,184,3,185,3,186,3,187,3,188,3,189,3,190,3,191,3,192,3,193,3,194,3,195,3,196,3,197,3,198,3,199,3,200,3,201,3,202,3,203,3,204,3,205,3,206,3,207,3,208,3,209,3,210,3,211,3,212,3,213,3,214,3,215,3,216,3,217,3,218,3,219,3,220,3,221,3,222,3,223,3,224,3,225,3,226,3,227,3,228,3,229,3,230,3,231,3,232,3,233,3,234,3,235,3,236,3,237,3,238,3,239,3,240,3,241,3,242,3,243,3,244,3,245,3,246,3,247,3,248,3,249,3,250,3,251,3,252,3,253,3,254,3,255,3]},{"1861695":[4]},{"1861698":[35,12,33,8,35,16,103,32,132,32,36,12,36,20,69,20,37,24,70,24,166,24,49,90,174,57,100,28,99,20,7,49,50,74,202,52,98,24,99,32,197,40,130,28,65,16,97,24,33,16,65,12,196,36,6,45,99,12,42,41,135,36,166,40,233,56,139,61,106,65,164,40,131,32,230,44,199,32,208,69,100,32,73,65,234,64,41,57,206,69,77,57,7,57,101,44,231,48,50,102,86,102,108,69,195,36,57,107,255,127,222,119,23,95,167,48,186,123,91,111,78,102,71,61,215,94,25,103,181,94,70,20,38,20,139,73,206,97,125,123,57,123,147,94,181,106,38,24,39,32,213,94,169,48,197,48,163,40,200,48,170,48,103,40,102,48,12,65,165,48,178,89,216,94,186,101,129,32,129,28,221,118,61,118,188,105,213,80,46,73,92,110,190,113,62,109,156,104,172,56,137,40,204,52,89,106,126,113,217,92,49,73,40,28,40,40,84,78,118,85,14,65,123,113,40,36,104,36,105,48,110,77,144,61,114,85,80,81,181,89,79,69,108,52,106,48,106,40,105,40,237,56,89,101,172,48,239,64,22,85,52,77,240,68,174,60,188,110,54,89,135,56,236,64,180,76,197,56,231,56,39,73,41,65,174,89,106,73,195,40,195,52,241,72,117,85,206,56,170,60,163,48,176,68,51,85,238,72,202,56,172,64,178,72,232,64,229,64,5,57,52,85,83,89,168,56,88,93,72,73,237,72,76,73,235,72,77,85,43,73,42,65,199,64,41,73,6,65,161,40,108,56,113,89,45,73,74,85,5,49,118,89,116,89,180,101,52,89,170,89,218,113,48,81,107,56,110,60,241,80,242,76,246,96,51,89,48,89,71,69,81,114,117,86,218,122,213,118,85,123,86,114,176,72,238,80,235,80,7,81,178,106,41,48,171,64,173,72,175,72,137,64,174,68,233,72,210,118,165,56,104,56,231,72,150,94,71,77,42,52,106,36,76,44,113,68,178,68,227,64,195,56,5,65,30,123,3,61,111,68,30,119,90,114,217,106,26,107,5,73,191,127,157,123,3,65,89,103,24,95,92,111,190,119,157,119,220,127,125,119,221,119,60,119,94,119,61,123,150,86,126,123,149,86,33,4,26,103,107,64]}] \ No newline at end of file